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 /*
18 * Handles the data in ~/.telescope
19 *
20 * TODO: add some form of locking on the files
21 */
23 #include "compat.h"
25 #include <sys/stat.h>
26 #include <sys/types.h>
28 #include <dirent.h>
29 #include <errno.h>
30 #include <fcntl.h>
31 #include <limits.h>
32 #include <stdio.h>
33 #include <stdlib.h>
34 #include <string.h>
35 #include <unistd.h>
37 #include "telescope.h"
38 #include "pages.h"
40 static void die(void) __attribute__((__noreturn__));
41 static void send_file(uint32_t, FILE *);
42 static void handle_get(struct imsg*, size_t);
43 static int select_non_dot(const struct dirent *);
44 static int select_non_dotdot(const struct dirent *);
45 static void handle_get_file(struct imsg*, size_t);
46 static void handle_quit(struct imsg*, size_t);
47 static void handle_bookmark_page(struct imsg*, size_t);
48 static void handle_save_cert(struct imsg*, size_t);
49 static void handle_update_cert(struct imsg*, size_t);
50 static void handle_file_open(struct imsg*, size_t);
51 static void handle_session_start(struct imsg*, size_t);
52 static void handle_session_tab(struct imsg*, size_t);
53 static void handle_session_tab_title(struct imsg*, size_t);
54 static void handle_session_end(struct imsg*, size_t);
55 static void handle_dispatch_imsg(int, short, void*);
56 static int fs_send_ui(int, uint32_t, int, const void *, uint16_t);
58 static struct imsgev *iev_ui;
59 static FILE *session;
61 static char base_path[PATH_MAX];
62 static char lockfile_path[PATH_MAX];
63 static char bookmark_file[PATH_MAX];
64 static char known_hosts_file[PATH_MAX], known_hosts_tmp[PATH_MAX];
65 static char crashed_file[PATH_MAX];
67 char session_file[PATH_MAX];
69 static imsg_handlerfn *handlers[] = {
70 [IMSG_GET] = handle_get,
71 [IMSG_GET_FILE] = handle_get_file,
72 [IMSG_QUIT] = handle_quit,
73 [IMSG_BOOKMARK_PAGE] = handle_bookmark_page,
74 [IMSG_SAVE_CERT] = handle_save_cert,
75 [IMSG_UPDATE_CERT] = handle_update_cert,
76 [IMSG_FILE_OPEN] = handle_file_open,
77 [IMSG_SESSION_START] = handle_session_start,
78 [IMSG_SESSION_TAB] = handle_session_tab,
79 [IMSG_SESSION_TAB_TITLE] = handle_session_tab_title,
80 [IMSG_SESSION_END] = handle_session_end,
81 };
83 static void __attribute__((__noreturn__))
84 die(void)
85 {
86 abort(); /* TODO */
87 }
89 static void
90 send_file(uint32_t peerid, FILE *f)
91 {
92 ssize_t r;
93 char buf[BUFSIZ];
95 for (;;) {
96 r = fread(buf, 1, sizeof(buf), f);
97 if (r != 0)
98 fs_send_ui(IMSG_BUF, peerid, -1, buf, r);
99 if (r != sizeof(buf))
100 break;
102 fs_send_ui(IMSG_EOF, peerid, -1, NULL, 0);
103 fclose(f);
106 static void
107 handle_get(struct imsg *imsg, size_t datalen)
109 const char *bpath = "bookmarks.gmi";
110 char path[PATH_MAX];
111 FILE *f;
112 const char *data, *p;
113 size_t i;
114 struct page {
115 const char *name;
116 const char *path;
117 const uint8_t *data;
118 size_t len;
119 } pages[] = {
120 {"about", NULL, about_about, about_about_len},
121 {"blank", NULL, about_blank, about_blank_len},
122 {"bookmarks", bpath, bookmarks, bookmarks_len},
123 {"crash", NULL, about_crash, about_crash_len},
124 {"help", NULL, about_help, about_help_len},
125 {"license", NULL, about_license, about_license_len},
126 {"new", NULL, about_new, about_new_len},
127 }, *page = NULL;
129 data = imsg->data;
130 if (data[datalen-1] != '\0') /* make sure it's NUL-terminated */
131 die();
132 if ((data = strchr(data, ':')) == NULL)
133 goto notfound;
134 data++;
136 for (i = 0; i < sizeof(pages)/sizeof(pages[0]); ++i)
137 if (!strcmp(data, pages[i].name)) {
138 page = &pages[i];
139 break;
142 if (page == NULL)
143 goto notfound;
145 strlcpy(path, base_path, sizeof(path));
146 strlcat(path, "/", sizeof(path));
147 if (page->path != NULL)
148 strlcat(path, page->path, sizeof(path));
149 else {
150 strlcat(path, "pages/about_", sizeof(path));
151 strlcat(path, page->name, sizeof(path));
152 strlcat(path, ".gmi", sizeof(path));
155 if ((f = fopen(path, "r")) == NULL) {
156 fs_send_ui(IMSG_BUF, imsg->hdr.peerid, -1,
157 page->data, page->len);
158 fs_send_ui(IMSG_EOF, imsg->hdr.peerid, -1,
159 NULL, 0);
160 return;
163 send_file(imsg->hdr.peerid, f);
164 return;
166 notfound:
167 p = "# not found!\n";
168 fs_send_ui(IMSG_BUF, imsg->hdr.peerid, -1, p, strlen(p));
169 fs_send_ui(IMSG_EOF, imsg->hdr.peerid, -1, NULL, 0);
172 static inline void
173 send_hdr(uint32_t peerid, int code, const char *meta)
175 fs_send_ui(IMSG_GOT_CODE, peerid, -1, &code, sizeof(code));
176 fs_send_ui(IMSG_GOT_META, peerid, -1, meta, strlen(meta)+1);
179 static inline void
180 send_errno(uint32_t peerid, int code, const char *str, int no)
182 char *s;
184 if (asprintf(&s, "%s: %s", str, strerror(no)) == -1)
185 s = NULL;
187 send_hdr(peerid, code, s == NULL ? str : s);
188 free(s);
191 static inline const char *
192 file_type(const char *path)
194 struct mapping {
195 const char *ext;
196 const char *mime;
197 } ms[] = {
198 {"diff", "text/x-patch"},
199 {"gemini", "text/gemini"},
200 {"gmi", "text/gemini"},
201 {"markdown", "text/plain"},
202 {"md", "text/plain"},
203 {"patch", "text/x-patch"},
204 {"txt", "text/plain"},
205 {NULL, NULL},
206 }, *m;
207 char *dot;
209 if ((dot = strrchr(path, '.')) == NULL)
210 return NULL;
212 dot++;
214 for (m = ms; m->ext != NULL; ++m)
215 if (!strcmp(m->ext, dot))
216 return m->mime;
218 return NULL;
221 static int
222 select_non_dot(const struct dirent *d)
224 return strcmp(d->d_name, ".");
227 static int
228 select_non_dotdot(const struct dirent *d)
230 return strcmp(d->d_name, ".") && strcmp(d->d_name, "..");
233 static inline void
234 send_dir(uint32_t peerid, const char *path)
236 struct dirent **names;
237 struct evbuffer *ev;
238 char *s;
239 int (*selector)(const struct dirent *) = select_non_dot;
240 int i, len, no;
242 if (!has_suffix(path, "/")) {
243 if (asprintf(&s, "%s/", path) == -1)
244 die();
245 send_hdr(peerid, 30, s);
246 free(s);
247 return;
250 if (!strcmp(path, "/"))
251 selector = select_non_dotdot;
253 if ((ev = evbuffer_new()) == NULL ||
254 (len = scandir(path, &names, selector, alphasort)) == -1) {
255 no = errno;
256 evbuffer_free(ev);
257 send_errno(peerid, 40, "failure reading the directory", no);
258 return;
261 evbuffer_add_printf(ev, "# Index of %s\n\n", path);
262 for (i = 0; i < len; ++i) {
263 evbuffer_add_printf(ev, "=> %s", names[i]->d_name);
264 if (names[i]->d_type == DT_DIR)
265 evbuffer_add(ev, "/", 1);
266 evbuffer_add(ev, "\n", 1);
269 send_hdr(peerid, 20, "text/gemini");
270 fs_send_ui(IMSG_BUF, peerid, -1,
271 EVBUFFER_DATA(ev), EVBUFFER_LENGTH(ev));
272 fs_send_ui(IMSG_EOF, peerid, -1, NULL, 0);
274 evbuffer_free(ev);
275 free(names);
278 static void
279 handle_get_file(struct imsg *imsg, size_t datalen)
281 struct stat sb;
282 FILE *f;
283 char *data;
284 const char *meta = NULL;
286 data = imsg->data;
287 data[datalen-1] = '\0';
289 if ((f = fopen(data, "r")) == NULL) {
290 send_errno(imsg->hdr.peerid, 51, "can't open", errno);
291 return;
294 if (fstat(fileno(f), &sb) == -1) {
295 send_errno(imsg->hdr.peerid, 40, "fstat", errno);
296 return;
299 if (S_ISDIR(sb.st_mode)) {
300 fclose(f);
301 send_dir(imsg->hdr.peerid, data);
302 return;
305 if ((meta = file_type(data)) == NULL) {
306 fclose(f);
307 send_hdr(imsg->hdr.peerid, 51,
308 "don't know how to visualize this file");
309 return;
312 send_hdr(imsg->hdr.peerid, 20, meta);
313 send_file(imsg->hdr.peerid, f);
316 static void
317 handle_quit(struct imsg *imsg, size_t datalen)
319 event_loopbreak();
322 static void
323 handle_bookmark_page(struct imsg *imsg, size_t datalen)
325 char *data;
326 int res;
327 FILE *f;
329 data = imsg->data;
330 if (data[datalen-1] != '\0')
331 die();
333 if ((f = fopen(bookmark_file, "a")) == NULL) {
334 res = errno;
335 goto end;
337 fprintf(f, "=> %s\n", data);
338 fclose(f);
340 res = 0;
341 end:
342 fs_send_ui(IMSG_BOOKMARK_OK, 0, -1, &res, sizeof(res));
345 static void
346 handle_save_cert(struct imsg *imsg, size_t datalen)
348 struct tofu_entry e;
349 FILE *f;
350 int res;
352 /* TODO: traverse the file to avoid duplications? */
354 if (datalen != sizeof(e))
355 die();
356 memcpy(&e, imsg->data, datalen);
358 if ((f = fopen(known_hosts_file, "a")) == NULL) {
359 res = errno;
360 goto end;
362 fprintf(f, "%s %s %d\n", e.domain, e.hash, e.verified);
363 fclose(f);
365 res = 0;
366 end:
367 fs_send_ui(IMSG_SAVE_CERT_OK, imsg->hdr.peerid, -1,
368 &res, sizeof(res));
371 static void
372 handle_update_cert(struct imsg *imsg, size_t datalen)
374 FILE *tmp, *f;
375 struct tofu_entry entry;
376 char sfn[PATH_MAX], *line = NULL, *t;
377 size_t l, linesize = 0;
378 ssize_t linelen;
379 int fd, e, res = 0;
381 if (datalen != sizeof(entry))
382 die();
383 memcpy(&entry, imsg->data, datalen);
385 strlcpy(sfn, known_hosts_tmp, sizeof(sfn));
386 if ((fd = mkstemp(sfn)) == -1 ||
387 (tmp = fdopen(fd, "w")) == NULL) {
388 if (fd != -1) {
389 unlink(sfn);
390 close(fd);
392 res = 0;
393 goto end;
396 if ((f = fopen(known_hosts_file, "r")) == NULL) {
397 unlink(sfn);
398 fclose(tmp);
399 res = 0;
400 goto end;
403 l = strlen(entry.domain);
404 while ((linelen = getline(&line, &linesize, f)) != -1) {
405 if ((t = strstr(line, entry.domain)) != NULL &&
406 (line[l] == ' ' || line[l] == '\t'))
407 continue;
408 /* line has a trailing \n */
409 fprintf(tmp, "%s", line);
411 fprintf(tmp, "%s %s %d\n", entry.domain, entry.hash, entry.verified);
413 free(line);
414 e = ferror(tmp);
416 fclose(tmp);
417 fclose(f);
419 if (e) {
420 unlink(sfn);
421 res = 0;
422 goto end;
425 res = rename(sfn, known_hosts_file) != -1;
427 end:
428 fs_send_ui(IMSG_UPDATE_CERT_OK, imsg->hdr.peerid, -1,
429 &res, sizeof(res));
432 static void
433 handle_file_open(struct imsg *imsg, size_t datalen)
435 char *path, *e;
436 int fd;
438 path = imsg->data;
439 if (path[datalen-1] != '\0')
440 die();
442 if ((fd = open(path, O_WRONLY | O_TRUNC | O_CREAT, 0644)) == -1) {
443 e = strerror(errno);
444 fs_send_ui(IMSG_FILE_OPENED, imsg->hdr.peerid, -1,
445 e, strlen(e)+1);
446 } else
447 fs_send_ui(IMSG_FILE_OPENED, imsg->hdr.peerid, fd,
448 NULL, 0);
451 static void
452 handle_session_start(struct imsg *imsg, size_t datalen)
454 if (datalen != 0)
455 die();
457 if ((session = fopen(session_file, "w")) == NULL)
458 die();
461 static void
462 handle_session_tab(struct imsg *imsg, size_t datalen)
464 char *url;
465 uint32_t flags;
467 if (session == NULL)
468 die();
470 flags = imsg->hdr.peerid;
471 url = imsg->data;
472 if (datalen == 0 || url[datalen-1] != '\0')
473 die();
474 fprintf(session, "%s", url);
476 if (flags & TAB_CURRENT)
477 fprintf(session, " current ");
478 else
479 fprintf(session, " - ");
482 static void
483 handle_session_tab_title(struct imsg *imsg, size_t datalen)
485 const char *title;
487 title = imsg->data;
488 if (title == NULL) {
489 datalen = 1;
490 title = "";
493 if (title[datalen-1] != '\0')
494 die();
496 fprintf(session, "%s\n", title);
499 static void
500 handle_session_end(struct imsg *imsg, size_t datalen)
502 if (session == NULL)
503 die();
504 fclose(session);
505 session = NULL;
508 static void
509 handle_dispatch_imsg(int fd, short ev, void *d)
511 struct imsgev *iev = d;
512 int e;
514 if (dispatch_imsg(iev, ev, handlers, sizeof(handlers)) == -1) {
515 /*
516 * This should leave a ~/.telescope/crashed file to
517 * trigger about:crash on next run. Unfortunately, if
518 * the main process dies the fs sticks around and
519 * doesn't notice that the fd was closed. Why EV_READ
520 * is not triggered when a fd is closed on the other end?
521 */
522 e = errno;
523 if ((fd = open(crashed_file, O_CREAT|O_TRUNC|O_WRONLY, 0600))
524 == -1)
525 err(1, "open");
526 close(fd);
527 errx(1, "connection closed: %s", strerror(e));
531 static int
532 fs_send_ui(int type, uint32_t peerid, int fd, const void *data,
533 uint16_t datalen)
535 return imsg_compose_event(iev_ui, type, peerid, 0, fd,
536 data, datalen);
539 int
540 fs_init(void)
542 strlcpy(base_path, getenv("HOME"), sizeof(base_path));
543 strlcat(base_path, "/.telescope", sizeof(base_path));
544 mkdir(base_path, 0700);
546 strlcpy(lockfile_path, base_path, sizeof(lockfile_path));
547 strlcat(lockfile_path, "/lock", sizeof(lockfile_path));
549 strlcpy(bookmark_file, base_path, sizeof(bookmark_file));
550 strlcat(bookmark_file, "/bookmarks.gmi", sizeof(bookmark_file));
552 strlcpy(known_hosts_file, base_path, sizeof(known_hosts_file));
553 strlcat(known_hosts_file, "/known_hosts", sizeof(known_hosts_file));
555 strlcpy(known_hosts_tmp, base_path, sizeof(known_hosts_tmp));
556 strlcat(known_hosts_tmp, "/known_hosts.tmp.XXXXXXXXXX",
557 sizeof(known_hosts_file));
559 strlcpy(session_file, base_path, sizeof(session_file));
560 strlcat(session_file, "/session", sizeof(session_file));
562 strlcpy(crashed_file, base_path, sizeof(crashed_file));
563 strlcat(crashed_file, "/crashed", sizeof(crashed_file));
565 return 1;
568 int
569 fs_main(void)
571 setproctitle("fs");
573 fs_init();
575 event_init();
577 /* Setup pipe and event handler to the main process */
578 if ((iev_ui = malloc(sizeof(*iev_ui))) == NULL)
579 die();
580 imsg_init(&iev_ui->ibuf, 3);
581 iev_ui->handler = handle_dispatch_imsg;
582 iev_ui->events = EV_READ;
583 event_set(&iev_ui->ev, iev_ui->ibuf.fd, iev_ui->events,
584 iev_ui->handler, iev_ui);
585 event_add(&iev_ui->ev, NULL);
587 sandbox_fs_process();
589 event_dispatch();
590 return 0;
595 int
596 last_time_crashed(void)
598 int fd;
600 if ((fd = open(crashed_file, O_RDONLY)) == -1)
601 return 0;
603 close(fd);
604 unlink(crashed_file);
605 return 1;
608 int
609 lock_session(void)
611 struct flock lock;
612 int fd;
614 if ((fd = open(lockfile_path, O_WRONLY|O_CREAT, 0600)) == -1)
615 return -1;
617 lock.l_start = 0;
618 lock.l_len = 0;
619 lock.l_type = F_WRLCK;
620 lock.l_whence = SEEK_SET;
622 if (fcntl(fd, F_SETLK, &lock) == -1) {
623 close(fd);
624 return -1;
627 return fd;
630 static int
631 parse_khost_line(char *line, char *tmp[3])
633 char **ap;
635 for (ap = tmp; ap < &tmp[3] &&
636 (*ap = strsep(&line, " \t\n")) != NULL;) {
637 if (**ap != '\0')
638 ap++;
641 return ap == &tmp[3] && *line == '\0';
644 int
645 load_certs(struct ohash *h)
647 char *tmp[3], *line = NULL;
648 const char *errstr;
649 size_t lineno = 0, linesize = 0;
650 ssize_t linelen;
651 FILE *f;
652 struct tofu_entry *e;
654 if ((f = fopen(known_hosts_file, "r")) == NULL)
655 return 0;
657 while ((linelen = getline(&line, &linesize, f)) != -1) {
658 if ((e = calloc(1, sizeof(*e))) == NULL)
659 abort();
661 lineno++;
663 if (parse_khost_line(line, tmp)) {
664 strlcpy(e->domain, tmp[0], sizeof(e->domain));
665 strlcpy(e->hash, tmp[1], sizeof(e->hash));
667 e->verified = strtonum(tmp[2], 0, 1, &errstr);
668 if (errstr != NULL)
669 errx(1, "%s:%zu verification for %s is %s: %s",
670 known_hosts_file, lineno,
671 e->domain, errstr, tmp[2]);
672 tofu_add(h, e);
673 } else {
674 warnx("%s:%zu invalid entry",
675 known_hosts_file, lineno);
676 free(e);
680 free(line);
681 return ferror(f);