beidson@apple.com | c7fe45f | 2010-07-21 23:19:55 +0000 | [diff] [blame] | 1 | /* |
| 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.com | 9204733 | 2014-03-15 04:08:27 +0000 | [diff] [blame] | 16 | * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR |
beidson@apple.com | c7fe45f | 2010-07-21 23:19:55 +0000 | [diff] [blame] | 17 | * 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.org | 8bdba9b | 2012-03-09 00:41:22 +0000 | [diff] [blame] | 23 | * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
beidson@apple.com | c7fe45f | 2010-07-21 23:19:55 +0000 | [diff] [blame] | 24 | * |
| 25 | */ |
| 26 | #include "config.h" |
achristensen@apple.com | d40fd88 | 2019-10-04 19:30:08 +0000 | [diff] [blame] | 27 | #include "LegacySchemeRegistry.h" |
beidson@apple.com | 124edc8 | 2017-06-02 23:07:08 +0000 | [diff] [blame] | 28 | |
achristensen@apple.com | ba97a62 | 2019-10-24 18:50:26 +0000 | [diff] [blame] | 29 | #include "RuntimeApplicationChecks.h" |
cdumez@apple.com | 7d2da83 | 2021-05-24 18:29:01 +0000 | [diff] [blame] | 30 | #include <wtf/Lock.h> |
cdn@chromium.org | 7696652 | 2012-01-26 23:50:31 +0000 | [diff] [blame] | 31 | #include <wtf/MainThread.h> |
jpfau@apple.com | 39bf85f | 2014-01-30 23:02:39 +0000 | [diff] [blame] | 32 | #include <wtf/NeverDestroyed.h> |
cdumez@apple.com | ea5b153 | 2022-04-21 23:27:38 +0000 | [diff] [blame] | 33 | #include <wtf/RobinHoodHashSet.h> |
keith_miller@apple.com | bb2f61c | 2018-12-01 03:28:36 +0000 | [diff] [blame] | 34 | #include <wtf/URLParser.h> |
beidson@apple.com | c7fe45f | 2010-07-21 23:19:55 +0000 | [diff] [blame] | 35 | |
beidson@apple.com | 124edc8 | 2017-06-02 23:07:08 +0000 | [diff] [blame] | 36 | #if ENABLE(CONTENT_FILTERING) |
| 37 | #include "ContentFilter.h" |
| 38 | #endif |
| 39 | #if USE(QUICK_LOOK) |
| 40 | #include "QuickLook.h" |
| 41 | #endif |
| 42 | |
abarth@webkit.org | 617ecad | 2012-01-06 00:39:16 +0000 | [diff] [blame] | 43 | namespace WebCore { |
beidson@apple.com | c7fe45f | 2010-07-21 23:19:55 +0000 | [diff] [blame] | 44 | |
darin@apple.com | 9ab51c78 | 2017-07-18 01:53:34 +0000 | [diff] [blame] | 45 | // FIXME: URLSchemesMap is a peculiar type name given that it is a set. |
| 46 | |
beidson@apple.com | 124edc8 | 2017-06-02 23:07:08 +0000 | [diff] [blame] | 47 | static const URLSchemesMap& builtinLocalURLSchemes(); |
darin@apple.com | 3002e42 | 2021-12-16 16:54:13 +0000 | [diff] [blame] | 48 | static Span<const ASCIILiteral> builtinSecureSchemes(); |
| 49 | static Span<const ASCIILiteral> builtinSchemesWithUniqueOrigins(); |
| 50 | static Span<const ASCIILiteral> builtinEmptyDocumentSchemes(); |
| 51 | static Span<const ASCIILiteral> builtinCanDisplayOnlyIfCanRequestSchemes(); |
| 52 | static Span<const ASCIILiteral> builtinCORSEnabledSchemes(); |
beidson@apple.com | 124edc8 | 2017-06-02 23:07:08 +0000 | [diff] [blame] | 53 | |
darin@apple.com | 3002e42 | 2021-12-16 16:54:13 +0000 | [diff] [blame] | 54 | using ASCIILiteralSpanFunction = Span<const ASCIILiteral> (*)(); |
darin@apple.com | 9ab51c78 | 2017-07-18 01:53:34 +0000 | [diff] [blame] | 55 | |
darin@apple.com | 3002e42 | 2021-12-16 16:54:13 +0000 | [diff] [blame] | 56 | static void add(URLSchemesMap& set, ASCIILiteralSpanFunction function) |
darin@apple.com | 9ab51c78 | 2017-07-18 01:53:34 +0000 | [diff] [blame] | 57 | { |
| 58 | for (auto& scheme : function()) |
| 59 | set.add(scheme); |
| 60 | } |
| 61 | |
darin@apple.com | 3002e42 | 2021-12-16 16:54:13 +0000 | [diff] [blame] | 62 | static NeverDestroyed<URLSchemesMap> makeNeverDestroyedSchemeSet(ASCIILiteralSpanFunction function) |
darin@apple.com | 9ab51c78 | 2017-07-18 01:53:34 +0000 | [diff] [blame] | 63 | { |
| 64 | URLSchemesMap set; |
| 65 | add(set, function); |
| 66 | return set; |
| 67 | } |
| 68 | |
cdumez@apple.com | 7d2da83 | 2021-05-24 18:29:01 +0000 | [diff] [blame] | 69 | static Lock schemeRegistryLock; |
cdumez@apple.com | 90747ed | 2018-04-03 16:26:47 +0000 | [diff] [blame] | 70 | |
beidson@apple.com | 124edc8 | 2017-06-02 23:07:08 +0000 | [diff] [blame] | 71 | static const URLSchemesMap& allBuiltinSchemes() |
| 72 | { |
darin@apple.com | 3002e42 | 2021-12-16 16:54:13 +0000 | [diff] [blame] | 73 | static NeverDestroyed schemes = [] { |
| 74 | static constexpr ASCIILiteralSpanFunction functions[] { |
darin@apple.com | 9ab51c78 | 2017-07-18 01:53:34 +0000 | [diff] [blame] | 75 | builtinSecureSchemes, |
| 76 | builtinSchemesWithUniqueOrigins, |
| 77 | builtinEmptyDocumentSchemes, |
| 78 | builtinCanDisplayOnlyIfCanRequestSchemes, |
| 79 | builtinCORSEnabledSchemes, |
| 80 | }; |
beidson@apple.com | 124edc8 | 2017-06-02 23:07:08 +0000 | [diff] [blame] | 81 | |
achristensen@apple.com | d40fd88 | 2019-10-04 19:30:08 +0000 | [diff] [blame] | 82 | // Other misc schemes that the LegacySchemeRegistry doesn't know about. |
cdumez@apple.com | ec2f508 | 2022-03-28 21:20:09 +0000 | [diff] [blame] | 83 | static constexpr ASCIILiteral otherSchemes[] = { |
| 84 | "webkit-fake-url"_s, |
beidson@apple.com | 124edc8 | 2017-06-02 23:07:08 +0000 | [diff] [blame] | 85 | #if PLATFORM(MAC) |
cdumez@apple.com | ec2f508 | 2022-03-28 21:20:09 +0000 | [diff] [blame] | 86 | "safari-extension"_s, |
beidson@apple.com | 124edc8 | 2017-06-02 23:07:08 +0000 | [diff] [blame] | 87 | #endif |
| 88 | #if USE(QUICK_LOOK) |
timothy_horton@apple.com | 3bd954b | 2018-05-18 08:11:17 +0000 | [diff] [blame] | 89 | QLPreviewProtocol, |
beidson@apple.com | 124edc8 | 2017-06-02 23:07:08 +0000 | [diff] [blame] | 90 | #endif |
| 91 | #if ENABLE(CONTENT_FILTERING) |
darin@apple.com | 9ab51c78 | 2017-07-18 01:53:34 +0000 | [diff] [blame] | 92 | ContentFilter::urlScheme(), |
beidson@apple.com | 124edc8 | 2017-06-02 23:07:08 +0000 | [diff] [blame] | 93 | #endif |
darin@apple.com | 9ab51c78 | 2017-07-18 01:53:34 +0000 | [diff] [blame] | 94 | }; |
beidson@apple.com | 124edc8 | 2017-06-02 23:07:08 +0000 | [diff] [blame] | 95 | |
darin@apple.com | 9ab51c78 | 2017-07-18 01:53:34 +0000 | [diff] [blame] | 96 | URLSchemesMap set; |
cdumez@apple.com | 90747ed | 2018-04-03 16:26:47 +0000 | [diff] [blame] | 97 | { |
cdumez@apple.com | 40a10c8 | 2021-05-21 20:19:46 +0000 | [diff] [blame] | 98 | Locker locker { schemeRegistryLock }; |
cdumez@apple.com | 90747ed | 2018-04-03 16:26:47 +0000 | [diff] [blame] | 99 | for (auto& scheme : builtinLocalURLSchemes()) |
| 100 | set.add(scheme); |
cdumez@apple.com | 90747ed | 2018-04-03 16:26:47 +0000 | [diff] [blame] | 101 | } |
darin@apple.com | 3002e42 | 2021-12-16 16:54:13 +0000 | [diff] [blame] | 102 | for (auto& function : functions) |
| 103 | add(set, function); |
darin@apple.com | 9ab51c78 | 2017-07-18 01:53:34 +0000 | [diff] [blame] | 104 | for (auto& scheme : otherSchemes) |
| 105 | set.add(scheme); |
| 106 | return set; |
darin@apple.com | 3002e42 | 2021-12-16 16:54:13 +0000 | [diff] [blame] | 107 | }(); |
beidson@apple.com | 124edc8 | 2017-06-02 23:07:08 +0000 | [diff] [blame] | 108 | return schemes; |
| 109 | } |
| 110 | |
cdumez@apple.com | 40a10c8 | 2021-05-21 20:19:46 +0000 | [diff] [blame] | 111 | static const URLSchemesMap& builtinLocalURLSchemes() WTF_REQUIRES_LOCK(schemeRegistryLock) |
beidson@apple.com | 124edc8 | 2017-06-02 23:07:08 +0000 | [diff] [blame] | 112 | { |
utatane.tea@gmail.com | f173ce5 | 2018-07-29 18:13:28 +0000 | [diff] [blame] | 113 | ASSERT(schemeRegistryLock.isHeld()); |
darin@apple.com | 3002e42 | 2021-12-16 16:54:13 +0000 | [diff] [blame] | 114 | static NeverDestroyed schemes = URLSchemesMap { |
ysuzuki@apple.com | 5a2c365 | 2021-04-06 00:09:31 +0000 | [diff] [blame] | 115 | "file"_s, |
beidson@apple.com | 124edc8 | 2017-06-02 23:07:08 +0000 | [diff] [blame] | 116 | #if PLATFORM(COCOA) |
ysuzuki@apple.com | 5a2c365 | 2021-04-06 00:09:31 +0000 | [diff] [blame] | 117 | "applewebdata"_s, |
beidson@apple.com | 124edc8 | 2017-06-02 23:07:08 +0000 | [diff] [blame] | 118 | #endif |
darin@apple.com | 3002e42 | 2021-12-16 16:54:13 +0000 | [diff] [blame] | 119 | }; |
beidson@apple.com | 124edc8 | 2017-06-02 23:07:08 +0000 | [diff] [blame] | 120 | return schemes; |
| 121 | } |
| 122 | |
cdumez@apple.com | 40a10c8 | 2021-05-21 20:19:46 +0000 | [diff] [blame] | 123 | static URLSchemesMap& localURLSchemes() WTF_REQUIRES_LOCK(schemeRegistryLock) |
beidson@apple.com | c7fe45f | 2010-07-21 23:19:55 +0000 | [diff] [blame] | 124 | { |
utatane.tea@gmail.com | f173ce5 | 2018-07-29 18:13:28 +0000 | [diff] [blame] | 125 | ASSERT(schemeRegistryLock.isHeld()); |
darin@apple.com | 9ab51c78 | 2017-07-18 01:53:34 +0000 | [diff] [blame] | 126 | static NeverDestroyed<URLSchemesMap> localSchemes = builtinLocalURLSchemes(); |
beidson@apple.com | c7fe45f | 2010-07-21 23:19:55 +0000 | [diff] [blame] | 127 | return localSchemes; |
| 128 | } |
| 129 | |
cdumez@apple.com | 40a10c8 | 2021-05-21 20:19:46 +0000 | [diff] [blame] | 130 | static URLSchemesMap& displayIsolatedURLSchemes() WTF_REQUIRES_LOCK(schemeRegistryLock) |
abarth@webkit.org | c655f68 | 2011-01-11 01:02:01 +0000 | [diff] [blame] | 131 | { |
utatane.tea@gmail.com | f173ce5 | 2018-07-29 18:13:28 +0000 | [diff] [blame] | 132 | ASSERT(schemeRegistryLock.isHeld()); |
akling@apple.com | ee1218c | 2016-01-09 13:13:41 +0000 | [diff] [blame] | 133 | static NeverDestroyed<URLSchemesMap> displayIsolatedSchemes; |
abarth@webkit.org | c655f68 | 2011-01-11 01:02:01 +0000 | [diff] [blame] | 134 | return displayIsolatedSchemes; |
| 135 | } |
| 136 | |
darin@apple.com | 3002e42 | 2021-12-16 16:54:13 +0000 | [diff] [blame] | 137 | static Span<const ASCIILiteral> builtinSecureSchemes() |
beidson@apple.com | 124edc8 | 2017-06-02 23:07:08 +0000 | [diff] [blame] | 138 | { |
darin@apple.com | 3002e42 | 2021-12-16 16:54:13 +0000 | [diff] [blame] | 139 | static constexpr std::array schemes { |
ysuzuki@apple.com | 5a2c365 | 2021-04-06 00:09:31 +0000 | [diff] [blame] | 140 | "https"_s, |
| 141 | "about"_s, |
| 142 | "data"_s, |
| 143 | "wss"_s, |
beidson@apple.com | 124edc8 | 2017-06-02 23:07:08 +0000 | [diff] [blame] | 144 | #if PLATFORM(GTK) || PLATFORM(WPE) |
ysuzuki@apple.com | 5a2c365 | 2021-04-06 00:09:31 +0000 | [diff] [blame] | 145 | "resource"_s, |
beidson@apple.com | 124edc8 | 2017-06-02 23:07:08 +0000 | [diff] [blame] | 146 | #endif |
carlosgc@webkit.org | 0589263 | 2022-03-18 08:35:25 +0000 | [diff] [blame] | 147 | #if ENABLE(PDFJS) |
ntim@apple.com | cbe1445 | 2022-02-10 17:49:26 +0000 | [diff] [blame] | 148 | "webkit-pdfjs-viewer"_s, |
| 149 | #endif |
darin@apple.com | 3002e42 | 2021-12-16 16:54:13 +0000 | [diff] [blame] | 150 | }; |
beidson@apple.com | 124edc8 | 2017-06-02 23:07:08 +0000 | [diff] [blame] | 151 | return schemes; |
| 152 | } |
| 153 | |
cdumez@apple.com | 40a10c8 | 2021-05-21 20:19:46 +0000 | [diff] [blame] | 154 | static URLSchemesMap& secureSchemes() WTF_REQUIRES_LOCK(schemeRegistryLock) |
beidson@apple.com | c7fe45f | 2010-07-21 23:19:55 +0000 | [diff] [blame] | 155 | { |
utatane.tea@gmail.com | f173ce5 | 2018-07-29 18:13:28 +0000 | [diff] [blame] | 156 | ASSERT(schemeRegistryLock.isHeld()); |
darin@apple.com | 9ab51c78 | 2017-07-18 01:53:34 +0000 | [diff] [blame] | 157 | static auto secureSchemes = makeNeverDestroyedSchemeSet(builtinSecureSchemes); |
beidson@apple.com | c7fe45f | 2010-07-21 23:19:55 +0000 | [diff] [blame] | 158 | return secureSchemes; |
| 159 | } |
| 160 | |
darin@apple.com | 3002e42 | 2021-12-16 16:54:13 +0000 | [diff] [blame] | 161 | static Span<const ASCIILiteral> builtinSchemesWithUniqueOrigins() |
beidson@apple.com | 124edc8 | 2017-06-02 23:07:08 +0000 | [diff] [blame] | 162 | { |
darin@apple.com | 3002e42 | 2021-12-16 16:54:13 +0000 | [diff] [blame] | 163 | static constexpr std::array schemes { |
ysuzuki@apple.com | 5a2c365 | 2021-04-06 00:09:31 +0000 | [diff] [blame] | 164 | "about"_s, |
| 165 | "javascript"_s, |
darin@apple.com | 9ab51c78 | 2017-07-18 01:53:34 +0000 | [diff] [blame] | 166 | // This is an intentional difference from the behavior the HTML specification calls for. |
beidson@apple.com | 124edc8 | 2017-06-02 23:07:08 +0000 | [diff] [blame] | 167 | // See https://bugs.webkit.org/show_bug.cgi?id=11885 |
ysuzuki@apple.com | 5a2c365 | 2021-04-06 00:09:31 +0000 | [diff] [blame] | 168 | "data"_s, |
darin@apple.com | 3002e42 | 2021-12-16 16:54:13 +0000 | [diff] [blame] | 169 | }; |
beidson@apple.com | 124edc8 | 2017-06-02 23:07:08 +0000 | [diff] [blame] | 170 | return schemes; |
| 171 | } |
| 172 | |
cdumez@apple.com | 40a10c8 | 2021-05-21 20:19:46 +0000 | [diff] [blame] | 173 | static URLSchemesMap& schemesWithUniqueOrigins() WTF_REQUIRES_LOCK(schemeRegistryLock) |
beidson@apple.com | c7fe45f | 2010-07-21 23:19:55 +0000 | [diff] [blame] | 174 | { |
utatane.tea@gmail.com | f173ce5 | 2018-07-29 18:13:28 +0000 | [diff] [blame] | 175 | ASSERT(schemeRegistryLock.isHeld()); |
darin@apple.com | 9ab51c78 | 2017-07-18 01:53:34 +0000 | [diff] [blame] | 176 | static auto schemesWithUniqueOrigins = makeNeverDestroyedSchemeSet(builtinSchemesWithUniqueOrigins); |
beidson@apple.com | c7fe45f | 2010-07-21 23:19:55 +0000 | [diff] [blame] | 177 | return schemesWithUniqueOrigins; |
| 178 | } |
| 179 | |
darin@apple.com | 3002e42 | 2021-12-16 16:54:13 +0000 | [diff] [blame] | 180 | static Span<const ASCIILiteral> builtinEmptyDocumentSchemes() |
beidson@apple.com | 124edc8 | 2017-06-02 23:07:08 +0000 | [diff] [blame] | 181 | { |
darin@apple.com | 3002e42 | 2021-12-16 16:54:13 +0000 | [diff] [blame] | 182 | static constexpr std::array schemes { "about"_s }; |
beidson@apple.com | 124edc8 | 2017-06-02 23:07:08 +0000 | [diff] [blame] | 183 | return schemes; |
| 184 | } |
| 185 | |
beidson@apple.com | 5c1fdf1 | 2010-07-26 20:37:56 +0000 | [diff] [blame] | 186 | static URLSchemesMap& emptyDocumentSchemes() |
| 187 | { |
cdumez@apple.com | 90747ed | 2018-04-03 16:26:47 +0000 | [diff] [blame] | 188 | ASSERT(isMainThread()); |
darin@apple.com | 9ab51c78 | 2017-07-18 01:53:34 +0000 | [diff] [blame] | 189 | static auto emptyDocumentSchemes = makeNeverDestroyedSchemeSet(builtinEmptyDocumentSchemes); |
beidson@apple.com | 5c1fdf1 | 2010-07-26 20:37:56 +0000 | [diff] [blame] | 190 | return emptyDocumentSchemes; |
| 191 | } |
| 192 | |
darin@apple.com | 9ab51c78 | 2017-07-18 01:53:34 +0000 | [diff] [blame] | 193 | static URLSchemesMap& schemesForbiddenFromDomainRelaxation() |
abarth@webkit.org | 8e056b0 | 2011-11-08 01:37:47 +0000 | [diff] [blame] | 194 | { |
cdumez@apple.com | 90747ed | 2018-04-03 16:26:47 +0000 | [diff] [blame] | 195 | ASSERT(isMainThread()); |
darin@apple.com | 9ab51c78 | 2017-07-18 01:53:34 +0000 | [diff] [blame] | 196 | static NeverDestroyed<URLSchemesMap> schemes; |
abarth@webkit.org | 8e056b0 | 2011-11-08 01:37:47 +0000 | [diff] [blame] | 197 | return schemes; |
| 198 | } |
| 199 | |
darin@apple.com | 3002e42 | 2021-12-16 16:54:13 +0000 | [diff] [blame] | 200 | static Span<const ASCIILiteral> builtinCanDisplayOnlyIfCanRequestSchemes() |
beidson@apple.com | 124edc8 | 2017-06-02 23:07:08 +0000 | [diff] [blame] | 201 | { |
darin@apple.com | 3002e42 | 2021-12-16 16:54:13 +0000 | [diff] [blame] | 202 | static constexpr std::array schemes { "blob"_s }; |
beidson@apple.com | 124edc8 | 2017-06-02 23:07:08 +0000 | [diff] [blame] | 203 | return schemes; |
| 204 | } |
| 205 | |
cdumez@apple.com | 40a10c8 | 2021-05-21 20:19:46 +0000 | [diff] [blame] | 206 | static URLSchemesMap& canDisplayOnlyIfCanRequestSchemes() WTF_REQUIRES_LOCK(schemeRegistryLock) |
commit-queue@webkit.org | 3b8fac5 | 2011-02-11 21:39:04 +0000 | [diff] [blame] | 207 | { |
achristensen@apple.com | 7f04df0 | 2019-10-28 17:53:56 +0000 | [diff] [blame] | 208 | ASSERT(!isInNetworkProcess()); |
utatane.tea@gmail.com | f173ce5 | 2018-07-29 18:13:28 +0000 | [diff] [blame] | 209 | ASSERT(schemeRegistryLock.isHeld()); |
darin@apple.com | 9ab51c78 | 2017-07-18 01:53:34 +0000 | [diff] [blame] | 210 | static auto canDisplayOnlyIfCanRequestSchemes = makeNeverDestroyedSchemeSet(builtinCanDisplayOnlyIfCanRequestSchemes); |
commit-queue@webkit.org | 3b8fac5 | 2011-02-11 21:39:04 +0000 | [diff] [blame] | 211 | return canDisplayOnlyIfCanRequestSchemes; |
| 212 | } |
| 213 | |
commit-queue@webkit.org | 54a0b04 | 2011-08-24 21:06:43 +0000 | [diff] [blame] | 214 | static URLSchemesMap& notAllowingJavascriptURLsSchemes() |
| 215 | { |
cdumez@apple.com | 90747ed | 2018-04-03 16:26:47 +0000 | [diff] [blame] | 216 | ASSERT(isMainThread()); |
akling@apple.com | ee1218c | 2016-01-09 13:13:41 +0000 | [diff] [blame] | 217 | static NeverDestroyed<URLSchemesMap> notAllowingJavascriptURLsSchemes; |
commit-queue@webkit.org | 54a0b04 | 2011-08-24 21:06:43 +0000 | [diff] [blame] | 218 | return notAllowingJavascriptURLsSchemes; |
| 219 | } |
| 220 | |
achristensen@apple.com | d40fd88 | 2019-10-04 19:30:08 +0000 | [diff] [blame] | 221 | void LegacySchemeRegistry::registerURLSchemeAsLocal(const String& scheme) |
beidson@apple.com | c7fe45f | 2010-07-21 23:19:55 +0000 | [diff] [blame] | 222 | { |
cdumez@apple.com | 6c77ab3 | 2018-02-24 06:36:07 +0000 | [diff] [blame] | 223 | if (scheme.isNull()) |
| 224 | return; |
| 225 | |
cdumez@apple.com | 40a10c8 | 2021-05-21 20:19:46 +0000 | [diff] [blame] | 226 | Locker locker { schemeRegistryLock }; |
abarth@webkit.org | c655f68 | 2011-01-11 01:02:01 +0000 | [diff] [blame] | 227 | localURLSchemes().add(scheme); |
beidson@apple.com | c7fe45f | 2010-07-21 23:19:55 +0000 | [diff] [blame] | 228 | } |
| 229 | |
achristensen@apple.com | d40fd88 | 2019-10-04 19:30:08 +0000 | [diff] [blame] | 230 | void LegacySchemeRegistry::removeURLSchemeRegisteredAsLocal(const String& scheme) |
beidson@apple.com | c7fe45f | 2010-07-21 23:19:55 +0000 | [diff] [blame] | 231 | { |
cdumez@apple.com | 40a10c8 | 2021-05-21 20:19:46 +0000 | [diff] [blame] | 232 | Locker locker { schemeRegistryLock }; |
beidson@apple.com | 124edc8 | 2017-06-02 23:07:08 +0000 | [diff] [blame] | 233 | if (builtinLocalURLSchemes().contains(scheme)) |
beidson@apple.com | c7fe45f | 2010-07-21 23:19:55 +0000 | [diff] [blame] | 234 | return; |
beidson@apple.com | 124edc8 | 2017-06-02 23:07:08 +0000 | [diff] [blame] | 235 | |
abarth@webkit.org | c655f68 | 2011-01-11 01:02:01 +0000 | [diff] [blame] | 236 | localURLSchemes().remove(scheme); |
beidson@apple.com | c7fe45f | 2010-07-21 23:19:55 +0000 | [diff] [blame] | 237 | } |
| 238 | |
cdumez@apple.com | ea5b153 | 2022-04-21 23:27:38 +0000 | [diff] [blame] | 239 | static MemoryCompactRobinHoodHashSet<String>& schemesHandledBySchemeHandler() WTF_REQUIRES_LOCK(schemeRegistryLock) |
commit-queue@webkit.org | ec4ceec | 2021-02-07 06:02:35 +0000 | [diff] [blame] | 240 | { |
| 241 | ASSERT(schemeRegistryLock.isHeld()); |
cdumez@apple.com | ea5b153 | 2022-04-21 23:27:38 +0000 | [diff] [blame] | 242 | static NeverDestroyed<MemoryCompactRobinHoodHashSet<String>> set; |
commit-queue@webkit.org | ec4ceec | 2021-02-07 06:02:35 +0000 | [diff] [blame] | 243 | return set.get(); |
| 244 | } |
| 245 | |
| 246 | void LegacySchemeRegistry::registerURLSchemeAsHandledBySchemeHandler(const String& scheme) |
| 247 | { |
cdumez@apple.com | 40a10c8 | 2021-05-21 20:19:46 +0000 | [diff] [blame] | 248 | Locker locker { schemeRegistryLock }; |
commit-queue@webkit.org | ec4ceec | 2021-02-07 06:02:35 +0000 | [diff] [blame] | 249 | schemesHandledBySchemeHandler().add(scheme); |
| 250 | } |
| 251 | |
| 252 | bool LegacySchemeRegistry::schemeIsHandledBySchemeHandler(StringView scheme) |
| 253 | { |
cdumez@apple.com | 40a10c8 | 2021-05-21 20:19:46 +0000 | [diff] [blame] | 254 | Locker locker { schemeRegistryLock }; |
cdumez@apple.com | 9f22091 | 2022-04-06 17:48:44 +0000 | [diff] [blame] | 255 | return schemesHandledBySchemeHandler().contains<StringViewHashTranslator>(scheme); |
commit-queue@webkit.org | ec4ceec | 2021-02-07 06:02:35 +0000 | [diff] [blame] | 256 | } |
| 257 | |
jberlin@webkit.org | da2af49 | 2011-11-07 18:16:33 +0000 | [diff] [blame] | 258 | static URLSchemesMap& schemesAllowingDatabaseAccessInPrivateBrowsing() |
| 259 | { |
cdumez@apple.com | 90747ed | 2018-04-03 16:26:47 +0000 | [diff] [blame] | 260 | ASSERT(isMainThread()); |
akling@apple.com | ee1218c | 2016-01-09 13:13:41 +0000 | [diff] [blame] | 261 | static NeverDestroyed<URLSchemesMap> schemesAllowingDatabaseAccessInPrivateBrowsing; |
jberlin@webkit.org | da2af49 | 2011-11-07 18:16:33 +0000 | [diff] [blame] | 262 | return schemesAllowingDatabaseAccessInPrivateBrowsing; |
| 263 | } |
| 264 | |
darin@apple.com | 3002e42 | 2021-12-16 16:54:13 +0000 | [diff] [blame] | 265 | static Span<const ASCIILiteral> builtinCORSEnabledSchemes() |
beidson@apple.com | 124edc8 | 2017-06-02 23:07:08 +0000 | [diff] [blame] | 266 | { |
darin@apple.com | 3002e42 | 2021-12-16 16:54:13 +0000 | [diff] [blame] | 267 | static constexpr std::array schemes { "http"_s, "https"_s }; |
beidson@apple.com | 124edc8 | 2017-06-02 23:07:08 +0000 | [diff] [blame] | 268 | return schemes; |
| 269 | } |
| 270 | |
cdn@chromium.org | 7696652 | 2012-01-26 23:50:31 +0000 | [diff] [blame] | 271 | static URLSchemesMap& CORSEnabledSchemes() |
| 272 | { |
cdumez@apple.com | 90747ed | 2018-04-03 16:26:47 +0000 | [diff] [blame] | 273 | ASSERT(isMainThread()); |
commit-queue@webkit.org | 8bdba9b | 2012-03-09 00:41:22 +0000 | [diff] [blame] | 274 | // FIXME: http://bugs.webkit.org/show_bug.cgi?id=77160 |
darin@apple.com | 9ab51c78 | 2017-07-18 01:53:34 +0000 | [diff] [blame] | 275 | static auto schemes = makeNeverDestroyedSchemeSet(builtinCORSEnabledSchemes); |
| 276 | return schemes; |
cdn@chromium.org | 7696652 | 2012-01-26 23:50:31 +0000 | [diff] [blame] | 277 | } |
| 278 | |
cdumez@apple.com | 40a10c8 | 2021-05-21 20:19:46 +0000 | [diff] [blame] | 279 | static URLSchemesMap& ContentSecurityPolicyBypassingSchemes() WTF_REQUIRES_LOCK(schemeRegistryLock) |
commit-queue@webkit.org | 828d239 | 2012-06-19 07:27:33 +0000 | [diff] [blame] | 280 | { |
utatane.tea@gmail.com | f173ce5 | 2018-07-29 18:13:28 +0000 | [diff] [blame] | 281 | ASSERT(schemeRegistryLock.isHeld()); |
akling@apple.com | ee1218c | 2016-01-09 13:13:41 +0000 | [diff] [blame] | 282 | static NeverDestroyed<URLSchemesMap> schemes; |
commit-queue@webkit.org | 828d239 | 2012-06-19 07:27:33 +0000 | [diff] [blame] | 283 | return schemes; |
| 284 | } |
| 285 | |
cdumez@apple.com | 40a10c8 | 2021-05-21 20:19:46 +0000 | [diff] [blame] | 286 | static URLSchemesMap& cachePartitioningSchemes() WTF_REQUIRES_LOCK(schemeRegistryLock) |
jpfau@apple.com | 39bf85f | 2014-01-30 23:02:39 +0000 | [diff] [blame] | 287 | { |
utatane.tea@gmail.com | f173ce5 | 2018-07-29 18:13:28 +0000 | [diff] [blame] | 288 | ASSERT(schemeRegistryLock.isHeld()); |
jpfau@apple.com | 39bf85f | 2014-01-30 23:02:39 +0000 | [diff] [blame] | 289 | static NeverDestroyed<URLSchemesMap> schemes; |
| 290 | return schemes; |
| 291 | } |
jpfau@apple.com | 39bf85f | 2014-01-30 23:02:39 +0000 | [diff] [blame] | 292 | |
aestes@apple.com | c9b9cb0 | 2016-01-12 02:12:37 +0000 | [diff] [blame] | 293 | static URLSchemesMap& alwaysRevalidatedSchemes() |
| 294 | { |
cdumez@apple.com | 90747ed | 2018-04-03 16:26:47 +0000 | [diff] [blame] | 295 | ASSERT(isMainThread()); |
aestes@apple.com | c9b9cb0 | 2016-01-12 02:12:37 +0000 | [diff] [blame] | 296 | static NeverDestroyed<URLSchemesMap> schemes; |
| 297 | return schemes; |
| 298 | } |
| 299 | |
cdumez@apple.com | 9f22091 | 2022-04-06 17:48:44 +0000 | [diff] [blame] | 300 | bool LegacySchemeRegistry::shouldTreatURLSchemeAsLocal(StringView scheme) |
beidson@apple.com | c7fe45f | 2010-07-21 23:19:55 +0000 | [diff] [blame] | 301 | { |
cdumez@apple.com | 6c77ab3 | 2018-02-24 06:36:07 +0000 | [diff] [blame] | 302 | if (scheme.isNull()) |
| 303 | return false; |
| 304 | |
cdumez@apple.com | 40a10c8 | 2021-05-21 20:19:46 +0000 | [diff] [blame] | 305 | Locker locker { schemeRegistryLock }; |
cdumez@apple.com | 9f22091 | 2022-04-06 17:48:44 +0000 | [diff] [blame] | 306 | return localURLSchemes().contains<StringViewHashTranslator>(scheme); |
beidson@apple.com | c7fe45f | 2010-07-21 23:19:55 +0000 | [diff] [blame] | 307 | } |
| 308 | |
achristensen@apple.com | d40fd88 | 2019-10-04 19:30:08 +0000 | [diff] [blame] | 309 | void LegacySchemeRegistry::registerURLSchemeAsNoAccess(const String& scheme) |
beidson@apple.com | c7fe45f | 2010-07-21 23:19:55 +0000 | [diff] [blame] | 310 | { |
darin@apple.com | 9ab51c78 | 2017-07-18 01:53:34 +0000 | [diff] [blame] | 311 | if (scheme.isNull()) |
| 312 | return; |
cdumez@apple.com | 90747ed | 2018-04-03 16:26:47 +0000 | [diff] [blame] | 313 | |
cdumez@apple.com | 40a10c8 | 2021-05-21 20:19:46 +0000 | [diff] [blame] | 314 | Locker locker { schemeRegistryLock }; |
beidson@apple.com | c7fe45f | 2010-07-21 23:19:55 +0000 | [diff] [blame] | 315 | schemesWithUniqueOrigins().add(scheme); |
| 316 | } |
| 317 | |
cdumez@apple.com | 9f22091 | 2022-04-06 17:48:44 +0000 | [diff] [blame] | 318 | bool LegacySchemeRegistry::shouldTreatURLSchemeAsNoAccess(StringView scheme) |
beidson@apple.com | c7fe45f | 2010-07-21 23:19:55 +0000 | [diff] [blame] | 319 | { |
cdumez@apple.com | 90747ed | 2018-04-03 16:26:47 +0000 | [diff] [blame] | 320 | if (scheme.isNull()) |
| 321 | return false; |
| 322 | |
cdumez@apple.com | 40a10c8 | 2021-05-21 20:19:46 +0000 | [diff] [blame] | 323 | Locker locker { schemeRegistryLock }; |
cdumez@apple.com | 9f22091 | 2022-04-06 17:48:44 +0000 | [diff] [blame] | 324 | return schemesWithUniqueOrigins().contains<StringViewHashTranslator>(scheme); |
beidson@apple.com | c7fe45f | 2010-07-21 23:19:55 +0000 | [diff] [blame] | 325 | } |
| 326 | |
achristensen@apple.com | d40fd88 | 2019-10-04 19:30:08 +0000 | [diff] [blame] | 327 | void LegacySchemeRegistry::registerURLSchemeAsDisplayIsolated(const String& scheme) |
abarth@webkit.org | c655f68 | 2011-01-11 01:02:01 +0000 | [diff] [blame] | 328 | { |
darin@apple.com | 9ab51c78 | 2017-07-18 01:53:34 +0000 | [diff] [blame] | 329 | if (scheme.isNull()) |
| 330 | return; |
cdumez@apple.com | 90747ed | 2018-04-03 16:26:47 +0000 | [diff] [blame] | 331 | |
cdumez@apple.com | 40a10c8 | 2021-05-21 20:19:46 +0000 | [diff] [blame] | 332 | Locker locker { schemeRegistryLock }; |
abarth@webkit.org | c655f68 | 2011-01-11 01:02:01 +0000 | [diff] [blame] | 333 | displayIsolatedURLSchemes().add(scheme); |
| 334 | } |
| 335 | |
cdumez@apple.com | 9f22091 | 2022-04-06 17:48:44 +0000 | [diff] [blame] | 336 | bool LegacySchemeRegistry::shouldTreatURLSchemeAsDisplayIsolated(StringView scheme) |
abarth@webkit.org | c655f68 | 2011-01-11 01:02:01 +0000 | [diff] [blame] | 337 | { |
cdumez@apple.com | 90747ed | 2018-04-03 16:26:47 +0000 | [diff] [blame] | 338 | if (scheme.isNull()) |
| 339 | return false; |
| 340 | |
cdumez@apple.com | 40a10c8 | 2021-05-21 20:19:46 +0000 | [diff] [blame] | 341 | Locker locker { schemeRegistryLock }; |
cdumez@apple.com | 9f22091 | 2022-04-06 17:48:44 +0000 | [diff] [blame] | 342 | return displayIsolatedURLSchemes().contains<StringViewHashTranslator>(scheme); |
abarth@webkit.org | c655f68 | 2011-01-11 01:02:01 +0000 | [diff] [blame] | 343 | } |
| 344 | |
achristensen@apple.com | d40fd88 | 2019-10-04 19:30:08 +0000 | [diff] [blame] | 345 | void LegacySchemeRegistry::registerURLSchemeAsSecure(const String& scheme) |
beidson@apple.com | c7fe45f | 2010-07-21 23:19:55 +0000 | [diff] [blame] | 346 | { |
darin@apple.com | 9ab51c78 | 2017-07-18 01:53:34 +0000 | [diff] [blame] | 347 | if (scheme.isNull()) |
| 348 | return; |
cdumez@apple.com | 6c77ab3 | 2018-02-24 06:36:07 +0000 | [diff] [blame] | 349 | |
cdumez@apple.com | 40a10c8 | 2021-05-21 20:19:46 +0000 | [diff] [blame] | 350 | Locker locker { schemeRegistryLock }; |
beidson@apple.com | c7fe45f | 2010-07-21 23:19:55 +0000 | [diff] [blame] | 351 | secureSchemes().add(scheme); |
| 352 | } |
| 353 | |
cdumez@apple.com | 9f22091 | 2022-04-06 17:48:44 +0000 | [diff] [blame] | 354 | bool LegacySchemeRegistry::shouldTreatURLSchemeAsSecure(StringView scheme) |
beidson@apple.com | c7fe45f | 2010-07-21 23:19:55 +0000 | [diff] [blame] | 355 | { |
cdumez@apple.com | 6c77ab3 | 2018-02-24 06:36:07 +0000 | [diff] [blame] | 356 | if (scheme.isNull()) |
| 357 | return false; |
| 358 | |
cdumez@apple.com | 40a10c8 | 2021-05-21 20:19:46 +0000 | [diff] [blame] | 359 | Locker locker { schemeRegistryLock }; |
cdumez@apple.com | 9f22091 | 2022-04-06 17:48:44 +0000 | [diff] [blame] | 360 | return secureSchemes().contains<StringViewHashTranslator>(scheme); |
beidson@apple.com | c7fe45f | 2010-07-21 23:19:55 +0000 | [diff] [blame] | 361 | } |
| 362 | |
achristensen@apple.com | d40fd88 | 2019-10-04 19:30:08 +0000 | [diff] [blame] | 363 | void LegacySchemeRegistry::registerURLSchemeAsEmptyDocument(const String& scheme) |
beidson@apple.com | 5c1fdf1 | 2010-07-26 20:37:56 +0000 | [diff] [blame] | 364 | { |
darin@apple.com | 9ab51c78 | 2017-07-18 01:53:34 +0000 | [diff] [blame] | 365 | if (scheme.isNull()) |
| 366 | return; |
beidson@apple.com | 5c1fdf1 | 2010-07-26 20:37:56 +0000 | [diff] [blame] | 367 | emptyDocumentSchemes().add(scheme); |
| 368 | } |
| 369 | |
cdumez@apple.com | 9f22091 | 2022-04-06 17:48:44 +0000 | [diff] [blame] | 370 | bool LegacySchemeRegistry::shouldLoadURLSchemeAsEmptyDocument(StringView scheme) |
beidson@apple.com | 5c1fdf1 | 2010-07-26 20:37:56 +0000 | [diff] [blame] | 371 | { |
cdumez@apple.com | 9f22091 | 2022-04-06 17:48:44 +0000 | [diff] [blame] | 372 | return !scheme.isNull() && emptyDocumentSchemes().contains<StringViewHashTranslator>(scheme); |
beidson@apple.com | 5c1fdf1 | 2010-07-26 20:37:56 +0000 | [diff] [blame] | 373 | } |
| 374 | |
achristensen@apple.com | d40fd88 | 2019-10-04 19:30:08 +0000 | [diff] [blame] | 375 | void LegacySchemeRegistry::setDomainRelaxationForbiddenForURLScheme(bool forbidden, const String& scheme) |
abarth@webkit.org | 8e056b0 | 2011-11-08 01:37:47 +0000 | [diff] [blame] | 376 | { |
darin@apple.com | 9ab51c78 | 2017-07-18 01:53:34 +0000 | [diff] [blame] | 377 | if (scheme.isNull()) |
abarth@webkit.org | 8e056b0 | 2011-11-08 01:37:47 +0000 | [diff] [blame] | 378 | return; |
| 379 | |
| 380 | if (forbidden) |
| 381 | schemesForbiddenFromDomainRelaxation().add(scheme); |
| 382 | else |
| 383 | schemesForbiddenFromDomainRelaxation().remove(scheme); |
| 384 | } |
| 385 | |
achristensen@apple.com | d40fd88 | 2019-10-04 19:30:08 +0000 | [diff] [blame] | 386 | bool LegacySchemeRegistry::isDomainRelaxationForbiddenForURLScheme(const String& scheme) |
abarth@webkit.org | 8e056b0 | 2011-11-08 01:37:47 +0000 | [diff] [blame] | 387 | { |
darin@apple.com | 9ab51c78 | 2017-07-18 01:53:34 +0000 | [diff] [blame] | 388 | return !scheme.isNull() && schemesForbiddenFromDomainRelaxation().contains(scheme); |
abarth@webkit.org | 8e056b0 | 2011-11-08 01:37:47 +0000 | [diff] [blame] | 389 | } |
| 390 | |
cdumez@apple.com | 9f22091 | 2022-04-06 17:48:44 +0000 | [diff] [blame] | 391 | bool LegacySchemeRegistry::canDisplayOnlyIfCanRequest(StringView scheme) |
commit-queue@webkit.org | 3b8fac5 | 2011-02-11 21:39:04 +0000 | [diff] [blame] | 392 | { |
achristensen@apple.com | 7f04df0 | 2019-10-28 17:53:56 +0000 | [diff] [blame] | 393 | ASSERT(!isInNetworkProcess()); |
cdumez@apple.com | 90747ed | 2018-04-03 16:26:47 +0000 | [diff] [blame] | 394 | if (scheme.isNull()) |
| 395 | return false; |
| 396 | |
cdumez@apple.com | 40a10c8 | 2021-05-21 20:19:46 +0000 | [diff] [blame] | 397 | Locker locker { schemeRegistryLock }; |
cdumez@apple.com | 9f22091 | 2022-04-06 17:48:44 +0000 | [diff] [blame] | 398 | return canDisplayOnlyIfCanRequestSchemes().contains<StringViewHashTranslator>(scheme); |
commit-queue@webkit.org | 3b8fac5 | 2011-02-11 21:39:04 +0000 | [diff] [blame] | 399 | } |
| 400 | |
achristensen@apple.com | d40fd88 | 2019-10-04 19:30:08 +0000 | [diff] [blame] | 401 | void LegacySchemeRegistry::registerAsCanDisplayOnlyIfCanRequest(const String& scheme) |
commit-queue@webkit.org | 3b8fac5 | 2011-02-11 21:39:04 +0000 | [diff] [blame] | 402 | { |
achristensen@apple.com | 7f04df0 | 2019-10-28 17:53:56 +0000 | [diff] [blame] | 403 | ASSERT(!isInNetworkProcess()); |
darin@apple.com | 9ab51c78 | 2017-07-18 01:53:34 +0000 | [diff] [blame] | 404 | if (scheme.isNull()) |
| 405 | return; |
cdumez@apple.com | 90747ed | 2018-04-03 16:26:47 +0000 | [diff] [blame] | 406 | |
cdumez@apple.com | 40a10c8 | 2021-05-21 20:19:46 +0000 | [diff] [blame] | 407 | Locker locker { schemeRegistryLock }; |
commit-queue@webkit.org | 3b8fac5 | 2011-02-11 21:39:04 +0000 | [diff] [blame] | 408 | canDisplayOnlyIfCanRequestSchemes().add(scheme); |
| 409 | } |
| 410 | |
achristensen@apple.com | d40fd88 | 2019-10-04 19:30:08 +0000 | [diff] [blame] | 411 | void LegacySchemeRegistry::registerURLSchemeAsNotAllowingJavascriptURLs(const String& scheme) |
commit-queue@webkit.org | 54a0b04 | 2011-08-24 21:06:43 +0000 | [diff] [blame] | 412 | { |
darin@apple.com | 9ab51c78 | 2017-07-18 01:53:34 +0000 | [diff] [blame] | 413 | if (scheme.isNull()) |
| 414 | return; |
commit-queue@webkit.org | 54a0b04 | 2011-08-24 21:06:43 +0000 | [diff] [blame] | 415 | notAllowingJavascriptURLsSchemes().add(scheme); |
| 416 | } |
| 417 | |
achristensen@apple.com | d40fd88 | 2019-10-04 19:30:08 +0000 | [diff] [blame] | 418 | bool LegacySchemeRegistry::shouldTreatURLSchemeAsNotAllowingJavascriptURLs(const String& scheme) |
commit-queue@webkit.org | 54a0b04 | 2011-08-24 21:06:43 +0000 | [diff] [blame] | 419 | { |
darin@apple.com | 9ab51c78 | 2017-07-18 01:53:34 +0000 | [diff] [blame] | 420 | return !scheme.isNull() && notAllowingJavascriptURLsSchemes().contains(scheme); |
commit-queue@webkit.org | 54a0b04 | 2011-08-24 21:06:43 +0000 | [diff] [blame] | 421 | } |
| 422 | |
achristensen@apple.com | d40fd88 | 2019-10-04 19:30:08 +0000 | [diff] [blame] | 423 | void LegacySchemeRegistry::registerURLSchemeAsAllowingDatabaseAccessInPrivateBrowsing(const String& scheme) |
jberlin@webkit.org | da2af49 | 2011-11-07 18:16:33 +0000 | [diff] [blame] | 424 | { |
darin@apple.com | 9ab51c78 | 2017-07-18 01:53:34 +0000 | [diff] [blame] | 425 | if (scheme.isNull()) |
| 426 | return; |
jberlin@webkit.org | da2af49 | 2011-11-07 18:16:33 +0000 | [diff] [blame] | 427 | schemesAllowingDatabaseAccessInPrivateBrowsing().add(scheme); |
| 428 | } |
| 429 | |
achristensen@apple.com | d40fd88 | 2019-10-04 19:30:08 +0000 | [diff] [blame] | 430 | bool LegacySchemeRegistry::allowsDatabaseAccessInPrivateBrowsing(const String& scheme) |
jberlin@webkit.org | da2af49 | 2011-11-07 18:16:33 +0000 | [diff] [blame] | 431 | { |
darin@apple.com | 9ab51c78 | 2017-07-18 01:53:34 +0000 | [diff] [blame] | 432 | return !scheme.isNull() && schemesAllowingDatabaseAccessInPrivateBrowsing().contains(scheme); |
jberlin@webkit.org | da2af49 | 2011-11-07 18:16:33 +0000 | [diff] [blame] | 433 | } |
| 434 | |
achristensen@apple.com | d40fd88 | 2019-10-04 19:30:08 +0000 | [diff] [blame] | 435 | void LegacySchemeRegistry::registerURLSchemeAsCORSEnabled(const String& scheme) |
cdn@chromium.org | 7696652 | 2012-01-26 23:50:31 +0000 | [diff] [blame] | 436 | { |
achristensen@apple.com | ba97a62 | 2019-10-24 18:50:26 +0000 | [diff] [blame] | 437 | ASSERT(!isInNetworkProcess()); |
darin@apple.com | 9ab51c78 | 2017-07-18 01:53:34 +0000 | [diff] [blame] | 438 | if (scheme.isNull()) |
| 439 | return; |
cdn@chromium.org | 7696652 | 2012-01-26 23:50:31 +0000 | [diff] [blame] | 440 | CORSEnabledSchemes().add(scheme); |
| 441 | } |
| 442 | |
cdumez@apple.com | 9f22091 | 2022-04-06 17:48:44 +0000 | [diff] [blame] | 443 | bool LegacySchemeRegistry::shouldTreatURLSchemeAsCORSEnabled(StringView scheme) |
cdn@chromium.org | 7696652 | 2012-01-26 23:50:31 +0000 | [diff] [blame] | 444 | { |
achristensen@apple.com | ba97a62 | 2019-10-24 18:50:26 +0000 | [diff] [blame] | 445 | ASSERT(!isInNetworkProcess()); |
cdumez@apple.com | 9f22091 | 2022-04-06 17:48:44 +0000 | [diff] [blame] | 446 | return !scheme.isNull() && CORSEnabledSchemes().contains<StringViewHashTranslator>(scheme); |
cdn@chromium.org | 7696652 | 2012-01-26 23:50:31 +0000 | [diff] [blame] | 447 | } |
| 448 | |
achristensen@apple.com | ba97a62 | 2019-10-24 18:50:26 +0000 | [diff] [blame] | 449 | Vector<String> LegacySchemeRegistry::allURLSchemesRegisteredAsCORSEnabled() |
| 450 | { |
| 451 | ASSERT(!isInNetworkProcess()); |
| 452 | return copyToVector(CORSEnabledSchemes()); |
| 453 | } |
| 454 | |
achristensen@apple.com | d40fd88 | 2019-10-04 19:30:08 +0000 | [diff] [blame] | 455 | void LegacySchemeRegistry::registerURLSchemeAsBypassingContentSecurityPolicy(const String& scheme) |
commit-queue@webkit.org | 828d239 | 2012-06-19 07:27:33 +0000 | [diff] [blame] | 456 | { |
darin@apple.com | 9ab51c78 | 2017-07-18 01:53:34 +0000 | [diff] [blame] | 457 | if (scheme.isNull()) |
| 458 | return; |
cdumez@apple.com | 90747ed | 2018-04-03 16:26:47 +0000 | [diff] [blame] | 459 | |
cdumez@apple.com | 40a10c8 | 2021-05-21 20:19:46 +0000 | [diff] [blame] | 460 | Locker locker { schemeRegistryLock }; |
commit-queue@webkit.org | 828d239 | 2012-06-19 07:27:33 +0000 | [diff] [blame] | 461 | ContentSecurityPolicyBypassingSchemes().add(scheme); |
| 462 | } |
| 463 | |
achristensen@apple.com | d40fd88 | 2019-10-04 19:30:08 +0000 | [diff] [blame] | 464 | void LegacySchemeRegistry::removeURLSchemeRegisteredAsBypassingContentSecurityPolicy(const String& scheme) |
commit-queue@webkit.org | 828d239 | 2012-06-19 07:27:33 +0000 | [diff] [blame] | 465 | { |
darin@apple.com | 9ab51c78 | 2017-07-18 01:53:34 +0000 | [diff] [blame] | 466 | if (scheme.isNull()) |
| 467 | return; |
cdumez@apple.com | 90747ed | 2018-04-03 16:26:47 +0000 | [diff] [blame] | 468 | |
cdumez@apple.com | 40a10c8 | 2021-05-21 20:19:46 +0000 | [diff] [blame] | 469 | Locker locker { schemeRegistryLock }; |
commit-queue@webkit.org | 828d239 | 2012-06-19 07:27:33 +0000 | [diff] [blame] | 470 | ContentSecurityPolicyBypassingSchemes().remove(scheme); |
| 471 | } |
| 472 | |
cdumez@apple.com | 9f22091 | 2022-04-06 17:48:44 +0000 | [diff] [blame] | 473 | bool LegacySchemeRegistry::schemeShouldBypassContentSecurityPolicy(StringView scheme) |
commit-queue@webkit.org | 828d239 | 2012-06-19 07:27:33 +0000 | [diff] [blame] | 474 | { |
cdumez@apple.com | 90747ed | 2018-04-03 16:26:47 +0000 | [diff] [blame] | 475 | if (scheme.isNull()) |
| 476 | return false; |
| 477 | |
cdumez@apple.com | 40a10c8 | 2021-05-21 20:19:46 +0000 | [diff] [blame] | 478 | Locker locker { schemeRegistryLock }; |
cdumez@apple.com | 9f22091 | 2022-04-06 17:48:44 +0000 | [diff] [blame] | 479 | return ContentSecurityPolicyBypassingSchemes().contains<StringViewHashTranslator>(scheme); |
commit-queue@webkit.org | 828d239 | 2012-06-19 07:27:33 +0000 | [diff] [blame] | 480 | } |
| 481 | |
achristensen@apple.com | d40fd88 | 2019-10-04 19:30:08 +0000 | [diff] [blame] | 482 | void LegacySchemeRegistry::registerURLSchemeAsAlwaysRevalidated(const String& scheme) |
aestes@apple.com | d90a51a | 2013-05-16 02:54:06 +0000 | [diff] [blame] | 483 | { |
darin@apple.com | 9ab51c78 | 2017-07-18 01:53:34 +0000 | [diff] [blame] | 484 | if (scheme.isNull()) |
| 485 | return; |
aestes@apple.com | c9b9cb0 | 2016-01-12 02:12:37 +0000 | [diff] [blame] | 486 | alwaysRevalidatedSchemes().add(scheme); |
| 487 | } |
| 488 | |
cdumez@apple.com | 9f22091 | 2022-04-06 17:48:44 +0000 | [diff] [blame] | 489 | bool LegacySchemeRegistry::shouldAlwaysRevalidateURLScheme(StringView scheme) |
aestes@apple.com | c9b9cb0 | 2016-01-12 02:12:37 +0000 | [diff] [blame] | 490 | { |
cdumez@apple.com | 9f22091 | 2022-04-06 17:48:44 +0000 | [diff] [blame] | 491 | return !scheme.isNull() && alwaysRevalidatedSchemes().contains<StringViewHashTranslator>(scheme); |
aestes@apple.com | d90a51a | 2013-05-16 02:54:06 +0000 | [diff] [blame] | 492 | } |
| 493 | |
achristensen@apple.com | d40fd88 | 2019-10-04 19:30:08 +0000 | [diff] [blame] | 494 | void LegacySchemeRegistry::registerURLSchemeAsCachePartitioned(const String& scheme) |
jpfau@apple.com | 39bf85f | 2014-01-30 23:02:39 +0000 | [diff] [blame] | 495 | { |
darin@apple.com | 9ab51c78 | 2017-07-18 01:53:34 +0000 | [diff] [blame] | 496 | if (scheme.isNull()) |
| 497 | return; |
cdumez@apple.com | 90747ed | 2018-04-03 16:26:47 +0000 | [diff] [blame] | 498 | |
cdumez@apple.com | 40a10c8 | 2021-05-21 20:19:46 +0000 | [diff] [blame] | 499 | Locker locker { schemeRegistryLock }; |
jpfau@apple.com | 39bf85f | 2014-01-30 23:02:39 +0000 | [diff] [blame] | 500 | cachePartitioningSchemes().add(scheme); |
| 501 | } |
| 502 | |
achristensen@apple.com | d40fd88 | 2019-10-04 19:30:08 +0000 | [diff] [blame] | 503 | bool LegacySchemeRegistry::shouldPartitionCacheForURLScheme(const String& scheme) |
jpfau@apple.com | 39bf85f | 2014-01-30 23:02:39 +0000 | [diff] [blame] | 504 | { |
cdumez@apple.com | 90747ed | 2018-04-03 16:26:47 +0000 | [diff] [blame] | 505 | if (scheme.isNull()) |
| 506 | return false; |
| 507 | |
cdumez@apple.com | 40a10c8 | 2021-05-21 20:19:46 +0000 | [diff] [blame] | 508 | Locker locker { schemeRegistryLock }; |
cdumez@apple.com | 90747ed | 2018-04-03 16:26:47 +0000 | [diff] [blame] | 509 | return cachePartitioningSchemes().contains(scheme); |
jpfau@apple.com | 39bf85f | 2014-01-30 23:02:39 +0000 | [diff] [blame] | 510 | } |
jpfau@apple.com | 39bf85f | 2014-01-30 23:02:39 +0000 | [diff] [blame] | 511 | |
cdumez@apple.com | 9f22091 | 2022-04-06 17:48:44 +0000 | [diff] [blame] | 512 | bool LegacySchemeRegistry::isUserExtensionScheme(StringView scheme) |
commit-queue@webkit.org | 5bd2ba6 | 2017-02-07 00:25:00 +0000 | [diff] [blame] | 513 | { |
achristensen@apple.com | 2170fa4 | 2020-01-02 21:14:02 +0000 | [diff] [blame] | 514 | // FIXME: Remove this once Safari has adopted WKWebViewConfiguration._corsDisablingPatterns |
commit-queue@webkit.org | 5bd2ba6 | 2017-02-07 00:25:00 +0000 | [diff] [blame] | 515 | #if PLATFORM(MAC) |
cdumez@apple.com | 28e0c9c | 2022-06-02 15:51:24 +0000 | [diff] [blame] | 516 | if (scheme == "safari-extension"_s) |
commit-queue@webkit.org | 5bd2ba6 | 2017-02-07 00:25:00 +0000 | [diff] [blame] | 517 | return true; |
darin@apple.com | 9ab51c78 | 2017-07-18 01:53:34 +0000 | [diff] [blame] | 518 | #else |
| 519 | UNUSED_PARAM(scheme); |
commit-queue@webkit.org | 5bd2ba6 | 2017-02-07 00:25:00 +0000 | [diff] [blame] | 520 | #endif |
| 521 | return false; |
| 522 | } |
| 523 | |
achristensen@apple.com | d40fd88 | 2019-10-04 19:30:08 +0000 | [diff] [blame] | 524 | bool LegacySchemeRegistry::isBuiltinScheme(const String& scheme) |
beidson@apple.com | 124edc8 | 2017-06-02 23:07:08 +0000 | [diff] [blame] | 525 | { |
keith_miller@apple.com | bb2f61c | 2018-12-01 03:28:36 +0000 | [diff] [blame] | 526 | return !scheme.isNull() && (allBuiltinSchemes().contains(scheme) || WTF::URLParser::isSpecialScheme(scheme)); |
beidson@apple.com | 124edc8 | 2017-06-02 23:07:08 +0000 | [diff] [blame] | 527 | } |
| 528 | |
abarth@webkit.org | 617ecad | 2012-01-06 00:39:16 +0000 | [diff] [blame] | 529 | } // namespace WebCore |