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
|
/*
* Copyright (C) 2019-2020 Apple Inc. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
* THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
* THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "config.h"
#include "WebCookieJar.h"
#include "NetworkConnectionToWebProcessMessages.h"
#include "NetworkProcessConnection.h"
#include "WebFrame.h"
#include "WebPage.h"
#include "WebProcess.h"
#include <WebCore/Cookie.h>
#include <WebCore/CookieRequestHeaderFieldProxy.h>
#include <WebCore/CookieStoreGetOptions.h>
#include <WebCore/DeprecatedGlobalSettings.h>
#include <WebCore/Document.h>
#include <WebCore/FrameDestructionObserverInlines.h>
#include <WebCore/FrameLoader.h>
#include <WebCore/LocalFrame.h>
#include <WebCore/LocalFrameLoaderClient.h>
#include <WebCore/Page.h>
#include <WebCore/Settings.h>
#include <WebCore/StorageSessionProvider.h>
#include <optional>
#include <wtf/HashSet.h>
#include <wtf/Vector.h>
namespace WebKit {
using namespace WebCore;
class WebStorageSessionProvider : public WebCore::StorageSessionProvider {
// NetworkStorageSessions are accessed only in the NetworkProcess.
WebCore::NetworkStorageSession* storageSession() const final { return nullptr; }
};
WebCookieJar::WebCookieJar()
: WebCore::CookieJar(adoptRef(*new WebStorageSessionProvider)) { }
#if ENABLE(TRACKING_PREVENTION)
static bool shouldBlockCookies(WebFrame* frame, const URL& firstPartyForCookies, const URL& resourceURL, ApplyTrackingPrevention& applyTrackingPreventionInNetworkProcess)
{
if (!WebCore::DeprecatedGlobalSettings::trackingPreventionEnabled())
return false;
RegistrableDomain firstPartyDomain { firstPartyForCookies };
if (firstPartyDomain.isEmpty())
return false;
RegistrableDomain resourceDomain { resourceURL };
if (resourceDomain.isEmpty())
return false;
if (firstPartyDomain == resourceDomain)
return false;
if (frame) {
if (frame->frameLoaderClient()->hasFrameSpecificStorageAccess())
return false;
if (auto* page = frame->page()) {
if (page->hasPageLevelStorageAccess(firstPartyDomain, resourceDomain))
return false;
if (auto* corePage = page->corePage()) {
if (corePage->shouldRelaxThirdPartyCookieBlocking() == WebCore::ShouldRelaxThirdPartyCookieBlocking::Yes)
return false;
}
}
}
// The WebContent process does not have enough information to deal with other policies than ThirdPartyCookieBlockingMode::All so we have to go to the NetworkProcess for all
// other policies and the request may end up getting blocked on NetworkProcess side.
if (WebProcess::singleton().thirdPartyCookieBlockingMode() != ThirdPartyCookieBlockingMode::All) {
applyTrackingPreventionInNetworkProcess = ApplyTrackingPrevention::Yes;
return false;
}
return true;
}
#endif
bool WebCookieJar::isEligibleForCache(WebFrame& frame, const URL& firstPartyForCookies, const URL& resourceURL) const
{
auto* page = frame.page() ? frame.page()->corePage() : nullptr;
if (!page)
return false;
if (!m_cache.isSupported())
return false;
// For now, we only cache cookies for first-party content. Third-party cookie caching is a bit more complicated due to partitioning and storage access.
RegistrableDomain resourceDomain { resourceURL };
if (resourceDomain.isEmpty())
return false;
return frame.isMainFrame() || RegistrableDomain { firstPartyForCookies } == resourceDomain;
}
static WebCore::ShouldRelaxThirdPartyCookieBlocking shouldRelaxThirdPartyCookieBlocking(const WebFrame* frame)
{
if (!frame)
return WebCore::ShouldRelaxThirdPartyCookieBlocking::No;
auto* page = frame->page();
if (!page)
return WebCore::ShouldRelaxThirdPartyCookieBlocking::No;
auto* corePage = page->corePage();
if (!corePage)
return WebCore::ShouldRelaxThirdPartyCookieBlocking::No;
return corePage->shouldRelaxThirdPartyCookieBlocking();
}
String WebCookieJar::cookies(WebCore::Document& document, const URL& url) const
{
auto* webFrame = document.frame() ? WebFrame::fromCoreFrame(*document.frame()) : nullptr;
if (!webFrame || !webFrame->page())
return { };
ApplyTrackingPrevention applyTrackingPreventionInNetworkProcess = ApplyTrackingPrevention::No;
#if ENABLE(TRACKING_PREVENTION)
if (shouldBlockCookies(webFrame, document.firstPartyForCookies(), url, applyTrackingPreventionInNetworkProcess))
return { };
#endif
auto sameSiteInfo = CookieJar::sameSiteInfo(document, IsForDOMCookieAccess::Yes);
auto includeSecureCookies = CookieJar::shouldIncludeSecureCookies(document, url);
auto frameID = webFrame->frameID();
auto pageID = webFrame->page()->identifier();
if (isEligibleForCache(*webFrame, document.firstPartyForCookies(), url))
return m_cache.cookiesForDOM(document.firstPartyForCookies(), sameSiteInfo, url, frameID, pageID, includeSecureCookies);
auto sendResult = WebProcess::singleton().ensureNetworkProcessConnection().connection().sendSync(Messages::NetworkConnectionToWebProcess::CookiesForDOM(document.firstPartyForCookies(), sameSiteInfo, url, frameID, pageID, includeSecureCookies, applyTrackingPreventionInNetworkProcess, shouldRelaxThirdPartyCookieBlocking(webFrame)), 0);
auto [cookieString, secureCookiesAccessed] = sendResult.takeReplyOr(String { }, false);
return cookieString;
}
void WebCookieJar::setCookies(WebCore::Document& document, const URL& url, const String& cookieString)
{
auto* webFrame = document.frame() ? WebFrame::fromCoreFrame(*document.frame()) : nullptr;
if (!webFrame || !webFrame->page())
return;
ApplyTrackingPrevention applyTrackingPreventionInNetworkProcess = ApplyTrackingPrevention::No;
#if ENABLE(TRACKING_PREVENTION)
if (shouldBlockCookies(webFrame, document.firstPartyForCookies(), url, applyTrackingPreventionInNetworkProcess))
return;
#endif
auto sameSiteInfo = CookieJar::sameSiteInfo(document, IsForDOMCookieAccess::Yes);
auto frameID = webFrame->frameID();
auto pageID = webFrame->page()->identifier();
if (isEligibleForCache(*webFrame, document.firstPartyForCookies(), url))
m_cache.setCookiesFromDOM(document.firstPartyForCookies(), sameSiteInfo, url, frameID, pageID, cookieString, shouldRelaxThirdPartyCookieBlocking(webFrame));
WebProcess::singleton().ensureNetworkProcessConnection().connection().send(Messages::NetworkConnectionToWebProcess::SetCookiesFromDOM(document.firstPartyForCookies(), sameSiteInfo, url, frameID, pageID, applyTrackingPreventionInNetworkProcess, cookieString, shouldRelaxThirdPartyCookieBlocking(webFrame)), 0);
}
void WebCookieJar::cookiesAdded(const String& host, Vector<WebCore::Cookie>&& cookies)
{
auto it = m_changeListeners.find(host);
if (it == m_changeListeners.end())
return;
it->value.forEach([&](auto& listener) {
listener.cookiesAdded(host, cookies);
});
}
void WebCookieJar::cookiesDeleted(const String& host, Vector<WebCore::Cookie>&& cookies)
{
auto it = m_changeListeners.find(host);
if (it == m_changeListeners.end())
return;
it->value.forEach([&](auto& listener) {
listener.cookiesDeleted(host, cookies);
});
}
void WebCookieJar::allCookiesDeleted()
{
m_cache.allCookiesDeleted();
}
void WebCookieJar::clearCache()
{
m_cache.clear();
}
void WebCookieJar::clearCacheForHost(const String& host)
{
m_cache.clearForHost(host);
}
bool WebCookieJar::cookiesEnabled(const Document& document) const
{
auto* webFrame = document.frame() ? WebFrame::fromCoreFrame(*document.frame()) : nullptr;
if (!webFrame || !webFrame->page())
return false;
#if ENABLE(TRACKING_PREVENTION)
ApplyTrackingPrevention dummy;
if (shouldBlockCookies(webFrame, document.firstPartyForCookies(), document.cookieURL(), dummy))
return false;
#endif
return WebProcess::singleton().ensureNetworkProcessConnection().cookiesEnabled();
}
std::pair<String, WebCore::SecureCookiesAccessed> WebCookieJar::cookieRequestHeaderFieldValue(const URL& firstParty, const WebCore::SameSiteInfo& sameSiteInfo, const URL& url, std::optional<FrameIdentifier> frameID, std::optional<PageIdentifier> pageID, WebCore::IncludeSecureCookies includeSecureCookies) const
{
ApplyTrackingPrevention applyTrackingPreventionInNetworkProcess = ApplyTrackingPrevention::No;
auto* webFrame = frameID ? WebProcess::singleton().webFrame(*frameID) : nullptr;
#if ENABLE(TRACKING_PREVENTION)
if (shouldBlockCookies(webFrame, firstParty, url, applyTrackingPreventionInNetworkProcess))
return { };
#endif
auto sendResult = WebProcess::singleton().ensureNetworkProcessConnection().connection().sendSync(Messages::NetworkConnectionToWebProcess::CookieRequestHeaderFieldValue(firstParty, sameSiteInfo, url, frameID, pageID, includeSecureCookies, applyTrackingPreventionInNetworkProcess, shouldRelaxThirdPartyCookieBlocking(webFrame)), 0);
if (!sendResult.succeeded())
return { };
auto [cookieString, secureCookiesAccessed] = sendResult.takeReply();
return { cookieString, secureCookiesAccessed ? WebCore::SecureCookiesAccessed::Yes : WebCore::SecureCookiesAccessed::No };
}
bool WebCookieJar::getRawCookies(const WebCore::Document& document, const URL& url, Vector<WebCore::Cookie>& rawCookies) const
{
auto* webFrame = document.frame() ? WebFrame::fromCoreFrame(*document.frame()) : nullptr;
ApplyTrackingPrevention applyTrackingPreventionInNetworkProcess = ApplyTrackingPrevention::No;
#if ENABLE(TRACKING_PREVENTION)
if (shouldBlockCookies(webFrame, document.firstPartyForCookies(), url, applyTrackingPreventionInNetworkProcess))
return { };
#endif
std::optional<FrameIdentifier> frameID = webFrame ? std::make_optional(webFrame->frameID()) : std::nullopt;
std::optional<PageIdentifier> pageID = webFrame && webFrame->page() ? std::make_optional(webFrame->page()->identifier()) : std::nullopt;
auto sendResult = WebProcess::singleton().ensureNetworkProcessConnection().connection().sendSync(Messages::NetworkConnectionToWebProcess::GetRawCookies(document.firstPartyForCookies(), sameSiteInfo(document), url, frameID, pageID, applyTrackingPreventionInNetworkProcess, shouldRelaxThirdPartyCookieBlocking(webFrame)), 0);
if (!sendResult.succeeded())
return false;
std::tie(rawCookies) = sendResult.takeReply();
return true;
}
void WebCookieJar::setRawCookie(const WebCore::Document& document, const Cookie& cookie)
{
WebProcess::singleton().ensureNetworkProcessConnection().connection().send(Messages::NetworkConnectionToWebProcess::SetRawCookie(cookie), 0);
}
void WebCookieJar::deleteCookie(const WebCore::Document& document, const URL& url, const String& cookieName, CompletionHandler<void()>&& completionHandler)
{
WebProcess::singleton().ensureNetworkProcessConnection().connection().sendWithAsyncReply(Messages::NetworkConnectionToWebProcess::DeleteCookie(url, cookieName), WTFMove(completionHandler));
}
void WebCookieJar::getCookiesAsync(WebCore::Document& document, const URL& url, const WebCore::CookieStoreGetOptions& options, CompletionHandler<void(std::optional<Vector<WebCore::Cookie>>&&)>&& completionHandler) const
{
auto* webFrame = document.frame() ? WebFrame::fromCoreFrame(*document.frame()) : nullptr;
if (!webFrame || !webFrame->page()) {
completionHandler({ });
return;
}
ApplyTrackingPrevention applyTrackingPreventionInNetworkProcess = ApplyTrackingPrevention::No;
#if ENABLE(TRACKING_PREVENTION)
if (shouldBlockCookies(webFrame, document.firstPartyForCookies(), url, applyTrackingPreventionInNetworkProcess)) {
completionHandler({ });
return;
}
#endif
auto sameSiteInfo = CookieJar::sameSiteInfo(document, IsForDOMCookieAccess::Yes);
auto includeSecureCookies = CookieJar::shouldIncludeSecureCookies(document, url);
auto frameID = webFrame->frameID();
auto pageID = webFrame->page()->identifier();
WebProcess::singleton().ensureNetworkProcessConnection().connection().sendWithAsyncReply(Messages::NetworkConnectionToWebProcess::CookiesForDOMAsync(document.firstPartyForCookies(), sameSiteInfo, url, frameID, pageID, includeSecureCookies, applyTrackingPreventionInNetworkProcess, shouldRelaxThirdPartyCookieBlocking(webFrame), options), WTFMove(completionHandler));
}
void WebCookieJar::setCookieAsync(WebCore::Document& document, const URL& url, const WebCore::Cookie& cookie, CompletionHandler<void(bool)>&& completionHandler) const
{
auto* webFrame = document.frame() ? WebFrame::fromCoreFrame(*document.frame()) : nullptr;
if (!webFrame || !webFrame->page()) {
completionHandler(false);
return;
}
ApplyTrackingPrevention applyTrackingPreventionInNetworkProcess = ApplyTrackingPrevention::No;
#if ENABLE(TRACKING_PREVENTION)
if (shouldBlockCookies(webFrame, document.firstPartyForCookies(), url, applyTrackingPreventionInNetworkProcess)) {
completionHandler(false);
return;
}
#endif
auto sameSiteInfo = CookieJar::sameSiteInfo(document, IsForDOMCookieAccess::Yes);
auto frameID = webFrame->frameID();
auto pageID = webFrame->page()->identifier();
WebProcess::singleton().ensureNetworkProcessConnection().connection().sendWithAsyncReply(Messages::NetworkConnectionToWebProcess::SetCookieFromDOMAsync(document.firstPartyForCookies(), sameSiteInfo, url, frameID, pageID, applyTrackingPreventionInNetworkProcess, shouldRelaxThirdPartyCookieBlocking(webFrame), cookie), WTFMove(completionHandler));
}
#if HAVE(COOKIE_CHANGE_LISTENER_API)
void WebCookieJar::addChangeListener(const String& host, const WebCore::CookieChangeListener& listener)
{
auto& listenersForHost = m_changeListeners.add(host, WeakHashSet<CookieChangeListener> { }).iterator->value;
auto addResult = listenersForHost.add(listener);
if (listenersForHost.computeSize() > 1 || !addResult.isNewEntry)
return;
WebProcess::singleton().ensureNetworkProcessConnection().connection().send(Messages::NetworkConnectionToWebProcess::SubscribeToCookieChangeNotifications(host), 0, IPC::SendOption::DispatchMessageEvenWhenWaitingForSyncReply);
}
void WebCookieJar::removeChangeListener(const String& host, const WebCore::CookieChangeListener& listener)
{
auto it = m_changeListeners.find(host);
if (it == m_changeListeners.end())
return;
it->value.remove(listener);
if (!it->value.isEmptyIgnoringNullReferences())
return;
m_changeListeners.remove(it);
WebProcess::singleton().ensureNetworkProcessConnection().connection().send(Messages::NetworkConnectionToWebProcess::UnsubscribeFromCookieChangeNotifications(host), 0, IPC::SendOption::DispatchMessageEvenWhenWaitingForSyncReply);
}
#endif
} // namespace WebKit
|