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
use std::collections::BTreeMap;
use crate::*;
pub struct Plugin {
pub module: Module,
pub linker: Linker<Internal>,
pub instance: Instance,
pub last_error: std::cell::RefCell<Option<std::ffi::CString>>,
pub memory: PluginMemory,
pub manifest: Manifest,
pub vars: BTreeMap<String, Vec<u8>>,
pub should_reinstantiate: bool,
pub timer_id: uuid::Uuid,
}
pub struct Internal {
pub input_length: usize,
pub input: *const u8,
pub output_offset: usize,
pub output_length: usize,
pub plugin: *mut Plugin,
pub wasi: Option<Wasi>,
pub http_status: u16,
}
pub struct Wasi {
pub ctx: wasmtime_wasi::WasiCtx,
#[cfg(feature = "nn")]
pub nn: wasmtime_wasi_nn::WasiNnCtx,
#[cfg(not(feature = "nn"))]
pub nn: (),
}
impl Internal {
fn new(manifest: &Manifest, wasi: bool) -> Result<Self, Error> {
let wasi = if wasi {
let auth = wasmtime_wasi::ambient_authority();
let mut ctx = wasmtime_wasi::WasiCtxBuilder::new();
for (k, v) in manifest.as_ref().config.iter() {
ctx = ctx.env(k, v)?;
}
if let Some(a) = &manifest.as_ref().allowed_paths {
for (k, v) in a.iter() {
let d = wasmtime_wasi::Dir::open_ambient_dir(k, auth)?;
ctx = ctx.preopened_dir(d, v)?;
}
}
#[cfg(feature = "nn")]
let nn = wasmtime_wasi_nn::WasiNnCtx::new()?;
#[cfg(not(feature = "nn"))]
#[allow(clippy::let_unit_value)]
let nn = ();
Some(Wasi {
ctx: ctx.build(),
nn,
})
} else {
None
};
Ok(Internal {
input_length: 0,
output_offset: 0,
output_length: 0,
input: std::ptr::null(),
wasi,
plugin: std::ptr::null_mut(),
http_status: 0,
})
}
pub fn plugin(&self) -> &Plugin {
unsafe { &*self.plugin }
}
pub fn plugin_mut(&mut self) -> &mut Plugin {
unsafe { &mut *self.plugin }
}
pub fn memory(&self) -> &PluginMemory {
&self.plugin().memory
}
pub fn memory_mut(&mut self) -> &mut PluginMemory {
&mut self.plugin_mut().memory
}
}
const EXPORT_MODULE_NAME: &str = "env";
impl Plugin {
pub fn new<'a>(
wasm: impl AsRef<[u8]>,
imports: impl IntoIterator<Item = &'a Function>,
with_wasi: bool,
) -> Result<Plugin, Error> {
let engine = Engine::new(
Config::new()
.epoch_interruption(true)
.debug_info(std::env::var("EXTISM_DEBUG").is_ok()),
)?;
let mut imports = imports.into_iter();
let (manifest, modules) = Manifest::new(&engine, wasm.as_ref())?;
let mut store = Store::new(&engine, Internal::new(&manifest, with_wasi)?);
store.epoch_deadline_callback(|_internal| Err(Error::msg("timeout")));
let memory = Memory::new(
&mut store,
MemoryType::new(4, manifest.as_ref().memory.max_pages),
)?;
let mut memory = PluginMemory::new(store, memory);
let mut linker = Linker::new(&engine);
linker.allow_shadowing(true);
if with_wasi {
wasmtime_wasi::add_to_linker(&mut linker, |x: &mut Internal| {
&mut x.wasi.as_mut().unwrap().ctx
})?;
#[cfg(feature = "nn")]
wasmtime_wasi_nn::add_to_linker(&mut linker, |x: &mut Internal| {
&mut x.wasi.as_mut().unwrap().nn
})?;
}
let (main_name, main) = modules.get("main").map(|x| ("main", x)).unwrap_or_else(|| {
let entry = modules.iter().last().unwrap();
(entry.0.as_str(), entry.1)
});
macro_rules! define_funcs {
($m:expr, { $($name:ident($($args:expr),*) $(-> $($r:expr),*)?);* $(;)?}) => {
match $m {
$(
concat!("extism_", stringify!($name)) => {
let t = FuncType::new([$($args),*], [$($($r),*)?]);
let f = Func::new(&mut memory.store, t, pdk::$name);
linker.define(EXPORT_MODULE_NAME, concat!("extism_", stringify!($name)), Extern::Func(f))?;
continue
}
)*
_ => ()
}
};
}
for (_name, module) in modules.iter() {
for import in module.imports() {
let module_name = import.module();
let name = import.name();
use wasmtime::ValType::*;
if module_name == EXPORT_MODULE_NAME {
define_funcs!(name, {
alloc(I64) -> I64;
free(I64);
load_u8(I64) -> I32;
load_u64(I64) -> I64;
store_u8(I64, I32);
store_u64(I64, I64);
input_length() -> I64;
input_load_u8(I64) -> I32;
input_load_u64(I64) -> I64;
output_set(I64, I64);
error_set(I64);
config_get(I64) -> I64;
var_get(I64) -> I64;
var_set(I64, I64);
http_request(I64, I64) -> I64;
http_status_code() -> I32;
length(I64) -> I64;
log_warn(I64);
log_info(I64);
log_debug(I64);
log_error(I64);
});
for f in &mut imports {
let name = f.name().to_string();
let func = Func::new(&mut memory.store, f.ty().clone(), unsafe {
&*std::sync::Arc::as_ptr(&f.f)
});
linker.define(EXPORT_MODULE_NAME, &name, func)?;
}
}
}
}
for (name, module) in modules.iter() {
if name != main_name {
linker.module(&mut memory.store, name, module)?;
linker.alias_module(name, "env")?;
}
}
let instance = linker.instantiate(&mut memory.store, main)?;
let mut plugin = Plugin {
module: main.clone(),
linker,
memory,
instance,
last_error: std::cell::RefCell::new(None),
manifest,
vars: BTreeMap::new(),
should_reinstantiate: false,
timer_id: uuid::Uuid::new_v4(),
};
plugin.initialize_runtime()?;
Ok(plugin)
}
pub fn get_func(&mut self, function: impl AsRef<str>) -> Option<Func> {
self.instance
.get_func(&mut self.memory.store, function.as_ref())
}
pub fn set_error(&self, e: impl std::fmt::Debug) {
debug!("Set error: {:?}", e);
*self.last_error.borrow_mut() = Some(error_string(e));
}
pub fn error<E>(&self, e: impl std::fmt::Debug, x: E) -> E {
self.set_error(e);
x
}
pub fn clear_error(&self) {
*self.last_error.borrow_mut() = None;
}
pub fn set_input(&mut self, input: *const u8, mut len: usize) {
if input.is_null() {
len = 0;
}
let ptr = self as *mut _;
let internal = self.memory.store.data_mut();
internal.input = input;
internal.input_length = len;
internal.plugin = ptr;
}
pub fn dump_memory(&self) {
self.memory.dump();
}
pub fn reinstantiate(&mut self) -> Result<(), Error> {
let instance = self
.linker
.instantiate(&mut self.memory.store, &self.module)?;
self.instance = instance;
self.initialize_runtime()?;
Ok(())
}
pub fn has_wasi(&self) -> bool {
self.memory.store.data().wasi.is_some()
}
fn detect_runtime(&mut self) -> Option<Runtime> {
if let Some(init) = self.get_func("hs_init") {
if let Some(cleanup) = self.get_func("hs_exit") {
if init.typed::<(i32, i32), ()>(&self.memory.store).is_err() {
trace!(
"hs_init function found with type {:?}",
init.ty(&self.memory.store)
);
return None;
}
return Some(Runtime::Haskell { init, cleanup });
}
}
trace!("No runtime detected");
None
}
fn initialize_runtime(&mut self) -> Result<(), Error> {
if let Some(runtime) = self.detect_runtime() {
if let Some(timer) = Context::timer().as_ref() {
self.memory.store.set_epoch_deadline(1);
self.start_timer(&timer.tx)?;
let x = runtime.init(self);
self.stop_timer(&timer.tx)?;
self.memory.store.set_epoch_deadline(0);
return x;
}
}
Ok(())
}
pub(crate) fn start_timer(
&mut self,
tx: &std::sync::mpsc::SyncSender<TimerAction>,
) -> Result<(), Error> {
if let Some(duration) = self.manifest.as_ref().timeout_ms {
self.memory.store.set_epoch_deadline(1);
let engine: Engine = self.memory.store.engine().clone();
tx.send(TimerAction::Start {
id: self.timer_id,
duration: std::time::Duration::from_millis(duration),
engine,
})?;
} else {
self.memory.store.set_epoch_deadline(1);
}
Ok(())
}
pub(crate) fn stop_timer(
&mut self,
tx: &std::sync::mpsc::SyncSender<TimerAction>,
) -> Result<(), Error> {
if self.manifest.as_ref().timeout_ms.is_some() {
tx.send(TimerAction::Stop { id: self.timer_id })?;
}
Ok(())
}
}
enum Runtime {
Haskell { init: Func, cleanup: Func },
}
impl Runtime {
fn init(&self, plugin: &mut Plugin) -> Result<(), Error> {
match self {
Runtime::Haskell { init, cleanup: _ } => {
let mut results = vec![Val::null(); init.ty(&plugin.memory.store).results().len()];
init.call(
&mut plugin.memory.store,
&[Val::I32(0), Val::I32(0)],
results.as_mut_slice(),
)?;
debug!("Initialized Haskell language runtime");
}
}
Ok(())
}
fn cleanup(&self, plugin: &mut Plugin) -> Result<(), Error> {
match self {
Runtime::Haskell { init: _, cleanup } => {
let mut results =
vec![Val::null(); cleanup.ty(&plugin.memory.store).results().len()];
cleanup.call(&mut plugin.memory.store, &[], results.as_mut_slice())?;
debug!("Cleaned up Haskell language runtime");
}
}
Ok(())
}
}
impl Drop for Plugin {
fn drop(&mut self) {
if let Some(runtime) = self.detect_runtime() {
self.memory.store.set_epoch_deadline(1);
if let Some(timer) = Context::timer().as_ref() {
if self.start_timer(&timer.tx).is_ok() {
if let Err(e) = runtime.cleanup(self) {
error!("Unable to cleanup runtime: {e:?}");
}
if let Err(e) = self.stop_timer(&timer.tx) {
error!("Unable to stop timer in Plugin::drop: {e:?}");
}
}
}
}
}
}