Pat Hickey
e7018bf6e0
wiggle flags are now bitflags!
2021-01-11 18:33:52 -08:00
Pat Hickey
b53aecb367
Merge branch 'pch/wiggle_flags_bitflags' into pch/wasi_common_cap_std
2021-01-11 18:31:43 -08:00
Pat Hickey
75a9dc7fe2
wasi-common: wiggle flags are now bitflags!
...
this mostly mechanical change is just getting rid of passing to
`contains` by reference.
2021-01-11 18:27:55 -08:00
Pat Hickey
ed44a19e5e
wiggle: use bitflags to generate flags
...
more consistient with the rest of the ecosystem.
2021-01-11 18:20:57 -08:00
Pat Hickey
e2fb99af86
wiggle: depend on bitflags, and re-export it.
2021-01-11 18:04:43 -08:00
Pat Hickey
94467bcd9a
wiggle: bugfix, generated code should use Names::runtime_mod not wiggle
...
as the crate from which these deps come.
I worked around this in lucet, but I'll be able to revert that
workaround.
2021-01-11 18:03:48 -08:00
Pat Hickey
4a54db0837
derive debug and clone on DirFdStat / FdStat
2021-01-11 17:58:53 -08:00
Pat Hickey
d56d2f0219
directory seek test: code does not agree with comment. Fix code.
...
the directory was opened with the seek right, and this test says that it
was asserting that the seek right was present. However, the test was
actually asserting that the seek right was *not* present.
This fixes the code of the test, because I believe the comment is
correct.
2021-01-11 17:58:32 -08:00
Pat Hickey
b1d32f419c
use bitflags crate to define bitflags, rather than by hand
2021-01-11 17:48:41 -08:00
Pat Hickey
3863b8b3d3
re-organize failures todo list
2021-01-11 17:11:50 -08:00
Pat Hickey
4044977f50
just ignore nofollow on links for now
2021-01-11 17:05:09 -08:00
Pat Hickey
f084cf1fd0
failure to create trailing slash symlink to file can be EEXIST or ENOTDIR
2021-01-11 15:56:13 -08:00
Pat Hickey
932ba6b4f3
need DirExt::hard_link_nofollow to implement path_link properly
2021-01-11 15:47:57 -08:00
Pat Hickey
09861c20db
symlink-related tests: accept either ELOOP or ENOTDIR
...
when opening a symlink loop as directory, or nofollow opening a valid
symlink as directory.
2021-01-11 15:35:48 -08:00
Pat Hickey
2d2e6d16a1
Dir::open_file, open_dir: correct symlink following
2021-01-11 15:15:54 -08:00
Nick Fitzgerald
3068d55fa1
wasi-nn: Fix keyword form in Cargo.toml metadata
...
Keywords may not have spaces, apparently.
2021-01-11 10:46:00 -08:00
Andrew Brown
2adb0e8964
security: upgrade smallvec to 1.6.1
...
Fixes advisory https://rustsec.org/advisories/RUSTSEC-2021-0003 .
2021-01-08 16:54:54 -08:00
Yury Delendik
3580205f12
[Cranelift][Atomics] Add address folding for atomic notify/wait. ( #2556 )
...
* fold address in wasm wait and notify ops
* add atomics addr folding tests
2021-01-08 11:55:21 -06:00
Pat Hickey
4a6e92f52f
upgrade to cap-std 0.9
2021-01-07 16:47:26 -08:00
Pat Hickey
a900d0431d
Merge remote-tracking branch 'origin/main' into pch/wasi_common_cap_std
2021-01-07 16:39:27 -08:00
Nick Fitzgerald
5de5bf1565
Merge pull request #2550 from bytecodealliance/pch/wiggle_trapping
...
wiggle: introduce Trap enum
2021-01-07 16:23:21 -08:00
Pat Hickey
539058b329
fix windows
2021-01-07 14:57:18 -08:00
Pat Hickey
82128cbc5b
trap proc_exit and unsupported funcs
2021-01-07 14:56:22 -08:00
Nick Fitzgerald
5ad82de3c5
Bump Wasmtime to 0.22.0; Cranelift to 0.69.0
2021-01-07 14:51:12 -08:00
Pat Hickey
c2a715ca54
wiggle traps
2021-01-07 14:43:56 -08:00
Pat Hickey
13cd7a4a8e
Merge branch 'pch/wiggle_trapping' into pch/wasi_common_cap_std
2021-01-07 14:10:59 -08:00
Pat Hickey
c2004001cb
Merge remote-tracking branch 'origin/main' into pch/wasi_common_cap_std
2021-01-07 14:10:43 -08:00
Pat Hickey
b149a03d5d
wasi-common: instead of panicking, use an Error::Unsupported that Traps
2021-01-07 14:05:49 -08:00
Pat Hickey
07c9b65fa4
fix
2021-01-07 11:45:11 -08:00
Pat Hickey
ec1bfeefb3
fix tests
2021-01-07 11:45:11 -08:00
Pat Hickey
cd3adb1abd
Trap::I32Exit is a better name
2021-01-07 11:45:11 -08:00
Pat Hickey
1dab7c8f94
wasi submodule: noreturn annotations are merged into main
2021-01-07 11:45:11 -08:00
Pat Hickey
2483ad4c1c
wasi-nn: UserErrorConversion error is now a wiggle::Trap
2021-01-07 11:45:11 -08:00
Pat Hickey
745c592863
readme: expand wiggle docs
2021-01-07 11:45:11 -08:00
Pat Hickey
4a574c14eb
wasi-common: port to use wiggle::Trap
2021-01-07 11:45:11 -08:00
Pat Hickey
1c7c18b026
WASI submodule: mark proc_exit funcs as noreturn in the witx
2021-01-07 11:45:11 -08:00
Pat Hickey
f8f9b14c6f
wiggle: introduce wiggle::Trap, which can be either a String or I32
...
also, make noreturn functions always return a Trap
wasmtime-wiggle can trivially turn a wiggle::Trap into a wasmtime::Trap.
lucet will have to do the same.
2021-01-07 11:45:11 -08:00
Léo Gaspard
c0c4834c64
wasi-nn: rebuild if the witx files change
2021-01-06 15:56:46 -08:00
Pat Hickey
d4aaae3e86
wasi-nn: remove missing_memory from wasmtime_integration
2021-01-06 10:59:29 -08:00
Pat Hickey
bf2371c8af
wasi: get rid of missing_memory config
2021-01-05 17:29:34 -08:00
Pat Hickey
46b1864c9e
wiggle-wasmtime: get rid of "missing_memory" error code, we can Trap now
...
the missing memory behavior was always a silly thing, that we generate a
function for wasmtime which is Result<_, Trap> we can just Err(Trap)
when the memory export is missing.
2021-01-05 17:28:03 -08:00
Pat Hickey
fb37751a92
fix warning
2021-01-05 17:27:06 -08:00
Pat Hickey
31c5328971
incorporate dan's suggestions on readdir
2021-01-05 14:36:32 -08:00
Pat Hickey
56788be629
sorta fix set_times on paths and dirfds
2021-01-05 14:28:26 -08:00
Pat Hickey
ce13cd9e77
dir: add set times
2021-01-05 14:24:02 -08:00
Pat Hickey
16eff680e2
summarize failures with a TODO list!
2021-01-05 13:57:12 -08:00
Pat Hickey
8ace7f00d9
delete file::get/set_oflags
2021-01-05 13:53:25 -08:00
Pat Hickey
fb32f65118
get path filestat on a dir
2021-01-05 13:51:55 -08:00
Pat Hickey
07a9584a08
add hard_link to dir
2021-01-05 12:19:56 -08:00
Pat Hickey
21cd55b0a7
add directory rename
2021-01-05 12:14:07 -08:00