aboutsummaryrefslogtreecommitdiff
path: root/content/main.js
blob: 9ed557c7c7779d91ad4390d1b9185e528c5db1c8 (plain)
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
/**
 * Hachette main content script run in all frames
 *
 * Copyright (C) 2021 Wojtek Kosior
 * Copyright (C) 2021 jahoti
 * Redistribution terms are gathered in the `copyright' file.
 */

/*
 * IMPORTS_START
 * IMPORT handle_page_actions
 * IMPORT url_extract_target
 * IMPORT gen_unique
 * IMPORT gen_nonce
 * IMPORT csp_rule
 * IMPORT is_privileged_url
 * IMPORT sanitize_attributes
 * IMPORT mozilla_suppress_scripts
 * IMPORT is_chrome
 * IMPORT is_mozilla
 * IMPORT start_activity_info_server
 * IMPORTS_END
 */

/*
 * Due to some technical limitations the chosen method of whitelisting sites
 * is to smuggle whitelist indicator in page's url as a "magical" string
 * after '#'. Right now this is only supplemental in HTTP(s) pages where
 * blocking of native scripts also happens through CSP header injection but is
 * necessary for protocols like ftp:// and file://.
 *
 * The code that actually injects the magical string into ftp:// and file://
 * urls has not yet been added to the extension.
 */

var nonce = undefined;

function handle_mutation(mutations, observer)
{
    if (document.readyState === 'complete') {
	console.log("mutation handling complete");
	observer.disconnect();
	return;
    }
    for (const mutation of mutations) {
	for (const node of mutation.addedNodes)
	    block_node(node);
    }
}

function block_nodes_recursively(node)
{
    block_node(node);
    for (const child of node.children)
	block_nodes_recursively(child);
}

function block_node(node)
{
    /*
     * Modifying <script> element doesn't always prevent its execution in some
     * Mozilla browsers. This is Chromium-specific code.
     */
    if (node.tagName === "SCRIPT") {
	block_script(node);
	return;
    }

    sanitize_attributes(node);

    if (node.tagName === "HEAD")
	inject_csp(node);
}

function block_script(node)
{
    /*
     * Disabling scripts this way allows them to still be relatively
     * easily accessed in case they contain some useful data.
     */
    if (node.hasAttribute("type"))
	node.setAttribute("blocked-type", node.getAttribute("type"));
    node.setAttribute("type", "application/json");
}

function inject_csp(head)
{
    console.log('injecting CSP');

    let meta = document.createElement("meta");
    meta.setAttribute("http-equiv", "Content-Security-Policy");
    meta.setAttribute("content", csp_rule(nonce));

    if (head.firstElementChild === null)
	head.appendChild(meta);
    else
	head.insertBefore(meta, head.firstElementChild);
}

if (!is_privileged_url(document.URL)) {
    const targets = url_extract_target(document.URL);
    if (targets.policy) {
	if (targets.target2)
	    window.location.href = targets.base_url + targets.target2;
	else
	    history.replaceState(null, "", targets.base_url);
    }

    const policy = targets.current ? targets.policy : {};

    nonce = policy.nonce || gen_nonce();
    handle_page_actions(nonce);

    if (!policy.allow) {
	block_nodes_recursively(document.documentElement);

	if (is_chrome) {
	    var observer = new MutationObserver(handle_mutation);
	    observer.observe(document.documentElement, {
		attributes: true,
		childList: true,
		subtree: true
	    });
	}

	if (is_mozilla)
	    addEventListener('beforescriptexecute', mozilla_suppress_scripts, true);
    }

    start_activity_info_server();
}