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 #ifndef TELESCOPE_H
18 #define TELESCOPE_H
20 #include "compat.h"
22 #include <limits.h>
23 #include <stdio.h> /* XXX: for parsers.h */
25 #include "cmd.h"
26 #include "phos.h"
28 #define MIN(a, b) ((a) < (b) ? (a) : (b))
29 #define MAX(a, b) ((a) > (b) ? (a) : (b))
31 #define GEMINI_URL_LEN 1024
32 #define TITLE_MAX 128+1 /* account for NUL too */
34 #define SIDE_WINDOW_LEFT 0x1
35 #define SIDE_WINDOW_BOTTOM 0x2
37 struct imsgev {
38 struct imsgbuf ibuf;
39 void (*handler)(int, short, void *);
40 struct event ev;
41 short events;
42 };
44 #define IMSG_DATA_SIZE(imsg) ((imsg).hdr.len - IMSG_HEADER_SIZE)
46 enum imsg_type {
47 /* ui <-> client/fs */
48 IMSG_GET, /* data is URL, peerid the tab id */
49 IMSG_GET_FILE, /* data is path, without \r\n or such */
50 IMSG_GET_RAW, /* get but with an explicit req str */
51 IMSG_ERR,
52 IMSG_CHECK_CERT,
53 IMSG_CERT_STATUS,
54 IMSG_GOT_CODE,
55 IMSG_GOT_META,
56 IMSG_PROCEED,
57 IMSG_STOP,
58 IMSG_BUF,
59 IMSG_EOF,
60 IMSG_QUIT,
62 /* ui <-> fs */
63 IMSG_INIT,
64 IMSG_TOFU,
65 IMSG_BOOKMARK_PAGE,
66 IMSG_BOOKMARK_OK,
67 IMSG_SAVE_CERT,
68 IMSG_SAVE_CERT_OK,
69 IMSG_UPDATE_CERT,
70 IMSG_UPDATE_CERT_OK,
72 IMSG_FILE_OPEN,
73 IMSG_FILE_OPENED,
75 IMSG_SESSION_START,
76 IMSG_SESSION_TAB,
77 IMSG_SESSION_TAB_HIST,
78 IMSG_SESSION_END,
80 IMSG_HIST_ITEM, /* struct histitem */
81 IMSG_HIST_END, /* empty */
83 IMSG_CTL_OPEN_URL,
84 };
86 enum line_type {
87 /* text/gemini */
88 LINE_TEXT,
89 LINE_LINK,
90 LINE_TITLE_1,
91 LINE_TITLE_2,
92 LINE_TITLE_3,
93 LINE_ITEM,
94 LINE_QUOTE,
95 LINE_PRE_START,
96 LINE_PRE_CONTENT,
97 LINE_PRE_END,
99 /* text/x-patch */
100 LINE_PATCH,
101 LINE_PATCH_HDR,
102 LINE_PATCH_HUNK_HDR,
103 LINE_PATCH_ADD,
104 LINE_PATCH_DEL,
106 /* minibuffer */
107 LINE_COMPL,
108 LINE_COMPL_CURRENT,
110 /* help */
111 LINE_HELP,
113 /* download */
114 LINE_DOWNLOAD,
115 LINE_DOWNLOAD_DONE,
116 LINE_DOWNLOAD_INFO,
118 /* misc ui */
119 LINE_FRINGE,
120 };
122 /* for lines: mark as hidden */
123 #define L_HIDDEN 1
125 /* for vlines: mark as continuation */
126 #define L_CONTINUATION 2
128 struct line {
129 enum line_type type;
130 char *line;
131 char *alt;
132 void *data;
133 int flags;
134 TAILQ_ENTRY(line) lines;
135 };
137 struct vline {
138 struct line *parent;
139 char *line;
140 int flags;
141 TAILQ_ENTRY(vline) vlines;
142 };
144 struct parser;
146 typedef int (*printfn)(void *, const char *, ...);
148 typedef int (*parsechunkfn)(struct parser *, const char *, size_t);
149 typedef int (*parserfreefn)(struct parser *);
150 typedef int (*parserserial)(struct parser *, FILE *);
152 typedef void (imsg_handlerfn)(struct imsg*, size_t);
154 struct parser {
155 const char *name;
156 char title[128+1];
157 char *buf;
158 size_t len;
159 size_t cap;
161 #define PARSER_IN_BODY 1
162 #define PARSER_IN_PRE 2
163 #define PARSER_IN_PATCH_HDR 4
164 int flags;
165 void (*init)(struct parser *);
166 parsechunkfn parse;
167 parserfreefn free;
168 parserserial serialize;
170 TAILQ_HEAD(, line) head;
171 };
173 /*
174 * differnt types of trust for a certificate. Following
175 * gemini://thfr.info/gemini/modified-trust-verify.gmi
176 */
177 enum trust_state {
178 TS_UNKNOWN,
179 TS_UNTRUSTED,
180 TS_TEMP_TRUSTED,
181 TS_TRUSTED,
182 TS_VERIFIED,
183 };
185 struct tofu_entry {
186 char domain[GEMINI_URL_LEN];
188 /*
189 * enough space for ``PROTO:HASH''. probably isn't a good
190 * idea tho.
191 */
192 char hash[128+1];
193 int verified;
194 };
196 struct histhead {
197 TAILQ_HEAD(mhisthead, hist) head;
198 size_t len;
199 };
200 struct hist {
201 char h[1025];
202 size_t line_off;
203 size_t current_off;
204 TAILQ_ENTRY(hist) entries;
205 };
207 struct buffer {
208 struct parser page;
210 size_t last_line_off;
211 int force_redraw;
213 int curs_x;
214 int curs_y;
215 size_t line_off;
216 size_t line_max;
217 struct vline *top_line;
218 struct vline *current_line;
219 size_t cpoff;
220 TAILQ_HEAD(vhead, vline) head;
221 };
223 #define TAB_CURRENT 0x1 /* only for save_session */
224 #define TAB_KILLED 0x2 /* only for save_session */
225 #define TAB_URGENT 0x4
226 #define TAB_LAZY 0x8 /* to lazy load tabs */
228 #define NEW_TAB_URL "about:new"
230 TAILQ_HEAD(tabshead, tab);
231 extern struct tabshead tabshead;
232 extern struct tabshead ktabshead;
233 struct tab {
234 TAILQ_ENTRY(tab) tabs;
235 uint32_t id;
236 uint32_t flags;
238 char *cert;
239 enum trust_state trust;
240 struct proxy *proxy;
241 struct phos_uri uri;
242 struct histhead hist;
243 struct hist *hist_cur;
244 size_t hist_off;
245 char *last_input_url;
247 int code;
248 char meta[GEMINI_URL_LEN];
249 int redirect_count;
251 struct buffer buffer;
253 short loading_anim;
254 short loading_anim_step;
255 struct event loadingev;
256 };
258 extern TAILQ_HEAD(proxylist, proxy) proxies;
259 struct proxy {
260 char *match_proto;
262 char *host;
263 char *port;
264 int proto;
266 TAILQ_ENTRY(proxy) proxies;
267 };
269 enum {
270 PROTO_FINGER,
271 PROTO_GEMINI,
272 PROTO_GOPHER,
273 /* ... */
274 };
276 struct get_req {
277 int proto;
278 char host[254];
279 char port[16];
280 char req[1027];
281 };
283 struct cmd {
284 const char *cmd;
285 void (*fn)(struct buffer *);
286 const char *descr;
287 };
288 extern struct cmd cmds[];
290 /* defaults.c */
291 void config_init(void);
292 int config_setprfx(const char *, const char *, const char *);
293 int config_setvari(const char *, int);
294 int config_setvars(const char *, char *);
295 int config_setcolor(int, const char *, int, int, int);
296 int config_setattr(const char *, int, int, int);
297 void config_apply_style(void);
299 /* downloads.c */
300 extern STAILQ_HEAD(downloads, download) downloads;
301 struct download {
302 uint32_t id;
303 int fd;
304 size_t bytes;
305 char *path;
306 int buffer;
307 STAILQ_ENTRY(download) entries;
308 };
310 void recompute_downloads(void);
311 void enqueue_download(uint32_t, const char *, int);
312 void dequeue_first_download(void);
313 struct download *download_by_id(uint32_t);
315 /* help.c */
316 void recompute_help(void);
318 /* hist.c */
319 void hist_clear(struct histhead *);
320 void hist_clear_forward(struct histhead*, struct hist*);
321 void hist_push(struct histhead*, struct hist*);
322 void hist_add_before(struct histhead *, struct hist *, struct hist *);
323 struct hist *hist_pop(struct histhead *);
325 /* mime.c */
326 int setup_parser_for(struct tab*);
328 /* net.c */
329 int net_main(void);
331 /* parse.y */
332 void parseconfig(const char *, int);
334 /* sandbox.c */
335 void sandbox_net_process(void);
336 void sandbox_ui_process(void);
337 void sandbox_fs_process(void);
339 /* telescope.c */
340 extern int operating;
341 extern int safe_mode;
343 #define LU_MODE_NONE 0x0
344 #define LU_MODE_NOHIST 0x1
345 #define LU_MODE_NOCACHE 0x2
347 void gopher_send_search_req(struct tab *, const char *);
348 int load_page_from_str(struct tab *, const char *);
349 void load_url(struct tab *, const char *, const char *, int);
350 void load_url_in_tab(struct tab *, const char *, const char *, int);
351 int load_previous_page(struct tab*);
352 int load_next_page(struct tab*);
353 void add_to_bookmarks(const char*);
354 void write_buffer(const char *, struct tab *);
355 void humanify_url(const char *, char *, size_t);
356 int ui_send_net(int, uint32_t, const void *, uint16_t);
357 int ui_send_fs(int, uint32_t, const void *, uint16_t);
359 /* tofu.c */
360 void tofu_init(struct ohash*, unsigned int, ptrdiff_t);
361 struct tofu_entry *tofu_lookup(struct ohash*, const char*, const char*);
362 void tofu_add(struct ohash*, struct tofu_entry*);
363 void tofu_update(struct ohash*, struct tofu_entry*);
364 void tofu_temp_trust(struct ohash *, const char *, const char *, const char *);
366 /* wrap.c */
367 void erase_buffer(struct buffer *);
368 void empty_linelist(struct buffer*);
369 void empty_vlist(struct buffer*);
370 int wrap_one(struct buffer *, const char *, struct line *, size_t);
371 int wrap_text(struct buffer*, const char*, struct line*, size_t);
372 int hardwrap_text(struct buffer*, struct line*, size_t);
373 int wrap_page(struct buffer *, int width);
375 #endif /* TELESCOPE_H */