/* * Copyright (c) 2011 Conformal Systems LLC * Copyright (c) 2011 Marco Peereboom * Copyright (c) 2010, 2011, 2012 Edd Barrett * * 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 #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #if defined(__linux__) #include "linux/util.h" #include "linux/tree.h" #include # if !defined(sane_libbsd_headers) void arc4random_buf(void *, size_t); u_int32_t arc4random_uniform(u_int32_t); # endif #elif defined(__FreeBSD__) #include #include "freebsd/util.h" #include #elif defined(__OpenBSD__) #include #include #else void arc4random_buf(void *, size_t); uint32_t arc4random_uniform(uint32_t); #include "tree.h" #endif #include #include #include #include #include #include #include #if GTK_CHECK_VERSION(3,0,0) /* we still use GDK_* instead of GDK_KEY_* */ #include #endif #include #include #include #include #include /* comment if you don't want to use threads */ #define USE_THREADS #ifdef USE_THREADS #include #include #endif /* set if you don't want to use signals */ #ifndef XT_SIGNALS_DISABLE #include #endif /* set if you don't want to use resource limits */ #ifndef XT_RESOURCE_LIMITS_DISABLE #include #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 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 "/" #endif struct tab { TAILQ_ENTRY(tab) entry; GtkWidget *vbox; GtkWidget *tab_content; struct { GtkWidget *label; GtkWidget *favicon; GtkWidget *eventbox; GtkWidget *box; GtkWidget *sep; } tab_elems; GtkWidget *label; GtkWidget *spinner; GtkWidget *uri_entry; GtkStyle *default_style; GtkWidget *search_entry; GtkWidget *toolbar; GtkWidget *browser_win; GtkWidget *statusbar_box; struct { GtkWidget *statusbar; GtkWidget *buffercmd; GtkWidget *zoom; GtkWidget *position; } sbe; GtkWidget *cmd; GtkWidget *buffers; GtkWidget *oops; GtkWidget *backward; GtkWidget *forward; GtkWidget *stop; GtkWidget *gohome; GtkWidget *js_toggle; GtkEntryCompletion *completion; guint tab_id; WebKitWebView *wv; WebKitWebHistoryItem *item; WebKitWebBackForwardList *bfl; /* favicon */ WebKitNetworkRequest *icon_request; WebKitDownload *icon_download; gchar *icon_dest_uri; /* adjustments for browser */ GtkScrollbar *sb_h; GtkScrollbar *sb_v; 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 */ gchar *tmp_uri; int popup; /* 1 if cmd_entry has popup visible */ #ifdef USE_THREADS /* https thread stuff */ GThread *thread; #endif /* 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; gchar *user_agent; gboolean load_images; /* marks */ double mark[XT_NOMARKS]; /* inspector */ WebKitWebInspector *inspector; GtkWidget *inspector_window; GtkWidget *inspector_view; }; TAILQ_HEAD(tab_list, tab); struct karg { int i; char *s; int precount; }; 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); /* utility */ #define XT_NAME ("XXXTerm") #define XT_CB_HANDLED (TRUE) #define XT_CB_PASSTHROUGH (FALSE) #define XT_FAVS_FILE ("favorites") #define XT_SOD_FILE ("startofday") int run_script(struct tab *, char *); 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, gchar *uri); gboolean match_uri(const gchar *uri, const gchar *key); int valid_url_type(char *); void load_webkit_string(struct tab *, const char *, gchar *); void button_set_stockid(GtkWidget *, char *); /* 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) /* 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_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_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") 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 about(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_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 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 *); void xtp_generate_keys(void); 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 *); 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_BL (1) /* about:blank in this tab */ #define XT_XTP_TAB_MEANING_CL (4) /* cookie manager in this tab */ #define XT_XTP_TAB_MEANING_DL (5) /* download manager in this tab */ #define XT_XTP_TAB_MEANING_FL (6) /* favorite manager in this tab */ #define XT_XTP_TAB_MEANING_HL (8) /* history manager in this 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_WL_INVALID (0) #define XT_WL_JAVASCRIPT (1) #define XT_WL_COOKIE (2) #define XT_WL_PLUGIN (3) struct domain { RB_ENTRY(domain) entry; gchar *d; int handy; /* app use */ }; RB_HEAD(domain_list, domain); RB_PROTOTYPE(domain_list, domain, entry, domain_rb_cmp); int wl_show(struct tab *, struct karg *, char *, struct domain_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 domain * wl_find(const gchar *, struct domain_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 *); /* input autofocus */ void input_autofocus(struct tab *); void input_focus_blur(struct tab *, void *); void *input_check_mode(struct tab *); int command_mode(struct tab *, struct karg *); /* OS specific */ int fork_exec(struct tab *, char *, const gchar *, char *, int); /* 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_EM_HYBRID (0) #define XT_EM_VI (1) #define XT_DM_START (0) #def