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/un.h>
21 #include <sys/wait.h>
23 #include <errno.h>
24 #include <getopt.h>
25 #include <signal.h>
26 #include <stdio.h>
27 #include <stdlib.h>
28 #include <string.h>
29 #include <unistd.h>
31 #include "control.h"
32 #include "defaults.h"
33 #include "fs.h"
34 #include "mcache.h"
35 #include "minibuffer.h"
36 #include "parser.h"
37 #include "session.h"
38 #include "telescope.h"
39 #include "ui.h"
40 #include "utils.h"
42 static const struct option longopts[] = {
43 {"colors", no_argument, NULL, 'C'},
44 {"colours", no_argument, NULL, 'C'},
45 {"help", no_argument, NULL, 'h'},
46 {"safe", no_argument, NULL, 'S'},
47 {"version", no_argument, NULL, 'v'},
48 {NULL, 0, NULL, 0},
49 };
51 static const char *opts = "Cc:hnST:v";
53 static int has_url;
54 static char url[GEMINI_URL_LEN];
56 /*
57 * Used to know when we're finished loading.
58 */
59 int operating;
61 /*
62 * "Safe" (or "sandobox") mode. If enabled, Telescope shouldn't write
63 * anything to the filesystem or execute external programs.
64 */
65 int safe_mode;
67 static struct imsgev *iev_fs, *iev_net;
69 struct tabshead tabshead = TAILQ_HEAD_INITIALIZER(tabshead);
70 struct tabshead ktabshead = TAILQ_HEAD_INITIALIZER(ktabshead);
71 struct proxylist proxies = TAILQ_HEAD_INITIALIZER(proxies);
73 enum telescope_process {
74 PROC_UI,
75 PROC_FS,
76 PROC_NET,
77 };
79 #define CANNOT_FETCH 0
80 #define TOO_MUCH_REDIRECTS 1
81 #define MALFORMED_RESPONSE 2
82 #define UNKNOWN_TYPE_OR_CSET 3
83 #define UNKNOWN_PROTOCOL 4
85 /* XXX: keep in sync with normalize_code */
86 const char *err_pages[70] = {
87 [CANNOT_FETCH] = "# Couldn't load the page\n",
88 [TOO_MUCH_REDIRECTS] = "# Too much redirects\n",
89 [MALFORMED_RESPONSE] = "# Got a malformed response\n",
90 [UNKNOWN_TYPE_OR_CSET] = "# Unsupported type or charset\n",
91 [UNKNOWN_PROTOCOL] = "# Unknown protocol\n",
93 [10] = "# Input required\n",
94 [11] = "# Input required\n",
95 [40] = "# Temporary failure\n",
96 [41] = "# Server unavailable\n",
97 [42] = "# CGI error\n",
98 [43] = "# Proxy error\n",
99 [44] = "# Slow down\n",
100 [50] = "# Permanent failure\n",
101 [51] = "# Not found\n",
102 [52] = "# Gone\n",
103 [53] = "# Proxy request refused\n",
104 [59] = "# Bad request\n",
105 [60] = "# Client certificate required\n",
106 [61] = "# Certificate not authorised\n",
107 [62] = "# Certificate not valid\n"
108 };
110 static void die(void) __attribute__((__noreturn__));
111 static struct tab *tab_by_id(uint32_t);
112 static void handle_imsg_err(struct imsg *, size_t);
113 static void handle_imsg_check_cert(struct imsg *, size_t);
114 static void handle_check_cert_user_choice(int, struct tab *);
115 static void handle_maybe_save_new_cert(int, struct tab *);
116 static void handle_imsg_got_code(struct imsg *, size_t);
117 static void handle_imsg_got_meta(struct imsg *, size_t);
118 static void handle_maybe_save_page(int, struct tab *);
119 static void handle_save_page_path(const char *, struct tab *);
120 static void handle_imsg_file_opened(struct imsg *, size_t);
121 static void handle_imsg_buf(struct imsg *, size_t);
122 static void handle_imsg_eof(struct imsg *, size_t);
123 static void handle_imsg_tofu(struct imsg *, size_t);
124 static void handle_imsg_bookmark_ok(struct imsg *, size_t);
125 static void handle_imsg_save_cert_ok(struct imsg *, size_t);
126 static void handle_imsg_update_cert_ok(struct imsg *, size_t);
127 static void handle_imsg_session(struct imsg *, size_t);
128 static void handle_imsg_history(struct imsg *, size_t);
129 static void handle_dispatch_imsg(int, short, void *);
130 static int load_about_url(struct tab *, const char *);
131 static int load_file_url(struct tab *, const char *);
132 static int load_finger_url(struct tab *, const char *);
133 static int load_gemini_url(struct tab *, const char *);
134 static int load_gopher_url(struct tab *, const char *);
135 static int load_via_proxy(struct tab *, const char *,
136 struct proxy *);
137 static int make_request(struct tab *, struct get_req *, int,
138 const char *);
139 static int make_fs_request(struct tab *, int, const char *);
140 static int do_load_url(struct tab *, const char *, const char *, int);
141 static pid_t start_child(enum telescope_process, const char *, int);
142 static void send_url(const char *);
144 static const struct proto {
145 const char *schema;
146 const char *port;
147 int (*loadfn)(struct tab *, const char *);
148 } protos[] = {
149 {"about", NULL, load_about_url},
150 {"file", NULL, load_file_url},
151 {"finger", "79", load_finger_url},
152 {"gemini", "1965", load_gemini_url},
153 {"gopher", "70", load_gopher_url},
154 {NULL, NULL, NULL},
155 };
157 static imsg_handlerfn *handlers[] = {
158 [IMSG_ERR] = handle_imsg_err,
159 [IMSG_CHECK_CERT] = handle_imsg_check_cert,
160 [IMSG_GOT_CODE] = handle_imsg_got_code,
161 [IMSG_GOT_META] = handle_imsg_got_meta,
162 [IMSG_BUF] = handle_imsg_buf,
163 [IMSG_EOF] = handle_imsg_eof,
164 [IMSG_TOFU] = handle_imsg_tofu,
165 [IMSG_BOOKMARK_OK] = handle_imsg_bookmark_ok,
166 [IMSG_SAVE_CERT_OK] = handle_imsg_save_cert_ok,
167 [IMSG_UPDATE_CERT_OK] = handle_imsg_update_cert_ok,
168 [IMSG_FILE_OPENED] = handle_imsg_file_opened,
169 [IMSG_SESSION_TAB] = handle_imsg_session,
170 [IMSG_SESSION_TAB_HIST] = handle_imsg_session,
171 [IMSG_SESSION_END] = handle_imsg_session,
172 [IMSG_HIST_ITEM] = handle_imsg_history,
173 [IMSG_HIST_END] = handle_imsg_history,
174 };
176 static struct ohash certs;
178 static void __attribute__((__noreturn__))
179 die(void)
181 abort(); /* TODO */
184 static struct tab *
185 tab_by_id(uint32_t id)
187 struct tab *t;
189 TAILQ_FOREACH(t, &tabshead, tabs) {
190 if (t->id == id)
191 return t;
194 return NULL;
197 static void
198 handle_imsg_err(struct imsg *imsg, size_t datalen)
200 struct tab *tab;
201 char *page;
203 if ((tab = tab_by_id(imsg->hdr.peerid)) == NULL)
204 return;
206 page = imsg->data;
207 page[datalen-1] = '\0';
209 if (asprintf(&page, "# Error loading %s\n\n> %s\n",
210 tab->hist_cur->h, page) == -1)
211 die();
212 load_page_from_str(tab, page);
213 free(page);
216 static void
217 handle_imsg_check_cert(struct imsg *imsg, size_t datalen)
219 const char *hash, *host, *port;
220 int tofu_res;
221 struct tofu_entry *e;
222 struct tab *tab;
224 hash = imsg->data;
225 if (hash[datalen-1] != '\0')
226 abort();
228 if ((tab = tab_by_id(imsg->hdr.peerid)) == NULL)
229 return;
231 if (tab->proxy != NULL) {
232 host = tab->proxy->host;
233 port = tab->proxy->port;
234 } else {
235 host = tab->uri.host;
236 port = tab->uri.port;
239 if ((e = tofu_lookup(&certs, host, port)) == NULL) {
240 /* TODO: an update in libressl/libretls changed
241 * significantly. Find a better approach at storing
242 * the certs! */
243 if (datalen > sizeof(e->hash))
244 abort();
246 tofu_res = 1; /* trust on first use */
247 if ((e = calloc(1, sizeof(*e))) == NULL)
248 abort();
249 strlcpy(e->domain, host, sizeof(e->domain));
250 if (*port != '\0' && strcmp(port, "1965")) {
251 strlcat(e->domain, ":", sizeof(e->domain));
252 strlcat(e->domain, port, sizeof(e->domain));
254 strlcpy(e->hash, hash, sizeof(e->hash));
255 tofu_add(&certs, e);
256 ui_send_fs(IMSG_SAVE_CERT, tab->id, e, sizeof(*e));
257 } else
258 tofu_res = !strcmp(hash, e->hash);
260 if (tofu_res) {
261 if (e->verified == -1)
262 tab->trust = TS_TEMP_TRUSTED;
263 else if (e->verified == 1)
264 tab->trust = TS_VERIFIED;
265 else
266 tab->trust = TS_TRUSTED;
268 ui_send_net(IMSG_CERT_STATUS, imsg->hdr.peerid,
269 &tofu_res, sizeof(tofu_res));
270 } else {
271 tab->trust = TS_UNTRUSTED;
272 load_page_from_str(tab, "# Certificate mismatch\n");
273 if ((tab->cert = strdup(hash)) == NULL)
274 die();
275 ui_yornp("Certificate mismatch. Proceed?",
276 handle_check_cert_user_choice, tab);
280 static void
281 handle_check_cert_user_choice(int accept, struct tab *tab)
283 ui_send_net(IMSG_CERT_STATUS, tab->id, &accept,
284 sizeof(accept));
286 if (accept) {
287 /*
288 * trust the certificate for this session only. If
289 * the page results in a redirect while we're asking
290 * the user to save, we'll end up with an invalid
291 * tabid (one request == one tab id). It also makes
292 * sense to save it for the current session if the
293 * user accepted it.
294 */
295 tofu_temp_trust(&certs, tab->uri.host, tab->uri.port,
296 tab->cert);
298 if (!safe_mode)
299 ui_yornp("Save the new certificate?",
300 handle_maybe_save_new_cert, tab);
301 else
302 message("Certificate temporarly trusted");
303 } else {
304 free(tab->cert);
305 tab->cert = NULL;
309 static void
310 handle_maybe_save_new_cert(int accept, struct tab *tab)
312 struct tofu_entry *e;
313 const char *host, *port;
315 if (tab->proxy != NULL) {
316 host = tab->proxy->host;
317 port = tab->proxy->port;
318 } else {
319 host = tab->uri.host;
320 port = tab->uri.port;
323 if (!accept)
324 goto end;
326 if ((e = calloc(1, sizeof(*e))) == NULL)
327 die();
329 strlcpy(e->domain, host, sizeof(e->domain));
330 if (*port != '\0' && strcmp(port, "1965")) {
331 strlcat(e->domain, ":", sizeof(e->domain));
332 strlcat(e->domain, port, sizeof(e->domain));
334 strlcpy(e->hash, tab->cert, sizeof(e->hash));
335 ui_send_fs(IMSG_UPDATE_CERT, 0, e, sizeof(*e));
337 tofu_update(&certs, e);
339 tab->trust = TS_TRUSTED;
341 end:
342 free(tab->cert);
343 tab->cert = NULL;
346 static inline int
347 normalize_code(int n)
349 if (n < 20) {
350 if (n == 10 || n == 11)
351 return n;
352 return 10;
353 } else if (n < 30) {
354 return 20;
355 } else if (n < 40) {
356 if (n == 30 || n == 31)
357 return n;
358 return 30;
359 } else if (n < 50) {
360 if (n <= 44)
361 return n;
362 return 40;
363 } else if (n < 60) {
364 if (n <= 53 || n == 59)
365 return n;
366 return 50;
367 } else if (n < 70) {
368 if (n <= 62)
369 return n;
370 return 60;
371 } else
372 return MALFORMED_RESPONSE;
375 static void
376 handle_imsg_got_code(struct imsg *imsg, size_t datalen)
378 struct tab *tab;
380 if ((tab = tab_by_id(imsg->hdr.peerid)) == NULL)
381 return;
383 if (sizeof(tab->code) != datalen)
384 die();
386 memcpy(&tab->code, imsg->data, sizeof(tab->code));
387 tab->code = normalize_code(tab->code);
388 if (tab->code != 30 && tab->code != 31)
389 tab->redirect_count = 0;
392 static void
393 handle_imsg_got_meta(struct imsg *imsg, size_t datalen)
395 struct tab *tab;
396 char buf[128];
398 if ((tab = tab_by_id(imsg->hdr.peerid)) == NULL)
399 return;
401 if (sizeof(tab->meta) <= datalen)
402 die();
404 memcpy(tab->meta, imsg->data, datalen);
406 if (tab->code < 10) { /* internal errors */
407 load_page_from_str(tab, err_pages[tab->code]);
408 } else if (tab->code < 20) { /* 1x */
409 free(tab->last_input_url);
410 tab->last_input_url = strdup(tab->hist_cur->h);
411 if (tab->last_input_url == NULL)
412 die();
414 load_page_from_str(tab, err_pages[tab->code]);
415 ui_require_input(tab, tab->code == 11, ir_select_gemini);
416 } else if (tab->code == 20) {
417 history_add(tab->hist_cur->h);
418 if (setup_parser_for(tab)) {
419 ui_send_net(IMSG_PROCEED, tab->id, NULL, 0);
420 } else if (safe_mode) {
421 load_page_from_str(tab,
422 err_pages[UNKNOWN_TYPE_OR_CSET]);
423 } else {
424 struct hist *h;
426 if ((h = hist_pop(&tab->hist)) != NULL)
427 tab->hist_cur = h;
428 snprintf(buf, sizeof(buf),
429 "Can't display \"%s\", save it?", tab->meta);
430 ui_yornp(buf, handle_maybe_save_page, tab);
432 } else if (tab->code < 40) { /* 3x */
433 tab->redirect_count++;
435 /* TODO: make customizable? */
436 if (tab->redirect_count > 5) {
437 load_page_from_str(tab,
438 err_pages[TOO_MUCH_REDIRECTS]);
439 } else
440 do_load_url(tab, tab->meta, NULL, LU_MODE_NOCACHE);
441 } else { /* 4x, 5x & 6x */
442 load_page_from_str(tab, err_pages[tab->code]);
446 static void
447 handle_maybe_save_page(int dosave, struct tab *tab)
449 const char *f;
450 char input[PATH_MAX];
452 /* XXX: this print a message that is confusing */
453 ui_on_tab_loaded(tab);
455 if (!dosave) {
456 stop_tab(tab);
457 return;
460 if ((f = strrchr(tab->uri.path, '/')) == NULL)
461 f = "";
462 else
463 f++;
465 strlcpy(input, download_path, sizeof(input));
466 strlcat(input, f, sizeof(input));
468 ui_read("Save to path", handle_save_page_path, tab, input);
471 static void
472 handle_save_page_path(const char *path, struct tab *tab)
474 if (path == NULL) {
475 stop_tab(tab);
476 return;
479 ui_show_downloads_pane();
481 enqueue_download(tab->id, path, 0);
482 ui_send_fs(IMSG_FILE_OPEN, tab->id, path, strlen(path)+1);
484 /*
485 * Change this tab id, the old one is associated with the
486 * download now.
487 */
488 tab->id = tab_new_id();
491 static void
492 handle_imsg_file_opened(struct imsg *imsg, size_t datalen)
494 struct download *d;
495 const char *e;
497 /*
498 * There are no reason we shouldn't be able to find the
499 * required download.
500 */
501 if ((d = download_by_id(imsg->hdr.peerid)) == NULL)
502 die();
504 if (imsg->fd == -1) {
505 e = imsg->data;
506 if (e[datalen-1] != '\0')
507 die();
508 message("Can't open file %s: %s", d->path, e);
509 } else if (d->buffer) {
510 FILE *fp;
511 int r;
513 if ((fp = fdopen(imsg->fd, "w")) != NULL) {
514 r = parser_serialize(current_tab, fp);
515 if (!r)
516 message("Failed to save the page.");
517 fclose(fp);
520 dequeue_first_download();
521 } else {
522 d->fd = imsg->fd;
523 ui_send_net(IMSG_PROCEED, d->id, NULL, 0);
527 static void
528 handle_imsg_session(struct imsg *imsg, size_t datalen)
530 static struct tab *curr;
531 static struct tab *tab;
532 struct session_tab st;
533 struct session_tab_hist sth;
534 struct hist *h;
535 int first_time;
537 /*
538 * The fs process tried to send tabs after it has announced
539 * that he's done. Something fishy is going on, better die.
540 */
541 if (operating)
542 die();
544 switch (imsg->hdr.type) {
545 case IMSG_SESSION_TAB:
546 if (datalen != sizeof(st))
547 die();
549 memcpy(&st, imsg->data, sizeof(st));
550 if ((tab = new_tab(st.uri, NULL, NULL)) == NULL)
551 die();
552 tab->hist_cur->line_off = st.top_line;
553 tab->hist_cur->current_off = st.current_line;
554 strlcpy(tab->buffer.page.title, st.title,
555 sizeof(tab->buffer.page.title));
556 if (st.flags & TAB_CURRENT)
557 curr = tab;
558 if (st.flags & TAB_KILLED)
559 kill_tab(tab, 1);
560 break;
562 case IMSG_SESSION_TAB_HIST:
563 if (tab == NULL || datalen != sizeof(sth))
564 die();
566 memcpy(&sth, imsg->data, sizeof(sth));
567 if (sth.uri[sizeof(sth.uri)-1] != '\0')
568 die();
570 if ((h = calloc(1, sizeof(*h))) == NULL)
571 die();
572 strlcpy(h->h, sth.uri, sizeof(h->h));
574 if (sth.future)
575 hist_push(&tab->hist, h);
576 else
577 hist_add_before(&tab->hist, tab->hist_cur, h);
578 break;
580 case IMSG_SESSION_END:
581 if (datalen != sizeof(first_time))
582 die();
583 memcpy(&first_time, imsg->data, sizeof(first_time));
584 if (first_time) {
585 new_tab("about:new", NULL, NULL);
586 curr = new_tab("about:help", NULL, NULL);
589 operating = 1;
590 if (curr != NULL)
591 switch_to_tab(curr);
592 if (has_url || TAILQ_EMPTY(&tabshead))
593 new_tab(url, NULL, NULL);
594 ui_main_loop();
595 break;
597 default:
598 die();
602 static void
603 handle_imsg_history(struct imsg *imsg, size_t datalen)
605 struct histitem hi;
607 /*
608 * The fs process tried to send history item after it
609 * has announced that it's done. Something fishy is
610 * going on, better die
611 */
612 if (operating)
613 die();
615 switch (imsg->hdr.type) {
616 case IMSG_HIST_ITEM:
617 if (datalen != sizeof(hi))
618 die();
620 memcpy(&hi, imsg->data, sizeof(hi));
621 history_push(&hi);
622 break;
624 case IMSG_HIST_END:
625 history_sort();
626 break;
628 default:
629 die();
633 static void
634 handle_imsg_buf(struct imsg *imsg, size_t datalen)
636 struct tab *tab = NULL;
637 struct download *d = NULL;
639 if ((tab = tab_by_id(imsg->hdr.peerid)) == NULL &&
640 (d = download_by_id(imsg->hdr.peerid)) == NULL)
641 return;
643 if (tab != NULL) {
644 if (!parser_parse(tab, imsg->data, datalen))
645 die();
646 ui_on_tab_refresh(tab);
647 } else {
648 d->bytes += datalen;
649 write(d->fd, imsg->data, datalen);
650 ui_on_download_refresh();
654 static void
655 handle_imsg_eof(struct imsg *imsg, size_t datalen)
657 struct tab *tab = NULL;
658 struct download *d = NULL;
660 if ((tab = tab_by_id(imsg->hdr.peerid)) == NULL &&
661 (d = download_by_id(imsg->hdr.peerid)) == NULL)
662 return;
664 if (tab != NULL) {
665 if (!parser_free(tab))
666 die();
667 if (has_prefix(tab->hist_cur->h, "gemini://") ||
668 has_prefix(tab->hist_cur->h, "gopher://"))
669 mcache_tab(tab);
670 ui_on_tab_refresh(tab);
671 ui_on_tab_loaded(tab);
672 } else {
673 close(d->fd);
674 d->fd = -1;
675 ui_on_download_refresh();
679 static void
680 handle_imsg_tofu(struct imsg *imsg, size_t datalen)
682 struct tofu_entry *e;
684 if (operating)
685 die();
687 if ((e = calloc(1, sizeof(*e))) == NULL)
688 die();
690 if (datalen != sizeof(*e))
691 die();
692 memcpy(e, imsg->data, sizeof(*e));
693 if (e->domain[sizeof(e->domain)-1] != '\0' ||
694 e->hash[sizeof(e->hash)-1] != '\0')
695 die();
696 tofu_add(&certs, e);
699 static void
700 handle_imsg_bookmark_ok(struct imsg *imsg, size_t datalen)
702 int res;
704 if (datalen != sizeof(res))
705 die();
707 memcpy(&res, imsg->data, sizeof(res));
708 if (res == 0)
709 message("Added to bookmarks!");
710 else
711 message("Failed to add to bookmarks: %s",
712 strerror(res));
715 static void
716 handle_imsg_save_cert_ok(struct imsg *imsg, size_t datalen)
718 int res;
720 if (datalen != sizeof(res))
721 die();
722 memcpy(&res, imsg->data, datalen);
723 if (res != 0)
724 message("Failed to save the cert for: %s",
725 strerror(res));
728 static void
729 handle_imsg_update_cert_ok(struct imsg *imsg, size_t datalen)
731 int res;
733 if (datalen != sizeof(res))
734 die();
735 memcpy(&res, imsg->data, datalen);
736 if (!res)
737 message("Failed to update the certificate");
740 static void
741 handle_dispatch_imsg(int fd, short ev, void *d)
743 struct imsgev *iev = d;
745 if (dispatch_imsg(iev, ev, handlers, sizeof(handlers)) == -1)
746 err(1, "connection closed");
749 static int
750 load_about_url(struct tab *tab, const char *url)
752 tab->trust = TS_UNKNOWN;
753 parser_init(tab, gemtext_initparser);
754 return make_fs_request(tab, IMSG_GET, url);
757 static int
758 load_file_url(struct tab *tab, const char *url)
760 tab->trust = TS_UNKNOWN;
761 return make_fs_request(tab, IMSG_GET_FILE, tab->uri.path);
764 static int
765 load_finger_url(struct tab *tab, const char *url)
767 struct get_req req;
768 size_t len;
769 char *at;
771 memset(&req, 0, sizeof(req));
772 strlcpy(req.port, tab->uri.port, sizeof(req.port));
774 /*
775 * Sometimes the finger url have the user as path component
776 * (e.g. finger://thelambdalab.xyz/plugd), sometimes as
777 * userinfo (e.g. finger://cobradile@finger.farm).
778 */
779 if ((at = strchr(tab->uri.host, '@')) != NULL) {
780 len = at - tab->uri.host;
781 memcpy(req.req, tab->uri.host, len);
783 if (len >= sizeof(req.req))
784 die();
785 req.req[len] = '\0';
787 strlcpy(req.host, at+1, sizeof(req.host));
788 } else {
789 strlcpy(req.host, tab->uri.host, sizeof(req.host));
791 /* +1 to skip the initial `/' */
792 strlcpy(req.req, tab->uri.path+1, sizeof(req.req));
794 strlcat(req.req, "\r\n", sizeof(req.req));
796 parser_init(tab, textplain_initparser);
797 return make_request(tab, &req, PROTO_FINGER, NULL);
800 static int
801 load_gemini_url(struct tab *tab, const char *url)
803 struct get_req req;
805 memset(&req, 0, sizeof(req));
806 strlcpy(req.host, tab->uri.host, sizeof(req.host));
807 strlcpy(req.port, tab->uri.port, sizeof(req.port));
809 return make_request(tab, &req, PROTO_GEMINI, tab->hist_cur->h);
812 static inline const char *
813 gopher_skip_selector(const char *path, int *ret_type)
815 *ret_type = 0;
817 if (!strcmp(path, "/") || *path == '\0') {
818 *ret_type = '1';
819 return path;
822 if (*path != '/')
823 return path;
824 path++;
826 switch (*ret_type = *path) {
827 case '0':
828 case '1':
829 case '7':
830 break;
832 default:
833 *ret_type = 0;
834 path -= 1;
835 return path;
838 return ++path;
841 static int
842 load_gopher_url(struct tab *tab, const char *url)
844 struct get_req req;
845 int type;
846 const char *path;
848 memset(&req, 0, sizeof(req));
849 strlcpy(req.host, tab->uri.host, sizeof(req.host));
850 strlcpy(req.port, tab->uri.port, sizeof(req.port));
852 path = gopher_skip_selector(tab->uri.path, &type);
853 switch (type) {
854 case '0':
855 parser_init(tab, textplain_initparser);
856 break;
857 case '1':
858 parser_init(tab, gophermap_initparser);
859 break;
860 case '7':
861 free(tab->last_input_url);
862 tab->last_input_url = strdup(url);
863 if (tab->last_input_url == NULL)
864 die();
865 ui_require_input(tab, 0, ir_select_gopher);
866 return load_page_from_str(tab, err_pages[10]);
867 default:
868 return load_page_from_str(tab, "Unknown gopher selector");
871 strlcpy(req.req, path, sizeof(req.req));
872 if (*tab->uri.query != '\0') {
873 strlcat(req.req, "?", sizeof(req.req));
874 strlcat(req.req, tab->uri.query, sizeof(req.req));
876 strlcat(req.req, "\r\n", sizeof(req.req));
878 return make_request(tab, &req, PROTO_GOPHER, NULL);
881 static int
882 load_via_proxy(struct tab *tab, const char *url, struct proxy *p)
884 struct get_req req;
886 memset(&req, 0, sizeof(req));
887 strlcpy(req.host, p->host, sizeof(req.host));
888 strlcpy(req.port, p->port, sizeof(req.port));
890 tab->proxy = p;
892 return make_request(tab, &req, p->proto, tab->hist_cur->h);
895 static int
896 make_request(struct tab *tab, struct get_req *req, int proto, const char *r)
898 stop_tab(tab);
899 tab->id = tab_new_id();
900 req->proto = proto;
902 if (r != NULL) {
903 strlcpy(req->req, r, sizeof(req->req));
904 strlcat(req->req, "\r\n", sizeof(req->req));
907 start_loading_anim(tab);
908 ui_send_net(IMSG_GET_RAW, tab->id, req, sizeof(*req));
910 /*
911 * So the various load_*_url can `return make_request` and
912 * do_load_url is happy.
913 */
914 return 1;
917 static int
918 make_fs_request(struct tab *tab, int type, const char *r)
920 stop_tab(tab);
921 tab->id = tab_new_id();
923 ui_send_fs(type, tab->id, r, strlen(r)+1);
925 /*
926 * So load_{about,file}_url can `return make_fs_request` and
927 * do_load_url is happy.
928 */
929 return 1;
932 void
933 gopher_send_search_req(struct tab *tab, const char *text)
935 struct get_req req;
937 memset(&req, 0, sizeof(req));
938 strlcpy(req.host, tab->uri.host, sizeof(req.host));
939 strlcpy(req.port, tab->uri.port, sizeof(req.port));
941 /* +2 to skip /7 */
942 strlcpy(req.req, tab->uri.path+2, sizeof(req.req));
943 if (*tab->uri.query != '\0') {
944 strlcat(req.req, "?", sizeof(req.req));
945 strlcat(req.req, tab->uri.query, sizeof(req.req));
948 strlcat(req.req, "\t", sizeof(req.req));
949 strlcat(req.req, text, sizeof(req.req));
950 strlcat(req.req, "\r\n", sizeof(req.req));
952 erase_buffer(&tab->buffer);
953 parser_init(tab, gophermap_initparser);
955 make_request(tab, &req, PROTO_GOPHER, NULL);
958 int
959 load_page_from_str(struct tab *tab, const char *page)
961 parser_init(tab, gemtext_initparser);
962 if (!tab->buffer.page.parse(&tab->buffer.page, page, strlen(page)))
963 abort();
964 if (!tab->buffer.page.free(&tab->buffer.page))
965 abort();
966 ui_on_tab_refresh(tab);
967 ui_on_tab_loaded(tab);
968 return 0;
971 /*
972 * Effectively load the given url in the given tab. Return 1 when
973 * loading the page asynchronously, and thus when an erase_buffer can
974 * be done right after this function return, or 0 when loading the
975 * page synchronously.
976 */
977 static int
978 do_load_url(struct tab *tab, const char *url, const char *base, int mode)
980 const struct proto *p;
981 struct phos_uri uri;
982 struct proxy *proxy;
983 int nocache = mode & LU_MODE_NOCACHE;
984 char *t;
986 tab->proxy = NULL;
987 tab->trust = TS_UNKNOWN;
989 if (base == NULL)
990 memcpy(&uri, &tab->uri, sizeof(tab->uri));
991 else
992 phos_parse_absolute_uri(base, &uri);
994 if (!phos_resolve_uri_from_str(&uri, url, &tab->uri)) {
995 if (asprintf(&t, "#error loading %s\n>%s\n",
996 url, "Can't parse the URI") == -1)
997 die();
998 strlcpy(tab->hist_cur->h, url, sizeof(tab->hist_cur->h));
999 load_page_from_str(tab, t);
1000 free(t);
1001 return 0;
1004 phos_serialize_uri(&tab->uri, tab->hist_cur->h,
1005 sizeof(tab->hist_cur->h));
1007 if (!nocache && mcache_lookup(tab->hist_cur->h, tab)) {
1008 ui_on_tab_refresh(tab);
1009 ui_on_tab_loaded(tab);
1010 return 0;
1013 for (p = protos; p->schema != NULL; ++p) {
1014 if (!strcmp(tab->uri.scheme, p->schema)) {
1015 /* patch the port */
1016 if (*tab->uri.port == '\0' && p->port != NULL)
1017 strlcpy(tab->uri.port, p->port,
1018 sizeof(tab->uri.port));
1020 return p->loadfn(tab, tab->hist_cur->h);
1024 TAILQ_FOREACH(proxy, &proxies, proxies) {
1025 if (!strcmp(tab->uri.scheme, proxy->match_proto))
1026 return load_via_proxy(tab, url, proxy);
1029 return load_page_from_str(tab, err_pages[UNKNOWN_PROTOCOL]);
1033 * Load url in tab and handle history. If a tab is marked as lazy, only
1034 * prepare the url but don't load it.
1036 void
1037 load_url(struct tab *tab, const char *url, const char *base, int mode)
1039 int lazy = tab->flags & TAB_LAZY;
1040 int nohist = mode & LU_MODE_NOHIST;
1042 if (operating && lazy) {
1043 tab->flags ^= TAB_LAZY;
1044 lazy = 0;
1045 } else if (tab->hist_cur != NULL)
1046 get_scroll_position(tab, &tab->hist_cur->line_off,
1047 &tab->hist_cur->current_off);
1049 if (!nohist && (!lazy || tab->hist_cur == NULL)) {
1050 if (tab->hist_cur != NULL)
1051 hist_clear_forward(&tab->hist,
1052 TAILQ_NEXT(tab->hist_cur, entries));
1054 if ((tab->hist_cur = calloc(1, sizeof(*tab->hist_cur)))
1055 == NULL) {
1056 event_loopbreak();
1057 return;
1060 strlcpy(tab->buffer.page.title, url,
1061 sizeof(tab->buffer.page.title));
1062 hist_push(&tab->hist, tab->hist_cur);
1064 if (lazy)
1065 strlcpy(tab->hist_cur->h, url,
1066 sizeof(tab->hist_cur->h));
1069 if (!lazy)
1070 do_load_url(tab, url, base, mode);
1073 void
1074 load_url_in_tab(struct tab *tab, const char *url, const char *base, int mode)
1076 if (operating) {
1077 autosave_hook();
1078 message("Loading %s...", url);
1081 load_url(tab, url, base, mode);
1084 int
1085 load_previous_page(struct tab *tab)
1087 struct hist *h;
1089 if ((h = TAILQ_PREV(tab->hist_cur, mhisthead, entries)) == NULL)
1090 return 0;
1091 tab->hist_cur = h;
1092 do_load_url(tab, h->h, NULL, LU_MODE_NONE);
1093 return 1;
1096 int
1097 load_next_page(struct tab *tab)
1099 struct hist *h;
1101 if ((h = TAILQ_NEXT(tab->hist_cur, entries)) == NULL)
1102 return 0;
1103 tab->hist_cur = h;
1104 do_load_url(tab, h->h, NULL, LU_MODE_NONE);
1105 return 1;
1108 void
1109 add_to_bookmarks(const char *str)
1111 ui_send_fs(IMSG_BOOKMARK_PAGE, 0,
1112 str, strlen(str)+1);
1115 void
1116 write_buffer(const char *path, struct tab *tab)
1118 if (path == NULL)
1119 return;
1121 enqueue_download(tab->id, path, 1);
1122 ui_send_fs(IMSG_FILE_OPEN, tab->id, path, strlen(path)+1);
1126 * Given a user-entered URL, apply some heuristics to use it:
1128 * - if it's a proper url use it
1129 * - if it starts with a `./' or a `/' assume its a file:// url
1130 * - assume it's a gemini:// url
1132 * `ret' (of which len is the size) will be filled with the resulting
1133 * url.
1135 void
1136 humanify_url(const char *raw, char *ret, size_t len)
1138 struct phos_uri uri;
1139 char buf[PATH_MAX];
1141 if (phos_parse_absolute_uri(raw, &uri)) {
1142 strlcpy(ret, raw, len);
1143 return;
1146 if (has_prefix(raw, "./")) {
1147 strlcpy(ret, "file://", len);
1148 getcwd(buf, sizeof(buf));
1149 strlcat(ret, buf, len);
1150 strlcat(ret, "/", len);
1151 strlcat(ret, raw+2, len);
1152 return;
1155 if (*raw == '/') {
1156 strlcpy(ret, "file://", len);
1157 strlcat(ret, raw, len);
1158 return;
1161 strlcpy(ret, "gemini://", len);
1162 strlcat(ret, raw, len);
1165 static pid_t
1166 start_child(enum telescope_process p, const char *argv0, int fd)
1168 const char *argv[5];
1169 int argc = 0;
1170 pid_t pid;
1172 switch (pid = fork()) {
1173 case -1:
1174 die();
1175 case 0:
1176 break;
1177 default:
1178 close(fd);
1179 return pid;
1182 if (dup2(fd, 3) == -1)
1183 err(1, "cannot setup imsg fd");
1185 argv[argc++] = argv0;
1186 switch (p) {
1187 case PROC_UI:
1188 errx(1, "Can't start ui process");
1189 case PROC_FS:
1190 argv[argc++] = "-Tf";
1191 break;
1192 case PROC_NET:
1193 argv[argc++] = "-Tn";
1194 break;
1197 if (safe_mode)
1198 argv[argc++] = "-S";
1200 argv[argc++] = NULL;
1201 execvp(argv0, (char *const *)argv);
1202 err(1, "execvp(%s)", argv0);
1205 static void
1206 send_url(const char *url)
1208 struct sockaddr_un sun;
1209 struct imsgbuf ibuf;
1210 int ctl_sock;
1212 if ((ctl_sock = socket(AF_UNIX, SOCK_STREAM, 0)) == -1)
1213 err(1, "socket");
1215 memset(&sun, 0, sizeof(sun));
1216 sun.sun_family = AF_UNIX;
1217 strlcpy(sun.sun_path, ctlsock_path, sizeof(sun.sun_path));
1219 if (connect(ctl_sock, (struct sockaddr *)&sun, sizeof(sun)) == -1)
1220 err(1, "connect: %s", ctlsock_path);
1222 imsg_init(&ibuf, ctl_sock);
1223 imsg_compose(&ibuf, IMSG_CTL_OPEN_URL, 0, 0, -1, url,
1224 strlen(url) + 1);
1225 imsg_flush(&ibuf);
1226 close(ctl_sock);
1229 int
1230 ui_send_net(int type, uint32_t peerid, const void *data,
1231 uint16_t datalen)
1233 return imsg_compose_event(iev_net, type, peerid, 0, -1, data,
1234 datalen);
1237 int
1238 ui_send_fs(int type, uint32_t peerid, const void *data, uint16_t datalen)
1240 return imsg_compose_event(iev_fs, type, peerid, 0, -1, data,
1241 datalen);
1244 static void __attribute__((noreturn))
1245 usage(int r)
1247 fprintf(stderr, "USAGE: %s [-ChnSv] [-c config] [url]\n",
1248 getprogname());
1249 fprintf(stderr, "version: " PACKAGE " " VERSION "\n");
1250 exit(r);
1253 int
1254 main(int argc, char * const *argv)
1256 struct imsgev net_ibuf, fs_ibuf;
1257 pid_t pid;
1258 int control_fd;
1259 int pipe2net[2], pipe2fs[2];
1260 int ch, configtest = 0, fail = 0;
1261 int proc = -1;
1262 int sessionfd = -1;
1263 int status;
1264 const char *argv0;
1266 argv0 = argv[0];
1268 signal(SIGCHLD, SIG_IGN);
1269 signal(SIGPIPE, SIG_IGN);
1271 if (getenv("NO_COLOR") != NULL)
1272 enable_colors = 0;
1274 fs_init();
1276 while ((ch = getopt_long(argc, argv, opts, longopts, NULL)) != -1) {
1277 switch (ch) {
1278 case 'C':
1279 exit(ui_print_colors());
1280 case 'c':
1281 fail = 1;
1282 strlcpy(config_path, optarg, sizeof(config_path));
1283 break;
1284 case 'n':
1285 configtest = 1;
1286 break;
1287 case 'h':
1288 usage(0);
1289 case 'S':
1290 safe_mode = 1;
1291 break;
1292 case 'T':
1293 switch (*optarg) {
1294 case 'f':
1295 proc = PROC_FS;
1296 break;
1297 case 'n':
1298 proc = PROC_NET;
1299 break;
1300 default:
1301 errx(1, "invalid process spec %c",
1302 *optarg);
1304 break;
1305 case 'v':
1306 printf("%s %s\n", PACKAGE_NAME, PACKAGE_VERSION);
1307 exit(0);
1308 break;
1309 default:
1310 usage(1);
1314 argc -= optind;
1315 argv += optind;
1317 if (proc != -1) {
1318 if (argc > 0)
1319 usage(1);
1320 else if (proc == PROC_FS)
1321 return fs_main();
1322 else if (proc == PROC_NET)
1323 return net_main();
1324 else
1325 usage(1);
1328 if (argc != 0) {
1329 has_url = 1;
1330 humanify_url(argv[0], url, sizeof(url));
1333 /* setup keys before reading the config */
1334 TAILQ_INIT(&global_map.m);
1335 global_map.unhandled_input = global_key_unbound;
1336 TAILQ_INIT(&minibuffer_map.m);
1338 config_init();
1339 parseconfig(config_path, fail);
1340 if (configtest) {
1341 puts("config OK");
1342 exit(0);
1345 if (download_path == NULL &&
1346 (download_path = strdup("/tmp/")) == NULL)
1347 errx(1, "strdup");
1349 if (!safe_mode && (sessionfd = lock_session()) == -1) {
1350 if (has_url) {
1351 send_url(url);
1352 exit(0);
1355 errx(1, "can't lock session, is another instance of "
1356 "telescope already running?");
1359 /* Start children. */
1360 if (socketpair(AF_UNIX, SOCK_STREAM, PF_UNSPEC, pipe2fs) == -1)
1361 err(1, "socketpair");
1362 start_child(PROC_FS, argv0, pipe2fs[1]);
1363 imsg_init(&fs_ibuf.ibuf, pipe2fs[0]);
1364 iev_fs = &fs_ibuf;
1365 iev_fs->handler = handle_dispatch_imsg;
1367 if (socketpair(AF_UNIX, SOCK_STREAM, PF_UNSPEC, pipe2net) == -1)
1368 err(1, "socketpair");
1369 start_child(PROC_NET, argv0, pipe2net[1]);
1370 imsg_init(&net_ibuf.ibuf, pipe2net[0]);
1371 iev_net = &net_ibuf;
1372 iev_net->handler = handle_dispatch_imsg;
1374 setproctitle("ui");
1376 /* initialize tofu store */
1377 tofu_init(&certs, 5, offsetof(struct tofu_entry, domain));
1379 event_init();
1381 if (!safe_mode) {
1382 if ((control_fd = control_init(ctlsock_path)) == -1)
1383 err(1, "control_init %s", ctlsock_path);
1384 control_listen(control_fd);
1387 /* initialize the in-memory cache store */
1388 mcache_init();
1390 /* Setup event handler for the autosave */
1391 autosave_init();
1393 /* Setup event handlers for pipes to fs/net */
1394 iev_fs->events = EV_READ;
1395 event_set(&iev_fs->ev, iev_fs->ibuf.fd, iev_fs->events,
1396 iev_fs->handler, iev_fs);
1397 event_add(&iev_fs->ev, NULL);
1399 iev_net->events = EV_READ;
1400 event_set(&iev_net->ev, iev_net->ibuf.fd, iev_net->events,
1401 iev_net->handler, iev_net);
1402 event_add(&iev_net->ev, NULL);
1404 if (ui_init()) {
1405 sandbox_ui_process();
1406 ui_send_fs(IMSG_INIT, 0, NULL, 0);
1407 event_dispatch();
1408 ui_end();
1411 ui_send_fs(IMSG_QUIT, 0, NULL, 0);
1412 ui_send_net(IMSG_QUIT, 0, NULL, 0);
1413 imsg_flush(&iev_fs->ibuf);
1414 imsg_flush(&iev_net->ibuf);
1416 /* wait for children to terminate */
1417 do {
1418 pid = wait(&status);
1419 if (pid == -1) {
1420 if (errno != EINTR && errno != ECHILD)
1421 err(1, "wait");
1422 } else if (WIFSIGNALED(status))
1423 warnx("child terminated; signal %d", WTERMSIG(status));
1424 } while (pid != -1 || (pid == -1 && errno == EINTR));
1426 if (!safe_mode && close(sessionfd) == -1)
1427 err(1, "close(sessionfd = %d)", sessionfd);
1429 return 0;