Skip to content

Commit 051676d

Browse files
committed
Support args for wasmedge
Signed-off-by: James Sturtevant <[email protected]>
1 parent f2c6b97 commit 051676d

File tree

1 file changed

+14
-28
lines changed

1 file changed

+14
-28
lines changed

crates/containerd-shim-wasmedge/src/executor.rs

+14-28
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
use anyhow::Result;
2+
use containerd_shim_wasm::sandbox::oci;
23
use nix::unistd::{dup, dup2};
34
use oci_spec::runtime::Spec;
45

@@ -8,7 +9,7 @@ use std::os::unix::io::RawFd;
89

910
use wasmedge_sdk::{
1011
config::{CommonConfigOptions, ConfigBuilder, HostRegistrationConfigOptions},
11-
params, VmBuilder,
12+
params, VmBuilder
1213
};
1314

1415
const EXECUTOR_NAME: &str = "wasmedge";
@@ -21,16 +22,6 @@ pub struct WasmEdgeExecutor {
2122

2223
impl Executor for WasmEdgeExecutor {
2324
fn exec(&self, spec: &Spec) -> Result<(), ExecutorError> {
24-
// parse wasi parameters
25-
let args = get_args(spec);
26-
if args.is_empty() {
27-
return Err(ExecutorError::InvalidArg);
28-
}
29-
30-
let mut cmd = args[0].clone();
31-
if let Some(stripped) = args[0].strip_prefix(std::path::MAIN_SEPARATOR) {
32-
cmd = stripped.to_string();
33-
}
3425
let envs = env_to_wasi(spec);
3526

3627
// create configuration with `wasi` option enabled
@@ -51,14 +42,23 @@ impl Executor for WasmEdgeExecutor {
5142
.ok_or_else(|| anyhow::Error::msg("Not found wasi module"))
5243
.map_err(|err| ExecutorError::Execution(err.into()))?;
5344

45+
let module_args = oci::get_module_args(spec);
5446
wasi_module.initialize(
55-
Some(args.iter().map(|s| s as &str).collect()),
47+
Some(module_args.iter().map(|s| s as &str).collect()),
5648
Some(envs.iter().map(|s| s as &str).collect()),
5749
None,
5850
);
5951

52+
let (module_name, method) = oci::get_module(spec);
53+
let module_name = match module_name {
54+
Some(m) => m,
55+
None => {
56+
return Err(ExecutorError::Execution(anyhow::Error::msg("no module provided, cannot load module from file within container").into()))
57+
}
58+
};
59+
6060
let vm = vm
61-
.register_module_from_file("main", cmd)
61+
.register_module_from_file("main", module_name)
6262
.map_err(|err| ExecutorError::Execution(err))?;
6363

6464
if let Some(stdin) = self.stdin {
@@ -74,9 +74,7 @@ impl Executor for WasmEdgeExecutor {
7474
let _ = dup2(stderr, STDERR_FILENO);
7575
}
7676

77-
// TODO: How to get exit code?
78-
// This was relatively straight forward in go, but wasi and wasmtime are totally separate things in rust
79-
match vm.run_func(Some("main"), "_start", params!()) {
77+
match vm.run_func(Some("main"), method, params!()) {
8078
Ok(_) => std::process::exit(0),
8179
Err(_) => std::process::exit(137),
8280
};
@@ -91,18 +89,6 @@ impl Executor for WasmEdgeExecutor {
9189
}
9290
}
9391

94-
fn get_args(spec: &Spec) -> &[String] {
95-
let p = match spec.process() {
96-
None => return &[],
97-
Some(p) => p,
98-
};
99-
100-
match p.args() {
101-
None => &[],
102-
Some(args) => args.as_slice(),
103-
}
104-
}
105-
10692
fn env_to_wasi(spec: &Spec) -> Vec<String> {
10793
let default = vec![];
10894
let env = spec

0 commit comments

Comments
 (0)