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
|
/*
* Copyright (C) 2023 Igalia S.L. 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 "EventTarget.h"
#include "JSDOMPromiseDeferred.h"
#include "LocalDOMWindowProperty.h"
#include "NavigateEvent.h"
#include "NavigationHistoryEntry.h"
#include "NavigationNavigationType.h"
#include "NavigationTransition.h"
#include <JavaScriptCore/JSCJSValue.h>
#include <wtf/MonotonicTime.h>
#include <wtf/RefCountedAndCanMakeWeakPtr.h>
#include <wtf/Seconds.h>
#include <wtf/text/StringHash.h>
namespace WebCore {
class DocumentLoader;
class FormState;
class HistoryItem;
class SerializedScriptValue;
class NavigationActivation;
class NavigationDestination;
enum class FrameLoadType : uint8_t;
enum class NavigationAPIMethodTrackerType { };
using NavigationAPIMethodTrackerIdentifier = ObjectIdentifier<NavigationAPIMethodTrackerType>;
// https://html.spec.whatwg.org/multipage/nav-history-apis.html#navigation-api-method-tracker
struct NavigationAPIMethodTracker : public RefCounted<NavigationAPIMethodTracker> {
WTF_DEPRECATED_MAKE_STRUCT_FAST_ALLOCATED(NavigationAPIMethodTracker);
static Ref<NavigationAPIMethodTracker> create(Ref<DeferredPromise>&& committed, Ref<DeferredPromise>&& finished, JSC::JSValue&& info, RefPtr<SerializedScriptValue>&& serializedState)
{
return adoptRef(*new NavigationAPIMethodTracker(WTFMove(committed), WTFMove(finished), WTFMove(info), WTFMove(serializedState)));
}
bool operator==(const NavigationAPIMethodTracker& other) const
{
// key is optional so we manually identify each tracker.
return identifier == other.identifier;
}
bool finishedBeforeCommit { false };
String key;
JSC::JSValue info;
RefPtr<SerializedScriptValue> serializedState;
RefPtr<NavigationHistoryEntry> committedToEntry;
Ref<DeferredPromise> committedPromise;
Ref<DeferredPromise> finishedPromise;
private:
explicit NavigationAPIMethodTracker(Ref<DeferredPromise>&& committed, Ref<DeferredPromise>&& finished, JSC::JSValue&& info, RefPtr<SerializedScriptValue>&& serializedState)
: info(info)
, serializedState(serializedState)
, committedPromise(WTFMove(committed))
, finishedPromise(WTFMove(finished))
, identifier(NavigationAPIMethodTrackerIdentifier::generate())
{
}
NavigationAPIMethodTrackerIdentifier identifier;
};
enum class ShouldCopyStateObjectFromCurrentEntry : bool { No, Yes };
// Controls whether updateForNavigation should fulfill the committed promise immediately.
// For intercepted traversals, timing depends on handler presence (see spec).
// https://html.spec.whatwg.org/multipage/nav-history-apis.html#notify-about-the-committed-to-entry
enum class ShouldNotifyCommitted : bool { No, Yes };
class Navigation final : public RefCounted<Navigation>, public EventTarget, public LocalDOMWindowProperty {
WTF_MAKE_TZONE_OR_ISO_ALLOCATED(Navigation);
public:
~Navigation();
static Ref<Navigation> create(LocalDOMWindow& window) { return adoptRef(*new Navigation(window)); }
using RefCounted<Navigation>::ref;
using RefCounted<Navigation>::deref;
using HistoryBehavior = NavigationHistoryBehavior;
struct UpdateCurrentEntryOptions {
JSC::JSValue state;
};
struct Options {
JSC::JSValue info;
};
struct NavigateOptions : Options {
JSC::JSValue state;
HistoryBehavior history;
};
struct ReloadOptions : Options {
JSC::JSValue state;
};
struct Result {
RefPtr<DOMPromise> committed;
RefPtr<DOMPromise> finished;
};
const Vector<Ref<NavigationHistoryEntry>>& entries() const;
NavigationHistoryEntry* currentEntry() const;
RefPtr<NavigationHistoryEntry> protectedCurrentEntry() const { return currentEntry(); }
NavigationTransition* transition() { return m_transition.get(); };
NavigationActivation* activation() { return m_activation.get(); };
bool canGoBack() const;
bool canGoForward() const;
void initializeForNewWindow(std::optional<NavigationNavigationType>, LocalDOMWindow* previousWindow);
Result navigate(const String& url, NavigateOptions&&, Ref<DeferredPromise>&&, Ref<DeferredPromise>&&);
Result reload(ReloadOptions&&, Ref<DeferredPromise>&&, Ref<DeferredPromise>&&);
Result traverseTo(const String& key, Options&&, Ref<DeferredPromise>&&, Ref<DeferredPromise>&&);
Result back(Options&&, Ref<DeferredPromise>&&, Ref<DeferredPromise>&&);
Result forward(Options&&, Ref<DeferredPromise>&&, Ref<DeferredPromise>&&);
ExceptionOr<void> updateCurrentEntry(UpdateCurrentEntryOptions&&);
enum class DispatchResult : uint8_t { Completed, Aborted, Intercepted };
DispatchResult dispatchTraversalNavigateEvent(HistoryItem&);
bool dispatchPushReplaceReloadNavigateEvent(const URL&, NavigationNavigationType, bool isSameDocument, FormState*, SerializedScriptValue* classicHistoryAPIState = nullptr, Element* sourceElement = nullptr);
bool dispatchDownloadNavigateEvent(const URL&, const String& downloadFilename, Element* sourceElement = nullptr);
void updateForNavigation(Ref<HistoryItem>&&, NavigationNavigationType, ShouldCopyStateObjectFromCurrentEntry = ShouldCopyStateObjectFromCurrentEntry::No, ShouldNotifyCommitted = ShouldNotifyCommitted::Yes);
void updateForReactivation(Vector<Ref<HistoryItem>>&& newHistoryItems, HistoryItem& reactivatedItem, HistoryItem* previousItem);
RefPtr<NavigationActivation> createForPageswapEvent(HistoryItem* newItem, DocumentLoader*, bool fromBackForwardCache);
void abortOngoingNavigationIfNeeded();
NavigationHistoryEntry* findEntryByKey(const String&) const;
bool suppressNormalScrollRestoration() const { return m_suppressNormalScrollRestorationDuringOngoingNavigation; }
void setFocusChanged(FocusDidChange changed) { m_focusChangedDuringOngoingNavigation = changed; }
// EventTarget.
ScriptExecutionContext* scriptExecutionContext() const final;
RefPtr<ScriptExecutionContext> protectedScriptExecutionContext() const;
void rejectFinishedPromise(NavigationAPIMethodTracker*);
NavigationAPIMethodTracker* upcomingTraverseMethodTracker(const String& key) const { return m_upcomingTraverseMethodTrackers.get(key); }
class AbortHandler : public RefCountedAndCanMakeWeakPtr<AbortHandler> {
public:
bool wasAborted() const { return m_wasAborted; }
private:
friend class Navigation;
static Ref<AbortHandler> create() { return adoptRef(*new AbortHandler); }
void markAsAborted() { m_wasAborted = true; }
bool m_wasAborted { false };
};
Ref<AbortHandler> registerAbortHandler();
// Rate limiter to prevent excessive navigation requests.
class RateLimiter {
WTF_MAKE_TZONE_ALLOCATED(RateLimiter);
WTF_MAKE_NONCOPYABLE(RateLimiter);
WTF_MAKE_NONMOVABLE(RateLimiter);
public:
RateLimiter() = default;
bool navigationAllowed();
bool wasReported() const { return m_limitMessageSent; }
void markReported() { m_limitMessageSent = true; }
// Testing support
void setParametersForTesting(unsigned maxNavigations, Seconds duration)
{
m_maxNavigationsPerWindow = maxNavigations;
m_windowDuration = duration;
resetForTesting();
}
void resetForTesting()
{
m_windowStartTime = MonotonicTime::now();
m_navigationCount = 0;
m_limitMessageSent = false;
}
private:
friend class Navigation;
// Sliding window rate limiter: allows 200 navigations per 10 second window (~20/sec sustained).
// Chromium uses 200 navigations per 10 seconds (same ~20/sec rate):
// https://source.chromium.org/chromium/chromium/src/+/main:third_party/blink/renderer/core/frame/navigation_rate_limiter.cc
// Both prevent IPC flooding and stack overflow from recursive navigation patterns.
unsigned m_maxNavigationsPerWindow { 200 };
Seconds m_windowDuration { 10_s };
MonotonicTime m_windowStartTime { MonotonicTime::now() };
unsigned m_navigationCount { 0 };
bool m_limitMessageSent { false };
};
// Testing support
RateLimiter& rateLimiterForTesting() { return m_rateLimiter; }
NavigateEvent* ongoingNavigateEvent() { return m_ongoingNavigateEvent.get(); } // This may get called on the GC thread.
RefPtr<NavigateEvent> protectedOngoingNavigateEvent() { return m_ongoingNavigateEvent; }
bool hasInterceptedOngoingNavigateEvent() const { return m_ongoingNavigateEvent && m_ongoingNavigateEvent->wasIntercepted(); }
void updateNavigationEntry(Ref<HistoryItem>&&, ShouldCopyStateObjectFromCurrentEntry);
static Vector<Ref<HistoryItem>> filterHistoryItemsForNavigationAPI(Vector<Ref<HistoryItem>>&&, HistoryItem&);
private:
explicit Navigation(LocalDOMWindow&);
// EventTarget.
enum EventTargetInterfaceType eventTargetInterface() const final;
void refEventTarget() final { ref(); }
void derefEventTarget() final { deref(); }
bool hasEntriesAndEventsDisabled() const;
Result performTraversal(const String& key, Navigation::Options, Ref<DeferredPromise>&& committed, Ref<DeferredPromise>&& finished);
ExceptionOr<RefPtr<SerializedScriptValue>> serializeState(JSC::JSValue state);
DispatchResult innerDispatchNavigateEvent(NavigationNavigationType, Ref<NavigationDestination>&&, const String& downloadRequestFilename, FormState* = nullptr, SerializedScriptValue* classicHistoryAPIState = nullptr, Element* sourceElement = nullptr);
void setActivation(HistoryItem* previousItem, std::optional<NavigationNavigationType>);
RefPtr<NavigationAPIMethodTracker> maybeSetUpcomingNonTraversalTracker(Ref<DeferredPromise>&& committed, Ref<DeferredPromise>&& finished, JSC::JSValue info, RefPtr<SerializedScriptValue>&&);
RefPtr<NavigationAPIMethodTracker> addUpcomingTraverseAPIMethodTracker(Ref<DeferredPromise>&& committed, Ref<DeferredPromise>&& finished, const String& key, JSC::JSValue info);
void cleanupAPIMethodTracker(NavigationAPIMethodTracker*);
void resolveFinishedPromise(NavigationAPIMethodTracker*);
void rejectFinishedPromise(NavigationAPIMethodTracker*, const Exception&, JSC::JSValue exceptionObject);
void abortOngoingNavigation(NavigateEvent&);
void promoteUpcomingAPIMethodTracker(const String& destinationKey);
void notifyCommittedToEntry(NavigationAPIMethodTracker*, NavigationHistoryEntry*, NavigationNavigationType);
Result apiMethodTrackerDerivedResult(const NavigationAPIMethodTracker&);
size_t entryIndexOfKey(const String&) const;
bool hasEntryWithKey(const String&) const;
void disposeOfForwardEntriesInParents(BackForwardItemIdentifier);
void recursivelyDisposeOfForwardEntriesInParents(BackForwardItemIdentifier, LocalFrame* navigatedFrame);
std::optional<size_t> m_currentEntryIndex;
RefPtr<NavigationTransition> m_transition;
RefPtr<NavigationActivation> m_activation;
Vector<Ref<NavigationHistoryEntry>> m_entries;
RefPtr<NavigateEvent> m_ongoingNavigateEvent;
FocusDidChange m_focusChangedDuringOngoingNavigation { FocusDidChange::No };
bool m_suppressNormalScrollRestorationDuringOngoingNavigation { false };
RefPtr<NavigationAPIMethodTracker> m_ongoingAPIMethodTracker;
RefPtr<NavigationAPIMethodTracker> m_upcomingNonTraverseMethodTracker;
HashMap<String, Ref<NavigationAPIMethodTracker>> m_upcomingTraverseMethodTrackers;
WeakHashSet<AbortHandler> m_abortHandlers;
RateLimiter m_rateLimiter;
};
} // namespace WebCore
|