Blob


1 /*
2 * Copyright (c) 2021 Omar Polo <op@omarpolo.com>
3 *
4 * Permission to use, copy, modify, and distribute this software for any
5 * purpose with or without fee is hereby granted, provided that the above
6 * copyright notice and this permission notice appear in all copies.
7 *
8 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 */
17 #include "compat.h"
19 #include <sys/socket.h>
20 #include <sys/wait.h>
22 #include <errno.h>
23 #include <getopt.h>
24 #include <signal.h>
25 #include <stdio.h>
26 #include <stdlib.h>
27 #include <string.h>
28 #include <unistd.h>
30 #include "defaults.h"
31 #include "fs.h"
32 #include "mcache.h"
33 #include "minibuffer.h"
34 #include "parser.h"
35 #include "session.h"
36 #include "telescope.h"
37 #include "ui.h"
38 #include "utils.h"
40 static struct option longopts[] = {
41 {"colors", no_argument, NULL, 'C'},
42 {"colours", no_argument, NULL, 'C'},
43 {"help", no_argument, NULL, 'h'},
44 {"safe", no_argument, NULL, 'S'},
45 {"version", no_argument, NULL, 'v'},
46 {NULL, 0, NULL, 0},
47 };
49 static const char *opts = "Cc:hnST:v";
51 static int has_url;
52 static char url[GEMINI_URL_LEN];
54 /*
55 * Used to know when we're finished loading.
56 */
57 int operating;
59 /*
60 * "Safe" (or "sandobox") mode. If enabled, Telescope shouldn't write
61 * anything to the filesystem or execute external programs.
62 */
63 int safe_mode;
65 static struct imsgev *iev_fs, *iev_net;
67 struct tabshead tabshead = TAILQ_HEAD_INITIALIZER(tabshead);
68 struct tabshead ktabshead = TAILQ_HEAD_INITIALIZER(ktabshead);
69 struct proxylist proxies = TAILQ_HEAD_INITIALIZER(proxies);
71 enum telescope_process {
72 PROC_UI,
73 PROC_FS,
74 PROC_NET,
75 };
77 #define CANNOT_FETCH 0
78 #define TOO_MUCH_REDIRECTS 1
79 #define MALFORMED_RESPONSE 2
80 #define UNKNOWN_TYPE_OR_CSET 3
81 #define UNKNOWN_PROTOCOL 4
83 /* XXX: keep in sync with normalize_code */
84 const char *err_pages[70] = {
85 [CANNOT_FETCH] = "# Couldn't load the page\n",
86 [TOO_MUCH_REDIRECTS] = "# Too much redirects\n",
87 [MALFORMED_RESPONSE] = "# Got a malformed response\n",
88 [UNKNOWN_TYPE_OR_CSET] = "# Unsupported type or charset\n",
89 [UNKNOWN_PROTOCOL] = "# Unknown protocol\n",
91 [10] = "# Input required\n",
92 [11] = "# Input required\n",
93 [40] = "# Temporary failure\n",
94 [41] = "# Server unavailable\n",
95 [42] = "# CGI error\n",
96 [43] = "# Proxy error\n",
97 [44] = "# Slow down\n",
98 [50] = "# Permanent failure\n",
99 [51] = "# Not found\n",
100 [52] = "# Gone\n",
101 [53] = "# Proxy request refused\n",
102 [59] = "# Bad request\n",
103 [60] = "# Client certificate required\n",
104 [61] = "# Certificate not authorised\n",
105 [62] = "# Certificate not valid\n"
106 };
108 static void die(void) __attribute__((__noreturn__));
109 static struct tab *tab_by_id(uint32_t);
110 static void handle_imsg_err(struct imsg *, size_t);
111 static void handle_imsg_check_cert(struct imsg *, size_t);
112 static void handle_check_cert_user_choice(int, struct tab *);
113 static void handle_maybe_save_new_cert(int, struct tab *);
114 static void handle_imsg_got_code(struct imsg *, size_t);
115 static void handle_imsg_got_meta(struct imsg *, size_t);
116 static void handle_maybe_save_page(int, struct tab *);
117 static void handle_save_page_path(const char *, struct tab *);
118 static void handle_imsg_file_opened(struct imsg *, size_t);
119 static void handle_imsg_buf(struct imsg *, size_t);
120 static void handle_imsg_eof(struct imsg *, size_t);
121 static void handle_imsg_tofu(struct imsg *, size_t);
122 static void handle_imsg_bookmark_ok(struct imsg *, size_t);
123 static void handle_imsg_save_cert_ok(struct imsg *, size_t);
124 static void handle_imsg_update_cert_ok(struct imsg *, size_t);
125 static void handle_imsg_session(struct imsg *, size_t);
126 static void handle_dispatch_imsg(int, short, void *);
127 static int load_about_url(struct tab *, const char *);
128 static int load_file_url(struct tab *, const char *);
129 static int load_finger_url(struct tab *, const char *);
130 static int load_gemini_url(struct tab *, const char *);
131 static int load_gopher_url(struct tab *, const char *);
132 static int load_via_proxy(struct tab *, const char *,
133 struct proxy *);
134 static int make_request(struct tab *, struct get_req *, int,
135 const char *);
136 static int make_fs_request(struct tab *, int, const char *);
137 static int do_load_url(struct tab *, const char *, const char *, int);
138 static pid_t start_child(enum telescope_process, const char *, int);
140 static struct proto {
141 const char *schema;
142 const char *port;
143 int (*loadfn)(struct tab *, const char *);
144 } protos[] = {
145 {"about", NULL, load_about_url},
146 {"file", NULL, load_file_url},
147 {"finger", "79", load_finger_url},
148 {"gemini", "1965", load_gemini_url},
149 {"gopher", "70", load_gopher_url},
150 {NULL, NULL, NULL},
151 };
153 static imsg_handlerfn *handlers[] = {
154 [IMSG_ERR] = handle_imsg_err,
155 [IMSG_CHECK_CERT] = handle_imsg_check_cert,
156 [IMSG_GOT_CODE] = handle_imsg_got_code,
157 [IMSG_GOT_META] = handle_imsg_got_meta,
158 [IMSG_BUF] = handle_imsg_buf,
159 [IMSG_EOF] = handle_imsg_eof,
160 [IMSG_TOFU] = handle_imsg_tofu,
161 [IMSG_BOOKMARK_OK] = handle_imsg_bookmark_ok,
162 [IMSG_SAVE_CERT_OK] = handle_imsg_save_cert_ok,
163 [IMSG_UPDATE_CERT_OK] = handle_imsg_update_cert_ok,
164 [IMSG_FILE_OPENED] = handle_imsg_file_opened,
165 [IMSG_SESSION_TAB] = handle_imsg_session,
166 [IMSG_SESSION_TAB_HIST] = handle_imsg_session,
167 [IMSG_SESSION_END] = handle_imsg_session,
168 };
170 static struct ohash certs;
172 static void __attribute__((__noreturn__))
173 die(void)
175 abort(); /* TODO */
178 static struct tab *
179 tab_by_id(uint32_t id)
181 struct tab *t;
183 TAILQ_FOREACH(t, &tabshead, tabs) {
184 if (t->id == id)
185 return t;
188 return NULL;
191 static void
192 handle_imsg_err(struct imsg *imsg, size_t datalen)
194 struct tab *tab;
195 char *page;
197 if ((tab = tab_by_id(imsg->hdr.peerid)) == NULL)
198 return;
200 page = imsg->data;
201 page[datalen-1] = '\0';
203 if (asprintf(&page, "# Error loading %s\n\n> %s\n",
204 tab->hist_cur->h, page) == -1)
205 die();
206 load_page_from_str(tab, page);
207 free(page);
210 static void
211 handle_imsg_check_cert(struct imsg *imsg, size_t datalen)
213 const char *hash, *host, *port;
214 int tofu_res;
215 struct tofu_entry *e;
216 struct tab *tab;
218 hash = imsg->data;
219 if (hash[datalen-1] != '\0')
220 abort();
222 if ((tab = tab_by_id(imsg->hdr.peerid)) == NULL)
223 return;
225 if (tab->proxy != NULL) {
226 host = tab->proxy->host;
227 port = tab->proxy->port;
228 } else {
229 host = tab->uri.host;
230 port = tab->uri.port;
233 if ((e = tofu_lookup(&certs, host, port)) == NULL) {
234 /* TODO: an update in libressl/libretls changed
235 * significantly. Find a better approach at storing
236 * the certs! */
237 if (datalen > sizeof(e->hash))
238 abort();
240 tofu_res = 1; /* trust on first use */
241 if ((e = calloc(1, sizeof(*e))) == NULL)
242 abort();
243 strlcpy(e->domain, host, sizeof(e->domain));
244 if (*port != '\0' && strcmp(port, "1965")) {
245 strlcat(e->domain, ":", sizeof(e->domain));
246 strlcat(e->domain, port, sizeof(e->domain));
248 strlcpy(e->hash, hash, sizeof(e->hash));
249 tofu_add(&certs, e);
250 ui_send_fs(IMSG_SAVE_CERT, tab->id, e, sizeof(*e));
251 } else
252 tofu_res = !strcmp(hash, e->hash);
254 if (tofu_res) {
255 if (e->verified == -1)
256 tab->trust = TS_TEMP_TRUSTED;
257 else if (e->verified == 1)
258 tab->trust = TS_VERIFIED;
259 else
260 tab->trust = TS_TRUSTED;
262 ui_send_net(IMSG_CERT_STATUS, imsg->hdr.peerid,
263 &tofu_res, sizeof(tofu_res));
264 } else {
265 tab->trust = TS_UNTRUSTED;
266 load_page_from_str(tab, "# Certificate mismatch\n");
267 if ((tab->cert = strdup(hash)) == NULL)
268 die();
269 ui_yornp("Certificate mismatch. Proceed?",
270 handle_check_cert_user_choice, tab);
274 static void
275 handle_check_cert_user_choice(int accept, struct tab *tab)
277 ui_send_net(IMSG_CERT_STATUS, tab->id, &accept,
278 sizeof(accept));
280 if (accept) {
281 /*
282 * trust the certificate for this session only. If
283 * the page results in a redirect while we're asking
284 * the user to save, we'll end up with an invalid
285 * tabid (one request == one tab id). It also makes
286 * sense to save it for the current session if the
287 * user accepted it.
288 */
289 tofu_temp_trust(&certs, tab->uri.host, tab->uri.port,
290 tab->cert);
292 if (!safe_mode)
293 ui_yornp("Save the new certificate?",
294 handle_maybe_save_new_cert, tab);
295 else
296 message("Certificate temporarly trusted");
297 } else {
298 free(tab->cert);
299 tab->cert = NULL;
303 static void
304 handle_maybe_save_new_cert(int accept, struct tab *tab)
306 struct tofu_entry *e;
307 const char *host, *port;
309 if (tab->proxy != NULL) {
310 host = tab->proxy->host;
311 port = tab->proxy->port;
312 } else {
313 host = tab->uri.host;
314 port = tab->uri.port;
317 if (!accept)
318 goto end;
320 if ((e = calloc(1, sizeof(*e))) == NULL)
321 die();
323 strlcpy(e->domain, host, sizeof(e->domain));
324 if (*port != '\0' && strcmp(port, "1965")) {
325 strlcat(e->domain, ":", sizeof(e->domain));
326 strlcat(e->domain, port, sizeof(e->domain));
328 strlcpy(e->hash, tab->cert, sizeof(e->hash));
329 ui_send_fs(IMSG_UPDATE_CERT, 0, e, sizeof(*e));
331 tofu_update(&certs, e);
333 tab->trust = TS_TRUSTED;
335 end:
336 free(tab->cert);
337 tab->cert = NULL;
340 static inline int
341 normalize_code(int n)
343 if (n < 20) {
344 if (n == 10 || n == 11)
345 return n;
346 return 10;
347 } else if (n < 30) {
348 return 20;
349 } else if (n < 40) {
350 if (n == 30 || n == 31)
351 return n;
352 return 30;
353 } else if (n < 50) {
354 if (n <= 44)
355 return n;
356 return 40;
357 } else if (n < 60) {
358 if (n <= 53 || n == 59)
359 return n;
360 return 50;
361 } else if (n < 70) {
362 if (n <= 62)
363 return n;
364 return 60;
365 } else
366 return MALFORMED_RESPONSE;
369 static void
370 handle_imsg_got_code(struct imsg *imsg, size_t datalen)
372 struct tab *tab;
374 if ((tab = tab_by_id(imsg->hdr.peerid)) == NULL)
375 return;
377 if (sizeof(tab->code) != datalen)
378 die();
380 memcpy(&tab->code, imsg->data, sizeof(tab->code));
381 tab->code = normalize_code(tab->code);
382 if (tab->code != 30 && tab->code != 31)
383 tab->redirect_count = 0;
386 static void
387 handle_imsg_got_meta(struct imsg *imsg, size_t datalen)
389 struct tab *tab;
390 char buf[128];
392 if ((tab = tab_by_id(imsg->hdr.peerid)) == NULL)
393 return;
395 if (sizeof(tab->meta) <= datalen)
396 die();
398 memcpy(tab->meta, imsg->data, datalen);
400 if (tab->code < 10) { /* internal errors */
401 load_page_from_str(tab, err_pages[tab->code]);
402 } else if (tab->code < 20) { /* 1x */
403 load_page_from_str(tab, err_pages[tab->code]);
404 ui_require_input(tab, tab->code == 11, PROTO_GEMINI);
405 } else if (tab->code == 20) {
406 if (setup_parser_for(tab)) {
407 ui_send_net(IMSG_PROCEED, tab->id, NULL, 0);
408 } else if (safe_mode) {
409 load_page_from_str(tab,
410 err_pages[UNKNOWN_TYPE_OR_CSET]);
411 } else {
412 struct hist *h;
414 if ((h = hist_pop(&tab->hist)) != NULL)
415 tab->hist_cur = h;
416 snprintf(buf, sizeof(buf),
417 "Can't display \"%s\", save it?", tab->meta);
418 ui_yornp(buf, handle_maybe_save_page, tab);
420 } else if (tab->code < 40) { /* 3x */
421 tab->redirect_count++;
423 /* TODO: make customizable? */
424 if (tab->redirect_count > 5) {
425 load_page_from_str(tab,
426 err_pages[TOO_MUCH_REDIRECTS]);
427 } else
428 do_load_url(tab, tab->meta, NULL, LU_MODE_NOCACHE);
429 } else { /* 4x, 5x & 6x */
430 load_page_from_str(tab, err_pages[tab->code]);
434 static void
435 handle_maybe_save_page(int dosave, struct tab *tab)
437 const char *f;
438 char input[PATH_MAX];
440 /* XXX: this print a message that is confusing */
441 ui_on_tab_loaded(tab);
443 if (!dosave) {
444 stop_tab(tab);
445 return;
448 if ((f = strrchr(tab->uri.path, '/')) == NULL)
449 f = "";
450 else
451 f++;
453 strlcpy(input, download_path, sizeof(input));
454 strlcat(input, f, sizeof(input));
456 ui_read("Save to path", handle_save_page_path, tab, input);
459 static void
460 handle_save_page_path(const char *path, struct tab *tab)
462 if (path == NULL) {
463 stop_tab(tab);
464 return;
467 ui_show_downloads_pane();
469 enqueue_download(tab->id, path);
470 ui_send_fs(IMSG_FILE_OPEN, tab->id, path, strlen(path)+1);
472 /*
473 * Change this tab id, the old one is associated with the
474 * download now.
475 */
476 tab->id = tab_new_id();
479 static void
480 handle_imsg_file_opened(struct imsg *imsg, size_t datalen)
482 struct download *d;
483 const char *e;
485 /*
486 * There are no reason we shouldn't be able to find the
487 * required download.
488 */
489 if ((d = download_by_id(imsg->hdr.peerid)) == NULL)
490 die();
492 if (imsg->fd == -1) {
493 e = imsg->data;
494 if (e[datalen-1] != '\0')
495 die();
496 message("Can't open file %s: %s", d->path, e);
497 } else {
498 d->fd = imsg->fd;
499 ui_send_net(IMSG_PROCEED, d->id, NULL, 0);
503 static void
504 handle_imsg_session(struct imsg *imsg, size_t datalen)
506 static struct tab *curr;
507 static struct tab *tab;
508 struct session_tab st;
509 struct session_tab_hist sth;
510 struct hist *h;
511 int first_time;
513 /*
514 * The fs process tried to send tabs after it has announced
515 * that he's done. Something fishy is going on, better die.
516 */
517 if (operating)
518 die();
520 switch (imsg->hdr.type) {
521 case IMSG_SESSION_TAB:
522 if (datalen != sizeof(st))
523 die();
525 memcpy(&st, imsg->data, sizeof(st));
526 if ((tab = new_tab(st.uri, NULL, NULL)) == NULL)
527 die();
528 tab->hist_cur->line_off = st.top_line;
529 tab->hist_cur->current_off = st.current_line;
530 strlcpy(tab->buffer.page.title, st.title,
531 sizeof(tab->buffer.page.title));
532 if (st.flags & TAB_CURRENT)
533 curr = tab;
534 if (st.flags & TAB_KILLED)
535 kill_tab(tab, 1);
536 break;
538 case IMSG_SESSION_TAB_HIST:
539 if (tab == NULL || datalen != sizeof(sth))
540 die();
542 memcpy(&sth, imsg->data, sizeof(sth));
543 if (sth.uri[sizeof(sth.uri)-1] != '\0')
544 die();
546 if ((h = calloc(1, sizeof(*h))) == NULL)
547 die();
548 strlcpy(h->h, sth.uri, sizeof(h->h));
550 if (sth.future)
551 hist_push(&tab->hist, h);
552 else
553 hist_add_before(&tab->hist, tab->hist_cur, h);
554 break;
556 case IMSG_SESSION_END:
557 if (datalen != sizeof(first_time))
558 die();
559 memcpy(&first_time, imsg->data, sizeof(first_time));
560 if (first_time) {
561 new_tab("about:new", NULL, NULL);
562 curr = new_tab("about:help", NULL, NULL);
565 operating = 1;
566 if (curr != NULL)
567 switch_to_tab(curr);
568 if (has_url || TAILQ_EMPTY(&tabshead))
569 new_tab(url, NULL, NULL);
570 ui_main_loop();
571 break;
573 default:
574 die();
578 static void
579 handle_imsg_buf(struct imsg *imsg, size_t datalen)
581 struct tab *tab = NULL;
582 struct download *d = NULL;
584 if ((tab = tab_by_id(imsg->hdr.peerid)) == NULL &&
585 (d = download_by_id(imsg->hdr.peerid)) == NULL)
586 return;
588 if (tab != NULL) {
589 if (!parser_parse(tab, imsg->data, datalen))
590 die();
591 ui_on_tab_refresh(tab);
592 } else {
593 d->bytes += datalen;
594 write(d->fd, imsg->data, datalen);
595 ui_on_download_refresh();
599 static void
600 handle_imsg_eof(struct imsg *imsg, size_t datalen)
602 struct tab *tab = NULL;
603 struct download *d = NULL;
605 if ((tab = tab_by_id(imsg->hdr.peerid)) == NULL &&
606 (d = download_by_id(imsg->hdr.peerid)) == NULL)
607 return;
609 if (tab != NULL) {
610 if (!parser_free(tab))
611 die();
612 if (has_prefix(tab->hist_cur->h, "gemini://") ||
613 has_prefix(tab->hist_cur->h, "gopher://"))
614 mcache_tab(tab);
615 ui_on_tab_refresh(tab);
616 ui_on_tab_loaded(tab);
617 } else {
618 close(d->fd);
619 d->fd = -1;
620 ui_on_download_refresh();
624 static void
625 handle_imsg_tofu(struct imsg *imsg, size_t datalen)
627 struct tofu_entry *e;
629 if (operating)
630 die();
632 if ((e = calloc(1, sizeof(*e))) == NULL)
633 die();
635 if (datalen != sizeof(*e))
636 die();
637 memcpy(e, imsg->data, sizeof(*e));
638 if (e->domain[sizeof(e->domain)-1] != '\0' ||
639 e->hash[sizeof(e->hash)-1] != '\0')
640 die();
641 tofu_add(&certs, e);
644 static void
645 handle_imsg_bookmark_ok(struct imsg *imsg, size_t datalen)
647 int res;
649 if (datalen != sizeof(res))
650 die();
652 memcpy(&res, imsg->data, sizeof(res));
653 if (res == 0)
654 message("Added to bookmarks!");
655 else
656 message("Failed to add to bookmarks: %s",
657 strerror(res));
660 static void
661 handle_imsg_save_cert_ok(struct imsg *imsg, size_t datalen)
663 int res;
665 if (datalen != sizeof(res))
666 die();
667 memcpy(&res, imsg->data, datalen);
668 if (res != 0)
669 message("Failed to save the cert for: %s",
670 strerror(res));
673 static void
674 handle_imsg_update_cert_ok(struct imsg *imsg, size_t datalen)
676 int res;
678 if (datalen != sizeof(res))
679 die();
680 memcpy(&res, imsg->data, datalen);
681 if (!res)
682 message("Failed to update the certificate");
685 static void
686 handle_dispatch_imsg(int fd, short ev, void *d)
688 struct imsgev *iev = d;
690 if (dispatch_imsg(iev, ev, handlers, sizeof(handlers)) == -1)
691 err(1, "connection closed");
694 static int
695 load_about_url(struct tab *tab, const char *url)
697 tab->trust = TS_UNKNOWN;
698 parser_init(tab, gemtext_initparser);
699 return make_fs_request(tab, IMSG_GET, url);
702 static int
703 load_file_url(struct tab *tab, const char *url)
705 tab->trust = TS_UNKNOWN;
706 return make_fs_request(tab, IMSG_GET_FILE, tab->uri.path);
709 static int
710 load_finger_url(struct tab *tab, const char *url)
712 struct get_req req;
713 size_t len;
714 char *at;
716 memset(&req, 0, sizeof(req));
717 strlcpy(req.port, tab->uri.port, sizeof(req.port));
719 /*
720 * Sometimes the finger url have the user as path component
721 * (e.g. finger://thelambdalab.xyz/plugd), sometimes as
722 * userinfo (e.g. finger://cobradile@finger.farm).
723 */
724 if ((at = strchr(tab->uri.host, '@')) != NULL) {
725 len = at - tab->uri.host;
726 memcpy(req.req, tab->uri.host, len);
728 if (len >= sizeof(req.req))
729 die();
730 req.req[len] = '\0';
732 strlcpy(req.host, at+1, sizeof(req.host));
733 } else {
734 strlcpy(req.host, tab->uri.host, sizeof(req.host));
736 /* +1 to skip the initial `/' */
737 strlcpy(req.req, tab->uri.path+1, sizeof(req.req));
739 strlcat(req.req, "\r\n", sizeof(req.req));
741 parser_init(tab, textplain_initparser);
742 return make_request(tab, &req, PROTO_FINGER, NULL);
745 static int
746 load_gemini_url(struct tab *tab, const char *url)
748 struct get_req req;
750 memset(&req, 0, sizeof(req));
751 strlcpy(req.host, tab->uri.host, sizeof(req.host));
752 strlcpy(req.port, tab->uri.port, sizeof(req.port));
754 return make_request(tab, &req, PROTO_GEMINI, tab->hist_cur->h);
757 static inline const char *
758 gopher_skip_selector(const char *path, int *ret_type)
760 *ret_type = 0;
762 if (!strcmp(path, "/") || *path == '\0') {
763 *ret_type = '1';
764 return path;
767 if (*path != '/')
768 return path;
769 path++;
771 switch (*ret_type = *path) {
772 case '0':
773 case '1':
774 case '7':
775 break;
777 default:
778 *ret_type = 0;
779 path -= 1;
780 return path;
783 return ++path;
786 static int
787 load_gopher_url(struct tab *tab, const char *url)
789 struct get_req req;
790 int type;
791 const char *path;
793 memset(&req, 0, sizeof(req));
794 strlcpy(req.host, tab->uri.host, sizeof(req.host));
795 strlcpy(req.port, tab->uri.port, sizeof(req.port));
797 path = gopher_skip_selector(tab->uri.path, &type);
798 switch (type) {
799 case '0':
800 parser_init(tab, textplain_initparser);
801 break;
802 case '1':
803 parser_init(tab, gophermap_initparser);
804 break;
805 case '7':
806 ui_require_input(tab, 0, PROTO_GOPHER);
807 return load_page_from_str(tab, err_pages[10]);
808 default:
809 return load_page_from_str(tab, "Unknown gopher selector");
812 strlcpy(req.req, path, sizeof(req.req));
813 if (*tab->uri.query != '\0') {
814 strlcat(req.req, "?", sizeof(req.req));
815 strlcat(req.req, tab->uri.query, sizeof(req.req));
817 strlcat(req.req, "\r\n", sizeof(req.req));
819 return make_request(tab, &req, PROTO_GOPHER, NULL);
822 static int
823 load_via_proxy(struct tab *tab, const char *url, struct proxy *p)
825 struct get_req req;
827 memset(&req, 0, sizeof(req));
828 strlcpy(req.host, p->host, sizeof(req.host));
829 strlcpy(req.port, p->port, sizeof(req.port));
831 tab->proxy = p;
833 return make_request(tab, &req, p->proto, tab->hist_cur->h);
836 static int
837 make_request(struct tab *tab, struct get_req *req, int proto, const char *r)
839 stop_tab(tab);
840 tab->id = tab_new_id();
841 req->proto = proto;
843 if (r != NULL) {
844 strlcpy(req->req, r, sizeof(req->req));
845 strlcat(req->req, "\r\n", sizeof(req->req));
848 start_loading_anim(tab);
849 ui_send_net(IMSG_GET_RAW, tab->id, req, sizeof(*req));
851 /*
852 * So the various load_*_url can `return make_request` and
853 * do_load_url is happy.
854 */
855 return 1;
858 static int
859 make_fs_request(struct tab *tab, int type, const char *r)
861 stop_tab(tab);
862 tab->id = tab_new_id();
864 ui_send_fs(type, tab->id, r, strlen(r)+1);
866 /*
867 * So load_{about,file}_url can `return make_fs_request` and
868 * do_load_url is happy.
869 */
870 return 1;
873 void
874 gopher_send_search_req(struct tab *tab, const char *text)
876 struct get_req req;
878 memset(&req, 0, sizeof(req));
879 strlcpy(req.host, tab->uri.host, sizeof(req.host));
880 strlcpy(req.port, tab->uri.port, sizeof(req.port));
882 /* +2 to skip /7 */
883 strlcpy(req.req, tab->uri.path+2, sizeof(req.req));
884 if (*tab->uri.query != '\0') {
885 strlcat(req.req, "?", sizeof(req.req));
886 strlcat(req.req, tab->uri.query, sizeof(req.req));
889 strlcat(req.req, "\t", sizeof(req.req));
890 strlcat(req.req, text, sizeof(req.req));
891 strlcat(req.req, "\r\n", sizeof(req.req));
893 erase_buffer(&tab->buffer);
894 parser_init(tab, gophermap_initparser);
896 make_request(tab, &req, PROTO_GOPHER, NULL);
899 int
900 load_page_from_str(struct tab *tab, const char *page)
902 parser_init(tab, gemtext_initparser);
903 if (!tab->buffer.page.parse(&tab->buffer.page, page, strlen(page)))
904 abort();
905 if (!tab->buffer.page.free(&tab->buffer.page))
906 abort();
907 ui_on_tab_refresh(tab);
908 ui_on_tab_loaded(tab);
909 return 0;
912 /*
913 * Effectively load the given url in the given tab. Return 1 when
914 * loading the page asynchronously, and thus when an erase_buffer can
915 * be done right after this function return, or 0 when loading the
916 * page synchronously.
917 */
918 static int
919 do_load_url(struct tab *tab, const char *url, const char *base, int mode)
921 struct phos_uri uri;
922 struct proto *p;
923 struct proxy *proxy;
924 int nocache = mode & LU_MODE_NOCACHE;
925 char *t;
927 tab->proxy = NULL;
928 tab->trust = TS_UNKNOWN;
930 if (base == NULL)
931 memcpy(&uri, &tab->uri, sizeof(tab->uri));
932 else
933 phos_parse_absolute_uri(base, &uri);
935 if (!phos_resolve_uri_from_str(&uri, url, &tab->uri)) {
936 if (asprintf(&t, "#error loading %s\n>%s\n",
937 url, "Can't parse the URI") == -1)
938 die();
939 strlcpy(tab->hist_cur->h, url, sizeof(tab->hist_cur->h));
940 load_page_from_str(tab, t);
941 free(t);
942 return 0;
945 phos_serialize_uri(&tab->uri, tab->hist_cur->h,
946 sizeof(tab->hist_cur->h));
948 if (!nocache && mcache_lookup(tab->hist_cur->h, tab)) {
949 ui_on_tab_refresh(tab);
950 ui_on_tab_loaded(tab);
951 return 0;
954 for (p = protos; p->schema != NULL; ++p) {
955 if (!strcmp(tab->uri.scheme, p->schema)) {
956 /* patch the port */
957 if (*tab->uri.port == '\0' && p->port != NULL)
958 strlcpy(tab->uri.port, p->port,
959 sizeof(tab->uri.port));
961 return p->loadfn(tab, tab->hist_cur->h);
965 TAILQ_FOREACH(proxy, &proxies, proxies) {
966 if (!strcmp(tab->uri.scheme, proxy->match_proto))
967 return load_via_proxy(tab, url, proxy);
970 return load_page_from_str(tab, err_pages[UNKNOWN_PROTOCOL]);
973 /*
974 * Load url in tab and handle history. If a tab is marked as lazy, only
975 * prepare the url but don't load it.
976 */
977 void
978 load_url(struct tab *tab, const char *url, const char *base, int mode)
980 int lazy = tab->flags & TAB_LAZY;
981 int nohist = mode & LU_MODE_NOHIST;
983 if (operating && lazy) {
984 tab->flags ^= TAB_LAZY;
985 lazy = 0;
986 } else if (tab->hist_cur != NULL)
987 get_scroll_position(tab, &tab->hist_cur->line_off,
988 &tab->hist_cur->current_off);
990 if (!nohist && (!lazy || tab->hist_cur == NULL)) {
991 if (tab->hist_cur != NULL)
992 hist_clear_forward(&tab->hist,
993 TAILQ_NEXT(tab->hist_cur, entries));
995 if ((tab->hist_cur = calloc(1, sizeof(*tab->hist_cur)))
996 == NULL) {
997 event_loopbreak();
998 return;
1001 strlcpy(tab->buffer.page.title, url,
1002 sizeof(tab->buffer.page.title));
1003 hist_push(&tab->hist, tab->hist_cur);
1005 if (lazy)
1006 strlcpy(tab->hist_cur->h, url,
1007 sizeof(tab->hist_cur->h));
1010 if (!lazy)
1011 do_load_url(tab, url, base, mode);
1014 void
1015 load_url_in_tab(struct tab *tab, const char *url, const char *base, int mode)
1017 if (operating) {
1018 autosave_hook();
1019 message("Loading %s...", url);
1022 load_url(tab, url, base, mode);
1025 int
1026 load_previous_page(struct tab *tab)
1028 struct hist *h;
1030 if ((h = TAILQ_PREV(tab->hist_cur, mhisthead, entries)) == NULL)
1031 return 0;
1032 tab->hist_cur = h;
1033 do_load_url(tab, h->h, NULL, LU_MODE_NONE);
1034 return 1;
1037 int
1038 load_next_page(struct tab *tab)
1040 struct hist *h;
1042 if ((h = TAILQ_NEXT(tab->hist_cur, entries)) == NULL)
1043 return 0;
1044 tab->hist_cur = h;
1045 do_load_url(tab, h->h, NULL, LU_MODE_NONE);
1046 return 1;
1049 void
1050 add_to_bookmarks(const char *str)
1052 ui_send_fs(IMSG_BOOKMARK_PAGE, 0,
1053 str, strlen(str)+1);
1057 * Given a user-entered URL, apply some heuristics to use it:
1059 * - if it's a proper url use it
1060 * - if it starts with a `./' or a `/' assume its a file:// url
1061 * - assume it's a gemini:// url
1063 * `ret' (of which len is the size) will be filled with the resulting
1064 * url.
1066 void
1067 humanify_url(const char *raw, char *ret, size_t len)
1069 struct phos_uri uri;
1070 char buf[PATH_MAX];
1072 if (phos_parse_absolute_uri(raw, &uri)) {
1073 strlcpy(ret, raw, len);
1074 return;
1077 if (has_prefix(raw, "./")) {
1078 strlcpy(ret, "file://", len);
1079 getcwd(buf, sizeof(buf));
1080 strlcat(ret, buf, len);
1081 strlcat(ret, "/", len);
1082 strlcat(ret, raw+2, len);
1083 return;
1086 if (*raw == '/') {
1087 strlcpy(ret, "file://", len);
1088 strlcat(ret, raw, len);
1089 return;
1092 strlcpy(ret, "gemini://", len);
1093 strlcat(ret, raw, len);
1096 static pid_t
1097 start_child(enum telescope_process p, const char *argv0, int fd)
1099 const char *argv[5];
1100 int argc = 0;
1101 pid_t pid;
1103 switch (pid = fork()) {
1104 case -1:
1105 die();
1106 case 0:
1107 break;
1108 default:
1109 close(fd);
1110 return pid;
1113 if (dup2(fd, 3) == -1)
1114 err(1, "cannot setup imsg fd");
1116 argv[argc++] = argv0;
1117 switch (p) {
1118 case PROC_UI:
1119 errx(1, "Can't start ui process");
1120 case PROC_FS:
1121 argv[argc++] = "-Tf";
1122 break;
1123 case PROC_NET:
1124 argv[argc++] = "-Tn";
1125 break;
1128 if (safe_mode)
1129 argv[argc++] = "-S";
1131 argv[argc++] = NULL;
1132 execvp(argv0, (char *const *)argv);
1133 err(1, "execvp(%s)", argv0);
1136 int
1137 ui_send_net(int type, uint32_t peerid, const void *data,
1138 uint16_t datalen)
1140 return imsg_compose_event(iev_net, type, peerid, 0, -1, data,
1141 datalen);
1144 int
1145 ui_send_fs(int type, uint32_t peerid, const void *data, uint16_t datalen)
1147 return imsg_compose_event(iev_fs, type, peerid, 0, -1, data,
1148 datalen);
1151 static void __attribute__((noreturn))
1152 usage(int r)
1154 fprintf(stderr, "USAGE: %s [-ChnSv] [-c config] [url]\n",
1155 getprogname());
1156 fprintf(stderr, "version: " PACKAGE " " VERSION "\n");
1157 exit(r);
1160 int
1161 main(int argc, char * const *argv)
1163 struct imsgev net_ibuf, fs_ibuf;
1164 pid_t pid;
1165 int pipe2net[2], pipe2fs[2];
1166 int ch, configtest = 0, fail = 0;
1167 int proc = -1;
1168 int sessionfd = -1;
1169 int status;
1170 const char *argv0;
1172 argv0 = argv[0];
1174 signal(SIGCHLD, SIG_IGN);
1175 signal(SIGPIPE, SIG_IGN);
1177 if (getenv("NO_COLOR") != NULL)
1178 enable_colors = 0;
1180 fs_init();
1182 while ((ch = getopt_long(argc, argv, opts, longopts, NULL)) != -1) {
1183 switch (ch) {
1184 case 'C':
1185 exit(ui_print_colors());
1186 case 'c':
1187 fail = 1;
1188 strlcpy(config_path, optarg, sizeof(config_path));
1189 break;
1190 case 'n':
1191 configtest = 1;
1192 break;
1193 case 'h':
1194 usage(0);
1195 case 'S':
1196 safe_mode = 1;
1197 break;
1198 case 'T':
1199 switch (*optarg) {
1200 case 'f':
1201 proc = PROC_FS;
1202 break;
1203 case 'n':
1204 proc = PROC_NET;
1205 break;
1206 default:
1207 errx(1, "invalid process spec %c",
1208 *optarg);
1210 break;
1211 case 'v':
1212 printf("%s %s\n", PACKAGE_NAME, PACKAGE_VERSION);
1213 exit(0);
1214 break;
1215 default:
1216 usage(1);
1220 argc -= optind;
1221 argv += optind;
1223 if (proc != -1) {
1224 if (argc > 0)
1225 usage(1);
1226 else if (proc == PROC_FS)
1227 return fs_main();
1228 else if (proc == PROC_NET)
1229 return net_main();
1230 else
1231 usage(1);
1234 if (argc != 0) {
1235 has_url = 1;
1236 humanify_url(argv[0], url, sizeof(url));
1239 /* setup keys before reading the config */
1240 TAILQ_INIT(&global_map.m);
1241 global_map.unhandled_input = global_key_unbound;
1242 TAILQ_INIT(&minibuffer_map.m);
1244 config_init();
1245 parseconfig(config_path, fail);
1246 if (configtest) {
1247 puts("config OK");
1248 exit(0);
1251 if (download_path == NULL &&
1252 (download_path = strdup("/tmp/")) == NULL)
1253 errx(1, "strdup");
1255 if (!safe_mode && (sessionfd = lock_session()) == -1)
1256 errx(1, "can't lock session, is another instance of "
1257 "telescope already running?");
1259 /* Start children. */
1260 if (socketpair(AF_UNIX, SOCK_STREAM, PF_UNSPEC, pipe2fs) == -1)
1261 err(1, "socketpair");
1262 start_child(PROC_FS, argv0, pipe2fs[1]);
1263 imsg_init(&fs_ibuf.ibuf, pipe2fs[0]);
1264 iev_fs = &fs_ibuf;
1265 iev_fs->handler = handle_dispatch_imsg;
1267 if (socketpair(AF_UNIX, SOCK_STREAM, PF_UNSPEC, pipe2net) == -1)
1268 err(1, "socketpair");
1269 start_child(PROC_NET, argv0, pipe2net[1]);
1270 imsg_init(&net_ibuf.ibuf, pipe2net[0]);
1271 iev_net = &net_ibuf;
1272 iev_net->handler = handle_dispatch_imsg;
1274 setproctitle("ui");
1276 /* initialize tofu store */
1277 tofu_init(&certs, 5, offsetof(struct tofu_entry, domain));
1279 event_init();
1281 /* initialize the in-memory cache store */
1282 mcache_init();
1284 /* Setup event handler for the autosave */
1285 autosave_init();
1287 /* Setup event handlers for pipes to fs/net */
1288 iev_fs->events = EV_READ;
1289 event_set(&iev_fs->ev, iev_fs->ibuf.fd, iev_fs->events,
1290 iev_fs->handler, iev_fs);
1291 event_add(&iev_fs->ev, NULL);
1293 iev_net->events = EV_READ;
1294 event_set(&iev_net->ev, iev_net->ibuf.fd, iev_net->events,
1295 iev_net->handler, iev_net);
1296 event_add(&iev_net->ev, NULL);
1298 if (ui_init()) {
1299 sandbox_ui_process();
1300 ui_send_fs(IMSG_INIT, 0, NULL, 0);
1301 event_dispatch();
1302 ui_end();
1305 ui_send_fs(IMSG_QUIT, 0, NULL, 0);
1306 ui_send_net(IMSG_QUIT, 0, NULL, 0);
1307 imsg_flush(&iev_fs->ibuf);
1308 imsg_flush(&iev_net->ibuf);
1310 /* wait for children to terminate */
1311 do {
1312 pid = wait(&status);
1313 if (pid == -1) {
1314 if (errno != EINTR && errno != ECHILD)
1315 err(1, "wait");
1316 } else if (WIFSIGNALED(status))
1317 warnx("child terminated; signal %d", WTERMSIG(status));
1318 } while (pid != -1 || (pid == -1 && errno == EINTR));
1320 if (!safe_mode && close(sessionfd) == -1)
1321 err(1, "close(sessionfd = %d)", sessionfd);
1323 return 0;