1
1
use std:: sync:: mpsc;
2
2
3
3
use anyhow:: { anyhow, Context } ;
4
- use wasmtime:: { Engine , Linker , Module , Store , TypedFunc } ;
4
+ use wasmtime:: { Engine , IntoFunc , Linker , Module , Store , TypedFunc } ;
5
5
use wasmtime_wasi:: WasiCtxBuilder ;
6
6
7
7
use crate :: add_bind_function_with_module;
@@ -39,6 +39,7 @@ pub struct WasmBpfModuleRunner {
39
39
/// The linker which will be used
40
40
pub linker : Linker < AppState > ,
41
41
operation_tx : mpsc:: Sender < ProgramOperation > ,
42
+ main_module : Module ,
42
43
}
43
44
44
45
impl WasmBpfModuleRunner {
@@ -88,14 +89,12 @@ impl WasmBpfModuleRunner {
88
89
wrapper_poll:: bpf_buffer_poll_wrapper,
89
90
POLL_WRAPPER_FUNCTION_NAME
90
91
) ?;
91
- linker
92
- . module ( & mut store, MAIN_MODULE_NAME , & main_module)
93
- . with_context ( || anyhow ! ( "Failed to link main module" ) ) ?;
94
92
Ok ( Self {
95
93
engine,
96
94
store,
97
95
linker,
98
96
operation_tx : tx,
97
+ main_module,
99
98
} )
100
99
}
101
100
/// Consume this runner, return a handle to the wasm program, which can control the pause/resume/terminate of the program
@@ -104,6 +103,10 @@ impl WasmBpfModuleRunner {
104
103
pub fn into_engine_and_entry_func (
105
104
mut self ,
106
105
) -> anyhow:: Result < ( WasmProgramHandle , WasmBpfEntryFuncWrapper ) > {
106
+ self . linker
107
+ . module ( & mut self . store , MAIN_MODULE_NAME , & self . main_module )
108
+ . with_context ( || anyhow ! ( "Failed to link main module" ) ) ?;
109
+
107
110
let func = self
108
111
. linker
109
112
. get ( & mut self . store , MAIN_MODULE_NAME , "_start" )
@@ -119,4 +122,13 @@ impl WasmBpfModuleRunner {
119
122
} ,
120
123
) )
121
124
}
125
+ /// Register a custom host function. It has the similar signature as `wasmtime::linker::Linker::func_wrap`
126
+ pub fn register_host_function < Params , Args > (
127
+ & mut self ,
128
+ module : & str ,
129
+ name : & str ,
130
+ func : impl IntoFunc < AppState , Params , Args > ,
131
+ ) -> anyhow:: Result < ( ) > {
132
+ self . linker . func_wrap ( module, name, func) . map ( |_| ( ) )
133
+ }
122
134
}
0 commit comments