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 252908e6 2021-01-24 op c->next = S_SENDING_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->state = S_OPEN;
298 d3a08f4d 2021-01-17 op c->host = h;
299 d3a08f4d 2021-01-17 op handle_open_conn(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 05c23a54 2021-01-19 op char buf[1030]; /* status + ' ' + max reply len + \r\n\0 */
358 c8b74339 2021-01-24 op const char *lang;
359 0be51733 2021-01-20 op size_t len;
360 d3a08f4d 2021-01-17 op
361 df79b4c1 2021-01-19 op c->code = code;
362 df79b4c1 2021-01-19 op c->meta = meta;
363 df79b4c1 2021-01-19 op c->state = S_INITIALIZING;
364 d3a08f4d 2021-01-17 op
365 c8b74339 2021-01-24 op lang = vhost_lang(c->host, c->iri.path);
366 c8b74339 2021-01-24 op
367 05c23a54 2021-01-19 op snprintf(buf, sizeof(buf), "%d ", code);
368 df79b4c1 2021-01-19 op strlcat(buf, meta, sizeof(buf));
369 c8b74339 2021-01-24 op if (!strcmp(meta, "text/gemini") && lang != NULL) {
370 05c23a54 2021-01-19 op strlcat(buf, "; lang=", sizeof(buf));
371 c8b74339 2021-01-24 op strlcat(buf, lang, sizeof(buf));
372 05c23a54 2021-01-19 op }
373 05c23a54 2021-01-19 op
374 05c23a54 2021-01-19 op len = strlcat(buf, "\r\n", sizeof(buf));
375 0be51733 2021-01-20 op assert(len < sizeof(buf));
376 d3a08f4d 2021-01-17 op
377 df79b4c1 2021-01-19 op switch (tls_write(c->ctx, buf, len)) {
378 a87f6625 2021-01-24 op case -1:
379 a87f6625 2021-01-24 op close_conn(pfd, c);
380 a87f6625 2021-01-24 op return;
381 d3a08f4d 2021-01-17 op case TLS_WANT_POLLIN:
382 d3a08f4d 2021-01-17 op pfd->events = POLLIN;
383 a87f6625 2021-01-24 op return;
384 d3a08f4d 2021-01-17 op case TLS_WANT_POLLOUT:
385 d3a08f4d 2021-01-17 op pfd->events = POLLOUT;
386 a87f6625 2021-01-24 op return;
387 d3a08f4d 2021-01-17 op }
388 a87f6625 2021-01-24 op
389 a87f6625 2021-01-24 op log_request(c, buf, sizeof(buf));
390 a87f6625 2021-01-24 op
391 a87f6625 2021-01-24 op /* we don't need a body */
392 a87f6625 2021-01-24 op if (c->code != SUCCESS) {
393 a87f6625 2021-01-24 op close_conn(pfd, c);
394 a87f6625 2021-01-24 op return;
395 a87f6625 2021-01-24 op }
396 a87f6625 2021-01-24 op
397 a87f6625 2021-01-24 op /* advance the state machine */
398 a87f6625 2021-01-24 op c->state = c->next;
399 a87f6625 2021-01-24 op handle(pfd, c);
400 d3a08f4d 2021-01-17 op }
401 d3a08f4d 2021-01-17 op
402 07b0a142 2021-01-24 op void
403 2fafa2d2 2021-02-01 op start_cgi(const char *spath, const char *relpath,
404 d3a08f4d 2021-01-17 op struct pollfd *fds, struct client *c)
405 d3a08f4d 2021-01-17 op {
406 d3a08f4d 2021-01-17 op char addr[NI_MAXHOST];
407 d3a08f4d 2021-01-17 op const char *ruser, *cissuer, *chash;
408 d3a08f4d 2021-01-17 op int e;
409 d3a08f4d 2021-01-17 op
410 d3a08f4d 2021-01-17 op e = getnameinfo((struct sockaddr*)&c->addr, sizeof(c->addr),
411 d3a08f4d 2021-01-17 op addr, sizeof(addr),
412 d3a08f4d 2021-01-17 op NULL, 0,
413 d3a08f4d 2021-01-17 op NI_NUMERICHOST);
414 d3a08f4d 2021-01-17 op if (e != 0)
415 d3a08f4d 2021-01-17 op goto err;
416 d3a08f4d 2021-01-17 op
417 d3a08f4d 2021-01-17 op if (tls_peer_cert_provided(c->ctx)) {
418 d3a08f4d 2021-01-17 op ruser = tls_peer_cert_subject(c->ctx);
419 d3a08f4d 2021-01-17 op cissuer = tls_peer_cert_issuer(c->ctx);
420 d3a08f4d 2021-01-17 op chash = tls_peer_cert_hash(c->ctx);
421 d3a08f4d 2021-01-17 op } else {
422 d3a08f4d 2021-01-17 op ruser = NULL;
423 d3a08f4d 2021-01-17 op cissuer = NULL;
424 d3a08f4d 2021-01-17 op chash = NULL;
425 d3a08f4d 2021-01-17 op }
426 d3a08f4d 2021-01-17 op
427 2fafa2d2 2021-02-01 op if (!send_iri(exfd, &c->iri)
428 2fafa2d2 2021-02-01 op || !send_string(exfd, spath)
429 d3a08f4d 2021-01-17 op || !send_string(exfd, relpath)
430 d3a08f4d 2021-01-17 op || !send_string(exfd, addr)
431 d3a08f4d 2021-01-17 op || !send_string(exfd, ruser)
432 d3a08f4d 2021-01-17 op || !send_string(exfd, cissuer)
433 d3a08f4d 2021-01-17 op || !send_string(exfd, chash)
434 d3a08f4d 2021-01-17 op || !send_vhost(exfd, c->host))
435 d3a08f4d 2021-01-17 op goto err;
436 d3a08f4d 2021-01-17 op
437 d3a08f4d 2021-01-17 op close(c->fd);
438 d3a08f4d 2021-01-17 op if ((c->fd = recv_fd(exfd)) == -1) {
439 a87f6625 2021-01-24 op start_reply(fds, c, TEMP_FAILURE, "internal server error");
440 07b0a142 2021-01-24 op return;
441 d3a08f4d 2021-01-17 op }
442 a87f6625 2021-01-24 op c->state = S_SENDING_CGI;
443 d3a08f4d 2021-01-17 op cgi_poll_on_child(fds, c);
444 0be51733 2021-01-20 op c->code = -1;
445 d3a08f4d 2021-01-17 op /* handle_cgi(fds, c); */
446 07b0a142 2021-01-24 op return;
447 d3a08f4d 2021-01-17 op
448 d3a08f4d 2021-01-17 op err:
449 d3a08f4d 2021-01-17 op /* fatal("cannot talk to the executor process: %s", strerror(errno)); */
450 132cae8c 2021-01-18 op fatal("cannot talk to the executor process");
451 d3a08f4d 2021-01-17 op }
452 d3a08f4d 2021-01-17 op
453 d3a08f4d 2021-01-17 op void
454 0be51733 2021-01-20 op send_file(struct pollfd *fds, struct client *c)
455 d3a08f4d 2021-01-17 op {
456 d3a08f4d 2021-01-17 op ssize_t ret, len;
457 d3a08f4d 2021-01-17 op
458 06f233ad 2021-01-21 op /* ensure the correct state */
459 a87f6625 2021-01-24 op c->state = S_SENDING_FILE;
460 06f233ad 2021-01-21 op
461 d3a08f4d 2021-01-17 op len = (c->buf + c->len) - c->i;
462 d3a08f4d 2021-01-17 op
463 d3a08f4d 2021-01-17 op while (len > 0) {
464 d3a08f4d 2021-01-17 op switch (ret = tls_write(c->ctx, c->i, len)) {
465 d3a08f4d 2021-01-17 op case -1:
466 d3a08f4d 2021-01-17 op LOGE(c, "tls_write: %s", tls_error(c->ctx));
467 36162ed8 2021-01-22 op close_conn(fds, c);
468 d3a08f4d 2021-01-17 op return;
469 d3a08f4d 2021-01-17 op
470 d3a08f4d 2021-01-17 op case TLS_WANT_POLLIN:
471 d3a08f4d 2021-01-17 op fds->events = POLLIN;
472 d3a08f4d 2021-01-17 op return;
473 d3a08f4d 2021-01-17 op
474 d3a08f4d 2021-01-17 op case TLS_WANT_POLLOUT:
475 d3a08f4d 2021-01-17 op fds->events = POLLOUT;
476 d3a08f4d 2021-01-17 op return;
477 d3a08f4d 2021-01-17 op
478 d3a08f4d 2021-01-17 op default:
479 d3a08f4d 2021-01-17 op c->i += ret;
480 d3a08f4d 2021-01-17 op len -= ret;
481 d3a08f4d 2021-01-17 op break;
482 d3a08f4d 2021-01-17 op }
483 d3a08f4d 2021-01-17 op }
484 d3a08f4d 2021-01-17 op
485 36162ed8 2021-01-22 op close_conn(fds, c);
486 d3a08f4d 2021-01-17 op }
487 d3a08f4d 2021-01-17 op
488 d3a08f4d 2021-01-17 op void
489 252908e6 2021-01-24 op open_dir(struct pollfd *fds, struct client *c)
490 d3a08f4d 2021-01-17 op {
491 d3a08f4d 2021-01-17 op size_t len;
492 252908e6 2021-01-24 op int dirfd;
493 252908e6 2021-01-24 op char *before_file;
494 d1ca3911 2021-01-21 op
495 0be51733 2021-01-20 op len = strlen(c->iri.path);
496 252908e6 2021-01-24 op if (len > 0 && !ends_with(c->iri.path, "/")) {
497 252908e6 2021-01-24 op redirect_canonical_dir(fds, c);
498 0be51733 2021-01-20 op return;
499 d3a08f4d 2021-01-17 op }
500 d3a08f4d 2021-01-17 op
501 252908e6 2021-01-24 op strlcpy(c->sbuf, "/", sizeof(c->sbuf));
502 d1ca3911 2021-01-21 op strlcat(c->sbuf, c->iri.path, sizeof(c->sbuf));
503 d1ca3911 2021-01-21 op if (!ends_with(c->sbuf, "/"))
504 0be51733 2021-01-20 op strlcat(c->sbuf, "/", sizeof(c->sbuf));
505 252908e6 2021-01-24 op before_file = strchr(c->sbuf, '\0');
506 c8b74339 2021-01-24 op len = strlcat(c->sbuf, vhost_index(c->host, c->iri.path),
507 c8b74339 2021-01-24 op sizeof(c->sbuf));
508 252908e6 2021-01-24 op if (len >= sizeof(c->sbuf)) {
509 252908e6 2021-01-24 op start_reply(fds, c, TEMP_FAILURE, "internal server error");
510 252908e6 2021-01-24 op return;
511 252908e6 2021-01-24 op }
512 d3a08f4d 2021-01-17 op
513 252908e6 2021-01-24 op c->iri.path = c->sbuf;
514 252908e6 2021-01-24 op
515 252908e6 2021-01-24 op /* close later unless we have to generate the dir listing */
516 252908e6 2021-01-24 op dirfd = c->fd;
517 252908e6 2021-01-24 op c->fd = -1;
518 252908e6 2021-01-24 op
519 252908e6 2021-01-24 op switch (check_path(c, c->iri.path, &c->fd)) {
520 252908e6 2021-01-24 op case FILE_EXECUTABLE:
521 252908e6 2021-01-24 op if (starts_with(c->iri.path, c->host->cgi)) {
522 2fafa2d2 2021-02-01 op start_cgi(c->iri.path, "", fds, c);
523 252908e6 2021-01-24 op break;
524 252908e6 2021-01-24 op }
525 252908e6 2021-01-24 op
526 252908e6 2021-01-24 op /* fallthrough */
527 252908e6 2021-01-24 op
528 252908e6 2021-01-24 op case FILE_EXISTS:
529 252908e6 2021-01-24 op load_file(fds, c);
530 252908e6 2021-01-24 op break;
531 252908e6 2021-01-24 op
532 252908e6 2021-01-24 op case FILE_DIRECTORY:
533 252908e6 2021-01-24 op start_reply(fds, c, TEMP_REDIRECT, c->sbuf);
534 252908e6 2021-01-24 op break;
535 252908e6 2021-01-24 op
536 252908e6 2021-01-24 op case FILE_MISSING:
537 252908e6 2021-01-24 op *before_file = '\0';
538 252908e6 2021-01-24 op
539 252908e6 2021-01-24 op if (!vhost_auto_index(c->host, c->iri.path)) {
540 252908e6 2021-01-24 op start_reply(fds, c, NOT_FOUND, "not found");
541 252908e6 2021-01-24 op break;
542 252908e6 2021-01-24 op }
543 252908e6 2021-01-24 op
544 252908e6 2021-01-24 op c->fd = dirfd;
545 252908e6 2021-01-24 op c->next = S_SENDING_DIR;
546 252908e6 2021-01-24 op
547 252908e6 2021-01-24 op if ((c->dir = fdopendir(c->fd)) == NULL) {
548 252908e6 2021-01-24 op LOGE(c, "can't fdopendir(%d) (vhost:%s) %s: %s",
549 252908e6 2021-01-24 op c->fd, c->host->domain, c->iri.path, strerror(errno));
550 252908e6 2021-01-24 op start_reply(fds, c, TEMP_FAILURE, "internal server error");
551 252908e6 2021-01-24 op return;
552 252908e6 2021-01-24 op }
553 252908e6 2021-01-24 op c->off = 0;
554 252908e6 2021-01-24 op
555 252908e6 2021-01-24 op start_reply(fds, c, SUCCESS, "text/gemini");
556 252908e6 2021-01-24 op return;
557 252908e6 2021-01-24 op
558 252908e6 2021-01-24 op default:
559 252908e6 2021-01-24 op /* unreachable */
560 252908e6 2021-01-24 op abort();
561 252908e6 2021-01-24 op }
562 252908e6 2021-01-24 op
563 252908e6 2021-01-24 op close(dirfd);
564 252908e6 2021-01-24 op }
565 252908e6 2021-01-24 op
566 252908e6 2021-01-24 op void
567 252908e6 2021-01-24 op redirect_canonical_dir(struct pollfd *fds, struct client *c)
568 252908e6 2021-01-24 op {
569 252908e6 2021-01-24 op size_t len;
570 252908e6 2021-01-24 op
571 252908e6 2021-01-24 op strlcpy(c->sbuf, "/", sizeof(c->sbuf));
572 252908e6 2021-01-24 op strlcat(c->sbuf, c->iri.path, sizeof(c->sbuf));
573 252908e6 2021-01-24 op len = strlcat(c->sbuf, "/", sizeof(c->sbuf));
574 252908e6 2021-01-24 op
575 0be51733 2021-01-20 op if (len >= sizeof(c->sbuf)) {
576 a87f6625 2021-01-24 op start_reply(fds, c, TEMP_FAILURE, "internal server error");
577 0be51733 2021-01-20 op return;
578 0be51733 2021-01-20 op }
579 0be51733 2021-01-20 op
580 252908e6 2021-01-24 op start_reply(fds, c, TEMP_REDIRECT, c->sbuf);
581 d3a08f4d 2021-01-17 op }
582 d3a08f4d 2021-01-17 op
583 252908e6 2021-01-24 op int
584 252908e6 2021-01-24 op read_next_dir_entry(struct client *c)
585 252908e6 2021-01-24 op {
586 252908e6 2021-01-24 op struct dirent *d;
587 252908e6 2021-01-24 op
588 252908e6 2021-01-24 op do {
589 252908e6 2021-01-24 op errno = 0;
590 252908e6 2021-01-24 op if ((d = readdir(c->dir)) == NULL) {
591 252908e6 2021-01-24 op if (errno != 0)
592 252908e6 2021-01-24 op LOGE(c, "readdir: %s", strerror(errno));
593 252908e6 2021-01-24 op return 0;
594 252908e6 2021-01-24 op }
595 252908e6 2021-01-24 op } while (!strcmp(d->d_name, "."));
596 252908e6 2021-01-24 op
597 252908e6 2021-01-24 op /* XXX: url escape */
598 252908e6 2021-01-24 op snprintf(c->sbuf, sizeof(c->sbuf), "=> %s %s\n",
599 252908e6 2021-01-24 op d->d_name, d->d_name);
600 252908e6 2021-01-24 op c->len = strlen(c->sbuf);
601 252908e6 2021-01-24 op c->off = 0;
602 252908e6 2021-01-24 op
603 252908e6 2021-01-24 op return 1;
604 252908e6 2021-01-24 op }
605 252908e6 2021-01-24 op
606 252908e6 2021-01-24 op void
607 252908e6 2021-01-24 op send_directory_listing(struct pollfd *fds, struct client *c)
608 252908e6 2021-01-24 op {
609 252908e6 2021-01-24 op ssize_t r;
610 252908e6 2021-01-24 op
611 252908e6 2021-01-24 op while (1) {
612 252908e6 2021-01-24 op if (c->len == 0) {
613 252908e6 2021-01-24 op if (!read_next_dir_entry(c))
614 252908e6 2021-01-24 op goto end;
615 252908e6 2021-01-24 op }
616 252908e6 2021-01-24 op
617 252908e6 2021-01-24 op while (c->len > 0) {
618 252908e6 2021-01-24 op switch (r = tls_write(c->ctx, c->sbuf + c->off, c->len)) {
619 252908e6 2021-01-24 op case -1:
620 252908e6 2021-01-24 op goto end;
621 252908e6 2021-01-24 op
622 252908e6 2021-01-24 op case TLS_WANT_POLLOUT:
623 252908e6 2021-01-24 op fds->events = POLLOUT;
624 252908e6 2021-01-24 op return;
625 252908e6 2021-01-24 op
626 252908e6 2021-01-24 op case TLS_WANT_POLLIN:
627 252908e6 2021-01-24 op fds->events = POLLIN;
628 252908e6 2021-01-24 op return;
629 252908e6 2021-01-24 op
630 252908e6 2021-01-24 op default:
631 252908e6 2021-01-24 op c->off += r;
632 252908e6 2021-01-24 op c->len -= r;
633 252908e6 2021-01-24 op break;
634 252908e6 2021-01-24 op }
635 252908e6 2021-01-24 op }
636 252908e6 2021-01-24 op }
637 252908e6 2021-01-24 op
638 252908e6 2021-01-24 op end:
639 252908e6 2021-01-24 op close_conn(fds, c);
640 252908e6 2021-01-24 op }
641 252908e6 2021-01-24 op
642 d3a08f4d 2021-01-17 op void
643 d3a08f4d 2021-01-17 op cgi_poll_on_child(struct pollfd *fds, struct client *c)
644 d3a08f4d 2021-01-17 op {
645 d3a08f4d 2021-01-17 op int fd;
646 d3a08f4d 2021-01-17 op
647 d3a08f4d 2021-01-17 op if (c->waiting_on_child)
648 d3a08f4d 2021-01-17 op return;
649 d3a08f4d 2021-01-17 op c->waiting_on_child = 1;
650 d3a08f4d 2021-01-17 op
651 d3a08f4d 2021-01-17 op fds->events = POLLIN;
652 d3a08f4d 2021-01-17 op
653 d3a08f4d 2021-01-17 op fd = fds->fd;
654 d3a08f4d 2021-01-17 op fds->fd = c->fd;
655 d3a08f4d 2021-01-17 op c->fd = fd;
656 d3a08f4d 2021-01-17 op }
657 d3a08f4d 2021-01-17 op
658 d3a08f4d 2021-01-17 op void
659 d3a08f4d 2021-01-17 op cgi_poll_on_client(struct pollfd *fds, struct client *c)
660 d3a08f4d 2021-01-17 op {
661 d3a08f4d 2021-01-17 op int fd;
662 d3a08f4d 2021-01-17 op
663 d3a08f4d 2021-01-17 op if (!c->waiting_on_child)
664 d3a08f4d 2021-01-17 op return;
665 d3a08f4d 2021-01-17 op c->waiting_on_child = 0;
666 d3a08f4d 2021-01-17 op
667 d3a08f4d 2021-01-17 op fd = fds->fd;
668 d3a08f4d 2021-01-17 op fds->fd = c->fd;
669 d3a08f4d 2021-01-17 op c->fd = fd;
670 d3a08f4d 2021-01-17 op }
671 3309ef97 2021-01-23 op
672 3309ef97 2021-01-23 op /* handle the read from the child process. Return like read(2) */
673 3309ef97 2021-01-23 op static ssize_t
674 3309ef97 2021-01-23 op read_from_cgi(struct client *c)
675 3309ef97 2021-01-23 op {
676 3309ef97 2021-01-23 op void *buf;
677 3309ef97 2021-01-23 op size_t len;
678 3309ef97 2021-01-23 op ssize_t r;
679 3309ef97 2021-01-23 op
680 3309ef97 2021-01-23 op /* if we haven't read a whole response line, we want to
681 3309ef97 2021-01-23 op * continue reading. */
682 3309ef97 2021-01-23 op
683 3309ef97 2021-01-23 op if (c->code == -1) {
684 3309ef97 2021-01-23 op buf = c->sbuf + c->len;
685 3309ef97 2021-01-23 op len = sizeof(c->sbuf) - c->len;
686 3309ef97 2021-01-23 op } else {
687 3309ef97 2021-01-23 op buf = c->sbuf;
688 3309ef97 2021-01-23 op len = sizeof(c->sbuf);
689 3309ef97 2021-01-23 op }
690 d3a08f4d 2021-01-17 op
691 3309ef97 2021-01-23 op r = read(c->fd, buf, len);
692 3309ef97 2021-01-23 op if (r == 0 || r == -1)
693 3309ef97 2021-01-23 op return r;
694 3309ef97 2021-01-23 op
695 3309ef97 2021-01-23 op c->len += r;
696 3309ef97 2021-01-23 op c->off = 0;
697 3309ef97 2021-01-23 op
698 3309ef97 2021-01-23 op if (c->code != -1)
699 3309ef97 2021-01-23 op return r;
700 3309ef97 2021-01-23 op
701 3309ef97 2021-01-23 op if (strchr(c->sbuf, '\n') || c->len == sizeof(c->sbuf)) {
702 3309ef97 2021-01-23 op c->code = 0;
703 3309ef97 2021-01-23 op log_request(c, c->sbuf, c->len);
704 3309ef97 2021-01-23 op }
705 3309ef97 2021-01-23 op
706 3309ef97 2021-01-23 op return r;
707 3309ef97 2021-01-23 op }
708 3309ef97 2021-01-23 op
709 d3a08f4d 2021-01-17 op void
710 d3a08f4d 2021-01-17 op handle_cgi(struct pollfd *fds, struct client *c)
711 d3a08f4d 2021-01-17 op {
712 d3a08f4d 2021-01-17 op ssize_t r;
713 d3a08f4d 2021-01-17 op
714 d3a08f4d 2021-01-17 op /* ensure c->fd is the child and fds->fd the client */
715 d3a08f4d 2021-01-17 op cgi_poll_on_client(fds, c);
716 d3a08f4d 2021-01-17 op
717 d3a08f4d 2021-01-17 op while (1) {
718 3309ef97 2021-01-23 op if (c->code == -1 || c->len == 0) {
719 3309ef97 2021-01-23 op switch (r = read_from_cgi(c)) {
720 3309ef97 2021-01-23 op case 0:
721 d3a08f4d 2021-01-17 op goto end;
722 3309ef97 2021-01-23 op
723 3309ef97 2021-01-23 op case -1:
724 d3a08f4d 2021-01-17 op if (errno == EAGAIN || errno == EWOULDBLOCK) {
725 d3a08f4d 2021-01-17 op cgi_poll_on_child(fds, c);
726 d3a08f4d 2021-01-17 op return;
727 d3a08f4d 2021-01-17 op }
728 3309ef97 2021-01-23 op goto end;
729 d3a08f4d 2021-01-17 op }
730 3309ef97 2021-01-23 op }
731 0be51733 2021-01-20 op
732 3309ef97 2021-01-23 op if (c->code == -1) {
733 3309ef97 2021-01-23 op cgi_poll_on_child(fds, c);
734 3309ef97 2021-01-23 op return;
735 d3a08f4d 2021-01-17 op }
736 d3a08f4d 2021-01-17 op
737 d3a08f4d 2021-01-17 op while (c->len > 0) {
738 d3a08f4d 2021-01-17 op switch (r = tls_write(c->ctx, c->sbuf + c->off, c->len)) {
739 d3a08f4d 2021-01-17 op case -1:
740 d3a08f4d 2021-01-17 op goto end;
741 d3a08f4d 2021-01-17 op
742 d3a08f4d 2021-01-17 op case TLS_WANT_POLLOUT:
743 d3a08f4d 2021-01-17 op fds->events = POLLOUT;
744 d3a08f4d 2021-01-17 op return;
745 d3a08f4d 2021-01-17 op
746 d3a08f4d 2021-01-17 op case TLS_WANT_POLLIN:
747 d3a08f4d 2021-01-17 op fds->events = POLLIN;
748 d3a08f4d 2021-01-17 op return;
749 d3a08f4d 2021-01-17 op
750 d3a08f4d 2021-01-17 op default:
751 d3a08f4d 2021-01-17 op c->off += r;
752 d3a08f4d 2021-01-17 op c->len -= r;
753 d3a08f4d 2021-01-17 op break;
754 d3a08f4d 2021-01-17 op }
755 d3a08f4d 2021-01-17 op }
756 d3a08f4d 2021-01-17 op }
757 d3a08f4d 2021-01-17 op
758 d3a08f4d 2021-01-17 op end:
759 36162ed8 2021-01-22 op close_conn(fds, c);
760 d3a08f4d 2021-01-17 op }
761 d3a08f4d 2021-01-17 op
762 d3a08f4d 2021-01-17 op void
763 36162ed8 2021-01-22 op close_conn(struct pollfd *pfd, struct client *c)
764 d3a08f4d 2021-01-17 op {
765 d3a08f4d 2021-01-17 op c->state = S_CLOSING;
766 d3a08f4d 2021-01-17 op
767 d3a08f4d 2021-01-17 op switch (tls_close(c->ctx)) {
768 d3a08f4d 2021-01-17 op case TLS_WANT_POLLIN:
769 d3a08f4d 2021-01-17 op pfd->events = POLLIN;
770 d3a08f4d 2021-01-17 op return;
771 d3a08f4d 2021-01-17 op case TLS_WANT_POLLOUT:
772 d3a08f4d 2021-01-17 op pfd->events = POLLOUT;
773 d3a08f4d 2021-01-17 op return;
774 d3a08f4d 2021-01-17 op }
775 d3a08f4d 2021-01-17 op
776 d3a08f4d 2021-01-17 op connected_clients--;
777 d3a08f4d 2021-01-17 op
778 d3a08f4d 2021-01-17 op tls_free(c->ctx);
779 d3a08f4d 2021-01-17 op c->ctx = NULL;
780 d3a08f4d 2021-01-17 op
781 d3a08f4d 2021-01-17 op if (c->buf != MAP_FAILED)
782 d3a08f4d 2021-01-17 op munmap(c->buf, c->len);
783 d3a08f4d 2021-01-17 op
784 d3a08f4d 2021-01-17 op if (c->fd != -1)
785 d3a08f4d 2021-01-17 op close(c->fd);
786 d3a08f4d 2021-01-17 op
787 252908e6 2021-01-24 op if (c->dir != NULL)
788 252908e6 2021-01-24 op closedir(c->dir);
789 252908e6 2021-01-24 op
790 d3a08f4d 2021-01-17 op close(pfd->fd);
791 d3a08f4d 2021-01-17 op pfd->fd = -1;
792 f890c8c5 2021-01-22 op }
793 f890c8c5 2021-01-22 op
794 f890c8c5 2021-01-22 op void
795 d3a08f4d 2021-01-17 op do_accept(int sock, struct tls *ctx, struct pollfd *fds, struct client *clients)
796 d3a08f4d 2021-01-17 op {
797 d3a08f4d 2021-01-17 op int i, fd;
798 d3a08f4d 2021-01-17 op struct sockaddr_storage addr;
799 d3a08f4d 2021-01-17 op socklen_t len;
800 d3a08f4d 2021-01-17 op
801 d3a08f4d 2021-01-17 op len = sizeof(addr);
802 d3a08f4d 2021-01-17 op if ((fd = accept(sock, (struct sockaddr*)&addr, &len)) == -1) {
803 d3a08f4d 2021-01-17 op if (errno == EWOULDBLOCK)
804 d3a08f4d 2021-01-17 op return;
805 d3a08f4d 2021-01-17 op fatal("accept: %s", strerror(errno));
806 d3a08f4d 2021-01-17 op }
807 d3a08f4d 2021-01-17 op
808 d3a08f4d 2021-01-17 op mark_nonblock(fd);
809 d3a08f4d 2021-01-17 op
810 d3a08f4d 2021-01-17 op for (i = 0; i < MAX_USERS; ++i) {
811 d3a08f4d 2021-01-17 op if (fds[i].fd == -1) {
812 d3a08f4d 2021-01-17 op bzero(&clients[i], sizeof(struct client));
813 d3a08f4d 2021-01-17 op if (tls_accept_socket(ctx, &clients[i].ctx, fd) == -1)
814 d3a08f4d 2021-01-17 op break; /* goodbye fd! */
815 d3a08f4d 2021-01-17 op
816 d3a08f4d 2021-01-17 op fds[i].fd = fd;
817 d3a08f4d 2021-01-17 op fds[i].events = POLLIN;
818 d3a08f4d 2021-01-17 op
819 d3a08f4d 2021-01-17 op clients[i].state = S_HANDSHAKE;
820 a87f6625 2021-01-24 op clients[i].next = S_SENDING_FILE;
821 d3a08f4d 2021-01-17 op clients[i].fd = -1;
822 d3a08f4d 2021-01-17 op clients[i].waiting_on_child = 0;
823 d3a08f4d 2021-01-17 op clients[i].buf = MAP_FAILED;
824 252908e6 2021-01-24 op clients[i].dir = NULL;
825 d3a08f4d 2021-01-17 op clients[i].addr = addr;
826 d3a08f4d 2021-01-17 op
827 d3a08f4d 2021-01-17 op connected_clients++;
828 d3a08f4d 2021-01-17 op return;
829 d3a08f4d 2021-01-17 op }
830 d3a08f4d 2021-01-17 op }
831 d3a08f4d 2021-01-17 op
832 d3a08f4d 2021-01-17 op close(fd);
833 d3a08f4d 2021-01-17 op }
834 d3a08f4d 2021-01-17 op
835 d3a08f4d 2021-01-17 op void
836 d3a08f4d 2021-01-17 op handle(struct pollfd *fds, struct client *client)
837 d3a08f4d 2021-01-17 op {
838 d3a08f4d 2021-01-17 op switch (client->state) {
839 d3a08f4d 2021-01-17 op case S_HANDSHAKE:
840 d3a08f4d 2021-01-17 op handle_handshake(fds, client);
841 d3a08f4d 2021-01-17 op break;
842 d3a08f4d 2021-01-17 op
843 d3a08f4d 2021-01-17 op case S_OPEN:
844 d3a08f4d 2021-01-17 op handle_open_conn(fds, client);
845 d3a08f4d 2021-01-17 op break;
846 d3a08f4d 2021-01-17 op
847 d3a08f4d 2021-01-17 op case S_INITIALIZING:
848 a87f6625 2021-01-24 op start_reply(fds, client, client->code, client->meta);
849 a87f6625 2021-01-24 op break;
850 a87f6625 2021-01-24 op
851 a87f6625 2021-01-24 op case S_SENDING_FILE:
852 a87f6625 2021-01-24 op send_file(fds, client);
853 a87f6625 2021-01-24 op break;
854 d3a08f4d 2021-01-17 op
855 252908e6 2021-01-24 op case S_SENDING_DIR:
856 252908e6 2021-01-24 op send_directory_listing(fds, client);
857 252908e6 2021-01-24 op break;
858 252908e6 2021-01-24 op
859 a87f6625 2021-01-24 op case S_SENDING_CGI:
860 a87f6625 2021-01-24 op handle_cgi(fds, client);
861 d3a08f4d 2021-01-17 op break;
862 d3a08f4d 2021-01-17 op
863 d3a08f4d 2021-01-17 op case S_CLOSING:
864 36162ed8 2021-01-22 op close_conn(fds, client);
865 d3a08f4d 2021-01-17 op break;
866 d3a08f4d 2021-01-17 op
867 d3a08f4d 2021-01-17 op default:
868 d3a08f4d 2021-01-17 op /* unreachable */
869 d3a08f4d 2021-01-17 op abort();
870 d3a08f4d 2021-01-17 op }
871 d3a08f4d 2021-01-17 op }
872 d3a08f4d 2021-01-17 op
873 d3a08f4d 2021-01-17 op void
874 d3a08f4d 2021-01-17 op loop(struct tls *ctx, int sock4, int sock6)
875 d3a08f4d 2021-01-17 op {
876 d3a08f4d 2021-01-17 op int i;
877 d3a08f4d 2021-01-17 op struct client clients[MAX_USERS];
878 d3a08f4d 2021-01-17 op struct pollfd fds[MAX_USERS];
879 d3a08f4d 2021-01-17 op
880 d3a08f4d 2021-01-17 op connected_clients = 0;
881 d3a08f4d 2021-01-17 op
882 d3a08f4d 2021-01-17 op for (i = 0; i < MAX_USERS; ++i) {
883 d3a08f4d 2021-01-17 op fds[i].fd = -1;
884 d3a08f4d 2021-01-17 op fds[i].events = POLLIN;
885 d3a08f4d 2021-01-17 op bzero(&clients[i], sizeof(struct client));
886 d3a08f4d 2021-01-17 op }
887 d3a08f4d 2021-01-17 op
888 d3a08f4d 2021-01-17 op fds[0].fd = sock4;
889 d3a08f4d 2021-01-17 op fds[1].fd = sock6;
890 d3a08f4d 2021-01-17 op
891 d3a08f4d 2021-01-17 op for (;;) {
892 d3a08f4d 2021-01-17 op if (poll(fds, MAX_USERS, INFTIM) == -1) {
893 d3a08f4d 2021-01-17 op if (errno == EINTR) {
894 132cae8c 2021-01-18 op fprintf(stderr, "connected clients: %d\n",
895 d3a08f4d 2021-01-17 op connected_clients);
896 d3a08f4d 2021-01-17 op continue;
897 d3a08f4d 2021-01-17 op }
898 d3a08f4d 2021-01-17 op fatal("poll: %s", strerror(errno));
899 d3a08f4d 2021-01-17 op }
900 d3a08f4d 2021-01-17 op
901 d3a08f4d 2021-01-17 op for (i = 0; i < MAX_USERS; i++) {
902 d3a08f4d 2021-01-17 op if (fds[i].revents == 0)
903 d3a08f4d 2021-01-17 op continue;
904 d3a08f4d 2021-01-17 op
905 d3a08f4d 2021-01-17 op if (fds[i].revents & (POLLERR|POLLNVAL))
906 d3a08f4d 2021-01-17 op fatal("bad fd %d: %s", fds[i].fd,
907 d3a08f4d 2021-01-17 op strerror(errno));
908 d3a08f4d 2021-01-17 op
909 d3a08f4d 2021-01-17 op if (fds[i].revents & POLLHUP) {
910 d3a08f4d 2021-01-17 op /* fds[i] may be the fd of the stdin
911 d3a08f4d 2021-01-17 op * of a cgi script that has exited. */
912 d3a08f4d 2021-01-17 op if (!clients[i].waiting_on_child) {
913 36162ed8 2021-01-22 op close_conn(&fds[i], &clients[i]);
914 d3a08f4d 2021-01-17 op continue;
915 d3a08f4d 2021-01-17 op }
916 d3a08f4d 2021-01-17 op }
917 d3a08f4d 2021-01-17 op
918 d3a08f4d 2021-01-17 op if (fds[i].fd == sock4)
919 d3a08f4d 2021-01-17 op do_accept(sock4, ctx, fds, clients);
920 d3a08f4d 2021-01-17 op else if (fds[i].fd == sock6)
921 d3a08f4d 2021-01-17 op do_accept(sock6, ctx, fds, clients);
922 d3a08f4d 2021-01-17 op else
923 d3a08f4d 2021-01-17 op handle(&fds[i], &clients[i]);
924 d3a08f4d 2021-01-17 op }
925 d3a08f4d 2021-01-17 op }
926 d3a08f4d 2021-01-17 op }