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