-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Restrict the preview1 implementation of fd_read to one iovec (#8415)
* We can only have one mutable borrow at a time after #8277 Co-authored-by: Nick Fitzgerald <fitzgen@gmail.com> * Add a test like pread/pwrite, but for read/write --------- Co-authored-by: Nick Fitzgerald <fitzgen@gmail.com>
- Loading branch information
Showing
8 changed files
with
240 additions
and
5 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
209 changes: 209 additions & 0 deletions
209
crates/test-programs/src/bin/preview1_file_read_write.rs
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,209 @@ | ||
use std::{env, process}; | ||
use test_programs::preview1::open_scratch_directory; | ||
|
||
unsafe fn test_file_read_write(dir_fd: wasi::Fd) { | ||
// Create a file in the scratch directory. | ||
let file_fd = wasi::path_open( | ||
dir_fd, | ||
0, | ||
"file", | ||
wasi::OFLAGS_CREAT, | ||
wasi::RIGHTS_FD_READ | wasi::RIGHTS_FD_WRITE, | ||
0, | ||
0, | ||
) | ||
.expect("opening a file"); | ||
assert!( | ||
file_fd > libc::STDERR_FILENO as wasi::Fd, | ||
"file descriptor range check", | ||
); | ||
|
||
let contents = &[0u8, 1, 2, 3]; | ||
let ciovec = wasi::Ciovec { | ||
buf: contents.as_ptr() as *const _, | ||
buf_len: contents.len(), | ||
}; | ||
let mut nwritten = wasi::fd_write(file_fd, &mut [ciovec]).expect("writing bytes at offset 0"); | ||
assert_eq!(nwritten, 4, "nwritten bytes check"); | ||
|
||
let contents = &mut [0u8; 4]; | ||
let iovec = wasi::Iovec { | ||
buf: contents.as_mut_ptr() as *mut _, | ||
buf_len: contents.len(), | ||
}; | ||
wasi::fd_seek(file_fd, 0, wasi::WHENCE_SET).expect("seeking to offset 0"); | ||
let mut nread = wasi::fd_read(file_fd, &[iovec]).expect("reading bytes at offset 0"); | ||
assert_eq!(nread, 4, "nread bytes check"); | ||
assert_eq!(contents, &[0u8, 1, 2, 3], "written bytes equal read bytes"); | ||
|
||
// Write all the data through multiple iovecs. | ||
// | ||
// Note that this needs to be done with a loop, because some | ||
// platforms do not support writing multiple iovecs at once. | ||
// See https://github.com/rust-lang/rust/issues/74825. | ||
let contents = &[0u8, 1, 2, 3]; | ||
let mut offset = 0usize; | ||
wasi::fd_seek(file_fd, 0, wasi::WHENCE_SET).expect("seeking to offset 0"); | ||
loop { | ||
let mut ciovecs: Vec<wasi::Ciovec> = Vec::new(); | ||
let mut remaining = contents.len() - offset; | ||
if remaining > 2 { | ||
ciovecs.push(wasi::Ciovec { | ||
buf: contents[offset..].as_ptr() as *const _, | ||
buf_len: 2, | ||
}); | ||
remaining -= 2; | ||
} | ||
ciovecs.push(wasi::Ciovec { | ||
buf: contents[contents.len() - remaining..].as_ptr() as *const _, | ||
buf_len: remaining, | ||
}); | ||
|
||
nwritten = wasi::fd_write(file_fd, ciovecs.as_slice()).expect("writing bytes at offset 0"); | ||
|
||
offset += nwritten; | ||
if offset == contents.len() { | ||
break; | ||
} | ||
} | ||
assert_eq!(offset, 4, "nread bytes check"); | ||
|
||
// Read all the data through multiple iovecs. | ||
// | ||
// Note that this needs to be done with a loop, because some | ||
// platforms do not support reading multiple iovecs at once. | ||
// See https://github.com/rust-lang/rust/issues/74825. | ||
let contents = &mut [0u8; 4]; | ||
let mut offset = 0usize; | ||
wasi::fd_seek(file_fd, 0, wasi::WHENCE_SET).expect("seeking to offset 0"); | ||
loop { | ||
let buffer = &mut [0u8; 4]; | ||
let iovecs = &[ | ||
wasi::Iovec { | ||
buf: buffer.as_mut_ptr() as *mut _, | ||
buf_len: 2, | ||
}, | ||
wasi::Iovec { | ||
buf: buffer[2..].as_mut_ptr() as *mut _, | ||
buf_len: 2, | ||
}, | ||
]; | ||
nread = wasi::fd_read(file_fd, iovecs).expect("reading bytes at offset 0"); | ||
if nread == 0 { | ||
break; | ||
} | ||
contents[offset..offset + nread].copy_from_slice(&buffer[0..nread]); | ||
offset += nread; | ||
} | ||
assert_eq!(offset, 4, "nread bytes check"); | ||
assert_eq!(contents, &[0u8, 1, 2, 3], "file cursor was overwritten"); | ||
|
||
let contents = &mut [0u8; 4]; | ||
let iovec = wasi::Iovec { | ||
buf: contents.as_mut_ptr() as *mut _, | ||
buf_len: contents.len(), | ||
}; | ||
wasi::fd_seek(file_fd, 2, wasi::WHENCE_SET).expect("seeking to offset 2"); | ||
nread = wasi::fd_read(file_fd, &[iovec]).expect("reading bytes at offset 2"); | ||
assert_eq!(nread, 2, "nread bytes check"); | ||
assert_eq!(contents, &[2u8, 3, 0, 0], "file cursor was overwritten"); | ||
|
||
let contents = &[1u8, 0]; | ||
let ciovec = wasi::Ciovec { | ||
buf: contents.as_ptr() as *const _, | ||
buf_len: contents.len(), | ||
}; | ||
wasi::fd_seek(file_fd, 2, wasi::WHENCE_SET).expect("seeking to offset 2"); | ||
nwritten = wasi::fd_write(file_fd, &mut [ciovec]).expect("writing bytes at offset 2"); | ||
assert_eq!(nwritten, 2, "nwritten bytes check"); | ||
|
||
let contents = &mut [0u8; 4]; | ||
let iovec = wasi::Iovec { | ||
buf: contents.as_mut_ptr() as *mut _, | ||
buf_len: contents.len(), | ||
}; | ||
wasi::fd_seek(file_fd, 0, wasi::WHENCE_SET).expect("seeking to offset 0"); | ||
nread = wasi::fd_read(file_fd, &[iovec]).expect("reading bytes at offset 0"); | ||
assert_eq!(nread, 4, "nread bytes check"); | ||
assert_eq!(contents, &[0u8, 1, 1, 0], "file cursor was overwritten"); | ||
|
||
wasi::fd_close(file_fd).expect("closing a file"); | ||
wasi::path_unlink_file(dir_fd, "file").expect("removing a file"); | ||
} | ||
|
||
unsafe fn test_file_write_and_file_pos(dir_fd: wasi::Fd) { | ||
let path = "file2"; | ||
let file_fd = wasi::path_open( | ||
dir_fd, | ||
0, | ||
path, | ||
wasi::OFLAGS_CREAT, | ||
wasi::RIGHTS_FD_READ | wasi::RIGHTS_FD_WRITE, | ||
0, | ||
0, | ||
) | ||
.expect("opening a file"); | ||
assert!( | ||
file_fd > libc::STDERR_FILENO as wasi::Fd, | ||
"file descriptor range check", | ||
); | ||
|
||
// Perform a 0-sized pwrite at an offset beyond the end of the file. Unix | ||
// semantics should pop out where nothing is actually written and the size | ||
// of the file isn't modified. | ||
assert_eq!(wasi::fd_tell(file_fd).unwrap(), 0); | ||
let ciovec = wasi::Ciovec { | ||
buf: [].as_ptr(), | ||
buf_len: 0, | ||
}; | ||
wasi::fd_seek(file_fd, 2, wasi::WHENCE_SET).expect("seeking to offset 2"); | ||
let n = wasi::fd_write(file_fd, &mut [ciovec]).expect("writing bytes at offset 2"); | ||
assert_eq!(n, 0); | ||
|
||
assert_eq!(wasi::fd_tell(file_fd).unwrap(), 2); | ||
let stat = wasi::fd_filestat_get(file_fd).unwrap(); | ||
assert_eq!(stat.size, 0); | ||
|
||
// Now write a single byte and make sure it actually works | ||
let buf = [0]; | ||
let ciovec = wasi::Ciovec { | ||
buf: buf.as_ptr(), | ||
buf_len: buf.len(), | ||
}; | ||
wasi::fd_seek(file_fd, 50, wasi::WHENCE_SET).expect("seeking to offset 50"); | ||
let n = wasi::fd_write(file_fd, &mut [ciovec]).expect("writing bytes at offset 50"); | ||
assert_eq!(n, 1); | ||
|
||
assert_eq!(wasi::fd_tell(file_fd).unwrap(), 51); | ||
let stat = wasi::fd_filestat_get(file_fd).unwrap(); | ||
assert_eq!(stat.size, 51); | ||
|
||
wasi::fd_close(file_fd).expect("closing a file"); | ||
wasi::path_unlink_file(dir_fd, path).expect("removing a file"); | ||
} | ||
|
||
fn main() { | ||
let mut args = env::args(); | ||
let prog = args.next().unwrap(); | ||
let arg = if let Some(arg) = args.next() { | ||
arg | ||
} else { | ||
eprintln!("usage: {} <scratch directory>", prog); | ||
process::exit(1); | ||
}; | ||
|
||
// Open scratch directory | ||
let dir_fd = match open_scratch_directory(&arg) { | ||
Ok(dir_fd) => dir_fd, | ||
Err(err) => { | ||
eprintln!("{}", err); | ||
process::exit(1) | ||
} | ||
}; | ||
|
||
// Run the tests. | ||
unsafe { | ||
test_file_read_write(dir_fd); | ||
test_file_write_and_file_pos(dir_fd); | ||
} | ||
} |
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
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
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