Blob


1 /*
2 * Copyright (c) 2021 Omar Polo <op@omarpolo.com>
3 *
4 * Permission to use, copy, modify, and distribute this software for any
5 * purpose with or without fee is hereby granted, provided that the above
6 * copyright notice and this permission notice appear in all copies.
7 *
8 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 */
17 /*
18 * TODO:
19 * - move the various
20 * imsg_compose(...);
21 * imsg_flush(...);
22 * to something more asynchronous
23 */
25 #include "telescope.h"
27 #include <sys/types.h>
28 #include <sys/socket.h>
30 #include <netinet/in.h>
32 #include <assert.h>
33 #include <ctype.h>
34 #include <errno.h>
35 #include <netdb.h>
36 #include <stdarg.h>
37 #include <stdio.h>
38 #include <stdlib.h>
39 #include <string.h>
40 #include <tls.h>
41 #include <unistd.h>
43 #if HAVE_ASR_RUN
44 # include <asr.h>
45 #endif
47 static struct event imsgev;
48 static struct tls_config *tlsconf;
49 static struct imsgbuf *ibuf;
51 struct req;
53 static void die(void) __attribute__((__noreturn__));
55 #if HAVE_ASR_RUN
56 static void try_to_connect(int, short, void*);
57 static void query_done(struct asr_result*, void*);
58 static void async_conn_towards(struct req*);
59 #else
60 static void blocking_conn_towards(struct req*);
61 #endif
63 static void close_with_err(struct req*, const char*);
64 static void close_with_errf(struct req*, const char*, ...) __attribute__((format(printf, 2, 3)));
65 static struct req *req_by_id(uint32_t);
66 static struct req *req_by_id_try(uint32_t);
68 static void setup_tls(struct req*);
69 static void do_handshake(int, short, void*);
70 static void write_request(int, short, void*);
71 static void read_reply(int, short, void*);
72 static void parse_reply(struct req*);
73 static void copy_body(int, short, void*);
75 static void handle_get(struct imsg*, size_t);
76 static void handle_cert_status(struct imsg*, size_t);
77 static void handle_proceed(struct imsg*, size_t);
78 static void handle_stop(struct imsg*, size_t);
79 static void handle_quit(struct imsg*, size_t);
80 static void handle_dispatch_imsg(int, short, void*);
82 /* TODO: making this customizable */
83 struct timeval timeout_for_handshake = { 5, 0 };
85 static imsg_handlerfn *handlers[] = {
86 [IMSG_GET] = handle_get,
87 [IMSG_CERT_STATUS] = handle_cert_status,
88 [IMSG_PROCEED] = handle_proceed,
89 [IMSG_STOP] = handle_stop,
90 [IMSG_QUIT] = handle_quit,
91 };
93 typedef void (*statefn)(int, short, void*);
95 TAILQ_HEAD(, req) reqhead;
96 /* a pending request */
97 struct req {
98 struct event ev;
99 struct phos_uri url;
100 uint32_t id;
101 int fd;
102 struct tls *ctx;
103 char buf[1024];
104 size_t off;
106 #if HAVE_ASR_RUN
107 struct addrinfo hints, *servinfo, *p;
108 struct event_asr *asrev;
109 #endif
111 TAILQ_ENTRY(req) reqs;
112 };
114 static inline void
115 yield_r(struct req *req, statefn fn, struct timeval *tv)
117 event_once(req->fd, EV_READ, fn, req, tv);
120 static inline void
121 yield_w(struct req *req, statefn fn, struct timeval *tv)
123 event_once(req->fd, EV_WRITE, fn, req, tv);
126 static inline void
127 advance_buf(struct req *req, size_t len)
129 assert(len <= req->off);
131 req->off -= len;
132 memmove(req->buf, req->buf + len, req->off);
135 static void __attribute__((__noreturn__))
136 die(void)
138 abort(); /* TODO */
141 #if HAVE_ASR_RUN
142 static void
143 try_to_connect(int fd, short ev, void *d)
145 struct req *req = d;
146 int error = 0;
147 socklen_t len = sizeof(error);
149 again:
150 if (req->p == NULL)
151 goto err;
153 if (req->fd != -1) {
154 if (getsockopt(req->fd, SOL_SOCKET, SO_ERROR, &error, &len) == -1)
155 goto err;
156 if (error != 0) {
157 errno = error;
158 goto err;
160 goto done;
163 req->fd = socket(req->p->ai_family, req->p->ai_socktype, req->p->ai_protocol);
164 if (req->fd == -1) {
165 req->p = req->p->ai_next;
166 goto again;
167 } else {
168 mark_nonblock(req->fd);
169 if (connect(req->fd, req->p->ai_addr, req->p->ai_addrlen) == 0)
170 goto done;
171 yield_w(req, try_to_connect, NULL);
173 return;
175 err:
176 freeaddrinfo(req->servinfo);
177 close_with_errf(req, "failed to connect to %s",
178 req->url.host);
179 return;
181 done:
182 freeaddrinfo(req->servinfo);
183 setup_tls(req);
186 static void
187 query_done(struct asr_result *res, void *d)
189 struct req *req = d;
191 req->asrev = NULL;
192 if (res->ar_gai_errno != 0) {
193 close_with_errf(req, "failed to resolve %s: %s",
194 req->url.host, gai_strerror(res->ar_gai_errno));
195 return;
198 req->fd = -1;
199 req->servinfo = res->ar_addrinfo;
200 req->p = res->ar_addrinfo;
201 try_to_connect(0, 0, req);
204 static void
205 async_conn_towards(struct req *req)
207 struct asr_query *q;
208 const char *proto = "1965";
210 if (*req->url.port != '\0')
211 proto = req->url.port;
213 req->hints.ai_family = AF_UNSPEC;
214 req->hints.ai_socktype = SOCK_STREAM;
215 q = getaddrinfo_async(req->url.host, proto, &req->hints, NULL);
216 req->asrev = event_asr_run(q, query_done, req);
218 #else
219 static void
220 blocking_conn_towards(struct req *req)
222 struct addrinfo hints, *servinfo, *p;
223 struct phos_uri *url = &req->url;
224 int status, sock;
225 const char *proto = "1965";
227 if (*url->port != '\0')
228 proto = url->port;
230 memset(&hints, 0, sizeof(hints));
231 hints.ai_family = AF_UNSPEC;
232 hints.ai_socktype = SOCK_STREAM;
234 if ((status = getaddrinfo(url->host, proto, &hints, &servinfo))) {
235 close_with_errf(req, "failed to resolve %s: %s",
236 url->host, gai_strerror(status));
237 return;
240 sock = -1;
241 for (p = servinfo; p != NULL; p = p->ai_next) {
242 if ((sock = socket(p->ai_family, p->ai_socktype, p->ai_protocol)) == -1)
243 continue;
244 if (connect(sock, p->ai_addr, p->ai_addrlen) != -1)
245 break;
246 close(sock);
248 freeaddrinfo(servinfo);
250 if (sock == -1) {
251 close_with_errf(req, "couldn't connect to %s", url->host);
252 return;
255 req->fd = sock;
256 mark_nonblock(req->fd);
257 setup_tls(req);
259 #endif
261 static struct req *
262 req_by_id(uint32_t id)
264 struct req *r;
266 if ((r = req_by_id_try(id)) == NULL)
267 die();
268 return r;
271 static struct req *
272 req_by_id_try(uint32_t id)
274 struct req *r;
276 TAILQ_FOREACH(r, &reqhead, reqs) {
277 if (r->id == id)
278 return r;
281 return NULL;
284 static void
285 close_conn(int fd, short ev, void *d)
287 struct req *req = d;
289 #if HAVE_ASR_RUN
290 if (req->asrev != NULL)
291 event_asr_abort(req->asrev);
292 #endif
294 if (req->ctx != NULL) {
295 switch (tls_close(req->ctx)) {
296 case TLS_WANT_POLLIN:
297 yield_r(req, close_conn, NULL);
298 return;
299 case TLS_WANT_POLLOUT:
300 yield_w(req, close_conn, NULL);
301 return;
304 tls_free(req->ctx);
307 TAILQ_REMOVE(&reqhead, req, reqs);
308 if (req->fd != -1)
309 close(req->fd);
310 free(req);
313 static void
314 close_with_err(struct req *req, const char *err)
316 imsg_compose(ibuf, IMSG_ERR, req->id, 0, -1, err, strlen(err)+1);
317 imsg_flush(ibuf);
318 close_conn(0, 0, req);
321 static void
322 close_with_errf(struct req *req, const char *fmt, ...)
324 va_list ap;
325 char *s;
327 va_start(ap, fmt);
328 if (vasprintf(&s, fmt, ap) == -1)
329 abort();
330 va_end(ap);
332 close_with_err(req, s);
333 free(s);
336 static void
337 setup_tls(struct req *req)
339 if ((req->ctx = tls_client()) == NULL) {
340 close_with_errf(req, "tls_client: %s", strerror(errno));
341 return;
343 if (tls_configure(req->ctx, tlsconf) == -1) {
344 close_with_errf(req, "tls_configure: %s", tls_error(req->ctx));
345 return;
347 if (tls_connect_socket(req->ctx, req->fd, req->url.host) == -1) {
348 close_with_errf(req, "tls_connect_socket: %s", tls_error(req->ctx));
349 return;
351 yield_w(req, do_handshake, &timeout_for_handshake);
354 static void
355 do_handshake(int fd, short ev, void *d)
357 struct req *req = d;
358 const char *hash;
360 if (ev == EV_TIMEOUT) {
361 close_with_err(req, "Timeout loading page");
362 return;
365 switch (tls_handshake(req->ctx)) {
366 case TLS_WANT_POLLIN:
367 yield_r(req, do_handshake, NULL);
368 return;
369 case TLS_WANT_POLLOUT:
370 yield_w(req, do_handshake, NULL);
371 return;
374 hash = tls_peer_cert_hash(req->ctx);
375 if (hash == NULL) {
376 close_with_errf(req, "handshake failed: %s", tls_error(req->ctx));
377 return;
379 imsg_compose(ibuf, IMSG_CHECK_CERT, req->id, 0, -1, hash, strlen(hash)+1);
380 imsg_flush(ibuf);
383 static void
384 write_request(int fd, short ev, void *d)
386 struct req *req = d;
387 ssize_t r;
388 size_t len;
389 char buf[1027]; /* URL + \r\n\0 */
391 if (!phos_serialize_uri(&req->url, buf, sizeof(buf)))
392 die();
394 len = strlcat(buf, "\r\n", sizeof(buf));
396 assert(len <= sizeof(buf));
398 switch (r = tls_write(req->ctx, buf, len)) {
399 case -1:
400 close_with_errf(req, "tls_write: %s", tls_error(req->ctx));
401 break;
402 case TLS_WANT_POLLIN:
403 yield_r(req, write_request, NULL);
404 break;
405 case TLS_WANT_POLLOUT:
406 yield_w(req, write_request, NULL);
407 break;
408 default:
409 /* assume r == len */
410 (void)r;
411 yield_r(req, read_reply, NULL);
412 break;
416 static void
417 read_reply(int fd, short ev, void *d)
419 struct req *req = d;
420 size_t len;
421 ssize_t r;
422 char *buf;
424 buf = req->buf + req->off;
425 len = sizeof(req->buf) - req->off;
427 switch (r = tls_read(req->ctx, buf, len)) {
428 case -1:
429 close_with_errf(req, "tls_read: %s", tls_error(req->ctx));
430 break;
431 case TLS_WANT_POLLIN:
432 yield_r(req, read_reply, NULL);
433 break;
434 case TLS_WANT_POLLOUT:
435 yield_w(req, read_reply, NULL);
436 break;
437 default:
438 req->off += r;
440 if (memmem(req->buf, req->off, "\r\n", 2) != NULL)
441 parse_reply(req);
442 else if (req->off == sizeof(req->buf))
443 close_with_err(req, "invalid response");
444 else
445 yield_r(req, read_reply, NULL);
446 break;
450 static void
451 parse_reply(struct req *req)
453 int code;
454 char *e;
455 size_t len;
457 if (req->off < 4)
458 goto err;
460 if (!isdigit(req->buf[0]) || !isdigit(req->buf[1]))
461 goto err;
463 code = (req->buf[0] - '0')*10 + (req->buf[1] - '0');
465 if (!isspace(req->buf[2]))
466 goto err;
468 advance_buf(req, 3);
469 if ((e = memmem(req->buf, req->off, "\r\n", 2)) == NULL)
470 goto err;
472 *e = '\0';
473 e++;
474 len = e - req->buf;
475 imsg_compose(ibuf, IMSG_GOT_CODE, req->id, 0, -1, &code, sizeof(code));
476 imsg_compose(ibuf, IMSG_GOT_META, req->id, 0, -1, req->buf, len);
477 imsg_flush(ibuf);
479 if (20 <= code && code < 30)
480 advance_buf(req, len+1); /* skip \n too */
481 else
482 close_conn(0, 0, req);
484 return;
486 err:
487 close_with_err(req, "malformed request");
490 static void
491 copy_body(int fd, short ev, void *d)
493 struct req *req = d;
494 ssize_t r;
496 for (;;) {
497 if (req->off != 0) {
498 imsg_compose(ibuf, IMSG_BUF, req->id, 0, -1,
499 req->buf, req->off);
500 imsg_flush(ibuf);
501 req->off = 0;
504 switch (r = tls_read(req->ctx, req->buf, sizeof(req->buf))) {
505 case TLS_WANT_POLLIN:
506 yield_r(req, copy_body, NULL);
507 return;
508 case TLS_WANT_POLLOUT:
509 yield_w(req, copy_body, NULL);
510 return;
511 case 0:
512 imsg_compose(ibuf, IMSG_EOF, req->id, 0, -1, NULL, 0);
513 imsg_flush(ibuf);
514 close_conn(0, 0, req);
515 return;
516 default:
517 req->off = r;
522 static void
523 handle_get(struct imsg *imsg, size_t datalen)
525 struct req *req;
526 char *data;
528 data = imsg->data;
530 if (data[datalen-1] != '\0')
531 die();
533 if ((req = calloc(1, sizeof(*req))) == NULL)
534 die();
536 req->id = imsg->hdr.peerid;
537 TAILQ_INSERT_HEAD(&reqhead, req, reqs);
539 if (!phos_parse_absolute_uri(data, &req->url)) {
540 close_with_err(req, "Can't parse URI");
541 return;
544 #if HAVE_ASR_RUN
545 async_conn_towards(req);
546 #else
547 blocking_conn_towards(req);
548 #endif
551 static void
552 handle_cert_status(struct imsg *imsg, size_t datalen)
554 struct req *req;
555 int is_ok;
557 req = req_by_id(imsg->hdr.peerid);
559 if (datalen < sizeof(is_ok))
560 die();
561 memcpy(&is_ok, imsg->data, sizeof(is_ok));
563 if (is_ok)
564 yield_w(req, write_request, NULL);
565 else
566 close_conn(0, 0, req);
569 static void
570 handle_proceed(struct imsg *imsg, size_t datalen)
572 yield_r(req_by_id(imsg->hdr.peerid),
573 copy_body, NULL);
576 static void
577 handle_stop(struct imsg *imsg, size_t datalen)
579 struct req *req;
581 if ((req = req_by_id_try(imsg->hdr.peerid)) == NULL)
582 return;
583 close_conn(0, 0, req);
586 static void
587 handle_quit(struct imsg *imsg, size_t datalen)
589 event_loopbreak();
592 static void
593 handle_dispatch_imsg(int fd, short ev, void *d)
595 struct imsgbuf *ibuf = d;
596 dispatch_imsg(ibuf, handlers, sizeof(handlers));
599 int
600 client_main(struct imsgbuf *b)
602 ibuf = b;
604 TAILQ_INIT(&reqhead);
606 if ((tlsconf = tls_config_new()) == NULL)
607 die();
608 tls_config_insecure_noverifycert(tlsconf);
609 tls_config_insecure_noverifyname(tlsconf);
611 event_init();
613 event_set(&imsgev, ibuf->fd, EV_READ | EV_PERSIST, handle_dispatch_imsg, ibuf);
614 event_add(&imsgev, NULL);
616 sandbox_network_process();
618 event_dispatch();
619 return 0;