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 f63b8f73 2022-04-24 op update_cert(e);
319 288fd238 2021-04-25 op tofu_update(&certs, e);
320 288fd238 2021-04-25 op
321 288fd238 2021-04-25 op tab->trust = TS_TRUSTED;
322 288fd238 2021-04-25 op
323 288fd238 2021-04-25 op end:
324 288fd238 2021-04-25 op free(tab->cert);
325 288fd238 2021-04-25 op tab->cert = NULL;
326 288fd238 2021-04-25 op }
327 288fd238 2021-04-25 op
328 5cd2ebb1 2021-03-11 op static inline int
329 5cd2ebb1 2021-03-11 op normalize_code(int n)
330 5cd2ebb1 2021-03-11 op {
331 5cd2ebb1 2021-03-11 op if (n < 20) {
332 5cd2ebb1 2021-03-11 op if (n == 10 || n == 11)
333 5cd2ebb1 2021-03-11 op return n;
334 5cd2ebb1 2021-03-11 op return 10;
335 5cd2ebb1 2021-03-11 op } else if (n < 30) {
336 5cd2ebb1 2021-03-11 op return 20;
337 5cd2ebb1 2021-03-11 op } else if (n < 40) {
338 5cd2ebb1 2021-03-11 op if (n == 30 || n == 31)
339 5cd2ebb1 2021-03-11 op return n;
340 5cd2ebb1 2021-03-11 op return 30;
341 5cd2ebb1 2021-03-11 op } else if (n < 50) {
342 5cd2ebb1 2021-03-11 op if (n <= 44)
343 5cd2ebb1 2021-03-11 op return n;
344 5cd2ebb1 2021-03-11 op return 40;
345 5cd2ebb1 2021-03-11 op } else if (n < 60) {
346 5cd2ebb1 2021-03-11 op if (n <= 53 || n == 59)
347 5cd2ebb1 2021-03-11 op return n;
348 5cd2ebb1 2021-03-11 op return 50;
349 5cd2ebb1 2021-03-11 op } else if (n < 70) {
350 5cd2ebb1 2021-03-11 op if (n <= 62)
351 5cd2ebb1 2021-03-11 op return n;
352 5cd2ebb1 2021-03-11 op return 60;
353 5cd2ebb1 2021-03-11 op } else
354 5cd2ebb1 2021-03-11 op return MALFORMED_RESPONSE;
355 5cd2ebb1 2021-03-11 op }
356 5cd2ebb1 2021-03-11 op
357 5e11c00c 2021-03-02 op static void
358 5e11c00c 2021-03-02 op handle_imsg_got_code(struct imsg *imsg, size_t datalen)
359 5e11c00c 2021-03-02 op {
360 0972d8b2 2021-03-02 op struct tab *tab;
361 5e11c00c 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->code) != datalen)
366 5e11c00c 2021-03-02 op die();
367 5e11c00c 2021-03-02 op
368 5cd2ebb1 2021-03-11 op memcpy(&tab->code, imsg->data, sizeof(tab->code));
369 5cd2ebb1 2021-03-11 op tab->code = normalize_code(tab->code);
370 5cd2ebb1 2021-03-11 op if (tab->code != 30 && tab->code != 31)
371 0972d8b2 2021-03-02 op tab->redirect_count = 0;
372 5e11c00c 2021-03-02 op }
373 5e11c00c 2021-03-02 op
374 5e11c00c 2021-03-02 op static void
375 5e11c00c 2021-03-02 op handle_imsg_got_meta(struct imsg *imsg, size_t datalen)
376 5e11c00c 2021-03-02 op {
377 0972d8b2 2021-03-02 op struct tab *tab;
378 fcd99a0d 2021-11-05 op char buf[128];
379 0972d8b2 2021-03-02 op
380 f6243012 2021-07-19 op if ((tab = tab_by_id(imsg->hdr.peerid)) == NULL)
381 f6243012 2021-07-19 op return;
382 0972d8b2 2021-03-02 op
383 0972d8b2 2021-03-02 op if (sizeof(tab->meta) <= datalen)
384 0972d8b2 2021-03-02 op die();
385 5cd2ebb1 2021-03-11 op
386 0972d8b2 2021-03-02 op memcpy(tab->meta, imsg->data, datalen);
387 0972d8b2 2021-03-02 op
388 5cd2ebb1 2021-03-11 op if (tab->code < 10) { /* internal errors */
389 5cd2ebb1 2021-03-11 op load_page_from_str(tab, err_pages[tab->code]);
390 5cd2ebb1 2021-03-11 op } else if (tab->code < 20) { /* 1x */
391 ed504b9e 2022-02-07 op free(tab->last_input_url);
392 ed504b9e 2022-02-07 op tab->last_input_url = strdup(tab->hist_cur->h);
393 ed504b9e 2022-02-07 op if (tab->last_input_url == NULL)
394 ed504b9e 2022-02-07 op die();
395 ed504b9e 2022-02-07 op
396 5cd2ebb1 2021-03-11 op load_page_from_str(tab, err_pages[tab->code]);
397 693188cb 2022-02-07 op ui_require_input(tab, tab->code == 11, ir_select_gemini);
398 5cd2ebb1 2021-03-11 op } else if (tab->code == 20) {
399 9e97090d 2022-02-26 op history_add(tab->hist_cur->h);
400 c07ac996 2021-03-12 op if (setup_parser_for(tab)) {
401 bc10f6a5 2021-07-12 op ui_send_net(IMSG_PROCEED, tab->id, NULL, 0);
402 fcd99a0d 2021-11-05 op } else if (safe_mode) {
403 69f32f56 2021-08-16 op load_page_from_str(tab,
404 69f32f56 2021-08-16 op err_pages[UNKNOWN_TYPE_OR_CSET]);
405 fcd99a0d 2021-11-05 op } else {
406 fcd99a0d 2021-11-05 op struct hist *h;
407 fcd99a0d 2021-11-05 op
408 fcd99a0d 2021-11-05 op if ((h = hist_pop(&tab->hist)) != NULL)
409 fcd99a0d 2021-11-05 op tab->hist_cur = h;
410 fcd99a0d 2021-11-05 op snprintf(buf, sizeof(buf),
411 fcd99a0d 2021-11-05 op "Can't display \"%s\", save it?", tab->meta);
412 fcd99a0d 2021-11-05 op ui_yornp(buf, handle_maybe_save_page, tab);
413 c07ac996 2021-03-12 op }
414 5cd2ebb1 2021-03-11 op } else if (tab->code < 40) { /* 3x */
415 3a9b9365 2021-03-09 op tab->redirect_count++;
416 0972d8b2 2021-03-02 op
417 3a9b9365 2021-03-09 op /* TODO: make customizable? */
418 3a9b9365 2021-03-09 op if (tab->redirect_count > 5) {
419 3a9b9365 2021-03-09 op load_page_from_str(tab,
420 3a9b9365 2021-03-09 op err_pages[TOO_MUCH_REDIRECTS]);
421 5cd2ebb1 2021-03-11 op } else
422 ed21a9a1 2022-01-11 op do_load_url(tab, tab->meta, NULL, LU_MODE_NOCACHE);
423 5cd2ebb1 2021-03-11 op } else { /* 4x, 5x & 6x */
424 5cd2ebb1 2021-03-11 op load_page_from_str(tab, err_pages[tab->code]);
425 3a9b9365 2021-03-09 op }
426 de2a69bb 2021-05-17 op }
427 de2a69bb 2021-05-17 op
428 de2a69bb 2021-05-17 op static void
429 a2fd3805 2021-07-06 op handle_maybe_save_page(int dosave, struct tab *tab)
430 de2a69bb 2021-05-17 op {
431 bb9912eb 2021-08-29 op const char *f;
432 bb9912eb 2021-08-29 op char input[PATH_MAX];
433 bb9912eb 2021-08-29 op
434 fcd99a0d 2021-11-05 op /* XXX: this print a message that is confusing */
435 fcd99a0d 2021-11-05 op ui_on_tab_loaded(tab);
436 fcd99a0d 2021-11-05 op
437 bb9912eb 2021-08-29 op if (!dosave) {
438 a2fd3805 2021-07-06 op stop_tab(tab);
439 bb9912eb 2021-08-29 op return;
440 bb9912eb 2021-08-29 op }
441 bb9912eb 2021-08-29 op
442 bb9912eb 2021-08-29 op if ((f = strrchr(tab->uri.path, '/')) == NULL)
443 bb9912eb 2021-08-29 op f = "";
444 bb9912eb 2021-08-29 op else
445 bb9912eb 2021-08-29 op f++;
446 bb9912eb 2021-08-29 op
447 112b9046 2021-08-29 op strlcpy(input, download_path, sizeof(input));
448 bb9912eb 2021-08-29 op strlcat(input, f, sizeof(input));
449 bb9912eb 2021-08-29 op
450 bb9912eb 2021-08-29 op ui_read("Save to path", handle_save_page_path, tab, input);
451 de2a69bb 2021-05-17 op }
452 de2a69bb 2021-05-17 op
453 de2a69bb 2021-05-17 op static void
454 d1353324 2021-07-13 op handle_save_page_path(const char *path, struct tab *tab)
455 d1353324 2021-07-13 op {
456 f63b8f73 2022-04-24 op struct download *d;
457 f63b8f73 2022-04-24 op int fd;
458 f63b8f73 2022-04-24 op
459 de2a69bb 2021-05-17 op if (path == NULL) {
460 d1353324 2021-07-13 op stop_tab(tab);
461 de2a69bb 2021-05-17 op return;
462 de2a69bb 2021-05-17 op }
463 de2a69bb 2021-05-17 op
464 fcd99a0d 2021-11-05 op ui_show_downloads_pane();
465 de2a69bb 2021-05-17 op
466 f63b8f73 2022-04-24 op d = enqueue_download(tab->id, path, 0);
467 fcd99a0d 2021-11-05 op
468 fcd99a0d 2021-11-05 op /*
469 fcd99a0d 2021-11-05 op * Change this tab id, the old one is associated with the
470 fcd99a0d 2021-11-05 op * download now.
471 fcd99a0d 2021-11-05 op */
472 fcd99a0d 2021-11-05 op tab->id = tab_new_id();
473 de2a69bb 2021-05-17 op
474 f63b8f73 2022-04-24 op if ((fd = open(path, O_WRONLY|O_TRUNC|O_CREAT, 0644)) == -1)
475 f63b8f73 2022-04-24 op message("Can't open file %s: %s", d->path, strerror(errno));
476 f63b8f73 2022-04-24 op else if (d->buffer) {
477 868b3a8f 2022-04-13 op FILE *fp;
478 868b3a8f 2022-04-13 op int r;
479 868b3a8f 2022-04-13 op
480 f63b8f73 2022-04-24 op if ((fp = fdopen(fd, "w")) != NULL) {
481 0110411e 2022-04-13 op r = parser_serialize(current_tab, fp);
482 868b3a8f 2022-04-13 op if (!r)
483 868b3a8f 2022-04-13 op message("Failed to save the page.");
484 868b3a8f 2022-04-13 op fclose(fp);
485 868b3a8f 2022-04-13 op }
486 868b3a8f 2022-04-13 op
487 868b3a8f 2022-04-13 op dequeue_first_download();
488 022fdfc9 2022-04-13 op } else {
489 f63b8f73 2022-04-24 op d->fd = fd;
490 fcd99a0d 2021-11-05 op ui_send_net(IMSG_PROCEED, d->id, NULL, 0);
491 92ce02e2 2021-01-02 op }
492 de2a69bb 2021-05-17 op }
493 de2a69bb 2021-05-17 op
494 de2a69bb 2021-05-17 op static void
495 5e11c00c 2021-03-02 op handle_imsg_buf(struct imsg *imsg, size_t datalen)
496 5e11c00c 2021-03-02 op {
497 fcd99a0d 2021-11-05 op struct tab *tab = NULL;
498 fcd99a0d 2021-11-05 op struct download *d = NULL;
499 5e11c00c 2021-03-02 op
500 fcd99a0d 2021-11-05 op if ((tab = tab_by_id(imsg->hdr.peerid)) == NULL &&
501 fcd99a0d 2021-11-05 op (d = download_by_id(imsg->hdr.peerid)) == NULL)
502 5d6c2088 2021-07-19 op return;
503 5e11c00c 2021-03-02 op
504 fcd99a0d 2021-11-05 op if (tab != NULL) {
505 8c1b0837 2021-07-25 op if (!parser_parse(tab, imsg->data, datalen))
506 de2a69bb 2021-05-17 op die();
507 fcd99a0d 2021-11-05 op ui_on_tab_refresh(tab);
508 de2a69bb 2021-05-17 op } else {
509 fcd99a0d 2021-11-05 op d->bytes += datalen;
510 fcd99a0d 2021-11-05 op write(d->fd, imsg->data, datalen);
511 fcd99a0d 2021-11-05 op ui_on_download_refresh();
512 de2a69bb 2021-05-17 op }
513 5e11c00c 2021-03-02 op }
514 5e11c00c 2021-03-02 op
515 5e11c00c 2021-03-02 op static void
516 5e11c00c 2021-03-02 op handle_imsg_eof(struct imsg *imsg, size_t datalen)
517 5e11c00c 2021-03-02 op {
518 fcd99a0d 2021-11-05 op struct tab *tab = NULL;
519 fcd99a0d 2021-11-05 op struct download *d = NULL;
520 a5c3e03d 2021-03-02 op
521 fcd99a0d 2021-11-05 op if ((tab = tab_by_id(imsg->hdr.peerid)) == NULL &&
522 fcd99a0d 2021-11-05 op (d = download_by_id(imsg->hdr.peerid)) == NULL)
523 f6243012 2021-07-19 op return;
524 de2a69bb 2021-05-17 op
525 fcd99a0d 2021-11-05 op if (tab != NULL) {
526 8c1b0837 2021-07-25 op if (!parser_free(tab))
527 de2a69bb 2021-05-17 op die();
528 dc8e7bf6 2022-01-11 op if (has_prefix(tab->hist_cur->h, "gemini://") ||
529 dc8e7bf6 2022-01-11 op has_prefix(tab->hist_cur->h, "gopher://"))
530 8f3c9af8 2022-01-11 op mcache_tab(tab);
531 fcd99a0d 2021-11-05 op ui_on_tab_refresh(tab);
532 fcd99a0d 2021-11-05 op ui_on_tab_loaded(tab);
533 de2a69bb 2021-05-17 op } else {
534 fcd99a0d 2021-11-05 op close(d->fd);
535 fcd99a0d 2021-11-05 op d->fd = -1;
536 fcd99a0d 2021-11-05 op ui_on_download_refresh();
537 de2a69bb 2021-05-17 op }
538 5e11c00c 2021-03-02 op }
539 5e11c00c 2021-03-02 op
540 5e11c00c 2021-03-02 op static void
541 1304bbdd 2021-03-15 op handle_dispatch_imsg(int fd, short ev, void *d)
542 5e11c00c 2021-03-02 op {
543 bc10f6a5 2021-07-12 op struct imsgev *iev = d;
544 ea080950 2021-07-20 op
545 ea080950 2021-07-20 op if (dispatch_imsg(iev, ev, handlers, sizeof(handlers)) == -1)
546 ea080950 2021-07-20 op err(1, "connection closed");
547 0972d8b2 2021-03-02 op }
548 0972d8b2 2021-03-02 op
549 1c690d0a 2021-08-03 op static int
550 4d3785b1 2021-03-09 op load_about_url(struct tab *tab, const char *url)
551 0972d8b2 2021-03-02 op {
552 f63b8f73 2022-04-24 op tab->trust = TS_TRUSTED;
553 f63b8f73 2022-04-24 op fs_load_url(tab, url);
554 f63b8f73 2022-04-24 op ui_on_tab_refresh(tab);
555 f63b8f73 2022-04-24 op ui_on_tab_loaded(tab);
556 f63b8f73 2022-04-24 op return 0;
557 4d3785b1 2021-03-09 op }
558 0972d8b2 2021-03-02 op
559 1c690d0a 2021-08-03 op static int
560 0b1053d2 2021-08-13 op load_file_url(struct tab *tab, const char *url)
561 0b1053d2 2021-08-13 op {
562 f63b8f73 2022-04-24 op tab->trust = TS_TRUSTED;
563 f63b8f73 2022-04-24 op fs_load_url(tab, url);
564 f63b8f73 2022-04-24 op ui_on_tab_refresh(tab);
565 f63b8f73 2022-04-24 op ui_on_tab_loaded(tab);
566 f63b8f73 2022-04-24 op return 0;
567 0b1053d2 2021-08-13 op }
568 0b1053d2 2021-08-13 op
569 0b1053d2 2021-08-13 op static int
570 5fb52fc0 2021-07-25 op load_finger_url(struct tab *tab, const char *url)
571 5fb52fc0 2021-07-25 op {
572 5fb52fc0 2021-07-25 op struct get_req req;
573 5fb52fc0 2021-07-25 op size_t len;
574 5fb52fc0 2021-07-25 op char *at;
575 5fb52fc0 2021-07-25 op
576 5fb52fc0 2021-07-25 op memset(&req, 0, sizeof(req));
577 ba782cb8 2021-07-25 op strlcpy(req.port, tab->uri.port, sizeof(req.port));
578 5fb52fc0 2021-07-25 op
579 5fb52fc0 2021-07-25 op /*
580 5fb52fc0 2021-07-25 op * Sometimes the finger url have the user as path component
581 5fb52fc0 2021-07-25 op * (e.g. finger://thelambdalab.xyz/plugd), sometimes as
582 5fb52fc0 2021-07-25 op * userinfo (e.g. finger://cobradile@finger.farm).
583 5fb52fc0 2021-07-25 op */
584 5fb52fc0 2021-07-25 op if ((at = strchr(tab->uri.host, '@')) != NULL) {
585 5fb52fc0 2021-07-25 op len = at - tab->uri.host;
586 5fb52fc0 2021-07-25 op memcpy(req.req, tab->uri.host, len);
587 5fb52fc0 2021-07-25 op
588 5fb52fc0 2021-07-25 op if (len >= sizeof(req.req))
589 5fb52fc0 2021-07-25 op die();
590 5fb52fc0 2021-07-25 op req.req[len] = '\0';
591 5fb52fc0 2021-07-25 op
592 5fb52fc0 2021-07-25 op strlcpy(req.host, at+1, sizeof(req.host));
593 5fb52fc0 2021-07-25 op } else {
594 5fb52fc0 2021-07-25 op strlcpy(req.host, tab->uri.host, sizeof(req.host));
595 5fb52fc0 2021-07-25 op
596 5fb52fc0 2021-07-25 op /* +1 to skip the initial `/' */
597 5fb52fc0 2021-07-25 op strlcpy(req.req, tab->uri.path+1, sizeof(req.req));
598 5fb52fc0 2021-07-25 op }
599 5fb52fc0 2021-07-25 op strlcat(req.req, "\r\n", sizeof(req.req));
600 5fb52fc0 2021-07-25 op
601 8c1b0837 2021-07-25 op parser_init(tab, textplain_initparser);
602 1c690d0a 2021-08-03 op return make_request(tab, &req, PROTO_FINGER, NULL);
603 5fb52fc0 2021-07-25 op }
604 5fb52fc0 2021-07-25 op
605 1c690d0a 2021-08-03 op static int
606 4d3785b1 2021-03-09 op load_gemini_url(struct tab *tab, const char *url)
607 4d3785b1 2021-03-09 op {
608 984245ce 2021-06-23 op struct get_req req;
609 2eef3403 2021-04-22 op
610 984245ce 2021-06-23 op memset(&req, 0, sizeof(req));
611 984245ce 2021-06-23 op strlcpy(req.host, tab->uri.host, sizeof(req.host));
612 f94c7ac1 2021-11-24 op strlcpy(req.port, tab->uri.port, sizeof(req.port));
613 984245ce 2021-06-23 op
614 1c690d0a 2021-08-03 op return make_request(tab, &req, PROTO_GEMINI, tab->hist_cur->h);
615 ca190c99 2021-08-14 op }
616 ca190c99 2021-08-14 op
617 ca190c99 2021-08-14 op static inline const char *
618 ca190c99 2021-08-14 op gopher_skip_selector(const char *path, int *ret_type)
619 ca190c99 2021-08-14 op {
620 ca190c99 2021-08-14 op *ret_type = 0;
621 ca190c99 2021-08-14 op
622 ca190c99 2021-08-14 op if (!strcmp(path, "/") || *path == '\0') {
623 ca190c99 2021-08-14 op *ret_type = '1';
624 ca190c99 2021-08-14 op return path;
625 ca190c99 2021-08-14 op }
626 ca190c99 2021-08-14 op
627 ca190c99 2021-08-14 op if (*path != '/')
628 ca190c99 2021-08-14 op return path;
629 ca190c99 2021-08-14 op path++;
630 ca190c99 2021-08-14 op
631 ca190c99 2021-08-14 op switch (*ret_type = *path) {
632 ca190c99 2021-08-14 op case '0':
633 ca190c99 2021-08-14 op case '1':
634 ca190c99 2021-08-14 op case '7':
635 ca190c99 2021-08-14 op break;
636 ca190c99 2021-08-14 op
637 ca190c99 2021-08-14 op default:
638 ca190c99 2021-08-14 op *ret_type = 0;
639 ca190c99 2021-08-14 op path -= 1;
640 ca190c99 2021-08-14 op return path;
641 ca190c99 2021-08-14 op }
642 ca190c99 2021-08-14 op
643 95bb01e2 2021-08-28 op return ++path;
644 1663bf1e 2021-07-25 op }
645 1663bf1e 2021-07-25 op
646 1c690d0a 2021-08-03 op static int
647 1663bf1e 2021-07-25 op load_gopher_url(struct tab *tab, const char *url)
648 1663bf1e 2021-07-25 op {
649 81839fee 2021-07-25 op struct get_req req;
650 ca190c99 2021-08-14 op int type;
651 81839fee 2021-07-25 op const char *path;
652 1663bf1e 2021-07-25 op
653 1663bf1e 2021-07-25 op memset(&req, 0, sizeof(req));
654 1663bf1e 2021-07-25 op strlcpy(req.host, tab->uri.host, sizeof(req.host));
655 f94c7ac1 2021-11-24 op strlcpy(req.port, tab->uri.port, sizeof(req.port));
656 1663bf1e 2021-07-25 op
657 ca190c99 2021-08-14 op path = gopher_skip_selector(tab->uri.path, &type);
658 ca190c99 2021-08-14 op switch (type) {
659 ca190c99 2021-08-14 op case '0':
660 8c1b0837 2021-07-25 op parser_init(tab, textplain_initparser);
661 ca190c99 2021-08-14 op break;
662 ca190c99 2021-08-14 op case '1':
663 ca190c99 2021-08-14 op parser_init(tab, gophermap_initparser);
664 ca190c99 2021-08-14 op break;
665 ca190c99 2021-08-14 op case '7':
666 acf9defe 2022-02-08 op free(tab->last_input_url);
667 acf9defe 2022-02-08 op tab->last_input_url = strdup(url);
668 acf9defe 2022-02-08 op if (tab->last_input_url == NULL)
669 acf9defe 2022-02-08 op die();
670 693188cb 2022-02-07 op ui_require_input(tab, 0, ir_select_gopher);
671 9a28e7e5 2021-08-03 op return load_page_from_str(tab, err_pages[10]);
672 ca190c99 2021-08-14 op default:
673 ca190c99 2021-08-14 op return load_page_from_str(tab, "Unknown gopher selector");
674 81839fee 2021-07-25 op }
675 81839fee 2021-07-25 op
676 9a28e7e5 2021-08-03 op strlcpy(req.req, path, sizeof(req.req));
677 9a28e7e5 2021-08-03 op if (*tab->uri.query != '\0') {
678 9a28e7e5 2021-08-03 op strlcat(req.req, "?", sizeof(req.req));
679 9a28e7e5 2021-08-03 op strlcat(req.req, tab->uri.query, sizeof(req.req));
680 9a28e7e5 2021-08-03 op }
681 767da05c 2021-08-13 op strlcat(req.req, "\r\n", sizeof(req.req));
682 9a28e7e5 2021-08-03 op
683 767da05c 2021-08-13 op return make_request(tab, &req, PROTO_GOPHER, NULL);
684 0972d8b2 2021-03-02 op }
685 0972d8b2 2021-03-02 op
686 1c690d0a 2021-08-03 op static int
687 984245ce 2021-06-23 op load_via_proxy(struct tab *tab, const char *url, struct proxy *p)
688 984245ce 2021-06-23 op {
689 984245ce 2021-06-23 op struct get_req req;
690 984245ce 2021-06-23 op
691 984245ce 2021-06-23 op memset(&req, 0, sizeof(req));
692 984245ce 2021-06-23 op strlcpy(req.host, p->host, sizeof(req.host));
693 f94c7ac1 2021-11-24 op strlcpy(req.port, p->port, sizeof(req.port));
694 984245ce 2021-06-23 op
695 cf1195ce 2021-07-25 op tab->proxy = p;
696 984245ce 2021-06-23 op
697 1c690d0a 2021-08-03 op return make_request(tab, &req, p->proto, tab->hist_cur->h);
698 cf1195ce 2021-07-25 op }
699 984245ce 2021-06-23 op
700 1c690d0a 2021-08-03 op static int
701 cf1195ce 2021-07-25 op make_request(struct tab *tab, struct get_req *req, int proto, const char *r)
702 cf1195ce 2021-07-25 op {
703 cf1195ce 2021-07-25 op stop_tab(tab);
704 cf1195ce 2021-07-25 op tab->id = tab_new_id();
705 cf1195ce 2021-07-25 op req->proto = proto;
706 cf1195ce 2021-07-25 op
707 cf1195ce 2021-07-25 op if (r != NULL) {
708 cf1195ce 2021-07-25 op strlcpy(req->req, r, sizeof(req->req));
709 cf1195ce 2021-07-25 op strlcat(req->req, "\r\n", sizeof(req->req));
710 cf1195ce 2021-07-25 op }
711 cf1195ce 2021-07-25 op
712 5df02e0d 2022-01-11 op start_loading_anim(tab);
713 cf1195ce 2021-07-25 op ui_send_net(IMSG_GET_RAW, tab->id, req, sizeof(*req));
714 1c690d0a 2021-08-03 op
715 1c690d0a 2021-08-03 op /*
716 1c690d0a 2021-08-03 op * So the various load_*_url can `return make_request` and
717 1c690d0a 2021-08-03 op * do_load_url is happy.
718 1c690d0a 2021-08-03 op */
719 1c690d0a 2021-08-03 op return 1;
720 984245ce 2021-06-23 op }
721 984245ce 2021-06-23 op
722 9a28e7e5 2021-08-03 op void
723 9a28e7e5 2021-08-03 op gopher_send_search_req(struct tab *tab, const char *text)
724 9a28e7e5 2021-08-03 op {
725 9a28e7e5 2021-08-03 op struct get_req req;
726 1b0e6efc 2021-08-08 op
727 9a28e7e5 2021-08-03 op memset(&req, 0, sizeof(req));
728 9a28e7e5 2021-08-03 op strlcpy(req.host, tab->uri.host, sizeof(req.host));
729 f94c7ac1 2021-11-24 op strlcpy(req.port, tab->uri.port, sizeof(req.port));
730 9a28e7e5 2021-08-03 op
731 9a28e7e5 2021-08-03 op /* +2 to skip /7 */
732 9a28e7e5 2021-08-03 op strlcpy(req.req, tab->uri.path+2, sizeof(req.req));
733 9a28e7e5 2021-08-03 op if (*tab->uri.query != '\0') {
734 9a28e7e5 2021-08-03 op strlcat(req.req, "?", sizeof(req.req));
735 9a28e7e5 2021-08-03 op strlcat(req.req, tab->uri.query, sizeof(req.req));
736 9a28e7e5 2021-08-03 op }
737 9a28e7e5 2021-08-03 op
738 9a28e7e5 2021-08-03 op strlcat(req.req, "\t", sizeof(req.req));
739 9a28e7e5 2021-08-03 op strlcat(req.req, text, sizeof(req.req));
740 9a28e7e5 2021-08-03 op strlcat(req.req, "\r\n", sizeof(req.req));
741 9a28e7e5 2021-08-03 op
742 9a28e7e5 2021-08-03 op erase_buffer(&tab->buffer);
743 9a28e7e5 2021-08-03 op parser_init(tab, gophermap_initparser);
744 9a28e7e5 2021-08-03 op
745 9a28e7e5 2021-08-03 op make_request(tab, &req, PROTO_GOPHER, NULL);
746 9a28e7e5 2021-08-03 op }
747 9a28e7e5 2021-08-03 op
748 1bcb8303 2022-01-19 op int
749 1bcb8303 2022-01-19 op load_page_from_str(struct tab *tab, const char *page)
750 1bcb8303 2022-01-19 op {
751 1bcb8303 2022-01-19 op parser_init(tab, gemtext_initparser);
752 1bcb8303 2022-01-19 op if (!tab->buffer.page.parse(&tab->buffer.page, page, strlen(page)))
753 1bcb8303 2022-01-19 op abort();
754 1bcb8303 2022-01-19 op if (!tab->buffer.page.free(&tab->buffer.page))
755 1bcb8303 2022-01-19 op abort();
756 1bcb8303 2022-01-19 op ui_on_tab_refresh(tab);
757 1bcb8303 2022-01-19 op ui_on_tab_loaded(tab);
758 1bcb8303 2022-01-19 op return 0;
759 1bcb8303 2022-01-19 op }
760 1bcb8303 2022-01-19 op
761 adea4eec 2021-07-16 op /*
762 adea4eec 2021-07-16 op * Effectively load the given url in the given tab. Return 1 when
763 adea4eec 2021-07-16 op * loading the page asynchronously, and thus when an erase_buffer can
764 adea4eec 2021-07-16 op * be done right after this function return, or 0 when loading the
765 9eca3d7c 2021-11-02 op * page synchronously.
766 adea4eec 2021-07-16 op */
767 adea4eec 2021-07-16 op static int
768 ed21a9a1 2022-01-11 op do_load_url(struct tab *tab, const char *url, const char *base, int mode)
769 4d3785b1 2021-03-09 op {
770 0d877486 2022-02-24 op const struct proto *p;
771 31f1a758 2021-04-22 op struct phos_uri uri;
772 984245ce 2021-06-23 op struct proxy *proxy;
773 8f3c9af8 2022-01-11 op int nocache = mode & LU_MODE_NOCACHE;
774 31f1a758 2021-04-22 op char *t;
775 7943bb81 2021-07-10 op
776 7943bb81 2021-07-10 op tab->proxy = NULL;
777 10346511 2021-03-17 op tab->trust = TS_UNKNOWN;
778 10346511 2021-03-17 op
779 bd3a3a95 2021-07-20 op if (base == NULL)
780 bd3a3a95 2021-07-20 op memcpy(&uri, &tab->uri, sizeof(tab->uri));
781 bd3a3a95 2021-07-20 op else
782 bd3a3a95 2021-07-20 op phos_parse_absolute_uri(base, &uri);
783 bd3a3a95 2021-07-20 op
784 31f1a758 2021-04-22 op if (!phos_resolve_uri_from_str(&uri, url, &tab->uri)) {
785 902fc2c2 2021-07-25 op if (asprintf(&t, "#error loading %s\n>%s\n",
786 31f1a758 2021-04-22 op url, "Can't parse the URI") == -1)
787 31f1a758 2021-04-22 op die();
788 31f1a758 2021-04-22 op strlcpy(tab->hist_cur->h, url, sizeof(tab->hist_cur->h));
789 31f1a758 2021-04-22 op load_page_from_str(tab, t);
790 31f1a758 2021-04-22 op free(t);
791 adea4eec 2021-07-16 op return 0;
792 31f1a758 2021-04-22 op }
793 31f1a758 2021-04-22 op
794 31f1a758 2021-04-22 op phos_serialize_uri(&tab->uri, tab->hist_cur->h,
795 31f1a758 2021-04-22 op sizeof(tab->hist_cur->h));
796 31f1a758 2021-04-22 op
797 8f3c9af8 2022-01-11 op if (!nocache && mcache_lookup(tab->hist_cur->h, tab)) {
798 8f3c9af8 2022-01-11 op ui_on_tab_refresh(tab);
799 8f3c9af8 2022-01-11 op ui_on_tab_loaded(tab);
800 d5af38cc 2022-01-10 op return 0;
801 8f3c9af8 2022-01-11 op }
802 d5af38cc 2022-01-10 op
803 4d3785b1 2021-03-09 op for (p = protos; p->schema != NULL; ++p) {
804 ed383cf4 2021-04-22 op if (!strcmp(tab->uri.scheme, p->schema)) {
805 ba782cb8 2021-07-25 op /* patch the port */
806 ba782cb8 2021-07-25 op if (*tab->uri.port == '\0' && p->port != NULL)
807 ba782cb8 2021-07-25 op strlcpy(tab->uri.port, p->port,
808 ba782cb8 2021-07-25 op sizeof(tab->uri.port));
809 ba782cb8 2021-07-25 op
810 52a99c56 2022-01-15 op return p->loadfn(tab, tab->hist_cur->h);
811 4d3785b1 2021-03-09 op }
812 4d3785b1 2021-03-09 op }
813 4d3785b1 2021-03-09 op
814 984245ce 2021-06-23 op TAILQ_FOREACH(proxy, &proxies, proxies) {
815 1c690d0a 2021-08-03 op if (!strcmp(tab->uri.scheme, proxy->match_proto))
816 1c690d0a 2021-08-03 op return load_via_proxy(tab, url, proxy);
817 984245ce 2021-06-23 op }
818 984245ce 2021-06-23 op
819 b38cd1f7 2021-08-03 op return load_page_from_str(tab, err_pages[UNKNOWN_PROTOCOL]);
820 4d3785b1 2021-03-09 op }
821 4d3785b1 2021-03-09 op
822 2ddbda6b 2021-07-17 op /*
823 ea639250 2021-01-02 op * Load url in tab and handle history. If a tab is marked as lazy, only
824 ea639250 2021-01-02 op * prepare the url but don't load it.
825 2ddbda6b 2021-07-17 op */
826 9ad4627d 2021-03-10 op void
827 ed21a9a1 2022-01-11 op load_url(struct tab *tab, const char *url, const char *base, int mode)
828 2051e653 2021-03-13 op {
829 ea639250 2021-01-02 op int lazy = tab->flags & TAB_LAZY;
830 ed21a9a1 2022-01-11 op int nohist = mode & LU_MODE_NOHIST;
831 bc55cdb9 2021-08-12 op
832 fb8dcd1c 2022-01-18 op if (operating && lazy) {
833 fb8dcd1c 2022-01-18 op tab->flags ^= TAB_LAZY;
834 fb8dcd1c 2022-01-18 op lazy = 0;
835 bf5b33f4 2022-01-18 op } else if (tab->hist_cur != NULL)
836 bf5b33f4 2022-01-18 op get_scroll_position(tab, &tab->hist_cur->line_off,
837 bf5b33f4 2022-01-18 op &tab->hist_cur->current_off);
838 fb8dcd1c 2022-01-18 op
839 bc55cdb9 2021-08-12 op if (!nohist && (!lazy || tab->hist_cur == NULL)) {
840 bf5b33f4 2022-01-18 op if (tab->hist_cur != NULL)
841 2ddbda6b 2021-07-17 op hist_clear_forward(&tab->hist,
842 2ddbda6b 2021-07-17 op TAILQ_NEXT(tab->hist_cur, entries));
843 2ddbda6b 2021-07-17 op
844 69f32f56 2021-08-16 op if ((tab->hist_cur = calloc(1, sizeof(*tab->hist_cur)))
845 69f32f56 2021-08-16 op == NULL) {
846 2ddbda6b 2021-07-17 op event_loopbreak();
847 2ddbda6b 2021-07-17 op return;
848 2ddbda6b 2021-07-17 op }
849 2ddbda6b 2021-07-17 op
850 2ddbda6b 2021-07-17 op strlcpy(tab->buffer.page.title, url,
851 2ddbda6b 2021-07-17 op sizeof(tab->buffer.page.title));
852 2ddbda6b 2021-07-17 op hist_push(&tab->hist, tab->hist_cur);
853 2ddbda6b 2021-07-17 op
854 2ddbda6b 2021-07-17 op if (lazy)
855 2ddbda6b 2021-07-17 op strlcpy(tab->hist_cur->h, url,
856 2ddbda6b 2021-07-17 op sizeof(tab->hist_cur->h));
857 2ddbda6b 2021-07-17 op }
858 2ddbda6b 2021-07-17 op
859 9eca3d7c 2021-11-02 op if (!lazy)
860 ed21a9a1 2022-01-11 op do_load_url(tab, url, base, mode);
861 2051e653 2021-03-13 op }
862 2051e653 2021-03-13 op
863 a37d1a1c 2021-08-14 op void
864 ed21a9a1 2022-01-11 op load_url_in_tab(struct tab *tab, const char *url, const char *base, int mode)
865 a37d1a1c 2021-08-14 op {
866 0259f38d 2022-01-11 op if (operating) {
867 0259f38d 2022-01-11 op autosave_hook();
868 0259f38d 2022-01-11 op message("Loading %s...", url);
869 a37d1a1c 2021-08-14 op }
870 a37d1a1c 2021-08-14 op
871 ed21a9a1 2022-01-11 op load_url(tab, url, base, mode);
872 a37d1a1c 2021-08-14 op }
873 a37d1a1c 2021-08-14 op
874 2051e653 2021-03-13 op int
875 2051e653 2021-03-13 op load_previous_page(struct tab *tab)
876 2051e653 2021-03-13 op {
877 2051e653 2021-03-13 op struct hist *h;
878 2051e653 2021-03-13 op
879 2051e653 2021-03-13 op if ((h = TAILQ_PREV(tab->hist_cur, mhisthead, entries)) == NULL)
880 2051e653 2021-03-13 op return 0;
881 2051e653 2021-03-13 op tab->hist_cur = h;
882 ed21a9a1 2022-01-11 op do_load_url(tab, h->h, NULL, LU_MODE_NONE);
883 2051e653 2021-03-13 op return 1;
884 2051e653 2021-03-13 op }
885 2051e653 2021-03-13 op
886 2051e653 2021-03-13 op int
887 2051e653 2021-03-13 op load_next_page(struct tab *tab)
888 2051e653 2021-03-13 op {
889 2051e653 2021-03-13 op struct hist *h;
890 2051e653 2021-03-13 op
891 2051e653 2021-03-13 op if ((h = TAILQ_NEXT(tab->hist_cur, entries)) == NULL)
892 2051e653 2021-03-13 op return 0;
893 2051e653 2021-03-13 op tab->hist_cur = h;
894 ed21a9a1 2022-01-11 op do_load_url(tab, h->h, NULL, LU_MODE_NONE);
895 2051e653 2021-03-13 op return 1;
896 a37d1a1c 2021-08-14 op }
897 a37d1a1c 2021-08-14 op
898 2051e653 2021-03-13 op void
899 868b3a8f 2022-04-13 op write_buffer(const char *path, struct tab *tab)
900 868b3a8f 2022-04-13 op {
901 f63b8f73 2022-04-24 op FILE *fp;
902 f63b8f73 2022-04-24 op
903 868b3a8f 2022-04-13 op if (path == NULL)
904 868b3a8f 2022-04-13 op return;
905 868b3a8f 2022-04-13 op
906 f63b8f73 2022-04-24 op if ((fp = fopen(path, "w")) == NULL)
907 f63b8f73 2022-04-24 op return;
908 f63b8f73 2022-04-24 op if (!parser_serialize(tab, fp))
909 f63b8f73 2022-04-24 op message("Failed to save the page.");
910 f63b8f73 2022-04-24 op fclose(fp);
911 868b3a8f 2022-04-13 op }
912 868b3a8f 2022-04-13 op
913 c6efff96 2021-08-16 op /*
914 f6d7d047 2021-12-30 op * Given a user-entered URL, apply some heuristics to use it:
915 c6efff96 2021-08-16 op *
916 f6d7d047 2021-12-30 op * - if it's a proper url use it
917 f6d7d047 2021-12-30 op * - if it starts with a `./' or a `/' assume its a file:// url
918 f6d7d047 2021-12-30 op * - assume it's a gemini:// url
919 c6efff96 2021-08-16 op *
920 f6d7d047 2021-12-30 op * `ret' (of which len is the size) will be filled with the resulting
921 f6d7d047 2021-12-30 op * url.
922 c6efff96 2021-08-16 op */
923 c6efff96 2021-08-16 op void
924 c6efff96 2021-08-16 op humanify_url(const char *raw, char *ret, size_t len)
925 c6efff96 2021-08-16 op {
926 c6efff96 2021-08-16 op struct phos_uri uri;
927 c6efff96 2021-08-16 op char buf[PATH_MAX];
928 c7107cec 2021-04-01 op
929 c6efff96 2021-08-16 op if (phos_parse_absolute_uri(raw, &uri)) {
930 c6efff96 2021-08-16 op strlcpy(ret, raw, len);
931 c6efff96 2021-08-16 op return;
932 c6efff96 2021-08-16 op }
933 c6efff96 2021-08-16 op
934 c6efff96 2021-08-16 op if (has_prefix(raw, "./")) {
935 c6efff96 2021-08-16 op strlcpy(ret, "file://", len);
936 c6efff96 2021-08-16 op getcwd(buf, sizeof(buf));
937 c6efff96 2021-08-16 op strlcat(ret, buf, len);
938 c6efff96 2021-08-16 op strlcat(ret, "/", len);
939 c6efff96 2021-08-16 op strlcat(ret, raw+2, len);
940 c6efff96 2021-08-16 op return;
941 c6efff96 2021-08-16 op }
942 c6efff96 2021-08-16 op
943 c6efff96 2021-08-16 op if (*raw == '/') {
944 c6efff96 2021-08-16 op strlcpy(ret, "file://", len);
945 c6efff96 2021-08-16 op strlcat(ret, raw, len);
946 c6efff96 2021-08-16 op return;
947 c6efff96 2021-08-16 op }
948 c6efff96 2021-08-16 op
949 c6efff96 2021-08-16 op strlcpy(ret, "gemini://", len);
950 c6efff96 2021-08-16 op strlcat(ret, raw, len);
951 486bde7d 2022-04-24 op }
952 486bde7d 2022-04-24 op
953 486bde7d 2022-04-24 op int
954 486bde7d 2022-04-24 op bookmark_page(const char *url)
955 486bde7d 2022-04-24 op {
956 486bde7d 2022-04-24 op FILE *fp;
957 486bde7d 2022-04-24 op
958 486bde7d 2022-04-24 op if ((fp = fopen(bookmark_file, "a")) == NULL)
959 486bde7d 2022-04-24 op return -1;
960 486bde7d 2022-04-24 op fprintf(fp, "=> %s\n", url);
961 486bde7d 2022-04-24 op fclose(fp);
962 486bde7d 2022-04-24 op return 0;
963 c6efff96 2021-08-16 op }
964 c6efff96 2021-08-16 op
965 6cc5fcfe 2021-07-08 op static pid_t
966 6cc5fcfe 2021-07-08 op start_child(enum telescope_process p, const char *argv0, int fd)
967 6cc5fcfe 2021-07-08 op {
968 55ccd6d0 2021-09-15 op const char *argv[5];
969 6cc5fcfe 2021-07-08 op int argc = 0;
970 6cc5fcfe 2021-07-08 op pid_t pid;
971 6cc5fcfe 2021-07-08 op
972 6cc5fcfe 2021-07-08 op switch (pid = fork()) {
973 6cc5fcfe 2021-07-08 op case -1:
974 6cc5fcfe 2021-07-08 op die();
975 6cc5fcfe 2021-07-08 op case 0:
976 6cc5fcfe 2021-07-08 op break;
977 6cc5fcfe 2021-07-08 op default:
978 6cc5fcfe 2021-07-08 op close(fd);
979 6cc5fcfe 2021-07-08 op return pid;
980 6cc5fcfe 2021-07-08 op }
981 6cc5fcfe 2021-07-08 op
982 6cc5fcfe 2021-07-08 op if (dup2(fd, 3) == -1)
983 6cc5fcfe 2021-07-08 op err(1, "cannot setup imsg fd");
984 6cc5fcfe 2021-07-08 op
985 6cc5fcfe 2021-07-08 op argv[argc++] = argv0;
986 6cc5fcfe 2021-07-08 op switch (p) {
987 6cc5fcfe 2021-07-08 op case PROC_UI:
988 6cc5fcfe 2021-07-08 op errx(1, "Can't start ui process");
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 55ccd6d0 2021-09-15 op if (safe_mode)
995 55ccd6d0 2021-09-15 op argv[argc++] = "-S";
996 55ccd6d0 2021-09-15 op
997 6cc5fcfe 2021-07-08 op argv[argc++] = NULL;
998 6cc5fcfe 2021-07-08 op execvp(argv0, (char *const *)argv);
999 6cc5fcfe 2021-07-08 op err(1, "execvp(%s)", argv0);
1000 4cf6ba13 2022-02-11 op }
1001 4cf6ba13 2022-02-11 op
1002 4cf6ba13 2022-02-11 op static void
1003 4cf6ba13 2022-02-11 op send_url(const char *url)
1004 4cf6ba13 2022-02-11 op {
1005 4cf6ba13 2022-02-11 op struct sockaddr_un sun;
1006 4cf6ba13 2022-02-11 op struct imsgbuf ibuf;
1007 4cf6ba13 2022-02-11 op int ctl_sock;
1008 4cf6ba13 2022-02-11 op
1009 4cf6ba13 2022-02-11 op if ((ctl_sock = socket(AF_UNIX, SOCK_STREAM, 0)) == -1)
1010 4cf6ba13 2022-02-11 op err(1, "socket");
1011 4cf6ba13 2022-02-11 op
1012 4cf6ba13 2022-02-11 op memset(&sun, 0, sizeof(sun));
1013 4cf6ba13 2022-02-11 op sun.sun_family = AF_UNIX;
1014 4cf6ba13 2022-02-11 op strlcpy(sun.sun_path, ctlsock_path, sizeof(sun.sun_path));
1015 4cf6ba13 2022-02-11 op
1016 4cf6ba13 2022-02-11 op if (connect(ctl_sock, (struct sockaddr *)&sun, sizeof(sun)) == -1)
1017 4cf6ba13 2022-02-11 op err(1, "connect: %s", ctlsock_path);
1018 4cf6ba13 2022-02-11 op
1019 4cf6ba13 2022-02-11 op imsg_init(&ibuf, ctl_sock);
1020 4cf6ba13 2022-02-11 op imsg_compose(&ibuf, IMSG_CTL_OPEN_URL, 0, 0, -1, url,
1021 4cf6ba13 2022-02-11 op strlen(url) + 1);
1022 4cf6ba13 2022-02-11 op imsg_flush(&ibuf);
1023 4cf6ba13 2022-02-11 op close(ctl_sock);
1024 6cc5fcfe 2021-07-08 op }
1025 6cc5fcfe 2021-07-08 op
1026 1fce2e75 2021-08-14 op int
1027 bc10f6a5 2021-07-12 op ui_send_net(int type, uint32_t peerid, const void *data,
1028 bc10f6a5 2021-07-12 op uint16_t datalen)
1029 bc10f6a5 2021-07-12 op {
1030 bc10f6a5 2021-07-12 op return imsg_compose_event(iev_net, type, peerid, 0, -1, data,
1031 bc10f6a5 2021-07-12 op datalen);
1032 bc10f6a5 2021-07-12 op }
1033 bc10f6a5 2021-07-12 op
1034 6cc5fcfe 2021-07-08 op static void __attribute__((noreturn))
1035 6cc5fcfe 2021-07-08 op usage(int r)
1036 d2544989 2021-07-08 op {
1037 335cfaec 2021-09-15 op fprintf(stderr, "USAGE: %s [-ChnSv] [-c config] [url]\n",
1038 dc761924 2021-07-15 op getprogname());
1039 d2544989 2021-07-08 op fprintf(stderr, "version: " PACKAGE " " VERSION "\n");
1040 6cc5fcfe 2021-07-08 op exit(r);
1041 740f578b 2021-03-15 op }
1042 740f578b 2021-03-15 op
1043 5e11c00c 2021-03-02 op int
1044 6cd6a9e1 2021-03-20 op main(int argc, char * const *argv)
1045 5e11c00c 2021-03-02 op {
1046 f63b8f73 2022-04-24 op struct imsgev net_ibuf;
1047 be97d6e6 2021-08-15 op pid_t pid;
1048 4cf6ba13 2022-02-11 op int control_fd;
1049 f63b8f73 2022-04-24 op int pipe2net[2];
1050 d2544989 2021-07-08 op int ch, configtest = 0, fail = 0;
1051 6cc5fcfe 2021-07-08 op int proc = -1;
1052 5d7c642a 2021-09-15 op int sessionfd = -1;
1053 be97d6e6 2021-08-15 op int status;
1054 6cc5fcfe 2021-07-08 op const char *argv0;
1055 5e11c00c 2021-03-02 op
1056 6cc5fcfe 2021-07-08 op argv0 = argv[0];
1057 6cc5fcfe 2021-07-08 op
1058 5e11c00c 2021-03-02 op signal(SIGCHLD, SIG_IGN);
1059 a0e91173 2021-06-13 op signal(SIGPIPE, SIG_IGN);
1060 5e11c00c 2021-03-02 op
1061 d2544989 2021-07-08 op if (getenv("NO_COLOR") != NULL)
1062 d2544989 2021-07-08 op enable_colors = 0;
1063 d2544989 2021-07-08 op
1064 dc761924 2021-07-15 op while ((ch = getopt_long(argc, argv, opts, longopts, NULL)) != -1) {
1065 d2544989 2021-07-08 op switch (ch) {
1066 1853ee50 2021-07-15 op case 'C':
1067 1853ee50 2021-07-15 op exit(ui_print_colors());
1068 d2544989 2021-07-08 op case 'c':
1069 d2544989 2021-07-08 op fail = 1;
1070 eb2ed626 2021-10-07 op strlcpy(config_path, optarg, sizeof(config_path));
1071 d2544989 2021-07-08 op break;
1072 d2544989 2021-07-08 op case 'n':
1073 d2544989 2021-07-08 op configtest = 1;
1074 d2544989 2021-07-08 op break;
1075 d2544989 2021-07-08 op case 'h':
1076 6cc5fcfe 2021-07-08 op usage(0);
1077 d0971653 2021-09-15 op case 'S':
1078 d0971653 2021-09-15 op safe_mode = 1;
1079 d0971653 2021-09-15 op break;
1080 6cc5fcfe 2021-07-08 op case 'T':
1081 6cc5fcfe 2021-07-08 op switch (*optarg) {
1082 6cc5fcfe 2021-07-08 op case 'n':
1083 6cc5fcfe 2021-07-08 op proc = PROC_NET;
1084 6cc5fcfe 2021-07-08 op break;
1085 6cc5fcfe 2021-07-08 op default:
1086 6cc5fcfe 2021-07-08 op errx(1, "invalid process spec %c",
1087 6cc5fcfe 2021-07-08 op *optarg);
1088 6cc5fcfe 2021-07-08 op }
1089 6cc5fcfe 2021-07-08 op break;
1090 dc761924 2021-07-15 op case 'v':
1091 dc761924 2021-07-15 op printf("%s %s\n", PACKAGE_NAME, PACKAGE_VERSION);
1092 dc761924 2021-07-15 op exit(0);
1093 dc761924 2021-07-15 op break;
1094 d2544989 2021-07-08 op default:
1095 6cc5fcfe 2021-07-08 op usage(1);
1096 d2544989 2021-07-08 op }
1097 d2544989 2021-07-08 op }
1098 d2544989 2021-07-08 op
1099 d2544989 2021-07-08 op argc -= optind;
1100 d2544989 2021-07-08 op argv += optind;
1101 d2544989 2021-07-08 op
1102 6cc5fcfe 2021-07-08 op if (proc != -1) {
1103 6cc5fcfe 2021-07-08 op if (argc > 0)
1104 6cc5fcfe 2021-07-08 op usage(1);
1105 6cc5fcfe 2021-07-08 op else if (proc == PROC_NET)
1106 f45bd2e3 2021-07-24 op return net_main();
1107 6cc5fcfe 2021-07-08 op else
1108 6cc5fcfe 2021-07-08 op usage(1);
1109 6cc5fcfe 2021-07-08 op }
1110 6cc5fcfe 2021-07-08 op
1111 d2544989 2021-07-08 op if (argc != 0) {
1112 d2544989 2021-07-08 op has_url = 1;
1113 c6efff96 2021-08-16 op humanify_url(argv[0], url, sizeof(url));
1114 d2544989 2021-07-08 op }
1115 d2544989 2021-07-08 op
1116 f63b8f73 2022-04-24 op fs_init();
1117 f63b8f73 2022-04-24 op
1118 d5bdf203 2021-07-08 op /* setup keys before reading the config */
1119 d5bdf203 2021-07-08 op TAILQ_INIT(&global_map.m);
1120 d5bdf203 2021-07-08 op global_map.unhandled_input = global_key_unbound;
1121 d5bdf203 2021-07-08 op TAILQ_INIT(&minibuffer_map.m);
1122 d5bdf203 2021-07-08 op
1123 d2544989 2021-07-08 op config_init();
1124 eb2ed626 2021-10-07 op parseconfig(config_path, fail);
1125 69f32f56 2021-08-16 op if (configtest) {
1126 d2544989 2021-07-08 op puts("config OK");
1127 d2544989 2021-07-08 op exit(0);
1128 d2544989 2021-07-08 op }
1129 d2544989 2021-07-08 op
1130 112b9046 2021-08-29 op if (download_path == NULL &&
1131 112b9046 2021-08-29 op (download_path = strdup("/tmp/")) == NULL)
1132 112b9046 2021-08-29 op errx(1, "strdup");
1133 112b9046 2021-08-29 op
1134 4cf6ba13 2022-02-11 op if (!safe_mode && (sessionfd = lock_session()) == -1) {
1135 4cf6ba13 2022-02-11 op if (has_url) {
1136 4cf6ba13 2022-02-11 op send_url(url);
1137 4cf6ba13 2022-02-11 op exit(0);
1138 4cf6ba13 2022-02-11 op }
1139 4cf6ba13 2022-02-11 op
1140 d0fd368a 2021-07-15 op errx(1, "can't lock session, is another instance of "
1141 d0fd368a 2021-07-15 op "telescope already running?");
1142 4cf6ba13 2022-02-11 op }
1143 d0fd368a 2021-07-15 op
1144 6cc5fcfe 2021-07-08 op /* Start children. */
1145 bc10f6a5 2021-07-12 op if (socketpair(AF_UNIX, SOCK_STREAM, PF_UNSPEC, pipe2net) == -1)
1146 35e1f40a 2021-03-14 op err(1, "socketpair");
1147 bc10f6a5 2021-07-12 op start_child(PROC_NET, argv0, pipe2net[1]);
1148 bc10f6a5 2021-07-12 op imsg_init(&net_ibuf.ibuf, pipe2net[0]);
1149 bc10f6a5 2021-07-12 op iev_net = &net_ibuf;
1150 bc10f6a5 2021-07-12 op iev_net->handler = handle_dispatch_imsg;
1151 5e11c00c 2021-03-02 op
1152 37d429b0 2021-04-01 op setproctitle("ui");
1153 35e1f40a 2021-03-14 op
1154 eb722b50 2022-01-03 op /* initialize tofu store */
1155 3768e50f 2021-04-25 op tofu_init(&certs, 5, offsetof(struct tofu_entry, domain));
1156 cbcc75fb 2021-03-17 op
1157 5e11c00c 2021-03-02 op event_init();
1158 5e11c00c 2021-03-02 op
1159 4cf6ba13 2022-02-11 op if (!safe_mode) {
1160 4cf6ba13 2022-02-11 op if ((control_fd = control_init(ctlsock_path)) == -1)
1161 4cf6ba13 2022-02-11 op err(1, "control_init %s", ctlsock_path);
1162 4cf6ba13 2022-02-11 op control_listen(control_fd);
1163 4cf6ba13 2022-02-11 op }
1164 4cf6ba13 2022-02-11 op
1165 d5af38cc 2022-01-10 op /* initialize the in-memory cache store */
1166 d5af38cc 2022-01-10 op mcache_init();
1167 d5af38cc 2022-01-10 op
1168 ecfbb1d4 2021-08-14 op /* Setup event handler for the autosave */
1169 1fce2e75 2021-08-14 op autosave_init();
1170 ecfbb1d4 2021-08-14 op
1171 f63b8f73 2022-04-24 op /* Setup event handlers for pipes to net */
1172 bc10f6a5 2021-07-12 op iev_net->events = EV_READ;
1173 bc10f6a5 2021-07-12 op event_set(&iev_net->ev, iev_net->ibuf.fd, iev_net->events,
1174 bc10f6a5 2021-07-12 op iev_net->handler, iev_net);
1175 bc10f6a5 2021-07-12 op event_add(&iev_net->ev, NULL);
1176 d2544989 2021-07-08 op
1177 bb28f1c2 2021-12-30 op if (ui_init()) {
1178 941b3761 2021-03-18 op sandbox_ui_process();
1179 f63b8f73 2022-04-24 op fs_load_state(&certs);
1180 f63b8f73 2022-04-24 op operating = 1;
1181 f63b8f73 2022-04-24 op switch_to_tab(current_tab);
1182 f63b8f73 2022-04-24 op ui_main_loop();
1183 941b3761 2021-03-18 op ui_end();
1184 941b3761 2021-03-18 op }
1185 5e11c00c 2021-03-02 op
1186 bc10f6a5 2021-07-12 op ui_send_net(IMSG_QUIT, 0, NULL, 0);
1187 a9925134 2021-07-15 op imsg_flush(&iev_net->ibuf);
1188 be97d6e6 2021-08-15 op
1189 be97d6e6 2021-08-15 op /* wait for children to terminate */
1190 be97d6e6 2021-08-15 op do {
1191 be97d6e6 2021-08-15 op pid = wait(&status);
1192 be97d6e6 2021-08-15 op if (pid == -1) {
1193 be97d6e6 2021-08-15 op if (errno != EINTR && errno != ECHILD)
1194 be97d6e6 2021-08-15 op err(1, "wait");
1195 be97d6e6 2021-08-15 op } else if (WIFSIGNALED(status))
1196 be97d6e6 2021-08-15 op warnx("child terminated; signal %d", WTERMSIG(status));
1197 be97d6e6 2021-08-15 op } while (pid != -1 || (pid == -1 && errno == EINTR));
1198 5e11c00c 2021-03-02 op
1199 f63b8f73 2022-04-24 op if (!safe_mode)
1200 f63b8f73 2022-04-24 op unlink(crashed_file);
1201 f63b8f73 2022-04-24 op
1202 5d7c642a 2021-09-15 op if (!safe_mode && close(sessionfd) == -1)
1203 5d7c642a 2021-09-15 op err(1, "close(sessionfd = %d)", sessionfd);
1204 d0fd368a 2021-07-15 op
1205 5e11c00c 2021-03-02 op return 0;
1206 5e11c00c 2021-03-02 op }