-
Notifications
You must be signed in to change notification settings - Fork 52
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Disallow absolute path at the raw WASI level (#270)
This commit fixes a `path_open` behavior that allows opening absolute paths. Although the path normalization correctly resolves the path and enforces the sandbox, it's still a good idea to converge with other runtimes here. fixes #269 Signed-off-by: Yage Hu <[email protected]>
- Loading branch information
Showing
3 changed files
with
71 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
#include <assert.h> | ||
#include <stdint.h> | ||
#include <stdlib.h> | ||
#include <string.h> | ||
#include "uvwasi.h" | ||
#include "uv.h" | ||
#include "test-common.h" | ||
|
||
#define TEST_TMP_DIR "./out/tmp" | ||
#define TEST_FILE "/test-path-open-absolute.file" | ||
#define OFLAGS_CREAT 1 | ||
#define RIGHTS_FD_WRITE 64 | ||
|
||
int main(void) { | ||
uvwasi_t uvwasi; | ||
uvwasi_fd_t fd; | ||
uvwasi_options_t init_options; | ||
uvwasi_errno_t err; | ||
uv_fs_t req; | ||
int r; | ||
|
||
setup_test_environment(); | ||
|
||
r = uv_fs_mkdir(NULL, &req, TEST_TMP_DIR, 0777, NULL); | ||
uv_fs_req_cleanup(&req); | ||
assert(r == 0 || r == UV_EEXIST); | ||
|
||
uvwasi_options_init(&init_options); | ||
init_options.preopenc = 1; | ||
init_options.preopens = calloc(1, sizeof(uvwasi_preopen_t)); | ||
init_options.preopens[0].mapped_path = "var"; | ||
init_options.preopens[0].real_path = TEST_TMP_DIR; | ||
|
||
err = uvwasi_init(&uvwasi, &init_options); | ||
assert(err == 0); | ||
|
||
err = uvwasi_path_open(&uvwasi, | ||
3, | ||
0, | ||
TEST_FILE, | ||
strlen(TEST_FILE) + 1, | ||
OFLAGS_CREAT, | ||
RIGHTS_FD_WRITE, | ||
0, | ||
0, | ||
&fd); | ||
assert(err == UVWASI_ENOTCAPABLE && "open absolute path should fail"); | ||
|
||
uvwasi_destroy(&uvwasi); | ||
free(init_options.preopens); | ||
|
||
return 0; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters