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 5f715ce4 2021-02-02 op c->next = enter_handle_dirlist;
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 5f715ce4 2021-02-02 op
584 5f715ce4 2021-02-02 op void
585 5f715ce4 2021-02-02 op enter_handle_dirlist(struct pollfd *fds, struct client *c)
586 5f715ce4 2021-02-02 op {
587 5f715ce4 2021-02-02 op char b[PATH_MAX];
588 5f715ce4 2021-02-02 op size_t l;
589 d3a08f4d 2021-01-17 op
590 5f715ce4 2021-02-02 op strlcpy(b, c->iri.path, sizeof(b));
591 5f715ce4 2021-02-02 op l = snprintf(c->sbuf, sizeof(c->sbuf),
592 5f715ce4 2021-02-02 op "# Index of %s\n\n", b);
593 5f715ce4 2021-02-02 op if (l >= sizeof(c->sbuf)) {
594 5f715ce4 2021-02-02 op /* this is impossible, given that we have enough space
595 5f715ce4 2021-02-02 op * in c->sbuf to hold the ancilliary string plus the
596 5f715ce4 2021-02-02 op * full path; but it wouldn't read nice without some
597 5f715ce4 2021-02-02 op * error checking, and I'd like to avoid a strlen. */
598 5f715ce4 2021-02-02 op close_conn(fds, c);
599 5f715ce4 2021-02-02 op return;
600 5f715ce4 2021-02-02 op }
601 5f715ce4 2021-02-02 op c->len = l;
602 5f715ce4 2021-02-02 op
603 5f715ce4 2021-02-02 op c->state = handle_dirlist;
604 5f715ce4 2021-02-02 op handle_dirlist(fds, c);
605 5f715ce4 2021-02-02 op }
606 5f715ce4 2021-02-02 op
607 5f715ce4 2021-02-02 op void
608 5f715ce4 2021-02-02 op handle_dirlist(struct pollfd *fds, struct client *c)
609 5f715ce4 2021-02-02 op {
610 5f715ce4 2021-02-02 op ssize_t r;
611 5f715ce4 2021-02-02 op
612 5f715ce4 2021-02-02 op while (c->len > 0) {
613 5f715ce4 2021-02-02 op switch (r = tls_write(c->ctx, c->sbuf + c->off, c->len)) {
614 5f715ce4 2021-02-02 op case -1:
615 5f715ce4 2021-02-02 op close_conn(fds, c);
616 5f715ce4 2021-02-02 op return;
617 5f715ce4 2021-02-02 op case TLS_WANT_POLLOUT:
618 5f715ce4 2021-02-02 op fds->events = POLLOUT;
619 5f715ce4 2021-02-02 op return;
620 5f715ce4 2021-02-02 op case TLS_WANT_POLLIN:
621 5f715ce4 2021-02-02 op fds->events = POLLIN;
622 5f715ce4 2021-02-02 op return;
623 5f715ce4 2021-02-02 op default:
624 5f715ce4 2021-02-02 op c->off += r;
625 5f715ce4 2021-02-02 op c->len -= r;
626 5f715ce4 2021-02-02 op }
627 5f715ce4 2021-02-02 op }
628 5f715ce4 2021-02-02 op
629 5f715ce4 2021-02-02 op c->state = send_directory_listing;
630 5f715ce4 2021-02-02 op send_directory_listing(fds, c);
631 5f715ce4 2021-02-02 op }
632 5f715ce4 2021-02-02 op
633 252908e6 2021-01-24 op int
634 252908e6 2021-01-24 op read_next_dir_entry(struct client *c)
635 252908e6 2021-01-24 op {
636 252908e6 2021-01-24 op struct dirent *d;
637 252908e6 2021-01-24 op
638 252908e6 2021-01-24 op do {
639 252908e6 2021-01-24 op errno = 0;
640 252908e6 2021-01-24 op if ((d = readdir(c->dir)) == NULL) {
641 252908e6 2021-01-24 op if (errno != 0)
642 252908e6 2021-01-24 op LOGE(c, "readdir: %s", strerror(errno));
643 252908e6 2021-01-24 op return 0;
644 252908e6 2021-01-24 op }
645 252908e6 2021-01-24 op } while (!strcmp(d->d_name, "."));
646 252908e6 2021-01-24 op
647 252908e6 2021-01-24 op /* XXX: url escape */
648 252908e6 2021-01-24 op snprintf(c->sbuf, sizeof(c->sbuf), "=> %s %s\n",
649 252908e6 2021-01-24 op d->d_name, d->d_name);
650 252908e6 2021-01-24 op c->len = strlen(c->sbuf);
651 252908e6 2021-01-24 op c->off = 0;
652 252908e6 2021-01-24 op
653 252908e6 2021-01-24 op return 1;
654 252908e6 2021-01-24 op }
655 252908e6 2021-01-24 op
656 252908e6 2021-01-24 op void
657 252908e6 2021-01-24 op send_directory_listing(struct pollfd *fds, struct client *c)
658 252908e6 2021-01-24 op {
659 252908e6 2021-01-24 op ssize_t r;
660 252908e6 2021-01-24 op
661 252908e6 2021-01-24 op while (1) {
662 252908e6 2021-01-24 op if (c->len == 0) {
663 252908e6 2021-01-24 op if (!read_next_dir_entry(c))
664 252908e6 2021-01-24 op goto end;
665 252908e6 2021-01-24 op }
666 252908e6 2021-01-24 op
667 252908e6 2021-01-24 op while (c->len > 0) {
668 252908e6 2021-01-24 op switch (r = tls_write(c->ctx, c->sbuf + c->off, c->len)) {
669 252908e6 2021-01-24 op case -1:
670 252908e6 2021-01-24 op goto end;
671 252908e6 2021-01-24 op
672 252908e6 2021-01-24 op case TLS_WANT_POLLOUT:
673 252908e6 2021-01-24 op fds->events = POLLOUT;
674 252908e6 2021-01-24 op return;
675 252908e6 2021-01-24 op
676 252908e6 2021-01-24 op case TLS_WANT_POLLIN:
677 252908e6 2021-01-24 op fds->events = POLLIN;
678 252908e6 2021-01-24 op return;
679 252908e6 2021-01-24 op
680 252908e6 2021-01-24 op default:
681 252908e6 2021-01-24 op c->off += r;
682 252908e6 2021-01-24 op c->len -= r;
683 252908e6 2021-01-24 op break;
684 252908e6 2021-01-24 op }
685 252908e6 2021-01-24 op }
686 252908e6 2021-01-24 op }
687 252908e6 2021-01-24 op
688 252908e6 2021-01-24 op end:
689 252908e6 2021-01-24 op close_conn(fds, c);
690 252908e6 2021-01-24 op }
691 252908e6 2021-01-24 op
692 d3a08f4d 2021-01-17 op void
693 d3a08f4d 2021-01-17 op cgi_poll_on_child(struct pollfd *fds, struct client *c)
694 d3a08f4d 2021-01-17 op {
695 d3a08f4d 2021-01-17 op int fd;
696 d3a08f4d 2021-01-17 op
697 d3a08f4d 2021-01-17 op if (c->waiting_on_child)
698 d3a08f4d 2021-01-17 op return;
699 d3a08f4d 2021-01-17 op c->waiting_on_child = 1;
700 d3a08f4d 2021-01-17 op
701 d3a08f4d 2021-01-17 op fds->events = POLLIN;
702 d3a08f4d 2021-01-17 op
703 d3a08f4d 2021-01-17 op fd = fds->fd;
704 d3a08f4d 2021-01-17 op fds->fd = c->fd;
705 d3a08f4d 2021-01-17 op c->fd = fd;
706 d3a08f4d 2021-01-17 op }
707 d3a08f4d 2021-01-17 op
708 d3a08f4d 2021-01-17 op void
709 d3a08f4d 2021-01-17 op cgi_poll_on_client(struct pollfd *fds, struct client *c)
710 d3a08f4d 2021-01-17 op {
711 d3a08f4d 2021-01-17 op int fd;
712 d3a08f4d 2021-01-17 op
713 d3a08f4d 2021-01-17 op if (!c->waiting_on_child)
714 d3a08f4d 2021-01-17 op return;
715 d3a08f4d 2021-01-17 op c->waiting_on_child = 0;
716 d3a08f4d 2021-01-17 op
717 d3a08f4d 2021-01-17 op fd = fds->fd;
718 d3a08f4d 2021-01-17 op fds->fd = c->fd;
719 d3a08f4d 2021-01-17 op c->fd = fd;
720 d3a08f4d 2021-01-17 op }
721 3309ef97 2021-01-23 op
722 35744950 2021-02-01 op /* accumulate the meta line from the cgi script. */
723 35744950 2021-02-01 op void
724 35744950 2021-02-01 op handle_cgi_reply(struct pollfd *fds, struct client *c)
725 3309ef97 2021-01-23 op {
726 35744950 2021-02-01 op void *buf, *e;
727 3309ef97 2021-01-23 op size_t len;
728 3309ef97 2021-01-23 op ssize_t r;
729 3309ef97 2021-01-23 op
730 35744950 2021-02-01 op buf = c->sbuf + c->len;
731 35744950 2021-02-01 op len = sizeof(c->sbuf) - c->len;
732 3309ef97 2021-01-23 op
733 35744950 2021-02-01 op /* we're polling on the child! */
734 35744950 2021-02-01 op r = read(fds->fd, buf, len);
735 35744950 2021-02-01 op if (r == 0 || r == -1) {
736 35744950 2021-02-01 op cgi_poll_on_client(fds, c);
737 35744950 2021-02-01 op start_reply(fds, c, CGI_ERROR, "CGI error");
738 35744950 2021-02-01 op return;
739 3309ef97 2021-01-23 op }
740 3309ef97 2021-01-23 op
741 3309ef97 2021-01-23 op c->len += r;
742 3309ef97 2021-01-23 op
743 35744950 2021-02-01 op /* TODO: error if the CGI script don't reply correctly */
744 35744950 2021-02-01 op e = strchr(c->sbuf, '\n');
745 35744950 2021-02-01 op if (e != NULL || c->len == sizeof(c->sbuf)) {
746 3309ef97 2021-01-23 op log_request(c, c->sbuf, c->len);
747 3309ef97 2021-01-23 op
748 35744950 2021-02-01 op c->off = 0;
749 35744950 2021-02-01 op c->state = handle_cgi;
750 35744950 2021-02-01 op c->state(fds, c);
751 35744950 2021-02-01 op return;
752 35744950 2021-02-01 op }
753 3309ef97 2021-01-23 op }
754 3309ef97 2021-01-23 op
755 d3a08f4d 2021-01-17 op void
756 d3a08f4d 2021-01-17 op handle_cgi(struct pollfd *fds, struct client *c)
757 d3a08f4d 2021-01-17 op {
758 d3a08f4d 2021-01-17 op ssize_t r;
759 d3a08f4d 2021-01-17 op
760 d3a08f4d 2021-01-17 op /* ensure c->fd is the child and fds->fd the client */
761 d3a08f4d 2021-01-17 op cgi_poll_on_client(fds, c);
762 d3a08f4d 2021-01-17 op
763 d3a08f4d 2021-01-17 op while (1) {
764 35744950 2021-02-01 op if (c->len == 0) {
765 35744950 2021-02-01 op switch (r = read(c->fd, c->sbuf, sizeof(c->sbuf))) {
766 3309ef97 2021-01-23 op case 0:
767 d3a08f4d 2021-01-17 op goto end;
768 3309ef97 2021-01-23 op case -1:
769 d3a08f4d 2021-01-17 op if (errno == EAGAIN || errno == EWOULDBLOCK) {
770 d3a08f4d 2021-01-17 op cgi_poll_on_child(fds, c);
771 d3a08f4d 2021-01-17 op return;
772 d3a08f4d 2021-01-17 op }
773 3309ef97 2021-01-23 op goto end;
774 35744950 2021-02-01 op default:
775 35744950 2021-02-01 op c->len = r;
776 35744950 2021-02-01 op c->off = 0;
777 d3a08f4d 2021-01-17 op }
778 3309ef97 2021-01-23 op }
779 0be51733 2021-01-20 op
780 d3a08f4d 2021-01-17 op while (c->len > 0) {
781 d3a08f4d 2021-01-17 op switch (r = tls_write(c->ctx, c->sbuf + c->off, c->len)) {
782 d3a08f4d 2021-01-17 op case -1:
783 d3a08f4d 2021-01-17 op goto end;
784 d3a08f4d 2021-01-17 op
785 d3a08f4d 2021-01-17 op case TLS_WANT_POLLOUT:
786 d3a08f4d 2021-01-17 op fds->events = POLLOUT;
787 d3a08f4d 2021-01-17 op return;
788 d3a08f4d 2021-01-17 op
789 d3a08f4d 2021-01-17 op case TLS_WANT_POLLIN:
790 d3a08f4d 2021-01-17 op fds->events = POLLIN;
791 d3a08f4d 2021-01-17 op return;
792 d3a08f4d 2021-01-17 op
793 d3a08f4d 2021-01-17 op default:
794 d3a08f4d 2021-01-17 op c->off += r;
795 d3a08f4d 2021-01-17 op c->len -= r;
796 d3a08f4d 2021-01-17 op break;
797 d3a08f4d 2021-01-17 op }
798 d3a08f4d 2021-01-17 op }
799 d3a08f4d 2021-01-17 op }
800 d3a08f4d 2021-01-17 op
801 d3a08f4d 2021-01-17 op end:
802 36162ed8 2021-01-22 op close_conn(fds, c);
803 d3a08f4d 2021-01-17 op }
804 d3a08f4d 2021-01-17 op
805 d3a08f4d 2021-01-17 op void
806 36162ed8 2021-01-22 op close_conn(struct pollfd *pfd, struct client *c)
807 d3a08f4d 2021-01-17 op {
808 112802ea 2021-02-01 op c->state = close_conn;
809 d3a08f4d 2021-01-17 op
810 d3a08f4d 2021-01-17 op switch (tls_close(c->ctx)) {
811 d3a08f4d 2021-01-17 op case TLS_WANT_POLLIN:
812 d3a08f4d 2021-01-17 op pfd->events = POLLIN;
813 d3a08f4d 2021-01-17 op return;
814 d3a08f4d 2021-01-17 op case TLS_WANT_POLLOUT:
815 d3a08f4d 2021-01-17 op pfd->events = POLLOUT;
816 d3a08f4d 2021-01-17 op return;
817 d3a08f4d 2021-01-17 op }
818 d3a08f4d 2021-01-17 op
819 d3a08f4d 2021-01-17 op connected_clients--;
820 d3a08f4d 2021-01-17 op
821 d3a08f4d 2021-01-17 op tls_free(c->ctx);
822 d3a08f4d 2021-01-17 op c->ctx = NULL;
823 d3a08f4d 2021-01-17 op
824 d3a08f4d 2021-01-17 op if (c->buf != MAP_FAILED)
825 d3a08f4d 2021-01-17 op munmap(c->buf, c->len);
826 d3a08f4d 2021-01-17 op
827 d3a08f4d 2021-01-17 op if (c->fd != -1)
828 d3a08f4d 2021-01-17 op close(c->fd);
829 d3a08f4d 2021-01-17 op
830 252908e6 2021-01-24 op if (c->dir != NULL)
831 252908e6 2021-01-24 op closedir(c->dir);
832 252908e6 2021-01-24 op
833 d3a08f4d 2021-01-17 op close(pfd->fd);
834 d3a08f4d 2021-01-17 op pfd->fd = -1;
835 f890c8c5 2021-01-22 op }
836 f890c8c5 2021-01-22 op
837 f890c8c5 2021-01-22 op void
838 d3a08f4d 2021-01-17 op do_accept(int sock, struct tls *ctx, struct pollfd *fds, struct client *clients)
839 d3a08f4d 2021-01-17 op {
840 d3a08f4d 2021-01-17 op int i, fd;
841 d3a08f4d 2021-01-17 op struct sockaddr_storage addr;
842 d3a08f4d 2021-01-17 op socklen_t len;
843 d3a08f4d 2021-01-17 op
844 d3a08f4d 2021-01-17 op len = sizeof(addr);
845 d3a08f4d 2021-01-17 op if ((fd = accept(sock, (struct sockaddr*)&addr, &len)) == -1) {
846 d3a08f4d 2021-01-17 op if (errno == EWOULDBLOCK)
847 d3a08f4d 2021-01-17 op return;
848 d3a08f4d 2021-01-17 op fatal("accept: %s", strerror(errno));
849 d3a08f4d 2021-01-17 op }
850 d3a08f4d 2021-01-17 op
851 d3a08f4d 2021-01-17 op mark_nonblock(fd);
852 d3a08f4d 2021-01-17 op
853 d3a08f4d 2021-01-17 op for (i = 0; i < MAX_USERS; ++i) {
854 d3a08f4d 2021-01-17 op if (fds[i].fd == -1) {
855 d3a08f4d 2021-01-17 op bzero(&clients[i], sizeof(struct client));
856 d3a08f4d 2021-01-17 op if (tls_accept_socket(ctx, &clients[i].ctx, fd) == -1)
857 d3a08f4d 2021-01-17 op break; /* goodbye fd! */
858 d3a08f4d 2021-01-17 op
859 d3a08f4d 2021-01-17 op fds[i].fd = fd;
860 d3a08f4d 2021-01-17 op fds[i].events = POLLIN;
861 d3a08f4d 2021-01-17 op
862 112802ea 2021-02-01 op clients[i].state = handle_handshake;
863 112802ea 2021-02-01 op clients[i].next = send_file;
864 d3a08f4d 2021-01-17 op clients[i].fd = -1;
865 d3a08f4d 2021-01-17 op clients[i].waiting_on_child = 0;
866 d3a08f4d 2021-01-17 op clients[i].buf = MAP_FAILED;
867 252908e6 2021-01-24 op clients[i].dir = NULL;
868 d3a08f4d 2021-01-17 op clients[i].addr = addr;
869 d3a08f4d 2021-01-17 op
870 d3a08f4d 2021-01-17 op connected_clients++;
871 d3a08f4d 2021-01-17 op return;
872 d3a08f4d 2021-01-17 op }
873 d3a08f4d 2021-01-17 op }
874 d3a08f4d 2021-01-17 op
875 d3a08f4d 2021-01-17 op close(fd);
876 d3a08f4d 2021-01-17 op }
877 d3a08f4d 2021-01-17 op
878 d3a08f4d 2021-01-17 op void
879 d3a08f4d 2021-01-17 op loop(struct tls *ctx, int sock4, int sock6)
880 d3a08f4d 2021-01-17 op {
881 d3a08f4d 2021-01-17 op int i;
882 d3a08f4d 2021-01-17 op struct client clients[MAX_USERS];
883 d3a08f4d 2021-01-17 op struct pollfd fds[MAX_USERS];
884 d3a08f4d 2021-01-17 op
885 d3a08f4d 2021-01-17 op connected_clients = 0;
886 d3a08f4d 2021-01-17 op
887 d3a08f4d 2021-01-17 op for (i = 0; i < MAX_USERS; ++i) {
888 d3a08f4d 2021-01-17 op fds[i].fd = -1;
889 d3a08f4d 2021-01-17 op fds[i].events = POLLIN;
890 d3a08f4d 2021-01-17 op bzero(&clients[i], sizeof(struct client));
891 d3a08f4d 2021-01-17 op }
892 d3a08f4d 2021-01-17 op
893 d3a08f4d 2021-01-17 op fds[0].fd = sock4;
894 d3a08f4d 2021-01-17 op fds[1].fd = sock6;
895 d3a08f4d 2021-01-17 op
896 d3a08f4d 2021-01-17 op for (;;) {
897 d3a08f4d 2021-01-17 op if (poll(fds, MAX_USERS, INFTIM) == -1) {
898 d3a08f4d 2021-01-17 op if (errno == EINTR) {
899 132cae8c 2021-01-18 op fprintf(stderr, "connected clients: %d\n",
900 d3a08f4d 2021-01-17 op connected_clients);
901 d3a08f4d 2021-01-17 op continue;
902 d3a08f4d 2021-01-17 op }
903 d3a08f4d 2021-01-17 op fatal("poll: %s", strerror(errno));
904 d3a08f4d 2021-01-17 op }
905 d3a08f4d 2021-01-17 op
906 d3a08f4d 2021-01-17 op for (i = 0; i < MAX_USERS; i++) {
907 d3a08f4d 2021-01-17 op if (fds[i].revents == 0)
908 d3a08f4d 2021-01-17 op continue;
909 d3a08f4d 2021-01-17 op
910 d3a08f4d 2021-01-17 op if (fds[i].revents & (POLLERR|POLLNVAL))
911 d3a08f4d 2021-01-17 op fatal("bad fd %d: %s", fds[i].fd,
912 d3a08f4d 2021-01-17 op strerror(errno));
913 d3a08f4d 2021-01-17 op
914 d3a08f4d 2021-01-17 op if (fds[i].revents & POLLHUP) {
915 d3a08f4d 2021-01-17 op /* fds[i] may be the fd of the stdin
916 d3a08f4d 2021-01-17 op * of a cgi script that has exited. */
917 d3a08f4d 2021-01-17 op if (!clients[i].waiting_on_child) {
918 36162ed8 2021-01-22 op close_conn(&fds[i], &clients[i]);
919 d3a08f4d 2021-01-17 op continue;
920 d3a08f4d 2021-01-17 op }
921 d3a08f4d 2021-01-17 op }
922 d3a08f4d 2021-01-17 op
923 d3a08f4d 2021-01-17 op if (fds[i].fd == sock4)
924 d3a08f4d 2021-01-17 op do_accept(sock4, ctx, fds, clients);
925 d3a08f4d 2021-01-17 op else if (fds[i].fd == sock6)
926 d3a08f4d 2021-01-17 op do_accept(sock6, ctx, fds, clients);
927 d3a08f4d 2021-01-17 op else
928 112802ea 2021-02-01 op clients[i].state(&fds[i], &clients[i]);
929 d3a08f4d 2021-01-17 op }
930 d3a08f4d 2021-01-17 op }
931 d3a08f4d 2021-01-17 op }