Blob


1 /*
2 * Copyright (c) 2021 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 <assert.h>
22 #include <errno.h>
23 #include <event.h>
24 #include <fcntl.h>
25 #include <fnmatch.h>
26 #include <limits.h>
27 #include <string.h>
29 static struct client clients[MAX_USERS];
30 static struct tls *ctx;
32 static struct event e4, e6, imsgev, siginfo, sigusr2;
33 static int has_ipv6, has_siginfo;
35 int connected_clients;
37 static inline int matches(const char*, const char*);
39 static inline void yield_read(int, struct client*, statefn);
40 static inline void yield_write(int, struct client*, statefn);
42 static int check_path(struct client*, const char*, int*);
43 static void open_file(struct client*);
44 static void check_for_cgi(struct client*);
45 static void handle_handshake(int, short, void*);
46 static char *strip_path(char*, int);
47 static void fmt_sbuf(const char*, struct client*, const char*);
48 static int apply_block_return(struct client*);
49 static int apply_require_ca(struct client*);
50 static void handle_open_conn(int, short, void*);
51 static void start_reply(struct client*, int, const char*);
52 static void handle_start_reply(int, short, void*);
53 static size_t host_nth(struct vhost*);
54 static void start_cgi(const char*, const char*, struct client*);
55 static void open_dir(struct client*);
56 static void redirect_canonical_dir(struct client*);
57 static void enter_handle_dirlist(int, short, void*);
58 static void handle_dirlist(int, short, void*);
59 static int read_next_dir_entry(struct client*);
60 static void send_directory_listing(int, short, void*);
61 static void handle_cgi_reply(int, short, void*);
62 static void handle_copy(int, short, void*);
63 static void close_conn(int, short, void*);
64 static void do_accept(int, short, void*);
65 struct client *client_by_id(int);
66 static void handle_imsg_cgi_res(struct imsgbuf*, struct imsg*, size_t);
67 static void handle_imsg_quit(struct imsgbuf*, struct imsg*, size_t);
68 static void handle_siginfo(int, short, void*);
70 static imsg_handlerfn *handlers[] = {
71 [IMSG_QUIT] = handle_imsg_quit,
72 [IMSG_CGI_RES] = handle_imsg_cgi_res,
73 };
75 static inline int
76 matches(const char *pattern, const char *path)
77 {
78 if (*path == '/')
79 path++;
80 return !fnmatch(pattern, path, 0);
81 }
83 static inline void
84 yield_read(int fd, struct client *c, statefn fn)
85 {
86 event_once(fd, EV_READ, fn, c, NULL);
87 }
89 static inline void
90 yield_write(int fd, struct client *c, statefn fn)
91 {
92 event_once(fd, EV_WRITE, fn, c, NULL);
93 }
95 const char *
96 vhost_lang(struct vhost *v, const char *path)
97 {
98 struct location *loc;
100 if (v == NULL || path == NULL)
101 return NULL;
103 loc = TAILQ_FIRST(&v->locations);
104 while ((loc = TAILQ_NEXT(loc, locations)) != NULL) {
105 if (loc->lang != NULL) {
106 if (matches(loc->match, path))
107 return loc->lang;
111 return TAILQ_FIRST(&v->locations)->lang;
114 const char *
115 vhost_default_mime(struct vhost *v, const char *path)
117 struct location *loc;
118 const char *default_mime = "application/octet-stream";
120 if (v == NULL || path == NULL)
121 return default_mime;
123 loc = TAILQ_FIRST(&v->locations);
124 while ((loc = TAILQ_NEXT(loc, locations)) != NULL) {
125 if (loc->default_mime != NULL) {
126 if (matches(loc->match, path))
127 return loc->default_mime;
131 loc = TAILQ_FIRST(&v->locations);
132 if (loc->default_mime != NULL)
133 return loc->default_mime;
134 return default_mime;
137 const char *
138 vhost_index(struct vhost *v, const char *path)
140 struct location *loc;
141 const char *index = "index.gmi";
143 if (v == NULL || path == NULL)
144 return index;
146 loc = TAILQ_FIRST(&v->locations);
147 while ((loc = TAILQ_NEXT(loc, locations)) != NULL) {
148 if (loc->index != NULL) {
149 if (matches(loc->match, path))
150 return loc->index;
154 loc = TAILQ_FIRST(&v->locations);
155 if (loc->index != NULL)
156 return loc->index;
157 return index;
160 int
161 vhost_auto_index(struct vhost *v, const char *path)
163 struct location *loc;
165 if (v == NULL || path == NULL)
166 return 0;
168 loc = TAILQ_FIRST(&v->locations);
169 while ((loc = TAILQ_NEXT(loc, locations)) != NULL) {
170 if (loc->auto_index != 0) {
171 if (matches(loc->match, path))
172 return loc->auto_index == 1;
176 loc = TAILQ_FIRST(&v->locations);
177 return loc->auto_index == 1;
180 int
181 vhost_block_return(struct vhost *v, const char *path, int *code, const char **fmt)
183 struct location *loc;
185 if (v == NULL || path == NULL)
186 return 0;
188 loc = TAILQ_FIRST(&v->locations);
189 while ((loc = TAILQ_NEXT(loc, locations)) != NULL) {
190 if (loc->block_code != 0) {
191 if (matches(loc->match, path)) {
192 *code = loc->block_code;
193 *fmt = loc->block_fmt;
194 return 1;
199 loc = TAILQ_FIRST(&v->locations);
200 *code = loc->block_code;
201 *fmt = loc->block_fmt;
202 return loc->block_code != 0;
205 int
206 vhost_strip(struct vhost *v, const char *path)
208 struct location *loc;
210 if (v == NULL || path == NULL)
211 return 0;
213 loc = TAILQ_FIRST(&v->locations);
214 while ((loc = TAILQ_NEXT(loc, locations)) != NULL) {
215 if (loc->strip != 0) {
216 if (matches(loc->match, path))
217 return loc->strip;
221 loc = TAILQ_FIRST(&v->locations);
222 return loc->strip;
225 X509_STORE *
226 vhost_require_ca(struct vhost *v, const char *path)
228 struct location *loc;
230 if (v == NULL || path == NULL)
231 return NULL;
233 loc = TAILQ_FIRST(&v->locations);
234 while ((loc = TAILQ_NEXT(loc, locations)) != NULL) {
235 if (loc->reqca != NULL) {
236 if (matches(loc->match, path))
237 return loc->reqca;
241 loc = TAILQ_FIRST(&v->locations);
242 return loc->reqca;
245 int
246 vhost_disable_log(struct vhost *v, const char *path)
248 struct location *loc;
250 if (v == NULL || path == NULL)
251 return 0;
253 loc = TAILQ_FIRST(&v->locations);
254 while ((loc = TAILQ_NEXT(loc, locations)) != NULL) {
255 if (loc->disable_log && matches(loc->match, path))
256 return 1;
259 loc = TAILQ_FIRST(&v->locations);
260 return loc->disable_log;
263 static int
264 check_path(struct client *c, const char *path, int *fd)
266 struct stat sb;
267 const char *p;
268 int flags;
270 assert(path != NULL);
272 if (*path == '\0')
273 p = ".";
274 else if (*path == '/')
275 /* in send_dir we add an initial / (to be
276 * redirect-friendly), but here we want to skip it */
277 p = path+1;
278 else
279 p = path;
281 flags = O_RDONLY | O_NOFOLLOW;
283 if (*fd == -1 && (*fd = openat(c->host->dirfd, p, flags)) == -1)
284 return FILE_MISSING;
286 if (fstat(*fd, &sb) == -1) {
287 log_notice(c, "failed stat for %s: %s", path, strerror(errno));
288 return FILE_MISSING;
291 if (S_ISDIR(sb.st_mode))
292 return FILE_DIRECTORY;
294 if (sb.st_mode & S_IXUSR)
295 return FILE_EXECUTABLE;
297 return FILE_EXISTS;
300 static void
301 open_file(struct client *c)
303 switch (check_path(c, c->iri.path, &c->pfd)) {
304 case FILE_EXECUTABLE:
305 if (c->host->cgi != NULL && matches(c->host->cgi, c->iri.path)) {
306 start_cgi(c->iri.path, "", c);
307 return;
310 /* fallthrough */
312 case FILE_EXISTS:
313 c->next = handle_copy;
314 start_reply(c, SUCCESS, mime(c->host, c->iri.path));
315 return;
317 case FILE_DIRECTORY:
318 open_dir(c);
319 return;
321 case FILE_MISSING:
322 if (c->host->cgi != NULL && matches(c->host->cgi, c->iri.path)) {
323 check_for_cgi(c);
324 return;
326 start_reply(c, NOT_FOUND, "not found");
327 return;
329 default:
330 /* unreachable */
331 abort();
335 /*
336 * the inverse of this algorithm, i.e. starting from the start of the
337 * path + strlen(cgi), and checking if each component, should be
338 * faster. But it's tedious to write. This does the opposite: starts
339 * from the end and strip one component at a time, until either an
340 * executable is found or we emptied the path.
341 */
342 static void
343 check_for_cgi(struct client *c)
345 char path[PATH_MAX];
346 char *end;
348 strlcpy(path, c->iri.path, sizeof(path));
349 end = strchr(path, '\0');
351 while (end > path) {
352 /* go up one level. UNIX paths are simple and POSIX
353 * dirname, with its ambiguities on if the given path
354 * is changed or not, gives me headaches. */
355 while (*end != '/')
356 end--;
357 *end = '\0';
359 switch (check_path(c, path, &c->pfd)) {
360 case FILE_EXECUTABLE:
361 start_cgi(path, end+1, c);
362 return;
363 case FILE_MISSING:
364 break;
365 default:
366 goto err;
369 *end = '/';
370 end--;
373 err:
374 start_reply(c, NOT_FOUND, "not found");
375 return;
378 void
379 mark_nonblock(int fd)
381 int flags;
383 if ((flags = fcntl(fd, F_GETFL)) == -1)
384 fatal("fcntl(F_GETFL): %s", strerror(errno));
385 if (fcntl(fd, F_SETFL, flags | O_NONBLOCK) == -1)
386 fatal("fcntl(F_SETFL): %s", strerror(errno));
389 static void
390 handle_handshake(int fd, short ev, void *d)
392 struct client *c = d;
393 struct vhost *h;
394 const char *servname;
395 const char *parse_err = "unknown error";
397 switch (tls_handshake(c->ctx)) {
398 case 0: /* success */
399 case -1: /* already handshaked */
400 break;
401 case TLS_WANT_POLLIN:
402 yield_read(fd, c, &handle_handshake);
403 return;
404 case TLS_WANT_POLLOUT:
405 yield_write(fd, c, &handle_handshake);
406 return;
407 default:
408 /* unreachable */
409 abort();
412 servname = tls_conn_servername(c->ctx);
413 if (!puny_decode(servname, c->domain, sizeof(c->domain), &parse_err)) {
414 log_info(c, "puny_decode: %s", parse_err);
415 goto err;
418 TAILQ_FOREACH(h, &hosts, vhosts) {
419 if (matches(h->domain, c->domain))
420 break;
423 log_debug(c, "handshake: SNI: \"%s\"; decoded: \"%s\"; matched: \"%s\"",
424 servname != NULL ? servname : "(null)",
425 c->domain,
426 h != NULL ? h->domain : "(null)");
428 if (h != NULL) {
429 c->host = h;
430 handle_open_conn(fd, ev, c);
431 return;
434 err:
435 if (servname != NULL)
436 strncpy(c->req, servname, sizeof(c->req));
437 else
438 strncpy(c->req, "null", sizeof(c->req));
440 start_reply(c, BAD_REQUEST, "Wrong/malformed host or missing SNI");
443 static char *
444 strip_path(char *path, int strip)
446 char *t;
448 while (strip > 0) {
449 if ((t = strchr(path, '/')) == NULL) {
450 path = strchr(path, '\0');
451 break;
453 path = t;
454 strip--;
457 return path;
460 static void
461 fmt_sbuf(const char *fmt, struct client *c, const char *path)
463 size_t i;
464 char buf[32];
466 memset(buf, 0, sizeof(buf));
467 for (i = 0; *fmt; ++fmt) {
468 if (i == sizeof(buf)-1 || *fmt == '%') {
469 strlcat(c->sbuf, buf, sizeof(c->sbuf));
470 memset(buf, 0, sizeof(buf));
471 i = 0;
474 if (*fmt != '%') {
475 buf[i++] = *fmt;
476 continue;
479 switch (*++fmt) {
480 case '%':
481 strlcat(c->sbuf, "%", sizeof(c->sbuf));
482 break;
483 case 'p':
484 strlcat(c->sbuf, path, sizeof(c->sbuf));
485 break;
486 case 'q':
487 strlcat(c->sbuf, c->iri.query, sizeof(c->sbuf));
488 break;
489 case 'P':
490 snprintf(buf, sizeof(buf), "%d", conf.port);
491 strlcat(c->sbuf, buf, sizeof(c->sbuf));
492 memset(buf, 0, sizeof(buf));
493 break;
494 case 'N':
495 strlcat(c->sbuf, c->domain, sizeof(c->sbuf));
496 break;
497 default:
498 fatal("%s: unknown fmt specifier %c",
499 __func__, *fmt);
503 if (i != 0)
504 strlcat(c->sbuf, buf, sizeof(c->sbuf));
507 /* 1 if a matching `block return' (and apply it), 0 otherwise */
508 static int
509 apply_block_return(struct client *c)
511 const char *fmt, *path;
512 int code;
514 if (!vhost_block_return(c->host, c->iri.path, &code, &fmt))
515 return 0;
517 path = strip_path(c->iri.path, vhost_strip(c->host, c->iri.path));
518 fmt_sbuf(fmt, c, path);
520 start_reply(c, code, c->sbuf);
521 return 1;
524 /* 1 if matching `require client ca' fails (and apply it), 0 otherwise */
525 static int
526 apply_require_ca(struct client *c)
528 X509_STORE *store;
529 const uint8_t *cert;
530 size_t len;
532 if ((store = vhost_require_ca(c->host, c->iri.path)) == NULL)
533 return 0;
535 if (!tls_peer_cert_provided(c->ctx)) {
536 start_reply(c, CLIENT_CERT_REQ, "client certificate required");
537 return 1;
540 cert = tls_peer_cert_chain_pem(c->ctx, &len);
541 if (!validate_against_ca(store, cert, len)) {
542 start_reply(c, CERT_NOT_AUTH, "certificate not authorised");
543 return 1;
546 return 0;
549 static void
550 handle_open_conn(int fd, short ev, void *d)
552 struct client *c = d;
553 const char *parse_err = "invalid request";
554 char decoded[DOMAIN_NAME_LEN];
556 bzero(c->req, sizeof(c->req));
557 bzero(&c->iri, sizeof(c->iri));
559 switch (tls_read(c->ctx, c->req, sizeof(c->req)-1)) {
560 case -1:
561 log_err(c, "tls_read: %s", tls_error(c->ctx));
562 close_conn(fd, ev, c);
563 return;
565 case TLS_WANT_POLLIN:
566 yield_read(fd, c, &handle_open_conn);
567 return;
569 case TLS_WANT_POLLOUT:
570 yield_write(fd, c, &handle_open_conn);
571 return;
574 if (!trim_req_iri(c->req, &parse_err)
575 || !parse_iri(c->req, &c->iri, &parse_err)
576 || !puny_decode(c->iri.host, decoded, sizeof(decoded), &parse_err)) {
577 log_info(c, "iri parse error: %s", parse_err);
578 start_reply(c, BAD_REQUEST, "invalid request");
579 return;
582 if (c->iri.port_no != conf.port
583 || strcmp(c->iri.schema, "gemini")
584 || strcmp(decoded, c->domain)) {
585 start_reply(c, PROXY_REFUSED, "won't proxy request");
586 return;
589 if (apply_require_ca(c))
590 return;
592 if (apply_block_return(c))
593 return;
595 if (c->host->entrypoint != NULL) {
596 start_cgi(c->host->entrypoint, c->iri.path, c);
597 return;
600 open_file(c);
603 static void
604 start_reply(struct client *c, int code, const char *meta)
606 c->code = code;
607 c->meta = meta;
608 handle_start_reply(c->fd, 0, c);
611 static void
612 handle_start_reply(int fd, short ev, void *d)
614 struct client *c = d;
615 char buf[1030]; /* status + ' ' + max reply len + \r\n\0 */
616 const char *lang;
617 size_t len;
619 lang = vhost_lang(c->host, c->iri.path);
621 snprintf(buf, sizeof(buf), "%d ", c->code);
622 strlcat(buf, c->meta, sizeof(buf));
623 if (!strcmp(c->meta, "text/gemini") && lang != NULL) {
624 strlcat(buf, "; lang=", sizeof(buf));
625 strlcat(buf, lang, sizeof(buf));
628 len = strlcat(buf, "\r\n", sizeof(buf));
629 assert(len < sizeof(buf));
631 switch (tls_write(c->ctx, buf, len)) {
632 case -1:
633 close_conn(fd, ev, c);
634 return;
635 case TLS_WANT_POLLIN:
636 yield_read(fd, c, &handle_start_reply);
637 return;
638 case TLS_WANT_POLLOUT:
639 yield_write(fd, c, &handle_start_reply);
640 return;
643 if (!vhost_disable_log(c->host, c->iri.path))
644 log_request(c, buf, sizeof(buf));
646 if (c->code != SUCCESS)
647 close_conn(fd, ev, c);
648 else
649 c->next(fd, ev, c);
652 static size_t
653 host_nth(struct vhost *h)
655 struct vhost *v;
656 size_t i = 0;
658 TAILQ_FOREACH(v, &hosts, vhosts) {
659 if (v == h)
660 return i;
661 i++;
664 abort();
667 static void
668 start_cgi(const char *spath, const char *relpath, struct client *c)
670 char addr[NI_MAXHOST];
671 const char *t;
672 struct cgireq req;
673 int e;
675 e = getnameinfo((struct sockaddr*)&c->addr, sizeof(c->addr),
676 addr, sizeof(addr),
677 NULL, 0,
678 NI_NUMERICHOST);
679 if (e != 0)
680 fatal("getnameinfo failed");
682 memset(&req, 0, sizeof(req));
684 memcpy(req.buf, c->req, sizeof(req.buf));
686 req.iri_schema_off = c->iri.schema - c->req;
687 req.iri_host_off = c->iri.host - c->req;
688 req.iri_port_off = c->iri.port - c->req;
689 req.iri_path_off = c->iri.path - c->req;
690 req.iri_query_off = c->iri.query - c->req;
691 req.iri_fragment_off = c->iri.fragment - c->req;
693 req.iri_portno = c->iri.port_no;
695 strlcpy(req.spath, spath, sizeof(req.spath));
696 strlcpy(req.relpath, relpath, sizeof(req.relpath));
697 strlcpy(req.addr, addr, sizeof(req.addr));
699 if ((t = tls_peer_cert_subject(c->ctx)) != NULL)
700 strlcpy(req.subject, t, sizeof(req.subject));
701 if ((t = tls_peer_cert_issuer(c->ctx)) != NULL)
702 strlcpy(req.issuer, t, sizeof(req.issuer));
703 if ((t = tls_peer_cert_hash(c->ctx)) != NULL)
704 strlcpy(req.hash, t, sizeof(req.hash));
705 if ((t = tls_conn_version(c->ctx)) != NULL)
706 strlcpy(req.version, t, sizeof(req.version));
707 if ((t = tls_conn_cipher(c->ctx)) != NULL)
708 strlcpy(req.cipher, t, sizeof(req.cipher));
710 req.cipher_strength = tls_conn_cipher_strength(c->ctx);
711 req.notbefore = tls_peer_cert_notbefore(c->ctx);
712 req.notafter = tls_peer_cert_notafter(c->ctx);
714 req.host_off = host_nth(c->host);
716 imsg_compose(&exibuf, IMSG_CGI_REQ, c->id, 0, -1, &req, sizeof(req));
717 imsg_flush(&exibuf);
719 close(c->pfd);
722 static void
723 open_dir(struct client *c)
725 size_t len;
726 int dirfd;
727 char *before_file;
729 len = strlen(c->iri.path);
730 if (len > 0 && !ends_with(c->iri.path, "/")) {
731 redirect_canonical_dir(c);
732 return;
735 strlcpy(c->sbuf, "/", sizeof(c->sbuf));
736 strlcat(c->sbuf, c->iri.path, sizeof(c->sbuf));
737 if (!ends_with(c->sbuf, "/"))
738 strlcat(c->sbuf, "/", sizeof(c->sbuf));
739 before_file = strchr(c->sbuf, '\0');
740 len = strlcat(c->sbuf, vhost_index(c->host, c->iri.path),
741 sizeof(c->sbuf));
742 if (len >= sizeof(c->sbuf)) {
743 start_reply(c, TEMP_FAILURE, "internal server error");
744 return;
747 c->iri.path = c->sbuf;
749 /* close later unless we have to generate the dir listing */
750 dirfd = c->pfd;
751 c->pfd = -1;
753 switch (check_path(c, c->iri.path, &c->pfd)) {
754 case FILE_EXECUTABLE:
755 if (c->host->cgi != NULL && matches(c->host->cgi, c->iri.path)) {
756 start_cgi(c->iri.path, "", c);
757 break;
760 /* fallthrough */
762 case FILE_EXISTS:
763 c->next = handle_copy;
764 start_reply(c, SUCCESS, mime(c->host, c->iri.path));
765 break;
767 case FILE_DIRECTORY:
768 start_reply(c, TEMP_REDIRECT, c->sbuf);
769 break;
771 case FILE_MISSING:
772 *before_file = '\0';
774 if (!vhost_auto_index(c->host, c->iri.path)) {
775 start_reply(c, NOT_FOUND, "not found");
776 break;
779 c->pfd = dirfd;
780 c->next = enter_handle_dirlist;
782 if ((c->dir = fdopendir(c->pfd)) == NULL) {
783 log_err(c, "fdopendir(%d) (vhost:%s) %s: %s",
784 c->pfd, c->host->domain, c->iri.path, strerror(errno));
785 start_reply(c, TEMP_FAILURE, "internal server error");
786 return;
788 c->off = 0;
790 start_reply(c, SUCCESS, "text/gemini");
791 return;
793 default:
794 /* unreachable */
795 abort();
798 close(dirfd);
801 static void
802 redirect_canonical_dir(struct client *c)
804 size_t len;
806 strlcpy(c->sbuf, "/", sizeof(c->sbuf));
807 strlcat(c->sbuf, c->iri.path, sizeof(c->sbuf));
808 len = strlcat(c->sbuf, "/", sizeof(c->sbuf));
810 if (len >= sizeof(c->sbuf)) {
811 start_reply(c, TEMP_FAILURE, "internal server error");
812 return;
815 start_reply(c, TEMP_REDIRECT, c->sbuf);
818 static void
819 enter_handle_dirlist(int fd, short ev, void *d)
821 struct client *c = d;
822 char b[PATH_MAX];
823 size_t l;
825 strlcpy(b, c->iri.path, sizeof(b));
826 l = snprintf(c->sbuf, sizeof(c->sbuf),
827 "# Index of %s\n\n", b);
828 if (l >= sizeof(c->sbuf)) {
829 /* this is impossible, given that we have enough space
830 * in c->sbuf to hold the ancilliary string plus the
831 * full path; but it wouldn't read nice without some
832 * error checking, and I'd like to avoid a strlen. */
833 close_conn(fd, ev, c);
834 return;
837 c->len = l;
838 handle_dirlist(fd, ev, c);
841 static void
842 handle_dirlist(int fd, short ev, void *d)
844 struct client *c = d;
845 ssize_t r;
847 while (c->len > 0) {
848 switch (r = tls_write(c->ctx, c->sbuf + c->off, c->len)) {
849 case -1:
850 close_conn(fd, ev, c);
851 return;
852 case TLS_WANT_POLLOUT:
853 yield_read(fd, c, &handle_dirlist);
854 return;
855 case TLS_WANT_POLLIN:
856 yield_write(fd, c, &handle_dirlist);
857 return;
858 default:
859 c->off += r;
860 c->len -= r;
864 send_directory_listing(fd, ev, c);
867 static int
868 read_next_dir_entry(struct client *c)
870 struct dirent *d;
872 do {
873 errno = 0;
874 if ((d = readdir(c->dir)) == NULL) {
875 if (errno != 0)
876 log_err(c, "readdir: %s", strerror(errno));
877 return 0;
879 } while (!strcmp(d->d_name, "."));
881 /* XXX: url escape */
882 snprintf(c->sbuf, sizeof(c->sbuf), "=> %s %s\n",
883 d->d_name, d->d_name);
884 c->len = strlen(c->sbuf);
885 c->off = 0;
887 return 1;
890 static void
891 send_directory_listing(int fd, short ev, void *d)
893 struct client *c = d;
894 ssize_t r;
896 while (1) {
897 if (c->len == 0) {
898 if (!read_next_dir_entry(c))
899 goto end;
902 while (c->len > 0) {
903 switch (r = tls_write(c->ctx, c->sbuf + c->off, c->len)) {
904 case -1:
905 goto end;
907 case TLS_WANT_POLLOUT:
908 yield_read(fd, c, &send_directory_listing);
909 return;
911 case TLS_WANT_POLLIN:
912 yield_write(fd, c, &send_directory_listing);
913 return;
915 default:
916 c->off += r;
917 c->len -= r;
918 break;
923 end:
924 close_conn(fd, ev, d);
927 /* accumulate the meta line from the cgi script. */
928 static void
929 handle_cgi_reply(int fd, short ev, void *d)
931 struct client *c = d;
932 void *buf, *e;
933 size_t len;
934 ssize_t r;
937 buf = c->sbuf + c->len;
938 len = sizeof(c->sbuf) - c->len;
940 r = read(c->pfd, buf, len);
941 if (r == 0 || r == -1) {
942 start_reply(c, CGI_ERROR, "CGI error");
943 return;
946 c->len += r;
948 /* TODO: error if the CGI script don't reply correctly */
949 e = strchr(c->sbuf, '\n');
950 if (e != NULL || c->len == sizeof(c->sbuf)) {
951 log_request(c, c->sbuf, c->len);
953 c->off = 0;
954 handle_copy(fd, ev, c);
955 return;
958 yield_read(fd, c, &handle_cgi_reply);
961 static void
962 handle_copy(int fd, short ev, void *d)
964 struct client *c = d;
965 ssize_t r;
967 while (1) {
968 while (c->len > 0) {
969 switch (r = tls_write(c->ctx, c->sbuf + c->off, c->len)) {
970 case -1:
971 goto end;
973 case TLS_WANT_POLLOUT:
974 yield_write(c->fd, c, &handle_copy);
975 return;
977 case TLS_WANT_POLLIN:
978 yield_read(c->fd, c, &handle_copy);
979 return;
981 default:
982 c->off += r;
983 c->len -= r;
984 break;
988 switch (r = read(c->pfd, c->sbuf, sizeof(c->sbuf))) {
989 case 0:
990 goto end;
991 case -1:
992 if (errno == EAGAIN || errno == EWOULDBLOCK) {
993 yield_read(c->pfd, c, &handle_copy);
994 return;
996 goto end;
997 default:
998 c->len = r;
999 c->off = 0;
1003 end:
1004 close_conn(c->fd, ev, d);
1007 static void
1008 close_conn(int fd, short ev, void *d)
1010 struct client *c = d;
1012 switch (tls_close(c->ctx)) {
1013 case TLS_WANT_POLLIN:
1014 yield_read(fd, c, &close_conn);
1015 return;
1016 case TLS_WANT_POLLOUT:
1017 yield_read(fd, c, &close_conn);
1018 return;
1021 connected_clients--;
1023 tls_free(c->ctx);
1024 c->ctx = NULL;
1026 if (c->pfd != -1)
1027 close(c->pfd);
1029 if (c->dir != NULL)
1030 closedir(c->dir);
1032 close(c->fd);
1033 c->fd = -1;
1036 static void
1037 do_accept(int sock, short et, void *d)
1039 struct client *c;
1040 struct sockaddr_storage addr;
1041 struct sockaddr *saddr;
1042 socklen_t len;
1043 int i, fd;
1045 (void)et;
1047 saddr = (struct sockaddr*)&addr;
1048 len = sizeof(addr);
1049 if ((fd = accept(sock, saddr, &len)) == -1) {
1050 if (errno == EWOULDBLOCK || errno == EAGAIN)
1051 return;
1052 fatal("accept: %s", strerror(errno));
1055 mark_nonblock(fd);
1057 for (i = 0; i < MAX_USERS; ++i) {
1058 c = &clients[i];
1059 if (c->fd == -1) {
1060 memset(c, 0, sizeof(*c));
1061 c->id = i;
1062 if (tls_accept_socket(ctx, &c->ctx, fd) == -1)
1063 break; /* goodbye fd! */
1065 c->fd = fd;
1066 c->pfd = -1;
1067 c->dir = NULL;
1068 c->addr = addr;
1070 yield_read(fd, c, &handle_handshake);
1071 connected_clients++;
1072 return;
1076 close(fd);
1079 struct client *
1080 client_by_id(int id)
1082 if ((size_t)id > sizeof(clients)/sizeof(clients[0]))
1083 fatal("in client_by_id: invalid id %d", id);
1084 return &clients[id];
1087 static void
1088 handle_imsg_cgi_res(struct imsgbuf *ibuf, struct imsg *imsg, size_t len)
1090 struct client *c;
1092 c = client_by_id(imsg->hdr.peerid);
1094 if ((c->pfd = imsg->fd) == -1)
1095 start_reply(c, TEMP_FAILURE, "internal server error");
1096 else
1097 yield_read(c->pfd, c, &handle_cgi_reply);
1100 static void
1101 handle_imsg_quit(struct imsgbuf *ibuf, struct imsg *imsg, size_t len)
1103 (void)imsg;
1104 (void)len;
1106 /* don't call event_loopbreak since we want to finish to
1107 * handle the ongoing connections. */
1109 event_del(&e4);
1110 if (has_ipv6)
1111 event_del(&e6);
1112 if (has_siginfo)
1113 signal_del(&siginfo);
1114 event_del(&imsgev);
1115 signal_del(&sigusr2);
1118 static void
1119 handle_dispatch_imsg(int fd, short ev, void *d)
1121 struct imsgbuf *ibuf = d;
1122 dispatch_imsg(ibuf, handlers, sizeof(handlers));
1125 static void
1126 handle_siginfo(int fd, short ev, void *d)
1128 (void)fd;
1129 (void)ev;
1130 (void)d;
1132 log_info(NULL, "%d connected clients", connected_clients);
1135 void
1136 loop(struct tls *ctx_, int sock4, int sock6, struct imsgbuf *ibuf)
1138 size_t i;
1140 ctx = ctx_;
1142 event_init();
1144 memset(&clients, 0, sizeof(clients));
1145 for (i = 0; i < MAX_USERS; ++i)
1146 clients[i].fd = -1;
1148 event_set(&e4, sock4, EV_READ | EV_PERSIST, &do_accept, NULL);
1149 event_add(&e4, NULL);
1151 if (sock6 != -1) {
1152 has_ipv6 = 1;
1153 event_set(&e6, sock6, EV_READ | EV_PERSIST, &do_accept, NULL);
1154 event_add(&e6, NULL);
1157 event_set(&imsgev, ibuf->fd, EV_READ | EV_PERSIST, handle_dispatch_imsg, ibuf);
1158 event_add(&imsgev, NULL);
1160 #ifdef SIGINFO
1161 has_siginfo = 1;
1162 signal_set(&siginfo, SIGINFO, &handle_siginfo, NULL);
1163 signal_add(&siginfo, NULL);
1164 #endif
1165 signal_set(&sigusr2, SIGUSR2, &handle_siginfo, NULL);
1166 signal_add(&sigusr2, NULL);
1168 sandbox_server_process();
1169 event_dispatch();
1170 _exit(0);