2 * Copyright (C) 2012-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 "Attachment.h"
29 #include "CacheModel.h"
30 #include "NetworkSessionCreationParameters.h"
31 #include "SandboxExtension.h"
32 #include <wtf/ProcessID.h>
33 #include <wtf/Vector.h>
34 #include <wtf/text/WTFString.h>
37 #include "HTTPCookieAcceptPolicy.h"
38 #include <WebCore/SoupNetworkProxySettings.h>
48 struct NetworkProcessCreationParameters {
49 NetworkProcessCreationParameters();
51 void encode(IPC::Encoder&) const;
52 static bool decode(IPC::Decoder&, NetworkProcessCreationParameters&);
54 NetworkSessionCreationParameters defaultSessionParameters;
55 bool privateBrowsingEnabled { false };
56 CacheModel cacheModel { CacheModelDocumentViewer };
57 int64_t diskCacheSizeOverride { -1 };
58 bool canHandleHTTPSServerTrustEvaluation { true };
60 String cacheStorageDirectory;
61 uint64_t cacheStoragePerOriginQuota;
62 SandboxExtension::Handle cacheStorageDirectoryExtensionHandle;
63 String diskCacheDirectory;
64 SandboxExtension::Handle diskCacheDirectoryExtensionHandle;
65 bool shouldEnableNetworkCache { false };
66 bool shouldEnableNetworkCacheEfficacyLogging { false };
67 #if ENABLE(NETWORK_CACHE_SPECULATIVE_REVALIDATION)
68 bool shouldEnableNetworkCacheSpeculativeRevalidation { false };
71 Vector<uint8_t> uiProcessCookieStorageIdentifier;
74 SandboxExtension::Handle cookieStorageDirectoryExtensionHandle;
75 SandboxExtension::Handle containerCachesDirectoryExtensionHandle;
76 SandboxExtension::Handle parentBundleDirectoryExtensionHandle;
78 bool shouldSuppressMemoryPressureHandler { false };
79 bool shouldUseTestingNetworkSession { false };
80 Seconds loadThrottleLatency;
82 Vector<String> urlSchemesRegisteredForCustomProtocols;
83 ProcessID presentingApplicationPID { 0 };
86 String parentProcessName;
87 String uiProcessBundleIdentifier;
88 uint64_t nsURLCacheMemoryCapacity;
89 uint64_t nsURLCacheDiskCapacity;
90 String sourceApplicationBundleIdentifier;
91 String sourceApplicationSecondaryIdentifier;
93 String ctDataConnectionServiceType;
98 RetainPtr<CFDataRef> networkATSContext;
100 bool cookieStoragePartitioningEnabled;
101 bool storageAccessAPIEnabled;
105 String cookiePersistentStoragePath;
106 uint32_t cookiePersistentStorageType { 0 };
107 HTTPCookieAcceptPolicy cookieAcceptPolicy { HTTPCookieAcceptPolicyAlways };
108 bool ignoreTLSErrors { false };
109 Vector<String> languages;
110 WebCore::SoupNetworkProxySettings proxySettings;
112 String cookiePersistentStorageFile;
115 #if HAVE(CFNETWORK_STORAGE_PARTITIONING) && !RELEASE_LOG_DISABLED
116 bool logCookieInformation { false };
120 IPC::Attachment memoryPressureMonitorHandle;
123 #if ENABLE(NETWORK_CAPTURE)
124 String recordReplayMode;
125 String recordReplayCacheLocation;
128 Vector<String> urlSchemesRegisteredAsSecure;
129 Vector<String> urlSchemesRegisteredAsBypassingContentSecurityPolicy;
130 Vector<String> urlSchemesRegisteredAsLocal;
131 Vector<String> urlSchemesRegisteredAsNoAccess;
132 Vector<String> urlSchemesRegisteredAsDisplayIsolated;
133 Vector<String> urlSchemesRegisteredAsCanDisplayOnlyIfCanRequest;
134 Vector<String> urlSchemesRegisteredAsCORSEnabled;
137 } // namespace WebKit