aboutsummaryrefslogtreecommitdiffstats
path: root/lib/UriTools.jsm
blob: 892dc44f3d4a2aa6deabac15a049b5594cbd3d39 (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
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
/*******************************************************************************

    ηMatrix - a browser extension to black/white list requests.
    Copyright (C) 2014-2019 Raymond Hill
    Copyright (C) 2019-2020 Alessio Vanni

    This program is free software: you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation, either version 3 of the License, or
    (at your option) any later version.

    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with this program.  If not, see {http://www.gnu.org/licenses/}.

    Home: https://libregit.spks.xyz/heckyel/ematrix
    uMatrix Home: https://github.com/gorhill/uMatrix
*/

'use strict';

Components.utils.import('chrome://ematrix/content/lib/Punycode.jsm');
Components.utils.import('chrome://ematrix/content/lib/PublicSuffixList.jsm');

var EXPORTED_SYMBOLS = ['UriTools'];

var reRFC3986 = /^([^:\/?#]+:)?(\/\/[^\/?#]*)?([^?#]*)(\?[^#]*)?(#.*)?/;
var reSchemeFromURI = /^[^:\/?#]+:/;
var reAuthorityFromURI = /^(?:[^:\/?#]+:)?(\/\/[^\/?#]+)/;
var reOriginFromURI = /^(?:[^:\/?#]+:)?(?:\/\/[^\/?#]+)/;
var reCommonHostnameFromURL = /^https?:\/\/([0-9a-z_][0-9a-z._-]*[0-9a-z])\//;
var rePathFromURI = /^(?:[^:\/?#]+:)?(?:\/\/[^\/?#]*)?([^?#]*)/;
var reMustNormalizeHostname = /[^0-9a-z._-]/;

// These are to parse authority field, not parsed by above official regex
// IPv6 is seen as an exception: a non-compatible IPv6 is first tried, and
// if it fails, the IPv6 compatible regex istr used. This helps
// peformance by avoiding the use of a too complicated regex first.

// https://github.com/gorhill/httpswitchboard/issues/211
// "While a hostname may not contain other characters, such as the
// "underscore character (_), other DNS names may contain the underscore"
var reHostPortFromAuthority  = /^(?:[^@]*@)?([^:]*)(:\d*)?$/;
var reIPv6PortFromAuthority  = /^(?:[^@]*@)?(\[[0-9a-f:]*\])(:\d*)?$/i;

var reHostFromNakedAuthority = /^[0-9a-z._-]+[0-9a-z]$/i;
var reHostFromAuthority = /^(?:[^@]*@)?([^:]+)(?::\d*)?$/;
var reIPv6FromAuthority = /^(?:[^@]*@)?(\[[0-9a-f:]+\])(?::\d*)?$/i;

// Coarse (but fast) tests
var reValidHostname = /^([a-z\d]+(-*[a-z\d]+)*)(\.[a-z\d]+(-*[a-z\d])*)*$/;
var reIPAddressNaive = /^\d+\.\d+\.\d+\.\d+$|^\[[\da-zA-Z:]+\]$/;

var reNetworkScheme = /^(?:https?|wss?|ftps?)\b/;
var reSecureScheme = /^(?:https|wss|ftps)\b/;

function reset(o) {
    o.scheme = '';
    o.hostname = '';
    o._ipv4 = undefined;
    o._ipv6 = undefined;
    o.port = '';
    o.path = '';
    o.query = '';
    o.fragment = '';
    return o;
}

function resetAuthority(o) {
    o.hostname = '';
    o._ipv4 = undefined;
    o._ipv6 = undefined;
    o.port = '';
    return o;
}

function URI() {
    this.scheme = '',
    this.authority = '',
    this.hostname = '',
    this._ipv4 = undefined,
    this._ipv6 = undefined,
    this.port = '',
    this.domain = undefined,
    this.path = '',
    this.query = '',
    this.fragment = '',
    this.schemeBit = (1 << 0),
    this.userBit = (1 << 1),
    this.passwordBit = (1 << 2),
    this.hostnameBit = (1 << 3),
    this.portBit = (1 << 4),
    this.pathBit = (1 << 5),
    this.queryBit = (1 << 6),
    this.fragmentBit = (1 << 7),
    this.allBits = (0xFFFF),
    this.authorityBit =
        (this.userBit | this.passwordBit | this.hostnameBit | this.portBit);
    this.normalizeBits =
        (this.schemeBit | this.hostnameBit | this.pathBit | this.queryBit);
}

var cached = new URI();

var domainCache = new Map();
var cacheCountLow = 75;
var cacheCountHigh = 100;
var cacheJunkyard = [];
var junkyardMax = cacheCountHigh - cacheCountLow;

function DomainCacheEntry(domain) {
    this.init(domain);
}

DomainCacheEntry.prototype.init = function (domain) {
    this.domain = domain;
    this.tstamp = Date.now();
    return this;
};

DomainCacheEntry.prototype.dispose = function () {
    this.domain = '';
    if (cacheJunkyard.length < junkyardMax) {
        cacheJunkyard.push(this);
    }
};

var domainCacheEntryFactory = function (domain) {
    let entry = cacheJunkyard.pop();
    if (entry) {
        return entry.init(domain);
    }
    return new DomainCacheEntry(domain);
};

var domainCacheAdd = function (hostname, domain) {
    let entry = domainCache.get(hostname);

    if (entry !== undefined) {
        entry.tstamp = Date.now();
    } else {
        domainCache.set(hostname, domainCacheEntryFactory(domain));
        if (domainCache.size === cacheCountHigh) {
            domainCachePrune();
        }
    }

    return domain;
};

var domainCacheSort = function (a, b) {
    return domainCache.get(b).tstamp - domainCache.get(a).tstamp;
};

var domainCachePrune = function () {
    let hostnames =
        Array.from(domainCache.keys()).sort(domainCacheSort).slice(cacheCountLow);

    for (let i=hostnames.length-1; i>=0; --i) {
        domainCache.get(hostnames[i]).dispose();
        domainCache.delete(hostnames[i]);
    }
};

var domainCacheReset = function () {
    domainCache.clear();
};

publicSuffixList.onChanged.addListener(domainCacheReset);

var UriTools = {
    set: function (uri) {
        if (uri === undefined) {
            return reset(cached);
        }

        let matches = reRFC3986.exec(uri);
        if (!matches) {
            return reset(cached);
        }

        cached.scheme = matches[1] !== undefined ?
            matches[1].slice(0, -1) :
            '';
        cached.authority = matches[2] !== undefined ?
            matches[2].slice(2).toLowerCase() :
            '';
        cached.path = matches[3] !== undefined ?
            matches[3] :
            '';

        // As per RFC3986
        if (cached.authority !== '' && cached.path === '') {
            cached.path = '/';
        }

        cached.query = matches[4] !== undefined ?
            matches[4].slice(1) :
            '';
        cached.fragment = matches[5] !== undefined ?
            matches[5].slice(1) :
            '';

        if (reHostFromNakedAuthority.test(cached.authority)) {
            cached.hostname = cached.authority;
            cached.port = '';
            return cached;
        }

        matches = reHostPortFromAuthority.exec(cached.authority);
        if (!matches) {
            matches = reIPv6PortFromAuthority.exec(cached.authority);
            if (!matches) {
                return resetAuthority(cached);
            }
        }

        cached.hostname = matches[1] !== undefined ?
            matches[1] :
            '';

        if (cached.hostname.slice(-1) === '.') {
            cached.hostname = cached.hostname.slice(0, -1);
        }

        cached.port = matches[2] !== undefined ?
            matches[2].slice(1) :
            '';

        return cached;
    },
    assemble: function (bits) {
        if (bits === undefined) {
            bits = cached.allBits;
        }

        let s = [];

        if (cached.scheme && (bits && cached.schemeBit)) {
            s.push(cached.scheme, ':');
        }
        if (cached.hostname && (bits & cached.hostnameBit)) {
            s.push('//', cached.hostname);
        }
        if (cached.port && (bits & cached.portBit)) {
            s.push(':', cached.port);
        }
        if (cached.path && (bits & cached.pathBit)) {
            s.push(cached.path);
        }
        if (cached.query && (bits & cached.queryBit)) {
            s.push('?', cached.query);
        }
        if (cached.fragment && (bits & cached.fragmentBit)) {
            s.push('#', cached.fragment);
        }

        return s.join('');
    },
    isNetworkScheme: function (scheme) {
        return reNetworkScheme.test(scheme);
    },
    isSecureScheme: function(scheme) {
        return reSecureScheme.test(scheme);
    },
    originFromURI: function (uri) {
        let matches = reOriginFromURI.exec(uri);
        return matches !== null ? matches[0].toLowerCase() : '';
    },
    schemeFromURI: function (uri) {
        let matches = reSchemeFromURI.exec(uri);
        return matches !== null ? matches[0].slice(0, -1).toLowerCase() : '';
    },
    authorityFromURI: function (uri) {
        let matches = reAuthorityFromURI.exec(uri);
        return matches !== null ? matches[1].slice(1).toLowerCase() : '';
    },
    hostnameFromURI: function (uri) {
        let matches = reCommonHostnameFromURL.exec(uri);
        if (matches) {
            return matches[1];
        }

        matches = reAuthorityFromURI.exec(uri);
        if (!matches) {
            return '';
        }

        let auth = matches[1].slice(2);

        if (reHostFromNakedAuthority.test(auth)) {
            return auth.toLowerCase();
        }

        matches = reHostFromAuthority.exec(auth);
        if (!matches) {
            matches = reIPv6FromAuthority.exec(auth);
            if (!matches) {
                return '';
            }
        }

        let hostname = matches[1];
        while (hostname.endsWith('.')) {
            hostname = hostname.slice(0, -1);
        }

        if (reMustNormalizeHostname.test(hostname)) {
            Punycode.toASCII(hostname.toLowerCase());
        }

        return hostname;
    },
    domainFromHostname: function (hostname) {
        let entry = domainCache.get(hostname);
        if (entry !== undefined) {
            entry.tstamp = Date.now();
            return entry.domain;
        }

        if (reIPAddressNaive.test(hostname) == false) {
            return domainCacheAdd(hostname,
                                  publicSuffixList.getDomain(hostname));
        }

        return domainCacheAdd(hostname, hostname);
    },
    domainFromURI: function (uri) {
        if (!uri) {
            return '';
        }
        return UriTools.domainFromHostname(UriTools.hostnameFromURI(uri));
    },
    domain: function() {
        return UriTools.domainFromHostname(cached.hostname);
    },
    pathFromURI: function (uri) {
        let matches = rePathFromURI.exec(uri);
        return matches !== null ? matches[1] : '';
    },
    normalizedURI: function () {
        return UriTools.assemble(cached.normalizeBits);
    },
    rootURL: function () {
        if (!cached.hostname) {
            return '';
        }
        return UriTools.assemble(cached.scemeBit | cached.hostnameBit);
    },
    isValidHostname: function (hostname) {
        try {
            let r = reValidHostname.test(hostname);
            return r;
        } catch (e) {
            return false;
        }
    },
    parentHostnameFromHostname: function (hostname) {
        // "locahost" => ""
        // "example.org" => "example.org"
        // "www.example.org" => "example.org"
        // "tomato.www.example.org" => "example.org"
        let domain = UriTools.domainFromHostname(hostname);

        if (domain === '' || domain === hostname) {
            return undefined;
        }

        return hostname.slice(hostname.indexOf('.') + 1);
    },
    parentHostnamesFromHostname: function (hostname) {
        let domain = UriTools.domainFromHostname(hostname);
        if (domain === '' || domain === hostname) {
            return [];
        }

        let nodes = [];
        for (;;) {
            let pos = hostname.indexOf('.');
            if (pos < 0) {
                break;
            }

            hostname = hostname.slice(pos+1);
            nodes.push(hostname);
            if (hostname === domain) {
                break;
            }
        }

        return nodes;
    },
    allHostNamesFromHostname: function (hostname) {
        let nodes = UriTools.parentHostnamesFromHostname(hostname);
        nodes.unshift(hostname);
        return nodes;
    },
    toString: function () {
        return UriTools.assemble();
    },
};