Blame


1 4540067e 2021-07-18 op /*
2 4540067e 2021-07-18 op * Copyright (c) 2021 Omar Polo <op@omarpolo.com>
3 4540067e 2021-07-18 op *
4 4540067e 2021-07-18 op * Permission to use, copy, modify, and distribute this software for any
5 4540067e 2021-07-18 op * purpose with or without fee is hereby granted, provided that the above
6 4540067e 2021-07-18 op * copyright notice and this permission notice appear in all copies.
7 4540067e 2021-07-18 op *
8 4540067e 2021-07-18 op * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 4540067e 2021-07-18 op * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 4540067e 2021-07-18 op * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 4540067e 2021-07-18 op * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 4540067e 2021-07-18 op * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 4540067e 2021-07-18 op * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 4540067e 2021-07-18 op * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 4540067e 2021-07-18 op */
16 1f496e7b 2021-07-21 op
17 1f496e7b 2021-07-21 op #include "compat.h"
18 4540067e 2021-07-18 op
19 5e11c00c 2021-03-02 op #include <sys/socket.h>
20 5e11c00c 2021-03-02 op
21 5e11c00c 2021-03-02 op #include <errno.h>
22 dc761924 2021-07-15 op #include <getopt.h>
23 d2544989 2021-07-08 op #include <limits.h>
24 5e11c00c 2021-03-02 op #include <signal.h>
25 5e11c00c 2021-03-02 op #include <stdio.h>
26 5e11c00c 2021-03-02 op #include <stdlib.h>
27 5e11c00c 2021-03-02 op #include <string.h>
28 5e11c00c 2021-03-02 op #include <unistd.h>
29 5e11c00c 2021-03-02 op
30 e659558c 2021-07-13 op #include "defaults.h"
31 4bc446b9 2021-07-21 op #include "minibuffer.h"
32 395b9f4e 2021-07-12 op #include "parser.h"
33 395b9f4e 2021-07-12 op #include "telescope.h"
34 d1a0f2a3 2021-07-12 op #include "ui.h"
35 dc761924 2021-07-15 op
36 dc761924 2021-07-15 op static struct option longopts[] = {
37 1853ee50 2021-07-15 op {"colors", no_argument, NULL, 'c'},
38 dc761924 2021-07-15 op {"help", no_argument, NULL, 'h'},
39 dc761924 2021-07-15 op {"version", no_argument, NULL, 'v'},
40 dc761924 2021-07-15 op {NULL, 0, NULL, 0},
41 dc761924 2021-07-15 op };
42 dc761924 2021-07-15 op
43 1853ee50 2021-07-15 op static const char *opts = "Cc:hnT:v";
44 395b9f4e 2021-07-12 op
45 bc10f6a5 2021-07-12 op static struct imsgev *iev_fs, *iev_net;
46 bc10f6a5 2021-07-12 op
47 f6a429eb 2021-07-10 op struct tabshead tabshead = TAILQ_HEAD_INITIALIZER(tabshead);
48 f6a429eb 2021-07-10 op struct proxylist proxies = TAILQ_HEAD_INITIALIZER(proxies);
49 6cc5fcfe 2021-07-08 op
50 6cc5fcfe 2021-07-08 op enum telescope_process {
51 6cc5fcfe 2021-07-08 op PROC_UI,
52 6cc5fcfe 2021-07-08 op PROC_FS,
53 6cc5fcfe 2021-07-08 op PROC_NET,
54 6cc5fcfe 2021-07-08 op };
55 5e11c00c 2021-03-02 op
56 c07ac996 2021-03-12 op static struct proto protos[] = {
57 31f1a758 2021-04-22 op { "about", load_about_url },
58 5fb52fc0 2021-07-25 op { "finger", load_finger_url },
59 d07b8b87 2021-07-24 op { "gemini", load_gemini_url },
60 4d3785b1 2021-03-09 op { NULL, NULL },
61 4d3785b1 2021-03-09 op };
62 4d3785b1 2021-03-09 op
63 9a8a7402 2021-07-18 op
64 9a8a7402 2021-07-18 op #define CANNOT_FETCH 0
65 9a8a7402 2021-07-18 op #define TOO_MUCH_REDIRECTS 1
66 9a8a7402 2021-07-18 op #define MALFORMED_RESPONSE 2
67 9a8a7402 2021-07-18 op #define UNKNOWN_TYPE_OR_CSET 3
68 9a8a7402 2021-07-18 op #define UNKNOWN_PROTOCOL 4
69 9a8a7402 2021-07-18 op
70 9a8a7402 2021-07-18 op /* XXX: keep in sync with telescope.c:/^normalize_code/ */
71 9a8a7402 2021-07-18 op const char *err_pages[70] = {
72 9a8a7402 2021-07-18 op [CANNOT_FETCH] = "# Couldn't load the page\n",
73 9a8a7402 2021-07-18 op [TOO_MUCH_REDIRECTS] = "# Too much redirects\n",
74 9a8a7402 2021-07-18 op [MALFORMED_RESPONSE] = "# Got a malformed response\n",
75 9a8a7402 2021-07-18 op [UNKNOWN_TYPE_OR_CSET] = "# Unsupported type or charset\n",
76 9a8a7402 2021-07-18 op [UNKNOWN_PROTOCOL] = "# Unknown protocol\n",
77 9a8a7402 2021-07-18 op
78 9a8a7402 2021-07-18 op [10] = "# Input required\n",
79 9a8a7402 2021-07-18 op [11] = "# Input required\n",
80 9a8a7402 2021-07-18 op [40] = "# Temporary failure\n",
81 9a8a7402 2021-07-18 op [41] = "# Server unavailable\n",
82 9a8a7402 2021-07-18 op [42] = "# CGI error\n",
83 9a8a7402 2021-07-18 op [43] = "# Proxy error\n",
84 9a8a7402 2021-07-18 op [44] = "# Slow down\n",
85 9a8a7402 2021-07-18 op [50] = "# Permanent failure\n",
86 9a8a7402 2021-07-18 op [51] = "# Not found\n",
87 9a8a7402 2021-07-18 op [52] = "# Gone\n",
88 9a8a7402 2021-07-18 op [53] = "# Proxy request refused\n",
89 9a8a7402 2021-07-18 op [59] = "# Bad request\n",
90 9a8a7402 2021-07-18 op [60] = "# Client certificate required\n",
91 9a8a7402 2021-07-18 op [61] = "# Certificate not authorised\n",
92 9a8a7402 2021-07-18 op [62] = "# Certificate not valid\n"
93 9a8a7402 2021-07-18 op };
94 9a8a7402 2021-07-18 op
95 2051e653 2021-03-13 op static void die(void) __attribute__((__noreturn__));
96 2051e653 2021-03-13 op static struct tab *tab_by_id(uint32_t);
97 2051e653 2021-03-13 op static void handle_imsg_err(struct imsg*, size_t);
98 2051e653 2021-03-13 op static void handle_imsg_check_cert(struct imsg*, size_t);
99 a2fd3805 2021-07-06 op static void handle_check_cert_user_choice(int, struct tab *);
100 a2fd3805 2021-07-06 op static void handle_maybe_save_new_cert(int, struct tab *);
101 2051e653 2021-03-13 op static void handle_imsg_got_code(struct imsg*, size_t);
102 2051e653 2021-03-13 op static void handle_imsg_got_meta(struct imsg*, size_t);
103 a2fd3805 2021-07-06 op static void handle_maybe_save_page(int, struct tab *);
104 d1353324 2021-07-13 op static void handle_save_page_path(const char *, struct tab *);
105 de2a69bb 2021-05-17 op static void handle_imsg_file_opened(struct imsg*, size_t);
106 2051e653 2021-03-13 op static void handle_imsg_buf(struct imsg*, size_t);
107 2051e653 2021-03-13 op static void handle_imsg_eof(struct imsg*, size_t);
108 740f578b 2021-03-15 op static void handle_imsg_bookmark_ok(struct imsg*, size_t);
109 3a227e9a 2021-03-18 op static void handle_imsg_save_cert_ok(struct imsg*, size_t);
110 288fd238 2021-04-25 op static void handle_imsg_update_cert_ok(struct imsg *, size_t);
111 1304bbdd 2021-03-15 op static void handle_dispatch_imsg(int, short, void*);
112 2051e653 2021-03-13 op static void load_page_from_str(struct tab*, const char*);
113 bd3a3a95 2021-07-20 op static int do_load_url(struct tab*, const char *, const char *);
114 2f524b17 2021-07-17 op static void parse_session_line(char *, const char **, uint32_t *);
115 87e3e801 2021-07-17 op static void load_last_session(void);
116 6cc5fcfe 2021-07-08 op static pid_t start_child(enum telescope_process, const char *, int);
117 bc10f6a5 2021-07-12 op static int ui_send_net(int, uint32_t, const void *, uint16_t);
118 bc10f6a5 2021-07-12 op static int ui_send_fs(int, uint32_t, const void *, uint16_t);
119 5e11c00c 2021-03-02 op
120 5e11c00c 2021-03-02 op static imsg_handlerfn *handlers[] = {
121 5e11c00c 2021-03-02 op [IMSG_ERR] = handle_imsg_err,
122 5e11c00c 2021-03-02 op [IMSG_CHECK_CERT] = handle_imsg_check_cert,
123 5e11c00c 2021-03-02 op [IMSG_GOT_CODE] = handle_imsg_got_code,
124 5e11c00c 2021-03-02 op [IMSG_GOT_META] = handle_imsg_got_meta,
125 5e11c00c 2021-03-02 op [IMSG_BUF] = handle_imsg_buf,
126 5e11c00c 2021-03-02 op [IMSG_EOF] = handle_imsg_eof,
127 740f578b 2021-03-15 op [IMSG_BOOKMARK_OK] = handle_imsg_bookmark_ok,
128 3a227e9a 2021-03-18 op [IMSG_SAVE_CERT_OK] = handle_imsg_save_cert_ok,
129 288fd238 2021-04-25 op [IMSG_UPDATE_CERT_OK] = handle_imsg_update_cert_ok,
130 de2a69bb 2021-05-17 op [IMSG_FILE_OPENED] = handle_imsg_file_opened,
131 5e11c00c 2021-03-02 op };
132 5e11c00c 2021-03-02 op
133 cbcc75fb 2021-03-17 op static struct ohash certs;
134 cbcc75fb 2021-03-17 op
135 5e11c00c 2021-03-02 op static void __attribute__((__noreturn__))
136 5e11c00c 2021-03-02 op die(void)
137 5e11c00c 2021-03-02 op {
138 5e11c00c 2021-03-02 op abort(); /* TODO */
139 5e11c00c 2021-03-02 op }
140 5e11c00c 2021-03-02 op
141 5e11c00c 2021-03-02 op static struct tab *
142 f6243012 2021-07-19 op tab_by_id(uint32_t id)
143 5e11c00c 2021-03-02 op {
144 5e11c00c 2021-03-02 op struct tab *t;
145 5e11c00c 2021-03-02 op
146 5e11c00c 2021-03-02 op TAILQ_FOREACH(t, &tabshead, tabs) {
147 5e11c00c 2021-03-02 op if (t->id == id)
148 5e11c00c 2021-03-02 op return t;
149 5e11c00c 2021-03-02 op }
150 5e11c00c 2021-03-02 op
151 5d6c2088 2021-07-19 op return NULL;
152 5e11c00c 2021-03-02 op }
153 5e11c00c 2021-03-02 op
154 5e11c00c 2021-03-02 op static void
155 5e11c00c 2021-03-02 op handle_imsg_err(struct imsg *imsg, size_t datalen)
156 5e11c00c 2021-03-02 op {
157 3a9b9365 2021-03-09 op struct tab *tab;
158 3a9b9365 2021-03-09 op char *page;
159 3a9b9365 2021-03-09 op
160 f6243012 2021-07-19 op if ((tab = tab_by_id(imsg->hdr.peerid)) == NULL)
161 f6243012 2021-07-19 op return;
162 3a9b9365 2021-03-09 op
163 3a9b9365 2021-03-09 op page = imsg->data;
164 3a9b9365 2021-03-09 op page[datalen-1] = '\0';
165 3a9b9365 2021-03-09 op
166 3a9b9365 2021-03-09 op if (asprintf(&page, "# Error loading %s\n\n> %s\n",
167 2051e653 2021-03-13 op tab->hist_cur->h, page) == -1)
168 3a9b9365 2021-03-09 op die();
169 3a9b9365 2021-03-09 op load_page_from_str(tab, page);
170 3a9b9365 2021-03-09 op free(page);
171 5e11c00c 2021-03-02 op }
172 5e11c00c 2021-03-02 op
173 5e11c00c 2021-03-02 op static void
174 5e11c00c 2021-03-02 op handle_imsg_check_cert(struct imsg *imsg, size_t datalen)
175 5e11c00c 2021-03-02 op {
176 984245ce 2021-06-23 op const char *hash, *host, *port;
177 cbcc75fb 2021-03-17 op int tofu_res;
178 cbcc75fb 2021-03-17 op struct tofu_entry *e;
179 cbcc75fb 2021-03-17 op struct tab *tab;
180 5e11c00c 2021-03-02 op
181 cbcc75fb 2021-03-17 op hash = imsg->data;
182 cbcc75fb 2021-03-17 op if (hash[datalen-1] != '\0')
183 cbcc75fb 2021-03-17 op abort();
184 cbcc75fb 2021-03-17 op
185 f6243012 2021-07-19 op if ((tab = tab_by_id(imsg->hdr.peerid)) == NULL)
186 f6243012 2021-07-19 op return;
187 cbcc75fb 2021-03-17 op
188 984245ce 2021-06-23 op if (tab->proxy != NULL) {
189 984245ce 2021-06-23 op host = tab->proxy->host;
190 984245ce 2021-06-23 op port = tab->proxy->port;
191 984245ce 2021-06-23 op } else {
192 984245ce 2021-06-23 op host = tab->uri.host;
193 984245ce 2021-06-23 op port = tab->uri.port;
194 984245ce 2021-06-23 op }
195 984245ce 2021-06-23 op
196 984245ce 2021-06-23 op if ((e = tofu_lookup(&certs, host, port)) == NULL) {
197 cbcc75fb 2021-03-17 op /* TODO: an update in libressl/libretls changed
198 cbcc75fb 2021-03-17 op * significantly. Find a better approach at storing
199 cbcc75fb 2021-03-17 op * the certs! */
200 cbcc75fb 2021-03-17 op if (datalen > sizeof(e->hash))
201 cbcc75fb 2021-03-17 op abort();
202 cbcc75fb 2021-03-17 op
203 cbcc75fb 2021-03-17 op tofu_res = 1; /* trust on first use */
204 cbcc75fb 2021-03-17 op if ((e = calloc(1, sizeof(*e))) == NULL)
205 cbcc75fb 2021-03-17 op abort();
206 984245ce 2021-06-23 op strlcpy(e->domain, host, sizeof(e->domain));
207 984245ce 2021-06-23 op if (*port != '\0' && strcmp(port, "1965")) {
208 eb4388ee 2021-04-25 op strlcat(e->domain, ":", sizeof(e->domain));
209 984245ce 2021-06-23 op strlcat(e->domain, port, sizeof(e->domain));
210 eb4388ee 2021-04-25 op }
211 cbcc75fb 2021-03-17 op strlcpy(e->hash, hash, sizeof(e->hash));
212 3768e50f 2021-04-25 op tofu_add(&certs, e);
213 bc10f6a5 2021-07-12 op ui_send_fs(IMSG_SAVE_CERT, tab->id, e, sizeof(*e));
214 cbcc75fb 2021-03-17 op } else
215 cbcc75fb 2021-03-17 op tofu_res = !strcmp(hash, e->hash);
216 cbcc75fb 2021-03-17 op
217 5d1bac73 2021-03-25 op if (tofu_res) {
218 a2fd3805 2021-07-06 op if (e->verified == -1)
219 a2fd3805 2021-07-06 op tab->trust = TS_TEMP_TRUSTED;
220 a2fd3805 2021-07-06 op else if (e->verified == 1)
221 a2fd3805 2021-07-06 op tab->trust = TS_VERIFIED;
222 a2fd3805 2021-07-06 op else
223 a2fd3805 2021-07-06 op tab->trust = TS_TRUSTED;
224 a2fd3805 2021-07-06 op
225 bc10f6a5 2021-07-12 op ui_send_net(IMSG_CERT_STATUS, imsg->hdr.peerid,
226 5d1bac73 2021-03-25 op &tofu_res, sizeof(tofu_res));
227 5d1bac73 2021-03-25 op } else {
228 cbcc75fb 2021-03-17 op tab->trust = TS_UNTRUSTED;
229 cbcc75fb 2021-03-17 op load_page_from_str(tab, "# Certificate mismatch\n");
230 288fd238 2021-04-25 op if ((tab->cert = strdup(hash)) == NULL)
231 288fd238 2021-04-25 op die();
232 5d1bac73 2021-03-25 op ui_yornp("Certificate mismatch. Proceed?",
233 a2fd3805 2021-07-06 op handle_check_cert_user_choice, tab);
234 cbcc75fb 2021-03-17 op }
235 5d1bac73 2021-03-25 op }
236 5d1bac73 2021-03-25 op
237 5d1bac73 2021-03-25 op static void
238 a2fd3805 2021-07-06 op handle_check_cert_user_choice(int accept, struct tab *tab)
239 5d1bac73 2021-03-25 op {
240 bc10f6a5 2021-07-12 op ui_send_net(IMSG_CERT_STATUS, tab->id, &accept,
241 bc10f6a5 2021-07-12 op sizeof(accept));
242 288fd238 2021-04-25 op
243 a2fd3805 2021-07-06 op if (accept) {
244 a2fd3805 2021-07-06 op /*
245 a2fd3805 2021-07-06 op * trust the certificate for this session only. If
246 a2fd3805 2021-07-06 op * the page results in a redirect while we're asking
247 a2fd3805 2021-07-06 op * the user to save, we'll end up with an invalid
248 a2fd3805 2021-07-06 op * tabid (one request == one tab id) and crash. It
249 a2fd3805 2021-07-06 op * also makes sense to save it for the current session
250 a2fd3805 2021-07-06 op * if the user accepted it.
251 a2fd3805 2021-07-06 op */
252 a2fd3805 2021-07-06 op tofu_temp_trust(&certs, tab->uri.host, tab->uri.port, tab->cert);
253 a2fd3805 2021-07-06 op
254 288fd238 2021-04-25 op ui_yornp("Save the new certificate?",
255 a2fd3805 2021-07-06 op handle_maybe_save_new_cert, tab);
256 a2fd3805 2021-07-06 op } else {
257 288fd238 2021-04-25 op free(tab->cert);
258 288fd238 2021-04-25 op tab->cert = NULL;
259 288fd238 2021-04-25 op }
260 5e11c00c 2021-03-02 op }
261 5e11c00c 2021-03-02 op
262 288fd238 2021-04-25 op static void
263 a2fd3805 2021-07-06 op handle_maybe_save_new_cert(int accept, struct tab *tab)
264 288fd238 2021-04-25 op {
265 288fd238 2021-04-25 op struct tofu_entry *e;
266 984245ce 2021-06-23 op const char *host, *port;
267 288fd238 2021-04-25 op
268 984245ce 2021-06-23 op if (tab->proxy != NULL) {
269 984245ce 2021-06-23 op host = tab->proxy->host;
270 984245ce 2021-06-23 op port = tab->proxy->port;
271 984245ce 2021-06-23 op } else {
272 984245ce 2021-06-23 op host = tab->uri.host;
273 984245ce 2021-06-23 op port = tab->uri.port;
274 984245ce 2021-06-23 op }
275 984245ce 2021-06-23 op
276 288fd238 2021-04-25 op if (!accept)
277 288fd238 2021-04-25 op goto end;
278 288fd238 2021-04-25 op
279 fe2262ad 2021-05-12 op if ((e = calloc(1, sizeof(*e))) == NULL)
280 288fd238 2021-04-25 op die();
281 288fd238 2021-04-25 op
282 984245ce 2021-06-23 op strlcpy(e->domain, host, sizeof(e->domain));
283 984245ce 2021-06-23 op if (*port != '\0' && strcmp(port, "1965")) {
284 288fd238 2021-04-25 op strlcat(e->domain, ":", sizeof(e->domain));
285 984245ce 2021-06-23 op strlcat(e->domain, port, sizeof(e->domain));
286 288fd238 2021-04-25 op }
287 288fd238 2021-04-25 op strlcpy(e->hash, tab->cert, sizeof(e->hash));
288 bc10f6a5 2021-07-12 op ui_send_fs(IMSG_UPDATE_CERT, 0, e, sizeof(*e));
289 288fd238 2021-04-25 op
290 288fd238 2021-04-25 op tofu_update(&certs, e);
291 288fd238 2021-04-25 op
292 288fd238 2021-04-25 op tab->trust = TS_TRUSTED;
293 288fd238 2021-04-25 op
294 288fd238 2021-04-25 op end:
295 288fd238 2021-04-25 op free(tab->cert);
296 288fd238 2021-04-25 op tab->cert = NULL;
297 288fd238 2021-04-25 op }
298 288fd238 2021-04-25 op
299 5cd2ebb1 2021-03-11 op static inline int
300 5cd2ebb1 2021-03-11 op normalize_code(int n)
301 5cd2ebb1 2021-03-11 op {
302 5cd2ebb1 2021-03-11 op if (n < 20) {
303 5cd2ebb1 2021-03-11 op if (n == 10 || n == 11)
304 5cd2ebb1 2021-03-11 op return n;
305 5cd2ebb1 2021-03-11 op return 10;
306 5cd2ebb1 2021-03-11 op } else if (n < 30) {
307 5cd2ebb1 2021-03-11 op return 20;
308 5cd2ebb1 2021-03-11 op } else if (n < 40) {
309 5cd2ebb1 2021-03-11 op if (n == 30 || n == 31)
310 5cd2ebb1 2021-03-11 op return n;
311 5cd2ebb1 2021-03-11 op return 30;
312 5cd2ebb1 2021-03-11 op } else if (n < 50) {
313 5cd2ebb1 2021-03-11 op if (n <= 44)
314 5cd2ebb1 2021-03-11 op return n;
315 5cd2ebb1 2021-03-11 op return 40;
316 5cd2ebb1 2021-03-11 op } else if (n < 60) {
317 5cd2ebb1 2021-03-11 op if (n <= 53 || n == 59)
318 5cd2ebb1 2021-03-11 op return n;
319 5cd2ebb1 2021-03-11 op return 50;
320 5cd2ebb1 2021-03-11 op } else if (n < 70) {
321 5cd2ebb1 2021-03-11 op if (n <= 62)
322 5cd2ebb1 2021-03-11 op return n;
323 5cd2ebb1 2021-03-11 op return 60;
324 5cd2ebb1 2021-03-11 op } else
325 5cd2ebb1 2021-03-11 op return MALFORMED_RESPONSE;
326 5cd2ebb1 2021-03-11 op }
327 5cd2ebb1 2021-03-11 op
328 5e11c00c 2021-03-02 op static void
329 5e11c00c 2021-03-02 op handle_imsg_got_code(struct imsg *imsg, size_t datalen)
330 5e11c00c 2021-03-02 op {
331 0972d8b2 2021-03-02 op struct tab *tab;
332 5e11c00c 2021-03-02 op
333 f6243012 2021-07-19 op if ((tab = tab_by_id(imsg->hdr.peerid)) == NULL)
334 f6243012 2021-07-19 op return;
335 0972d8b2 2021-03-02 op
336 0972d8b2 2021-03-02 op if (sizeof(tab->code) != datalen)
337 5e11c00c 2021-03-02 op die();
338 5e11c00c 2021-03-02 op
339 5cd2ebb1 2021-03-11 op memcpy(&tab->code, imsg->data, sizeof(tab->code));
340 5cd2ebb1 2021-03-11 op tab->code = normalize_code(tab->code);
341 5cd2ebb1 2021-03-11 op if (tab->code != 30 && tab->code != 31)
342 0972d8b2 2021-03-02 op tab->redirect_count = 0;
343 5e11c00c 2021-03-02 op }
344 5e11c00c 2021-03-02 op
345 5e11c00c 2021-03-02 op static void
346 5e11c00c 2021-03-02 op handle_imsg_got_meta(struct imsg *imsg, size_t datalen)
347 5e11c00c 2021-03-02 op {
348 0972d8b2 2021-03-02 op struct tab *tab;
349 0972d8b2 2021-03-02 op
350 f6243012 2021-07-19 op if ((tab = tab_by_id(imsg->hdr.peerid)) == NULL)
351 f6243012 2021-07-19 op return;
352 0972d8b2 2021-03-02 op
353 0972d8b2 2021-03-02 op if (sizeof(tab->meta) <= datalen)
354 0972d8b2 2021-03-02 op die();
355 5cd2ebb1 2021-03-11 op
356 0972d8b2 2021-03-02 op memcpy(tab->meta, imsg->data, datalen);
357 0972d8b2 2021-03-02 op
358 5cd2ebb1 2021-03-11 op if (tab->code < 10) { /* internal errors */
359 5cd2ebb1 2021-03-11 op load_page_from_str(tab, err_pages[tab->code]);
360 5cd2ebb1 2021-03-11 op } else if (tab->code < 20) { /* 1x */
361 5cd2ebb1 2021-03-11 op load_page_from_str(tab, err_pages[tab->code]);
362 5cd2ebb1 2021-03-11 op ui_require_input(tab, tab->code == 11);
363 5cd2ebb1 2021-03-11 op } else if (tab->code == 20) {
364 c07ac996 2021-03-12 op if (setup_parser_for(tab)) {
365 bc10f6a5 2021-07-12 op ui_send_net(IMSG_PROCEED, tab->id, NULL, 0);
366 c07ac996 2021-03-12 op } else {
367 c07ac996 2021-03-12 op load_page_from_str(tab, err_pages[UNKNOWN_TYPE_OR_CSET]);
368 de2a69bb 2021-05-17 op ui_yornp("Can't display page, wanna save?",
369 a2fd3805 2021-07-06 op handle_maybe_save_page, tab);
370 c07ac996 2021-03-12 op }
371 5cd2ebb1 2021-03-11 op } else if (tab->code < 40) { /* 3x */
372 3a9b9365 2021-03-09 op tab->redirect_count++;
373 0972d8b2 2021-03-02 op
374 3a9b9365 2021-03-09 op /* TODO: make customizable? */
375 3a9b9365 2021-03-09 op if (tab->redirect_count > 5) {
376 3a9b9365 2021-03-09 op load_page_from_str(tab,
377 3a9b9365 2021-03-09 op err_pages[TOO_MUCH_REDIRECTS]);
378 5cd2ebb1 2021-03-11 op } else
379 bd3a3a95 2021-07-20 op do_load_url(tab, tab->meta, NULL);
380 5cd2ebb1 2021-03-11 op } else { /* 4x, 5x & 6x */
381 5cd2ebb1 2021-03-11 op load_page_from_str(tab, err_pages[tab->code]);
382 3a9b9365 2021-03-09 op }
383 de2a69bb 2021-05-17 op }
384 de2a69bb 2021-05-17 op
385 de2a69bb 2021-05-17 op static void
386 a2fd3805 2021-07-06 op handle_maybe_save_page(int dosave, struct tab *tab)
387 de2a69bb 2021-05-17 op {
388 de2a69bb 2021-05-17 op if (dosave)
389 d1353324 2021-07-13 op ui_read("Save to path", handle_save_page_path, tab);
390 de2a69bb 2021-05-17 op else
391 a2fd3805 2021-07-06 op stop_tab(tab);
392 de2a69bb 2021-05-17 op }
393 de2a69bb 2021-05-17 op
394 de2a69bb 2021-05-17 op static void
395 d1353324 2021-07-13 op handle_save_page_path(const char *path, struct tab *tab)
396 d1353324 2021-07-13 op {
397 de2a69bb 2021-05-17 op if (path == NULL) {
398 d1353324 2021-07-13 op stop_tab(tab);
399 de2a69bb 2021-05-17 op return;
400 de2a69bb 2021-05-17 op }
401 de2a69bb 2021-05-17 op
402 de2a69bb 2021-05-17 op tab->path = strdup(path);
403 de2a69bb 2021-05-17 op
404 d1353324 2021-07-13 op ui_send_fs(IMSG_FILE_OPEN, tab->id, path, strlen(path)+1);
405 5e11c00c 2021-03-02 op }
406 5e11c00c 2021-03-02 op
407 5e11c00c 2021-03-02 op static void
408 de2a69bb 2021-05-17 op handle_imsg_file_opened(struct imsg *imsg, size_t datalen)
409 de2a69bb 2021-05-17 op {
410 de2a69bb 2021-05-17 op struct tab *tab;
411 de2a69bb 2021-05-17 op char *page;
412 de2a69bb 2021-05-17 op const char *e;
413 de2a69bb 2021-05-17 op int l;
414 de2a69bb 2021-05-17 op
415 f6243012 2021-07-19 op if ((tab = tab_by_id(imsg->hdr.peerid)) == NULL) {
416 f6243012 2021-07-19 op if (imsg->fd != -1)
417 f6243012 2021-07-19 op close(imsg->fd);
418 f6243012 2021-07-19 op return;
419 f6243012 2021-07-19 op }
420 de2a69bb 2021-05-17 op
421 de2a69bb 2021-05-17 op if (imsg->fd == -1) {
422 de2a69bb 2021-05-17 op stop_tab(tab);
423 de2a69bb 2021-05-17 op
424 de2a69bb 2021-05-17 op e = imsg->data;
425 de2a69bb 2021-05-17 op if (e[datalen-1] != '\0')
426 de2a69bb 2021-05-17 op die();
427 de2a69bb 2021-05-17 op l = asprintf(&page, "# Can't open file\n\n> %s: %s\n",
428 de2a69bb 2021-05-17 op tab->path, e);
429 de2a69bb 2021-05-17 op if (l == -1)
430 de2a69bb 2021-05-17 op die();
431 de2a69bb 2021-05-17 op load_page_from_str(tab, page);
432 de2a69bb 2021-05-17 op free(page);
433 de2a69bb 2021-05-17 op } else {
434 de2a69bb 2021-05-17 op tab->fd = imsg->fd;
435 bc10f6a5 2021-07-12 op ui_send_net(IMSG_PROCEED, tab->id, NULL, 0);
436 de2a69bb 2021-05-17 op }
437 de2a69bb 2021-05-17 op }
438 de2a69bb 2021-05-17 op
439 de2a69bb 2021-05-17 op static void
440 5e11c00c 2021-03-02 op handle_imsg_buf(struct imsg *imsg, size_t datalen)
441 5e11c00c 2021-03-02 op {
442 0972d8b2 2021-03-02 op struct tab *tab;
443 de2a69bb 2021-05-17 op int l;
444 0e1eff5b 2021-06-23 op char *page, buf[FMT_SCALED_STRSIZE] = {0};
445 5e11c00c 2021-03-02 op
446 f6243012 2021-07-19 op if ((tab = tab_by_id(imsg->hdr.peerid)) == NULL)
447 5d6c2088 2021-07-19 op return;
448 5e11c00c 2021-03-02 op
449 de2a69bb 2021-05-17 op tab->bytes += datalen;
450 de2a69bb 2021-05-17 op if (tab->fd == -1) {
451 46f6e974 2021-05-17 op if (!tab->buffer.page.parse(&tab->buffer.page,
452 de2a69bb 2021-05-17 op imsg->data, datalen))
453 de2a69bb 2021-05-17 op die();
454 de2a69bb 2021-05-17 op } else {
455 de2a69bb 2021-05-17 op write(tab->fd, imsg->data, datalen);
456 0e1eff5b 2021-06-23 op fmt_scaled(tab->bytes, buf);
457 0e1eff5b 2021-06-23 op l = asprintf(&page, "Saving to \"%s\"... (%s)\n",
458 de2a69bb 2021-05-17 op tab->path,
459 0e1eff5b 2021-06-23 op buf);
460 de2a69bb 2021-05-17 op if (l == -1)
461 de2a69bb 2021-05-17 op die();
462 de2a69bb 2021-05-17 op load_page_from_str(tab, page);
463 de2a69bb 2021-05-17 op free(page);
464 de2a69bb 2021-05-17 op }
465 5e11c00c 2021-03-02 op
466 0972d8b2 2021-03-02 op ui_on_tab_refresh(tab);
467 5e11c00c 2021-03-02 op }
468 5e11c00c 2021-03-02 op
469 5e11c00c 2021-03-02 op static void
470 5e11c00c 2021-03-02 op handle_imsg_eof(struct imsg *imsg, size_t datalen)
471 5e11c00c 2021-03-02 op {
472 2ba66cea 2021-03-22 op struct tab *tab;
473 de2a69bb 2021-05-17 op int l;
474 0e1eff5b 2021-06-23 op char *page, buf[FMT_SCALED_STRSIZE] = {0};
475 a5c3e03d 2021-03-02 op
476 f6243012 2021-07-19 op if ((tab = tab_by_id(imsg->hdr.peerid)) == NULL)
477 f6243012 2021-07-19 op return;
478 de2a69bb 2021-05-17 op
479 de2a69bb 2021-05-17 op if (tab->fd == -1) {
480 46f6e974 2021-05-17 op if (!tab->buffer.page.free(&tab->buffer.page))
481 de2a69bb 2021-05-17 op die();
482 de2a69bb 2021-05-17 op } else {
483 0e1eff5b 2021-06-23 op fmt_scaled(tab->bytes, buf);
484 0e1eff5b 2021-06-23 op l = asprintf(&page, "Saved to \"%s\" (%s)\n",
485 de2a69bb 2021-05-17 op tab->path,
486 0e1eff5b 2021-06-23 op buf);
487 de2a69bb 2021-05-17 op if (l == -1)
488 de2a69bb 2021-05-17 op die();
489 de2a69bb 2021-05-17 op load_page_from_str(tab, page);
490 de2a69bb 2021-05-17 op free(page);
491 a5c3e03d 2021-03-02 op
492 de2a69bb 2021-05-17 op close(tab->fd);
493 de2a69bb 2021-05-17 op tab->fd = -1;
494 de2a69bb 2021-05-17 op free(tab->path);
495 de2a69bb 2021-05-17 op tab->path = NULL;
496 de2a69bb 2021-05-17 op }
497 de2a69bb 2021-05-17 op
498 2ba66cea 2021-03-22 op ui_on_tab_refresh(tab);
499 2ba66cea 2021-03-22 op ui_on_tab_loaded(tab);
500 5e11c00c 2021-03-02 op }
501 5e11c00c 2021-03-02 op
502 5e11c00c 2021-03-02 op static void
503 740f578b 2021-03-15 op handle_imsg_bookmark_ok(struct imsg *imsg, size_t datalen)
504 740f578b 2021-03-15 op {
505 740f578b 2021-03-15 op int res;
506 740f578b 2021-03-15 op
507 740f578b 2021-03-15 op if (datalen != sizeof(res))
508 740f578b 2021-03-15 op die();
509 740f578b 2021-03-15 op
510 740f578b 2021-03-15 op memcpy(&res, imsg->data, sizeof(res));
511 740f578b 2021-03-15 op if (res == 0)
512 7f963c41 2021-06-20 op message("Added to bookmarks!");
513 740f578b 2021-03-15 op else
514 7f963c41 2021-06-20 op message("Failed to add to bookmarks: %s",
515 740f578b 2021-03-15 op strerror(res));
516 740f578b 2021-03-15 op }
517 740f578b 2021-03-15 op
518 740f578b 2021-03-15 op static void
519 3a227e9a 2021-03-18 op handle_imsg_save_cert_ok(struct imsg *imsg, size_t datalen)
520 3a227e9a 2021-03-18 op {
521 3a227e9a 2021-03-18 op int res;
522 3a227e9a 2021-03-18 op
523 3a227e9a 2021-03-18 op if (datalen != sizeof(res))
524 3a227e9a 2021-03-18 op die();
525 3a227e9a 2021-03-18 op memcpy(&res, imsg->data, datalen);
526 3a227e9a 2021-03-18 op if (res != 0)
527 7f963c41 2021-06-20 op message("Failed to save the cert for: %s",
528 3a227e9a 2021-03-18 op strerror(res));
529 288fd238 2021-04-25 op }
530 288fd238 2021-04-25 op
531 288fd238 2021-04-25 op static void
532 288fd238 2021-04-25 op handle_imsg_update_cert_ok(struct imsg *imsg, size_t datalen)
533 288fd238 2021-04-25 op {
534 288fd238 2021-04-25 op int res;
535 288fd238 2021-04-25 op
536 288fd238 2021-04-25 op if (datalen != sizeof(res))
537 288fd238 2021-04-25 op die();
538 288fd238 2021-04-25 op memcpy(&res, imsg->data, datalen);
539 288fd238 2021-04-25 op if (!res)
540 7f963c41 2021-06-20 op message("Failed to update the certificate");
541 3a227e9a 2021-03-18 op }
542 3a227e9a 2021-03-18 op
543 3a227e9a 2021-03-18 op static void
544 1304bbdd 2021-03-15 op handle_dispatch_imsg(int fd, short ev, void *d)
545 5e11c00c 2021-03-02 op {
546 bc10f6a5 2021-07-12 op struct imsgev *iev = d;
547 ea080950 2021-07-20 op
548 ea080950 2021-07-20 op if (dispatch_imsg(iev, ev, handlers, sizeof(handlers)) == -1)
549 ea080950 2021-07-20 op err(1, "connection closed");
550 5e11c00c 2021-03-02 op }
551 5e11c00c 2021-03-02 op
552 0972d8b2 2021-03-02 op static void
553 0972d8b2 2021-03-02 op load_page_from_str(struct tab *tab, const char *page)
554 0972d8b2 2021-03-02 op {
555 00ccb53d 2021-07-01 op erase_buffer(&tab->buffer);
556 46f6e974 2021-05-17 op gemtext_initparser(&tab->buffer.page);
557 46f6e974 2021-05-17 op if (!tab->buffer.page.parse(&tab->buffer.page, page, strlen(page)))
558 0972d8b2 2021-03-02 op die();
559 46f6e974 2021-05-17 op if (!tab->buffer.page.free(&tab->buffer.page))
560 0972d8b2 2021-03-02 op die();
561 0972d8b2 2021-03-02 op ui_on_tab_refresh(tab);
562 8af5e5ed 2021-03-08 op ui_on_tab_loaded(tab);
563 0972d8b2 2021-03-02 op }
564 0972d8b2 2021-03-02 op
565 bcb0b073 2021-03-07 op void
566 4d3785b1 2021-03-09 op load_about_url(struct tab *tab, const char *url)
567 0972d8b2 2021-03-02 op {
568 10346511 2021-03-17 op tab->trust = TS_VERIFIED;
569 2051e653 2021-03-13 op
570 46f6e974 2021-05-17 op gemtext_initparser(&tab->buffer.page);
571 35e1f40a 2021-03-14 op
572 bc10f6a5 2021-07-12 op ui_send_fs(IMSG_GET, tab->id,
573 31f1a758 2021-04-22 op tab->hist_cur->h, strlen(tab->hist_cur->h)+1);
574 4d3785b1 2021-03-09 op }
575 0972d8b2 2021-03-02 op
576 4d3785b1 2021-03-09 op void
577 5fb52fc0 2021-07-25 op load_finger_url(struct tab *tab, const char *url)
578 5fb52fc0 2021-07-25 op {
579 5fb52fc0 2021-07-25 op struct get_req req;
580 5fb52fc0 2021-07-25 op size_t len;
581 5fb52fc0 2021-07-25 op char *at;
582 5fb52fc0 2021-07-25 op
583 5fb52fc0 2021-07-25 op stop_tab(tab);
584 5fb52fc0 2021-07-25 op tab->id = tab_new_id();
585 5fb52fc0 2021-07-25 op
586 5fb52fc0 2021-07-25 op memset(&req, 0, sizeof(req));
587 5fb52fc0 2021-07-25 op if (*tab->uri.port != '\0')
588 5fb52fc0 2021-07-25 op strlcpy(req.port, tab->uri.port, sizeof(req.port));
589 5fb52fc0 2021-07-25 op else
590 5fb52fc0 2021-07-25 op strlcpy(req.port, "79", sizeof(req.port));
591 5fb52fc0 2021-07-25 op
592 5fb52fc0 2021-07-25 op /*
593 5fb52fc0 2021-07-25 op * Sometimes the finger url have the user as path component
594 5fb52fc0 2021-07-25 op * (e.g. finger://thelambdalab.xyz/plugd), sometimes as
595 5fb52fc0 2021-07-25 op * userinfo (e.g. finger://cobradile@finger.farm).
596 5fb52fc0 2021-07-25 op */
597 5fb52fc0 2021-07-25 op if ((at = strchr(tab->uri.host, '@')) != NULL) {
598 5fb52fc0 2021-07-25 op len = at - tab->uri.host;
599 5fb52fc0 2021-07-25 op memcpy(req.req, tab->uri.host, len);
600 5fb52fc0 2021-07-25 op
601 5fb52fc0 2021-07-25 op if (len >= sizeof(req.req))
602 5fb52fc0 2021-07-25 op die();
603 5fb52fc0 2021-07-25 op req.req[len] = '\0';
604 5fb52fc0 2021-07-25 op
605 5fb52fc0 2021-07-25 op strlcpy(req.host, at+1, sizeof(req.host));
606 5fb52fc0 2021-07-25 op } else {
607 5fb52fc0 2021-07-25 op strlcpy(req.host, tab->uri.host, sizeof(req.host));
608 5fb52fc0 2021-07-25 op
609 5fb52fc0 2021-07-25 op /* +1 to skip the initial `/' */
610 5fb52fc0 2021-07-25 op strlcpy(req.req, tab->uri.path+1, sizeof(req.req));
611 5fb52fc0 2021-07-25 op }
612 5fb52fc0 2021-07-25 op
613 5fb52fc0 2021-07-25 op strlcat(req.req, "\r\n", sizeof(req.req));
614 5fb52fc0 2021-07-25 op
615 5fb52fc0 2021-07-25 op req.proto = PROTO_FINGER;
616 5fb52fc0 2021-07-25 op
617 5fb52fc0 2021-07-25 op ui_send_net(IMSG_GET_RAW, tab->id, &req, sizeof(req));
618 5fb52fc0 2021-07-25 op
619 5fb52fc0 2021-07-25 op textplain_initparser(&tab->buffer.page);
620 5fb52fc0 2021-07-25 op }
621 5fb52fc0 2021-07-25 op
622 5fb52fc0 2021-07-25 op void
623 4d3785b1 2021-03-09 op load_gemini_url(struct tab *tab, const char *url)
624 4d3785b1 2021-03-09 op {
625 984245ce 2021-06-23 op struct get_req req;
626 754622a2 2021-03-15 op
627 2eef3403 2021-04-22 op stop_tab(tab);
628 2eef3403 2021-04-22 op tab->id = tab_new_id();
629 2eef3403 2021-04-22 op
630 984245ce 2021-06-23 op memset(&req, 0, sizeof(req));
631 984245ce 2021-06-23 op strlcpy(req.host, tab->uri.host, sizeof(req.host));
632 984245ce 2021-06-23 op strlcpy(req.port, tab->uri.port, sizeof(req.host));
633 984245ce 2021-06-23 op
634 984245ce 2021-06-23 op strlcpy(req.req, tab->hist_cur->h, sizeof(req.req));
635 984245ce 2021-06-23 op strlcat(req.req, "\r\n", sizeof(req.req));
636 984245ce 2021-06-23 op
637 984245ce 2021-06-23 op req.proto = PROTO_GEMINI;
638 984245ce 2021-06-23 op
639 bc10f6a5 2021-07-12 op ui_send_net(IMSG_GET_RAW, tab->id,
640 984245ce 2021-06-23 op &req, sizeof(req));
641 0972d8b2 2021-03-02 op }
642 0972d8b2 2021-03-02 op
643 984245ce 2021-06-23 op void
644 984245ce 2021-06-23 op load_via_proxy(struct tab *tab, const char *url, struct proxy *p)
645 984245ce 2021-06-23 op {
646 984245ce 2021-06-23 op struct get_req req;
647 984245ce 2021-06-23 op
648 984245ce 2021-06-23 op stop_tab(tab);
649 984245ce 2021-06-23 op tab->id = tab_new_id();
650 984245ce 2021-06-23 op tab->proxy = p;
651 984245ce 2021-06-23 op
652 984245ce 2021-06-23 op memset(&req, 0, sizeof(req));
653 984245ce 2021-06-23 op strlcpy(req.host, p->host, sizeof(req.host));
654 984245ce 2021-06-23 op strlcpy(req.port, p->port, sizeof(req.host));
655 984245ce 2021-06-23 op
656 984245ce 2021-06-23 op strlcpy(req.req, tab->hist_cur->h, sizeof(req.req));
657 984245ce 2021-06-23 op strlcat(req.req, "\r\n", sizeof(req.req));
658 984245ce 2021-06-23 op
659 984245ce 2021-06-23 op req.proto = p->proto;
660 984245ce 2021-06-23 op
661 bc10f6a5 2021-07-12 op ui_send_net(IMSG_GET_RAW, tab->id,
662 984245ce 2021-06-23 op &req, sizeof(req));
663 984245ce 2021-06-23 op }
664 984245ce 2021-06-23 op
665 adea4eec 2021-07-16 op /*
666 adea4eec 2021-07-16 op * Effectively load the given url in the given tab. Return 1 when
667 adea4eec 2021-07-16 op * loading the page asynchronously, and thus when an erase_buffer can
668 adea4eec 2021-07-16 op * be done right after this function return, or 0 when loading the
669 adea4eec 2021-07-16 op * page synchronously. In this last case, erase_buffer *MUST* be
670 adea4eec 2021-07-16 op * called by the handling function (such as load_page_from_str).
671 adea4eec 2021-07-16 op */
672 adea4eec 2021-07-16 op static int
673 bd3a3a95 2021-07-20 op do_load_url(struct tab *tab, const char *url, const char *base)
674 4d3785b1 2021-03-09 op {
675 31f1a758 2021-04-22 op struct phos_uri uri;
676 31f1a758 2021-04-22 op struct proto *p;
677 984245ce 2021-06-23 op struct proxy *proxy;
678 31f1a758 2021-04-22 op char *t;
679 7943bb81 2021-07-10 op
680 7943bb81 2021-07-10 op tab->proxy = NULL;
681 de2a69bb 2021-05-17 op
682 de2a69bb 2021-05-17 op if (tab->fd != -1) {
683 de2a69bb 2021-05-17 op close(tab->fd);
684 de2a69bb 2021-05-17 op tab->fd = -1;
685 de2a69bb 2021-05-17 op free(tab->path);
686 de2a69bb 2021-05-17 op tab->path = NULL;
687 de2a69bb 2021-05-17 op }
688 4d3785b1 2021-03-09 op
689 10346511 2021-03-17 op tab->trust = TS_UNKNOWN;
690 10346511 2021-03-17 op
691 bd3a3a95 2021-07-20 op if (base == NULL)
692 bd3a3a95 2021-07-20 op memcpy(&uri, &tab->uri, sizeof(tab->uri));
693 bd3a3a95 2021-07-20 op else
694 bd3a3a95 2021-07-20 op phos_parse_absolute_uri(base, &uri);
695 bd3a3a95 2021-07-20 op
696 31f1a758 2021-04-22 op if (!phos_resolve_uri_from_str(&uri, url, &tab->uri)) {
697 31f1a758 2021-04-22 op if (asprintf(&t, "#error loading %s\n>%s\n",
698 31f1a758 2021-04-22 op url, "Can't parse the URI") == -1)
699 31f1a758 2021-04-22 op die();
700 31f1a758 2021-04-22 op strlcpy(tab->hist_cur->h, url, sizeof(tab->hist_cur->h));
701 31f1a758 2021-04-22 op load_page_from_str(tab, t);
702 31f1a758 2021-04-22 op free(t);
703 adea4eec 2021-07-16 op return 0;
704 31f1a758 2021-04-22 op }
705 31f1a758 2021-04-22 op
706 31f1a758 2021-04-22 op phos_serialize_uri(&tab->uri, tab->hist_cur->h,
707 31f1a758 2021-04-22 op sizeof(tab->hist_cur->h));
708 31f1a758 2021-04-22 op
709 4d3785b1 2021-03-09 op for (p = protos; p->schema != NULL; ++p) {
710 ed383cf4 2021-04-22 op if (!strcmp(tab->uri.scheme, p->schema)) {
711 4d3785b1 2021-03-09 op p->loadfn(tab, url);
712 adea4eec 2021-07-16 op return 1;
713 4d3785b1 2021-03-09 op }
714 4d3785b1 2021-03-09 op }
715 4d3785b1 2021-03-09 op
716 984245ce 2021-06-23 op TAILQ_FOREACH(proxy, &proxies, proxies) {
717 984245ce 2021-06-23 op if (!strcmp(tab->uri.scheme, proxy->match_proto)) {
718 984245ce 2021-06-23 op load_via_proxy(tab, url, proxy);
719 adea4eec 2021-07-16 op return 1;
720 984245ce 2021-06-23 op }
721 984245ce 2021-06-23 op }
722 984245ce 2021-06-23 op
723 adea4eec 2021-07-16 op load_page_from_str(tab, err_pages[UNKNOWN_PROTOCOL]);
724 adea4eec 2021-07-16 op return 0;
725 4d3785b1 2021-03-09 op }
726 4d3785b1 2021-03-09 op
727 2ddbda6b 2021-07-17 op /*
728 2ddbda6b 2021-07-17 op * Load url in tab. If tab is marked as lazy, only prepare the url
729 2ddbda6b 2021-07-17 op * but don't load it. If tab is lazy and a url was already prepared,
730 2ddbda6b 2021-07-17 op * do load it!
731 2ddbda6b 2021-07-17 op */
732 9ad4627d 2021-03-10 op void
733 bd3a3a95 2021-07-20 op load_url(struct tab *tab, const char *url, const char *base)
734 2051e653 2021-03-13 op {
735 2ddbda6b 2021-07-17 op int lazy;
736 2051e653 2021-03-13 op
737 2ddbda6b 2021-07-17 op lazy = tab->flags & TAB_LAZY;
738 2ddbda6b 2021-07-17 op
739 2ddbda6b 2021-07-17 op if (lazy && tab->hist_cur != NULL) {
740 2ddbda6b 2021-07-17 op lazy = 0;
741 2ddbda6b 2021-07-17 op tab->flags &= ~TAB_LAZY;
742 2051e653 2021-03-13 op }
743 984245ce 2021-06-23 op
744 2ddbda6b 2021-07-17 op if (!lazy || tab->hist_cur == NULL) {
745 2ddbda6b 2021-07-17 op if (tab->hist_cur != NULL)
746 2ddbda6b 2021-07-17 op hist_clear_forward(&tab->hist,
747 2ddbda6b 2021-07-17 op TAILQ_NEXT(tab->hist_cur, entries));
748 2ddbda6b 2021-07-17 op
749 2ddbda6b 2021-07-17 op if ((tab->hist_cur = calloc(1, sizeof(*tab->hist_cur))) == NULL) {
750 2ddbda6b 2021-07-17 op event_loopbreak();
751 2ddbda6b 2021-07-17 op return;
752 2ddbda6b 2021-07-17 op }
753 2ddbda6b 2021-07-17 op
754 2ddbda6b 2021-07-17 op strlcpy(tab->buffer.page.title, url,
755 2ddbda6b 2021-07-17 op sizeof(tab->buffer.page.title));
756 2ddbda6b 2021-07-17 op hist_push(&tab->hist, tab->hist_cur);
757 2ddbda6b 2021-07-17 op
758 2ddbda6b 2021-07-17 op if (lazy)
759 2ddbda6b 2021-07-17 op strlcpy(tab->hist_cur->h, url,
760 2ddbda6b 2021-07-17 op sizeof(tab->hist_cur->h));
761 2ddbda6b 2021-07-17 op }
762 2ddbda6b 2021-07-17 op
763 bd3a3a95 2021-07-20 op if (!lazy && do_load_url(tab, url, base))
764 adea4eec 2021-07-16 op erase_buffer(&tab->buffer);
765 2051e653 2021-03-13 op }
766 2051e653 2021-03-13 op
767 2051e653 2021-03-13 op int
768 2051e653 2021-03-13 op load_previous_page(struct tab *tab)
769 2051e653 2021-03-13 op {
770 2051e653 2021-03-13 op struct hist *h;
771 2051e653 2021-03-13 op
772 2051e653 2021-03-13 op if ((h = TAILQ_PREV(tab->hist_cur, mhisthead, entries)) == NULL)
773 2051e653 2021-03-13 op return 0;
774 2051e653 2021-03-13 op tab->hist_cur = h;
775 bd3a3a95 2021-07-20 op do_load_url(tab, h->h, NULL);
776 2051e653 2021-03-13 op return 1;
777 2051e653 2021-03-13 op }
778 2051e653 2021-03-13 op
779 2051e653 2021-03-13 op int
780 2051e653 2021-03-13 op load_next_page(struct tab *tab)
781 2051e653 2021-03-13 op {
782 2051e653 2021-03-13 op struct hist *h;
783 2051e653 2021-03-13 op
784 2051e653 2021-03-13 op if ((h = TAILQ_NEXT(tab->hist_cur, entries)) == NULL)
785 2051e653 2021-03-13 op return 0;
786 2051e653 2021-03-13 op tab->hist_cur = h;
787 bd3a3a95 2021-07-20 op do_load_url(tab, h->h, NULL);
788 2051e653 2021-03-13 op return 1;
789 2051e653 2021-03-13 op }
790 2051e653 2021-03-13 op
791 90730426 2021-07-21 op /*
792 90730426 2021-07-21 op * Free every resource linked to the tab, including the tab itself.
793 90730426 2021-07-21 op * Removes the tab from the tablist, but doesn't update the
794 90730426 2021-07-21 op * current_tab though.
795 90730426 2021-07-21 op */
796 2051e653 2021-03-13 op void
797 90730426 2021-07-21 op free_tab(struct tab *tab)
798 90730426 2021-07-21 op {
799 90730426 2021-07-21 op stop_tab(tab);
800 90730426 2021-07-21 op
801 90730426 2021-07-21 op if (evtimer_pending(&tab->loadingev, NULL))
802 90730426 2021-07-21 op evtimer_del(&tab->loadingev);
803 90730426 2021-07-21 op
804 90730426 2021-07-21 op TAILQ_REMOVE(&tabshead, tab, tabs);
805 90730426 2021-07-21 op free(tab);
806 90730426 2021-07-21 op }
807 90730426 2021-07-21 op
808 90730426 2021-07-21 op void
809 9ad4627d 2021-03-10 op stop_tab(struct tab *tab)
810 9ad4627d 2021-03-10 op {
811 bc10f6a5 2021-07-12 op ui_send_net(IMSG_STOP, tab->id, NULL, 0);
812 de2a69bb 2021-05-17 op
813 de2a69bb 2021-05-17 op if (tab->fd != -1) {
814 de2a69bb 2021-05-17 op close(tab->fd);
815 de2a69bb 2021-05-17 op tab->fd = -1;
816 de2a69bb 2021-05-17 op free(tab->path);
817 de2a69bb 2021-05-17 op tab->path = NULL;
818 de2a69bb 2021-05-17 op load_page_from_str(tab, "Stopped.\n");
819 de2a69bb 2021-05-17 op }
820 9ad4627d 2021-03-10 op }
821 9ad4627d 2021-03-10 op
822 740f578b 2021-03-15 op void
823 740f578b 2021-03-15 op add_to_bookmarks(const char *str)
824 740f578b 2021-03-15 op {
825 bc10f6a5 2021-07-12 op ui_send_fs(IMSG_BOOKMARK_PAGE, 0,
826 bc10f6a5 2021-07-12 op str, strlen(str)+1);
827 c7107cec 2021-04-01 op }
828 c7107cec 2021-04-01 op
829 c7107cec 2021-04-01 op void
830 c7107cec 2021-04-01 op save_session(void)
831 c7107cec 2021-04-01 op {
832 87e3e801 2021-07-17 op struct tab *tab;
833 2f524b17 2021-07-17 op char *t;
834 87e3e801 2021-07-17 op int flags;
835 c7107cec 2021-04-01 op
836 bc10f6a5 2021-07-12 op ui_send_fs(IMSG_SESSION_START, 0, NULL, 0);
837 c7107cec 2021-04-01 op
838 c7107cec 2021-04-01 op TAILQ_FOREACH(tab, &tabshead, tabs) {
839 87e3e801 2021-07-17 op flags = tab->flags;
840 87e3e801 2021-07-17 op if (tab == current_tab)
841 87e3e801 2021-07-17 op flags |= TAB_CURRENT;
842 2f524b17 2021-07-17 op
843 2f524b17 2021-07-17 op t = tab->hist_cur->h;
844 2f524b17 2021-07-17 op ui_send_fs(IMSG_SESSION_TAB, flags, t, strlen(t)+1);
845 2f524b17 2021-07-17 op
846 2f524b17 2021-07-17 op t = tab->buffer.page.title;
847 2f524b17 2021-07-17 op ui_send_fs(IMSG_SESSION_TAB_TITLE, 0, t, strlen(t)+1);
848 c7107cec 2021-04-01 op }
849 c7107cec 2021-04-01 op
850 bc10f6a5 2021-07-12 op ui_send_fs(IMSG_SESSION_END, 0, NULL, 0);
851 d2544989 2021-07-08 op }
852 d2544989 2021-07-08 op
853 87e3e801 2021-07-17 op /*
854 87e3e801 2021-07-17 op * Parse a line of the session file. The format is:
855 87e3e801 2021-07-17 op *
856 2f524b17 2021-07-17 op * URL [flags,...] [title]\n
857 87e3e801 2021-07-17 op */
858 d2544989 2021-07-08 op static void
859 2f524b17 2021-07-17 op parse_session_line(char *line, const char **title, uint32_t *flags)
860 d2544989 2021-07-08 op {
861 2f524b17 2021-07-17 op char *s, *t, *ap;
862 87e3e801 2021-07-17 op
863 2f524b17 2021-07-17 op *title = "";
864 87e3e801 2021-07-17 op *flags = 0;
865 87e3e801 2021-07-17 op if ((s = strchr(line, ' ')) == NULL)
866 87e3e801 2021-07-17 op return;
867 87e3e801 2021-07-17 op
868 87e3e801 2021-07-17 op *s++ = '\0';
869 2f524b17 2021-07-17 op
870 2f524b17 2021-07-17 op if ((t = strchr(s, ' ')) != NULL) {
871 2f524b17 2021-07-17 op *t++ = '\0';
872 2f524b17 2021-07-17 op *title = t;
873 2f524b17 2021-07-17 op }
874 2f524b17 2021-07-17 op
875 87e3e801 2021-07-17 op while ((ap = strsep(&s, ",")) != NULL) {
876 87e3e801 2021-07-17 op if (*ap == '\0')
877 87e3e801 2021-07-17 op ;
878 87e3e801 2021-07-17 op else if (!strcmp(ap, "current"))
879 87e3e801 2021-07-17 op *flags |= TAB_CURRENT;
880 87e3e801 2021-07-17 op else
881 87e3e801 2021-07-17 op message("unknown tab flag: %s", ap);
882 87e3e801 2021-07-17 op }
883 87e3e801 2021-07-17 op }
884 87e3e801 2021-07-17 op
885 87e3e801 2021-07-17 op static void
886 87e3e801 2021-07-17 op load_last_session(void)
887 87e3e801 2021-07-17 op {
888 2f524b17 2021-07-17 op const char *title;
889 87e3e801 2021-07-17 op char *nl, *line = NULL;
890 87e3e801 2021-07-17 op uint32_t flags;
891 87e3e801 2021-07-17 op size_t linesize = 0;
892 87e3e801 2021-07-17 op ssize_t linelen;
893 87e3e801 2021-07-17 op FILE *session;
894 259cf35a 2021-07-18 op struct tab *tab, *curr = NULL;
895 87e3e801 2021-07-17 op
896 87e3e801 2021-07-17 op if ((session = fopen(session_file, "r")) == NULL) {
897 87e3e801 2021-07-17 op /* first time? */
898 bd3a3a95 2021-07-20 op new_tab("about:new", NULL);
899 bd3a3a95 2021-07-20 op switch_to_tab(new_tab("about:help", NULL));
900 87e3e801 2021-07-17 op return;
901 87e3e801 2021-07-17 op }
902 87e3e801 2021-07-17 op
903 87e3e801 2021-07-17 op while ((linelen = getline(&line, &linesize, session)) != -1) {
904 87e3e801 2021-07-17 op if ((nl = strchr(line, '\n')) != NULL)
905 87e3e801 2021-07-17 op *nl = '\0';
906 2f524b17 2021-07-17 op parse_session_line(line, &title, &flags);
907 bd3a3a95 2021-07-20 op if ((tab = new_tab(line, NULL)) == NULL)
908 2f524b17 2021-07-17 op err(1, "new_tab");
909 2f524b17 2021-07-17 op strlcpy(tab->buffer.page.title, title,
910 2f524b17 2021-07-17 op sizeof(tab->buffer.page.title));
911 87e3e801 2021-07-17 op if (flags & TAB_CURRENT)
912 87e3e801 2021-07-17 op curr = tab;
913 87e3e801 2021-07-17 op }
914 87e3e801 2021-07-17 op
915 87e3e801 2021-07-17 op if (ferror(session))
916 87e3e801 2021-07-17 op message("error reading %s: %s",
917 87e3e801 2021-07-17 op session_file, strerror(errno));
918 87e3e801 2021-07-17 op fclose(session);
919 87e3e801 2021-07-17 op free(line);
920 87e3e801 2021-07-17 op
921 87e3e801 2021-07-17 op if (curr != NULL)
922 87e3e801 2021-07-17 op switch_to_tab(curr);
923 87e3e801 2021-07-17 op
924 b6171794 2021-07-20 op if (last_time_crashed())
925 bd3a3a95 2021-07-20 op switch_to_tab(new_tab("about:crash", NULL));
926 b6171794 2021-07-20 op
927 87e3e801 2021-07-17 op return;
928 d2544989 2021-07-08 op }
929 d2544989 2021-07-08 op
930 6cc5fcfe 2021-07-08 op static pid_t
931 6cc5fcfe 2021-07-08 op start_child(enum telescope_process p, const char *argv0, int fd)
932 6cc5fcfe 2021-07-08 op {
933 6cc5fcfe 2021-07-08 op const char *argv[4];
934 6cc5fcfe 2021-07-08 op int argc = 0;
935 6cc5fcfe 2021-07-08 op pid_t pid;
936 6cc5fcfe 2021-07-08 op
937 6cc5fcfe 2021-07-08 op switch (pid = fork()) {
938 6cc5fcfe 2021-07-08 op case -1:
939 6cc5fcfe 2021-07-08 op die();
940 6cc5fcfe 2021-07-08 op case 0:
941 6cc5fcfe 2021-07-08 op break;
942 6cc5fcfe 2021-07-08 op default:
943 6cc5fcfe 2021-07-08 op close(fd);
944 6cc5fcfe 2021-07-08 op return pid;
945 6cc5fcfe 2021-07-08 op }
946 6cc5fcfe 2021-07-08 op
947 6cc5fcfe 2021-07-08 op if (dup2(fd, 3) == -1)
948 6cc5fcfe 2021-07-08 op err(1, "cannot setup imsg fd");
949 6cc5fcfe 2021-07-08 op
950 6cc5fcfe 2021-07-08 op argv[argc++] = argv0;
951 6cc5fcfe 2021-07-08 op switch (p) {
952 6cc5fcfe 2021-07-08 op case PROC_UI:
953 6cc5fcfe 2021-07-08 op errx(1, "Can't start ui process");
954 6cc5fcfe 2021-07-08 op case PROC_FS:
955 6cc5fcfe 2021-07-08 op argv[argc++] = "-Tf";
956 6cc5fcfe 2021-07-08 op break;
957 6cc5fcfe 2021-07-08 op case PROC_NET:
958 6cc5fcfe 2021-07-08 op argv[argc++] = "-Tn";
959 6cc5fcfe 2021-07-08 op break;
960 6cc5fcfe 2021-07-08 op }
961 6cc5fcfe 2021-07-08 op
962 6cc5fcfe 2021-07-08 op argv[argc++] = NULL;
963 6cc5fcfe 2021-07-08 op execvp(argv0, (char *const *)argv);
964 6cc5fcfe 2021-07-08 op err(1, "execvp(%s)", argv0);
965 6cc5fcfe 2021-07-08 op }
966 6cc5fcfe 2021-07-08 op
967 bc10f6a5 2021-07-12 op static int
968 bc10f6a5 2021-07-12 op ui_send_net(int type, uint32_t peerid, const void *data,
969 bc10f6a5 2021-07-12 op uint16_t datalen)
970 bc10f6a5 2021-07-12 op {
971 bc10f6a5 2021-07-12 op return imsg_compose_event(iev_net, type, peerid, 0, -1, data,
972 bc10f6a5 2021-07-12 op datalen);
973 bc10f6a5 2021-07-12 op }
974 bc10f6a5 2021-07-12 op
975 bc10f6a5 2021-07-12 op static int
976 bc10f6a5 2021-07-12 op ui_send_fs(int type, uint32_t peerid, const void *data, uint16_t datalen)
977 bc10f6a5 2021-07-12 op {
978 bc10f6a5 2021-07-12 op return imsg_compose_event(iev_fs, type, peerid, 0, -1, data,
979 bc10f6a5 2021-07-12 op datalen);
980 bc10f6a5 2021-07-12 op }
981 bc10f6a5 2021-07-12 op
982 6cc5fcfe 2021-07-08 op static void __attribute__((noreturn))
983 6cc5fcfe 2021-07-08 op usage(int r)
984 d2544989 2021-07-08 op {
985 dc761924 2021-07-15 op fprintf(stderr, "USAGE: %s [-hnv] [-c config] [url]\n",
986 dc761924 2021-07-15 op getprogname());
987 d2544989 2021-07-08 op fprintf(stderr, "version: " PACKAGE " " VERSION "\n");
988 6cc5fcfe 2021-07-08 op exit(r);
989 740f578b 2021-03-15 op }
990 740f578b 2021-03-15 op
991 5e11c00c 2021-03-02 op int
992 6cd6a9e1 2021-03-20 op main(int argc, char * const *argv)
993 5e11c00c 2021-03-02 op {
994 bc10f6a5 2021-07-12 op struct imsgev net_ibuf, fs_ibuf;
995 bc10f6a5 2021-07-12 op int pipe2net[2], pipe2fs[2];
996 d2544989 2021-07-08 op int ch, configtest = 0, fail = 0;
997 d2544989 2021-07-08 op int has_url = 0;
998 6cc5fcfe 2021-07-08 op int proc = -1;
999 d0fd368a 2021-07-15 op int sessionfd;
1000 d2544989 2021-07-08 op char path[PATH_MAX];
1001 6cc5fcfe 2021-07-08 op const char *url = NEW_TAB_URL;
1002 6cc5fcfe 2021-07-08 op const char *argv0;
1003 5e11c00c 2021-03-02 op
1004 6cc5fcfe 2021-07-08 op argv0 = argv[0];
1005 6cc5fcfe 2021-07-08 op
1006 5e11c00c 2021-03-02 op signal(SIGCHLD, SIG_IGN);
1007 a0e91173 2021-06-13 op signal(SIGPIPE, SIG_IGN);
1008 5e11c00c 2021-03-02 op
1009 d2544989 2021-07-08 op if (getenv("NO_COLOR") != NULL)
1010 d2544989 2021-07-08 op enable_colors = 0;
1011 d2544989 2021-07-08 op
1012 d2544989 2021-07-08 op strlcpy(path, getenv("HOME"), sizeof(path));
1013 d2544989 2021-07-08 op strlcat(path, "/.telescope/config", sizeof(path));
1014 d2544989 2021-07-08 op
1015 dc761924 2021-07-15 op while ((ch = getopt_long(argc, argv, opts, longopts, NULL)) != -1) {
1016 d2544989 2021-07-08 op switch (ch) {
1017 1853ee50 2021-07-15 op case 'C':
1018 1853ee50 2021-07-15 op exit(ui_print_colors());
1019 d2544989 2021-07-08 op case 'c':
1020 d2544989 2021-07-08 op fail = 1;
1021 d2544989 2021-07-08 op strlcpy(path, optarg, sizeof(path));
1022 d2544989 2021-07-08 op break;
1023 d2544989 2021-07-08 op case 'n':
1024 d2544989 2021-07-08 op configtest = 1;
1025 d2544989 2021-07-08 op break;
1026 d2544989 2021-07-08 op case 'h':
1027 6cc5fcfe 2021-07-08 op usage(0);
1028 6cc5fcfe 2021-07-08 op case 'T':
1029 6cc5fcfe 2021-07-08 op switch (*optarg) {
1030 6cc5fcfe 2021-07-08 op case 'f':
1031 6cc5fcfe 2021-07-08 op proc = PROC_FS;
1032 6cc5fcfe 2021-07-08 op break;
1033 6cc5fcfe 2021-07-08 op case 'n':
1034 6cc5fcfe 2021-07-08 op proc = PROC_NET;
1035 6cc5fcfe 2021-07-08 op break;
1036 6cc5fcfe 2021-07-08 op default:
1037 6cc5fcfe 2021-07-08 op errx(1, "invalid process spec %c",
1038 6cc5fcfe 2021-07-08 op *optarg);
1039 6cc5fcfe 2021-07-08 op }
1040 6cc5fcfe 2021-07-08 op break;
1041 dc761924 2021-07-15 op case 'v':
1042 dc761924 2021-07-15 op printf("%s %s\n", PACKAGE_NAME, PACKAGE_VERSION);
1043 dc761924 2021-07-15 op exit(0);
1044 dc761924 2021-07-15 op break;
1045 d2544989 2021-07-08 op default:
1046 6cc5fcfe 2021-07-08 op usage(1);
1047 d2544989 2021-07-08 op }
1048 d2544989 2021-07-08 op }
1049 d2544989 2021-07-08 op
1050 d2544989 2021-07-08 op argc -= optind;
1051 d2544989 2021-07-08 op argv += optind;
1052 d2544989 2021-07-08 op
1053 6cc5fcfe 2021-07-08 op if (proc != -1) {
1054 6cc5fcfe 2021-07-08 op if (argc > 0)
1055 6cc5fcfe 2021-07-08 op usage(1);
1056 6cc5fcfe 2021-07-08 op else if (proc == PROC_FS)
1057 6cc5fcfe 2021-07-08 op return fs_main();
1058 6cc5fcfe 2021-07-08 op else if (proc == PROC_NET)
1059 f45bd2e3 2021-07-24 op return net_main();
1060 6cc5fcfe 2021-07-08 op else
1061 6cc5fcfe 2021-07-08 op usage(1);
1062 6cc5fcfe 2021-07-08 op }
1063 6cc5fcfe 2021-07-08 op
1064 d2544989 2021-07-08 op if (argc != 0) {
1065 d2544989 2021-07-08 op has_url = 1;
1066 d2544989 2021-07-08 op url = argv[0];
1067 d2544989 2021-07-08 op }
1068 d2544989 2021-07-08 op
1069 d5bdf203 2021-07-08 op /* setup keys before reading the config */
1070 d5bdf203 2021-07-08 op TAILQ_INIT(&global_map.m);
1071 d5bdf203 2021-07-08 op global_map.unhandled_input = global_key_unbound;
1072 d5bdf203 2021-07-08 op TAILQ_INIT(&minibuffer_map.m);
1073 d5bdf203 2021-07-08 op
1074 d2544989 2021-07-08 op config_init();
1075 d2544989 2021-07-08 op parseconfig(path, fail);
1076 d2544989 2021-07-08 op if (configtest){
1077 d2544989 2021-07-08 op puts("config OK");
1078 d2544989 2021-07-08 op exit(0);
1079 d2544989 2021-07-08 op }
1080 d2544989 2021-07-08 op
1081 d0fd368a 2021-07-15 op fs_init();
1082 d0fd368a 2021-07-15 op if ((sessionfd = lock_session()) == -1)
1083 d0fd368a 2021-07-15 op errx(1, "can't lock session, is another instance of "
1084 d0fd368a 2021-07-15 op "telescope already running?");
1085 d0fd368a 2021-07-15 op
1086 6cc5fcfe 2021-07-08 op /* Start children. */
1087 bc10f6a5 2021-07-12 op if (socketpair(AF_UNIX, SOCK_STREAM, PF_UNSPEC, pipe2fs) == -1)
1088 5e11c00c 2021-03-02 op err(1, "socketpair");
1089 bc10f6a5 2021-07-12 op start_child(PROC_FS, argv0, pipe2fs[1]);
1090 bc10f6a5 2021-07-12 op imsg_init(&fs_ibuf.ibuf, pipe2fs[0]);
1091 bc10f6a5 2021-07-12 op iev_fs = &fs_ibuf;
1092 bc10f6a5 2021-07-12 op iev_fs->handler = handle_dispatch_imsg;
1093 5e11c00c 2021-03-02 op
1094 bc10f6a5 2021-07-12 op if (socketpair(AF_UNIX, SOCK_STREAM, PF_UNSPEC, pipe2net) == -1)
1095 35e1f40a 2021-03-14 op err(1, "socketpair");
1096 bc10f6a5 2021-07-12 op start_child(PROC_NET, argv0, pipe2net[1]);
1097 bc10f6a5 2021-07-12 op imsg_init(&net_ibuf.ibuf, pipe2net[0]);
1098 bc10f6a5 2021-07-12 op iev_net = &net_ibuf;
1099 bc10f6a5 2021-07-12 op iev_net->handler = handle_dispatch_imsg;
1100 5e11c00c 2021-03-02 op
1101 37d429b0 2021-04-01 op setproctitle("ui");
1102 35e1f40a 2021-03-14 op
1103 6cc5fcfe 2021-07-08 op /* initialize tofu & load certificates */
1104 3768e50f 2021-04-25 op tofu_init(&certs, 5, offsetof(struct tofu_entry, domain));
1105 3a227e9a 2021-03-18 op load_certs(&certs);
1106 cbcc75fb 2021-03-17 op
1107 5e11c00c 2021-03-02 op event_init();
1108 5e11c00c 2021-03-02 op
1109 bc10f6a5 2021-07-12 op /* Setup event handlers for pipes to fs/net */
1110 bc10f6a5 2021-07-12 op iev_fs->events = EV_READ;
1111 bc10f6a5 2021-07-12 op event_set(&iev_fs->ev, iev_fs->ibuf.fd, iev_fs->events,
1112 bc10f6a5 2021-07-12 op iev_fs->handler, iev_fs);
1113 bc10f6a5 2021-07-12 op event_add(&iev_fs->ev, NULL);
1114 5e11c00c 2021-03-02 op
1115 bc10f6a5 2021-07-12 op iev_net->events = EV_READ;
1116 bc10f6a5 2021-07-12 op event_set(&iev_net->ev, iev_net->ibuf.fd, iev_net->events,
1117 bc10f6a5 2021-07-12 op iev_net->handler, iev_net);
1118 bc10f6a5 2021-07-12 op event_add(&iev_net->ev, NULL);
1119 35e1f40a 2021-03-14 op
1120 d2544989 2021-07-08 op if (ui_init()) {
1121 87e3e801 2021-07-17 op load_last_session();
1122 d2544989 2021-07-08 op if (has_url || TAILQ_EMPTY(&tabshead))
1123 bd3a3a95 2021-07-20 op new_tab(url, NULL);
1124 d2544989 2021-07-08 op
1125 941b3761 2021-03-18 op sandbox_ui_process();
1126 2ddbda6b 2021-07-17 op ui_main_loop();
1127 941b3761 2021-03-18 op ui_end();
1128 941b3761 2021-03-18 op }
1129 5e11c00c 2021-03-02 op
1130 bc10f6a5 2021-07-12 op ui_send_fs(IMSG_QUIT, 0, NULL, 0);
1131 bc10f6a5 2021-07-12 op ui_send_net(IMSG_QUIT, 0, NULL, 0);
1132 3e5fd7be 2021-07-13 op imsg_flush(&iev_fs->ibuf);
1133 a9925134 2021-07-15 op imsg_flush(&iev_net->ibuf);
1134 5e11c00c 2021-03-02 op
1135 d0fd368a 2021-07-15 op close(sessionfd);
1136 d0fd368a 2021-07-15 op
1137 5e11c00c 2021-03-02 op return 0;
1138 5e11c00c 2021-03-02 op }