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