Blame


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