-
Notifications
You must be signed in to change notification settings - Fork 813
/
mod.rs
1289 lines (1173 loc) · 42.7 KB
/
mod.rs
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
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#![allow(unused, clippy::too_many_arguments, clippy::cognitive_complexity)]
pub mod types {
pub use wasmer_wasix_types::{types::*, wasi};
}
#[cfg(any(
target_os = "freebsd",
target_os = "linux",
target_os = "android",
target_vendor = "apple"
))]
pub mod unix;
#[cfg(any(target_family = "wasm"))]
pub mod wasm;
#[cfg(any(target_os = "windows"))]
pub mod windows;
pub mod wasi;
pub mod wasix;
use bytes::{Buf, BufMut};
use futures::{
future::{BoxFuture, LocalBoxFuture},
Future,
};
use tracing::instrument;
pub use wasi::*;
pub use wasix::*;
pub mod legacy;
pub(crate) use std::{
borrow::{Borrow, Cow},
cell::RefCell,
collections::{hash_map::Entry, HashMap, HashSet},
convert::{Infallible, TryInto},
io::{self, Read, Seek, Write},
mem::transmute,
net::{IpAddr, Ipv4Addr, Ipv6Addr, SocketAddr},
num::NonZeroU64,
ops::{Deref, DerefMut},
path::Path,
pin::Pin,
sync::{
atomic::{AtomicBool, AtomicU32, AtomicU64, Ordering},
mpsc, Arc, Condvar, Mutex,
},
task::{Context, Poll},
thread::LocalKey,
time::Duration,
};
use std::{io::IoSlice, marker::PhantomData, mem::MaybeUninit, task::Waker, time::Instant};
pub(crate) use bytes::{Bytes, BytesMut};
pub(crate) use cooked_waker::IntoWaker;
pub(crate) use sha2::Sha256;
pub(crate) use tracing::{debug, error, trace, warn};
#[cfg(any(
target_os = "freebsd",
target_os = "linux",
target_os = "android",
target_vendor = "apple"
))]
pub use unix::*;
#[cfg(any(target_family = "wasm"))]
pub use wasm::*;
pub(crate) use virtual_fs::{
AsyncSeekExt, AsyncWriteExt, DuplexPipe, FileSystem, FsError, VirtualFile,
};
pub(crate) use virtual_net::StreamSecurity;
pub(crate) use wasmer::{
AsStoreMut, AsStoreRef, Extern, Function, FunctionEnv, FunctionEnvMut, Global, Instance,
Memory, Memory32, Memory64, MemoryAccessError, MemoryError, MemorySize, MemoryView, Module,
OnCalledAction, Pages, RuntimeError, Store, TypedFunction, Value, WasmPtr, WasmSlice,
};
pub(crate) use wasmer_wasix_types::{asyncify::__wasi_asyncify_t, wasi::EventUnion};
#[cfg(any(target_os = "windows"))]
pub use windows::*;
pub(crate) use self::types::{
wasi::{
Addressfamily, Advice, Clockid, Dircookie, Dirent, Errno, Event, EventFdReadwrite,
Eventrwflags, Eventtype, ExitCode, Fd as WasiFd, Fdflags, Fdstat, Filesize, Filestat,
Filetype, Fstflags, Linkcount, Longsize, OptionFd, Pid, Prestat, Rights, Snapshot0Clockid,
Sockoption, Sockstatus, Socktype, StackSnapshot, StdioMode as WasiStdioMode,
Streamsecurity, Subscription, SubscriptionFsReadwrite, Tid, Timestamp, TlKey, TlUser,
TlVal, Tty, Whence,
},
*,
};
use self::{state::WasiInstanceGuardMemory, utils::WasiDummyWaker};
pub(crate) use crate::os::task::{
process::{WasiProcessId, WasiProcessWait},
thread::{WasiThread, WasiThreadId},
};
pub(crate) use crate::{
bin_factory::spawn_exec_module,
import_object_for_all_wasi_versions, mem_error_to_wasi,
net::{
read_ip_port,
socket::{InodeHttpSocketType, InodeSocket, InodeSocketKind},
write_ip_port,
},
runtime::SpawnMemoryType,
state::{
self, iterate_poll_events, InodeGuard, InodeWeakGuard, PollEvent, PollEventBuilder,
WasiFutex, WasiState,
},
utils::{self, map_io_err},
Runtime, VirtualTaskManager, WasiEnv, WasiError, WasiFunctionEnv, WasiInstanceHandles,
WasiVFork,
};
use crate::{
fs::{
fs_error_into_wasi_err, virtual_file_type_to_wasi_file_type, Fd, InodeVal, Kind,
MAX_SYMLINKS,
},
os::task::thread::RewindResult,
runtime::task_manager::InlineWaker,
utils::store::InstanceSnapshot,
DeepSleepWork, RewindPostProcess, RewindState, SpawnError, WasiInodes,
};
pub(crate) use crate::{net::net_error_into_wasi_err, utils::WasiParkingLot};
pub(crate) fn to_offset<M: MemorySize>(offset: usize) -> Result<M::Offset, Errno> {
let ret: M::Offset = offset.try_into().map_err(|_| Errno::Inval)?;
Ok(ret)
}
pub(crate) fn from_offset<M: MemorySize>(offset: M::Offset) -> Result<usize, Errno> {
let ret: usize = offset.try_into().map_err(|_| Errno::Inval)?;
Ok(ret)
}
pub(crate) fn write_bytes_inner<T: Write, M: MemorySize>(
mut write_loc: T,
memory: &MemoryView,
iovs_arr_cell: WasmSlice<__wasi_ciovec_t<M>>,
) -> Result<usize, Errno> {
let mut bytes_written = 0usize;
for iov in iovs_arr_cell.iter() {
let iov_inner = iov.read().map_err(mem_error_to_wasi)?;
let bytes = WasmPtr::<u8, M>::new(iov_inner.buf)
.slice(memory, iov_inner.buf_len)
.map_err(mem_error_to_wasi)?;
let bytes = bytes.read_to_vec().map_err(mem_error_to_wasi)?;
write_loc.write_all(&bytes).map_err(map_io_err)?;
bytes_written += from_offset::<M>(iov_inner.buf_len)?;
}
Ok(bytes_written)
}
pub(crate) fn write_bytes<T: Write, M: MemorySize>(
mut write_loc: T,
memory: &MemoryView,
iovs_arr: WasmSlice<__wasi_ciovec_t<M>>,
) -> Result<usize, Errno> {
let result = write_bytes_inner::<_, M>(&mut write_loc, memory, iovs_arr);
write_loc.flush();
result
}
pub(crate) fn copy_from_slice<M: MemorySize>(
mut read_loc: &[u8],
memory: &MemoryView,
iovs_arr: WasmSlice<__wasi_iovec_t<M>>,
) -> Result<usize, Errno> {
let mut bytes_read = 0usize;
let iovs_arr = iovs_arr.access().map_err(mem_error_to_wasi)?;
for iovs in iovs_arr.iter() {
let mut buf = WasmPtr::<u8, M>::new(iovs.buf)
.slice(memory, iovs.buf_len)
.map_err(mem_error_to_wasi)?
.access()
.map_err(mem_error_to_wasi)?;
let to_read = from_offset::<M>(iovs.buf_len)?;
let to_read = to_read.min(read_loc.len());
if to_read == 0 {
break;
}
let (left, right) = read_loc.split_at(to_read);
buf.copy_from_slice(left);
read_loc = right;
bytes_read += to_read;
}
Ok(bytes_read)
}
pub(crate) fn read_bytes<T: Read, M: MemorySize>(
mut reader: T,
memory: &MemoryView,
iovs_arr: WasmSlice<__wasi_iovec_t<M>>,
) -> Result<usize, Errno> {
let mut bytes_read = 0usize;
let iovs_arr = iovs_arr.access().map_err(mem_error_to_wasi)?;
for iovs in iovs_arr.iter() {
let mut buf = WasmPtr::<u8, M>::new(iovs.buf)
.slice(memory, iovs.buf_len)
.map_err(mem_error_to_wasi)?
.access()
.map_err(mem_error_to_wasi)?;
let to_read = buf.len();
let has_read = reader.read(buf.as_mut()).map_err(map_io_err)?;
bytes_read += has_read;
if has_read != to_read {
return Ok(bytes_read);
}
}
Ok(bytes_read)
}
/// Writes data to the stderr
// TODO: remove allow once inodes are refactored (see comments on [`WasiState`])
#[allow(clippy::await_holding_lock)]
pub unsafe fn stderr_write<'a>(
ctx: &FunctionEnvMut<'_, WasiEnv>,
buf: &[u8],
) -> LocalBoxFuture<'a, Result<(), Errno>> {
let env = ctx.data();
let (memory, state, inodes) = env.get_memory_and_wasi_state_and_inodes(ctx, 0);
let buf = buf.to_vec();
let fd_map = state.fs.fd_map.clone();
Box::pin(async move {
let mut stderr = WasiInodes::stderr_mut(&fd_map).map_err(fs_error_into_wasi_err)?;
stderr.write_all(&buf).await.map_err(map_io_err)
})
}
fn block_on_with_timeout<T, Fut>(
tasks: &Arc<dyn VirtualTaskManager>,
timeout: Option<Duration>,
work: Fut,
) -> Result<Result<T, Errno>, WasiError>
where
Fut: Future<Output = Result<Result<T, Errno>, WasiError>>,
{
let mut nonblocking = false;
if timeout == Some(Duration::ZERO) {
nonblocking = true;
}
let timeout = async {
if let Some(timeout) = timeout {
if !nonblocking {
tasks.sleep_now(timeout).await
} else {
InfiniteSleep::default().await
}
} else {
InfiniteSleep::default().await
}
};
let work = async move {
tokio::select! {
// The main work we are doing
res = work => res,
// Optional timeout
_ = timeout => Ok(Err(Errno::Timedout)),
}
};
// Fast path
if nonblocking {
let waker = WasiDummyWaker.into_waker();
let mut cx = Context::from_waker(&waker);
let mut pinned_work = Box::pin(work);
if let Poll::Ready(res) = pinned_work.as_mut().poll(&mut cx) {
return res;
}
return Ok(Err(Errno::Again));
}
// Slow path, block on the work and process process
InlineWaker::block_on(work)
}
/// Asyncify takes the current thread and blocks on the async runtime associated with it
/// thus allowed for asynchronous operations to execute. It has built in functionality
/// to (optionally) timeout the IO, force exit the process, callback signals and pump
/// synchronous IO engine
pub(crate) fn __asyncify<T, Fut>(
ctx: &mut FunctionEnvMut<'_, WasiEnv>,
timeout: Option<Duration>,
work: Fut,
) -> Result<Result<T, Errno>, WasiError>
where
T: 'static,
Fut: std::future::Future<Output = Result<T, Errno>>,
{
let mut env = ctx.data();
// Check if we need to exit the asynchronous loop
if let Some(exit_code) = env.should_exit() {
return Err(WasiError::Exit(exit_code));
}
// This poller will process any signals when the main working function is idle
struct Poller<'a, 'b, Fut, T>
where
Fut: Future<Output = Result<T, Errno>>,
{
ctx: &'a mut FunctionEnvMut<'b, WasiEnv>,
pinned_work: Pin<Box<Fut>>,
}
impl<'a, 'b, Fut, T> Future for Poller<'a, 'b, Fut, T>
where
Fut: Future<Output = Result<T, Errno>>,
{
type Output = Result<Fut::Output, WasiError>;
fn poll(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> {
if let Poll::Ready(res) = Pin::new(&mut self.pinned_work).poll(cx) {
return Poll::Ready(Ok(res));
}
if let Some(signals) = self.ctx.data().thread.pop_signals_or_subscribe(cx.waker()) {
if let Err(err) = WasiEnv::process_signals_internal(self.ctx, signals) {
return Poll::Ready(Err(err));
}
return Poll::Ready(Ok(Err(Errno::Intr)));
}
Poll::Pending
}
}
// Block on the work
let mut pinned_work = Box::pin(work);
let tasks = env.tasks().clone();
let poller = Poller { ctx, pinned_work };
block_on_with_timeout(&tasks, timeout, poller)
}
/// Future that will be polled by asyncify methods
/// (the return value is what will be returned in rewind
/// or in the instant response)
pub type AsyncifyFuture = dyn Future<Output = Bytes> + Send + Sync + 'static;
// This poller will process any signals when the main working function is idle
struct AsyncifyPoller<'a, 'b, 'c, T, Fut>
where
Fut: Future<Output = T> + Send + Sync + 'static,
{
process_signals: bool,
ctx: &'b mut FunctionEnvMut<'c, WasiEnv>,
work: &'a mut Pin<Box<Fut>>,
}
impl<'a, 'b, 'c, T, Fut> Future for AsyncifyPoller<'a, 'b, 'c, T, Fut>
where
Fut: Future<Output = T> + Send + Sync + 'static,
{
type Output = Result<T, WasiError>;
fn poll(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> {
if let Poll::Ready(res) = self.work.as_mut().poll(cx) {
return Poll::Ready(Ok(res));
}
let env = self.ctx.data();
if let Some(forced_exit) = env.thread.try_join() {
return Poll::Ready(Err(WasiError::Exit(forced_exit.unwrap_or_else(|err| {
tracing::debug!("exit runtime error - {}", err);
Errno::Child.into()
}))));
}
if self.process_signals && env.thread.has_signals_or_subscribe(cx.waker()) {
let signals = env.thread.signals().lock().unwrap();
for sig in signals.0.iter() {
if *sig == Signal::Sigint
|| *sig == Signal::Sigquit
|| *sig == Signal::Sigkill
|| *sig == Signal::Sigabrt
{
let exit_code = env.thread.set_or_get_exit_code_for_signal(*sig);
return Poll::Ready(Err(WasiError::Exit(exit_code)));
}
}
}
Poll::Pending
}
}
pub enum AsyncifyAction<'a, R> {
/// Indicates that asyncify callback finished and the
/// caller now has ownership of the ctx again
Finish(FunctionEnvMut<'a, WasiEnv>, R),
/// Indicates that asyncify should unwind by immediately exiting
/// the current function
Unwind,
}
/// Asyncify takes the current thread and blocks on the async runtime associated with it
/// thus allowed for asynchronous operations to execute. It has built in functionality
/// to (optionally) timeout the IO, force exit the process, callback signals and pump
/// synchronous IO engine
///
/// This will either return the `ctx` as the asyncify has completed successfully
/// or it will return an WasiError which will exit the WASM call using asyncify
/// and instead process it on a shared task
///
pub(crate) fn __asyncify_with_deep_sleep<M: MemorySize, T, Fut>(
mut ctx: FunctionEnvMut<'_, WasiEnv>,
deep_sleep_time: Duration,
work: Fut,
) -> Result<AsyncifyAction<'_, T>, WasiError>
where
T: serde::Serialize + serde::de::DeserializeOwned,
Fut: Future<Output = T> + Send + Sync + 'static,
{
// Determine if we should process signals or now
let process_signals = ctx
.data()
.try_inner()
.map(|i| !i.signal_set)
.unwrap_or(true);
// Box up the trigger
let mut trigger = Box::pin(work);
// Define the work
let tasks = ctx.data().tasks().clone();
let work = async move {
let env = ctx.data();
// Create the deep sleeper
let tasks_for_deep_sleep = if env.enable_deep_sleep {
Some(env.tasks().clone())
} else {
None
};
let deep_sleep_wait = async {
if let Some(tasks) = tasks_for_deep_sleep {
tasks.sleep_now(deep_sleep_time).await
} else {
InfiniteSleep::default().await
}
};
Ok(tokio::select! {
// Inner wait with finializer
res = AsyncifyPoller {
process_signals,
ctx: &mut ctx,
work: &mut trigger,
} => {
let result = res?;
AsyncifyAction::Finish(ctx, result)
},
// Determines when and if we should go into a deep sleep
_ = deep_sleep_wait => {
let pid = ctx.data().pid();
let tid = ctx.data().tid();
tracing::trace!(%pid, %tid, "thread entering deep sleep");
deep_sleep::<M>(ctx, Box::pin(async move {
let result = trigger.await;
bincode::serialize(&result).unwrap().into()
}))?;
AsyncifyAction::Unwind
},
})
};
// Block until the work is finished or until we
// unload the thread using asyncify
InlineWaker::block_on(work)
}
/// Asyncify takes the current thread and blocks on the async runtime associated with it
/// thus allowed for asynchronous operations to execute. It has built in functionality
/// to (optionally) timeout the IO, force exit the process, callback signals and pump
/// synchronous IO engine
pub(crate) fn __asyncify_light<T, Fut>(
env: &WasiEnv,
timeout: Option<Duration>,
work: Fut,
) -> Result<Result<T, Errno>, WasiError>
where
T: 'static,
Fut: Future<Output = Result<T, Errno>>,
{
// This poller will process any signals when the main working function is idle
struct Poller<'a, Fut, T>
where
Fut: Future<Output = Result<T, Errno>>,
{
env: &'a WasiEnv,
pinned_work: Pin<Box<Fut>>,
}
impl<'a, Fut, T> Future for Poller<'a, Fut, T>
where
Fut: Future<Output = Result<T, Errno>>,
{
type Output = Result<Fut::Output, WasiError>;
fn poll(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Self::Output> {
if let Poll::Ready(res) = Pin::new(&mut self.pinned_work).poll(cx) {
return Poll::Ready(Ok(res));
}
if let Some(exit_code) = self.env.should_exit() {
return Poll::Ready(Err(WasiError::Exit(exit_code)));
}
if self.env.thread.has_signals_or_subscribe(cx.waker()) {
return Poll::Ready(Ok(Err(Errno::Intr)));
}
Poll::Pending
}
}
// Block until the work is finished or until we
// unload the thread using asyncify
Ok(InlineWaker::block_on(work))
}
// This should be compiled away, it will simply wait forever however its never
// used by itself, normally this is passed into asyncify which will still abort
// the operating on timeouts, signals or other work due to a select! around the await
#[derive(Default)]
pub struct InfiniteSleep {}
impl std::future::Future for InfiniteSleep {
type Output = ();
fn poll(self: Pin<&mut Self>, _cx: &mut Context<'_>) -> Poll<Self::Output> {
Poll::Pending
}
}
/// Performs an immutable operation on the socket while running in an asynchronous runtime
/// This has built in signal support
pub(crate) fn __sock_asyncify<T, F, Fut>(
env: &WasiEnv,
sock: WasiFd,
rights: Rights,
actor: F,
) -> Result<T, Errno>
where
F: FnOnce(crate::net::socket::InodeSocket, Fd) -> Fut,
Fut: std::future::Future<Output = Result<T, Errno>>,
{
let fd_entry = env.state.fs.get_fd(sock)?;
if !rights.is_empty() && !fd_entry.rights.contains(rights) {
return Err(Errno::Access);
}
let mut work = {
let inode = fd_entry.inode.clone();
let tasks = env.tasks().clone();
let mut guard = inode.write();
match guard.deref_mut() {
Kind::Socket { socket } => {
// Clone the socket and release the lock
let socket = socket.clone();
drop(guard);
// Start the work using the socket
actor(socket, fd_entry)
}
_ => {
return Err(Errno::Notsock);
}
}
};
// Block until the work is finished or until we
// unload the thread using asyncify
InlineWaker::block_on(work)
}
/// Performs mutable work on a socket under an asynchronous runtime with
/// built in signal processing
pub(crate) fn __sock_asyncify_mut<T, F, Fut>(
ctx: &'_ mut FunctionEnvMut<'_, WasiEnv>,
sock: WasiFd,
rights: Rights,
actor: F,
) -> Result<T, Errno>
where
F: FnOnce(crate::net::socket::InodeSocket, Fd) -> Fut,
Fut: std::future::Future<Output = Result<T, Errno>>,
{
let env = ctx.data();
let tasks = env.tasks().clone();
let fd_entry = env.state.fs.get_fd(sock)?;
if !rights.is_empty() && !fd_entry.rights.contains(rights) {
return Err(Errno::Access);
}
let inode = fd_entry.inode.clone();
let mut guard = inode.write();
match guard.deref_mut() {
Kind::Socket { socket } => {
// Clone the socket and release the lock
let socket = socket.clone();
drop(guard);
// Start the work using the socket
let mut work = actor(socket, fd_entry);
// Otherwise we block on the work and process it
// using an asynchronou context
InlineWaker::block_on(work)
}
_ => Err(Errno::Notsock),
}
}
/// Performs an immutable operation on the socket while running in an asynchronous runtime
/// This has built in signal support
pub(crate) fn __sock_actor<T, F>(
ctx: &mut FunctionEnvMut<'_, WasiEnv>,
sock: WasiFd,
rights: Rights,
actor: F,
) -> Result<T, Errno>
where
T: 'static,
F: FnOnce(crate::net::socket::InodeSocket, Fd) -> Result<T, Errno>,
{
let env = ctx.data();
let tasks = env.tasks().clone();
let fd_entry = env.state.fs.get_fd(sock)?;
if !rights.is_empty() && !fd_entry.rights.contains(rights) {
return Err(Errno::Access);
}
let inode = fd_entry.inode.clone();
let tasks = env.tasks().clone();
let mut guard = inode.write();
match guard.deref_mut() {
Kind::Socket { socket } => {
// Clone the socket and release the lock
let socket = socket.clone();
drop(guard);
// Start the work using the socket
actor(socket, fd_entry)
}
_ => Err(Errno::Notsock),
}
}
/// Performs mutable work on a socket under an asynchronous runtime with
/// built in signal processing
pub(crate) fn __sock_actor_mut<T, F>(
ctx: &mut FunctionEnvMut<'_, WasiEnv>,
sock: WasiFd,
rights: Rights,
actor: F,
) -> Result<T, Errno>
where
T: 'static,
F: FnOnce(crate::net::socket::InodeSocket, Fd) -> Result<T, Errno>,
{
let env = ctx.data();
let tasks = env.tasks().clone();
let fd_entry = env.state.fs.get_fd(sock)?;
if !rights.is_empty() && !fd_entry.rights.contains(rights) {
return Err(Errno::Access);
}
let inode = fd_entry.inode.clone();
let mut guard = inode.write();
match guard.deref_mut() {
Kind::Socket { socket } => {
// Clone the socket and release the lock
let socket = socket.clone();
drop(guard);
// Start the work using the socket
actor(socket, fd_entry)
}
_ => Err(Errno::Notsock),
}
}
/// Replaces a socket with another socket in under an asynchronous runtime.
/// This is used for opening sockets or connecting sockets which changes
/// the fundamental state of the socket to another state machine
pub(crate) fn __sock_upgrade<'a, F, Fut>(
ctx: &'a mut FunctionEnvMut<'_, WasiEnv>,
sock: WasiFd,
rights: Rights,
actor: F,
) -> Result<(), Errno>
where
F: FnOnce(crate::net::socket::InodeSocket) -> Fut,
Fut: std::future::Future<Output = Result<Option<crate::net::socket::InodeSocket>, Errno>> + 'a,
{
let env = ctx.data();
let fd_entry = env.state.fs.get_fd(sock)?;
if !rights.is_empty() && !fd_entry.rights.contains(rights) {
tracing::warn!(
"wasi[{}:{}]::sock_upgrade(fd={}, rights={:?}) - failed - no access rights to upgrade",
ctx.data().pid(),
ctx.data().tid(),
sock,
rights
);
return Err(Errno::Access);
}
let tasks = env.tasks().clone();
{
let inode = fd_entry.inode;
let mut guard = inode.write();
match guard.deref_mut() {
Kind::Socket { socket } => {
let socket = socket.clone();
drop(guard);
// Start the work using the socket
let work = actor(socket);
// Block on the work and process it
let res = InlineWaker::block_on(work);
let new_socket = res?;
if let Some(mut new_socket) = new_socket {
let mut guard = inode.write();
match guard.deref_mut() {
Kind::Socket { socket, .. } => {
std::mem::swap(socket, &mut new_socket);
}
_ => {
tracing::warn!(
"wasi[{}:{}]::sock_upgrade(fd={}, rights={:?}) - failed - not a socket",
ctx.data().pid(),
ctx.data().tid(),
sock,
rights
);
return Err(Errno::Notsock);
}
}
}
}
_ => {
tracing::warn!(
"wasi[{}:{}]::sock_upgrade(fd={}, rights={:?}) - failed - not a socket",
ctx.data().pid(),
ctx.data().tid(),
sock,
rights
);
return Err(Errno::Notsock);
}
}
}
Ok(())
}
#[must_use]
pub(crate) fn write_buffer_array<M: MemorySize>(
memory: &MemoryView,
from: &[Vec<u8>],
ptr_buffer: WasmPtr<WasmPtr<u8, M>, M>,
buffer: WasmPtr<u8, M>,
) -> Errno {
let ptrs = wasi_try_mem!(ptr_buffer.slice(memory, wasi_try!(to_offset::<M>(from.len()))));
let mut current_buffer_offset = 0usize;
for ((i, sub_buffer), ptr) in from.iter().enumerate().zip(ptrs.iter()) {
let mut buf_offset = buffer.offset();
buf_offset += wasi_try!(to_offset::<M>(current_buffer_offset));
let new_ptr = WasmPtr::new(buf_offset);
wasi_try_mem!(ptr.write(new_ptr));
let data =
wasi_try_mem!(new_ptr.slice(memory, wasi_try!(to_offset::<M>(sub_buffer.len()))));
wasi_try_mem!(data.write_slice(sub_buffer));
wasi_try_mem!(wasi_try_mem!(
new_ptr.add_offset(wasi_try!(to_offset::<M>(sub_buffer.len())))
)
.write(memory, 0));
current_buffer_offset += sub_buffer.len() + 1;
}
Errno::Success
}
pub(crate) fn get_current_time_in_nanos() -> Result<Timestamp, Errno> {
let now = platform_clock_time_get(Snapshot0Clockid::Monotonic, 1_000_000).unwrap() as u128;
Ok(now as Timestamp)
}
pub(crate) fn get_stack_lower(env: &WasiEnv) -> u64 {
env.layout.stack_lower
}
pub(crate) fn get_stack_upper(env: &WasiEnv) -> u64 {
env.layout.stack_upper
}
pub(crate) unsafe fn get_memory_stack_pointer(
ctx: &mut FunctionEnvMut<'_, WasiEnv>,
) -> Result<u64, String> {
// Get the current value of the stack pointer (which we will use
// to save all of the stack)
let stack_upper = get_stack_upper(ctx.data());
let stack_pointer = if let Some(stack_pointer) = ctx.data().inner().stack_pointer.clone() {
match stack_pointer.get(ctx) {
Value::I32(a) => a as u64,
Value::I64(a) => a as u64,
_ => stack_upper,
}
} else {
return Err("failed to save stack: not exported __stack_pointer global".to_string());
};
Ok(stack_pointer)
}
pub(crate) unsafe fn get_memory_stack_offset(
ctx: &mut FunctionEnvMut<'_, WasiEnv>,
) -> Result<u64, String> {
let stack_upper = get_stack_upper(ctx.data());
let stack_pointer = get_memory_stack_pointer(ctx)?;
Ok(stack_upper - stack_pointer)
}
pub(crate) fn set_memory_stack_offset(
env: &WasiEnv,
store: &mut impl AsStoreMut,
offset: u64,
) -> Result<(), String> {
// Sets the stack pointer
let stack_upper = get_stack_upper(env);
let stack_pointer = stack_upper - offset;
if let Some(stack_pointer_ptr) = env
.try_inner()
.ok_or_else(|| "unable to access the stack pointer of the instance".to_string())?
.stack_pointer
.clone()
{
match stack_pointer_ptr.get(store) {
Value::I32(_) => {
stack_pointer_ptr.set(store, Value::I32(stack_pointer as i32));
}
Value::I64(_) => {
stack_pointer_ptr.set(store, Value::I64(stack_pointer as i64));
}
_ => {
return Err(
"failed to save stack: __stack_pointer global is of an unknown type"
.to_string(),
);
}
}
} else {
return Err("failed to save stack: not exported __stack_pointer global".to_string());
}
Ok(())
}
#[allow(dead_code)]
pub(crate) fn get_memory_stack<M: MemorySize>(
env: &WasiEnv,
store: &mut impl AsStoreMut,
) -> Result<BytesMut, String> {
// Get the current value of the stack pointer (which we will use
// to save all of the stack)
let stack_base = get_stack_upper(env);
let stack_pointer = if let Some(stack_pointer) = env
.try_inner()
.ok_or_else(|| "unable to access the stack pointer of the instance".to_string())?
.stack_pointer
.clone()
{
match stack_pointer.get(store) {
Value::I32(a) => a as u64,
Value::I64(a) => a as u64,
_ => stack_base,
}
} else {
return Err("failed to save stack: not exported __stack_pointer global".to_string());
};
let memory = env
.try_memory_view(store)
.ok_or_else(|| "unable to access the memory of the instance".to_string())?;
let stack_offset = env.layout.stack_upper - stack_pointer;
// Read the memory stack into a vector
let memory_stack_ptr = WasmPtr::<u8, M>::new(
stack_pointer
.try_into()
.map_err(|err| format!("failed to save stack: stack pointer overflow (stack_pointer={}, stack_lower={}, stack_upper={})", stack_offset, env.layout.stack_lower, env.layout.stack_upper))?,
);
memory_stack_ptr
.slice(
&memory,
stack_offset
.try_into()
.map_err(|err| format!("failed to save stack: stack pointer overflow (stack_pointer={}, stack_lower={}, stack_upper={})", stack_offset, env.layout.stack_lower, env.layout.stack_upper))?,
)
.and_then(|memory_stack| memory_stack.read_to_bytes())
.map_err(|err| format!("failed to read stack: {}", err))
}
#[allow(dead_code)]
pub(crate) fn set_memory_stack<M: MemorySize>(
env: &WasiEnv,
store: &mut impl AsStoreMut,
stack: Bytes,
) -> Result<(), String> {
// First we restore the memory stack
let stack_upper = get_stack_upper(env);
let stack_offset = stack.len() as u64;
let stack_pointer = stack_upper - stack_offset;
let stack_ptr = WasmPtr::<u8, M>::new(
stack_pointer
.try_into()
.map_err(|_| "failed to restore stack: stack pointer overflow".to_string())?,
);
let memory = env
.try_memory_view(store)
.ok_or_else(|| "unable to set the stack pointer of the instance".to_string())?;
stack_ptr
.slice(
&memory,
stack_offset
.try_into()
.map_err(|_| "failed to restore stack: stack pointer overflow".to_string())?,
)
.and_then(|memory_stack| memory_stack.write_slice(&stack[..]))
.map_err(|err| format!("failed to write stack: {}", err))?;
// Set the stack pointer itself and return
set_memory_stack_offset(env, store, stack_offset)?;
Ok(())
}
/// Puts the process to deep sleep and wakes it again when
/// the supplied future completes
#[must_use = "you must return the result immediately so the stack can unwind"]
pub(crate) fn deep_sleep<M: MemorySize>(
mut ctx: FunctionEnvMut<'_, WasiEnv>,
trigger: Pin<Box<AsyncifyFuture>>,
) -> Result<(), WasiError> {
// Grab all the globals and serialize them
let store_data = crate::utils::store::capture_snapshot(&mut ctx.as_store_mut())
.serialize()
.unwrap();
let store_data = Bytes::from(store_data);
// Perform the unwind action
let tasks = ctx.data().tasks().clone();
let res = unwind::<M, _>(ctx, move |_ctx, memory_stack, rewind_stack| {
// Schedule the process on the stack so that it can be resumed
OnCalledAction::Trap(Box::new(RuntimeError::user(Box::new(
WasiError::DeepSleep(DeepSleepWork {
trigger,
rewind: RewindState {
memory_stack: memory_stack.freeze(),
rewind_stack: rewind_stack.freeze(),
store_data,
is_64bit: M::is_64bit(),
},
}),
))))
})?;
// If there is an error then exit the process, otherwise we are done
match res {
Errno::Success => Ok(()),
err => Err(WasiError::Exit(ExitCode::Errno(err))),
}
}
#[must_use = "you must return the result immediately so the stack can unwind"]
pub fn unwind<M: MemorySize, F>(
mut ctx: FunctionEnvMut<'_, WasiEnv>,
callback: F,
) -> Result<Errno, WasiError>
where
F: FnOnce(FunctionEnvMut<'_, WasiEnv>, BytesMut, BytesMut) -> OnCalledAction
+ Send
+ Sync
+ 'static,
{
// Get the current stack pointer (this will be used to determine the
// upper limit of stack space remaining to unwind into)
let (env, mut store) = ctx.data_and_store_mut();
let memory_stack = match get_memory_stack::<M>(env, &mut store) {
Ok(a) => a,
Err(err) => {
warn!("unable to get the memory stack - {}", err);
return Err(WasiError::Exit(Errno::Unknown.into()));
}