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 <errno.h>
18 #include <fcntl.h>
19 #include <limits.h>
20 #include <netdb.h>
21 #include <signal.h>
22 #include <stdarg.h>
23 #include <string.h>
25 #include "gmid.h"
27 struct vhost hosts[HOSTSLEN];
29 int goterror;
31 int exfd;
33 struct conf conf;
35 void
36 fatal(const char *fmt, ...)
37 {
38 va_list ap;
40 va_start(ap, fmt);
42 if (conf.foreground) {
43 vfprintf(stderr, fmt, ap);
44 fprintf(stderr, "\n");
45 } else
46 vsyslog(LOG_DAEMON | LOG_CRIT, fmt, ap);
48 va_end(ap);
49 exit(1);
50 }
52 void
53 logs(int priority, struct client *c,
54 const char *fmt, ...)
55 {
56 char hbuf[NI_MAXHOST], sbuf[NI_MAXSERV];
57 char *fmted, *s;
58 size_t len;
59 int ec;
60 va_list ap;
62 va_start(ap, fmt);
64 if (c == NULL) {
65 strncpy(hbuf, "<internal>", sizeof(hbuf));
66 sbuf[0] = '\0';
67 } else {
68 len = sizeof(c->addr);
69 ec = getnameinfo((struct sockaddr*)&c->addr, len,
70 hbuf, sizeof(hbuf),
71 sbuf, sizeof(sbuf),
72 NI_NUMERICHOST | NI_NUMERICSERV);
73 if (ec != 0)
74 fatal("getnameinfo: %s", gai_strerror(ec));
75 }
77 if (vasprintf(&fmted, fmt, ap) == -1)
78 fatal("vasprintf: %s", strerror(errno));
80 if (conf.foreground)
81 fprintf(stderr, "%s:%s %s\n", hbuf, sbuf, fmted);
82 else {
83 if (asprintf(&s, "%s:%s %s", hbuf, sbuf, fmted) == -1)
84 fatal("asprintf: %s", strerror(errno));
85 syslog(priority | LOG_DAEMON, "%s", s);
86 free(s);
87 }
89 free(fmted);
91 va_end(ap);
92 }
94 /* strchr, but with a bound */
95 static char *
96 gmid_strnchr(char *s, int c, size_t len)
97 {
98 size_t i;
100 for (i = 0; i < len; ++i)
101 if (s[i] == c)
102 return &s[i];
103 return NULL;
106 void
107 log_request(struct client *c, char *meta, size_t l)
109 char hbuf[NI_MAXHOST], sbuf[NI_MAXSERV], b[GEMINI_URL_LEN];
110 char *t;
111 size_t len;
112 int ec;
114 len = sizeof(c->addr);
115 ec = getnameinfo((struct sockaddr*)&c->addr, len,
116 hbuf, sizeof(hbuf),
117 sbuf, sizeof(sbuf),
118 NI_NUMERICHOST | NI_NUMERICSERV);
119 if (ec != 0)
120 fatal("getnameinfo: %s", gai_strerror(ec));
122 if (c->iri.schema != NULL) {
123 /* serialize the IRI */
124 strlcpy(b, c->iri.schema, sizeof(b));
125 strlcat(b, "://", sizeof(b));
126 strlcat(b, c->iri.host, sizeof(b));
127 strlcat(b, "/", sizeof(b));
128 strlcat(b, c->iri.path, sizeof(b)); /* TODO: sanitize UTF8 */
129 if (*c->iri.query != '\0') { /* TODO: sanitize UTF8 */
130 strlcat(b, "?", sizeof(b));
131 strlcat(b, c->iri.query, sizeof(b));
133 } else {
134 strlcpy(b, c->req, sizeof(b));
137 if ((t = gmid_strnchr(meta, '\r', l)) == NULL)
138 t = meta + len;
140 if (conf.foreground)
141 fprintf(stderr, "%s:%s GET %s %.*s\n", hbuf, sbuf, b,
142 (int)(t - meta), meta);
143 else
144 syslog(LOG_INFO | LOG_DAEMON, "%s:%s GET %s %.*s",
145 hbuf, sbuf, b, (int)(t - meta), meta);
148 void
149 sig_handler(int sig)
151 (void)sig;
154 int
155 starts_with(const char *str, const char *prefix)
157 size_t i;
159 for (i = 0; prefix[i] != '\0'; ++i)
160 if (str[i] != prefix[i])
161 return 0;
162 return 1;
165 ssize_t
166 filesize(int fd)
168 ssize_t len;
170 if ((len = lseek(fd, 0, SEEK_END)) == -1)
171 return -1;
172 if (lseek(fd, 0, SEEK_SET) == -1)
173 return -1;
174 return len;
177 char *
178 absolutify_path(const char *path)
180 char *wd, *r;
182 if (*path == '/')
183 return strdup(path);
185 wd = getcwd(NULL, 0);
186 if (asprintf(&r, "%s/%s", wd, path) == -1)
187 fatal("asprintf: %s", strerror(errno));
188 free(wd);
189 return r;
192 void
193 yyerror(const char *msg)
195 goterror = 1;
196 fprintf(stderr, "%d: %s\n", yylineno, msg);
199 int
200 parse_portno(const char *p)
202 char *errstr;
203 int n;
205 n = strtonum(p, 0, UINT16_MAX, &errstr);
206 if (errstr != NULL)
207 errx(1, "port number is %s: %s", errstr, p);
208 return n;
211 void
212 parse_conf(const char *path)
214 if ((yyin = fopen(path, "r")) == NULL)
215 fatal("cannot open config %s", path);
216 yyparse();
217 fclose(yyin);
219 if (goterror)
220 exit(1);
223 void
224 load_vhosts(struct tls_config *tlsconf)
226 struct vhost *h;
228 /* we need to set something, then we can add how many key we want */
229 if (tls_config_set_keypair_file(tlsconf, hosts->cert, hosts->key))
230 fatal("tls_config_set_keypair_file failed");
232 for (h = hosts; h->domain != NULL; ++h) {
233 if (tls_config_add_keypair_file(tlsconf, h->cert, h->key) == -1)
234 fatal("failed to load the keypair (%s, %s)",
235 h->cert, h->key);
237 if ((h->dirfd = open(h->dir, O_RDONLY | O_DIRECTORY)) == -1)
238 fatal("open %s for domain %s", h->dir, h->domain);
242 int
243 make_socket(int port, int family)
245 int sock, v;
246 struct sockaddr_in addr4;
247 struct sockaddr_in6 addr6;
248 struct sockaddr *addr;
249 socklen_t len;
251 switch (family) {
252 case AF_INET:
253 bzero(&addr4, sizeof(addr4));
254 addr4.sin_family = family;
255 addr4.sin_port = htons(port);
256 addr4.sin_addr.s_addr = INADDR_ANY;
257 addr = (struct sockaddr*)&addr4;
258 len = sizeof(addr4);
259 break;
261 case AF_INET6:
262 bzero(&addr6, sizeof(addr6));
263 addr6.sin6_family = AF_INET6;
264 addr6.sin6_port = htons(port);
265 addr6.sin6_addr = in6addr_any;
266 addr = (struct sockaddr*)&addr6;
267 len = sizeof(addr6);
268 break;
270 default:
271 /* unreachable */
272 abort();
275 if ((sock = socket(family, SOCK_STREAM, 0)) == -1)
276 fatal("socket: %s", strerror(errno));
278 v = 1;
279 if (setsockopt(sock, SOL_SOCKET, SO_REUSEADDR, &v, sizeof(v)) == -1)
280 fatal("setsockopt(SO_REUSEADDR): %s", strerror(errno));
282 v = 1;
283 if (setsockopt(sock, SOL_SOCKET, SO_REUSEPORT, &v, sizeof(v)) == -1)
284 fatal("setsockopt(SO_REUSEPORT): %s", strerror(errno));
286 mark_nonblock(sock);
288 if (bind(sock, addr, len) == -1)
289 fatal("bind: %s", strerror(errno));
291 if (listen(sock, 16) == -1)
292 fatal("listen: %s", strerror(errno));
294 return sock;
297 int
298 listener_main()
300 int sock4, sock6;
301 struct tls *ctx = NULL;
302 struct tls_config *tlsconf;
304 load_default_mime(&conf.mime);
306 if ((tlsconf = tls_config_new()) == NULL)
307 fatal("tls_config_new");
309 /* optionally accept client certs, but don't try to verify them */
310 tls_config_verify_client_optional(tlsconf);
311 tls_config_insecure_noverifycert(tlsconf);
313 if (tls_config_set_protocols(tlsconf, conf.protos) == -1)
314 fatal("tls_config_set_protocols");
316 if ((ctx = tls_server()) == NULL)
317 fatal("tls_server failure");
319 load_vhosts(tlsconf);
321 if (tls_configure(ctx, tlsconf) == -1)
322 fatal("tls_configure: %s", tls_error(ctx));
324 if (!conf.foreground && daemon(0, 1) == -1)
325 exit(1);
327 sock4 = make_socket(conf.port, AF_INET);
328 sock6 = -1;
329 if (conf.ipv6)
330 sock6 = make_socket(conf.port, AF_INET6);
332 sandbox();
333 loop(ctx, sock4, sock6);
335 return 0;
338 void
339 usage(const char *me)
341 fprintf(stderr,
342 "USAGE: %s [-n] [-c config] | [-6fh] [-C cert] [-d root] [-K key] "
343 "[-p port] [-x cgi-bin]\n",
344 me);
347 int
348 main(int argc, char **argv)
350 int ch, p[2];
351 const char *config_path = NULL;
352 size_t i;
353 int conftest = 0;
355 bzero(hosts, sizeof(hosts));
356 for (i = 0; i < HOSTSLEN; ++i)
357 hosts[i].dirfd = -1;
359 conf.foreground = 1;
360 conf.port = 1965;
361 conf.ipv6 = 0;
362 conf.protos = TLS_PROTOCOL_TLSv1_2 | TLS_PROTOCOL_TLSv1_3;
364 init_mime(&conf.mime);
366 while ((ch = getopt(argc, argv, "6C:c:d:fhK:np:x:")) != -1) {
367 switch (ch) {
368 case '6':
369 conf.ipv6 = 1;
370 break;
372 case 'C':
373 hosts[0].cert = optarg;
374 break;
376 case 'c':
377 config_path = optarg;
378 break;
380 case 'd':
381 free((char*)hosts[0].dir);
382 if ((hosts[0].dir = absolutify_path(optarg)) == NULL)
383 fatal("absolutify_path");
384 break;
386 case 'f':
387 conf.foreground = 1;
388 break;
390 case 'h':
391 usage(*argv);
392 return 0;
394 case 'K':
395 hosts[0].key = optarg;
396 break;
398 case 'n':
399 conftest = 1;
400 break;
402 case 'p':
403 conf.port = parse_portno(optarg);
404 break;
406 case 'x':
407 /* drop the starting / (if any) */
408 if (*optarg == '/')
409 optarg++;
410 hosts[0].cgi = optarg;
411 break;
413 default:
414 usage(*argv);
415 return 1;
419 if (config_path != NULL) {
420 if (hosts[0].cert != NULL || hosts[0].key != NULL ||
421 hosts[0].dir != NULL)
422 fatal("can't specify options in conf mode");
423 parse_conf(config_path);
424 } else {
425 if (hosts[0].cert == NULL || hosts[0].key == NULL ||
426 hosts[0].dir == NULL)
427 fatal("missing cert, key or root directory to serve");
428 hosts[0].domain = "*";
431 if (conftest) {
432 puts("config OK");
433 return 0;
436 signal(SIGPIPE, SIG_IGN);
437 signal(SIGCHLD, SIG_IGN);
439 #ifdef SIGINFO
440 signal(SIGINFO, sig_handler);
441 #endif
442 signal(SIGUSR2, sig_handler);
444 if (!conf.foreground) {
445 signal(SIGHUP, SIG_IGN);
446 if (daemon(1, 1) == -1)
447 fatal("daemon: %s", strerror(errno));
450 if (socketpair(AF_UNIX, SOCK_STREAM, PF_UNSPEC, p) == -1)
451 fatal("socketpair: %s", strerror(errno));
453 switch (fork()) {
454 case -1:
455 fatal("fork: %s", strerror(errno));
457 case 0: /* child */
458 close(p[0]);
459 exfd = p[1];
460 listener_main();
461 _exit(0);
463 default: /* parent */
464 close(p[1]);
465 return executor_main(p[0]);