Blame


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