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 2c3a40fa 2020-11-06 op #include <arpa/inet.h>
22 3e4749f7 2020-10-02 op #include <netinet/in.h>
23 3e4749f7 2020-10-02 op
24 3e4749f7 2020-10-02 op #include <assert.h>
25 3e4749f7 2020-10-02 op #include <err.h>
26 592fd624 2020-10-07 op #include <errno.h>
27 3e4749f7 2020-10-02 op #include <fcntl.h>
28 592fd624 2020-10-07 op #include <poll.h>
29 0cf902af 2020-11-03 op #include <signal.h>
30 3e4749f7 2020-10-02 op #include <stdio.h>
31 3e4749f7 2020-10-02 op #include <stdlib.h>
32 3e4749f7 2020-10-02 op #include <string.h>
33 3e4749f7 2020-10-02 op #include <tls.h>
34 3e4749f7 2020-10-02 op #include <unistd.h>
35 3e4749f7 2020-10-02 op
36 3e4749f7 2020-10-02 op #ifndef __OpenBSD__
37 3e4749f7 2020-10-02 op # define pledge(a, b) 0
38 3e4749f7 2020-10-02 op # define unveil(a, b) 0
39 3e4749f7 2020-10-02 op #endif /* __OpenBSD__ */
40 3e4749f7 2020-10-02 op
41 592fd624 2020-10-07 op #ifndef INFTIM
42 592fd624 2020-10-07 op # define INFTIM -1
43 592fd624 2020-10-07 op #endif /* INFTIM */
44 592fd624 2020-10-07 op
45 3e4749f7 2020-10-02 op #define GEMINI_URL_LEN (1024+3) /* URL max len + \r\n + \0 */
46 3e4749f7 2020-10-02 op
47 4d4f0e19 2020-10-03 op /* large enough to hold a copy of a gemini URL and still have extra room */
48 d95b77a0 2020-10-07 op #define PATHBUF 2048
49 3e4749f7 2020-10-02 op
50 3e4749f7 2020-10-02 op #define SUCCESS 20
51 72342dc9 2020-11-06 op #define TEMP_FAILURE 40
52 3e4749f7 2020-10-02 op #define NOT_FOUND 51
53 3e4749f7 2020-10-02 op #define BAD_REQUEST 59
54 3e4749f7 2020-10-02 op
55 592fd624 2020-10-07 op #ifndef MAX_USERS
56 592fd624 2020-10-07 op #define MAX_USERS 64
57 592fd624 2020-10-07 op #endif
58 592fd624 2020-10-07 op
59 592fd624 2020-10-07 op enum {
60 592fd624 2020-10-07 op S_OPEN,
61 592fd624 2020-10-07 op S_INITIALIZING,
62 592fd624 2020-10-07 op S_SENDING,
63 592fd624 2020-10-07 op S_CLOSING,
64 592fd624 2020-10-07 op };
65 592fd624 2020-10-07 op
66 592fd624 2020-10-07 op struct client {
67 592fd624 2020-10-07 op struct tls *ctx;
68 f28f9311 2020-10-14 op int state;
69 f28f9311 2020-10-14 op int code;
70 592fd624 2020-10-07 op const char *meta;
71 f28f9311 2020-10-14 op int fd;
72 72342dc9 2020-11-06 op pid_t child;
73 f28f9311 2020-10-14 op void *buf, *i;
74 f28f9311 2020-10-14 op ssize_t len, off;
75 2c3a40fa 2020-11-06 op int af;
76 2c3a40fa 2020-11-06 op struct in_addr addr;
77 592fd624 2020-10-07 op };
78 592fd624 2020-10-07 op
79 cc68fe70 2020-10-07 op struct etm { /* file extension to mime */
80 cc68fe70 2020-10-07 op const char *mime;
81 cc68fe70 2020-10-07 op const char *ext;
82 cc68fe70 2020-10-07 op } filetypes[] = {
83 cc68fe70 2020-10-07 op {"application/pdf", "pdf"},
84 cc68fe70 2020-10-07 op
85 cc68fe70 2020-10-07 op {"image/gif", "gif"},
86 cc68fe70 2020-10-07 op {"image/jpeg", "jpg"},
87 cc68fe70 2020-10-07 op {"image/jpeg", "jpeg"},
88 cc68fe70 2020-10-07 op {"image/png", "png"},
89 cc68fe70 2020-10-07 op {"image/svg+xml", "svg"},
90 cc68fe70 2020-10-07 op
91 cc68fe70 2020-10-07 op {"text/gemini", "gemini"},
92 cc68fe70 2020-10-07 op {"text/gemini", "gmi"},
93 cc68fe70 2020-10-07 op {"text/markdown", "markdown"},
94 cc68fe70 2020-10-07 op {"text/markdown", "md"},
95 cc68fe70 2020-10-07 op {"text/plain", "txt"},
96 932b001a 2020-11-06 op {"text/xml", "xml"},
97 cc68fe70 2020-10-07 op
98 cc68fe70 2020-10-07 op {NULL, NULL}
99 cc68fe70 2020-10-07 op };
100 cc68fe70 2020-10-07 op
101 2c3a40fa 2020-11-06 op #define LOG(c, fmt, ...) \
102 2c3a40fa 2020-11-06 op do { \
103 2c3a40fa 2020-11-06 op char buf[INET_ADDRSTRLEN]; \
104 2c3a40fa 2020-11-06 op if (inet_ntop((c)->af, &(c)->addr, buf, sizeof(buf)) == NULL) \
105 2c3a40fa 2020-11-06 op err(1, "inet_ntop"); \
106 2c3a40fa 2020-11-06 op dprintf(logfd, "[%s] " fmt "\n", buf, __VA_ARGS__); \
107 2c3a40fa 2020-11-06 op } while (0)
108 3e4749f7 2020-10-02 op
109 72342dc9 2020-11-06 op const char *dir;
110 2c3a40fa 2020-11-06 op int dirfd, logfd;
111 72342dc9 2020-11-06 op int cgi;
112 2c3a40fa 2020-11-06 op
113 592fd624 2020-10-07 op char *url_after_proto(char*);
114 592fd624 2020-10-07 op char *url_start_of_request(char*);
115 2c3a40fa 2020-11-06 op int url_trim(struct client*, char*);
116 592fd624 2020-10-07 op void adjust_path(char*);
117 592fd624 2020-10-07 op int path_isdir(char*);
118 f28f9311 2020-10-14 op ssize_t filesize(int);
119 592fd624 2020-10-07 op
120 592fd624 2020-10-07 op int start_reply(struct pollfd*, struct client*, int, const char*);
121 cc68fe70 2020-10-07 op const char *path_ext(const char*);
122 cc68fe70 2020-10-07 op const char *mime(const char*);
123 f28f9311 2020-10-14 op int open_file(char*, struct pollfd*, struct client*);
124 72342dc9 2020-11-06 op void start_cgi(const char*, struct pollfd*, struct client*);
125 72342dc9 2020-11-06 op void handle_cgi(struct pollfd*, struct client*);
126 592fd624 2020-10-07 op void send_file(char*, struct pollfd*, struct client*);
127 592fd624 2020-10-07 op void send_dir(char*, struct pollfd*, struct client*);
128 592fd624 2020-10-07 op void handle(struct pollfd*, struct client*);
129 592fd624 2020-10-07 op
130 592fd624 2020-10-07 op void mark_nonblock(int);
131 592fd624 2020-10-07 op int make_soket(int);
132 592fd624 2020-10-07 op void do_accept(int, struct tls*, struct pollfd*, struct client*);
133 592fd624 2020-10-07 op void goodbye(struct pollfd*, struct client*);
134 592fd624 2020-10-07 op void loop(struct tls*, int);
135 592fd624 2020-10-07 op
136 592fd624 2020-10-07 op void usage(const char*);
137 592fd624 2020-10-07 op
138 3e4749f7 2020-10-02 op char *
139 3e4749f7 2020-10-02 op url_after_proto(char *url)
140 3e4749f7 2020-10-02 op {
141 3e4749f7 2020-10-02 op char *s;
142 3e4749f7 2020-10-02 op const char *proto = "gemini";
143 3e4749f7 2020-10-02 op const char *marker = "://";
144 3e4749f7 2020-10-02 op
145 3e4749f7 2020-10-02 op if ((s = strstr(url, marker)) == NULL)
146 3e4749f7 2020-10-02 op return url;
147 3e4749f7 2020-10-02 op
148 3e4749f7 2020-10-02 op /* not a gemini:// URL */
149 3e4749f7 2020-10-02 op
150 3e4749f7 2020-10-02 op if (s - strlen(proto) < url)
151 3e4749f7 2020-10-02 op return NULL;
152 3e4749f7 2020-10-02 op /* TODO: */
153 3e4749f7 2020-10-02 op /* if (strcmp(s - strlen(proto), proto)) */
154 3e4749f7 2020-10-02 op /* return NULL; */
155 3e4749f7 2020-10-02 op
156 3e4749f7 2020-10-02 op /* a valid gemini:// URL */
157 3e4749f7 2020-10-02 op return s + strlen(marker);
158 3e4749f7 2020-10-02 op }
159 3e4749f7 2020-10-02 op
160 3e4749f7 2020-10-02 op char *
161 3e4749f7 2020-10-02 op url_start_of_request(char *url)
162 3e4749f7 2020-10-02 op {
163 3e4749f7 2020-10-02 op char *s, *t;
164 3e4749f7 2020-10-02 op
165 3e4749f7 2020-10-02 op if ((s = url_after_proto(url)) == NULL)
166 3e4749f7 2020-10-02 op return NULL;
167 3e4749f7 2020-10-02 op
168 3e4749f7 2020-10-02 op if ((t = strstr(s, "/")) == NULL)
169 3e4749f7 2020-10-02 op return s + strlen(s);
170 3e4749f7 2020-10-02 op return t;
171 3e4749f7 2020-10-02 op }
172 3e4749f7 2020-10-02 op
173 3e4749f7 2020-10-02 op int
174 2c3a40fa 2020-11-06 op url_trim(struct client *c, char *url)
175 3e4749f7 2020-10-02 op {
176 3e4749f7 2020-10-02 op const char *e = "\r\n";
177 3e4749f7 2020-10-02 op char *s;
178 3e4749f7 2020-10-02 op
179 3e4749f7 2020-10-02 op if ((s = strstr(url, e)) == NULL)
180 3e4749f7 2020-10-02 op return 0;
181 3e4749f7 2020-10-02 op s[0] = '\0';
182 3e4749f7 2020-10-02 op s[1] = '\0';
183 3e4749f7 2020-10-02 op
184 3e4749f7 2020-10-02 op if (s[2] != '\0') {
185 2c3a40fa 2020-11-06 op LOG(c, "%s", "request longer than 1024 bytes\n");
186 3e4749f7 2020-10-02 op return 0;
187 3e4749f7 2020-10-02 op }
188 3e4749f7 2020-10-02 op
189 3e4749f7 2020-10-02 op return 1;
190 3e4749f7 2020-10-02 op }
191 3e4749f7 2020-10-02 op
192 3e4749f7 2020-10-02 op void
193 3e4749f7 2020-10-02 op adjust_path(char *path)
194 3e4749f7 2020-10-02 op {
195 3e4749f7 2020-10-02 op char *s;
196 3e4749f7 2020-10-02 op size_t len;
197 3e4749f7 2020-10-02 op
198 f28f9311 2020-10-14 op /* /.. -> / */
199 3e4749f7 2020-10-02 op len = strlen(path);
200 3e4749f7 2020-10-02 op if (len >= 3) {
201 3e4749f7 2020-10-02 op if (!strcmp(&path[len-3], "/..")) {
202 3e4749f7 2020-10-02 op path[len-2] = '\0';
203 3e4749f7 2020-10-02 op }
204 3e4749f7 2020-10-02 op }
205 3e4749f7 2020-10-02 op
206 3e4749f7 2020-10-02 op /* if the path is only `..` trim out and exit */
207 3e4749f7 2020-10-02 op if (!strcmp(path, "..")) {
208 3e4749f7 2020-10-02 op path[0] = '\0';
209 3e4749f7 2020-10-02 op return;
210 3e4749f7 2020-10-02 op }
211 3e4749f7 2020-10-02 op
212 3e4749f7 2020-10-02 op /* remove every ../ in the path */
213 3e4749f7 2020-10-02 op while (1) {
214 3e4749f7 2020-10-02 op if ((s = strstr(path, "../")) == NULL)
215 3e4749f7 2020-10-02 op return;
216 67328d23 2020-10-03 op memmove(s, s+3, strlen(s)+1); /* copy also the \0 */
217 3e4749f7 2020-10-02 op }
218 3e4749f7 2020-10-02 op }
219 3e4749f7 2020-10-02 op
220 3e4749f7 2020-10-02 op int
221 3e4749f7 2020-10-02 op path_isdir(char *path)
222 3e4749f7 2020-10-02 op {
223 3e4749f7 2020-10-02 op if (*path == '\0')
224 3e4749f7 2020-10-02 op return 1;
225 4d4f0e19 2020-10-03 op return path[strlen(path)-1] == '/';
226 3e4749f7 2020-10-02 op }
227 3e4749f7 2020-10-02 op
228 592fd624 2020-10-07 op int
229 592fd624 2020-10-07 op start_reply(struct pollfd *pfd, struct client *client, int code, const char *reason)
230 3e4749f7 2020-10-02 op {
231 3e4749f7 2020-10-02 op char buf[1030] = {0}; /* status + ' ' + max reply len + \r\n\0 */
232 3e4749f7 2020-10-02 op int len;
233 592fd624 2020-10-07 op int ret;
234 3e4749f7 2020-10-02 op
235 592fd624 2020-10-07 op client->code = code;
236 592fd624 2020-10-07 op client->meta = reason;
237 592fd624 2020-10-07 op client->state = S_INITIALIZING;
238 592fd624 2020-10-07 op
239 3e4749f7 2020-10-02 op len = snprintf(buf, sizeof(buf), "%d %s\r\n", code, reason);
240 3e4749f7 2020-10-02 op assert(len < (int)sizeof(buf));
241 592fd624 2020-10-07 op ret = tls_write(client->ctx, buf, len);
242 592fd624 2020-10-07 op if (ret == TLS_WANT_POLLIN) {
243 592fd624 2020-10-07 op pfd->events = POLLIN;
244 592fd624 2020-10-07 op return 0;
245 592fd624 2020-10-07 op }
246 592fd624 2020-10-07 op
247 592fd624 2020-10-07 op if (ret == TLS_WANT_POLLOUT) {
248 592fd624 2020-10-07 op pfd->events = POLLOUT;
249 592fd624 2020-10-07 op return 0;
250 592fd624 2020-10-07 op }
251 592fd624 2020-10-07 op
252 592fd624 2020-10-07 op return 1;
253 3e4749f7 2020-10-02 op }
254 3e4749f7 2020-10-02 op
255 f28f9311 2020-10-14 op ssize_t
256 f28f9311 2020-10-14 op filesize(int fd)
257 f28f9311 2020-10-14 op {
258 f28f9311 2020-10-14 op ssize_t len;
259 f28f9311 2020-10-14 op
260 f28f9311 2020-10-14 op if ((len = lseek(fd, 0, SEEK_END)) == -1)
261 f28f9311 2020-10-14 op return -1;
262 f28f9311 2020-10-14 op if (lseek(fd, 0, SEEK_SET) == -1)
263 f28f9311 2020-10-14 op return -1;
264 f28f9311 2020-10-14 op return len;
265 f28f9311 2020-10-14 op }
266 f28f9311 2020-10-14 op
267 cc68fe70 2020-10-07 op const char *
268 cc68fe70 2020-10-07 op path_ext(const char *path)
269 cc68fe70 2020-10-07 op {
270 cc68fe70 2020-10-07 op const char *end;
271 cc68fe70 2020-10-07 op
272 cc68fe70 2020-10-07 op end = path + strlen(path)-1; /* the last byte before the NUL */
273 cc68fe70 2020-10-07 op for (; end != path; --end) {
274 cc68fe70 2020-10-07 op if (*end == '.')
275 cc68fe70 2020-10-07 op return end+1;
276 cc68fe70 2020-10-07 op if (*end == '/')
277 cc68fe70 2020-10-07 op break;
278 cc68fe70 2020-10-07 op }
279 cc68fe70 2020-10-07 op
280 cc68fe70 2020-10-07 op return NULL;
281 cc68fe70 2020-10-07 op }
282 cc68fe70 2020-10-07 op
283 cc68fe70 2020-10-07 op const char *
284 cc68fe70 2020-10-07 op mime(const char *path)
285 cc68fe70 2020-10-07 op {
286 cc68fe70 2020-10-07 op const char *ext, *def = "application/octet-stream";
287 cc68fe70 2020-10-07 op struct etm *t;
288 cc68fe70 2020-10-07 op
289 cc68fe70 2020-10-07 op if ((ext = path_ext(path)) == NULL)
290 cc68fe70 2020-10-07 op return def;
291 cc68fe70 2020-10-07 op
292 cc68fe70 2020-10-07 op for (t = filetypes; t->mime != NULL; ++t)
293 cc68fe70 2020-10-07 op if (!strcmp(ext, t->ext))
294 cc68fe70 2020-10-07 op return t->mime;
295 cc68fe70 2020-10-07 op
296 cc68fe70 2020-10-07 op return def;
297 3e4749f7 2020-10-02 op }
298 3e4749f7 2020-10-02 op
299 f28f9311 2020-10-14 op int
300 f28f9311 2020-10-14 op open_file(char *path, struct pollfd *fds, struct client *c)
301 3e4749f7 2020-10-02 op {
302 3e4749f7 2020-10-02 op char fpath[PATHBUF];
303 72342dc9 2020-11-06 op struct stat sb;
304 3e4749f7 2020-10-02 op
305 f28f9311 2020-10-14 op assert(path != NULL);
306 3e4749f7 2020-10-02 op
307 f28f9311 2020-10-14 op bzero(fpath, sizeof(fpath));
308 3e4749f7 2020-10-02 op
309 f28f9311 2020-10-14 op if (*path != '.')
310 f28f9311 2020-10-14 op fpath[0] = '.';
311 f28f9311 2020-10-14 op strlcat(fpath, path, PATHBUF);
312 3e4749f7 2020-10-02 op
313 e8cac16e 2020-11-06 op if ((c->fd = openat(dirfd, fpath,
314 e8cac16e 2020-11-06 op O_RDONLY | O_NOFOLLOW | O_CLOEXEC)) == -1) {
315 2c3a40fa 2020-11-06 op LOG(c, "open failed: %s", fpath);
316 f28f9311 2020-10-14 op if (!start_reply(fds, c, NOT_FOUND, "not found"))
317 f28f9311 2020-10-14 op return 0;
318 f28f9311 2020-10-14 op goodbye(fds, c);
319 f28f9311 2020-10-14 op return 0;
320 f28f9311 2020-10-14 op }
321 3e4749f7 2020-10-02 op
322 72342dc9 2020-11-06 op if (fstat(c->fd, &sb) == -1) {
323 72342dc9 2020-11-06 op LOG(c, "fstat failed for %s", fpath);
324 72342dc9 2020-11-06 op if (!start_reply(fds, c, TEMP_FAILURE, "internal server error"))
325 72342dc9 2020-11-06 op return 0;
326 72342dc9 2020-11-06 op goodbye(fds, c);
327 72342dc9 2020-11-06 op return 0;
328 72342dc9 2020-11-06 op }
329 72342dc9 2020-11-06 op
330 72342dc9 2020-11-06 op if (S_ISDIR(sb.st_mode)) {
331 2c3a40fa 2020-11-06 op LOG(c, "%s is a directory, trying %s/index.gmi", fpath, fpath);
332 f28f9311 2020-10-14 op close(c->fd);
333 f28f9311 2020-10-14 op c->fd = -1;
334 f28f9311 2020-10-14 op send_dir(fpath, fds, c);
335 f28f9311 2020-10-14 op return 0;
336 f28f9311 2020-10-14 op }
337 3e4749f7 2020-10-02 op
338 72342dc9 2020-11-06 op if (cgi && (sb.st_mode & S_IXUSR)) {
339 72342dc9 2020-11-06 op start_cgi(fpath, fds, c);
340 72342dc9 2020-11-06 op return 0;
341 72342dc9 2020-11-06 op }
342 72342dc9 2020-11-06 op
343 f28f9311 2020-10-14 op if ((c->len = filesize(c->fd)) == -1) {
344 2c3a40fa 2020-11-06 op LOG(c, "failed to get file size for %s", fpath);
345 f28f9311 2020-10-14 op goodbye(fds, c);
346 f28f9311 2020-10-14 op return 0;
347 f28f9311 2020-10-14 op }
348 f28f9311 2020-10-14 op
349 f28f9311 2020-10-14 op if ((c->buf = mmap(NULL, c->len, PROT_READ, MAP_PRIVATE,
350 f28f9311 2020-10-14 op c->fd, 0)) == MAP_FAILED) {
351 f28f9311 2020-10-14 op warn("mmap: %s", fpath);
352 f28f9311 2020-10-14 op goodbye(fds, c);
353 f28f9311 2020-10-14 op return 0;
354 592fd624 2020-10-07 op }
355 f28f9311 2020-10-14 op c->i = c->buf;
356 3e4749f7 2020-10-02 op
357 f28f9311 2020-10-14 op return start_reply(fds, c, SUCCESS, mime(fpath));
358 72342dc9 2020-11-06 op }
359 72342dc9 2020-11-06 op
360 72342dc9 2020-11-06 op void
361 72342dc9 2020-11-06 op start_cgi(const char *path, struct pollfd *fds, struct client *c)
362 72342dc9 2020-11-06 op {
363 72342dc9 2020-11-06 op pid_t pid;
364 72342dc9 2020-11-06 op int p[2];
365 72342dc9 2020-11-06 op
366 72342dc9 2020-11-06 op if (pipe(p) == -1)
367 72342dc9 2020-11-06 op goto err;
368 72342dc9 2020-11-06 op
369 72342dc9 2020-11-06 op switch (pid = fork()) {
370 72342dc9 2020-11-06 op case -1:
371 72342dc9 2020-11-06 op goto err;
372 72342dc9 2020-11-06 op
373 72342dc9 2020-11-06 op case 0: { /* child */
374 72342dc9 2020-11-06 op char *expath;
375 72342dc9 2020-11-06 op char addr[INET_ADDRSTRLEN];
376 72342dc9 2020-11-06 op char *argv[] = { NULL, NULL, NULL };
377 72342dc9 2020-11-06 op char *envp[] = {
378 72342dc9 2020-11-06 op /* inherited */
379 72342dc9 2020-11-06 op "PATH=",
380 72342dc9 2020-11-06 op
381 72342dc9 2020-11-06 op /* CGI */
382 72342dc9 2020-11-06 op "SERVER_SOFTWARE=gmid",
383 72342dc9 2020-11-06 op /* "SERVER_NAME=example.com", */
384 72342dc9 2020-11-06 op /* "GATEWAY_INTERFACE=CGI/version" */
385 72342dc9 2020-11-06 op "SERVER_PROTOCOL=gemini",
386 72342dc9 2020-11-06 op "SERVER_PORT=1965",
387 72342dc9 2020-11-06 op /* "PATH_INFO=" */
388 72342dc9 2020-11-06 op /* "PATH_TRANSLATED=" */
389 72342dc9 2020-11-06 op /* "SCRIPT_NAME=" */
390 72342dc9 2020-11-06 op /* "QUERY_STRING=" */
391 72342dc9 2020-11-06 op "REMOTE_ADDR=",
392 72342dc9 2020-11-06 op NULL,
393 72342dc9 2020-11-06 op };
394 72342dc9 2020-11-06 op size_t i;
395 72342dc9 2020-11-06 op
396 72342dc9 2020-11-06 op close(p[0]); /* close the read end */
397 72342dc9 2020-11-06 op if (dup2(p[1], 1) == -1)
398 72342dc9 2020-11-06 op goto childerr;
399 72342dc9 2020-11-06 op
400 72342dc9 2020-11-06 op if (inet_ntop(c->af, &c->addr, addr, sizeof(addr)) == NULL)
401 72342dc9 2020-11-06 op goto childerr;
402 72342dc9 2020-11-06 op
403 72342dc9 2020-11-06 op /* skip the ./ at the start of path*/
404 72342dc9 2020-11-06 op if (asprintf(&expath, "%s%s", dir, path+2) == -1)
405 72342dc9 2020-11-06 op goto childerr;
406 72342dc9 2020-11-06 op argv[0] = argv[1] = expath;
407 72342dc9 2020-11-06 op
408 72342dc9 2020-11-06 op /* fix the envp */
409 72342dc9 2020-11-06 op for (i = 0; envp[i] != NULL; ++i) {
410 72342dc9 2020-11-06 op if (!strcmp(envp[i], "PATH="))
411 72342dc9 2020-11-06 op envp[i] = getenv("PATH");
412 72342dc9 2020-11-06 op else if (!strcmp(envp[i], "REMOTE_ADDR="))
413 72342dc9 2020-11-06 op envp[i] = addr;
414 72342dc9 2020-11-06 op /* else if (!strcmp(envp[i], "PATH_INFO")) */
415 72342dc9 2020-11-06 op /* ... */
416 72342dc9 2020-11-06 op }
417 72342dc9 2020-11-06 op
418 72342dc9 2020-11-06 op execvpe(expath, argv, envp);
419 72342dc9 2020-11-06 op goto childerr;
420 72342dc9 2020-11-06 op }
421 72342dc9 2020-11-06 op
422 72342dc9 2020-11-06 op default: /* parent */
423 72342dc9 2020-11-06 op close(p[1]); /* close the write end */
424 72342dc9 2020-11-06 op close(c->fd);
425 72342dc9 2020-11-06 op c->fd = p[0];
426 72342dc9 2020-11-06 op c->child = pid;
427 72342dc9 2020-11-06 op handle_cgi(fds, c);
428 72342dc9 2020-11-06 op return;
429 72342dc9 2020-11-06 op }
430 72342dc9 2020-11-06 op
431 72342dc9 2020-11-06 op err:
432 72342dc9 2020-11-06 op if (!start_reply(fds, c, TEMP_FAILURE, "internal server error"))
433 72342dc9 2020-11-06 op return;
434 72342dc9 2020-11-06 op goodbye(fds, c);
435 72342dc9 2020-11-06 op return;
436 72342dc9 2020-11-06 op
437 72342dc9 2020-11-06 op childerr:
438 72342dc9 2020-11-06 op dprintf(p[1], "%d internal server error\r\n", TEMP_FAILURE);
439 72342dc9 2020-11-06 op close(p[1]);
440 72342dc9 2020-11-06 op _exit(1);
441 72342dc9 2020-11-06 op }
442 72342dc9 2020-11-06 op
443 72342dc9 2020-11-06 op void
444 72342dc9 2020-11-06 op handle_cgi(struct pollfd *fds, struct client *c)
445 72342dc9 2020-11-06 op {
446 72342dc9 2020-11-06 op char buf[1024];
447 72342dc9 2020-11-06 op ssize_t r, todo;
448 72342dc9 2020-11-06 op
449 72342dc9 2020-11-06 op while (1) {
450 72342dc9 2020-11-06 op r = read(c->fd, buf, sizeof(buf));
451 72342dc9 2020-11-06 op if (r == -1 || r == 0)
452 72342dc9 2020-11-06 op break;
453 72342dc9 2020-11-06 op todo = r;
454 72342dc9 2020-11-06 op while (todo > 0) {
455 72342dc9 2020-11-06 op switch (r = tls_write(c->ctx, buf, todo)) {
456 72342dc9 2020-11-06 op case -1:
457 72342dc9 2020-11-06 op goto end;
458 72342dc9 2020-11-06 op
459 72342dc9 2020-11-06 op case TLS_WANT_POLLOUT:
460 72342dc9 2020-11-06 op case TLS_WANT_POLLIN:
461 72342dc9 2020-11-06 op /* evil! */
462 72342dc9 2020-11-06 op continue;
463 72342dc9 2020-11-06 op
464 72342dc9 2020-11-06 op default:
465 72342dc9 2020-11-06 op todo -= r;
466 72342dc9 2020-11-06 op }
467 72342dc9 2020-11-06 op }
468 72342dc9 2020-11-06 op }
469 72342dc9 2020-11-06 op
470 72342dc9 2020-11-06 op end:
471 72342dc9 2020-11-06 op goodbye(fds, c);
472 f28f9311 2020-10-14 op }
473 592fd624 2020-10-07 op
474 f28f9311 2020-10-14 op void
475 f28f9311 2020-10-14 op send_file(char *path, struct pollfd *fds, struct client *c)
476 f28f9311 2020-10-14 op {
477 f28f9311 2020-10-14 op ssize_t ret, len;
478 592fd624 2020-10-07 op
479 f28f9311 2020-10-14 op if (c->fd == -1) {
480 f28f9311 2020-10-14 op if (!open_file(path, fds, c))
481 f28f9311 2020-10-14 op return;
482 f28f9311 2020-10-14 op c->state = S_SENDING;
483 f28f9311 2020-10-14 op }
484 592fd624 2020-10-07 op
485 f28f9311 2020-10-14 op len = (c->buf + c->len) - c->i;
486 f28f9311 2020-10-14 op
487 f28f9311 2020-10-14 op while (len > 0) {
488 f28f9311 2020-10-14 op switch (ret = tls_write(c->ctx, c->i, len)) {
489 f28f9311 2020-10-14 op case -1:
490 2c3a40fa 2020-11-06 op LOG(c, "tls_write: %s", tls_error(c->ctx));
491 f28f9311 2020-10-14 op goodbye(fds, c);
492 f28f9311 2020-10-14 op return;
493 f28f9311 2020-10-14 op
494 f28f9311 2020-10-14 op case TLS_WANT_POLLIN:
495 f28f9311 2020-10-14 op fds->events = POLLIN;
496 f28f9311 2020-10-14 op return;
497 f28f9311 2020-10-14 op
498 f28f9311 2020-10-14 op case TLS_WANT_POLLOUT:
499 f28f9311 2020-10-14 op fds->events = POLLOUT;
500 f28f9311 2020-10-14 op return;
501 f28f9311 2020-10-14 op
502 f28f9311 2020-10-14 op default:
503 f28f9311 2020-10-14 op c->i += ret;
504 f28f9311 2020-10-14 op len -= ret;
505 f28f9311 2020-10-14 op break;
506 3e4749f7 2020-10-02 op }
507 3e4749f7 2020-10-02 op }
508 f28f9311 2020-10-14 op
509 f28f9311 2020-10-14 op goodbye(fds, c);
510 3e4749f7 2020-10-02 op }
511 3e4749f7 2020-10-02 op
512 3e4749f7 2020-10-02 op void
513 592fd624 2020-10-07 op send_dir(char *path, struct pollfd *fds, struct client *client)
514 3e4749f7 2020-10-02 op {
515 3e4749f7 2020-10-02 op char fpath[PATHBUF];
516 3e4749f7 2020-10-02 op size_t len;
517 3e4749f7 2020-10-02 op
518 3e4749f7 2020-10-02 op bzero(fpath, PATHBUF);
519 3e4749f7 2020-10-02 op
520 9c56b0a7 2020-10-14 op if (path[0] != '.')
521 3e4749f7 2020-10-02 op fpath[0] = '.';
522 3e4749f7 2020-10-02 op
523 3e4749f7 2020-10-02 op /* this cannot fail since sizeof(fpath) > maxlen of path */
524 3e4749f7 2020-10-02 op strlcat(fpath, path, PATHBUF);
525 3e4749f7 2020-10-02 op len = strlen(fpath);
526 3e4749f7 2020-10-02 op
527 3e4749f7 2020-10-02 op /* add a trailing / in case. */
528 3e4749f7 2020-10-02 op if (fpath[len-1] != '/') {
529 3e4749f7 2020-10-02 op fpath[len] = '/';
530 3e4749f7 2020-10-02 op }
531 3e4749f7 2020-10-02 op
532 3e4749f7 2020-10-02 op strlcat(fpath, "index.gmi", sizeof(fpath));
533 3e4749f7 2020-10-02 op
534 592fd624 2020-10-07 op send_file(fpath, fds, client);
535 3e4749f7 2020-10-02 op }
536 3e4749f7 2020-10-02 op
537 3e4749f7 2020-10-02 op void
538 592fd624 2020-10-07 op handle(struct pollfd *fds, struct client *client)
539 3e4749f7 2020-10-02 op {
540 592fd624 2020-10-07 op char buf[GEMINI_URL_LEN];
541 3e4749f7 2020-10-02 op char *path;
542 3e4749f7 2020-10-02 op
543 592fd624 2020-10-07 op switch (client->state) {
544 592fd624 2020-10-07 op case S_OPEN:
545 592fd624 2020-10-07 op bzero(buf, GEMINI_URL_LEN);
546 592fd624 2020-10-07 op switch (tls_read(client->ctx, buf, sizeof(buf)-1)) {
547 592fd624 2020-10-07 op case -1:
548 2c3a40fa 2020-11-06 op LOG(client, "tls_read: %s", tls_error(client->ctx));
549 592fd624 2020-10-07 op goodbye(fds, client);
550 592fd624 2020-10-07 op return;
551 3e4749f7 2020-10-02 op
552 592fd624 2020-10-07 op case TLS_WANT_POLLIN:
553 592fd624 2020-10-07 op fds->events = POLLIN;
554 592fd624 2020-10-07 op return;
555 3e4749f7 2020-10-02 op
556 592fd624 2020-10-07 op case TLS_WANT_POLLOUT:
557 592fd624 2020-10-07 op fds->events = POLLOUT;
558 592fd624 2020-10-07 op return;
559 592fd624 2020-10-07 op }
560 3e4749f7 2020-10-02 op
561 2c3a40fa 2020-11-06 op if (!url_trim(client, buf)) {
562 592fd624 2020-10-07 op if (!start_reply(fds, client, BAD_REQUEST, "bad request"))
563 592fd624 2020-10-07 op return;
564 592fd624 2020-10-07 op goodbye(fds, client);
565 592fd624 2020-10-07 op return;
566 592fd624 2020-10-07 op }
567 3e4749f7 2020-10-02 op
568 592fd624 2020-10-07 op if ((path = url_start_of_request(buf)) == NULL) {
569 592fd624 2020-10-07 op if (!start_reply(fds, client, BAD_REQUEST, "bad request"))
570 592fd624 2020-10-07 op return;
571 592fd624 2020-10-07 op goodbye(fds, client);
572 592fd624 2020-10-07 op return;
573 592fd624 2020-10-07 op }
574 592fd624 2020-10-07 op
575 592fd624 2020-10-07 op adjust_path(path);
576 2c3a40fa 2020-11-06 op LOG(client, "get %s", path);
577 592fd624 2020-10-07 op
578 592fd624 2020-10-07 op if (path_isdir(path))
579 592fd624 2020-10-07 op send_dir(path, fds, client);
580 592fd624 2020-10-07 op else
581 592fd624 2020-10-07 op send_file(path, fds, client);
582 592fd624 2020-10-07 op break;
583 592fd624 2020-10-07 op
584 592fd624 2020-10-07 op case S_INITIALIZING:
585 592fd624 2020-10-07 op if (!start_reply(fds, client, client->code, client->meta))
586 592fd624 2020-10-07 op return;
587 592fd624 2020-10-07 op
588 592fd624 2020-10-07 op if (client->code != SUCCESS) {
589 592fd624 2020-10-07 op /* we don't need a body */
590 592fd624 2020-10-07 op goodbye(fds, client);
591 592fd624 2020-10-07 op return;
592 592fd624 2020-10-07 op }
593 592fd624 2020-10-07 op
594 592fd624 2020-10-07 op client->state = S_SENDING;
595 592fd624 2020-10-07 op
596 592fd624 2020-10-07 op /* fallthrough */
597 592fd624 2020-10-07 op
598 592fd624 2020-10-07 op case S_SENDING:
599 592fd624 2020-10-07 op send_file(NULL, fds, client);
600 592fd624 2020-10-07 op break;
601 592fd624 2020-10-07 op
602 592fd624 2020-10-07 op case S_CLOSING:
603 592fd624 2020-10-07 op goodbye(fds, client);
604 592fd624 2020-10-07 op break;
605 592fd624 2020-10-07 op
606 592fd624 2020-10-07 op default:
607 592fd624 2020-10-07 op /* unreachable */
608 592fd624 2020-10-07 op abort();
609 592fd624 2020-10-07 op }
610 3e4749f7 2020-10-02 op }
611 3e4749f7 2020-10-02 op
612 592fd624 2020-10-07 op void
613 592fd624 2020-10-07 op mark_nonblock(int fd)
614 592fd624 2020-10-07 op {
615 592fd624 2020-10-07 op int flags;
616 592fd624 2020-10-07 op
617 592fd624 2020-10-07 op if ((flags = fcntl(fd, F_GETFL)) == -1)
618 592fd624 2020-10-07 op err(1, "fcntl(F_GETFL)");
619 592fd624 2020-10-07 op if (fcntl(fd, F_SETFL, flags | O_NONBLOCK) == -1)
620 592fd624 2020-10-07 op err(1, "fcntl(F_SETFL)");
621 592fd624 2020-10-07 op }
622 592fd624 2020-10-07 op
623 3e4749f7 2020-10-02 op int
624 9468027b 2020-10-15 op make_socket(int port, int family)
625 3e4749f7 2020-10-02 op {
626 3e4749f7 2020-10-02 op int sock, v;
627 9468027b 2020-10-15 op struct sockaddr_in addr4;
628 9468027b 2020-10-15 op struct sockaddr_in6 addr6;
629 9468027b 2020-10-15 op struct sockaddr *addr;
630 9468027b 2020-10-15 op socklen_t len;
631 3e4749f7 2020-10-02 op
632 9468027b 2020-10-15 op switch (family) {
633 9468027b 2020-10-15 op case AF_INET:
634 9468027b 2020-10-15 op bzero(&addr4, sizeof(addr4));
635 9468027b 2020-10-15 op addr4.sin_family = family;
636 9468027b 2020-10-15 op addr4.sin_port = htons(port);
637 9468027b 2020-10-15 op addr4.sin_addr.s_addr = INADDR_ANY;
638 9468027b 2020-10-15 op addr = (struct sockaddr*)&addr4;
639 9468027b 2020-10-15 op len = sizeof(addr4);
640 9468027b 2020-10-15 op break;
641 9468027b 2020-10-15 op
642 9468027b 2020-10-15 op case AF_INET6:
643 9468027b 2020-10-15 op bzero(&addr6, sizeof(addr6));
644 9468027b 2020-10-15 op addr6.sin6_family = AF_INET6;
645 9468027b 2020-10-15 op addr6.sin6_port = htons(port);
646 9468027b 2020-10-15 op addr6.sin6_addr = in6addr_any;
647 9468027b 2020-10-15 op addr = (struct sockaddr*)&addr6;
648 9468027b 2020-10-15 op len = sizeof(addr6);
649 9468027b 2020-10-15 op break;
650 9468027b 2020-10-15 op
651 9468027b 2020-10-15 op default:
652 9468027b 2020-10-15 op /* unreachable */
653 9468027b 2020-10-15 op abort();
654 9468027b 2020-10-15 op }
655 9468027b 2020-10-15 op
656 9468027b 2020-10-15 op if ((sock = socket(family, SOCK_STREAM, 0)) == -1)
657 f28f9311 2020-10-14 op err(1, "socket");
658 3e4749f7 2020-10-02 op
659 3e4749f7 2020-10-02 op v = 1;
660 3e4749f7 2020-10-02 op if (setsockopt(sock, SOL_SOCKET, SO_REUSEADDR, &v, sizeof(v)) == -1)
661 3e4749f7 2020-10-02 op err(1, "setsockopt(SO_REUSEADDR)");
662 3e4749f7 2020-10-02 op
663 3e4749f7 2020-10-02 op v = 1;
664 3e4749f7 2020-10-02 op if (setsockopt(sock, SOL_SOCKET, SO_REUSEPORT, &v, sizeof(v)) == -1)
665 3e4749f7 2020-10-02 op err(1, "setsockopt(SO_REUSEPORT)");
666 3e4749f7 2020-10-02 op
667 592fd624 2020-10-07 op mark_nonblock(sock);
668 592fd624 2020-10-07 op
669 9468027b 2020-10-15 op if (bind(sock, addr, len) == -1)
670 f28f9311 2020-10-14 op err(1, "bind");
671 3e4749f7 2020-10-02 op
672 3e4749f7 2020-10-02 op if (listen(sock, 16) == -1)
673 f28f9311 2020-10-14 op err(1, "listen");
674 3e4749f7 2020-10-02 op
675 3e4749f7 2020-10-02 op return sock;
676 3e4749f7 2020-10-02 op }
677 3e4749f7 2020-10-02 op
678 3e4749f7 2020-10-02 op void
679 592fd624 2020-10-07 op do_accept(int sock, struct tls *ctx, struct pollfd *fds, struct client *clients)
680 3e4749f7 2020-10-02 op {
681 592fd624 2020-10-07 op int i, fd;
682 592fd624 2020-10-07 op struct sockaddr_in addr;
683 3e4749f7 2020-10-02 op socklen_t len;
684 3e4749f7 2020-10-02 op
685 592fd624 2020-10-07 op len = sizeof(addr);
686 592fd624 2020-10-07 op if ((fd = accept(sock, (struct sockaddr*)&addr, &len)) == -1) {
687 592fd624 2020-10-07 op if (errno == EWOULDBLOCK)
688 592fd624 2020-10-07 op return;
689 592fd624 2020-10-07 op err(1, "accept");
690 592fd624 2020-10-07 op }
691 3e4749f7 2020-10-02 op
692 592fd624 2020-10-07 op mark_nonblock(fd);
693 3e4749f7 2020-10-02 op
694 592fd624 2020-10-07 op for (i = 0; i < MAX_USERS; ++i) {
695 592fd624 2020-10-07 op if (fds[i].fd == -1) {
696 592fd624 2020-10-07 op bzero(&clients[i], sizeof(struct client));
697 592fd624 2020-10-07 op if (tls_accept_socket(ctx, &clients[i].ctx, fd) == -1)
698 592fd624 2020-10-07 op break; /* goodbye fd! */
699 592fd624 2020-10-07 op
700 592fd624 2020-10-07 op fds[i].fd = fd;
701 592fd624 2020-10-07 op fds[i].events = POLLIN;
702 592fd624 2020-10-07 op
703 592fd624 2020-10-07 op clients[i].state = S_OPEN;
704 592fd624 2020-10-07 op clients[i].fd = -1;
705 72342dc9 2020-11-06 op clients[i].child = -1;
706 f28f9311 2020-10-14 op clients[i].buf = MAP_FAILED;
707 2c3a40fa 2020-11-06 op clients[i].af = AF_INET;
708 2c3a40fa 2020-11-06 op clients[i].addr = addr.sin_addr;
709 592fd624 2020-10-07 op
710 592fd624 2020-10-07 op return;
711 3e4749f7 2020-10-02 op }
712 592fd624 2020-10-07 op }
713 3e4749f7 2020-10-02 op
714 592fd624 2020-10-07 op close(fd);
715 592fd624 2020-10-07 op }
716 3e4749f7 2020-10-02 op
717 592fd624 2020-10-07 op void
718 592fd624 2020-10-07 op goodbye(struct pollfd *pfd, struct client *c)
719 592fd624 2020-10-07 op {
720 592fd624 2020-10-07 op ssize_t ret;
721 592fd624 2020-10-07 op
722 592fd624 2020-10-07 op c->state = S_CLOSING;
723 592fd624 2020-10-07 op
724 592fd624 2020-10-07 op ret = tls_close(c->ctx);
725 592fd624 2020-10-07 op if (ret == TLS_WANT_POLLIN) {
726 592fd624 2020-10-07 op pfd->events = POLLIN;
727 592fd624 2020-10-07 op return;
728 3e4749f7 2020-10-02 op }
729 592fd624 2020-10-07 op if (ret == TLS_WANT_POLLOUT) {
730 592fd624 2020-10-07 op pfd->events = POLLOUT;
731 592fd624 2020-10-07 op return;
732 592fd624 2020-10-07 op }
733 592fd624 2020-10-07 op
734 592fd624 2020-10-07 op tls_free(c->ctx);
735 592fd624 2020-10-07 op c->ctx = NULL;
736 592fd624 2020-10-07 op
737 f28f9311 2020-10-14 op if (c->buf != MAP_FAILED)
738 f28f9311 2020-10-14 op munmap(c->buf, c->len);
739 f28f9311 2020-10-14 op
740 592fd624 2020-10-07 op if (c->fd != -1)
741 592fd624 2020-10-07 op close(c->fd);
742 592fd624 2020-10-07 op
743 592fd624 2020-10-07 op close(pfd->fd);
744 592fd624 2020-10-07 op pfd->fd = -1;
745 3e4749f7 2020-10-02 op }
746 3e4749f7 2020-10-02 op
747 3e4749f7 2020-10-02 op void
748 592fd624 2020-10-07 op loop(struct tls *ctx, int sock)
749 592fd624 2020-10-07 op {
750 592fd624 2020-10-07 op int i, todo;
751 592fd624 2020-10-07 op struct client clients[MAX_USERS];
752 592fd624 2020-10-07 op struct pollfd fds[MAX_USERS];
753 592fd624 2020-10-07 op
754 592fd624 2020-10-07 op for (i = 0; i < MAX_USERS; ++i) {
755 592fd624 2020-10-07 op fds[i].fd = -1;
756 592fd624 2020-10-07 op fds[i].events = POLLIN;
757 592fd624 2020-10-07 op bzero(&clients[i], sizeof(struct client));
758 592fd624 2020-10-07 op }
759 592fd624 2020-10-07 op
760 592fd624 2020-10-07 op fds[0].fd = sock;
761 592fd624 2020-10-07 op
762 592fd624 2020-10-07 op for (;;) {
763 f28f9311 2020-10-14 op if ((todo = poll(fds, MAX_USERS, INFTIM)) == -1)
764 592fd624 2020-10-07 op err(1, "poll");
765 592fd624 2020-10-07 op
766 592fd624 2020-10-07 op for (i = 0; i < MAX_USERS; i++) {
767 592fd624 2020-10-07 op assert(i < MAX_USERS);
768 592fd624 2020-10-07 op
769 592fd624 2020-10-07 op if (fds[i].revents == 0)
770 592fd624 2020-10-07 op continue;
771 592fd624 2020-10-07 op
772 592fd624 2020-10-07 op if (fds[i].revents & (POLLERR|POLLNVAL))
773 592fd624 2020-10-07 op err(1, "bad fd %d", fds[i].fd);
774 592fd624 2020-10-07 op
775 592fd624 2020-10-07 op if (fds[i].revents & POLLHUP) {
776 592fd624 2020-10-07 op goodbye(&fds[i], &clients[i]);
777 592fd624 2020-10-07 op continue;
778 592fd624 2020-10-07 op }
779 592fd624 2020-10-07 op
780 592fd624 2020-10-07 op todo--;
781 592fd624 2020-10-07 op
782 592fd624 2020-10-07 op if (i == 0) { /* new client */
783 592fd624 2020-10-07 op do_accept(sock, ctx, fds, clients);
784 592fd624 2020-10-07 op continue;
785 592fd624 2020-10-07 op }
786 592fd624 2020-10-07 op
787 592fd624 2020-10-07 op handle(&fds[i], &clients[i]);
788 592fd624 2020-10-07 op }
789 592fd624 2020-10-07 op }
790 592fd624 2020-10-07 op }
791 592fd624 2020-10-07 op
792 592fd624 2020-10-07 op void
793 3e4749f7 2020-10-02 op usage(const char *me)
794 3e4749f7 2020-10-02 op {
795 3e4749f7 2020-10-02 op fprintf(stderr,
796 3e4749f7 2020-10-02 op "USAGE: %s [-h] [-c cert.pem] [-d docs] [-k key.pem]\n",
797 3e4749f7 2020-10-02 op me);
798 3e4749f7 2020-10-02 op }
799 3e4749f7 2020-10-02 op
800 3e4749f7 2020-10-02 op int
801 3e4749f7 2020-10-02 op main(int argc, char **argv)
802 3e4749f7 2020-10-02 op {
803 72342dc9 2020-11-06 op const char *cert = "cert.pem", *key = "key.pem";
804 3e4749f7 2020-10-02 op struct tls *ctx = NULL;
805 3e4749f7 2020-10-02 op struct tls_config *conf;
806 3e4749f7 2020-10-02 op int sock, ch;
807 3e4749f7 2020-10-02 op
808 0cf902af 2020-11-03 op signal(SIGPIPE, SIG_IGN);
809 72342dc9 2020-11-06 op signal(SIGCHLD, SIG_IGN);
810 0cf902af 2020-11-03 op
811 72342dc9 2020-11-06 op dir = "docs/";
812 2c3a40fa 2020-11-06 op logfd = 2; /* stderr */
813 72342dc9 2020-11-06 op cgi = 0;
814 2c3a40fa 2020-11-06 op
815 72342dc9 2020-11-06 op while ((ch = getopt(argc, argv, "c:d:hk:l:x")) != -1) {
816 3e4749f7 2020-10-02 op switch (ch) {
817 3e4749f7 2020-10-02 op case 'c':
818 3e4749f7 2020-10-02 op cert = optarg;
819 3e4749f7 2020-10-02 op break;
820 3e4749f7 2020-10-02 op
821 3e4749f7 2020-10-02 op case 'd':
822 3e4749f7 2020-10-02 op dir = optarg;
823 3e4749f7 2020-10-02 op break;
824 3e4749f7 2020-10-02 op
825 3e4749f7 2020-10-02 op case 'h':
826 3e4749f7 2020-10-02 op usage(*argv);
827 3e4749f7 2020-10-02 op return 0;
828 3e4749f7 2020-10-02 op
829 3e4749f7 2020-10-02 op case 'k':
830 3e4749f7 2020-10-02 op key = optarg;
831 3e4749f7 2020-10-02 op break;
832 3e4749f7 2020-10-02 op
833 2c3a40fa 2020-11-06 op case 'l':
834 2c3a40fa 2020-11-06 op /* open log file or create it with 644 */
835 e8cac16e 2020-11-06 op if ((logfd = open(optarg, O_WRONLY | O_CREAT | O_CLOEXEC,
836 2c3a40fa 2020-11-06 op S_IRUSR | S_IWUSR | S_IRGRP | S_IWOTH)) == -1)
837 2c3a40fa 2020-11-06 op err(1, "%s", optarg);
838 2c3a40fa 2020-11-06 op break;
839 2c3a40fa 2020-11-06 op
840 72342dc9 2020-11-06 op case 'x':
841 72342dc9 2020-11-06 op cgi = 1;
842 72342dc9 2020-11-06 op break;
843 72342dc9 2020-11-06 op
844 3e4749f7 2020-10-02 op default:
845 3e4749f7 2020-10-02 op usage(*argv);
846 3e4749f7 2020-10-02 op return 1;
847 3e4749f7 2020-10-02 op }
848 3e4749f7 2020-10-02 op }
849 3e4749f7 2020-10-02 op
850 3e4749f7 2020-10-02 op if ((conf = tls_config_new()) == NULL)
851 3e4749f7 2020-10-02 op err(1, "tls_config_new");
852 0d8ca45a 2020-10-03 op
853 0d8ca45a 2020-10-03 op if (tls_config_set_protocols(conf,
854 0d8ca45a 2020-10-03 op TLS_PROTOCOL_TLSv1_2 | TLS_PROTOCOL_TLSv1_3) == -1)
855 0d8ca45a 2020-10-03 op err(1, "tls_config_set_protocols");
856 3e4749f7 2020-10-02 op
857 4d4f0e19 2020-10-03 op if (tls_config_set_cert_file(conf, cert) == -1)
858 4d4f0e19 2020-10-03 op err(1, "tls_config_set_cert_file: %s", cert);
859 3e4749f7 2020-10-02 op
860 4d4f0e19 2020-10-03 op if (tls_config_set_key_file(conf, key) == -1)
861 4d4f0e19 2020-10-03 op err(1, "tls_config_set_key_file: %s", key);
862 3e4749f7 2020-10-02 op
863 3e4749f7 2020-10-02 op if ((ctx = tls_server()) == NULL)
864 3e4749f7 2020-10-02 op err(1, "tls_server");
865 3e4749f7 2020-10-02 op
866 3e4749f7 2020-10-02 op if (tls_configure(ctx, conf) == -1)
867 3e4749f7 2020-10-02 op errx(1, "tls_configure: %s", tls_error(ctx));
868 3e4749f7 2020-10-02 op
869 9468027b 2020-10-15 op sock = make_socket(1965, AF_INET);
870 3e4749f7 2020-10-02 op
871 3e4749f7 2020-10-02 op if ((dirfd = open(dir, O_RDONLY | O_DIRECTORY)) == -1)
872 3e4749f7 2020-10-02 op err(1, "open: %s", dir);
873 3e4749f7 2020-10-02 op
874 72342dc9 2020-11-06 op if (unveil(dir, cgi ? "rx" : "r") == -1)
875 3e4749f7 2020-10-02 op err(1, "unveil");
876 3e4749f7 2020-10-02 op
877 72342dc9 2020-11-06 op if (pledge(cgi ? "stdio rpath inet proc exec" : "stdio rpath inet", NULL) == -1)
878 3e4749f7 2020-10-02 op err(1, "pledge");
879 3e4749f7 2020-10-02 op
880 3e4749f7 2020-10-02 op loop(ctx, sock);
881 3e4749f7 2020-10-02 op
882 3e4749f7 2020-10-02 op close(sock);
883 3e4749f7 2020-10-02 op tls_free(ctx);
884 3e4749f7 2020-10-02 op tls_config_free(conf);
885 3e4749f7 2020-10-02 op }