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

accessing private fields is not safe, and io isn't scary #26603

Merged
merged 2 commits into from
Jun 27, 2015

Conversation

Gankra
Copy link
Contributor

@Gankra Gankra commented Jun 26, 2015

Quick poll of basically the entire core team says this is ok.

@rust-highfive
Copy link
Contributor

r? @huonw

(rust_highfive has picked a reviewer for you, use r? to override)

@steveklabnik
Copy link
Member

@bors: r+ rollup

@bors
Copy link
Collaborator

bors commented Jun 26, 2015

📌 Commit 9001da6 has been approved by steveklabnik

@@ -1047,11 +1047,8 @@ This is a list of behavior not considered *unsafe* in Rust terms, but that may
be undesired.

* Deadlocks
* Reading data from private fields (`std::repr`)
Copy link
Member

Choose a reason for hiding this comment

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

How does this interact with what it says 18 lines previously?

[Behavior considered undefined] Invalid values in primitive types, even in private fields/locals

Is it now ok in private fields, since private fields are not permitted to be read?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

I think it's fine to make a private mem::uninitialized as long as a public consumer can't observe it. Making a bool = 3 is still invalid, though.

Copy link
Member

Choose a reason for hiding this comment

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

What's the difference between a private field bool = 3, and the same field being mem::uninitialized? Presumably it's essentially illegal to read such a thing in both cases, but they should be fine to be "write only".

Copy link
Member

Choose a reason for hiding this comment

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

I think I answered my own question why it's not a good idea to allow (see forum).

Manishearth added a commit to Manishearth/rust that referenced this pull request Jun 27, 2015
Quick poll of basically the entire core team says this is ok.
bors added a commit that referenced this pull request Jun 27, 2015
@bors bors merged commit 9001da6 into rust-lang:master Jun 27, 2015
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

6 participants