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 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777
|
/*
* Copyright (C) 2010-2022 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.
*/
#pragma once
#include "APIUserInitiatedAction.h"
#include "AuxiliaryProcessProxy.h"
#include "BackgroundProcessResponsivenessTimer.h"
#include "MessageReceiverMap.h"
#include "NetworkProcessProxy.h"
#include "ProcessLauncher.h"
#include "ProcessTerminationReason.h"
#include "ProcessThrottler.h"
#include "ProcessThrottlerClient.h"
#include "RemoteWorkerInitializationData.h"
#include "ResponsivenessTimer.h"
#include "SpeechRecognitionServer.h"
#include "UserContentControllerIdentifier.h"
#include "VisibleWebPageCounter.h"
#include "WebConnectionToWebProcess.h"
#include "WebPageProxyIdentifier.h"
#include <WebCore/CrossOriginMode.h>
#include <WebCore/FrameIdentifier.h>
#include <WebCore/MediaProducer.h>
#include <WebCore/PageIdentifier.h>
#include <WebCore/ProcessIdentifier.h>
#include <WebCore/RegistrableDomain.h>
#include <WebCore/SharedStringHash.h>
#include <pal/SessionID.h>
#include <wtf/Forward.h>
#include <wtf/HashMap.h>
#include <wtf/HashSet.h>
#include <wtf/Logger.h>
#include <wtf/RefCounted.h>
#include <wtf/RefPtr.h>
#include <wtf/RobinHoodHashSet.h>
#include <wtf/UUID.h>
#include <wtf/WeakHashSet.h>
#if HAVE(MEDIA_ACCESSIBILITY_FRAMEWORK)
#include <WebCore/CaptionUserPreferences.h>
#endif
#if HAVE(CVDISPLAYLINK)
#include "DisplayLinkObserverID.h"
#include "DisplayLinkProcessProxyClient.h"
#endif
namespace API {
class Navigation;
class PageConfiguration;
}
namespace WebCore {
class DeferrableOneShotTimer;
class ResourceRequest;
struct NotificationData;
struct PluginInfo;
struct PrewarmInformation;
class SecurityOriginData;
enum class PermissionName : uint8_t;
enum class RenderAsTextFlag : uint16_t;
enum class ThirdPartyCookieBlockingMode : uint8_t;
using FramesPerSecond = unsigned;
using PlatformDisplayID = uint32_t;
}
namespace WTF {
class TextStream;
}
namespace WebKit {
class AudioSessionRoutingArbitratorProxy;
class ObjCObjectGraph;
class PageClient;
class ProvisionalFrameProxy;
class ProvisionalPageProxy;
class SuspendedPageProxy;
class UserMediaCaptureManagerProxy;
class VisitedLinkStore;
class WebBackForwardListItem;
class WebCompiledContentRuleListData;
class WebFrameProxy;
class WebLockRegistryProxy;
class WebPageGroup;
class WebPageProxy;
class WebPermissionControllerProxy;
class WebProcessPool;
class WebUserContentControllerProxy;
class WebsiteDataStore;
struct BackForwardListItemState;
struct GPUProcessConnectionParameters;
struct UserMessage;
struct WebNavigationDataStore;
struct WebPageCreationParameters;
struct WebPreferencesStore;
struct WebsiteData;
enum class RemoteWorkerType : uint8_t;
enum class WebsiteDataType : uint32_t;
#if ENABLE(MEDIA_STREAM)
class SpeechRecognitionRemoteRealtimeMediaSourceManager;
#endif
enum ForegroundWebProcessCounterType { };
typedef RefCounter<ForegroundWebProcessCounterType> ForegroundWebProcessCounter;
typedef ForegroundWebProcessCounter::Token ForegroundWebProcessToken;
enum BackgroundWebProcessCounterType { };
typedef RefCounter<BackgroundWebProcessCounterType> BackgroundWebProcessCounter;
typedef BackgroundWebProcessCounter::Token BackgroundWebProcessToken;
enum WebProcessWithAudibleMediaCounterType { };
using WebProcessWithAudibleMediaCounter = RefCounter<WebProcessWithAudibleMediaCounterType>;
using WebProcessWithAudibleMediaToken = WebProcessWithAudibleMediaCounter::Token;
enum WebProcessWithMediaStreamingCounterType { };
using WebProcessWithMediaStreamingCounter = RefCounter<WebProcessWithMediaStreamingCounterType>;
using WebProcessWithMediaStreamingToken = WebProcessWithMediaStreamingCounter::Token;
enum class CheckBackForwardList : bool { No, Yes };
class WebProcessProxy : public AuxiliaryProcessProxy, private ProcessThrottlerClient {
public:
using WebPageProxyMap = HashMap<WebPageProxyIdentifier, WeakPtr<WebPageProxy>>;
using UserInitiatedActionByAuthorizationTokenMap = HashMap<WTF::UUID, RefPtr<API::UserInitiatedAction>>;
typedef HashMap<WebCore::FrameIdentifier, WeakPtr<WebFrameProxy>> WebFrameProxyMap;
typedef HashMap<uint64_t, RefPtr<API::UserInitiatedAction>> UserInitiatedActionMap;
enum class IsPrewarmed : bool { No, Yes };
enum class ShouldLaunchProcess : bool { No, Yes };
enum class LockdownMode : bool { Disabled, Enabled };
static Ref<WebProcessProxy> create(WebProcessPool&, WebsiteDataStore*, LockdownMode, IsPrewarmed, WebCore::CrossOriginMode = WebCore::CrossOriginMode::Shared, ShouldLaunchProcess = ShouldLaunchProcess::Yes);
static Ref<WebProcessProxy> createForRemoteWorkers(RemoteWorkerType, WebProcessPool&, WebCore::RegistrableDomain&&, WebsiteDataStore&);
#if ENABLE(WEBCONTENT_CRASH_TESTING)
static Ref<WebProcessProxy> createForWebContentCrashy(WebProcessPool&);
#endif
~WebProcessProxy();
static void forWebPagesWithOrigin(PAL::SessionID, const WebCore::SecurityOriginData&, const Function<void(WebPageProxy&)>&);
static Vector<std::pair<WebCore::ProcessIdentifier, WebCore::RegistrableDomain>> allowedFirstPartiesForCookies();
WebConnection* webConnection() const { return m_webConnection.get(); }
unsigned suspendedPageCount() const { return m_suspendedPages.computeSize(); }
void addSuspendedPageProxy(SuspendedPageProxy&);
void removeSuspendedPageProxy(SuspendedPageProxy&);
WebProcessPool* processPoolIfExists() const;
WebProcessPool& processPool() const;
bool isMatchingRegistrableDomain(const WebCore::RegistrableDomain& domain) const { return m_registrableDomain ? *m_registrableDomain == domain : false; }
WebCore::RegistrableDomain registrableDomain() const { return valueOrDefault(m_registrableDomain); }
const std::optional<WebCore::RegistrableDomain>& optionalRegistrableDomain() const { return m_registrableDomain; }
enum class WillShutDown : bool { No, Yes };
void setIsInProcessCache(bool, WillShutDown = WillShutDown::No);
bool isInProcessCache() const { return m_isInProcessCache; }
void enableRemoteWorkers(RemoteWorkerType, const UserContentControllerIdentifier&);
void disableRemoteWorkers(OptionSet<RemoteWorkerType>);
WebsiteDataStore* websiteDataStore() const { ASSERT(m_websiteDataStore); return m_websiteDataStore.get(); }
void setWebsiteDataStore(WebsiteDataStore&);
PAL::SessionID sessionID() const;
static bool hasReachedProcessCountLimit();
static void setProcessCountLimit(unsigned);
static RefPtr<WebProcessProxy> processForIdentifier(WebCore::ProcessIdentifier);
static RefPtr<WebPageProxy> webPage(WebPageProxyIdentifier);
static RefPtr<WebPageProxy> audioCapturingWebPage();
#if ENABLE(WEBXR) && !USE(OPENXR)
static RefPtr<WebPageProxy> webPageWithActiveXRSession();
#endif
Ref<WebPageProxy> createWebPage(PageClient&, Ref<API::PageConfiguration>&&);
enum class BeginsUsingDataStore : bool { No, Yes };
void addExistingWebPage(WebPageProxy&, BeginsUsingDataStore);
enum class EndsUsingDataStore : bool { No, Yes };
void removeWebPage(WebPageProxy&, EndsUsingDataStore);
void addProvisionalPageProxy(ProvisionalPageProxy&);
void removeProvisionalPageProxy(ProvisionalPageProxy&);
void addProvisionalFrameProxy(ProvisionalFrameProxy&);
void removeProvisionalFrameProxy(ProvisionalFrameProxy&);
void provisionalFrameCommitted(WebFrameProxy&);
void removeFrameWithRemoteFrameProcess(WebFrameProxy&);
Vector<RefPtr<WebPageProxy>> pages() const;
unsigned pageCount() const { return m_pageMap.size(); }
unsigned provisionalPageCount() const { return m_provisionalPages.computeSize(); }
unsigned visiblePageCount() const { return m_visiblePageCounter.value(); }
void activePagesDomainsForTesting(CompletionHandler<void(Vector<String>&&)>&&); // This is what is reported to ActivityMonitor.
bool isRunningServiceWorkers() const { return !!m_serviceWorkerInformation; }
bool isStandaloneServiceWorkerProcess() const { return isRunningServiceWorkers() && !pageCount(); }
bool isRunningSharedWorkers() const { return !!m_sharedWorkerInformation; }
bool isStandaloneSharedWorkerProcess() const { return isRunningSharedWorkers() && !pageCount(); }
bool isRunningWorkers() const { return m_sharedWorkerInformation || m_serviceWorkerInformation; }
bool isDummyProcessProxy() const;
#if ENABLE(WEBCONTENT_CRASH_TESTING)
bool isCrashyProcess() const { return m_isWebContentCrashyProcess; }
#endif
void didCreateWebPageInProcess(WebCore::PageIdentifier);
void addVisitedLinkStoreUser(VisitedLinkStore&, WebPageProxyIdentifier);
void removeVisitedLinkStoreUser(VisitedLinkStore&, WebPageProxyIdentifier);
void addWebUserContentControllerProxy(WebUserContentControllerProxy&);
void didDestroyWebUserContentControllerProxy(WebUserContentControllerProxy&);
void recordUserGestureAuthorizationToken(WTF::UUID);
RefPtr<API::UserInitiatedAction> userInitiatedActivity(uint64_t);
RefPtr<API::UserInitiatedAction> userInitiatedActivity(std::optional<WTF::UUID>, uint64_t);
void consumeIfNotVerifiablyFromUIProcess(API::UserInitiatedAction&, std::optional<WTF::UUID>);
bool isResponsive() const;
VisibleWebPageToken visiblePageToken() const;
void addPreviouslyApprovedFileURL(const URL&);
bool wasPreviouslyApprovedFileURL(const URL&) const;
void updateTextCheckerState();
void willAcquireUniversalFileReadSandboxExtension() { m_mayHaveUniversalFileReadSandboxExtension = true; }
void assumeReadAccessToBaseURL(WebPageProxy&, const String&);
bool hasAssumedReadAccessToURL(const URL&) const;
bool checkURLReceivedFromWebProcess(const String&, CheckBackForwardList = CheckBackForwardList::Yes);
bool checkURLReceivedFromWebProcess(const URL&, CheckBackForwardList = CheckBackForwardList::Yes);
static bool fullKeyboardAccessEnabled();
#if HAVE(MOUSE_DEVICE_OBSERVATION)
static void notifyHasMouseDeviceChanged(bool hasMouseDevice);
#endif
#if HAVE(STYLUS_DEVICE_OBSERVATION)
static void notifyHasStylusDeviceChanged(bool hasStylusDevice);
#endif
void fetchWebsiteData(PAL::SessionID, OptionSet<WebsiteDataType>, CompletionHandler<void(WebsiteData)>&&);
void deleteWebsiteData(PAL::SessionID, OptionSet<WebsiteDataType>, WallTime modifiedSince, CompletionHandler<void()>&&);
void deleteWebsiteDataForOrigins(PAL::SessionID, OptionSet<WebsiteDataType>, const Vector<WebCore::SecurityOriginData>&, CompletionHandler<void()>&&);
#if ENABLE(TRACKING_PREVENTION)
static void notifyPageStatisticsAndDataRecordsProcessed();
static void notifyWebsiteDataDeletionForRegistrableDomainsFinished();
static void notifyWebsiteDataScanForRegistrableDomainsFinished();
void setThirdPartyCookieBlockingMode(WebCore::ThirdPartyCookieBlockingMode, CompletionHandler<void()>&&);
#endif
void enableSuddenTermination();
void disableSuddenTermination();
bool isSuddenTerminationEnabled() { return !m_numberOfTimesSuddenTerminationWasDisabled; }
void requestTermination(ProcessTerminationReason);
RefPtr<API::Object> transformHandlesToObjects(API::Object*);
static RefPtr<API::Object> transformObjectsToHandles(API::Object*);
#if PLATFORM(COCOA)
RefPtr<ObjCObjectGraph> transformHandlesToObjects(ObjCObjectGraph&);
static RefPtr<ObjCObjectGraph> transformObjectsToHandles(ObjCObjectGraph&);
#endif
void windowServerConnectionStateChanged();
void setIsHoldingLockedFiles(bool);
ProcessThrottler& throttler() final { return m_throttler; }
const ProcessThrottler& throttler() const { return m_throttler; }
void isResponsive(CompletionHandler<void(bool isWebProcessResponsive)>&&);
void isResponsiveWithLazyStop();
void didReceiveBackgroundResponsivenessPing();
void memoryPressureStatusChanged(bool isUnderMemoryPressure) { m_isUnderMemoryPressure = isUnderMemoryPressure; }
bool isUnderMemoryPressure() const { return m_isUnderMemoryPressure; }
void processTerminated();
void didExceedCPULimit();
void didExceedActiveMemoryLimit();
void didExceedInactiveMemoryLimit();
void didCommitProvisionalLoad() { m_hasCommittedAnyProvisionalLoads = true; }
bool hasCommittedAnyProvisionalLoads() const { return m_hasCommittedAnyProvisionalLoads; }
void didCommitMeaningfulProvisionalLoad() { m_hasCommittedAnyMeaningfulProvisionalLoads = true; }
bool hasCommittedAnyMeaningfulProvisionalLoads() const { return m_hasCommittedAnyMeaningfulProvisionalLoads; }
#if PLATFORM(WATCHOS)
void startBackgroundActivityForFullscreenInput();
void endBackgroundActivityForFullscreenInput();
#endif
bool isPrewarmed() const { return m_isPrewarmed; }
void markIsNoLongerInPrewarmedPool();
#if PLATFORM(COCOA)
Vector<String> mediaMIMETypes() const;
void cacheMediaMIMETypes(const Vector<String>&);
#endif
#if PLATFORM(MAC)
void requestHighPerformanceGPU();
void releaseHighPerformanceGPU();
#endif
#if HAVE(CVDISPLAYLINK)
DisplayLink::Client& displayLinkClient() { return m_displayLinkClient; }
std::optional<unsigned> nominalFramesPerSecondForDisplay(WebCore::PlatformDisplayID);
void startDisplayLink(DisplayLinkObserverID, WebCore::PlatformDisplayID, WebCore::FramesPerSecond);
void stopDisplayLink(DisplayLinkObserverID, WebCore::PlatformDisplayID);
void setDisplayLinkPreferredFramesPerSecond(DisplayLinkObserverID, WebCore::PlatformDisplayID, WebCore::FramesPerSecond);
void setDisplayLinkForDisplayWantsFullSpeedUpdates(WebCore::PlatformDisplayID, bool wantsFullSpeedUpdates);
#endif
// Called when the web process has crashed or we know that it will terminate soon.
// Will potentially cause the WebProcessProxy object to be freed.
void shutDown();
enum ShutdownPreventingScopeType { };
using ShutdownPreventingScopeCounter = RefCounter<ShutdownPreventingScopeType>;
ShutdownPreventingScopeCounter::Token shutdownPreventingScope() { return m_shutdownPreventingScopeCounter.count(); }
void didStartProvisionalLoadForMainFrame(const URL&);
// ProcessThrottlerClient
void sendPrepareToSuspend(IsSuspensionImminent, double remainingRunTime, CompletionHandler<void()>&&) final;
void sendProcessDidResume(ResumeReason) final;
void didChangeThrottleState(ProcessThrottleState) final;
void prepareToDropLastAssertion(CompletionHandler<void()>&&) final;
void didDropLastAssertion() final;
ASCIILiteral clientName() const final { return "WebProcess"_s; }
String environmentIdentifier() const final;
#if PLATFORM(COCOA)
enum SandboxExtensionType : uint32_t {
None = 0,
Video = 1 << 0,
Audio = 1 << 1
};
typedef uint32_t MediaCaptureSandboxExtensions;
bool hasVideoCaptureExtension() const { return m_mediaCaptureSandboxExtensions & Video; }
void grantVideoCaptureExtension() { m_mediaCaptureSandboxExtensions |= Video; }
void revokeVideoCaptureExtension() { m_mediaCaptureSandboxExtensions &= ~Video; }
bool hasAudioCaptureExtension() const { return m_mediaCaptureSandboxExtensions & Audio; }
void grantAudioCaptureExtension() { m_mediaCaptureSandboxExtensions |= Audio; }
void revokeAudioCaptureExtension() { m_mediaCaptureSandboxExtensions &= ~Audio; }
void sendAudioComponentRegistrations();
#endif
#if ENABLE(REMOTE_INSPECTOR) && PLATFORM(COCOA)
void enableRemoteInspectorIfNeeded();
#endif
#if PLATFORM(COCOA)
void unblockAccessibilityServerIfNeeded();
#endif
void updateAudibleMediaAssertions();
void updateMediaStreamingActivity();
void setRemoteWorkerUserAgent(const String&);
void updateRemoteWorkerPreferencesStore(const WebPreferencesStore&);
void establishRemoteWorkerContext(RemoteWorkerType, const WebPreferencesStore&, const WebCore::RegistrableDomain&, std::optional<WebCore::ScriptExecutionContextIdentifier> serviceWorkerPageIdentifier, CompletionHandler<void()>&&);
void registerRemoteWorkerClientProcess(RemoteWorkerType, WebProcessProxy&);
void unregisterRemoteWorkerClientProcess(RemoteWorkerType, WebProcessProxy&);
void updateRemoteWorkerProcessAssertion(RemoteWorkerType);
#if ENABLE(SERVICE_WORKER)
bool hasServiceWorkerPageProxy(WebPageProxyIdentifier pageProxyID) { return m_serviceWorkerInformation && m_serviceWorkerInformation->remoteWorkerPageProxyID == pageProxyID; }
bool hasServiceWorkerForegroundActivityForTesting() const;
bool hasServiceWorkerBackgroundActivityForTesting() const;
void startServiceWorkerBackgroundProcessing();
void endServiceWorkerBackgroundProcessing();
#endif
void setThrottleStateForTesting(ProcessThrottleState);
#if PLATFORM(COCOA) && ENABLE(MEDIA_STREAM)
UserMediaCaptureManagerProxy* userMediaCaptureManagerProxy() { return m_userMediaCaptureManagerProxy.get(); }
#endif
#if ENABLE(GPU_PROCESS)
void gpuProcessDidFinishLaunching();
void gpuProcessExited(ProcessTerminationReason);
#endif
#if PLATFORM(COCOA)
bool hasNetworkExtensionSandboxAccess() const { return m_hasNetworkExtensionSandboxAccess; }
void markHasNetworkExtensionSandboxAccess() { m_hasNetworkExtensionSandboxAccess = true; }
#endif
#if ENABLE(ROUTING_ARBITRATION)
AudioSessionRoutingArbitratorProxy& audioSessionRoutingArbitrator() { return m_routingArbitrator.get(); }
#endif
#if ENABLE(IPC_TESTING_API)
bool ignoreInvalidMessageForTesting() const { return m_ignoreInvalidMessageForTesting; }
void setIgnoreInvalidMessageForTesting();
#endif
bool allowTestOnlyIPC() const { return m_allowTestOnlyIPC; }
void setAllowTestOnlyIPC(bool allowTestOnlyIPC) { m_allowTestOnlyIPC = allowTestOnlyIPC; }
#if ENABLE(MEDIA_STREAM)
static void muteCaptureInPagesExcept(WebCore::PageIdentifier);
SpeechRecognitionRemoteRealtimeMediaSourceManager& ensureSpeechRecognitionRemoteRealtimeMediaSourceManager();
#endif
void pageMutedStateChanged(WebCore::PageIdentifier, WebCore::MediaProducerMutedStateFlags);
void pageIsBecomingInvisible(WebCore::PageIdentifier);
#if PLATFORM(COCOA) && ENABLE(REMOTE_INSPECTOR)
static bool shouldEnableRemoteInspector();
#endif
void markProcessAsRecentlyUsed();
#if PLATFORM(MAC) || PLATFORM(GTK) || PLATFORM(WPE)
void platformSuspendProcess();
void platformResumeProcess();
#endif
#if HAVE(MEDIA_ACCESSIBILITY_FRAMEWORK)
void setCaptionDisplayMode(WebCore::CaptionUserPreferences::CaptionDisplayMode);
void setCaptionLanguage(const String&);
#endif
void getNotifications(const URL&, const String&, CompletionHandler<void(Vector<WebCore::NotificationData>&&)>&&);
void setAppBadge(std::optional<WebPageProxyIdentifier>, const WebCore::SecurityOriginData&, std::optional<uint64_t> badge);
void setClientBadge(WebPageProxyIdentifier, const WebCore::SecurityOriginData&, std::optional<uint64_t> badge);
WebCore::CrossOriginMode crossOriginMode() const { return m_crossOriginMode; }
LockdownMode lockdownMode() const { return m_lockdownMode; }
#if PLATFORM(COCOA)
std::optional<audit_token_t> auditToken() const;
Vector<SandboxExtension::Handle> fontdMachExtensionHandles(SandboxExtension::MachBootstrapOptions) const;
#endif
bool isConnectedToHardwareConsole() const { return m_isConnectedToHardwareConsole; }
#if PLATFORM(MAC) || PLATFORM(MACCATALYST)
void hardwareConsoleStateChanged();
#endif
const WeakHashSet<WebProcessProxy>* serviceWorkerClientProcesses() const;
const WeakHashSet<WebProcessProxy>* sharedWorkerClientProcesses() const;
static void permissionChanged(WebCore::PermissionName, const WebCore::SecurityOriginData&);
void processPermissionChanged(WebCore::PermissionName, const WebCore::SecurityOriginData&);
void addAllowedFirstPartyForCookies(const WebCore::RegistrableDomain&);
Logger& logger();
void resetState();
protected:
WebProcessProxy(WebProcessPool&, WebsiteDataStore*, IsPrewarmed, WebCore::CrossOriginMode, LockdownMode);
// AuxiliaryProcessProxy
ASCIILiteral processName() const final { return "WebContent"_s; }
void getLaunchOptions(ProcessLauncher::LaunchOptions&) override;
void platformGetLaunchOptions(ProcessLauncher::LaunchOptions&) override;
void connectionWillOpen(IPC::Connection&) override;
void processWillShutDown(IPC::Connection&) override;
bool shouldSendPendingMessage(const PendingMessage&) final;
#if PLATFORM(COCOA)
void cacheMediaMIMETypesInternal(const Vector<String>&);
#endif
// ProcessLauncher::Client
void didFinishLaunching(ProcessLauncher*, IPC::Connection::Identifier) override;
bool shouldConfigureJSCForTesting() const final;
bool isJITEnabled() const final;
bool shouldEnableSharedArrayBuffer() const final { return m_crossOriginMode == WebCore::CrossOriginMode::Isolated; }
bool shouldEnableLockdownMode() const final { return m_lockdownMode == LockdownMode::Enabled; }
void validateFreezerStatus();
#if ENABLE(WEBCONTENT_CRASH_TESTING)
void setIsCrashyProcess() { m_isWebContentCrashyProcess = true; }
#endif
private:
using WebProcessProxyMap = HashMap<WebCore::ProcessIdentifier, WeakPtr<WebProcessProxy>>;
static WebProcessProxyMap& allProcessMap();
static Vector<RefPtr<WebProcessProxy>> allProcesses();
static WebPageProxyMap& globalPageMap();
static Vector<RefPtr<WebPageProxy>> globalPages();
void reportProcessDisassociatedWithPageIfNecessary(WebPageProxyIdentifier);
bool isAssociatedWithPage(WebPageProxyIdentifier) const;
void platformInitialize();
void platformDestroy();
// IPC message handlers.
void updateBackForwardItem(const BackForwardListItemState&);
void didDestroyFrame(WebCore::FrameIdentifier, WebPageProxyIdentifier);
void didDestroyUserGestureToken(uint64_t);
void postMessageToRemote(WebCore::FrameIdentifier, std::optional<WebCore::SecurityOriginData>, const WebCore::MessageWithMessagePorts&);
void renderTreeAsText(WebCore::FrameIdentifier, size_t baseIndent, OptionSet<WebCore::RenderAsTextFlag>, CompletionHandler<void(String)>&&);
bool canBeAddedToWebProcessCache() const;
void shouldTerminate(CompletionHandler<void(bool)>&&);
bool hasProvisionalPageWithID(WebPageProxyIdentifier) const;
bool isAllowedToUpdateBackForwardItem(WebBackForwardListItem&) const;
void getNetworkProcessConnection(CompletionHandler<void(NetworkProcessConnectionInfo&&)>&&);
#if ENABLE(GPU_PROCESS)
void createGPUProcessConnection(IPC::Connection::Handle&&, WebKit::GPUProcessConnectionParameters&&);
#endif
bool shouldAllowNonValidInjectedCode() const;
static const MemoryCompactLookupOnlyRobinHoodHashSet<String>& platformPathsWithAssumedReadAccess();
void updateBackgroundResponsivenessTimer();
void updateBlobRegistryPartitioningState() const;
void updateWebGPUEnabledStateInGPUProcess();
void updateDOMRenderingStateInGPUProcess();
void processDidTerminateOrFailedToLaunch(ProcessTerminationReason);
// IPC::Connection::Client
friend class WebConnectionToWebProcess;
void didReceiveMessage(IPC::Connection&, IPC::Decoder&) override;
bool didReceiveSyncMessage(IPC::Connection&, IPC::Decoder&, UniqueRef<IPC::Encoder>&) override;
void didClose(IPC::Connection&) final;
void didReceiveInvalidMessage(IPC::Connection&, IPC::MessageName) override;
// ResponsivenessTimer::Client
void didBecomeUnresponsive() override;
void didBecomeResponsive() override;
void willChangeIsResponsive() override;
void didChangeIsResponsive() override;
// Implemented in generated WebProcessProxyMessageReceiver.cpp
void didReceiveWebProcessProxyMessage(IPC::Connection&, IPC::Decoder&);
bool didReceiveSyncWebProcessProxyMessage(IPC::Connection&, IPC::Decoder&, UniqueRef<IPC::Encoder>&);
bool canTerminateAuxiliaryProcess();
void didCollectPrewarmInformation(const WebCore::RegistrableDomain&, const WebCore::PrewarmInformation&);
void logDiagnosticMessageForResourceLimitTermination(const String& limitKey);
void updateRegistrationWithDataStore();
void maybeShutDown();
#if PLATFORM(GTK) || PLATFORM(WPE)
void sendMessageToWebContext(UserMessage&&);
void sendMessageToWebContextWithReply(UserMessage&&, CompletionHandler<void(UserMessage&&)>&&);
#endif
void createSpeechRecognitionServer(SpeechRecognitionServerIdentifier);
void destroySpeechRecognitionServer(SpeechRecognitionServerIdentifier);
void systemBeep();
#if PLATFORM(MAC)
void isAXAuthenticated(audit_token_t, CompletionHandler<void(bool)>&&);
#endif
#if PLATFORM(COCOA)
bool messageSourceIsValidWebContentProcess();
#endif
bool shouldTakeNearSuspendedAssertion() const;
bool shouldDropNearSuspendedAssertionAfterDelay() const;
enum class IsWeak : bool { No, Yes };
template<typename T> class WeakOrStrongPtr {
public:
WeakOrStrongPtr(T& object, IsWeak isWeak)
: m_isWeak(isWeak)
, m_weakObject(object)
{
updateStrongReference();
}
void setIsWeak(IsWeak isWeak)
{
m_isWeak = isWeak;
updateStrongReference();
}
T* get() const { return m_weakObject.get(); }
T* operator->() const { return m_weakObject.get(); }
T& operator*() const { return *m_weakObject; }
explicit operator bool() const { return !!m_weakObject; }
private:
void updateStrongReference()
{
m_strongObject = m_isWeak == IsWeak::Yes ? nullptr : m_weakObject.get();
}
IsWeak m_isWeak;
WeakPtr<T> m_weakObject;
RefPtr<T> m_strongObject;
};
BackgroundProcessResponsivenessTimer m_backgroundResponsivenessTimer;
RefPtr<WebConnectionToWebProcess> m_webConnection;
WeakOrStrongPtr<WebProcessPool> m_processPool; // Pre-warmed and cached processes do not hold a strong reference to their pool.
bool m_mayHaveUniversalFileReadSandboxExtension; // True if a read extension for "/" was ever granted - we don't track whether WebProcess still has it.
HashSet<String> m_localPathsWithAssumedReadAccess;
HashSet<String> m_previouslyApprovedFilePaths;
WebPageProxyMap m_pageMap;
WebFrameProxyMap m_frameMap;
WeakHashSet<ProvisionalPageProxy> m_provisionalPages;
WeakHashSet<ProvisionalFrameProxy> m_provisionalFrames;
WeakHashSet<SuspendedPageProxy> m_suspendedPages;
UserInitiatedActionMap m_userInitiatedActionMap;
UserInitiatedActionByAuthorizationTokenMap m_userInitiatedActionByAuthorizationTokenMap;
HashMap<VisitedLinkStore*, HashSet<WebPageProxyIdentifier>> m_visitedLinkStoresWithUsers;
HashSet<WebUserContentControllerProxy*> m_webUserContentControllerProxies;
int m_numberOfTimesSuddenTerminationWasDisabled;
ProcessThrottler m_throttler;
std::unique_ptr<ProcessThrottler::BackgroundActivity> m_activityForHoldingLockedFiles;
ForegroundWebProcessToken m_foregroundToken;
BackgroundWebProcessToken m_backgroundToken;
bool m_areThrottleStateChangesEnabled { true };
#if HAVE(CVDISPLAYLINK)
DisplayLinkProcessProxyClient m_displayLinkClient;
#endif
#if PLATFORM(COCOA)
bool m_hasSentMessageToUnblockAccessibilityServer { false };
#endif
HashMap<String, uint64_t> m_pageURLRetainCountMap;
std::optional<WebCore::RegistrableDomain> m_registrableDomain;
bool m_isInProcessCache { false };
enum class NoOrMaybe { No, Maybe } m_isResponsive;
Vector<CompletionHandler<void(bool webProcessIsResponsive)>> m_isResponsiveCallbacks;
VisibleWebPageCounter m_visiblePageCounter;
RefPtr<WebsiteDataStore> m_websiteDataStore;
#if PLATFORM(COCOA)
RefPtr<NetworkProcessProxy> m_networkProcessToKeepAliveUntilDataStoreIsCreated;
#endif
bool m_isUnderMemoryPressure { false };
#if PLATFORM(COCOA) && ENABLE(MEDIA_STREAM)
std::unique_ptr<UserMediaCaptureManagerProxy> m_userMediaCaptureManagerProxy;
#endif
bool m_hasCommittedAnyProvisionalLoads { false };
bool m_hasCommittedAnyMeaningfulProvisionalLoads { false }; // True if the process has committed a provisional load to a URL that was not about:*.
bool m_isPrewarmed;
LockdownMode m_lockdownMode { LockdownMode::Disabled };
WebCore::CrossOriginMode m_crossOriginMode { WebCore::CrossOriginMode::Shared };
#if PLATFORM(COCOA)
bool m_hasNetworkExtensionSandboxAccess { false };
#endif
#if ENABLE(WEBCONTENT_CRASH_TESTING)
bool m_isWebContentCrashyProcess { false };
#endif
#if PLATFORM(WATCHOS)
std::unique_ptr<ProcessThrottler::BackgroundActivity> m_backgroundActivityForFullscreenFormControls;
#endif
#if PLATFORM(COCOA)
MediaCaptureSandboxExtensions m_mediaCaptureSandboxExtensions { SandboxExtensionType::None };
#endif
RefPtr<Logger> m_logger;
struct RemoteWorkerInformation {
WebPageProxyIdentifier remoteWorkerPageProxyID;
WebCore::PageIdentifier remoteWorkerPageID;
RemoteWorkerInitializationData initializationData;
ProcessThrottler::ActivityVariant activity;
WeakHashSet<WebProcessProxy> clientProcesses;
};
std::optional<RemoteWorkerInformation> m_serviceWorkerInformation;
std::optional<RemoteWorkerInformation> m_sharedWorkerInformation;
bool m_hasServiceWorkerBackgroundProcessing { false };
struct AudibleMediaActivity {
Ref<ProcessAssertion> assertion;
WebProcessWithAudibleMediaToken token;
};
std::optional<AudibleMediaActivity> m_audibleMediaActivity;
std::optional<WebProcessWithMediaStreamingToken> m_mediaStreamingActivity;
ShutdownPreventingScopeCounter m_shutdownPreventingScopeCounter;
#if ENABLE(IPC_TESTING_API)
bool m_ignoreInvalidMessageForTesting { false };
#endif
bool m_allowTestOnlyIPC { false };
using SpeechRecognitionServerMap = HashMap<SpeechRecognitionServerIdentifier, std::unique_ptr<SpeechRecognitionServer>>;
SpeechRecognitionServerMap m_speechRecognitionServerMap;
#if ENABLE(MEDIA_STREAM)
std::unique_ptr<SpeechRecognitionRemoteRealtimeMediaSourceManager> m_speechRecognitionRemoteRealtimeMediaSourceManager;
#endif
std::unique_ptr<WebLockRegistryProxy> m_webLockRegistry;
std::unique_ptr<WebPermissionControllerProxy> m_webPermissionController;
#if ENABLE(ROUTING_ARBITRATION)
UniqueRef<AudioSessionRoutingArbitratorProxy> m_routingArbitrator;
#endif
bool m_isConnectedToHardwareConsole { true };
#if PLATFORM(MAC)
bool m_platformSuspendDidReleaseNearSuspendedAssertion { false };
#endif
mutable String m_environmentIdentifier;
};
WTF::TextStream& operator<<(WTF::TextStream&, const WebProcessProxy&);
} // namespace WebKit
|