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
|
/* -*- 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/. */
#include "SerializedStackHolder.h"
#include "js/SavedFrameAPI.h"
#include "mozilla/Services.h"
#include "mozilla/dom/ScriptSettings.h"
#include "mozilla/dom/WorkerPrivate.h"
#include "nsIObserverService.h"
#include "nsJSPrincipals.h"
#include "xpcpublic.h"
namespace mozilla::dom {
SerializedStackHolder::SerializedStackHolder()
: mHolder(StructuredCloneHolder::CloningSupported,
StructuredCloneHolder::TransferringNotSupported,
StructuredCloneHolder::StructuredCloneScope::SameProcess) {}
void SerializedStackHolder::WriteStack(JSContext* aCx,
JS::Handle<JSObject*> aStack) {
JS::Rooted<JS::Value> stackValue(aCx, JS::ObjectValue(*aStack));
mHolder.Write(aCx, stackValue, IgnoreErrors());
// StructuredCloneHolder::Write can leave a pending exception on the context.
JS_ClearPendingException(aCx);
}
void SerializedStackHolder::SerializeMainThreadOrWorkletStack(
JSContext* aCx, JS::Handle<JSObject*> aStack) {
MOZ_ASSERT(!IsCurrentThreadRunningWorker());
WriteStack(aCx, aStack);
}
void SerializedStackHolder::SerializeWorkerStack(JSContext* aCx,
WorkerPrivate* aWorkerPrivate,
JS::Handle<JSObject*> aStack) {
MOZ_ASSERT(aWorkerPrivate->IsOnCurrentThread());
RefPtr<StrongWorkerRef> workerRef =
StrongWorkerRef::Create(aWorkerPrivate, "WorkerErrorReport");
if (workerRef) {
mWorkerRef = new ThreadSafeWorkerRef(workerRef);
} else {
// Don't write the stack if we can't create a ref to the worker.
return;
}
WriteStack(aCx, aStack);
}
void SerializedStackHolder::SerializeCurrentStack(JSContext* aCx) {
JS::Rooted<JSObject*> stack(aCx);
if (JS::CurrentGlobalOrNull(aCx) && !JS::CaptureCurrentStack(aCx, &stack)) {
JS_ClearPendingException(aCx);
return;
}
if (stack) {
if (NS_IsMainThread()) {
SerializeMainThreadOrWorkletStack(aCx, stack);
} else {
WorkerPrivate* currentWorker = GetCurrentThreadWorkerPrivate();
SerializeWorkerStack(aCx, currentWorker, stack);
}
}
}
JSObject* SerializedStackHolder::ReadStack(JSContext* aCx) {
MOZ_ASSERT(NS_IsMainThread());
if (!mHolder.HasData()) {
return nullptr;
}
JS::Rooted<JS::Value> stackValue(aCx);
mHolder.Read(xpc::CurrentNativeGlobal(aCx), aCx, &stackValue, IgnoreErrors());
return stackValue.isObject() ? &stackValue.toObject() : nullptr;
}
UniquePtr<SerializedStackHolder> GetCurrentStackForNetMonitor(JSContext* aCx) {
MOZ_ASSERT_IF(!NS_IsMainThread(),
GetCurrentThreadWorkerPrivate()->IsWatchedByDevTools());
return GetCurrentStack(aCx);
}
UniquePtr<SerializedStackHolder> GetCurrentStack(JSContext* aCx) {
UniquePtr<SerializedStackHolder> stack = MakeUnique<SerializedStackHolder>();
stack->SerializeCurrentStack(aCx);
return stack;
}
void NotifyNetworkMonitorAlternateStack(
nsISupports* aChannel, UniquePtr<SerializedStackHolder> aStackHolder) {
if (!aStackHolder) {
return;
}
nsString stackString;
ConvertSerializedStackToJSON(std::move(aStackHolder), stackString);
if (!stackString.IsEmpty()) {
NotifyNetworkMonitorAlternateStack(aChannel, stackString);
}
}
void ConvertSerializedStackToJSON(UniquePtr<SerializedStackHolder> aStackHolder,
nsAString& aStackString) {
// We need a JSContext to be able to stringify the SavedFrame stack.
// This will not run any scripts. A privileged scope is needed to fully
// inspect all stack frames we find.
AutoJSAPI jsapi;
DebugOnly<bool> ok = jsapi.Init(xpc::PrivilegedJunkScope());
JSContext* cx = jsapi.cx();
JS::Rooted<JSObject*> savedFrame(cx, aStackHolder->ReadStack(cx));
if (!savedFrame) {
return;
}
JS::Rooted<JSObject*> converted(cx);
converted = JS::ConvertSavedFrameToPlainObject(
cx, savedFrame, JS::SavedFrameSelfHosted::Exclude);
if (!converted) {
JS_ClearPendingException(cx);
return;
}
JS::Rooted<JS::Value> convertedValue(cx, JS::ObjectValue(*converted));
if (!nsContentUtils::StringifyJSON(cx, convertedValue, aStackString,
UndefinedIsNullStringLiteral)) {
JS_ClearPendingException(cx);
return;
}
}
void NotifyNetworkMonitorAlternateStack(nsISupports* aChannel,
const nsAString& aStackJSON) {
nsCOMPtr<nsIObserverService> obsService = services::GetObserverService();
if (!obsService) {
return;
}
obsService->NotifyObservers(aChannel, "network-monitor-alternate-stack",
PromiseFlatString(aStackJSON).get());
}
} // namespace mozilla::dom
|