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 "minibuffer.h"
32 #include "parser.h"
33 #include "session.h"
34 #include "telescope.h"
35 #include "ui.h"
37 static struct option longopts[] = {
38 {"colors", no_argument, NULL, 'c'},
39 {"help", no_argument, NULL, 'h'},
40 {"version", no_argument, NULL, 'v'},
41 {NULL, 0, NULL, 0},
42 };
44 static const char *opts = "Cc:hnT:v";
46 /*
47 * Used to know when we're finished loading.
48 */
49 int operating;
51 static struct imsgev *iev_fs, *iev_net;
53 struct tabshead tabshead = TAILQ_HEAD_INITIALIZER(tabshead);
54 struct proxylist proxies = TAILQ_HEAD_INITIALIZER(proxies);
56 enum telescope_process {
57 PROC_UI,
58 PROC_FS,
59 PROC_NET,
60 };
62 #define CANNOT_FETCH 0
63 #define TOO_MUCH_REDIRECTS 1
64 #define MALFORMED_RESPONSE 2
65 #define UNKNOWN_TYPE_OR_CSET 3
66 #define UNKNOWN_PROTOCOL 4
68 /* XXX: keep in sync with normalize_code */
69 const char *err_pages[70] = {
70 [CANNOT_FETCH] = "# Couldn't load the page\n",
71 [TOO_MUCH_REDIRECTS] = "# Too much redirects\n",
72 [MALFORMED_RESPONSE] = "# Got a malformed response\n",
73 [UNKNOWN_TYPE_OR_CSET] = "# Unsupported type or charset\n",
74 [UNKNOWN_PROTOCOL] = "# Unknown protocol\n",
76 [10] = "# Input required\n",
77 [11] = "# Input required\n",
78 [40] = "# Temporary failure\n",
79 [41] = "# Server unavailable\n",
80 [42] = "# CGI error\n",
81 [43] = "# Proxy error\n",
82 [44] = "# Slow down\n",
83 [50] = "# Permanent failure\n",
84 [51] = "# Not found\n",
85 [52] = "# Gone\n",
86 [53] = "# Proxy request refused\n",
87 [59] = "# Bad request\n",
88 [60] = "# Client certificate required\n",
89 [61] = "# Certificate not authorised\n",
90 [62] = "# Certificate not valid\n"
91 };
93 static void die(void) __attribute__((__noreturn__));
94 static struct tab *tab_by_id(uint32_t);
95 static void handle_imsg_err(struct imsg *, size_t);
96 static void handle_imsg_check_cert(struct imsg *, size_t);
97 static void handle_check_cert_user_choice(int, struct tab *);
98 static void handle_maybe_save_new_cert(int, struct tab *);
99 static void handle_imsg_got_code(struct imsg *, size_t);
100 static void handle_imsg_got_meta(struct imsg *, size_t);
101 static void handle_maybe_save_page(int, struct tab *);
102 static void handle_save_page_path(const char *, struct tab *);
103 static void handle_imsg_file_opened(struct imsg *, size_t);
104 static void handle_imsg_buf(struct imsg *, size_t);
105 static void handle_imsg_eof(struct imsg *, size_t);
106 static void handle_imsg_bookmark_ok(struct imsg *, size_t);
107 static void handle_imsg_save_cert_ok(struct imsg *, size_t);
108 static void handle_imsg_update_cert_ok(struct imsg *, size_t);
109 static void handle_dispatch_imsg(int, short, void *);
110 static int load_about_url(struct tab *, const char *);
111 static int load_file_url(struct tab *, const char *);
112 static int load_finger_url(struct tab *, const char *);
113 static int load_gemini_url(struct tab *, const char *);
114 static int load_gopher_url(struct tab *, const char *);
115 static int load_via_proxy(struct tab *, const char *,
116 struct proxy *);
117 static int make_request(struct tab *, struct get_req *, int,
118 const char *);
119 static int make_fs_request(struct tab *, int, const char *);
120 static int do_load_url(struct tab *, const char *, const char *);
121 static pid_t start_child(enum telescope_process, const char *, int);
123 static struct proto {
124 const char *schema;
125 const char *port;
126 int (*loadfn)(struct tab *, const char *);
127 } protos[] = {
128 {"about", NULL, load_about_url},
129 {"file", NULL, load_file_url},
130 {"finger", "79", load_finger_url},
131 {"gemini", "1965", load_gemini_url},
132 {"gopher", "70", load_gopher_url},
133 {NULL, NULL, NULL},
134 };
136 static imsg_handlerfn *handlers[] = {
137 [IMSG_ERR] = handle_imsg_err,
138 [IMSG_CHECK_CERT] = handle_imsg_check_cert,
139 [IMSG_GOT_CODE] = handle_imsg_got_code,
140 [IMSG_GOT_META] = handle_imsg_got_meta,
141 [IMSG_BUF] = handle_imsg_buf,
142 [IMSG_EOF] = handle_imsg_eof,
143 [IMSG_BOOKMARK_OK] = handle_imsg_bookmark_ok,
144 [IMSG_SAVE_CERT_OK] = handle_imsg_save_cert_ok,
145 [IMSG_UPDATE_CERT_OK] = handle_imsg_update_cert_ok,
146 [IMSG_FILE_OPENED] = handle_imsg_file_opened,
147 };
149 static struct ohash certs;
151 static void __attribute__((__noreturn__))
152 die(void)
154 abort(); /* TODO */
157 static struct tab *
158 tab_by_id(uint32_t id)
160 struct tab *t;
162 TAILQ_FOREACH(t, &tabshead, tabs) {
163 if (t->id == id)
164 return t;
167 return NULL;
170 static void
171 handle_imsg_err(struct imsg *imsg, size_t datalen)
173 struct tab *tab;
174 char *page;
176 if ((tab = tab_by_id(imsg->hdr.peerid)) == NULL)
177 return;
179 page = imsg->data;
180 page[datalen-1] = '\0';
182 if (asprintf(&page, "# Error loading %s\n\n> %s\n",
183 tab->hist_cur->h, page) == -1)
184 die();
185 load_page_from_str(tab, page);
186 free(page);
189 static void
190 handle_imsg_check_cert(struct imsg *imsg, size_t datalen)
192 const char *hash, *host, *port;
193 int tofu_res;
194 struct tofu_entry *e;
195 struct tab *tab;
197 hash = imsg->data;
198 if (hash[datalen-1] != '\0')
199 abort();
201 if ((tab = tab_by_id(imsg->hdr.peerid)) == NULL)
202 return;
204 if (tab->proxy != NULL) {
205 host = tab->proxy->host;
206 port = tab->proxy->port;
207 } else {
208 host = tab->uri.host;
209 port = tab->uri.port;
212 if ((e = tofu_lookup(&certs, host, port)) == NULL) {
213 /* TODO: an update in libressl/libretls changed
214 * significantly. Find a better approach at storing
215 * the certs! */
216 if (datalen > sizeof(e->hash))
217 abort();
219 tofu_res = 1; /* trust on first use */
220 if ((e = calloc(1, sizeof(*e))) == NULL)
221 abort();
222 strlcpy(e->domain, host, sizeof(e->domain));
223 if (*port != '\0' && strcmp(port, "1965")) {
224 strlcat(e->domain, ":", sizeof(e->domain));
225 strlcat(e->domain, port, sizeof(e->domain));
227 strlcpy(e->hash, hash, sizeof(e->hash));
228 tofu_add(&certs, e);
229 ui_send_fs(IMSG_SAVE_CERT, tab->id, e, sizeof(*e));
230 } else
231 tofu_res = !strcmp(hash, e->hash);
233 if (tofu_res) {
234 if (e->verified == -1)
235 tab->trust = TS_TEMP_TRUSTED;
236 else if (e->verified == 1)
237 tab->trust = TS_VERIFIED;
238 else
239 tab->trust = TS_TRUSTED;
241 ui_send_net(IMSG_CERT_STATUS, imsg->hdr.peerid,
242 &tofu_res, sizeof(tofu_res));
243 } else {
244 tab->trust = TS_UNTRUSTED;
245 load_page_from_str(tab, "# Certificate mismatch\n");
246 if ((tab->cert = strdup(hash)) == NULL)
247 die();
248 ui_yornp("Certificate mismatch. Proceed?",
249 handle_check_cert_user_choice, tab);
253 static void
254 handle_check_cert_user_choice(int accept, struct tab *tab)
256 ui_send_net(IMSG_CERT_STATUS, tab->id, &accept,
257 sizeof(accept));
259 if (accept) {
260 /*
261 * trust the certificate for this session only. If
262 * the page results in a redirect while we're asking
263 * the user to save, we'll end up with an invalid
264 * tabid (one request == one tab id). It also makes
265 * sense to save it for the current session if the
266 * user accepted it.
267 */
268 tofu_temp_trust(&certs, tab->uri.host, tab->uri.port,
269 tab->cert);
271 ui_yornp("Save the new certificate?",
272 handle_maybe_save_new_cert, tab);
273 } else {
274 free(tab->cert);
275 tab->cert = NULL;
279 static void
280 handle_maybe_save_new_cert(int accept, struct tab *tab)
282 struct tofu_entry *e;
283 const char *host, *port;
285 if (tab->proxy != NULL) {
286 host = tab->proxy->host;
287 port = tab->proxy->port;
288 } else {
289 host = tab->uri.host;
290 port = tab->uri.port;
293 if (!accept)
294 goto end;
296 if ((e = calloc(1, sizeof(*e))) == NULL)
297 die();
299 strlcpy(e->domain, host, sizeof(e->domain));
300 if (*port != '\0' && strcmp(port, "1965")) {
301 strlcat(e->domain, ":", sizeof(e->domain));
302 strlcat(e->domain, port, sizeof(e->domain));
304 strlcpy(e->hash, tab->cert, sizeof(e->hash));
305 ui_send_fs(IMSG_UPDATE_CERT, 0, e, sizeof(*e));
307 tofu_update(&certs, e);
309 tab->trust = TS_TRUSTED;
311 end:
312 free(tab->cert);
313 tab->cert = NULL;
316 static inline int
317 normalize_code(int n)
319 if (n < 20) {
320 if (n == 10 || n == 11)
321 return n;
322 return 10;
323 } else if (n < 30) {
324 return 20;
325 } else if (n < 40) {
326 if (n == 30 || n == 31)
327 return n;
328 return 30;
329 } else if (n < 50) {
330 if (n <= 44)
331 return n;
332 return 40;
333 } else if (n < 60) {
334 if (n <= 53 || n == 59)
335 return n;
336 return 50;
337 } else if (n < 70) {
338 if (n <= 62)
339 return n;
340 return 60;
341 } else
342 return MALFORMED_RESPONSE;
345 static void
346 handle_imsg_got_code(struct imsg *imsg, size_t datalen)
348 struct tab *tab;
350 if ((tab = tab_by_id(imsg->hdr.peerid)) == NULL)
351 return;
353 if (sizeof(tab->code) != datalen)
354 die();
356 memcpy(&tab->code, imsg->data, sizeof(tab->code));
357 tab->code = normalize_code(tab->code);
358 if (tab->code != 30 && tab->code != 31)
359 tab->redirect_count = 0;
362 static void
363 handle_imsg_got_meta(struct imsg *imsg, size_t datalen)
365 struct tab *tab;
367 if ((tab = tab_by_id(imsg->hdr.peerid)) == NULL)
368 return;
370 if (sizeof(tab->meta) <= datalen)
371 die();
373 memcpy(tab->meta, imsg->data, datalen);
375 if (tab->code < 10) { /* internal errors */
376 load_page_from_str(tab, err_pages[tab->code]);
377 } else if (tab->code < 20) { /* 1x */
378 load_page_from_str(tab, err_pages[tab->code]);
379 ui_require_input(tab, tab->code == 11, PROTO_GEMINI);
380 } else if (tab->code == 20) {
381 if (setup_parser_for(tab)) {
382 ui_send_net(IMSG_PROCEED, tab->id, NULL, 0);
383 } else {
384 load_page_from_str(tab,
385 err_pages[UNKNOWN_TYPE_OR_CSET]);
386 ui_yornp("Can't display page, save it?",
387 handle_maybe_save_page, tab);
389 } else if (tab->code < 40) { /* 3x */
390 tab->redirect_count++;
392 /* TODO: make customizable? */
393 if (tab->redirect_count > 5) {
394 load_page_from_str(tab,
395 err_pages[TOO_MUCH_REDIRECTS]);
396 } else
397 do_load_url(tab, tab->meta, NULL);
398 } else { /* 4x, 5x & 6x */
399 load_page_from_str(tab, err_pages[tab->code]);
403 static void
404 handle_maybe_save_page(int dosave, struct tab *tab)
406 if (dosave)
407 ui_read("Save to path", handle_save_page_path, tab);
408 else
409 stop_tab(tab);
412 static void
413 handle_save_page_path(const char *path, struct tab *tab)
415 if (path == NULL) {
416 stop_tab(tab);
417 return;
420 tab->path = strdup(path);
422 ui_send_fs(IMSG_FILE_OPEN, tab->id, path, strlen(path)+1);
425 static void
426 handle_imsg_file_opened(struct imsg *imsg, size_t datalen)
428 struct tab *tab;
429 char *page;
430 const char *e;
431 int l;
433 if ((tab = tab_by_id(imsg->hdr.peerid)) == NULL) {
434 if (imsg->fd != -1)
435 close(imsg->fd);
436 return;
439 if (imsg->fd == -1) {
440 stop_tab(tab);
442 e = imsg->data;
443 if (e[datalen-1] != '\0')
444 die();
445 l = asprintf(&page, "# Can't open file\n\n> %s: %s\n",
446 tab->path, e);
447 if (l == -1)
448 die();
449 load_page_from_str(tab, page);
450 free(page);
451 } else {
452 tab->fd = imsg->fd;
453 ui_send_net(IMSG_PROCEED, tab->id, NULL, 0);
457 static void
458 handle_imsg_buf(struct imsg *imsg, size_t datalen)
460 struct tab *tab;
461 int l;
462 char *page, buf[FMT_SCALED_STRSIZE] = {0};
464 if ((tab = tab_by_id(imsg->hdr.peerid)) == NULL)
465 return;
467 tab->bytes += datalen;
468 if (tab->fd == -1) {
469 if (!parser_parse(tab, imsg->data, datalen))
470 die();
471 } else {
472 write(tab->fd, imsg->data, datalen);
473 fmt_scaled(tab->bytes, buf);
474 l = asprintf(&page, "Saving to \"%s\"... (%s)\n",
475 tab->path,
476 buf);
477 if (l == -1)
478 die();
479 load_page_from_str(tab, page);
480 free(page);
483 ui_on_tab_refresh(tab);
486 static void
487 handle_imsg_eof(struct imsg *imsg, size_t datalen)
489 struct tab *tab;
490 int l;
491 char *page, buf[FMT_SCALED_STRSIZE] = {0};
493 if ((tab = tab_by_id(imsg->hdr.peerid)) == NULL)
494 return;
496 if (tab->fd == -1) {
497 if (!parser_free(tab))
498 die();
499 } else {
500 fmt_scaled(tab->bytes, buf);
501 l = asprintf(&page, "Saved to \"%s\" (%s)\n",
502 tab->path,
503 buf);
504 if (l == -1)
505 die();
506 load_page_from_str(tab, page);
507 free(page);
509 close(tab->fd);
510 tab->fd = -1;
511 tab->bytes = 0;
512 free(tab->path);
513 tab->path = NULL;
516 ui_on_tab_refresh(tab);
517 ui_on_tab_loaded(tab);
520 static void
521 handle_imsg_bookmark_ok(struct imsg *imsg, size_t datalen)
523 int res;
525 if (datalen != sizeof(res))
526 die();
528 memcpy(&res, imsg->data, sizeof(res));
529 if (res == 0)
530 message("Added to bookmarks!");
531 else
532 message("Failed to add to bookmarks: %s",
533 strerror(res));
536 static void
537 handle_imsg_save_cert_ok(struct imsg *imsg, size_t datalen)
539 int res;
541 if (datalen != sizeof(res))
542 die();
543 memcpy(&res, imsg->data, datalen);
544 if (res != 0)
545 message("Failed to save the cert for: %s",
546 strerror(res));
549 static void
550 handle_imsg_update_cert_ok(struct imsg *imsg, size_t datalen)
552 int res;
554 if (datalen != sizeof(res))
555 die();
556 memcpy(&res, imsg->data, datalen);
557 if (!res)
558 message("Failed to update the certificate");
561 static void
562 handle_dispatch_imsg(int fd, short ev, void *d)
564 struct imsgev *iev = d;
566 if (dispatch_imsg(iev, ev, handlers, sizeof(handlers)) == -1)
567 err(1, "connection closed");
570 static int
571 load_about_url(struct tab *tab, const char *url)
573 tab->trust = TS_UNKNOWN;
574 parser_init(tab, gemtext_initparser);
575 return make_fs_request(tab, IMSG_GET, url);
578 static int
579 load_file_url(struct tab *tab, const char *url)
581 tab->trust = TS_UNKNOWN;
582 return make_fs_request(tab, IMSG_GET_FILE, tab->uri.path);
585 static int
586 load_finger_url(struct tab *tab, const char *url)
588 struct get_req req;
589 size_t len;
590 char *at;
592 memset(&req, 0, sizeof(req));
593 strlcpy(req.port, tab->uri.port, sizeof(req.port));
595 /*
596 * Sometimes the finger url have the user as path component
597 * (e.g. finger://thelambdalab.xyz/plugd), sometimes as
598 * userinfo (e.g. finger://cobradile@finger.farm).
599 */
600 if ((at = strchr(tab->uri.host, '@')) != NULL) {
601 len = at - tab->uri.host;
602 memcpy(req.req, tab->uri.host, len);
604 if (len >= sizeof(req.req))
605 die();
606 req.req[len] = '\0';
608 strlcpy(req.host, at+1, sizeof(req.host));
609 } else {
610 strlcpy(req.host, tab->uri.host, sizeof(req.host));
612 /* +1 to skip the initial `/' */
613 strlcpy(req.req, tab->uri.path+1, sizeof(req.req));
615 strlcat(req.req, "\r\n", sizeof(req.req));
617 parser_init(tab, textplain_initparser);
618 return make_request(tab, &req, PROTO_FINGER, NULL);
621 static int
622 load_gemini_url(struct tab *tab, const char *url)
624 struct get_req req;
626 memset(&req, 0, sizeof(req));
627 strlcpy(req.host, tab->uri.host, sizeof(req.host));
628 strlcpy(req.port, tab->uri.port, sizeof(req.host));
630 return make_request(tab, &req, PROTO_GEMINI, tab->hist_cur->h);
633 static inline const char *
634 gopher_skip_selector(const char *path, int *ret_type)
636 *ret_type = 0;
638 if (!strcmp(path, "/") || *path == '\0') {
639 *ret_type = '1';
640 return path;
643 if (*path != '/')
644 return path;
645 path++;
647 switch (*ret_type = *path) {
648 case '0':
649 case '1':
650 case '7':
651 break;
653 default:
654 *ret_type = 0;
655 path -= 1;
656 return path;
659 return ++path;
662 static int
663 load_gopher_url(struct tab *tab, const char *url)
665 struct get_req req;
666 int type;
667 const char *path;
669 memset(&req, 0, sizeof(req));
670 strlcpy(req.host, tab->uri.host, sizeof(req.host));
671 strlcpy(req.port, tab->uri.port, sizeof(req.host));
673 path = gopher_skip_selector(tab->uri.path, &type);
674 switch (type) {
675 case '0':
676 parser_init(tab, textplain_initparser);
677 break;
678 case '1':
679 parser_init(tab, gophermap_initparser);
680 break;
681 case '7':
682 ui_require_input(tab, 0, PROTO_GOPHER);
683 return load_page_from_str(tab, err_pages[10]);
684 default:
685 return load_page_from_str(tab, "Unknown gopher selector");
688 strlcpy(req.req, path, sizeof(req.req));
689 if (*tab->uri.query != '\0') {
690 strlcat(req.req, "?", sizeof(req.req));
691 strlcat(req.req, tab->uri.query, sizeof(req.req));
693 strlcat(req.req, "\r\n", sizeof(req.req));
695 return make_request(tab, &req, PROTO_GOPHER, NULL);
698 static int
699 load_via_proxy(struct tab *tab, const char *url, struct proxy *p)
701 struct get_req req;
703 memset(&req, 0, sizeof(req));
704 strlcpy(req.host, p->host, sizeof(req.host));
705 strlcpy(req.port, p->port, sizeof(req.host));
707 tab->proxy = p;
709 return make_request(tab, &req, p->proto, tab->hist_cur->h);
712 static int
713 make_request(struct tab *tab, struct get_req *req, int proto, const char *r)
715 stop_tab(tab);
716 tab->id = tab_new_id();
717 req->proto = proto;
719 if (r != NULL) {
720 strlcpy(req->req, r, sizeof(req->req));
721 strlcat(req->req, "\r\n", sizeof(req->req));
724 ui_send_net(IMSG_GET_RAW, tab->id, req, sizeof(*req));
726 /*
727 * So the various load_*_url can `return make_request` and
728 * do_load_url is happy.
729 */
730 return 1;
733 static int
734 make_fs_request(struct tab *tab, int type, const char *r)
736 stop_tab(tab);
737 tab->id = tab_new_id();
739 ui_send_fs(type, tab->id, r, strlen(r)+1);
741 /*
742 * So load_{about,file}_url can `return make_fs_request` and
743 * do_load_url is happy.
744 */
745 return 1;
748 void
749 gopher_send_search_req(struct tab *tab, const char *text)
751 struct get_req req;
753 start_loading_anim(tab);
755 memset(&req, 0, sizeof(req));
756 strlcpy(req.host, tab->uri.host, sizeof(req.host));
757 strlcpy(req.port, tab->uri.port, sizeof(req.host));
759 /* +2 to skip /7 */
760 strlcpy(req.req, tab->uri.path+2, sizeof(req.req));
761 if (*tab->uri.query != '\0') {
762 strlcat(req.req, "?", sizeof(req.req));
763 strlcat(req.req, tab->uri.query, sizeof(req.req));
766 strlcat(req.req, "\t", sizeof(req.req));
767 strlcat(req.req, text, sizeof(req.req));
768 strlcat(req.req, "\r\n", sizeof(req.req));
770 erase_buffer(&tab->buffer);
771 parser_init(tab, gophermap_initparser);
773 make_request(tab, &req, PROTO_GOPHER, NULL);
776 /*
777 * Effectively load the given url in the given tab. Return 1 when
778 * loading the page asynchronously, and thus when an erase_buffer can
779 * be done right after this function return, or 0 when loading the
780 * page synchronously. In this last case, erase_buffer *MUST* be
781 * called by the handling function (such as load_page_from_str).
782 */
783 static int
784 do_load_url(struct tab *tab, const char *url, const char *base)
786 struct phos_uri uri;
787 struct proto *p;
788 struct proxy *proxy;
789 char *t;
791 tab->proxy = NULL;
793 if (tab->fd != -1) {
794 close(tab->fd);
795 tab->fd = -1;
796 free(tab->path);
797 tab->path = NULL;
800 tab->trust = TS_UNKNOWN;
802 if (base == NULL)
803 memcpy(&uri, &tab->uri, sizeof(tab->uri));
804 else
805 phos_parse_absolute_uri(base, &uri);
807 if (!phos_resolve_uri_from_str(&uri, url, &tab->uri)) {
808 if (asprintf(&t, "#error loading %s\n>%s\n",
809 url, "Can't parse the URI") == -1)
810 die();
811 strlcpy(tab->hist_cur->h, url, sizeof(tab->hist_cur->h));
812 load_page_from_str(tab, t);
813 free(t);
814 return 0;
817 phos_serialize_uri(&tab->uri, tab->hist_cur->h,
818 sizeof(tab->hist_cur->h));
820 for (p = protos; p->schema != NULL; ++p) {
821 if (!strcmp(tab->uri.scheme, p->schema)) {
822 /* patch the port */
823 if (*tab->uri.port == '\0' && p->port != NULL)
824 strlcpy(tab->uri.port, p->port,
825 sizeof(tab->uri.port));
827 return p->loadfn(tab, url);
831 TAILQ_FOREACH(proxy, &proxies, proxies) {
832 if (!strcmp(tab->uri.scheme, proxy->match_proto))
833 return load_via_proxy(tab, url, proxy);
836 return load_page_from_str(tab, err_pages[UNKNOWN_PROTOCOL]);
839 /*
840 * Load url in tab. If tab is marked as lazy, only prepare the url
841 * but don't load it. If tab is lazy and a url was already prepared,
842 * do load it!
843 */
844 void
845 load_url(struct tab *tab, const char *url, const char *base, int nohist)
847 int lazy;
849 lazy = tab->flags & TAB_LAZY;
851 if (lazy && tab->hist_cur != NULL) {
852 lazy = 0;
853 tab->flags &= ~TAB_LAZY;
856 /* can't have both nohist and lazy at the same time. */
857 if (nohist && lazy)
858 nohist = 0;
860 if (!nohist && (!lazy || tab->hist_cur == NULL)) {
861 if (tab->hist_cur != NULL)
862 hist_clear_forward(&tab->hist,
863 TAILQ_NEXT(tab->hist_cur, entries));
865 if ((tab->hist_cur = calloc(1, sizeof(*tab->hist_cur)))
866 == NULL) {
867 event_loopbreak();
868 return;
871 strlcpy(tab->buffer.page.title, url,
872 sizeof(tab->buffer.page.title));
873 hist_push(&tab->hist, tab->hist_cur);
875 if (lazy)
876 strlcpy(tab->hist_cur->h, url,
877 sizeof(tab->hist_cur->h));
880 if (!lazy && do_load_url(tab, url, base))
881 erase_buffer(&tab->buffer);
884 void
885 load_url_in_tab(struct tab *tab, const char *url, const char *base, int nohist)
887 if (!operating) {
888 load_url(tab, url, base, nohist);
889 return;
892 autosave_hook();
894 message("Loading %s...", url);
895 start_loading_anim(tab);
896 load_url(tab, url, base, nohist);
899 int
900 load_previous_page(struct tab *tab)
902 struct hist *h;
904 if ((h = TAILQ_PREV(tab->hist_cur, mhisthead, entries)) == NULL)
905 return 0;
906 tab->hist_cur = h;
907 do_load_url(tab, h->h, NULL);
908 return 1;
911 int
912 load_next_page(struct tab *tab)
914 struct hist *h;
916 if ((h = TAILQ_NEXT(tab->hist_cur, entries)) == NULL)
917 return 0;
918 tab->hist_cur = h;
919 do_load_url(tab, h->h, NULL);
920 return 1;
923 void
924 add_to_bookmarks(const char *str)
926 ui_send_fs(IMSG_BOOKMARK_PAGE, 0,
927 str, strlen(str)+1);
930 /*
931 * Given a user-entered URL, apply some heuristics to use it:
933 * - if it's a proper url use it
934 * - if it starts with a `./' or a `/' assume its a file:// url
935 * - assume it's a gemini:// url
937 * `ret' (of which len is the size) will be filled with the resulting
938 * url.
939 */
940 void
941 humanify_url(const char *raw, char *ret, size_t len)
943 struct phos_uri uri;
944 char buf[PATH_MAX];
946 if (phos_parse_absolute_uri(raw, &uri)) {
947 strlcpy(ret, raw, len);
948 return;
951 if (has_prefix(raw, "./")) {
952 strlcpy(ret, "file://", len);
953 getcwd(buf, sizeof(buf));
954 strlcat(ret, buf, len);
955 strlcat(ret, "/", len);
956 strlcat(ret, raw+2, len);
957 return;
960 if (*raw == '/') {
961 strlcpy(ret, "file://", len);
962 strlcat(ret, raw, len);
963 return;
966 strlcpy(ret, "gemini://", len);
967 strlcat(ret, raw, len);
970 static pid_t
971 start_child(enum telescope_process p, const char *argv0, int fd)
973 const char *argv[4];
974 int argc = 0;
975 pid_t pid;
977 switch (pid = fork()) {
978 case -1:
979 die();
980 case 0:
981 break;
982 default:
983 close(fd);
984 return pid;
987 if (dup2(fd, 3) == -1)
988 err(1, "cannot setup imsg fd");
990 argv[argc++] = argv0;
991 switch (p) {
992 case PROC_UI:
993 errx(1, "Can't start ui process");
994 case PROC_FS:
995 argv[argc++] = "-Tf";
996 break;
997 case PROC_NET:
998 argv[argc++] = "-Tn";
999 break;
1002 argv[argc++] = NULL;
1003 execvp(argv0, (char *const *)argv);
1004 err(1, "execvp(%s)", argv0);
1007 int
1008 ui_send_net(int type, uint32_t peerid, const void *data,
1009 uint16_t datalen)
1011 return imsg_compose_event(iev_net, type, peerid, 0, -1, data,
1012 datalen);
1015 int
1016 ui_send_fs(int type, uint32_t peerid, const void *data, uint16_t datalen)
1018 return imsg_compose_event(iev_fs, type, peerid, 0, -1, data,
1019 datalen);
1022 static void __attribute__((noreturn))
1023 usage(int r)
1025 fprintf(stderr, "USAGE: %s [-hnv] [-c config] [url]\n",
1026 getprogname());
1027 fprintf(stderr, "version: " PACKAGE " " VERSION "\n");
1028 exit(r);
1031 int
1032 main(int argc, char * const *argv)
1034 struct imsgev net_ibuf, fs_ibuf;
1035 pid_t pid;
1036 int pipe2net[2], pipe2fs[2];
1037 int ch, configtest = 0, fail = 0;
1038 int has_url = 0;
1039 int proc = -1;
1040 int sessionfd;
1041 int status;
1042 char path[PATH_MAX], url[GEMINI_URL_LEN+1];
1043 const char *argv0;
1045 argv0 = argv[0];
1047 signal(SIGCHLD, SIG_IGN);
1048 signal(SIGPIPE, SIG_IGN);
1050 if (getenv("NO_COLOR") != NULL)
1051 enable_colors = 0;
1053 strlcpy(path, getenv("HOME"), sizeof(path));
1054 strlcat(path, "/.telescope/config", sizeof(path));
1056 while ((ch = getopt_long(argc, argv, opts, longopts, NULL)) != -1) {
1057 switch (ch) {
1058 case 'C':
1059 exit(ui_print_colors());
1060 case 'c':
1061 fail = 1;
1062 strlcpy(path, optarg, sizeof(path));
1063 break;
1064 case 'n':
1065 configtest = 1;
1066 break;
1067 case 'h':
1068 usage(0);
1069 case 'T':
1070 switch (*optarg) {
1071 case 'f':
1072 proc = PROC_FS;
1073 break;
1074 case 'n':
1075 proc = PROC_NET;
1076 break;
1077 default:
1078 errx(1, "invalid process spec %c",
1079 *optarg);
1081 break;
1082 case 'v':
1083 printf("%s %s\n", PACKAGE_NAME, PACKAGE_VERSION);
1084 exit(0);
1085 break;
1086 default:
1087 usage(1);
1091 argc -= optind;
1092 argv += optind;
1094 if (proc != -1) {
1095 if (argc > 0)
1096 usage(1);
1097 else if (proc == PROC_FS)
1098 return fs_main();
1099 else if (proc == PROC_NET)
1100 return net_main();
1101 else
1102 usage(1);
1105 if (argc != 0) {
1106 has_url = 1;
1107 humanify_url(argv[0], url, sizeof(url));
1110 /* setup keys before reading the config */
1111 TAILQ_INIT(&global_map.m);
1112 global_map.unhandled_input = global_key_unbound;
1113 TAILQ_INIT(&minibuffer_map.m);
1115 config_init();
1116 parseconfig(path, fail);
1117 if (configtest) {
1118 puts("config OK");
1119 exit(0);
1122 fs_init();
1123 if ((sessionfd = lock_session()) == -1)
1124 errx(1, "can't lock session, is another instance of "
1125 "telescope already running?");
1127 /* Start children. */
1128 if (socketpair(AF_UNIX, SOCK_STREAM, PF_UNSPEC, pipe2fs) == -1)
1129 err(1, "socketpair");
1130 start_child(PROC_FS, argv0, pipe2fs[1]);
1131 imsg_init(&fs_ibuf.ibuf, pipe2fs[0]);
1132 iev_fs = &fs_ibuf;
1133 iev_fs->handler = handle_dispatch_imsg;
1135 if (socketpair(AF_UNIX, SOCK_STREAM, PF_UNSPEC, pipe2net) == -1)
1136 err(1, "socketpair");
1137 start_child(PROC_NET, argv0, pipe2net[1]);
1138 imsg_init(&net_ibuf.ibuf, pipe2net[0]);
1139 iev_net = &net_ibuf;
1140 iev_net->handler = handle_dispatch_imsg;
1142 setproctitle("ui");
1144 /* initialize tofu & load certificates */
1145 tofu_init(&certs, 5, offsetof(struct tofu_entry, domain));
1146 load_certs(&certs);
1148 event_init();
1150 /* Setup event handler for the autosave */
1151 autosave_init();
1153 /* Setup event handlers for pipes to fs/net */
1154 iev_fs->events = EV_READ;
1155 event_set(&iev_fs->ev, iev_fs->ibuf.fd, iev_fs->events,
1156 iev_fs->handler, iev_fs);
1157 event_add(&iev_fs->ev, NULL);
1159 iev_net->events = EV_READ;
1160 event_set(&iev_net->ev, iev_net->ibuf.fd, iev_net->events,
1161 iev_net->handler, iev_net);
1162 event_add(&iev_net->ev, NULL);
1164 if (ui_init()) {
1165 load_last_session();
1166 if (has_url || TAILQ_EMPTY(&tabshead))
1167 new_tab(url, NULL, NULL);
1169 sandbox_ui_process();
1170 operating = 1;
1171 ui_main_loop();
1172 ui_end();
1175 ui_send_fs(IMSG_QUIT, 0, NULL, 0);
1176 ui_send_net(IMSG_QUIT, 0, NULL, 0);
1177 imsg_flush(&iev_fs->ibuf);
1178 imsg_flush(&iev_net->ibuf);
1180 /* wait for children to terminate */
1181 do {
1182 pid = wait(&status);
1183 if (pid == -1) {
1184 if (errno != EINTR && errno != ECHILD)
1185 err(1, "wait");
1186 } else if (WIFSIGNALED(status))
1187 warnx("child terminated; signal %d", WTERMSIG(status));
1188 } while (pid != -1 || (pid == -1 && errno == EINTR));
1190 close(sessionfd);
1192 return 0;