Blob


1 /*
2 * Copyright (c) 2020, 2021, 2022 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 = "D:df:hnP:Vv";
32 static const 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 = "/etc/gmid.conf";
47 const char *pidfile;
49 struct conf conf;
51 struct tls_config *tlsconf;
52 struct tls *ctx;
54 static void
55 dummy_handler(int signo)
56 {
57 return;
58 }
60 void
61 load_vhosts(void)
62 {
63 struct vhost *h;
64 struct location *l;
66 TAILQ_FOREACH(h, &hosts, vhosts) {
67 TAILQ_FOREACH(l, &h->locations, locations) {
68 if (l->dir == NULL)
69 continue;
70 if ((l->dirfd = open(l->dir, O_RDONLY | O_DIRECTORY)) == -1)
71 fatal("open %s for domain %s: %s", l->dir, h->domain,
72 strerror(errno));
73 }
74 }
75 }
77 int
78 make_socket(int port, int family)
79 {
80 int sock, v;
81 struct sockaddr_in addr4;
82 struct sockaddr_in6 addr6;
83 struct sockaddr *addr;
84 socklen_t len;
86 switch (family) {
87 case AF_INET:
88 memset(&addr4, 0, sizeof(addr4));
89 addr4.sin_family = family;
90 addr4.sin_port = htons(port);
91 addr4.sin_addr.s_addr = INADDR_ANY;
92 addr = (struct sockaddr*)&addr4;
93 len = sizeof(addr4);
94 break;
96 case AF_INET6:
97 memset(&addr6, 0, sizeof(addr6));
98 addr6.sin6_family = AF_INET6;
99 addr6.sin6_port = htons(port);
100 addr6.sin6_addr = in6addr_any;
101 addr = (struct sockaddr*)&addr6;
102 len = sizeof(addr6);
103 break;
105 default:
106 /* unreachable */
107 abort();
110 if ((sock = socket(family, SOCK_STREAM, 0)) == -1)
111 fatal("socket: %s", strerror(errno));
113 v = 1;
114 if (setsockopt(sock, SOL_SOCKET, SO_REUSEADDR, &v, sizeof(v)) == -1)
115 fatal("setsockopt(SO_REUSEADDR): %s", strerror(errno));
117 v = 1;
118 if (setsockopt(sock, SOL_SOCKET, SO_REUSEPORT, &v, sizeof(v)) == -1)
119 fatal("setsockopt(SO_REUSEPORT): %s", strerror(errno));
121 mark_nonblock(sock);
123 if (bind(sock, addr, len) == -1)
124 fatal("bind: %s", strerror(errno));
126 if (listen(sock, 16) == -1)
127 fatal("listen: %s", strerror(errno));
129 return sock;
132 static void
133 add_keypair(struct vhost *h)
135 if (h->ocsp == NULL) {
136 if (tls_config_add_keypair_file(tlsconf, h->cert, h->key) == -1)
137 fatal("failed to load the keypair (%s, %s)",
138 h->cert, h->key);
139 } else {
140 if (tls_config_add_keypair_ocsp_file(tlsconf, h->cert, h->key,
141 h->ocsp) == -1)
142 fatal("failed to load the keypair (%s, %s, %s)",
143 h->cert, h->key, h->ocsp);
147 void
148 setup_tls(void)
150 struct vhost *h;
152 if ((tlsconf = tls_config_new()) == NULL)
153 fatal("tls_config_new");
155 /* optionally accept client certs, but don't try to verify them */
156 tls_config_verify_client_optional(tlsconf);
157 tls_config_insecure_noverifycert(tlsconf);
159 if (tls_config_set_protocols(tlsconf, conf.protos) == -1)
160 fatal("tls_config_set_protocols");
162 if ((ctx = tls_server()) == NULL)
163 fatal("tls_server failure");
165 h = TAILQ_FIRST(&hosts);
167 /* we need to set something, then we can add how many key we want */
168 if (tls_config_set_keypair_file(tlsconf, h->cert, h->key))
169 fatal("tls_config_set_keypair_file failed for (%s, %s)",
170 h->cert, h->key);
172 /* same for OCSP */
173 if (h->ocsp != NULL &&
174 tls_config_set_ocsp_staple_file(tlsconf, h->ocsp) == -1)
175 fatal("tls_config_set_ocsp_staple_file failed for (%s)",
176 h->ocsp);
178 while ((h = TAILQ_NEXT(h, vhosts)) != NULL)
179 add_keypair(h);
181 if (tls_configure(ctx, tlsconf) == -1)
182 fatal("tls_configure: %s", tls_error(ctx));
185 static int
186 listener_main(struct imsgbuf *ibuf)
188 drop_priv();
189 if (load_default_mime(&conf.mime) == -1)
190 fatal("load_default_mime: %s", strerror(errno));
191 sort_mime(&conf.mime);
192 load_vhosts();
193 loop(ctx, sock4, sock6, ibuf);
194 return 0;
197 void
198 init_config(void)
200 TAILQ_INIT(&hosts);
202 conf.port = 1965;
203 conf.ipv6 = 0;
204 conf.protos = TLS_PROTOCOL_TLSv1_2 | TLS_PROTOCOL_TLSv1_3;
206 init_mime(&conf.mime);
208 conf.prefork = 3;
211 void
212 free_config(void)
214 struct vhost *h, *th;
215 struct location *l, *tl;
216 struct proxy *p, *tp;
217 struct envlist *e, *te;
218 struct alist *a, *ta;
219 int v, i;
221 v = conf.verbose;
223 free_mime(&conf.mime);
224 memset(&conf, 0, sizeof(conf));
226 conf.verbose = v;
228 TAILQ_FOREACH_SAFE(h, &hosts, vhosts, th) {
229 TAILQ_FOREACH_SAFE(l, &h->locations, locations, tl) {
230 TAILQ_REMOVE(&h->locations, l, locations);
232 free((char*)l->match);
233 free((char*)l->lang);
234 free((char*)l->default_mime);
235 free((char*)l->index);
236 free((char*)l->block_fmt);
237 free((char*)l->dir);
239 if (l->dirfd != -1)
240 close(l->dirfd);
242 free(l);
245 TAILQ_FOREACH_SAFE(e, &h->params, envs, te) {
246 TAILQ_REMOVE(&h->params, e, envs);
248 free(e->name);
249 free(e->value);
250 free(e);
253 TAILQ_FOREACH_SAFE(a, &h->aliases, aliases, ta) {
254 TAILQ_REMOVE(&h->aliases, a, aliases);
256 free(a->alias);
257 free(a);
260 TAILQ_FOREACH_SAFE(p, &h->proxies, proxies, tp) {
261 TAILQ_REMOVE(&h->proxies, p, proxies);
263 free(p->match_proto);
264 free(p->match_host);
265 free(p->host);
266 free(p->sni);
267 tls_unload_file(p->cert, p->certlen);
268 tls_unload_file(p->key, p->keylen);
269 free(p);
272 free((char*)h->domain);
273 free((char*)h->cert);
274 free((char*)h->key);
275 free((char*)h->ocsp);
277 TAILQ_REMOVE(&hosts, h, vhosts);
278 free(h);
281 for (i = 0; i < FCGI_MAX; ++i) {
282 if (fcgi[i].path == NULL && fcgi[i].prog == NULL)
283 break;
284 free(fcgi[i].path);
285 free(fcgi[i].port);
286 free(fcgi[i].prog);
288 fcgi[i].path = NULL;
289 fcgi[i].port = NULL;
290 fcgi[i].prog = NULL;
293 tls_free(ctx);
294 tls_config_free(tlsconf);
297 static int
298 wait_signal(void)
300 sigset_t mask;
301 int signo;
303 sigemptyset(&mask);
304 sigaddset(&mask, SIGHUP);
305 sigaddset(&mask, SIGINT);
306 sigaddset(&mask, SIGTERM);
307 sigwait(&mask, &signo);
309 return signo == SIGHUP;
312 void
313 drop_priv(void)
315 struct passwd *pw = NULL;
317 if (*conf.chroot != '\0' && *conf.user == '\0')
318 fatal("can't chroot without an user to switch to after.");
320 if (*conf.user != '\0') {
321 if ((pw = getpwnam(conf.user)) == NULL)
322 fatal("can't find user %s", conf.user);
325 if (*conf.chroot != '\0') {
326 if (chroot(conf.chroot) != 0 || chdir("/") != 0)
327 fatal("%s: %s", conf.chroot, strerror(errno));
330 if (pw != NULL) {
331 if (setresuid(pw->pw_uid, pw->pw_uid, pw->pw_uid) == -1)
332 fatal("setresuid(%d): %s", pw->pw_uid,
333 strerror(errno));
336 if (getuid() == 0)
337 log_warn(NULL, "not a good idea to run a network daemon as root");
340 static void
341 usage(void)
343 fprintf(stderr,
344 "Version: " GMID_STRING "\n"
345 "Usage: %s [-dhnVv] [-D macro=value] [-f config] [-P pidfile]\n",
346 getprogname());
349 static void
350 logger_init(void)
352 int p[2];
354 if (socketpair(AF_UNIX, SOCK_STREAM, PF_UNSPEC, p) == -1)
355 err(1, "socketpair");
357 switch (fork()) {
358 case -1:
359 err(1, "fork");
360 case 0:
361 signal(SIGHUP, SIG_IGN);
362 close(p[0]);
363 setproctitle("logger");
364 imsg_init(&logibuf, p[1]);
365 drop_priv();
366 _exit(logger_main(p[1], &logibuf));
367 default:
368 close(p[1]);
369 imsg_init(&logibuf, p[0]);
370 return;
374 static void
375 serve(void)
377 int i, p[2];
379 /* setup tls before dropping privileges: we don't want user
380 * to put private certs inside the chroot. */
381 setup_tls();
383 for (i = 0; i < conf.prefork; ++i) {
384 if (socketpair(AF_UNIX, SOCK_STREAM | SOCK_CLOEXEC,
385 PF_UNSPEC, p) == -1)
386 fatal("socketpair: %s", strerror(errno));
388 switch (fork()) {
389 case -1:
390 fatal("fork: %s", strerror(errno));
391 case 0: /* child */
392 close(p[0]);
393 imsg_init(&exibuf, p[1]);
394 setproctitle("server");
395 _exit(listener_main(&exibuf));
396 default:
397 close(p[1]);
398 imsg_init(&servibuf[i], p[0]);
403 static int
404 write_pidfile(const char *pidfile)
406 struct flock lock;
407 int fd;
409 if (pidfile == NULL)
410 return -1;
412 if ((fd = open(pidfile, O_WRONLY|O_CREAT|O_CLOEXEC, 0600)) == -1)
413 fatal("can't open pidfile %s: %s", pidfile, strerror(errno));
415 lock.l_start = 0;
416 lock.l_len = 0;
417 lock.l_type = F_WRLCK;
418 lock.l_whence = SEEK_SET;
420 if (fcntl(fd, F_SETLK, &lock) == -1)
421 fatal("can't lock %s, gmid is already running?", pidfile);
423 if (ftruncate(fd, 0) == -1)
424 fatal("ftruncate: %s: %s", pidfile, strerror(errno));
426 dprintf(fd, "%d\n", getpid());
428 return fd;
431 int
432 main(int argc, char **argv)
434 int i, ch, conftest = 0;
435 int pidfd, old_ipv6, old_port;
437 logger_init();
438 init_config();
440 while ((ch = getopt_long(argc, argv, opts, longopts, NULL)) != -1) {
441 switch (ch) {
442 case 'D':
443 if (cmdline_symset(optarg) == -1)
444 fatal("could not parse macro definition: %s",
445 optarg);
446 break;
448 case 'd':
449 conf.foreground = 1;
450 break;
452 case 'f':
453 config_path = absolutify_path(optarg);
454 break;
456 case 'h':
457 usage();
458 return 0;
460 case 'n':
461 conftest++;
462 break;
464 case 'P':
465 pidfile = optarg;
466 break;
468 case 'V':
469 puts("Version: " GMID_STRING);
470 return 0;
472 case 'v':
473 conf.verbose++;
474 break;
476 default:
477 usage();
478 return 1;
481 argc -= optind;
482 argv += optind;
484 if (argc != 0)
485 usage();
487 parse_conf(config_path);
489 if (conftest) {
490 fprintf(stderr, "config OK\n");
491 if (conftest > 1)
492 print_conf();
493 return 0;
496 if (!conf.foreground) {
497 /* log to syslog */
498 imsg_compose(&logibuf, IMSG_LOG_TYPE, 0, 0, -1, NULL, 0);
499 imsg_flush(&logibuf);
501 if (daemon(1, 1) == -1)
502 fatal("daemon: %s", strerror(errno));
505 sock4 = make_socket(conf.port, AF_INET);
506 sock6 = -1;
507 if (conf.ipv6)
508 sock6 = make_socket(conf.port, AF_INET6);
510 signal(SIGPIPE, SIG_IGN);
512 pidfd = write_pidfile(pidfile);
514 /*
515 * Linux seems to call the event handlers even when we're
516 * doing a sigwait. These dummy handlers are here to avoid
517 * being terminated on SIGHUP, SIGINT or SIGTERM.
518 */
519 signal(SIGHUP, dummy_handler);
520 signal(SIGINT, dummy_handler);
521 signal(SIGTERM, dummy_handler);
523 /* wait a sighup and reload the daemon */
524 for (;;) {
525 serve();
527 if (!wait_signal())
528 break;
530 log_info(NULL, "reloading configuration %s", config_path);
532 /* close the servers */
533 for (i = 0; i < conf.prefork; ++i) {
534 imsg_compose(&servibuf[i], IMSG_QUIT, 0, 0, -1, NULL, 0);
535 imsg_flush(&servibuf[i]);
536 close(servibuf[i].fd);
539 old_ipv6 = conf.ipv6;
540 old_port = conf.port;
542 free_config();
543 init_config();
544 parse_conf(config_path);
546 if (old_port != conf.port) {
547 close(sock4);
548 close(sock6);
549 sock4 = -1;
550 sock6 = -1;
553 if (sock6 != -1 && old_ipv6 != conf.ipv6) {
554 close(sock6);
555 sock6 = -1;
558 if (sock4 == -1)
559 sock4 = make_socket(conf.port, AF_INET);
560 if (sock6 == -1 && conf.ipv6)
561 sock6 = make_socket(conf.port, AF_INET6);
564 imsg_compose(&exibuf, IMSG_QUIT, 0, 0, -1, NULL, 0);
565 imsg_flush(&exibuf);
567 imsg_compose(&logibuf, IMSG_QUIT, 0, 0, -1, NULL, 0);
568 imsg_flush(&logibuf);
570 if (pidfd != -1)
571 close(pidfd);
573 return 0;