Blame


1 d3a08f4d 2021-01-17 op /*
2 d3a08f4d 2021-01-17 op * Copyright (c) 2021 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 d3a08f4d 2021-01-17 op
17 d3a08f4d 2021-01-17 op #include <sys/mman.h>
18 d3a08f4d 2021-01-17 op #include <sys/stat.h>
19 d3a08f4d 2021-01-17 op
20 d3a08f4d 2021-01-17 op #include <netdb.h>
21 d3a08f4d 2021-01-17 op
22 d3a08f4d 2021-01-17 op #include <assert.h>
23 d3a08f4d 2021-01-17 op #include <errno.h>
24 abc007d2 2021-02-08 op #include <event.h>
25 d3a08f4d 2021-01-17 op #include <fcntl.h>
26 b4d409cf 2021-01-21 op #include <fnmatch.h>
27 2fafa2d2 2021-02-01 op #include <limits.h>
28 d3a08f4d 2021-01-17 op #include <string.h>
29 d3a08f4d 2021-01-17 op
30 d3a08f4d 2021-01-17 op #include "gmid.h"
31 d3a08f4d 2021-01-17 op
32 abc007d2 2021-02-08 op struct server {
33 abc007d2 2021-02-08 op struct client clients[MAX_USERS];
34 abc007d2 2021-02-08 op struct tls *ctx;
35 abc007d2 2021-02-08 op };
36 abc007d2 2021-02-08 op
37 abc007d2 2021-02-08 op struct server_events {
38 abc007d2 2021-02-08 op struct event e4;
39 abc007d2 2021-02-08 op int has_ipv6;
40 abc007d2 2021-02-08 op struct event e6;
41 abc007d2 2021-02-08 op struct event sighup;
42 abc007d2 2021-02-08 op };
43 abc007d2 2021-02-08 op
44 d3a08f4d 2021-01-17 op int connected_clients;
45 d3a08f4d 2021-01-17 op
46 abc007d2 2021-02-08 op static inline void reschedule_read(int, struct client*, statefn);
47 abc007d2 2021-02-08 op static inline void reschedule_write(int, struct client*, statefn);
48 abc007d2 2021-02-08 op
49 fe406389 2021-02-02 op static int check_path(struct client*, const char*, int*);
50 abc007d2 2021-02-08 op static void open_file(struct client*);
51 abc007d2 2021-02-08 op static void load_file(struct client*);
52 abc007d2 2021-02-08 op static void check_for_cgi(struct client*);
53 abc007d2 2021-02-08 op static void handle_handshake(int, short, void*);
54 abc007d2 2021-02-08 op static int apply_block_return(struct client*);
55 abc007d2 2021-02-08 op static void handle_open_conn(int, short, void*);
56 abc007d2 2021-02-08 op static void start_reply(struct client*, int, const char*);
57 abc007d2 2021-02-08 op static void handle_start_reply(int, short, void*);
58 abc007d2 2021-02-08 op static void start_cgi(const char*, const char*, struct client*);
59 abc007d2 2021-02-08 op static void send_file(int, short, void*);
60 abc007d2 2021-02-08 op static void open_dir(struct client*);
61 abc007d2 2021-02-08 op static void redirect_canonical_dir(struct client*);
62 abc007d2 2021-02-08 op static void enter_handle_dirlist(int, short, void*);
63 abc007d2 2021-02-08 op static void handle_dirlist(int, short, void*);
64 fe406389 2021-02-02 op static int read_next_dir_entry(struct client*);
65 abc007d2 2021-02-08 op static void send_directory_listing(int, short, void*);
66 abc007d2 2021-02-08 op static void handle_cgi_reply(int, short, void*);
67 abc007d2 2021-02-08 op static void handle_cgi(int, short, void*);
68 abc007d2 2021-02-08 op static void close_conn(int, short, void*);
69 abc007d2 2021-02-08 op static void do_accept(int, short, void*);
70 abc007d2 2021-02-08 op static void handle_sighup(int, short, void*);
71 fe406389 2021-02-02 op
72 abc007d2 2021-02-08 op static inline void
73 abc007d2 2021-02-08 op reschedule_read(int fd, struct client *c, statefn fn)
74 abc007d2 2021-02-08 op {
75 abc007d2 2021-02-08 op event_once(fd, EV_READ, fn, c, NULL);
76 abc007d2 2021-02-08 op }
77 abc007d2 2021-02-08 op
78 abc007d2 2021-02-08 op void
79 abc007d2 2021-02-08 op reschedule_write(int fd, struct client *c, statefn fn)
80 abc007d2 2021-02-08 op {
81 abc007d2 2021-02-08 op event_once(fd, EV_WRITE, fn, c, NULL);
82 abc007d2 2021-02-08 op }
83 abc007d2 2021-02-08 op
84 c8b74339 2021-01-24 op const char *
85 c8b74339 2021-01-24 op vhost_lang(struct vhost *v, const char *path)
86 c8b74339 2021-01-24 op {
87 c8b74339 2021-01-24 op struct location *loc;
88 c8b74339 2021-01-24 op
89 caad0308 2021-01-27 op if (v == NULL || path == NULL)
90 6016a593 2021-01-30 op return NULL;
91 8443bff7 2021-01-25 op
92 6016a593 2021-01-30 op for (loc = &v->locations[1]; loc->match != NULL; ++loc) {
93 cd761624 2021-02-06 op if (loc->lang != NULL) {
94 cd761624 2021-02-06 op if (!fnmatch(loc->match, path, 0))
95 6016a593 2021-01-30 op return loc->lang;
96 c8b74339 2021-01-24 op }
97 c8b74339 2021-01-24 op }
98 c8b74339 2021-01-24 op
99 6016a593 2021-01-30 op return v->locations[0].lang;
100 c8b74339 2021-01-24 op }
101 c8b74339 2021-01-24 op
102 c8b74339 2021-01-24 op const char *
103 c8b74339 2021-01-24 op vhost_default_mime(struct vhost *v, const char *path)
104 c8b74339 2021-01-24 op {
105 c8b74339 2021-01-24 op struct location *loc;
106 c8b74339 2021-01-24 op const char *default_mime = "application/octet-stream";
107 caad0308 2021-01-27 op
108 caad0308 2021-01-27 op if (v == NULL || path == NULL)
109 caad0308 2021-01-27 op return default_mime;
110 c8b74339 2021-01-24 op
111 6016a593 2021-01-30 op for (loc = &v->locations[1]; loc->match != NULL; ++loc) {
112 cd761624 2021-02-06 op if (loc->default_mime != NULL) {
113 cd761624 2021-02-06 op if (!fnmatch(loc->match, path, 0))
114 6016a593 2021-01-30 op return loc->default_mime;
115 c8b74339 2021-01-24 op }
116 c8b74339 2021-01-24 op }
117 c8b74339 2021-01-24 op
118 6016a593 2021-01-30 op if (v->locations[0].default_mime != NULL)
119 6016a593 2021-01-30 op return v->locations[0].default_mime;
120 c8b74339 2021-01-24 op return default_mime;
121 c8b74339 2021-01-24 op }
122 c8b74339 2021-01-24 op
123 c8b74339 2021-01-24 op const char *
124 c8b74339 2021-01-24 op vhost_index(struct vhost *v, const char *path)
125 c8b74339 2021-01-24 op {
126 c8b74339 2021-01-24 op struct location *loc;
127 c8b74339 2021-01-24 op const char *index = "index.gmi";
128 c8b74339 2021-01-24 op
129 caad0308 2021-01-27 op if (v == NULL || path == NULL)
130 caad0308 2021-01-27 op return index;
131 caad0308 2021-01-27 op
132 6016a593 2021-01-30 op for (loc = &v->locations[1]; loc->match != NULL; ++loc) {
133 cd761624 2021-02-06 op if (loc->index != NULL) {
134 cd761624 2021-02-06 op if (!fnmatch(loc->match, path, 0))
135 6016a593 2021-01-30 op return loc->index;
136 c8b74339 2021-01-24 op }
137 c8b74339 2021-01-24 op }
138 c8b74339 2021-01-24 op
139 b59f3cdd 2021-01-30 op if (v->locations[0].index != NULL)
140 b59f3cdd 2021-01-30 op return v->locations[0].index;
141 c8b74339 2021-01-24 op return index;
142 c8b74339 2021-01-24 op }
143 c8b74339 2021-01-24 op
144 d3a08f4d 2021-01-17 op int
145 252908e6 2021-01-24 op vhost_auto_index(struct vhost *v, const char *path)
146 252908e6 2021-01-24 op {
147 252908e6 2021-01-24 op struct location *loc;
148 252908e6 2021-01-24 op
149 6016a593 2021-01-30 op if (v == NULL || path == NULL)
150 6016a593 2021-01-30 op return 0;
151 6016a593 2021-01-30 op
152 daac4a94 2021-02-06 op for (loc = &v->locations[1]; loc->match != NULL; ++loc) {
153 cd761624 2021-02-06 op if (loc->auto_index != 0) {
154 cd761624 2021-02-06 op if (!fnmatch(loc->match, path, 0))
155 6016a593 2021-01-30 op return loc->auto_index == 1;
156 252908e6 2021-01-24 op }
157 252908e6 2021-01-24 op }
158 252908e6 2021-01-24 op
159 6016a593 2021-01-30 op return v->locations[0].auto_index == 1;
160 6abda252 2021-02-06 op }
161 6abda252 2021-02-06 op
162 6abda252 2021-02-06 op int
163 6abda252 2021-02-06 op vhost_block_return(struct vhost *v, const char *path, int *code, const char **fmt)
164 6abda252 2021-02-06 op {
165 6abda252 2021-02-06 op struct location *loc;
166 6abda252 2021-02-06 op
167 6abda252 2021-02-06 op if (v == NULL || path == NULL)
168 6abda252 2021-02-06 op return 0;
169 6abda252 2021-02-06 op
170 6abda252 2021-02-06 op for (loc = &v->locations[1]; loc->match != NULL; ++loc) {
171 cd761624 2021-02-06 op if (loc->block_code != 0) {
172 cd761624 2021-02-06 op if (!fnmatch(loc->match, path, 0)) {
173 6abda252 2021-02-06 op *code = loc->block_code;
174 6abda252 2021-02-06 op *fmt = loc->block_fmt;
175 6abda252 2021-02-06 op return 1;
176 6abda252 2021-02-06 op }
177 6abda252 2021-02-06 op }
178 6abda252 2021-02-06 op }
179 6abda252 2021-02-06 op
180 6abda252 2021-02-06 op *code = v->locations[0].block_code;
181 6abda252 2021-02-06 op *fmt = v->locations[0].block_fmt;
182 6abda252 2021-02-06 op return v->locations[0].block_code != 0;
183 6abda252 2021-02-06 op }
184 6abda252 2021-02-06 op
185 6abda252 2021-02-06 op int
186 6abda252 2021-02-06 op vhost_strip(struct vhost *v, const char *path)
187 6abda252 2021-02-06 op {
188 6abda252 2021-02-06 op struct location *loc;
189 6abda252 2021-02-06 op
190 6abda252 2021-02-06 op if (v == NULL || path == NULL)
191 6abda252 2021-02-06 op return 0;
192 6abda252 2021-02-06 op
193 6abda252 2021-02-06 op for (loc = &v->locations[1]; loc->match != NULL; ++loc) {
194 cd761624 2021-02-06 op if (loc->strip != 0) {
195 cd761624 2021-02-06 op if (!fnmatch(loc->match, path, 0))
196 6abda252 2021-02-06 op return loc->strip;
197 6abda252 2021-02-06 op }
198 6abda252 2021-02-06 op }
199 6abda252 2021-02-06 op
200 6abda252 2021-02-06 op return v->locations[0].strip;
201 252908e6 2021-01-24 op }
202 252908e6 2021-01-24 op
203 fe406389 2021-02-02 op static int
204 d3a08f4d 2021-01-17 op check_path(struct client *c, const char *path, int *fd)
205 d3a08f4d 2021-01-17 op {
206 d3a08f4d 2021-01-17 op struct stat sb;
207 d1ca3911 2021-01-21 op const char *p;
208 252908e6 2021-01-24 op int flags;
209 d3a08f4d 2021-01-17 op
210 d3a08f4d 2021-01-17 op assert(path != NULL);
211 d1ca3911 2021-01-21 op
212 d1ca3911 2021-01-21 op if (*path == '\0')
213 d1ca3911 2021-01-21 op p = ".";
214 d1ca3911 2021-01-21 op else if (*path == '/')
215 d1ca3911 2021-01-21 op /* in send_dir we add an initial / (to be
216 d1ca3911 2021-01-21 op * redirect-friendly), but here we want to skip it */
217 d1ca3911 2021-01-21 op p = path+1;
218 d1ca3911 2021-01-21 op else
219 d1ca3911 2021-01-21 op p = path;
220 d1ca3911 2021-01-21 op
221 252908e6 2021-01-24 op flags = O_RDONLY | O_NOFOLLOW;
222 252908e6 2021-01-24 op
223 252908e6 2021-01-24 op if (*fd == -1 && (*fd = openat(c->host->dirfd, p, flags)) == -1)
224 d3a08f4d 2021-01-17 op return FILE_MISSING;
225 d3a08f4d 2021-01-17 op
226 d3a08f4d 2021-01-17 op if (fstat(*fd, &sb) == -1) {
227 3abf91b0 2021-02-07 op log_notice(c, "failed stat for %s: %s", path, strerror(errno));
228 d3a08f4d 2021-01-17 op return FILE_MISSING;
229 d3a08f4d 2021-01-17 op }
230 d3a08f4d 2021-01-17 op
231 d3a08f4d 2021-01-17 op if (S_ISDIR(sb.st_mode))
232 d3a08f4d 2021-01-17 op return FILE_DIRECTORY;
233 d3a08f4d 2021-01-17 op
234 d3a08f4d 2021-01-17 op if (sb.st_mode & S_IXUSR)
235 d3a08f4d 2021-01-17 op return FILE_EXECUTABLE;
236 d3a08f4d 2021-01-17 op
237 d3a08f4d 2021-01-17 op return FILE_EXISTS;
238 d3a08f4d 2021-01-17 op }
239 d3a08f4d 2021-01-17 op
240 fe406389 2021-02-02 op static void
241 abc007d2 2021-02-08 op open_file(struct client *c)
242 d3a08f4d 2021-01-17 op {
243 abc007d2 2021-02-08 op switch (check_path(c, c->iri.path, &c->pfd)) {
244 d3a08f4d 2021-01-17 op case FILE_EXECUTABLE:
245 87f2b68b 2021-02-02 op if (c->host->cgi != NULL && !fnmatch(c->host->cgi, c->iri.path, 0)) {
246 abc007d2 2021-02-08 op start_cgi(c->iri.path, "", c);
247 07b0a142 2021-01-24 op return;
248 07b0a142 2021-01-24 op }
249 d3a08f4d 2021-01-17 op
250 d3a08f4d 2021-01-17 op /* fallthrough */
251 d3a08f4d 2021-01-17 op
252 d3a08f4d 2021-01-17 op case FILE_EXISTS:
253 abc007d2 2021-02-08 op load_file(c);
254 07b0a142 2021-01-24 op return;
255 d3a08f4d 2021-01-17 op
256 d3a08f4d 2021-01-17 op case FILE_DIRECTORY:
257 abc007d2 2021-02-08 op open_dir(c);
258 07b0a142 2021-01-24 op return;
259 d3a08f4d 2021-01-17 op
260 d3a08f4d 2021-01-17 op case FILE_MISSING:
261 87f2b68b 2021-02-02 op if (c->host->cgi != NULL && !fnmatch(c->host->cgi, c->iri.path, 0)) {
262 abc007d2 2021-02-08 op check_for_cgi(c);
263 07b0a142 2021-01-24 op return;
264 07b0a142 2021-01-24 op }
265 abc007d2 2021-02-08 op start_reply(c, NOT_FOUND, "not found");
266 07b0a142 2021-01-24 op return;
267 d3a08f4d 2021-01-17 op
268 d3a08f4d 2021-01-17 op default:
269 d3a08f4d 2021-01-17 op /* unreachable */
270 d3a08f4d 2021-01-17 op abort();
271 d3a08f4d 2021-01-17 op }
272 d3a08f4d 2021-01-17 op }
273 d3a08f4d 2021-01-17 op
274 fe406389 2021-02-02 op static void
275 abc007d2 2021-02-08 op load_file(struct client *c)
276 252908e6 2021-01-24 op {
277 abc007d2 2021-02-08 op if ((c->len = filesize(c->pfd)) == -1) {
278 3abf91b0 2021-02-07 op log_err(c, "failed to get file size for %s: %s",
279 87f2b68b 2021-02-02 op c->iri.path, strerror(errno));
280 abc007d2 2021-02-08 op start_reply(c, TEMP_FAILURE, "internal server error");
281 252908e6 2021-01-24 op return;
282 252908e6 2021-01-24 op }
283 d3a08f4d 2021-01-17 op
284 252908e6 2021-01-24 op if ((c->buf = mmap(NULL, c->len, PROT_READ, MAP_PRIVATE,
285 abc007d2 2021-02-08 op c->pfd, 0)) == MAP_FAILED) {
286 3abf91b0 2021-02-07 op log_err(c, "mmap: %s: %s", c->iri.path, strerror(errno));
287 abc007d2 2021-02-08 op start_reply(c, TEMP_FAILURE, "internal server error");
288 252908e6 2021-01-24 op return;
289 252908e6 2021-01-24 op }
290 252908e6 2021-01-24 op c->i = c->buf;
291 112802ea 2021-02-01 op c->next = send_file;
292 abc007d2 2021-02-08 op start_reply(c, SUCCESS, mime(c->host, c->iri.path));
293 252908e6 2021-01-24 op }
294 252908e6 2021-01-24 op
295 d3a08f4d 2021-01-17 op /*
296 d3a08f4d 2021-01-17 op * the inverse of this algorithm, i.e. starting from the start of the
297 d3a08f4d 2021-01-17 op * path + strlen(cgi), and checking if each component, should be
298 d3a08f4d 2021-01-17 op * faster. But it's tedious to write. This does the opposite: starts
299 d3a08f4d 2021-01-17 op * from the end and strip one component at a time, until either an
300 d3a08f4d 2021-01-17 op * executable is found or we emptied the path.
301 d3a08f4d 2021-01-17 op */
302 fe406389 2021-02-02 op static void
303 abc007d2 2021-02-08 op check_for_cgi(struct client *c)
304 d3a08f4d 2021-01-17 op {
305 2fafa2d2 2021-02-01 op char path[PATH_MAX];
306 d3a08f4d 2021-01-17 op char *end;
307 2fafa2d2 2021-02-01 op
308 2fafa2d2 2021-02-01 op strlcpy(path, c->iri.path, sizeof(path));
309 d3a08f4d 2021-01-17 op end = strchr(path, '\0');
310 d3a08f4d 2021-01-17 op
311 d3a08f4d 2021-01-17 op while (end > path) {
312 d3a08f4d 2021-01-17 op /* go up one level. UNIX paths are simple and POSIX
313 d3a08f4d 2021-01-17 op * dirname, with its ambiguities on if the given path
314 d3a08f4d 2021-01-17 op * is changed or not, gives me headaches. */
315 d3a08f4d 2021-01-17 op while (*end != '/')
316 d3a08f4d 2021-01-17 op end--;
317 d3a08f4d 2021-01-17 op *end = '\0';
318 d3a08f4d 2021-01-17 op
319 abc007d2 2021-02-08 op switch (check_path(c, path, &c->pfd)) {
320 d3a08f4d 2021-01-17 op case FILE_EXECUTABLE:
321 abc007d2 2021-02-08 op start_cgi(path, end+1, c);
322 07b0a142 2021-01-24 op return;
323 d3a08f4d 2021-01-17 op case FILE_MISSING:
324 d3a08f4d 2021-01-17 op break;
325 d3a08f4d 2021-01-17 op default:
326 d3a08f4d 2021-01-17 op goto err;
327 d3a08f4d 2021-01-17 op }
328 d3a08f4d 2021-01-17 op
329 d3a08f4d 2021-01-17 op *end = '/';
330 d3a08f4d 2021-01-17 op end--;
331 d3a08f4d 2021-01-17 op }
332 d3a08f4d 2021-01-17 op
333 d3a08f4d 2021-01-17 op err:
334 abc007d2 2021-02-08 op start_reply(c, NOT_FOUND, "not found");
335 07b0a142 2021-01-24 op return;
336 d3a08f4d 2021-01-17 op }
337 d3a08f4d 2021-01-17 op
338 9b8f5ed2 2021-02-03 op void
339 9b8f5ed2 2021-02-03 op mark_nonblock(int fd)
340 9b8f5ed2 2021-02-03 op {
341 9b8f5ed2 2021-02-03 op int flags;
342 9b8f5ed2 2021-02-03 op
343 9b8f5ed2 2021-02-03 op if ((flags = fcntl(fd, F_GETFL)) == -1)
344 9b8f5ed2 2021-02-03 op fatal("fcntl(F_GETFL): %s", strerror(errno));
345 9b8f5ed2 2021-02-03 op if (fcntl(fd, F_SETFL, flags | O_NONBLOCK) == -1)
346 9b8f5ed2 2021-02-03 op fatal("fcntl(F_SETFL): %s", strerror(errno));
347 9b8f5ed2 2021-02-03 op }
348 9b8f5ed2 2021-02-03 op
349 fe406389 2021-02-02 op static void
350 abc007d2 2021-02-08 op handle_handshake(int fd, short ev, void *d)
351 d3a08f4d 2021-01-17 op {
352 abc007d2 2021-02-08 op struct client *c = d;
353 d3a08f4d 2021-01-17 op struct vhost *h;
354 d3a08f4d 2021-01-17 op const char *servname;
355 a8d4a897 2021-01-29 op const char *parse_err = "unknown error";
356 d3a08f4d 2021-01-17 op
357 d3a08f4d 2021-01-17 op switch (tls_handshake(c->ctx)) {
358 d3a08f4d 2021-01-17 op case 0: /* success */
359 d3a08f4d 2021-01-17 op case -1: /* already handshaked */
360 d3a08f4d 2021-01-17 op break;
361 d3a08f4d 2021-01-17 op case TLS_WANT_POLLIN:
362 abc007d2 2021-02-08 op reschedule_read(fd, c, &handle_handshake);
363 d3a08f4d 2021-01-17 op return;
364 d3a08f4d 2021-01-17 op case TLS_WANT_POLLOUT:
365 abc007d2 2021-02-08 op reschedule_write(fd, c, &handle_handshake);
366 d3a08f4d 2021-01-17 op return;
367 d3a08f4d 2021-01-17 op default:
368 d3a08f4d 2021-01-17 op /* unreachable */
369 d3a08f4d 2021-01-17 op abort();
370 d3a08f4d 2021-01-17 op }
371 d3a08f4d 2021-01-17 op
372 d3a08f4d 2021-01-17 op servname = tls_conn_servername(c->ctx);
373 a8d4a897 2021-01-29 op if (!puny_decode(servname, c->domain, sizeof(c->domain), &parse_err)) {
374 3abf91b0 2021-02-07 op log_info(c, "puny_decode: %s", parse_err);
375 a8d4a897 2021-01-29 op goto err;
376 a8d4a897 2021-01-29 op }
377 d3a08f4d 2021-01-17 op
378 d3a08f4d 2021-01-17 op for (h = hosts; h->domain != NULL; ++h) {
379 3300cbe0 2021-01-27 op if (!fnmatch(h->domain, c->domain, 0))
380 ce79c944 2021-01-21 op break;
381 d3a08f4d 2021-01-17 op }
382 d3a08f4d 2021-01-17 op
383 3abf91b0 2021-02-07 op log_debug(c, "handshake: SNI: \"%s\"; decoded: \"%s\"; matched: \"%s\"",
384 3abf91b0 2021-02-07 op servname != NULL ? servname : "(null)",
385 3abf91b0 2021-02-07 op c->domain,
386 3abf91b0 2021-02-07 op h->domain != NULL ? h->domain : "(null)");
387 22c6d633 2021-01-27 op
388 d3a08f4d 2021-01-17 op if (h->domain != NULL) {
389 d3a08f4d 2021-01-17 op c->host = h;
390 abc007d2 2021-02-08 op handle_open_conn(fd, ev, c);
391 d3a08f4d 2021-01-17 op return;
392 d3a08f4d 2021-01-17 op }
393 d3a08f4d 2021-01-17 op
394 a8d4a897 2021-01-29 op err:
395 0ab65593 2021-01-21 op if (servname != NULL)
396 0ab65593 2021-01-21 op strncpy(c->req, servname, sizeof(c->req));
397 0ab65593 2021-01-21 op else
398 0ab65593 2021-01-21 op strncpy(c->req, "null", sizeof(c->req));
399 0ab65593 2021-01-21 op
400 abc007d2 2021-02-08 op start_reply(c, BAD_REQUEST, "Wrong/malformed host or missing SNI");
401 6abda252 2021-02-06 op }
402 6abda252 2021-02-06 op
403 6abda252 2021-02-06 op /* 1 if a matching `block return' (and apply it), 0 otherwise */
404 6abda252 2021-02-06 op static int
405 abc007d2 2021-02-08 op apply_block_return(struct client *c)
406 6abda252 2021-02-06 op {
407 6abda252 2021-02-06 op char *t, *path, buf[32];
408 6abda252 2021-02-06 op const char *fmt;
409 6abda252 2021-02-06 op int strip, code;
410 6abda252 2021-02-06 op size_t i;
411 6abda252 2021-02-06 op
412 6abda252 2021-02-06 op if (!vhost_block_return(c->host, c->iri.path, &code, &fmt))
413 6abda252 2021-02-06 op return 0;
414 6abda252 2021-02-06 op
415 6abda252 2021-02-06 op strip = vhost_strip(c->host, c->iri.path);
416 6abda252 2021-02-06 op path = c->iri.path;
417 6abda252 2021-02-06 op while (strip > 0) {
418 6abda252 2021-02-06 op if ((t = strchr(path, '/')) == NULL) {
419 6abda252 2021-02-06 op path = strchr(path, '\0');
420 6abda252 2021-02-06 op break;
421 6abda252 2021-02-06 op }
422 6abda252 2021-02-06 op path = t;
423 6abda252 2021-02-06 op strip--;
424 6abda252 2021-02-06 op }
425 6abda252 2021-02-06 op
426 6abda252 2021-02-06 op memset(buf, 0, sizeof(buf));
427 6abda252 2021-02-06 op for (i = 0; *fmt; ++fmt) {
428 6abda252 2021-02-06 op if (i == sizeof(buf)-1 || *fmt == '%') {
429 6abda252 2021-02-06 op strlcat(c->sbuf, buf, sizeof(c->sbuf));
430 6abda252 2021-02-06 op memset(buf, 0, sizeof(buf));
431 6abda252 2021-02-06 op i = 0;
432 6abda252 2021-02-06 op }
433 6abda252 2021-02-06 op
434 6abda252 2021-02-06 op if (*fmt != '%') {
435 6abda252 2021-02-06 op buf[i++] = *fmt;
436 6abda252 2021-02-06 op continue;
437 6abda252 2021-02-06 op }
438 6abda252 2021-02-06 op
439 6abda252 2021-02-06 op switch (*++fmt) {
440 6abda252 2021-02-06 op case '%':
441 6abda252 2021-02-06 op strlcat(c->sbuf, "%", sizeof(c->sbuf));
442 6abda252 2021-02-06 op break;
443 6abda252 2021-02-06 op case 'p':
444 6abda252 2021-02-06 op strlcat(c->sbuf, path, sizeof(c->sbuf));
445 6abda252 2021-02-06 op break;
446 6abda252 2021-02-06 op case 'q':
447 6abda252 2021-02-06 op strlcat(c->sbuf, c->iri.query, sizeof(c->sbuf));
448 6abda252 2021-02-06 op break;
449 6abda252 2021-02-06 op case 'P':
450 6abda252 2021-02-06 op snprintf(buf, sizeof(buf), "%d", conf.port);
451 6abda252 2021-02-06 op strlcat(c->sbuf, buf, sizeof(c->sbuf));
452 6abda252 2021-02-06 op memset(buf, 0, sizeof(buf));
453 6abda252 2021-02-06 op break;
454 6abda252 2021-02-06 op case 'N':
455 6abda252 2021-02-06 op strlcat(c->sbuf, c->domain, sizeof(c->sbuf));
456 6abda252 2021-02-06 op break;
457 6abda252 2021-02-06 op default:
458 6abda252 2021-02-06 op fatal("%s: unknown fmt specifier %c",
459 6abda252 2021-02-06 op __func__, *fmt);
460 6abda252 2021-02-06 op }
461 6abda252 2021-02-06 op }
462 6abda252 2021-02-06 op
463 6abda252 2021-02-06 op if (i != 0)
464 6abda252 2021-02-06 op strlcat(c->sbuf, buf, sizeof(c->sbuf));
465 6abda252 2021-02-06 op
466 abc007d2 2021-02-08 op start_reply(c, code, c->sbuf);
467 6abda252 2021-02-06 op return 1;
468 d3a08f4d 2021-01-17 op }
469 d3a08f4d 2021-01-17 op
470 fe406389 2021-02-02 op static void
471 abc007d2 2021-02-08 op handle_open_conn(int fd, short ev, void *d)
472 d3a08f4d 2021-01-17 op {
473 abc007d2 2021-02-08 op struct client *c = d;
474 d3a08f4d 2021-01-17 op const char *parse_err = "invalid request";
475 3300cbe0 2021-01-27 op char decoded[DOMAIN_NAME_LEN];
476 d3a08f4d 2021-01-17 op
477 0be51733 2021-01-20 op bzero(c->req, sizeof(c->req));
478 0be51733 2021-01-20 op bzero(&c->iri, sizeof(c->iri));
479 d3a08f4d 2021-01-17 op
480 0be51733 2021-01-20 op switch (tls_read(c->ctx, c->req, sizeof(c->req)-1)) {
481 d3a08f4d 2021-01-17 op case -1:
482 3abf91b0 2021-02-07 op log_err(c, "tls_read: %s", tls_error(c->ctx));
483 abc007d2 2021-02-08 op close_conn(fd, ev, c);
484 d3a08f4d 2021-01-17 op return;
485 d3a08f4d 2021-01-17 op
486 d3a08f4d 2021-01-17 op case TLS_WANT_POLLIN:
487 abc007d2 2021-02-08 op reschedule_read(fd, c, &handle_open_conn);
488 d3a08f4d 2021-01-17 op return;
489 d3a08f4d 2021-01-17 op
490 d3a08f4d 2021-01-17 op case TLS_WANT_POLLOUT:
491 abc007d2 2021-02-08 op reschedule_write(fd, c, &handle_open_conn);
492 d3a08f4d 2021-01-17 op return;
493 d3a08f4d 2021-01-17 op }
494 d3a08f4d 2021-01-17 op
495 c4f682f8 2021-01-27 op if (!trim_req_iri(c->req, &parse_err)
496 a2fd8013 2021-01-29 op || !parse_iri(c->req, &c->iri, &parse_err)
497 a2fd8013 2021-01-29 op || !puny_decode(c->iri.host, decoded, sizeof(decoded), &parse_err)) {
498 3abf91b0 2021-02-07 op log_info(c, "iri parse error: %s", parse_err);
499 abc007d2 2021-02-08 op start_reply(c, BAD_REQUEST, "invalid request");
500 d3a08f4d 2021-01-17 op return;
501 d3a08f4d 2021-01-17 op }
502 d3a08f4d 2021-01-17 op
503 3300cbe0 2021-01-27 op if (c->iri.port_no != conf.port
504 3300cbe0 2021-01-27 op || strcmp(c->iri.schema, "gemini")
505 3300cbe0 2021-01-27 op || strcmp(decoded, c->domain)) {
506 abc007d2 2021-02-08 op start_reply(c, PROXY_REFUSED, "won't proxy request");
507 d3a08f4d 2021-01-17 op return;
508 d3a08f4d 2021-01-17 op }
509 d3a08f4d 2021-01-17 op
510 abc007d2 2021-02-08 op if (apply_block_return(c))
511 e3ddf390 2021-02-06 op return;
512 e3ddf390 2021-02-06 op
513 e3ddf390 2021-02-06 op if (c->host->entrypoint != NULL) {
514 abc007d2 2021-02-08 op start_cgi(c->host->entrypoint, c->iri.path, c);
515 e3ddf390 2021-02-06 op return;
516 e3ddf390 2021-02-06 op }
517 e3ddf390 2021-02-06 op
518 abc007d2 2021-02-08 op open_file(c);
519 d3a08f4d 2021-01-17 op }
520 d3a08f4d 2021-01-17 op
521 fe406389 2021-02-02 op static void
522 abc007d2 2021-02-08 op start_reply(struct client *c, int code, const char *meta)
523 d3a08f4d 2021-01-17 op {
524 112802ea 2021-02-01 op c->code = code;
525 112802ea 2021-02-01 op c->meta = meta;
526 abc007d2 2021-02-08 op handle_start_reply(c->fd, 0, c);
527 112802ea 2021-02-01 op }
528 112802ea 2021-02-01 op
529 fe406389 2021-02-02 op static void
530 abc007d2 2021-02-08 op handle_start_reply(int fd, short ev, void *d)
531 112802ea 2021-02-01 op {
532 abc007d2 2021-02-08 op struct client *c = d;
533 05c23a54 2021-01-19 op char buf[1030]; /* status + ' ' + max reply len + \r\n\0 */
534 c8b74339 2021-01-24 op const char *lang;
535 0be51733 2021-01-20 op size_t len;
536 d3a08f4d 2021-01-17 op
537 c8b74339 2021-01-24 op lang = vhost_lang(c->host, c->iri.path);
538 c8b74339 2021-01-24 op
539 112802ea 2021-02-01 op snprintf(buf, sizeof(buf), "%d ", c->code);
540 112802ea 2021-02-01 op strlcat(buf, c->meta, sizeof(buf));
541 112802ea 2021-02-01 op if (!strcmp(c->meta, "text/gemini") && lang != NULL) {
542 05c23a54 2021-01-19 op strlcat(buf, "; lang=", sizeof(buf));
543 c8b74339 2021-01-24 op strlcat(buf, lang, sizeof(buf));
544 05c23a54 2021-01-19 op }
545 05c23a54 2021-01-19 op
546 05c23a54 2021-01-19 op len = strlcat(buf, "\r\n", sizeof(buf));
547 0be51733 2021-01-20 op assert(len < sizeof(buf));
548 d3a08f4d 2021-01-17 op
549 df79b4c1 2021-01-19 op switch (tls_write(c->ctx, buf, len)) {
550 a87f6625 2021-01-24 op case -1:
551 abc007d2 2021-02-08 op close_conn(fd, ev, c);
552 a87f6625 2021-01-24 op return;
553 d3a08f4d 2021-01-17 op case TLS_WANT_POLLIN:
554 abc007d2 2021-02-08 op reschedule_read(fd, c, &handle_start_reply);
555 a87f6625 2021-01-24 op return;
556 d3a08f4d 2021-01-17 op case TLS_WANT_POLLOUT:
557 abc007d2 2021-02-08 op reschedule_write(fd, c, &handle_start_reply);
558 a87f6625 2021-01-24 op return;
559 d3a08f4d 2021-01-17 op }
560 a87f6625 2021-01-24 op
561 a87f6625 2021-01-24 op log_request(c, buf, sizeof(buf));
562 a87f6625 2021-01-24 op
563 abc007d2 2021-02-08 op if (c->code != SUCCESS)
564 abc007d2 2021-02-08 op close_conn(fd, ev, c);
565 abc007d2 2021-02-08 op else
566 abc007d2 2021-02-08 op c->next(fd, ev, c);
567 d3a08f4d 2021-01-17 op }
568 d3a08f4d 2021-01-17 op
569 fe406389 2021-02-02 op static void
570 abc007d2 2021-02-08 op start_cgi(const char *spath, const char *relpath, struct client *c)
571 d3a08f4d 2021-01-17 op {
572 d3a08f4d 2021-01-17 op char addr[NI_MAXHOST];
573 d3a08f4d 2021-01-17 op int e;
574 d3a08f4d 2021-01-17 op
575 d3a08f4d 2021-01-17 op e = getnameinfo((struct sockaddr*)&c->addr, sizeof(c->addr),
576 d3a08f4d 2021-01-17 op addr, sizeof(addr),
577 d3a08f4d 2021-01-17 op NULL, 0,
578 d3a08f4d 2021-01-17 op NI_NUMERICHOST);
579 d3a08f4d 2021-01-17 op if (e != 0)
580 d3a08f4d 2021-01-17 op goto err;
581 d3a08f4d 2021-01-17 op
582 2fafa2d2 2021-02-01 op if (!send_iri(exfd, &c->iri)
583 2fafa2d2 2021-02-01 op || !send_string(exfd, spath)
584 d3a08f4d 2021-01-17 op || !send_string(exfd, relpath)
585 d3a08f4d 2021-01-17 op || !send_string(exfd, addr)
586 b63e30ff 2021-02-07 op || !send_string(exfd, tls_peer_cert_subject(c->ctx))
587 b63e30ff 2021-02-07 op || !send_string(exfd, tls_peer_cert_issuer(c->ctx))
588 b63e30ff 2021-02-07 op || !send_string(exfd, tls_peer_cert_hash(c->ctx))
589 b63e30ff 2021-02-07 op || !send_time(exfd, tls_peer_cert_notbefore(c->ctx))
590 b63e30ff 2021-02-07 op || !send_time(exfd, tls_peer_cert_notafter(c->ctx))
591 d3a08f4d 2021-01-17 op || !send_vhost(exfd, c->host))
592 d3a08f4d 2021-01-17 op goto err;
593 d3a08f4d 2021-01-17 op
594 abc007d2 2021-02-08 op close(c->pfd);
595 abc007d2 2021-02-08 op if ((c->pfd = recv_fd(exfd)) == -1) {
596 abc007d2 2021-02-08 op start_reply(c, TEMP_FAILURE, "internal server error");
597 07b0a142 2021-01-24 op return;
598 d3a08f4d 2021-01-17 op }
599 35744950 2021-02-01 op
600 abc007d2 2021-02-08 op reschedule_read(c->pfd, c, &handle_cgi_reply);
601 07b0a142 2021-01-24 op return;
602 d3a08f4d 2021-01-17 op
603 d3a08f4d 2021-01-17 op err:
604 d3a08f4d 2021-01-17 op /* fatal("cannot talk to the executor process: %s", strerror(errno)); */
605 132cae8c 2021-01-18 op fatal("cannot talk to the executor process");
606 d3a08f4d 2021-01-17 op }
607 d3a08f4d 2021-01-17 op
608 fe406389 2021-02-02 op static void
609 abc007d2 2021-02-08 op send_file(int fd, short ev, void *d)
610 d3a08f4d 2021-01-17 op {
611 abc007d2 2021-02-08 op struct client *c = d;
612 d3a08f4d 2021-01-17 op ssize_t ret, len;
613 d3a08f4d 2021-01-17 op
614 d3a08f4d 2021-01-17 op len = (c->buf + c->len) - c->i;
615 d3a08f4d 2021-01-17 op
616 d3a08f4d 2021-01-17 op while (len > 0) {
617 d3a08f4d 2021-01-17 op switch (ret = tls_write(c->ctx, c->i, len)) {
618 d3a08f4d 2021-01-17 op case -1:
619 3abf91b0 2021-02-07 op log_err(c, "tls_write: %s", tls_error(c->ctx));
620 abc007d2 2021-02-08 op close_conn(fd, ev, c);
621 d3a08f4d 2021-01-17 op return;
622 d3a08f4d 2021-01-17 op
623 d3a08f4d 2021-01-17 op case TLS_WANT_POLLIN:
624 abc007d2 2021-02-08 op reschedule_read(fd, c, &send_file);
625 d3a08f4d 2021-01-17 op return;
626 d3a08f4d 2021-01-17 op
627 d3a08f4d 2021-01-17 op case TLS_WANT_POLLOUT:
628 abc007d2 2021-02-08 op reschedule_write(fd, c, &send_file);
629 d3a08f4d 2021-01-17 op return;
630 d3a08f4d 2021-01-17 op
631 d3a08f4d 2021-01-17 op default:
632 d3a08f4d 2021-01-17 op c->i += ret;
633 d3a08f4d 2021-01-17 op len -= ret;
634 d3a08f4d 2021-01-17 op break;
635 d3a08f4d 2021-01-17 op }
636 d3a08f4d 2021-01-17 op }
637 d3a08f4d 2021-01-17 op
638 abc007d2 2021-02-08 op close_conn(fd, ev, c);
639 d3a08f4d 2021-01-17 op }
640 d3a08f4d 2021-01-17 op
641 fe406389 2021-02-02 op static void
642 abc007d2 2021-02-08 op open_dir(struct client *c)
643 d3a08f4d 2021-01-17 op {
644 d3a08f4d 2021-01-17 op size_t len;
645 252908e6 2021-01-24 op int dirfd;
646 252908e6 2021-01-24 op char *before_file;
647 d1ca3911 2021-01-21 op
648 0be51733 2021-01-20 op len = strlen(c->iri.path);
649 252908e6 2021-01-24 op if (len > 0 && !ends_with(c->iri.path, "/")) {
650 abc007d2 2021-02-08 op redirect_canonical_dir(c);
651 0be51733 2021-01-20 op return;
652 d3a08f4d 2021-01-17 op }
653 d3a08f4d 2021-01-17 op
654 252908e6 2021-01-24 op strlcpy(c->sbuf, "/", sizeof(c->sbuf));
655 d1ca3911 2021-01-21 op strlcat(c->sbuf, c->iri.path, sizeof(c->sbuf));
656 d1ca3911 2021-01-21 op if (!ends_with(c->sbuf, "/"))
657 0be51733 2021-01-20 op strlcat(c->sbuf, "/", sizeof(c->sbuf));
658 252908e6 2021-01-24 op before_file = strchr(c->sbuf, '\0');
659 c8b74339 2021-01-24 op len = strlcat(c->sbuf, vhost_index(c->host, c->iri.path),
660 c8b74339 2021-01-24 op sizeof(c->sbuf));
661 252908e6 2021-01-24 op if (len >= sizeof(c->sbuf)) {
662 abc007d2 2021-02-08 op start_reply(c, TEMP_FAILURE, "internal server error");
663 252908e6 2021-01-24 op return;
664 252908e6 2021-01-24 op }
665 d3a08f4d 2021-01-17 op
666 252908e6 2021-01-24 op c->iri.path = c->sbuf;
667 252908e6 2021-01-24 op
668 252908e6 2021-01-24 op /* close later unless we have to generate the dir listing */
669 abc007d2 2021-02-08 op dirfd = c->pfd;
670 abc007d2 2021-02-08 op c->pfd = -1;
671 252908e6 2021-01-24 op
672 abc007d2 2021-02-08 op switch (check_path(c, c->iri.path, &c->pfd)) {
673 252908e6 2021-01-24 op case FILE_EXECUTABLE:
674 87f2b68b 2021-02-02 op if (c->host->cgi != NULL && !fnmatch(c->host->cgi, c->iri.path, 0)) {
675 abc007d2 2021-02-08 op start_cgi(c->iri.path, "", c);
676 252908e6 2021-01-24 op break;
677 252908e6 2021-01-24 op }
678 252908e6 2021-01-24 op
679 252908e6 2021-01-24 op /* fallthrough */
680 252908e6 2021-01-24 op
681 252908e6 2021-01-24 op case FILE_EXISTS:
682 abc007d2 2021-02-08 op load_file(c);
683 252908e6 2021-01-24 op break;
684 252908e6 2021-01-24 op
685 252908e6 2021-01-24 op case FILE_DIRECTORY:
686 abc007d2 2021-02-08 op start_reply(c, TEMP_REDIRECT, c->sbuf);
687 252908e6 2021-01-24 op break;
688 252908e6 2021-01-24 op
689 252908e6 2021-01-24 op case FILE_MISSING:
690 252908e6 2021-01-24 op *before_file = '\0';
691 252908e6 2021-01-24 op
692 252908e6 2021-01-24 op if (!vhost_auto_index(c->host, c->iri.path)) {
693 abc007d2 2021-02-08 op start_reply(c, NOT_FOUND, "not found");
694 252908e6 2021-01-24 op break;
695 252908e6 2021-01-24 op }
696 252908e6 2021-01-24 op
697 abc007d2 2021-02-08 op c->pfd = dirfd;
698 5f715ce4 2021-02-02 op c->next = enter_handle_dirlist;
699 252908e6 2021-01-24 op
700 abc007d2 2021-02-08 op if ((c->dir = fdopendir(c->pfd)) == NULL) {
701 3abf91b0 2021-02-07 op log_err(c, "fdopendir(%d) (vhost:%s) %s: %s",
702 abc007d2 2021-02-08 op c->pfd, c->host->domain, c->iri.path, strerror(errno));
703 abc007d2 2021-02-08 op start_reply(c, TEMP_FAILURE, "internal server error");
704 252908e6 2021-01-24 op return;
705 252908e6 2021-01-24 op }
706 252908e6 2021-01-24 op c->off = 0;
707 252908e6 2021-01-24 op
708 abc007d2 2021-02-08 op start_reply(c, SUCCESS, "text/gemini");
709 252908e6 2021-01-24 op return;
710 252908e6 2021-01-24 op
711 252908e6 2021-01-24 op default:
712 252908e6 2021-01-24 op /* unreachable */
713 252908e6 2021-01-24 op abort();
714 252908e6 2021-01-24 op }
715 252908e6 2021-01-24 op
716 252908e6 2021-01-24 op close(dirfd);
717 252908e6 2021-01-24 op }
718 252908e6 2021-01-24 op
719 fe406389 2021-02-02 op static void
720 abc007d2 2021-02-08 op redirect_canonical_dir(struct client *c)
721 252908e6 2021-01-24 op {
722 252908e6 2021-01-24 op size_t len;
723 252908e6 2021-01-24 op
724 252908e6 2021-01-24 op strlcpy(c->sbuf, "/", sizeof(c->sbuf));
725 252908e6 2021-01-24 op strlcat(c->sbuf, c->iri.path, sizeof(c->sbuf));
726 252908e6 2021-01-24 op len = strlcat(c->sbuf, "/", sizeof(c->sbuf));
727 252908e6 2021-01-24 op
728 0be51733 2021-01-20 op if (len >= sizeof(c->sbuf)) {
729 abc007d2 2021-02-08 op start_reply(c, TEMP_FAILURE, "internal server error");
730 0be51733 2021-01-20 op return;
731 0be51733 2021-01-20 op }
732 0be51733 2021-01-20 op
733 abc007d2 2021-02-08 op start_reply(c, TEMP_REDIRECT, c->sbuf);
734 d3a08f4d 2021-01-17 op }
735 5f715ce4 2021-02-02 op
736 fe406389 2021-02-02 op static void
737 abc007d2 2021-02-08 op enter_handle_dirlist(int fd, short ev, void *d)
738 5f715ce4 2021-02-02 op {
739 abc007d2 2021-02-08 op struct client *c = d;
740 5f715ce4 2021-02-02 op char b[PATH_MAX];
741 5f715ce4 2021-02-02 op size_t l;
742 d3a08f4d 2021-01-17 op
743 5f715ce4 2021-02-02 op strlcpy(b, c->iri.path, sizeof(b));
744 5f715ce4 2021-02-02 op l = snprintf(c->sbuf, sizeof(c->sbuf),
745 5f715ce4 2021-02-02 op "# Index of %s\n\n", b);
746 5f715ce4 2021-02-02 op if (l >= sizeof(c->sbuf)) {
747 5f715ce4 2021-02-02 op /* this is impossible, given that we have enough space
748 5f715ce4 2021-02-02 op * in c->sbuf to hold the ancilliary string plus the
749 5f715ce4 2021-02-02 op * full path; but it wouldn't read nice without some
750 5f715ce4 2021-02-02 op * error checking, and I'd like to avoid a strlen. */
751 abc007d2 2021-02-08 op close_conn(fd, ev, c);
752 5f715ce4 2021-02-02 op return;
753 5f715ce4 2021-02-02 op }
754 5f715ce4 2021-02-02 op
755 abc007d2 2021-02-08 op c->len = l;
756 abc007d2 2021-02-08 op handle_dirlist(fd, ev, c);
757 5f715ce4 2021-02-02 op }
758 5f715ce4 2021-02-02 op
759 fe406389 2021-02-02 op static void
760 abc007d2 2021-02-08 op handle_dirlist(int fd, short ev, void *d)
761 5f715ce4 2021-02-02 op {
762 abc007d2 2021-02-08 op struct client *c = d;
763 5f715ce4 2021-02-02 op ssize_t r;
764 5f715ce4 2021-02-02 op
765 5f715ce4 2021-02-02 op while (c->len > 0) {
766 5f715ce4 2021-02-02 op switch (r = tls_write(c->ctx, c->sbuf + c->off, c->len)) {
767 5f715ce4 2021-02-02 op case -1:
768 abc007d2 2021-02-08 op close_conn(fd, ev, c);
769 5f715ce4 2021-02-02 op return;
770 5f715ce4 2021-02-02 op case TLS_WANT_POLLOUT:
771 abc007d2 2021-02-08 op reschedule_read(fd, c, &handle_dirlist);
772 5f715ce4 2021-02-02 op return;
773 5f715ce4 2021-02-02 op case TLS_WANT_POLLIN:
774 abc007d2 2021-02-08 op reschedule_write(fd, c, &handle_dirlist);
775 5f715ce4 2021-02-02 op return;
776 5f715ce4 2021-02-02 op default:
777 5f715ce4 2021-02-02 op c->off += r;
778 5f715ce4 2021-02-02 op c->len -= r;
779 5f715ce4 2021-02-02 op }
780 5f715ce4 2021-02-02 op }
781 5f715ce4 2021-02-02 op
782 abc007d2 2021-02-08 op send_directory_listing(fd, ev, c);
783 5f715ce4 2021-02-02 op }
784 5f715ce4 2021-02-02 op
785 fe406389 2021-02-02 op static int
786 252908e6 2021-01-24 op read_next_dir_entry(struct client *c)
787 252908e6 2021-01-24 op {
788 252908e6 2021-01-24 op struct dirent *d;
789 252908e6 2021-01-24 op
790 252908e6 2021-01-24 op do {
791 252908e6 2021-01-24 op errno = 0;
792 252908e6 2021-01-24 op if ((d = readdir(c->dir)) == NULL) {
793 252908e6 2021-01-24 op if (errno != 0)
794 3abf91b0 2021-02-07 op log_err(c, "readdir: %s", strerror(errno));
795 252908e6 2021-01-24 op return 0;
796 252908e6 2021-01-24 op }
797 252908e6 2021-01-24 op } while (!strcmp(d->d_name, "."));
798 252908e6 2021-01-24 op
799 252908e6 2021-01-24 op /* XXX: url escape */
800 252908e6 2021-01-24 op snprintf(c->sbuf, sizeof(c->sbuf), "=> %s %s\n",
801 252908e6 2021-01-24 op d->d_name, d->d_name);
802 252908e6 2021-01-24 op c->len = strlen(c->sbuf);
803 252908e6 2021-01-24 op c->off = 0;
804 252908e6 2021-01-24 op
805 252908e6 2021-01-24 op return 1;
806 252908e6 2021-01-24 op }
807 252908e6 2021-01-24 op
808 fe406389 2021-02-02 op static void
809 abc007d2 2021-02-08 op send_directory_listing(int fd, short ev, void *d)
810 252908e6 2021-01-24 op {
811 abc007d2 2021-02-08 op struct client *c = d;
812 252908e6 2021-01-24 op ssize_t r;
813 252908e6 2021-01-24 op
814 252908e6 2021-01-24 op while (1) {
815 252908e6 2021-01-24 op if (c->len == 0) {
816 252908e6 2021-01-24 op if (!read_next_dir_entry(c))
817 252908e6 2021-01-24 op goto end;
818 252908e6 2021-01-24 op }
819 252908e6 2021-01-24 op
820 252908e6 2021-01-24 op while (c->len > 0) {
821 252908e6 2021-01-24 op switch (r = tls_write(c->ctx, c->sbuf + c->off, c->len)) {
822 252908e6 2021-01-24 op case -1:
823 252908e6 2021-01-24 op goto end;
824 252908e6 2021-01-24 op
825 252908e6 2021-01-24 op case TLS_WANT_POLLOUT:
826 abc007d2 2021-02-08 op reschedule_read(fd, c, &send_directory_listing);
827 252908e6 2021-01-24 op return;
828 252908e6 2021-01-24 op
829 252908e6 2021-01-24 op case TLS_WANT_POLLIN:
830 abc007d2 2021-02-08 op reschedule_write(fd, c, &send_directory_listing);
831 252908e6 2021-01-24 op return;
832 252908e6 2021-01-24 op
833 252908e6 2021-01-24 op default:
834 252908e6 2021-01-24 op c->off += r;
835 252908e6 2021-01-24 op c->len -= r;
836 252908e6 2021-01-24 op break;
837 252908e6 2021-01-24 op }
838 252908e6 2021-01-24 op }
839 252908e6 2021-01-24 op }
840 252908e6 2021-01-24 op
841 252908e6 2021-01-24 op end:
842 abc007d2 2021-02-08 op close_conn(fd, ev, d);
843 252908e6 2021-01-24 op }
844 252908e6 2021-01-24 op
845 35744950 2021-02-01 op /* accumulate the meta line from the cgi script. */
846 fe406389 2021-02-02 op static void
847 abc007d2 2021-02-08 op handle_cgi_reply(int fd, short ev, void *d)
848 3309ef97 2021-01-23 op {
849 abc007d2 2021-02-08 op struct client *c = d;
850 35744950 2021-02-01 op void *buf, *e;
851 3309ef97 2021-01-23 op size_t len;
852 3309ef97 2021-01-23 op ssize_t r;
853 3309ef97 2021-01-23 op
854 abc007d2 2021-02-08 op
855 35744950 2021-02-01 op buf = c->sbuf + c->len;
856 35744950 2021-02-01 op len = sizeof(c->sbuf) - c->len;
857 3309ef97 2021-01-23 op
858 abc007d2 2021-02-08 op r = read(c->pfd, buf, len);
859 35744950 2021-02-01 op if (r == 0 || r == -1) {
860 abc007d2 2021-02-08 op start_reply(c, CGI_ERROR, "CGI error");
861 35744950 2021-02-01 op return;
862 3309ef97 2021-01-23 op }
863 3309ef97 2021-01-23 op
864 3309ef97 2021-01-23 op c->len += r;
865 3309ef97 2021-01-23 op
866 35744950 2021-02-01 op /* TODO: error if the CGI script don't reply correctly */
867 35744950 2021-02-01 op e = strchr(c->sbuf, '\n');
868 35744950 2021-02-01 op if (e != NULL || c->len == sizeof(c->sbuf)) {
869 3309ef97 2021-01-23 op log_request(c, c->sbuf, c->len);
870 3309ef97 2021-01-23 op
871 35744950 2021-02-01 op c->off = 0;
872 abc007d2 2021-02-08 op handle_cgi(fd, ev, c);
873 35744950 2021-02-01 op return;
874 35744950 2021-02-01 op }
875 abc007d2 2021-02-08 op
876 abc007d2 2021-02-08 op reschedule_read(fd, c, &handle_cgi_reply);
877 3309ef97 2021-01-23 op }
878 3309ef97 2021-01-23 op
879 fe406389 2021-02-02 op static void
880 abc007d2 2021-02-08 op handle_cgi(int fd, short ev, void *d)
881 d3a08f4d 2021-01-17 op {
882 abc007d2 2021-02-08 op struct client *c = d;
883 d3a08f4d 2021-01-17 op ssize_t r;
884 d3a08f4d 2021-01-17 op
885 d3a08f4d 2021-01-17 op while (1) {
886 35744950 2021-02-01 op if (c->len == 0) {
887 abc007d2 2021-02-08 op switch (r = read(c->pfd, c->sbuf, sizeof(c->sbuf))) {
888 3309ef97 2021-01-23 op case 0:
889 d3a08f4d 2021-01-17 op goto end;
890 3309ef97 2021-01-23 op case -1:
891 d3a08f4d 2021-01-17 op if (errno == EAGAIN || errno == EWOULDBLOCK) {
892 abc007d2 2021-02-08 op reschedule_read(c->pfd, c, &handle_cgi);
893 d3a08f4d 2021-01-17 op return;
894 d3a08f4d 2021-01-17 op }
895 3309ef97 2021-01-23 op goto end;
896 35744950 2021-02-01 op default:
897 35744950 2021-02-01 op c->len = r;
898 35744950 2021-02-01 op c->off = 0;
899 d3a08f4d 2021-01-17 op }
900 3309ef97 2021-01-23 op }
901 0be51733 2021-01-20 op
902 d3a08f4d 2021-01-17 op while (c->len > 0) {
903 d3a08f4d 2021-01-17 op switch (r = tls_write(c->ctx, c->sbuf + c->off, c->len)) {
904 d3a08f4d 2021-01-17 op case -1:
905 d3a08f4d 2021-01-17 op goto end;
906 d3a08f4d 2021-01-17 op
907 d3a08f4d 2021-01-17 op case TLS_WANT_POLLOUT:
908 abc007d2 2021-02-08 op reschedule_read(c->fd, c, &handle_cgi);
909 d3a08f4d 2021-01-17 op return;
910 d3a08f4d 2021-01-17 op
911 d3a08f4d 2021-01-17 op case TLS_WANT_POLLIN:
912 abc007d2 2021-02-08 op reschedule_write(c->fd, c, &handle_cgi);
913 d3a08f4d 2021-01-17 op return;
914 d3a08f4d 2021-01-17 op
915 d3a08f4d 2021-01-17 op default:
916 d3a08f4d 2021-01-17 op c->off += r;
917 d3a08f4d 2021-01-17 op c->len -= r;
918 d3a08f4d 2021-01-17 op break;
919 d3a08f4d 2021-01-17 op }
920 d3a08f4d 2021-01-17 op }
921 d3a08f4d 2021-01-17 op }
922 d3a08f4d 2021-01-17 op
923 d3a08f4d 2021-01-17 op end:
924 abc007d2 2021-02-08 op close_conn(c->fd, ev, d);
925 d3a08f4d 2021-01-17 op }
926 d3a08f4d 2021-01-17 op
927 fe406389 2021-02-02 op static void
928 abc007d2 2021-02-08 op close_conn(int fd, short ev, void *d)
929 d3a08f4d 2021-01-17 op {
930 abc007d2 2021-02-08 op struct client *c = d;
931 d3a08f4d 2021-01-17 op
932 d3a08f4d 2021-01-17 op switch (tls_close(c->ctx)) {
933 d3a08f4d 2021-01-17 op case TLS_WANT_POLLIN:
934 abc007d2 2021-02-08 op reschedule_read(fd, c, &close_conn);
935 d3a08f4d 2021-01-17 op return;
936 d3a08f4d 2021-01-17 op case TLS_WANT_POLLOUT:
937 abc007d2 2021-02-08 op reschedule_read(fd, c, &close_conn);
938 d3a08f4d 2021-01-17 op return;
939 d3a08f4d 2021-01-17 op }
940 d3a08f4d 2021-01-17 op
941 d3a08f4d 2021-01-17 op connected_clients--;
942 d3a08f4d 2021-01-17 op
943 d3a08f4d 2021-01-17 op tls_free(c->ctx);
944 d3a08f4d 2021-01-17 op c->ctx = NULL;
945 d3a08f4d 2021-01-17 op
946 d3a08f4d 2021-01-17 op if (c->buf != MAP_FAILED)
947 d3a08f4d 2021-01-17 op munmap(c->buf, c->len);
948 d3a08f4d 2021-01-17 op
949 abc007d2 2021-02-08 op if (c->pfd != -1)
950 abc007d2 2021-02-08 op close(c->pfd);
951 d3a08f4d 2021-01-17 op
952 252908e6 2021-01-24 op if (c->dir != NULL)
953 252908e6 2021-01-24 op closedir(c->dir);
954 252908e6 2021-01-24 op
955 abc007d2 2021-02-08 op close(c->fd);
956 abc007d2 2021-02-08 op c->fd = -1;
957 f890c8c5 2021-01-22 op }
958 f890c8c5 2021-01-22 op
959 fe406389 2021-02-02 op static void
960 abc007d2 2021-02-08 op do_accept(int sock, short et, void *d)
961 d3a08f4d 2021-01-17 op {
962 abc007d2 2021-02-08 op struct client *c;
963 abc007d2 2021-02-08 op struct server *s = d;
964 d3a08f4d 2021-01-17 op struct sockaddr_storage addr;
965 abc007d2 2021-02-08 op struct sockaddr *saddr;
966 d3a08f4d 2021-01-17 op socklen_t len;
967 abc007d2 2021-02-08 op int i, fd;
968 d3a08f4d 2021-01-17 op
969 abc007d2 2021-02-08 op (void)et;
970 abc007d2 2021-02-08 op
971 abc007d2 2021-02-08 op
972 abc007d2 2021-02-08 op saddr = (struct sockaddr*)&addr;
973 d3a08f4d 2021-01-17 op len = sizeof(addr);
974 abc007d2 2021-02-08 op if ((fd = accept4(sock, saddr, &len, SOCK_NONBLOCK)) == -1) {
975 cfb8a77f 2021-02-07 op if (errno == EWOULDBLOCK || errno == EAGAIN)
976 d3a08f4d 2021-01-17 op return;
977 d3a08f4d 2021-01-17 op fatal("accept: %s", strerror(errno));
978 d3a08f4d 2021-01-17 op }
979 d3a08f4d 2021-01-17 op
980 d3a08f4d 2021-01-17 op for (i = 0; i < MAX_USERS; ++i) {
981 abc007d2 2021-02-08 op c = &s->clients[i];
982 abc007d2 2021-02-08 op if (c->fd == -1) {
983 abc007d2 2021-02-08 op memset(c, 0, sizeof(*c));
984 abc007d2 2021-02-08 op if (tls_accept_socket(s->ctx, &c->ctx, fd) == -1)
985 d3a08f4d 2021-01-17 op break; /* goodbye fd! */
986 d3a08f4d 2021-01-17 op
987 abc007d2 2021-02-08 op c->fd = fd;
988 abc007d2 2021-02-08 op c->pfd = -1;
989 abc007d2 2021-02-08 op c->buf = MAP_FAILED;
990 abc007d2 2021-02-08 op c->dir = NULL;
991 abc007d2 2021-02-08 op c->addr = addr;
992 d3a08f4d 2021-01-17 op
993 abc007d2 2021-02-08 op reschedule_read(fd, c, &handle_handshake);
994 d3a08f4d 2021-01-17 op connected_clients++;
995 d3a08f4d 2021-01-17 op return;
996 d3a08f4d 2021-01-17 op }
997 d3a08f4d 2021-01-17 op }
998 d3a08f4d 2021-01-17 op
999 d3a08f4d 2021-01-17 op close(fd);
1000 d3a08f4d 2021-01-17 op }
1001 d3a08f4d 2021-01-17 op
1002 abc007d2 2021-02-08 op static void
1003 abc007d2 2021-02-08 op handle_sighup(int fd, short ev, void *d)
1004 d3a08f4d 2021-01-17 op {
1005 abc007d2 2021-02-08 op struct server_events *events = d;
1006 d3a08f4d 2021-01-17 op
1007 abc007d2 2021-02-08 op (void)fd;
1008 abc007d2 2021-02-08 op (void)ev;
1009 d3a08f4d 2021-01-17 op
1010 abc007d2 2021-02-08 op event_del(&events->e4);
1011 abc007d2 2021-02-08 op if (events->has_ipv6)
1012 abc007d2 2021-02-08 op event_del(&events->e6);
1013 abc007d2 2021-02-08 op signal_del(&events->sighup);
1014 abc007d2 2021-02-08 op }
1015 d3a08f4d 2021-01-17 op
1016 abc007d2 2021-02-08 op static void
1017 abc007d2 2021-02-08 op handle_siginfo(int fd, short ev, void *d)
1018 abc007d2 2021-02-08 op {
1019 abc007d2 2021-02-08 op (void)fd;
1020 abc007d2 2021-02-08 op (void)ev;
1021 abc007d2 2021-02-08 op (void)d;
1022 d3a08f4d 2021-01-17 op
1023 abc007d2 2021-02-08 op log_info(NULL, "%d connected clients", connected_clients);
1024 abc007d2 2021-02-08 op }
1025 d3a08f4d 2021-01-17 op
1026 abc007d2 2021-02-08 op void
1027 abc007d2 2021-02-08 op loop(struct tls *ctx, int sock4, int sock6)
1028 abc007d2 2021-02-08 op {
1029 abc007d2 2021-02-08 op struct server_events events;
1030 abc007d2 2021-02-08 op struct server server;
1031 abc007d2 2021-02-08 op struct event info;
1032 abc007d2 2021-02-08 op size_t i;
1033 d3a08f4d 2021-01-17 op
1034 abc007d2 2021-02-08 op event_init();
1035 1e3ef7ab 2021-02-03 op
1036 abc007d2 2021-02-08 op memset(&events, 0, sizeof(events));
1037 abc007d2 2021-02-08 op memset(&server, 0, sizeof(server));
1038 abc007d2 2021-02-08 op for (i = 0; i < MAX_USERS; ++i)
1039 abc007d2 2021-02-08 op server.clients[i].fd = -1;
1040 d3a08f4d 2021-01-17 op
1041 abc007d2 2021-02-08 op event_set(&events.e4, sock4, EV_READ | EV_PERSIST, &do_accept, &server);
1042 abc007d2 2021-02-08 op event_add(&events.e4, NULL);
1043 ca21e100 2021-02-04 op
1044 abc007d2 2021-02-08 op if (sock6 != -1) {
1045 abc007d2 2021-02-08 op events.has_ipv6 = 1;
1046 abc007d2 2021-02-08 op event_set(&events.e6, sock6, EV_READ | EV_PERSIST, &do_accept, &server);
1047 abc007d2 2021-02-08 op event_add(&events.e6, NULL);
1048 d3a08f4d 2021-01-17 op }
1049 abc007d2 2021-02-08 op
1050 abc007d2 2021-02-08 op signal_set(&events.sighup, SIGHUP, &handle_sighup, &events);
1051 abc007d2 2021-02-08 op signal_add(&events.sighup, NULL);
1052 abc007d2 2021-02-08 op
1053 abc007d2 2021-02-08 op #ifdef SIGINFO
1054 abc007d2 2021-02-08 op signal_set(&info, SIGINFO, &handle_siginfo, NULL);
1055 abc007d2 2021-02-08 op signal_add(&info, NULL);
1056 abc007d2 2021-02-08 op #endif
1057 abc007d2 2021-02-08 op signal_set(&info, SIGUSR2, &handle_siginfo, NULL);
1058 abc007d2 2021-02-08 op signal_add(&info, NULL);
1059 abc007d2 2021-02-08 op
1060 abc007d2 2021-02-08 op server.ctx = ctx;
1061 abc007d2 2021-02-08 op
1062 abc007d2 2021-02-08 op event_dispatch();
1063 d3a08f4d 2021-01-17 op }