Skip to content

Commit 33aacbe

Browse files
tniessencodebytere
authored andcommittedJun 7, 2020
wasi: prevent syscalls before start
PR-URL: #33235 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Gus Caplan <me@gus.host> Reviewed-By: Anna Henningsen <anna@addaleax.net>
1 parent ad7a890 commit 33aacbe

File tree

4 files changed

+102
-45
lines changed

4 files changed

+102
-45
lines changed
 

‎doc/api/errors.md

+5
Original file line numberDiff line numberDiff line change
@@ -2082,6 +2082,11 @@ meaning of the error depends on the specific function.
20822082

20832083
The WASI instance has already started.
20842084

2085+
<a id="ERR_WASI_NOT_STARTED"></a>
2086+
### `ERR_WASI_NOT_STARTED`
2087+
2088+
The WASI instance has not been started.
2089+
20852090
<a id="ERR_WORKER_INIT_FAILED"></a>
20862091
### `ERR_WORKER_INIT_FAILED`
20872092

‎src/node_errors.h

+2
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ void OnFatalError(const char* location, const char* message);
5454
V(ERR_TRANSFERRING_EXTERNALIZED_SHAREDARRAYBUFFER, TypeError) \
5555
V(ERR_TLS_PSK_SET_IDENTIY_HINT_FAILED, Error) \
5656
V(ERR_VM_MODULE_CACHED_DATA_REJECTED, Error) \
57+
V(ERR_WASI_NOT_STARTED, Error) \
5758
V(ERR_WORKER_INIT_FAILED, Error) \
5859
V(ERR_PROTO_ACCESS, Error)
5960

@@ -104,6 +105,7 @@ void OnFatalError(const char* location, const char* message);
104105
V(ERR_TRANSFERRING_EXTERNALIZED_SHAREDARRAYBUFFER, \
105106
"Cannot serialize externalized SharedArrayBuffer") \
106107
V(ERR_TLS_PSK_SET_IDENTIY_HINT_FAILED, "Failed to set PSK identity hint") \
108+
V(ERR_WASI_NOT_STARTED, "wasi.start() has not been called") \
107109
V(ERR_WORKER_INIT_FAILED, "Worker initialization failure") \
108110
V(ERR_PROTO_ACCESS, \
109111
"Accessing Object.prototype.__proto__ has been " \

0 commit comments

Comments
 (0)