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