blob: c6d028132fa59a3be79b4075e8d6a228c18a1bb9 [file] [log] [blame]
beidson@apple.comc7fe45f2010-07-21 23:19:55 +00001/*
2 * Copyright (C) 2010 Apple Inc. All Rights Reserved.
3 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions
6 * are met:
7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the
11 * documentation and/or other materials provided with the distribution.
12 *
13 * THIS SOFTWARE IS PROVIDED BY APPLE, INC. ``AS IS'' AND ANY
14 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
mjs@apple.com92047332014-03-15 04:08:27 +000016 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR
beidson@apple.comc7fe45f2010-07-21 23:19:55 +000017 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
18 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
19 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
20 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
21 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
commit-queue@webkit.org8bdba9b2012-03-09 00:41:22 +000023 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
beidson@apple.comc7fe45f2010-07-21 23:19:55 +000024 *
25 */
26#include "config.h"
achristensen@apple.comd40fd882019-10-04 19:30:08 +000027#include "LegacySchemeRegistry.h"
beidson@apple.com124edc82017-06-02 23:07:08 +000028
achristensen@apple.comba97a622019-10-24 18:50:26 +000029#include "RuntimeApplicationChecks.h"
cdumez@apple.com7d2da832021-05-24 18:29:01 +000030#include <wtf/Lock.h>
cdn@chromium.org76966522012-01-26 23:50:31 +000031#include <wtf/MainThread.h>
jpfau@apple.com39bf85f2014-01-30 23:02:39 +000032#include <wtf/NeverDestroyed.h>
cdumez@apple.comea5b1532022-04-21 23:27:38 +000033#include <wtf/RobinHoodHashSet.h>
keith_miller@apple.combb2f61c2018-12-01 03:28:36 +000034#include <wtf/URLParser.h>
beidson@apple.comc7fe45f2010-07-21 23:19:55 +000035
beidson@apple.com124edc82017-06-02 23:07:08 +000036#if ENABLE(CONTENT_FILTERING)
37#include "ContentFilter.h"
38#endif
39#if USE(QUICK_LOOK)
40#include "QuickLook.h"
41#endif
42
abarth@webkit.org617ecad2012-01-06 00:39:16 +000043namespace WebCore {
beidson@apple.comc7fe45f2010-07-21 23:19:55 +000044
darin@apple.com9ab51c782017-07-18 01:53:34 +000045// FIXME: URLSchemesMap is a peculiar type name given that it is a set.
46
beidson@apple.com124edc82017-06-02 23:07:08 +000047static const URLSchemesMap& builtinLocalURLSchemes();
darin@apple.com3002e422021-12-16 16:54:13 +000048static Span<const ASCIILiteral> builtinSecureSchemes();
49static Span<const ASCIILiteral> builtinSchemesWithUniqueOrigins();
50static Span<const ASCIILiteral> builtinEmptyDocumentSchemes();
51static Span<const ASCIILiteral> builtinCanDisplayOnlyIfCanRequestSchemes();
52static Span<const ASCIILiteral> builtinCORSEnabledSchemes();
beidson@apple.com124edc82017-06-02 23:07:08 +000053
darin@apple.com3002e422021-12-16 16:54:13 +000054using ASCIILiteralSpanFunction = Span<const ASCIILiteral> (*)();
darin@apple.com9ab51c782017-07-18 01:53:34 +000055
darin@apple.com3002e422021-12-16 16:54:13 +000056static void add(URLSchemesMap& set, ASCIILiteralSpanFunction function)
darin@apple.com9ab51c782017-07-18 01:53:34 +000057{
58 for (auto& scheme : function())
59 set.add(scheme);
60}
61
darin@apple.com3002e422021-12-16 16:54:13 +000062static NeverDestroyed<URLSchemesMap> makeNeverDestroyedSchemeSet(ASCIILiteralSpanFunction function)
darin@apple.com9ab51c782017-07-18 01:53:34 +000063{
64 URLSchemesMap set;
65 add(set, function);
66 return set;
67}
68
cdumez@apple.com7d2da832021-05-24 18:29:01 +000069static Lock schemeRegistryLock;
cdumez@apple.com90747ed2018-04-03 16:26:47 +000070
beidson@apple.com124edc82017-06-02 23:07:08 +000071static const URLSchemesMap& allBuiltinSchemes()
72{
darin@apple.com3002e422021-12-16 16:54:13 +000073 static NeverDestroyed schemes = [] {
74 static constexpr ASCIILiteralSpanFunction functions[] {
darin@apple.com9ab51c782017-07-18 01:53:34 +000075 builtinSecureSchemes,
76 builtinSchemesWithUniqueOrigins,
77 builtinEmptyDocumentSchemes,
78 builtinCanDisplayOnlyIfCanRequestSchemes,
79 builtinCORSEnabledSchemes,
80 };
beidson@apple.com124edc82017-06-02 23:07:08 +000081
achristensen@apple.comd40fd882019-10-04 19:30:08 +000082 // Other misc schemes that the LegacySchemeRegistry doesn't know about.
cdumez@apple.comec2f5082022-03-28 21:20:09 +000083 static constexpr ASCIILiteral otherSchemes[] = {
84 "webkit-fake-url"_s,
beidson@apple.com124edc82017-06-02 23:07:08 +000085#if PLATFORM(MAC)
cdumez@apple.comec2f5082022-03-28 21:20:09 +000086 "safari-extension"_s,
beidson@apple.com124edc82017-06-02 23:07:08 +000087#endif
88#if USE(QUICK_LOOK)
timothy_horton@apple.com3bd954b2018-05-18 08:11:17 +000089 QLPreviewProtocol,
beidson@apple.com124edc82017-06-02 23:07:08 +000090#endif
91#if ENABLE(CONTENT_FILTERING)
darin@apple.com9ab51c782017-07-18 01:53:34 +000092 ContentFilter::urlScheme(),
beidson@apple.com124edc82017-06-02 23:07:08 +000093#endif
darin@apple.com9ab51c782017-07-18 01:53:34 +000094 };
beidson@apple.com124edc82017-06-02 23:07:08 +000095
darin@apple.com9ab51c782017-07-18 01:53:34 +000096 URLSchemesMap set;
cdumez@apple.com90747ed2018-04-03 16:26:47 +000097 {
cdumez@apple.com40a10c82021-05-21 20:19:46 +000098 Locker locker { schemeRegistryLock };
cdumez@apple.com90747ed2018-04-03 16:26:47 +000099 for (auto& scheme : builtinLocalURLSchemes())
100 set.add(scheme);
cdumez@apple.com90747ed2018-04-03 16:26:47 +0000101 }
darin@apple.com3002e422021-12-16 16:54:13 +0000102 for (auto& function : functions)
103 add(set, function);
darin@apple.com9ab51c782017-07-18 01:53:34 +0000104 for (auto& scheme : otherSchemes)
105 set.add(scheme);
106 return set;
darin@apple.com3002e422021-12-16 16:54:13 +0000107 }();
beidson@apple.com124edc82017-06-02 23:07:08 +0000108 return schemes;
109}
110
cdumez@apple.com40a10c82021-05-21 20:19:46 +0000111static const URLSchemesMap& builtinLocalURLSchemes() WTF_REQUIRES_LOCK(schemeRegistryLock)
beidson@apple.com124edc82017-06-02 23:07:08 +0000112{
utatane.tea@gmail.comf173ce52018-07-29 18:13:28 +0000113 ASSERT(schemeRegistryLock.isHeld());
darin@apple.com3002e422021-12-16 16:54:13 +0000114 static NeverDestroyed schemes = URLSchemesMap {
ysuzuki@apple.com5a2c3652021-04-06 00:09:31 +0000115 "file"_s,
beidson@apple.com124edc82017-06-02 23:07:08 +0000116#if PLATFORM(COCOA)
ysuzuki@apple.com5a2c3652021-04-06 00:09:31 +0000117 "applewebdata"_s,
beidson@apple.com124edc82017-06-02 23:07:08 +0000118#endif
darin@apple.com3002e422021-12-16 16:54:13 +0000119 };
beidson@apple.com124edc82017-06-02 23:07:08 +0000120 return schemes;
121}
122
cdumez@apple.com40a10c82021-05-21 20:19:46 +0000123static URLSchemesMap& localURLSchemes() WTF_REQUIRES_LOCK(schemeRegistryLock)
beidson@apple.comc7fe45f2010-07-21 23:19:55 +0000124{
utatane.tea@gmail.comf173ce52018-07-29 18:13:28 +0000125 ASSERT(schemeRegistryLock.isHeld());
darin@apple.com9ab51c782017-07-18 01:53:34 +0000126 static NeverDestroyed<URLSchemesMap> localSchemes = builtinLocalURLSchemes();
beidson@apple.comc7fe45f2010-07-21 23:19:55 +0000127 return localSchemes;
128}
129
cdumez@apple.com40a10c82021-05-21 20:19:46 +0000130static URLSchemesMap& displayIsolatedURLSchemes() WTF_REQUIRES_LOCK(schemeRegistryLock)
abarth@webkit.orgc655f682011-01-11 01:02:01 +0000131{
utatane.tea@gmail.comf173ce52018-07-29 18:13:28 +0000132 ASSERT(schemeRegistryLock.isHeld());
akling@apple.comee1218c2016-01-09 13:13:41 +0000133 static NeverDestroyed<URLSchemesMap> displayIsolatedSchemes;
abarth@webkit.orgc655f682011-01-11 01:02:01 +0000134 return displayIsolatedSchemes;
135}
136
darin@apple.com3002e422021-12-16 16:54:13 +0000137static Span<const ASCIILiteral> builtinSecureSchemes()
beidson@apple.com124edc82017-06-02 23:07:08 +0000138{
darin@apple.com3002e422021-12-16 16:54:13 +0000139 static constexpr std::array schemes {
ysuzuki@apple.com5a2c3652021-04-06 00:09:31 +0000140 "https"_s,
141 "about"_s,
142 "data"_s,
143 "wss"_s,
beidson@apple.com124edc82017-06-02 23:07:08 +0000144#if PLATFORM(GTK) || PLATFORM(WPE)
ysuzuki@apple.com5a2c3652021-04-06 00:09:31 +0000145 "resource"_s,
beidson@apple.com124edc82017-06-02 23:07:08 +0000146#endif
carlosgc@webkit.org05892632022-03-18 08:35:25 +0000147#if ENABLE(PDFJS)
ntim@apple.comcbe14452022-02-10 17:49:26 +0000148 "webkit-pdfjs-viewer"_s,
149#endif
darin@apple.com3002e422021-12-16 16:54:13 +0000150 };
beidson@apple.com124edc82017-06-02 23:07:08 +0000151 return schemes;
152}
153
cdumez@apple.com40a10c82021-05-21 20:19:46 +0000154static URLSchemesMap& secureSchemes() WTF_REQUIRES_LOCK(schemeRegistryLock)
beidson@apple.comc7fe45f2010-07-21 23:19:55 +0000155{
utatane.tea@gmail.comf173ce52018-07-29 18:13:28 +0000156 ASSERT(schemeRegistryLock.isHeld());
darin@apple.com9ab51c782017-07-18 01:53:34 +0000157 static auto secureSchemes = makeNeverDestroyedSchemeSet(builtinSecureSchemes);
beidson@apple.comc7fe45f2010-07-21 23:19:55 +0000158 return secureSchemes;
159}
160
darin@apple.com3002e422021-12-16 16:54:13 +0000161static Span<const ASCIILiteral> builtinSchemesWithUniqueOrigins()
beidson@apple.com124edc82017-06-02 23:07:08 +0000162{
darin@apple.com3002e422021-12-16 16:54:13 +0000163 static constexpr std::array schemes {
ysuzuki@apple.com5a2c3652021-04-06 00:09:31 +0000164 "about"_s,
165 "javascript"_s,
darin@apple.com9ab51c782017-07-18 01:53:34 +0000166 // This is an intentional difference from the behavior the HTML specification calls for.
beidson@apple.com124edc82017-06-02 23:07:08 +0000167 // See https://bugs.webkit.org/show_bug.cgi?id=11885
ysuzuki@apple.com5a2c3652021-04-06 00:09:31 +0000168 "data"_s,
darin@apple.com3002e422021-12-16 16:54:13 +0000169 };
beidson@apple.com124edc82017-06-02 23:07:08 +0000170 return schemes;
171}
172
cdumez@apple.com40a10c82021-05-21 20:19:46 +0000173static URLSchemesMap& schemesWithUniqueOrigins() WTF_REQUIRES_LOCK(schemeRegistryLock)
beidson@apple.comc7fe45f2010-07-21 23:19:55 +0000174{
utatane.tea@gmail.comf173ce52018-07-29 18:13:28 +0000175 ASSERT(schemeRegistryLock.isHeld());
darin@apple.com9ab51c782017-07-18 01:53:34 +0000176 static auto schemesWithUniqueOrigins = makeNeverDestroyedSchemeSet(builtinSchemesWithUniqueOrigins);
beidson@apple.comc7fe45f2010-07-21 23:19:55 +0000177 return schemesWithUniqueOrigins;
178}
179
darin@apple.com3002e422021-12-16 16:54:13 +0000180static Span<const ASCIILiteral> builtinEmptyDocumentSchemes()
beidson@apple.com124edc82017-06-02 23:07:08 +0000181{
darin@apple.com3002e422021-12-16 16:54:13 +0000182 static constexpr std::array schemes { "about"_s };
beidson@apple.com124edc82017-06-02 23:07:08 +0000183 return schemes;
184}
185
beidson@apple.com5c1fdf12010-07-26 20:37:56 +0000186static URLSchemesMap& emptyDocumentSchemes()
187{
cdumez@apple.com90747ed2018-04-03 16:26:47 +0000188 ASSERT(isMainThread());
darin@apple.com9ab51c782017-07-18 01:53:34 +0000189 static auto emptyDocumentSchemes = makeNeverDestroyedSchemeSet(builtinEmptyDocumentSchemes);
beidson@apple.com5c1fdf12010-07-26 20:37:56 +0000190 return emptyDocumentSchemes;
191}
192
darin@apple.com9ab51c782017-07-18 01:53:34 +0000193static URLSchemesMap& schemesForbiddenFromDomainRelaxation()
abarth@webkit.org8e056b02011-11-08 01:37:47 +0000194{
cdumez@apple.com90747ed2018-04-03 16:26:47 +0000195 ASSERT(isMainThread());
darin@apple.com9ab51c782017-07-18 01:53:34 +0000196 static NeverDestroyed<URLSchemesMap> schemes;
abarth@webkit.org8e056b02011-11-08 01:37:47 +0000197 return schemes;
198}
199
darin@apple.com3002e422021-12-16 16:54:13 +0000200static Span<const ASCIILiteral> builtinCanDisplayOnlyIfCanRequestSchemes()
beidson@apple.com124edc82017-06-02 23:07:08 +0000201{
darin@apple.com3002e422021-12-16 16:54:13 +0000202 static constexpr std::array schemes { "blob"_s };
beidson@apple.com124edc82017-06-02 23:07:08 +0000203 return schemes;
204}
205
cdumez@apple.com40a10c82021-05-21 20:19:46 +0000206static URLSchemesMap& canDisplayOnlyIfCanRequestSchemes() WTF_REQUIRES_LOCK(schemeRegistryLock)
commit-queue@webkit.org3b8fac52011-02-11 21:39:04 +0000207{
achristensen@apple.com7f04df02019-10-28 17:53:56 +0000208 ASSERT(!isInNetworkProcess());
utatane.tea@gmail.comf173ce52018-07-29 18:13:28 +0000209 ASSERT(schemeRegistryLock.isHeld());
darin@apple.com9ab51c782017-07-18 01:53:34 +0000210 static auto canDisplayOnlyIfCanRequestSchemes = makeNeverDestroyedSchemeSet(builtinCanDisplayOnlyIfCanRequestSchemes);
commit-queue@webkit.org3b8fac52011-02-11 21:39:04 +0000211 return canDisplayOnlyIfCanRequestSchemes;
212}
213
commit-queue@webkit.org54a0b042011-08-24 21:06:43 +0000214static URLSchemesMap& notAllowingJavascriptURLsSchemes()
215{
cdumez@apple.com90747ed2018-04-03 16:26:47 +0000216 ASSERT(isMainThread());
akling@apple.comee1218c2016-01-09 13:13:41 +0000217 static NeverDestroyed<URLSchemesMap> notAllowingJavascriptURLsSchemes;
commit-queue@webkit.org54a0b042011-08-24 21:06:43 +0000218 return notAllowingJavascriptURLsSchemes;
219}
220
achristensen@apple.comd40fd882019-10-04 19:30:08 +0000221void LegacySchemeRegistry::registerURLSchemeAsLocal(const String& scheme)
beidson@apple.comc7fe45f2010-07-21 23:19:55 +0000222{
cdumez@apple.com6c77ab32018-02-24 06:36:07 +0000223 if (scheme.isNull())
224 return;
225
cdumez@apple.com40a10c82021-05-21 20:19:46 +0000226 Locker locker { schemeRegistryLock };
abarth@webkit.orgc655f682011-01-11 01:02:01 +0000227 localURLSchemes().add(scheme);
beidson@apple.comc7fe45f2010-07-21 23:19:55 +0000228}
229
achristensen@apple.comd40fd882019-10-04 19:30:08 +0000230void LegacySchemeRegistry::removeURLSchemeRegisteredAsLocal(const String& scheme)
beidson@apple.comc7fe45f2010-07-21 23:19:55 +0000231{
cdumez@apple.com40a10c82021-05-21 20:19:46 +0000232 Locker locker { schemeRegistryLock };
beidson@apple.com124edc82017-06-02 23:07:08 +0000233 if (builtinLocalURLSchemes().contains(scheme))
beidson@apple.comc7fe45f2010-07-21 23:19:55 +0000234 return;
beidson@apple.com124edc82017-06-02 23:07:08 +0000235
abarth@webkit.orgc655f682011-01-11 01:02:01 +0000236 localURLSchemes().remove(scheme);
beidson@apple.comc7fe45f2010-07-21 23:19:55 +0000237}
238
cdumez@apple.comea5b1532022-04-21 23:27:38 +0000239static MemoryCompactRobinHoodHashSet<String>& schemesHandledBySchemeHandler() WTF_REQUIRES_LOCK(schemeRegistryLock)
commit-queue@webkit.orgec4ceec2021-02-07 06:02:35 +0000240{
241 ASSERT(schemeRegistryLock.isHeld());
cdumez@apple.comea5b1532022-04-21 23:27:38 +0000242 static NeverDestroyed<MemoryCompactRobinHoodHashSet<String>> set;
commit-queue@webkit.orgec4ceec2021-02-07 06:02:35 +0000243 return set.get();
244}
245
246void LegacySchemeRegistry::registerURLSchemeAsHandledBySchemeHandler(const String& scheme)
247{
cdumez@apple.com40a10c82021-05-21 20:19:46 +0000248 Locker locker { schemeRegistryLock };
commit-queue@webkit.orgec4ceec2021-02-07 06:02:35 +0000249 schemesHandledBySchemeHandler().add(scheme);
250}
251
252bool LegacySchemeRegistry::schemeIsHandledBySchemeHandler(StringView scheme)
253{
cdumez@apple.com40a10c82021-05-21 20:19:46 +0000254 Locker locker { schemeRegistryLock };
cdumez@apple.com9f220912022-04-06 17:48:44 +0000255 return schemesHandledBySchemeHandler().contains<StringViewHashTranslator>(scheme);
commit-queue@webkit.orgec4ceec2021-02-07 06:02:35 +0000256}
257
jberlin@webkit.orgda2af492011-11-07 18:16:33 +0000258static URLSchemesMap& schemesAllowingDatabaseAccessInPrivateBrowsing()
259{
cdumez@apple.com90747ed2018-04-03 16:26:47 +0000260 ASSERT(isMainThread());
akling@apple.comee1218c2016-01-09 13:13:41 +0000261 static NeverDestroyed<URLSchemesMap> schemesAllowingDatabaseAccessInPrivateBrowsing;
jberlin@webkit.orgda2af492011-11-07 18:16:33 +0000262 return schemesAllowingDatabaseAccessInPrivateBrowsing;
263}
264
darin@apple.com3002e422021-12-16 16:54:13 +0000265static Span<const ASCIILiteral> builtinCORSEnabledSchemes()
beidson@apple.com124edc82017-06-02 23:07:08 +0000266{
darin@apple.com3002e422021-12-16 16:54:13 +0000267 static constexpr std::array schemes { "http"_s, "https"_s };
beidson@apple.com124edc82017-06-02 23:07:08 +0000268 return schemes;
269}
270
cdn@chromium.org76966522012-01-26 23:50:31 +0000271static URLSchemesMap& CORSEnabledSchemes()
272{
cdumez@apple.com90747ed2018-04-03 16:26:47 +0000273 ASSERT(isMainThread());
commit-queue@webkit.org8bdba9b2012-03-09 00:41:22 +0000274 // FIXME: http://bugs.webkit.org/show_bug.cgi?id=77160
darin@apple.com9ab51c782017-07-18 01:53:34 +0000275 static auto schemes = makeNeverDestroyedSchemeSet(builtinCORSEnabledSchemes);
276 return schemes;
cdn@chromium.org76966522012-01-26 23:50:31 +0000277}
278
cdumez@apple.com40a10c82021-05-21 20:19:46 +0000279static URLSchemesMap& ContentSecurityPolicyBypassingSchemes() WTF_REQUIRES_LOCK(schemeRegistryLock)
commit-queue@webkit.org828d2392012-06-19 07:27:33 +0000280{
utatane.tea@gmail.comf173ce52018-07-29 18:13:28 +0000281 ASSERT(schemeRegistryLock.isHeld());
akling@apple.comee1218c2016-01-09 13:13:41 +0000282 static NeverDestroyed<URLSchemesMap> schemes;
commit-queue@webkit.org828d2392012-06-19 07:27:33 +0000283 return schemes;
284}
285
cdumez@apple.com40a10c82021-05-21 20:19:46 +0000286static URLSchemesMap& cachePartitioningSchemes() WTF_REQUIRES_LOCK(schemeRegistryLock)
jpfau@apple.com39bf85f2014-01-30 23:02:39 +0000287{
utatane.tea@gmail.comf173ce52018-07-29 18:13:28 +0000288 ASSERT(schemeRegistryLock.isHeld());
jpfau@apple.com39bf85f2014-01-30 23:02:39 +0000289 static NeverDestroyed<URLSchemesMap> schemes;
290 return schemes;
291}
jpfau@apple.com39bf85f2014-01-30 23:02:39 +0000292
aestes@apple.comc9b9cb02016-01-12 02:12:37 +0000293static URLSchemesMap& alwaysRevalidatedSchemes()
294{
cdumez@apple.com90747ed2018-04-03 16:26:47 +0000295 ASSERT(isMainThread());
aestes@apple.comc9b9cb02016-01-12 02:12:37 +0000296 static NeverDestroyed<URLSchemesMap> schemes;
297 return schemes;
298}
299
cdumez@apple.com9f220912022-04-06 17:48:44 +0000300bool LegacySchemeRegistry::shouldTreatURLSchemeAsLocal(StringView scheme)
beidson@apple.comc7fe45f2010-07-21 23:19:55 +0000301{
cdumez@apple.com6c77ab32018-02-24 06:36:07 +0000302 if (scheme.isNull())
303 return false;
304
cdumez@apple.com40a10c82021-05-21 20:19:46 +0000305 Locker locker { schemeRegistryLock };
cdumez@apple.com9f220912022-04-06 17:48:44 +0000306 return localURLSchemes().contains<StringViewHashTranslator>(scheme);
beidson@apple.comc7fe45f2010-07-21 23:19:55 +0000307}
308
achristensen@apple.comd40fd882019-10-04 19:30:08 +0000309void LegacySchemeRegistry::registerURLSchemeAsNoAccess(const String& scheme)
beidson@apple.comc7fe45f2010-07-21 23:19:55 +0000310{
darin@apple.com9ab51c782017-07-18 01:53:34 +0000311 if (scheme.isNull())
312 return;
cdumez@apple.com90747ed2018-04-03 16:26:47 +0000313
cdumez@apple.com40a10c82021-05-21 20:19:46 +0000314 Locker locker { schemeRegistryLock };
beidson@apple.comc7fe45f2010-07-21 23:19:55 +0000315 schemesWithUniqueOrigins().add(scheme);
316}
317
cdumez@apple.com9f220912022-04-06 17:48:44 +0000318bool LegacySchemeRegistry::shouldTreatURLSchemeAsNoAccess(StringView scheme)
beidson@apple.comc7fe45f2010-07-21 23:19:55 +0000319{
cdumez@apple.com90747ed2018-04-03 16:26:47 +0000320 if (scheme.isNull())
321 return false;
322
cdumez@apple.com40a10c82021-05-21 20:19:46 +0000323 Locker locker { schemeRegistryLock };
cdumez@apple.com9f220912022-04-06 17:48:44 +0000324 return schemesWithUniqueOrigins().contains<StringViewHashTranslator>(scheme);
beidson@apple.comc7fe45f2010-07-21 23:19:55 +0000325}
326
achristensen@apple.comd40fd882019-10-04 19:30:08 +0000327void LegacySchemeRegistry::registerURLSchemeAsDisplayIsolated(const String& scheme)
abarth@webkit.orgc655f682011-01-11 01:02:01 +0000328{
darin@apple.com9ab51c782017-07-18 01:53:34 +0000329 if (scheme.isNull())
330 return;
cdumez@apple.com90747ed2018-04-03 16:26:47 +0000331
cdumez@apple.com40a10c82021-05-21 20:19:46 +0000332 Locker locker { schemeRegistryLock };
abarth@webkit.orgc655f682011-01-11 01:02:01 +0000333 displayIsolatedURLSchemes().add(scheme);
334}
335
cdumez@apple.com9f220912022-04-06 17:48:44 +0000336bool LegacySchemeRegistry::shouldTreatURLSchemeAsDisplayIsolated(StringView scheme)
abarth@webkit.orgc655f682011-01-11 01:02:01 +0000337{
cdumez@apple.com90747ed2018-04-03 16:26:47 +0000338 if (scheme.isNull())
339 return false;
340
cdumez@apple.com40a10c82021-05-21 20:19:46 +0000341 Locker locker { schemeRegistryLock };
cdumez@apple.com9f220912022-04-06 17:48:44 +0000342 return displayIsolatedURLSchemes().contains<StringViewHashTranslator>(scheme);
abarth@webkit.orgc655f682011-01-11 01:02:01 +0000343}
344
achristensen@apple.comd40fd882019-10-04 19:30:08 +0000345void LegacySchemeRegistry::registerURLSchemeAsSecure(const String& scheme)
beidson@apple.comc7fe45f2010-07-21 23:19:55 +0000346{
darin@apple.com9ab51c782017-07-18 01:53:34 +0000347 if (scheme.isNull())
348 return;
cdumez@apple.com6c77ab32018-02-24 06:36:07 +0000349
cdumez@apple.com40a10c82021-05-21 20:19:46 +0000350 Locker locker { schemeRegistryLock };
beidson@apple.comc7fe45f2010-07-21 23:19:55 +0000351 secureSchemes().add(scheme);
352}
353
cdumez@apple.com9f220912022-04-06 17:48:44 +0000354bool LegacySchemeRegistry::shouldTreatURLSchemeAsSecure(StringView scheme)
beidson@apple.comc7fe45f2010-07-21 23:19:55 +0000355{
cdumez@apple.com6c77ab32018-02-24 06:36:07 +0000356 if (scheme.isNull())
357 return false;
358
cdumez@apple.com40a10c82021-05-21 20:19:46 +0000359 Locker locker { schemeRegistryLock };
cdumez@apple.com9f220912022-04-06 17:48:44 +0000360 return secureSchemes().contains<StringViewHashTranslator>(scheme);
beidson@apple.comc7fe45f2010-07-21 23:19:55 +0000361}
362
achristensen@apple.comd40fd882019-10-04 19:30:08 +0000363void LegacySchemeRegistry::registerURLSchemeAsEmptyDocument(const String& scheme)
beidson@apple.com5c1fdf12010-07-26 20:37:56 +0000364{
darin@apple.com9ab51c782017-07-18 01:53:34 +0000365 if (scheme.isNull())
366 return;
beidson@apple.com5c1fdf12010-07-26 20:37:56 +0000367 emptyDocumentSchemes().add(scheme);
368}
369
cdumez@apple.com9f220912022-04-06 17:48:44 +0000370bool LegacySchemeRegistry::shouldLoadURLSchemeAsEmptyDocument(StringView scheme)
beidson@apple.com5c1fdf12010-07-26 20:37:56 +0000371{
cdumez@apple.com9f220912022-04-06 17:48:44 +0000372 return !scheme.isNull() && emptyDocumentSchemes().contains<StringViewHashTranslator>(scheme);
beidson@apple.com5c1fdf12010-07-26 20:37:56 +0000373}
374
achristensen@apple.comd40fd882019-10-04 19:30:08 +0000375void LegacySchemeRegistry::setDomainRelaxationForbiddenForURLScheme(bool forbidden, const String& scheme)
abarth@webkit.org8e056b02011-11-08 01:37:47 +0000376{
darin@apple.com9ab51c782017-07-18 01:53:34 +0000377 if (scheme.isNull())
abarth@webkit.org8e056b02011-11-08 01:37:47 +0000378 return;
379
380 if (forbidden)
381 schemesForbiddenFromDomainRelaxation().add(scheme);
382 else
383 schemesForbiddenFromDomainRelaxation().remove(scheme);
384}
385
achristensen@apple.comd40fd882019-10-04 19:30:08 +0000386bool LegacySchemeRegistry::isDomainRelaxationForbiddenForURLScheme(const String& scheme)
abarth@webkit.org8e056b02011-11-08 01:37:47 +0000387{
darin@apple.com9ab51c782017-07-18 01:53:34 +0000388 return !scheme.isNull() && schemesForbiddenFromDomainRelaxation().contains(scheme);
abarth@webkit.org8e056b02011-11-08 01:37:47 +0000389}
390
cdumez@apple.com9f220912022-04-06 17:48:44 +0000391bool LegacySchemeRegistry::canDisplayOnlyIfCanRequest(StringView scheme)
commit-queue@webkit.org3b8fac52011-02-11 21:39:04 +0000392{
achristensen@apple.com7f04df02019-10-28 17:53:56 +0000393 ASSERT(!isInNetworkProcess());
cdumez@apple.com90747ed2018-04-03 16:26:47 +0000394 if (scheme.isNull())
395 return false;
396
cdumez@apple.com40a10c82021-05-21 20:19:46 +0000397 Locker locker { schemeRegistryLock };
cdumez@apple.com9f220912022-04-06 17:48:44 +0000398 return canDisplayOnlyIfCanRequestSchemes().contains<StringViewHashTranslator>(scheme);
commit-queue@webkit.org3b8fac52011-02-11 21:39:04 +0000399}
400
achristensen@apple.comd40fd882019-10-04 19:30:08 +0000401void LegacySchemeRegistry::registerAsCanDisplayOnlyIfCanRequest(const String& scheme)
commit-queue@webkit.org3b8fac52011-02-11 21:39:04 +0000402{
achristensen@apple.com7f04df02019-10-28 17:53:56 +0000403 ASSERT(!isInNetworkProcess());
darin@apple.com9ab51c782017-07-18 01:53:34 +0000404 if (scheme.isNull())
405 return;
cdumez@apple.com90747ed2018-04-03 16:26:47 +0000406
cdumez@apple.com40a10c82021-05-21 20:19:46 +0000407 Locker locker { schemeRegistryLock };
commit-queue@webkit.org3b8fac52011-02-11 21:39:04 +0000408 canDisplayOnlyIfCanRequestSchemes().add(scheme);
409}
410
achristensen@apple.comd40fd882019-10-04 19:30:08 +0000411void LegacySchemeRegistry::registerURLSchemeAsNotAllowingJavascriptURLs(const String& scheme)
commit-queue@webkit.org54a0b042011-08-24 21:06:43 +0000412{
darin@apple.com9ab51c782017-07-18 01:53:34 +0000413 if (scheme.isNull())
414 return;
commit-queue@webkit.org54a0b042011-08-24 21:06:43 +0000415 notAllowingJavascriptURLsSchemes().add(scheme);
416}
417
achristensen@apple.comd40fd882019-10-04 19:30:08 +0000418bool LegacySchemeRegistry::shouldTreatURLSchemeAsNotAllowingJavascriptURLs(const String& scheme)
commit-queue@webkit.org54a0b042011-08-24 21:06:43 +0000419{
darin@apple.com9ab51c782017-07-18 01:53:34 +0000420 return !scheme.isNull() && notAllowingJavascriptURLsSchemes().contains(scheme);
commit-queue@webkit.org54a0b042011-08-24 21:06:43 +0000421}
422
achristensen@apple.comd40fd882019-10-04 19:30:08 +0000423void LegacySchemeRegistry::registerURLSchemeAsAllowingDatabaseAccessInPrivateBrowsing(const String& scheme)
jberlin@webkit.orgda2af492011-11-07 18:16:33 +0000424{
darin@apple.com9ab51c782017-07-18 01:53:34 +0000425 if (scheme.isNull())
426 return;
jberlin@webkit.orgda2af492011-11-07 18:16:33 +0000427 schemesAllowingDatabaseAccessInPrivateBrowsing().add(scheme);
428}
429
achristensen@apple.comd40fd882019-10-04 19:30:08 +0000430bool LegacySchemeRegistry::allowsDatabaseAccessInPrivateBrowsing(const String& scheme)
jberlin@webkit.orgda2af492011-11-07 18:16:33 +0000431{
darin@apple.com9ab51c782017-07-18 01:53:34 +0000432 return !scheme.isNull() && schemesAllowingDatabaseAccessInPrivateBrowsing().contains(scheme);
jberlin@webkit.orgda2af492011-11-07 18:16:33 +0000433}
434
achristensen@apple.comd40fd882019-10-04 19:30:08 +0000435void LegacySchemeRegistry::registerURLSchemeAsCORSEnabled(const String& scheme)
cdn@chromium.org76966522012-01-26 23:50:31 +0000436{
achristensen@apple.comba97a622019-10-24 18:50:26 +0000437 ASSERT(!isInNetworkProcess());
darin@apple.com9ab51c782017-07-18 01:53:34 +0000438 if (scheme.isNull())
439 return;
cdn@chromium.org76966522012-01-26 23:50:31 +0000440 CORSEnabledSchemes().add(scheme);
441}
442
cdumez@apple.com9f220912022-04-06 17:48:44 +0000443bool LegacySchemeRegistry::shouldTreatURLSchemeAsCORSEnabled(StringView scheme)
cdn@chromium.org76966522012-01-26 23:50:31 +0000444{
achristensen@apple.comba97a622019-10-24 18:50:26 +0000445 ASSERT(!isInNetworkProcess());
cdumez@apple.com9f220912022-04-06 17:48:44 +0000446 return !scheme.isNull() && CORSEnabledSchemes().contains<StringViewHashTranslator>(scheme);
cdn@chromium.org76966522012-01-26 23:50:31 +0000447}
448
achristensen@apple.comba97a622019-10-24 18:50:26 +0000449Vector<String> LegacySchemeRegistry::allURLSchemesRegisteredAsCORSEnabled()
450{
451 ASSERT(!isInNetworkProcess());
452 return copyToVector(CORSEnabledSchemes());
453}
454
achristensen@apple.comd40fd882019-10-04 19:30:08 +0000455void LegacySchemeRegistry::registerURLSchemeAsBypassingContentSecurityPolicy(const String& scheme)
commit-queue@webkit.org828d2392012-06-19 07:27:33 +0000456{
darin@apple.com9ab51c782017-07-18 01:53:34 +0000457 if (scheme.isNull())
458 return;
cdumez@apple.com90747ed2018-04-03 16:26:47 +0000459
cdumez@apple.com40a10c82021-05-21 20:19:46 +0000460 Locker locker { schemeRegistryLock };
commit-queue@webkit.org828d2392012-06-19 07:27:33 +0000461 ContentSecurityPolicyBypassingSchemes().add(scheme);
462}
463
achristensen@apple.comd40fd882019-10-04 19:30:08 +0000464void LegacySchemeRegistry::removeURLSchemeRegisteredAsBypassingContentSecurityPolicy(const String& scheme)
commit-queue@webkit.org828d2392012-06-19 07:27:33 +0000465{
darin@apple.com9ab51c782017-07-18 01:53:34 +0000466 if (scheme.isNull())
467 return;
cdumez@apple.com90747ed2018-04-03 16:26:47 +0000468
cdumez@apple.com40a10c82021-05-21 20:19:46 +0000469 Locker locker { schemeRegistryLock };
commit-queue@webkit.org828d2392012-06-19 07:27:33 +0000470 ContentSecurityPolicyBypassingSchemes().remove(scheme);
471}
472
cdumez@apple.com9f220912022-04-06 17:48:44 +0000473bool LegacySchemeRegistry::schemeShouldBypassContentSecurityPolicy(StringView scheme)
commit-queue@webkit.org828d2392012-06-19 07:27:33 +0000474{
cdumez@apple.com90747ed2018-04-03 16:26:47 +0000475 if (scheme.isNull())
476 return false;
477
cdumez@apple.com40a10c82021-05-21 20:19:46 +0000478 Locker locker { schemeRegistryLock };
cdumez@apple.com9f220912022-04-06 17:48:44 +0000479 return ContentSecurityPolicyBypassingSchemes().contains<StringViewHashTranslator>(scheme);
commit-queue@webkit.org828d2392012-06-19 07:27:33 +0000480}
481
achristensen@apple.comd40fd882019-10-04 19:30:08 +0000482void LegacySchemeRegistry::registerURLSchemeAsAlwaysRevalidated(const String& scheme)
aestes@apple.comd90a51a2013-05-16 02:54:06 +0000483{
darin@apple.com9ab51c782017-07-18 01:53:34 +0000484 if (scheme.isNull())
485 return;
aestes@apple.comc9b9cb02016-01-12 02:12:37 +0000486 alwaysRevalidatedSchemes().add(scheme);
487}
488
cdumez@apple.com9f220912022-04-06 17:48:44 +0000489bool LegacySchemeRegistry::shouldAlwaysRevalidateURLScheme(StringView scheme)
aestes@apple.comc9b9cb02016-01-12 02:12:37 +0000490{
cdumez@apple.com9f220912022-04-06 17:48:44 +0000491 return !scheme.isNull() && alwaysRevalidatedSchemes().contains<StringViewHashTranslator>(scheme);
aestes@apple.comd90a51a2013-05-16 02:54:06 +0000492}
493
achristensen@apple.comd40fd882019-10-04 19:30:08 +0000494void LegacySchemeRegistry::registerURLSchemeAsCachePartitioned(const String& scheme)
jpfau@apple.com39bf85f2014-01-30 23:02:39 +0000495{
darin@apple.com9ab51c782017-07-18 01:53:34 +0000496 if (scheme.isNull())
497 return;
cdumez@apple.com90747ed2018-04-03 16:26:47 +0000498
cdumez@apple.com40a10c82021-05-21 20:19:46 +0000499 Locker locker { schemeRegistryLock };
jpfau@apple.com39bf85f2014-01-30 23:02:39 +0000500 cachePartitioningSchemes().add(scheme);
501}
502
achristensen@apple.comd40fd882019-10-04 19:30:08 +0000503bool LegacySchemeRegistry::shouldPartitionCacheForURLScheme(const String& scheme)
jpfau@apple.com39bf85f2014-01-30 23:02:39 +0000504{
cdumez@apple.com90747ed2018-04-03 16:26:47 +0000505 if (scheme.isNull())
506 return false;
507
cdumez@apple.com40a10c82021-05-21 20:19:46 +0000508 Locker locker { schemeRegistryLock };
cdumez@apple.com90747ed2018-04-03 16:26:47 +0000509 return cachePartitioningSchemes().contains(scheme);
jpfau@apple.com39bf85f2014-01-30 23:02:39 +0000510}
jpfau@apple.com39bf85f2014-01-30 23:02:39 +0000511
cdumez@apple.com9f220912022-04-06 17:48:44 +0000512bool LegacySchemeRegistry::isUserExtensionScheme(StringView scheme)
commit-queue@webkit.org5bd2ba62017-02-07 00:25:00 +0000513{
achristensen@apple.com2170fa42020-01-02 21:14:02 +0000514 // FIXME: Remove this once Safari has adopted WKWebViewConfiguration._corsDisablingPatterns
commit-queue@webkit.org5bd2ba62017-02-07 00:25:00 +0000515#if PLATFORM(MAC)
cdumez@apple.com28e0c9c2022-06-02 15:51:24 +0000516 if (scheme == "safari-extension"_s)
commit-queue@webkit.org5bd2ba62017-02-07 00:25:00 +0000517 return true;
darin@apple.com9ab51c782017-07-18 01:53:34 +0000518#else
519 UNUSED_PARAM(scheme);
commit-queue@webkit.org5bd2ba62017-02-07 00:25:00 +0000520#endif
521 return false;
522}
523
achristensen@apple.comd40fd882019-10-04 19:30:08 +0000524bool LegacySchemeRegistry::isBuiltinScheme(const String& scheme)
beidson@apple.com124edc82017-06-02 23:07:08 +0000525{
keith_miller@apple.combb2f61c2018-12-01 03:28:36 +0000526 return !scheme.isNull() && (allBuiltinSchemes().contains(scheme) || WTF::URLParser::isSpecialScheme(scheme));
beidson@apple.com124edc82017-06-02 23:07:08 +0000527}
528
abarth@webkit.org617ecad2012-01-06 00:39:16 +0000529} // namespace WebCore