-
Notifications
You must be signed in to change notification settings - Fork 13.2k
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
Check for union field accesses in THIR unsafeck #85263
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,19 @@ | ||
error[E0133]: access to union field is unsafe and requires unsafe function or block | ||
--> $DIR/issue-47412.rs:14:11 | ||
| | ||
LL | match u.void {} | ||
| ^^^^^^ access to union field | ||
| | ||
= note: the field may not be properly initialized: using uninitialized data will cause undefined behavior | ||
|
||
error[E0133]: dereference of raw pointer is unsafe and requires unsafe function or block | ||
--> $DIR/issue-47412.rs:21:11 | ||
--> $DIR/issue-47412.rs:20:11 | ||
| | ||
LL | match *ptr {} | ||
| ^^^^ dereference of raw pointer | ||
| | ||
= note: raw pointers may be null, dangling or unaligned; they can violate aliasing rules and cause data races: all of these are undefined behavior | ||
|
||
error: aborting due to previous error | ||
error: aborting due to 2 previous errors | ||
|
||
For more information about this error, try `rustc --explain E0133`. |
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
60 changes: 60 additions & 0 deletions
60
src/test/ui/union/union-borrow-move-parent-sibling.thirunsafeck.stderr
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,60 @@ | ||
error[E0502]: cannot borrow `u` (via `u.y`) as immutable because it is also borrowed as mutable (via `u.x.0`) | ||
--> $DIR/union-borrow-move-parent-sibling.rs:56:13 | ||
| | ||
LL | let a = &mut u.x.0; | ||
| ---------- mutable borrow occurs here (via `u.x.0`) | ||
LL | let b = &u.y; | ||
| ^^^^ immutable borrow of `u.y` -- which overlaps with `u.x.0` -- occurs here | ||
LL | use_borrow(a); | ||
| - mutable borrow later used here | ||
| | ||
= note: `u.y` is a field of the union `U`, so it overlaps the field `u.x.0` | ||
|
||
error[E0382]: use of moved value: `u` | ||
--> $DIR/union-borrow-move-parent-sibling.rs:63:13 | ||
| | ||
LL | let u = U { x: ((MockVec::new(), MockVec::new()), MockVec::new()) }; | ||
| - move occurs because `u` has type `U`, which does not implement the `Copy` trait | ||
LL | let a = u.x.0; | ||
| ----- value moved here | ||
LL | let b = u.y; | ||
| ^^^ value used here after move | ||
|
||
error[E0502]: cannot borrow `u` (via `u.y`) as immutable because it is also borrowed as mutable (via `u.x.0.0`) | ||
--> $DIR/union-borrow-move-parent-sibling.rs:69:13 | ||
| | ||
LL | let a = &mut (u.x.0).0; | ||
| -------------- mutable borrow occurs here (via `u.x.0.0`) | ||
LL | let b = &u.y; | ||
| ^^^^ immutable borrow of `u.y` -- which overlaps with `u.x.0.0` -- occurs here | ||
LL | use_borrow(a); | ||
| - mutable borrow later used here | ||
| | ||
= note: `u.y` is a field of the union `U`, so it overlaps the field `u.x.0.0` | ||
|
||
error[E0382]: use of moved value: `u` | ||
--> $DIR/union-borrow-move-parent-sibling.rs:76:13 | ||
| | ||
LL | let u = U { x: ((MockVec::new(), MockVec::new()), MockVec::new()) }; | ||
| - move occurs because `u` has type `U`, which does not implement the `Copy` trait | ||
LL | let a = (u.x.0).0; | ||
| --------- value moved here | ||
LL | let b = u.y; | ||
| ^^^ value used here after move | ||
|
||
error[E0502]: cannot borrow `u` (via `u.x`) as immutable because it is also borrowed as mutable (via `u.y`) | ||
--> $DIR/union-borrow-move-parent-sibling.rs:82:13 | ||
| | ||
LL | let a = &mut *u.y; | ||
| --- mutable borrow occurs here (via `u.y`) | ||
LL | let b = &u.x; | ||
| ^^^^ immutable borrow of `u.x` -- which overlaps with `u.y` -- occurs here | ||
LL | use_borrow(a); | ||
| - mutable borrow later used here | ||
| | ||
= note: `u.x` is a field of the union `U`, so it overlaps the field `u.y` | ||
|
||
error: aborting due to 5 previous errors | ||
|
||
Some errors have detailed explanations: E0382, E0502. | ||
For more information about an error, try `rustc --explain E0382`. |
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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hm, the actual check seems quite a bit more complicated! (cc @RalfJung, who authored those changes)
https://github.com/rust-lang/rust/blob/24379879acc0959e8ae0f3c19d249b3beb278836/compiler/rustc_mir/src/transform/check_unsafety.rs#L214-L266
I'm wondering why more tests didn't fail. I think we're going to have to tweak these rules here.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oh, right, you need
unsafe
to read from the union. (Tbh I've never used unions in Rust 😄)I think we don't run the existing check-fail tests, see my comment above.EDIT: nevermind, this should be too conservative instead
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
All reads and some writes should be
unsafe
, yes -- and we should have tests covering that... tough probably not very precise ones.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, the
src/test/ui/union/union-unsafe.rs
should help; you probably want to run that under thirunsafeck as well.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@RalfJung I'm trying to properly check if something is reading from a union, and encountered this weirdness. Is this a bug or feature of the MIR borrow checker?
playground
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think that behavior in the first match is a bug in the MIR borrowck, since RFC 1444 says that pattern matching against unions must be unsafe. (and MIR borrowck is okay with it since it doesn't actually involve any reads)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I guess this has to do with how pattern matching is compiled -- matching
zst
against the()
pattern does not actually read anything (we know the pattern matches without even looking). So it makes sense to me that the former would not beunsafe
. But one could easily decide either way and both ways make sense.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Note that this pattern is
unsafe
:There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I've updated the checking, I think it should properly detect if something is a read or write to union now (I am also now running almost all of the
src/test/ui/union
test suite).