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
|
/*
* Copyright (C) 2010-2023 Apple Inc. All rights reserved.
* Copyright (C) 2010, 2011 Google 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.
* 3. Neither the name of Apple Inc. ("Apple") nor the names of
* its contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY APPLE 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 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 "Breakpoint.h"
#include "Debugger.h"
#include "DebuggerPrimitives.h"
#include "InspectorAgentBase.h"
#include "InspectorBackendDispatchers.h"
#include "InspectorFrontendDispatchers.h"
#include "Microtask.h"
#include "RegularExpression.h"
#include <wtf/Forward.h>
#include <wtf/HashMap.h>
#include <wtf/HashSet.h>
#include <wtf/Noncopyable.h>
#include <wtf/RefPtr.h>
#include <wtf/TZoneMalloc.h>
#include <wtf/Vector.h>
namespace Inspector {
class AsyncStackTrace;
class InjectedScript;
class InjectedScriptManager;
class JS_EXPORT_PRIVATE InspectorDebuggerAgent
: public InspectorAgentBase
, public DebuggerBackendDispatcherHandler
, public JSC::Debugger::Client
, public JSC::Debugger::Observer {
WTF_MAKE_NONCOPYABLE(InspectorDebuggerAgent);
WTF_MAKE_TZONE_ALLOCATED(InspectorDebuggerAgent);
public:
~InspectorDebuggerAgent() override;
static RefPtr<JSC::Breakpoint> debuggerBreakpointFromPayload(Protocol::ErrorString&, RefPtr<JSON::Object>&& options);
static const ASCIILiteral backtraceObjectGroup;
// InspectorAgentBase
void didCreateFrontendAndBackend(FrontendRouter*, BackendDispatcher*) final;
void willDestroyFrontendAndBackend(DisconnectReason) final;
virtual bool enabled() const { return m_enabled; }
// DebuggerBackendDispatcherHandler
Protocol::ErrorStringOr<void> enable() final;
Protocol::ErrorStringOr<void> disable() final;
Protocol::ErrorStringOr<void> setAsyncStackTraceDepth(int) final;
Protocol::ErrorStringOr<void> setBreakpointsActive(bool) final;
Protocol::ErrorStringOr<std::tuple<Protocol::Debugger::BreakpointId, Ref<JSON::ArrayOf<Protocol::Debugger::Location>>>> setBreakpointByUrl(int lineNumber, const String& url, const String& urlRegex, std::optional<int>&& columnNumber, RefPtr<JSON::Object>&& options) final;
Protocol::ErrorStringOr<std::tuple<Protocol::Debugger::BreakpointId, Ref<Protocol::Debugger::Location>>> setBreakpoint(Ref<JSON::Object>&& location, RefPtr<JSON::Object>&& options) final;
Protocol::ErrorStringOr<void> removeBreakpoint(const Protocol::Debugger::BreakpointId&) final;
Protocol::ErrorStringOr<void> addSymbolicBreakpoint(const String& symbol, std::optional<bool>&& caseSensitive, std::optional<bool>&& isRegex, RefPtr<JSON::Object>&& options) final;
Protocol::ErrorStringOr<void> removeSymbolicBreakpoint(const String& symbol, std::optional<bool>&& caseSensitive, std::optional<bool>&& isRegex) final;
Protocol::ErrorStringOr<void> continueUntilNextRunLoop() final;
Protocol::ErrorStringOr<void> continueToLocation(Ref<JSON::Object>&& location) final;
Protocol::ErrorStringOr<void> stepNext() final;
Protocol::ErrorStringOr<void> stepOver() final;
Protocol::ErrorStringOr<void> stepInto() final;
Protocol::ErrorStringOr<void> stepOut() final;
Protocol::ErrorStringOr<void> pause() final;
Protocol::ErrorStringOr<void> resume() final;
Protocol::ErrorStringOr<Ref<JSON::ArrayOf<Protocol::GenericTypes::SearchMatch>>> searchInContent(const Protocol::Debugger::ScriptId&, const String& query, std::optional<bool>&& caseSensitive, std::optional<bool>&& isRegex) final;
Protocol::ErrorStringOr<String> getScriptSource(const Protocol::Debugger::ScriptId&) final;
Protocol::ErrorStringOr<Ref<Protocol::Debugger::FunctionDetails>> getFunctionDetails(const String& functionId) final;
Protocol::ErrorStringOr<Ref<JSON::ArrayOf<Protocol::Debugger::Location>>> getBreakpointLocations(Ref<JSON::Object>&& start, Ref<JSON::Object>&& end) final;
Protocol::ErrorStringOr<void> setPauseOnDebuggerStatements(bool enabled, RefPtr<JSON::Object>&& options) final;
Protocol::ErrorStringOr<void> setPauseOnExceptions(const String& state, RefPtr<JSON::Object>&& options) final;
Protocol::ErrorStringOr<void> setPauseOnAssertions(bool enabled, RefPtr<JSON::Object>&& options) final;
Protocol::ErrorStringOr<void> setPauseOnMicrotasks(bool enabled, RefPtr<JSON::Object>&& options) final;
Protocol::ErrorStringOr<void> setPauseForInternalScripts(bool shouldPause) final;
Protocol::ErrorStringOr<std::tuple<Ref<Protocol::Runtime::RemoteObject>, std::optional<bool> /* wasThrown */, std::optional<int> /* savedResultIndex */>> evaluateOnCallFrame(const Protocol::Debugger::CallFrameId&, const String& expression, const String& objectGroup, std::optional<bool>&& includeCommandLineAPI, std::optional<bool>&& doNotPauseOnExceptionsAndMuteConsole, std::optional<bool>&& returnByValue, std::optional<bool>&& generatePreview, std::optional<bool>&& saveResult, std::optional<bool>&& emulateUserGesture) override;
Protocol::ErrorStringOr<void> setShouldBlackboxURL(const String& url, bool shouldBlackbox, std::optional<bool>&& caseSensitive, std::optional<bool>&& isRegex, RefPtr<JSON::Array>&& sourceRanges) final;
Protocol::ErrorStringOr<void> setBlackboxBreakpointEvaluations(bool) final;
// JSC::Debugger::Client
bool isInspectorDebuggerAgent() const final;
JSC::JSObject* debuggerScopeExtensionObject(JSC::Debugger&, JSC::JSGlobalObject*, JSC::DebuggerCallFrame&) final;
// JSC::Debugger::Observer
void didParseSource(JSC::SourceID, const JSC::Debugger::Script&) final;
void failedToParseSource(const String& url, const String& data, int firstLine, int errorLine, const String& errorMessage) final;
void didCreateNativeExecutable(JSC::NativeExecutable&) final;
void willCallNativeExecutable(JSC::CallFrame*) final;
void willEnter(JSC::CallFrame*) final;
void didQueueMicrotask(JSC::JSGlobalObject*, JSC::MicrotaskIdentifier) final;
void willRunMicrotask(JSC::JSGlobalObject*, JSC::MicrotaskIdentifier) final;
void didRunMicrotask(JSC::JSGlobalObject*, JSC::MicrotaskIdentifier) final;
void didPause(JSC::JSGlobalObject*, JSC::DebuggerCallFrame&, JSC::JSValue exceptionOrCaughtValue) final;
void didContinue() final;
void applyBreakpoints(JSC::CodeBlock*) final;
void breakpointActionSound(JSC::BreakpointActionID) final;
void breakpointActionProbe(JSC::JSGlobalObject*, JSC::BreakpointActionID, unsigned batchId, unsigned sampleId, JSC::JSValue sample) final;
void didDeferBreakpointPause(JSC::BreakpointID) final;
bool isPaused() const;
bool breakpointsActive() const;
void setSuppressAllPauses(bool);
void handleConsoleAssert(const String& message);
enum class AsyncCallType {
DOMTimer,
EventListener,
PostMessage,
RequestAnimationFrame,
Microtask,
};
void didScheduleAsyncCall(JSC::JSGlobalObject*, AsyncCallType, uint64_t callbackId, bool singleShot);
void didCancelAsyncCall(AsyncCallType, uint64_t callbackId);
void willDispatchAsyncCall(AsyncCallType, uint64_t callbackId);
void didDispatchAsyncCall(AsyncCallType, uint64_t callbackId);
AsyncStackTrace* currentParentStackTrace() const;
void schedulePauseAtNextOpportunity(DebuggerFrontendDispatcher::Reason, RefPtr<JSON::Object>&& data = nullptr);
void cancelPauseAtNextOpportunity();
bool pauseOnNextStatementEnabled() const { return m_javaScriptPauseScheduled; }
bool schedulePauseForSpecialBreakpoint(JSC::Breakpoint&, DebuggerFrontendDispatcher::Reason, RefPtr<JSON::Object>&& data = nullptr);
bool cancelPauseForSpecialBreakpoint(JSC::Breakpoint&);
void breakProgram(DebuggerFrontendDispatcher::Reason, RefPtr<JSON::Object>&& data = nullptr, RefPtr<JSC::Breakpoint>&& specialBreakpoint = nullptr);
void scriptExecutionBlockedByCSP(const String& directiveText);
class Listener {
public:
virtual ~Listener() { }
virtual void debuggerWasEnabled() = 0;
virtual void debuggerWasDisabled() = 0;
};
void addListener(Listener& listener) { m_listeners.add(&listener); }
void removeListener(Listener& listener) { m_listeners.remove(&listener); }
protected:
InspectorDebuggerAgent(AgentContext&);
virtual void internalEnable();
virtual void internalDisable(bool isBeingDestroyed);
Protocol::ErrorStringOr<std::tuple<Ref<Protocol::Runtime::RemoteObject>, std::optional<bool> /* wasThrown */, std::optional<int> /* savedResultIndex */>> evaluateOnCallFrame(InjectedScript&, const Protocol::Debugger::CallFrameId&, const String& expression, const String& objectGroup, std::optional<bool>&& includeCommandLineAPI, std::optional<bool>&& doNotPauseOnExceptionsAndMuteConsole, std::optional<bool>&& returnByValue, std::optional<bool>&& generatePreview, std::optional<bool>&& saveResult, std::optional<bool>&& emulateUserGesture);
InjectedScriptManager& injectedScriptManager() const { return m_injectedScriptManager; }
virtual InjectedScript injectedScriptForEval(Protocol::ErrorString&, std::optional<Protocol::Runtime::ExecutionContextId>&&) = 0;
JSC::Debugger& debugger() { return m_debugger; }
virtual void muteConsole() = 0;
virtual void unmuteConsole() = 0;
virtual String sourceMapURLForScript(const JSC::Debugger::Script&);
void didClearGlobalObject();
virtual void didClearAsyncStackTraceData();
private:
void setBlackboxConfiguration(JSC::SourceID, const JSC::Debugger::Script&);
Ref<JSON::ArrayOf<Protocol::Debugger::CallFrame>> currentCallFrames(const InjectedScript&);
class ProtocolBreakpoint {
WTF_MAKE_TZONE_ALLOCATED(ProtocolBreakpoint);
public:
static std::optional<ProtocolBreakpoint> fromPayload(Protocol::ErrorString&, JSC::SourceID, unsigned lineNumber, unsigned columnNumber, RefPtr<JSON::Object>&& options = nullptr);
static std::optional<ProtocolBreakpoint> fromPayload(Protocol::ErrorString&, const String& url, bool isRegex, unsigned lineNumber, unsigned columnNumber, RefPtr<JSON::Object>&& options = nullptr);
ProtocolBreakpoint();
ProtocolBreakpoint(JSC::SourceID, unsigned lineNumber, unsigned columnNumber, const String& condition = nullString(), JSC::Breakpoint::ActionsVector&& actions = { }, bool autoContinue = false, size_t ignoreCount = 0);
ProtocolBreakpoint(const String& url, bool isRegex, unsigned lineNumber, unsigned columnNumber, const String& condition = nullString(), JSC::Breakpoint::ActionsVector&& actions = { }, bool autoContinue = false, size_t ignoreCount = 0);
Ref<JSC::Breakpoint> createDebuggerBreakpoint(JSC::BreakpointID, JSC::SourceID) const;
const Protocol::Debugger::BreakpointId& id() const { return m_id; }
bool matchesScriptURL(const String&) const;
private:
Protocol::Debugger::BreakpointId m_id;
#if ASSERT_ENABLED
JSC::SourceID m_sourceID { JSC::noSourceID };
#endif
String m_url;
bool m_isRegex { false };
// FIXME: <https://webkit.org/b/162771> Web Inspector: Adopt TextPosition in Inspector to avoid oneBasedInt/zeroBasedInt ambiguity
unsigned m_lineNumber { 0 };
unsigned m_columnNumber { 0 };
String m_condition;
JSC::Breakpoint::ActionsVector m_actions;
bool m_autoContinue { false };
size_t m_ignoreCount { 0 };
};
bool resolveBreakpoint(const JSC::Debugger::Script&, JSC::Breakpoint&);
bool setBreakpoint(JSC::Breakpoint&);
void didSetBreakpoint(ProtocolBreakpoint&, JSC::Breakpoint&);
bool assertPaused(Protocol::ErrorString&);
void clearDebuggerBreakpointState();
void clearInspectorBreakpointState();
void clearPauseDetails();
void clearExceptionValue();
void clearAsyncStackTraceData();
enum class ShouldDispatchResumed { No, WhenIdle, WhenContinued };
void registerIdleHandler();
void willStepAndMayBecomeIdle();
void didBecomeIdle();
void updatePauseReasonAndData(DebuggerFrontendDispatcher::Reason, RefPtr<JSON::Object>&& data);
RefPtr<JSON::Object> buildBreakpointPauseReason(JSC::BreakpointID);
RefPtr<JSON::Object> buildExceptionPauseReason(JSC::JSValue exception, const InjectedScript&);
using AsyncCallIdentifier = std::pair<unsigned, uint64_t>;
static AsyncCallIdentifier asyncCallIdentifier(AsyncCallType, uint64_t callbackId);
std::unique_ptr<DebuggerFrontendDispatcher> m_frontendDispatcher;
RefPtr<DebuggerBackendDispatcher> m_backendDispatcher;
JSC::Debugger& m_debugger;
InjectedScriptManager& m_injectedScriptManager;
UncheckedKeyHashMap<JSC::SourceID, JSC::Debugger::Script> m_scripts;
using BlackboxParameters = std::tuple<String /* url */, bool /* caseSensitive */, bool /* isRegex */>;
UncheckedKeyHashMap<BlackboxParameters, UncheckedKeyHashSet<JSC::Debugger::BlackboxRange>> m_blackboxedURLs;
UncheckedKeyHashSet<Listener*> m_listeners;
JSC::JSGlobalObject* m_pausedGlobalObject { nullptr };
JSC::Strong<JSC::Unknown> m_currentCallStack;
UncheckedKeyHashMap<Protocol::Debugger::BreakpointId, ProtocolBreakpoint> m_protocolBreakpointForProtocolBreakpointID;
UncheckedKeyHashMap<Protocol::Debugger::BreakpointId, JSC::BreakpointsVector> m_debuggerBreakpointsForProtocolBreakpointID;
JSC::BreakpointID m_nextDebuggerBreakpointID { JSC::noBreakpointID + 1 };
RefPtr<JSC::Breakpoint> m_continueToLocationDebuggerBreakpoint;
ShouldDispatchResumed m_conditionToDispatchResumed { ShouldDispatchResumed::No };
DebuggerFrontendDispatcher::Reason m_pauseReason;
RefPtr<JSON::Object> m_pauseData;
DebuggerFrontendDispatcher::Reason m_preBlackboxPauseReason;
RefPtr<JSON::Object> m_preBlackboxPauseData;
UncheckedKeyHashMap<AsyncCallIdentifier, RefPtr<AsyncStackTrace>> m_pendingAsyncCalls;
Vector<AsyncCallIdentifier> m_currentAsyncCallIdentifierStack;
int m_asyncStackTraceDepth { 0 };
RefPtr<JSC::Breakpoint> m_pauseOnAssertionsBreakpoint;
RefPtr<JSC::Breakpoint> m_pauseOnMicrotasksBreakpoint;
struct SymbolicBreakpoint {
String symbol;
bool caseSensitive { true };
bool isRegex { false };
// This is only used for the breakpoint configuration (i.e. it's irrelevant when comparing).
RefPtr<JSC::Breakpoint> specialBreakpoint;
// Avoid having to (re)match the regex each time a function as called.
UncheckedKeyHashSet<String> knownMatchingSymbols;
inline bool operator==(const SymbolicBreakpoint& other) const
{
return symbol == other.symbol
&& caseSensitive == other.caseSensitive
&& isRegex == other.isRegex;
}
bool matches(const String&);
private:
std::optional<JSC::Yarr::RegularExpression> m_symbolMatchRegex;
};
Vector<SymbolicBreakpoint> m_symbolicBreakpoints;
bool m_enabled { false };
bool m_enablePauseWhenIdle { false };
bool m_pauseForInternalScripts { false };
bool m_javaScriptPauseScheduled { false };
bool m_didPauseStopwatch { false };
bool m_hasExceptionValue { false };
bool m_registeredIdleCallback { false };
};
} // namespace Inspector
SPECIALIZE_TYPE_TRAITS_BEGIN(Inspector::InspectorDebuggerAgent)
static bool isType(const JSC::Debugger::Client& context) { return context.isInspectorDebuggerAgent(); }
SPECIALIZE_TYPE_TRAITS_END()
|