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_BOOKMARK_PAGE,
62 IMSG_BOOKMARK_OK,
63 IMSG_SAVE_CERT,
64 IMSG_SAVE_CERT_OK,
65 IMSG_UPDATE_CERT,
66 IMSG_UPDATE_CERT_OK,
68 IMSG_FILE_OPEN,
69 IMSG_FILE_OPENED,
71 IMSG_SESSION_START,
72 IMSG_SESSION_TAB,
73 IMSG_SESSION_TAB_HIST,
74 IMSG_SESSION_END,
75 };
77 enum line_type {
78 /* text/gemini */
79 LINE_TEXT,
80 LINE_LINK,
81 LINE_TITLE_1,
82 LINE_TITLE_2,
83 LINE_TITLE_3,
84 LINE_ITEM,
85 LINE_QUOTE,
86 LINE_PRE_START,
87 LINE_PRE_CONTENT,
88 LINE_PRE_END,
90 /* text/x-patch */
91 LINE_PATCH,
92 LINE_PATCH_HDR,
93 LINE_PATCH_HUNK_HDR,
94 LINE_PATCH_ADD,
95 LINE_PATCH_DEL,
97 /* minibuffer */
98 LINE_COMPL,
99 LINE_COMPL_CURRENT,
101 /* help */
102 LINE_HELP,
104 /* download */
105 LINE_DOWNLOAD,
106 LINE_DOWNLOAD_DONE,
107 LINE_DOWNLOAD_INFO,
108 };
110 /* for lines: mark as hidden */
111 #define L_HIDDEN 1
113 /* for vlines: mark as continuation */
114 #define L_CONTINUATION 2
116 struct line {
117 enum line_type type;
118 char *line;
119 char *alt;
120 void *data;
121 int flags;
122 TAILQ_ENTRY(line) lines;
123 };
125 struct vline {
126 struct line *parent;
127 char *line;
128 int flags;
129 TAILQ_ENTRY(vline) vlines;
130 };
132 struct parser;
133 struct page;
135 typedef int (*parsechunkfn)(struct parser*, const char*, size_t);
136 typedef int (*parserfreefn)(struct parser*);
138 typedef void (imsg_handlerfn)(struct imsg*, size_t);
140 struct parser {
141 const char *name;
142 char title[128+1];
143 char *buf;
144 size_t len;
145 size_t cap;
147 #define PARSER_IN_BODY 1
148 #define PARSER_IN_PRE 2
149 #define PARSER_IN_PATCH_HDR 4
150 int flags;
151 parsechunkfn parse;
152 parserfreefn free;
154 TAILQ_HEAD(, line) head;
155 };
157 /*
158 * differnt types of trust for a certificate. Following
159 * gemini://thfr.info/gemini/modified-trust-verify.gmi
160 */
161 enum trust_state {
162 TS_UNKNOWN,
163 TS_UNTRUSTED,
164 TS_TEMP_TRUSTED,
165 TS_TRUSTED,
166 TS_VERIFIED,
167 };
169 struct tofu_entry {
170 char domain[GEMINI_URL_LEN];
172 /*
173 * enough space for ``PROTO:HASH''. probably isn't a good
174 * idea tho.
175 */
176 char hash[128+1];
177 int verified;
178 };
180 struct histhead {
181 TAILQ_HEAD(mhisthead, hist) head;
182 size_t len;
183 };
184 struct hist {
185 char h[1025];
186 TAILQ_ENTRY(hist) entries;
187 };
189 struct buffer {
190 struct parser page;
192 size_t last_line_off;
193 int force_redraw;
195 int curs_x;
196 int curs_y;
197 size_t line_off;
198 size_t line_max;
199 struct vline *top_line;
200 struct vline *current_line;
201 size_t cpoff;
202 TAILQ_HEAD(vhead, vline) head;
203 };
205 #define TAB_CURRENT 0x1 /* only for save_session */
206 #define TAB_URGENT 0x2
207 #define TAB_LAZY 0x4 /* to lazy load tabs */
209 #define NEW_TAB_URL "about:new"
211 extern TAILQ_HEAD(tabshead, tab) tabshead;
212 struct tab {
213 TAILQ_ENTRY(tab) tabs;
214 uint32_t id;
215 uint32_t flags;
217 char *cert;
218 enum trust_state trust;
219 struct proxy *proxy;
220 struct phos_uri uri;
221 struct histhead hist;
222 struct hist *hist_cur;
223 size_t hist_off;
225 int code;
226 char meta[GEMINI_URL_LEN];
227 int redirect_count;
229 struct buffer buffer;
231 short loading_anim;
232 short loading_anim_step;
233 struct event loadingev;
234 };
236 extern TAILQ_HEAD(proxylist, proxy) proxies;
237 struct proxy {
238 char *match_proto;
240 char *host;
241 char *port;
242 int proto;
244 TAILQ_ENTRY(proxy) proxies;
245 };
247 enum {
248 PROTO_FINGER,
249 PROTO_GEMINI,
250 PROTO_GOPHER,
251 /* ... */
252 };
254 struct get_req {
255 int proto;
256 char host[254];
257 char port[16];
258 char req[1027];
259 };
261 struct cmd {
262 const char *cmd;
263 void (*fn)(struct buffer *);
264 const char *descr;
265 };
266 extern struct cmd cmds[];
268 /* defaults.c */
269 void config_init(void);
270 int config_setprfx(const char *, const char *, const char *);
271 int config_setvari(const char *, int);
272 int config_setvars(const char *, char *);
273 int config_setcolor(int, const char *, int, int, int);
274 int config_setattr(const char *, int, int, int);
275 void config_apply_style(void);
277 /* downloads.c */
278 extern STAILQ_HEAD(downloads, download) downloads;
279 struct download {
280 uint32_t id;
281 int fd;
282 size_t bytes;
283 char *path;
284 STAILQ_ENTRY(download) entries;
285 };
287 void recompute_downloads(void);
288 void enqueue_download(uint32_t, const char *);
289 struct download *download_by_id(uint32_t);
291 /* help.c */
292 void recompute_help(void);
294 /* hist.c */
295 void hist_clear_forward(struct histhead*, struct hist*);
296 void hist_push(struct histhead*, struct hist*);
297 void hist_add_before(struct histhead *, struct hist *, struct hist *);
298 struct hist *hist_pop(struct histhead *);
300 /* mime.c */
301 int setup_parser_for(struct tab*);
303 /* net.c */
304 int net_main(void);
306 /* parse.y */
307 void parseconfig(const char *, int);
309 /* sandbox.c */
310 void sandbox_net_process(void);
311 void sandbox_ui_process(void);
312 void sandbox_fs_process(void);
314 /* telescope.c */
315 extern int operating;
316 extern int safe_mode;
318 void gopher_send_search_req(struct tab *, const char *);
319 void load_url(struct tab *, const char *, const char *, int);
320 void load_url_in_tab(struct tab *, const char *, const char *, int);
321 int load_previous_page(struct tab*);
322 int load_next_page(struct tab*);
323 void add_to_bookmarks(const char*);
324 void humanify_url(const char *, char *, size_t);
325 int ui_send_net(int, uint32_t, const void *, uint16_t);
326 int ui_send_fs(int, uint32_t, const void *, uint16_t);
328 /* tofu.c */
329 void tofu_init(struct ohash*, unsigned int, ptrdiff_t);
330 struct tofu_entry *tofu_lookup(struct ohash*, const char*, const char*);
331 void tofu_add(struct ohash*, struct tofu_entry*);
332 void tofu_update(struct ohash*, struct tofu_entry*);
333 void tofu_temp_trust(struct ohash *, const char *, const char *, const char *);
335 /* util.c */
336 int mark_nonblock(int);
337 int has_prefix(const char*, const char*);
338 int has_suffix(const char *, const char *);
339 int unicode_isspace(uint32_t);
340 int unicode_isgraph(uint32_t);
341 int dispatch_imsg(struct imsgev *, short, imsg_handlerfn **, size_t);
342 int imsg_compose_event(struct imsgev *, uint16_t, uint32_t, pid_t, int, const void *, uint16_t);
344 /* wrap.c */
345 void erase_buffer(struct buffer *);
346 void empty_linelist(struct buffer*);
347 void empty_vlist(struct buffer*);
348 int wrap_one(struct buffer *, const char *, struct line *, size_t);
349 int wrap_text(struct buffer*, const char*, struct line*, size_t);
350 int hardwrap_text(struct buffer*, struct line*, size_t);
351 int wrap_page(struct buffer *, int width);
353 #endif /* TELESCOPE_H */