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