2 * Copyright (C) 2014-2017 Apple Inc. All rights reserved.
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions
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.
13 * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
14 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
15 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
16 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
17 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
18 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
19 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
20 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
21 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
22 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
23 * THE POSSIBILITY OF SUCH DAMAGE.
28 #include "NetworkSessionCreationParameters.h"
29 #include "WebProcessLifetimeObserver.h"
30 #include <WebCore/Cookie.h>
31 #include <WebCore/SecurityOriginData.h>
32 #include <WebCore/SecurityOriginHash.h>
33 #include <pal/SessionID.h>
34 #include <wtf/Function.h>
35 #include <wtf/HashSet.h>
36 #include <wtf/Identified.h>
37 #include <wtf/OptionSet.h>
38 #include <wtf/RefCounted.h>
39 #include <wtf/RefPtr.h>
40 #include <wtf/WorkQueue.h>
41 #include <wtf/text/WTFString.h>
44 #include <pal/spi/cf/CFNetworkSPI.h>
56 class WebResourceLoadStatisticsStore;
57 enum class WebsiteDataFetchOption;
58 enum class WebsiteDataType;
59 struct StorageProcessCreationParameters;
60 struct WebsiteDataRecord;
61 struct WebsiteDataStoreParameters;
63 #if ENABLE(NETSCAPE_PLUGIN_API)
64 struct PluginModuleInfo;
67 enum class ShouldClearFirst { No, Yes };
69 class WebsiteDataStore : public RefCounted<WebsiteDataStore>, public WebProcessLifetimeObserver, public Identified<WebsiteDataStore> {
71 constexpr static uint64_t defaultCacheStoragePerOriginQuota = 50 * 1024 * 1024;
73 struct Configuration {
74 String cacheStorageDirectory;
75 uint64_t cacheStoragePerOriginQuota { defaultCacheStoragePerOriginQuota };
76 String networkCacheDirectory;
77 String applicationCacheDirectory;
78 String applicationCacheFlatFileSubdirectoryName;
80 String mediaCacheDirectory;
81 String indexedDBDatabaseDirectory;
82 String serviceWorkerRegistrationDirectory;
83 String webSQLDatabaseDirectory;
84 String localStorageDirectory;
85 String mediaKeysStorageDirectory;
86 String resourceLoadStatisticsDirectory;
87 String javaScriptConfigurationDirectory;
88 String cookieStorageFile;
90 explicit Configuration();
92 static Ref<WebsiteDataStore> createNonPersistent();
93 static Ref<WebsiteDataStore> create(Configuration, PAL::SessionID);
94 virtual ~WebsiteDataStore();
96 static WebsiteDataStore* existingNonDefaultDataStoreForSessionID(PAL::SessionID);
98 bool isPersistent() const { return !m_sessionID.isEphemeral(); }
99 PAL::SessionID sessionID() const { return m_sessionID; }
101 bool resourceLoadStatisticsEnabled() const;
102 void setResourceLoadStatisticsEnabled(bool);
104 uint64_t cacheStoragePerOriginQuota() const { return m_resolvedConfiguration.cacheStoragePerOriginQuota; }
105 void setCacheStoragePerOriginQuota(uint64_t quota) { m_resolvedConfiguration.cacheStoragePerOriginQuota = quota; }
106 const String& cacheStorageDirectory() const { return m_resolvedConfiguration.cacheStorageDirectory; }
107 void setCacheStorageDirectory(String&& directory) { m_resolvedConfiguration.cacheStorageDirectory = WTFMove(directory); }
109 WebResourceLoadStatisticsStore* resourceLoadStatistics() const { return m_resourceLoadStatistics.get(); }
110 void clearResourceLoadStatisticsInWebProcesses(CompletionHandler<void()>&&);
112 static void cloneSessionData(WebPageProxy& sourcePage, WebPageProxy& newPage);
114 void fetchData(OptionSet<WebsiteDataType>, OptionSet<WebsiteDataFetchOption>, Function<void(Vector<WebsiteDataRecord>)>&& completionHandler);
115 void fetchDataForTopPrivatelyControlledDomains(OptionSet<WebsiteDataType>, OptionSet<WebsiteDataFetchOption>, const Vector<String>& topPrivatelyControlledDomains, Function<void(Vector<WebsiteDataRecord>&&, HashSet<String>&&)>&& completionHandler);
116 void topPrivatelyControlledDomainsWithWebsiteData(OptionSet<WebsiteDataType> dataTypes, OptionSet<WebsiteDataFetchOption> fetchOptions, Function<void(HashSet<String>&&)>&& completionHandler);
117 void removeData(OptionSet<WebsiteDataType>, WallTime modifiedSince, Function<void()>&& completionHandler);
118 void removeData(OptionSet<WebsiteDataType>, const Vector<WebsiteDataRecord>&, Function<void()>&& completionHandler);
119 void removeDataForTopPrivatelyControlledDomains(OptionSet<WebsiteDataType>, OptionSet<WebsiteDataFetchOption>, const Vector<String>& topPrivatelyControlledDomains, Function<void(HashSet<String>&&)>&& completionHandler);
121 #if HAVE(CFNETWORK_STORAGE_PARTITIONING)
122 void updatePrevalentDomainsToPartitionOrBlockCookies(const Vector<String>& domainsToPartition, const Vector<String>& domainsToBlock, const Vector<String>& domainsToNeitherPartitionNorBlock, ShouldClearFirst);
123 void hasStorageAccessForFrameHandler(const String& resourceDomain, const String& firstPartyDomain, uint64_t frameID, uint64_t pageID, WTF::CompletionHandler<void(bool hasAccess)>&& callback);
124 void grantStorageAccessForFrameHandler(const String& resourceDomain, const String& firstPartyDomain, uint64_t frameID, uint64_t pageID, WTF::CompletionHandler<void(bool wasGranted)>&& callback);
125 void removePrevalentDomains(const Vector<String>& domains);
126 void hasStorageAccess(String&& subFrameHost, String&& topFrameHost, uint64_t frameID, uint64_t pageID, WTF::CompletionHandler<void (bool)>&& callback);
127 void requestStorageAccess(String&& subFrameHost, String&& topFrameHost, uint64_t frameID, uint64_t pageID, WTF::CompletionHandler<void (bool)>&& callback);
129 void networkProcessDidCrash();
130 void resolveDirectoriesIfNecessary();
131 const String& resolvedApplicationCacheDirectory() const { return m_resolvedConfiguration.applicationCacheDirectory; }
132 const String& resolvedMediaCacheDirectory() const { return m_resolvedConfiguration.mediaCacheDirectory; }
133 const String& resolvedMediaKeysDirectory() const { return m_resolvedConfiguration.mediaKeysStorageDirectory; }
134 const String& resolvedDatabaseDirectory() const { return m_resolvedConfiguration.webSQLDatabaseDirectory; }
135 const String& resolvedJavaScriptConfigurationDirectory() const { return m_resolvedConfiguration.javaScriptConfigurationDirectory; }
136 const String& resolvedCookieStorageFile() const { return m_resolvedConfiguration.cookieStorageFile; }
137 const String& resolvedIndexedDatabaseDirectory() const { return m_resolvedConfiguration.indexedDBDatabaseDirectory; }
138 const String& resolvedServiceWorkerRegistrationDirectory() const { return m_resolvedConfiguration.serviceWorkerRegistrationDirectory; }
140 StorageManager* storageManager() { return m_storageManager.get(); }
142 WebProcessPool* processPoolForCookieStorageOperations();
143 bool isAssociatedProcessPool(WebProcessPool&) const;
145 WebsiteDataStoreParameters parameters();
146 StorageProcessCreationParameters storageProcessParameters();
148 Vector<WebCore::Cookie> pendingCookies() const;
149 void addPendingCookie(const WebCore::Cookie&);
150 void removePendingCookie(const WebCore::Cookie&);
152 void enableResourceLoadStatisticsAndSetTestingCallback(Function<void (const String&)>&& callback);
154 void setBoundInterfaceIdentifier(String&& identifier) { m_boundInterfaceIdentifier = WTFMove(identifier); }
155 const String& boundInterfaceIdentifier() { return m_boundInterfaceIdentifier; }
157 void setAllowsCellularAccess(AllowsCellularAccess allows) { m_allowsCellularAccess = allows; }
158 AllowsCellularAccess allowsCellularAccess() { return m_allowsCellularAccess; }
160 static void allowWebsiteDataRecordsForAllOrigins();
163 explicit WebsiteDataStore(PAL::SessionID);
164 explicit WebsiteDataStore(Configuration, PAL::SessionID);
166 void fetchDataAndApply(OptionSet<WebsiteDataType>, OptionSet<WebsiteDataFetchOption>, RefPtr<WorkQueue>&&, Function<void(Vector<WebsiteDataRecord>)>&& apply);
168 // WebProcessLifetimeObserver.
169 void webPageWasAdded(WebPageProxy&) override;
170 void webPageWasRemoved(WebPageProxy&) override;
171 void webProcessWillOpenConnection(WebProcessProxy&, IPC::Connection&) override;
172 void webPageWillOpenConnection(WebPageProxy&, IPC::Connection&) override;
173 void webPageDidCloseConnection(WebPageProxy&, IPC::Connection&) override;
174 void webProcessDidCloseConnection(WebProcessProxy&, IPC::Connection&) override;
176 void platformInitialize();
177 void platformDestroy();
178 static void platformRemoveRecentSearches(WallTime);
180 HashSet<RefPtr<WebProcessPool>> processPools(size_t count = std::numeric_limits<size_t>::max(), bool ensureAPoolExists = true) const;
182 #if ENABLE(NETSCAPE_PLUGIN_API)
183 Vector<PluginModuleInfo> plugins() const;
186 static Vector<WebCore::SecurityOriginData> mediaKeyOrigins(const String& mediaKeysStorageDirectory);
187 static void removeMediaKeys(const String& mediaKeysStorageDirectory, WallTime modifiedSince);
188 static void removeMediaKeys(const String& mediaKeysStorageDirectory, const HashSet<WebCore::SecurityOriginData>&);
190 void maybeRegisterWithSessionIDMap();
192 const PAL::SessionID m_sessionID;
194 const Configuration m_configuration;
195 Configuration m_resolvedConfiguration;
196 bool m_hasResolvedDirectories { false };
198 const RefPtr<StorageManager> m_storageManager;
199 RefPtr<WebResourceLoadStatisticsStore> m_resourceLoadStatistics;
201 Ref<WorkQueue> m_queue;
204 Vector<uint8_t> m_uiProcessCookieStorageIdentifier;
205 RetainPtr<CFHTTPCookieStorageRef> m_cfCookieStorage;
207 HashSet<WebCore::Cookie> m_pendingCookies;
209 String m_boundInterfaceIdentifier;
210 AllowsCellularAccess m_allowsCellularAccess { AllowsCellularAccess::Yes };