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
|
/*
* Copyright (C) 2010 Apple Inc. All rights reserved.
* Portions Copyright (c) 2011 Motorola Mobility, 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 MOTOROLA 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 MOTOROLA 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 "WebProcess.h"
#include "Logging.h"
#include "SystemSettingsManager.h"
#include "WebKitWebProcessExtensionPrivate.h"
#include "WebPage.h"
#include "WebProcessCreationParameters.h"
#include "WebProcessExtensionManager.h"
#include <WebCore/PlatformScreen.h>
#include <WebCore/RenderTheme.h>
#include <WebCore/ScreenProperties.h>
#if ENABLE(REMOTE_INSPECTOR)
#include <JavaScriptCore/RemoteInspector.h>
#endif
#if USE(GSTREAMER)
#include <WebCore/GStreamerCommon.h>
#endif
#include <WebCore/ApplicationGLib.h>
#include <WebCore/MemoryCache.h>
#if USE(WPE_RENDERER)
#include <WebCore/PlatformDisplayLibWPE.h>
#include <wpe/wpe.h>
#endif
#if USE(GBM)
#include <WebCore/DRMDeviceManager.h>
#endif
#if PLATFORM(GTK) || PLATFORM(WPE)
#include <WebCore/PlatformDisplayGBM.h>
#include <WebCore/PlatformDisplaySurfaceless.h>
#endif
#if PLATFORM(GTK)
#include <WebCore/PlatformDisplayDefault.h>
#endif
#if PLATFORM(GTK) && !USE(GTK4) && USE(CAIRO)
#include <WebCore/ScrollbarThemeGtk.h>
#endif
#if ENABLE(MEDIA_STREAM)
#include "UserMediaCaptureManager.h"
#endif
#if HAVE(MALLOC_TRIM)
#include <malloc.h>
#endif
#if OS(LINUX)
#include <wtf/linux/RealTimeThreads.h>
#endif
#if USE(ATSPI)
#include <WebCore/AccessibilityAtspi.h>
#endif
#if USE(CAIRO)
#include <WebCore/CairoUtilities.h>
#endif
#if USE(SKIA)
#include <WebCore/ProcessCapabilities.h>
#include <wtf/ASCIICType.h>
#endif
#define RELEASE_LOG_SESSION_ID (m_sessionID ? m_sessionID->toUInt64() : 0)
#define WEBPROCESS_RELEASE_LOG(channel, fmt, ...) RELEASE_LOG(channel, "%p - [sessionID=%" PRIu64 "] WebProcess::" fmt, this, RELEASE_LOG_SESSION_ID, ##__VA_ARGS__)
#define WEBPROCESS_RELEASE_LOG_ERROR(channel, fmt, ...) RELEASE_LOG_ERROR(channel, "%p - [sessionID=%" PRIu64 "] WebProcess::" fmt, this, RELEASE_LOG_SESSION_ID, ##__VA_ARGS__)
namespace WebKit {
using namespace WebCore;
void WebProcess::stopRunLoop()
{
// Pages are normally closed after Close message is received from the UI
// process, but it can happen that the connection is closed before the
// Close message is processed because the UI process close the socket
// right after sending the Close message. Close here any pending page to
// ensure the threaded compositor is invalidated and GL resources
// released (see https://bugs.webkit.org/show_bug.cgi?id=217655).
for (auto& webPage : copyToVector(m_pageMap.values()))
webPage->close();
AuxiliaryProcess::stopRunLoop();
}
void WebProcess::platformSetCacheModel(CacheModel cacheModel)
{
WebCore::MemoryCache::singleton().setDisabled(cacheModel == CacheModel::DocumentViewer);
}
void WebProcess::platformInitializeProcess(const AuxiliaryProcessInitializationParameters&)
{
#if OS(LINUX)
// Disable RealTimeThreads in WebProcess initially, since it depends on having a visible web page.
RealTimeThreads::singleton().setEnabled(false);
#endif
addSupplementWithoutRefCountedCheck<SystemSettingsManager>();
}
void WebProcess::initializePlatformDisplayIfNeeded() const
{
if (PlatformDisplay::sharedDisplayIfExists())
return;
#if USE(GBM)
if (m_rendererBufferTransportMode.contains(RendererBufferTransportMode::Hardware)) {
bool disabled = false;
#if PLATFORM(GTK)
const char* disableGBM = getenv("WEBKIT_DMABUF_RENDERER_DISABLE_GBM");
disabled = disableGBM && strcmp(disableGBM, "0");
#endif
if (!disabled) {
if (auto* device = DRMDeviceManager::singleton().mainGBMDeviceNode(DRMDeviceManager::NodeType::Render)) {
PlatformDisplay::setSharedDisplay(PlatformDisplayGBM::create(device));
return;
}
}
}
#endif
if (auto display = PlatformDisplaySurfaceless::create()) {
PlatformDisplay::setSharedDisplay(WTFMove(display));
return;
}
#if PLATFORM(GTK)
if (auto display = PlatformDisplayDefault::create()) {
PlatformDisplay::setSharedDisplay(WTFMove(display));
return;
}
#endif
WTFLogAlways("Could not create EGL display: no supported platform available. Aborting...");
CRASH();
}
void WebProcess::platformInitializeWebProcess(WebProcessCreationParameters& parameters)
{
#if USE(SKIA)
#if PLATFORM(WPE)
bool useAcceleratedBuffers = false;
#else
bool useAcceleratedBuffers = true;
#endif
if (const auto enableCPURendering = StringView::fromLatin1(g_getenv("WEBKIT_SKIA_ENABLE_CPU_RENDERING")).trim(isASCIIWhitespace<LChar>))
useAcceleratedBuffers = (enableCPURendering == "0"_s);
ProcessCapabilities::setCanUseAcceleratedBuffers(useAcceleratedBuffers);
#endif
#if ENABLE(MEDIA_STREAM)
addSupplementWithoutRefCountedCheck<UserMediaCaptureManager>();
#endif
#if USE(GBM)
DRMDeviceManager::singleton().initializeMainDevice(parameters.renderDeviceFile);
#endif
m_rendererBufferTransportMode = parameters.rendererBufferTransportMode;
#if PLATFORM(WPE)
if (!parameters.isServiceWorkerProcess) {
if (m_rendererBufferTransportMode.isEmpty()) {
auto& implementationLibraryName = parameters.implementationLibraryName;
if (!implementationLibraryName.isNull() && implementationLibraryName.data()[0] != '\0')
wpe_loader_init(parameters.implementationLibraryName.data());
PlatformDisplay::setSharedDisplay(PlatformDisplayLibWPE::create(parameters.hostClientFileDescriptor.release()));
} else
initializePlatformDisplayIfNeeded();
}
#endif
#if USE(GSTREAMER)
WebCore::setGStreamerOptionsFromUIProcess(WTFMove(parameters.gstreamerOptions));
#endif
#if PLATFORM(GTK) && !USE(GTK4) && USE(CAIRO)
setUseSystemAppearanceForScrollbars(parameters.useSystemAppearanceForScrollbars);
#endif
if (parameters.memoryPressureHandlerConfiguration)
MemoryPressureHandler::singleton().setConfiguration(WTFMove(*parameters.memoryPressureHandlerConfiguration));
if (!parameters.applicationID.isEmpty())
WebCore::setApplicationID(parameters.applicationID);
if (!parameters.applicationName.isEmpty())
WebCore::setApplicationName(parameters.applicationName);
#if ENABLE(REMOTE_INSPECTOR)
if (!parameters.inspectorServerAddress.isNull())
Inspector::RemoteInspector::setInspectorServerAddress(WTFMove(parameters.inspectorServerAddress));
#endif
#if USE(ATSPI)
AccessibilityAtspi::singleton().connect(parameters.accessibilityBusAddress, parameters.accessibilityBusName);
#endif
if (parameters.disableFontHintingForTesting)
FontRenderOptions::singleton().disableHintingForTesting();
#if PLATFORM(GTK)
WebCore::setScreenProperties(parameters.screenProperties);
#endif
#if PLATFORM(WPE) && ENABLE(WPE_PLATFORM)
if (!m_rendererBufferTransportMode.isEmpty())
WebCore::setScreenProperties(parameters.screenProperties);
#endif
}
void WebProcess::platformSetWebsiteDataStoreParameters(WebProcessDataStoreParameters&&)
{
}
void WebProcess::platformTerminate()
{
}
void WebProcess::sendMessageToWebProcessExtension(UserMessage&& message)
{
if (auto* extension = WebProcessExtensionManager::singleton().extension())
webkitWebProcessExtensionDidReceiveUserMessage(extension, WTFMove(message));
}
#if PLATFORM(GTK) && !USE(GTK4) && USE(CAIRO)
void WebProcess::setUseSystemAppearanceForScrollbars(bool useSystemAppearanceForScrollbars)
{
static_cast<ScrollbarThemeGtk&>(ScrollbarTheme::theme()).setUseSystemAppearance(useSystemAppearanceForScrollbars);
}
#endif
void WebProcess::grantAccessToAssetServices(Vector<WebKit::SandboxExtension::Handle>&&)
{
}
void WebProcess::revokeAccessToAssetServices()
{
}
void WebProcess::switchFromStaticFontRegistryToUserFontRegistry(Vector<WebKit::SandboxExtension::Handle>&&)
{
}
void WebProcess::releaseSystemMallocMemory()
{
#if HAVE(MALLOC_TRIM)
#if !RELEASE_LOG_DISABLED
const auto startTime = MonotonicTime::now();
#endif
malloc_trim(0);
#if !RELEASE_LOG_DISABLED
const auto endTime = MonotonicTime::now();
WEBPROCESS_RELEASE_LOG(ProcessSuspension, "releaseSystemMallocMemory: took %.2fms", (endTime - startTime).milliseconds());
#endif
#endif
}
#if PLATFORM(GTK) || PLATFORM(WPE)
void WebProcess::setScreenProperties(const WebCore::ScreenProperties& properties)
{
#if PLATFORM(GTK) || (PLATFORM(WPE) && ENABLE(WPE_PLATFORM))
WebCore::setScreenProperties(properties);
#endif
for (auto& page : m_pageMap.values())
page->screenPropertiesDidChange();
}
#endif
} // namespace WebKit
#undef RELEASE_LOG_SESSION_ID
#undef WEBPROCESS_RELEASE_LOG
#undef WEBPROCESS_RELEASE_LOG_ERROR
|