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
use anyhow::{anyhow, Result};
use std::{
io::{Read, Write},
path::{Path, PathBuf},
time::{Duration, Instant},
};
use wasi_cap_std_sync::{ambient_authority, Dir};
use wasi_common::{dir::DirCaps, pipe::WritePipe, WasiFile};
use wasi_common::{file::FileCaps, pipe::ReadPipe};
use wasmtime_wasi::tokio::WasiCtxBuilder;
use crate::io::OutputBuffer;
use super::{
host_component::{HostComponents, HostComponentsData},
limits::StoreLimitsAsync,
Data,
};
pub struct Store<T> {
inner: wasmtime::Store<Data<T>>,
epoch_tick_interval: Duration,
}
impl<T> Store<T> {
pub fn host_components_data(&mut self) -> &mut HostComponentsData {
&mut self.inner.data_mut().host_components_data
}
pub fn set_deadline(&mut self, deadline: Instant) {
let now = Instant::now();
let duration = deadline - now;
let ticks = if duration.is_zero() {
tracing::warn!("Execution deadline set in past: {deadline:?} < {now:?}");
0
} else {
let ticks = duration.as_micros() / self.epoch_tick_interval.as_micros();
let ticks = ticks.min(u64::MAX as u128) as u64;
ticks + 1 };
self.inner.set_epoch_deadline(ticks);
}
}
impl<T> AsRef<wasmtime::Store<Data<T>>> for Store<T> {
fn as_ref(&self) -> &wasmtime::Store<Data<T>> {
&self.inner
}
}
impl<T> AsMut<wasmtime::Store<Data<T>>> for Store<T> {
fn as_mut(&mut self) -> &mut wasmtime::Store<Data<T>> {
&mut self.inner
}
}
impl<T> wasmtime::AsContext for Store<T> {
type Data = Data<T>;
fn as_context(&self) -> wasmtime::StoreContext<'_, Self::Data> {
self.inner.as_context()
}
}
impl<T> wasmtime::AsContextMut for Store<T> {
fn as_context_mut(&mut self) -> wasmtime::StoreContextMut<'_, Self::Data> {
self.inner.as_context_mut()
}
}
const WASI_FIRST_PREOPENED_DIR_FD: u32 = 3;
const READ_ONLY_DIR_CAPS: DirCaps = DirCaps::from_bits_truncate(
DirCaps::OPEN.bits()
| DirCaps::READDIR.bits()
| DirCaps::READLINK.bits()
| DirCaps::PATH_FILESTAT_GET.bits()
| DirCaps::FILESTAT_GET.bits(),
);
const READ_ONLY_FILE_CAPS: FileCaps = FileCaps::from_bits_truncate(
FileCaps::READ.bits()
| FileCaps::SEEK.bits()
| FileCaps::TELL.bits()
| FileCaps::FILESTAT_GET.bits()
| FileCaps::POLL_READWRITE.bits(),
);
pub struct StoreBuilder {
engine: wasmtime::Engine,
epoch_tick_interval: Duration,
wasi: std::result::Result<Option<WasiCtxBuilder>, String>,
read_only_preopened_dirs: Vec<(Dir, PathBuf)>,
host_components_data: HostComponentsData,
store_limits: StoreLimitsAsync,
}
impl StoreBuilder {
pub(crate) fn new(
engine: wasmtime::Engine,
epoch_tick_interval: Duration,
host_components: &HostComponents,
) -> Self {
Self {
engine,
epoch_tick_interval,
wasi: Ok(Some(WasiCtxBuilder::new())),
read_only_preopened_dirs: Vec::new(),
host_components_data: host_components.new_data(),
store_limits: StoreLimitsAsync::default(),
}
}
pub fn max_memory_size(&mut self, max_memory_size: usize) {
self.store_limits = StoreLimitsAsync::new(Some(max_memory_size), None);
}
pub fn inherit_stdin(&mut self) {
self.with_wasi(|wasi| wasi.inherit_stdin());
}
pub fn stdin(&mut self, file: impl WasiFile + 'static) {
self.with_wasi(|wasi| wasi.stdin(Box::new(file)))
}
pub fn stdin_pipe(&mut self, r: impl Read + Send + Sync + 'static) {
self.stdin(ReadPipe::new(r))
}
pub fn inherit_stdout(&mut self) {
self.with_wasi(|wasi| wasi.inherit_stdout());
}
pub fn stdout(&mut self, file: impl WasiFile + 'static) {
self.with_wasi(|wasi| wasi.stdout(Box::new(file)))
}
pub fn stdout_pipe(&mut self, w: impl Write + Send + Sync + 'static) {
self.stdout(WritePipe::new(w))
}
pub fn stdout_buffered(&mut self) -> OutputBuffer {
let buffer = OutputBuffer::default();
self.stdout(buffer.writer());
buffer
}
pub fn inherit_stderr(&mut self) {
self.with_wasi(|wasi| wasi.inherit_stderr());
}
pub fn stderr(&mut self, file: impl WasiFile + 'static) {
self.with_wasi(|wasi| wasi.stderr(Box::new(file)))
}
pub fn stderr_pipe(&mut self, w: impl Write + Send + Sync + 'static) {
self.stderr(WritePipe::new(w))
}
pub fn stderr_buffered(&mut self) -> OutputBuffer {
let buffer = OutputBuffer::default();
self.stderr(buffer.writer());
buffer
}
pub fn args<'b>(&mut self, args: impl IntoIterator<Item = &'b str>) -> Result<()> {
self.try_with_wasi(|mut wasi| {
for arg in args {
wasi = wasi.arg(arg)?;
}
Ok(wasi)
})
}
pub fn env(
&mut self,
vars: impl IntoIterator<Item = (impl AsRef<str>, impl AsRef<str>)>,
) -> Result<()> {
self.try_with_wasi(|mut wasi| {
for (k, v) in vars {
wasi = wasi.env(k.as_ref(), v.as_ref())?;
}
Ok(wasi)
})
}
pub fn read_only_preopened_dir(
&mut self,
host_path: impl AsRef<Path>,
guest_path: PathBuf,
) -> Result<()> {
let dir = wasmtime_wasi::Dir::open_ambient_dir(host_path, ambient_authority())?;
self.read_only_preopened_dirs.push((dir, guest_path));
Ok(())
}
pub fn read_write_preopened_dir(
&mut self,
host_path: impl AsRef<Path>,
guest_path: PathBuf,
) -> Result<()> {
let dir = wasmtime_wasi::Dir::open_ambient_dir(host_path, ambient_authority())?;
self.try_with_wasi(|wasi| wasi.preopened_dir(dir, guest_path))
}
pub fn host_components_data(&mut self) -> &mut HostComponentsData {
&mut self.host_components_data
}
pub fn build_with_data<T>(self, inner_data: T) -> Result<Store<T>> {
let mut wasi = self.wasi.map_err(anyhow::Error::msg)?.unwrap().build();
for (idx, (dir, path)) in self.read_only_preopened_dirs.into_iter().enumerate() {
let fd = WASI_FIRST_PREOPENED_DIR_FD + idx as u32;
let dir = Box::new(wasmtime_wasi::tokio::Dir::from_cap_std(dir));
wasi.insert_dir(fd, dir, READ_ONLY_DIR_CAPS, READ_ONLY_FILE_CAPS, path);
}
let mut inner = wasmtime::Store::new(
&self.engine,
Data {
inner: inner_data,
wasi,
host_components_data: self.host_components_data,
store_limits: self.store_limits,
},
);
inner.limiter_async(move |data| &mut data.store_limits);
inner.set_epoch_deadline(u64::MAX / 2);
Ok(Store {
inner,
epoch_tick_interval: self.epoch_tick_interval,
})
}
pub fn build<T: Default>(self) -> Result<Store<T>> {
self.build_with_data(T::default())
}
fn with_wasi(&mut self, f: impl FnOnce(WasiCtxBuilder) -> WasiCtxBuilder) {
let _ = self.try_with_wasi(|wasi| Ok(f(wasi)));
}
fn try_with_wasi(
&mut self,
f: impl FnOnce(WasiCtxBuilder) -> Result<WasiCtxBuilder>,
) -> Result<()> {
let wasi = self
.wasi
.as_mut()
.map_err(|err| anyhow!("StoreBuilder already failed: {}", err))?
.take()
.unwrap();
match f(wasi) {
Ok(wasi) => {
self.wasi = Ok(Some(wasi));
Ok(())
}
Err(err) => {
self.wasi = Err(err.to_string());
Err(err)
}
}
}
}