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_KILLED 0x2 /* only for save_session */
208 #define TAB_URGENT 0x4
209 #define TAB_LAZY 0x8 /* to lazy load tabs */
211 #define NEW_TAB_URL "about:new"
213 TAILQ_HEAD(tabshead, tab);
214 extern struct tabshead tabshead;
215 extern struct tabshead ktabshead;
216 struct tab {
217 TAILQ_ENTRY(tab) tabs;
218 uint32_t id;
219 uint32_t flags;
221 char *cert;
222 enum trust_state trust;
223 struct proxy *proxy;
224 struct phos_uri uri;
225 struct histhead hist;
226 struct hist *hist_cur;
227 size_t hist_off;
229 int code;
230 char meta[GEMINI_URL_LEN];
231 int redirect_count;
233 struct buffer buffer;
235 short loading_anim;
236 short loading_anim_step;
237 struct event loadingev;
238 };
240 extern TAILQ_HEAD(proxylist, proxy) proxies;
241 struct proxy {
242 char *match_proto;
244 char *host;
245 char *port;
246 int proto;
248 TAILQ_ENTRY(proxy) proxies;
249 };
251 enum {
252 PROTO_FINGER,
253 PROTO_GEMINI,
254 PROTO_GOPHER,
255 /* ... */
256 };
258 struct get_req {
259 int proto;
260 char host[254];
261 char port[16];
262 char req[1027];
263 };
265 struct cmd {
266 const char *cmd;
267 void (*fn)(struct buffer *);
268 const char *descr;
269 };
270 extern struct cmd cmds[];
272 /* defaults.c */
273 void config_init(void);
274 int config_setprfx(const char *, const char *, const char *);
275 int config_setvari(const char *, int);
276 int config_setvars(const char *, char *);
277 int config_setcolor(int, const char *, int, int, int);
278 int config_setattr(const char *, int, int, int);
279 void config_apply_style(void);
281 /* downloads.c */
282 extern STAILQ_HEAD(downloads, download) downloads;
283 struct download {
284 uint32_t id;
285 int fd;
286 size_t bytes;
287 char *path;
288 STAILQ_ENTRY(download) entries;
289 };
291 void recompute_downloads(void);
292 void enqueue_download(uint32_t, const char *);
293 struct download *download_by_id(uint32_t);
295 /* help.c */
296 void recompute_help(void);
298 /* hist.c */
299 void hist_clear_forward(struct histhead*, struct hist*);
300 void hist_push(struct histhead*, struct hist*);
301 void hist_add_before(struct histhead *, struct hist *, struct hist *);
302 struct hist *hist_pop(struct histhead *);
304 /* mime.c */
305 int setup_parser_for(struct tab*);
307 /* net.c */
308 int net_main(void);
310 /* parse.y */
311 void parseconfig(const char *, int);
313 /* sandbox.c */
314 void sandbox_net_process(void);
315 void sandbox_ui_process(void);
316 void sandbox_fs_process(void);
318 /* telescope.c */
319 extern int operating;
320 extern int safe_mode;
322 void gopher_send_search_req(struct tab *, const char *);
323 void load_url(struct tab *, const char *, const char *, int);
324 void load_url_in_tab(struct tab *, const char *, const char *, int);
325 int load_previous_page(struct tab*);
326 int load_next_page(struct tab*);
327 void add_to_bookmarks(const char*);
328 void humanify_url(const char *, char *, size_t);
329 int ui_send_net(int, uint32_t, const void *, uint16_t);
330 int ui_send_fs(int, uint32_t, const void *, uint16_t);
332 /* tofu.c */
333 void tofu_init(struct ohash*, unsigned int, ptrdiff_t);
334 struct tofu_entry *tofu_lookup(struct ohash*, const char*, const char*);
335 void tofu_add(struct ohash*, struct tofu_entry*);
336 void tofu_update(struct ohash*, struct tofu_entry*);
337 void tofu_temp_trust(struct ohash *, const char *, const char *, const char *);
339 /* util.c */
340 int mark_nonblock(int);
341 int has_prefix(const char*, const char*);
342 int has_suffix(const char *, const char *);
343 int unicode_isspace(uint32_t);
344 int unicode_isgraph(uint32_t);
345 int dispatch_imsg(struct imsgev *, short, imsg_handlerfn **, size_t);
346 int imsg_compose_event(struct imsgev *, uint16_t, uint32_t, pid_t, int, const void *, uint16_t);
348 /* wrap.c */
349 void erase_buffer(struct buffer *);
350 void empty_linelist(struct buffer*);
351 void empty_vlist(struct buffer*);
352 int wrap_one(struct buffer *, const char *, struct line *, size_t);
353 int wrap_text(struct buffer*, const char*, struct line*, size_t);
354 int hardwrap_text(struct buffer*, struct line*, size_t);
355 int wrap_page(struct buffer *, int width);
357 #endif /* TELESCOPE_H */