about summary refs log tree commit diff stats
path: root/xombrero.h
blob: a94d67d1c9b14c12e34faf9188b62fe85f9c7566 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
/** @file
C plugin API.
*/

/** \mainpage C Plugins API and Hooks
List of all API function available to plugins: {@link profapi.h}

List of all hooks which plugins may implement: {@link profhooks.h}
*/

/** Type representing a window, used for referencing windows created by the plugin */
typedef char* PROF_WIN_TAG;

/** Type representing a function pointer to a command callback */
typedef void(*CMD_CB)(char **args);

/** Type representing a function pointer to a timed callback */
typedef void(*TIMED_CB)(void);

/** Type representing a function pointer to a window callback */
typedef void(*WINDOW_CB)(PROF_WIN_TAG win, char *line);

/**	Highlights the console window in the status bar. */
void prof_cons_alert(void);

/**
Show a message in the console window.
@param message the message to print
@return 1 on success, 0 on failure
*/
int prof_cons_show(const char * const message);

/**
Show a message in the console, using the specified theme.
Themes are specified in ~/.local/share/profanity/plugin_themes
@param group the group name in the themes file
@param item the item name within the group
@param def default colour if the theme cannot be found
@param message the message to print
@return 1 on success, 0 on failure
*/
int prof_cons_show_themed(const char *const group, const char *const item, const char *const def, const char *const message);

/**
Show a message indicating the command has been called incorrectly.
@param cmd the command name with leading slash, e.g. "/say"
@return 1 on success, 0 on failure
*/
int prof_cons_bad_cmd_usage(const char *const cmd);

/**
Register a new command, with help information, and callback for command execution.
Profanity will do some basic validation when the command is called using the argument range.
@param command_name the command name with leading slash, e.g. "/say"
@param min_args minimum number or arguments that the command considers to be a valid call
@param max_args maximum number or arguments that the command considers to be a valid call
@param synopsis command usages
@param description a short description of the command
@param arguments argument descriptions
@param examples example usages
@param callback The {@link CMD_CB} function to execute when the command is invoked
*/
void prof_register_command(const char *command_name, int min_args, int max_args,
    char **synopsis, const char *description, char *arguments[][2], char **examples,
    CMD_CB callback);

/**
Register a function that Profanity will call periodically.
@param callback The {@link TIMED_CB} function to execute
@param interval_seconds the time between each call to the function, in seconds
*/
void prof_register_timed(TIMED_CB callback, int interval_seconds);

/**
Add values to be autocompleted by Profanity for a command, or command argument. If the key already exists, Profanity will add the items to the existing autocomplete items for that key.
@param key the prefix to trigger autocompletion
@param items the items to return on autocompletion
*/
void prof_completer_add(const char *key, char **items);

/**
Remove values from autocompletion for a command, or command argument.

@param key the prefix from which to remove the autocompletion items
@param items the items to remove
*/
void prof_completer_remove(const char *key, char **items);

/**
Remove all values from autocompletion for a command, or command argument.

@param key the prefix from which to clear the autocompletion items
*/
void prof_completer_clear(const char *key);

/**
Add filepath autocompletion for a command, or command argument.

@param prefix the prefix from which filepath autocompletion will be triggered
*/
void prof_filepath_completer_add(const char *prefix);

/**
Send a desktop notification.
@param message the message to display in the notification
@param timeout_ms the length of time before the notification disappears in milliseconds
@param category the category of the notification, also displayed
*/
void prof_notify(const char *message, int timeout_ms, const char *category);

/**
Send a line of input to Profanity to execute.
@param line the line to send
*/
void prof_send_line(char *line);

