Blob


1 /*
2 * Copyright (c) 2020 Omar Polo <op@omarpolo.com>
3 *
4 * Permission to use, copy, modify, and distribute this software for any
5 * purpose with or without fee is hereby granted, provided that the above
6 * copyright notice and this permission notice appear in all copies.
7 *
8 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 */
17 #include "gmid.h"
19 #include <sys/stat.h>
21 #include <errno.h>
22 #include <fcntl.h>
23 #include <getopt.h>
24 #include <libgen.h>
25 #include <limits.h>
26 #include <pwd.h>
27 #include <signal.h>
28 #include <string.h>
30 static const char *opts = "6c:D:d:fH:hnP:p:Vvx:";
32 static struct option longopts[] = {
33 {"help", no_argument, NULL, 'h'},
34 {"version", no_argument, NULL, 'V'},
35 {NULL, 0, NULL, 0},
36 };
38 struct fcgi fcgi[FCGI_MAX];
40 struct vhosthead hosts;
42 int sock4, sock6;
44 struct imsgbuf logibuf, exibuf, servibuf[PROC_MAX];
46 const char *config_path, *certs_dir, *hostname, *pidfile, *cgi;
48 struct conf conf;
50 struct tls_config *tlsconf;
51 struct tls *ctx;
53 static void
54 dummy_handler(int signo)
55 {
56 return;
57 }
59 /* wrapper around dirname(3). dn must be PATH_MAX+1 at least. */
60 static void
61 pdirname(const char *path, char *dn)
62 {
63 char p[PATH_MAX+1];
64 char *t;
66 strlcpy(p, path, sizeof(p));
67 t = dirname(p);
68 memmove(dn, t, strlen(t)+1);
69 }
71 static void
72 mkdirs(const char *path, mode_t mode)
73 {
74 char dname[PATH_MAX+1];
76 pdirname(path, dname);
77 if (!strcmp(dname, "/"))
78 return;
79 mkdirs(dname, mode);
80 if (mkdir(path, mode) != 0 && errno != EEXIST)
81 fatal("can't mkdir %s: %s", path, strerror(errno));
82 }
84 /* $XDG_DATA_HOME/gmid */
85 char *
86 data_dir(void)
87 {
88 const char *home, *xdg;
89 char *t;
91 if ((xdg = getenv("XDG_DATA_HOME")) == NULL) {
92 if ((home = getenv("HOME")) == NULL)
93 errx(1, "XDG_DATA_HOME and HOME both empty");
94 if (asprintf(&t, "%s/.local/share/gmid", home) == -1)
95 err(1, "asprintf");
96 } else {
97 if (asprintf(&t, "%s/gmid", xdg) == -1)
98 err(1, "asprintf");
99 }
101 mkdirs(t, 0755);
102 return t;
105 void
106 load_local_cert(const char *hostname, const char *dir)
108 char *cert, *key;
109 struct vhost *h;
111 if (asprintf(&cert, "%s/%s.cert.pem", dir, hostname) == -1)
112 errx(1, "asprintf");
113 if (asprintf(&key, "%s/%s.key.pem", dir, hostname) == -1)
114 errx(1, "asprintf");
116 if (access(cert, R_OK) == -1 || access(key, R_OK) == -1)
117 gen_certificate(hostname, cert, key);
119 h = TAILQ_FIRST(&hosts);
120 h->cert = cert;
121 h->key = key;
122 h->domain = hostname;
125 void
126 load_vhosts(void)
128 struct vhost *h;
129 struct location *l;
131 TAILQ_FOREACH(h, &hosts, vhosts) {
132 TAILQ_FOREACH(l, &h->locations, locations) {
133 if (l->dir == NULL)
134 continue;
135 if ((l->dirfd = open(l->dir, O_RDONLY | O_DIRECTORY)) == -1)
136 fatal("open %s for domain %s: %s", l->dir, h->domain,
137 strerror(errno));
142 int
143 make_socket(int port, int family)
145 int sock, v;
146 struct sockaddr_in addr4;
147 struct sockaddr_in6 addr6;
148 struct sockaddr *addr;
149 socklen_t len;
151 switch (family) {
152 case AF_INET:
153 memset(&addr4, 0, sizeof(addr4));
154 addr4.sin_family = family;
155 addr4.sin_port = htons(port);
156 addr4.sin_addr.s_addr = INADDR_ANY;
157 addr = (struct sockaddr*)&addr4;
158 len = sizeof(addr4);
159 break;
161 case AF_INET6:
162 memset(&addr6, 0, sizeof(addr6));
163 addr6.sin6_family = AF_INET6;
164 addr6.sin6_port = htons(port);
165 addr6.sin6_addr = in6addr_any;
166 addr = (struct sockaddr*)&addr6;
167 len = sizeof(addr6);
168 break;
170 default:
171 /* unreachable */
172 abort();
175 if ((sock = socket(family, SOCK_STREAM, 0)) == -1)
176 fatal("socket: %s", strerror(errno));
178 v = 1;
179 if (setsockopt(sock, SOL_SOCKET, SO_REUSEADDR, &v, sizeof(v)) == -1)
180 fatal("setsockopt(SO_REUSEADDR): %s", strerror(errno));
182 v = 1;
183 if (setsockopt(sock, SOL_SOCKET, SO_REUSEPORT, &v, sizeof(v)) == -1)
184 fatal("setsockopt(SO_REUSEPORT): %s", strerror(errno));
186 mark_nonblock(sock);
188 if (bind(sock, addr, len) == -1)
189 fatal("bind: %s", strerror(errno));
191 if (listen(sock, 16) == -1)
192 fatal("listen: %s", strerror(errno));
194 return sock;
197 static void
198 add_keypair(struct vhost *h)
200 if (h->ocsp == NULL) {
201 if (tls_config_add_keypair_file(tlsconf, h->cert, h->key) == -1)
202 fatal("failed to load the keypair (%s, %s)",
203 h->cert, h->key);
204 } else {
205 if (tls_config_add_keypair_ocsp_file(tlsconf, h->cert, h->key,
206 h->ocsp) == -1)
207 fatal("failed to load the keypair (%s, %s, %s)",
208 h->cert, h->key, h->ocsp);
212 void
213 setup_tls(void)
215 struct vhost *h;
217 if ((tlsconf = tls_config_new()) == NULL)
218 fatal("tls_config_new");
220 /* optionally accept client certs, but don't try to verify them */
221 tls_config_verify_client_optional(tlsconf);
222 tls_config_insecure_noverifycert(tlsconf);
224 if (tls_config_set_protocols(tlsconf, conf.protos) == -1)
225 fatal("tls_config_set_protocols");
227 if ((ctx = tls_server()) == NULL)
228 fatal("tls_server failure");
230 h = TAILQ_FIRST(&hosts);
232 /* we need to set something, then we can add how many key we want */
233 if (tls_config_set_keypair_file(tlsconf, h->cert, h->key))
234 fatal("tls_config_set_keypair_file failed for (%s, %s)",
235 h->cert, h->key);
237 /* same for OCSP */
238 if (h->ocsp != NULL &&
239 tls_config_set_ocsp_staple_file(tlsconf, h->ocsp) == -1)
240 fatal("tls_config_set_ocsp_staple_file failed for (%s)",
241 h->ocsp);
243 while ((h = TAILQ_NEXT(h, vhosts)) != NULL)
244 add_keypair(h);
246 if (tls_configure(ctx, tlsconf) == -1)
247 fatal("tls_configure: %s", tls_error(ctx));
250 static int
251 listener_main(struct imsgbuf *ibuf)
253 drop_priv();
254 load_default_mime(&conf.mime);
255 load_vhosts();
256 loop(ctx, sock4, sock6, ibuf);
257 return 0;
260 void
261 init_config(void)
263 TAILQ_INIT(&hosts);
265 conf.port = 1965;
266 conf.ipv6 = 0;
267 conf.protos = TLS_PROTOCOL_TLSv1_2 | TLS_PROTOCOL_TLSv1_3;
269 init_mime(&conf.mime);
271 conf.chroot = NULL;
272 conf.user = NULL;
274 conf.prefork = 3;
277 void
278 free_config(void)
280 struct vhost *h, *th;
281 struct location *l, *tl;
282 struct envlist *e, *te;
283 struct alist *a, *ta;
284 int v, i;
286 v = conf.verbose;
288 free(conf.chroot);
289 free(conf.user);
290 memset(&conf, 0, sizeof(conf));
292 conf.verbose = v;
294 TAILQ_FOREACH_SAFE(h, &hosts, vhosts, th) {
295 TAILQ_FOREACH_SAFE(l, &h->locations, locations, tl) {
296 TAILQ_REMOVE(&h->locations, l, locations);
298 free((char*)l->match);
299 free((char*)l->lang);
300 free((char*)l->default_mime);
301 free((char*)l->index);
302 free((char*)l->block_fmt);
303 free((char*)l->dir);
305 free(l->proxy_host);
307 if (l->dirfd != -1)
308 close(l->dirfd);
310 free(l);
313 TAILQ_FOREACH_SAFE(e, &h->env, envs, te) {
314 TAILQ_REMOVE(&h->env, e, envs);
316 free(e->name);
317 free(e->value);
318 free(e);
321 TAILQ_FOREACH_SAFE(e, &h->params, envs, te) {
322 TAILQ_REMOVE(&h->params, e, envs);
324 free(e->name);
325 free(e->value);
326 free(e);
329 TAILQ_FOREACH_SAFE(a, &h->aliases, aliases, ta) {
330 TAILQ_REMOVE(&h->aliases, a, aliases);
332 free(a->alias);
333 free(a);
336 free((char*)h->domain);
337 free((char*)h->cert);
338 free((char*)h->key);
339 free((char*)h->ocsp);
340 free((char*)h->cgi);
341 free((char*)h->entrypoint);
343 TAILQ_REMOVE(&hosts, h, vhosts);
344 free(h);
347 for (i = 0; i < FCGI_MAX; ++i) {
348 if (fcgi[i].path == NULL && fcgi[i].prog == NULL)
349 break;
350 free(fcgi[i].path);
351 free(fcgi[i].port);
352 free(fcgi[i].prog);
354 fcgi[i].path = NULL;
355 fcgi[i].port = NULL;
356 fcgi[i].prog = NULL;
359 tls_free(ctx);
360 tls_config_free(tlsconf);
363 static int
364 wait_signal(void)
366 sigset_t mask;
367 int signo;
369 sigemptyset(&mask);
370 sigaddset(&mask, SIGHUP);
371 sigaddset(&mask, SIGINT);
372 sigaddset(&mask, SIGTERM);
373 sigwait(&mask, &signo);
375 return signo == SIGHUP;
378 void
379 drop_priv(void)
381 struct passwd *pw = NULL;
383 if (conf.chroot != NULL && conf.user == NULL)
384 fatal("can't chroot without an user to switch to after.");
386 if (conf.user != NULL) {
387 if ((pw = getpwnam(conf.user)) == NULL)
388 fatal("can't find user %s", conf.user);
391 if (conf.chroot != NULL) {
392 if (chroot(conf.chroot) != 0 || chdir("/") != 0)
393 fatal("%s: %s", conf.chroot, strerror(errno));
396 if (pw != NULL) {
397 if (setresuid(pw->pw_uid, pw->pw_uid, pw->pw_uid) == -1)
398 fatal("setresuid(%d): %s", pw->pw_uid,
399 strerror(errno));
402 if (getuid() == 0)
403 log_warn(NULL, "not a good idea to run a network daemon as root");
406 static void
407 usage(void)
409 fprintf(stderr,
410 "Version: " GMID_STRING "\n"
411 "Usage: %s [-fnv] [-c config] [-D macro=value] [-P pidfile]\n"
412 " %s [-6hVv] [-d certs-dir] [-H hostname] [-p port] [-x cgi] [dir]\n",
413 getprogname(),
414 getprogname());
417 static void
418 logger_init(void)
420 int p[2];
422 if (socketpair(AF_UNIX, SOCK_STREAM, PF_UNSPEC, p) == -1)
423 err(1, "socketpair");
425 switch (fork()) {
426 case -1:
427 err(1, "fork");
428 case 0:
429 signal(SIGHUP, SIG_IGN);
430 close(p[0]);
431 setproctitle("logger");
432 imsg_init(&logibuf, p[1]);
433 drop_priv();
434 _exit(logger_main(p[1], &logibuf));
435 default:
436 close(p[1]);
437 imsg_init(&logibuf, p[0]);
438 return;
442 static int
443 serve(int argc, char **argv, struct imsgbuf *ibuf)
445 char path[PATH_MAX];
446 int i, p[2];
447 struct vhost *h;
448 struct location *l;
450 if (config_path == NULL) {
451 if (hostname == NULL)
452 hostname = "localhost";
453 if (certs_dir == NULL)
454 certs_dir = data_dir();
455 load_local_cert(hostname, certs_dir);
457 h = TAILQ_FIRST(&hosts);
458 h->domain = "*";
460 l = TAILQ_FIRST(&h->locations);
461 l->auto_index = 1;
462 l->match = "*";
464 switch (argc) {
465 case 0:
466 l->dir = getcwd(path, sizeof(path));
467 break;
468 case 1:
469 l->dir = absolutify_path(argv[0]);
470 break;
471 default:
472 usage();
473 return 1;
476 log_notice(NULL, "serving %s on port %d", l->dir, conf.port);
479 /* setup tls before dropping privileges: we don't want user
480 * to put private certs inside the chroot. */
481 setup_tls();
483 for (i = 0; i < conf.prefork; ++i) {
484 if (socketpair(AF_UNIX, SOCK_STREAM | SOCK_CLOEXEC,
485 PF_UNSPEC, p) == -1)
486 fatal("socketpair: %s", strerror(errno));
488 switch (fork()) {
489 case -1:
490 fatal("fork: %s", strerror(errno));
491 case 0: /* child */
492 close(p[0]);
493 imsg_init(&exibuf, p[1]);
494 setproctitle("server");
495 _exit(listener_main(&exibuf));
496 default:
497 close(p[1]);
498 imsg_init(&servibuf[i], p[0]);
502 setproctitle("executor");
503 drop_priv();
504 _exit(executor_main(ibuf));
507 static int
508 write_pidfile(const char *pidfile)
510 struct flock lock;
511 int fd;
513 if (pidfile == NULL)
514 return -1;
516 if ((fd = open(pidfile, O_WRONLY|O_CREAT|O_CLOEXEC, 0600)) == -1)
517 fatal("can't open pidfile %s: %s", pidfile, strerror(errno));
519 lock.l_start = 0;
520 lock.l_len = 0;
521 lock.l_type = F_WRLCK;
522 lock.l_whence = SEEK_SET;
524 if (fcntl(fd, F_SETLK, &lock) == -1)
525 fatal("can't lock %s, gmid is already running?", pidfile);
527 if (ftruncate(fd, 0) == -1)
528 fatal("ftruncate: %s: %s", pidfile, strerror(errno));
530 dprintf(fd, "%d\n", getpid());
532 return fd;
535 static void
536 setup_configless(int argc, char **argv, const char *cgi)
538 struct vhost *host;
539 struct location *loc;
541 host = xcalloc(1, sizeof(*host));
542 host->cgi = cgi;
543 TAILQ_INSERT_HEAD(&hosts, host, vhosts);
545 loc = xcalloc(1, sizeof(*loc));
546 loc->fcgi = -1;
547 TAILQ_INSERT_HEAD(&host->locations, loc, locations);
549 serve(argc, argv, NULL);
551 imsg_compose(&logibuf, IMSG_QUIT, 0, 0, -1, NULL, 0);
552 imsg_flush(&logibuf);
555 static int
556 parse_portno(const char *p)
558 const char *errstr;
559 int n;
561 n = strtonum(p, 0, UINT16_MAX, &errstr);
562 if (errstr != NULL)
563 yyerror("port number is %s: %s", errstr, p);
564 return n;
567 int
568 main(int argc, char **argv)
570 struct imsgbuf exibuf;
571 int ch, conftest = 0, configless = 0;
572 int pidfd, old_ipv6, old_port;
574 logger_init();
575 init_config();
577 while ((ch = getopt_long(argc, argv, opts, longopts, NULL)) != -1) {
578 switch (ch) {
579 case '6':
580 conf.ipv6 = 1;
581 configless = 1;
582 break;
584 case 'c':
585 config_path = absolutify_path(optarg);
586 break;
588 case 'D':
589 if (cmdline_symset(optarg) == -1)
590 fatal("could not parse macro definition: %s",
591 optarg);
592 break;
594 case 'd':
595 certs_dir = optarg;
596 configless = 1;
597 break;
599 case 'f':
600 conf.foreground = 1;
601 break;
603 case 'H':
604 hostname = optarg;
605 configless = 1;
606 break;
608 case 'h':
609 usage();
610 return 0;
612 case 'n':
613 conftest++;
614 break;
616 case 'P':
617 pidfile = optarg;
618 break;
620 case 'p':
621 conf.port = parse_portno(optarg);
622 configless = 1;
623 break;
625 case 'V':
626 puts("Version: " GMID_STRING);
627 return 0;
629 case 'v':
630 conf.verbose++;
631 break;
633 case 'x':
634 /* drop the starting / (if any) */
635 if (*optarg == '/')
636 optarg++;
637 cgi = optarg;
638 configless = 1;
639 break;
641 default:
642 usage();
643 return 1;
646 argc -= optind;
647 argv += optind;
649 if (config_path == NULL) {
650 configless = 1;
651 conf.foreground = 1;
652 conf.prefork = 1;
653 conf.verbose++;
656 if (config_path != NULL && (argc > 0 || configless))
657 fatal("can't specify options in config mode.");
659 if (conftest) {
660 if (config_path == NULL)
661 fatal("missing configuration");
662 parse_conf(config_path);
663 fprintf(stderr, "config OK\n");
664 if (conftest > 1)
665 print_conf();
666 return 0;
669 if (!conf.foreground && !configless) {
670 /* log to syslog */
671 imsg_compose(&logibuf, IMSG_LOG_TYPE, 0, 0, -1, NULL, 0);
672 imsg_flush(&logibuf);
674 if (daemon(1, 1) == -1)
675 fatal("daemon: %s", strerror(errno));
678 if (config_path != NULL)
679 parse_conf(config_path);
681 sock4 = make_socket(conf.port, AF_INET);
682 sock6 = -1;
683 if (conf.ipv6)
684 sock6 = make_socket(conf.port, AF_INET6);
686 signal(SIGPIPE, SIG_IGN);
687 signal(SIGCHLD, SIG_IGN);
689 if (configless) {
690 setup_configless(argc, argv, cgi);
691 return 0;
694 pidfd = write_pidfile(pidfile);
696 /*
697 * Linux seems to call the event handlers even when we're
698 * doing a sigwait. These dummy handlers are here to avoid
699 * being terminated on SIGHUP, SIGINT or SIGTERM.
700 */
701 signal(SIGHUP, dummy_handler);
702 signal(SIGINT, dummy_handler);
703 signal(SIGTERM, dummy_handler);
705 /* wait a sighup and reload the daemon */
706 for (;;) {
707 int p[2];
709 if (socketpair(AF_UNIX, SOCK_STREAM | SOCK_CLOEXEC,
710 PF_UNSPEC, p) == -1)
711 fatal("socketpair: %s", strerror(errno));
713 switch (fork()) {
714 case -1:
715 fatal("fork: %s", strerror(errno));
716 case 0:
717 close(p[0]);
718 imsg_init(&exibuf, p[1]);
719 _exit(serve(argc, argv, &exibuf));
722 close(p[1]);
723 imsg_init(&exibuf, p[0]);
725 if (!wait_signal())
726 break;
728 log_info(NULL, "reloading configuration %s", config_path);
730 /* close the executor (it'll close the servers too) */
731 imsg_compose(&exibuf, IMSG_QUIT, 0, 0, -1, NULL, 0);
732 imsg_flush(&exibuf);
733 close(p[0]);
735 old_ipv6 = conf.ipv6;
736 old_port = conf.port;
738 free_config();
739 init_config();
740 parse_conf(config_path);
742 if (old_port != conf.port) {
743 close(sock4);
744 close(sock6);
745 sock4 = -1;
746 sock6 = -1;
749 if (sock6 != -1 && old_ipv6 != conf.ipv6) {
750 close(sock6);
751 sock6 = -1;
754 if (sock4 == -1)
755 sock4 = make_socket(conf.port, AF_INET);
756 if (sock6 == -1 && conf.ipv6)
757 sock6 = make_socket(conf.port, AF_INET6);
760 imsg_compose(&exibuf, IMSG_QUIT, 0, 0, -1, NULL, 0);
761 imsg_flush(&exibuf);
763 imsg_compose(&logibuf, IMSG_QUIT, 0, 0, -1, NULL, 0);
764 imsg_flush(&logibuf);
766 if (pidfd != -1)
767 close(pidfd);
769 return 0;