blob: 021b982911a5206f474f52bbcf6881b1a5380327 [file] [log] [blame]
/*
* Copyright (C) 2012-2017 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 "NetworkProcessCreationParameters.h"
#include "ArgumentCoders.h"
#include "WebCoreArgumentCoders.h"
#include "WebsiteDataStoreParameters.h"
#if PLATFORM(COCOA)
#include "ArgumentCodersCF.h"
#endif
namespace WebKit {
NetworkProcessCreationParameters::NetworkProcessCreationParameters() = default;
NetworkProcessCreationParameters::~NetworkProcessCreationParameters() = default;
NetworkProcessCreationParameters::NetworkProcessCreationParameters(NetworkProcessCreationParameters&&) = default;
NetworkProcessCreationParameters& NetworkProcessCreationParameters::operator=(NetworkProcessCreationParameters&&) = default;
void NetworkProcessCreationParameters::encode(IPC::Encoder& encoder) const
{
encoder << cacheModel;
#if PLATFORM(MAC) || PLATFORM(MACCATALYST)
encoder << uiProcessCookieStorageIdentifier;
#endif
#if PLATFORM(IOS_FAMILY)
encoder << cookieStorageDirectoryExtensionHandle;
encoder << containerCachesDirectoryExtensionHandle;
encoder << parentBundleDirectoryExtensionHandle;
encoder << tempDirectoryExtensionHandle;
#endif
encoder << shouldSuppressMemoryPressureHandler;
encoder << urlSchemesRegisteredForCustomProtocols;
#if PLATFORM(COCOA)
encoder << uiProcessBundleIdentifier;
encoder << networkATSContext;
#endif
#if USE(SOUP)
encoder << cookieAcceptPolicy;
encoder << languages;
encoder << memoryPressureHandlerConfiguration;
#endif
encoder << urlSchemesRegisteredAsSecure;
encoder << urlSchemesRegisteredAsBypassingContentSecurityPolicy;
encoder << urlSchemesRegisteredAsLocal;
encoder << urlSchemesRegisteredAsNoAccess;
encoder << enablePrivateClickMeasurement;
encoder << ftpEnabled;
encoder << websiteDataStoreParameters;
}
bool NetworkProcessCreationParameters::decode(IPC::Decoder& decoder, NetworkProcessCreationParameters& result)
{
if (!decoder.decode(result.cacheModel))
return false;
#if PLATFORM(MAC) || PLATFORM(MACCATALYST)
if (!decoder.decode(result.uiProcessCookieStorageIdentifier))
return false;
#endif
#if PLATFORM(IOS_FAMILY)
std::optional<SandboxExtension::Handle> cookieStorageDirectoryExtensionHandle;
decoder >> cookieStorageDirectoryExtensionHandle;
if (!cookieStorageDirectoryExtensionHandle)
return false;
result.cookieStorageDirectoryExtensionHandle = WTFMove(*cookieStorageDirectoryExtensionHandle);
std::optional<SandboxExtension::Handle> containerCachesDirectoryExtensionHandle;
decoder >> containerCachesDirectoryExtensionHandle;
if (!containerCachesDirectoryExtensionHandle)
return false;
result.containerCachesDirectoryExtensionHandle = WTFMove(*containerCachesDirectoryExtensionHandle);
std::optional<SandboxExtension::Handle> parentBundleDirectoryExtensionHandle;
decoder >> parentBundleDirectoryExtensionHandle;
if (!parentBundleDirectoryExtensionHandle)
return false;
result.parentBundleDirectoryExtensionHandle = WTFMove(*parentBundleDirectoryExtensionHandle);
std::optional<SandboxExtension::Handle> tempDirectoryExtensionHandle;
decoder >> tempDirectoryExtensionHandle;
if (!tempDirectoryExtensionHandle)
return false;
result.tempDirectoryExtensionHandle = WTFMove(*tempDirectoryExtensionHandle);
#endif
if (!decoder.decode(result.shouldSuppressMemoryPressureHandler))
return false;
if (!decoder.decode(result.urlSchemesRegisteredForCustomProtocols))
return false;
#if PLATFORM(COCOA)
if (!decoder.decode(result.uiProcessBundleIdentifier))
return false;
if (!decoder.decode(result.networkATSContext))
return false;
#endif
#if USE(SOUP)
if (!decoder.decode(result.cookieAcceptPolicy))
return false;
if (!decoder.decode(result.languages))
return false;
std::optional<std::optional<MemoryPressureHandler::Configuration>> memoryPressureHandlerConfiguration;
decoder >> memoryPressureHandlerConfiguration;
if (!memoryPressureHandlerConfiguration)
return false;
result.memoryPressureHandlerConfiguration = WTFMove(*memoryPressureHandlerConfiguration);
#endif
if (!decoder.decode(result.urlSchemesRegisteredAsSecure))
return false;
if (!decoder.decode(result.urlSchemesRegisteredAsBypassingContentSecurityPolicy))
return false;
if (!decoder.decode(result.urlSchemesRegisteredAsLocal))
return false;
if (!decoder.decode(result.urlSchemesRegisteredAsNoAccess))
return false;
if (!decoder.decode(result.enablePrivateClickMeasurement))
return false;
if (!decoder.decode(result.ftpEnabled))
return false;
std::optional<Vector<WebsiteDataStoreParameters>> websiteDataStoreParameters;
decoder >> websiteDataStoreParameters;
if (!websiteDataStoreParameters)
return false;
result.websiteDataStoreParameters = WTFMove(*websiteDataStoreParameters);
return true;
}
} // namespace WebKit