Blame


1 3e4749f7 2020-10-02 op /*
2 3e4749f7 2020-10-02 op * Copyright (c) 2020 Omar Polo <op@omarpolo.com>
3 3e4749f7 2020-10-02 op *
4 3e4749f7 2020-10-02 op * Permission to use, copy, modify, and distribute this software for any
5 3e4749f7 2020-10-02 op * purpose with or without fee is hereby granted, provided that the above
6 3e4749f7 2020-10-02 op * copyright notice and this permission notice appear in all copies.
7 3e4749f7 2020-10-02 op *
8 3e4749f7 2020-10-02 op * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 3e4749f7 2020-10-02 op * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 3e4749f7 2020-10-02 op * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 3e4749f7 2020-10-02 op * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 3e4749f7 2020-10-02 op * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 3e4749f7 2020-10-02 op * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 3e4749f7 2020-10-02 op * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 3e4749f7 2020-10-02 op */
16 3e4749f7 2020-10-02 op
17 f28f9311 2020-10-14 op #include <sys/mman.h>
18 3e4749f7 2020-10-02 op #include <sys/socket.h>
19 3e4749f7 2020-10-02 op #include <sys/stat.h>
20 3e4749f7 2020-10-02 op
21 3e4749f7 2020-10-02 op #include <netinet/in.h>
22 3e4749f7 2020-10-02 op
23 3e4749f7 2020-10-02 op #include <assert.h>
24 3e4749f7 2020-10-02 op #include <err.h>
25 592fd624 2020-10-07 op #include <errno.h>
26 3e4749f7 2020-10-02 op #include <fcntl.h>
27 592fd624 2020-10-07 op #include <poll.h>
28 0cf902af 2020-11-03 op #include <signal.h>
29 3e4749f7 2020-10-02 op #include <stdio.h>
30 3e4749f7 2020-10-02 op #include <stdlib.h>
31 3e4749f7 2020-10-02 op #include <string.h>
32 3e4749f7 2020-10-02 op #include <tls.h>
33 3e4749f7 2020-10-02 op #include <unistd.h>
34 3e4749f7 2020-10-02 op
35 3e4749f7 2020-10-02 op #ifndef __OpenBSD__
36 3e4749f7 2020-10-02 op # define pledge(a, b) 0
37 3e4749f7 2020-10-02 op # define unveil(a, b) 0
38 3e4749f7 2020-10-02 op #endif /* __OpenBSD__ */
39 3e4749f7 2020-10-02 op
40 592fd624 2020-10-07 op #ifndef INFTIM
41 592fd624 2020-10-07 op # define INFTIM -1
42 592fd624 2020-10-07 op #endif /* INFTIM */
43 592fd624 2020-10-07 op
44 3e4749f7 2020-10-02 op #define GEMINI_URL_LEN (1024+3) /* URL max len + \r\n + \0 */
45 3e4749f7 2020-10-02 op
46 4d4f0e19 2020-10-03 op /* large enough to hold a copy of a gemini URL and still have extra room */
47 d95b77a0 2020-10-07 op #define PATHBUF 2048
48 3e4749f7 2020-10-02 op
49 3e4749f7 2020-10-02 op #define SUCCESS 20
50 3e4749f7 2020-10-02 op #define NOT_FOUND 51
51 3e4749f7 2020-10-02 op #define BAD_REQUEST 59
52 3e4749f7 2020-10-02 op
53 592fd624 2020-10-07 op #ifndef MAX_USERS
54 592fd624 2020-10-07 op #define MAX_USERS 64
55 592fd624 2020-10-07 op #endif
56 592fd624 2020-10-07 op
57 592fd624 2020-10-07 op enum {
58 592fd624 2020-10-07 op S_OPEN,
59 592fd624 2020-10-07 op S_INITIALIZING,
60 592fd624 2020-10-07 op S_SENDING,
61 592fd624 2020-10-07 op S_CLOSING,
62 592fd624 2020-10-07 op };
63 592fd624 2020-10-07 op
64 592fd624 2020-10-07 op struct client {
65 592fd624 2020-10-07 op struct tls *ctx;
66 f28f9311 2020-10-14 op int state;
67 f28f9311 2020-10-14 op int code;
68 592fd624 2020-10-07 op const char *meta;
69 f28f9311 2020-10-14 op int fd;
70 f28f9311 2020-10-14 op void *buf, *i;
71 f28f9311 2020-10-14 op ssize_t len, off;
72 592fd624 2020-10-07 op };
73 592fd624 2020-10-07 op
74 cc68fe70 2020-10-07 op struct etm { /* file extension to mime */
75 cc68fe70 2020-10-07 op const char *mime;
76 cc68fe70 2020-10-07 op const char *ext;
77 cc68fe70 2020-10-07 op } filetypes[] = {
78 cc68fe70 2020-10-07 op {"application/pdf", "pdf"},
79 cc68fe70 2020-10-07 op
80 cc68fe70 2020-10-07 op {"image/gif", "gif"},
81 cc68fe70 2020-10-07 op {"image/jpeg", "jpg"},
82 cc68fe70 2020-10-07 op {"image/jpeg", "jpeg"},
83 cc68fe70 2020-10-07 op {"image/png", "png"},
84 cc68fe70 2020-10-07 op {"image/svg+xml", "svg"},
85 cc68fe70 2020-10-07 op
86 cc68fe70 2020-10-07 op {"text/gemini", "gemini"},
87 cc68fe70 2020-10-07 op {"text/gemini", "gmi"},
88 cc68fe70 2020-10-07 op {"text/markdown", "markdown"},
89 cc68fe70 2020-10-07 op {"text/markdown", "md"},
90 cc68fe70 2020-10-07 op {"text/plain", "txt"},
91 cc68fe70 2020-10-07 op
92 cc68fe70 2020-10-07 op {NULL, NULL}
93 cc68fe70 2020-10-07 op };
94 cc68fe70 2020-10-07 op
95 3e4749f7 2020-10-02 op int dirfd;
96 3e4749f7 2020-10-02 op
97 592fd624 2020-10-07 op char *url_after_proto(char*);
98 592fd624 2020-10-07 op char *url_start_of_request(char*);
99 592fd624 2020-10-07 op int url_trim(char*);
100 592fd624 2020-10-07 op void adjust_path(char*);
101 592fd624 2020-10-07 op int path_isdir(char*);
102 f28f9311 2020-10-14 op ssize_t filesize(int);
103 592fd624 2020-10-07 op
104 592fd624 2020-10-07 op int start_reply(struct pollfd*, struct client*, int, const char*);
105 592fd624 2020-10-07 op int isdir(int);
106 cc68fe70 2020-10-07 op const char *path_ext(const char*);
107 cc68fe70 2020-10-07 op const char *mime(const char*);
108 f28f9311 2020-10-14 op int open_file(char*, struct pollfd*, struct client*);
109 592fd624 2020-10-07 op void send_file(char*, struct pollfd*, struct client*);
110 592fd624 2020-10-07 op void send_dir(char*, struct pollfd*, struct client*);
111 592fd624 2020-10-07 op void handle(struct pollfd*, struct client*);
112 592fd624 2020-10-07 op
113 592fd624 2020-10-07 op void mark_nonblock(int);
114 592fd624 2020-10-07 op int make_soket(int);
115 592fd624 2020-10-07 op void do_accept(int, struct tls*, struct pollfd*, struct client*);
116 592fd624 2020-10-07 op void goodbye(struct pollfd*, struct client*);
117 592fd624 2020-10-07 op void loop(struct tls*, int);
118 592fd624 2020-10-07 op
119 592fd624 2020-10-07 op void usage(const char*);
120 592fd624 2020-10-07 op
121 3e4749f7 2020-10-02 op char *
122 3e4749f7 2020-10-02 op url_after_proto(char *url)
123 3e4749f7 2020-10-02 op {
124 3e4749f7 2020-10-02 op char *s;
125 3e4749f7 2020-10-02 op const char *proto = "gemini";
126 3e4749f7 2020-10-02 op const char *marker = "://";
127 3e4749f7 2020-10-02 op
128 3e4749f7 2020-10-02 op if ((s = strstr(url, marker)) == NULL)
129 3e4749f7 2020-10-02 op return url;
130 3e4749f7 2020-10-02 op
131 3e4749f7 2020-10-02 op /* not a gemini:// URL */
132 3e4749f7 2020-10-02 op
133 3e4749f7 2020-10-02 op if (s - strlen(proto) < url)
134 3e4749f7 2020-10-02 op return NULL;
135 3e4749f7 2020-10-02 op /* TODO: */
136 3e4749f7 2020-10-02 op /* if (strcmp(s - strlen(proto), proto)) */
137 3e4749f7 2020-10-02 op /* return NULL; */
138 3e4749f7 2020-10-02 op
139 3e4749f7 2020-10-02 op /* a valid gemini:// URL */
140 3e4749f7 2020-10-02 op return s + strlen(marker);
141 3e4749f7 2020-10-02 op }
142 3e4749f7 2020-10-02 op
143 3e4749f7 2020-10-02 op char *
144 3e4749f7 2020-10-02 op url_start_of_request(char *url)
145 3e4749f7 2020-10-02 op {
146 3e4749f7 2020-10-02 op char *s, *t;
147 3e4749f7 2020-10-02 op
148 3e4749f7 2020-10-02 op if ((s = url_after_proto(url)) == NULL)
149 3e4749f7 2020-10-02 op return NULL;
150 3e4749f7 2020-10-02 op
151 3e4749f7 2020-10-02 op if ((t = strstr(s, "/")) == NULL)
152 3e4749f7 2020-10-02 op return s + strlen(s);
153 3e4749f7 2020-10-02 op return t;
154 3e4749f7 2020-10-02 op }
155 3e4749f7 2020-10-02 op
156 3e4749f7 2020-10-02 op int
157 3e4749f7 2020-10-02 op url_trim(char *url)
158 3e4749f7 2020-10-02 op {
159 3e4749f7 2020-10-02 op const char *e = "\r\n";
160 3e4749f7 2020-10-02 op char *s;
161 3e4749f7 2020-10-02 op
162 3e4749f7 2020-10-02 op if ((s = strstr(url, e)) == NULL)
163 3e4749f7 2020-10-02 op return 0;
164 3e4749f7 2020-10-02 op s[0] = '\0';
165 3e4749f7 2020-10-02 op s[1] = '\0';
166 3e4749f7 2020-10-02 op
167 3e4749f7 2020-10-02 op if (s[2] != '\0') {
168 4d4f0e19 2020-10-03 op fprintf(stderr, "the request was longer than 1024 bytes\n");
169 3e4749f7 2020-10-02 op return 0;
170 3e4749f7 2020-10-02 op }
171 3e4749f7 2020-10-02 op
172 3e4749f7 2020-10-02 op return 1;
173 3e4749f7 2020-10-02 op }
174 3e4749f7 2020-10-02 op
175 3e4749f7 2020-10-02 op void
176 3e4749f7 2020-10-02 op adjust_path(char *path)
177 3e4749f7 2020-10-02 op {
178 3e4749f7 2020-10-02 op char *s;
179 3e4749f7 2020-10-02 op size_t len;
180 3e4749f7 2020-10-02 op
181 f28f9311 2020-10-14 op /* /.. -> / */
182 3e4749f7 2020-10-02 op len = strlen(path);
183 3e4749f7 2020-10-02 op if (len >= 3) {
184 3e4749f7 2020-10-02 op if (!strcmp(&path[len-3], "/..")) {
185 3e4749f7 2020-10-02 op path[len-2] = '\0';
186 3e4749f7 2020-10-02 op }
187 3e4749f7 2020-10-02 op }
188 3e4749f7 2020-10-02 op
189 3e4749f7 2020-10-02 op /* if the path is only `..` trim out and exit */
190 3e4749f7 2020-10-02 op if (!strcmp(path, "..")) {
191 3e4749f7 2020-10-02 op path[0] = '\0';
192 3e4749f7 2020-10-02 op return;
193 3e4749f7 2020-10-02 op }
194 3e4749f7 2020-10-02 op
195 3e4749f7 2020-10-02 op /* remove every ../ in the path */
196 3e4749f7 2020-10-02 op while (1) {
197 3e4749f7 2020-10-02 op if ((s = strstr(path, "../")) == NULL)
198 3e4749f7 2020-10-02 op return;
199 67328d23 2020-10-03 op memmove(s, s+3, strlen(s)+1); /* copy also the \0 */
200 3e4749f7 2020-10-02 op }
201 3e4749f7 2020-10-02 op }
202 3e4749f7 2020-10-02 op
203 3e4749f7 2020-10-02 op int
204 3e4749f7 2020-10-02 op path_isdir(char *path)
205 3e4749f7 2020-10-02 op {
206 3e4749f7 2020-10-02 op if (*path == '\0')
207 3e4749f7 2020-10-02 op return 1;
208 4d4f0e19 2020-10-03 op return path[strlen(path)-1] == '/';
209 3e4749f7 2020-10-02 op }
210 3e4749f7 2020-10-02 op
211 592fd624 2020-10-07 op int
212 592fd624 2020-10-07 op start_reply(struct pollfd *pfd, struct client *client, int code, const char *reason)
213 3e4749f7 2020-10-02 op {
214 3e4749f7 2020-10-02 op char buf[1030] = {0}; /* status + ' ' + max reply len + \r\n\0 */
215 3e4749f7 2020-10-02 op int len;
216 592fd624 2020-10-07 op int ret;
217 3e4749f7 2020-10-02 op
218 592fd624 2020-10-07 op client->code = code;
219 592fd624 2020-10-07 op client->meta = reason;
220 592fd624 2020-10-07 op client->state = S_INITIALIZING;
221 592fd624 2020-10-07 op
222 3e4749f7 2020-10-02 op len = snprintf(buf, sizeof(buf), "%d %s\r\n", code, reason);
223 3e4749f7 2020-10-02 op assert(len < (int)sizeof(buf));
224 592fd624 2020-10-07 op ret = tls_write(client->ctx, buf, len);
225 592fd624 2020-10-07 op if (ret == TLS_WANT_POLLIN) {
226 592fd624 2020-10-07 op pfd->events = POLLIN;
227 592fd624 2020-10-07 op return 0;
228 592fd624 2020-10-07 op }
229 592fd624 2020-10-07 op
230 592fd624 2020-10-07 op if (ret == TLS_WANT_POLLOUT) {
231 592fd624 2020-10-07 op pfd->events = POLLOUT;
232 592fd624 2020-10-07 op return 0;
233 592fd624 2020-10-07 op }
234 592fd624 2020-10-07 op
235 592fd624 2020-10-07 op return 1;
236 3e4749f7 2020-10-02 op }
237 3e4749f7 2020-10-02 op
238 3e4749f7 2020-10-02 op int
239 3e4749f7 2020-10-02 op isdir(int fd)
240 3e4749f7 2020-10-02 op {
241 3e4749f7 2020-10-02 op struct stat sb;
242 3e4749f7 2020-10-02 op
243 3e4749f7 2020-10-02 op if (fstat(fd, &sb) == -1) {
244 3e4749f7 2020-10-02 op warn("fstat");
245 4d4f0e19 2020-10-03 op return 1; /* we'll probably fail later on anyway */
246 3e4749f7 2020-10-02 op }
247 3e4749f7 2020-10-02 op
248 3e4749f7 2020-10-02 op return S_ISDIR(sb.st_mode);
249 cc68fe70 2020-10-07 op }
250 cc68fe70 2020-10-07 op
251 f28f9311 2020-10-14 op ssize_t
252 f28f9311 2020-10-14 op filesize(int fd)
253 f28f9311 2020-10-14 op {
254 f28f9311 2020-10-14 op ssize_t len;
255 f28f9311 2020-10-14 op
256 f28f9311 2020-10-14 op if ((len = lseek(fd, 0, SEEK_END)) == -1)
257 f28f9311 2020-10-14 op return -1;
258 f28f9311 2020-10-14 op if (lseek(fd, 0, SEEK_SET) == -1)
259 f28f9311 2020-10-14 op return -1;
260 f28f9311 2020-10-14 op return len;
261 f28f9311 2020-10-14 op }
262 f28f9311 2020-10-14 op
263 cc68fe70 2020-10-07 op const char *
264 cc68fe70 2020-10-07 op path_ext(const char *path)
265 cc68fe70 2020-10-07 op {
266 cc68fe70 2020-10-07 op const char *end;
267 cc68fe70 2020-10-07 op
268 cc68fe70 2020-10-07 op end = path + strlen(path)-1; /* the last byte before the NUL */
269 cc68fe70 2020-10-07 op for (; end != path; --end) {
270 cc68fe70 2020-10-07 op if (*end == '.')
271 cc68fe70 2020-10-07 op return end+1;
272 cc68fe70 2020-10-07 op if (*end == '/')
273 cc68fe70 2020-10-07 op break;
274 cc68fe70 2020-10-07 op }
275 cc68fe70 2020-10-07 op
276 cc68fe70 2020-10-07 op return NULL;
277 cc68fe70 2020-10-07 op }
278 cc68fe70 2020-10-07 op
279 cc68fe70 2020-10-07 op const char *
280 cc68fe70 2020-10-07 op mime(const char *path)
281 cc68fe70 2020-10-07 op {
282 cc68fe70 2020-10-07 op const char *ext, *def = "application/octet-stream";
283 cc68fe70 2020-10-07 op struct etm *t;
284 cc68fe70 2020-10-07 op
285 cc68fe70 2020-10-07 op if ((ext = path_ext(path)) == NULL)
286 cc68fe70 2020-10-07 op return def;
287 cc68fe70 2020-10-07 op
288 cc68fe70 2020-10-07 op for (t = filetypes; t->mime != NULL; ++t)
289 cc68fe70 2020-10-07 op if (!strcmp(ext, t->ext))
290 cc68fe70 2020-10-07 op return t->mime;
291 cc68fe70 2020-10-07 op
292 cc68fe70 2020-10-07 op return def;
293 3e4749f7 2020-10-02 op }
294 3e4749f7 2020-10-02 op
295 f28f9311 2020-10-14 op int
296 f28f9311 2020-10-14 op open_file(char *path, struct pollfd *fds, struct client *c)
297 3e4749f7 2020-10-02 op {
298 3e4749f7 2020-10-02 op char fpath[PATHBUF];
299 3e4749f7 2020-10-02 op
300 f28f9311 2020-10-14 op assert(path != NULL);
301 3e4749f7 2020-10-02 op
302 f28f9311 2020-10-14 op bzero(fpath, sizeof(fpath));
303 3e4749f7 2020-10-02 op
304 f28f9311 2020-10-14 op if (*path != '.')
305 f28f9311 2020-10-14 op fpath[0] = '.';
306 f28f9311 2020-10-14 op strlcat(fpath, path, PATHBUF);
307 3e4749f7 2020-10-02 op
308 f28f9311 2020-10-14 op if ((c->fd = openat(dirfd, fpath, O_RDONLY | O_NOFOLLOW)) == -1) {
309 f28f9311 2020-10-14 op warn("open: %s", fpath);
310 f28f9311 2020-10-14 op if (!start_reply(fds, c, NOT_FOUND, "not found"))
311 f28f9311 2020-10-14 op return 0;
312 f28f9311 2020-10-14 op goodbye(fds, c);
313 f28f9311 2020-10-14 op return 0;
314 f28f9311 2020-10-14 op }
315 3e4749f7 2020-10-02 op
316 f28f9311 2020-10-14 op if (isdir(c->fd)) {
317 f28f9311 2020-10-14 op warnx("%s is a directory, trying %s/index.gmi", fpath, fpath);
318 f28f9311 2020-10-14 op close(c->fd);
319 f28f9311 2020-10-14 op c->fd = -1;
320 f28f9311 2020-10-14 op send_dir(fpath, fds, c);
321 f28f9311 2020-10-14 op return 0;
322 f28f9311 2020-10-14 op }
323 3e4749f7 2020-10-02 op
324 f28f9311 2020-10-14 op if ((c->len = filesize(c->fd)) == -1) {
325 f28f9311 2020-10-14 op warn("filesize: %s", fpath);
326 f28f9311 2020-10-14 op goodbye(fds, c);
327 f28f9311 2020-10-14 op return 0;
328 f28f9311 2020-10-14 op }
329 f28f9311 2020-10-14 op
330 f28f9311 2020-10-14 op if ((c->buf = mmap(NULL, c->len, PROT_READ, MAP_PRIVATE,
331 f28f9311 2020-10-14 op c->fd, 0)) == MAP_FAILED) {
332 f28f9311 2020-10-14 op warn("mmap: %s", fpath);
333 f28f9311 2020-10-14 op goodbye(fds, c);
334 f28f9311 2020-10-14 op return 0;
335 592fd624 2020-10-07 op }
336 f28f9311 2020-10-14 op c->i = c->buf;
337 3e4749f7 2020-10-02 op
338 f28f9311 2020-10-14 op return start_reply(fds, c, SUCCESS, mime(fpath));
339 f28f9311 2020-10-14 op }
340 592fd624 2020-10-07 op
341 f28f9311 2020-10-14 op void
342 f28f9311 2020-10-14 op send_file(char *path, struct pollfd *fds, struct client *c)
343 f28f9311 2020-10-14 op {
344 f28f9311 2020-10-14 op ssize_t ret, len;
345 592fd624 2020-10-07 op
346 f28f9311 2020-10-14 op if (c->fd == -1) {
347 f28f9311 2020-10-14 op if (!open_file(path, fds, c))
348 f28f9311 2020-10-14 op return;
349 f28f9311 2020-10-14 op c->state = S_SENDING;
350 f28f9311 2020-10-14 op }
351 592fd624 2020-10-07 op
352 f28f9311 2020-10-14 op len = (c->buf + c->len) - c->i;
353 f28f9311 2020-10-14 op
354 f28f9311 2020-10-14 op while (len > 0) {
355 f28f9311 2020-10-14 op switch (ret = tls_write(c->ctx, c->i, len)) {
356 f28f9311 2020-10-14 op case -1:
357 f28f9311 2020-10-14 op warnx("tls_write: %s", tls_error(c->ctx));
358 f28f9311 2020-10-14 op goodbye(fds, c);
359 f28f9311 2020-10-14 op return;
360 f28f9311 2020-10-14 op
361 f28f9311 2020-10-14 op case TLS_WANT_POLLIN:
362 f28f9311 2020-10-14 op fds->events = POLLIN;
363 f28f9311 2020-10-14 op return;
364 f28f9311 2020-10-14 op
365 f28f9311 2020-10-14 op case TLS_WANT_POLLOUT:
366 f28f9311 2020-10-14 op fds->events = POLLOUT;
367 f28f9311 2020-10-14 op return;
368 f28f9311 2020-10-14 op
369 f28f9311 2020-10-14 op default:
370 f28f9311 2020-10-14 op c->i += ret;
371 f28f9311 2020-10-14 op len -= ret;
372 f28f9311 2020-10-14 op break;
373 3e4749f7 2020-10-02 op }
374 3e4749f7 2020-10-02 op }
375 f28f9311 2020-10-14 op
376 f28f9311 2020-10-14 op goodbye(fds, c);
377 3e4749f7 2020-10-02 op }
378 3e4749f7 2020-10-02 op
379 3e4749f7 2020-10-02 op void
380 592fd624 2020-10-07 op send_dir(char *path, struct pollfd *fds, struct client *client)
381 3e4749f7 2020-10-02 op {
382 3e4749f7 2020-10-02 op char fpath[PATHBUF];
383 3e4749f7 2020-10-02 op size_t len;
384 3e4749f7 2020-10-02 op
385 3e4749f7 2020-10-02 op bzero(fpath, PATHBUF);
386 3e4749f7 2020-10-02 op
387 9c56b0a7 2020-10-14 op if (path[0] != '.')
388 3e4749f7 2020-10-02 op fpath[0] = '.';
389 3e4749f7 2020-10-02 op
390 3e4749f7 2020-10-02 op /* this cannot fail since sizeof(fpath) > maxlen of path */
391 3e4749f7 2020-10-02 op strlcat(fpath, path, PATHBUF);
392 3e4749f7 2020-10-02 op len = strlen(fpath);
393 3e4749f7 2020-10-02 op
394 3e4749f7 2020-10-02 op /* add a trailing / in case. */
395 3e4749f7 2020-10-02 op if (fpath[len-1] != '/') {
396 3e4749f7 2020-10-02 op fpath[len] = '/';
397 3e4749f7 2020-10-02 op }
398 3e4749f7 2020-10-02 op
399 3e4749f7 2020-10-02 op strlcat(fpath, "index.gmi", sizeof(fpath));
400 3e4749f7 2020-10-02 op
401 592fd624 2020-10-07 op send_file(fpath, fds, client);
402 3e4749f7 2020-10-02 op }
403 3e4749f7 2020-10-02 op
404 3e4749f7 2020-10-02 op void
405 592fd624 2020-10-07 op handle(struct pollfd *fds, struct client *client)
406 3e4749f7 2020-10-02 op {
407 592fd624 2020-10-07 op char buf[GEMINI_URL_LEN];
408 3e4749f7 2020-10-02 op char *path;
409 3e4749f7 2020-10-02 op
410 592fd624 2020-10-07 op switch (client->state) {
411 592fd624 2020-10-07 op case S_OPEN:
412 592fd624 2020-10-07 op bzero(buf, GEMINI_URL_LEN);
413 592fd624 2020-10-07 op switch (tls_read(client->ctx, buf, sizeof(buf)-1)) {
414 592fd624 2020-10-07 op case -1:
415 592fd624 2020-10-07 op warnx("tls_read: %s", tls_error(client->ctx));
416 592fd624 2020-10-07 op goodbye(fds, client);
417 592fd624 2020-10-07 op return;
418 3e4749f7 2020-10-02 op
419 592fd624 2020-10-07 op case TLS_WANT_POLLIN:
420 592fd624 2020-10-07 op fds->events = POLLIN;
421 592fd624 2020-10-07 op return;
422 3e4749f7 2020-10-02 op
423 592fd624 2020-10-07 op case TLS_WANT_POLLOUT:
424 592fd624 2020-10-07 op fds->events = POLLOUT;
425 592fd624 2020-10-07 op return;
426 592fd624 2020-10-07 op }
427 3e4749f7 2020-10-02 op
428 592fd624 2020-10-07 op if (!url_trim(buf)) {
429 592fd624 2020-10-07 op if (!start_reply(fds, client, BAD_REQUEST, "bad request"))
430 592fd624 2020-10-07 op return;
431 592fd624 2020-10-07 op goodbye(fds, client);
432 592fd624 2020-10-07 op return;
433 592fd624 2020-10-07 op }
434 3e4749f7 2020-10-02 op
435 592fd624 2020-10-07 op if ((path = url_start_of_request(buf)) == NULL) {
436 592fd624 2020-10-07 op if (!start_reply(fds, client, BAD_REQUEST, "bad request"))
437 592fd624 2020-10-07 op return;
438 592fd624 2020-10-07 op goodbye(fds, client);
439 592fd624 2020-10-07 op return;
440 592fd624 2020-10-07 op }
441 592fd624 2020-10-07 op
442 592fd624 2020-10-07 op adjust_path(path);
443 592fd624 2020-10-07 op fprintf(stderr, "requested path: %s\n", path);
444 592fd624 2020-10-07 op
445 592fd624 2020-10-07 op if (path_isdir(path))
446 592fd624 2020-10-07 op send_dir(path, fds, client);
447 592fd624 2020-10-07 op else
448 592fd624 2020-10-07 op send_file(path, fds, client);
449 592fd624 2020-10-07 op break;
450 592fd624 2020-10-07 op
451 592fd624 2020-10-07 op case S_INITIALIZING:
452 592fd624 2020-10-07 op if (!start_reply(fds, client, client->code, client->meta))
453 592fd624 2020-10-07 op return;
454 592fd624 2020-10-07 op
455 592fd624 2020-10-07 op if (client->code != SUCCESS) {
456 592fd624 2020-10-07 op /* we don't need a body */
457 592fd624 2020-10-07 op goodbye(fds, client);
458 592fd624 2020-10-07 op return;
459 592fd624 2020-10-07 op }
460 592fd624 2020-10-07 op
461 592fd624 2020-10-07 op client->state = S_SENDING;
462 592fd624 2020-10-07 op
463 592fd624 2020-10-07 op /* fallthrough */
464 592fd624 2020-10-07 op
465 592fd624 2020-10-07 op case S_SENDING:
466 592fd624 2020-10-07 op send_file(NULL, fds, client);
467 592fd624 2020-10-07 op break;
468 592fd624 2020-10-07 op
469 592fd624 2020-10-07 op case S_CLOSING:
470 592fd624 2020-10-07 op goodbye(fds, client);
471 592fd624 2020-10-07 op break;
472 592fd624 2020-10-07 op
473 592fd624 2020-10-07 op default:
474 592fd624 2020-10-07 op /* unreachable */
475 592fd624 2020-10-07 op abort();
476 592fd624 2020-10-07 op }
477 3e4749f7 2020-10-02 op }
478 3e4749f7 2020-10-02 op
479 592fd624 2020-10-07 op void
480 592fd624 2020-10-07 op mark_nonblock(int fd)
481 592fd624 2020-10-07 op {
482 592fd624 2020-10-07 op int flags;
483 592fd624 2020-10-07 op
484 592fd624 2020-10-07 op if ((flags = fcntl(fd, F_GETFL)) == -1)
485 592fd624 2020-10-07 op err(1, "fcntl(F_GETFL)");
486 592fd624 2020-10-07 op if (fcntl(fd, F_SETFL, flags | O_NONBLOCK) == -1)
487 592fd624 2020-10-07 op err(1, "fcntl(F_SETFL)");
488 592fd624 2020-10-07 op }
489 592fd624 2020-10-07 op
490 3e4749f7 2020-10-02 op int
491 9468027b 2020-10-15 op make_socket(int port, int family)
492 3e4749f7 2020-10-02 op {
493 3e4749f7 2020-10-02 op int sock, v;
494 9468027b 2020-10-15 op struct sockaddr_in addr4;
495 9468027b 2020-10-15 op struct sockaddr_in6 addr6;
496 9468027b 2020-10-15 op struct sockaddr *addr;
497 9468027b 2020-10-15 op socklen_t len;
498 3e4749f7 2020-10-02 op
499 9468027b 2020-10-15 op switch (family) {
500 9468027b 2020-10-15 op case AF_INET:
501 9468027b 2020-10-15 op bzero(&addr4, sizeof(addr4));
502 9468027b 2020-10-15 op addr4.sin_family = family;
503 9468027b 2020-10-15 op addr4.sin_port = htons(port);
504 9468027b 2020-10-15 op addr4.sin_addr.s_addr = INADDR_ANY;
505 9468027b 2020-10-15 op addr = (struct sockaddr*)&addr4;
506 9468027b 2020-10-15 op len = sizeof(addr4);
507 9468027b 2020-10-15 op break;
508 9468027b 2020-10-15 op
509 9468027b 2020-10-15 op case AF_INET6:
510 9468027b 2020-10-15 op bzero(&addr6, sizeof(addr6));
511 9468027b 2020-10-15 op addr6.sin6_family = AF_INET6;
512 9468027b 2020-10-15 op addr6.sin6_port = htons(port);
513 9468027b 2020-10-15 op addr6.sin6_addr = in6addr_any;
514 9468027b 2020-10-15 op addr = (struct sockaddr*)&addr6;
515 9468027b 2020-10-15 op len = sizeof(addr6);
516 9468027b 2020-10-15 op break;
517 9468027b 2020-10-15 op
518 9468027b 2020-10-15 op default:
519 9468027b 2020-10-15 op /* unreachable */
520 9468027b 2020-10-15 op abort();
521 9468027b 2020-10-15 op }
522 9468027b 2020-10-15 op
523 9468027b 2020-10-15 op if ((sock = socket(family, SOCK_STREAM, 0)) == -1)
524 f28f9311 2020-10-14 op err(1, "socket");
525 3e4749f7 2020-10-02 op
526 3e4749f7 2020-10-02 op v = 1;
527 3e4749f7 2020-10-02 op if (setsockopt(sock, SOL_SOCKET, SO_REUSEADDR, &v, sizeof(v)) == -1)
528 3e4749f7 2020-10-02 op err(1, "setsockopt(SO_REUSEADDR)");
529 3e4749f7 2020-10-02 op
530 3e4749f7 2020-10-02 op v = 1;
531 3e4749f7 2020-10-02 op if (setsockopt(sock, SOL_SOCKET, SO_REUSEPORT, &v, sizeof(v)) == -1)
532 3e4749f7 2020-10-02 op err(1, "setsockopt(SO_REUSEPORT)");
533 3e4749f7 2020-10-02 op
534 592fd624 2020-10-07 op mark_nonblock(sock);
535 592fd624 2020-10-07 op
536 9468027b 2020-10-15 op if (bind(sock, addr, len) == -1)
537 f28f9311 2020-10-14 op err(1, "bind");
538 3e4749f7 2020-10-02 op
539 3e4749f7 2020-10-02 op if (listen(sock, 16) == -1)
540 f28f9311 2020-10-14 op err(1, "listen");
541 3e4749f7 2020-10-02 op
542 3e4749f7 2020-10-02 op return sock;
543 3e4749f7 2020-10-02 op }
544 3e4749f7 2020-10-02 op
545 3e4749f7 2020-10-02 op void
546 592fd624 2020-10-07 op do_accept(int sock, struct tls *ctx, struct pollfd *fds, struct client *clients)
547 3e4749f7 2020-10-02 op {
548 592fd624 2020-10-07 op int i, fd;
549 592fd624 2020-10-07 op struct sockaddr_in addr;
550 3e4749f7 2020-10-02 op socklen_t len;
551 3e4749f7 2020-10-02 op
552 592fd624 2020-10-07 op len = sizeof(addr);
553 592fd624 2020-10-07 op if ((fd = accept(sock, (struct sockaddr*)&addr, &len)) == -1) {
554 592fd624 2020-10-07 op if (errno == EWOULDBLOCK)
555 592fd624 2020-10-07 op return;
556 592fd624 2020-10-07 op err(1, "accept");
557 592fd624 2020-10-07 op }
558 3e4749f7 2020-10-02 op
559 592fd624 2020-10-07 op mark_nonblock(fd);
560 3e4749f7 2020-10-02 op
561 592fd624 2020-10-07 op for (i = 0; i < MAX_USERS; ++i) {
562 592fd624 2020-10-07 op if (fds[i].fd == -1) {
563 592fd624 2020-10-07 op bzero(&clients[i], sizeof(struct client));
564 592fd624 2020-10-07 op if (tls_accept_socket(ctx, &clients[i].ctx, fd) == -1)
565 592fd624 2020-10-07 op break; /* goodbye fd! */
566 592fd624 2020-10-07 op
567 592fd624 2020-10-07 op fds[i].fd = fd;
568 592fd624 2020-10-07 op fds[i].events = POLLIN;
569 592fd624 2020-10-07 op
570 592fd624 2020-10-07 op clients[i].state = S_OPEN;
571 592fd624 2020-10-07 op clients[i].fd = -1;
572 f28f9311 2020-10-14 op clients[i].buf = MAP_FAILED;
573 592fd624 2020-10-07 op
574 592fd624 2020-10-07 op return;
575 3e4749f7 2020-10-02 op }
576 592fd624 2020-10-07 op }
577 3e4749f7 2020-10-02 op
578 592fd624 2020-10-07 op close(fd);
579 592fd624 2020-10-07 op }
580 3e4749f7 2020-10-02 op
581 592fd624 2020-10-07 op void
582 592fd624 2020-10-07 op goodbye(struct pollfd *pfd, struct client *c)
583 592fd624 2020-10-07 op {
584 592fd624 2020-10-07 op ssize_t ret;
585 592fd624 2020-10-07 op
586 592fd624 2020-10-07 op c->state = S_CLOSING;
587 592fd624 2020-10-07 op
588 592fd624 2020-10-07 op ret = tls_close(c->ctx);
589 592fd624 2020-10-07 op if (ret == TLS_WANT_POLLIN) {
590 592fd624 2020-10-07 op pfd->events = POLLIN;
591 592fd624 2020-10-07 op return;
592 3e4749f7 2020-10-02 op }
593 592fd624 2020-10-07 op if (ret == TLS_WANT_POLLOUT) {
594 592fd624 2020-10-07 op pfd->events = POLLOUT;
595 592fd624 2020-10-07 op return;
596 592fd624 2020-10-07 op }
597 592fd624 2020-10-07 op
598 592fd624 2020-10-07 op tls_free(c->ctx);
599 592fd624 2020-10-07 op c->ctx = NULL;
600 592fd624 2020-10-07 op
601 f28f9311 2020-10-14 op if (c->buf != MAP_FAILED)
602 f28f9311 2020-10-14 op munmap(c->buf, c->len);
603 f28f9311 2020-10-14 op
604 592fd624 2020-10-07 op if (c->fd != -1)
605 592fd624 2020-10-07 op close(c->fd);
606 592fd624 2020-10-07 op
607 592fd624 2020-10-07 op close(pfd->fd);
608 592fd624 2020-10-07 op pfd->fd = -1;
609 3e4749f7 2020-10-02 op }
610 3e4749f7 2020-10-02 op
611 3e4749f7 2020-10-02 op void
612 592fd624 2020-10-07 op loop(struct tls *ctx, int sock)
613 592fd624 2020-10-07 op {
614 592fd624 2020-10-07 op int i, todo;
615 592fd624 2020-10-07 op struct client clients[MAX_USERS];
616 592fd624 2020-10-07 op struct pollfd fds[MAX_USERS];
617 592fd624 2020-10-07 op
618 592fd624 2020-10-07 op for (i = 0; i < MAX_USERS; ++i) {
619 592fd624 2020-10-07 op fds[i].fd = -1;
620 592fd624 2020-10-07 op fds[i].events = POLLIN;
621 592fd624 2020-10-07 op bzero(&clients[i], sizeof(struct client));
622 592fd624 2020-10-07 op }
623 592fd624 2020-10-07 op
624 592fd624 2020-10-07 op fds[0].fd = sock;
625 592fd624 2020-10-07 op
626 592fd624 2020-10-07 op for (;;) {
627 f28f9311 2020-10-14 op if ((todo = poll(fds, MAX_USERS, INFTIM)) == -1)
628 592fd624 2020-10-07 op err(1, "poll");
629 592fd624 2020-10-07 op
630 592fd624 2020-10-07 op for (i = 0; i < MAX_USERS; i++) {
631 592fd624 2020-10-07 op assert(i < MAX_USERS);
632 592fd624 2020-10-07 op
633 592fd624 2020-10-07 op if (fds[i].revents == 0)
634 592fd624 2020-10-07 op continue;
635 592fd624 2020-10-07 op
636 592fd624 2020-10-07 op if (fds[i].revents & (POLLERR|POLLNVAL))
637 592fd624 2020-10-07 op err(1, "bad fd %d", fds[i].fd);
638 592fd624 2020-10-07 op
639 592fd624 2020-10-07 op if (fds[i].revents & POLLHUP) {
640 592fd624 2020-10-07 op goodbye(&fds[i], &clients[i]);
641 592fd624 2020-10-07 op continue;
642 592fd624 2020-10-07 op }
643 592fd624 2020-10-07 op
644 592fd624 2020-10-07 op todo--;
645 592fd624 2020-10-07 op
646 592fd624 2020-10-07 op if (i == 0) { /* new client */
647 592fd624 2020-10-07 op do_accept(sock, ctx, fds, clients);
648 592fd624 2020-10-07 op continue;
649 592fd624 2020-10-07 op }
650 592fd624 2020-10-07 op
651 592fd624 2020-10-07 op handle(&fds[i], &clients[i]);
652 592fd624 2020-10-07 op }
653 592fd624 2020-10-07 op }
654 592fd624 2020-10-07 op }
655 592fd624 2020-10-07 op
656 592fd624 2020-10-07 op void
657 3e4749f7 2020-10-02 op usage(const char *me)
658 3e4749f7 2020-10-02 op {
659 3e4749f7 2020-10-02 op fprintf(stderr,
660 3e4749f7 2020-10-02 op "USAGE: %s [-h] [-c cert.pem] [-d docs] [-k key.pem]\n",
661 3e4749f7 2020-10-02 op me);
662 3e4749f7 2020-10-02 op }
663 3e4749f7 2020-10-02 op
664 3e4749f7 2020-10-02 op int
665 3e4749f7 2020-10-02 op main(int argc, char **argv)
666 3e4749f7 2020-10-02 op {
667 3e4749f7 2020-10-02 op const char *cert = "cert.pem", *key = "key.pem", *dir = "docs";
668 3e4749f7 2020-10-02 op struct tls *ctx = NULL;
669 3e4749f7 2020-10-02 op struct tls_config *conf;
670 3e4749f7 2020-10-02 op int sock, ch;
671 3e4749f7 2020-10-02 op
672 0cf902af 2020-11-03 op signal(SIGPIPE, SIG_IGN);
673 0cf902af 2020-11-03 op
674 3e4749f7 2020-10-02 op while ((ch = getopt(argc, argv, "c:d:hk:")) != -1) {
675 3e4749f7 2020-10-02 op switch (ch) {
676 3e4749f7 2020-10-02 op case 'c':
677 3e4749f7 2020-10-02 op cert = optarg;
678 3e4749f7 2020-10-02 op break;
679 3e4749f7 2020-10-02 op
680 3e4749f7 2020-10-02 op case 'd':
681 3e4749f7 2020-10-02 op dir = optarg;
682 3e4749f7 2020-10-02 op break;
683 3e4749f7 2020-10-02 op
684 3e4749f7 2020-10-02 op case 'h':
685 3e4749f7 2020-10-02 op usage(*argv);
686 3e4749f7 2020-10-02 op return 0;
687 3e4749f7 2020-10-02 op
688 3e4749f7 2020-10-02 op case 'k':
689 3e4749f7 2020-10-02 op key = optarg;
690 3e4749f7 2020-10-02 op break;
691 3e4749f7 2020-10-02 op
692 3e4749f7 2020-10-02 op default:
693 3e4749f7 2020-10-02 op usage(*argv);
694 3e4749f7 2020-10-02 op return 1;
695 3e4749f7 2020-10-02 op }
696 3e4749f7 2020-10-02 op }
697 3e4749f7 2020-10-02 op
698 3e4749f7 2020-10-02 op if ((conf = tls_config_new()) == NULL)
699 3e4749f7 2020-10-02 op err(1, "tls_config_new");
700 0d8ca45a 2020-10-03 op
701 0d8ca45a 2020-10-03 op if (tls_config_set_protocols(conf,
702 0d8ca45a 2020-10-03 op TLS_PROTOCOL_TLSv1_2 | TLS_PROTOCOL_TLSv1_3) == -1)
703 0d8ca45a 2020-10-03 op err(1, "tls_config_set_protocols");
704 3e4749f7 2020-10-02 op
705 4d4f0e19 2020-10-03 op if (tls_config_set_cert_file(conf, cert) == -1)
706 4d4f0e19 2020-10-03 op err(1, "tls_config_set_cert_file: %s", cert);
707 3e4749f7 2020-10-02 op
708 4d4f0e19 2020-10-03 op if (tls_config_set_key_file(conf, key) == -1)
709 4d4f0e19 2020-10-03 op err(1, "tls_config_set_key_file: %s", key);
710 3e4749f7 2020-10-02 op
711 3e4749f7 2020-10-02 op if ((ctx = tls_server()) == NULL)
712 3e4749f7 2020-10-02 op err(1, "tls_server");
713 3e4749f7 2020-10-02 op
714 3e4749f7 2020-10-02 op if (tls_configure(ctx, conf) == -1)
715 3e4749f7 2020-10-02 op errx(1, "tls_configure: %s", tls_error(ctx));
716 3e4749f7 2020-10-02 op
717 9468027b 2020-10-15 op sock = make_socket(1965, AF_INET);
718 3e4749f7 2020-10-02 op
719 3e4749f7 2020-10-02 op if ((dirfd = open(dir, O_RDONLY | O_DIRECTORY)) == -1)
720 3e4749f7 2020-10-02 op err(1, "open: %s", dir);
721 3e4749f7 2020-10-02 op
722 3e4749f7 2020-10-02 op if (unveil(dir, "r") == -1)
723 3e4749f7 2020-10-02 op err(1, "unveil");
724 3e4749f7 2020-10-02 op
725 3e4749f7 2020-10-02 op if (pledge("stdio rpath inet", "") == -1)
726 3e4749f7 2020-10-02 op err(1, "pledge");
727 3e4749f7 2020-10-02 op
728 3e4749f7 2020-10-02 op loop(ctx, sock);
729 3e4749f7 2020-10-02 op
730 3e4749f7 2020-10-02 op close(sock);
731 3e4749f7 2020-10-02 op tls_free(ctx);
732 3e4749f7 2020-10-02 op tls_config_free(conf);
733 3e4749f7 2020-10-02 op }