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, 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)
283 break;
284 free(fcgi[i].path);
285 free(fcgi[i].port);
287 fcgi[i].path = NULL;
288 fcgi[i].port = NULL;
291 tls_free(ctx);
292 tls_config_free(tlsconf);
295 static int
296 wait_signal(void)
298 sigset_t mask;
299 int signo;
301 sigemptyset(&mask);
302 sigaddset(&mask, SIGHUP);
303 sigaddset(&mask, SIGINT);
304 sigaddset(&mask, SIGTERM);
305 sigwait(&mask, &signo);
307 return signo == SIGHUP;
310 void
311 drop_priv(void)
313 struct passwd *pw = NULL;
315 if (*conf.chroot != '\0' && *conf.user == '\0')
316 fatal("can't chroot without an user to switch to after.");
318 if (*conf.user != '\0') {
319 if ((pw = getpwnam(conf.user)) == NULL)
320 fatal("can't find user %s", conf.user);
323 if (*conf.chroot != '\0') {
324 if (chroot(conf.chroot) != 0 || chdir("/") != 0)
325 fatal("%s: %s", conf.chroot, strerror(errno));
328 if (pw != NULL) {
329 if (setresuid(pw->pw_uid, pw->pw_uid, pw->pw_uid) == -1)
330 fatal("setresuid(%d): %s", pw->pw_uid,
331 strerror(errno));
334 if (getuid() == 0)
335 log_warn(NULL, "not a good idea to run a network daemon as root");
338 static void
339 usage(void)
341 fprintf(stderr,
342 "Version: " GMID_STRING "\n"
343 "Usage: %s [-dhnVv] [-D macro=value] [-f config] [-P pidfile]\n",
344 getprogname());
347 static void
348 logger_init(void)
350 int p[2];
352 if (socketpair(AF_UNIX, SOCK_STREAM, PF_UNSPEC, p) == -1)
353 err(1, "socketpair");
355 switch (fork()) {
356 case -1:
357 err(1, "fork");
358 case 0:
359 signal(SIGHUP, SIG_IGN);
360 close(p[0]);
361 setproctitle("logger");
362 imsg_init(&logibuf, p[1]);
363 drop_priv();
364 _exit(logger_main(p[1], &logibuf));
365 default:
366 close(p[1]);
367 imsg_init(&logibuf, p[0]);
368 return;
372 static void
373 serve(void)
375 int i, p[2];
377 /* setup tls before dropping privileges: we don't want user
378 * to put private certs inside the chroot. */
379 setup_tls();
381 for (i = 0; i < conf.prefork; ++i) {
382 if (socketpair(AF_UNIX, SOCK_STREAM | SOCK_CLOEXEC,
383 PF_UNSPEC, p) == -1)
384 fatal("socketpair: %s", strerror(errno));
386 switch (fork()) {
387 case -1:
388 fatal("fork: %s", strerror(errno));
389 case 0: /* child */
390 close(p[0]);
391 imsg_init(&servibuf[i], p[1]);
392 setproctitle("server");
393 _exit(listener_main(&servibuf[i]));
394 default:
395 close(p[1]);
396 imsg_init(&servibuf[i], p[0]);
401 static int
402 write_pidfile(const char *pidfile)
404 struct flock lock;
405 int fd;
407 if (pidfile == NULL)
408 return -1;
410 if ((fd = open(pidfile, O_WRONLY|O_CREAT|O_CLOEXEC, 0600)) == -1)
411 fatal("can't open pidfile %s: %s", pidfile, strerror(errno));
413 lock.l_start = 0;
414 lock.l_len = 0;
415 lock.l_type = F_WRLCK;
416 lock.l_whence = SEEK_SET;
418 if (fcntl(fd, F_SETLK, &lock) == -1)
419 fatal("can't lock %s, gmid is already running?", pidfile);
421 if (ftruncate(fd, 0) == -1)
422 fatal("ftruncate: %s: %s", pidfile, strerror(errno));
424 dprintf(fd, "%d\n", getpid());
426 return fd;
429 int
430 main(int argc, char **argv)
432 int i, ch, conftest = 0;
433 int pidfd, old_ipv6, old_port;
435 logger_init();
436 init_config();
438 while ((ch = getopt_long(argc, argv, opts, longopts, NULL)) != -1) {
439 switch (ch) {
440 case 'D':
441 if (cmdline_symset(optarg) == -1)
442 fatal("could not parse macro definition: %s",
443 optarg);
444 break;
445 case 'd':
446 conf.foreground = 1;
447 break;
448 case 'f':
449 config_path = absolutify_path(optarg);
450 break;
451 case 'h':
452 usage();
453 return 0;
454 case 'n':
455 conftest++;
456 break;
457 case 'P':
458 pidfile = optarg;
459 break;
460 case 'V':
461 puts("Version: " GMID_STRING);
462 return 0;
463 case 'v':
464 conf.verbose++;
465 break;
466 default:
467 usage();
468 return 1;
471 argc -= optind;
472 argv += optind;
474 if (argc != 0)
475 usage();
477 parse_conf(config_path);
479 if (conftest) {
480 fprintf(stderr, "config OK\n");
481 if (conftest > 1)
482 print_conf();
483 return 0;
486 if (!conf.foreground) {
487 /* log to syslog */
488 imsg_compose(&logibuf, IMSG_LOG_TYPE, 0, 0, -1, NULL, 0);
489 imsg_flush(&logibuf);
491 if (daemon(1, 1) == -1)
492 fatal("daemon: %s", strerror(errno));
495 sock4 = make_socket(conf.port, AF_INET);
496 sock6 = -1;
497 if (conf.ipv6)
498 sock6 = make_socket(conf.port, AF_INET6);
500 signal(SIGPIPE, SIG_IGN);
502 pidfd = write_pidfile(pidfile);
504 /*
505 * Linux seems to call the event handlers even when we're
506 * doing a sigwait. These dummy handlers are here to avoid
507 * being terminated on SIGHUP, SIGINT or SIGTERM.
508 */
509 signal(SIGHUP, dummy_handler);
510 signal(SIGINT, dummy_handler);
511 signal(SIGTERM, dummy_handler);
513 /* wait a sighup and reload the daemon */
514 for (;;) {
515 serve();
517 if (!wait_signal())
518 break;
520 log_info(NULL, "reloading configuration %s", config_path);
522 /* close the servers */
523 for (i = 0; i < conf.prefork; ++i) {
524 imsg_compose(&servibuf[i], IMSG_QUIT, 0, 0, -1, NULL, 0);
525 imsg_flush(&servibuf[i]);
526 close(servibuf[i].fd);
529 old_ipv6 = conf.ipv6;
530 old_port = conf.port;
532 free_config();
533 init_config();
534 parse_conf(config_path);
536 if (old_port != conf.port) {
537 close(sock4);
538 close(sock6);
539 sock4 = -1;
540 sock6 = -1;
543 if (sock6 != -1 && old_ipv6 != conf.ipv6) {
544 close(sock6);
545 sock6 = -1;
548 if (sock4 == -1)
549 sock4 = make_socket(conf.port, AF_INET);
550 if (sock6 == -1 && conf.ipv6)
551 sock6 = make_socket(conf.port, AF_INET6);
554 for (i = 0; i < conf.prefork; ++i) {
555 imsg_compose(&servibuf[i], IMSG_QUIT, 0, 0, -1, NULL, 0);
556 imsg_flush(&servibuf[i]);
557 close(servibuf[i].fd);
560 imsg_compose(&logibuf, IMSG_QUIT, 0, 0, -1, NULL, 0);
561 imsg_flush(&logibuf);
562 close(logibuf.fd);
564 if (pidfd != -1)
565 close(pidfd);
567 return 0;