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-03-19
op
static void handle_imsg_quit(struct imsgbuf*, struct imsg*, size_t);
0069
2021-10-02
op
static void handle_dispatch_imsg(int, short, void *);
0070
2021-03-19
op
static void handle_siginfo(int, short, void*);
0072
2021-03-19
op
static imsg_handlerfn *handlers[] = {
0073
2021-03-19
op
[IMSG_QUIT] = handle_imsg_quit,
0076
2021-10-07
op
static uint32_t server_client_id;
0078
2021-10-07
op
struct client_tree_id clients;
0080
2021-02-10
op
static inline int
0081
2021-02-10
op
matches(const char *pattern, const char *path)
0083
2021-02-10
op
if (*path == '/')
0085
2021-02-10
op
return !fnmatch(pattern, path, 0);
0088
2021-01-24
op
const char *
0089
2021-01-24
op
vhost_lang(struct vhost *v, const char *path)
0091
2021-01-24
op
struct location *loc;
0093
2021-01-27
op
if (v == NULL || path == NULL)
0094
2021-01-30
op
return NULL;
0096
2021-03-31
op
loc = TAILQ_FIRST(&v->locations);
0097
2021-03-31
op
while ((loc = TAILQ_NEXT(loc, locations)) != NULL) {
0098
2021-02-06
op
if (loc->lang != NULL) {
0099
2021-02-10
op
if (matches(loc->match, path))
0100
2021-01-30
op
return loc->lang;
0104
2021-03-31
op
return TAILQ_FIRST(&v->locations)->lang;
0107
2021-01-24
op
const char *
0108
2021-01-24
op
vhost_default_mime(struct vhost *v, const char *path)
0110
2021-01-24
op
struct location *loc;
0111
2021-01-24
op
const char *default_mime = "application/octet-stream";
0113
2021-01-27
op
if (v == NULL || path == NULL)
0114
2021-01-27
op
return default_mime;
0116
2021-03-31
op
loc = TAILQ_FIRST(&v->locations);
0117
2021-03-31
op
while ((loc = TAILQ_NEXT(loc, locations)) != NULL) {
0118
2021-02-06
op
if (loc->default_mime != NULL) {
0119
2021-02-10
op
if (matches(loc->match, path))
0120
2021-01-30
op
return loc->default_mime;
0124
2021-03-31
op
loc = TAILQ_FIRST(&v->locations);
0125
2021-03-31
op
if (loc->default_mime != NULL)
0126
2021-03-31
op
return loc->default_mime;
0127
2021-01-24
op
return default_mime;
0130
2021-01-24
op
const char *
0131
2021-01-24
op
vhost_index(struct vhost *v, const char *path)
0133
2021-01-24
op
struct location *loc;
0134
2021-01-24
op
const char *index = "index.gmi";
0136
2021-01-27
op
if (v == NULL || path == NULL)
0137
2021-01-27
op
return index;
0139
2021-03-31
op
loc = TAILQ_FIRST(&v->locations);
0140
2021-03-31
op
while ((loc = TAILQ_NEXT(loc, locations)) != NULL) {
0141
2021-02-06
op
if (loc->index != NULL) {
0142
2021-02-10
op
if (matches(loc->match, path))
0143
2021-01-30
op
return loc->index;
0147
2021-03-31
op
loc = TAILQ_FIRST(&v->locations);
0148
2021-03-31
op
if (loc->index != NULL)
0149
2021-03-31
op
return loc->index;
0150
2021-01-24
op
return index;
0154
2021-01-24
op
vhost_auto_index(struct vhost *v, const char *path)
0156
2021-01-24
op
struct location *loc;
0158
2021-01-30
op
if (v == NULL || path == NULL)
0159
2021-01-30
op
return 0;
0161
2021-03-31
op
loc = TAILQ_FIRST(&v->locations);
0162
2021-03-31
op
while ((loc = TAILQ_NEXT(loc, locations)) != NULL) {
0163
2021-02-06
op
if (loc->auto_index != 0) {
0164
2021-02-10
op
if (matches(loc->match, path))
0165
2021-01-30
op
return loc->auto_index == 1;
0169
2021-03-31
op
loc = TAILQ_FIRST(&v->locations);
0170
2021-03-31
op
return loc->auto_index == 1;
0174
2021-02-06
op
vhost_block_return(struct vhost *v, const char *path, int *code, const char **fmt)
0176
2021-02-06
op
struct location *loc;
0178
2021-02-06
op
if (v == NULL || path == NULL)
0179
2021-02-06
op
return 0;
0181
2021-03-31
op
loc = TAILQ_FIRST(&v->locations);
0182
2021-03-31
op
while ((loc = TAILQ_NEXT(loc, locations)) != NULL) {
0183
2021-02-06
op
if (loc->block_code != 0) {
0184
2021-02-10
op
if (matches(loc->match, path)) {
0185
2021-02-06
op
*code = loc->block_code;
0186
2021-02-06
op
*fmt = loc->block_fmt;
0187
2021-02-06
op
return 1;
0192
2021-03-31
op
loc = TAILQ_FIRST(&v->locations);
0193
2021-03-31
op
*code = loc->block_code;
0194
2021-03-31
op
*fmt = loc->block_fmt;
0195
2021-03-31
op
return loc->block_code != 0;
0199
2021-05-09
op
vhost_fastcgi(struct vhost *v, const char *path)
0201
2021-05-09
op
struct location *loc;
0203
2021-05-09
op
if (v == NULL || path == NULL)
0204
2021-05-09
op
return -1;
0206
2021-05-09
op
loc = TAILQ_FIRST(&v->locations);
0207
2021-05-09
op
while ((loc = TAILQ_NEXT(loc, locations)) != NULL) {
0208
2021-05-09
op
if (loc->fcgi != -1)
0209
2021-05-09
op
if (matches(loc->match, path))
0210
2021-05-09
op
return loc->fcgi;
0213
2021-05-09
op
loc = TAILQ_FIRST(&v->locations);
0214
2021-05-09
op
return loc->fcgi;
0218
2021-05-15
op
vhost_dirfd(struct vhost *v, const char *path, size_t *retloc)
0220
2021-04-30
op
struct location *loc;
0221
2021-05-15
op
size_t l = 0;
0223
2021-04-30
op
if (v == NULL || path == NULL)
0224
2021-04-30
op
return -1;
0226
2021-04-30
op
loc = TAILQ_FIRST(&v->locations);
0227
2021-04-30
op
while ((loc = TAILQ_NEXT(loc, locations)) != NULL) {
0229
2021-04-30
op
if (loc->dirfd != -1)
0230
2021-05-15
op
if (matches(loc->match, path)) {
0231
2021-05-15
op
*retloc = l;
0232
2021-04-30
op
return loc->dirfd;
0236
2021-05-15
op
*retloc = 0;
0237
2021-04-30
op
loc = TAILQ_FIRST(&v->locations);
0238
2021-04-30
op
return loc->dirfd;
0242
2021-02-06
op
vhost_strip(struct vhost *v, const char *path)
0244
2021-02-06
op
struct location *loc;
0246
2021-02-06
op
if (v == NULL || path == NULL)
0247
2021-02-06
op
return 0;
0249
2021-03-31
op
loc = TAILQ_FIRST(&v->locations);
0250
2021-03-31
op
while ((loc = TAILQ_NEXT(loc, locations)) != NULL) {
0251
2021-02-06
op
if (loc->strip != 0) {
0252
2021-02-10
op
if (matches(loc->match, path))
0253
2021-02-06
op
return loc->strip;
0257
2021-03-31
op
loc = TAILQ_FIRST(&v->locations);
0258
2021-03-31
op
return loc->strip;
0261
2021-02-09
op
X509_STORE *
0262
2021-02-09
op
vhost_require_ca(struct vhost *v, const char *path)
0264
2021-02-09
op
struct location *loc;
0266
2021-02-09
op
if (v == NULL || path == NULL)
0267
2021-02-09
op
return NULL;
0269
2021-03-31
op
loc = TAILQ_FIRST(&v->locations);
0270
2021-03-31
op
while ((loc = TAILQ_NEXT(loc, locations)) != NULL) {
0271
2021-02-09
op
if (loc->reqca != NULL) {
0272
2021-02-10
op
if (matches(loc->match, path))
0273
2021-02-09
op
return loc->reqca;
0277
2021-03-31
op
loc = TAILQ_FIRST(&v->locations);
0278
2021-03-31
op
return loc->reqca;
0282
2021-02-23
op
vhost_disable_log(struct vhost *v, const char *path)
0284
2021-02-23
op
struct location *loc;
0286
2021-02-23
op
if (v == NULL || path == NULL)
0287
2021-02-23
op
return 0;
0289
2021-03-31
op
loc = TAILQ_FIRST(&v->locations);
0290
2021-03-31
op
while ((loc = TAILQ_NEXT(loc, locations)) != NULL) {
0291
2021-02-23
op
if (loc->disable_log && matches(loc->match, path))
0292
2021-02-23
op
return 1;
0295
2021-03-31
op
loc = TAILQ_FIRST(&v->locations);
0296
2021-03-31
op
return loc->disable_log;
0299
2021-02-02
op
static int
0300
2021-01-17
op
check_path(struct client *c, const char *path, int *fd)
0302
2021-01-17
op
struct stat sb;
0303
2021-01-21
op
const char *p;
0304
2021-07-27
op
int dirfd, strip;
0306
2021-01-17
op
assert(path != NULL);
0309
2021-04-30
op
* in send_dir we add an initial / (to be redirect-friendly),
0310
2021-04-30
op
* but here we want to skip it
0312
2021-04-30
op
if (*path == '/')
0315
2021-04-30
op
strip = vhost_strip(c->host, path);
0316
2021-04-30
op
p = strip_path(path, strip);
0318
2021-04-30
op
if (*p == '/')
0319
2021-04-30
op
p = p+1;
0320
2021-04-30
op
if (*p == '\0')
0321
2021-01-21
op
p = ".";
0323
2021-05-15
op
dirfd = vhost_dirfd(c->host, path, &c->loc);
0324
2021-04-30
op
log_debug(c, "check_path: strip=%d path=%s original=%s",
0325
2021-04-30
op
strip, p, path);
0326
2022-07-04
op
if (*fd == -1 && (*fd = openat(dirfd, p, O_RDONLY)) == -1) {
0327
2022-07-04
op
if (errno == EACCES)
0328
2022-07-04
op
log_info(c, "can't open %s: %s", p, strerror(errno));
0329
2021-01-17
op
return FILE_MISSING;
0332
2021-01-17
op
if (fstat(*fd, &sb) == -1) {
0333
2021-02-07
op
log_notice(c, "failed stat for %s: %s", path, strerror(errno));
0334
2021-01-17
op
return FILE_MISSING;
0337
2021-01-17
op
if (S_ISDIR(sb.st_mode))
0338
2021-01-17
op
return FILE_DIRECTORY;
0340
2021-01-17
op
return FILE_EXISTS;
0343
2021-02-02
op
static void
0344
2021-02-08
op
open_file(struct client *c)
0346
2021-02-08
op
switch (check_path(c, c->iri.path, &c->pfd)) {
0347
2021-01-17
op
case FILE_EXISTS:
0348
2021-10-02
op
c->type = REQUEST_FILE;
0349
2021-02-12
op
start_reply(c, SUCCESS, mime(c->host, c->iri.path));
0352
2021-01-17
op
case FILE_DIRECTORY:
0353
2021-02-08
op
open_dir(c);
0356
2021-01-17
op
case FILE_MISSING:
0357
2021-02-08
op
start_reply(c, NOT_FOUND, "not found");
0360
2021-01-17
op
default:
0361
2021-01-17
op
/* unreachable */
0362
2021-01-17
op
abort();
0367
2021-02-03
op
mark_nonblock(int fd)
0369
2021-02-03
op
int flags;
0371
2021-02-03
op
if ((flags = fcntl(fd, F_GETFL)) == -1)
0372
2021-02-03
op
fatal("fcntl(F_GETFL): %s", strerror(errno));
0373
2021-02-03
op
if (fcntl(fd, F_SETFL, flags | O_NONBLOCK) == -1)
0374
2021-02-03
op
fatal("fcntl(F_SETFL): %s", strerror(errno));
0377
2021-02-02
op
static void
0378
2021-02-08
op
handle_handshake(int fd, short ev, void *d)
0380
2021-02-08
op
struct client *c = d;
0381
2021-01-17
op
struct vhost *h;
0382
2021-04-29
op
struct alist *a;
0383
2021-01-17
op
const char *servname;
0384
2021-01-29
op
const char *parse_err = "unknown error";
0386
2021-01-17
op
switch (tls_handshake(c->ctx)) {
0387
2021-01-17
op
case 0: /* success */
0388
2021-01-17
op
case -1: /* already handshaked */
0390
2021-01-17
op
case TLS_WANT_POLLIN:
0391
2021-10-02
op
event_once(c->fd, EV_READ, handle_handshake, c, NULL);
0393
2021-01-17
op
case TLS_WANT_POLLOUT:
0394
2021-10-02
op
event_once(c->fd, EV_WRITE, handle_handshake, c, NULL);
0396
2021-01-17
op
default:
0397
2021-01-17
op
/* unreachable */
0398
2021-01-17
op
abort();
0401
2021-10-15
op
c->bev = bufferevent_new(fd, client_read, client_write,
0402
2021-10-15
op
client_error, c);
0403
2021-10-15
op
if (c->bev == NULL)
0404
2021-10-15
op
fatal("%s: failed to allocate client buffer: %s",
0405
2021-10-15
op
__func__, strerror(errno));
0407
2021-10-15
op
event_set(&c->bev->ev_read, c->fd, EV_READ,
0408
2021-10-15
op
client_tls_readcb, c->bev);
0409
2021-10-15
op
event_set(&c->bev->ev_write, c->fd, EV_WRITE,
0410
2021-10-15
op
client_tls_writecb, c->bev);
0412
2021-10-15
op
#if HAVE_LIBEVENT2
0413
2021-10-15
op
evbuffer_unfreeze(c->bev->input, 0);
0414
2021-10-15
op
evbuffer_unfreeze(c->bev->output, 1);
0417
2021-09-24
op
if ((servname = tls_conn_servername(c->ctx)) == NULL) {
0418
2021-09-24
op
log_debug(c, "handshake: missing SNI");
0419
2021-09-24
op
goto err;
0422
2021-01-29
op
if (!puny_decode(servname, c->domain, sizeof(c->domain), &parse_err)) {
0423
2021-02-07
op
log_info(c, "puny_decode: %s", parse_err);
0424
2021-01-29
op
goto err;
0427
2021-03-31
op
TAILQ_FOREACH(h, &hosts, vhosts) {
0428
2021-02-12
op
if (matches(h->domain, c->domain))
0429
2021-04-29
op
goto found;
0430
2021-04-29
op
TAILQ_FOREACH(a, &h->aliases, aliases) {
0431
2021-04-29
op
if (matches(a->alias, c->domain))
0432
2021-04-29
op
goto found;
0437
2021-02-07
op
log_debug(c, "handshake: SNI: \"%s\"; decoded: \"%s\"; matched: \"%s\"",
0438
2021-02-07
op
servname != NULL ? servname : "(null)",
0439
2021-02-07
op
c->domain,
0440
2021-03-31
op
h != NULL ? h->domain : "(null)");
0442
2021-03-31
op
if (h != NULL) {
0443
2021-01-17
op
c->host = h;
0444
2021-10-02
op
bufferevent_enable(c->bev, EV_READ);
0449
2021-02-08
op
start_reply(c, BAD_REQUEST, "Wrong/malformed host or missing SNI");
0452
2021-05-15
op
static const char *
0453
2021-05-15
op
strip_path(const char *path, int strip)
0455
2021-02-08
op
char *t;
0457
2021-02-06
op
while (strip > 0) {
0458
2021-02-06
op
if ((t = strchr(path, '/')) == NULL) {
0459
2021-02-06
op
path = strchr(path, '\0');
0462
2021-02-06
op
path = t;
0463
2021-02-06
op
strip--;
0466
2021-02-08
op
return path;
0469
2021-02-08
op
static void
0470
2021-02-08
op
fmt_sbuf(const char *fmt, struct client *c, const char *path)
0472
2021-02-08
op
size_t i;
0473
2021-10-18
op
char buf[32];
0475
2021-02-06
op
memset(buf, 0, sizeof(buf));
0476
2021-02-06
op
for (i = 0; *fmt; ++fmt) {
0477
2021-02-06
op
if (i == sizeof(buf)-1 || *fmt == '%') {
0478
2021-02-06
op
strlcat(c->sbuf, buf, sizeof(c->sbuf));
0479
2021-02-06
op
memset(buf, 0, sizeof(buf));
0483
2021-02-06
op
if (*fmt != '%') {
0484
2021-02-06
op
buf[i++] = *fmt;
0485
2021-02-06
op
continue;
0488
2021-02-06
op
switch (*++fmt) {
0489
2021-02-06
op
case '%':
0490
2021-02-06
op
strlcat(c->sbuf, "%", sizeof(c->sbuf));
0492
2021-02-06
op
case 'p':
0493
2021-04-30
op
if (*path != '/')
0494
2021-04-30
op
strlcat(c->sbuf, "/", sizeof(c->sbuf));
0495
2021-02-06
op
strlcat(c->sbuf, path, sizeof(c->sbuf));
0497
2021-02-06
op
case 'q':
0498
2021-02-06
op
strlcat(c->sbuf, c->iri.query, sizeof(c->sbuf));
0500
2021-02-06
op
case 'P':
0501
2021-02-06
op
snprintf(buf, sizeof(buf), "%d", conf.port);
0502
2021-02-06
op
strlcat(c->sbuf, buf, sizeof(c->sbuf));
0503
2021-02-06
op
memset(buf, 0, sizeof(buf));
0505
2021-02-06
op
case 'N':
0506
2021-02-06
op
strlcat(c->sbuf, c->domain, sizeof(c->sbuf));
0508
2021-02-06
op
default:
0509
2021-02-06
op
fatal("%s: unknown fmt specifier %c",
0510
2021-02-06
op
__func__, *fmt);
0514
2021-02-06
op
if (i != 0)
0515
2021-02-06
op
strlcat(c->sbuf, buf, sizeof(c->sbuf));
0518
2021-02-08
op
/* 1 if a matching `block return' (and apply it), 0 otherwise */
0519
2021-02-08
op
static int
0520
2021-02-08
op
apply_block_return(struct client *c)
0522
2021-02-08
op
const char *fmt, *path;
0523
2021-02-08
op
int code;
0525
2021-02-08
op
if (!vhost_block_return(c->host, c->iri.path, &code, &fmt))
0526
2021-02-08
op
return 0;
0528
2021-02-08
op
path = strip_path(c->iri.path, vhost_strip(c->host, c->iri.path));
0529
2021-02-08
op
fmt_sbuf(fmt, c, path);
0531
2021-02-08
op
start_reply(c, code, c->sbuf);
0532
2021-12-29
op
return 1;
0535
2021-01-02
op
static struct proxy *
0536
2021-01-02
op
matched_proxy(struct client *c)
0538
2021-01-02
op
struct proxy *p;
0539
2021-01-02
op
const char *proto;
0540
2021-01-02
op
const char *host;
0541
2021-01-02
op
const char *port;
0543
2021-01-02
op
TAILQ_FOREACH(p, &c->host->proxies, proxies) {
0544
2021-01-02
op
if ((proto = p->match_proto) == NULL)
0545
2021-01-02
op
proto = "gemini";
0546
2021-01-02
op
if ((host = p->match_host) == NULL)
0547
2021-01-02
op
host = "*";
0548
2021-01-02
op
if ((port = p->match_port) == NULL)
0549
2021-01-02
op
port = "*";
0551
2021-01-02
op
if (matches(proto, c->iri.schema) &&
0552
2021-01-02
op
matches(host, c->domain) &&
0553
2021-01-02
op
matches(port, c->iri.port))
0554
2021-01-02
op
return p;
0557
2021-01-02
op
return NULL;
0560
2022-01-04
op
static int
0561
2022-01-04
op
check_matching_certificate(X509_STORE *store, struct client *c)
0563
2022-01-04
op
const uint8_t *cert;
0564
2022-01-04
op
size_t len;
0566
2022-01-04
op
if (!tls_peer_cert_provided(c->ctx)) {
0567
2022-01-04
op
start_reply(c, CLIENT_CERT_REQ, "client certificate required");
0568
2022-01-04
op
return 1;
0571
2022-01-04
op
cert = tls_peer_cert_chain_pem(c->ctx, &len);
0572
2022-01-04
op
if (!validate_against_ca(store, cert, len)) {
0573
2022-01-04
op
start_reply(c, CERT_NOT_AUTH, "certificate not authorised");
0574
2022-01-04
op
return 1;
0577
2022-01-04
op
return 0;
0580
2022-09-06
op
static int
0581
2022-09-06
op
proxy_socket(struct client *c, const char *host, const char *port)
0583
2022-09-06
op
struct addrinfo hints, *res, *res0;
0584
2022-09-06
op
int r, sock;
0586
2022-09-06
op
memset(&hints, 0, sizeof(hints));
0587
2022-09-06
op
hints.ai_family = AF_UNSPEC;
0588
2022-09-06
op
hints.ai_socktype = SOCK_STREAM;
0590
2022-09-06
op
/* XXX: asr_run? :> */
0591
2022-09-06
op
r = getaddrinfo(host, port, &hints, &res0);
0592
2022-09-06
op
if (r != 0) {
0593
2022-09-06
op
log_warn(c, "getaddrinfo(\"%s\", \"%s\"): %s",
0594
2022-09-06
op
host, port, gai_strerror(r));
0595
2022-09-06
op
return -1;
0598
2022-09-06
op
for (res = res0; res; res = res->ai_next) {
0599
2022-09-06
op
sock = socket(res->ai_family, res->ai_socktype,
0600
2022-09-06
op
res->ai_protocol);
0601
2022-09-06
op
if (sock == -1)
0602
2022-09-06
op
continue;
0604
2022-09-06
op
if (connect(sock, res->ai_addr, res->ai_addrlen) == -1) {
0605
2022-09-06
op
close(sock);
0606
2022-09-06
op
sock = -1;
0607
2022-09-06
op
continue;
0613
2022-09-06
op
freeaddrinfo(res0);
0615
2022-09-06
op
if (sock == -1)
0616
2022-09-06
op
log_warn(c, "can't connect to %s:%s", host, port);
0618
2022-09-06
op
return sock;
0621
2021-12-29
op
/* 1 if matching a proxy relay-to (and apply it), 0 otherwise */
0622
2021-12-29
op
static int
0623
2021-12-29
op
apply_reverse_proxy(struct client *c)
0625
2021-01-01
op
struct proxy *p;
0627
2021-01-02
op
if ((p = matched_proxy(c)) == NULL)
0628
2021-12-29
op
return 0;
0630
2021-01-02
op
c->proxy = p;
0632
2022-01-04
op
if (p->reqca != NULL && check_matching_certificate(p->reqca, c))
0633
2022-01-04
op
return 1;
0635
2021-12-29
op
log_debug(c, "opening proxy connection for %s:%s",
0636
2021-01-01
op
p->host, p->port);
0638
2022-09-06
op
if ((c->pfd = proxy_socket(c, p->host, p->port)) == -1) {
0639
2022-09-06
op
start_reply(c, PROXY_ERROR, "proxy error");
0640
2022-09-06
op
return 1;
0643
2022-09-06
op
mark_nonblock(c->pfd);
0644
2022-09-06
op
if (proxy_init(c) == -1)
0645
2022-09-06
op
start_reply(c, PROXY_ERROR, "proxy error");
0647
2021-05-09
op
return 1;
0650
2022-09-06
op
static int
0651
2022-09-06
op
fcgi_open_sock(struct fcgi *f)
0653
2022-09-06
op
struct sockaddr_un addr;
0656
2022-09-06
op
if ((fd = socket(AF_UNIX, SOCK_STREAM, 0)) == -1) {
0657
2022-09-06
op
log_err(NULL, "socket: %s", strerror(errno));
0658
2022-09-06
op
return -1;
0661
2022-09-06
op
memset(&addr, 0, sizeof(addr));
0662
2022-09-06
op
addr.sun_family = AF_UNIX;
0663
2022-09-06
op
strlcpy(addr.sun_path, f->path, sizeof(addr.sun_path));
0665
2022-09-06
op
if (connect(fd, (struct sockaddr*)&addr, sizeof(addr)) == -1) {
0666
2022-09-06
op
log_warn(NULL, "failed to connect to %s: %s", f->path,
0667
2022-09-06
op
strerror(errno));
0668
2022-09-06
op
close(fd);
0669
2022-09-06
op
return -1;
0672
2022-09-06
op
return fd;
0675
2022-09-06
op
static int
0676
2022-09-06
op
fcgi_open_conn(struct fcgi *f)
0678
2022-09-06
op
struct addrinfo hints, *servinfo, *p;
0679
2022-09-06
op
int r, sock;
0681
2022-09-06
op
memset(&hints, 0, sizeof(hints));
0682
2022-09-06
op
hints.ai_family = AF_UNSPEC;
0683
2022-09-06
op
hints.ai_socktype = SOCK_STREAM;
0684
2022-09-06
op
hints.ai_flags = AI_ADDRCONFIG;
0686
2022-09-06
op
if ((r = getaddrinfo(f->path, f->port, &hints, &servinfo)) != 0) {
0687
2022-09-06
op
log_warn(NULL, "getaddrinfo %s:%s: %s", f->path, f->port,
0688
2022-09-06
op
gai_strerror(r));
0689
2022-09-06
op
return -1;
0692
2022-09-06
op
for (p = servinfo; p != NULL; p = p->ai_next) {
0693
2022-09-06
op
sock = socket(p->ai_family, p->ai_socktype, p->ai_protocol);
0694
2022-09-06
op
if (sock == -1)
0695
2022-09-06
op
continue;
0696
2022-09-06
op
if (connect(sock, p->ai_addr, p->ai_addrlen) == -1) {
0697
2022-09-06
op
close(sock);
0698
2022-09-06
op
continue;
0703
2022-09-06
op
if (p == NULL) {
0704
2022-09-06
op
log_warn(NULL, "couldn't connect to %s:%s", f->path, f->port);
0705
2022-09-06
op
sock = -1;
0708
2022-09-06
op
freeaddrinfo(servinfo);
0709
2022-09-06
op
return sock;
0712
2021-05-09
op
/* 1 if matching `fcgi' (and apply it), 0 otherwise */
0713
2021-05-09
op
static int
0714
2021-05-09
op
apply_fastcgi(struct client *c)
0717
2021-05-09
op
struct fcgi *f;
0719
2021-05-09
op
if ((id = vhost_fastcgi(c->host, c->iri.path)) == -1)
0720
2021-05-09
op
return 0;
0722
2021-10-07
op
f = &fcgi[id];
0724
2022-09-06
op
log_debug(c, "opening fastcgi connection for (%s,%s)",
0725
2022-09-06
op
f->path, f->port);
0727
2022-09-06
op
if (f->port != NULL)
0728
2022-09-06
op
c->pfd = fcgi_open_sock(f);
0730
2022-09-06
op
c->pfd = fcgi_open_conn(f);
0732
2022-09-06
op
if (c->pfd == -1) {
0733
2022-09-06
op
start_reply(c, CGI_ERROR, "CGI error");
0734
2022-09-06
op
return 1;
0737
2022-09-06
op
mark_nonblock(c->pfd);
0739
2022-09-06
op
c->cgibev = bufferevent_new(c->pfd, fcgi_read, fcgi_write,
0740
2022-09-06
op
fcgi_error, c);
0741
2022-09-06
op
if (c->cgibev == NULL) {
0742
2022-09-06
op
start_reply(c, TEMP_FAILURE, "internal server error");
0743
2022-09-06
op
return 1;
0746
2022-09-06
op
bufferevent_enable(c->cgibev, EV_READ|EV_WRITE);
0747
2022-09-06
op
fcgi_req(c);
0749
2021-02-06
op
return 1;
0752
2021-02-09
op
/* 1 if matching `require client ca' fails (and apply it), 0 otherwise */
0753
2021-02-09
op
static int
0754
2021-02-09
op
apply_require_ca(struct client *c)
0756
2021-02-09
op
X509_STORE *store;
0758
2021-02-09
op
if ((store = vhost_require_ca(c->host, c->iri.path)) == NULL)
0759
2021-02-09
op
return 0;
0760
2022-01-04
op
return check_matching_certificate(store, c);
0763
2021-02-02
op
static void
0764
2021-02-08
op
open_dir(struct client *c)
0766
2021-01-17
op
size_t len;
0767
2021-04-25
op
int dirfd, root;
0768
2021-01-24
op
char *before_file;
0770
2022-09-06
op
log_debug(c, "in open_dir");
0772
2021-04-25
op
root = !strcmp(c->iri.path, "/") || *c->iri.path == '\0';
0774
2021-01-20
op
len = strlen(c->iri.path);
0775
2021-01-24
op
if (len > 0 && !ends_with(c->iri.path, "/")) {
0776
2021-02-08
op
redirect_canonical_dir(c);
0780
2021-01-24
op
strlcpy(c->sbuf, "/", sizeof(c->sbuf));
0781
2021-01-21
op
strlcat(c->sbuf, c->iri.path, sizeof(c->sbuf));
0782
2021-01-21
op
if (!ends_with(c->sbuf, "/"))
0783
2021-01-20
op
strlcat(c->sbuf, "/", sizeof(c->sbuf));
0784
2021-01-24
op
before_file = strchr(c->sbuf, '\0');
0785
2021-01-24
op
len = strlcat(c->sbuf, vhost_index(c->host, c->iri.path),
0786
2021-01-24
op
sizeof(c->sbuf));
0787
2021-01-24
op
if (len >= sizeof(c->sbuf)) {
0788
2021-02-08
op
start_reply(c, TEMP_FAILURE, "internal server error");
0792
2021-01-24
op
c->iri.path = c->sbuf;
0794
2021-01-24
op
/* close later unless we have to generate the dir listing */
0795
2021-02-08
op
dirfd = c->pfd;
0796
2021-02-08
op
c->pfd = -1;
0798
2021-02-08
op
switch (check_path(c, c->iri.path, &c->pfd)) {
0799
2021-01-24
op
case FILE_EXISTS:
0800
2021-10-02
op
c->type = REQUEST_FILE;
0801
2021-02-12
op
start_reply(c, SUCCESS, mime(c->host, c->iri.path));
0804
2021-01-24
op
case FILE_DIRECTORY:
0805
2021-02-08
op
start_reply(c, TEMP_REDIRECT, c->sbuf);
0808
2021-01-24
op
case FILE_MISSING:
0809
2021-01-24
op
*before_file = '\0';
0811
2021-01-24
op
if (!vhost_auto_index(c->host, c->iri.path)) {
0812
2021-02-08
op
start_reply(c, NOT_FOUND, "not found");
0816
2021-10-02
op
c->type = REQUEST_DIR;
0818
2021-04-25
op
c->dirlen = scandir_fd(dirfd, &c->dir,
0819
2021-04-25
op
root ? select_non_dotdot : select_non_dot,
0820
2021-04-25
op
alphasort);
0821
2021-04-25
op
if (c->dirlen == -1) {
0822
2021-04-25
op
log_err(c, "scandir_fd(%d) (vhost:%s) %s: %s",
0823
2021-02-08
op
c->pfd, c->host->domain, c->iri.path, strerror(errno));
0824
2021-02-08
op
start_reply(c, TEMP_FAILURE, "internal server error");
0827
2021-04-25
op
c->diroff = 0;
0828
2021-01-24
op
c->off = 0;
0830
2021-10-18
op
start_reply(c, SUCCESS, "text/gemini");
0831
2021-10-02
op
evbuffer_add_printf(EVBUFFER_OUTPUT(c->bev),
0832
2021-10-02
op
"# Index of %s\n\n", c->iri.path);
0835
2021-01-24
op
default:
0836
2021-01-24
op
/* unreachable */
0837
2021-01-24
op
abort();
0840
2021-01-24
op
close(dirfd);
0843
2021-02-02
op
static void
0844
2021-02-08
op
redirect_canonical_dir(struct client *c)
0846
2021-01-24
op
size_t len;
0848
2021-01-24
op
strlcpy(c->sbuf, "/", sizeof(c->sbuf));
0849
2021-01-24
op
strlcat(c->sbuf, c->iri.path, sizeof(c->sbuf));
0850
2021-01-24
op
len = strlcat(c->sbuf, "/", sizeof(c->sbuf));
0852
2021-01-20
op
if (len >= sizeof(c->sbuf)) {
0853
2021-02-08
op
start_reply(c, TEMP_FAILURE, "internal server error");
0857
2021-02-08
op
start_reply(c, TEMP_REDIRECT, c->sbuf);
0860
2021-02-02
op
static void
0861
2021-10-02
op
client_tls_readcb(int fd, short event, void *d)
0863
2021-10-02
op
struct bufferevent *bufev = d;
0864
2021-10-02
op
struct client *client = bufev->cbarg;
0865
2021-10-02
op
ssize_t ret;
0866
2021-10-02
op
size_t len;
0867
2021-10-02
op
int what = EVBUFFER_READ;
0868
2021-10-02
op
int howmuch = IBUF_READ_SIZE;
0869
2021-10-02
op
char buf[IBUF_READ_SIZE];
0871
2021-10-02
op
if (event == EV_TIMEOUT) {
0872
2021-10-02
op
what |= EVBUFFER_TIMEOUT;
0873
2021-10-02
op
goto err;
0876
2021-10-02
op
if (bufev->wm_read.high != 0)
0877
2021-10-02
op
howmuch = MIN(sizeof(buf), bufev->wm_read.high);
0879
2021-10-02
op
switch (ret = tls_read(client->ctx, buf, howmuch)) {
0880
2021-10-02
op
case TLS_WANT_POLLIN:
0881
2021-10-02
op
case TLS_WANT_POLLOUT:
0882
2021-10-02
op
goto retry;
0883
2021-10-02
op
case -1:
0884
2021-10-02
op
what |= EVBUFFER_ERROR;
0885
2021-10-02
op
goto err;
0887
2021-10-02
op
len = ret;
0889
2021-10-02
op
if (len == 0) {
0890
2021-10-02
op
what |= EVBUFFER_EOF;
0891
2021-10-02
op
goto err;
0894
2021-10-02
op
if (evbuffer_add(bufev->input, buf, len) == -1) {
0895
2021-10-02
op
what |= EVBUFFER_ERROR;
0896
2021-10-02
op
goto err;
0899
2021-10-02
op
event_add(&bufev->ev_read, NULL);
0900
2021-10-02
op
if (bufev->wm_read.low != 0 && len < bufev->wm_read.low)
0902
2021-10-02
op
if (bufev->wm_read.high != 0 && len > bufev->wm_read.high) {
0904
2021-10-02
op
* here we could implement a read pressure policy.
0908
2021-10-02
op
if (bufev->readcb != NULL)
0909
2021-10-02
op
(*bufev->readcb)(bufev, bufev->cbarg);
0914
2021-10-02
op
event_add(&bufev->ev_read, NULL);
0918
2021-10-02
op
(*bufev->errorcb)(bufev, what, bufev->cbarg);
0921
2021-02-02
op
static void
0922
2021-10-02
op
client_tls_writecb(int fd, short event, void *d)
0924
2021-10-02
op
struct bufferevent *bufev = d;
0925
2021-10-02
op
struct client *client = bufev->cbarg;
0926
2021-10-02
op
ssize_t ret;
0927
2021-10-02
op
size_t len;
0928
2021-10-02
op
short what = EVBUFFER_WRITE;
0930
2021-10-02
op
if (event == EV_TIMEOUT) {
0931
2021-10-02
op
what |= EVBUFFER_TIMEOUT;
0932
2021-10-02
op
goto err;
0935
2021-10-02
op
if (EVBUFFER_LENGTH(bufev->output) != 0) {
0936
2021-10-02
op
ret = tls_write(client->ctx,
0937
2021-10-02
op
EVBUFFER_DATA(bufev->output),
0938
2021-10-02
op
EVBUFFER_LENGTH(bufev->output));
0939
2021-10-02
op
switch (ret) {
0940
2021-10-02
op
case TLS_WANT_POLLIN:
0941
2021-10-02
op
case TLS_WANT_POLLOUT:
0942
2021-10-02
op
goto retry;
0943
2021-10-02
op
case -1:
0944
2021-10-02
op
what |= EVBUFFER_ERROR;
0945
2021-10-02
op
goto err;
0947
2021-10-02
op
len = ret;
0948
2021-10-02
op
evbuffer_drain(bufev->output, len);
0951
2021-10-02
op
if (EVBUFFER_LENGTH(bufev->output) != 0)
0952
2021-10-02
op
event_add(&bufev->ev_write, NULL);
0954
2021-10-02
op
if (bufev->writecb != NULL &&
0955
2021-10-02
op
EVBUFFER_LENGTH(bufev->output) <= bufev->wm_write.low)
0956
2021-10-02
op
(*bufev->writecb)(bufev, bufev->cbarg);
0960
2021-10-02
op
event_add(&bufev->ev_write, NULL);
0963
2021-10-02
op
log_err(client, "tls error: %s", tls_error(client->ctx));
0964
2021-10-02
op
(*bufev->errorcb)(bufev, what, bufev->cbarg);
0967
2021-02-02
op
static void
0968
2021-10-02
op
client_read(struct bufferevent *bev, void *d)
0970
2021-10-02
op
struct client *c = d;
0971
2021-10-02
op
struct evbuffer *src = EVBUFFER_INPUT(bev);
0972
2021-10-02
op
const char *parse_err = "invalid request";
0973
2021-10-02
op
char decoded[DOMAIN_NAME_LEN];
0974
2021-10-02
op
size_t len;
0976
2021-10-02
op
bufferevent_disable(bev, EVBUFFER_READ);
0979
2022-01-05
op
* libevent2 can still somehow call this function, even
0980
2022-01-05
op
* though I never enable EV_READ in the bufferevent. If
0981
2022-01-05
op
* that's the case, bail out.
0983
2022-01-05
op
if (c->type != REQUEST_UNDECIDED)
0986
2021-10-02
op
/* max url len + \r\n */
0987
2021-10-02
op
if (EVBUFFER_LENGTH(src) > 1024 + 2) {
0988
2021-10-02
op
log_err(c, "too much data received");
0989
2021-10-02
op
start_reply(c, BAD_REQUEST, "bad request");
0993
2021-10-02
op
c->req = evbuffer_readln(src, &len, EVBUFFER_EOL_CRLF_STRICT);
0994
2021-10-02
op
if (c->req == NULL) {
0995
2021-10-02
op
/* not enough data yet. */
0996
2021-10-02
op
bufferevent_enable(bev, EVBUFFER_READ);
0999
2022-03-27
op
c->reqlen = strlen(c->req);
1000
2022-03-27
op
if (c->reqlen > 1024+2) {
1001
2022-03-27
op
log_err(c, "URL too long");
1002
2022-03-27
op
start_reply(c, BAD_REQUEST, "bad request");
1006
2021-10-02
op
if (!parse_iri(c->req, &c->iri, &parse_err) ||
1007
2021-10-02
op
!puny_decode(c->iri.host, decoded, sizeof(decoded), &parse_err)) {
1008
2021-10-02
op
log_err(c, "IRI parse error: %s", parse_err);
1009
2021-10-06
op
start_reply(c, BAD_REQUEST, "bad request");
1013
2021-12-29
op
if (apply_reverse_proxy(c))
1016
2021-12-09
op
/* ignore the port number */
1017
2021-12-09
op
if (strcmp(c->iri.schema, "gemini") ||
1018
2021-10-02
op
strcmp(decoded, c->domain)) {
1019
2021-10-02
op
start_reply(c, PROXY_REFUSED, "won't proxy request");
1023
2021-10-02
op
if (apply_require_ca(c) ||
1024
2021-10-02
op
apply_block_return(c)||
1025
2021-10-02
op
apply_fastcgi(c))
1028
2021-10-02
op
open_file(c);
1032
2021-10-02
op
client_write(struct bufferevent *bev, void *d)
1034
2021-10-02
op
struct client *c = d;
1035
2021-10-02
op
struct evbuffer *out = EVBUFFER_OUTPUT(bev);
1036
2022-07-04
op
char nam[PATH_MAX];
1037
2021-10-02
op
char buf[BUFSIZ];
1038
2021-10-02
op
ssize_t r;
1040
2021-10-02
op
switch (c->type) {
1041
2021-10-02
op
case REQUEST_UNDECIDED:
1043
2021-10-02
op
* Ignore spurious calls when we still don't have idea
1044
2021-10-02
op
* what to do with the request.
1048
2021-10-02
op
case REQUEST_FILE:
1049
2021-10-02
op
if ((r = read(c->pfd, buf, sizeof(buf))) == -1) {
1050
2021-10-02
op
log_warn(c, "read: %s", strerror(errno));
1051
2021-10-02
op
client_error(bev, EVBUFFER_ERROR, c);
1053
2021-10-02
op
} else if (r == 0) {
1054
2021-10-02
op
client_close(c);
1056
2021-10-02
op
} else if (r != sizeof(buf))
1057
2021-10-02
op
c->type = REQUEST_DONE;
1058
2021-10-02
op
bufferevent_write(bev, buf, r);
1061
2021-10-02
op
case REQUEST_DIR:
1062
2021-10-02
op
/* TODO: handle big big directories better */
1063
2021-10-02
op
for (c->diroff = 0; c->diroff < c->dirlen; ++c->diroff) {
1064
2022-07-04
op
const char *sufx = "";
1066
2022-07-04
op
encode_path(nam, sizeof(nam),
1067
2021-10-02
op
c->dir[c->diroff]->d_name);
1068
2022-07-04
op
if (c->dir[c->diroff]->d_type == DT_DIR)
1069
2022-07-04
op
sufx = "/";
1070
2022-07-04
op
evbuffer_add_printf(out, "=> ./%s%s\n", nam, sufx);
1071
2021-10-02
op
free(c->dir[c->diroff]);
1073
2021-10-02
op
free(c->dir);
1074
2021-10-02
op
c->dir = NULL;
1076
2021-10-02
op
c->type = REQUEST_DONE;
1078
2021-10-02
op
event_add(&c->bev->ev_write, NULL);
1081
2021-10-02
op
case REQUEST_FCGI:
1082
2021-12-29
op
case REQUEST_PROXY:
1084
2022-09-06
op
* Here we depend on fastcgi or proxy connection to
1085
2022-09-06
op
* provide data.
1089
2021-10-02
op
case REQUEST_DONE:
1090
2021-10-02
op
if (EVBUFFER_LENGTH(out) == 0)
1091
2021-10-02
op
client_close(c);
1096
2021-10-02
op
static void
1097
2021-10-02
op
client_error(struct bufferevent *bev, short error, void *d)
1099
2021-10-02
op
struct client *c = d;
1101
2021-10-02
op
c->type = REQUEST_DONE;
1103
2021-10-02
op
if (error & EVBUFFER_TIMEOUT) {
1104
2021-10-02
op
log_warn(c, "timeout reached, "
1105
2021-10-02
op
"forcefully closing the connection");
1106
2021-10-02
op
if (c->code == 0)
1107
2021-10-02
op
start_reply(c, BAD_REQUEST, "timeout");
1109
2021-10-02
op
client_close(c);
1113
2021-10-02
op
if (error & EVBUFFER_EOF) {
1114
2021-10-02
op
client_close(c);
1118
2022-02-19
op
log_err(c, "unknown bufferevent error %x", error);
1119
2021-10-02
op
client_close(c);
1123
2021-10-02
op
start_reply(struct client *c, int code, const char *meta)
1125
2021-10-02
op
struct evbuffer *evb = EVBUFFER_OUTPUT(c->bev);
1126
2021-10-02
op
const char *lang;
1127
2021-10-02
op
int r, rr;
1129
2021-10-02
op
bufferevent_enable(c->bev, EVBUFFER_WRITE);
1131
2021-10-02
op
c->code = code;
1132
2021-10-02
op
c->meta = meta;
1134
2021-10-02
op
r = evbuffer_add_printf(evb, "%d %s", code, meta);
1135
2021-10-02
op
if (r == -1)
1136
2021-10-02
op
goto err;
1138
2021-10-02
op
/* 2 digit status + space + 1024 max reply */
1139
2021-10-02
op
if (r > 1027)
1140
2021-10-02
op
goto overflow;
1142
2022-09-06
op
if (c->type != REQUEST_FCGI &&
1143
2021-12-29
op
c->type != REQUEST_PROXY &&
1144
2021-10-02
op
!strcmp(meta, "text/gemini") &&
1145
2021-10-02
op
(lang = vhost_lang(c->host, c->iri.path)) != NULL) {
1146
2021-10-18
op
rr = evbuffer_add_printf(evb, ";lang=%s", lang);
1147
2021-10-02
op
if (rr == -1)
1148
2021-10-02
op
goto err;
1149
2021-10-02
op
if (r + rr > 1027)
1150
2021-10-02
op
goto overflow;
1153
2021-10-02
op
bufferevent_write(c->bev, "\r\n", 2);
1155
2021-10-02
op
if (!vhost_disable_log(c->host, c->iri.path))
1156
2021-10-02
op
log_request(c, EVBUFFER_DATA(evb), EVBUFFER_LENGTH(evb));
1158
2022-01-27
op
if (code != 20)
1159
2021-10-02
op
c->type = REQUEST_DONE;
1164
2021-10-02
op
log_err(c, "evbuffer_add_printf error: no memory");
1165
2021-10-02
op
evbuffer_drain(evb, EVBUFFER_LENGTH(evb));
1166
2021-10-02
op
client_close(c);
1169
2021-10-02
op
overflow:
1170
2021-10-02
op
log_warn(c, "reply header overflow");
1171
2021-10-02
op
evbuffer_drain(evb, EVBUFFER_LENGTH(evb));
1172
2021-10-02
op
start_reply(c, TEMP_FAILURE, "internal error");
1175
2021-10-02
op
static void
1176
2021-10-02
op
client_close_ev(int fd, short event, void *d)
1178
2021-05-09
op
struct client *c = d;
1180
2021-01-17
op
switch (tls_close(c->ctx)) {
1181
2021-01-17
op
case TLS_WANT_POLLIN:
1182
2021-10-02
op
event_once(c->fd, EV_READ, client_close_ev, c, NULL);
1184
2021-01-17
op
case TLS_WANT_POLLOUT:
1185
2021-10-02
op
event_once(c->fd, EV_WRITE, client_close_ev, c, NULL);
1189
2021-01-17
op
connected_clients--;
1191
2021-10-06
op
free(c->req);
1193
2021-01-17
op
tls_free(c->ctx);
1194
2021-01-17
op
c->ctx = NULL;
1196
2021-10-02
op
free(c->header);
1198
2021-02-08
op
if (c->pfd != -1)
1199
2021-02-08
op
close(c->pfd);
1201
2021-01-24
op
if (c->dir != NULL)
1202
2021-04-25
op
free(c->dir);
1204
2021-02-08
op
close(c->fd);
1205
2021-02-08
op
c->fd = -1;
1208
2021-12-29
op
static void
1209
2021-12-29
op
client_proxy_close(int fd, short event, void *d)
1211
2021-12-29
op
struct tls *ctx = d;
1213
2021-12-29
op
if (ctx == NULL) {
1214
2021-12-29
op
close(fd);
1218
2021-12-29
op
switch (tls_close(ctx)) {
1219
2021-12-29
op
case TLS_WANT_POLLIN:
1220
2021-12-29
op
event_once(fd, EV_READ, client_proxy_close, d, NULL);
1222
2021-12-29
op
case TLS_WANT_POLLOUT:
1223
2021-12-29
op
event_once(fd, EV_WRITE, client_proxy_close, d, NULL);
1227
2021-12-29
op
tls_free(ctx);
1228
2021-12-29
op
close(fd);
1232
2021-10-02
op
client_close(struct client *c)
1235
2021-10-02
op
* We may end up calling client_close in various situations
1236
2021-10-02
op
* and for the most unexpected reasons. Therefore, we need to
1237
2022-01-27
op
* ensure that everything gets properly released once we reach
1238
2021-10-02
op
* this point.
1241
2021-10-07
op
SPLAY_REMOVE(client_tree_id, &clients, c);
1243
2021-10-02
op
if (c->cgibev != NULL) {
1244
2021-10-02
op
bufferevent_disable(c->cgibev, EVBUFFER_READ|EVBUFFER_WRITE);
1245
2021-10-02
op
bufferevent_free(c->cgibev);
1246
2021-10-02
op
c->cgibev = NULL;
1247
2021-10-02
op
close(c->pfd);
1248
2021-10-02
op
c->pfd = -1;
1251
2021-10-02
op
bufferevent_disable(c->bev, EVBUFFER_READ|EVBUFFER_WRITE);
1252
2021-10-02
op
bufferevent_free(c->bev);
1253
2021-10-02
op
c->bev = NULL;
1255
2022-01-27
op
if (c->proxyevset &&
1256
2022-01-27
op
event_pending(&c->proxyev, EV_READ|EV_WRITE, NULL)) {
1257
2022-01-27
op
c->proxyevset = 0;
1258
2022-01-27
op
event_del(&c->proxyev);
1261
2022-01-27
op
if (c->pfd != -1 && c->proxyctx != NULL) {
1262
2022-01-27
op
/* shut down the proxy TLS connection */
1263
2022-01-27
op
client_proxy_close(c->pfd, 0, c->proxyctx);
1264
2022-01-27
op
c->pfd = -1;
1267
2022-01-27
op
if (c->proxybev != NULL)
1268
2022-01-27
op
bufferevent_free(c->proxybev);
1270
2021-10-02
op
client_close_ev(c->fd, 0, c);
1273
2021-02-02
op
static void
1274
2021-02-08
op
do_accept(int sock, short et, void *d)
1276
2021-02-08
op
struct client *c;
1277
2021-01-17
op
struct sockaddr_storage addr;
1278
2021-02-08
op
struct sockaddr *saddr;
1279
2021-01-17
op
socklen_t len;
1282
2021-02-08
op
saddr = (struct sockaddr*)&addr;
1283
2021-01-17
op
len = sizeof(addr);
1284
2021-02-12
op
if ((fd = accept(sock, saddr, &len)) == -1) {
1285
2021-10-13
op
if (errno == EWOULDBLOCK || errno == EAGAIN ||
1286
2021-10-13
op
errno == ECONNABORTED)
1288
2021-01-17
op
fatal("accept: %s", strerror(errno));
1291
2021-02-12
op
mark_nonblock(fd);
1293
2021-10-07
op
c = xcalloc(1, sizeof(*c));
1294
2021-10-07
op
c->id = ++server_client_id;
1295
2021-10-07
op
c->fd = fd;
1296
2021-10-07
op
c->pfd = -1;
1297
2021-10-07
op
c->addr = addr;
1299
2021-10-07
op
if (tls_accept_socket(ctx, &c->ctx, fd) == -1) {
1300
2021-10-07
op
log_warn(c, "failed to accept socket: %s", tls_error(c->ctx));
1301
2021-10-07
op
close(c->fd);
1302
2021-10-07
op
free(c);
1306
2021-10-07
op
SPLAY_INSERT(client_tree_id, &clients, c);
1307
2021-10-07
op
event_once(c->fd, EV_READ|EV_WRITE, handle_handshake, c, NULL);
1308
2021-10-07
op
connected_clients++;
1311
2021-05-09
op
struct client *
1312
2022-03-26
op
client_by_id(int id)
1314
2021-10-07
op
struct client find;
1316
2021-10-07
op
find.id = id;
1317
2021-10-07
op
return SPLAY_FIND(client_tree_id, &clients, &find);
1320
2021-02-08
op
static void
1321
2021-03-19
op
handle_imsg_quit(struct imsgbuf *ibuf, struct imsg *imsg, size_t len)
1324
2021-07-07
op
* don't call event_loopbreak since we want to finish to
1325
2021-07-07
op
* handle the ongoing connections.
1328
2021-07-06
op
shutting_down = 1;
1330
2021-02-12
op
event_del(&e4);
1331
2021-02-12
op
if (has_ipv6)
1332
2021-02-12
op
event_del(&e6);
1333
2021-02-12
op
if (has_siginfo)
1334
2021-02-12
op
signal_del(&siginfo);
1335
2021-03-19
op
event_del(&imsgev);
1336
2021-02-12
op
signal_del(&sigusr2);
1339
2021-02-08
op
static void
1340
2021-03-19
op
handle_dispatch_imsg(int fd, short ev, void *d)
1342
2021-03-19
op
struct imsgbuf *ibuf = d;
1343
2021-03-19
op
dispatch_imsg(ibuf, handlers, sizeof(handlers));
1346
2021-03-19
op
static void
1347
2021-02-08
op
handle_siginfo(int fd, short ev, void *d)
1349
2021-02-08
op
log_info(NULL, "%d connected clients", connected_clients);
1353
2021-03-19
op
loop(struct tls *ctx_, int sock4, int sock6, struct imsgbuf *ibuf)
1355
2021-03-19
op
ctx = ctx_;
1357
2021-10-07
op
SPLAY_INIT(&clients);
1359
2021-02-08
op
event_init();
1361
2021-03-19
op
event_set(&e4, sock4, EV_READ | EV_PERSIST, &do_accept, NULL);
1362
2021-02-12
op
event_add(&e4, NULL);
1364
2021-02-08
op
if (sock6 != -1) {
1365
2021-02-12
op
has_ipv6 = 1;
1366
2021-03-19
op
event_set(&e6, sock6, EV_READ | EV_PERSIST, &do_accept, NULL);
1367
2021-02-12
op
event_add(&e6, NULL);
1370
2022-09-07
op
if (ibuf) {
1371
2022-09-07
op
event_set(&imsgev, ibuf->fd, EV_READ | EV_PERSIST,
1372
2022-09-07
op
handle_dispatch_imsg, ibuf);
1373
2022-09-07
op
event_add(&imsgev, NULL);
1376
2021-02-08
op
#ifdef SIGINFO
1377
2021-02-12
op
has_siginfo = 1;
1378
2021-02-12
op
signal_set(&siginfo, SIGINFO, &handle_siginfo, NULL);
1379
2021-02-12
op
signal_add(&siginfo, NULL);
1381
2021-02-12
op
signal_set(&sigusr2, SIGUSR2, &handle_siginfo, NULL);
1382
2021-02-12
op
signal_add(&sigusr2, NULL);
1384
2022-09-06
op
sandbox_server_process(conf.can_open_sockets);
1385
2021-02-08
op
event_dispatch();
1386
2021-02-08
op
_exit(0);
1390
2021-10-07
op
client_tree_cmp(struct client *a, struct client *b)
1392
2021-10-07
op
if (a->id == b->id)
1393
2021-10-07
op
return 0;
1394
2021-10-07
op
else if (a->id < b->id)
1395
2021-10-07
op
return -1;
1397
2021-10-07
op
return +1;
1400
2021-10-07
op
SPLAY_GENERATE(client_tree_id, client, entry, client_tree_cmp)