Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix libc::read shim: make it write to a buffer correct amount of bytes. Add tests for new behavior #3720

Merged
merged 1 commit into from
Jul 10, 2024

Conversation

safinaskar
Copy link
Contributor

@safinaskar safinaskar commented Jun 29, 2024

libc::read shim had a bug: if underlying real call libc::read(fd, buf, N) returns M, then
libc::read shim writes N bytes to buf instead of M. Remaining N - M bytes are filled with zeros.
This commit fixes this bug and adds tests for new behavior

@safinaskar safinaskar marked this pull request as draft June 29, 2024 01:20
@RalfJung
Copy link
Member

RalfJung commented Jun 30, 2024

Thanks!
Could you please add a PR description explaining the goal of the PR? We already have tests of the file system APIs and if read did not initialize the buffer they would obviously fail.

It would be nice to have some tests that check the libc APIs (open/read/write/close) directly, basically a libc version of src/shims/unix/fs.rs -- see #3179. If that is the goal of this PR then the filename and test content should be adjusted accordingly. Specifically, this should be added in tests/pass-dep/shims/libc-fs.rs (after checking that none of the existing tests there already covers this).

@safinaskar
Copy link
Contributor Author

@RalfJung , okay. I will remove draft status, when I'm done

@RalfJung
Copy link
Member

I am not sure if that generates a notification... please write @rustbot ready when it is ready.

@rustbot author

@rustbot rustbot added the S-waiting-on-author Status: Waiting for the PR author to address review comments label Jun 30, 2024
@safinaskar
Copy link
Contributor Author

@RalfJung , okay

@safinaskar safinaskar changed the title add tests for libc::read Fix libc::read shim: make it write to a buffer correct amount of bytes. Add tests for new behavior Jul 5, 2024
@safinaskar safinaskar marked this pull request as ready for review July 5, 2024 21:54
@safinaskar
Copy link
Contributor Author

@RalfJung
@rustbot ready
See updated title and description

@rustbot rustbot added S-waiting-on-review Status: Waiting for a review to complete and removed S-waiting-on-author Status: Waiting for the PR author to address review comments labels Jul 5, 2024
Copy link
Member

@RalfJung RalfJung left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ah, that's what this is about. :) Good catch, and thanks for the PR!

@@ -394,7 +394,7 @@ pub trait EvalContextExt<'tcx>: crate::MiriInterpCxExt<'tcx> {
match result {
Ok(read_bytes) => {
// If reading to `bytes` did not fail, we write those bytes to the buffer.
this.write_bytes_ptr(buf, bytes)?;
this.write_bytes_ptr(buf, bytes[..usize::try_from(read_bytes).unwrap()].to_vec())?;
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
this.write_bytes_ptr(buf, bytes[..usize::try_from(read_bytes).unwrap()].to_vec())?;
// Crucially, if fewer than `bytes.len()` bytes were read, only write
// that much into the output buffer!
this.write_bytes_ptr(buf, bytes[..usize::try_from(read_bytes).unwrap()].to_vec())?;

Also, to_vec should not be needed. .iter().copied() should work.

@@ -0,0 +1,25 @@
// We test that if we requested to read 4 bytes, but actually read 3 bytes, then 3 bytes (not 4) will be initialized
//@ignore-target-windows: we have no file deletion on Windows
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
//@ignore-target-windows: we have no file deletion on Windows
//@ignore-target-windows: no file system support on Windows

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What is the point of this test? I don't think this is a likely enough error to justify spending CI time on.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please move these into libc-fs.rs

@RalfJung
Copy link
Member

RalfJung commented Jul 6, 2024

@rustbot author

@rustbot rustbot added S-waiting-on-author Status: Waiting for the PR author to address review comments and removed S-waiting-on-review Status: Waiting for a review to complete labels Jul 6, 2024
@safinaskar
Copy link
Contributor Author

@RalfJung
@rustbot ready
I made all requested changes

@rustbot rustbot added S-waiting-on-review Status: Waiting for a review to complete and removed S-waiting-on-author Status: Waiting for the PR author to address review comments labels Jul 9, 2024
remove_file(&path).unwrap();
}
{
// We test that if we requested to read 4 bytes, but actually read 3 bytes, then 3 bytes (not 4) will be overwritten, and remaining byte will be left as is
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
// We test that if we requested to read 4 bytes, but actually read 3 bytes, then 3 bytes (not 4) will be overwritten, and remaining byte will be left as is
// We test that if we requested to read 4 bytes, but actually read 3 bytes, then
// 3 bytes (not 4) will be overwritten, and the remaining byte will be left as-is.

fn test_read_and_uninit() {
use std::mem::MaybeUninit;
{
// We test that libc::read initializes its buffer
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
// We test that libc::read initializes its buffer
// We test that libc::read initializes its buffer.

@@ -0,0 +1,26 @@
// We test that if we requested to read 4 bytes, but actually read 3 bytes, then 3 bytes (not 4) will be initialized
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
// We test that if we requested to read 4 bytes, but actually read 3 bytes, then 3 bytes (not 4) will be initialized
//! We test that if we requested to read 4 bytes, but actually read 3 bytes,
//! then 3 bytes (not 4) will be initialized.

@RalfJung
Copy link
Member

RalfJung commented Jul 9, 2024

Just some final nits, please make these comments proper sentences and line-wrap them.

Usually I'd just apply these patches myself, but you seem to have disabled the option in the PR to let maintainers push to your branch. I can only recommend to enable that option, it saves you some work that maintainers can do for you. :)

@rustbot author

@rustbot rustbot added S-waiting-on-author Status: Waiting for the PR author to address review comments and removed S-waiting-on-review Status: Waiting for a review to complete labels Jul 9, 2024
…s. Add tests for the new behavior.

libc::read shim had a bug: if underlying real call libc::read(fd, buf, N) returns M, then
libc::read shim writes N bytes to buf instead of M. Remaining N - M bytes are filled with zeros.
This commit fixes this bug and adds tests for new behavior
@safinaskar
Copy link
Contributor Author

@RalfJung
@rustbot ready
I made all requested changes

@rustbot rustbot added S-waiting-on-review Status: Waiting for a review to complete and removed S-waiting-on-author Status: Waiting for the PR author to address review comments labels Jul 9, 2024
@RalfJung
Copy link
Member

Thanks, looks good!
@bors r+

@bors
Copy link
Contributor

bors commented Jul 10, 2024

📌 Commit e5c380b has been approved by RalfJung

It is now in the queue for this repository.

@bors
Copy link
Contributor

bors commented Jul 10, 2024

⌛ Testing commit e5c380b with merge 7184789...

@bors
Copy link
Contributor

bors commented Jul 10, 2024

☀️ Test successful - checks-actions
Approved by: RalfJung
Pushing 7184789 to master...

@bors bors merged commit 7184789 into rust-lang:master Jul 10, 2024
8 checks passed
@safinaskar safinaskar deleted the read branch July 10, 2024 16:03
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
S-waiting-on-review Status: Waiting for a review to complete
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants