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
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#ifndef mozilla_dom_SessionHistoryEntry_h
#define mozilla_dom_SessionHistoryEntry_h
#include "mozilla/dom/DocumentBinding.h"
#include "mozilla/Maybe.h"
#include "mozilla/UniquePtr.h"
#include "mozilla/dom/NavigationBinding.h"
#include "nsILayoutHistoryState.h"
#include "nsISHEntry.h"
#include "nsSHEntryShared.h"
#include "nsStructuredCloneContainer.h"
#include "nsTHashMap.h"
#include "nsWeakReference.h"
class nsDocShellLoadState;
class nsIChannel;
class nsIInputStream;
class nsIReferrerInfo;
class nsISHistory;
class nsIURI;
namespace IPC {
template <typename P>
struct ParamTraits;
}
namespace mozilla {
namespace dom {
struct LoadingSessionHistoryInfo;
class SessionHistoryEntry;
class SHEntrySharedParentState;
// SessionHistoryInfo stores session history data for a load. It can be sent
// over IPC and is used in both the parent and the child processes.
class SessionHistoryInfo {
public:
SessionHistoryInfo() = default;
SessionHistoryInfo(const SessionHistoryInfo& aInfo) = default;
SessionHistoryInfo(nsDocShellLoadState* aLoadState, nsIChannel* aChannel);
SessionHistoryInfo(const SessionHistoryInfo& aSharedStateFrom, nsIURI* aURI);
SessionHistoryInfo(nsIURI* aURI, nsIPrincipal* aTriggeringPrincipal,
nsIPrincipal* aPrincipalToInherit,
nsIPrincipal* aPartitionedPrincipalToInherit,
nsIPolicyContainer* aPolicyContainer,
const nsACString& aContentType);
SessionHistoryInfo(nsIChannel* aChannel, uint32_t aLoadType,
nsIPrincipal* aPartitionedPrincipalToInherit,
nsIPolicyContainer* aPolicyContainer);
void Reset(nsIURI* aURI, const nsID& aDocShellID, bool aDynamicCreation,
nsIPrincipal* aTriggeringPrincipal,
nsIPrincipal* aPrincipalToInherit,
nsIPrincipal* aPartitionedPrincipalToInherit,
nsIPolicyContainer* aPolicyContainer,
const nsACString& aContentType);
bool operator==(const SessionHistoryInfo& aInfo) const {
return false; // FIXME
}
nsIURI* GetURI() const { return mURI; }
void SetURI(nsIURI* aURI) { mURI = aURI; }
nsIURI* GetOriginalURI() const { return mOriginalURI; }
void SetOriginalURI(nsIURI* aOriginalURI) { mOriginalURI = aOriginalURI; }
nsIURI* GetUnstrippedURI() const { return mUnstrippedURI; }
void SetUnstrippedURI(nsIURI* aUnstrippedURI) {
mUnstrippedURI = aUnstrippedURI;
}
nsIURI* GetResultPrincipalURI() const { return mResultPrincipalURI; }
void SetResultPrincipalURI(nsIURI* aResultPrincipalURI) {
mResultPrincipalURI = aResultPrincipalURI;
}
nsCOMPtr<nsIReferrerInfo> GetReferrerInfo() { return mReferrerInfo; }
void SetReferrerInfo(nsIReferrerInfo* aReferrerInfo) {
mReferrerInfo = aReferrerInfo;
}
bool HasPostData() const { return mPostData; }
already_AddRefed<nsIInputStream> GetPostData() const;
void SetPostData(nsIInputStream* aPostData);
void GetScrollPosition(int32_t* aScrollPositionX, int32_t* aScrollPositionY) {
*aScrollPositionX = mScrollPositionX;
*aScrollPositionY = mScrollPositionY;
}
void SetScrollPosition(int32_t aScrollPositionX, int32_t aScrollPositionY) {
mScrollPositionX = aScrollPositionX;
mScrollPositionY = aScrollPositionY;
}
bool GetScrollRestorationIsManual() const {
return mScrollRestorationIsManual;
}
const nsAString& GetTitle() { return mTitle; }
void SetTitle(const nsAString& aTitle) {
mTitle = aTitle;
MaybeUpdateTitleFromURI();
}
const nsAString& GetName() { return mName; }
void SetName(const nsAString& aName) { mName = aName; }
void SetScrollRestorationIsManual(bool aIsManual) {
mScrollRestorationIsManual = aIsManual;
}
nsStructuredCloneContainer* GetStateData() const { return mStateData; }
void SetStateData(nsStructuredCloneContainer* aStateData) {
mStateData = aStateData;
}
void SetLoadReplace(bool aLoadReplace) { mLoadReplace = aLoadReplace; }
void SetURIWasModified(bool aURIWasModified) {
mURIWasModified = aURIWasModified;
}
bool GetURIWasModified() const { return mURIWasModified; }
void SetHasUserInteraction(bool aHasUserInteraction) {
mHasUserInteraction = aHasUserInteraction;
}
bool GetHasUserInteraction() const { return mHasUserInteraction; }
uint64_t SharedId() const;
nsILayoutHistoryState* GetLayoutHistoryState();
void SetLayoutHistoryState(nsILayoutHistoryState* aState);
nsIPrincipal* GetTriggeringPrincipal() const;
nsIPrincipal* GetPrincipalToInherit() const;
nsIPrincipal* GetPartitionedPrincipalToInherit() const;
void SetPartitionedPrincipalToInherit(nsIPrincipal* aPrincipal);
nsIPolicyContainer* GetPolicyContainer() const;
uint32_t GetCacheKey() const;
void SetCacheKey(uint32_t aCacheKey);
bool IsSubFrame() const;
bool SharesDocumentWith(const SessionHistoryInfo& aOther) const {
return SharedId() == aOther.SharedId();
}
void FillLoadInfo(nsDocShellLoadState& aLoadState) const;
uint32_t LoadType() { return mLoadType; }
void SetSaveLayoutStateFlag(bool aSaveLayoutStateFlag);
bool IsTransient() { return mTransient; }
void SetTransient() { mTransient = true; }
nsID& NavigationKey() { return mNavigationKey; }
const nsID& NavigationKey() const { return mNavigationKey; }
const nsID& NavigationId() const { return mNavigationId; }
nsIStructuredCloneContainer* GetNavigationAPIState() const;
void SetNavigationAPIState(nsIStructuredCloneContainer* aState);
already_AddRefed<nsIURI> GetURIOrInheritedForAboutBlank() const;
private:
friend class SessionHistoryEntry;
friend struct IPC::ParamTraits<SessionHistoryInfo>;
void MaybeUpdateTitleFromURI();
nsCOMPtr<nsIURI> mURI;
nsCOMPtr<nsIURI> mOriginalURI;
nsCOMPtr<nsIURI> mResultPrincipalURI;
nsCOMPtr<nsIURI> mUnstrippedURI;
nsCOMPtr<nsIReferrerInfo> mReferrerInfo;
nsString mTitle;
nsString mName;
nsCOMPtr<nsIInputStream> mPostData;
uint32_t mLoadType = 0;
int32_t mScrollPositionX = 0;
int32_t mScrollPositionY = 0;
RefPtr<nsStructuredCloneContainer> mStateData;
Maybe<nsString> mSrcdocData;
nsCOMPtr<nsIURI> mBaseURI;
// Fields needed for NavigationHistoryEntry.
nsID mNavigationKey = nsID::GenerateUUID();
nsID mNavigationId = nsID::GenerateUUID();
// https://html.spec.whatwg.org/#she-navigation-api-state
RefPtr<nsStructuredCloneContainer> mNavigationAPIState;
bool mLoadReplace = false;
bool mURIWasModified = false;
bool mScrollRestorationIsManual = false;
bool mTransient = false;
bool mHasUserInteraction = false;
bool mHasUserActivation = false;
union SharedState {
SharedState();
explicit SharedState(const SharedState& aOther);
explicit SharedState(const Maybe<const SharedState&>& aOther);
~SharedState();
SharedState& operator=(const SharedState& aOther);
SHEntrySharedState* Get() const;
void Set(SHEntrySharedParentState* aState) { mParent = aState; }
void ChangeId(uint64_t aId);
static SharedState Create(nsIPrincipal* aTriggeringPrincipal,
nsIPrincipal* aPrincipalToInherit,
nsIPrincipal* aPartitionedPrincipalToInherit,
nsIPolicyContainer* aPolicyContainer,
const nsACString& aContentType);
private:
explicit SharedState(SHEntrySharedParentState* aParent)
: mParent(aParent) {}
explicit SharedState(UniquePtr<SHEntrySharedState>&& aChild)
: mChild(std::move(aChild)) {}
void Init();
void Init(const SharedState& aOther);
// In the parent process this holds a strong reference to the refcounted
// SHEntrySharedParentState. In the child processes this holds an owning
// pointer to a SHEntrySharedState.
RefPtr<SHEntrySharedParentState> mParent;
UniquePtr<SHEntrySharedState> mChild;
};
SharedState mSharedState;
};
struct LoadingSessionHistoryInfo {
LoadingSessionHistoryInfo() = default;
explicit LoadingSessionHistoryInfo(SessionHistoryEntry* aEntry);
// Initializes mInfo using aEntry and otherwise copies the values from aInfo.
LoadingSessionHistoryInfo(SessionHistoryEntry* aEntry,
const LoadingSessionHistoryInfo* aInfo);
// For about:blank only.
explicit LoadingSessionHistoryInfo(const SessionHistoryInfo& aInfo);
already_AddRefed<nsDocShellLoadState> CreateLoadInfo() const;
SessionHistoryInfo mInfo;
// The same origin (to mInfo) preceeding entries.
CopyableTArray<SessionHistoryInfo> mContiguousEntries;
// The entry that triggered the navigation to this entry.
Maybe<SessionHistoryInfo> mTriggeringEntry;
// The type of navigation which triggered this load.
Maybe<NavigationType> mTriggeringNavigationType;
uint64_t mLoadId = 0;
// The following three member variables are used to inform about a load from
// the session history. The session-history-in-child approach has just
// an nsISHEntry in the nsDocShellLoadState and access to the nsISHistory,
// but session-history-in-parent needs to pass needed information explicitly
// to the relevant child process.
bool mLoadIsFromSessionHistory = false;
// mOffset and mLoadingCurrentEntry are relevant only if
// mLoadIsFromSessionHistory is true.
int32_t mOffset = 0;
// If we're loading from the current entry we want to treat it as not a
// same-document navigation (see nsDocShell::IsSameDocumentNavigation).
bool mLoadingCurrentEntry = false;
// If mForceMaybeResetName.isSome() is true then the parent process has
// determined whether the BC's name should be cleared and stored in session
// history (see https://html.spec.whatwg.org/#history-traversal step 4.2).
// This is used when we're replacing the BC for BFCache in the parent. In
// other cases mForceMaybeResetName.isSome() will be false and the child
// process should be able to make that determination itself.
Maybe<bool> mForceMaybeResetName;
};
// HistoryEntryCounterForBrowsingContext is used to count the number of entries
// which are added to the session history for a particular browsing context.
// If a SessionHistoryEntry is cloned because of navigation in some other
// browsing context, that doesn't cause the counter value to be increased.
// The browsing context specific counter is needed to make it easier to
// synchronously update history.length value in a child process when
// an iframe is removed from DOM.
class HistoryEntryCounterForBrowsingContext {
public:
HistoryEntryCounterForBrowsingContext()
: mCounter(new RefCountedCounter()), mHasModified(false) {
++(*this);
}
HistoryEntryCounterForBrowsingContext(
const HistoryEntryCounterForBrowsingContext& aOther)
: mCounter(aOther.mCounter), mHasModified(false) {}
HistoryEntryCounterForBrowsingContext(
HistoryEntryCounterForBrowsingContext&& aOther) = delete;
~HistoryEntryCounterForBrowsingContext() {
if (mHasModified) {
--(*mCounter);
}
}
void CopyValueFrom(const HistoryEntryCounterForBrowsingContext& aOther) {
if (mHasModified) {
--(*mCounter);
}
mCounter = aOther.mCounter;
mHasModified = false;
}
HistoryEntryCounterForBrowsingContext& operator=(
const HistoryEntryCounterForBrowsingContext& aOther) = delete;
HistoryEntryCounterForBrowsingContext& operator++() {
mHasModified = true;
++(*mCounter);
return *this;
}
operator uint32_t() const { return *mCounter; }
bool Modified() { return mHasModified; }
void SetModified(bool aModified) { mHasModified = aModified; }
void Reset() {
if (mHasModified) {
--(*mCounter);
}
mCounter = new RefCountedCounter();
mHasModified = false;
}
private:
class RefCountedCounter {
public:
NS_INLINE_DECL_REFCOUNTING(
mozilla::dom::HistoryEntryCounterForBrowsingContext::RefCountedCounter)
RefCountedCounter& operator++() {
++mCounter;
return *this;
}
RefCountedCounter& operator--() {
--mCounter;
return *this;
}
operator uint32_t() const { return mCounter; }
private:
~RefCountedCounter() = default;
uint32_t mCounter = 0;
};
RefPtr<RefCountedCounter> mCounter;
bool mHasModified;
};
// SessionHistoryEntry is used to store session history data in the parent
// process. It holds a SessionHistoryInfo, some state shared amongst multiple
// SessionHistoryEntries, a parent and children.
#define NS_SESSIONHISTORYENTRY_IID \
{0x5b66a244, 0x8cec, 0x4caa, {0xaa, 0x0a, 0x78, 0x92, 0xfd, 0x17, 0xa6, 0x67}}
class SessionHistoryEntry : public nsISHEntry,
public nsSupportsWeakReference,
public LinkedListElement<SessionHistoryEntry> {
public:
SessionHistoryEntry(nsDocShellLoadState* aLoadState, nsIChannel* aChannel);
SessionHistoryEntry();
explicit SessionHistoryEntry(SessionHistoryInfo* aInfo);
explicit SessionHistoryEntry(const SessionHistoryEntry& aEntry);
NS_DECL_ISUPPORTS
NS_DECL_NSISHENTRY
NS_INLINE_DECL_STATIC_IID(NS_SESSIONHISTORYENTRY_IID)
bool IsInSessionHistory() {
SessionHistoryEntry* entry = this;
while (nsCOMPtr<SessionHistoryEntry> parent =
do_QueryReferent(entry->mParent)) {
entry = parent;
}
return entry->SharedInfo()->mSHistory &&
entry->SharedInfo()->mSHistory->IsAlive();
}
void ReplaceWith(const SessionHistoryEntry& aSource);
const SessionHistoryInfo& Info() const { return *mInfo; }
SHEntrySharedParentState* SharedInfo() const;
void SetFrameLoader(nsFrameLoader* aFrameLoader);
nsFrameLoader* GetFrameLoader();
void AddChild(SessionHistoryEntry* aChild, int32_t aOffset,
bool aUseRemoteSubframes);
void RemoveChild(SessionHistoryEntry* aChild);
// Finds the child with the same docshell ID as aNewChild, replaces it with
// aNewChild and returns true. If there is no child with the same docshell ID
// then it returns false.
bool ReplaceChild(SessionHistoryEntry* aNewChild);
void SetInfo(SessionHistoryInfo* aInfo);
bool ForInitialLoad() { return mForInitialLoad; }
void SetForInitialLoad(bool aForInitialLoad) {
mForInitialLoad = aForInitialLoad;
}
const nsID& DocshellID() const;
HistoryEntryCounterForBrowsingContext& BCHistoryLength() {
return mBCHistoryLength;
}
void SetBCHistoryLength(HistoryEntryCounterForBrowsingContext& aCounter) {
mBCHistoryLength.CopyValueFrom(aCounter);
}
void ClearBCHistoryLength() { mBCHistoryLength.Reset(); }
void SetIsDynamicallyAdded(bool aDynamic);
void SetWireframe(const Maybe<Wireframe>& aWireframe);
struct LoadingEntry {
// A pointer to the entry being loaded. Will be cleared by the
// SessionHistoryEntry destructor, at latest.
SessionHistoryEntry* mEntry;
// Snapshot of the entry's SessionHistoryInfo when the load started, to be
// used for validation purposes only.
UniquePtr<SessionHistoryInfo> mInfoSnapshotForValidation;
};
// Get an entry based on LoadingSessionHistoryInfo's mLoadId. Parent process
// only.
static LoadingEntry* GetByLoadId(uint64_t aLoadId);
static void SetByLoadId(uint64_t aLoadId, SessionHistoryEntry* aEntry);
static void RemoveLoadId(uint64_t aLoadId);
const nsTArray<RefPtr<SessionHistoryEntry>>& Children() { return mChildren; }
already_AddRefed<nsIURI> GetURIOrInheritedForAboutBlank() const;
void SetNavigationAPIState(nsIStructuredCloneContainer* aState) {
mInfo->SetNavigationAPIState(aState);
}
private:
friend struct LoadingSessionHistoryInfo;
virtual ~SessionHistoryEntry();
UniquePtr<SessionHistoryInfo> mInfo;
nsWeakPtr mParent;
uint32_t mID;
nsTArray<RefPtr<SessionHistoryEntry>> mChildren;
Maybe<Wireframe> mWireframe;
bool mForInitialLoad = false;
HistoryEntryCounterForBrowsingContext mBCHistoryLength;
static nsTHashMap<nsUint64HashKey, LoadingEntry>* sLoadIdToEntry;
};
} // namespace dom
} // namespace mozilla
namespace IPC {
// Allow sending SessionHistoryInfo objects over IPC.
template <>
struct ParamTraits<mozilla::dom::SessionHistoryInfo> {
static void Write(IPC::MessageWriter* aWriter,
const mozilla::dom::SessionHistoryInfo& aParam);
static bool Read(IPC::MessageReader* aReader,
mozilla::dom::SessionHistoryInfo* aResult);
};
// Allow sending LoadingSessionHistoryInfo objects over IPC.
template <>
struct ParamTraits<mozilla::dom::LoadingSessionHistoryInfo> {
static void Write(IPC::MessageWriter* aWriter,
const mozilla::dom::LoadingSessionHistoryInfo& aParam);
static bool Read(IPC::MessageReader* aReader,
mozilla::dom::LoadingSessionHistoryInfo* aResult);
};
// Allow sending nsILayoutHistoryState objects over IPC.
template <>
struct ParamTraits<nsILayoutHistoryState*> {
static void Write(IPC::MessageWriter* aWriter, nsILayoutHistoryState* aParam);
static bool Read(IPC::MessageReader* aReader,
RefPtr<nsILayoutHistoryState>* aResult);
};
// Allow sending mozilla::dom::Wireframe objects over IPC.
template <>
struct ParamTraits<mozilla::dom::Wireframe> {
static void Write(IPC::MessageWriter* aWriter,
const mozilla::dom::Wireframe& aParam);
static bool Read(IPC::MessageReader* aReader,
mozilla::dom::Wireframe* aResult);
};
} // namespace IPC
inline nsISupports* ToSupports(mozilla::dom::SessionHistoryEntry* aEntry) {
return static_cast<nsISHEntry*>(aEntry);
}
#endif /* mozilla_dom_SessionHistoryEntry_h */
|