Skip to content

Commit

Permalink
WIP: change plugin interface to avoid unloading plugin before it's safe
Browse files Browse the repository at this point in the history
I seem to have solved the crashes related to the plugin's op dispatchers
and op futures getting dropped after the plugin is unloaded.

However `runTestPluginClose()` still crashes, it's not quite clear to me
yet what causes it.
  • Loading branch information
piscisaureus committed May 10, 2020
1 parent e9318aa commit 0c6c103
Show file tree
Hide file tree
Showing 8 changed files with 40 additions and 24 deletions.
1 change: 1 addition & 0 deletions cli/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ pub mod msg;
pub mod op_error;
pub mod ops;
pub mod permissions;
pub mod plugin;
mod repl;
pub mod resolve_addr;
pub mod signal;
Expand Down
2 changes: 1 addition & 1 deletion cli/ops/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ pub mod net;
mod net_unix;
pub mod os;
pub mod permissions;
pub mod plugins;
pub mod plugin;
pub mod process;
pub mod random;
pub mod repl;
Expand Down
24 changes: 17 additions & 7 deletions cli/ops/plugins.rs → cli/ops/plugin.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,17 @@ use super::dispatch_json::{Deserialize, JsonOp, Value};
use crate::fs as deno_fs;
use crate::op_error::OpError;
use crate::ops::json_op;
use crate::plugin::InitContext;
use crate::state::State;

use deno_core::CoreIsolate;
use deno_core::ZeroCopyBuf;
use dlopen::symbor::Library;
use std::ffi::OsStr;
use std::path::Path;
use std::rc::Rc;

pub type PluginInitFn = fn(isolate: &mut CoreIsolate);
pub type PluginInitFn = fn(&mut InitContext);

pub fn init(i: &mut CoreIsolate, s: &State) {
i.register_op(
Expand All @@ -18,13 +21,19 @@ pub fn init(i: &mut CoreIsolate, s: &State) {
);
}

fn open_plugin<P: AsRef<OsStr>>(lib_path: P) -> Result<Library, OpError> {
fn open_plugin<P: AsRef<OsStr>>(lib_path: P) -> Result<Rc<Library>, OpError> {
debug!("Loading Plugin: {:#?}", lib_path.as_ref());
Library::open(lib_path).map_err(OpError::from)
Library::open(lib_path).map(Rc::new).map_err(OpError::from)
}

struct PluginResource {
lib: Library,
lib: Rc<Library>,
}

impl PluginResource {
fn new(lib: &Rc<Library>) -> Self {
Self { lib: lib.clone() }
}
}

#[derive(Deserialize)]
Expand All @@ -45,8 +54,8 @@ pub fn op_open_plugin(

state.check_plugin(&filename)?;

let lib = open_plugin(filename).unwrap();
let plugin_resource = PluginResource { lib };
let plugin_lib = open_plugin(filename).unwrap();
let plugin_resource = PluginResource::new(&plugin_lib);

let mut resource_table = isolate.resource_table.borrow_mut();
let rid = resource_table.add("plugin", Box::new(plugin_resource));
Expand All @@ -60,7 +69,8 @@ pub fn op_open_plugin(
.unwrap();
drop(resource_table);

deno_plugin_init(isolate);
let mut context = InitContext::new(isolate, &plugin_lib);
deno_plugin_init(&mut context);

Ok(JsonOp::Sync(json!(rid)))
}
2 changes: 1 addition & 1 deletion cli/web_worker.rs
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ impl WebWorker {
ops::runtime_compiler::init(isolate, &state);
ops::fs::init(isolate, &state);
ops::fs_events::init(isolate, &state);
ops::plugins::init(isolate, &state);
ops::plugin::init(isolate, &state);
ops::net::init(isolate, &state);
ops::tls::init(isolate, &state);
ops::os::init(isolate, &state);
Expand Down
2 changes: 1 addition & 1 deletion cli/worker.rs
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ impl MainWorker {
ops::fs::init(isolate, &state);
ops::fs_events::init(isolate, &state);
ops::io::init(isolate, &state);
ops::plugins::init(isolate, &state);
ops::plugin::init(isolate, &state);
ops::net::init(isolate, &state);
ops::tls::init(isolate, &state);
ops::os::init(isolate, &state);
Expand Down
20 changes: 13 additions & 7 deletions core/ops.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,19 @@ pub enum Op {
AsyncUnref(OpAsyncFuture),
}

/// Main type describing op
pub type OpDispatcher =
dyn Fn(&mut CoreIsolate, &[u8], Option<ZeroCopyBuf>) -> Op + 'static;
/// Main trait describing op dispatcher.
pub trait OpDispatcher:
Fn(&'_ mut CoreIsolate, &'_ [u8], Option<ZeroCopyBuf>) -> Op + 'static
{
}
impl<F> OpDispatcher for F where
F: Fn(&'_ mut CoreIsolate, &'_ [u8], Option<ZeroCopyBuf>) -> Op + 'static
{
}

#[derive(Default)]
pub struct OpRegistry {
dispatchers: Vec<Rc<OpDispatcher>>,
dispatchers: Vec<Rc<dyn OpDispatcher>>,
name_to_id: HashMap<String, OpId>,
}

Expand All @@ -41,7 +47,7 @@ impl OpRegistry {
registry
}

pub fn register<F>(&mut self, name: &str, op: F) -> OpId
pub fn register<F>(&mut self, name: &str, dispatcher: F) -> OpId
where
F: Fn(&mut CoreIsolate, &[u8], Option<ZeroCopyBuf>) -> Op + 'static,
{
Expand All @@ -52,7 +58,7 @@ impl OpRegistry {
existing.is_none(),
format!("Op already registered: {}", name)
);
self.dispatchers.push(Rc::new(op));
self.dispatchers.push(Rc::new(dispatcher));
op_id
}

Expand All @@ -61,7 +67,7 @@ impl OpRegistry {
op_map_json.as_bytes().to_owned().into_boxed_slice()
}

pub fn get(&self, op_id: OpId) -> Option<Rc<OpDispatcher>> {
pub fn get(&self, op_id: OpId) -> Option<Rc<dyn OpDispatcher>> {
self.dispatchers.get(op_id as usize).map(Rc::clone)
}
}
Expand Down
8 changes: 5 additions & 3 deletions test_plugin/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,16 +1,18 @@
extern crate deno_core;
extern crate futures;

use deno::plugin::register_op;
use deno::plugin::InitContext;
use deno_core::Buf;
use deno_core::CoreIsolate;
use deno_core::Op;
use deno_core::ZeroCopyBuf;
use futures::future::FutureExt;

#[no_mangle]
pub fn deno_plugin_init(isolate: &mut CoreIsolate) {
isolate.register_op("testSync", op_test_sync);
isolate.register_op("testAsync", op_test_async);
pub fn deno_plugin_init(context: &mut InitContext) {
register_op(context, "testSync", op_test_sync);
register_op(context, "testAsync", op_test_async);
}

pub fn op_test_sync(
Expand Down
5 changes: 1 addition & 4 deletions test_plugin/tests/integration_tests.rs
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
// To run this test manually:
// cd test_plugin
// ../target/debug/deno --allow-plugin tests/test.js debug

// TODO(ry) Re-enable this test on windows. It is flaky for an unknown reason.
#![cfg(not(windows))]
// ../target/debug/deno run --unstable --allow-plugin tests/test.js debug

use deno::test_util::*;
use std::process::Command;
Expand Down

0 comments on commit 0c6c103

Please sign in to comment.