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 <event.h>
36 5e11c00c 2021-03-02 op #include <netdb.h>
37 5e11c00c 2021-03-02 op #include <stdarg.h>
38 5e11c00c 2021-03-02 op #include <stdio.h>
39 5e11c00c 2021-03-02 op #include <stdlib.h>
40 5e11c00c 2021-03-02 op #include <string.h>
41 5e11c00c 2021-03-02 op #include <tls.h>
42 5e11c00c 2021-03-02 op #include <unistd.h>
43 5e11c00c 2021-03-02 op
44 5e11c00c 2021-03-02 op static struct tls_config *tlsconf;
45 5e11c00c 2021-03-02 op static struct imsgbuf *ibuf;
46 5e11c00c 2021-03-02 op
47 5e11c00c 2021-03-02 op struct req;
48 5e11c00c 2021-03-02 op
49 5e11c00c 2021-03-02 op static void die(void) __attribute__((__noreturn__));
50 5e11c00c 2021-03-02 op static char *xasprintf(const char*, ...);
51 5e11c00c 2021-03-02 op static int conn_towards(struct url*, char**);
52 5e11c00c 2021-03-02 op
53 5e11c00c 2021-03-02 op static void close_with_err(struct req*, const char *err);
54 5e11c00c 2021-03-02 op static struct req *req_by_id(uint32_t);
55 5e11c00c 2021-03-02 op
56 5e11c00c 2021-03-02 op static void do_handshake(int, short, void*);
57 5e11c00c 2021-03-02 op static void write_request(int, short, void*);
58 5e11c00c 2021-03-02 op static void read_reply(int, short, void*);
59 5e11c00c 2021-03-02 op static void parse_reply(struct req*);
60 5e11c00c 2021-03-02 op static void copy_body(int, short, void*);
61 5e11c00c 2021-03-02 op
62 5e11c00c 2021-03-02 op static void check_special_page(struct req*, const char*);
63 5e11c00c 2021-03-02 op
64 5e11c00c 2021-03-02 op static void handle_get(struct imsg*, size_t);
65 5e11c00c 2021-03-02 op static void handle_cert_status(struct imsg*, size_t);
66 0972d8b2 2021-03-02 op static void handle_proceed(struct imsg*, size_t);
67 5e11c00c 2021-03-02 op static void handle_stop(struct imsg*, size_t);
68 5e11c00c 2021-03-02 op static void handle_quit(struct imsg*, size_t);
69 5e11c00c 2021-03-02 op
70 723bee54 2021-03-09 op /* TODO: making this customizable */
71 723bee54 2021-03-09 op struct timeval timeout_for_handshake = { 5, 0 };
72 723bee54 2021-03-09 op
73 5e11c00c 2021-03-02 op static imsg_handlerfn *handlers[] = {
74 5e11c00c 2021-03-02 op [IMSG_GET] = handle_get,
75 5e11c00c 2021-03-02 op [IMSG_CERT_STATUS] = handle_cert_status,
76 0972d8b2 2021-03-02 op [IMSG_PROCEED] = handle_proceed,
77 5e11c00c 2021-03-02 op [IMSG_STOP] = handle_stop,
78 5e11c00c 2021-03-02 op [IMSG_QUIT] = handle_quit,
79 5e11c00c 2021-03-02 op };
80 5e11c00c 2021-03-02 op
81 5e11c00c 2021-03-02 op typedef void (*statefn)(int, short, void*);
82 5e11c00c 2021-03-02 op
83 5e11c00c 2021-03-02 op TAILQ_HEAD(, req) reqhead;
84 5e11c00c 2021-03-02 op /* a pending request */
85 5e11c00c 2021-03-02 op struct req {
86 5e11c00c 2021-03-02 op struct event ev;
87 5e11c00c 2021-03-02 op struct url url;
88 5e11c00c 2021-03-02 op uint32_t id;
89 5e11c00c 2021-03-02 op int fd;
90 5e11c00c 2021-03-02 op struct tls *ctx;
91 5e11c00c 2021-03-02 op char buf[1024];
92 5e11c00c 2021-03-02 op size_t off;
93 5e11c00c 2021-03-02 op TAILQ_ENTRY(req) reqs;
94 5e11c00c 2021-03-02 op };
95 5e11c00c 2021-03-02 op
96 5e11c00c 2021-03-02 op static inline void
97 5e11c00c 2021-03-02 op yield_r(struct req *req, statefn fn, struct timeval *tv)
98 5e11c00c 2021-03-02 op {
99 5e11c00c 2021-03-02 op event_once(req->fd, EV_READ, fn, req, tv);
100 5e11c00c 2021-03-02 op }
101 5e11c00c 2021-03-02 op
102 5e11c00c 2021-03-02 op static inline void
103 5e11c00c 2021-03-02 op yield_w(struct req *req, statefn fn, struct timeval *tv)
104 5e11c00c 2021-03-02 op {
105 5e11c00c 2021-03-02 op event_once(req->fd, EV_WRITE, fn, req, tv);
106 5e11c00c 2021-03-02 op }
107 5e11c00c 2021-03-02 op
108 5e11c00c 2021-03-02 op static inline void
109 5e11c00c 2021-03-02 op advance_buf(struct req *req, size_t len)
110 5e11c00c 2021-03-02 op {
111 5e11c00c 2021-03-02 op assert(len <= req->off);
112 5e11c00c 2021-03-02 op
113 5e11c00c 2021-03-02 op req->off -= len;
114 5e11c00c 2021-03-02 op memmove(req->buf, req->buf + len, req->off);
115 5e11c00c 2021-03-02 op }
116 5e11c00c 2021-03-02 op
117 5e11c00c 2021-03-02 op static void __attribute__((__noreturn__))
118 5e11c00c 2021-03-02 op die(void)
119 5e11c00c 2021-03-02 op {
120 5e11c00c 2021-03-02 op abort(); /* TODO */
121 5e11c00c 2021-03-02 op }
122 5e11c00c 2021-03-02 op
123 5e11c00c 2021-03-02 op static char *
124 5e11c00c 2021-03-02 op xasprintf(const char *fmt, ...)
125 5e11c00c 2021-03-02 op {
126 5e11c00c 2021-03-02 op va_list ap;
127 5e11c00c 2021-03-02 op char *s;
128 5e11c00c 2021-03-02 op
129 5e11c00c 2021-03-02 op va_start(ap, fmt);
130 5e11c00c 2021-03-02 op if (vasprintf(&s, fmt, ap) == -1)
131 5e11c00c 2021-03-02 op s = NULL;
132 5e11c00c 2021-03-02 op va_end(ap);
133 5e11c00c 2021-03-02 op
134 5e11c00c 2021-03-02 op return s;
135 5e11c00c 2021-03-02 op }
136 5e11c00c 2021-03-02 op
137 5e11c00c 2021-03-02 op static int
138 5e11c00c 2021-03-02 op conn_towards(struct url *url, char **err)
139 5e11c00c 2021-03-02 op {
140 5e11c00c 2021-03-02 op struct addrinfo hints, *servinfo, *p;
141 5e11c00c 2021-03-02 op int status, sock;
142 5e11c00c 2021-03-02 op const char *proto = "1965";
143 5e11c00c 2021-03-02 op
144 5e11c00c 2021-03-02 op *err = NULL;
145 5e11c00c 2021-03-02 op
146 5e11c00c 2021-03-02 op if (*url->port != '\0')
147 5e11c00c 2021-03-02 op proto = url->port;
148 5e11c00c 2021-03-02 op
149 5e11c00c 2021-03-02 op memset(&hints, 0, sizeof(hints));
150 5e11c00c 2021-03-02 op hints.ai_family = AF_UNSPEC;
151 5e11c00c 2021-03-02 op hints.ai_socktype = SOCK_STREAM;
152 5e11c00c 2021-03-02 op
153 5e11c00c 2021-03-02 op if ((status = getaddrinfo(url->host, proto, &hints, &servinfo))) {
154 5e11c00c 2021-03-02 op *err = xasprintf("failed to resolve %s: %s",
155 5e11c00c 2021-03-02 op url->host, gai_strerror(status));
156 5e11c00c 2021-03-02 op return -1;
157 5e11c00c 2021-03-02 op }
158 5e11c00c 2021-03-02 op
159 5e11c00c 2021-03-02 op sock = -1;
160 5e11c00c 2021-03-02 op for (p = servinfo; p != NULL; p = p->ai_next) {
161 5e11c00c 2021-03-02 op if ((sock = socket(p->ai_family, p->ai_socktype, p->ai_protocol)) == -1)
162 5e11c00c 2021-03-02 op continue;
163 5e11c00c 2021-03-02 op if (connect(sock, p->ai_addr, p->ai_addrlen) != -1)
164 5e11c00c 2021-03-02 op break;
165 5e11c00c 2021-03-02 op close(sock);
166 5e11c00c 2021-03-02 op }
167 5e11c00c 2021-03-02 op
168 5e11c00c 2021-03-02 op if (sock == -1)
169 5e11c00c 2021-03-02 op *err = xasprintf("couldn't connect to %s", url->host);
170 5e11c00c 2021-03-02 op else
171 5e11c00c 2021-03-02 op mark_nonblock(sock);
172 5e11c00c 2021-03-02 op
173 5e11c00c 2021-03-02 op freeaddrinfo(servinfo);
174 5e11c00c 2021-03-02 op return sock;
175 5e11c00c 2021-03-02 op }
176 5e11c00c 2021-03-02 op
177 5e11c00c 2021-03-02 op static struct req *
178 5e11c00c 2021-03-02 op req_by_id(uint32_t id)
179 5e11c00c 2021-03-02 op {
180 5e11c00c 2021-03-02 op struct req *r;
181 5e11c00c 2021-03-02 op
182 5e11c00c 2021-03-02 op TAILQ_FOREACH(r, &reqhead, reqs) {
183 5e11c00c 2021-03-02 op if (r->id == id)
184 5e11c00c 2021-03-02 op return r;
185 5e11c00c 2021-03-02 op }
186 5e11c00c 2021-03-02 op
187 5e11c00c 2021-03-02 op die();
188 5e11c00c 2021-03-02 op }
189 5e11c00c 2021-03-02 op
190 5e11c00c 2021-03-02 op static void
191 5e11c00c 2021-03-02 op close_conn(int fd, short ev, void *d)
192 5e11c00c 2021-03-02 op {
193 5e11c00c 2021-03-02 op struct req *req = d;
194 5e11c00c 2021-03-02 op
195 5e11c00c 2021-03-02 op if (req->ctx != NULL) {
196 5e11c00c 2021-03-02 op switch (tls_close(req->ctx)) {
197 5e11c00c 2021-03-02 op case TLS_WANT_POLLIN:
198 5e11c00c 2021-03-02 op yield_r(req, close_conn, NULL);
199 5e11c00c 2021-03-02 op return;
200 5e11c00c 2021-03-02 op case TLS_WANT_POLLOUT:
201 5e11c00c 2021-03-02 op yield_w(req, close_conn, NULL);
202 5e11c00c 2021-03-02 op return;
203 5e11c00c 2021-03-02 op }
204 5e11c00c 2021-03-02 op
205 5e11c00c 2021-03-02 op tls_free(req->ctx);
206 5e11c00c 2021-03-02 op }
207 5e11c00c 2021-03-02 op
208 5e11c00c 2021-03-02 op TAILQ_REMOVE(&reqhead, req, reqs);
209 5e11c00c 2021-03-02 op if (req->fd != -1)
210 5e11c00c 2021-03-02 op close(req->fd);
211 5e11c00c 2021-03-02 op free(req);
212 5e11c00c 2021-03-02 op }
213 5e11c00c 2021-03-02 op
214 5e11c00c 2021-03-02 op static void
215 5e11c00c 2021-03-02 op close_with_err(struct req *req, const char *err)
216 5e11c00c 2021-03-02 op {
217 5e11c00c 2021-03-02 op imsg_compose(ibuf, IMSG_ERR, req->id, 0, -1, err, strlen(err)+1);
218 5e11c00c 2021-03-02 op imsg_flush(ibuf);
219 5e11c00c 2021-03-02 op close_conn(0, 0, req);
220 5e11c00c 2021-03-02 op }
221 5e11c00c 2021-03-02 op
222 5e11c00c 2021-03-02 op static void
223 5e11c00c 2021-03-02 op do_handshake(int fd, short ev, void *d)
224 5e11c00c 2021-03-02 op {
225 5e11c00c 2021-03-02 op struct req *req = d;
226 5e11c00c 2021-03-02 op const char *hash;
227 5e11c00c 2021-03-02 op
228 723bee54 2021-03-09 op if (ev == EV_TIMEOUT) {
229 723bee54 2021-03-09 op close_with_err(req, "Timeout loading page");
230 723bee54 2021-03-09 op return;
231 723bee54 2021-03-09 op }
232 723bee54 2021-03-09 op
233 5e11c00c 2021-03-02 op switch (tls_handshake(req->ctx)) {
234 5e11c00c 2021-03-02 op case TLS_WANT_POLLIN:
235 5e11c00c 2021-03-02 op yield_r(req, do_handshake, NULL);
236 5e11c00c 2021-03-02 op return;
237 5e11c00c 2021-03-02 op case TLS_WANT_POLLOUT:
238 5e11c00c 2021-03-02 op yield_w(req, do_handshake, NULL);
239 5e11c00c 2021-03-02 op return;
240 5e11c00c 2021-03-02 op }
241 5e11c00c 2021-03-02 op
242 5e11c00c 2021-03-02 op hash = tls_peer_cert_hash(req->ctx);
243 5e11c00c 2021-03-02 op imsg_compose(ibuf, IMSG_CHECK_CERT, req->id, 0, -1, hash, strlen(hash)+1);
244 5e11c00c 2021-03-02 op imsg_flush(ibuf);
245 5e11c00c 2021-03-02 op }
246 5e11c00c 2021-03-02 op
247 5e11c00c 2021-03-02 op static void
248 5e11c00c 2021-03-02 op write_request(int fd, short ev, void *d)
249 5e11c00c 2021-03-02 op {
250 5e11c00c 2021-03-02 op struct req *req = d;
251 5e11c00c 2021-03-02 op ssize_t r;
252 5e11c00c 2021-03-02 op size_t len;
253 5e11c00c 2021-03-02 op char buf[1024], *err;
254 5e11c00c 2021-03-02 op
255 5e11c00c 2021-03-02 op strlcpy(buf, "gemini://", sizeof(buf));
256 5e11c00c 2021-03-02 op strlcat(buf, req->url.host, sizeof(buf));
257 5e11c00c 2021-03-02 op strlcat(buf, "/", sizeof(buf));
258 5e11c00c 2021-03-02 op strlcat(buf, req->url.path, sizeof(buf));
259 5e11c00c 2021-03-02 op
260 5e11c00c 2021-03-02 op if (req->url.query[0] != '\0') {
261 5e11c00c 2021-03-02 op strlcat(buf, "?", sizeof(buf));
262 5e11c00c 2021-03-02 op strlcat(buf, req->url.query, sizeof(buf));
263 5e11c00c 2021-03-02 op }
264 5e11c00c 2021-03-02 op
265 5e11c00c 2021-03-02 op len = strlcat(buf, "\r\n", sizeof(buf));
266 5e11c00c 2021-03-02 op
267 5e11c00c 2021-03-02 op assert(len <= sizeof(buf));
268 5e11c00c 2021-03-02 op
269 5e11c00c 2021-03-02 op switch (r = tls_write(req->ctx, buf, len)) {
270 5e11c00c 2021-03-02 op case -1:
271 5e11c00c 2021-03-02 op err = xasprintf("tls_write: %s", tls_error(req->ctx));
272 5e11c00c 2021-03-02 op close_with_err(req, err);
273 5e11c00c 2021-03-02 op free(err);
274 5e11c00c 2021-03-02 op break;
275 5e11c00c 2021-03-02 op case TLS_WANT_POLLIN:
276 5e11c00c 2021-03-02 op yield_r(req, write_request, NULL);
277 5e11c00c 2021-03-02 op break;
278 5e11c00c 2021-03-02 op case TLS_WANT_POLLOUT:
279 5e11c00c 2021-03-02 op yield_w(req, write_request, NULL);
280 5e11c00c 2021-03-02 op break;
281 5e11c00c 2021-03-02 op default:
282 5e11c00c 2021-03-02 op /* assume r == len */
283 5e11c00c 2021-03-02 op (void)r;
284 5e11c00c 2021-03-02 op yield_r(req, read_reply, NULL);
285 5e11c00c 2021-03-02 op break;
286 5e11c00c 2021-03-02 op }
287 5e11c00c 2021-03-02 op }
288 5e11c00c 2021-03-02 op
289 5e11c00c 2021-03-02 op static void
290 5e11c00c 2021-03-02 op read_reply(int fd, short ev, void *d)
291 5e11c00c 2021-03-02 op {
292 5e11c00c 2021-03-02 op struct req *req = d;
293 5e11c00c 2021-03-02 op size_t len;
294 5e11c00c 2021-03-02 op ssize_t r;
295 5e11c00c 2021-03-02 op char *buf, *e;
296 5e11c00c 2021-03-02 op
297 5e11c00c 2021-03-02 op buf = req->buf + req->off;
298 5e11c00c 2021-03-02 op len = sizeof(req->buf) - req->off;
299 5e11c00c 2021-03-02 op
300 5e11c00c 2021-03-02 op switch (r = tls_read(req->ctx, buf, len)) {
301 5e11c00c 2021-03-02 op case -1:
302 5e11c00c 2021-03-02 op e = xasprintf("tls_read: %s", tls_error(req->ctx));
303 5e11c00c 2021-03-02 op close_with_err(req, e);
304 5e11c00c 2021-03-02 op free(e);
305 5e11c00c 2021-03-02 op break;
306 5e11c00c 2021-03-02 op case TLS_WANT_POLLIN:
307 5e11c00c 2021-03-02 op yield_r(req, read_reply, NULL);
308 5e11c00c 2021-03-02 op break;
309 5e11c00c 2021-03-02 op case TLS_WANT_POLLOUT:
310 5e11c00c 2021-03-02 op yield_w(req, read_reply, NULL);
311 5e11c00c 2021-03-02 op break;
312 5e11c00c 2021-03-02 op default:
313 5e11c00c 2021-03-02 op req->off += r;
314 5e11c00c 2021-03-02 op
315 5e11c00c 2021-03-02 op /* TODO: really watch for \r\n not \n alone */
316 5e11c00c 2021-03-02 op if ((e = telescope_strnchr(req->buf, '\n', req->off)) != NULL)
317 5e11c00c 2021-03-02 op parse_reply(req);
318 5e11c00c 2021-03-02 op else if (req->off == sizeof(req->buf))
319 5e11c00c 2021-03-02 op close_with_err(req, "invalid response");
320 5e11c00c 2021-03-02 op else
321 5e11c00c 2021-03-02 op yield_r(req, read_reply, NULL);
322 5e11c00c 2021-03-02 op break;
323 5e11c00c 2021-03-02 op }
324 5e11c00c 2021-03-02 op }
325 5e11c00c 2021-03-02 op
326 5e11c00c 2021-03-02 op static void
327 5e11c00c 2021-03-02 op parse_reply(struct req *req)
328 5e11c00c 2021-03-02 op {
329 5e11c00c 2021-03-02 op int code;
330 5e11c00c 2021-03-02 op char *e;
331 5e11c00c 2021-03-02 op size_t len;
332 5e11c00c 2021-03-02 op
333 5e11c00c 2021-03-02 op if (req->off < 4)
334 5e11c00c 2021-03-02 op goto err;
335 5e11c00c 2021-03-02 op
336 5e11c00c 2021-03-02 op if (!isdigit(req->buf[0]) || !isdigit(req->buf[1]))
337 5e11c00c 2021-03-02 op goto err;
338 5e11c00c 2021-03-02 op
339 5e11c00c 2021-03-02 op code = (req->buf[0] - '0')*10 + (req->buf[1] - '0');
340 5e11c00c 2021-03-02 op
341 5e11c00c 2021-03-02 op if (!isspace(req->buf[2]))
342 5e11c00c 2021-03-02 op goto err;
343 5e11c00c 2021-03-02 op
344 5e11c00c 2021-03-02 op advance_buf(req, 3);
345 5e11c00c 2021-03-02 op if ((e = telescope_strnchr(req->buf, '\r', req->off)) == NULL)
346 5e11c00c 2021-03-02 op goto err;
347 5e11c00c 2021-03-02 op
348 5e11c00c 2021-03-02 op *e = '\0';
349 5e11c00c 2021-03-02 op e++;
350 5e11c00c 2021-03-02 op len = e - req->buf;
351 5e11c00c 2021-03-02 op imsg_compose(ibuf, IMSG_GOT_CODE, req->id, 0, -1, &code, sizeof(code));
352 5e11c00c 2021-03-02 op imsg_compose(ibuf, IMSG_GOT_META, req->id, 0, -1,
353 5e11c00c 2021-03-02 op req->buf, len);
354 5e11c00c 2021-03-02 op imsg_flush(ibuf);
355 5e11c00c 2021-03-02 op
356 723bee54 2021-03-09 op if (code != 20)
357 723bee54 2021-03-09 op close_conn(0, 0, req);
358 723bee54 2021-03-09 op
359 5e11c00c 2021-03-02 op return;
360 5e11c00c 2021-03-02 op
361 5e11c00c 2021-03-02 op err:
362 5e11c00c 2021-03-02 op close_with_err(req, "malformed request");
363 5e11c00c 2021-03-02 op }
364 5e11c00c 2021-03-02 op
365 5e11c00c 2021-03-02 op static void
366 5e11c00c 2021-03-02 op copy_body(int fd, short ev, void *d)
367 5e11c00c 2021-03-02 op {
368 5e11c00c 2021-03-02 op struct req *req = d;
369 5e11c00c 2021-03-02 op char buf[BUFSIZ];
370 5e11c00c 2021-03-02 op ssize_t r;
371 5e11c00c 2021-03-02 op
372 5e11c00c 2021-03-02 op for (;;) {
373 5e11c00c 2021-03-02 op switch (r = tls_read(req->ctx, buf, sizeof(buf))) {
374 5e11c00c 2021-03-02 op case TLS_WANT_POLLIN:
375 5e11c00c 2021-03-02 op yield_r(req, copy_body, NULL);
376 5e11c00c 2021-03-02 op return;
377 5e11c00c 2021-03-02 op case TLS_WANT_POLLOUT:
378 5e11c00c 2021-03-02 op yield_w(req, copy_body, NULL);
379 5e11c00c 2021-03-02 op return;
380 5e11c00c 2021-03-02 op case -1:
381 5e11c00c 2021-03-02 op case 0:
382 5e11c00c 2021-03-02 op imsg_compose(ibuf, IMSG_EOF, req->id, 0, -1, NULL, 0);
383 5e11c00c 2021-03-02 op imsg_flush(ibuf);
384 5e11c00c 2021-03-02 op close_conn(0, 0, req);
385 5e11c00c 2021-03-02 op return;
386 5e11c00c 2021-03-02 op default:
387 5e11c00c 2021-03-02 op imsg_compose(ibuf, IMSG_BUF, req->id, 0, -1, buf, r);
388 5e11c00c 2021-03-02 op imsg_flush(ibuf);
389 5e11c00c 2021-03-02 op break;
390 5e11c00c 2021-03-02 op }
391 5e11c00c 2021-03-02 op }
392 5e11c00c 2021-03-02 op }
393 5e11c00c 2021-03-02 op
394 5e11c00c 2021-03-02 op static void
395 5e11c00c 2021-03-02 op handle_get(struct imsg *imsg, size_t datalen)
396 5e11c00c 2021-03-02 op {
397 5e11c00c 2021-03-02 op struct req *req;
398 5e11c00c 2021-03-02 op const char *e;
399 5e11c00c 2021-03-02 op char *data, *err = NULL;
400 5e11c00c 2021-03-02 op
401 5e11c00c 2021-03-02 op data = imsg->data;
402 5e11c00c 2021-03-02 op
403 5e11c00c 2021-03-02 op if (data[datalen-1] != '\0')
404 5e11c00c 2021-03-02 op die();
405 5e11c00c 2021-03-02 op
406 5e11c00c 2021-03-02 op if ((req = calloc(1, sizeof(*req))) == NULL)
407 5e11c00c 2021-03-02 op die();
408 5e11c00c 2021-03-02 op
409 5e11c00c 2021-03-02 op req->id = imsg->hdr.peerid;
410 5e11c00c 2021-03-02 op
411 5e11c00c 2021-03-02 op if (!url_parse(imsg->data, &req->url, &e)) {
412 5e11c00c 2021-03-02 op fprintf(stderr, "failed to parse url: %s\n", e);
413 5e11c00c 2021-03-02 op close_with_err(req, e);
414 5e11c00c 2021-03-02 op return;
415 5e11c00c 2021-03-02 op }
416 5e11c00c 2021-03-02 op
417 5e11c00c 2021-03-02 op if ((req->fd = conn_towards(&req->url, &err)) == -1)
418 5e11c00c 2021-03-02 op goto err;
419 5e11c00c 2021-03-02 op if ((req->ctx = tls_client()) == NULL)
420 5e11c00c 2021-03-02 op goto err;
421 5e11c00c 2021-03-02 op if (tls_configure(req->ctx, tlsconf) == -1) {
422 5e11c00c 2021-03-02 op err = xasprintf("tls_configure: %s", tls_error(req->ctx));
423 5e11c00c 2021-03-02 op goto err;
424 5e11c00c 2021-03-02 op }
425 5e11c00c 2021-03-02 op if (tls_connect_socket(req->ctx, req->fd, req->url.host) == -1) {
426 5e11c00c 2021-03-02 op err = xasprintf("tls_connect_socket: %s", tls_error(req->ctx));
427 5e11c00c 2021-03-02 op goto err;
428 5e11c00c 2021-03-02 op }
429 5e11c00c 2021-03-02 op
430 5e11c00c 2021-03-02 op TAILQ_INSERT_HEAD(&reqhead, req, reqs);
431 723bee54 2021-03-09 op yield_w(req, do_handshake, &timeout_for_handshake);
432 5e11c00c 2021-03-02 op return;
433 5e11c00c 2021-03-02 op
434 5e11c00c 2021-03-02 op err:
435 5e11c00c 2021-03-02 op close_with_err(req, err);
436 5e11c00c 2021-03-02 op free(err);
437 5e11c00c 2021-03-02 op }
438 5e11c00c 2021-03-02 op
439 5e11c00c 2021-03-02 op static void
440 5e11c00c 2021-03-02 op handle_cert_status(struct imsg *imsg, size_t datalen)
441 5e11c00c 2021-03-02 op {
442 5e11c00c 2021-03-02 op struct req *req;
443 5e11c00c 2021-03-02 op int is_ok;
444 5e11c00c 2021-03-02 op
445 5e11c00c 2021-03-02 op req = req_by_id(imsg->hdr.peerid);
446 5e11c00c 2021-03-02 op
447 5e11c00c 2021-03-02 op if (datalen < sizeof(is_ok))
448 5e11c00c 2021-03-02 op die();
449 5e11c00c 2021-03-02 op memcpy(&is_ok, imsg->data, sizeof(is_ok));
450 5e11c00c 2021-03-02 op
451 5e11c00c 2021-03-02 op if (is_ok)
452 5e11c00c 2021-03-02 op yield_w(req, write_request, NULL);
453 5e11c00c 2021-03-02 op else
454 5e11c00c 2021-03-02 op close_conn(0, 0, req);
455 5e11c00c 2021-03-02 op }
456 5e11c00c 2021-03-02 op
457 5e11c00c 2021-03-02 op static void
458 0972d8b2 2021-03-02 op handle_proceed(struct imsg *imsg, size_t datalen)
459 0972d8b2 2021-03-02 op {
460 0972d8b2 2021-03-02 op struct req *req;
461 0972d8b2 2021-03-02 op
462 0972d8b2 2021-03-02 op req = req_by_id(imsg->hdr.peerid);
463 0972d8b2 2021-03-02 op yield_r(req, copy_body, NULL);
464 0972d8b2 2021-03-02 op }
465 0972d8b2 2021-03-02 op
466 0972d8b2 2021-03-02 op static void
467 5e11c00c 2021-03-02 op handle_stop(struct imsg *imsg, size_t datalen)
468 5e11c00c 2021-03-02 op {
469 5e11c00c 2021-03-02 op struct req *req;
470 5e11c00c 2021-03-02 op
471 5e11c00c 2021-03-02 op req = req_by_id(imsg->hdr.peerid);
472 5e11c00c 2021-03-02 op close_conn(0, 0, req);
473 5e11c00c 2021-03-02 op }
474 5e11c00c 2021-03-02 op
475 5e11c00c 2021-03-02 op static void
476 5e11c00c 2021-03-02 op handle_quit(struct imsg *imsg, size_t datalen)
477 5e11c00c 2021-03-02 op {
478 5e11c00c 2021-03-02 op event_loopbreak();
479 5e11c00c 2021-03-02 op }
480 5e11c00c 2021-03-02 op
481 5e11c00c 2021-03-02 op static void
482 5e11c00c 2021-03-02 op dispatch_imsg(int fd, short ev, void *d)
483 5e11c00c 2021-03-02 op {
484 5e11c00c 2021-03-02 op struct imsgbuf *ibuf = d;
485 5e11c00c 2021-03-02 op struct imsg imsg;
486 5e11c00c 2021-03-02 op ssize_t n;
487 5e11c00c 2021-03-02 op size_t datalen;
488 5e11c00c 2021-03-02 op
489 5e11c00c 2021-03-02 op if ((n = imsg_read(ibuf)) == -1) {
490 5e11c00c 2021-03-02 op if (errno == EAGAIN || errno == EWOULDBLOCK)
491 5e11c00c 2021-03-02 op return;
492 723bee54 2021-03-09 op _exit(1);
493 5e11c00c 2021-03-02 op }
494 5e11c00c 2021-03-02 op
495 5e11c00c 2021-03-02 op if (n == 0)
496 723bee54 2021-03-09 op _exit(1);
497 5e11c00c 2021-03-02 op
498 5e11c00c 2021-03-02 op for (;;) {
499 5e11c00c 2021-03-02 op if ((n = imsg_get(ibuf, &imsg)) == -1)
500 723bee54 2021-03-09 op _exit(1);
501 5e11c00c 2021-03-02 op if (n == 0)
502 5e11c00c 2021-03-02 op return;
503 5e11c00c 2021-03-02 op datalen = imsg.hdr.len - IMSG_HEADER_SIZE;
504 5e11c00c 2021-03-02 op handlers[imsg.hdr.type](&imsg, datalen);
505 5e11c00c 2021-03-02 op imsg_free(&imsg);
506 5e11c00c 2021-03-02 op }
507 5e11c00c 2021-03-02 op }
508 5e11c00c 2021-03-02 op
509 5e11c00c 2021-03-02 op int
510 5e11c00c 2021-03-02 op client_main(struct imsgbuf *b)
511 5e11c00c 2021-03-02 op {
512 5e11c00c 2021-03-02 op ibuf = b;
513 5e11c00c 2021-03-02 op
514 5e11c00c 2021-03-02 op TAILQ_INIT(&reqhead);
515 5e11c00c 2021-03-02 op
516 5e11c00c 2021-03-02 op if ((tlsconf = tls_config_new()) == NULL)
517 5e11c00c 2021-03-02 op die();
518 5e11c00c 2021-03-02 op tls_config_insecure_noverifycert(tlsconf);
519 5e11c00c 2021-03-02 op
520 5e11c00c 2021-03-02 op event_init();
521 5e11c00c 2021-03-02 op
522 5e11c00c 2021-03-02 op event_set(&imsgev, ibuf->fd, EV_READ | EV_PERSIST, dispatch_imsg, ibuf);
523 5e11c00c 2021-03-02 op event_add(&imsgev, NULL);
524 5e11c00c 2021-03-02 op
525 5e11c00c 2021-03-02 op event_dispatch();
526 5e11c00c 2021-03-02 op return 0;
527 5e11c00c 2021-03-02 op }