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