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