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
|
// Copyright 2014 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef THIRD_PARTY_BLINK_RENDERER_PLATFORM_BINDINGS_SCRIPT_STATE_H_
#define THIRD_PARTY_BLINK_RENDERER_PLATFORM_BINDINGS_SCRIPT_STATE_H_
#include "base/memory/raw_ptr.h"
#include "gin/public/context_holder.h"
#include "gin/public/gin_embedders.h"
#include "third_party/blink/public/common/tokens/tokens.h"
#include "third_party/blink/renderer/platform/bindings/scoped_persistent.h"
#include "third_party/blink/renderer/platform/heap/garbage_collected.h"
#include "third_party/blink/renderer/platform/heap/member.h"
#include "third_party/blink/renderer/platform/heap/self_keep_alive.h"
#include "third_party/blink/renderer/platform/platform_export.h"
#include "third_party/blink/renderer/platform/wtf/assertions.h"
#include "third_party/blink/renderer/platform/wtf/text/wtf_string.h"
#include "v8/include/v8.h"
namespace blink {
class DOMWrapperWorld;
class ExecutionContext;
class ScriptValue;
class V8PerContextData;
// ScriptState is an abstraction class that holds all information about script
// execution (e.g., v8::Isolate, v8::Context, DOMWrapperWorld, ExecutionContext
// etc). If you need any info about the script execution, you're expected to
// pass around ScriptState in the code base. ScriptState is in a 1:1
// relationship with v8::Context.
//
// When you need ScriptState, you can add [CallWith=ScriptState] to IDL files
// and pass around ScriptState into a place where you need ScriptState.
//
// In some cases, you need ScriptState in code that doesn't have any JavaScript
// on the stack. Then you can store ScriptState on a C++ object using
// Member<ScriptState> or Persistent<ScriptState>.
//
// class SomeObject : public GarbageCollected<SomeObject> {
// void someMethod(ScriptState* scriptState) {
// script_state_ = scriptState; // Record the ScriptState.
// ...;
// }
//
// void asynchronousMethod() {
// if (!script_state_->contextIsValid()) {
// // It's possible that the context is already gone.
// return;
// }
// // Enter the ScriptState.
// ScriptState::Scope scope(script_state_);
// // Do V8 related things.
// ToV8(...);
// }
//
// virtual void Trace(Visitor* visitor) const {
// visitor->Trace(script_state_); // ScriptState also needs to be traced.
// }
//
// Member<ScriptState> script_state_;
// };
//
// You should not store ScriptState on a C++ object that can be accessed
// by multiple worlds. For example, you can store ScriptState on
// ScriptPromiseResolverBase, ScriptValue etc because they can be accessed from
// one world. However, you cannot store ScriptState on a DOM object that has an
// IDL interface because the DOM object can be accessed from multiple worlds. If
// ScriptState of one world "leak"s to another world, you will end up with
// leaking any JavaScript objects from one Chrome extension to another Chrome
// extension, which is a severe security bug.
//
// Lifetime:
// ScriptState is created when v8::Context is created.
// ScriptState is destroyed when v8::Context is garbage-collected and
// all V8 proxy objects that have references to the ScriptState are destructed.
class PLATFORM_EXPORT ScriptState : public GarbageCollected<ScriptState> {
public:
class Scope final {
STACK_ALLOCATED();
public:
// You need to make sure that scriptState->context() is not empty before
// creating a Scope.
explicit Scope(ScriptState* script_state)
: handle_scope_(script_state->GetIsolate()),
context_(script_state->GetContext()) {
DCHECK(script_state->ContextIsValid());
context_->Enter();
}
~Scope() { context_->Exit(); }
private:
v8::HandleScope handle_scope_;
v8::Local<v8::Context> context_;
};
// Use EscapableScope if you have to return a v8::Local to an outer scope.
// See v8::EscapableHandleScope.
class EscapableScope final {
STACK_ALLOCATED();
public:
// You need to make sure that scriptState->context() is not empty before
// creating a Scope.
explicit EscapableScope(ScriptState* script_state)
: handle_scope_(script_state->GetIsolate()),
context_(script_state->GetContext()) {
DCHECK(script_state->ContextIsValid());
context_->Enter();
}
~EscapableScope() { context_->Exit(); }
v8::Local<v8::Value> Escape(v8::Local<v8::Value> value) {
return handle_scope_.Escape(value);
}
private:
v8::EscapableHandleScope handle_scope_;
v8::Local<v8::Context> context_;
};
static ScriptState* Create(v8::Local<v8::Context>,
DOMWrapperWorld*,
ExecutionContext*);
ScriptState(const ScriptState&) = delete;
ScriptState& operator=(const ScriptState&) = delete;
virtual ~ScriptState();
virtual void Trace(Visitor*) const;
static ScriptState* ForCurrentRealm(v8::Isolate* isolate) {
DCHECK(isolate->InContext());
return From(isolate, isolate->GetCurrentContext());
}
static ScriptState* ForCurrentRealm(
const v8::FunctionCallbackInfo<v8::Value>& info) {
return ForCurrentRealm(info.GetIsolate());
}
static ScriptState* ForCurrentRealm(
const v8::PropertyCallbackInfo<v8::Value>& info) {
return ForCurrentRealm(info.GetIsolate());
}
static ScriptState* ForRelevantRealm(v8::Isolate* isolate,
v8::Local<v8::Object> object) {
DCHECK(!object.IsEmpty());
ScriptState* script_state = static_cast<ScriptState*>(
object->GetAlignedPointerFromEmbedderDataInCreationContext(
isolate, kV8ContextPerContextDataIndex));
// ScriptState::ForRelevantRealm() must be called only for objects having a
// creation context while the context must have a valid embedder data in
// the embedder field.
DCHECK(script_state);
return script_state;
}
static ScriptState* From(v8::Isolate* isolate,
v8::Local<v8::Context> context) {
DCHECK(!context.IsEmpty());
ScriptState* script_state =
static_cast<ScriptState*>(context->GetAlignedPointerFromEmbedderData(
isolate, kV8ContextPerContextDataIndex));
// ScriptState::From() must not be called for a context that does not have
// valid embedder data in the embedder field.
DCHECK(script_state);
SECURITY_CHECK(script_state->context_ == context);
return script_state;
}
// For use when it is not absolutely certain that the v8::Context is
// associated with a ScriptState. This is necessary in unit tests when a
// v8::Context is created directly on the v8 API without going through the
// usual blink codepaths.
// This is also called in some situations where DissociateContext() has
// already been called and therefore the ScriptState pointer on the
// v8::Context has already been nulled.
static ScriptState* MaybeFrom(v8::Isolate* isolate,
v8::Local<v8::Context> context) {
DCHECK(!context.IsEmpty());
if (context->GetNumberOfEmbedderDataFields() <=
kV8ContextPerContextDataIndex) {
return nullptr;
}
ScriptState* script_state =
static_cast<ScriptState*>(context->GetAlignedPointerFromEmbedderData(
isolate, kV8ContextPerContextDataIndex));
SECURITY_CHECK(!script_state || script_state->context_ == context);
return script_state;
}
v8::Isolate* GetIsolate() const { return isolate_; }
DOMWrapperWorld& World() const { return *world_; }
const V8ContextToken& GetToken() const { return token_; }
// This can return an empty handle if the v8::Context is gone.
v8::Local<v8::Context> GetContext() const {
return context_.NewLocal(isolate_);
}
bool ContextIsValid() const {
return !context_.IsEmpty() && per_context_data_;
}
void DetachGlobalObject();
V8PerContextData* PerContextData() const { return per_context_data_.Get(); }
void DisposePerContextData();
// This method is expected to be called only from
// WorkerOrWorkletScriptController to run operations that should have been
// invoked by a weak callback if a V8 GC were run, in a worker thread
// termination.
void DissociateContext();
void RecordScriptCompilation(String file, bool used_code_cache) {
last_compiled_script_file_name_ = file;
last_compiled_script_used_code_cache_ = used_code_cache;
}
String last_compiled_script_file_name() const {
return last_compiled_script_file_name_;
}
bool last_compiled_script_used_code_cache() const {
return last_compiled_script_used_code_cache_;
}
protected:
ScriptState(v8::Local<v8::Context>, DOMWrapperWorld*, ExecutionContext*);
private:
static void OnV8ContextCollectedCallback(
const v8::WeakCallbackInfo<ScriptState>&);
raw_ptr<v8::Isolate, DanglingUntriaged> isolate_;
// This persistent handle is weak.
ScopedPersistent<v8::Context> context_;
// This refptr doesn't cause a cycle because all persistent handles that
// DOMWrapperWorld holds are weak.
Member<DOMWrapperWorld> world_;
Member<V8PerContextData> per_context_data_;
// v8::Context has an internal field to this ScriptState* as a raw pointer,
// which is out of scope of Blink GC, but it must be a strong reference. We
// use |reference_from_v8_context_| to represent this strong reference. The
// lifetime of |reference_from_v8_context_| and the internal field must match
// exactly.
SelfKeepAlive<ScriptState> reference_from_v8_context_{this};
// Serves as a unique ID for this context, which can be used to name the
// context in browser/renderer communications.
V8ContextToken token_;
using CreateCallback = ScriptState* (*)(v8::Local<v8::Context>,
DOMWrapperWorld*,
ExecutionContext*);
static CreateCallback s_create_callback_;
static void SetCreateCallback(CreateCallback);
friend class ScriptStateImpl;
static constexpr int kV8ContextPerContextDataIndex =
static_cast<int>(gin::kPerContextDataStartIndex) +
static_cast<int>(gin::kEmbedderBlink);
// For accessing information about the last script compilation via
// internals.idl.
String last_compiled_script_file_name_;
bool last_compiled_script_used_code_cache_ = false;
};
// ScriptStateProtectingContext keeps the context associated with the
// ScriptState alive. You need to call Clear() once you no longer need the
// context. Otherwise, the context will leak.
class ScriptStateProtectingContext final
: public GarbageCollected<ScriptStateProtectingContext> {
public:
explicit ScriptStateProtectingContext(ScriptState* script_state)
: script_state_(script_state) {
if (script_state_) {
context_.Set(script_state_->GetIsolate(), script_state_->GetContext());
context_.Get().AnnotateStrongRetainer(
"blink::ScriptStateProtectingContext::context_");
}
}
ScriptStateProtectingContext(const ScriptStateProtectingContext&) = delete;
ScriptStateProtectingContext& operator=(const ScriptStateProtectingContext&) =
delete;
void Trace(Visitor* visitor) const { visitor->Trace(script_state_); }
ScriptState* Get() const { return script_state_.Get(); }
void Reset() {
script_state_ = nullptr;
context_.Clear();
}
// ScriptState like interface
bool ContextIsValid() const { return script_state_->ContextIsValid(); }
v8::Isolate* GetIsolate() const { return script_state_->GetIsolate(); }
v8::Local<v8::Context> GetContext() const {
return script_state_->GetContext();
}
private:
Member<ScriptState> script_state_;
ScopedPersistent<v8::Context> context_;
};
} // namespace blink
#endif // THIRD_PARTY_BLINK_RENDERER_PLATFORM_BINDINGS_SCRIPT_STATE_H_
|