Blob


1 /*
2 * Copyright (c) 2016, 2019, 2020-2021 Tracey Emery <tracey@traceyemery.net>
3 * Copyright (c) 2015 Mike Larkin <mlarkin@openbsd.org>
4 * Copyright (c) 2013 David Gwynne <dlg@openbsd.org>
5 * Copyright (c) 2013 Florian Obser <florian@openbsd.org>
6 *
7 * Permission to use, copy, modify, and distribute this software for any
8 * purpose with or without fee is hereby granted, provided that the above
9 * copyright notice and this permission notice appear in all copies.
10 *
11 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
12 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
13 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
14 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
15 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
16 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
17 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
18 */
20 #include <sys/param.h>
21 #include <sys/ioctl.h>
22 #include <sys/queue.h>
23 #include <sys/wait.h>
24 #include <sys/uio.h>
25 #include <sys/resource.h>
26 #include <sys/socket.h>
27 #include <sys/stat.h>
28 #include <sys/time.h>
29 #include <sys/types.h>
30 #include <sys/mman.h>
31 #include <sys/un.h>
33 #include <net/if.h>
34 #include <netinet/in.h>
36 #include <errno.h>
37 #include <event.h>
38 #include <fcntl.h>
39 #include <ifaddrs.h>
40 #include <imsg.h>
41 #include <limits.h>
42 #include <netdb.h>
43 #include <poll.h>
44 #include <pwd.h>
45 #include <stddef.h>
46 #include <stdio.h>
47 #include <stdlib.h>
48 #include <string.h>
49 #include <unistd.h>
50 #include <util.h>
52 #include "got_error.h"
53 #include "got_opentemp.h"
54 #include "got_reference.h"
55 #include "got_repository.h"
57 #include "proc.h"
58 #include "gotwebd.h"
59 #include "tmpl.h"
61 #define SOCKS_BACKLOG 5
62 #define MAXIMUM(a, b) (((a) > (b)) ? (a) : (b))
65 volatile int client_cnt;
67 static struct timeval timeout = { TIMEOUT_DEFAULT, 0 };
69 static void sockets_sighdlr(int, short, void *);
70 static void sockets_run(struct privsep *, struct privsep_proc *, void *);
71 static void sockets_launch(void);
72 static void sockets_purge(struct gotwebd *);
73 static void sockets_accept_paused(int, short, void *);
74 static void sockets_rlimit(int);
76 static int sockets_dispatch_gotwebd(int, struct privsep_proc *,
77 struct imsg *);
78 static int sockets_unix_socket_listen(struct privsep *, struct socket *);
79 static int sockets_create_socket(struct address *, in_port_t);
80 static int sockets_accept_reserve(int, struct sockaddr *, socklen_t *,
81 int, volatile int *);
83 static struct socket *sockets_conf_new_socket_unix(struct gotwebd *,
84 struct server *, int);
85 static struct socket *sockets_conf_new_socket_fcgi(struct gotwebd *,
86 struct server *, int, struct address *);
88 int cgi_inflight = 0;
90 static struct privsep_proc procs[] = {
91 { "gotwebd", PROC_GOTWEBD, sockets_dispatch_gotwebd },
92 };
94 void
95 sockets(struct privsep *ps, struct privsep_proc *p)
96 {
97 proc_run(ps, p, procs, nitems(procs), sockets_run, NULL);
98 }
100 static void
101 sockets_run(struct privsep *ps, struct privsep_proc *p, void *arg)
103 if (config_init(ps->ps_env) == -1)
104 fatal("failed to initialize configuration");
106 p->p_shutdown = sockets_shutdown;
108 sockets_rlimit(-1);
110 signal_del(&ps->ps_evsigchld);
111 signal_set(&ps->ps_evsigchld, SIGCHLD, sockets_sighdlr, ps);
112 signal_add(&ps->ps_evsigchld, NULL);
114 #ifndef PROFILE
115 if (pledge("stdio rpath wpath cpath inet recvfd proc exec sendfd",
116 NULL) == -1)
117 fatal("pledge");
118 #endif
121 void
122 sockets_parse_sockets(struct gotwebd *env)
124 struct server *srv;
125 struct address *a;
126 struct socket *new_sock = NULL;
127 int sock_id = 1;
129 TAILQ_FOREACH(srv, &env->servers, entry) {
130 if (srv->unix_socket) {
131 new_sock = sockets_conf_new_socket_unix(env, srv,
132 sock_id);
133 if (new_sock) {
134 sock_id++;
135 TAILQ_INSERT_TAIL(&env->sockets, new_sock,
136 entry);
140 if (srv->fcgi_socket) {
141 if (TAILQ_EMPTY(&srv->al)) {
142 fatalx("%s: server %s has no IP addresses to "
143 "listen for FCGI connections", __func__,
144 srv->name);
146 TAILQ_FOREACH(a, &srv->al, entry) {
147 if (a->ss.ss_family != AF_INET &&
148 a->ss.ss_family != AF_INET6)
149 continue;
150 new_sock = sockets_conf_new_socket_fcgi(env,
151 srv, sock_id, a);
152 if (new_sock) {
153 sock_id++;
154 TAILQ_INSERT_TAIL(&env->sockets,
155 new_sock, entry);
162 static struct socket *
163 sockets_conf_new_socket_unix(struct gotwebd *env, struct server *srv, int id)
165 struct socket *sock;
166 int n;
168 if ((sock = calloc(1, sizeof(*sock))) == NULL)
169 fatalx("%s: calloc", __func__);
171 sock->conf.id = id;
172 sock->fd = -1;
173 sock->conf.af_type = AF_UNIX;
175 if (strlcpy(sock->conf.unix_socket_name,
176 srv->unix_socket_name,
177 sizeof(sock->conf.unix_socket_name)) >=
178 sizeof(sock->conf.unix_socket_name)) {
179 free(sock);
180 fatalx("%s: strlcpy", __func__);
183 n = snprintf(sock->conf.name, GOTWEBD_MAXTEXT, "%s_parent",
184 srv->name);
185 if (n < 0 || (size_t)n >= GOTWEBD_MAXTEXT) {
186 free(sock);
187 fatalx("%s: snprintf", __func__);
190 if (strlcpy(sock->conf.srv_name, srv->name,
191 sizeof(sock->conf.srv_name)) >= sizeof(sock->conf.srv_name)) {
192 free(sock);
193 fatalx("%s: strlcpy", __func__);
196 return sock;
199 static struct socket *
200 sockets_conf_new_socket_fcgi(struct gotwebd *env, struct server *srv, int id,
201 struct address *a)
203 struct socket *sock;
204 struct address *acp;
205 int n;
207 if ((sock = calloc(1, sizeof(*sock))) == NULL)
208 fatalx("%s: calloc", __func__);
210 sock->conf.id = id;
211 sock->fd = -1;
212 sock->conf.af_type = a->ss.ss_family;
214 sock->conf.fcgi_socket_port = a->port;
216 n = snprintf(sock->conf.name, GOTWEBD_MAXTEXT, "%s_parent",
217 srv->name);
218 if (n < 0 || (size_t)n >= GOTWEBD_MAXTEXT) {
219 free(sock);
220 fatalx("%s: snprintf", __func__);
223 if (strlcpy(sock->conf.srv_name, srv->name,
224 sizeof(sock->conf.srv_name)) >= sizeof(sock->conf.srv_name)) {
225 free(sock);
226 fatalx("%s: strlcpy", __func__);
229 acp = &sock->conf.addr;
231 memcpy(&acp->ss, &a->ss, sizeof(acp->ss));
232 acp->ipproto = a->ipproto;
233 acp->prefixlen = a->prefixlen;
234 acp->port = a->port;
235 if (strlen(a->ifname) != 0) {
236 if (strlcpy(acp->ifname, a->ifname,
237 sizeof(acp->ifname)) >= sizeof(acp->ifname)) {
238 fatalx("%s: interface name truncated",
239 __func__);
243 return (sock);
246 static void
247 sockets_launch(void)
249 struct socket *sock;
251 TAILQ_FOREACH(sock, &gotwebd_env->sockets, entry) {
252 log_debug("%s: configuring socket %d (%d)", __func__,
253 sock->conf.id, sock->fd);
255 event_set(&sock->ev, sock->fd, EV_READ | EV_PERSIST,
256 sockets_socket_accept, sock);
258 if (event_add(&sock->ev, NULL))
259 fatalx("event add sock");
261 evtimer_set(&sock->pause, sockets_accept_paused, sock);
263 log_debug("%s: running socket listener %d", __func__,
264 sock->conf.id);
268 static void
269 sockets_purge(struct gotwebd *env)
271 struct socket *sock, *tsock;
273 /* shutdown and remove sockets */
274 TAILQ_FOREACH_SAFE(sock, &env->sockets, entry, tsock) {
275 if (event_initialized(&sock->ev))
276 event_del(&sock->ev);
277 if (evtimer_initialized(&sock->evt))
278 evtimer_del(&sock->evt);
279 if (evtimer_initialized(&sock->pause))
280 evtimer_del(&sock->pause);
281 if (sock->fd != -1)
282 close(sock->fd);
283 TAILQ_REMOVE(&env->sockets, sock, entry);
287 static int
288 sockets_dispatch_gotwebd(int fd, struct privsep_proc *p, struct imsg *imsg)
290 struct privsep *ps = p->p_ps;
291 int res = 0, cmd = 0, verbose;
293 switch (imsg->hdr.type) {
294 case IMSG_CFG_SRV:
295 config_getserver(gotwebd_env, imsg);
296 break;
297 case IMSG_CFG_SOCK:
298 config_getsock(gotwebd_env, imsg);
299 break;
300 case IMSG_CFG_FD:
301 config_getfd(gotwebd_env, imsg);
302 break;
303 case IMSG_CFG_DONE:
304 config_getcfg(gotwebd_env, imsg);
305 break;
306 case IMSG_CTL_START:
307 sockets_launch();
308 break;
309 case IMSG_CTL_VERBOSE:
310 IMSG_SIZE_CHECK(imsg, &verbose);
311 memcpy(&verbose, imsg->data, sizeof(verbose));
312 log_setverbose(verbose);
313 break;
314 default:
315 return -1;
318 switch (cmd) {
319 case 0:
320 break;
321 default:
322 if (proc_compose_imsg(ps, PROC_GOTWEBD, -1, cmd,
323 imsg->hdr.peerid, -1, &res, sizeof(res)) == -1)
324 return -1;
325 break;
328 return 0;
331 static void
332 sockets_sighdlr(int sig, short event, void *arg)
334 switch (sig) {
335 case SIGHUP:
336 log_info("%s: ignoring SIGHUP", __func__);
337 break;
338 case SIGPIPE:
339 log_info("%s: ignoring SIGPIPE", __func__);
340 break;
341 case SIGUSR1:
342 log_info("%s: ignoring SIGUSR1", __func__);
343 break;
344 case SIGCHLD:
345 break;
346 default:
347 log_info("SIGNAL: %d", sig);
348 fatalx("unexpected signal");
352 void
353 sockets_shutdown(void)
355 struct server *srv, *tsrv;
356 struct socket *sock, *tsock;
357 int i;
359 sockets_purge(gotwebd_env);
361 /* clean sockets */
362 TAILQ_FOREACH_SAFE(sock, &gotwebd_env->sockets, entry, tsock) {
363 TAILQ_REMOVE(&gotwebd_env->sockets, sock, entry);
364 close(sock->fd);
365 free(sock);
368 /* clean servers */
369 TAILQ_FOREACH_SAFE(srv, &gotwebd_env->servers, entry, tsrv) {
370 for (i = 0; i < srv->ncached_repos; i++)
371 got_repo_close(srv->cached_repos[i].repo);
372 free(srv);
375 free(gotwebd_env);
378 int
379 sockets_privinit(struct gotwebd *env, struct socket *sock)
381 struct privsep *ps = env->gotwebd_ps;
383 if (sock->conf.af_type == AF_UNIX) {
384 log_debug("%s: initializing unix socket %s", __func__,
385 sock->conf.unix_socket_name);
386 sock->fd = sockets_unix_socket_listen(ps, sock);
387 if (sock->fd == -1) {
388 log_warnx("%s: create unix socket failed", __func__);
389 return -1;
393 if (sock->conf.af_type == AF_INET || sock->conf.af_type == AF_INET6) {
394 log_debug("%s: initializing %s FCGI socket on port %d for %s",
395 __func__, sock->conf.af_type == AF_INET ? "inet" : "inet6",
396 sock->conf.fcgi_socket_port, sock->conf.name);
397 sock->fd = sockets_create_socket(&sock->conf.addr,
398 sock->conf.fcgi_socket_port);
399 if (sock->fd == -1) {
400 log_warnx("%s: create FCGI socket failed", __func__);
401 return -1;
405 return 0;
408 static int
409 sockets_unix_socket_listen(struct privsep *ps, struct socket *sock)
411 struct gotwebd *env = ps->ps_env;
412 struct sockaddr_un sun;
413 struct socket *tsock;
414 int u_fd = -1;
415 mode_t old_umask, mode;
417 TAILQ_FOREACH(tsock, &env->sockets, entry) {
418 if (strcmp(tsock->conf.unix_socket_name,
419 sock->conf.unix_socket_name) == 0 &&
420 tsock->fd != -1)
421 return (tsock->fd);
424 u_fd = socket(AF_UNIX, SOCK_STREAM | SOCK_NONBLOCK| SOCK_CLOEXEC, 0);
425 if (u_fd == -1) {
426 log_warn("%s: socket", __func__);
427 return -1;
430 sun.sun_family = AF_UNIX;
431 if (strlcpy(sun.sun_path, sock->conf.unix_socket_name,
432 sizeof(sun.sun_path)) >= sizeof(sun.sun_path)) {
433 log_warn("%s: %s name too long", __func__,
434 sock->conf.unix_socket_name);
435 close(u_fd);
436 return -1;
439 if (unlink(sock->conf.unix_socket_name) == -1) {
440 if (errno != ENOENT) {
441 log_warn("%s: unlink %s", __func__,
442 sock->conf.unix_socket_name);
443 close(u_fd);
444 return -1;
448 old_umask = umask(S_IXUSR|S_IXGRP|S_IWOTH|S_IROTH|S_IXOTH);
449 mode = S_IRUSR|S_IWUSR|S_IRGRP|S_IWGRP;
451 if (bind(u_fd, (struct sockaddr *)&sun, sizeof(sun)) == -1) {
452 log_warn("%s: bind: %s", __func__, sock->conf.unix_socket_name);
453 close(u_fd);
454 (void)umask(old_umask);
455 return -1;
458 (void)umask(old_umask);
460 if (chmod(sock->conf.unix_socket_name, mode) == -1) {
461 log_warn("%s: chmod", __func__);
462 close(u_fd);
463 (void)unlink(sock->conf.unix_socket_name);
464 return -1;
467 if (chown(sock->conf.unix_socket_name, ps->ps_pw->pw_uid,
468 ps->ps_pw->pw_gid) == -1) {
469 log_warn("%s: chown", __func__);
470 close(u_fd);
471 (void)unlink(sock->conf.unix_socket_name);
472 return -1;
475 if (listen(u_fd, SOCKS_BACKLOG) == -1) {
476 log_warn("%s: listen", __func__);
477 return -1;
480 return u_fd;
483 static int
484 sockets_create_socket(struct address *a, in_port_t port)
486 struct addrinfo hints;
487 int fd = -1, o_val = 1, flags;
489 memset(&hints, 0, sizeof(hints));
490 hints.ai_family = AF_UNSPEC;
491 hints.ai_socktype = SOCK_STREAM;
492 hints.ai_flags |= AI_PASSIVE;
494 switch (a->ss.ss_family) {
495 case AF_INET:
496 ((struct sockaddr_in *)(&a->ss))->sin_port = htons(port);
497 break;
498 case AF_INET6:
499 ((struct sockaddr_in6 *)(&a->ss))->sin6_port = htons(port);
500 break;
501 default:
502 log_warnx("%s: unknown address family", __func__);
503 return -1;
506 fd = socket(a->ss.ss_family, hints.ai_socktype, a->ipproto);
507 if (fd == -1)
508 return -1;
510 log_debug("%s: opened socket (%d) for %s", __func__,
511 fd, a->ifname);
513 if (setsockopt(fd, SOL_SOCKET, SO_REUSEPORT, &o_val,
514 sizeof(int)) == -1) {
515 log_warn("%s: setsockopt error", __func__);
516 close(fd);
517 return -1;
520 /* non-blocking */
521 flags = fcntl(fd, F_GETFL);
522 flags |= O_NONBLOCK;
523 if (fcntl(fd, F_SETFL, flags) == -1) {
524 log_info("%s: could not enable non-blocking I/O", __func__);
525 close(fd);
526 return -1;
529 if (bind(fd, (struct sockaddr *)&a->ss, a->ss.ss_len) == -1) {
530 close(fd);
531 log_info("%s: can't bind to port %d", __func__,
532 ntohs(port));
533 return -1;
536 if (listen(fd, SOMAXCONN) == -1) {
537 log_warn("%s, unable to listen on socket", __func__);
538 close(fd);
539 return -1;
542 return (fd);
545 static int
546 sockets_accept_reserve(int sockfd, struct sockaddr *addr, socklen_t *addrlen,
547 int reserve, volatile int *counter)
549 int ret;
551 if (getdtablecount() + reserve +
552 ((*counter + 1) * FD_NEEDED) >= getdtablesize()) {
553 log_debug("inflight fds exceeded");
554 errno = EMFILE;
555 return -1;
558 if ((ret = accept4(sockfd, addr, addrlen,
559 SOCK_NONBLOCK | SOCK_CLOEXEC)) > -1) {
560 (*counter)++;
561 log_debug("inflight incremented, now %d", *counter);
564 return ret;
567 static void
568 sockets_accept_paused(int fd, short events, void *arg)
570 struct socket *sock = (struct socket *)arg;
572 event_add(&sock->ev, NULL);
575 void
576 sockets_socket_accept(int fd, short event, void *arg)
578 struct socket *sock = (struct socket *)arg;
579 struct sockaddr_storage ss;
580 struct timeval backoff;
581 struct request *c = NULL;
582 socklen_t len;
583 int s;
585 backoff.tv_sec = 1;
586 backoff.tv_usec = 0;
588 event_add(&sock->ev, NULL);
589 if (event & EV_TIMEOUT)
590 return;
592 len = sizeof(ss);
594 s = sockets_accept_reserve(fd, (struct sockaddr *)&ss, &len,
595 FD_RESERVE, &cgi_inflight);
597 if (s == -1) {
598 switch (errno) {
599 case EINTR:
600 case EWOULDBLOCK:
601 case ECONNABORTED:
602 return;
603 case EMFILE:
604 case ENFILE:
605 event_del(&sock->ev);
606 evtimer_add(&sock->pause, &backoff);
607 return;
608 default:
609 log_warn("%s: accept", __func__);
613 if (client_cnt > GOTWEBD_MAXCLIENTS)
614 goto err;
616 c = calloc(1, sizeof(struct request));
617 if (c == NULL) {
618 log_warn("%s", __func__);
619 close(s);
620 cgi_inflight--;
621 return;
624 c->tp = template(c, fcgi_puts, fcgi_putc);
625 if (c->tp == NULL) {
626 log_warn("%s", __func__);
627 close(s);
628 cgi_inflight--;
629 free(c);
630 return;
633 c->fd = s;
634 c->sock = sock;
635 memcpy(c->priv_fd, sock->priv_fd, sizeof(c->priv_fd));
636 c->buf_pos = 0;
637 c->buf_len = 0;
638 c->request_started = 0;
639 c->sock->client_status = CLIENT_CONNECT;
641 event_set(&c->ev, s, EV_READ|EV_PERSIST, fcgi_request, c);
642 event_add(&c->ev, NULL);
644 evtimer_set(&c->tmo, fcgi_timeout, c);
645 evtimer_add(&c->tmo, &timeout);
647 client_cnt++;
649 return;
650 err:
651 cgi_inflight--;
652 close(s);
653 if (c != NULL)
654 free(c);
657 static void
658 sockets_rlimit(int maxfd)
660 struct rlimit rl;
662 if (getrlimit(RLIMIT_NOFILE, &rl) == -1)
663 fatal("%s: failed to get resource limit", __func__);
664 log_debug("%s: max open files %llu", __func__,
665 (unsigned long long)rl.rlim_max);
667 /*
668 * Allow the maximum number of open file descriptors for this
669 * login class (which should be the class "daemon" by default).
670 */
671 if (maxfd == -1)
672 rl.rlim_cur = rl.rlim_max;
673 else
674 rl.rlim_cur = MAXIMUM(rl.rlim_max, (rlim_t)maxfd);
675 if (setrlimit(RLIMIT_NOFILE, &rl) == -1)
676 fatal("%s: failed to set resource limit", __func__);