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