/**
Retrieve the Jabber ID of the current chat recipient, when in a chat window.
@return the Jabber ID of the current chat recipient e.g. "buddy@chat.org", or NULL if not in a chat window.
*/
charpre { line-height: 125%; }
td.linenos .normal { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; }
span.linenos { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; }
td.linenos .special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; }
span.linenos.special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; }
.highlight .hll { background-color: #ffffcc }
.highlight .c { color: #888888 } /* Comment */
.highlight .err { color: #a61717; background-color: #e3d2d2 } /* Error */
.highlight .k { color: #008800; font-weight: bold } /* Keyword */
.highlight .ch { color: #888888 } /* Comment.Hashbang */
.highlight .cm { color: #888888 } /* Comment.Multiline */
.highlight .cp { color: #cc0000; font-weight: bold } /* Comment.Preproc */
.highlight .cpf { color: #888888 } /* Comment.PreprocFile */
.highlight .c1 { color: #888888 } /* Comment.Single */
.highlight .cs { color: #cc0000; font-weight: bold; background-color: #fff0f0 } /* Comment.Special */
.highlight .gd { color: #000000; background-color: #ffdddd } /* Generic.Deleted */
.highlight .ge { font-style: italic } /* Generic.Emph */
.highlight .ges { font-weight: bold; font-style: italic } /* Generic.EmphStrong */
.highlight .gr { color: #aa0000 } /* Generic.Error */
.highlight .gh { color: #333333 } /* Generic.Heading */
.highlight .gi { color: #000000; background-color: #ddffdd } /* Generic.Inserted */
.highlight .go { color: #888888 } /* Generic.Output */
.highlight .gp { color: #555555 } /* Generic.Prompt */
.highlight .gs { font-weight: bold } /* Generic.Strong */
.highlight .gu { color: #666666 } /* Generic.Subheading */
.highlight .gt { color: #aa0000 } /* Generic.Traceback */
.highlight .kc { color: #008800; font-weight: bold } /* Keyword.Constant */
.highlight .kd { color: #008800; font-weight: bold } /* Keyword.Declaration */
.highlight .kn { color: #008800; font-weight: bold } /* Keyword.Namespace */
.highlight .kp { color: #008800 } /* Keyword.Pseudo */
.highlight .kr { color: #008800; font-weight: bold } /* Keyword.Reserved */
.highlight .kt { color: #888888; font-weight: bold } /* Keyword.Type */
.highlight .m { color: #0000DD; font-weight: bold } /* Literal.Number */
.highlight .s { color: #dd2200; background-color: #fff0f0 } /* Literal.String */
.highlight .na { color: #336699 } /* Name.Attribute */
.highlight .nb { color: #003388 } /* Name.Builtin */
.highlight .nc { color: #bb0066; font-weight: bold } /* Name.Class */
.highlight .no { color: #003366; font-weight: bold } /* Name.Constant */
.highlight .nd { color: #555555 } /* Name.Decorator */
.highlight .ne { color: #bb0066; font-weight: bold } /* Name.Exception */
.highlight .nf { color: #0066bb; font-weight: bold } /* Name.Function */
.highlight .nl { color: #336699; font-style: italic } /* Name.Label */
.highlight .nn { color: #bb0066; font-weight: bold } /* Name.Namespace */
.highlight .py { color: #336699; font-weight: bold } /* Name.Property */
.highlight .nt { color: #bb0066; font-weight: bold } /* Name.Tag */
.highlight .nv { color: #336699 } /* Name.Variable */
.highlight .ow { color: #008800 } /* Operator.Word */
.highlight .w { color: #bbbbbb } /* Text.Whitespace */
.highlight .mb { color: #0000DD; font-weight: bold } /* Literal.Number.Bin */
.highlight .mf { color: #0000DD; font-weight: bold } /* Literal.Number.Float */
.highlight .mh { color: #0000DD; font-weight: bold } /* Literal.Number.Hex */
.highlight .mi { color: #0000DD; font-weight: bold } /* Literal.Number.Integer */
.highlight .mo { color: #0000DD; font-weight: bold } /* Literal.Number.Oct */
.highlight .sa { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Affix */
.highlight .sb { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Backtick */
.highlight .sc { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Char */
.highlight .dl { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Delimiter */
.highlight .sd { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Doc */
.highlight .s2 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Double */
.highlight .se { color: #0044dd; background-color: #fff0f0 } /* Literal.String.Escape */
.highlight .sh { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Heredoc */
.highlight .si { color: #3333bb; background-color: #fff0f0 } /* Literal.String.Interpol */
.highlight .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */
.highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */
.highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */
.highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */
.highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */
.highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */
.highlight .vc { color: #336699 } /* Name.Variable.Class */
.highlight .vg { color: #dd7700 } /* Name.Variable.Global */
.highlight .vi { color: #3333bb } /* Name.Variable.Instance */
.highlight .vm { color: #336699 } /* Name.Variable.Magic */
.highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
/*
 * Copyright (c) 2011 Conformal Systems LLC <info@conformal.com>
 * Copyright (c) 2011 Marco Peereboom <marco@peereboom.us>
 * Copyright (c) 2010, 2011, 2012 Edd Barrett <vext01@gmail.com>
 * Copyright (c) 2012, 2013 Josh Rickmar <jrick@devio.us>
 *
 * Permission to use, copy, modify, and distribute this software for any
 * purpose with or without fee is hereby granted, provided that the above
 * copyright notice and this permission notice appear in all copies.
 *
 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
 */

#include <ctype.h>
#include <dlfcn.h>
#include <err.h>
#include <errno.h>
#include <libgen.h>
#include <pwd.h>
#include <regex.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <dirent.h>
#include <fcntl.h>
#include <inttypes.h>

#include <sys/types.h>
#if defined(__linux__)
#include "linux/util.h"
#include "linux/tree.h"
#include <bsd/stdlib.h>
#include <X11/Xlib.h>
#include <sys/un.h>
# if !defined(sane_libbsd_headers)
void		arc4random_buf(void *, size_t);
u_int32_t	arc4random_uniform(u_int32_t);
# endif
#elif defined(__APPLE__)
#include "osx/util.h"
#include "osx/tree.h"
#include <stdlib.h>
#include <X11/Xlib.h>
#include <sys/un.h>
#include <sys/param.h>
#include <sys/ucred.h>
#define LOGIN_NAME_MAX MAXLOGNAME
#elif defined(__FreeBSD__)
#include <libutil.h>
#include "freebsd/util.h"
#include <sys/tree.h>
#include <X11/Xlib.h>
#include <sys/un.h>
#include <sys/param.h>
#define LOGIN_NAME_MAX MAXLOGNAME
#elif defined(__DragonFly__)
#include <sys/param.h>
#include <sys/un.h>
#include <libutil.h>
#include "dragonfly/util.h"
#include <sys/tree.h>
#include <X11/Xlib.h>
#define LOGIN_NAME_MAX MAXLOGNAME
#elif defined(__NetBSD__)
#include <sys/param.h>
#include <sys/un.h>
#include "netbsd/util.h"
#include <sys/tree.h>
#include <X11/Xlib.h>
#define LOGIN_NAME_MAX_MAXLOGNAME
#elif defined(__OpenBSD__)
#include <util.h>
#include <sys/tree.h>
#include <X11/Xlib.h>
#include <sys/un.h>
#else
/* mingw */
void		arc4random_buf(void *, size_t);
uint32_t	arc4random_uniform(uint32_t);
#include "tree.h"
#endif
#include <sys/queue.h>
#include <sys/socket.h>
#include <sys/stat.h>
#include <sys/time.h>

#include <gtk/gtk.h>
#include <gdk/gdk.h>
#include <gdk/gdkkeysyms.h>

#if GTK_CHECK_VERSION(3,0,0)
/* we still use GDK_* instead of GDK_KEY_* */
#include <gdk/gdkkeysyms-compat.h>
#endif

#include <webkit/webkit.h>
#include <libsoup/soup.h>
#include <JavaScriptCore/JavaScript.h>
#include <gnutls/gnutls.h>
#include <gnutls/x509.h>

/* set if you don't want to use resource limits */
#ifndef XT_RESOURCE_LIMITS_DISABLE
#include <sys/resource.h>
#endif

#include "javascript.h"
/*
javascript.h borrowed from vimprobable2 under the following license:

Copyright (c) 2009 Leon Winter
Copyright (c) 2009-2011 Hannes Schueller
Copyright (c) 2009-2010 Matto Fransen
Copyright (c) 2010-2011 Hans-Peter Deifel
Copyright (c) 2010-2011 Thomas Adam
Copyright (c) 2011 Albert Kim
Copyright (c) 2011 Daniel Carl

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
*/

/*#define XT_DEBUG*/
#ifdef XT_DEBUG
#define DPRINTF(x...)		do { if (swm_debug) fprintf(stderr, x); } while (0)
#define DNPRINTF(n,x...)	do { if (swm_debug & n) fprintf(stderr, x); } while (0)
#define XT_D_MOVE		0x0001
#define XT_D_KEY		0x0002
#define XT_D_TAB		0x0004
#define XT_D_URL		0x0008
#define XT_D_CMD		0x0010
#define XT_D_NAV		0x0020
#define XT_D_DOWNLOAD		0x0040
#define XT_D_CONFIG		0x0080
#define XT_D_JS			0x0100
#define XT_D_FAVORITE		0x0200
#define XT_D_PRINTING		0x0400
#define XT_D_COOKIE		0x0800
#define XT_D_KEYBINDING		0x1000
#define XT_D_CLIP		0x2000
#define XT_D_BUFFERCMD		0x4000
#define XT_D_INSPECTOR		0x8000
#define XT_D_VISITED		0x10000
#define XT_D_HISTORY		0x20000
#define XT_D_MISC		0x40000
#define XT_D_CUSTOM_URI		0x80000
#define XT_D_CMD_ALIAS		0x100000
#define XT_D_SEARCH		0x200000
extern uint32_t	swm_debug;
#else
#define DPRINTF(x...)
#define DNPRINTF(n,x...)
#endif

#define LENGTH(x)		(sizeof x / sizeof x[0])
#define CLEAN(mask)		(mask & ~(GDK_MOD2_MASK) &	\
				    ~(GDK_BUTTON1_MASK) &	\
				    ~(GDK_BUTTON2_MASK) &	\
				    ~(GDK_BUTTON3_MASK) &	\
				    ~(GDK_BUTTON4_MASK) &	\
				    ~(GDK_BUTTON5_MASK))

#define XT_MARKS		"0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'"
#define XT_NOMARKS		(sizeof(XT_MARKS) - 1)
#define XT_QMARKS		"0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"
#define XT_NOQMARKS		(sizeof(XT_QMARKS) - 1)

/* Path Separator */
#ifndef	PS
#define PS			"/"
#define PSC			'/'
#endif

struct tab {
	TAILQ_ENTRY(tab)	entry;
	GtkWidget		*vbox;
	GtkWidget		*tab_content;
	struct {
		GtkWidget	*label;
		GtkWidget	*favicon;
		GtkWidget	*eventbox;
		GtkWidget	*box;
	} tab_elems;
	GtkWidget		*label;
	GtkWidget		*spinner;
	GtkWidget		*uri_entry;
#if !GTK_CHECK_VERSION(3, 0, 0)
	GtkStyle		*default_style;
#endif
	GtkWidget		*search_entry;
	GtkWidget		*toolbar;
	GtkWidget		*browser_win;
	GtkWidget		*statusbar;
	struct {
		GtkWidget	*ebox;	/* non window-less widget for colors */
		GtkWidget	*uri;
		GtkWidget	*buffercmd;
		GtkWidget	*zoom;
		GtkWidget	*position;
		GtkWidget	*tabs;
		GtkWidget	*proxy;
	} sbe;
	GtkWidget		*cmd;
	GtkWidget		*buffers;
	GtkWidget		*oops;
	GtkWidget		*backward;
	GtkWidget		*forward;
	GtkWidget		*stop;
	GtkWidget		*gohome;
	GtkWidget		*js_toggle;
	GtkWidget		*proxy_toggle;
	GtkEntryCompletion	*completion;
	guint			tab_id;
	WebKitWebView		*wv;

	WebKitWebBackForwardList *bfl;
	WebKitWebHistoryItem	*item;

	/* favicon */
	WebKitNetworkRequest	*icon_request;
	WebKitDownload		*icon_download;
	gchar			*icon_dest_uri;

	/* adjustments for browser */
	GtkAdjustment		*adjust_h;
	GtkAdjustment		*adjust_v;

	/* flags */
	int			mode;
#define XT_MODE_COMMAND		(0)
#define XT_MODE_INSERT		(1)
#define XT_MODE_HINT		(2)
#define XT_MODE_PASSTHROUGH	(3)
	int			(*mode_cb)(struct tab *, GdkEventKey *, gpointer);
	gpointer		mode_cb_data;
	int			focus_wv;
	int			ctrl_click;
	gchar			*status;
	int			xtp_meaning; /* identifies dls/favorites */
	int			xtp_arg;
	char			*session_key;
	gchar			*tmp_uri;
	int			popup; /* 1 if cmd_entry has popup visible */
	int			download_requested;

	/* hints */
	int			script_init;
	int			new_tab;

	/* custom stylesheet */
	int			styled;
	char			*stylesheet;

	/* search */
	char			*search_text;
	int			search_forward;
	guint			search_id;

	/* settings */
	WebKitWebSettings	*settings;
	int			user_agent_id;
	int			http_accept_id;
	gboolean		load_images;

	/* marks */
	double			mark[XT_NOMARKS];

	/* inspector */
	WebKitWebInspector	*inspector;
	GtkWidget		*inspector_window;
	GtkWidget		*inspector_view;

	/* focused text entry */
#if WEBKIT_CHECK_VERSION(1, 5, 0)
	WebKitDOMElement	*active;
	char			*active_text;
#endif

	/* signal handles */
	gulong			progress_handle;

	/* cert chain (pem) */
	char			*pem;

	/* previous host (:cert show) */
	char			*about_cert_host;
};
TAILQ_HEAD(tab_list, tab);

struct karg {
	int		i;
	char		*s;
	int		precount;
	void		*ptr;
};

struct download {
	RB_ENTRY(download)	entry;
	int			id;
	WebKitDownload		*download;
	struct tab		*tab;
};
RB_HEAD(download_list, download);
RB_PROTOTYPE(download_list, download, entry, download_rb_cmp);

struct history {
	RB_ENTRY(history)	entry;
	gchar			*uri;
	gchar			*title;
	time_t			time; /* When the item was added. */
};
RB_HEAD(history_list, history);
RB_PROTOTYPE(history_list, history, entry, history_rb_cmp);

#define XT_STS_FLAGS_INCLUDE_SUBDOMAINS		(1)
#define XT_STS_FLAGS_EXPAND			(2)
#define XT_STS_FILE				("strict-transport")

struct strict_transport {
	RB_ENTRY(strict_transport)	entry;
	gchar				*host;
	time_t				timeout;
	int				flags;
};
RB_HEAD(strict_transport_tree, strict_transport);
RB_PROTOTYPE(strict_transport_tree, strict_transport, entry, strict_transport_rb_cmp);

struct secviolation {
	RB_ENTRY(secviolation)	entry;
	int			xtp_arg;
	struct tab		*t;
	char			*uri;
};
RB_HEAD(secviolation_list, secviolation);
RB_PROTOTYPE(secviolation_list, secviolation, entry, secviolation_rb_cmp);

struct user_agent {
	RB_ENTRY(user_agent)	entry;
	int			id;
	char			*value;
};
RB_HEAD(user_agent_list, user_agent);
RB_PROTOTYPE(user_agent_list, user_agent, entry, user_agent_rb_cmp);

struct http_accept {
	RB_ENTRY(http_accept)	entry;
	int			id;
	char			*value;
};
RB_HEAD(http_accept_list, http_accept);
RB_PROTOTYPE(http_accept_list, http_accept, entry, http_accept_rb_cmp);

struct domain_id {
	RB_ENTRY(domain_id)	entry;
	int			ua_id;	/* user agent id key */
	int			ha_id;	/* http accept header id key */
	char			*domain;
};
RB_HEAD(domain_id_list, domain_id);
RB_PROTOTYPE(domain_id_list, domain_id, entry, domain_id_rb_cmp);

/* utility */
#define XT_NAME			("xombrero")
#define XT_DIR			(".xombrero")
#define XT_CB_HANDLED		(TRUE)
#define XT_CB_PASSTHROUGH	(FALSE)
#define XT_CONF_FILE		("xombrero.conf")
#define XT_CSS_FILE		("xombrero.css")
#define XT_FAVS_FILE		("favorites")
#define XT_SOD_FILE		("startofday")
#define XT_HSTS_PRELOAD_FILE	("hsts-preload")
#define XT_USER_AGENT_FILE	("user-agent-headers")
#define XT_HTTP_ACCEPT_FILE	("http-accept-headers")
#define XT_RESERVED_CHARS	"$&+,/:;=?@ \"<>#%%{}|^~[]`"

int			run_script(struct tab *, char *);
void			js_autorun(struct tab *);
void			xt_icon_from_file(struct tab *, char *);
GtkWidget		*create_window(const gchar *);
void			show_oops(struct tab *, const char *, ...);
gchar			*get_html_page(gchar *, gchar *, gchar *, bool);
const gchar		*get_uri(struct tab *);
const gchar		*get_title(struct tab *, bool);
void			load_uri(struct tab *t, const gchar *uri);
gboolean		match_uri(const gchar *uri, const gchar *key);
int			valid_url_type(const char *);
void			expand_tilde(char *, size_t, const char *);
gchar			*html_escape(const char *val);
void			set_status(struct tab *t, gchar *fmt, ...);

void			load_webkit_string(struct tab *, const char *, gchar *, int);
void			button_set_stockid(GtkWidget *, char *);
void			button_set_file(GtkWidget *, char *);
void			webview_progress_changed_cb(WebKitWebView *, GParamSpec *, struct tab *);

/* cookies */
int			remove_cookie(int);
int			remove_cookie_domain(int);
int			remove_cookie_all(void);
void			print_cookie(char *msg, SoupCookie *);
void			setup_cookies(void);

/* history */
int			insert_history_item(const gchar *uri, const gchar *title, time_t time);
int			save_global_history_to_disk(struct tab *t);
int			restore_global_history(void);
char			*color_visited_helper(void);
int			color_visited(struct tab *t, char *visited);

/* completion */
void			completion_add(struct tab *);
void			completion_add_uri(const gchar *uri);

/* external editor */
#define XT_EE_BUFSZ	(64 * 1024)
int			edit_src(struct tab *t, struct karg *args);
int			edit_element(struct tab *t, struct karg *a);

/* proxy */
#define XT_PRXY_SHOW		(1<<0)
#define XT_PRXY_TOGGLE		(1<<1)

/* url modify */
#define XT_URL			(1<<0)
#define XT_URL_PLUS		(1<<1)
#define XT_URL_MIN		(1<<2)

/* inspector */
#define XT_INS_SHOW		(1<<0)
#define XT_INS_HIDE		(1<<1)
#define XT_INS_CLOSE		(1<<2)

WebKitWebView*		inspector_inspect_web_view_cb(WebKitWebInspector *,
			    WebKitWebView*, struct tab *);
void			setup_inspector(struct tab *);
int			inspector_cmd(struct tab *, struct karg *);

/* tld public suffix */
void			tld_tree_init();
char			*tld_get_suffix(const char *);

/* about */
#define XT_XTP_STR		"xxxt://"
#define XT_XTP_SCHEME		"xxxt"
#define XT_URI_ABOUT		("about:")
#define XT_URI_ABOUT_LEN	(strlen(XT_URI_ABOUT))
#define XT_URI_ABOUT_ABOUT	("about")
#define XT_URI_ABOUT_ALLTHETHINGS ("allthethings")
#define XT_URI_ABOUT_BLANK	("blank")
#define XT_URI_ABOUT_CERTS	("certs")
#define XT_URI_ABOUT_COOKIEWL	("cookiewl")
#define XT_URI_ABOUT_COOKIEJAR	("cookiejar")
#define XT_URI_ABOUT_DOWNLOADS	("downloads")
#define XT_URI_ABOUT_FAVORITES	("favorites")
#define XT_URI_ABOUT_HELP	("help")
#define XT_URI_ABOUT_HISTORY	("history")
#define XT_URI_ABOUT_JSWL	("jswl")
#define XT_URI_ABOUT_PLUGINWL	("plwl")
#define XT_URI_ABOUT_HTTPS	("https")
#define XT_URI_ABOUT_SET	("set")
#define XT_URI_ABOUT_STATS	("stats")
#define XT_URI_ABOUT_MARCO	("marco")
#define XT_URI_ABOUT_STARTPAGE	("startpage")
#define XT_URI_ABOUT_WEBKIT	("webkit")
#define XT_URI_ABOUT_SEARCH	("search")
#define XT_URI_ABOUT_SECVIOLATION ("secviolation")
#define XT_URI_ABOUT_RUNTIME	("runtime")

struct about_type {
	char		*name;
	int		(*func)(struct tab *, struct karg *);
};

struct sp {
	char			*line;
	TAILQ_ENTRY(sp)		entry;
};
TAILQ_HEAD(sp_list, sp);

int			blank(struct tab *, struct karg *);
int			help(struct tab *, struct karg *);
int			stats(struct tab *, struct karg *);
void			show_certs(struct tab *, gnutls_x509_crt_t *,
			    size_t, char *);
int			ca_cmd(struct tab *, struct karg *);
int			cookie_show_wl(struct tab *, struct karg *);
int			xtp_page_ab(struct tab *, struct karg *);
int			xtp_page_cl(struct tab *, struct karg *);
int			xtp_page_dl(struct tab *, struct karg *);
int			xtp_page_fl(struct tab *, struct karg *);
int			xtp_page_hl(struct tab *, struct karg *);
int			xtp_page_sl(struct tab *, struct karg *);
int			xtp_page_sv(struct tab *, struct karg *);
int			parse_xtp_url(struct tab *, const char *);
int			add_favorite(struct tab *, struct karg *);
void			update_favorite_tabs(struct tab *);
void			update_history_tabs(struct tab *);
void			update_download_tabs(struct tab *);
size_t			about_list_size(void);
int			cookie_cmd(struct tab *, struct karg *);
int			js_cmd(struct tab *, struct karg *);
int			pl_cmd(struct tab *, struct karg *);
int			https_cmd(struct tab *, struct karg *);
void			startpage_add(const char *, ...);

/*
 * xtp tab meanings
 * identifies which tabs have xtp pages in (corresponding to about_list indices)
 */
#define XT_XTP_TAB_MEANING_NORMAL	(-1)	/* normal url */
#define XT_XTP_TAB_MEANING_AB		(0)	/* any other about page */
#define XT_XTP_TAB_MEANING_BL		(2) 	/* about:blank in this tab */
#define XT_XTP_TAB_MEANING_CL		(5) 	/* cookie manager in this tab */
#define XT_XTP_TAB_MEANING_DL		(6) 	/* download manager in this tab */
#define XT_XTP_TAB_MEANING_FL		(7) 	/* favorite manager in this tab */
#define XT_XTP_TAB_MEANING_HL		(9) 	/* history manager in this tab */
#define XT_XTP_TAB_MEANING_SET		(11)	/* settings manager/viewer */
#define XT_XTP_TAB_MEANING_SL		(18) 	/* search engine chooser */
#define XT_XTP_TAB_MEANING_RT		(19)	/* about:runtime in this tab */
#define XT_XTP_TAB_MEANING_SV		(20)	/* about:secviolation in tab */

/* whitelists */
#define XT_WL_TOGGLE		(1<<0)
#define XT_WL_ENABLE		(1<<1)
#define XT_WL_DISABLE		(1<<2)
#define XT_WL_FQDN		(1<<3) /* default */
#define XT_WL_TOPLEVEL		(1<<4)
#define XT_WL_PERSISTENT	(1<<5)
#define XT_WL_SESSION		(1<<6)
#define XT_WL_RELOAD		(1<<7)
#define XT_SHOW			(1<<8)
#define XT_DELETE		(1<<9)
#define XT_SAVE			(1<<10)
#define XT_OPEN			(1<<11)
#define XT_CACHE		(1<<12)
#define XT_WL_REGEX		(1<<13)

#define XT_WL_INVALID		(0)
#define XT_WL_JAVASCRIPT	(1)
#define XT_WL_COOKIE		(2)
#define XT_WL_PLUGIN		(3)
#define XT_WL_HTTPS		(4)

struct wl_entry {
	regex_t			*re;
	char			*pat;
	int			handy; /* app use */
	TAILQ_ENTRY(wl_entry)	entry;
};
TAILQ_HEAD(wl_list, wl_entry);

int			wl_show(struct tab *, struct karg *, char *,
			    struct wl_list *);

/* uri aliases */
struct alias {
	char			*a_name;
	char			*a_uri;
	TAILQ_ENTRY(alias)	 entry;
};
TAILQ_HEAD(alias_list, alias);

/* mime types */
struct mime_type {
	char			*mt_type;
	char			*mt_action;
	int			mt_default;
	int			mt_download;
	TAILQ_ENTRY(mime_type)	entry;
};
TAILQ_HEAD(mime_type_list, mime_type);

struct wl_entry * wl_find(const gchar *, struct wl_list *);
int		wl_save(struct tab *, struct karg *, int);
int		toggle_cwl(struct tab *, struct karg *);
int		toggle_js(struct tab *, struct karg *);
int		toggle_pl(struct tab *, struct karg *);
int		toggle_force_https(struct tab *, struct karg *);

/* input autofocus */
void		input_autofocus(struct tab *);
void		*input_check_mode(struct tab *);
int		command_mode(struct tab *, struct karg *);

/* settings */
#define XT_BM_NORMAL		(0)
#define XT_BM_WHITELIST		(1)
#define XT_BM_KIOSK		(2)

#define XT_GM_CLASSIC		(0)
#define XT_GM_MINIMAL		(1)

#define XT_TABS_NORMAL		(0)
#define XT_TABS_COMPACT		(1)

#define XT_STATUSBAR_URL	(0)
#define XT_STATUSBAR_TITLE	(1)

#define XT_EM_HYBRID		(0)
#define XT_EM_VI		(1)

#define XT_DM_START		(0)
#define XT_DM_ASK		(1)
#define XT_DM_ADD		(2)

#define XT_REFERER_ALWAYS	(0)
#define XT_REFERER_NEVER	(1)
#define XT_REFERER_SAME_DOMAIN	(2)
#define XT_REFERER_CUSTOM	(3)
#define XT_REFERER_SAME_FQDN	(4)

#define CTRL			GDK_CONTROL_MASK
#define MOD1			GDK_MOD1_MASK
#define SHFT			GDK_SHIFT_MASK

/* runtime default settings */
#define XT_DS_SHOW_TABS		(1)
#define XT_DS_TAB_STYLE		XT_TABS_NORMAL
#define XT_DS_STATUSBAR_STYLE	XT_STATUSBAR_URL
#define XT_DS_SHOW_URL		(1)
#define XT_DS_SHOW_SCROLLBARS	(1)
#define XT_DS_SHOW_STATUSBAR	(0)
#define XT_DS_CTRL_CLICK_FOCUS	(0)
#define XT_DS_COOKIES_ENABLED	(1)
#define XT_DS_READ_ONLY_COOKIES	(0)
#define XT_DS_ENABLE_SCRIPTS	(1)
#define XT_DS_ENABLE_PLUGINS	(1)
#define XT_DS_DEFAULT_ZOOM_LEVEL	(1.0)
#define XT_DS_DEFAULT_SCRIPT	("")
#define XT_DS_REFRESH_INTERVAL	(10)
#define XT_DS_ENABLE_PLUGIN_WHITELIST	(0)
#define XT_DS_ENABLE_COOKIE_WHITELIST	(0)
#define XT_DS_ENABLE_JS_WHITELIST	(0)
#define XT_DS_ENABLE_LOCALSTORAGE	(1)
#define XT_DS_SESSION_TIMEOUT	(3600)
#define XT_DS_COOKIE_POLICY	SOUP_COOKIE_JAR_ACCEPT_ALWAYS
#define XT_DS_SSL_STRICT_CERTS	FALSE
#define XT_DS_SSL_CA_FILE	("")
#define XT_DS_ENABLE_STRICT_TRANSPORT	TRUE
#define XT_DS_APPEND_NEXT	(1)
#define XT_DS_HOME		("https://www.cyphertite.com/")
#define XT_DS_SEARCH_STRING	("about:search")
#define XT_DS_COLOR_VISITED_URIS	(1)
#define XT_DS_SESSION_AUTOSAVE	(0)
#define XT_DS_GUESS_SEARCH	(0)
#define XT_DS_ENABLE_SPELL_CHECKING	(0)
#define XT_DS_SPELL_CHECK_LANGUAGES	("en_US")
#define XT_DS_URL_REGEX		("^[[:blank:]]*[^[:blank:]]*([[:alnum:]-]+\\.)+[[:alnum:]-][^[:blank:]]*[[:blank:]]*$")
#define XT_DS_ENCODING		("UTF-8")
#define XT_DS_AUTOFOCUS_ONLOAD	(0)
#define XT_DS_ENABLE_JS_AUTORUN	(1)
#define XT_DS_USERSTYLE_GLOBAL	(0)
#define XT_DS_AUTO_LOAD_IMAGES	(1)
#define XT_DS_ENABLE_AUTOSCROLL	(0)
#define XT_DS_ENABLE_FAVICON_ENTRY	(1)
#define XT_DS_ENABLE_FAVICON_TABS	(0)
#define XT_DS_EXTERNAL_EDITOR	(NULL)
#define XT_DS_REFERER_MODE	XT_REFERER_ALWAYS
#define XT_DS_REFERER_CUSTOM	("always")
#define XT_DS_DOWNLOAD_NOTIFICATIONS	(0)
#define XT_DS_CMD_FONT_NAME	("monospace normal 9")
#define XT_DS_OOPS_FONT_NAME	("monospace normal 9")
#define XT_DS_STATUSBAR_FONT_NAME	("monospace normal 9")
#define XT_DS_TABBAR_FONT_NAME	("monospace normal 9")
#define XT_DS_ALLOW_INSECURE_CONTENT	(TRUE)
#define XT_DS_ALLOW_INSECURE_SCRIPTS	(TRUE)
#define XT_DS_WARN_CERT_CHANGES	(0)
#define XT_DS_RESOURCE_DIR	("/usr/local/share/xombrero")
#define XT_DS_DO_NOT_TRACK	(0)
#define XT_DS_PRELOAD_STRICT_TRANSPORT	(1)
#define XT_DS_GNUTLS_PRIORITY_STRING	(NULL)
#define XT_DS_JS_AUTO_OPEN_WINDOWS	(1)

/* actions */
#define XT_STYLE_CURRENT_TAB	(0)
#define XT_STYLE_GLOBAL		(1)

#define XT_TAB_LAST		(-4)
#define XT_TAB_FIRST		(-3)
#define XT_TAB_PREV		(-2)
#define XT_TAB_NEXT		(-1)
#define XT_TAB_INVALID		(0)
#define XT_TAB_NEW		(1)
#define XT_TAB_DELETE		(2)
#define XT_TAB_DELQUIT		(3)
#define XT_TAB_OPEN		(4)
#define XT_TAB_UNDO_CLOSE	(5)
#define XT_TAB_SHOW		(6)
#define XT_TAB_HIDE		(7)
#define XT_TAB_NEXTSTYLE	(8)
#define XT_TAB_LOAD_IMAGES	(9)
#define XT_TAB_ONLY		(10)

#define XT_URL_SHOW		(1)
#define XT_URL_HIDE		(2)

/* XTP classes (xxxt://<class>) */
#define XT_XTP_INVALID		(0)	/* invalid */
#define XT_XTP_DL		(1)	/* downloads */
#define XT_XTP_HL		(2)	/* history */
#define XT_XTP_CL		(3)	/* cookies */
#define XT_XTP_FL		(4)	/* favorites */
#define XT_XTP_SL		(5)	/* search */
#define XT_XTP_AB		(6)	/* about */
#define XT_XTP_SV		(7)	/* security violation */
#define XT_XTP_RT		(8)	/* set */

/* XTP download actions */
#define XT_XTP_DL_LIST		(1)
#define XT_XTP_DL_CANCEL	(2)
#define XT_XTP_DL_REMOVE	(3)
#define XT_XTP_DL_UNLINK	(4)
#define XT_XTP_DL_START		(5)

/* XTP history actions */
#define XT_XTP_HL_LIST		(1)
#define XT_XTP_HL_REMOVE	(2)
#define XT_XTP_HL_REMOVE_ALL	(3)

/* XTP cookie actions */
#define XT_XTP_CL_LIST		(1)
#define XT_XTP_CL_REMOVE	(2)
#define XT_XTP_CL_REMOVE_DOMAIN	(3)
#define XT_XTP_CL_REMOVE_ALL	(4)

/* XTP cookie actions */
#define XT_XTP_FL_LIST		(1)
#define XT_XTP_FL_REMOVE	(2)

/* XPT search actions */
#define XT_XTP_SL_SET		(1)

/* XPT about actions */
#define XT_XTP_AB_EDIT_CONF	(1)

/* XTP security violation actions */
#define XT_XTP_SV_SHOW_NEW_CERT	(1)
#define XT_XTP_SV_ALLOW_SESSION	(2)
#define XT_XTP_SV_CACHE		(3)
#define XT_XTP_SV_SHOW_CACHED_CERT	(4)

/* XTP set actions */
#define XT_XTP_RT_SAVE		(1)

/* needed for xtp_page_rt in settings.c */
void			generate_xtp_session_key(char **);

struct key_binding {
	char				*cmd;
	guint				mask;
	guint				use_in_entry;
	guint				key;
	TAILQ_ENTRY(key_binding)	entry;	/* in bss so no need to init */
};
TAILQ_HEAD(keybinding_list, key_binding);

struct custom_uri {
	char			*uri;
	char			cmd[PATH_MAX];
	TAILQ_ENTRY(custom_uri)	entry;
};
TAILQ_HEAD(custom_uri_list, custom_uri);

struct cmd_alias {
	char			*alias;
	char			*cmd;
	TAILQ_ENTRY(cmd_alias)	entry;
};
TAILQ_HEAD(cmd_alias_list, cmd_alias);

struct set_reject {
	char			*name;
	char			*value;
	TAILQ_ENTRY(set_reject)	entry;
};
TAILQ_HEAD(set_reject_list, set_reject);

struct settings {
	char		*name;
	int		type;
#define XT_S_INVALID	(0)
#define XT_S_INT	(1)
#define XT_S_STR	(2)
#define XT_S_FLOAT	(3)
#define XT_S_BOOL	(4)
	uint32_t	flags;
#define XT_SF_RESTART	(1<<0)
#define XT_SF_RUNTIME	(1<<1)
#define XT_SF_INVISIBLE	(1<<2)
	int		*ival;
	char		**sval;
	struct special	*s;
	double		*fval;
	int		(*activate)(char *);
	int		(*ismodified)(char **);
	char		*tt;
};

struct special {
	int		(*set)(struct settings *, char *);
	char		*(*get)(struct settings *);
	void		(*walk)(struct settings *,
			    void (*cb)(struct settings *, char *, void *),
			    void *);
	char		*valid_options[];
};

int		set(struct tab *, struct karg *);
int		xtp_page_rt(struct tab *, struct karg *);
size_t		get_settings_size(void);
int		settings_add(char *, char *);
int		setup_proxy(const char *);
int		proxy_cmd(struct tab *, struct karg *);
int		set_browser_mode(struct settings *, char *);
int		set_encoding(struct tab *, struct karg *);
int		set_gui_mode(struct settings *, char *);
int		set_cookie_policy(struct settings *, char *);
int		set_search_string(char *);
int		set_ssl_ca_file(struct settings *, char *);
char		*get_browser_mode(struct settings *);
char		*get_gui_mode(struct settings *);
char		*get_cookie_policy(struct settings *);
void		init_keybindings(void);
void		config_parse(char *, int);
char		*get_setting_name(int);
void		statusbar_set_visibility(void);
int		tabaction(struct tab *, struct karg *);
int		urlaction(struct tab *, struct karg *);
int		userstyle_cmd(struct tab *, struct karg *);
struct tab	*get_current_tab(void);
int		resizetab(struct tab *, struct karg *);
int		cert_cmd(struct tab *, struct karg *);
void		focus_webview(struct tab *);
int		is_g_object_setting(GObject *, char *);
int		set_scrollbar_visibility(struct tab *, int);
int		save_runtime_setting(const char *, const char *);
void		wl_add(const char *, struct wl_list *, int);

#ifndef SOUP_CHECK_VERSION
#define SOUP_CHECK_VERSION(major, minor, micro) (0)
#endif

#if GTK_CHECK_VERSION(3,0,0)
#define modify_font gtk_widget_override_font
#else
#define modify_font gtk_widget_modify_font
#endif

#define		XT_DL_START	(0)
#define		XT_DL_RESTART	(1)
int		download_start(struct tab *, struct download *, int flag);

extern int	tabless;
extern int	enable_socket;
extern int	single_instance;
extern int	fancy_bar;
extern int	browser_mode;
extern int	enable_localstorage;
extern char	*statusbar_elems;

#if SOUP_CHECK_VERSION(2, 42, 2)
extern GProxyResolver	*proxy_uri;
extern gchar		*proxy_exclude[];
#else
extern SoupURI		*proxy_uri;
#endif

extern int	show_tabs;
extern int	tab_style;
extern int	statusbar_style;
extern int	show_url;
extern int	show_scrollbars;
extern int	show_statusbar;
extern int	ctrl_click_focus;
extern int	cookies_enabled;
extern int	read_only_cookies;
extern int	enable_cache;
extern int	enable_scripts;
extern int	enable_plugins;
extern double	default_zoom_level;
extern char	default_script[PATH_MAX];
extern int	window_height;
extern int	window_width;
extern int	window_maximize;
extern int	icon_size;
extern int	refresh_interval;
extern int	enable_plugin_whitelist;
extern int	enable_cookie_whitelist;
extern int	enable_js_whitelist;
extern int	session_timeout;
extern int	cookie_policy;
extern char	ssl_ca_file[PATH_MAX];
extern char	*resource_dir;
extern gboolean	ssl_strict_certs;
extern gboolean	enable_strict_transport;
extern int	append_next;
extern char	*home;
extern char	*search_string;
extern char	*http_proxy;
extern int	http_proxy_starts_enabled;
extern char	*external_editor;
extern char	download_dir[PATH_MAX];
extern int	download_mode;
extern char	runtime_settings[PATH_MAX];
extern int	allow_volatile_cookies;
extern int	color_visited_uris;
extern int	save_global_history;
extern int	save_rejected_cookies;
extern int	session_autosave;
extern int	guess_search;
extern gint	max_connections;
extern gint	max_host_connections;
extern gint	enable_spell_checking;
extern char	*spell_check_languages;
extern char	*url_regex;
extern int	history_autosave;
extern char	search_file[PATH_MAX];
extern char	command_file[PATH_MAX];
extern char	*encoding;
extern int	autofocus_onload;
extern int	enable_js_autorun;
extern char	*cmd_font_name;
extern char	*oops_font_name;
extern char	*statusbar_font_name;
extern char	*tabbar_font_name;
extern int	edit_mode;
extern char	*userstyle;
extern char	*stylesheet;
extern int	userstyle_global;
extern int	auto_load_images;
extern int	enable_autoscroll;
extern int	enable_favicon_entry;
extern int	enable_favicon_tabs;
extern int	referer_mode;
extern char	*referer_custom;
extern int	download_notifications;
extern int	warn_cert_changes;
extern regex_t	url_re;
extern int	allow_insecure_content;
extern int	allow_insecure_scripts;
extern int	do_not_track;
extern int	preload_strict_transport;
extern char	*gnutls_priority_string;
extern int	anonymize_headers;
extern int	js_auto_open_windows;

/* globals */
extern void		(*os_init)(void);
extern char		*version;
extern char		*icons[];
extern char		rc_fname[PATH_MAX];
extern char		work_dir[PATH_MAX];
extern char		temp_dir[PATH_MAX];
extern struct passwd	*pwd;
extern SoupCookieJar	*s_cookiejar;
extern SoupCookieJar	*p_cookiejar;
extern SoupSession	*session;
extern GtkNotebook	*notebook;
extern GtkListStore	*completion_model;
extern uint64_t		blocked_cookies;
extern SoupSession	*session;

extern void	(*_soup_cookie_jar_add_cookie)(SoupCookieJar *, SoupCookie *);

extern struct history_list	hl;
extern int			hl_purge_count;
extern struct download_list	downloads;
extern struct tab_list		tabs;
extern struct about_type	about_list[];
extern struct wl_list		c_wl;
extern struct wl_list		js_wl;
extern struct wl_list		pl_wl;
extern struct wl_list		force_https;
extern struct wl_list		svil;
extern struct strict_transport_tree	st_tree;
extern struct alias_list	aliases;
extern struct mime_type_list	mtl;
extern struct keybinding_list	kbl;
extern struct sp_list		spl;
extern struct user_agent_list	ua_list;
extern struct http_accept_list	ha_list;
extern struct cmd_alias_list	cal;
extern struct custom_uri_list	cul;
extern struct secviolation_list	svl;
extern struct set_reject_list	srl;
extern struct settings		rs[];

extern PangoFontDescription	*cmd_font;
extern PangoFontDescription	*oops_font;
extern PangoFontDescription	*statusbar_font;
extern PangoFontDescription	*tabbar_font;