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
|
/*
* Copyright (C) 2024 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 "ModelProcess.h"
#if ENABLE(MODEL_PROCESS)
#include "ArgumentCoders.h"
#include "Attachment.h"
#include "AuxiliaryProcessMessages.h"
#include "LogInitialization.h"
#include "ModelConnectionToWebProcess.h"
#include "ModelProcessConnectionParameters.h"
#include "ModelProcessCreationParameters.h"
#include "ModelProcessProxyMessages.h"
#include "WebPageProxyMessages.h"
#include "WebProcessPoolMessages.h"
#include <WebCore/CommonAtomStrings.h>
#include <WebCore/LogInitialization.h>
#include <WebCore/MemoryRelease.h>
#include <wtf/Algorithms.h>
#include <wtf/CallbackAggregator.h>
#include <wtf/LogInitialization.h>
#include <wtf/MemoryPressureHandler.h>
#include <wtf/OptionSet.h>
#include <wtf/RunLoop.h>
#include <wtf/Scope.h>
#include <wtf/TZoneMallocInlines.h>
#include <wtf/UniqueRef.h>
#include <wtf/text/AtomString.h>
#if PLATFORM(VISION) && ENABLE(GPU_PROCESS)
#include "SharedFileHandle.h"
#include <WebKitAdditions/WKREEngine.h>
#endif
namespace WebKit {
WTF_MAKE_TZONE_ALLOCATED_IMPL(ModelProcess);
// We wouldn't want the ModelProcess to repeatedly exit then relaunch when under memory pressure. In particular, we need to make sure the
// WebProcess has a chance to schedule work after the ModelProcess gets launched. For this reason, we make sure that the ModelProcess never
// idle-exits less than 5 seconds after getting launched. This amount of time should be sufficient for the WebProcess to schedule
// work in the ModelProcess.
constexpr Seconds minimumLifetimeBeforeIdleExit { 5_s };
ModelProcess::ModelProcess(AuxiliaryProcessInitializationParameters&& parameters)
: m_idleExitTimer(*this, &ModelProcess::tryExitIfUnused)
{
initialize(WTFMove(parameters));
RELEASE_LOG(Process, "%p - ModelProcess::ModelProcess:", this);
}
ModelProcess::~ModelProcess() = default;
void ModelProcess::createModelConnectionToWebProcess(WebCore::ProcessIdentifier identifier, PAL::SessionID sessionID, IPC::Connection::Handle&& connectionHandle, ModelProcessConnectionParameters&& parameters, CompletionHandler<void()>&& completionHandler)
{
RELEASE_LOG(Process, "%p - ModelProcess::createModelConnectionToWebProcess: processIdentifier=%" PRIu64, this, identifier.toUInt64());
auto reply = makeScopeExit(WTFMove(completionHandler));
// If sender exited before we received the identifier, the identifier
// may not be valid.
if (!connectionHandle)
return;
#if PLATFORM(VISION) && ENABLE(GPU_PROCESS)
WKREEngine::shared().initializeWithSharedSimulationConnectionGetterIfNeeded([identifier, weakThis = WeakPtr { *this }] (CompletionHandler<void(std::optional<IPC::SharedFileHandle>)>&& completionHandler) {
RefPtr protectedThis = weakThis.get();
if (!protectedThis) {
completionHandler(std::nullopt);
return;
}
protectedThis->requestSharedSimulationConnection(identifier, WTFMove(completionHandler));
});
#endif
auto newConnection = ModelConnectionToWebProcess::create(*this, identifier, sessionID, WTFMove(connectionHandle), WTFMove(parameters));
#if ENABLE(IPC_TESTING_API)
if (parameters.ignoreInvalidMessageForTesting)
newConnection->connection().setIgnoreInvalidMessageForTesting();
#endif
ASSERT(!m_webProcessConnections.contains(identifier));
m_webProcessConnections.add(identifier, WTFMove(newConnection));
}
void ModelProcess::sharedPreferencesForWebProcessDidChange(WebCore::ProcessIdentifier identifier, SharedPreferencesForWebProcess&& sharedPreferencesForWebProcess, CompletionHandler<void()>&& completionHandler)
{
if (RefPtr connection = m_webProcessConnections.get(identifier))
connection->updateSharedPreferencesForWebProcess(WTFMove(sharedPreferencesForWebProcess));
completionHandler();
}
void ModelProcess::removeModelConnectionToWebProcess(ModelConnectionToWebProcess& connection)
{
RELEASE_LOG(Process, "%p - ModelProcess::removeModelConnectionToWebProcess: processIdentifier=%" PRIu64, this, connection.webProcessIdentifier().toUInt64());
ASSERT(m_webProcessConnections.contains(connection.webProcessIdentifier()));
m_webProcessConnections.remove(connection.webProcessIdentifier());
tryExitIfUnusedAndUnderMemoryPressure();
}
void ModelProcess::connectionToWebProcessClosed(IPC::Connection& connection)
{
}
bool ModelProcess::shouldTerminate()
{
return m_webProcessConnections.isEmpty();
}
bool ModelProcess::canExitUnderMemoryPressure() const
{
ASSERT(isMainRunLoop());
for (auto& webProcessConnection : m_webProcessConnections.values()) {
if (!webProcessConnection->allowsExitUnderMemoryPressure())
return false;
}
return true;
}
void ModelProcess::tryExitIfUnusedAndUnderMemoryPressure()
{
ASSERT(isMainRunLoop());
if (!MemoryPressureHandler::singleton().isUnderMemoryPressure())
return;
tryExitIfUnused();
}
void ModelProcess::tryExitIfUnused()
{
ASSERT(isMainRunLoop());
if (!canExitUnderMemoryPressure()) {
m_idleExitTimer.stop();
return;
}
// To avoid exiting the ModelProcess too aggressively while under memory pressure and make sure the WebProcess gets a
// change to schedule work, we don't exit if we've been running for less than |minimumLifetimeBeforeIdleExit|.
// In case of simulated memory pressure, we ignore this rule to avoid flakiness in our benchmarks and tests.
auto lifetime = MonotonicTime::now() - m_creationTime;
if (lifetime < minimumLifetimeBeforeIdleExit && !MemoryPressureHandler::singleton().isSimulatingMemoryPressure()) {
RELEASE_LOG(Process, "ModelProcess::tryExitIfUnused: ModelProcess is idle and under memory pressure but it is not exiting because it has just launched");
// Check again after the process have lived long enough (minimumLifetimeBeforeIdleExit) to see if the ModelProcess
// can idle-exit then.
if (!m_idleExitTimer.isActive())
m_idleExitTimer.startOneShot(minimumLifetimeBeforeIdleExit - lifetime);
return;
}
m_idleExitTimer.stop();
RELEASE_LOG(Process, "ModelProcess::tryExitIfUnused: ModelProcess is exiting because we are under memory pressure and the process is no longer useful.");
parentProcessConnection()->send(Messages::ModelProcessProxy::ProcessIsReadyToExit(), 0);
}
void ModelProcess::lowMemoryHandler(Critical critical, Synchronous synchronous)
{
RELEASE_LOG(Process, "ModelProcess::lowMemoryHandler: critical=%d, synchronous=%d", critical == Critical::Yes, synchronous == Synchronous::Yes);
tryExitIfUnused();
for (auto& connection : m_webProcessConnections.values())
connection->lowMemoryHandler(critical, synchronous);
WebCore::releaseGraphicsMemory(critical, synchronous);
}
void ModelProcess::initializeModelProcess(ModelProcessCreationParameters&& parameters, CompletionHandler<void()>&& completionHandler)
{
CompletionHandlerCallingScope callCompletionHandler(WTFMove(completionHandler));
WKREEngine::enableRestrictiveRenderingMode(parameters.restrictiveRenderingMode);
applyProcessCreationParameters(parameters.auxiliaryProcessParameters);
RELEASE_LOG(Process, "%p - ModelProcess::initializeModelProcess:", this);
WTF::Thread::setCurrentThreadIsUserInitiated();
WebCore::initializeCommonAtomStrings();
auto& memoryPressureHandler = MemoryPressureHandler::singleton();
memoryPressureHandler.setLowMemoryHandler([this] (Critical critical, Synchronous synchronous) {
lowMemoryHandler(critical, synchronous);
});
memoryPressureHandler.install();
m_applicationVisibleName = WTFMove(parameters.applicationVisibleName);
// Match the QoS of the UIProcess since the model process is doing rendering on its behalf.
WTF::Thread::setCurrentThreadIsUserInteractive(0);
setLegacyPresentingApplicationPID(parameters.parentPID);
#if USE(OS_STATE)
registerWithStateDumper("ModelProcess state"_s);
#endif
}
void ModelProcess::prepareToSuspend(bool isSuspensionImminent, MonotonicTime, CompletionHandler<void()>&& completionHandler)
{
RELEASE_LOG(ProcessSuspension, "%p - ModelProcess::prepareToSuspend(), isSuspensionImminent: %d", this, isSuspensionImminent);
lowMemoryHandler(Critical::Yes, Synchronous::Yes);
completionHandler();
}
void ModelProcess::processDidResume()
{
RELEASE_LOG(ProcessSuspension, "%p - ModelProcess::processDidResume()", this);
resume();
}
void ModelProcess::resume()
{
}
ModelConnectionToWebProcess* ModelProcess::webProcessConnection(WebCore::ProcessIdentifier identifier) const
{
return m_webProcessConnections.get(identifier);
}
#if PLATFORM(VISION) && ENABLE(GPU_PROCESS)
void ModelProcess::requestSharedSimulationConnection(WebCore::ProcessIdentifier webProcessIdentifier, CompletionHandler<void(std::optional<IPC::SharedFileHandle>)>&& completionHandler)
{
parentProcessConnection()->sendWithAsyncReply(Messages::ModelProcessProxy::RequestSharedSimulationConnection(webProcessIdentifier), WTFMove(completionHandler));
}
#endif
void ModelProcess::webProcessConnectionCountForTesting(CompletionHandler<void(uint64_t)>&& completionHandler)
{
completionHandler(ModelConnectionToWebProcess::objectCountForTesting());
}
void ModelProcess::addSession(PAL::SessionID sessionID)
{
ASSERT(!m_sessions.contains(sessionID));
m_sessions.add(sessionID);
}
void ModelProcess::removeSession(PAL::SessionID sessionID)
{
ASSERT(m_sessions.contains(sessionID));
m_sessions.remove(sessionID);
}
} // namespace WebKit
#endif // ENABLE(MODEL_PROCESS)
|