0002
2022-07-04
op
* Copyright (c) 2021, 2022 Omar Polo <op@omarpolo.com>
0004
2021-01-17
op
* Permission to use, copy, modify, and distribute this software for any
0005
2021-01-17
op
* purpose with or without fee is hereby granted, provided that the above
0006
2021-01-17
op
* copyright notice and this permission notice appear in all copies.
0008
2021-01-17
op
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
0009
2021-01-17
op
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
0010
2021-01-17
op
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
0011
2021-01-17
op
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
0012
2021-01-17
op
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
0013
2021-01-17
op
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
0014
2021-01-17
op
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
0017
2021-02-12
op
#include "gmid.h"
0019
2021-01-17
op
#include <sys/stat.h>
0020
2022-09-06
op
#include <sys/un.h>
0022
2021-01-17
op
#include <assert.h>
0023
2021-10-02
op
#include <ctype.h>
0024
2021-01-17
op
#include <errno.h>
0025
2021-02-08
op
#include <event.h>
0026
2021-01-17
op
#include <fcntl.h>
0027
2021-01-21
op
#include <fnmatch.h>
0028
2021-02-01
op
#include <limits.h>
0029
2021-01-17
op
#include <string.h>
0031
2021-10-02
op
#define MIN(a, b) ((a) < (b) ? (a) : (b))
0033
2021-07-06
op
int shutting_down;
0035
2021-03-19
op
static struct tls *ctx;
0037
2021-03-19
op
static struct event e4, e6, imsgev, siginfo, sigusr2;
0038
2021-02-23
op
static int has_ipv6, has_siginfo;
0040
2021-01-17
op
int connected_clients;
0042
2021-02-10
op
static inline int matches(const char*, const char*);
0044
2021-02-02
op
static int check_path(struct client*, const char*, int*);
0045
2021-02-08
op
static void open_file(struct client*);
0046
2021-02-08
op
static void handle_handshake(int, short, void*);
0047
2021-05-15
op
static const char *strip_path(const char*, int);
0048
2021-02-08
op
static void fmt_sbuf(const char*, struct client*, const char*);
0049
2021-02-08
op
static int apply_block_return(struct client*);
0050
2022-01-04
op
static int check_matching_certificate(X509_STORE *, struct client *);
0051
2021-12-29
op
static int apply_reverse_proxy(struct client *);
0052
2021-10-02
op
static int apply_fastcgi(struct client*);
0053
2021-02-09
op
static int apply_require_ca(struct client*);
0054
2021-02-08
op
static void open_dir(struct client*);
0055
2021-02-08
op
static void redirect_canonical_dir(struct client*);
0057
2021-10-02
op
static void client_tls_readcb(int, short, void *);
0058
2021-10-02
op
static void client_tls_writecb(int, short, void *);
0060
2021-10-02
op
static void client_read(struct bufferevent *, void *);
0061
2021-10-02
op
void client_write(struct bufferevent *, void *);
0062
2021-10-02
op
static void client_error(struct bufferevent *, short, void *);
0064
2021-10-02
op
static void client_close_ev(int, short, void *);
0066
2021-02-08
op
static void do_accept(int, short, void*);
0068
2021-10-02
op
static void handle_dispatch_imsg(int, short, void *);
0069
2021-03-19
op
static void handle_siginfo(int, short, void*);
0071
2021-10-07
op
static uint32_t server_client_id;
0073
2021-10-07
op
struct client_tree_id clients;
0075
2021-02-10
op
static inline int
0076
2021-02-10
op
matches(const char *pattern, const char *path)
0078
2021-02-10
op
if (*path == '/')
0080
2021-02-10
op
return !fnmatch(pattern, path, 0);
0083
2021-01-24
op
const char *
0084
2021-01-24
op
vhost_lang(struct vhost *v, const char *path)
0086
2021-01-24
op
struct location *loc;
0088
2021-01-27
op
if (v == NULL || path == NULL)
0089
2021-01-30
op
return NULL;
0091
2021-03-31
op
loc = TAILQ_FIRST(&v->locations);
0092
2021-03-31
op
while ((loc = TAILQ_NEXT(loc, locations)) != NULL) {
0093
2021-02-06
op
if (loc->lang != NULL) {
0094
2021-02-10
op
if (matches(loc->match, path))
0095
2021-01-30
op
return loc->lang;
0099
2021-03-31
op
return TAILQ_FIRST(&v->locations)->lang;
0102
2021-01-24
op
const char *
0103
2021-01-24
op
vhost_default_mime(struct vhost *v, const char *path)
0105
2021-01-24
op
struct location *loc;
0106
2021-01-24
op
const char *default_mime = "application/octet-stream";
0108
2021-01-27
op
if (v == NULL || path == NULL)
0109
2021-01-27
op
return default_mime;
0111
2021-03-31
op
loc = TAILQ_FIRST(&v->locations);
0112
2021-03-31
op
while ((loc = TAILQ_NEXT(loc, locations)) != NULL) {
0113
2021-02-06
op
if (loc->default_mime != NULL) {
0114
2021-02-10
op
if (matches(loc->match, path))
0115
2021-01-30
op
return loc->default_mime;
0119
2021-03-31
op
loc = TAILQ_FIRST(&v->locations);
0120
2021-03-31
op
if (loc->default_mime != NULL)
0121
2021-03-31
op
return loc->default_mime;
0122
2021-01-24
op
return default_mime;
0125
2021-01-24
op
const char *
0126
2021-01-24
op
vhost_index(struct vhost *v, const char *path)
0128
2021-01-24
op
struct location *loc;
0129
2021-01-24
op
const char *index = "index.gmi";
0131
2021-01-27
op
if (v == NULL || path == NULL)
0132
2021-01-27
op
return index;
0134
2021-03-31
op
loc = TAILQ_FIRST(&v->locations);
0135
2021-03-31
op
while ((loc = TAILQ_NEXT(loc, locations)) != NULL) {
0136
2021-02-06
op
if (loc->index != NULL) {
0137
2021-02-10
op
if (matches(loc->match, path))
0138
2021-01-30
op
return loc->index;
0142
2021-03-31
op
loc = TAILQ_FIRST(&v->locations);
0143
2021-03-31
op
if (loc->index != NULL)
0144
2021-03-31
op
return loc->index;
0145
2021-01-24
op
return index;
0149
2021-01-24
op
vhost_auto_index(struct vhost *v, const char *path)
0151
2021-01-24
op
struct location *loc;
0153
2021-01-30
op
if (v == NULL || path == NULL)
0154
2021-01-30
op
return 0;
0156
2021-03-31
op
loc = TAILQ_FIRST(&v->locations);
0157
2021-03-31
op
while ((loc = TAILQ_NEXT(loc, locations)) != NULL) {
0158
2021-02-06
op
if (loc->auto_index != 0) {
0159
2021-02-10
op
if (matches(loc->match, path))
0160
2021-01-30
op
return loc->auto_index == 1;
0164
2021-03-31
op
loc = TAILQ_FIRST(&v->locations);
0165
2021-03-31
op
return loc->auto_index == 1;
0169
2021-02-06
op
vhost_block_return(struct vhost *v, const char *path, int *code, const char **fmt)
0171
2021-02-06
op
struct location *loc;
0173
2021-02-06
op
if (v == NULL || path == NULL)
0174
2021-02-06
op
return 0;
0176
2021-03-31
op
loc = TAILQ_FIRST(&v->locations);
0177
2021-03-31
op
while ((loc = TAILQ_NEXT(loc, locations)) != NULL) {
0178
2021-02-06
op
if (loc->block_code != 0) {
0179
2021-02-10
op
if (matches(loc->match, path)) {
0180
2021-02-06
op
*code = loc->block_code;
0181
2021-02-06
op
*fmt = loc->block_fmt;
0182
2021-02-06
op
return 1;
0187
2021-03-31
op
loc = TAILQ_FIRST(&v->locations);
0188
2021-03-31
op
*code = loc->block_code;
0189
2021-03-31
op
*fmt = loc->block_fmt;
0190
2021-03-31
op
return loc->block_code != 0;
0194
2021-05-09
op
vhost_fastcgi(struct vhost *v, const char *path)
0196
2021-05-09
op
struct location *loc;
0198
2021-05-09
op
if (v == NULL || path == NULL)
0199
2021-05-09
op
return -1;
0201
2021-05-09
op
loc = TAILQ_FIRST(&v->locations);
0202
2021-05-09
op
while ((loc = TAILQ_NEXT(loc, locations)) != NULL) {
0203
2021-05-09
op
if (loc->fcgi != -1)
0204
2021-05-09
op
if (matches(loc->match, path))
0205
2021-05-09
op
return loc->fcgi;
0208
2021-05-09
op
loc = TAILQ_FIRST(&v->locations);
0209
2021-05-09
op
return loc->fcgi;
0213
2021-05-15
op
vhost_dirfd(struct vhost *v, const char *path, size_t *retloc)
0215
2021-04-30
op
struct location *loc;
0216
2021-05-15
op
size_t l = 0;
0218
2021-04-30
op
if (v == NULL || path == NULL)
0219
2021-04-30
op
return -1;
0221
2021-04-30
op
loc = TAILQ_FIRST(&v->locations);
0222
2021-04-30
op
while ((loc = TAILQ_NEXT(loc, locations)) != NULL) {
0224
2021-04-30
op
if (loc->dirfd != -1)
0225
2021-05-15
op
if (matches(loc->match, path)) {
0226
2021-05-15
op
*retloc = l;
0227
2021-04-30
op
return loc->dirfd;
0231
2021-05-15
op
*retloc = 0;
0232
2021-04-30
op
loc = TAILQ_FIRST(&v->locations);
0233
2021-04-30
op
return loc->dirfd;
0237
2021-02-06
op
vhost_strip(struct vhost *v, const char *path)
0239
2021-02-06
op
struct location *loc;
0241
2021-02-06
op
if (v == NULL || path == NULL)
0242
2021-02-06
op
return 0;
0244
2021-03-31
op
loc = TAILQ_FIRST(&v->locations);
0245
2021-03-31
op
while ((loc = TAILQ_NEXT(loc, locations)) != NULL) {
0246
2021-02-06
op
if (loc->strip != 0) {
0247
2021-02-10
op
if (matches(loc->match, path))
0248
2021-02-06
op
return loc->strip;
0252
2021-03-31
op
loc = TAILQ_FIRST(&v->locations);
0253
2021-03-31
op
return loc->strip;
0256
2021-02-09
op
X509_STORE *
0257
2021-02-09
op
vhost_require_ca(struct vhost *v, const char *path)
0259
2021-02-09
op
struct location *loc;
0261
2021-02-09
op
if (v == NULL || path == NULL)
0262
2021-02-09
op
return NULL;
0264
2021-03-31
op
loc = TAILQ_FIRST(&v->locations);
0265
2021-03-31
op
while ((loc = TAILQ_NEXT(loc, locations)) != NULL) {
0266
2021-02-09
op
if (loc->reqca != NULL) {
0267
2021-02-10
op
if (matches(loc->match, path))
0268
2021-02-09
op
return loc->reqca;
0272
2021-03-31
op
loc = TAILQ_FIRST(&v->locations);
0273
2021-03-31
op
return loc->reqca;
0277
2021-02-23
op
vhost_disable_log(struct vhost *v, const char *path)
0279
2021-02-23
op
struct location *loc;
0281
2021-02-23
op
if (v == NULL || path == NULL)
0282
2021-02-23
op
return 0;
0284
2021-03-31
op
loc = TAILQ_FIRST(&v->locations);
0285
2021-03-31
op
while ((loc = TAILQ_NEXT(loc, locations)) != NULL) {
0286
2021-02-23
op
if (loc->disable_log && matches(loc->match, path))
0287
2021-02-23
op
return 1;
0290
2021-03-31
op
loc = TAILQ_FIRST(&v->locations);
0291
2021-03-31
op
return loc->disable_log;
0294
2021-02-02
op
static int
0295
2021-01-17
op
check_path(struct client *c, const char *path, int *fd)
0297
2021-01-17
op
struct stat sb;
0298
2021-01-21
op
const char *p;
0299
2021-07-27
op
int dirfd, strip;
0301
2021-01-17
op
assert(path != NULL);
0304
2021-04-30
op
* in send_dir we add an initial / (to be redirect-friendly),
0305
2021-04-30
op
* but here we want to skip it
0307
2021-04-30
op
if (*path == '/')
0310
2021-04-30
op
strip = vhost_strip(c->host, path);
0311
2021-04-30
op
p = strip_path(path, strip);
0313
2021-04-30
op
if (*p == '/')
0314
2021-04-30
op
p = p+1;
0315
2021-04-30
op
if (*p == '\0')
0316
2021-01-21
op
p = ".";
0318
2021-05-15
op
dirfd = vhost_dirfd(c->host, path, &c->loc);
0319
2021-04-30
op
log_debug(c, "check_path: strip=%d path=%s original=%s",
0320
2021-04-30
op
strip, p, path);
0321
2022-07-04
op
if (*fd == -1 && (*fd = openat(dirfd, p, O_RDONLY)) == -1) {
0322
2022-07-04
op
if (errno == EACCES)
0323
2022-07-04
op
log_info(c, "can't open %s: %s", p, strerror(errno));
0324
2021-01-17
op
return FILE_MISSING;
0327
2021-01-17
op
if (fstat(*fd, &sb) == -1) {
0328
2021-02-07
op
log_notice(c, "failed stat for %s: %s", path, strerror(errno));
0329
2021-01-17
op
return FILE_MISSING;
0332
2021-01-17
op
if (S_ISDIR(sb.st_mode))
0333
2021-01-17
op
return FILE_DIRECTORY;
0335
2021-01-17
op
return FILE_EXISTS;
0338
2021-02-02
op
static void
0339
2021-02-08
op
open_file(struct client *c)
0341
2021-02-08
op
switch (check_path(c, c->iri.path, &c->pfd)) {
0342
2021-01-17
op
case FILE_EXISTS:
0343
2021-10-02
op
c->type = REQUEST_FILE;
0344
2021-02-12
op
start_reply(c, SUCCESS, mime(c->host, c->iri.path));
0347
2021-01-17
op
case FILE_DIRECTORY:
0348
2021-02-08
op
open_dir(c);
0351
2021-01-17
op
case FILE_MISSING:
0352
2021-02-08
op
start_reply(c, NOT_FOUND, "not found");
0355
2021-01-17
op
default:
0356
2021-01-17
op
/* unreachable */
0357
2021-01-17
op
abort();
0362
2021-02-03
op
mark_nonblock(int fd)
0364
2021-02-03
op
int flags;
0366
2021-02-03
op
if ((flags = fcntl(fd, F_GETFL)) == -1)
0367
2021-02-03
op
fatal("fcntl(F_GETFL): %s", strerror(errno));
0368
2021-02-03
op
if (fcntl(fd, F_SETFL, flags | O_NONBLOCK) == -1)
0369
2021-02-03
op
fatal("fcntl(F_SETFL): %s", strerror(errno));
0372
2021-02-02
op
static void
0373
2021-02-08
op
handle_handshake(int fd, short ev, void *d)
0375
2021-02-08
op
struct client *c = d;
0376
2021-01-17
op
struct vhost *h;
0377
2021-04-29
op
struct alist *a;
0378
2021-01-17
op
const char *servname;
0379
2021-01-29
op
const char *parse_err = "unknown error";
0381
2021-01-17
op
switch (tls_handshake(c->ctx)) {
0382
2021-01-17
op
case 0: /* success */
0383
2021-01-17
op
case -1: /* already handshaked */
0385
2021-01-17
op
case TLS_WANT_POLLIN:
0386
2021-10-02
op
event_once(c->fd, EV_READ, handle_handshake, c, NULL);
0388
2021-01-17
op
case TLS_WANT_POLLOUT:
0389
2021-10-02
op
event_once(c->fd, EV_WRITE, handle_handshake, c, NULL);
0391
2021-01-17
op
default:
0392
2021-01-17
op
/* unreachable */
0393
2021-01-17
op
abort();
0396
2021-10-15
op
c->bev = bufferevent_new(fd, client_read, client_write,
0397
2021-10-15
op
client_error, c);
0398
2021-10-15
op
if (c->bev == NULL)
0399
2021-10-15
op
fatal("%s: failed to allocate client buffer: %s",
0400
2021-10-15
op
__func__, strerror(errno));
0402
2021-10-15
op
event_set(&c->bev->ev_read, c->fd, EV_READ,
0403
2021-10-15
op
client_tls_readcb, c->bev);
0404
2021-10-15
op
event_set(&c->bev->ev_write, c->fd, EV_WRITE,
0405
2021-10-15
op
client_tls_writecb, c->bev);
0407
2021-10-15
op
#if HAVE_LIBEVENT2
0408
2021-10-15
op
evbuffer_unfreeze(c->bev->input, 0);
0409
2021-10-15
op
evbuffer_unfreeze(c->bev->output, 1);
0412
2021-09-24
op
if ((servname = tls_conn_servername(c->ctx)) == NULL) {
0413
2021-09-24
op
log_debug(c, "handshake: missing SNI");
0414
2021-09-24
op
goto err;
0417
2021-01-29
op
if (!puny_decode(servname, c->domain, sizeof(c->domain), &parse_err)) {
0418
2021-02-07
op
log_info(c, "puny_decode: %s", parse_err);
0419
2021-01-29
op
goto err;
0422
2021-03-31
op
TAILQ_FOREACH(h, &hosts, vhosts) {
0423
2021-02-12
op
if (matches(h->domain, c->domain))
0424
2021-04-29
op
goto found;
0425
2021-04-29
op
TAILQ_FOREACH(a, &h->aliases, aliases) {
0426
2021-04-29
op
if (matches(a->alias, c->domain))
0427
2021-04-29
op
goto found;
0432
2021-02-07
op
log_debug(c, "handshake: SNI: \"%s\"; decoded: \"%s\"; matched: \"%s\"",
0433
2021-02-07
op
servname != NULL ? servname : "(null)",
0434
2021-02-07
op
c->domain,
0435
2021-03-31
op
h != NULL ? h->domain : "(null)");
0437
2021-03-31
op
if (h != NULL) {
0438
2021-01-17
op
c->host = h;
0439
2021-10-02
op
bufferevent_enable(c->bev, EV_READ);
0444
2021-02-08
op
start_reply(c, BAD_REQUEST, "Wrong/malformed host or missing SNI");
0447
2021-05-15
op
static const char *
0448
2021-05-15
op
strip_path(const char *path, int strip)
0450
2021-02-08
op
char *t;
0452
2021-02-06
op
while (strip > 0) {
0453
2021-02-06
op
if ((t = strchr(path, '/')) == NULL) {
0454
2021-02-06
op
path = strchr(path, '\0');
0457
2021-02-06
op
path = t;
0458
2021-02-06
op
strip--;
0461
2021-02-08
op
return path;
0464
2021-02-08
op
static void
0465
2021-02-08
op
fmt_sbuf(const char *fmt, struct client *c, const char *path)
0467
2021-02-08
op
size_t i;
0468
2021-10-18
op
char buf[32];
0470
2021-02-06
op
memset(buf, 0, sizeof(buf));
0471
2021-02-06
op
for (i = 0; *fmt; ++fmt) {
0472
2021-02-06
op
if (i == sizeof(buf)-1 || *fmt == '%') {
0473
2021-02-06
op
strlcat(c->sbuf, buf, sizeof(c->sbuf));
0474
2021-02-06
op
memset(buf, 0, sizeof(buf));
0478
2021-02-06
op
if (*fmt != '%') {
0479
2021-02-06
op
buf[i++] = *fmt;
0480
2021-02-06
op
continue;
0483
2021-02-06
op
switch (*++fmt) {
0484
2021-02-06
op
case '%':
0485
2021-02-06
op
strlcat(c->sbuf, "%", sizeof(c->sbuf));
0487
2021-02-06
op
case 'p':
0488
2021-04-30
op
if (*path != '/')
0489
2021-04-30
op
strlcat(c->sbuf, "/", sizeof(c->sbuf));
0490
2021-02-06
op
strlcat(c->sbuf, path, sizeof(c->sbuf));
0492
2021-02-06
op
case 'q':
0493
2021-02-06
op
strlcat(c->sbuf, c->iri.query, sizeof(c->sbuf));
0495
2021-02-06
op
case 'P':
0496
2021-02-06
op
snprintf(buf, sizeof(buf), "%d", conf.port);
0497
2021-02-06
op
strlcat(c->sbuf, buf, sizeof(c->sbuf));
0498
2021-02-06
op
memset(buf, 0, sizeof(buf));
0500
2021-02-06
op
case 'N':
0501
2021-02-06
op
strlcat(c->sbuf, c->domain, sizeof(c->sbuf));
0503
2021-02-06
op
default:
0504
2021-02-06
op
fatal("%s: unknown fmt specifier %c",
0505
2021-02-06
op
__func__, *fmt);
0509
2021-02-06
op
if (i != 0)
0510
2021-02-06
op
strlcat(c->sbuf, buf, sizeof(c->sbuf));
0513
2021-02-08
op
/* 1 if a matching `block return' (and apply it), 0 otherwise */
0514
2021-02-08
op
static int
0515
2021-02-08
op
apply_block_return(struct client *c)
0517
2021-02-08
op
const char *fmt, *path;
0518
2021-02-08
op
int code;
0520
2021-02-08
op
if (!vhost_block_return(c->host, c->iri.path, &code, &fmt))
0521
2021-02-08
op
return 0;
0523
2021-02-08
op
path = strip_path(c->iri.path, vhost_strip(c->host, c->iri.path));
0524
2021-02-08
op
fmt_sbuf(fmt, c, path);
0526
2021-02-08
op
start_reply(c, code, c->sbuf);
0527
2021-12-29
op
return 1;
0530
2021-01-02
op
static struct proxy *
0531
2021-01-02
op
matched_proxy(struct client *c)
0533
2021-01-02
op
struct proxy *p;
0534
2021-01-02
op
const char *proto;
0535
2021-01-02
op
const char *host;
0536
2021-01-02
op
const char *port;
0538
2021-01-02
op
TAILQ_FOREACH(p, &c->host->proxies, proxies) {
0539
2021-01-02
op
if ((proto = p->match_proto) == NULL)
0540
2021-01-02
op
proto = "gemini";
0541
2021-01-02
op
if ((host = p->match_host) == NULL)
0542
2021-01-02
op
host = "*";
0543
2021-01-02
op
if ((port = p->match_port) == NULL)
0544
2021-01-02
op
port = "*";
0546
2021-01-02
op
if (matches(proto, c->iri.schema) &&
0547
2021-01-02
op
matches(host, c->domain) &&
0548
2021-01-02
op
matches(port, c->iri.port))
0549
2021-01-02
op
return p;
0552
2021-01-02
op
return NULL;
0555
2022-01-04
op
static int
0556
2022-01-04
op
check_matching_certificate(X509_STORE *store, struct client *c)
0558
2022-01-04
op
const uint8_t *cert;
0559
2022-01-04
op
size_t len;
0561
2022-01-04
op
if (!tls_peer_cert_provided(c->ctx)) {
0562
2022-01-04
op
start_reply(c, CLIENT_CERT_REQ, "client certificate required");
0563
2022-01-04
op
return 1;
0566
2022-01-04
op
cert = tls_peer_cert_chain_pem(c->ctx, &len);
0567
2022-01-04
op
if (!validate_against_ca(store, cert, len)) {
0568
2022-01-04
op
start_reply(c, CERT_NOT_AUTH, "certificate not authorised");
0569
2022-01-04
op
return 1;
0572
2022-01-04
op
return 0;
0575
2022-09-06
op
static int
0576
2022-09-06
op
proxy_socket(struct client *c, const char *host, const char *port)
0578
2022-09-06
op
struct addrinfo hints, *res, *res0;
0579
2022-09-06
op
int r, sock;
0581
2022-09-06
op
memset(&hints, 0, sizeof(hints));
0582
2022-09-06
op
hints.ai_family = AF_UNSPEC;
0583
2022-09-06
op
hints.ai_socktype = SOCK_STREAM;
0585
2022-09-06
op
/* XXX: asr_run? :> */
0586
2022-09-06
op
r = getaddrinfo(host, port, &hints, &res0);
0587
2022-09-06
op
if (r != 0) {
0588
2022-09-06
op
log_warn(c, "getaddrinfo(\"%s\", \"%s\"): %s",
0589
2022-09-06
op
host, port, gai_strerror(r));
0590
2022-09-06
op
return -1;
0593
2022-09-06
op
for (res = res0; res; res = res->ai_next) {
0594
2022-09-06
op
sock = socket(res->ai_family, res->ai_socktype,
0595
2022-09-06
op
res->ai_protocol);
0596
2022-09-06
op
if (sock == -1)
0597
2022-09-06
op
continue;
0599
2022-09-06
op
if (connect(sock, res->ai_addr, res->ai_addrlen) == -1) {
0600
2022-09-06
op
close(sock);
0601
2022-09-06
op
sock = -1;
0602
2022-09-06
op
continue;
0608
2022-09-06
op
freeaddrinfo(res0);
0610
2022-09-06
op
if (sock == -1)
0611
2022-09-06
op
log_warn(c, "can't connect to %s:%s", host, port);
0613
2022-09-06
op
return sock;
0616
2021-12-29
op
/* 1 if matching a proxy relay-to (and apply it), 0 otherwise */
0617
2021-12-29
op
static int
0618
2021-12-29
op
apply_reverse_proxy(struct client *c)
0620
2021-01-01
op
struct proxy *p;
0622
2021-01-02
op
if ((p = matched_proxy(c)) == NULL)
0623
2021-12-29
op
return 0;
0625
2021-01-02
op
c->proxy = p;
0627
2022-01-04
op
if (p->reqca != NULL && check_matching_certificate(p->reqca, c))
0628
2022-01-04
op
return 1;
0630
2021-12-29
op
log_debug(c, "opening proxy connection for %s:%s",
0631
2021-01-01
op
p->host, p->port);
0633
2022-09-06
op
if ((c->pfd = proxy_socket(c, p->host, p->port)) == -1) {
0634
2022-09-06
op
start_reply(c, PROXY_ERROR, "proxy error");
0635
2022-09-06
op
return 1;
0638
2022-09-06
op
mark_nonblock(c->pfd);
0639
2022-09-06
op
if (proxy_init(c) == -1)
0640
2022-09-06
op
start_reply(c, PROXY_ERROR, "proxy error");
0642
2021-05-09
op
return 1;
0645
2022-09-06
op
static int
0646
2022-09-06
op
fcgi_open_sock(struct fcgi *f)
0648
2022-09-06
op
struct sockaddr_un addr;
0651
2022-09-06
op
if ((fd = socket(AF_UNIX, SOCK_STREAM, 0)) == -1) {
0652
2022-09-06
op
log_err(NULL, "socket: %s", strerror(errno));
0653
2022-09-06
op
return -1;
0656
2022-09-06
op
memset(&addr, 0, sizeof(addr));
0657
2022-09-06
op
addr.sun_family = AF_UNIX;
0658
2022-09-06
op
strlcpy(addr.sun_path, f->path, sizeof(addr.sun_path));
0660
2022-09-06
op
if (connect(fd, (struct sockaddr*)&addr, sizeof(addr)) == -1) {
0661
2022-09-06
op
log_warn(NULL, "failed to connect to %s: %s", f->path,
0662
2022-09-06
op
strerror(errno));
0663
2022-09-06
op
close(fd);
0664
2022-09-06
op
return -1;
0667
2022-09-06
op
return fd;
0670
2022-09-06
op
static int
0671
2022-09-06
op
fcgi_open_conn(struct fcgi *f)
0673
2022-09-06
op
struct addrinfo hints, *servinfo, *p;
0674
2022-09-06
op
int r, sock;
0676
2022-09-06
op
memset(&hints, 0, sizeof(hints));
0677
2022-09-06
op
hints.ai_family = AF_UNSPEC;
0678
2022-09-06
op
hints.ai_socktype = SOCK_STREAM;
0679
2022-09-06
op
hints.ai_flags = AI_ADDRCONFIG;
0681
2022-09-06
op
if ((r = getaddrinfo(f->path, f->port, &hints, &servinfo)) != 0) {
0682
2022-09-06
op
log_warn(NULL, "getaddrinfo %s:%s: %s", f->path, f->port,
0683
2022-09-06
op
gai_strerror(r));
0684
2022-09-06
op
return -1;
0687
2022-09-06
op
for (p = servinfo; p != NULL; p = p->ai_next) {
0688
2022-09-06
op
sock = socket(p->ai_family, p->ai_socktype, p->ai_protocol);
0689
2022-09-06
op
if (sock == -1)
0690
2022-09-06
op
continue;
0691
2022-09-06
op
if (connect(sock, p->ai_addr, p->ai_addrlen) == -1) {
0692
2022-09-06
op
close(sock);
0693
2022-09-06
op
continue;
0698
2022-09-06
op
if (p == NULL) {
0699
2022-09-06
op
log_warn(NULL, "couldn't connect to %s:%s", f->path, f->port);
0700
2022-09-06
op
sock = -1;
0703
2022-09-06
op
freeaddrinfo(servinfo);
0704
2022-09-06
op
return sock;
0707
2021-05-09
op
/* 1 if matching `fcgi' (and apply it), 0 otherwise */
0708
2021-05-09
op
static int
0709
2021-05-09
op
apply_fastcgi(struct client *c)
0712
2021-05-09
op
struct fcgi *f;
0714
2021-05-09
op
if ((id = vhost_fastcgi(c->host, c->iri.path)) == -1)
0715
2021-05-09
op
return 0;
0717
2021-10-07
op
f = &fcgi[id];
0719
2022-09-06
op
log_debug(c, "opening fastcgi connection for (%s,%s)",
0720
2022-09-06
op
f->path, f->port);
0722
2022-09-06
op
if (f->port != NULL)
0723
2022-09-06
op
c->pfd = fcgi_open_sock(f);
0725
2022-09-06
op
c->pfd = fcgi_open_conn(f);
0727
2022-09-06
op
if (c->pfd == -1) {
0728
2022-09-06
op
start_reply(c, CGI_ERROR, "CGI error");
0729
2022-09-06
op
return 1;
0732
2022-09-06
op
mark_nonblock(c->pfd);
0734
2022-09-06
op
c->cgibev = bufferevent_new(c->pfd, fcgi_read, fcgi_write,
0735
2022-09-06
op
fcgi_error, c);
0736
2022-09-06
op
if (c->cgibev == NULL) {
0737
2022-09-06
op
start_reply(c, TEMP_FAILURE, "internal server error");
0738
2022-09-06
op
return 1;
0741
2022-09-06
op
bufferevent_enable(c->cgibev, EV_READ|EV_WRITE);
0742
2022-09-06
op
fcgi_req(c);
0744
2021-02-06
op
return 1;
0747
2021-02-09
op
/* 1 if matching `require client ca' fails (and apply it), 0 otherwise */
0748
2021-02-09
op
static int
0749
2021-02-09
op
apply_require_ca(struct client *c)
0751
2021-02-09
op
X509_STORE *store;
0753
2021-02-09
op
if ((store = vhost_require_ca(c->host, c->iri.path)) == NULL)
0754
2021-02-09
op
return 0;
0755
2022-01-04
op
return check_matching_certificate(store, c);
0758
2021-02-02
op
static void
0759
2021-02-08
op
open_dir(struct client *c)
0761
2021-01-17
op
size_t len;
0762
2021-04-25
op
int dirfd, root;
0763
2021-01-24
op
char *before_file;
0765
2022-09-06
op
log_debug(c, "in open_dir");
0767
2021-04-25
op
root = !strcmp(c->iri.path, "/") || *c->iri.path == '\0';
0769
2021-01-20
op
len = strlen(c->iri.path);
0770
2021-01-24
op
if (len > 0 && !ends_with(c->iri.path, "/")) {
0771
2021-02-08
op
redirect_canonical_dir(c);
0775
2021-01-24
op
strlcpy(c->sbuf, "/", sizeof(c->sbuf));
0776
2021-01-21
op
strlcat(c->sbuf, c->iri.path, sizeof(c->sbuf));
0777
2021-01-21
op
if (!ends_with(c->sbuf, "/"))
0778
2021-01-20
op
strlcat(c->sbuf, "/", sizeof(c->sbuf));
0779
2021-01-24
op
before_file = strchr(c->sbuf, '\0');
0780
2021-01-24
op
len = strlcat(c->sbuf, vhost_index(c->host, c->iri.path),
0781
2021-01-24
op
sizeof(c->sbuf));
0782
2021-01-24
op
if (len >= sizeof(c->sbuf)) {
0783
2021-02-08
op
start_reply(c, TEMP_FAILURE, "internal server error");
0787
2021-01-24
op
c->iri.path = c->sbuf;
0789
2021-01-24
op
/* close later unless we have to generate the dir listing */
0790
2021-02-08
op
dirfd = c->pfd;
0791
2021-02-08
op
c->pfd = -1;
0793
2021-02-08
op
switch (check_path(c, c->iri.path, &c->pfd)) {
0794
2021-01-24
op
case FILE_EXISTS:
0795
2021-10-02
op
c->type = REQUEST_FILE;
0796
2021-02-12
op
start_reply(c, SUCCESS, mime(c->host, c->iri.path));
0799
2021-01-24
op
case FILE_DIRECTORY:
0800
2021-02-08
op
start_reply(c, TEMP_REDIRECT, c->sbuf);
0803
2021-01-24
op
case FILE_MISSING:
0804
2021-01-24
op
*before_file = '\0';
0806
2021-01-24
op
if (!vhost_auto_index(c->host, c->iri.path)) {
0807
2021-02-08
op
start_reply(c, NOT_FOUND, "not found");
0811
2021-10-02
op
c->type = REQUEST_DIR;
0813
2021-04-25
op
c->dirlen = scandir_fd(dirfd, &c->dir,
0814
2021-04-25
op
root ? select_non_dotdot : select_non_dot,
0815
2021-04-25
op
alphasort);
0816
2021-04-25
op
if (c->dirlen == -1) {
0817
2021-04-25
op
log_err(c, "scandir_fd(%d) (vhost:%s) %s: %s",
0818
2021-02-08
op
c->pfd, c->host->domain, c->iri.path, strerror(errno));
0819
2021-02-08
op
start_reply(c, TEMP_FAILURE, "internal server error");
0822
2021-04-25
op
c->diroff = 0;
0823
2021-01-24
op
c->off = 0;
0825
2021-10-18
op
start_reply(c, SUCCESS, "text/gemini");
0826
2021-10-02
op
evbuffer_add_printf(EVBUFFER_OUTPUT(c->bev),
0827
2021-10-02
op
"# Index of %s\n\n", c->iri.path);
0830
2021-01-24
op
default:
0831
2021-01-24
op
/* unreachable */
0832
2021-01-24
op
abort();
0835
2021-01-24
op
close(dirfd);
0838
2021-02-02
op
static void
0839
2021-02-08
op
redirect_canonical_dir(struct client *c)
0841
2021-01-24
op
size_t len;
0843
2021-01-24
op
strlcpy(c->sbuf, "/", sizeof(c->sbuf));
0844
2021-01-24
op
strlcat(c->sbuf, c->iri.path, sizeof(c->sbuf));
0845
2021-01-24
op
len = strlcat(c->sbuf, "/", sizeof(c->sbuf));
0847
2021-01-20
op
if (len >= sizeof(c->sbuf)) {
0848
2021-02-08
op
start_reply(c, TEMP_FAILURE, "internal server error");
0852
2021-02-08
op
start_reply(c, TEMP_REDIRECT, c->sbuf);
0855
2021-02-02
op
static void
0856
2021-10-02
op
client_tls_readcb(int fd, short event, void *d)
0858
2021-10-02
op
struct bufferevent *bufev = d;
0859
2021-10-02
op
struct client *client = bufev->cbarg;
0860
2021-10-02
op
ssize_t ret;
0861
2021-10-02
op
size_t len;
0862
2021-10-02
op
int what = EVBUFFER_READ;
0863
2021-10-02
op
int howmuch = IBUF_READ_SIZE;
0864
2021-10-02
op
char buf[IBUF_READ_SIZE];
0866
2021-10-02
op
if (event == EV_TIMEOUT) {
0867
2021-10-02
op
what |= EVBUFFER_TIMEOUT;
0868
2021-10-02
op
goto err;
0871
2021-10-02
op
if (bufev->wm_read.high != 0)
0872
2021-10-02
op
howmuch = MIN(sizeof(buf), bufev->wm_read.high);
0874
2021-10-02
op
switch (ret = tls_read(client->ctx, buf, howmuch)) {
0875
2021-10-02
op
case TLS_WANT_POLLIN:
0876
2021-10-02
op
case TLS_WANT_POLLOUT:
0877
2021-10-02
op
goto retry;
0878
2021-10-02
op
case -1:
0879
2021-10-02
op
what |= EVBUFFER_ERROR;
0880
2021-10-02
op
goto err;
0882
2021-10-02
op
len = ret;
0884
2021-10-02
op
if (len == 0) {
0885
2021-10-02
op
what |= EVBUFFER_EOF;
0886
2021-10-02
op
goto err;
0889
2021-10-02
op
if (evbuffer_add(bufev->input, buf, len) == -1) {
0890
2021-10-02
op
what |= EVBUFFER_ERROR;
0891
2021-10-02
op
goto err;
0894
2021-10-02
op
event_add(&bufev->ev_read, NULL);
0895
2021-10-02
op
if (bufev->wm_read.low != 0 && len < bufev->wm_read.low)
0897
2021-10-02
op
if (bufev->wm_read.high != 0 && len > bufev->wm_read.high) {
0899
2021-10-02
op
* here we could implement a read pressure policy.
0903
2021-10-02
op
if (bufev->readcb != NULL)
0904
2021-10-02
op
(*bufev->readcb)(bufev, bufev->cbarg);
0909
2021-10-02
op
event_add(&bufev->ev_read, NULL);
0913
2021-10-02
op
(*bufev->errorcb)(bufev, what, bufev->cbarg);
0916
2021-02-02
op
static void
0917
2021-10-02
op
client_tls_writecb(int fd, short event, void *d)
0919
2021-10-02
op
struct bufferevent *bufev = d;
0920
2021-10-02
op
struct client *client = bufev->cbarg;
0921
2021-10-02
op
ssize_t ret;
0922
2021-10-02
op
size_t len;
0923
2021-10-02
op
short what = EVBUFFER_WRITE;
0925
2021-10-02
op
if (event == EV_TIMEOUT) {
0926
2021-10-02
op
what |= EVBUFFER_TIMEOUT;
0927
2021-10-02
op
goto err;
0930
2021-10-02
op
if (EVBUFFER_LENGTH(bufev->output) != 0) {
0931
2021-10-02
op
ret = tls_write(client->ctx,
0932
2021-10-02
op
EVBUFFER_DATA(bufev->output),
0933
2021-10-02
op
EVBUFFER_LENGTH(bufev->output));
0934
2021-10-02
op
switch (ret) {
0935
2021-10-02
op
case TLS_WANT_POLLIN:
0936
2021-10-02
op
case TLS_WANT_POLLOUT:
0937
2021-10-02
op
goto retry;
0938
2021-10-02
op
case -1:
0939
2021-10-02
op
what |= EVBUFFER_ERROR;
0940
2021-10-02
op
goto err;
0942
2021-10-02
op
len = ret;
0943
2021-10-02
op
evbuffer_drain(bufev->output, len);
0946
2021-10-02
op
if (EVBUFFER_LENGTH(bufev->output) != 0)
0947
2021-10-02
op
event_add(&bufev->ev_write, NULL);
0949
2021-10-02
op
if (bufev->writecb != NULL &&
0950
2021-10-02
op
EVBUFFER_LENGTH(bufev->output) <= bufev->wm_write.low)
0951
2021-10-02
op
(*bufev->writecb)(bufev, bufev->cbarg);
0955
2021-10-02
op
event_add(&bufev->ev_write, NULL);
0958
2021-10-02
op
log_err(client, "tls error: %s", tls_error(client->ctx));
0959
2021-10-02
op
(*bufev->errorcb)(bufev, what, bufev->cbarg);
0962
2021-02-02
op
static void
0963
2021-10-02
op
client_read(struct bufferevent *bev, void *d)
0965
2021-10-02
op
struct client *c = d;
0966
2021-10-02
op
struct evbuffer *src = EVBUFFER_INPUT(bev);
0967
2021-10-02
op
const char *parse_err = "invalid request";
0968
2021-10-02
op
char decoded[DOMAIN_NAME_LEN];
0969
2021-10-02
op
size_t len;
0971
2021-10-02
op
bufferevent_disable(bev, EVBUFFER_READ);
0974
2022-01-05
op
* libevent2 can still somehow call this function, even
0975
2022-01-05
op
* though I never enable EV_READ in the bufferevent. If
0976
2022-01-05
op
* that's the case, bail out.
0978
2022-01-05
op
if (c->type != REQUEST_UNDECIDED)
0981
2021-10-02
op
/* max url len + \r\n */
0982
2021-10-02
op
if (EVBUFFER_LENGTH(src) > 1024 + 2) {
0983
2021-10-02
op
log_err(c, "too much data received");
0984
2021-10-02
op
start_reply(c, BAD_REQUEST, "bad request");
0988
2021-10-02
op
c->req = evbuffer_readln(src, &len, EVBUFFER_EOL_CRLF_STRICT);
0989
2021-10-02
op
if (c->req == NULL) {
0990
2021-10-02
op
/* not enough data yet. */
0991
2021-10-02
op
bufferevent_enable(bev, EVBUFFER_READ);
0994
2022-03-27
op
c->reqlen = strlen(c->req);
0995
2022-03-27
op
if (c->reqlen > 1024+2) {
0996
2022-03-27
op
log_err(c, "URL too long");
0997
2022-03-27
op
start_reply(c, BAD_REQUEST, "bad request");
1001
2021-10-02
op
if (!parse_iri(c->req, &c->iri, &parse_err) ||
1002
2021-10-02
op
!puny_decode(c->iri.host, decoded, sizeof(decoded), &parse_err)) {
1003
2021-10-02
op
log_err(c, "IRI parse error: %s", parse_err);
1004
2021-10-06
op
start_reply(c, BAD_REQUEST, "bad request");
1008
2021-12-29
op
if (apply_reverse_proxy(c))
1011
2021-12-09
op
/* ignore the port number */
1012
2021-12-09
op
if (strcmp(c->iri.schema, "gemini") ||
1013
2021-10-02
op
strcmp(decoded, c->domain)) {
1014
2021-10-02
op
start_reply(c, PROXY_REFUSED, "won't proxy request");
1018
2021-10-02
op
if (apply_require_ca(c) ||
1019
2021-10-02
op
apply_block_return(c)||
1020
2021-10-02
op
apply_fastcgi(c))
1023
2021-10-02
op
open_file(c);
1027
2021-10-02
op
client_write(struct bufferevent *bev, void *d)
1029
2021-10-02
op
struct client *c = d;
1030
2021-10-02
op
struct evbuffer *out = EVBUFFER_OUTPUT(bev);
1031
2022-07-04
op
char nam[PATH_MAX];
1032
2021-10-02
op
char buf[BUFSIZ];
1033
2021-10-02
op
ssize_t r;
1035
2021-10-02
op
switch (c->type) {
1036
2021-10-02
op
case REQUEST_UNDECIDED:
1038
2021-10-02
op
* Ignore spurious calls when we still don't have idea
1039
2021-10-02
op
* what to do with the request.
1043
2021-10-02
op
case REQUEST_FILE:
1044
2021-10-02
op
if ((r = read(c->pfd, buf, sizeof(buf))) == -1) {
1045
2021-10-02
op
log_warn(c, "read: %s", strerror(errno));
1046
2021-10-02
op
client_error(bev, EVBUFFER_ERROR, c);
1048
2021-10-02
op
} else if (r == 0) {
1049
2021-10-02
op
client_close(c);
1051
2021-10-02
op
} else if (r != sizeof(buf))
1052
2021-10-02
op
c->type = REQUEST_DONE;
1053
2021-10-02
op
bufferevent_write(bev, buf, r);
1056
2021-10-02
op
case REQUEST_DIR:
1057
2021-10-02
op
/* TODO: handle big big directories better */
1058
2021-10-02
op
for (c->diroff = 0; c->diroff < c->dirlen; ++c->diroff) {
1059
2022-07-04
op
const char *sufx = "";
1061
2022-07-04
op
encode_path(nam, sizeof(nam),
1062
2021-10-02
op
c->dir[c->diroff]->d_name);
1063
2022-07-04
op
if (c->dir[c->diroff]->d_type == DT_DIR)
1064
2022-07-04
op
sufx = "/";
1065
2022-07-04
op
evbuffer_add_printf(out, "=> ./%s%s\n", nam, sufx);
1066
2021-10-02
op
free(c->dir[c->diroff]);
1068
2021-10-02
op
free(c->dir);
1069
2021-10-02
op
c->dir = NULL;
1071
2021-10-02
op
c->type = REQUEST_DONE;
1073
2021-10-02
op
event_add(&c->bev->ev_write, NULL);
1076
2021-10-02
op
case REQUEST_FCGI:
1077
2021-12-29
op
case REQUEST_PROXY:
1079
2022-09-06
op
* Here we depend on fastcgi or proxy connection to
1080
2022-09-06
op
* provide data.
1084
2021-10-02
op
case REQUEST_DONE:
1085
2021-10-02
op
if (EVBUFFER_LENGTH(out) == 0)
1086
2021-10-02
op
client_close(c);
1091
2021-10-02
op
static void
1092
2021-10-02
op
client_error(struct bufferevent *bev, short error, void *d)
1094
2021-10-02
op
struct client *c = d;
1096
2021-10-02
op
c->type = REQUEST_DONE;
1098
2021-10-02
op
if (error & EVBUFFER_TIMEOUT) {
1099
2021-10-02
op
log_warn(c, "timeout reached, "
1100
2021-10-02
op
"forcefully closing the connection");
1101
2021-10-02
op
if (c->code == 0)
1102
2021-10-02
op
start_reply(c, BAD_REQUEST, "timeout");
1104
2021-10-02
op
client_close(c);
1108
2021-10-02
op
if (error & EVBUFFER_EOF) {
1109
2021-10-02
op
client_close(c);
1113
2022-02-19
op
log_err(c, "unknown bufferevent error %x", error);
1114
2021-10-02
op
client_close(c);
1118
2021-10-02
op
start_reply(struct client *c, int code, const char *meta)
1120
2021-10-02
op
struct evbuffer *evb = EVBUFFER_OUTPUT(c->bev);
1121
2021-10-02
op
const char *lang;
1122
2021-10-02
op
int r, rr;
1124
2021-10-02
op
bufferevent_enable(c->bev, EVBUFFER_WRITE);
1126
2021-10-02
op
c->code = code;
1127
2021-10-02
op
c->meta = meta;
1129
2021-10-02
op
r = evbuffer_add_printf(evb, "%d %s", code, meta);
1130
2021-10-02
op
if (r == -1)
1131
2021-10-02
op
goto err;
1133
2021-10-02
op
/* 2 digit status + space + 1024 max reply */
1134
2021-10-02
op
if (r > 1027)
1135
2021-10-02
op
goto overflow;
1137
2022-09-06
op
if (c->type != REQUEST_FCGI &&
1138
2021-12-29
op
c->type != REQUEST_PROXY &&
1139
2021-10-02
op
!strcmp(meta, "text/gemini") &&
1140
2021-10-02
op
(lang = vhost_lang(c->host, c->iri.path)) != NULL) {
1141
2021-10-18
op
rr = evbuffer_add_printf(evb, ";lang=%s", lang);
1142
2021-10-02
op
if (rr == -1)
1143
2021-10-02
op
goto err;
1144
2021-10-02
op
if (r + rr > 1027)
1145
2021-10-02
op
goto overflow;
1148
2021-10-02
op
bufferevent_write(c->bev, "\r\n", 2);
1150
2021-10-02
op
if (!vhost_disable_log(c->host, c->iri.path))
1151
2021-10-02
op
log_request(c, EVBUFFER_DATA(evb), EVBUFFER_LENGTH(evb));
1153
2022-01-27
op
if (code != 20)
1154
2021-10-02
op
c->type = REQUEST_DONE;
1159
2021-10-02
op
log_err(c, "evbuffer_add_printf error: no memory");
1160
2021-10-02
op
evbuffer_drain(evb, EVBUFFER_LENGTH(evb));
1161
2021-10-02
op
client_close(c);
1164
2021-10-02
op
overflow:
1165
2021-10-02
op
log_warn(c, "reply header overflow");
1166
2021-10-02
op
evbuffer_drain(evb, EVBUFFER_LENGTH(evb));
1167
2021-10-02
op
start_reply(c, TEMP_FAILURE, "internal error");
1170
2021-10-02
op
static void
1171
2021-10-02
op
client_close_ev(int fd, short event, void *d)
1173
2021-05-09
op
struct client *c = d;
1175
2021-01-17
op
switch (tls_close(c->ctx)) {
1176
2021-01-17
op
case TLS_WANT_POLLIN:
1177
2021-10-02
op
event_once(c->fd, EV_READ, client_close_ev, c, NULL);
1179
2021-01-17
op
case TLS_WANT_POLLOUT:
1180
2021-10-02
op
event_once(c->fd, EV_WRITE, client_close_ev, c, NULL);
1184
2021-01-17
op
connected_clients--;
1186
2021-10-06
op
free(c->req);
1188
2021-01-17
op
tls_free(c->ctx);
1189
2021-01-17
op
c->ctx = NULL;
1191
2021-10-02
op
free(c->header);
1193
2021-02-08
op
if (c->pfd != -1)
1194
2021-02-08
op
close(c->pfd);
1196
2021-01-24
op
if (c->dir != NULL)
1197
2021-04-25
op
free(c->dir);
1199
2021-02-08
op
close(c->fd);
1200
2021-02-08
op
c->fd = -1;
1203
2021-12-29
op
static void
1204
2021-12-29
op
client_proxy_close(int fd, short event, void *d)
1206
2021-12-29
op
struct tls *ctx = d;
1208
2021-12-29
op
if (ctx == NULL) {
1209
2021-12-29
op
close(fd);
1213
2021-12-29
op
switch (tls_close(ctx)) {
1214
2021-12-29
op
case TLS_WANT_POLLIN:
1215
2021-12-29
op
event_once(fd, EV_READ, client_proxy_close, d, NULL);
1217
2021-12-29
op
case TLS_WANT_POLLOUT:
1218
2021-12-29
op
event_once(fd, EV_WRITE, client_proxy_close, d, NULL);
1222
2021-12-29
op
tls_free(ctx);
1223
2021-12-29
op
close(fd);
1227
2021-10-02
op
client_close(struct client *c)
1230
2021-10-02
op
* We may end up calling client_close in various situations
1231
2021-10-02
op
* and for the most unexpected reasons. Therefore, we need to
1232
2022-01-27
op
* ensure that everything gets properly released once we reach
1233
2021-10-02
op
* this point.
1236
2021-10-07
op
SPLAY_REMOVE(client_tree_id, &clients, c);
1238
2021-10-02
op
if (c->cgibev != NULL) {
1239
2021-10-02
op
bufferevent_disable(c->cgibev, EVBUFFER_READ|EVBUFFER_WRITE);
1240
2021-10-02
op
bufferevent_free(c->cgibev);
1241
2021-10-02
op
c->cgibev = NULL;
1242
2021-10-02
op
close(c->pfd);
1243
2021-10-02
op
c->pfd = -1;
1246
2021-10-02
op
bufferevent_disable(c->bev, EVBUFFER_READ|EVBUFFER_WRITE);
1247
2021-10-02
op
bufferevent_free(c->bev);
1248
2021-10-02
op
c->bev = NULL;
1250
2022-01-27
op
if (c->proxyevset &&
1251
2022-01-27
op
event_pending(&c->proxyev, EV_READ|EV_WRITE, NULL)) {
1252
2022-01-27
op
c->proxyevset = 0;
1253
2022-01-27
op
event_del(&c->proxyev);
1256
2022-01-27
op
if (c->pfd != -1 && c->proxyctx != NULL) {
1257
2022-01-27
op
/* shut down the proxy TLS connection */
1258
2022-01-27
op
client_proxy_close(c->pfd, 0, c->proxyctx);
1259
2022-01-27
op
c->pfd = -1;
1262
2022-01-27
op
if (c->proxybev != NULL)
1263
2022-01-27
op
bufferevent_free(c->proxybev);
1265
2021-10-02
op
client_close_ev(c->fd, 0, c);
1268
2021-02-02
op
static void
1269
2021-02-08
op
do_accept(int sock, short et, void *d)
1271
2021-02-08
op
struct client *c;
1272
2021-01-17
op
struct sockaddr_storage addr;
1273
2021-02-08
op
struct sockaddr *saddr;
1274
2021-01-17
op
socklen_t len;
1277
2021-02-08
op
saddr = (struct sockaddr*)&addr;
1278
2021-01-17
op
len = sizeof(addr);
1279
2021-02-12
op
if ((fd = accept(sock, saddr, &len)) == -1) {
1280
2021-10-13
op
if (errno == EWOULDBLOCK || errno == EAGAIN ||
1281
2021-10-13
op
errno == ECONNABORTED)
1283
2021-01-17
op
fatal("accept: %s", strerror(errno));
1286
2021-02-12
op
mark_nonblock(fd);
1288
2021-10-07
op
c = xcalloc(1, sizeof(*c));
1289
2021-10-07
op
c->id = ++server_client_id;
1290
2021-10-07
op
c->fd = fd;
1291
2021-10-07
op
c->pfd = -1;
1292
2021-10-07
op
c->addr = addr;
1294
2021-10-07
op
if (tls_accept_socket(ctx, &c->ctx, fd) == -1) {
1295
2021-10-07
op
log_warn(c, "failed to accept socket: %s", tls_error(c->ctx));
1296
2021-10-07
op
close(c->fd);
1297
2021-10-07
op
free(c);
1301
2021-10-07
op
SPLAY_INSERT(client_tree_id, &clients, c);
1302
2021-10-07
op
event_once(c->fd, EV_READ|EV_WRITE, handle_handshake, c, NULL);
1303
2021-10-07
op
connected_clients++;
1306
2021-05-09
op
struct client *
1307
2022-03-26
op
client_by_id(int id)
1309
2021-10-07
op
struct client find;
1311
2021-10-07
op
find.id = id;
1312
2021-10-07
op
return SPLAY_FIND(client_tree_id, &clients, &find);
1315
2021-02-08
op
static void
1316
2022-09-10
op
handle_dispatch_imsg(int fd, short ev, void *d)
1318
2022-09-10
op
struct imsgbuf *ibuf = d;
1319
2022-09-10
op
struct imsg imsg;
1320
2022-09-10
op
ssize_t n;
1322
2022-09-10
op
if ((n = imsg_read(ibuf)) == -1) {
1323
2022-09-10
op
if (errno == EAGAIN || errno == EWOULDBLOCK)
1325
2022-09-10
op
fatal("imsg_read");
1328
2022-09-10
op
if (n == 0)
1329
2022-09-10
op
fatal("connection closed."); /* XXX: fatalx */
1331
2022-09-10
op
for (;;) {
1332
2022-09-10
op
if ((n = imsg_get(ibuf, &imsg)) == -1)
1333
2022-09-10
op
fatal("imsg_get");
1334
2022-09-10
op
if (n == 0)
1337
2022-09-10
op
switch (imsg.hdr.type) {
1338
2022-09-10
op
case IMSG_QUIT:
1340
2022-09-10
op
* Don't call event_loopbreak since we want to
1341
2022-09-10
op
* finish handling the ongoing connections.
1343
2022-09-10
op
shutting_down = 1;
1345
2022-09-10
op
event_del(&e4);
1346
2022-09-10
op
if (has_ipv6)
1347
2022-09-10
op
event_del(&e6);
1348
2022-09-10
op
if (has_siginfo)
1349
2022-09-10
op
signal_del(&siginfo);
1350
2022-09-10
op
event_del(&imsgev);
1351
2022-09-10
op
signal_del(&sigusr2);
1353
2022-09-10
op
default:
1354
2022-09-10
op
/* XXX: fatalx */
1355
2022-09-10
op
fatal("Unknown message %d", imsg.hdr.type);
1357
2022-09-10
op
imsg_free(&imsg);
1361
2021-03-19
op
static void
1362
2021-02-08
op
handle_siginfo(int fd, short ev, void *d)
1364
2021-02-08
op
log_info(NULL, "%d connected clients", connected_clients);
1368
2021-03-19
op
loop(struct tls *ctx_, int sock4, int sock6, struct imsgbuf *ibuf)
1370
2021-03-19
op
ctx = ctx_;
1372
2021-10-07
op
SPLAY_INIT(&clients);
1374
2021-02-08
op
event_init();
1376
2021-03-19
op
event_set(&e4, sock4, EV_READ | EV_PERSIST, &do_accept, NULL);
1377
2021-02-12
op
event_add(&e4, NULL);
1379
2021-02-08
op
if (sock6 != -1) {
1380
2021-02-12
op
has_ipv6 = 1;
1381
2021-03-19
op
event_set(&e6, sock6, EV_READ | EV_PERSIST, &do_accept, NULL);
1382
2021-02-12
op
event_add(&e6, NULL);
1385
2022-09-07
op
if (ibuf) {
1386
2022-09-07
op
event_set(&imsgev, ibuf->fd, EV_READ | EV_PERSIST,
1387
2022-09-07
op
handle_dispatch_imsg, ibuf);
1388
2022-09-07
op
event_add(&imsgev, NULL);
1391
2021-02-08
op
#ifdef SIGINFO
1392
2021-02-12
op
has_siginfo = 1;
1393
2021-02-12
op
signal_set(&siginfo, SIGINFO, &handle_siginfo, NULL);
1394
2021-02-12
op
signal_add(&siginfo, NULL);
1396
2021-02-12
op
signal_set(&sigusr2, SIGUSR2, &handle_siginfo, NULL);
1397
2021-02-12
op
signal_add(&sigusr2, NULL);
1399
2022-09-06
op
sandbox_server_process(conf.can_open_sockets);
1400
2021-02-08
op
event_dispatch();
1401
2021-02-08
op
_exit(0);
1405
2021-10-07
op
client_tree_cmp(struct client *a, struct client *b)
1407
2021-10-07
op
if (a->id == b->id)
1408
2021-10-07
op
return 0;
1409
2021-10-07
op
else if (a->id < b->id)
1410
2021-10-07
op
return -1;
1412
2021-10-07
op
return +1;
1415
2021-10-07
op
SPLAY_GENERATE(client_tree_id, client, entry, client_tree_cmp)