blob: 5855b7ead2bf7a407d5bdd842624757b38bb8b16 [file] [log] [blame]
/*
* Copyright (C) 2010, 2011, 2012 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 "WebContext.h"
#include "DownloadProxy.h"
#include "DownloadProxyMessages.h"
#include "ImmutableArray.h"
#include "Logging.h"
#include "MutableDictionary.h"
#include "SandboxExtension.h"
#include "StatisticsData.h"
#include "TextChecker.h"
#include "WKContextPrivate.h"
#include "WebApplicationCacheManagerProxy.h"
#include "WebContextMessageKinds.h"
#include "WebContextMessages.h"
#include "WebContextSupplement.h"
#include "WebContextUserMessageCoders.h"
#include "WebCookieManagerProxy.h"
#include "WebCoreArgumentCoders.h"
#include "WebDatabaseManagerProxy.h"
#include "WebGeolocationManagerProxy.h"
#include "WebIconDatabase.h"
#include "WebKeyValueStorageManagerProxy.h"
#include "WebMediaCacheManagerProxy.h"
#include "WebNotificationManagerProxy.h"
#include "WebPluginSiteDataManager.h"
#include "WebPageGroup.h"
#include "WebMemorySampler.h"
#include "WebProcessCreationParameters.h"
#include "WebProcessMessages.h"
#include "WebProcessProxy.h"
#include "WebResourceCacheManagerProxy.h"
#include <WebCore/InitializeLogging.h>
#include <WebCore/Language.h>
#include <WebCore/LinkHash.h>
#include <WebCore/ResourceRequest.h>
#include <WebCore/RunLoop.h>
#include <runtime/InitializeThreading.h>
#include <runtime/Operations.h>
#include <wtf/CurrentTime.h>
#include <wtf/MainThread.h>
#if ENABLE(BATTERY_STATUS)
#include "WebBatteryManagerProxy.h"
#endif
#if ENABLE(NETWORK_INFO)
#include "WebNetworkInfoManagerProxy.h"
#endif
#if ENABLE(NETWORK_PROCESS)
#include "NetworkProcessCreationParameters.h"
#include "NetworkProcessMessages.h"
#include "NetworkProcessProxy.h"
#endif
#if ENABLE(CUSTOM_PROTOCOLS)
#include "CustomProtocolManagerMessages.h"
#endif
#if USE(SOUP)
#include "WebSoupRequestManagerProxy.h"
#endif
#ifndef NDEBUG
#include <wtf/RefCountedLeakCounter.h>
#endif
using namespace WebCore;
namespace WebKit {
static const double sharedSecondaryProcessShutdownTimeout = 60;
unsigned WebContext::m_privateBrowsingEnterCount;
DEFINE_DEBUG_ONLY_GLOBAL(WTF::RefCountedLeakCounter, webContextCounter, ("WebContext"));
PassRefPtr<WebContext> WebContext::create(const String& injectedBundlePath)
{
JSC::initializeThreading();
WTF::initializeMainThread();
RunLoop::initializeMainRunLoop();
return adoptRef(new WebContext(ProcessModelSharedSecondaryProcess, injectedBundlePath));
}
static Vector<WebContext*>& contexts()
{
DEFINE_STATIC_LOCAL(Vector<WebContext*>, contexts, ());
return contexts;
}
const Vector<WebContext*>& WebContext::allContexts()
{
return contexts();
}
WebContext::WebContext(ProcessModel processModel, const String& injectedBundlePath)
: m_processModel(processModel)
, m_webProcessCountLimit(UINT_MAX)
, m_haveInitialEmptyProcess(false)
, m_defaultPageGroup(WebPageGroup::create())
, m_injectedBundlePath(injectedBundlePath)
, m_visitedLinkProvider(this)
, m_plugInAutoStartProvider(this)
, m_alwaysUsesComplexTextCodePath(false)
, m_shouldUseFontSmoothing(true)
, m_cacheModel(CacheModelDocumentViewer)
, m_memorySamplerEnabled(false)
, m_memorySamplerInterval(1400.0)
, m_storageManager(StorageManager::create())
#if USE(SOUP)
, m_initialHTTPCookieAcceptPolicy(HTTPCookieAcceptPolicyOnlyFromMainDocumentDomain)
#endif
, m_processTerminationEnabled(true)
#if ENABLE(NETWORK_PROCESS)
, m_usesNetworkProcess(false)
#endif
#if PLATFORM(MAC)
, m_processSuppressionEnabled(true)
#endif
#if USE(SOUP)
, m_ignoreTLSErrors(true)
#endif
{
platformInitialize();
addMessageReceiver(Messages::WebContext::messageReceiverName(), this);
addMessageReceiver(WebContextLegacyMessages::messageReceiverName(), this);
// NOTE: These sub-objects must be initialized after m_messageReceiverMap..
#if ENABLE(BATTERY_STATUS)
m_batteryManagerProxy = WebBatteryManagerProxy::create(this);
#endif
m_iconDatabase = WebIconDatabase::create(this);
#if ENABLE(NETWORK_INFO)
m_networkInfoManagerProxy = WebNetworkInfoManagerProxy::create(this);
#endif
#if ENABLE(NETSCAPE_PLUGIN_API)
m_pluginSiteDataManager = WebPluginSiteDataManager::create(this);
#endif // ENABLE(NETSCAPE_PLUGIN_API)
addSupplement<WebApplicationCacheManagerProxy>();
addSupplement<WebCookieManagerProxy>();
addSupplement<WebGeolocationManagerProxy>();
addSupplement<WebKeyValueStorageManagerProxy>();
addSupplement<WebMediaCacheManagerProxy>();
addSupplement<WebNotificationManagerProxy>();
addSupplement<WebResourceCacheManagerProxy>();
#if ENABLE(SQL_DATABASE)
addSupplement<WebDatabaseManagerProxy>();
#endif
#if USE(SOUP)
addSupplement<WebSoupRequestManagerProxy>();
#endif
contexts().append(this);
addLanguageChangeObserver(this, languageChanged);
#if !LOG_DISABLED
WebCore::initializeLoggingChannelsIfNecessary();
WebKit::initializeLogChannelsIfNecessary();
#endif // !LOG_DISABLED
#if ENABLE(NETSCAPE_PLUGIN_API)
m_pluginInfoStore.setClient(this);
#endif
#ifndef NDEBUG
webContextCounter.increment();
#endif
}
#if !PLATFORM(MAC)
void WebContext::platformInitialize()
{
}
#endif
WebContext::~WebContext()
{
ASSERT(contexts().find(this) != notFound);
contexts().remove(contexts().find(this));
removeLanguageChangeObserver(this);
m_messageReceiverMap.invalidate();
WebContextSupplementMap::const_iterator it = m_supplements.begin();
WebContextSupplementMap::const_iterator end = m_supplements.end();
for (; it != end; ++it) {
it->value->contextDestroyed();
it->value->clearContext();
}
#if ENABLE(BATTERY_STATUS)
m_batteryManagerProxy->invalidate();
m_batteryManagerProxy->clearContext();
#endif
m_iconDatabase->invalidate();
m_iconDatabase->clearContext();
#if ENABLE(NETWORK_INFO)
m_networkInfoManagerProxy->invalidate();
m_networkInfoManagerProxy->clearContext();
#endif
#if ENABLE(NETSCAPE_PLUGIN_API)
m_pluginSiteDataManager->invalidate();
m_pluginSiteDataManager->clearContext();
#endif
invalidateCallbackMap(m_dictionaryCallbacks);
platformInvalidateContext();
#if ENABLE(NETSCAPE_PLUGIN_API)
m_pluginInfoStore.setClient(0);
#endif
#ifndef NDEBUG
webContextCounter.decrement();
#endif
}
void WebContext::initializeClient(const WKContextClient* client)
{
m_client.initialize(client);
}
void WebContext::initializeInjectedBundleClient(const WKContextInjectedBundleClient* client)
{
m_injectedBundleClient.initialize(client);
}
void WebContext::initializeConnectionClient(const WKContextConnectionClient* client)
{
m_connectionClient.initialize(client);
}
void WebContext::initializeHistoryClient(const WKContextHistoryClient* client)
{
m_historyClient.initialize(client);
sendToAllProcesses(Messages::WebProcess::SetShouldTrackVisitedLinks(m_historyClient.shouldTrackVisitedLinks()));
}
void WebContext::initializeDownloadClient(const WKContextDownloadClient* client)
{
m_downloadClient.initialize(client);
}
void WebContext::setProcessModel(ProcessModel processModel)
{
// Guard against API misuse.
if (!m_processes.isEmpty())
CRASH();
if (processModel != ProcessModelSharedSecondaryProcess && !m_messagesToInjectedBundlePostedToEmptyContext.isEmpty())
CRASH();
#if !ENABLE(PLUGIN_PROCESS)
// Plugin process is required for multiple web process mode.
if (processModel != ProcessModelSharedSecondaryProcess)
CRASH();
#endif
m_processModel = processModel;
}
void WebContext::setMaximumNumberOfProcesses(unsigned maximumNumberOfProcesses)
{
// Guard against API misuse.
if (!m_processes.isEmpty())
CRASH();
if (maximumNumberOfProcesses == 0)
m_webProcessCountLimit = UINT_MAX;
else
m_webProcessCountLimit = maximumNumberOfProcesses;
}
CoreIPC::Connection* WebContext::networkingProcessConnection()
{
switch (m_processModel) {
case ProcessModelSharedSecondaryProcess:
#if ENABLE(NETWORK_PROCESS)
if (m_usesNetworkProcess)
return m_networkProcess->connection();
#endif
return m_processes[0]->connection();
case ProcessModelMultipleSecondaryProcesses:
#if ENABLE(NETWORK_PROCESS)
ASSERT(m_usesNetworkProcess);
return m_networkProcess->connection();
#else
break;
#endif
}
ASSERT_NOT_REACHED();
return 0;
}
void WebContext::languageChanged(void* context)
{
static_cast<WebContext*>(context)->languageChanged();
}
void WebContext::languageChanged()
{
sendToAllProcesses(Messages::WebProcess::UserPreferredLanguagesChanged(userPreferredLanguages()));
}
void WebContext::fullKeyboardAccessModeChanged(bool fullKeyboardAccessEnabled)
{
sendToAllProcesses(Messages::WebProcess::FullKeyboardAccessModeChanged(fullKeyboardAccessEnabled));
}
void WebContext::textCheckerStateChanged()
{
sendToAllProcesses(Messages::WebProcess::SetTextCheckerState(TextChecker::state()));
}
void WebContext::setUsesNetworkProcess(bool usesNetworkProcess)
{
#if ENABLE(NETWORK_PROCESS)
m_usesNetworkProcess = usesNetworkProcess;
#else
UNUSED_PARAM(usesNetworkProcess);
#endif
}
bool WebContext::usesNetworkProcess() const
{
#if ENABLE(NETWORK_PROCESS)
return m_usesNetworkProcess;
#else
return false;
#endif
}
#if ENABLE(NETWORK_PROCESS)
void WebContext::ensureNetworkProcess()
{
if (m_networkProcess)
return;
m_networkProcess = NetworkProcessProxy::create(this);
NetworkProcessCreationParameters parameters;
parameters.diskCacheDirectory = diskCacheDirectory();
if (!parameters.diskCacheDirectory.isEmpty())
SandboxExtension::createHandleForReadWriteDirectory(parameters.diskCacheDirectory, parameters.diskCacheDirectoryExtensionHandle);
parameters.cacheModel = m_cacheModel;
// Add any platform specific parameters
platformInitializeNetworkProcess(parameters);
// Initialize the network process.
m_networkProcess->send(Messages::NetworkProcess::InitializeNetworkProcess(parameters), 0);
}
void WebContext::networkProcessCrashed(NetworkProcessProxy* networkProcessProxy)
{
ASSERT(m_networkProcess);
ASSERT(networkProcessProxy == m_networkProcess.get());
WebContextSupplementMap::const_iterator it = m_supplements.begin();
WebContextSupplementMap::const_iterator end = m_supplements.end();
for (; it != end; ++it)
it->value->processDidClose(networkProcessProxy);
m_networkProcess = nullptr;
m_client.networkProcessDidCrash(this);
}
void WebContext::getNetworkProcessConnection(PassRefPtr<Messages::WebProcessProxy::GetNetworkProcessConnection::DelayedReply> reply)
{
ASSERT(reply);
ensureNetworkProcess();
ASSERT(m_networkProcess);
m_networkProcess->getNetworkProcessConnection(reply);
}
#endif
void WebContext::willStartUsingPrivateBrowsing()
{
if (m_privateBrowsingEnterCount++)
return;
const Vector<WebContext*>& contexts = allContexts();
for (size_t i = 0, count = contexts.size(); i < count; ++i) {
#if ENABLE(NETWORK_PROCESS)
if (contexts[i]->usesNetworkProcess() && contexts[i]->networkProcess())
contexts[i]->networkProcess()->send(Messages::NetworkProcess::EnsurePrivateBrowsingSession(), 0);
#endif
contexts[i]->sendToAllProcesses(Messages::WebProcess::EnsurePrivateBrowsingSession());
}
}
void WebContext::willStopUsingPrivateBrowsing()
{
// If the client asks to disable private browsing without enabling it first, it may be resetting a persistent preference,
// so it is still necessary to destroy any existing private browsing session.
if (m_privateBrowsingEnterCount && --m_privateBrowsingEnterCount)
return;
const Vector<WebContext*>& contexts = allContexts();
for (size_t i = 0, count = contexts.size(); i < count; ++i) {
#if ENABLE(NETWORK_PROCESS)
if (contexts[i]->usesNetworkProcess() && contexts[i]->networkProcess())
contexts[i]->networkProcess()->send(Messages::NetworkProcess::DestroyPrivateBrowsingSession(), 0);
#endif
contexts[i]->sendToAllProcesses(Messages::WebProcess::DestroyPrivateBrowsingSession());
}
}
WebProcessProxy* WebContext::ensureSharedWebProcess()
{
ASSERT(m_processModel == ProcessModelSharedSecondaryProcess);
if (m_processes.isEmpty())
createNewWebProcess();
return m_processes[0].get();
}
WebProcessProxy* WebContext::createNewWebProcess()
{
#if ENABLE(NETWORK_PROCESS)
if (m_usesNetworkProcess)
ensureNetworkProcess();
#endif
RefPtr<WebProcessProxy> process = WebProcessProxy::create(this);
WebProcessCreationParameters parameters;
parameters.injectedBundlePath = injectedBundlePath();
if (!parameters.injectedBundlePath.isEmpty())
SandboxExtension::createHandle(parameters.injectedBundlePath, SandboxExtension::ReadOnly, parameters.injectedBundlePathExtensionHandle);
parameters.applicationCacheDirectory = applicationCacheDirectory();
if (!parameters.applicationCacheDirectory.isEmpty())
SandboxExtension::createHandleForReadWriteDirectory(parameters.applicationCacheDirectory, parameters.applicationCacheDirectoryExtensionHandle);
parameters.databaseDirectory = databaseDirectory();
if (!parameters.databaseDirectory.isEmpty())
SandboxExtension::createHandleForReadWriteDirectory(parameters.databaseDirectory, parameters.databaseDirectoryExtensionHandle);
parameters.localStorageDirectory = localStorageDirectory();
if (!parameters.localStorageDirectory.isEmpty())
SandboxExtension::createHandleForReadWriteDirectory(parameters.localStorageDirectory, parameters.localStorageDirectoryExtensionHandle);
parameters.diskCacheDirectory = diskCacheDirectory();
if (!parameters.diskCacheDirectory.isEmpty())
SandboxExtension::createHandleForReadWriteDirectory(parameters.diskCacheDirectory, parameters.diskCacheDirectoryExtensionHandle);
parameters.cookieStorageDirectory = cookieStorageDirectory();
if (!parameters.cookieStorageDirectory.isEmpty())
SandboxExtension::createHandleForReadWriteDirectory(parameters.cookieStorageDirectory, parameters.cookieStorageDirectoryExtensionHandle);
parameters.shouldTrackVisitedLinks = m_historyClient.shouldTrackVisitedLinks();
parameters.cacheModel = m_cacheModel;
parameters.languages = userPreferredLanguages();
copyToVector(m_schemesToRegisterAsEmptyDocument, parameters.urlSchemesRegistererdAsEmptyDocument);
copyToVector(m_schemesToRegisterAsSecure, parameters.urlSchemesRegisteredAsSecure);
copyToVector(m_schemesToSetDomainRelaxationForbiddenFor, parameters.urlSchemesForWhichDomainRelaxationIsForbidden);
copyToVector(m_schemesToRegisterAsLocal, parameters.urlSchemesRegisteredAsLocal);
copyToVector(m_schemesToRegisterAsNoAccess, parameters.urlSchemesRegisteredAsNoAccess);
copyToVector(m_schemesToRegisterAsDisplayIsolated, parameters.urlSchemesRegisteredAsDisplayIsolated);
copyToVector(m_schemesToRegisterAsCORSEnabled, parameters.urlSchemesRegisteredAsCORSEnabled);
parameters.shouldAlwaysUseComplexTextCodePath = m_alwaysUsesComplexTextCodePath;
parameters.shouldUseFontSmoothing = m_shouldUseFontSmoothing;
parameters.iconDatabaseEnabled = !iconDatabasePath().isEmpty();
parameters.terminationTimeout = (m_processModel == ProcessModelSharedSecondaryProcess) ? sharedSecondaryProcessShutdownTimeout : 0;
parameters.textCheckerState = TextChecker::state();
parameters.fullKeyboardAccessEnabled = WebProcessProxy::fullKeyboardAccessEnabled();
parameters.defaultRequestTimeoutInterval = WebURLRequest::defaultTimeoutInterval();
#if ENABLE(NOTIFICATIONS) || ENABLE(LEGACY_NOTIFICATIONS)
// FIXME: There should be a generic way for supplements to add to the intialization parameters.
supplement<WebNotificationManagerProxy>()->populateCopyOfNotificationPermissions(parameters.notificationPermissions);
#endif
#if ENABLE(NETWORK_PROCESS)
parameters.usesNetworkProcess = m_usesNetworkProcess;
#endif
parameters.plugInAutoStartOriginHashes = m_plugInAutoStartProvider.autoStartOriginHashesCopy();
copyToVector(m_plugInAutoStartProvider.autoStartOrigins(), parameters.plugInAutoStartOrigins);
// Add any platform specific parameters
platformInitializeWebProcess(parameters);
RefPtr<APIObject> injectedBundleInitializationUserData = m_injectedBundleClient.getInjectedBundleInitializationUserData(this);
if (!injectedBundleInitializationUserData)
injectedBundleInitializationUserData = m_injectedBundleInitializationUserData;
process->send(Messages::WebProcess::InitializeWebProcess(parameters, WebContextUserMessageEncoder(injectedBundleInitializationUserData.get())), 0);
m_processes.append(process);
if (m_processModel == ProcessModelSharedSecondaryProcess) {
for (size_t i = 0; i != m_messagesToInjectedBundlePostedToEmptyContext.size(); ++i) {
pair<String, RefPtr<APIObject> >& message = m_messagesToInjectedBundlePostedToEmptyContext[i];
OwnPtr<CoreIPC::ArgumentEncoder> messageData = CoreIPC::ArgumentEncoder::create();
messageData->encode(message.first);
messageData->encode(WebContextUserMessageEncoder(message.second.get()));
process->send(Messages::WebProcess::PostInjectedBundleMessage(CoreIPC::DataReference(messageData->buffer(), messageData->bufferSize())), 0);
}
m_messagesToInjectedBundlePostedToEmptyContext.clear();
} else
ASSERT(m_messagesToInjectedBundlePostedToEmptyContext.isEmpty());
return process.get();
}
void WebContext::warmInitialProcess()
{
if (m_haveInitialEmptyProcess) {
ASSERT(!m_processes.isEmpty());
return;
}
if (m_processes.size() >= m_webProcessCountLimit)
return;
createNewWebProcess();
m_haveInitialEmptyProcess = true;
}
void WebContext::enableProcessTermination()
{
m_processTerminationEnabled = true;
Vector<RefPtr<WebProcessProxy> > processes = m_processes;
for (size_t i = 0; i < processes.size(); ++i) {
if (shouldTerminate(processes[i].get()))
processes[i]->terminate();
}
}
bool WebContext::shouldTerminate(WebProcessProxy* process)
{
ASSERT(m_processes.contains(process));
if (!m_processTerminationEnabled)
return false;
WebContextSupplementMap::const_iterator it = m_supplements.begin();
WebContextSupplementMap::const_iterator end = m_supplements.end();
for (; it != end; ++it) {
if (!it->value->shouldTerminate(process))
return false;
}
#if ENABLE(NETSCAPE_PLUGIN_API)
if (!m_pluginSiteDataManager->shouldTerminate(process))
return false;
#endif
return true;
}
void WebContext::processWillOpenConnection(WebProcessProxy* process)
{
m_storageManager->processWillOpenConnection(process);
}
void WebContext::processWillCloseConnection(WebProcessProxy* process)
{
m_storageManager->processWillCloseConnection(process);
}
void WebContext::processDidFinishLaunching(WebProcessProxy* process)
{
ASSERT(m_processes.contains(process));
m_visitedLinkProvider.processDidFinishLaunching(process);
// Sometimes the memorySampler gets initialized after process initialization has happened but before the process has finished launching
// so check if it needs to be started here
if (m_memorySamplerEnabled) {
SandboxExtension::Handle sampleLogSandboxHandle;
double now = WTF::currentTime();
String sampleLogFilePath = String::format("WebProcess%llupid%d", static_cast<unsigned long long>(now), process->processIdentifier());
sampleLogFilePath = SandboxExtension::createHandleForTemporaryFile(sampleLogFilePath, SandboxExtension::ReadWrite, sampleLogSandboxHandle);
process->send(Messages::WebProcess::StartMemorySampler(sampleLogSandboxHandle, sampleLogFilePath, m_memorySamplerInterval), 0);
}
m_connectionClient.didCreateConnection(this, process->webConnection());
}
void WebContext::disconnectProcess(WebProcessProxy* process)
{
ASSERT(m_processes.contains(process));
m_visitedLinkProvider.processDidClose(process);
if (m_haveInitialEmptyProcess && process == m_processes.last())
m_haveInitialEmptyProcess = false;
// FIXME (Multi-WebProcess): <rdar://problem/12239765> Some of the invalidation calls below are still necessary in multi-process mode, but they should only affect data structures pertaining to the process being disconnected.
// Clearing everything causes assertion failures, so it's less trouble to skip that for now.
if (m_processModel != ProcessModelSharedSecondaryProcess) {
RefPtr<WebProcessProxy> protect(process);
m_processes.remove(m_processes.find(process));
return;
}
WebContextSupplementMap::const_iterator it = m_supplements.begin();
WebContextSupplementMap::const_iterator end = m_supplements.end();
for (; it != end; ++it)
it->value->processDidClose(process);
#if ENABLE(BATTERY_STATUS)
m_batteryManagerProxy->invalidate();
#endif
#if ENABLE(NETWORK_INFO)
m_networkInfoManagerProxy->invalidate();
#endif
// When out of process plug-ins are enabled, we don't want to invalidate the plug-in site data
// manager just because the web process crashes since it's not involved.
#if ENABLE(NETSCAPE_PLUGIN_API) && !ENABLE(PLUGIN_PROCESS)
m_pluginSiteDataManager->invalidate();
#endif
// The vector may have the last reference to process proxy, which in turn may have the last reference to the context.
// Since vector elements are destroyed in place, we would recurse into WebProcessProxy destructor
// if it were invoked from Vector::remove(). RefPtr delays destruction until it's safe.
RefPtr<WebProcessProxy> protect(process);
m_processes.remove(m_processes.find(process));
}
WebProcessProxy* WebContext::createNewWebProcessRespectingProcessCountLimit()
{
if (m_processes.size() < m_webProcessCountLimit)
return createNewWebProcess();
// Choose a process with fewest pages, to achieve flat distribution.
WebProcessProxy* result = 0;
unsigned fewestPagesSeen = UINT_MAX;
for (unsigned i = 0; i < m_processes.size(); ++i) {
if (fewestPagesSeen > m_processes[i]->pages().size()) {
result = m_processes[i].get();
fewestPagesSeen = m_processes[i]->pages().size();
}
}
return result;
}
PassRefPtr<WebPageProxy> WebContext::createWebPage(PageClient* pageClient, WebPageGroup* pageGroup, WebPageProxy* relatedPage)
{
RefPtr<WebProcessProxy> process;
if (m_processModel == ProcessModelSharedSecondaryProcess) {
process = ensureSharedWebProcess();
} else {
if (m_haveInitialEmptyProcess) {
process = m_processes.last();
m_haveInitialEmptyProcess = false;
} else if (relatedPage) {
// Sharing processes, e.g. when creating the page via window.open().
process = relatedPage->process();
} else
process = createNewWebProcessRespectingProcessCountLimit();
}
if (!pageGroup)
pageGroup = m_defaultPageGroup.get();
return process->createWebPage(pageClient, this, pageGroup);
}
DownloadProxy* WebContext::download(WebPageProxy* initiatingPage, const ResourceRequest& request)
{
DownloadProxy* downloadProxy = createDownloadProxy();
uint64_t initiatingPageID = initiatingPage ? initiatingPage->pageID() : 0;
#if ENABLE(NETWORK_PROCESS)
if (usesNetworkProcess() && networkProcess()) {
// FIXME (NetworkProcess): Replicate whatever FrameLoader::setOriginalURLForDownloadRequest does with the request here.
networkProcess()->connection()->send(Messages::NetworkProcess::DownloadRequest(downloadProxy->downloadID(), request), 0);
return downloadProxy;
}
#endif
#if PLATFORM(QT)
ASSERT(initiatingPage); // Our design does not suppport downloads without a WebPage.
initiatingPage->handleDownloadRequest(downloadProxy);
#endif
m_processes[0]->send(Messages::WebProcess::DownloadRequest(downloadProxy->downloadID(), initiatingPageID, request), 0);
return downloadProxy;
}
void WebContext::postMessageToInjectedBundle(const String& messageName, APIObject* messageBody)
{
if (m_processes.isEmpty()) {
if (m_processModel == ProcessModelSharedSecondaryProcess)
m_messagesToInjectedBundlePostedToEmptyContext.append(std::make_pair(messageName, messageBody));
return;
}
// FIXME: Return early if the message body contains any references to WKPageRefs/WKFrameRefs etc. since they're local to a process.
OwnPtr<CoreIPC::ArgumentEncoder> messageData = CoreIPC::ArgumentEncoder::create();
messageData->encode(messageName);
messageData->encode(WebContextUserMessageEncoder(messageBody));
for (size_t i = 0; i < m_processes.size(); ++i) {
m_processes[i]->send(Messages::WebProcess::PostInjectedBundleMessage(CoreIPC::DataReference(messageData->buffer(), messageData->bufferSize())), 0);
}
}
// InjectedBundle client
void WebContext::didReceiveMessageFromInjectedBundle(const String& messageName, APIObject* messageBody)
{
m_injectedBundleClient.didReceiveMessageFromInjectedBundle(this, messageName, messageBody);
}
void WebContext::didReceiveSynchronousMessageFromInjectedBundle(const String& messageName, APIObject* messageBody, RefPtr<APIObject>& returnData)
{
m_injectedBundleClient.didReceiveSynchronousMessageFromInjectedBundle(this, messageName, messageBody, returnData);
}
void WebContext::populateVisitedLinks()
{
m_historyClient.populateVisitedLinks(this);
}
WebContext::Statistics& WebContext::statistics()
{
static Statistics statistics = Statistics();
return statistics;
}
#if ENABLE(NETSCAPE_PLUGIN_API)
void WebContext::setAdditionalPluginsDirectory(const String& directory)
{
Vector<String> directories;
directories.append(directory);
m_pluginInfoStore.setAdditionalPluginsDirectories(directories);
}
#endif // ENABLE(NETSCAPE_PLUGIN_API)
void WebContext::setAlwaysUsesComplexTextCodePath(bool alwaysUseComplexText)
{
m_alwaysUsesComplexTextCodePath = alwaysUseComplexText;
sendToAllProcesses(Messages::WebProcess::SetAlwaysUsesComplexTextCodePath(alwaysUseComplexText));
}
void WebContext::setShouldUseFontSmoothing(bool useFontSmoothing)
{
m_shouldUseFontSmoothing = useFontSmoothing;
sendToAllProcesses(Messages::WebProcess::SetShouldUseFontSmoothing(useFontSmoothing));
}
void WebContext::registerURLSchemeAsEmptyDocument(const String& urlScheme)
{
m_schemesToRegisterAsEmptyDocument.add(urlScheme);
sendToAllProcesses(Messages::WebProcess::RegisterURLSchemeAsEmptyDocument(urlScheme));
}
void WebContext::registerURLSchemeAsSecure(const String& urlScheme)
{
m_schemesToRegisterAsSecure.add(urlScheme);
sendToAllProcesses(Messages::WebProcess::RegisterURLSchemeAsSecure(urlScheme));
}
void WebContext::setDomainRelaxationForbiddenForURLScheme(const String& urlScheme)
{
m_schemesToSetDomainRelaxationForbiddenFor.add(urlScheme);
sendToAllProcesses(Messages::WebProcess::SetDomainRelaxationForbiddenForURLScheme(urlScheme));
}
void WebContext::registerURLSchemeAsLocal(const String& urlScheme)
{
m_schemesToRegisterAsLocal.add(urlScheme);
sendToAllProcesses(Messages::WebProcess::RegisterURLSchemeAsLocal(urlScheme));
}
void WebContext::registerURLSchemeAsNoAccess(const String& urlScheme)
{
m_schemesToRegisterAsNoAccess.add(urlScheme);
sendToAllProcesses(Messages::WebProcess::RegisterURLSchemeAsNoAccess(urlScheme));
}
void WebContext::registerURLSchemeAsDisplayIsolated(const String& urlScheme)
{
m_schemesToRegisterAsDisplayIsolated.add(urlScheme);
sendToAllProcesses(Messages::WebProcess::RegisterURLSchemeAsDisplayIsolated(urlScheme));
}
void WebContext::registerURLSchemeAsCORSEnabled(const String& urlScheme)
{
m_schemesToRegisterAsCORSEnabled.add(urlScheme);
sendToAllProcesses(Messages::WebProcess::RegisterURLSchemeAsCORSEnabled(urlScheme));
}
void WebContext::setCacheModel(CacheModel cacheModel)
{
m_cacheModel = cacheModel;
sendToAllProcesses(Messages::WebProcess::SetCacheModel(static_cast<uint32_t>(m_cacheModel)));
// FIXME: Inform the Network Process if in use.
}
void WebContext::setDefaultRequestTimeoutInterval(double timeoutInterval)
{
sendToAllProcesses(Messages::WebProcess::SetDefaultRequestTimeoutInterval(timeoutInterval));
}
void WebContext::addVisitedLink(const String& visitedURL)
{
if (visitedURL.isEmpty())
return;
LinkHash linkHash = visitedLinkHash(visitedURL);
addVisitedLinkHash(linkHash);
}
void WebContext::addVisitedLinkHash(LinkHash linkHash)
{
m_visitedLinkProvider.addVisitedLink(linkHash);
}
DownloadProxy* WebContext::createDownloadProxy()
{
#if ENABLE(NETWORK_PROCESS)
if (usesNetworkProcess())
return m_networkProcess->createDownloadProxy();
#endif
return ensureSharedWebProcess()->createDownloadProxy();
}
// FIXME: This is not the ideal place for this function.
HashSet<String, CaseFoldingHash> WebContext::pdfAndPostScriptMIMETypes()
{
HashSet<String, CaseFoldingHash> mimeTypes;
mimeTypes.add("application/pdf");
mimeTypes.add("application/postscript");
mimeTypes.add("text/pdf");
return mimeTypes;
}
void WebContext::addMessageReceiver(CoreIPC::StringReference messageReceiverName, CoreIPC::MessageReceiver* messageReceiver)
{
m_messageReceiverMap.addMessageReceiver(messageReceiverName, messageReceiver);
}
void WebContext::addMessageReceiver(CoreIPC::StringReference messageReceiverName, uint64_t destinationID, CoreIPC::MessageReceiver* messageReceiver)
{
m_messageReceiverMap.addMessageReceiver(messageReceiverName, destinationID, messageReceiver);
}
void WebContext::removeMessageReceiver(CoreIPC::StringReference messageReceiverName, uint64_t destinationID)
{
m_messageReceiverMap.removeMessageReceiver(messageReceiverName, destinationID);
}
bool WebContext::dispatchMessage(CoreIPC::Connection* connection, CoreIPC::MessageDecoder& decoder)
{
return m_messageReceiverMap.dispatchMessage(connection, decoder);
}
bool WebContext::dispatchSyncMessage(CoreIPC::Connection* connection, CoreIPC::MessageDecoder& decoder, OwnPtr<CoreIPC::MessageEncoder>& replyEncoder)
{
return m_messageReceiverMap.dispatchSyncMessage(connection, decoder, replyEncoder);
}
void WebContext::didReceiveMessage(CoreIPC::Connection* connection, CoreIPC::MessageDecoder& decoder)
{
if (decoder.messageReceiverName() == Messages::WebContext::messageReceiverName()) {
didReceiveWebContextMessage(connection, decoder);
return;
}
if (decoder.messageReceiverName() == WebContextLegacyMessages::messageReceiverName()
&& decoder.messageName() == WebContextLegacyMessages::postMessageMessageName()) {
String messageName;
RefPtr<APIObject> messageBody;
WebContextUserMessageDecoder messageBodyDecoder(messageBody, WebProcessProxy::fromConnection(connection));
if (!decoder.decode(messageName))
return;
if (!decoder.decode(messageBodyDecoder))
return;
didReceiveMessageFromInjectedBundle(messageName, messageBody.get());
return;
}
ASSERT_NOT_REACHED();
}
void WebContext::didReceiveSyncMessage(CoreIPC::Connection* connection, CoreIPC::MessageDecoder& decoder, OwnPtr<CoreIPC::MessageEncoder>& replyEncoder)
{
if (decoder.messageReceiverName() == Messages::WebContext::messageReceiverName()) {
didReceiveSyncWebContextMessage(connection, decoder, replyEncoder);
return;
}
if (decoder.messageReceiverName() == WebContextLegacyMessages::messageReceiverName()
&& decoder.messageName() == WebContextLegacyMessages::postSynchronousMessageMessageName()) {
// FIXME: We should probably encode something in the case that the arguments do not decode correctly.
String messageName;
RefPtr<APIObject> messageBody;
WebContextUserMessageDecoder messageBodyDecoder(messageBody, WebProcessProxy::fromConnection(connection));
if (!decoder.decode(messageName))
return;
if (!decoder.decode(messageBodyDecoder))
return;
RefPtr<APIObject> returnData;
didReceiveSynchronousMessageFromInjectedBundle(messageName, messageBody.get(), returnData);
replyEncoder->encode(WebContextUserMessageEncoder(returnData.get()));
return;
}
ASSERT_NOT_REACHED();
}
void WebContext::setEnhancedAccessibility(bool flag)
{
sendToAllProcesses(Messages::WebProcess::SetEnhancedAccessibility(flag));
}
void WebContext::startMemorySampler(const double interval)
{
// For new WebProcesses we will also want to start the Memory Sampler
m_memorySamplerEnabled = true;
m_memorySamplerInterval = interval;
// For UIProcess
#if ENABLE(MEMORY_SAMPLER)
WebMemorySampler::shared()->start(interval);
#endif
// For WebProcess
SandboxExtension::Handle sampleLogSandboxHandle;
double now = WTF::currentTime();
String sampleLogFilePath = String::format("WebProcess%llu", static_cast<unsigned long long>(now));
sampleLogFilePath = SandboxExtension::createHandleForTemporaryFile(sampleLogFilePath, SandboxExtension::ReadWrite, sampleLogSandboxHandle);
sendToAllProcesses(Messages::WebProcess::StartMemorySampler(sampleLogSandboxHandle, sampleLogFilePath, interval));
}
void WebContext::stopMemorySampler()
{
// For WebProcess
m_memorySamplerEnabled = false;
// For UIProcess
#if ENABLE(MEMORY_SAMPLER)
WebMemorySampler::shared()->stop();
#endif
sendToAllProcesses(Messages::WebProcess::StopMemorySampler());
}
String WebContext::databaseDirectory() const
{
if (!m_overrideDatabaseDirectory.isEmpty())
return m_overrideDatabaseDirectory;
return platformDefaultDatabaseDirectory();
}
void WebContext::setIconDatabasePath(const String& path)
{
m_overrideIconDatabasePath = path;
m_iconDatabase->setDatabasePath(path);
}
String WebContext::iconDatabasePath() const
{
if (!m_overrideIconDatabasePath.isEmpty())
return m_overrideIconDatabasePath;
return platformDefaultIconDatabasePath();
}
String WebContext::localStorageDirectory() const
{
if (!m_overrideLocalStorageDirectory.isEmpty())
return m_overrideLocalStorageDirectory;
return platformDefaultLocalStorageDirectory();
}
String WebContext::diskCacheDirectory() const
{
if (!m_overrideDiskCacheDirectory.isEmpty())
return m_overrideDiskCacheDirectory;
return platformDefaultDiskCacheDirectory();
}
String WebContext::cookieStorageDirectory() const
{
if (!m_overrideCookieStorageDirectory.isEmpty())
return m_overrideCookieStorageDirectory;
return platformDefaultCookieStorageDirectory();
}
void WebContext::allowSpecificHTTPSCertificateForHost(const WebCertificateInfo* certificate, const String& host)
{
#if ENABLE(NETWORK_PROCESS)
if (m_usesNetworkProcess && m_networkProcess) {
m_networkProcess->send(Messages::NetworkProcess::AllowSpecificHTTPSCertificateForHost(certificate->platformCertificateInfo(), host), 0);
return;
}
#else
UNUSED_PARAM(certificate);
UNUSED_PARAM(host);
#endif
// FIXME: It's unclear whether we want this SPI to be exposed and used for clients that don't use the NetworkProcess.
ASSERT_NOT_REACHED();
}
void WebContext::setHTTPPipeliningEnabled(bool enabled)
{
#if PLATFORM(MAC)
ResourceRequest::setHTTPPipeliningEnabled(enabled);
#else
UNUSED_PARAM(enabled);
#endif
}
bool WebContext::httpPipeliningEnabled() const
{
#if PLATFORM(MAC)
return ResourceRequest::httpPipeliningEnabled();
#else
return false;
#endif
}
void WebContext::getStatistics(uint32_t statisticsMask, PassRefPtr<DictionaryCallback> callback)
{
if (!statisticsMask) {
callback->invalidate();
return;
}
RefPtr<StatisticsRequest> request = StatisticsRequest::create(callback);
if (statisticsMask & StatisticsRequestTypeWebContent)
requestWebContentStatistics(request.get());
if (statisticsMask & StatisticsRequestTypeNetworking)
requestNetworkingStatistics(request.get());
}
void WebContext::requestWebContentStatistics(StatisticsRequest* request)
{
if (m_processModel == ProcessModelSharedSecondaryProcess) {
if (m_processes.isEmpty())
return;
uint64_t requestID = request->addOutstandingRequest();
m_statisticsRequests.set(requestID, request);
m_processes[0]->send(Messages::WebProcess::GetWebCoreStatistics(requestID), 0);
} else {
// FIXME (Multi-WebProcess) <rdar://problem/13200059>: Make getting statistics from multiple WebProcesses work.
}
}
void WebContext::requestNetworkingStatistics(StatisticsRequest* request)
{
bool networkProcessUnavailable;
#if ENABLE(NETWORK_PROCESS)
networkProcessUnavailable = !m_usesNetworkProcess || !m_networkProcess;
#else
networkProcessUnavailable = true;
#endif
if (networkProcessUnavailable) {
LOG_ERROR("Attempt to get NetworkProcess statistics but the NetworkProcess is unavailable");
return;
}
#if ENABLE(NETWORK_PROCESS)
uint64_t requestID = request->addOutstandingRequest();
m_statisticsRequests.set(requestID, request);
m_networkProcess->send(Messages::NetworkProcess::GetNetworkProcessStatistics(requestID), 0);
#endif
}
#if !PLATFORM(MAC)
void WebContext::dummy(bool&)
{
}
#endif
void WebContext::didGetStatistics(const StatisticsData& statisticsData, uint64_t requestID)
{
RefPtr<StatisticsRequest> request = m_statisticsRequests.take(requestID);
if (!request) {
LOG_ERROR("Cannot report networking statistics.");
return;
}
request->completedRequest(requestID, statisticsData);
}
void WebContext::garbageCollectJavaScriptObjects()
{
sendToAllProcesses(Messages::WebProcess::GarbageCollectJavaScriptObjects());
}
void WebContext::setJavaScriptGarbageCollectorTimerEnabled(bool flag)
{
sendToAllProcesses(Messages::WebProcess::SetJavaScriptGarbageCollectorTimerEnabled(flag));
}
void WebContext::addPlugInAutoStartOriginHash(const String& pageOrigin, unsigned plugInOriginHash)
{
m_plugInAutoStartProvider.addAutoStartOriginHash(pageOrigin, plugInOriginHash);
}
void WebContext::plugInDidReceiveUserInteraction(unsigned plugInOriginHash)
{
m_plugInAutoStartProvider.didReceiveUserInteraction(plugInOriginHash);
}
PassRefPtr<ImmutableDictionary> WebContext::plugInAutoStartOriginHashes() const
{
return m_plugInAutoStartProvider.autoStartOriginsTableCopy();
}
void WebContext::setPlugInAutoStartOriginHashes(ImmutableDictionary& dictionary)
{
m_plugInAutoStartProvider.setAutoStartOriginsTable(dictionary);
}
void WebContext::setPlugInAutoStartOrigins(ImmutableArray& array)
{
m_plugInAutoStartProvider.setAutoStartOriginsArray(array);
}
#if ENABLE(CUSTOM_PROTOCOLS)
void WebContext::registerSchemeForCustomProtocol(const String& scheme)
{
sendToNetworkingProcess(Messages::CustomProtocolManager::RegisterScheme(scheme));
}
void WebContext::unregisterSchemeForCustomProtocol(const String& scheme)
{
sendToNetworkingProcess(Messages::CustomProtocolManager::UnregisterScheme(scheme));
}
#endif
#if ENABLE(NETSCAPE_PLUGIN_API)
void WebContext::pluginInfoStoreDidLoadPlugins(PluginInfoStore* store)
{
ASSERT(store == &m_pluginInfoStore);
Vector<RefPtr<APIObject> > pluginArray;
Vector<PluginModuleInfo> plugins = m_pluginInfoStore.plugins();
for (size_t i = 0; i < plugins.size(); ++i) {
PluginModuleInfo& plugin = plugins[i];
ImmutableDictionary::MapType map;
map.set(ASCIILiteral("path"), WebString::create(plugin.path));
map.set(ASCIILiteral("name"), WebString::create(plugin.info.name));
map.set(ASCIILiteral("file"), WebString::create(plugin.info.file));
map.set(ASCIILiteral("desc"), WebString::create(plugin.info.desc));
Vector<RefPtr<APIObject> > mimeArray;
for (size_t j = 0; j < plugin.info.mimes.size(); ++j)
mimeArray.append(WebString::create(plugin.info.mimes[j].type));
map.set(ASCIILiteral("mimes"), ImmutableArray::adopt(mimeArray));
#if PLATFORM(MAC)
map.set(ASCIILiteral("bundleId"), WebString::create(plugin.bundleIdentifier));
map.set(ASCIILiteral("version"), WebString::create(plugin.versionString));
#endif
pluginArray.append(ImmutableDictionary::adopt(map));
}
m_client.plugInInformationBecameAvailable(this, ImmutableArray::adopt(pluginArray).leakRef());
}
#endif
} // namespace WebKit