wa-lang.org/wazero@v1.0.2/cmd/wazero/testdata/wasi_env.wat (about) 1 ;; $wasi_env is a WASI command which copies null-terminated environ to stdout. 2 (module $wasi_env 3 ;; environ_get reads environment variables. 4 ;; 5 ;; See https://github.com/WebAssembly/WASI/blob/snapshot-01/phases/snapshot/docs.md#-environ_getenviron-pointerpointeru8-environ_buf-pointeru8---errno 6 (import "wasi_snapshot_preview1" "environ_get" 7 (func $wasi.environ_get (param $environ i32) (param $environ_buf i32) (result (;errno;) i32))) 8 9 ;; environ_sizes_get returns environment variables sizes. 10 ;; 11 ;; See https://github.com/WebAssembly/WASI/blob/snapshot-01/phases/snapshot/docs.md#-environ_sizes_get---errno-size-size 12 (import "wasi_snapshot_preview1" "environ_sizes_get" 13 (func $wasi.environ_sizes_get (param $result.environc i32) (param $result.environ_buf_size i32) (result (;errno;) i32))) 14 15 ;; fd_write write bytes to a file descriptor. 16 ;; 17 ;; See https://github.com/WebAssembly/WASI/blob/snapshot-01/phases/snapshot/docs.md#fd_write 18 (import "wasi_snapshot_preview1" "fd_write" 19 (func $wasi.fd_write (param $fd i32) (param $iovs i32) (param $iovs_len i32) (param $result.size i32) (result (;errno;) i32))) 20 21 ;; WASI commands are required to export "memory". Particularly, imported functions mutate this. 22 ;; 23 ;; Note: 1 is the size in pages (64KB), not bytes! 24 ;; See https://www.w3.org/TR/2019/REC-wasm-core-1-20191205/#memories%E2%91%A7 25 (memory (export "memory") 1) 26 27 ;; $iovs are offset/length pairs in memory fd_write copies to the file descriptor. 28 ;; $main will only write one offset/length pair, corresponding to null-terminated environ. 29 (global $iovs i32 i32.const 1024) ;; 1024 is an arbitrary offset larger than the environ. 30 31 ;; WASI parameters are usually memory offsets, you can ignore values by writing them to an unread offset. 32 (global $ignored i32 i32.const 32768) 33 34 ;; _start is a special function defined by a WASI Command that runs like a main function would. 35 ;; 36 ;; See https://github.com/WebAssembly/WASI/blob/snapshot-01/design/application-abi.md#current-unstable-abi 37 (func $main (export "_start") 38 ;; To copy an env to a file, we first need to load it into memory. 39 (call $wasi.environ_get 40 (global.get $ignored) ;; ignore $environ as we only read the environ_buf 41 (i32.const 0) ;; Write $environ_buf (null-terminated environ) to memory offset zero. 42 ) 43 drop ;; ignore the errno returned 44 45 ;; Next, we need to know how many bytes were loaded, as that's how much we'll copy to the file. 46 (call $wasi.environ_sizes_get 47 (global.get $ignored) ;; ignore $result.environc as we only read the environ_buf. 48 (i32.add (global.get $iovs) (i32.const 4)) ;; store $result.environ_buf_size as the length to copy 49 ) 50 drop ;; ignore the errno returned 51 52 ;; Finally, write the memory region to the file. 53 (call $wasi.fd_write 54 (i32.const 1) ;; $fd is a file descriptor and 1 is stdout (console). 55 (global.get $iovs) ;; $iovs is the start offset of the IO vectors to copy. 56 (i32.const 1) ;; $iovs_len is the count of offset/length pairs to copy to memory. 57 (global.get $ignored) ;; ignore $result.size as we aren't verifying it. 58 ) 59 drop ;; ignore the errno returned 60 ) 61 )