v8/context.rs
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
// Copyright 2019-2021 the Deno authors. All rights reserved. MIT license.
use crate::handle::UnsafeRefHandle;
use crate::isolate::BuildTypeIdHasher;
use crate::isolate::Isolate;
use crate::isolate::RawSlot;
use crate::support::int;
use crate::Context;
use crate::HandleScope;
use crate::Local;
use crate::MicrotaskQueue;
use crate::Object;
use crate::ObjectTemplate;
use crate::Value;
use crate::Weak;
use std::any::TypeId;
use std::collections::HashMap;
use std::ffi::c_void;
use std::ptr::{null, null_mut};
extern "C" {
fn v8__Context__New(
isolate: *mut Isolate,
templ: *const ObjectTemplate,
global_object: *const Value,
microtask_queue: *mut MicrotaskQueue,
) -> *const Context;
fn v8__Context__GetIsolate(this: *const Context) -> *mut Isolate;
fn v8__Context__Global(this: *const Context) -> *const Object;
fn v8__Context__GetExtrasBindingObject(this: *const Context)
-> *const Object;
fn v8__Context__GetNumberOfEmbedderDataFields(this: *const Context) -> u32;
fn v8__Context__GetAlignedPointerFromEmbedderData(
this: *const Context,
index: int,
) -> *mut c_void;
fn v8__Context__SetAlignedPointerInEmbedderData(
this: *const Context,
index: int,
value: *mut c_void,
);
fn v8__Context__FromSnapshot(
isolate: *mut Isolate,
context_snapshot_index: usize,
global_object: *const Value,
microtask_queue: *mut MicrotaskQueue,
) -> *const Context;
pub(super) fn v8__Context__GetSecurityToken(
this: *const Context,
) -> *const Value;
pub(super) fn v8__Context__SetSecurityToken(
this: *const Context,
value: *const Value,
);
pub(super) fn v8__Context__UseDefaultSecurityToken(this: *const Context);
pub(super) fn v8__Context__AllowCodeGenerationFromStrings(
this: *const Context,
allow: bool,
);
pub(super) fn v8__Context_IsCodeGenerationFromStringsAllowed(
this: *const Context,
) -> bool;
fn v8__Context__GetMicrotaskQueue(
this: *const Context,
) -> *const MicrotaskQueue;
fn v8__Context__SetMicrotaskQueue(
this: *const Context,
microtask_queue: *const MicrotaskQueue,
);
}
#[derive(Default)]
pub struct ContextOptions<'s> {
/// An optional object template from which the global object for the newly created context will
/// be created.
pub global_template: Option<Local<'s, ObjectTemplate>>,
/// An optional global object to be reused for the newly created context. This global object
/// must have been created by a previous call to Context::New with the same global template.
/// The state of the global object will be completely reset and only object identify will
/// remain.
pub global_object: Option<Local<'s, Value>>,
/// An optional microtask queue used to manage the microtasks created in this context. If not
/// set the per-isolate default microtask queue would be used.
pub microtask_queue: Option<*mut MicrotaskQueue>,
}
impl Context {
const ANNEX_SLOT: int = 1;
const INTERNAL_SLOT_COUNT: int = 1;
/// Creates a new context.
#[inline(always)]
pub fn new<'s>(
scope: &mut HandleScope<'s, ()>,
options: ContextOptions,
) -> Local<'s, Context> {
unsafe {
scope.cast_local(|sd| {
v8__Context__New(
sd.get_isolate_ptr(),
options
.global_template
.map(|t| &*t as *const _)
.unwrap_or_else(null),
options
.global_object
.map(|o| &*o as *const _)
.unwrap_or_else(null),
options.microtask_queue.unwrap_or_else(null_mut),
)
})
}
.unwrap()
}
#[inline(always)]
pub fn get_extras_binding_object<'s>(
&self,
scope: &mut HandleScope<'s, ()>,
) -> Local<'s, Object> {
unsafe { scope.cast_local(|_| v8__Context__GetExtrasBindingObject(self)) }
.unwrap()
}
/// Returns the global proxy object.
///
/// Global proxy object is a thin wrapper whose prototype points to actual
/// context's global object with the properties like Object, etc. This is done
/// that way for security reasons (for more details see
/// https://wiki.mozilla.org/Gecko:SplitWindow).
///
/// Please note that changes to global proxy object prototype most probably
/// would break VM---v8 expects only global object as a prototype of global
/// proxy object.
#[inline(always)]
pub fn global<'s>(
&self,
scope: &mut HandleScope<'s, ()>,
) -> Local<'s, Object> {
unsafe { scope.cast_local(|_| v8__Context__Global(self)) }.unwrap()
}
#[inline(always)]
pub fn get_microtask_queue(&self) -> &MicrotaskQueue {
unsafe { &*v8__Context__GetMicrotaskQueue(self) }
}
#[inline(always)]
pub fn set_microtask_queue(&self, microtask_queue: &MicrotaskQueue) {
unsafe {
v8__Context__SetMicrotaskQueue(self, microtask_queue);
}
}
#[inline]
fn get_annex_mut(
&self,
create_if_not_present: bool,
) -> Option<&mut ContextAnnex> {
let isolate = unsafe { &mut *v8__Context__GetIsolate(self) };
let num_data_fields =
unsafe { v8__Context__GetNumberOfEmbedderDataFields(self) } as int;
if num_data_fields > Self::ANNEX_SLOT {
let annex_ptr = unsafe {
v8__Context__GetAlignedPointerFromEmbedderData(self, Self::ANNEX_SLOT)
} as *mut ContextAnnex;
if !annex_ptr.is_null() {
// SAFETY: This reference doesn't outlive the Context, so it can't outlive
// the annex itself. Also, any mutations or accesses to the annex after
// its creation require a mutable reference to the context's isolate, but
// such a mutable reference is consumed by this reference during its
// lifetime.
return Some(unsafe { &mut *annex_ptr });
}
}
if !create_if_not_present {
return None;
}
let annex = Box::new(ContextAnnex {
slots: Default::default(),
// Gets replaced later in the method.
self_weak: Weak::empty(isolate),
});
let annex_ptr = Box::into_raw(annex);
unsafe {
v8__Context__SetAlignedPointerInEmbedderData(
self,
Self::ANNEX_SLOT,
annex_ptr as *mut _,
)
};
assert!(
unsafe { v8__Context__GetNumberOfEmbedderDataFields(self) } as int
> Self::ANNEX_SLOT
);
// Make sure to drop the annex after the context is dropped, by creating a
// weak handle with a finalizer that drops the annex, and storing the weak
// in the annex itself.
let weak = {
// SAFETY: `self` can only have been derived from a `Local` or `Global`,
// and assuming the caller is only using safe code, the `Local` or
// `Global` must still be alive, so `self_ref_handle` won't outlive it.
// We also check above that `isolate` is the context's isolate.
let self_ref_handle = unsafe { UnsafeRefHandle::new(self, isolate) };
Weak::with_guaranteed_finalizer(
isolate,
self_ref_handle,
Box::new(move || {
// SAFETY: The lifetimes of references to the annex returned by this
// method are always tied to the context, and because this is the
// context's finalizer, we know there are no living references to
// the annex. And since the finalizer is only called once, the annex
// can't have been dropped before.
let _ = unsafe { Box::from_raw(annex_ptr) };
}),
)
};
// SAFETY: This reference doesn't outlive the Context, so it can't outlive
// the annex itself. Also, any mutations or accesses to the annex after
// its creation require a mutable reference to the context's isolate, but
// such a mutable reference is consumed by this reference during its
// lifetime.
let annex_mut = unsafe { &mut *annex_ptr };
annex_mut.self_weak = weak;
Some(annex_mut)
}
/// Get a reference to embedder data added with [`Self::set_slot()`].
#[inline(always)]
pub fn get_slot<T: 'static>(&self) -> Option<&T> {
if let Some(annex) = self.get_annex_mut(false) {
annex.slots.get(&TypeId::of::<T>()).map(|slot| {
// SAFETY: `Self::set_slot` guarantees that only values of type T will be
// stored with T's TypeId as their key.
unsafe { slot.borrow::<T>() }
})
} else {
None
}
}
/// Get a mutable reference to embedder data added with [`Self::set_slot()`].
#[inline(always)]
pub fn get_slot_mut<T: 'static>(&self) -> Option<&mut T> {
if let Some(annex) = self.get_annex_mut(false) {
annex.slots.get_mut(&TypeId::of::<T>()).map(|slot| {
// SAFETY: `Self::set_slot` guarantees that only values of type T will be
// stored with T's TypeId as their key.
unsafe { slot.borrow_mut::<T>() }
})
} else {
None
}
}
/// Use with [`Context::get_slot`] and [`Context::get_slot_mut`] to associate
/// state with a Context.
///
/// This method gives ownership of value to the Context. Exactly one object of
/// each type can be associated with a Context. If called more than once with
/// an object of the same type, the earlier version will be dropped and
/// replaced.
///
/// Returns true if value was set without replacing an existing value.
///
/// The value will be dropped when the context is garbage collected.
#[inline(always)]
pub fn set_slot<T: 'static>(&self, value: T) -> bool {
self
.get_annex_mut(true)
.unwrap()
.slots
.insert(TypeId::of::<T>(), RawSlot::new(value))
.is_none()
}
/// Removes the embedder data added with [`Self::set_slot()`] and returns it
/// if it exists.
#[inline(always)]
pub fn remove_slot<T: 'static>(&self) -> Option<T> {
if let Some(annex) = self.get_annex_mut(false) {
annex.slots.remove(&TypeId::of::<T>()).map(|slot| {
// SAFETY: `Self::set_slot` guarantees that only values of type T will be
// stored with T's TypeId as their key.
unsafe { slot.into_inner::<T>() }
})
} else {
None
}
}
/// Removes all embedder data added with [`Self::set_slot()`], and
/// deletes any internal state needed to keep track of such slots.
///
/// This is needed to make a snapshot with
/// [`SnapshotCreator`](crate::SnapshotCreator), since the internal embedder
/// state uses [`Weak`] handles, which cannot be alive at the time of
/// snapshotting.
#[inline(always)]
pub fn clear_all_slots(&self) {
if let Some(annex_mut) = self.get_annex_mut(false) {
let annex_ptr = annex_mut as *mut ContextAnnex;
let _ = unsafe { Box::from_raw(annex_ptr) };
unsafe {
v8__Context__SetAlignedPointerInEmbedderData(
self,
Self::ANNEX_SLOT,
null_mut(),
)
};
}
}
#[inline(always)]
pub unsafe fn set_aligned_pointer_in_embedder_data(
&self,
slot: i32,
data: *mut c_void,
) {
// Initialize the annex when slot count > INTERNAL_SLOT_COUNT.
self.get_annex_mut(true);
v8__Context__SetAlignedPointerInEmbedderData(
self,
slot + Self::INTERNAL_SLOT_COUNT,
data,
)
}
#[inline(always)]
pub fn get_aligned_pointer_from_embedder_data(
&self,
slot: i32,
) -> *mut c_void {
unsafe {
v8__Context__GetAlignedPointerFromEmbedderData(
self,
slot + Self::INTERNAL_SLOT_COUNT,
)
}
}
/// Create a new context from a (non-default) context snapshot. There
/// is no way to provide a global object template since we do not create
/// a new global object from template, but we can reuse a global object.
pub fn from_snapshot<'s>(
scope: &mut HandleScope<'s, ()>,
context_snapshot_index: usize,
options: ContextOptions,
) -> Option<Local<'s, Context>> {
unsafe {
scope.cast_local(|sd| {
v8__Context__FromSnapshot(
sd.get_isolate_mut(),
context_snapshot_index,
options
.global_object
.map(|o| &*o as *const _)
.unwrap_or_else(null),
options.microtask_queue.unwrap_or_else(null_mut),
)
})
}
}
#[inline(always)]
pub fn get_security_token<'s>(
&self,
scope: &mut HandleScope<'s, ()>,
) -> Local<'s, Value> {
unsafe { scope.cast_local(|_| v8__Context__GetSecurityToken(self)) }
.unwrap()
}
#[inline(always)]
pub fn set_security_token(&self, token: Local<Value>) {
unsafe {
v8__Context__SetSecurityToken(self, &*token);
}
}
#[inline(always)]
pub fn use_default_security_token(&self) {
unsafe {
v8__Context__UseDefaultSecurityToken(self);
}
}
pub fn set_allow_generation_from_strings(&self, allow: bool) {
unsafe {
v8__Context__AllowCodeGenerationFromStrings(self, allow);
}
}
pub fn is_code_generation_from_strings_allowed(&self) -> bool {
unsafe { v8__Context_IsCodeGenerationFromStringsAllowed(self) }
}
}
struct ContextAnnex {
slots: HashMap<TypeId, RawSlot, BuildTypeIdHasher>,
// In order to run the finalizer that drops the ContextAnnex when the Context
// is GC'd, the corresponding Weak must be kept alive until that time.
self_weak: Weak<Context>,
}