Blame


1 5e11c00c 2021-03-02 op /*
2 5e11c00c 2021-03-02 op * Copyright (c) 2021 Omar Polo <op@omarpolo.com>
3 5e11c00c 2021-03-02 op *
4 5e11c00c 2021-03-02 op * Permission to use, copy, modify, and distribute this software for any
5 5e11c00c 2021-03-02 op * purpose with or without fee is hereby granted, provided that the above
6 5e11c00c 2021-03-02 op * copyright notice and this permission notice appear in all copies.
7 5e11c00c 2021-03-02 op *
8 5e11c00c 2021-03-02 op * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 5e11c00c 2021-03-02 op * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 5e11c00c 2021-03-02 op * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 5e11c00c 2021-03-02 op * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 5e11c00c 2021-03-02 op * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 5e11c00c 2021-03-02 op * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 5e11c00c 2021-03-02 op * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 5e11c00c 2021-03-02 op */
16 5e11c00c 2021-03-02 op
17 5e11c00c 2021-03-02 op /*
18 5e11c00c 2021-03-02 op * TODO:
19 5e11c00c 2021-03-02 op * - move the various
20 5e11c00c 2021-03-02 op * imsg_compose(...);
21 5e11c00c 2021-03-02 op * imsg_flush(...);
22 5e11c00c 2021-03-02 op * to something more asynchronous
23 5e11c00c 2021-03-02 op */
24 5e11c00c 2021-03-02 op
25 5e11c00c 2021-03-02 op #include <telescope.h>
26 5e11c00c 2021-03-02 op
27 5e11c00c 2021-03-02 op #include <sys/types.h>
28 5e11c00c 2021-03-02 op #include <sys/socket.h>
29 5e11c00c 2021-03-02 op
30 5e11c00c 2021-03-02 op #include <netinet/in.h>
31 5e11c00c 2021-03-02 op
32 5e11c00c 2021-03-02 op #include <assert.h>
33 5e11c00c 2021-03-02 op #include <ctype.h>
34 5e11c00c 2021-03-02 op #include <errno.h>
35 5e11c00c 2021-03-02 op #include <netdb.h>
36 5e11c00c 2021-03-02 op #include <stdarg.h>
37 5e11c00c 2021-03-02 op #include <stdio.h>
38 5e11c00c 2021-03-02 op #include <stdlib.h>
39 5e11c00c 2021-03-02 op #include <string.h>
40 5e11c00c 2021-03-02 op #include <tls.h>
41 5e11c00c 2021-03-02 op #include <unistd.h>
42 5e11c00c 2021-03-02 op
43 cc4953ef 2021-03-16 op #if HAVE_ASR_RUN
44 cc4953ef 2021-03-16 op # include <asr.h>
45 cc4953ef 2021-03-16 op #endif
46 cc4953ef 2021-03-16 op
47 35e1f40a 2021-03-14 op static struct event imsgev;
48 5e11c00c 2021-03-02 op static struct tls_config *tlsconf;
49 5e11c00c 2021-03-02 op static struct imsgbuf *ibuf;
50 5e11c00c 2021-03-02 op
51 5e11c00c 2021-03-02 op struct req;
52 5e11c00c 2021-03-02 op
53 5e11c00c 2021-03-02 op static void die(void) __attribute__((__noreturn__));
54 cc4953ef 2021-03-16 op
55 cc4953ef 2021-03-16 op #if HAVE_ASR_RUN
56 cc4953ef 2021-03-16 op static void try_to_connect(int, short, void*);
57 cc4953ef 2021-03-16 op static void query_done(struct asr_result*, void*);
58 cc4953ef 2021-03-16 op static void async_conn_towards(struct req*);
59 cc4953ef 2021-03-16 op #else
60 4e600d30 2021-03-29 op static void blocking_conn_towards(struct req*);
61 cc4953ef 2021-03-16 op #endif
62 5e11c00c 2021-03-02 op
63 a237223e 2021-03-16 op static void close_with_err(struct req*, const char*);
64 a237223e 2021-03-16 op static void close_with_errf(struct req*, const char*, ...) __attribute__((format(printf, 2, 3)));
65 5e11c00c 2021-03-02 op static struct req *req_by_id(uint32_t);
66 15354eed 2021-03-10 op static struct req *req_by_id_try(uint32_t);
67 5e11c00c 2021-03-02 op
68 cc4953ef 2021-03-16 op static void setup_tls(struct req*);
69 5e11c00c 2021-03-02 op static void do_handshake(int, short, void*);
70 5e11c00c 2021-03-02 op static void write_request(int, short, void*);
71 5e11c00c 2021-03-02 op static void read_reply(int, short, void*);
72 5e11c00c 2021-03-02 op static void parse_reply(struct req*);
73 5e11c00c 2021-03-02 op static void copy_body(int, short, void*);
74 5e11c00c 2021-03-02 op
75 5e11c00c 2021-03-02 op static void handle_get(struct imsg*, size_t);
76 5e11c00c 2021-03-02 op static void handle_cert_status(struct imsg*, size_t);
77 0972d8b2 2021-03-02 op static void handle_proceed(struct imsg*, size_t);
78 5e11c00c 2021-03-02 op static void handle_stop(struct imsg*, size_t);
79 5e11c00c 2021-03-02 op static void handle_quit(struct imsg*, size_t);
80 1304bbdd 2021-03-15 op static void handle_dispatch_imsg(int, short, void*);
81 5e11c00c 2021-03-02 op
82 723bee54 2021-03-09 op /* TODO: making this customizable */
83 723bee54 2021-03-09 op struct timeval timeout_for_handshake = { 5, 0 };
84 723bee54 2021-03-09 op
85 5e11c00c 2021-03-02 op static imsg_handlerfn *handlers[] = {
86 848779c2 2021-03-29 op [IMSG_GET] = handle_get,
87 848779c2 2021-03-29 op [IMSG_CERT_STATUS] = handle_cert_status,
88 848779c2 2021-03-29 op [IMSG_PROCEED] = handle_proceed,
89 848779c2 2021-03-29 op [IMSG_STOP] = handle_stop,
90 848779c2 2021-03-29 op [IMSG_QUIT] = handle_quit,
91 5e11c00c 2021-03-02 op };
92 5e11c00c 2021-03-02 op
93 5e11c00c 2021-03-02 op typedef void (*statefn)(int, short, void*);
94 5e11c00c 2021-03-02 op
95 5e11c00c 2021-03-02 op TAILQ_HEAD(, req) reqhead;
96 5e11c00c 2021-03-02 op /* a pending request */
97 5e11c00c 2021-03-02 op struct req {
98 5e11c00c 2021-03-02 op struct event ev;
99 5e11c00c 2021-03-02 op struct url url;
100 5e11c00c 2021-03-02 op uint32_t id;
101 5e11c00c 2021-03-02 op int fd;
102 5e11c00c 2021-03-02 op struct tls *ctx;
103 5e11c00c 2021-03-02 op char buf[1024];
104 5e11c00c 2021-03-02 op size_t off;
105 cc4953ef 2021-03-16 op
106 cc4953ef 2021-03-16 op #if HAVE_ASR_RUN
107 cc4953ef 2021-03-16 op struct addrinfo hints, *servinfo, *p;
108 cc4953ef 2021-03-16 op struct event_asr *asrev;
109 cc4953ef 2021-03-16 op #endif
110 cc4953ef 2021-03-16 op
111 5e11c00c 2021-03-02 op TAILQ_ENTRY(req) reqs;
112 5e11c00c 2021-03-02 op };
113 5e11c00c 2021-03-02 op
114 5e11c00c 2021-03-02 op static inline void
115 5e11c00c 2021-03-02 op yield_r(struct req *req, statefn fn, struct timeval *tv)
116 5e11c00c 2021-03-02 op {
117 5e11c00c 2021-03-02 op event_once(req->fd, EV_READ, fn, req, tv);
118 5e11c00c 2021-03-02 op }
119 5e11c00c 2021-03-02 op
120 5e11c00c 2021-03-02 op static inline void
121 5e11c00c 2021-03-02 op yield_w(struct req *req, statefn fn, struct timeval *tv)
122 5e11c00c 2021-03-02 op {
123 5e11c00c 2021-03-02 op event_once(req->fd, EV_WRITE, fn, req, tv);
124 5e11c00c 2021-03-02 op }
125 5e11c00c 2021-03-02 op
126 5e11c00c 2021-03-02 op static inline void
127 5e11c00c 2021-03-02 op advance_buf(struct req *req, size_t len)
128 5e11c00c 2021-03-02 op {
129 5e11c00c 2021-03-02 op assert(len <= req->off);
130 5e11c00c 2021-03-02 op
131 5e11c00c 2021-03-02 op req->off -= len;
132 5e11c00c 2021-03-02 op memmove(req->buf, req->buf + len, req->off);
133 5e11c00c 2021-03-02 op }
134 5e11c00c 2021-03-02 op
135 5e11c00c 2021-03-02 op static void __attribute__((__noreturn__))
136 5e11c00c 2021-03-02 op die(void)
137 5e11c00c 2021-03-02 op {
138 5e11c00c 2021-03-02 op abort(); /* TODO */
139 cc4953ef 2021-03-16 op }
140 cc4953ef 2021-03-16 op
141 cc4953ef 2021-03-16 op #if HAVE_ASR_RUN
142 cc4953ef 2021-03-16 op static void
143 cc4953ef 2021-03-16 op try_to_connect(int fd, short ev, void *d)
144 cc4953ef 2021-03-16 op {
145 cc4953ef 2021-03-16 op struct req *req = d;
146 cc4953ef 2021-03-16 op int error = 0;
147 cc4953ef 2021-03-16 op socklen_t len = sizeof(error);
148 cc4953ef 2021-03-16 op
149 848779c2 2021-03-29 op again:
150 cc4953ef 2021-03-16 op if (req->p == NULL)
151 cc4953ef 2021-03-16 op goto err;
152 cc4953ef 2021-03-16 op
153 cc4953ef 2021-03-16 op if (req->fd != -1) {
154 cc4953ef 2021-03-16 op if (getsockopt(req->fd, SOL_SOCKET, SO_ERROR, &error, &len) == -1)
155 cc4953ef 2021-03-16 op goto err;
156 cc4953ef 2021-03-16 op if (error != 0) {
157 cc4953ef 2021-03-16 op errno = error;
158 cc4953ef 2021-03-16 op goto err;
159 cc4953ef 2021-03-16 op }
160 cc4953ef 2021-03-16 op goto done;
161 cc4953ef 2021-03-16 op }
162 cc4953ef 2021-03-16 op
163 cc4953ef 2021-03-16 op req->fd = socket(req->p->ai_family, req->p->ai_socktype, req->p->ai_protocol);
164 20d2d786 2021-03-16 op if (req->fd == -1) {
165 cc4953ef 2021-03-16 op req->p = req->p->ai_next;
166 848779c2 2021-03-29 op goto again;
167 20d2d786 2021-03-16 op } else {
168 cc4953ef 2021-03-16 op mark_nonblock(req->fd);
169 cc4953ef 2021-03-16 op if (connect(req->fd, req->p->ai_addr, req->p->ai_addrlen) == 0)
170 cc4953ef 2021-03-16 op goto done;
171 20d2d786 2021-03-16 op yield_w(req, try_to_connect, NULL);
172 cc4953ef 2021-03-16 op }
173 cc4953ef 2021-03-16 op return;
174 cc4953ef 2021-03-16 op
175 cc4953ef 2021-03-16 op err:
176 cc4953ef 2021-03-16 op freeaddrinfo(req->servinfo);
177 cc4953ef 2021-03-16 op close_with_errf(req, "failed to connect to %s",
178 cc4953ef 2021-03-16 op req->url.host);
179 cc4953ef 2021-03-16 op return;
180 cc4953ef 2021-03-16 op
181 cc4953ef 2021-03-16 op done:
182 cc4953ef 2021-03-16 op freeaddrinfo(req->servinfo);
183 cc4953ef 2021-03-16 op setup_tls(req);
184 cc4953ef 2021-03-16 op }
185 cc4953ef 2021-03-16 op
186 cc4953ef 2021-03-16 op static void
187 cc4953ef 2021-03-16 op query_done(struct asr_result *res, void *d)
188 cc4953ef 2021-03-16 op {
189 cc4953ef 2021-03-16 op struct req *req = d;
190 cc4953ef 2021-03-16 op
191 cc4953ef 2021-03-16 op req->asrev = NULL;
192 cc4953ef 2021-03-16 op if (res->ar_gai_errno != 0) {
193 cc4953ef 2021-03-16 op close_with_errf(req, "failed to resolve %s: %s",
194 cc4953ef 2021-03-16 op req->url.host, gai_strerror(res->ar_gai_errno));
195 cc4953ef 2021-03-16 op return;
196 cc4953ef 2021-03-16 op }
197 cc4953ef 2021-03-16 op
198 cc4953ef 2021-03-16 op req->fd = -1;
199 cc4953ef 2021-03-16 op req->servinfo = res->ar_addrinfo;
200 cc4953ef 2021-03-16 op req->p = res->ar_addrinfo;
201 cc4953ef 2021-03-16 op try_to_connect(0, 0, req);
202 5e11c00c 2021-03-02 op }
203 5e11c00c 2021-03-02 op
204 cc4953ef 2021-03-16 op static void
205 cc4953ef 2021-03-16 op async_conn_towards(struct req *req)
206 cc4953ef 2021-03-16 op {
207 cc4953ef 2021-03-16 op struct asr_query *q;
208 cc4953ef 2021-03-16 op const char *proto = "1965";
209 cc4953ef 2021-03-16 op
210 cc4953ef 2021-03-16 op if (*req->url.port != '\0')
211 cc4953ef 2021-03-16 op proto = req->url.port;
212 cc4953ef 2021-03-16 op
213 cc4953ef 2021-03-16 op req->hints.ai_family = AF_UNSPEC;
214 cc4953ef 2021-03-16 op req->hints.ai_socktype = SOCK_STREAM;
215 cc4953ef 2021-03-16 op q = getaddrinfo_async(req->url.host, proto, &req->hints, NULL);
216 cc4953ef 2021-03-16 op req->asrev = event_asr_run(q, query_done, req);
217 cc4953ef 2021-03-16 op }
218 cc4953ef 2021-03-16 op #else
219 4e600d30 2021-03-29 op static void
220 4e600d30 2021-03-29 op blocking_conn_towards(struct req *req)
221 5e11c00c 2021-03-02 op {
222 5e11c00c 2021-03-02 op struct addrinfo hints, *servinfo, *p;
223 4e600d30 2021-03-29 op struct url *url = &req->url;
224 5e11c00c 2021-03-02 op int status, sock;
225 5e11c00c 2021-03-02 op const char *proto = "1965";
226 5e11c00c 2021-03-02 op
227 5e11c00c 2021-03-02 op if (*url->port != '\0')
228 5e11c00c 2021-03-02 op proto = url->port;
229 5e11c00c 2021-03-02 op
230 5e11c00c 2021-03-02 op memset(&hints, 0, sizeof(hints));
231 5e11c00c 2021-03-02 op hints.ai_family = AF_UNSPEC;
232 5e11c00c 2021-03-02 op hints.ai_socktype = SOCK_STREAM;
233 5e11c00c 2021-03-02 op
234 5e11c00c 2021-03-02 op if ((status = getaddrinfo(url->host, proto, &hints, &servinfo))) {
235 4e600d30 2021-03-29 op close_with_errf(req, "failed to resolve %s: %s",
236 5e11c00c 2021-03-02 op url->host, gai_strerror(status));
237 4e600d30 2021-03-29 op return;
238 5e11c00c 2021-03-02 op }
239 5e11c00c 2021-03-02 op
240 5e11c00c 2021-03-02 op sock = -1;
241 5e11c00c 2021-03-02 op for (p = servinfo; p != NULL; p = p->ai_next) {
242 5e11c00c 2021-03-02 op if ((sock = socket(p->ai_family, p->ai_socktype, p->ai_protocol)) == -1)
243 5e11c00c 2021-03-02 op continue;
244 5e11c00c 2021-03-02 op if (connect(sock, p->ai_addr, p->ai_addrlen) != -1)
245 5e11c00c 2021-03-02 op break;
246 5e11c00c 2021-03-02 op close(sock);
247 5e11c00c 2021-03-02 op }
248 4e600d30 2021-03-29 op freeaddrinfo(servinfo);
249 5e11c00c 2021-03-02 op
250 4e600d30 2021-03-29 op if (sock == -1) {
251 4e600d30 2021-03-29 op close_with_errf(req, "couldn't connect to %s", url->host);
252 4e600d30 2021-03-29 op return;
253 4e600d30 2021-03-29 op }
254 5e11c00c 2021-03-02 op
255 4e600d30 2021-03-29 op req->fd = sock;
256 4e600d30 2021-03-29 op mark_nonblock(req->fd);
257 4e600d30 2021-03-29 op setup_tls(req);
258 5e11c00c 2021-03-02 op }
259 cc4953ef 2021-03-16 op #endif
260 5e11c00c 2021-03-02 op
261 5e11c00c 2021-03-02 op static struct req *
262 5e11c00c 2021-03-02 op req_by_id(uint32_t id)
263 15354eed 2021-03-10 op {
264 15354eed 2021-03-10 op struct req *r;
265 15354eed 2021-03-10 op
266 15354eed 2021-03-10 op if ((r = req_by_id_try(id)) == NULL)
267 15354eed 2021-03-10 op die();
268 15354eed 2021-03-10 op return r;
269 15354eed 2021-03-10 op }
270 15354eed 2021-03-10 op
271 15354eed 2021-03-10 op static struct req *
272 15354eed 2021-03-10 op req_by_id_try(uint32_t id)
273 5e11c00c 2021-03-02 op {
274 5e11c00c 2021-03-02 op struct req *r;
275 5e11c00c 2021-03-02 op
276 5e11c00c 2021-03-02 op TAILQ_FOREACH(r, &reqhead, reqs) {
277 5e11c00c 2021-03-02 op if (r->id == id)
278 5e11c00c 2021-03-02 op return r;
279 5e11c00c 2021-03-02 op }
280 5e11c00c 2021-03-02 op
281 15354eed 2021-03-10 op return NULL;
282 5e11c00c 2021-03-02 op }
283 5e11c00c 2021-03-02 op
284 5e11c00c 2021-03-02 op static void
285 5e11c00c 2021-03-02 op close_conn(int fd, short ev, void *d)
286 5e11c00c 2021-03-02 op {
287 5e11c00c 2021-03-02 op struct req *req = d;
288 5e11c00c 2021-03-02 op
289 cc4953ef 2021-03-16 op #if HAVE_ASR_RUN
290 cc4953ef 2021-03-16 op if (req->asrev != NULL)
291 cc4953ef 2021-03-16 op event_asr_abort(req->asrev);
292 cc4953ef 2021-03-16 op #endif
293 cc4953ef 2021-03-16 op
294 5e11c00c 2021-03-02 op if (req->ctx != NULL) {
295 5e11c00c 2021-03-02 op switch (tls_close(req->ctx)) {
296 5e11c00c 2021-03-02 op case TLS_WANT_POLLIN:
297 5e11c00c 2021-03-02 op yield_r(req, close_conn, NULL);
298 5e11c00c 2021-03-02 op return;
299 5e11c00c 2021-03-02 op case TLS_WANT_POLLOUT:
300 5e11c00c 2021-03-02 op yield_w(req, close_conn, NULL);
301 5e11c00c 2021-03-02 op return;
302 5e11c00c 2021-03-02 op }
303 5e11c00c 2021-03-02 op
304 5e11c00c 2021-03-02 op tls_free(req->ctx);
305 5e11c00c 2021-03-02 op }
306 5e11c00c 2021-03-02 op
307 5e11c00c 2021-03-02 op TAILQ_REMOVE(&reqhead, req, reqs);
308 5e11c00c 2021-03-02 op if (req->fd != -1)
309 5e11c00c 2021-03-02 op close(req->fd);
310 5e11c00c 2021-03-02 op free(req);
311 5e11c00c 2021-03-02 op }
312 5e11c00c 2021-03-02 op
313 5e11c00c 2021-03-02 op static void
314 5e11c00c 2021-03-02 op close_with_err(struct req *req, const char *err)
315 5e11c00c 2021-03-02 op {
316 5e11c00c 2021-03-02 op imsg_compose(ibuf, IMSG_ERR, req->id, 0, -1, err, strlen(err)+1);
317 5e11c00c 2021-03-02 op imsg_flush(ibuf);
318 5e11c00c 2021-03-02 op close_conn(0, 0, req);
319 5e11c00c 2021-03-02 op }
320 5e11c00c 2021-03-02 op
321 5e11c00c 2021-03-02 op static void
322 a237223e 2021-03-16 op close_with_errf(struct req *req, const char *fmt, ...)
323 a237223e 2021-03-16 op {
324 a237223e 2021-03-16 op va_list ap;
325 a237223e 2021-03-16 op char *s;
326 a237223e 2021-03-16 op
327 a237223e 2021-03-16 op va_start(ap, fmt);
328 a237223e 2021-03-16 op if (vasprintf(&s, fmt, ap) == -1)
329 a237223e 2021-03-16 op abort();
330 a237223e 2021-03-16 op va_end(ap);
331 a237223e 2021-03-16 op
332 a237223e 2021-03-16 op close_with_err(req, s);
333 a237223e 2021-03-16 op free(s);
334 a237223e 2021-03-16 op }
335 a237223e 2021-03-16 op
336 a237223e 2021-03-16 op static void
337 cc4953ef 2021-03-16 op setup_tls(struct req *req)
338 cc4953ef 2021-03-16 op {
339 cc4953ef 2021-03-16 op if ((req->ctx = tls_client()) == NULL) {
340 cc4953ef 2021-03-16 op close_with_errf(req, "tls_client: %s", strerror(errno));
341 cc4953ef 2021-03-16 op return;
342 cc4953ef 2021-03-16 op }
343 cc4953ef 2021-03-16 op if (tls_configure(req->ctx, tlsconf) == -1) {
344 cc4953ef 2021-03-16 op close_with_errf(req, "tls_configure: %s", tls_error(req->ctx));
345 cc4953ef 2021-03-16 op return;
346 cc4953ef 2021-03-16 op }
347 cc4953ef 2021-03-16 op if (tls_connect_socket(req->ctx, req->fd, req->url.host) == -1) {
348 cc4953ef 2021-03-16 op close_with_errf(req, "tls_connect_socket: %s", tls_error(req->ctx));
349 cc4953ef 2021-03-16 op return;
350 cc4953ef 2021-03-16 op }
351 cc4953ef 2021-03-16 op yield_w(req, do_handshake, &timeout_for_handshake);
352 cc4953ef 2021-03-16 op }
353 cc4953ef 2021-03-16 op
354 cc4953ef 2021-03-16 op static void
355 5e11c00c 2021-03-02 op do_handshake(int fd, short ev, void *d)
356 5e11c00c 2021-03-02 op {
357 5e11c00c 2021-03-02 op struct req *req = d;
358 5e11c00c 2021-03-02 op const char *hash;
359 5e11c00c 2021-03-02 op
360 723bee54 2021-03-09 op if (ev == EV_TIMEOUT) {
361 723bee54 2021-03-09 op close_with_err(req, "Timeout loading page");
362 723bee54 2021-03-09 op return;
363 723bee54 2021-03-09 op }
364 723bee54 2021-03-09 op
365 5e11c00c 2021-03-02 op switch (tls_handshake(req->ctx)) {
366 5e11c00c 2021-03-02 op case TLS_WANT_POLLIN:
367 5e11c00c 2021-03-02 op yield_r(req, do_handshake, NULL);
368 5e11c00c 2021-03-02 op return;
369 5e11c00c 2021-03-02 op case TLS_WANT_POLLOUT:
370 5e11c00c 2021-03-02 op yield_w(req, do_handshake, NULL);
371 5e11c00c 2021-03-02 op return;
372 5e11c00c 2021-03-02 op }
373 5e11c00c 2021-03-02 op
374 5e11c00c 2021-03-02 op hash = tls_peer_cert_hash(req->ctx);
375 282a1d0a 2021-03-16 op if (hash == NULL) {
376 a237223e 2021-03-16 op close_with_errf(req, "handshake failed: %s", tls_error(req->ctx));
377 282a1d0a 2021-03-16 op return;
378 282a1d0a 2021-03-16 op }
379 5e11c00c 2021-03-02 op imsg_compose(ibuf, IMSG_CHECK_CERT, req->id, 0, -1, hash, strlen(hash)+1);
380 5e11c00c 2021-03-02 op imsg_flush(ibuf);
381 5e11c00c 2021-03-02 op }
382 5e11c00c 2021-03-02 op
383 5e11c00c 2021-03-02 op static void
384 5e11c00c 2021-03-02 op write_request(int fd, short ev, void *d)
385 5e11c00c 2021-03-02 op {
386 5e11c00c 2021-03-02 op struct req *req = d;
387 5e11c00c 2021-03-02 op ssize_t r;
388 5e11c00c 2021-03-02 op size_t len;
389 ff6cf34b 2021-03-29 op char buf[1027]; /* URL + \r\n\0 */
390 5e11c00c 2021-03-02 op
391 5e11c00c 2021-03-02 op strlcpy(buf, "gemini://", sizeof(buf));
392 5e11c00c 2021-03-02 op strlcat(buf, req->url.host, sizeof(buf));
393 238afc74 2021-04-01 op if (*req->url.port != '\0' && strcmp("1965", req->url.port)) {
394 238afc74 2021-04-01 op strlcat(buf, ":", sizeof(buf));
395 238afc74 2021-04-01 op strlcat(buf, req->url.port, sizeof(buf));
396 238afc74 2021-04-01 op }
397 5e11c00c 2021-03-02 op strlcat(buf, "/", sizeof(buf));
398 5e11c00c 2021-03-02 op strlcat(buf, req->url.path, sizeof(buf));
399 5e11c00c 2021-03-02 op
400 5e11c00c 2021-03-02 op if (req->url.query[0] != '\0') {
401 5e11c00c 2021-03-02 op strlcat(buf, "?", sizeof(buf));
402 5e11c00c 2021-03-02 op strlcat(buf, req->url.query, sizeof(buf));
403 5e11c00c 2021-03-02 op }
404 5e11c00c 2021-03-02 op
405 5e11c00c 2021-03-02 op len = strlcat(buf, "\r\n", sizeof(buf));
406 5e11c00c 2021-03-02 op
407 5e11c00c 2021-03-02 op assert(len <= sizeof(buf));
408 5e11c00c 2021-03-02 op
409 5e11c00c 2021-03-02 op switch (r = tls_write(req->ctx, buf, len)) {
410 5e11c00c 2021-03-02 op case -1:
411 a237223e 2021-03-16 op close_with_errf(req, "tls_write: %s", tls_error(req->ctx));
412 5e11c00c 2021-03-02 op break;
413 5e11c00c 2021-03-02 op case TLS_WANT_POLLIN:
414 5e11c00c 2021-03-02 op yield_r(req, write_request, NULL);
415 5e11c00c 2021-03-02 op break;
416 5e11c00c 2021-03-02 op case TLS_WANT_POLLOUT:
417 5e11c00c 2021-03-02 op yield_w(req, write_request, NULL);
418 5e11c00c 2021-03-02 op break;
419 5e11c00c 2021-03-02 op default:
420 5e11c00c 2021-03-02 op /* assume r == len */
421 5e11c00c 2021-03-02 op (void)r;
422 5e11c00c 2021-03-02 op yield_r(req, read_reply, NULL);
423 5e11c00c 2021-03-02 op break;
424 5e11c00c 2021-03-02 op }
425 5e11c00c 2021-03-02 op }
426 5e11c00c 2021-03-02 op
427 5e11c00c 2021-03-02 op static void
428 5e11c00c 2021-03-02 op read_reply(int fd, short ev, void *d)
429 5e11c00c 2021-03-02 op {
430 5e11c00c 2021-03-02 op struct req *req = d;
431 5e11c00c 2021-03-02 op size_t len;
432 5e11c00c 2021-03-02 op ssize_t r;
433 a237223e 2021-03-16 op char *buf;
434 5e11c00c 2021-03-02 op
435 5e11c00c 2021-03-02 op buf = req->buf + req->off;
436 5e11c00c 2021-03-02 op len = sizeof(req->buf) - req->off;
437 5e11c00c 2021-03-02 op
438 5e11c00c 2021-03-02 op switch (r = tls_read(req->ctx, buf, len)) {
439 5e11c00c 2021-03-02 op case -1:
440 a237223e 2021-03-16 op close_with_errf(req, "tls_read: %s", tls_error(req->ctx));
441 5e11c00c 2021-03-02 op break;
442 5e11c00c 2021-03-02 op case TLS_WANT_POLLIN:
443 5e11c00c 2021-03-02 op yield_r(req, read_reply, NULL);
444 5e11c00c 2021-03-02 op break;
445 5e11c00c 2021-03-02 op case TLS_WANT_POLLOUT:
446 5e11c00c 2021-03-02 op yield_w(req, read_reply, NULL);
447 5e11c00c 2021-03-02 op break;
448 5e11c00c 2021-03-02 op default:
449 5e11c00c 2021-03-02 op req->off += r;
450 5e11c00c 2021-03-02 op
451 e62289e7 2021-03-16 op if (memmem(req->buf, req->off, "\r\n", 2) != NULL)
452 5e11c00c 2021-03-02 op parse_reply(req);
453 5e11c00c 2021-03-02 op else if (req->off == sizeof(req->buf))
454 5e11c00c 2021-03-02 op close_with_err(req, "invalid response");
455 5e11c00c 2021-03-02 op else
456 5e11c00c 2021-03-02 op yield_r(req, read_reply, NULL);
457 5e11c00c 2021-03-02 op break;
458 5e11c00c 2021-03-02 op }
459 5e11c00c 2021-03-02 op }
460 5e11c00c 2021-03-02 op
461 5e11c00c 2021-03-02 op static void
462 5e11c00c 2021-03-02 op parse_reply(struct req *req)
463 5e11c00c 2021-03-02 op {
464 5e11c00c 2021-03-02 op int code;
465 5e11c00c 2021-03-02 op char *e;
466 5e11c00c 2021-03-02 op size_t len;
467 5e11c00c 2021-03-02 op
468 5e11c00c 2021-03-02 op if (req->off < 4)
469 5e11c00c 2021-03-02 op goto err;
470 5e11c00c 2021-03-02 op
471 5e11c00c 2021-03-02 op if (!isdigit(req->buf[0]) || !isdigit(req->buf[1]))
472 5e11c00c 2021-03-02 op goto err;
473 5e11c00c 2021-03-02 op
474 5e11c00c 2021-03-02 op code = (req->buf[0] - '0')*10 + (req->buf[1] - '0');
475 5e11c00c 2021-03-02 op
476 5e11c00c 2021-03-02 op if (!isspace(req->buf[2]))
477 5e11c00c 2021-03-02 op goto err;
478 5e11c00c 2021-03-02 op
479 5e11c00c 2021-03-02 op advance_buf(req, 3);
480 e62289e7 2021-03-16 op if ((e = memmem(req->buf, req->off, "\r\n", 2)) == NULL)
481 5e11c00c 2021-03-02 op goto err;
482 5e11c00c 2021-03-02 op
483 5e11c00c 2021-03-02 op *e = '\0';
484 5e11c00c 2021-03-02 op e++;
485 5e11c00c 2021-03-02 op len = e - req->buf;
486 5e11c00c 2021-03-02 op imsg_compose(ibuf, IMSG_GOT_CODE, req->id, 0, -1, &code, sizeof(code));
487 155dac7f 2021-03-29 op imsg_compose(ibuf, IMSG_GOT_META, req->id, 0, -1, req->buf, len);
488 5e11c00c 2021-03-02 op imsg_flush(ibuf);
489 5e11c00c 2021-03-02 op
490 d55d6174 2021-04-01 op if (20 <= code && code < 30)
491 58ba20cd 2021-03-18 op advance_buf(req, len+1); /* skip \n too */
492 2d8fdde4 2021-04-01 op else
493 2d8fdde4 2021-04-01 op close_conn(0, 0, req);
494 723bee54 2021-03-09 op
495 5e11c00c 2021-03-02 op return;
496 5e11c00c 2021-03-02 op
497 5e11c00c 2021-03-02 op err:
498 5e11c00c 2021-03-02 op close_with_err(req, "malformed request");
499 5e11c00c 2021-03-02 op }
500 5e11c00c 2021-03-02 op
501 5e11c00c 2021-03-02 op static void
502 5e11c00c 2021-03-02 op copy_body(int fd, short ev, void *d)
503 5e11c00c 2021-03-02 op {
504 5e11c00c 2021-03-02 op struct req *req = d;
505 5e11c00c 2021-03-02 op ssize_t r;
506 5e11c00c 2021-03-02 op
507 e4304954 2021-03-14 op for (;;) {
508 72a79cfb 2021-03-13 op if (req->off != 0) {
509 72a79cfb 2021-03-13 op imsg_compose(ibuf, IMSG_BUF, req->id, 0, -1,
510 72a79cfb 2021-03-13 op req->buf, req->off);
511 72a79cfb 2021-03-13 op imsg_flush(ibuf);
512 1deaf397 2021-03-14 op req->off = 0;
513 72a79cfb 2021-03-13 op }
514 72a79cfb 2021-03-13 op
515 72a79cfb 2021-03-13 op switch (r = tls_read(req->ctx, req->buf, sizeof(req->buf))) {
516 5e11c00c 2021-03-02 op case TLS_WANT_POLLIN:
517 5e11c00c 2021-03-02 op yield_r(req, copy_body, NULL);
518 5e11c00c 2021-03-02 op return;
519 5e11c00c 2021-03-02 op case TLS_WANT_POLLOUT:
520 5e11c00c 2021-03-02 op yield_w(req, copy_body, NULL);
521 5e11c00c 2021-03-02 op return;
522 5e11c00c 2021-03-02 op case 0:
523 5e11c00c 2021-03-02 op imsg_compose(ibuf, IMSG_EOF, req->id, 0, -1, NULL, 0);
524 5e11c00c 2021-03-02 op imsg_flush(ibuf);
525 5e11c00c 2021-03-02 op close_conn(0, 0, req);
526 5e11c00c 2021-03-02 op return;
527 5e11c00c 2021-03-02 op default:
528 72a79cfb 2021-03-13 op req->off = r;
529 5e11c00c 2021-03-02 op }
530 e4304954 2021-03-14 op }
531 5e11c00c 2021-03-02 op }
532 5e11c00c 2021-03-02 op
533 5e11c00c 2021-03-02 op static void
534 5e11c00c 2021-03-02 op handle_get(struct imsg *imsg, size_t datalen)
535 5e11c00c 2021-03-02 op {
536 5e11c00c 2021-03-02 op struct req *req;
537 5e11c00c 2021-03-02 op const char *e;
538 cc4953ef 2021-03-16 op char *data;
539 5e11c00c 2021-03-02 op
540 5e11c00c 2021-03-02 op data = imsg->data;
541 5e11c00c 2021-03-02 op
542 5e11c00c 2021-03-02 op if (data[datalen-1] != '\0')
543 5e11c00c 2021-03-02 op die();
544 5e11c00c 2021-03-02 op
545 5e11c00c 2021-03-02 op if ((req = calloc(1, sizeof(*req))) == NULL)
546 5e11c00c 2021-03-02 op die();
547 5e11c00c 2021-03-02 op
548 5e11c00c 2021-03-02 op req->id = imsg->hdr.peerid;
549 71a2feab 2021-03-10 op TAILQ_INSERT_HEAD(&reqhead, req, reqs);
550 5e11c00c 2021-03-02 op
551 5e11c00c 2021-03-02 op if (!url_parse(imsg->data, &req->url, &e)) {
552 5e11c00c 2021-03-02 op close_with_err(req, e);
553 5e11c00c 2021-03-02 op return;
554 5e11c00c 2021-03-02 op }
555 5e11c00c 2021-03-02 op
556 cc4953ef 2021-03-16 op #if HAVE_ASR_RUN
557 cc4953ef 2021-03-16 op async_conn_towards(req);
558 cc4953ef 2021-03-16 op #else
559 4e600d30 2021-03-29 op blocking_conn_towards(req);
560 cc4953ef 2021-03-16 op #endif
561 5e11c00c 2021-03-02 op }
562 5e11c00c 2021-03-02 op
563 5e11c00c 2021-03-02 op static void
564 5e11c00c 2021-03-02 op handle_cert_status(struct imsg *imsg, size_t datalen)
565 5e11c00c 2021-03-02 op {
566 5e11c00c 2021-03-02 op struct req *req;
567 5e11c00c 2021-03-02 op int is_ok;
568 5e11c00c 2021-03-02 op
569 5e11c00c 2021-03-02 op req = req_by_id(imsg->hdr.peerid);
570 5e11c00c 2021-03-02 op
571 5e11c00c 2021-03-02 op if (datalen < sizeof(is_ok))
572 5e11c00c 2021-03-02 op die();
573 5e11c00c 2021-03-02 op memcpy(&is_ok, imsg->data, sizeof(is_ok));
574 5e11c00c 2021-03-02 op
575 5e11c00c 2021-03-02 op if (is_ok)
576 5e11c00c 2021-03-02 op yield_w(req, write_request, NULL);
577 5e11c00c 2021-03-02 op else
578 5e11c00c 2021-03-02 op close_conn(0, 0, req);
579 5e11c00c 2021-03-02 op }
580 5e11c00c 2021-03-02 op
581 5e11c00c 2021-03-02 op static void
582 0972d8b2 2021-03-02 op handle_proceed(struct imsg *imsg, size_t datalen)
583 0972d8b2 2021-03-02 op {
584 e4304954 2021-03-14 op yield_r(req_by_id(imsg->hdr.peerid),
585 e4304954 2021-03-14 op copy_body, NULL);
586 0972d8b2 2021-03-02 op }
587 0972d8b2 2021-03-02 op
588 0972d8b2 2021-03-02 op static void
589 5e11c00c 2021-03-02 op handle_stop(struct imsg *imsg, size_t datalen)
590 5e11c00c 2021-03-02 op {
591 5e11c00c 2021-03-02 op struct req *req;
592 5e11c00c 2021-03-02 op
593 15354eed 2021-03-10 op if ((req = req_by_id_try(imsg->hdr.peerid)) == NULL)
594 15354eed 2021-03-10 op return;
595 5e11c00c 2021-03-02 op close_conn(0, 0, req);
596 5e11c00c 2021-03-02 op }
597 5e11c00c 2021-03-02 op
598 5e11c00c 2021-03-02 op static void
599 5e11c00c 2021-03-02 op handle_quit(struct imsg *imsg, size_t datalen)
600 5e11c00c 2021-03-02 op {
601 5e11c00c 2021-03-02 op event_loopbreak();
602 5e11c00c 2021-03-02 op }
603 5e11c00c 2021-03-02 op
604 5e11c00c 2021-03-02 op static void
605 1304bbdd 2021-03-15 op handle_dispatch_imsg(int fd, short ev, void *d)
606 5e11c00c 2021-03-02 op {
607 5e11c00c 2021-03-02 op struct imsgbuf *ibuf = d;
608 1304bbdd 2021-03-15 op dispatch_imsg(ibuf, handlers, sizeof(handlers));
609 5e11c00c 2021-03-02 op }
610 5e11c00c 2021-03-02 op
611 5e11c00c 2021-03-02 op int
612 5e11c00c 2021-03-02 op client_main(struct imsgbuf *b)
613 5e11c00c 2021-03-02 op {
614 5e11c00c 2021-03-02 op ibuf = b;
615 5e11c00c 2021-03-02 op
616 5e11c00c 2021-03-02 op TAILQ_INIT(&reqhead);
617 5e11c00c 2021-03-02 op
618 5e11c00c 2021-03-02 op if ((tlsconf = tls_config_new()) == NULL)
619 5e11c00c 2021-03-02 op die();
620 5e11c00c 2021-03-02 op tls_config_insecure_noverifycert(tlsconf);
621 d6cd2fc1 2021-03-25 op tls_config_insecure_noverifyname(tlsconf);
622 5e11c00c 2021-03-02 op
623 5e11c00c 2021-03-02 op event_init();
624 5e11c00c 2021-03-02 op
625 1304bbdd 2021-03-15 op event_set(&imsgev, ibuf->fd, EV_READ | EV_PERSIST, handle_dispatch_imsg, ibuf);
626 5e11c00c 2021-03-02 op event_add(&imsgev, NULL);
627 ebdcadbf 2021-03-12 op
628 ebdcadbf 2021-03-12 op sandbox_network_process();
629 5e11c00c 2021-03-02 op
630 5e11c00c 2021-03-02 op event_dispatch();
631 5e11c00c 2021-03-02 op return 0;
632 5e11c00c 2021-03-02 op }