Blame


1 5e11c00c 2021-03-02 op /*
2 5e11c00c 2021-03-02 op * Copyright (c) 2021 Omar Polo <op@omarpolo.com>
3 5e11c00c 2021-03-02 op *
4 5e11c00c 2021-03-02 op * Permission to use, copy, modify, and distribute this software for any
5 5e11c00c 2021-03-02 op * purpose with or without fee is hereby granted, provided that the above
6 5e11c00c 2021-03-02 op * copyright notice and this permission notice appear in all copies.
7 5e11c00c 2021-03-02 op *
8 5e11c00c 2021-03-02 op * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 5e11c00c 2021-03-02 op * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 5e11c00c 2021-03-02 op * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 5e11c00c 2021-03-02 op * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 5e11c00c 2021-03-02 op * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 5e11c00c 2021-03-02 op * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 5e11c00c 2021-03-02 op * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 5e11c00c 2021-03-02 op */
16 5e11c00c 2021-03-02 op
17 5e11c00c 2021-03-02 op #ifndef TELESCOPE_H
18 5e11c00c 2021-03-02 op #define TELESCOPE_H
19 5e11c00c 2021-03-02 op
20 09312eb3 2021-05-14 op #include "cmd.h"
21 b0003f58 2021-03-08 op #include "compat.h"
22 e2226342 2021-05-12 op #include "phos/phos.h"
23 5e11c00c 2021-03-02 op
24 65d9b3ca 2021-03-14 op #include <event.h>
25 65d9b3ca 2021-03-14 op
26 dc5df781 2021-03-13 op #define MIN(a, b) ((a) < (b) ? (a) : (b))
27 dc5df781 2021-03-13 op #define MAX(a, b) ((a) > (b) ? (a) : (b))
28 dc5df781 2021-03-13 op
29 5e11c00c 2021-03-02 op #define GEMINI_URL_LEN 1024
30 5e11c00c 2021-03-02 op
31 5e11c00c 2021-03-02 op enum imsg_type {
32 740f578b 2021-03-15 op /* ui <-> client/fs */
33 5e11c00c 2021-03-02 op IMSG_GET, /* data is URL, peerid the tab id */
34 5e11c00c 2021-03-02 op IMSG_ERR,
35 5e11c00c 2021-03-02 op IMSG_CHECK_CERT,
36 5e11c00c 2021-03-02 op IMSG_CERT_STATUS,
37 5e11c00c 2021-03-02 op IMSG_GOT_CODE,
38 5e11c00c 2021-03-02 op IMSG_GOT_META,
39 0972d8b2 2021-03-02 op IMSG_PROCEED,
40 0972d8b2 2021-03-02 op IMSG_STOP,
41 5e11c00c 2021-03-02 op IMSG_BUF,
42 5e11c00c 2021-03-02 op IMSG_EOF,
43 5e11c00c 2021-03-02 op IMSG_QUIT,
44 740f578b 2021-03-15 op
45 740f578b 2021-03-15 op /* ui <-> fs */
46 740f578b 2021-03-15 op IMSG_BOOKMARK_PAGE,
47 740f578b 2021-03-15 op IMSG_BOOKMARK_OK,
48 3a227e9a 2021-03-18 op IMSG_SAVE_CERT,
49 3a227e9a 2021-03-18 op IMSG_SAVE_CERT_OK,
50 288fd238 2021-04-25 op IMSG_UPDATE_CERT,
51 288fd238 2021-04-25 op IMSG_UPDATE_CERT_OK,
52 c7107cec 2021-04-01 op
53 de2a69bb 2021-05-17 op IMSG_FILE_OPEN,
54 de2a69bb 2021-05-17 op IMSG_FILE_OPENED,
55 de2a69bb 2021-05-17 op
56 c7107cec 2021-04-01 op IMSG_SESSION_START,
57 c7107cec 2021-04-01 op IMSG_SESSION_TAB,
58 c7107cec 2021-04-01 op IMSG_SESSION_END,
59 c92e529c 2021-06-15 op };
60 c92e529c 2021-06-15 op
61 c92e529c 2021-06-15 op struct lineprefix {
62 c92e529c 2021-06-15 op const char *prfx1;
63 c92e529c 2021-06-15 op const char *prfx2;
64 c92e529c 2021-06-15 op };
65 c92e529c 2021-06-15 op extern struct lineprefix line_prefixes[];
66 c92e529c 2021-06-15 op
67 c92e529c 2021-06-15 op struct line_face {
68 c92e529c 2021-06-15 op int prefix_prop;
69 c92e529c 2021-06-15 op int text_prop;
70 5e11c00c 2021-03-02 op };
71 c92e529c 2021-06-15 op extern struct line_face line_faces[];
72 5e11c00c 2021-03-02 op
73 c92e529c 2021-06-15 op struct tab_face {
74 c92e529c 2021-06-15 op int background, tab, current_tab;
75 c92e529c 2021-06-15 op };
76 c92e529c 2021-06-15 op extern struct tab_face tab_face;
77 d5493194 2021-06-15 op
78 d5493194 2021-06-15 op struct modeline_face {
79 d5493194 2021-06-15 op int background;
80 d5493194 2021-06-15 op };
81 d5493194 2021-06-15 op extern struct modeline_face modeline_face;
82 d5493194 2021-06-15 op
83 d5493194 2021-06-15 op struct minibuffer_face {
84 d5493194 2021-06-15 op int background;
85 d5493194 2021-06-15 op };
86 d5493194 2021-06-15 op extern struct minibuffer_face minibuffer_face;
87 c92e529c 2021-06-15 op
88 5e11c00c 2021-03-02 op enum line_type {
89 5e11c00c 2021-03-02 op LINE_TEXT,
90 5e11c00c 2021-03-02 op LINE_LINK,
91 5e11c00c 2021-03-02 op LINE_TITLE_1,
92 5e11c00c 2021-03-02 op LINE_TITLE_2,
93 5e11c00c 2021-03-02 op LINE_TITLE_3,
94 5e11c00c 2021-03-02 op LINE_ITEM,
95 5e11c00c 2021-03-02 op LINE_QUOTE,
96 5e11c00c 2021-03-02 op LINE_PRE_START,
97 5e11c00c 2021-03-02 op LINE_PRE_CONTENT,
98 5e11c00c 2021-03-02 op LINE_PRE_END,
99 5e11c00c 2021-03-02 op };
100 5e11c00c 2021-03-02 op
101 5e11c00c 2021-03-02 op struct line {
102 5e11c00c 2021-03-02 op enum line_type type;
103 5e11c00c 2021-03-02 op char *line;
104 5e11c00c 2021-03-02 op char *alt;
105 ebdcadbf 2021-03-12 op int flags;
106 5e11c00c 2021-03-02 op TAILQ_ENTRY(line) lines;
107 5e11c00c 2021-03-02 op };
108 5e11c00c 2021-03-02 op
109 9a25f829 2021-03-14 op struct vline {
110 9a25f829 2021-03-14 op const struct line *parent;
111 9a25f829 2021-03-14 op char *line;
112 9a25f829 2021-03-14 op int flags;
113 9a25f829 2021-03-14 op TAILQ_ENTRY(vline) vlines;
114 9a25f829 2021-03-14 op };
115 9a25f829 2021-03-14 op
116 5e11c00c 2021-03-02 op struct parser;
117 5e11c00c 2021-03-02 op struct page;
118 5e11c00c 2021-03-02 op
119 5e11c00c 2021-03-02 op typedef int (*parsechunkfn)(struct parser*, const char*, size_t);
120 a5c3e03d 2021-03-02 op typedef int (*parserfreefn)(struct parser*);
121 5e11c00c 2021-03-02 op
122 5e11c00c 2021-03-02 op typedef void (imsg_handlerfn)(struct imsg*, size_t);
123 5e11c00c 2021-03-02 op
124 5e11c00c 2021-03-02 op struct parser {
125 fc43eadd 2021-03-12 op const char *name;
126 dc5df781 2021-03-13 op char title[32+1];
127 5e11c00c 2021-03-02 op char *buf;
128 5e11c00c 2021-03-02 op size_t len;
129 5e11c00c 2021-03-02 op size_t cap;
130 5e11c00c 2021-03-02 op int flags;
131 5e11c00c 2021-03-02 op parsechunkfn parse;
132 5e11c00c 2021-03-02 op parserfreefn free;
133 5e11c00c 2021-03-02 op
134 5e11c00c 2021-03-02 op TAILQ_HEAD(, line) head;
135 5e11c00c 2021-03-02 op };
136 5e11c00c 2021-03-02 op
137 10346511 2021-03-17 op /*
138 10346511 2021-03-17 op * differnt types of trust for a certificate. Following
139 10346511 2021-03-17 op * gemini://thfr.info/gemini/modified-trust-verify.gmi
140 10346511 2021-03-17 op */
141 10346511 2021-03-17 op enum trust_state {
142 10346511 2021-03-17 op TS_UNKNOWN,
143 10346511 2021-03-17 op TS_UNTRUSTED,
144 10346511 2021-03-17 op TS_TRUSTED,
145 10346511 2021-03-17 op TS_VERIFIED,
146 10346511 2021-03-17 op };
147 10346511 2021-03-17 op
148 cbcc75fb 2021-03-17 op struct tofu_entry {
149 cbcc75fb 2021-03-17 op char domain[GEMINI_URL_LEN];
150 f1c6e31e 2021-05-12 op
151 f1c6e31e 2021-05-12 op /*
152 f1c6e31e 2021-05-12 op * enough space for ``PROTO:HASH''. probably isn't a good
153 f1c6e31e 2021-05-12 op * idea tho.
154 f1c6e31e 2021-05-12 op */
155 cbcc75fb 2021-03-17 op char hash[128+1];
156 cbcc75fb 2021-03-17 op int verified;
157 cbcc75fb 2021-03-17 op };
158 cbcc75fb 2021-03-17 op
159 2ba66cea 2021-03-22 op struct histhead {
160 2ba66cea 2021-03-22 op TAILQ_HEAD(mhisthead, hist) head;
161 2ba66cea 2021-03-22 op size_t len;
162 2ba66cea 2021-03-22 op };
163 2ba66cea 2021-03-22 op struct hist {
164 2ba66cea 2021-03-22 op char h[1025];
165 2ba66cea 2021-03-22 op TAILQ_ENTRY(hist) entries;
166 2ba66cea 2021-03-22 op };
167 2ba66cea 2021-03-22 op
168 46f6e974 2021-05-17 op struct buffer {
169 2ba66cea 2021-03-22 op struct parser page;
170 2ba66cea 2021-03-22 op int curs_x;
171 2ba66cea 2021-03-22 op int curs_y;
172 2ba66cea 2021-03-22 op size_t line_off;
173 2ba66cea 2021-03-22 op size_t line_max;
174 2ba66cea 2021-03-22 op struct vline *current_line;
175 2ba66cea 2021-03-22 op size_t cpoff;
176 2ba66cea 2021-03-22 op TAILQ_HEAD(vhead, vline) head;
177 2ba66cea 2021-03-22 op };
178 2ba66cea 2021-03-22 op
179 5e11c00c 2021-03-02 op extern TAILQ_HEAD(tabshead, tab) tabshead;
180 5e11c00c 2021-03-02 op struct tab {
181 5e11c00c 2021-03-02 op TAILQ_ENTRY(tab) tabs;
182 5e11c00c 2021-03-02 op uint32_t id;
183 5e11c00c 2021-03-02 op uint32_t flags;
184 0972d8b2 2021-03-02 op
185 288fd238 2021-04-25 op char *cert;
186 10346511 2021-03-17 op enum trust_state trust;
187 31f1a758 2021-04-22 op struct phos_uri uri;
188 2051e653 2021-03-13 op struct histhead hist;
189 2051e653 2021-03-13 op struct hist *hist_cur;
190 2051e653 2021-03-13 op size_t hist_off;
191 8af5e5ed 2021-03-08 op
192 0972d8b2 2021-03-02 op int code;
193 0972d8b2 2021-03-02 op char meta[GEMINI_URL_LEN];
194 0972d8b2 2021-03-02 op int redirect_count;
195 1d08c280 2021-03-06 op
196 46f6e974 2021-05-17 op struct buffer buffer;
197 2ba66cea 2021-03-22 op
198 2ba66cea 2021-03-22 op short loading_anim;
199 2ba66cea 2021-03-22 op short loading_anim_step;
200 2ba66cea 2021-03-22 op struct event loadingev;
201 de2a69bb 2021-05-17 op
202 de2a69bb 2021-05-17 op int fd;
203 de2a69bb 2021-05-17 op size_t bytes;
204 de2a69bb 2021-05-17 op char *path;
205 5e11c00c 2021-03-02 op };
206 5e11c00c 2021-03-02 op
207 4d3785b1 2021-03-09 op struct proto {
208 4d3785b1 2021-03-09 op const char *schema;
209 4d3785b1 2021-03-09 op
210 f1c6e31e 2021-05-12 op /*
211 f1c6e31e 2021-05-12 op * should load the given url in the tab. Optionally, it may
212 4d3785b1 2021-03-09 op * consider the given url as relative to the one already
213 4d3785b1 2021-03-09 op * present in tab. It must set tab->urlstr to a serialized
214 f1c6e31e 2021-05-12 op * human-friendly URL.
215 f1c6e31e 2021-05-12 op */
216 4d3785b1 2021-03-09 op void (*loadfn)(struct tab*, const char*);
217 4d3785b1 2021-03-09 op };
218 4d3785b1 2021-03-09 op
219 67c8ed7f 2021-03-13 op struct kmap {
220 67c8ed7f 2021-03-13 op TAILQ_HEAD(map, keymap) m;
221 67c8ed7f 2021-03-13 op void (*unhandled_input)(void);
222 67c8ed7f 2021-03-13 op };
223 67c8ed7f 2021-03-13 op
224 67c8ed7f 2021-03-13 op struct keymap {
225 67c8ed7f 2021-03-13 op int meta;
226 67c8ed7f 2021-03-13 op int key;
227 67c8ed7f 2021-03-13 op struct kmap map;
228 46f6e974 2021-05-17 op void (*fn)(struct buffer*);
229 67c8ed7f 2021-03-13 op
230 67c8ed7f 2021-03-13 op TAILQ_ENTRY(keymap) keymaps;
231 67c8ed7f 2021-03-13 op };
232 67c8ed7f 2021-03-13 op
233 69e1d1b6 2021-06-15 op /* defaults.c */
234 69e1d1b6 2021-06-15 op int config_setprfx(const char *, int, const char *);
235 69e1d1b6 2021-06-15 op
236 35e1f40a 2021-03-14 op /* fs.c */
237 3a227e9a 2021-03-18 op int fs_init(void);
238 35e1f40a 2021-03-14 op int fs_main(struct imsgbuf*);
239 3a227e9a 2021-03-18 op int load_certs(struct ohash*);
240 c7107cec 2021-04-01 op int load_last_session(void(*)(const char*));
241 5e11c00c 2021-03-02 op
242 5e11c00c 2021-03-02 op /* gemini.c */
243 35e1f40a 2021-03-14 op int client_main(struct imsgbuf*);
244 5e11c00c 2021-03-02 op
245 5e11c00c 2021-03-02 op /* gemtext.c */
246 5e11c00c 2021-03-02 op void gemtext_initparser(struct parser*);
247 cbcc75fb 2021-03-17 op
248 2051e653 2021-03-13 op /* hist.c */
249 2051e653 2021-03-13 op void hist_clear_forward(struct histhead*, struct hist*);
250 2051e653 2021-03-13 op void hist_push(struct histhead*, struct hist*);
251 2051e653 2021-03-13 op
252 67c8ed7f 2021-03-13 op /* keymap.c */
253 67c8ed7f 2021-03-13 op int kbd(const char*);
254 67c8ed7f 2021-03-13 op const char *unkbd(int);
255 46f6e974 2021-05-17 op int kmap_define_key(struct kmap*, const char*, void(*)(struct buffer*));
256 67c8ed7f 2021-03-13 op
257 c07ac996 2021-03-12 op /* mime.c */
258 c07ac996 2021-03-12 op int setup_parser_for(struct tab*);
259 c07ac996 2021-03-12 op
260 0972d8b2 2021-03-02 op /* pages.c */
261 0972d8b2 2021-03-02 op extern const char *about_new;
262 0972d8b2 2021-03-02 op
263 0972d8b2 2021-03-02 op #define CANNOT_FETCH 0
264 0972d8b2 2021-03-02 op #define TOO_MUCH_REDIRECTS 1
265 5cd2ebb1 2021-03-11 op #define MALFORMED_RESPONSE 2
266 c07ac996 2021-03-12 op #define UNKNOWN_TYPE_OR_CSET 3
267 0972d8b2 2021-03-02 op extern const char *err_pages[70];
268 0972d8b2 2021-03-02 op
269 c92e529c 2021-06-15 op /* parse.y */
270 c92e529c 2021-06-15 op void parseconfig(const char *, int);
271 c92e529c 2021-06-15 op
272 3d70083d 2021-03-12 op /* parser.c */
273 3d70083d 2021-03-12 op int parser_append(struct parser*, const char*, size_t);
274 3d70083d 2021-03-12 op int parser_set_buf(struct parser*, const char*, size_t);
275 a5845bb5 2021-03-20 op int parser_foreach_line(struct parser*, const char*, size_t, parsechunkfn);
276 3d70083d 2021-03-12 op
277 ebdcadbf 2021-03-12 op /* sandbox.c */
278 ebdcadbf 2021-03-12 op void sandbox_network_process(void);
279 b1d4d01b 2021-03-14 op void sandbox_ui_process(void);
280 35e1f40a 2021-03-14 op void sandbox_fs_process(void);
281 ebdcadbf 2021-03-12 op
282 bcb0b073 2021-03-07 op /* telescope.c */
283 4d3785b1 2021-03-09 op void load_about_url(struct tab*, const char*);
284 4d3785b1 2021-03-09 op void load_gemini_url(struct tab*, const char*);
285 bcb0b073 2021-03-07 op void load_url(struct tab*, const char*);
286 2051e653 2021-03-13 op int load_previous_page(struct tab*);
287 2051e653 2021-03-13 op int load_next_page(struct tab*);
288 9ad4627d 2021-03-10 op void stop_tab(struct tab*);
289 740f578b 2021-03-15 op void add_to_bookmarks(const char*);
290 c7107cec 2021-04-01 op void save_session(void);
291 bcb0b073 2021-03-07 op
292 c49d61bc 2021-03-12 op /* textplain.c */
293 c49d61bc 2021-03-12 op void textplain_initparser(struct parser*);
294 c49d61bc 2021-03-12 op
295 c36d43ac 2021-04-25 op /* tofu.c */
296 c36d43ac 2021-04-25 op void tofu_init(struct ohash*, unsigned int, ptrdiff_t);
297 c36d43ac 2021-04-25 op struct tofu_entry *tofu_lookup(struct ohash*, const char*, const char*);
298 c36d43ac 2021-04-25 op void tofu_add(struct ohash*, struct tofu_entry*);
299 288fd238 2021-04-25 op void tofu_update(struct ohash*, struct tofu_entry*);
300 c36d43ac 2021-04-25 op
301 5e11c00c 2021-03-02 op /* ui.c */
302 2eef3403 2021-04-22 op unsigned int tab_new_id(void);
303 6cd6a9e1 2021-03-20 op int ui_init(int, char * const*);
304 8af5e5ed 2021-03-08 op void ui_on_tab_loaded(struct tab*);
305 5e11c00c 2021-03-02 op void ui_on_tab_refresh(struct tab*);
306 5cd2ebb1 2021-03-11 op void ui_require_input(struct tab*, int);
307 de2a69bb 2021-05-17 op void ui_read(const char*, void(*)(const char*, unsigned int), unsigned int);
308 b3575139 2021-04-01 op void ui_yornp(const char*, void (*)(int, unsigned int), unsigned int);
309 740f578b 2021-03-15 op void ui_notify(const char*, ...) __attribute__((format(printf, 1, 2)));
310 5e11c00c 2021-03-02 op void ui_end(void);
311 5e11c00c 2021-03-02 op
312 174b3cdf 2021-03-21 op /* utf.8 */
313 8947c1f2 2021-03-21 op uint32_t utf8_decode(uint32_t*restrict, uint32_t*restrict, uint8_t);
314 17e5106b 2021-03-21 op size_t utf8_encode(uint32_t, char*);
315 174b3cdf 2021-03-21 op char *utf8_nth(char*, size_t);
316 174b3cdf 2021-03-21 op size_t utf8_cplen(char*);
317 174b3cdf 2021-03-21 op size_t utf8_chwidth(uint32_t);
318 174b3cdf 2021-03-21 op size_t utf8_snwidth(const char*, size_t);
319 174b3cdf 2021-03-21 op size_t utf8_swidth(const char*);
320 17e5106b 2021-03-21 op size_t utf8_swidth_between(const char*, const char*);
321 2ba66cea 2021-03-22 op char *utf8_next_cp(const char*);
322 2ba66cea 2021-03-22 op char *utf8_prev_cp(const char*, const char*);
323 174b3cdf 2021-03-21 op
324 5e11c00c 2021-03-02 op /* util.c */
325 5e11c00c 2021-03-02 op int mark_nonblock(int);
326 5c88f028 2021-03-09 op int has_prefix(const char*, const char*);
327 17e5106b 2021-03-21 op int unicode_isspace(uint32_t);
328 17e5106b 2021-03-21 op int unicode_isgraph(uint32_t);
329 1304bbdd 2021-03-15 op void dispatch_imsg(struct imsgbuf*, imsg_handlerfn**, size_t);
330 5e11c00c 2021-03-02 op
331 65d9b3ca 2021-03-14 op /* wrap.c */
332 46f6e974 2021-05-17 op void empty_linelist(struct buffer*);
333 46f6e974 2021-05-17 op void empty_vlist(struct buffer*);
334 46f6e974 2021-05-17 op int wrap_text(struct buffer*, const char*, struct line*, size_t);
335 46f6e974 2021-05-17 op int hardwrap_text(struct buffer*, struct line*, size_t);
336 65d9b3ca 2021-03-14 op
337 5e11c00c 2021-03-02 op #endif /* TELESCOPE_H */