Blame


1 5e11c00c 2021-03-02 op #include "telescope.h"
2 5e11c00c 2021-03-02 op
3 5e11c00c 2021-03-02 op #include <sys/socket.h>
4 5e11c00c 2021-03-02 op
5 5e11c00c 2021-03-02 op #include <errno.h>
6 5e11c00c 2021-03-02 op #include <signal.h>
7 5e11c00c 2021-03-02 op #include <stdio.h>
8 5e11c00c 2021-03-02 op #include <stdlib.h>
9 5e11c00c 2021-03-02 op #include <string.h>
10 5e11c00c 2021-03-02 op #include <unistd.h>
11 5e11c00c 2021-03-02 op
12 35e1f40a 2021-03-14 op struct event netev, fsev;
13 5e11c00c 2021-03-02 op struct tabshead tabshead;
14 984245ce 2021-06-23 op struct proxylist proxies;
15 5e11c00c 2021-03-02 op
16 c07ac996 2021-03-12 op /* the first is also the fallback one */
17 c07ac996 2021-03-12 op static struct proto protos[] = {
18 31f1a758 2021-04-22 op { "gemini", load_gemini_url },
19 31f1a758 2021-04-22 op { "about", load_about_url },
20 4d3785b1 2021-03-09 op { NULL, NULL },
21 4d3785b1 2021-03-09 op };
22 4d3785b1 2021-03-09 op
23 35e1f40a 2021-03-14 op static struct imsgbuf *netibuf, *fsibuf;
24 5e11c00c 2021-03-02 op
25 2051e653 2021-03-13 op static void die(void) __attribute__((__noreturn__));
26 2051e653 2021-03-13 op static struct tab *tab_by_id(uint32_t);
27 2051e653 2021-03-13 op static void handle_imsg_err(struct imsg*, size_t);
28 2051e653 2021-03-13 op static void handle_imsg_check_cert(struct imsg*, size_t);
29 a2fd3805 2021-07-06 op static void handle_check_cert_user_choice(int, struct tab *);
30 a2fd3805 2021-07-06 op static void handle_maybe_save_new_cert(int, struct tab *);
31 2051e653 2021-03-13 op static void handle_imsg_got_code(struct imsg*, size_t);
32 2051e653 2021-03-13 op static void handle_imsg_got_meta(struct imsg*, size_t);
33 a2fd3805 2021-07-06 op static void handle_maybe_save_page(int, struct tab *);
34 de2a69bb 2021-05-17 op static void handle_save_page_path(const char *, unsigned int);
35 de2a69bb 2021-05-17 op static void handle_imsg_file_opened(struct imsg*, size_t);
36 2051e653 2021-03-13 op static void handle_imsg_buf(struct imsg*, size_t);
37 2051e653 2021-03-13 op static void handle_imsg_eof(struct imsg*, size_t);
38 740f578b 2021-03-15 op static void handle_imsg_bookmark_ok(struct imsg*, size_t);
39 3a227e9a 2021-03-18 op static void handle_imsg_save_cert_ok(struct imsg*, size_t);
40 288fd238 2021-04-25 op static void handle_imsg_update_cert_ok(struct imsg *, size_t);
41 1304bbdd 2021-03-15 op static void handle_dispatch_imsg(int, short, void*);
42 2051e653 2021-03-13 op static void load_page_from_str(struct tab*, const char*);
43 2051e653 2021-03-13 op static void do_load_url(struct tab*, const char*);
44 5e11c00c 2021-03-02 op
45 5e11c00c 2021-03-02 op static imsg_handlerfn *handlers[] = {
46 5e11c00c 2021-03-02 op [IMSG_ERR] = handle_imsg_err,
47 5e11c00c 2021-03-02 op [IMSG_CHECK_CERT] = handle_imsg_check_cert,
48 5e11c00c 2021-03-02 op [IMSG_GOT_CODE] = handle_imsg_got_code,
49 5e11c00c 2021-03-02 op [IMSG_GOT_META] = handle_imsg_got_meta,
50 5e11c00c 2021-03-02 op [IMSG_BUF] = handle_imsg_buf,
51 5e11c00c 2021-03-02 op [IMSG_EOF] = handle_imsg_eof,
52 740f578b 2021-03-15 op [IMSG_BOOKMARK_OK] = handle_imsg_bookmark_ok,
53 3a227e9a 2021-03-18 op [IMSG_SAVE_CERT_OK] = handle_imsg_save_cert_ok,
54 288fd238 2021-04-25 op [IMSG_UPDATE_CERT_OK] = handle_imsg_update_cert_ok,
55 de2a69bb 2021-05-17 op [IMSG_FILE_OPENED] = handle_imsg_file_opened,
56 5e11c00c 2021-03-02 op };
57 5e11c00c 2021-03-02 op
58 cbcc75fb 2021-03-17 op static struct ohash certs;
59 cbcc75fb 2021-03-17 op
60 5e11c00c 2021-03-02 op static void __attribute__((__noreturn__))
61 5e11c00c 2021-03-02 op die(void)
62 5e11c00c 2021-03-02 op {
63 5e11c00c 2021-03-02 op abort(); /* TODO */
64 5e11c00c 2021-03-02 op }
65 5e11c00c 2021-03-02 op
66 5e11c00c 2021-03-02 op static struct tab *
67 5e11c00c 2021-03-02 op tab_by_id(uint32_t id)
68 5e11c00c 2021-03-02 op {
69 5e11c00c 2021-03-02 op struct tab *t;
70 5e11c00c 2021-03-02 op
71 5e11c00c 2021-03-02 op TAILQ_FOREACH(t, &tabshead, tabs) {
72 5e11c00c 2021-03-02 op if (t->id == id)
73 5e11c00c 2021-03-02 op return t;
74 5e11c00c 2021-03-02 op }
75 5e11c00c 2021-03-02 op
76 5e11c00c 2021-03-02 op die();
77 5e11c00c 2021-03-02 op }
78 5e11c00c 2021-03-02 op
79 5e11c00c 2021-03-02 op static void
80 5e11c00c 2021-03-02 op handle_imsg_err(struct imsg *imsg, size_t datalen)
81 5e11c00c 2021-03-02 op {
82 3a9b9365 2021-03-09 op struct tab *tab;
83 3a9b9365 2021-03-09 op char *page;
84 3a9b9365 2021-03-09 op
85 3a9b9365 2021-03-09 op tab = tab_by_id(imsg->hdr.peerid);
86 3a9b9365 2021-03-09 op
87 3a9b9365 2021-03-09 op page = imsg->data;
88 3a9b9365 2021-03-09 op page[datalen-1] = '\0';
89 3a9b9365 2021-03-09 op
90 3a9b9365 2021-03-09 op if (asprintf(&page, "# Error loading %s\n\n> %s\n",
91 2051e653 2021-03-13 op tab->hist_cur->h, page) == -1)
92 3a9b9365 2021-03-09 op die();
93 3a9b9365 2021-03-09 op load_page_from_str(tab, page);
94 3a9b9365 2021-03-09 op free(page);
95 5e11c00c 2021-03-02 op }
96 5e11c00c 2021-03-02 op
97 5e11c00c 2021-03-02 op static void
98 5e11c00c 2021-03-02 op handle_imsg_check_cert(struct imsg *imsg, size_t datalen)
99 5e11c00c 2021-03-02 op {
100 984245ce 2021-06-23 op const char *hash, *host, *port;
101 cbcc75fb 2021-03-17 op int tofu_res;
102 cbcc75fb 2021-03-17 op struct tofu_entry *e;
103 cbcc75fb 2021-03-17 op struct tab *tab;
104 5e11c00c 2021-03-02 op
105 cbcc75fb 2021-03-17 op hash = imsg->data;
106 cbcc75fb 2021-03-17 op if (hash[datalen-1] != '\0')
107 cbcc75fb 2021-03-17 op abort();
108 cbcc75fb 2021-03-17 op
109 10346511 2021-03-17 op tab = tab_by_id(imsg->hdr.peerid);
110 cbcc75fb 2021-03-17 op
111 984245ce 2021-06-23 op if (tab->proxy != NULL) {
112 984245ce 2021-06-23 op host = tab->proxy->host;
113 984245ce 2021-06-23 op port = tab->proxy->port;
114 984245ce 2021-06-23 op } else {
115 984245ce 2021-06-23 op host = tab->uri.host;
116 984245ce 2021-06-23 op port = tab->uri.port;
117 984245ce 2021-06-23 op }
118 984245ce 2021-06-23 op
119 984245ce 2021-06-23 op if ((e = tofu_lookup(&certs, host, port)) == NULL) {
120 cbcc75fb 2021-03-17 op /* TODO: an update in libressl/libretls changed
121 cbcc75fb 2021-03-17 op * significantly. Find a better approach at storing
122 cbcc75fb 2021-03-17 op * the certs! */
123 cbcc75fb 2021-03-17 op if (datalen > sizeof(e->hash))
124 cbcc75fb 2021-03-17 op abort();
125 cbcc75fb 2021-03-17 op
126 cbcc75fb 2021-03-17 op tofu_res = 1; /* trust on first use */
127 cbcc75fb 2021-03-17 op if ((e = calloc(1, sizeof(*e))) == NULL)
128 cbcc75fb 2021-03-17 op abort();
129 984245ce 2021-06-23 op strlcpy(e->domain, host, sizeof(e->domain));
130 984245ce 2021-06-23 op if (*port != '\0' && strcmp(port, "1965")) {
131 eb4388ee 2021-04-25 op strlcat(e->domain, ":", sizeof(e->domain));
132 984245ce 2021-06-23 op strlcat(e->domain, port, sizeof(e->domain));
133 eb4388ee 2021-04-25 op }
134 cbcc75fb 2021-03-17 op strlcpy(e->hash, hash, sizeof(e->hash));
135 3768e50f 2021-04-25 op tofu_add(&certs, e);
136 3a227e9a 2021-03-18 op imsg_compose(fsibuf, IMSG_SAVE_CERT, tab->id, 0, -1,
137 3a227e9a 2021-03-18 op e, sizeof(*e));
138 3a227e9a 2021-03-18 op imsg_flush(fsibuf);
139 cbcc75fb 2021-03-17 op } else
140 cbcc75fb 2021-03-17 op tofu_res = !strcmp(hash, e->hash);
141 cbcc75fb 2021-03-17 op
142 5d1bac73 2021-03-25 op if (tofu_res) {
143 a2fd3805 2021-07-06 op if (e->verified == -1)
144 a2fd3805 2021-07-06 op tab->trust = TS_TEMP_TRUSTED;
145 a2fd3805 2021-07-06 op else if (e->verified == 1)
146 a2fd3805 2021-07-06 op tab->trust = TS_VERIFIED;
147 a2fd3805 2021-07-06 op else
148 a2fd3805 2021-07-06 op tab->trust = TS_TRUSTED;
149 a2fd3805 2021-07-06 op
150 5d1bac73 2021-03-25 op imsg_compose(netibuf, IMSG_CERT_STATUS, imsg->hdr.peerid, 0, -1,
151 5d1bac73 2021-03-25 op &tofu_res, sizeof(tofu_res));
152 5d1bac73 2021-03-25 op imsg_flush(netibuf);
153 5d1bac73 2021-03-25 op } else {
154 cbcc75fb 2021-03-17 op tab->trust = TS_UNTRUSTED;
155 cbcc75fb 2021-03-17 op load_page_from_str(tab, "# Certificate mismatch\n");
156 288fd238 2021-04-25 op if ((tab->cert = strdup(hash)) == NULL)
157 288fd238 2021-04-25 op die();
158 5d1bac73 2021-03-25 op ui_yornp("Certificate mismatch. Proceed?",
159 a2fd3805 2021-07-06 op handle_check_cert_user_choice, tab);
160 cbcc75fb 2021-03-17 op }
161 5d1bac73 2021-03-25 op }
162 5d1bac73 2021-03-25 op
163 5d1bac73 2021-03-25 op static void
164 a2fd3805 2021-07-06 op handle_check_cert_user_choice(int accept, struct tab *tab)
165 5d1bac73 2021-03-25 op {
166 a2fd3805 2021-07-06 op imsg_compose(netibuf, IMSG_CERT_STATUS, tab->id, 0, -1,
167 5d1bac73 2021-03-25 op &accept, sizeof(accept));
168 1b8a4bbf 2021-03-12 op imsg_flush(netibuf);
169 288fd238 2021-04-25 op
170 a2fd3805 2021-07-06 op if (accept) {
171 a2fd3805 2021-07-06 op /*
172 a2fd3805 2021-07-06 op * trust the certificate for this session only. If
173 a2fd3805 2021-07-06 op * the page results in a redirect while we're asking
174 a2fd3805 2021-07-06 op * the user to save, we'll end up with an invalid
175 a2fd3805 2021-07-06 op * tabid (one request == one tab id) and crash. It
176 a2fd3805 2021-07-06 op * also makes sense to save it for the current session
177 a2fd3805 2021-07-06 op * if the user accepted it.
178 a2fd3805 2021-07-06 op */
179 a2fd3805 2021-07-06 op tofu_temp_trust(&certs, tab->uri.host, tab->uri.port, tab->cert);
180 a2fd3805 2021-07-06 op
181 288fd238 2021-04-25 op ui_yornp("Save the new certificate?",
182 a2fd3805 2021-07-06 op handle_maybe_save_new_cert, tab);
183 a2fd3805 2021-07-06 op } else {
184 288fd238 2021-04-25 op free(tab->cert);
185 288fd238 2021-04-25 op tab->cert = NULL;
186 288fd238 2021-04-25 op }
187 5e11c00c 2021-03-02 op }
188 5e11c00c 2021-03-02 op
189 288fd238 2021-04-25 op static void
190 a2fd3805 2021-07-06 op handle_maybe_save_new_cert(int accept, struct tab *tab)
191 288fd238 2021-04-25 op {
192 288fd238 2021-04-25 op struct tofu_entry *e;
193 984245ce 2021-06-23 op const char *host, *port;
194 288fd238 2021-04-25 op
195 984245ce 2021-06-23 op if (tab->proxy != NULL) {
196 984245ce 2021-06-23 op host = tab->proxy->host;
197 984245ce 2021-06-23 op port = tab->proxy->port;
198 984245ce 2021-06-23 op } else {
199 984245ce 2021-06-23 op host = tab->uri.host;
200 984245ce 2021-06-23 op port = tab->uri.port;
201 984245ce 2021-06-23 op }
202 984245ce 2021-06-23 op
203 288fd238 2021-04-25 op if (!accept)
204 288fd238 2021-04-25 op goto end;
205 288fd238 2021-04-25 op
206 fe2262ad 2021-05-12 op if ((e = calloc(1, sizeof(*e))) == NULL)
207 288fd238 2021-04-25 op die();
208 288fd238 2021-04-25 op
209 984245ce 2021-06-23 op strlcpy(e->domain, host, sizeof(e->domain));
210 984245ce 2021-06-23 op if (*port != '\0' && strcmp(port, "1965")) {
211 288fd238 2021-04-25 op strlcat(e->domain, ":", sizeof(e->domain));
212 984245ce 2021-06-23 op strlcat(e->domain, port, sizeof(e->domain));
213 288fd238 2021-04-25 op }
214 288fd238 2021-04-25 op strlcpy(e->hash, tab->cert, sizeof(e->hash));
215 288fd238 2021-04-25 op imsg_compose(fsibuf, IMSG_UPDATE_CERT, 0, 0, -1, e, sizeof(*e));
216 288fd238 2021-04-25 op imsg_flush(fsibuf);
217 288fd238 2021-04-25 op
218 288fd238 2021-04-25 op tofu_update(&certs, e);
219 288fd238 2021-04-25 op
220 288fd238 2021-04-25 op tab->trust = TS_TRUSTED;
221 288fd238 2021-04-25 op
222 288fd238 2021-04-25 op end:
223 288fd238 2021-04-25 op free(tab->cert);
224 288fd238 2021-04-25 op tab->cert = NULL;
225 288fd238 2021-04-25 op }
226 288fd238 2021-04-25 op
227 5cd2ebb1 2021-03-11 op static inline int
228 5cd2ebb1 2021-03-11 op normalize_code(int n)
229 5cd2ebb1 2021-03-11 op {
230 5cd2ebb1 2021-03-11 op if (n < 20) {
231 5cd2ebb1 2021-03-11 op if (n == 10 || n == 11)
232 5cd2ebb1 2021-03-11 op return n;
233 5cd2ebb1 2021-03-11 op return 10;
234 5cd2ebb1 2021-03-11 op } else if (n < 30) {
235 5cd2ebb1 2021-03-11 op return 20;
236 5cd2ebb1 2021-03-11 op } else if (n < 40) {
237 5cd2ebb1 2021-03-11 op if (n == 30 || n == 31)
238 5cd2ebb1 2021-03-11 op return n;
239 5cd2ebb1 2021-03-11 op return 30;
240 5cd2ebb1 2021-03-11 op } else if (n < 50) {
241 5cd2ebb1 2021-03-11 op if (n <= 44)
242 5cd2ebb1 2021-03-11 op return n;
243 5cd2ebb1 2021-03-11 op return 40;
244 5cd2ebb1 2021-03-11 op } else if (n < 60) {
245 5cd2ebb1 2021-03-11 op if (n <= 53 || n == 59)
246 5cd2ebb1 2021-03-11 op return n;
247 5cd2ebb1 2021-03-11 op return 50;
248 5cd2ebb1 2021-03-11 op } else if (n < 70) {
249 5cd2ebb1 2021-03-11 op if (n <= 62)
250 5cd2ebb1 2021-03-11 op return n;
251 5cd2ebb1 2021-03-11 op return 60;
252 5cd2ebb1 2021-03-11 op } else
253 5cd2ebb1 2021-03-11 op return MALFORMED_RESPONSE;
254 5cd2ebb1 2021-03-11 op }
255 5cd2ebb1 2021-03-11 op
256 5e11c00c 2021-03-02 op static void
257 5e11c00c 2021-03-02 op handle_imsg_got_code(struct imsg *imsg, size_t datalen)
258 5e11c00c 2021-03-02 op {
259 0972d8b2 2021-03-02 op struct tab *tab;
260 5e11c00c 2021-03-02 op
261 0972d8b2 2021-03-02 op tab = tab_by_id(imsg->hdr.peerid);
262 0972d8b2 2021-03-02 op
263 0972d8b2 2021-03-02 op if (sizeof(tab->code) != datalen)
264 5e11c00c 2021-03-02 op die();
265 5e11c00c 2021-03-02 op
266 5cd2ebb1 2021-03-11 op memcpy(&tab->code, imsg->data, sizeof(tab->code));
267 5cd2ebb1 2021-03-11 op tab->code = normalize_code(tab->code);
268 5cd2ebb1 2021-03-11 op if (tab->code != 30 && tab->code != 31)
269 0972d8b2 2021-03-02 op tab->redirect_count = 0;
270 5e11c00c 2021-03-02 op }
271 5e11c00c 2021-03-02 op
272 5e11c00c 2021-03-02 op static void
273 5e11c00c 2021-03-02 op handle_imsg_got_meta(struct imsg *imsg, size_t datalen)
274 5e11c00c 2021-03-02 op {
275 0972d8b2 2021-03-02 op struct tab *tab;
276 0972d8b2 2021-03-02 op
277 0972d8b2 2021-03-02 op tab = tab_by_id(imsg->hdr.peerid);
278 0972d8b2 2021-03-02 op
279 0972d8b2 2021-03-02 op if (sizeof(tab->meta) <= datalen)
280 0972d8b2 2021-03-02 op die();
281 5cd2ebb1 2021-03-11 op
282 0972d8b2 2021-03-02 op memcpy(tab->meta, imsg->data, datalen);
283 0972d8b2 2021-03-02 op
284 5cd2ebb1 2021-03-11 op if (tab->code < 10) { /* internal errors */
285 5cd2ebb1 2021-03-11 op load_page_from_str(tab, err_pages[tab->code]);
286 5cd2ebb1 2021-03-11 op } else if (tab->code < 20) { /* 1x */
287 5cd2ebb1 2021-03-11 op load_page_from_str(tab, err_pages[tab->code]);
288 5cd2ebb1 2021-03-11 op ui_require_input(tab, tab->code == 11);
289 5cd2ebb1 2021-03-11 op } else if (tab->code == 20) {
290 c07ac996 2021-03-12 op if (setup_parser_for(tab)) {
291 1b8a4bbf 2021-03-12 op imsg_compose(netibuf, IMSG_PROCEED, tab->id, 0, -1, NULL, 0);
292 1b8a4bbf 2021-03-12 op imsg_flush(netibuf);
293 c07ac996 2021-03-12 op } else {
294 c07ac996 2021-03-12 op load_page_from_str(tab, err_pages[UNKNOWN_TYPE_OR_CSET]);
295 de2a69bb 2021-05-17 op ui_yornp("Can't display page, wanna save?",
296 a2fd3805 2021-07-06 op handle_maybe_save_page, tab);
297 c07ac996 2021-03-12 op }
298 5cd2ebb1 2021-03-11 op } else if (tab->code < 40) { /* 3x */
299 3a9b9365 2021-03-09 op tab->redirect_count++;
300 0972d8b2 2021-03-02 op
301 3a9b9365 2021-03-09 op /* TODO: make customizable? */
302 3a9b9365 2021-03-09 op if (tab->redirect_count > 5) {
303 3a9b9365 2021-03-09 op load_page_from_str(tab,
304 3a9b9365 2021-03-09 op err_pages[TOO_MUCH_REDIRECTS]);
305 5cd2ebb1 2021-03-11 op } else
306 2051e653 2021-03-13 op do_load_url(tab, tab->meta);
307 5cd2ebb1 2021-03-11 op } else { /* 4x, 5x & 6x */
308 5cd2ebb1 2021-03-11 op load_page_from_str(tab, err_pages[tab->code]);
309 3a9b9365 2021-03-09 op }
310 de2a69bb 2021-05-17 op }
311 de2a69bb 2021-05-17 op
312 de2a69bb 2021-05-17 op static void
313 a2fd3805 2021-07-06 op handle_maybe_save_page(int dosave, struct tab *tab)
314 de2a69bb 2021-05-17 op {
315 de2a69bb 2021-05-17 op if (dosave)
316 a2fd3805 2021-07-06 op ui_read("Save to path", handle_save_page_path, tab->id);
317 de2a69bb 2021-05-17 op else
318 a2fd3805 2021-07-06 op stop_tab(tab);
319 de2a69bb 2021-05-17 op }
320 de2a69bb 2021-05-17 op
321 de2a69bb 2021-05-17 op static void
322 de2a69bb 2021-05-17 op handle_save_page_path(const char *path, unsigned int tabid)
323 de2a69bb 2021-05-17 op {
324 de2a69bb 2021-05-17 op struct tab *tab;
325 de2a69bb 2021-05-17 op
326 de2a69bb 2021-05-17 op if (path == NULL) {
327 de2a69bb 2021-05-17 op stop_tab(tab_by_id(tabid));
328 de2a69bb 2021-05-17 op return;
329 de2a69bb 2021-05-17 op }
330 de2a69bb 2021-05-17 op
331 de2a69bb 2021-05-17 op tab = tab_by_id(tabid);
332 de2a69bb 2021-05-17 op tab->path = strdup(path);
333 de2a69bb 2021-05-17 op
334 de2a69bb 2021-05-17 op imsg_compose(fsibuf, IMSG_FILE_OPEN, tabid, 0, -1, path, strlen(path)+1);
335 de2a69bb 2021-05-17 op imsg_flush(fsibuf);
336 5e11c00c 2021-03-02 op }
337 5e11c00c 2021-03-02 op
338 5e11c00c 2021-03-02 op static void
339 de2a69bb 2021-05-17 op handle_imsg_file_opened(struct imsg *imsg, size_t datalen)
340 de2a69bb 2021-05-17 op {
341 de2a69bb 2021-05-17 op struct tab *tab;
342 de2a69bb 2021-05-17 op char *page;
343 de2a69bb 2021-05-17 op const char *e;
344 de2a69bb 2021-05-17 op int l;
345 de2a69bb 2021-05-17 op
346 de2a69bb 2021-05-17 op tab = tab_by_id(imsg->hdr.peerid);
347 de2a69bb 2021-05-17 op
348 de2a69bb 2021-05-17 op if (imsg->fd == -1) {
349 de2a69bb 2021-05-17 op stop_tab(tab);
350 de2a69bb 2021-05-17 op
351 de2a69bb 2021-05-17 op e = imsg->data;
352 de2a69bb 2021-05-17 op if (e[datalen-1] != '\0')
353 de2a69bb 2021-05-17 op die();
354 de2a69bb 2021-05-17 op l = asprintf(&page, "# Can't open file\n\n> %s: %s\n",
355 de2a69bb 2021-05-17 op tab->path, e);
356 de2a69bb 2021-05-17 op if (l == -1)
357 de2a69bb 2021-05-17 op die();
358 de2a69bb 2021-05-17 op load_page_from_str(tab, page);
359 de2a69bb 2021-05-17 op free(page);
360 de2a69bb 2021-05-17 op } else {
361 de2a69bb 2021-05-17 op tab->fd = imsg->fd;
362 de2a69bb 2021-05-17 op imsg_compose(netibuf, IMSG_PROCEED, tab->id, 0, -1, NULL, 0);
363 de2a69bb 2021-05-17 op imsg_flush(netibuf);
364 de2a69bb 2021-05-17 op }
365 de2a69bb 2021-05-17 op }
366 de2a69bb 2021-05-17 op
367 de2a69bb 2021-05-17 op static void
368 5e11c00c 2021-03-02 op handle_imsg_buf(struct imsg *imsg, size_t datalen)
369 5e11c00c 2021-03-02 op {
370 0972d8b2 2021-03-02 op struct tab *tab;
371 de2a69bb 2021-05-17 op int l;
372 0e1eff5b 2021-06-23 op char *page, buf[FMT_SCALED_STRSIZE] = {0};
373 5e11c00c 2021-03-02 op
374 0972d8b2 2021-03-02 op tab = tab_by_id(imsg->hdr.peerid);
375 5e11c00c 2021-03-02 op
376 de2a69bb 2021-05-17 op tab->bytes += datalen;
377 de2a69bb 2021-05-17 op if (tab->fd == -1) {
378 46f6e974 2021-05-17 op if (!tab->buffer.page.parse(&tab->buffer.page,
379 de2a69bb 2021-05-17 op imsg->data, datalen))
380 de2a69bb 2021-05-17 op die();
381 de2a69bb 2021-05-17 op } else {
382 de2a69bb 2021-05-17 op write(tab->fd, imsg->data, datalen);
383 0e1eff5b 2021-06-23 op fmt_scaled(tab->bytes, buf);
384 0e1eff5b 2021-06-23 op l = asprintf(&page, "Saving to \"%s\"... (%s)\n",
385 de2a69bb 2021-05-17 op tab->path,
386 0e1eff5b 2021-06-23 op buf);
387 de2a69bb 2021-05-17 op if (l == -1)
388 de2a69bb 2021-05-17 op die();
389 de2a69bb 2021-05-17 op load_page_from_str(tab, page);
390 de2a69bb 2021-05-17 op free(page);
391 de2a69bb 2021-05-17 op }
392 5e11c00c 2021-03-02 op
393 0972d8b2 2021-03-02 op ui_on_tab_refresh(tab);
394 5e11c00c 2021-03-02 op }
395 5e11c00c 2021-03-02 op
396 5e11c00c 2021-03-02 op static void
397 5e11c00c 2021-03-02 op handle_imsg_eof(struct imsg *imsg, size_t datalen)
398 5e11c00c 2021-03-02 op {
399 2ba66cea 2021-03-22 op struct tab *tab;
400 de2a69bb 2021-05-17 op int l;
401 0e1eff5b 2021-06-23 op char *page, buf[FMT_SCALED_STRSIZE] = {0};
402 a5c3e03d 2021-03-02 op
403 2ba66cea 2021-03-22 op tab = tab_by_id(imsg->hdr.peerid);
404 de2a69bb 2021-05-17 op
405 de2a69bb 2021-05-17 op if (tab->fd == -1) {
406 46f6e974 2021-05-17 op if (!tab->buffer.page.free(&tab->buffer.page))
407 de2a69bb 2021-05-17 op die();
408 de2a69bb 2021-05-17 op } else {
409 0e1eff5b 2021-06-23 op fmt_scaled(tab->bytes, buf);
410 0e1eff5b 2021-06-23 op l = asprintf(&page, "Saved to \"%s\" (%s)\n",
411 de2a69bb 2021-05-17 op tab->path,
412 0e1eff5b 2021-06-23 op buf);
413 de2a69bb 2021-05-17 op if (l == -1)
414 de2a69bb 2021-05-17 op die();
415 de2a69bb 2021-05-17 op load_page_from_str(tab, page);
416 de2a69bb 2021-05-17 op free(page);
417 a5c3e03d 2021-03-02 op
418 de2a69bb 2021-05-17 op close(tab->fd);
419 de2a69bb 2021-05-17 op tab->fd = -1;
420 de2a69bb 2021-05-17 op free(tab->path);
421 de2a69bb 2021-05-17 op tab->path = NULL;
422 de2a69bb 2021-05-17 op }
423 de2a69bb 2021-05-17 op
424 2ba66cea 2021-03-22 op ui_on_tab_refresh(tab);
425 2ba66cea 2021-03-22 op ui_on_tab_loaded(tab);
426 5e11c00c 2021-03-02 op }
427 5e11c00c 2021-03-02 op
428 5e11c00c 2021-03-02 op static void
429 740f578b 2021-03-15 op handle_imsg_bookmark_ok(struct imsg *imsg, size_t datalen)
430 740f578b 2021-03-15 op {
431 740f578b 2021-03-15 op int res;
432 740f578b 2021-03-15 op
433 740f578b 2021-03-15 op if (datalen != sizeof(res))
434 740f578b 2021-03-15 op die();
435 740f578b 2021-03-15 op
436 740f578b 2021-03-15 op memcpy(&res, imsg->data, sizeof(res));
437 740f578b 2021-03-15 op if (res == 0)
438 7f963c41 2021-06-20 op message("Added to bookmarks!");
439 740f578b 2021-03-15 op else
440 7f963c41 2021-06-20 op message("Failed to add to bookmarks: %s",
441 740f578b 2021-03-15 op strerror(res));
442 740f578b 2021-03-15 op }
443 740f578b 2021-03-15 op
444 740f578b 2021-03-15 op static void
445 3a227e9a 2021-03-18 op handle_imsg_save_cert_ok(struct imsg *imsg, size_t datalen)
446 3a227e9a 2021-03-18 op {
447 3a227e9a 2021-03-18 op int res;
448 3a227e9a 2021-03-18 op
449 3a227e9a 2021-03-18 op if (datalen != sizeof(res))
450 3a227e9a 2021-03-18 op die();
451 3a227e9a 2021-03-18 op memcpy(&res, imsg->data, datalen);
452 3a227e9a 2021-03-18 op if (res != 0)
453 7f963c41 2021-06-20 op message("Failed to save the cert for: %s",
454 3a227e9a 2021-03-18 op strerror(res));
455 288fd238 2021-04-25 op }
456 288fd238 2021-04-25 op
457 288fd238 2021-04-25 op static void
458 288fd238 2021-04-25 op handle_imsg_update_cert_ok(struct imsg *imsg, size_t datalen)
459 288fd238 2021-04-25 op {
460 288fd238 2021-04-25 op int res;
461 288fd238 2021-04-25 op
462 288fd238 2021-04-25 op if (datalen != sizeof(res))
463 288fd238 2021-04-25 op die();
464 288fd238 2021-04-25 op memcpy(&res, imsg->data, datalen);
465 288fd238 2021-04-25 op if (!res)
466 7f963c41 2021-06-20 op message("Failed to update the certificate");
467 3a227e9a 2021-03-18 op }
468 3a227e9a 2021-03-18 op
469 3a227e9a 2021-03-18 op static void
470 1304bbdd 2021-03-15 op handle_dispatch_imsg(int fd, short ev, void *d)
471 5e11c00c 2021-03-02 op {
472 35e1f40a 2021-03-14 op struct imsgbuf *ibuf = d;
473 1304bbdd 2021-03-15 op dispatch_imsg(ibuf, handlers, sizeof(handlers));
474 5e11c00c 2021-03-02 op }
475 5e11c00c 2021-03-02 op
476 0972d8b2 2021-03-02 op static void
477 0972d8b2 2021-03-02 op load_page_from_str(struct tab *tab, const char *page)
478 0972d8b2 2021-03-02 op {
479 00ccb53d 2021-07-01 op erase_buffer(&tab->buffer);
480 46f6e974 2021-05-17 op gemtext_initparser(&tab->buffer.page);
481 46f6e974 2021-05-17 op if (!tab->buffer.page.parse(&tab->buffer.page, page, strlen(page)))
482 0972d8b2 2021-03-02 op die();
483 46f6e974 2021-05-17 op if (!tab->buffer.page.free(&tab->buffer.page))
484 0972d8b2 2021-03-02 op die();
485 0972d8b2 2021-03-02 op ui_on_tab_refresh(tab);
486 8af5e5ed 2021-03-08 op ui_on_tab_loaded(tab);
487 0972d8b2 2021-03-02 op }
488 0972d8b2 2021-03-02 op
489 bcb0b073 2021-03-07 op void
490 4d3785b1 2021-03-09 op load_about_url(struct tab *tab, const char *url)
491 0972d8b2 2021-03-02 op {
492 10346511 2021-03-17 op tab->trust = TS_VERIFIED;
493 2051e653 2021-03-13 op
494 46f6e974 2021-05-17 op gemtext_initparser(&tab->buffer.page);
495 35e1f40a 2021-03-14 op
496 35e1f40a 2021-03-14 op imsg_compose(fsibuf, IMSG_GET, tab->id, 0, -1,
497 31f1a758 2021-04-22 op tab->hist_cur->h, strlen(tab->hist_cur->h)+1);
498 35e1f40a 2021-03-14 op imsg_flush(fsibuf);
499 4d3785b1 2021-03-09 op }
500 0972d8b2 2021-03-02 op
501 4d3785b1 2021-03-09 op void
502 4d3785b1 2021-03-09 op load_gemini_url(struct tab *tab, const char *url)
503 4d3785b1 2021-03-09 op {
504 984245ce 2021-06-23 op struct get_req req;
505 754622a2 2021-03-15 op
506 2eef3403 2021-04-22 op stop_tab(tab);
507 2eef3403 2021-04-22 op tab->id = tab_new_id();
508 2eef3403 2021-04-22 op
509 984245ce 2021-06-23 op memset(&req, 0, sizeof(req));
510 984245ce 2021-06-23 op strlcpy(req.host, tab->uri.host, sizeof(req.host));
511 984245ce 2021-06-23 op strlcpy(req.port, tab->uri.port, sizeof(req.host));
512 984245ce 2021-06-23 op
513 984245ce 2021-06-23 op strlcpy(req.req, tab->hist_cur->h, sizeof(req.req));
514 984245ce 2021-06-23 op strlcat(req.req, "\r\n", sizeof(req.req));
515 984245ce 2021-06-23 op
516 984245ce 2021-06-23 op req.proto = PROTO_GEMINI;
517 984245ce 2021-06-23 op
518 984245ce 2021-06-23 op imsg_compose(netibuf, IMSG_GET_RAW, tab->id, 0, -1,
519 984245ce 2021-06-23 op &req, sizeof(req));
520 1b8a4bbf 2021-03-12 op imsg_flush(netibuf);
521 0972d8b2 2021-03-02 op }
522 0972d8b2 2021-03-02 op
523 984245ce 2021-06-23 op void
524 984245ce 2021-06-23 op load_via_proxy(struct tab *tab, const char *url, struct proxy *p)
525 984245ce 2021-06-23 op {
526 984245ce 2021-06-23 op struct get_req req;
527 984245ce 2021-06-23 op
528 984245ce 2021-06-23 op stop_tab(tab);
529 984245ce 2021-06-23 op tab->id = tab_new_id();
530 984245ce 2021-06-23 op tab->proxy = p;
531 984245ce 2021-06-23 op
532 984245ce 2021-06-23 op memset(&req, 0, sizeof(req));
533 984245ce 2021-06-23 op strlcpy(req.host, p->host, sizeof(req.host));
534 984245ce 2021-06-23 op strlcpy(req.port, p->port, sizeof(req.host));
535 984245ce 2021-06-23 op
536 984245ce 2021-06-23 op strlcpy(req.req, tab->hist_cur->h, sizeof(req.req));
537 984245ce 2021-06-23 op strlcat(req.req, "\r\n", sizeof(req.req));
538 984245ce 2021-06-23 op
539 984245ce 2021-06-23 op req.proto = p->proto;
540 984245ce 2021-06-23 op
541 984245ce 2021-06-23 op imsg_compose(netibuf, IMSG_GET_RAW, tab->id, 0, -1,
542 984245ce 2021-06-23 op &req, sizeof(req));
543 984245ce 2021-06-23 op imsg_flush(netibuf);
544 984245ce 2021-06-23 op }
545 984245ce 2021-06-23 op
546 2051e653 2021-03-13 op static void
547 2051e653 2021-03-13 op do_load_url(struct tab *tab, const char *url)
548 4d3785b1 2021-03-09 op {
549 31f1a758 2021-04-22 op struct phos_uri uri;
550 31f1a758 2021-04-22 op struct proto *p;
551 984245ce 2021-06-23 op struct proxy *proxy;
552 31f1a758 2021-04-22 op char *t;
553 de2a69bb 2021-05-17 op
554 de2a69bb 2021-05-17 op if (tab->fd != -1) {
555 de2a69bb 2021-05-17 op close(tab->fd);
556 de2a69bb 2021-05-17 op tab->fd = -1;
557 de2a69bb 2021-05-17 op free(tab->path);
558 de2a69bb 2021-05-17 op tab->path = NULL;
559 de2a69bb 2021-05-17 op }
560 4d3785b1 2021-03-09 op
561 10346511 2021-03-17 op tab->trust = TS_UNKNOWN;
562 10346511 2021-03-17 op
563 31f1a758 2021-04-22 op memcpy(&uri, &tab->uri, sizeof(tab->uri));
564 31f1a758 2021-04-22 op if (!phos_resolve_uri_from_str(&uri, url, &tab->uri)) {
565 31f1a758 2021-04-22 op if (asprintf(&t, "#error loading %s\n>%s\n",
566 31f1a758 2021-04-22 op url, "Can't parse the URI") == -1)
567 31f1a758 2021-04-22 op die();
568 31f1a758 2021-04-22 op strlcpy(tab->hist_cur->h, url, sizeof(tab->hist_cur->h));
569 31f1a758 2021-04-22 op load_page_from_str(tab, t);
570 31f1a758 2021-04-22 op free(t);
571 31f1a758 2021-04-22 op return;
572 31f1a758 2021-04-22 op }
573 31f1a758 2021-04-22 op
574 31f1a758 2021-04-22 op phos_serialize_uri(&tab->uri, tab->hist_cur->h,
575 31f1a758 2021-04-22 op sizeof(tab->hist_cur->h));
576 31f1a758 2021-04-22 op
577 4d3785b1 2021-03-09 op for (p = protos; p->schema != NULL; ++p) {
578 ed383cf4 2021-04-22 op if (!strcmp(tab->uri.scheme, p->schema)) {
579 4d3785b1 2021-03-09 op p->loadfn(tab, url);
580 31f1a758 2021-04-22 op return;
581 4d3785b1 2021-03-09 op }
582 4d3785b1 2021-03-09 op }
583 4d3785b1 2021-03-09 op
584 984245ce 2021-06-23 op TAILQ_FOREACH(proxy, &proxies, proxies) {
585 984245ce 2021-06-23 op if (!strcmp(tab->uri.scheme, proxy->match_proto)) {
586 984245ce 2021-06-23 op load_via_proxy(tab, url, proxy);
587 984245ce 2021-06-23 op return;
588 984245ce 2021-06-23 op }
589 984245ce 2021-06-23 op }
590 984245ce 2021-06-23 op
591 4d3785b1 2021-03-09 op protos[0].loadfn(tab, url);
592 4d3785b1 2021-03-09 op }
593 4d3785b1 2021-03-09 op
594 9ad4627d 2021-03-10 op void
595 2051e653 2021-03-13 op load_url(struct tab *tab, const char *url)
596 2051e653 2021-03-13 op {
597 2051e653 2021-03-13 op if (tab->hist_cur != NULL)
598 2051e653 2021-03-13 op hist_clear_forward(&tab->hist, TAILQ_NEXT(tab->hist_cur, entries));
599 2051e653 2021-03-13 op
600 2051e653 2021-03-13 op if ((tab->hist_cur = calloc(1, sizeof(*tab->hist_cur))) == NULL) {
601 2051e653 2021-03-13 op event_loopbreak();
602 2051e653 2021-03-13 op return;
603 2051e653 2021-03-13 op }
604 984245ce 2021-06-23 op
605 984245ce 2021-06-23 op tab->proxy = NULL;
606 984245ce 2021-06-23 op
607 2051e653 2021-03-13 op hist_push(&tab->hist, tab->hist_cur);
608 2051e653 2021-03-13 op do_load_url(tab, url);
609 bca92a4c 2021-07-01 op erase_buffer(&tab->buffer);
610 2051e653 2021-03-13 op }
611 2051e653 2021-03-13 op
612 2051e653 2021-03-13 op int
613 2051e653 2021-03-13 op load_previous_page(struct tab *tab)
614 2051e653 2021-03-13 op {
615 2051e653 2021-03-13 op struct hist *h;
616 2051e653 2021-03-13 op
617 2051e653 2021-03-13 op if ((h = TAILQ_PREV(tab->hist_cur, mhisthead, entries)) == NULL)
618 2051e653 2021-03-13 op return 0;
619 2051e653 2021-03-13 op tab->hist_cur = h;
620 2051e653 2021-03-13 op do_load_url(tab, h->h);
621 2051e653 2021-03-13 op return 1;
622 2051e653 2021-03-13 op }
623 2051e653 2021-03-13 op
624 2051e653 2021-03-13 op int
625 2051e653 2021-03-13 op load_next_page(struct tab *tab)
626 2051e653 2021-03-13 op {
627 2051e653 2021-03-13 op struct hist *h;
628 2051e653 2021-03-13 op
629 2051e653 2021-03-13 op if ((h = TAILQ_NEXT(tab->hist_cur, entries)) == NULL)
630 2051e653 2021-03-13 op return 0;
631 2051e653 2021-03-13 op tab->hist_cur = h;
632 2051e653 2021-03-13 op do_load_url(tab, h->h);
633 2051e653 2021-03-13 op return 1;
634 2051e653 2021-03-13 op }
635 2051e653 2021-03-13 op
636 2051e653 2021-03-13 op void
637 9ad4627d 2021-03-10 op stop_tab(struct tab *tab)
638 9ad4627d 2021-03-10 op {
639 1b8a4bbf 2021-03-12 op imsg_compose(netibuf, IMSG_STOP, tab->id, 0, -1, NULL, 0);
640 1b8a4bbf 2021-03-12 op imsg_flush(netibuf);
641 de2a69bb 2021-05-17 op
642 de2a69bb 2021-05-17 op if (tab->fd != -1) {
643 de2a69bb 2021-05-17 op close(tab->fd);
644 de2a69bb 2021-05-17 op tab->fd = -1;
645 de2a69bb 2021-05-17 op free(tab->path);
646 de2a69bb 2021-05-17 op tab->path = NULL;
647 de2a69bb 2021-05-17 op load_page_from_str(tab, "Stopped.\n");
648 de2a69bb 2021-05-17 op }
649 9ad4627d 2021-03-10 op }
650 9ad4627d 2021-03-10 op
651 740f578b 2021-03-15 op void
652 740f578b 2021-03-15 op add_to_bookmarks(const char *str)
653 740f578b 2021-03-15 op {
654 740f578b 2021-03-15 op imsg_compose(fsibuf, IMSG_BOOKMARK_PAGE, 0, 0, -1, str, strlen(str)+1);
655 c7107cec 2021-04-01 op imsg_flush(fsibuf);
656 c7107cec 2021-04-01 op }
657 c7107cec 2021-04-01 op
658 c7107cec 2021-04-01 op void
659 c7107cec 2021-04-01 op save_session(void)
660 c7107cec 2021-04-01 op {
661 c7107cec 2021-04-01 op struct tab *tab;
662 c7107cec 2021-04-01 op
663 c7107cec 2021-04-01 op imsg_compose(fsibuf, IMSG_SESSION_START, 0, 0, -1, NULL, 0);
664 c7107cec 2021-04-01 op imsg_flush(fsibuf);
665 c7107cec 2021-04-01 op
666 c7107cec 2021-04-01 op TAILQ_FOREACH(tab, &tabshead, tabs) {
667 c7107cec 2021-04-01 op imsg_compose(fsibuf, IMSG_SESSION_TAB, 0, 0, -1,
668 c7107cec 2021-04-01 op tab->hist_cur->h, strlen(tab->hist_cur->h)+1);
669 c7107cec 2021-04-01 op imsg_flush(fsibuf);
670 c7107cec 2021-04-01 op }
671 c7107cec 2021-04-01 op
672 c7107cec 2021-04-01 op imsg_compose(fsibuf, IMSG_SESSION_END, 0, 0, -1, NULL, 0);
673 740f578b 2021-03-15 op imsg_flush(fsibuf);
674 740f578b 2021-03-15 op }
675 740f578b 2021-03-15 op
676 5e11c00c 2021-03-02 op int
677 6cd6a9e1 2021-03-20 op main(int argc, char * const *argv)
678 5e11c00c 2021-03-02 op {
679 35e1f40a 2021-03-14 op struct imsgbuf network_ibuf, fs_ibuf;
680 35e1f40a 2021-03-14 op int net_fds[2], fs_fds[2];
681 5e11c00c 2021-03-02 op
682 5e11c00c 2021-03-02 op signal(SIGCHLD, SIG_IGN);
683 a0e91173 2021-06-13 op signal(SIGPIPE, SIG_IGN);
684 5e11c00c 2021-03-02 op
685 3a227e9a 2021-03-18 op /* initialize part of the fs layer. Before starting the UI
686 3a227e9a 2021-03-18 op * and dropping the priviledges we need to read some stuff. */
687 3a227e9a 2021-03-18 op fs_init();
688 3a227e9a 2021-03-18 op
689 35e1f40a 2021-03-14 op if (socketpair(AF_UNIX, SOCK_STREAM, PF_UNSPEC, fs_fds) == -1)
690 5e11c00c 2021-03-02 op err(1, "socketpair");
691 5e11c00c 2021-03-02 op
692 5e11c00c 2021-03-02 op switch (fork()) {
693 5e11c00c 2021-03-02 op case -1:
694 5e11c00c 2021-03-02 op err(1, "fork");
695 5e11c00c 2021-03-02 op case 0:
696 5e11c00c 2021-03-02 op /* child */
697 37d429b0 2021-04-01 op setproctitle("fs");
698 35e1f40a 2021-03-14 op close(fs_fds[0]);
699 35e1f40a 2021-03-14 op imsg_init(&fs_ibuf, fs_fds[1]);
700 35e1f40a 2021-03-14 op exit(fs_main(&fs_ibuf));
701 35e1f40a 2021-03-14 op default:
702 35e1f40a 2021-03-14 op close(fs_fds[1]);
703 35e1f40a 2021-03-14 op imsg_init(&fs_ibuf, fs_fds[0]);
704 35e1f40a 2021-03-14 op fsibuf = &fs_ibuf;
705 5e11c00c 2021-03-02 op }
706 b1d4d01b 2021-03-14 op
707 35e1f40a 2021-03-14 op if (socketpair(AF_UNIX, SOCK_STREAM, PF_UNSPEC, net_fds) == -1)
708 35e1f40a 2021-03-14 op err(1, "socketpair");
709 5e11c00c 2021-03-02 op
710 35e1f40a 2021-03-14 op switch (fork()) {
711 35e1f40a 2021-03-14 op case -1:
712 35e1f40a 2021-03-14 op err(1, "fork");
713 35e1f40a 2021-03-14 op case 0:
714 35e1f40a 2021-03-14 op /* child */
715 37d429b0 2021-04-01 op setproctitle("client");
716 35e1f40a 2021-03-14 op close(net_fds[0]);
717 35e1f40a 2021-03-14 op close(fs_fds[0]);
718 35e1f40a 2021-03-14 op imsg_init(&network_ibuf, net_fds[1]);
719 35e1f40a 2021-03-14 op exit(client_main(&network_ibuf));
720 35e1f40a 2021-03-14 op default:
721 35e1f40a 2021-03-14 op close(net_fds[1]);
722 35e1f40a 2021-03-14 op imsg_init(&network_ibuf, net_fds[0]);
723 35e1f40a 2021-03-14 op netibuf = &network_ibuf;
724 35e1f40a 2021-03-14 op }
725 5e11c00c 2021-03-02 op
726 37d429b0 2021-04-01 op setproctitle("ui");
727 35e1f40a 2021-03-14 op
728 3768e50f 2021-04-25 op tofu_init(&certs, 5, offsetof(struct tofu_entry, domain));
729 3a227e9a 2021-03-18 op load_certs(&certs);
730 cbcc75fb 2021-03-17 op
731 5e11c00c 2021-03-02 op TAILQ_INIT(&tabshead);
732 984245ce 2021-06-23 op TAILQ_INIT(&proxies);
733 5e11c00c 2021-03-02 op
734 5e11c00c 2021-03-02 op event_init();
735 5e11c00c 2021-03-02 op
736 4ad01575 2021-06-13 op event_set(&netev, netibuf->fd, EV_READ | EV_PERSIST,
737 4ad01575 2021-06-13 op handle_dispatch_imsg, netibuf);
738 35e1f40a 2021-03-14 op event_add(&netev, NULL);
739 5e11c00c 2021-03-02 op
740 4ad01575 2021-06-13 op event_set(&fsev, fsibuf->fd, EV_READ | EV_PERSIST,
741 4ad01575 2021-06-13 op handle_dispatch_imsg, fsibuf);
742 35e1f40a 2021-03-14 op event_add(&fsev, NULL);
743 35e1f40a 2021-03-14 op
744 941b3761 2021-03-18 op if (ui_init(argc, argv)) {
745 941b3761 2021-03-18 op sandbox_ui_process();
746 941b3761 2021-03-18 op event_dispatch();
747 941b3761 2021-03-18 op ui_end();
748 941b3761 2021-03-18 op }
749 5e11c00c 2021-03-02 op
750 1b8a4bbf 2021-03-12 op imsg_compose(netibuf, IMSG_QUIT, 0, 0, -1, NULL, 0);
751 1b8a4bbf 2021-03-12 op imsg_flush(netibuf);
752 5e11c00c 2021-03-02 op
753 35e1f40a 2021-03-14 op imsg_compose(fsibuf, IMSG_QUIT, 0, 0, -1, NULL, 0);
754 35e1f40a 2021-03-14 op imsg_flush(fsibuf);
755 35e1f40a 2021-03-14 op
756 5e11c00c 2021-03-02 op return 0;
757 5e11c00c 2021-03-02 op }