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>
24 #include "cmd.h"
25 #include "phos/phos.h"
27 #define MIN(a, b) ((a) < (b) ? (a) : (b))
28 #define MAX(a, b) ((a) > (b) ? (a) : (b))
30 #define GEMINI_URL_LEN 1024
31 #define TITLE_MAX 128+1 /* account for NUL too */
33 #define SIDE_WINDOW_LEFT 0x1
34 #define SIDE_WINDOW_BOTTOM 0x2
36 struct imsgev {
37 struct imsgbuf ibuf;
38 void (*handler)(int, short, void *);
39 struct event ev;
40 short events;
41 };
43 enum imsg_type {
44 /* ui <-> client/fs */
45 IMSG_GET, /* data is URL, peerid the tab id */
46 IMSG_GET_FILE, /* data is path, without \r\n or such */
47 IMSG_GET_RAW, /* get but with an explicit req str */
48 IMSG_ERR,
49 IMSG_CHECK_CERT,
50 IMSG_CERT_STATUS,
51 IMSG_GOT_CODE,
52 IMSG_GOT_META,
53 IMSG_PROCEED,
54 IMSG_STOP,
55 IMSG_BUF,
56 IMSG_EOF,
57 IMSG_QUIT,
59 /* ui <-> fs */
60 IMSG_INIT,
61 IMSG_TOFU,
62 IMSG_BOOKMARK_PAGE,
63 IMSG_BOOKMARK_OK,
64 IMSG_SAVE_CERT,
65 IMSG_SAVE_CERT_OK,
66 IMSG_UPDATE_CERT,
67 IMSG_UPDATE_CERT_OK,
69 IMSG_FILE_OPEN,
70 IMSG_FILE_OPENED,
72 IMSG_SESSION_START,
73 IMSG_SESSION_TAB,
74 IMSG_SESSION_TAB_HIST,
75 IMSG_SESSION_END,
76 };
78 enum line_type {
79 /* text/gemini */
80 LINE_TEXT,
81 LINE_LINK,
82 LINE_TITLE_1,
83 LINE_TITLE_2,
84 LINE_TITLE_3,
85 LINE_ITEM,
86 LINE_QUOTE,
87 LINE_PRE_START,
88 LINE_PRE_CONTENT,
89 LINE_PRE_END,
91 /* text/x-patch */
92 LINE_PATCH,
93 LINE_PATCH_HDR,
94 LINE_PATCH_HUNK_HDR,
95 LINE_PATCH_ADD,
96 LINE_PATCH_DEL,
98 /* minibuffer */
99 LINE_COMPL,
100 LINE_COMPL_CURRENT,
102 /* help */
103 LINE_HELP,
105 /* download */
106 LINE_DOWNLOAD,
107 LINE_DOWNLOAD_DONE,
108 LINE_DOWNLOAD_INFO,
109 };
111 /* for lines: mark as hidden */
112 #define L_HIDDEN 1
114 /* for vlines: mark as continuation */
115 #define L_CONTINUATION 2
117 struct line {
118 enum line_type type;
119 char *line;
120 char *alt;
121 void *data;
122 int flags;
123 TAILQ_ENTRY(line) lines;
124 };
126 struct vline {
127 struct line *parent;
128 char *line;
129 int flags;
130 TAILQ_ENTRY(vline) vlines;
131 };
133 struct parser;
134 struct page;
136 typedef int (*parsechunkfn)(struct parser*, const char*, size_t);
137 typedef int (*parserfreefn)(struct parser*);
139 typedef void (imsg_handlerfn)(struct imsg*, size_t);
141 struct parser {
142 const char *name;
143 char title[128+1];
144 char *buf;
145 size_t len;
146 size_t cap;
148 #define PARSER_IN_BODY 1
149 #define PARSER_IN_PRE 2
150 #define PARSER_IN_PATCH_HDR 4
151 int flags;
152 parsechunkfn parse;
153 parserfreefn free;
155 TAILQ_HEAD(, line) head;
156 };
158 /*
159 * differnt types of trust for a certificate. Following
160 * gemini://thfr.info/gemini/modified-trust-verify.gmi
161 */
162 enum trust_state {
163 TS_UNKNOWN,
164 TS_UNTRUSTED,
165 TS_TEMP_TRUSTED,
166 TS_TRUSTED,
167 TS_VERIFIED,
168 };
170 struct tofu_entry {
171 char domain[GEMINI_URL_LEN];
173 /*
174 * enough space for ``PROTO:HASH''. probably isn't a good
175 * idea tho.
176 */
177 char hash[128+1];
178 int verified;
179 };
181 struct histhead {
182 TAILQ_HEAD(mhisthead, hist) head;
183 size_t len;
184 };
185 struct hist {
186 char h[1025];
187 TAILQ_ENTRY(hist) entries;
188 };
190 struct buffer {
191 struct parser page;
193 size_t last_line_off;
194 int force_redraw;
196 int curs_x;
197 int curs_y;
198 size_t line_off;
199 size_t line_max;
200 struct vline *top_line;
201 struct vline *current_line;
202 size_t cpoff;
203 TAILQ_HEAD(vhead, vline) head;
204 };
206 #define TAB_CURRENT 0x1 /* only for save_session */
207 #define TAB_URGENT 0x2
208 #define TAB_LAZY 0x4 /* to lazy load tabs */
210 #define NEW_TAB_URL "about:new"
212 extern TAILQ_HEAD(tabshead, tab) tabshead;
213 struct tab {
214 TAILQ_ENTRY(tab) tabs;
215 uint32_t id;
216 uint32_t flags;
218 char *cert;
219 enum trust_state trust;
220 struct proxy *proxy;
221 struct phos_uri uri;
222 struct histhead hist;
223 struct hist *hist_cur;
224 size_t hist_off;
226 int code;
227 char meta[GEMINI_URL_LEN];
228 int redirect_count;
230 struct buffer buffer;
232 short loading_anim;
233 short loading_anim_step;
234 struct event loadingev;
235 };
237 extern TAILQ_HEAD(proxylist, proxy) proxies;
238 struct proxy {
239 char *match_proto;
241 char *host;
242 char *port;
243 int proto;
245 TAILQ_ENTRY(proxy) proxies;
246 };
248 enum {
249 PROTO_FINGER,
250 PROTO_GEMINI,
251 PROTO_GOPHER,
252 /* ... */
253 };
255 struct get_req {
256 int proto;
257 char host[254];
258 char port[16];
259 char req[1027];
260 };
262 struct cmd {
263 const char *cmd;
264 void (*fn)(struct buffer *);
265 const char *descr;
266 };
267 extern struct cmd cmds[];
269 /* defaults.c */
270 void config_init(void);
271 int config_setprfx(const char *, const char *, const char *);
272 int config_setvari(const char *, int);
273 int config_setvars(const char *, char *);
274 int config_setcolor(int, const char *, int, int, int);
275 int config_setattr(const char *, int, int, int);
276 void config_apply_style(void);
278 /* downloads.c */
279 extern STAILQ_HEAD(downloads, download) downloads;
280 struct download {
281 uint32_t id;
282 int fd;
283 size_t bytes;
284 char *path;
285 STAILQ_ENTRY(download) entries;
286 };
288 void recompute_downloads(void);
289 void enqueue_download(uint32_t, const char *);
290 struct download *download_by_id(uint32_t);
292 /* help.c */
293 void recompute_help(void);
295 /* hist.c */
296 void hist_clear_forward(struct histhead*, struct hist*);
297 void hist_push(struct histhead*, struct hist*);
298 void hist_add_before(struct histhead *, struct hist *, struct hist *);
299 struct hist *hist_pop(struct histhead *);
301 /* mime.c */
302 int setup_parser_for(struct tab*);
304 /* net.c */
305 int net_main(void);
307 /* parse.y */
308 void parseconfig(const char *, int);
310 /* sandbox.c */
311 void sandbox_net_process(void);
312 void sandbox_ui_process(void);
313 void sandbox_fs_process(void);
315 /* telescope.c */
316 extern int operating;
317 extern int safe_mode;
319 void gopher_send_search_req(struct tab *, const char *);
320 void load_url(struct tab *, const char *, const char *, int);
321 void load_url_in_tab(struct tab *, const char *, const char *, int);
322 int load_previous_page(struct tab*);
323 int load_next_page(struct tab*);
324 void add_to_bookmarks(const char*);
325 void humanify_url(const char *, char *, size_t);
326 int ui_send_net(int, uint32_t, const void *, uint16_t);
327 int ui_send_fs(int, uint32_t, const void *, uint16_t);
329 /* tofu.c */
330 void tofu_init(struct ohash*, unsigned int, ptrdiff_t);
331 struct tofu_entry *tofu_lookup(struct ohash*, const char*, const char*);
332 void tofu_add(struct ohash*, struct tofu_entry*);
333 void tofu_update(struct ohash*, struct tofu_entry*);
334 void tofu_temp_trust(struct ohash *, const char *, const char *, const char *);
336 /* util.c */
337 int mark_nonblock(int);
338 int has_prefix(const char*, const char*);
339 int has_suffix(const char *, const char *);
340 int unicode_isspace(uint32_t);
341 int unicode_isgraph(uint32_t);
342 int dispatch_imsg(struct imsgev *, short, imsg_handlerfn **, size_t);
343 int imsg_compose_event(struct imsgev *, uint16_t, uint32_t, pid_t, int, const void *, uint16_t);
345 /* wrap.c */
346 void erase_buffer(struct buffer *);
347 void empty_linelist(struct buffer*);
348 void empty_vlist(struct buffer*);
349 int wrap_one(struct buffer *, const char *, struct line *, size_t);
350 int wrap_text(struct buffer*, const char*, struct line*, size_t);
351 int hardwrap_text(struct buffer*, struct line*, size_t);
352 int wrap_page(struct buffer *, int width);
354 #endif /* TELESCOPE_H */