Blame


1 d3a08f4d 2021-01-17 op /*
2 a555e0d6 2022-07-04 op * Copyright (c) 2021, 2022 Omar Polo <op@omarpolo.com>
3 d3a08f4d 2021-01-17 op *
4 d3a08f4d 2021-01-17 op * Permission to use, copy, modify, and distribute this software for any
5 d3a08f4d 2021-01-17 op * purpose with or without fee is hereby granted, provided that the above
6 d3a08f4d 2021-01-17 op * copyright notice and this permission notice appear in all copies.
7 d3a08f4d 2021-01-17 op *
8 d3a08f4d 2021-01-17 op * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 d3a08f4d 2021-01-17 op * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 d3a08f4d 2021-01-17 op * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 d3a08f4d 2021-01-17 op * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 d3a08f4d 2021-01-17 op * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 d3a08f4d 2021-01-17 op * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 d3a08f4d 2021-01-17 op * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 d3a08f4d 2021-01-17 op */
16 52418c8d 2021-02-12 op
17 52418c8d 2021-02-12 op #include "gmid.h"
18 d3a08f4d 2021-01-17 op
19 d3a08f4d 2021-01-17 op #include <sys/stat.h>
20 d29a2ee2 2022-09-06 op #include <sys/un.h>
21 d3a08f4d 2021-01-17 op
22 d3a08f4d 2021-01-17 op #include <assert.h>
23 efe7d180 2021-10-02 op #include <ctype.h>
24 d3a08f4d 2021-01-17 op #include <errno.h>
25 abc007d2 2021-02-08 op #include <event.h>
26 d3a08f4d 2021-01-17 op #include <fcntl.h>
27 b4d409cf 2021-01-21 op #include <fnmatch.h>
28 2fafa2d2 2021-02-01 op #include <limits.h>
29 d3a08f4d 2021-01-17 op #include <string.h>
30 090b8a89 2021-07-06 op
31 df5058c9 2023-06-05 op #include "log.h"
32 df5058c9 2023-06-05 op
33 efe7d180 2021-10-02 op #define MIN(a, b) ((a) < (b) ? (a) : (b))
34 efe7d180 2021-10-02 op
35 090b8a89 2021-07-06 op int shutting_down;
36 d3a08f4d 2021-01-17 op
37 bc99d868 2021-03-19 op static struct tls *ctx;
38 abc007d2 2021-02-08 op
39 bc99d868 2021-03-19 op static struct event e4, e6, imsgev, siginfo, sigusr2;
40 6b191ed5 2021-02-23 op static int has_ipv6, has_siginfo;
41 abc007d2 2021-02-08 op
42 d3a08f4d 2021-01-17 op int connected_clients;
43 d3a08f4d 2021-01-17 op
44 49b73ba1 2021-02-10 op static inline int matches(const char*, const char*);
45 49b73ba1 2021-02-10 op
46 fe406389 2021-02-02 op static int check_path(struct client*, const char*, int*);
47 abc007d2 2021-02-08 op static void open_file(struct client*);
48 abc007d2 2021-02-08 op static void handle_handshake(int, short, void*);
49 91b9f2a8 2021-05-15 op static const char *strip_path(const char*, int);
50 57ec3e77 2021-02-08 op static void fmt_sbuf(const char*, struct client*, const char*);
51 abc007d2 2021-02-08 op static int apply_block_return(struct client*);
52 d474a979 2022-01-04 op static int check_matching_certificate(X509_STORE *, struct client *);
53 72b033ef 2021-12-29 op static int apply_reverse_proxy(struct client *);
54 efe7d180 2021-10-02 op static int apply_fastcgi(struct client*);
55 02be96c6 2021-02-09 op static int apply_require_ca(struct client*);
56 abc007d2 2021-02-08 op static void open_dir(struct client*);
57 abc007d2 2021-02-08 op static void redirect_canonical_dir(struct client*);
58 efe7d180 2021-10-02 op
59 efe7d180 2021-10-02 op static void client_tls_readcb(int, short, void *);
60 efe7d180 2021-10-02 op static void client_tls_writecb(int, short, void *);
61 efe7d180 2021-10-02 op
62 efe7d180 2021-10-02 op static void client_read(struct bufferevent *, void *);
63 efe7d180 2021-10-02 op void client_write(struct bufferevent *, void *);
64 efe7d180 2021-10-02 op static void client_error(struct bufferevent *, short, void *);
65 efe7d180 2021-10-02 op
66 efe7d180 2021-10-02 op static void client_close_ev(int, short, void *);
67 efe7d180 2021-10-02 op
68 abc007d2 2021-02-08 op static void do_accept(int, short, void*);
69 efe7d180 2021-10-02 op
70 efe7d180 2021-10-02 op static void handle_dispatch_imsg(int, short, void *);
71 bc99d868 2021-03-19 op static void handle_siginfo(int, short, void*);
72 bc99d868 2021-03-19 op
73 207b3e80 2021-10-07 op static uint32_t server_client_id;
74 207b3e80 2021-10-07 op
75 207b3e80 2021-10-07 op struct client_tree_id clients;
76 fe406389 2021-02-02 op
77 49b73ba1 2021-02-10 op static inline int
78 49b73ba1 2021-02-10 op matches(const char *pattern, const char *path)
79 49b73ba1 2021-02-10 op {
80 49b73ba1 2021-02-10 op if (*path == '/')
81 49b73ba1 2021-02-10 op path++;
82 49b73ba1 2021-02-10 op return !fnmatch(pattern, path, 0);
83 abc007d2 2021-02-08 op }
84 abc007d2 2021-02-08 op
85 c8b74339 2021-01-24 op const char *
86 c8b74339 2021-01-24 op vhost_lang(struct vhost *v, const char *path)
87 c8b74339 2021-01-24 op {
88 c8b74339 2021-01-24 op struct location *loc;
89 c8b74339 2021-01-24 op
90 caad0308 2021-01-27 op if (v == NULL || path == NULL)
91 6016a593 2021-01-30 op return NULL;
92 8443bff7 2021-01-25 op
93 b8e64ccd 2021-03-31 op loc = TAILQ_FIRST(&v->locations);
94 b8e64ccd 2021-03-31 op while ((loc = TAILQ_NEXT(loc, locations)) != NULL) {
95 534afd0d 2022-10-05 op if (*loc->lang != '\0') {
96 49b73ba1 2021-02-10 op if (matches(loc->match, path))
97 6016a593 2021-01-30 op return loc->lang;
98 c8b74339 2021-01-24 op }
99 c8b74339 2021-01-24 op }
100 c8b74339 2021-01-24 op
101 534afd0d 2022-10-05 op loc = TAILQ_FIRST(&v->locations);
102 534afd0d 2022-10-05 op if (*loc->lang == '\0')
103 534afd0d 2022-10-05 op return NULL;
104 534afd0d 2022-10-05 op return loc->lang;
105 c8b74339 2021-01-24 op }
106 c8b74339 2021-01-24 op
107 c8b74339 2021-01-24 op const char *
108 c8b74339 2021-01-24 op vhost_default_mime(struct vhost *v, const char *path)
109 c8b74339 2021-01-24 op {
110 c8b74339 2021-01-24 op struct location *loc;
111 c8b74339 2021-01-24 op const char *default_mime = "application/octet-stream";
112 caad0308 2021-01-27 op
113 caad0308 2021-01-27 op if (v == NULL || path == NULL)
114 caad0308 2021-01-27 op return default_mime;
115 c8b74339 2021-01-24 op
116 b8e64ccd 2021-03-31 op loc = TAILQ_FIRST(&v->locations);
117 b8e64ccd 2021-03-31 op while ((loc = TAILQ_NEXT(loc, locations)) != NULL) {
118 534afd0d 2022-10-05 op if (*loc->default_mime != '\0') {
119 49b73ba1 2021-02-10 op if (matches(loc->match, path))
120 6016a593 2021-01-30 op return loc->default_mime;
121 c8b74339 2021-01-24 op }
122 c8b74339 2021-01-24 op }
123 c8b74339 2021-01-24 op
124 b8e64ccd 2021-03-31 op loc = TAILQ_FIRST(&v->locations);
125 534afd0d 2022-10-05 op if (*loc->default_mime != '\0')
126 b8e64ccd 2021-03-31 op return loc->default_mime;
127 c8b74339 2021-01-24 op return default_mime;
128 c8b74339 2021-01-24 op }
129 c8b74339 2021-01-24 op
130 c8b74339 2021-01-24 op const char *
131 c8b74339 2021-01-24 op vhost_index(struct vhost *v, const char *path)
132 c8b74339 2021-01-24 op {
133 c8b74339 2021-01-24 op struct location *loc;
134 c8b74339 2021-01-24 op const char *index = "index.gmi";
135 c8b74339 2021-01-24 op
136 caad0308 2021-01-27 op if (v == NULL || path == NULL)
137 caad0308 2021-01-27 op return index;
138 caad0308 2021-01-27 op
139 b8e64ccd 2021-03-31 op loc = TAILQ_FIRST(&v->locations);
140 b8e64ccd 2021-03-31 op while ((loc = TAILQ_NEXT(loc, locations)) != NULL) {
141 534afd0d 2022-10-05 op if (*loc->index != '\0') {
142 49b73ba1 2021-02-10 op if (matches(loc->match, path))
143 6016a593 2021-01-30 op return loc->index;
144 c8b74339 2021-01-24 op }
145 c8b74339 2021-01-24 op }
146 c8b74339 2021-01-24 op
147 b8e64ccd 2021-03-31 op loc = TAILQ_FIRST(&v->locations);
148 534afd0d 2022-10-05 op if (*loc->index != '\0')
149 b8e64ccd 2021-03-31 op return loc->index;
150 c8b74339 2021-01-24 op return index;
151 c8b74339 2021-01-24 op }
152 c8b74339 2021-01-24 op
153 d3a08f4d 2021-01-17 op int
154 252908e6 2021-01-24 op vhost_auto_index(struct vhost *v, const char *path)
155 252908e6 2021-01-24 op {
156 252908e6 2021-01-24 op struct location *loc;
157 252908e6 2021-01-24 op
158 6016a593 2021-01-30 op if (v == NULL || path == NULL)
159 6016a593 2021-01-30 op return 0;
160 6016a593 2021-01-30 op
161 b8e64ccd 2021-03-31 op loc = TAILQ_FIRST(&v->locations);
162 b8e64ccd 2021-03-31 op while ((loc = TAILQ_NEXT(loc, locations)) != NULL) {
163 cd761624 2021-02-06 op if (loc->auto_index != 0) {
164 49b73ba1 2021-02-10 op if (matches(loc->match, path))
165 6016a593 2021-01-30 op return loc->auto_index == 1;
166 252908e6 2021-01-24 op }
167 252908e6 2021-01-24 op }
168 252908e6 2021-01-24 op
169 b8e64ccd 2021-03-31 op loc = TAILQ_FIRST(&v->locations);
170 b8e64ccd 2021-03-31 op return loc->auto_index == 1;
171 6abda252 2021-02-06 op }
172 6abda252 2021-02-06 op
173 6abda252 2021-02-06 op int
174 6abda252 2021-02-06 op vhost_block_return(struct vhost *v, const char *path, int *code, const char **fmt)
175 6abda252 2021-02-06 op {
176 6abda252 2021-02-06 op struct location *loc;
177 6abda252 2021-02-06 op
178 6abda252 2021-02-06 op if (v == NULL || path == NULL)
179 6abda252 2021-02-06 op return 0;
180 6abda252 2021-02-06 op
181 b8e64ccd 2021-03-31 op loc = TAILQ_FIRST(&v->locations);
182 b8e64ccd 2021-03-31 op while ((loc = TAILQ_NEXT(loc, locations)) != NULL) {
183 cd761624 2021-02-06 op if (loc->block_code != 0) {
184 49b73ba1 2021-02-10 op if (matches(loc->match, path)) {
185 6abda252 2021-02-06 op *code = loc->block_code;
186 6abda252 2021-02-06 op *fmt = loc->block_fmt;
187 6abda252 2021-02-06 op return 1;
188 6abda252 2021-02-06 op }
189 6abda252 2021-02-06 op }
190 6abda252 2021-02-06 op }
191 6abda252 2021-02-06 op
192 b8e64ccd 2021-03-31 op loc = TAILQ_FIRST(&v->locations);
193 b8e64ccd 2021-03-31 op *code = loc->block_code;
194 b8e64ccd 2021-03-31 op *fmt = loc->block_fmt;
195 b8e64ccd 2021-03-31 op return loc->block_code != 0;
196 72b033ef 2021-12-29 op }
197 72b033ef 2021-12-29 op
198 6abda252 2021-02-06 op int
199 8ad1c570 2021-05-09 op vhost_fastcgi(struct vhost *v, const char *path)
200 8ad1c570 2021-05-09 op {
201 8ad1c570 2021-05-09 op struct location *loc;
202 8ad1c570 2021-05-09 op
203 8ad1c570 2021-05-09 op if (v == NULL || path == NULL)
204 8ad1c570 2021-05-09 op return -1;
205 8ad1c570 2021-05-09 op
206 8ad1c570 2021-05-09 op loc = TAILQ_FIRST(&v->locations);
207 8ad1c570 2021-05-09 op while ((loc = TAILQ_NEXT(loc, locations)) != NULL) {
208 8ad1c570 2021-05-09 op if (loc->fcgi != -1)
209 8ad1c570 2021-05-09 op if (matches(loc->match, path))
210 8ad1c570 2021-05-09 op return loc->fcgi;
211 8ad1c570 2021-05-09 op }
212 8ad1c570 2021-05-09 op
213 8ad1c570 2021-05-09 op loc = TAILQ_FIRST(&v->locations);
214 8ad1c570 2021-05-09 op return loc->fcgi;
215 8ad1c570 2021-05-09 op }
216 8ad1c570 2021-05-09 op
217 8ad1c570 2021-05-09 op int
218 1feaf2a6 2021-05-15 op vhost_dirfd(struct vhost *v, const char *path, size_t *retloc)
219 fdea6aa0 2021-04-30 op {
220 fdea6aa0 2021-04-30 op struct location *loc;
221 1feaf2a6 2021-05-15 op size_t l = 0;
222 fdea6aa0 2021-04-30 op
223 fdea6aa0 2021-04-30 op if (v == NULL || path == NULL)
224 fdea6aa0 2021-04-30 op return -1;
225 fdea6aa0 2021-04-30 op
226 fdea6aa0 2021-04-30 op loc = TAILQ_FIRST(&v->locations);
227 fdea6aa0 2021-04-30 op while ((loc = TAILQ_NEXT(loc, locations)) != NULL) {
228 1feaf2a6 2021-05-15 op l++;
229 fdea6aa0 2021-04-30 op if (loc->dirfd != -1)
230 1feaf2a6 2021-05-15 op if (matches(loc->match, path)) {
231 1feaf2a6 2021-05-15 op *retloc = l;
232 fdea6aa0 2021-04-30 op return loc->dirfd;
233 1feaf2a6 2021-05-15 op }
234 fdea6aa0 2021-04-30 op }
235 fdea6aa0 2021-04-30 op
236 1feaf2a6 2021-05-15 op *retloc = 0;
237 fdea6aa0 2021-04-30 op loc = TAILQ_FIRST(&v->locations);
238 fdea6aa0 2021-04-30 op return loc->dirfd;
239 fdea6aa0 2021-04-30 op }
240 fdea6aa0 2021-04-30 op
241 fdea6aa0 2021-04-30 op int
242 6abda252 2021-02-06 op vhost_strip(struct vhost *v, const char *path)
243 6abda252 2021-02-06 op {
244 6abda252 2021-02-06 op struct location *loc;
245 6abda252 2021-02-06 op
246 6abda252 2021-02-06 op if (v == NULL || path == NULL)
247 6abda252 2021-02-06 op return 0;
248 6abda252 2021-02-06 op
249 b8e64ccd 2021-03-31 op loc = TAILQ_FIRST(&v->locations);
250 b8e64ccd 2021-03-31 op while ((loc = TAILQ_NEXT(loc, locations)) != NULL) {
251 cd761624 2021-02-06 op if (loc->strip != 0) {
252 49b73ba1 2021-02-10 op if (matches(loc->match, path))
253 6abda252 2021-02-06 op return loc->strip;
254 6abda252 2021-02-06 op }
255 6abda252 2021-02-06 op }
256 6abda252 2021-02-06 op
257 b8e64ccd 2021-03-31 op loc = TAILQ_FIRST(&v->locations);
258 b8e64ccd 2021-03-31 op return loc->strip;
259 252908e6 2021-01-24 op }
260 252908e6 2021-01-24 op
261 02be96c6 2021-02-09 op X509_STORE *
262 02be96c6 2021-02-09 op vhost_require_ca(struct vhost *v, const char *path)
263 02be96c6 2021-02-09 op {
264 02be96c6 2021-02-09 op struct location *loc;
265 02be96c6 2021-02-09 op
266 02be96c6 2021-02-09 op if (v == NULL || path == NULL)
267 02be96c6 2021-02-09 op return NULL;
268 02be96c6 2021-02-09 op
269 b8e64ccd 2021-03-31 op loc = TAILQ_FIRST(&v->locations);
270 b8e64ccd 2021-03-31 op while ((loc = TAILQ_NEXT(loc, locations)) != NULL) {
271 02be96c6 2021-02-09 op if (loc->reqca != NULL) {
272 49b73ba1 2021-02-10 op if (matches(loc->match, path))
273 02be96c6 2021-02-09 op return loc->reqca;
274 02be96c6 2021-02-09 op }
275 02be96c6 2021-02-09 op }
276 02be96c6 2021-02-09 op
277 b8e64ccd 2021-03-31 op loc = TAILQ_FIRST(&v->locations);
278 b8e64ccd 2021-03-31 op return loc->reqca;
279 793835cb 2021-02-23 op }
280 793835cb 2021-02-23 op
281 793835cb 2021-02-23 op int
282 793835cb 2021-02-23 op vhost_disable_log(struct vhost *v, const char *path)
283 793835cb 2021-02-23 op {
284 793835cb 2021-02-23 op struct location *loc;
285 793835cb 2021-02-23 op
286 793835cb 2021-02-23 op if (v == NULL || path == NULL)
287 793835cb 2021-02-23 op return 0;
288 793835cb 2021-02-23 op
289 b8e64ccd 2021-03-31 op loc = TAILQ_FIRST(&v->locations);
290 b8e64ccd 2021-03-31 op while ((loc = TAILQ_NEXT(loc, locations)) != NULL) {
291 793835cb 2021-02-23 op if (loc->disable_log && matches(loc->match, path))
292 793835cb 2021-02-23 op return 1;
293 793835cb 2021-02-23 op }
294 793835cb 2021-02-23 op
295 b8e64ccd 2021-03-31 op loc = TAILQ_FIRST(&v->locations);
296 b8e64ccd 2021-03-31 op return loc->disable_log;
297 02be96c6 2021-02-09 op }
298 02be96c6 2021-02-09 op
299 fe406389 2021-02-02 op static int
300 d3a08f4d 2021-01-17 op check_path(struct client *c, const char *path, int *fd)
301 d3a08f4d 2021-01-17 op {
302 d3a08f4d 2021-01-17 op struct stat sb;
303 d1ca3911 2021-01-21 op const char *p;
304 efb48052 2021-07-27 op int dirfd, strip;
305 d3a08f4d 2021-01-17 op
306 d3a08f4d 2021-01-17 op assert(path != NULL);
307 d1ca3911 2021-01-21 op
308 fdea6aa0 2021-04-30 op /*
309 fdea6aa0 2021-04-30 op * in send_dir we add an initial / (to be redirect-friendly),
310 fdea6aa0 2021-04-30 op * but here we want to skip it
311 fdea6aa0 2021-04-30 op */
312 fdea6aa0 2021-04-30 op if (*path == '/')
313 fdea6aa0 2021-04-30 op path++;
314 fdea6aa0 2021-04-30 op
315 fdea6aa0 2021-04-30 op strip = vhost_strip(c->host, path);
316 fdea6aa0 2021-04-30 op p = strip_path(path, strip);
317 fdea6aa0 2021-04-30 op
318 fdea6aa0 2021-04-30 op if (*p == '/')
319 fdea6aa0 2021-04-30 op p = p+1;
320 fdea6aa0 2021-04-30 op if (*p == '\0')
321 d1ca3911 2021-01-21 op p = ".";
322 d1ca3911 2021-01-21 op
323 1feaf2a6 2021-05-15 op dirfd = vhost_dirfd(c->host, path, &c->loc);
324 fdea6aa0 2021-04-30 op log_debug(c, "check_path: strip=%d path=%s original=%s",
325 fdea6aa0 2021-04-30 op strip, p, path);
326 3bd4a6de 2022-07-04 op if (*fd == -1 && (*fd = openat(dirfd, p, O_RDONLY)) == -1) {
327 3bd4a6de 2022-07-04 op if (errno == EACCES)
328 3bd4a6de 2022-07-04 op log_info(c, "can't open %s: %s", p, strerror(errno));
329 d3a08f4d 2021-01-17 op return FILE_MISSING;
330 3bd4a6de 2022-07-04 op }
331 d3a08f4d 2021-01-17 op
332 d3a08f4d 2021-01-17 op if (fstat(*fd, &sb) == -1) {
333 3abf91b0 2021-02-07 op log_notice(c, "failed stat for %s: %s", path, strerror(errno));
334 d3a08f4d 2021-01-17 op return FILE_MISSING;
335 d3a08f4d 2021-01-17 op }
336 d3a08f4d 2021-01-17 op
337 d3a08f4d 2021-01-17 op if (S_ISDIR(sb.st_mode))
338 d3a08f4d 2021-01-17 op return FILE_DIRECTORY;
339 d3a08f4d 2021-01-17 op
340 d3a08f4d 2021-01-17 op return FILE_EXISTS;
341 d3a08f4d 2021-01-17 op }
342 d3a08f4d 2021-01-17 op
343 fe406389 2021-02-02 op static void
344 abc007d2 2021-02-08 op open_file(struct client *c)
345 d3a08f4d 2021-01-17 op {
346 abc007d2 2021-02-08 op switch (check_path(c, c->iri.path, &c->pfd)) {
347 d3a08f4d 2021-01-17 op case FILE_EXISTS:
348 efe7d180 2021-10-02 op c->type = REQUEST_FILE;
349 27b2fa9a 2021-02-12 op start_reply(c, SUCCESS, mime(c->host, c->iri.path));
350 07b0a142 2021-01-24 op return;
351 d3a08f4d 2021-01-17 op
352 d3a08f4d 2021-01-17 op case FILE_DIRECTORY:
353 abc007d2 2021-02-08 op open_dir(c);
354 07b0a142 2021-01-24 op return;
355 d3a08f4d 2021-01-17 op
356 d3a08f4d 2021-01-17 op case FILE_MISSING:
357 abc007d2 2021-02-08 op start_reply(c, NOT_FOUND, "not found");
358 07b0a142 2021-01-24 op return;
359 d3a08f4d 2021-01-17 op
360 d3a08f4d 2021-01-17 op default:
361 d3a08f4d 2021-01-17 op /* unreachable */
362 d3a08f4d 2021-01-17 op abort();
363 252908e6 2021-01-24 op }
364 252908e6 2021-01-24 op }
365 252908e6 2021-01-24 op
366 9b8f5ed2 2021-02-03 op void
367 9b8f5ed2 2021-02-03 op mark_nonblock(int fd)
368 9b8f5ed2 2021-02-03 op {
369 9b8f5ed2 2021-02-03 op int flags;
370 9b8f5ed2 2021-02-03 op
371 9b8f5ed2 2021-02-03 op if ((flags = fcntl(fd, F_GETFL)) == -1)
372 df5058c9 2023-06-05 op fatal("fcntl(F_GETFL)");
373 9b8f5ed2 2021-02-03 op if (fcntl(fd, F_SETFL, flags | O_NONBLOCK) == -1)
374 df5058c9 2023-06-05 op fatal("fcntl(F_SETFL)");
375 9b8f5ed2 2021-02-03 op }
376 9b8f5ed2 2021-02-03 op
377 fe406389 2021-02-02 op static void
378 abc007d2 2021-02-08 op handle_handshake(int fd, short ev, void *d)
379 d3a08f4d 2021-01-17 op {
380 abc007d2 2021-02-08 op struct client *c = d;
381 d3a08f4d 2021-01-17 op struct vhost *h;
382 cc8c2901 2021-04-29 op struct alist *a;
383 d3a08f4d 2021-01-17 op const char *servname;
384 a8d4a897 2021-01-29 op const char *parse_err = "unknown error";
385 d3a08f4d 2021-01-17 op
386 d3a08f4d 2021-01-17 op switch (tls_handshake(c->ctx)) {
387 d3a08f4d 2021-01-17 op case 0: /* success */
388 d3a08f4d 2021-01-17 op case -1: /* already handshaked */
389 d3a08f4d 2021-01-17 op break;
390 d3a08f4d 2021-01-17 op case TLS_WANT_POLLIN:
391 efe7d180 2021-10-02 op event_once(c->fd, EV_READ, handle_handshake, c, NULL);
392 d3a08f4d 2021-01-17 op return;
393 d3a08f4d 2021-01-17 op case TLS_WANT_POLLOUT:
394 efe7d180 2021-10-02 op event_once(c->fd, EV_WRITE, handle_handshake, c, NULL);
395 d3a08f4d 2021-01-17 op return;
396 d3a08f4d 2021-01-17 op default:
397 d3a08f4d 2021-01-17 op /* unreachable */
398 d3a08f4d 2021-01-17 op abort();
399 d3a08f4d 2021-01-17 op }
400 80444938 2021-10-15 op
401 80444938 2021-10-15 op c->bev = bufferevent_new(fd, client_read, client_write,
402 80444938 2021-10-15 op client_error, c);
403 80444938 2021-10-15 op if (c->bev == NULL)
404 df5058c9 2023-06-05 op fatal("%s: failed to allocate client buffer", __func__);
405 d3a08f4d 2021-01-17 op
406 80444938 2021-10-15 op event_set(&c->bev->ev_read, c->fd, EV_READ,
407 80444938 2021-10-15 op client_tls_readcb, c->bev);
408 80444938 2021-10-15 op event_set(&c->bev->ev_write, c->fd, EV_WRITE,
409 80444938 2021-10-15 op client_tls_writecb, c->bev);
410 80444938 2021-10-15 op
411 80444938 2021-10-15 op #if HAVE_LIBEVENT2
412 80444938 2021-10-15 op evbuffer_unfreeze(c->bev->input, 0);
413 80444938 2021-10-15 op evbuffer_unfreeze(c->bev->output, 1);
414 80444938 2021-10-15 op #endif
415 80444938 2021-10-15 op
416 79288c8b 2021-09-24 op if ((servname = tls_conn_servername(c->ctx)) == NULL) {
417 79288c8b 2021-09-24 op log_debug(c, "handshake: missing SNI");
418 79288c8b 2021-09-24 op goto err;
419 79288c8b 2021-09-24 op }
420 79288c8b 2021-09-24 op
421 a8d4a897 2021-01-29 op if (!puny_decode(servname, c->domain, sizeof(c->domain), &parse_err)) {
422 3abf91b0 2021-02-07 op log_info(c, "puny_decode: %s", parse_err);
423 a8d4a897 2021-01-29 op goto err;
424 a8d4a897 2021-01-29 op }
425 d3a08f4d 2021-01-17 op
426 b8e64ccd 2021-03-31 op TAILQ_FOREACH(h, &hosts, vhosts) {
427 eecad7a3 2021-02-12 op if (matches(h->domain, c->domain))
428 cc8c2901 2021-04-29 op goto found;
429 cc8c2901 2021-04-29 op TAILQ_FOREACH(a, &h->aliases, aliases) {
430 cc8c2901 2021-04-29 op if (matches(a->alias, c->domain))
431 cc8c2901 2021-04-29 op goto found;
432 cc8c2901 2021-04-29 op }
433 d3a08f4d 2021-01-17 op }
434 d3a08f4d 2021-01-17 op
435 cc8c2901 2021-04-29 op found:
436 3abf91b0 2021-02-07 op log_debug(c, "handshake: SNI: \"%s\"; decoded: \"%s\"; matched: \"%s\"",
437 3abf91b0 2021-02-07 op servname != NULL ? servname : "(null)",
438 3abf91b0 2021-02-07 op c->domain,
439 b8e64ccd 2021-03-31 op h != NULL ? h->domain : "(null)");
440 22c6d633 2021-01-27 op
441 b8e64ccd 2021-03-31 op if (h != NULL) {
442 d3a08f4d 2021-01-17 op c->host = h;
443 efe7d180 2021-10-02 op bufferevent_enable(c->bev, EV_READ);
444 d3a08f4d 2021-01-17 op return;
445 d3a08f4d 2021-01-17 op }
446 d3a08f4d 2021-01-17 op
447 a8d4a897 2021-01-29 op err:
448 abc007d2 2021-02-08 op start_reply(c, BAD_REQUEST, "Wrong/malformed host or missing SNI");
449 6abda252 2021-02-06 op }
450 6abda252 2021-02-06 op
451 91b9f2a8 2021-05-15 op static const char *
452 91b9f2a8 2021-05-15 op strip_path(const char *path, int strip)
453 6abda252 2021-02-06 op {
454 57ec3e77 2021-02-08 op char *t;
455 6abda252 2021-02-06 op
456 6abda252 2021-02-06 op while (strip > 0) {
457 6abda252 2021-02-06 op if ((t = strchr(path, '/')) == NULL) {
458 6abda252 2021-02-06 op path = strchr(path, '\0');
459 6abda252 2021-02-06 op break;
460 6abda252 2021-02-06 op }
461 6abda252 2021-02-06 op path = t;
462 6abda252 2021-02-06 op strip--;
463 6abda252 2021-02-06 op }
464 57ec3e77 2021-02-08 op
465 57ec3e77 2021-02-08 op return path;
466 57ec3e77 2021-02-08 op }
467 57ec3e77 2021-02-08 op
468 57ec3e77 2021-02-08 op static void
469 57ec3e77 2021-02-08 op fmt_sbuf(const char *fmt, struct client *c, const char *path)
470 57ec3e77 2021-02-08 op {
471 57ec3e77 2021-02-08 op size_t i;
472 4842c72d 2021-10-18 op char buf[32];
473 6abda252 2021-02-06 op
474 6abda252 2021-02-06 op memset(buf, 0, sizeof(buf));
475 6abda252 2021-02-06 op for (i = 0; *fmt; ++fmt) {
476 6abda252 2021-02-06 op if (i == sizeof(buf)-1 || *fmt == '%') {
477 6abda252 2021-02-06 op strlcat(c->sbuf, buf, sizeof(c->sbuf));
478 6abda252 2021-02-06 op memset(buf, 0, sizeof(buf));
479 6abda252 2021-02-06 op i = 0;
480 6abda252 2021-02-06 op }
481 6abda252 2021-02-06 op
482 6abda252 2021-02-06 op if (*fmt != '%') {
483 6abda252 2021-02-06 op buf[i++] = *fmt;
484 6abda252 2021-02-06 op continue;
485 6abda252 2021-02-06 op }
486 6abda252 2021-02-06 op
487 6abda252 2021-02-06 op switch (*++fmt) {
488 6abda252 2021-02-06 op case '%':
489 6abda252 2021-02-06 op strlcat(c->sbuf, "%", sizeof(c->sbuf));
490 6abda252 2021-02-06 op break;
491 6abda252 2021-02-06 op case 'p':
492 737a6b50 2021-04-30 op if (*path != '/')
493 737a6b50 2021-04-30 op strlcat(c->sbuf, "/", sizeof(c->sbuf));
494 6abda252 2021-02-06 op strlcat(c->sbuf, path, sizeof(c->sbuf));
495 6abda252 2021-02-06 op break;
496 6abda252 2021-02-06 op case 'q':
497 6abda252 2021-02-06 op strlcat(c->sbuf, c->iri.query, sizeof(c->sbuf));
498 6abda252 2021-02-06 op break;
499 6abda252 2021-02-06 op case 'P':
500 6abda252 2021-02-06 op snprintf(buf, sizeof(buf), "%d", conf.port);
501 6abda252 2021-02-06 op strlcat(c->sbuf, buf, sizeof(c->sbuf));
502 6abda252 2021-02-06 op memset(buf, 0, sizeof(buf));
503 6abda252 2021-02-06 op break;
504 6abda252 2021-02-06 op case 'N':
505 6abda252 2021-02-06 op strlcat(c->sbuf, c->domain, sizeof(c->sbuf));
506 6abda252 2021-02-06 op break;
507 6abda252 2021-02-06 op default:
508 df5058c9 2023-06-05 op fatalx("%s: unknown fmt specifier %c",
509 6abda252 2021-02-06 op __func__, *fmt);
510 6abda252 2021-02-06 op }
511 6abda252 2021-02-06 op }
512 6abda252 2021-02-06 op
513 6abda252 2021-02-06 op if (i != 0)
514 6abda252 2021-02-06 op strlcat(c->sbuf, buf, sizeof(c->sbuf));
515 57ec3e77 2021-02-08 op }
516 6abda252 2021-02-06 op
517 57ec3e77 2021-02-08 op /* 1 if a matching `block return' (and apply it), 0 otherwise */
518 57ec3e77 2021-02-08 op static int
519 57ec3e77 2021-02-08 op apply_block_return(struct client *c)
520 57ec3e77 2021-02-08 op {
521 57ec3e77 2021-02-08 op const char *fmt, *path;
522 57ec3e77 2021-02-08 op int code;
523 57ec3e77 2021-02-08 op
524 57ec3e77 2021-02-08 op if (!vhost_block_return(c->host, c->iri.path, &code, &fmt))
525 57ec3e77 2021-02-08 op return 0;
526 57ec3e77 2021-02-08 op
527 57ec3e77 2021-02-08 op path = strip_path(c->iri.path, vhost_strip(c->host, c->iri.path));
528 57ec3e77 2021-02-08 op fmt_sbuf(fmt, c, path);
529 57ec3e77 2021-02-08 op
530 abc007d2 2021-02-08 op start_reply(c, code, c->sbuf);
531 72b033ef 2021-12-29 op return 1;
532 b7967bc1 2021-01-02 op }
533 b7967bc1 2021-01-02 op
534 b7967bc1 2021-01-02 op static struct proxy *
535 b7967bc1 2021-01-02 op matched_proxy(struct client *c)
536 b7967bc1 2021-01-02 op {
537 b7967bc1 2021-01-02 op struct proxy *p;
538 b7967bc1 2021-01-02 op const char *proto;
539 b7967bc1 2021-01-02 op const char *host;
540 b7967bc1 2021-01-02 op const char *port;
541 b7967bc1 2021-01-02 op
542 b7967bc1 2021-01-02 op TAILQ_FOREACH(p, &c->host->proxies, proxies) {
543 534afd0d 2022-10-05 op if (*(proto = p->match_proto) == '\0')
544 b7967bc1 2021-01-02 op proto = "gemini";
545 534afd0d 2022-10-05 op if (*(host = p->match_host) == '\0')
546 b7967bc1 2021-01-02 op host = "*";
547 534afd0d 2022-10-05 op if (*(port = p->match_port) == '\0')
548 b7967bc1 2021-01-02 op port = "*";
549 b7967bc1 2021-01-02 op
550 b7967bc1 2021-01-02 op if (matches(proto, c->iri.schema) &&
551 b7967bc1 2021-01-02 op matches(host, c->domain) &&
552 b7967bc1 2021-01-02 op matches(port, c->iri.port))
553 b7967bc1 2021-01-02 op return p;
554 b7967bc1 2021-01-02 op }
555 b7967bc1 2021-01-02 op
556 b7967bc1 2021-01-02 op return NULL;
557 ba94a608 2022-01-04 op }
558 ba94a608 2022-01-04 op
559 ba94a608 2022-01-04 op static int
560 ba94a608 2022-01-04 op check_matching_certificate(X509_STORE *store, struct client *c)
561 ba94a608 2022-01-04 op {
562 ba94a608 2022-01-04 op const uint8_t *cert;
563 ba94a608 2022-01-04 op size_t len;
564 ba94a608 2022-01-04 op
565 ba94a608 2022-01-04 op if (!tls_peer_cert_provided(c->ctx)) {
566 ba94a608 2022-01-04 op start_reply(c, CLIENT_CERT_REQ, "client certificate required");
567 ba94a608 2022-01-04 op return 1;
568 ba94a608 2022-01-04 op }
569 ba94a608 2022-01-04 op
570 ba94a608 2022-01-04 op cert = tls_peer_cert_chain_pem(c->ctx, &len);
571 ba94a608 2022-01-04 op if (!validate_against_ca(store, cert, len)) {
572 ba94a608 2022-01-04 op start_reply(c, CERT_NOT_AUTH, "certificate not authorised");
573 ba94a608 2022-01-04 op return 1;
574 ba94a608 2022-01-04 op }
575 ba94a608 2022-01-04 op
576 ba94a608 2022-01-04 op return 0;
577 72b033ef 2021-12-29 op }
578 72b033ef 2021-12-29 op
579 d29a2ee2 2022-09-06 op static int
580 d29a2ee2 2022-09-06 op proxy_socket(struct client *c, const char *host, const char *port)
581 d29a2ee2 2022-09-06 op {
582 d29a2ee2 2022-09-06 op struct addrinfo hints, *res, *res0;
583 d29a2ee2 2022-09-06 op int r, sock;
584 d29a2ee2 2022-09-06 op
585 d29a2ee2 2022-09-06 op memset(&hints, 0, sizeof(hints));
586 d29a2ee2 2022-09-06 op hints.ai_family = AF_UNSPEC;
587 d29a2ee2 2022-09-06 op hints.ai_socktype = SOCK_STREAM;
588 d29a2ee2 2022-09-06 op
589 d29a2ee2 2022-09-06 op /* XXX: asr_run? :> */
590 d29a2ee2 2022-09-06 op r = getaddrinfo(host, port, &hints, &res0);
591 d29a2ee2 2022-09-06 op if (r != 0) {
592 d29a2ee2 2022-09-06 op log_warn(c, "getaddrinfo(\"%s\", \"%s\"): %s",
593 d29a2ee2 2022-09-06 op host, port, gai_strerror(r));
594 d29a2ee2 2022-09-06 op return -1;
595 d29a2ee2 2022-09-06 op }
596 d29a2ee2 2022-09-06 op
597 d29a2ee2 2022-09-06 op for (res = res0; res; res = res->ai_next) {
598 d29a2ee2 2022-09-06 op sock = socket(res->ai_family, res->ai_socktype,
599 d29a2ee2 2022-09-06 op res->ai_protocol);
600 d29a2ee2 2022-09-06 op if (sock == -1)
601 d29a2ee2 2022-09-06 op continue;
602 d29a2ee2 2022-09-06 op
603 d29a2ee2 2022-09-06 op if (connect(sock, res->ai_addr, res->ai_addrlen) == -1) {
604 d29a2ee2 2022-09-06 op close(sock);
605 d29a2ee2 2022-09-06 op sock = -1;
606 d29a2ee2 2022-09-06 op continue;
607 d29a2ee2 2022-09-06 op }
608 d29a2ee2 2022-09-06 op
609 d29a2ee2 2022-09-06 op break;
610 d29a2ee2 2022-09-06 op }
611 d29a2ee2 2022-09-06 op
612 d29a2ee2 2022-09-06 op freeaddrinfo(res0);
613 d29a2ee2 2022-09-06 op
614 d29a2ee2 2022-09-06 op if (sock == -1)
615 d29a2ee2 2022-09-06 op log_warn(c, "can't connect to %s:%s", host, port);
616 d29a2ee2 2022-09-06 op
617 d29a2ee2 2022-09-06 op return sock;
618 d29a2ee2 2022-09-06 op }
619 d29a2ee2 2022-09-06 op
620 72b033ef 2021-12-29 op /* 1 if matching a proxy relay-to (and apply it), 0 otherwise */
621 72b033ef 2021-12-29 op static int
622 72b033ef 2021-12-29 op apply_reverse_proxy(struct client *c)
623 72b033ef 2021-12-29 op {
624 7bdcc91e 2021-01-01 op struct proxy *p;
625 72b033ef 2021-12-29 op
626 b7967bc1 2021-01-02 op if ((p = matched_proxy(c)) == NULL)
627 72b033ef 2021-12-29 op return 0;
628 d49093c1 2021-01-01 op
629 b7967bc1 2021-01-02 op c->proxy = p;
630 b7967bc1 2021-01-02 op
631 ba94a608 2022-01-04 op if (p->reqca != NULL && check_matching_certificate(p->reqca, c))
632 ba94a608 2022-01-04 op return 1;
633 ba94a608 2022-01-04 op
634 72b033ef 2021-12-29 op log_debug(c, "opening proxy connection for %s:%s",
635 7bdcc91e 2021-01-01 op p->host, p->port);
636 7bdcc91e 2021-01-01 op
637 d29a2ee2 2022-09-06 op if ((c->pfd = proxy_socket(c, p->host, p->port)) == -1) {
638 d29a2ee2 2022-09-06 op start_reply(c, PROXY_ERROR, "proxy error");
639 d29a2ee2 2022-09-06 op return 1;
640 d29a2ee2 2022-09-06 op }
641 72b033ef 2021-12-29 op
642 d29a2ee2 2022-09-06 op mark_nonblock(c->pfd);
643 d29a2ee2 2022-09-06 op if (proxy_init(c) == -1)
644 d29a2ee2 2022-09-06 op start_reply(c, PROXY_ERROR, "proxy error");
645 72b033ef 2021-12-29 op
646 8ad1c570 2021-05-09 op return 1;
647 8ad1c570 2021-05-09 op }
648 8ad1c570 2021-05-09 op
649 d29a2ee2 2022-09-06 op static int
650 d29a2ee2 2022-09-06 op fcgi_open_sock(struct fcgi *f)
651 d29a2ee2 2022-09-06 op {
652 d29a2ee2 2022-09-06 op struct sockaddr_un addr;
653 d29a2ee2 2022-09-06 op int fd;
654 d29a2ee2 2022-09-06 op
655 d29a2ee2 2022-09-06 op if ((fd = socket(AF_UNIX, SOCK_STREAM, 0)) == -1) {
656 d29a2ee2 2022-09-06 op log_err(NULL, "socket: %s", strerror(errno));
657 d29a2ee2 2022-09-06 op return -1;
658 d29a2ee2 2022-09-06 op }
659 d29a2ee2 2022-09-06 op
660 d29a2ee2 2022-09-06 op memset(&addr, 0, sizeof(addr));
661 d29a2ee2 2022-09-06 op addr.sun_family = AF_UNIX;
662 d29a2ee2 2022-09-06 op strlcpy(addr.sun_path, f->path, sizeof(addr.sun_path));
663 d29a2ee2 2022-09-06 op
664 d29a2ee2 2022-09-06 op if (connect(fd, (struct sockaddr*)&addr, sizeof(addr)) == -1) {
665 d29a2ee2 2022-09-06 op log_warn(NULL, "failed to connect to %s: %s", f->path,
666 d29a2ee2 2022-09-06 op strerror(errno));
667 d29a2ee2 2022-09-06 op close(fd);
668 d29a2ee2 2022-09-06 op return -1;
669 d29a2ee2 2022-09-06 op }
670 d29a2ee2 2022-09-06 op
671 d29a2ee2 2022-09-06 op return fd;
672 d29a2ee2 2022-09-06 op }
673 d29a2ee2 2022-09-06 op
674 d29a2ee2 2022-09-06 op static int
675 d29a2ee2 2022-09-06 op fcgi_open_conn(struct fcgi *f)
676 d29a2ee2 2022-09-06 op {
677 d29a2ee2 2022-09-06 op struct addrinfo hints, *servinfo, *p;
678 d29a2ee2 2022-09-06 op int r, sock;
679 d29a2ee2 2022-09-06 op
680 d29a2ee2 2022-09-06 op memset(&hints, 0, sizeof(hints));
681 d29a2ee2 2022-09-06 op hints.ai_family = AF_UNSPEC;
682 d29a2ee2 2022-09-06 op hints.ai_socktype = SOCK_STREAM;
683 d29a2ee2 2022-09-06 op hints.ai_flags = AI_ADDRCONFIG;
684 d29a2ee2 2022-09-06 op
685 d29a2ee2 2022-09-06 op if ((r = getaddrinfo(f->path, f->port, &hints, &servinfo)) != 0) {
686 d29a2ee2 2022-09-06 op log_warn(NULL, "getaddrinfo %s:%s: %s", f->path, f->port,
687 d29a2ee2 2022-09-06 op gai_strerror(r));
688 d29a2ee2 2022-09-06 op return -1;
689 d29a2ee2 2022-09-06 op }
690 d29a2ee2 2022-09-06 op
691 d29a2ee2 2022-09-06 op for (p = servinfo; p != NULL; p = p->ai_next) {
692 d29a2ee2 2022-09-06 op sock = socket(p->ai_family, p->ai_socktype, p->ai_protocol);
693 d29a2ee2 2022-09-06 op if (sock == -1)
694 d29a2ee2 2022-09-06 op continue;
695 d29a2ee2 2022-09-06 op if (connect(sock, p->ai_addr, p->ai_addrlen) == -1) {
696 d29a2ee2 2022-09-06 op close(sock);
697 d29a2ee2 2022-09-06 op continue;
698 d29a2ee2 2022-09-06 op }
699 d29a2ee2 2022-09-06 op break;
700 d29a2ee2 2022-09-06 op }
701 d29a2ee2 2022-09-06 op
702 d29a2ee2 2022-09-06 op if (p == NULL) {
703 d29a2ee2 2022-09-06 op log_warn(NULL, "couldn't connect to %s:%s", f->path, f->port);
704 d29a2ee2 2022-09-06 op sock = -1;
705 d29a2ee2 2022-09-06 op }
706 d29a2ee2 2022-09-06 op
707 d29a2ee2 2022-09-06 op freeaddrinfo(servinfo);
708 d29a2ee2 2022-09-06 op return sock;
709 d29a2ee2 2022-09-06 op }
710 d29a2ee2 2022-09-06 op
711 8ad1c570 2021-05-09 op /* 1 if matching `fcgi' (and apply it), 0 otherwise */
712 8ad1c570 2021-05-09 op static int
713 8ad1c570 2021-05-09 op apply_fastcgi(struct client *c)
714 8ad1c570 2021-05-09 op {
715 8ad1c570 2021-05-09 op int id;
716 8ad1c570 2021-05-09 op struct fcgi *f;
717 8ad1c570 2021-05-09 op
718 8ad1c570 2021-05-09 op if ((id = vhost_fastcgi(c->host, c->iri.path)) == -1)
719 8ad1c570 2021-05-09 op return 0;
720 8ad1c570 2021-05-09 op
721 4cd25209 2021-10-07 op f = &fcgi[id];
722 4cd25209 2021-10-07 op
723 d29a2ee2 2022-09-06 op log_debug(c, "opening fastcgi connection for (%s,%s)",
724 d29a2ee2 2022-09-06 op f->path, f->port);
725 8ad1c570 2021-05-09 op
726 eb4f96c1 2022-11-27 op if (*f->port == '\0')
727 d29a2ee2 2022-09-06 op c->pfd = fcgi_open_sock(f);
728 d29a2ee2 2022-09-06 op else
729 d29a2ee2 2022-09-06 op c->pfd = fcgi_open_conn(f);
730 d29a2ee2 2022-09-06 op
731 d29a2ee2 2022-09-06 op if (c->pfd == -1) {
732 d29a2ee2 2022-09-06 op start_reply(c, CGI_ERROR, "CGI error");
733 d29a2ee2 2022-09-06 op return 1;
734 d29a2ee2 2022-09-06 op }
735 d29a2ee2 2022-09-06 op
736 d29a2ee2 2022-09-06 op mark_nonblock(c->pfd);
737 d29a2ee2 2022-09-06 op
738 d29a2ee2 2022-09-06 op c->cgibev = bufferevent_new(c->pfd, fcgi_read, fcgi_write,
739 d29a2ee2 2022-09-06 op fcgi_error, c);
740 d29a2ee2 2022-09-06 op if (c->cgibev == NULL) {
741 d29a2ee2 2022-09-06 op start_reply(c, TEMP_FAILURE, "internal server error");
742 d29a2ee2 2022-09-06 op return 1;
743 d29a2ee2 2022-09-06 op }
744 d29a2ee2 2022-09-06 op
745 d29a2ee2 2022-09-06 op bufferevent_enable(c->cgibev, EV_READ|EV_WRITE);
746 d29a2ee2 2022-09-06 op fcgi_req(c);
747 d29a2ee2 2022-09-06 op
748 6abda252 2021-02-06 op return 1;
749 d3a08f4d 2021-01-17 op }
750 d3a08f4d 2021-01-17 op
751 02be96c6 2021-02-09 op /* 1 if matching `require client ca' fails (and apply it), 0 otherwise */
752 02be96c6 2021-02-09 op static int
753 02be96c6 2021-02-09 op apply_require_ca(struct client *c)
754 02be96c6 2021-02-09 op {
755 02be96c6 2021-02-09 op X509_STORE *store;
756 02be96c6 2021-02-09 op
757 02be96c6 2021-02-09 op if ((store = vhost_require_ca(c->host, c->iri.path)) == NULL)
758 02be96c6 2021-02-09 op return 0;
759 ba94a608 2022-01-04 op return check_matching_certificate(store, c);
760 02be96c6 2021-02-09 op }
761 02be96c6 2021-02-09 op
762 fe406389 2021-02-02 op static void
763 abc007d2 2021-02-08 op open_dir(struct client *c)
764 d3a08f4d 2021-01-17 op {
765 d3a08f4d 2021-01-17 op size_t len;
766 11c98667 2021-04-25 op int dirfd, root;
767 252908e6 2021-01-24 op char *before_file;
768 11c98667 2021-04-25 op
769 d29a2ee2 2022-09-06 op log_debug(c, "in open_dir");
770 d29a2ee2 2022-09-06 op
771 11c98667 2021-04-25 op root = !strcmp(c->iri.path, "/") || *c->iri.path == '\0';
772 d1ca3911 2021-01-21 op
773 0be51733 2021-01-20 op len = strlen(c->iri.path);
774 252908e6 2021-01-24 op if (len > 0 && !ends_with(c->iri.path, "/")) {
775 abc007d2 2021-02-08 op redirect_canonical_dir(c);
776 0be51733 2021-01-20 op return;
777 d3a08f4d 2021-01-17 op }
778 d3a08f4d 2021-01-17 op
779 252908e6 2021-01-24 op strlcpy(c->sbuf, "/", sizeof(c->sbuf));
780 d1ca3911 2021-01-21 op strlcat(c->sbuf, c->iri.path, sizeof(c->sbuf));
781 d1ca3911 2021-01-21 op if (!ends_with(c->sbuf, "/"))
782 0be51733 2021-01-20 op strlcat(c->sbuf, "/", sizeof(c->sbuf));
783 252908e6 2021-01-24 op before_file = strchr(c->sbuf, '\0');
784 c8b74339 2021-01-24 op len = strlcat(c->sbuf, vhost_index(c->host, c->iri.path),
785 c8b74339 2021-01-24 op sizeof(c->sbuf));
786 252908e6 2021-01-24 op if (len >= sizeof(c->sbuf)) {
787 abc007d2 2021-02-08 op start_reply(c, TEMP_FAILURE, "internal server error");
788 252908e6 2021-01-24 op return;
789 252908e6 2021-01-24 op }
790 d3a08f4d 2021-01-17 op
791 252908e6 2021-01-24 op c->iri.path = c->sbuf;
792 252908e6 2021-01-24 op
793 252908e6 2021-01-24 op /* close later unless we have to generate the dir listing */
794 abc007d2 2021-02-08 op dirfd = c->pfd;
795 abc007d2 2021-02-08 op c->pfd = -1;
796 252908e6 2021-01-24 op
797 abc007d2 2021-02-08 op switch (check_path(c, c->iri.path, &c->pfd)) {
798 252908e6 2021-01-24 op case FILE_EXISTS:
799 efe7d180 2021-10-02 op c->type = REQUEST_FILE;
800 98ee8406 2021-02-12 op start_reply(c, SUCCESS, mime(c->host, c->iri.path));
801 252908e6 2021-01-24 op break;
802 252908e6 2021-01-24 op
803 252908e6 2021-01-24 op case FILE_DIRECTORY:
804 abc007d2 2021-02-08 op start_reply(c, TEMP_REDIRECT, c->sbuf);
805 252908e6 2021-01-24 op break;
806 252908e6 2021-01-24 op
807 252908e6 2021-01-24 op case FILE_MISSING:
808 252908e6 2021-01-24 op *before_file = '\0';
809 252908e6 2021-01-24 op
810 252908e6 2021-01-24 op if (!vhost_auto_index(c->host, c->iri.path)) {
811 abc007d2 2021-02-08 op start_reply(c, NOT_FOUND, "not found");
812 252908e6 2021-01-24 op break;
813 252908e6 2021-01-24 op }
814 252908e6 2021-01-24 op
815 efe7d180 2021-10-02 op c->type = REQUEST_DIR;
816 252908e6 2021-01-24 op
817 e76f2c74 2021-04-25 op c->dirlen = scandir_fd(dirfd, &c->dir,
818 11c98667 2021-04-25 op root ? select_non_dotdot : select_non_dot,
819 11c98667 2021-04-25 op alphasort);
820 11c98667 2021-04-25 op if (c->dirlen == -1) {
821 11c98667 2021-04-25 op log_err(c, "scandir_fd(%d) (vhost:%s) %s: %s",
822 abc007d2 2021-02-08 op c->pfd, c->host->domain, c->iri.path, strerror(errno));
823 abc007d2 2021-02-08 op start_reply(c, TEMP_FAILURE, "internal server error");
824 252908e6 2021-01-24 op return;
825 252908e6 2021-01-24 op }
826 11c98667 2021-04-25 op c->diroff = 0;
827 252908e6 2021-01-24 op c->off = 0;
828 252908e6 2021-01-24 op
829 4842c72d 2021-10-18 op start_reply(c, SUCCESS, "text/gemini");
830 efe7d180 2021-10-02 op evbuffer_add_printf(EVBUFFER_OUTPUT(c->bev),
831 efe7d180 2021-10-02 op "# Index of %s\n\n", c->iri.path);
832 252908e6 2021-01-24 op return;
833 252908e6 2021-01-24 op
834 252908e6 2021-01-24 op default:
835 252908e6 2021-01-24 op /* unreachable */
836 252908e6 2021-01-24 op abort();
837 252908e6 2021-01-24 op }
838 252908e6 2021-01-24 op
839 252908e6 2021-01-24 op close(dirfd);
840 252908e6 2021-01-24 op }
841 252908e6 2021-01-24 op
842 fe406389 2021-02-02 op static void
843 abc007d2 2021-02-08 op redirect_canonical_dir(struct client *c)
844 252908e6 2021-01-24 op {
845 252908e6 2021-01-24 op size_t len;
846 252908e6 2021-01-24 op
847 252908e6 2021-01-24 op strlcpy(c->sbuf, "/", sizeof(c->sbuf));
848 252908e6 2021-01-24 op strlcat(c->sbuf, c->iri.path, sizeof(c->sbuf));
849 252908e6 2021-01-24 op len = strlcat(c->sbuf, "/", sizeof(c->sbuf));
850 252908e6 2021-01-24 op
851 0be51733 2021-01-20 op if (len >= sizeof(c->sbuf)) {
852 abc007d2 2021-02-08 op start_reply(c, TEMP_FAILURE, "internal server error");
853 0be51733 2021-01-20 op return;
854 0be51733 2021-01-20 op }
855 0be51733 2021-01-20 op
856 abc007d2 2021-02-08 op start_reply(c, TEMP_REDIRECT, c->sbuf);
857 d3a08f4d 2021-01-17 op }
858 5f715ce4 2021-02-02 op
859 fe406389 2021-02-02 op static void
860 efe7d180 2021-10-02 op client_tls_readcb(int fd, short event, void *d)
861 5f715ce4 2021-02-02 op {
862 efe7d180 2021-10-02 op struct bufferevent *bufev = d;
863 efe7d180 2021-10-02 op struct client *client = bufev->cbarg;
864 efe7d180 2021-10-02 op ssize_t ret;
865 efe7d180 2021-10-02 op size_t len;
866 efe7d180 2021-10-02 op int what = EVBUFFER_READ;
867 efe7d180 2021-10-02 op int howmuch = IBUF_READ_SIZE;
868 efe7d180 2021-10-02 op char buf[IBUF_READ_SIZE];
869 d3a08f4d 2021-01-17 op
870 efe7d180 2021-10-02 op if (event == EV_TIMEOUT) {
871 efe7d180 2021-10-02 op what |= EVBUFFER_TIMEOUT;
872 efe7d180 2021-10-02 op goto err;
873 5f715ce4 2021-02-02 op }
874 5f715ce4 2021-02-02 op
875 efe7d180 2021-10-02 op if (bufev->wm_read.high != 0)
876 efe7d180 2021-10-02 op howmuch = MIN(sizeof(buf), bufev->wm_read.high);
877 5f715ce4 2021-02-02 op
878 efe7d180 2021-10-02 op switch (ret = tls_read(client->ctx, buf, howmuch)) {
879 efe7d180 2021-10-02 op case TLS_WANT_POLLIN:
880 efe7d180 2021-10-02 op case TLS_WANT_POLLOUT:
881 efe7d180 2021-10-02 op goto retry;
882 efe7d180 2021-10-02 op case -1:
883 efe7d180 2021-10-02 op what |= EVBUFFER_ERROR;
884 efe7d180 2021-10-02 op goto err;
885 efe7d180 2021-10-02 op }
886 efe7d180 2021-10-02 op len = ret;
887 5f715ce4 2021-02-02 op
888 efe7d180 2021-10-02 op if (len == 0) {
889 efe7d180 2021-10-02 op what |= EVBUFFER_EOF;
890 efe7d180 2021-10-02 op goto err;
891 5f715ce4 2021-02-02 op }
892 5f715ce4 2021-02-02 op
893 efe7d180 2021-10-02 op if (evbuffer_add(bufev->input, buf, len) == -1) {
894 efe7d180 2021-10-02 op what |= EVBUFFER_ERROR;
895 efe7d180 2021-10-02 op goto err;
896 efe7d180 2021-10-02 op }
897 5f715ce4 2021-02-02 op
898 efe7d180 2021-10-02 op event_add(&bufev->ev_read, NULL);
899 efe7d180 2021-10-02 op if (bufev->wm_read.low != 0 && len < bufev->wm_read.low)
900 efe7d180 2021-10-02 op return;
901 efe7d180 2021-10-02 op if (bufev->wm_read.high != 0 && len > bufev->wm_read.high) {
902 efe7d180 2021-10-02 op /*
903 efe7d180 2021-10-02 op * here we could implement a read pressure policy.
904 efe7d180 2021-10-02 op */
905 efe7d180 2021-10-02 op }
906 252908e6 2021-01-24 op
907 efe7d180 2021-10-02 op if (bufev->readcb != NULL)
908 efe7d180 2021-10-02 op (*bufev->readcb)(bufev, bufev->cbarg);
909 11c98667 2021-04-25 op
910 efe7d180 2021-10-02 op return;
911 11c98667 2021-04-25 op
912 efe7d180 2021-10-02 op retry:
913 efe7d180 2021-10-02 op event_add(&bufev->ev_read, NULL);
914 efe7d180 2021-10-02 op return;
915 efe7d180 2021-10-02 op
916 efe7d180 2021-10-02 op err:
917 efe7d180 2021-10-02 op (*bufev->errorcb)(bufev, what, bufev->cbarg);
918 252908e6 2021-01-24 op }
919 252908e6 2021-01-24 op
920 fe406389 2021-02-02 op static void
921 efe7d180 2021-10-02 op client_tls_writecb(int fd, short event, void *d)
922 252908e6 2021-01-24 op {
923 efe7d180 2021-10-02 op struct bufferevent *bufev = d;
924 efe7d180 2021-10-02 op struct client *client = bufev->cbarg;
925 efe7d180 2021-10-02 op ssize_t ret;
926 efe7d180 2021-10-02 op size_t len;
927 efe7d180 2021-10-02 op short what = EVBUFFER_WRITE;
928 252908e6 2021-01-24 op
929 efe7d180 2021-10-02 op if (event == EV_TIMEOUT) {
930 efe7d180 2021-10-02 op what |= EVBUFFER_TIMEOUT;
931 efe7d180 2021-10-02 op goto err;
932 efe7d180 2021-10-02 op }
933 252908e6 2021-01-24 op
934 efe7d180 2021-10-02 op if (EVBUFFER_LENGTH(bufev->output) != 0) {
935 efe7d180 2021-10-02 op ret = tls_write(client->ctx,
936 efe7d180 2021-10-02 op EVBUFFER_DATA(bufev->output),
937 efe7d180 2021-10-02 op EVBUFFER_LENGTH(bufev->output));
938 efe7d180 2021-10-02 op switch (ret) {
939 efe7d180 2021-10-02 op case TLS_WANT_POLLIN:
940 efe7d180 2021-10-02 op case TLS_WANT_POLLOUT:
941 efe7d180 2021-10-02 op goto retry;
942 efe7d180 2021-10-02 op case -1:
943 efe7d180 2021-10-02 op what |= EVBUFFER_ERROR;
944 efe7d180 2021-10-02 op goto err;
945 252908e6 2021-01-24 op }
946 efe7d180 2021-10-02 op len = ret;
947 efe7d180 2021-10-02 op evbuffer_drain(bufev->output, len);
948 252908e6 2021-01-24 op }
949 252908e6 2021-01-24 op
950 efe7d180 2021-10-02 op if (EVBUFFER_LENGTH(bufev->output) != 0)
951 efe7d180 2021-10-02 op event_add(&bufev->ev_write, NULL);
952 efe7d180 2021-10-02 op
953 efe7d180 2021-10-02 op if (bufev->writecb != NULL &&
954 efe7d180 2021-10-02 op EVBUFFER_LENGTH(bufev->output) <= bufev->wm_write.low)
955 efe7d180 2021-10-02 op (*bufev->writecb)(bufev, bufev->cbarg);
956 efe7d180 2021-10-02 op return;
957 efe7d180 2021-10-02 op
958 efe7d180 2021-10-02 op retry:
959 efe7d180 2021-10-02 op event_add(&bufev->ev_write, NULL);
960 efe7d180 2021-10-02 op return;
961 efe7d180 2021-10-02 op err:
962 efe7d180 2021-10-02 op log_err(client, "tls error: %s", tls_error(client->ctx));
963 efe7d180 2021-10-02 op (*bufev->errorcb)(bufev, what, bufev->cbarg);
964 252908e6 2021-01-24 op }
965 252908e6 2021-01-24 op
966 fe406389 2021-02-02 op static void
967 efe7d180 2021-10-02 op client_read(struct bufferevent *bev, void *d)
968 3309ef97 2021-01-23 op {
969 efe7d180 2021-10-02 op struct client *c = d;
970 efe7d180 2021-10-02 op struct evbuffer *src = EVBUFFER_INPUT(bev);
971 efe7d180 2021-10-02 op const char *parse_err = "invalid request";
972 efe7d180 2021-10-02 op char decoded[DOMAIN_NAME_LEN];
973 efe7d180 2021-10-02 op size_t len;
974 3309ef97 2021-01-23 op
975 efe7d180 2021-10-02 op bufferevent_disable(bev, EVBUFFER_READ);
976 901905e0 2022-01-05 op
977 901905e0 2022-01-05 op /*
978 901905e0 2022-01-05 op * libevent2 can still somehow call this function, even
979 901905e0 2022-01-05 op * though I never enable EV_READ in the bufferevent. If
980 901905e0 2022-01-05 op * that's the case, bail out.
981 901905e0 2022-01-05 op */
982 901905e0 2022-01-05 op if (c->type != REQUEST_UNDECIDED)
983 901905e0 2022-01-05 op return;
984 abc007d2 2021-02-08 op
985 efe7d180 2021-10-02 op /* max url len + \r\n */
986 efe7d180 2021-10-02 op if (EVBUFFER_LENGTH(src) > 1024 + 2) {
987 efe7d180 2021-10-02 op log_err(c, "too much data received");
988 efe7d180 2021-10-02 op start_reply(c, BAD_REQUEST, "bad request");
989 efe7d180 2021-10-02 op return;
990 efe7d180 2021-10-02 op }
991 3309ef97 2021-01-23 op
992 efe7d180 2021-10-02 op c->req = evbuffer_readln(src, &len, EVBUFFER_EOL_CRLF_STRICT);
993 efe7d180 2021-10-02 op if (c->req == NULL) {
994 efe7d180 2021-10-02 op /* not enough data yet. */
995 efe7d180 2021-10-02 op bufferevent_enable(bev, EVBUFFER_READ);
996 ea27eaaa 2022-03-27 op return;
997 ea27eaaa 2022-03-27 op }
998 ea27eaaa 2022-03-27 op c->reqlen = strlen(c->req);
999 ea27eaaa 2022-03-27 op if (c->reqlen > 1024+2) {
1000 ea27eaaa 2022-03-27 op log_err(c, "URL too long");
1001 ea27eaaa 2022-03-27 op start_reply(c, BAD_REQUEST, "bad request");
1002 35744950 2021-02-01 op return;
1003 3309ef97 2021-01-23 op }
1004 3309ef97 2021-01-23 op
1005 efe7d180 2021-10-02 op if (!parse_iri(c->req, &c->iri, &parse_err) ||
1006 efe7d180 2021-10-02 op !puny_decode(c->iri.host, decoded, sizeof(decoded), &parse_err)) {
1007 efe7d180 2021-10-02 op log_err(c, "IRI parse error: %s", parse_err);
1008 807a80cb 2021-10-06 op start_reply(c, BAD_REQUEST, "bad request");
1009 efe7d180 2021-10-02 op return;
1010 efe7d180 2021-10-02 op }
1011 3309ef97 2021-01-23 op
1012 72b033ef 2021-12-29 op if (apply_reverse_proxy(c))
1013 72b033ef 2021-12-29 op return;
1014 72b033ef 2021-12-29 op
1015 52c92ef6 2021-12-09 op /* ignore the port number */
1016 52c92ef6 2021-12-09 op if (strcmp(c->iri.schema, "gemini") ||
1017 efe7d180 2021-10-02 op strcmp(decoded, c->domain)) {
1018 efe7d180 2021-10-02 op start_reply(c, PROXY_REFUSED, "won't proxy request");
1019 efe7d180 2021-10-02 op return;
1020 efe7d180 2021-10-02 op }
1021 3309ef97 2021-01-23 op
1022 efe7d180 2021-10-02 op if (apply_require_ca(c) ||
1023 efe7d180 2021-10-02 op apply_block_return(c)||
1024 efe7d180 2021-10-02 op apply_fastcgi(c))
1025 35744950 2021-02-01 op return;
1026 efe7d180 2021-10-02 op
1027 efe7d180 2021-10-02 op open_file(c);
1028 3309ef97 2021-01-23 op }
1029 3309ef97 2021-01-23 op
1030 efe7d180 2021-10-02 op void
1031 efe7d180 2021-10-02 op client_write(struct bufferevent *bev, void *d)
1032 d3a08f4d 2021-01-17 op {
1033 efe7d180 2021-10-02 op struct client *c = d;
1034 efe7d180 2021-10-02 op struct evbuffer *out = EVBUFFER_OUTPUT(bev);
1035 f2f8eb35 2022-07-04 op char nam[PATH_MAX];
1036 efe7d180 2021-10-02 op char buf[BUFSIZ];
1037 efe7d180 2021-10-02 op ssize_t r;
1038 d3a08f4d 2021-01-17 op
1039 efe7d180 2021-10-02 op switch (c->type) {
1040 efe7d180 2021-10-02 op case REQUEST_UNDECIDED:
1041 efe7d180 2021-10-02 op /*
1042 efe7d180 2021-10-02 op * Ignore spurious calls when we still don't have idea
1043 efe7d180 2021-10-02 op * what to do with the request.
1044 efe7d180 2021-10-02 op */
1045 efe7d180 2021-10-02 op break;
1046 d3a08f4d 2021-01-17 op
1047 efe7d180 2021-10-02 op case REQUEST_FILE:
1048 efe7d180 2021-10-02 op if ((r = read(c->pfd, buf, sizeof(buf))) == -1) {
1049 efe7d180 2021-10-02 op log_warn(c, "read: %s", strerror(errno));
1050 efe7d180 2021-10-02 op client_error(bev, EVBUFFER_ERROR, c);
1051 efe7d180 2021-10-02 op return;
1052 efe7d180 2021-10-02 op } else if (r == 0) {
1053 efe7d180 2021-10-02 op client_close(c);
1054 efe7d180 2021-10-02 op return;
1055 efe7d180 2021-10-02 op } else if (r != sizeof(buf))
1056 efe7d180 2021-10-02 op c->type = REQUEST_DONE;
1057 efe7d180 2021-10-02 op bufferevent_write(bev, buf, r);
1058 efe7d180 2021-10-02 op break;
1059 d3a08f4d 2021-01-17 op
1060 efe7d180 2021-10-02 op case REQUEST_DIR:
1061 efe7d180 2021-10-02 op /* TODO: handle big big directories better */
1062 efe7d180 2021-10-02 op for (c->diroff = 0; c->diroff < c->dirlen; ++c->diroff) {
1063 543f4a66 2022-07-04 op const char *sufx = "";
1064 543f4a66 2022-07-04 op
1065 f2f8eb35 2022-07-04 op encode_path(nam, sizeof(nam),
1066 efe7d180 2021-10-02 op c->dir[c->diroff]->d_name);
1067 543f4a66 2022-07-04 op if (c->dir[c->diroff]->d_type == DT_DIR)
1068 543f4a66 2022-07-04 op sufx = "/";
1069 543f4a66 2022-07-04 op evbuffer_add_printf(out, "=> ./%s%s\n", nam, sufx);
1070 efe7d180 2021-10-02 op free(c->dir[c->diroff]);
1071 d3a08f4d 2021-01-17 op }
1072 efe7d180 2021-10-02 op free(c->dir);
1073 efe7d180 2021-10-02 op c->dir = NULL;
1074 27b2fa9a 2021-02-12 op
1075 efe7d180 2021-10-02 op c->type = REQUEST_DONE;
1076 efe7d180 2021-10-02 op
1077 efe7d180 2021-10-02 op event_add(&c->bev->ev_write, NULL);
1078 efe7d180 2021-10-02 op break;
1079 efe7d180 2021-10-02 op
1080 efe7d180 2021-10-02 op case REQUEST_FCGI:
1081 72b033ef 2021-12-29 op case REQUEST_PROXY:
1082 efe7d180 2021-10-02 op /*
1083 d29a2ee2 2022-09-06 op * Here we depend on fastcgi or proxy connection to
1084 d29a2ee2 2022-09-06 op * provide data.
1085 efe7d180 2021-10-02 op */
1086 efe7d180 2021-10-02 op break;
1087 efe7d180 2021-10-02 op
1088 efe7d180 2021-10-02 op case REQUEST_DONE:
1089 efe7d180 2021-10-02 op if (EVBUFFER_LENGTH(out) == 0)
1090 efe7d180 2021-10-02 op client_close(c);
1091 efe7d180 2021-10-02 op break;
1092 d3a08f4d 2021-01-17 op }
1093 efe7d180 2021-10-02 op }
1094 d3a08f4d 2021-01-17 op
1095 efe7d180 2021-10-02 op static void
1096 efe7d180 2021-10-02 op client_error(struct bufferevent *bev, short error, void *d)
1097 efe7d180 2021-10-02 op {
1098 efe7d180 2021-10-02 op struct client *c = d;
1099 efe7d180 2021-10-02 op
1100 efe7d180 2021-10-02 op c->type = REQUEST_DONE;
1101 efe7d180 2021-10-02 op
1102 efe7d180 2021-10-02 op if (error & EVBUFFER_TIMEOUT) {
1103 efe7d180 2021-10-02 op log_warn(c, "timeout reached, "
1104 efe7d180 2021-10-02 op "forcefully closing the connection");
1105 efe7d180 2021-10-02 op if (c->code == 0)
1106 efe7d180 2021-10-02 op start_reply(c, BAD_REQUEST, "timeout");
1107 efe7d180 2021-10-02 op else
1108 efe7d180 2021-10-02 op client_close(c);
1109 efe7d180 2021-10-02 op return;
1110 efe7d180 2021-10-02 op }
1111 efe7d180 2021-10-02 op
1112 efe7d180 2021-10-02 op if (error & EVBUFFER_EOF) {
1113 efe7d180 2021-10-02 op client_close(c);
1114 efe7d180 2021-10-02 op return;
1115 efe7d180 2021-10-02 op }
1116 efe7d180 2021-10-02 op
1117 d98ae929 2022-02-19 op log_err(c, "unknown bufferevent error %x", error);
1118 efe7d180 2021-10-02 op client_close(c);
1119 d3a08f4d 2021-01-17 op }
1120 d3a08f4d 2021-01-17 op
1121 8ad1c570 2021-05-09 op void
1122 efe7d180 2021-10-02 op start_reply(struct client *c, int code, const char *meta)
1123 d3a08f4d 2021-01-17 op {
1124 efe7d180 2021-10-02 op struct evbuffer *evb = EVBUFFER_OUTPUT(c->bev);
1125 efe7d180 2021-10-02 op const char *lang;
1126 efe7d180 2021-10-02 op int r, rr;
1127 efe7d180 2021-10-02 op
1128 efe7d180 2021-10-02 op bufferevent_enable(c->bev, EVBUFFER_WRITE);
1129 efe7d180 2021-10-02 op
1130 efe7d180 2021-10-02 op c->code = code;
1131 efe7d180 2021-10-02 op c->meta = meta;
1132 efe7d180 2021-10-02 op
1133 efe7d180 2021-10-02 op r = evbuffer_add_printf(evb, "%d %s", code, meta);
1134 efe7d180 2021-10-02 op if (r == -1)
1135 efe7d180 2021-10-02 op goto err;
1136 efe7d180 2021-10-02 op
1137 efe7d180 2021-10-02 op /* 2 digit status + space + 1024 max reply */
1138 efe7d180 2021-10-02 op if (r > 1027)
1139 efe7d180 2021-10-02 op goto overflow;
1140 efe7d180 2021-10-02 op
1141 d29a2ee2 2022-09-06 op if (c->type != REQUEST_FCGI &&
1142 72b033ef 2021-12-29 op c->type != REQUEST_PROXY &&
1143 efe7d180 2021-10-02 op !strcmp(meta, "text/gemini") &&
1144 efe7d180 2021-10-02 op (lang = vhost_lang(c->host, c->iri.path)) != NULL) {
1145 4842c72d 2021-10-18 op rr = evbuffer_add_printf(evb, ";lang=%s", lang);
1146 efe7d180 2021-10-02 op if (rr == -1)
1147 efe7d180 2021-10-02 op goto err;
1148 efe7d180 2021-10-02 op if (r + rr > 1027)
1149 efe7d180 2021-10-02 op goto overflow;
1150 efe7d180 2021-10-02 op }
1151 efe7d180 2021-10-02 op
1152 efe7d180 2021-10-02 op bufferevent_write(c->bev, "\r\n", 2);
1153 efe7d180 2021-10-02 op
1154 efe7d180 2021-10-02 op if (!vhost_disable_log(c->host, c->iri.path))
1155 efe7d180 2021-10-02 op log_request(c, EVBUFFER_DATA(evb), EVBUFFER_LENGTH(evb));
1156 efe7d180 2021-10-02 op
1157 d28bd963 2022-01-27 op if (code != 20)
1158 efe7d180 2021-10-02 op c->type = REQUEST_DONE;
1159 efe7d180 2021-10-02 op
1160 efe7d180 2021-10-02 op return;
1161 efe7d180 2021-10-02 op
1162 efe7d180 2021-10-02 op err:
1163 efe7d180 2021-10-02 op log_err(c, "evbuffer_add_printf error: no memory");
1164 efe7d180 2021-10-02 op evbuffer_drain(evb, EVBUFFER_LENGTH(evb));
1165 efe7d180 2021-10-02 op client_close(c);
1166 efe7d180 2021-10-02 op return;
1167 efe7d180 2021-10-02 op
1168 efe7d180 2021-10-02 op overflow:
1169 efe7d180 2021-10-02 op log_warn(c, "reply header overflow");
1170 efe7d180 2021-10-02 op evbuffer_drain(evb, EVBUFFER_LENGTH(evb));
1171 efe7d180 2021-10-02 op start_reply(c, TEMP_FAILURE, "internal error");
1172 efe7d180 2021-10-02 op }
1173 efe7d180 2021-10-02 op
1174 efe7d180 2021-10-02 op static void
1175 efe7d180 2021-10-02 op client_close_ev(int fd, short event, void *d)
1176 efe7d180 2021-10-02 op {
1177 8ad1c570 2021-05-09 op struct client *c = d;
1178 d3a08f4d 2021-01-17 op
1179 d3a08f4d 2021-01-17 op switch (tls_close(c->ctx)) {
1180 d3a08f4d 2021-01-17 op case TLS_WANT_POLLIN:
1181 efe7d180 2021-10-02 op event_once(c->fd, EV_READ, client_close_ev, c, NULL);
1182 efe7d180 2021-10-02 op break;
1183 d3a08f4d 2021-01-17 op case TLS_WANT_POLLOUT:
1184 efe7d180 2021-10-02 op event_once(c->fd, EV_WRITE, client_close_ev, c, NULL);
1185 efe7d180 2021-10-02 op break;
1186 d3a08f4d 2021-01-17 op }
1187 d3a08f4d 2021-01-17 op
1188 d3a08f4d 2021-01-17 op connected_clients--;
1189 e4daebe4 2021-10-06 op
1190 e4daebe4 2021-10-06 op free(c->req);
1191 d3a08f4d 2021-01-17 op
1192 d3a08f4d 2021-01-17 op tls_free(c->ctx);
1193 d3a08f4d 2021-01-17 op c->ctx = NULL;
1194 d3a08f4d 2021-01-17 op
1195 efe7d180 2021-10-02 op free(c->header);
1196 efe7d180 2021-10-02 op
1197 abc007d2 2021-02-08 op if (c->pfd != -1)
1198 abc007d2 2021-02-08 op close(c->pfd);
1199 d3a08f4d 2021-01-17 op
1200 252908e6 2021-01-24 op if (c->dir != NULL)
1201 11c98667 2021-04-25 op free(c->dir);
1202 252908e6 2021-01-24 op
1203 abc007d2 2021-02-08 op close(c->fd);
1204 abc007d2 2021-02-08 op c->fd = -1;
1205 72b033ef 2021-12-29 op }
1206 72b033ef 2021-12-29 op
1207 72b033ef 2021-12-29 op static void
1208 72b033ef 2021-12-29 op client_proxy_close(int fd, short event, void *d)
1209 72b033ef 2021-12-29 op {
1210 72b033ef 2021-12-29 op struct tls *ctx = d;
1211 72b033ef 2021-12-29 op
1212 72b033ef 2021-12-29 op if (ctx == NULL) {
1213 72b033ef 2021-12-29 op close(fd);
1214 72b033ef 2021-12-29 op return;
1215 72b033ef 2021-12-29 op }
1216 72b033ef 2021-12-29 op
1217 72b033ef 2021-12-29 op switch (tls_close(ctx)) {
1218 72b033ef 2021-12-29 op case TLS_WANT_POLLIN:
1219 72b033ef 2021-12-29 op event_once(fd, EV_READ, client_proxy_close, d, NULL);
1220 72b033ef 2021-12-29 op break;
1221 72b033ef 2021-12-29 op case TLS_WANT_POLLOUT:
1222 72b033ef 2021-12-29 op event_once(fd, EV_WRITE, client_proxy_close, d, NULL);
1223 72b033ef 2021-12-29 op break;
1224 72b033ef 2021-12-29 op }
1225 72b033ef 2021-12-29 op
1226 72b033ef 2021-12-29 op tls_free(ctx);
1227 72b033ef 2021-12-29 op close(fd);
1228 f890c8c5 2021-01-22 op }
1229 f890c8c5 2021-01-22 op
1230 efe7d180 2021-10-02 op void
1231 efe7d180 2021-10-02 op client_close(struct client *c)
1232 efe7d180 2021-10-02 op {
1233 efe7d180 2021-10-02 op /*
1234 efe7d180 2021-10-02 op * We may end up calling client_close in various situations
1235 efe7d180 2021-10-02 op * and for the most unexpected reasons. Therefore, we need to
1236 b9b77f53 2022-01-27 op * ensure that everything gets properly released once we reach
1237 efe7d180 2021-10-02 op * this point.
1238 efe7d180 2021-10-02 op */
1239 207b3e80 2021-10-07 op
1240 207b3e80 2021-10-07 op SPLAY_REMOVE(client_tree_id, &clients, c);
1241 efe7d180 2021-10-02 op
1242 efe7d180 2021-10-02 op if (c->cgibev != NULL) {
1243 efe7d180 2021-10-02 op bufferevent_disable(c->cgibev, EVBUFFER_READ|EVBUFFER_WRITE);
1244 efe7d180 2021-10-02 op bufferevent_free(c->cgibev);
1245 efe7d180 2021-10-02 op c->cgibev = NULL;
1246 efe7d180 2021-10-02 op close(c->pfd);
1247 efe7d180 2021-10-02 op c->pfd = -1;
1248 efe7d180 2021-10-02 op }
1249 efe7d180 2021-10-02 op
1250 efe7d180 2021-10-02 op bufferevent_disable(c->bev, EVBUFFER_READ|EVBUFFER_WRITE);
1251 efe7d180 2021-10-02 op bufferevent_free(c->bev);
1252 efe7d180 2021-10-02 op c->bev = NULL;
1253 efe7d180 2021-10-02 op
1254 e0f6dc64 2022-01-27 op if (c->proxyevset &&
1255 e0f6dc64 2022-01-27 op event_pending(&c->proxyev, EV_READ|EV_WRITE, NULL)) {
1256 e0f6dc64 2022-01-27 op c->proxyevset = 0;
1257 e0f6dc64 2022-01-27 op event_del(&c->proxyev);
1258 e0f6dc64 2022-01-27 op }
1259 72b033ef 2021-12-29 op
1260 e0f6dc64 2022-01-27 op if (c->pfd != -1 && c->proxyctx != NULL) {
1261 e0f6dc64 2022-01-27 op /* shut down the proxy TLS connection */
1262 e0f6dc64 2022-01-27 op client_proxy_close(c->pfd, 0, c->proxyctx);
1263 e0f6dc64 2022-01-27 op c->pfd = -1;
1264 72b033ef 2021-12-29 op }
1265 e0f6dc64 2022-01-27 op
1266 e0f6dc64 2022-01-27 op if (c->proxybev != NULL)
1267 e0f6dc64 2022-01-27 op bufferevent_free(c->proxybev);
1268 72b033ef 2021-12-29 op
1269 efe7d180 2021-10-02 op client_close_ev(c->fd, 0, c);
1270 efe7d180 2021-10-02 op }
1271 efe7d180 2021-10-02 op
1272 fe406389 2021-02-02 op static void
1273 abc007d2 2021-02-08 op do_accept(int sock, short et, void *d)
1274 d3a08f4d 2021-01-17 op {
1275 abc007d2 2021-02-08 op struct client *c;
1276 d3a08f4d 2021-01-17 op struct sockaddr_storage addr;
1277 abc007d2 2021-02-08 op struct sockaddr *saddr;
1278 d3a08f4d 2021-01-17 op socklen_t len;
1279 207b3e80 2021-10-07 op int fd;
1280 abc007d2 2021-02-08 op
1281 abc007d2 2021-02-08 op saddr = (struct sockaddr*)&addr;
1282 d3a08f4d 2021-01-17 op len = sizeof(addr);
1283 3cb3dd4d 2021-02-12 op if ((fd = accept(sock, saddr, &len)) == -1) {
1284 c62a411f 2021-10-13 op if (errno == EWOULDBLOCK || errno == EAGAIN ||
1285 c62a411f 2021-10-13 op errno == ECONNABORTED)
1286 d3a08f4d 2021-01-17 op return;
1287 df5058c9 2023-06-05 op fatal("accept");
1288 d3a08f4d 2021-01-17 op }
1289 d3a08f4d 2021-01-17 op
1290 3cb3dd4d 2021-02-12 op mark_nonblock(fd);
1291 3cb3dd4d 2021-02-12 op
1292 207b3e80 2021-10-07 op c = xcalloc(1, sizeof(*c));
1293 207b3e80 2021-10-07 op c->id = ++server_client_id;
1294 207b3e80 2021-10-07 op c->fd = fd;
1295 207b3e80 2021-10-07 op c->pfd = -1;
1296 207b3e80 2021-10-07 op c->addr = addr;
1297 d3a08f4d 2021-01-17 op
1298 207b3e80 2021-10-07 op if (tls_accept_socket(ctx, &c->ctx, fd) == -1) {
1299 207b3e80 2021-10-07 op log_warn(c, "failed to accept socket: %s", tls_error(c->ctx));
1300 207b3e80 2021-10-07 op close(c->fd);
1301 207b3e80 2021-10-07 op free(c);
1302 207b3e80 2021-10-07 op return;
1303 d3a08f4d 2021-01-17 op }
1304 d3a08f4d 2021-01-17 op
1305 207b3e80 2021-10-07 op SPLAY_INSERT(client_tree_id, &clients, c);
1306 207b3e80 2021-10-07 op event_once(c->fd, EV_READ|EV_WRITE, handle_handshake, c, NULL);
1307 207b3e80 2021-10-07 op connected_clients++;
1308 d3a08f4d 2021-01-17 op }
1309 d3a08f4d 2021-01-17 op
1310 8ad1c570 2021-05-09 op struct client *
1311 3fdc457c 2022-03-26 op client_by_id(int id)
1312 8ad1c570 2021-05-09 op {
1313 207b3e80 2021-10-07 op struct client find;
1314 207b3e80 2021-10-07 op
1315 207b3e80 2021-10-07 op find.id = id;
1316 207b3e80 2021-10-07 op return SPLAY_FIND(client_tree_id, &clients, &find);
1317 8ad1c570 2021-05-09 op }
1318 8ad1c570 2021-05-09 op
1319 abc007d2 2021-02-08 op static void
1320 d040746a 2022-09-10 op handle_dispatch_imsg(int fd, short ev, void *d)
1321 bc99d868 2021-03-19 op {
1322 d040746a 2022-09-10 op struct imsgbuf *ibuf = d;
1323 d040746a 2022-09-10 op struct imsg imsg;
1324 d040746a 2022-09-10 op ssize_t n;
1325 bc99d868 2021-03-19 op
1326 d040746a 2022-09-10 op if ((n = imsg_read(ibuf)) == -1) {
1327 d040746a 2022-09-10 op if (errno == EAGAIN || errno == EWOULDBLOCK)
1328 d040746a 2022-09-10 op return;
1329 d040746a 2022-09-10 op fatal("imsg_read");
1330 d040746a 2022-09-10 op }
1331 090b8a89 2021-07-06 op
1332 d040746a 2022-09-10 op if (n == 0)
1333 df5058c9 2023-06-05 op fatalx("connection closed.");
1334 d3a08f4d 2021-01-17 op
1335 d040746a 2022-09-10 op for (;;) {
1336 d040746a 2022-09-10 op if ((n = imsg_get(ibuf, &imsg)) == -1)
1337 d040746a 2022-09-10 op fatal("imsg_get");
1338 d040746a 2022-09-10 op if (n == 0)
1339 d040746a 2022-09-10 op return;
1340 d040746a 2022-09-10 op
1341 d040746a 2022-09-10 op switch (imsg.hdr.type) {
1342 d040746a 2022-09-10 op case IMSG_QUIT:
1343 d040746a 2022-09-10 op /*
1344 d040746a 2022-09-10 op * Don't call event_loopbreak since we want to
1345 d040746a 2022-09-10 op * finish handling the ongoing connections.
1346 d040746a 2022-09-10 op */
1347 d040746a 2022-09-10 op shutting_down = 1;
1348 d040746a 2022-09-10 op
1349 d040746a 2022-09-10 op event_del(&e4);
1350 d040746a 2022-09-10 op if (has_ipv6)
1351 d040746a 2022-09-10 op event_del(&e6);
1352 d040746a 2022-09-10 op if (has_siginfo)
1353 d040746a 2022-09-10 op signal_del(&siginfo);
1354 d040746a 2022-09-10 op event_del(&imsgev);
1355 d040746a 2022-09-10 op signal_del(&sigusr2);
1356 d040746a 2022-09-10 op break;
1357 d040746a 2022-09-10 op default:
1358 df5058c9 2023-06-05 op fatalx("Unknown message %d", imsg.hdr.type);
1359 d040746a 2022-09-10 op }
1360 d040746a 2022-09-10 op imsg_free(&imsg);
1361 d040746a 2022-09-10 op }
1362 bc99d868 2021-03-19 op }
1363 bc99d868 2021-03-19 op
1364 bc99d868 2021-03-19 op static void
1365 abc007d2 2021-02-08 op handle_siginfo(int fd, short ev, void *d)
1366 abc007d2 2021-02-08 op {
1367 abc007d2 2021-02-08 op log_info(NULL, "%d connected clients", connected_clients);
1368 abc007d2 2021-02-08 op }
1369 d3a08f4d 2021-01-17 op
1370 a01a91db 2023-06-05 op static void
1371 bc99d868 2021-03-19 op loop(struct tls *ctx_, int sock4, int sock6, struct imsgbuf *ibuf)
1372 abc007d2 2021-02-08 op {
1373 bc99d868 2021-03-19 op ctx = ctx_;
1374 bc99d868 2021-03-19 op
1375 207b3e80 2021-10-07 op SPLAY_INIT(&clients);
1376 207b3e80 2021-10-07 op
1377 abc007d2 2021-02-08 op event_init();
1378 1e3ef7ab 2021-02-03 op
1379 bc99d868 2021-03-19 op event_set(&e4, sock4, EV_READ | EV_PERSIST, &do_accept, NULL);
1380 a6e689d7 2021-02-12 op event_add(&e4, NULL);
1381 ca21e100 2021-02-04 op
1382 abc007d2 2021-02-08 op if (sock6 != -1) {
1383 a6e689d7 2021-02-12 op has_ipv6 = 1;
1384 bc99d868 2021-03-19 op event_set(&e6, sock6, EV_READ | EV_PERSIST, &do_accept, NULL);
1385 a6e689d7 2021-02-12 op event_add(&e6, NULL);
1386 d3a08f4d 2021-01-17 op }
1387 abc007d2 2021-02-08 op
1388 0126d91d 2022-09-07 op if (ibuf) {
1389 0126d91d 2022-09-07 op event_set(&imsgev, ibuf->fd, EV_READ | EV_PERSIST,
1390 0126d91d 2022-09-07 op handle_dispatch_imsg, ibuf);
1391 0126d91d 2022-09-07 op event_add(&imsgev, NULL);
1392 0126d91d 2022-09-07 op }
1393 abc007d2 2021-02-08 op
1394 abc007d2 2021-02-08 op #ifdef SIGINFO
1395 a6e689d7 2021-02-12 op has_siginfo = 1;
1396 a6e689d7 2021-02-12 op signal_set(&siginfo, SIGINFO, &handle_siginfo, NULL);
1397 a6e689d7 2021-02-12 op signal_add(&siginfo, NULL);
1398 abc007d2 2021-02-08 op #endif
1399 5e3285d5 2021-02-12 op signal_set(&sigusr2, SIGUSR2, &handle_siginfo, NULL);
1400 a6e689d7 2021-02-12 op signal_add(&sigusr2, NULL);
1401 abc007d2 2021-02-08 op
1402 1e0b9745 2023-05-08 op sandbox_server_process();
1403 abc007d2 2021-02-08 op event_dispatch();
1404 df58efff 2021-02-08 op _exit(0);
1405 a01a91db 2023-06-05 op }
1406 a01a91db 2023-06-05 op
1407 a01a91db 2023-06-05 op static void
1408 a01a91db 2023-06-05 op load_vhosts(void)
1409 a01a91db 2023-06-05 op {
1410 a01a91db 2023-06-05 op struct vhost *h;
1411 a01a91db 2023-06-05 op struct location *l;
1412 a01a91db 2023-06-05 op
1413 a01a91db 2023-06-05 op TAILQ_FOREACH(h, &hosts, vhosts) {
1414 a01a91db 2023-06-05 op TAILQ_FOREACH(l, &h->locations, locations) {
1415 a01a91db 2023-06-05 op if (*l->dir == '\0')
1416 a01a91db 2023-06-05 op continue;
1417 a01a91db 2023-06-05 op l->dirfd = open(l->dir, O_RDONLY | O_DIRECTORY);
1418 a01a91db 2023-06-05 op if (l->dirfd == -1)
1419 df5058c9 2023-06-05 op fatal("open %s for domain %s", l->dir,
1420 df5058c9 2023-06-05 op h->domain);
1421 a01a91db 2023-06-05 op }
1422 a01a91db 2023-06-05 op }
1423 d3a08f4d 2021-01-17 op }
1424 207b3e80 2021-10-07 op
1425 207b3e80 2021-10-07 op int
1426 a01a91db 2023-06-05 op server_main(struct tls *ctx_, struct imsgbuf *ibuf, int sock4, int sock6)
1427 a01a91db 2023-06-05 op {
1428 a01a91db 2023-06-05 op drop_priv();
1429 a01a91db 2023-06-05 op if (load_default_mime(&conf.mime) == -1)
1430 df5058c9 2023-06-05 op fatal("can't load default mime");
1431 a01a91db 2023-06-05 op sort_mime(&conf.mime);
1432 a01a91db 2023-06-05 op load_vhosts();
1433 a01a91db 2023-06-05 op loop(ctx_, sock4, sock6, ibuf);
1434 a01a91db 2023-06-05 op return 0;
1435 a01a91db 2023-06-05 op }
1436 a01a91db 2023-06-05 op
1437 a01a91db 2023-06-05 op int
1438 207b3e80 2021-10-07 op client_tree_cmp(struct client *a, struct client *b)
1439 207b3e80 2021-10-07 op {
1440 207b3e80 2021-10-07 op if (a->id == b->id)
1441 207b3e80 2021-10-07 op return 0;
1442 207b3e80 2021-10-07 op else if (a->id < b->id)
1443 207b3e80 2021-10-07 op return -1;
1444 207b3e80 2021-10-07 op else
1445 207b3e80 2021-10-07 op return +1;
1446 207b3e80 2021-10-07 op }
1447 207b3e80 2021-10-07 op
1448 207b3e80 2021-10-07 op SPLAY_GENERATE(client_tree_id, client, entry, client_tree_cmp)