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