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