-
Notifications
You must be signed in to change notification settings - Fork 1.5k
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
New lint: dangerous use of vec.set_len() #4483
Comments
This is not UB. You are not producing a value of said types at this point. |
So it only becomes UB when we create a slice that points to it, or start reading/writing by index? |
@RalfJung in the example for "adding to a vector while borrowing its contents", in the "right way" example, isn't that still UB under stacked borrows? You have a *mut to some vec contents, but then you index the vec (which makes a shared reference), but doesn't that invalidate the *mut from further use? Or maybe my brain has become too defensive about pointer invalidation |
Are we planning to have raw pointer vec APIs so that deferred initialization can be done safely here without requiring us to start with a zeroed buffer? |
An abstraction that's like a Vec but over a fixed-size backing storage is sorely needed for cases where passing a fixed-size buffer to be filled. Particularly for Read trait which currently requires unbounded storage (Vec) or bounded initialized storage (slice), but this crops up all over the place. I'm not aware of any RFCs working in that direction, but there's been some experimentation in https://crates.io/crates/uninit recently. Something very close to that is also implemented in https://crates.io/crates/buffer, but I cannot vouch for the quality of the crate. |
Cool, the lint should then suggest using the |
Basically, for patterns like this there's little point to having a lint if there is no alternative for people to switch to. |
Until we have a proper solution for all types, can we make a lint asking for proper initialization for generic types, reference types and types where some bit patterns are invalid, like Having uninitialized memory of those types is certainly undefined behavior and almost certainly an exploitable security vulnerability if anything can panic while uninitialized memory is exposed. ...nevermind, that would probably result in false positives on FFI calls like: let v = Vec::with_capacity(10);
unsafe {
let used = foreign_call(v.as_ptr(), v.capacity());
v.set_len(used);
} 😞 |
Actually when i typed that example on my phone earlier I left off that you should absolutely be using |
(I'll come back to you after my vacation.) |
Looks like the example got changed. But I think that's fine; taking a shared ref to
Basically, yes. Though even reading can be fine if this is a type that permits being uninitialized (like, imagine a
Producing values of such type form uninitialized memory is UB. The thing is, Maybe "producing" is not the best terminology either. :/ I adapted that one from the Nomicon. My personal terminology is "typed copy": whenever you do a "typed copy", the value must be "valid" (which for the types you listed means in particular "must not be uninitialized memory"). Typed copies occuring on assignment ( |
I ran into that case in rust-secure-code/safety-dance#55 / hucsmn/qbsdiff#3, and it seems to be a somewhat-common pattern. Could we at least lint on the following? let v = Vec::with_capacity(n);
// Not doing anything with v before the next call:
unsafe { v.set_len(n); }
// Taking afterwards a slice from v Longer-term, it might be good to characterise which parts of the |
FYI, the author of |
@Kixunil is that soundness bug described somewhere? Unfortunately the crates.io page for |
Yep: rust-lang/rust#66699 (comment) casting |
Speaking of which, it would be great to have a lint for casting |
Good idea, filed #4896 |
Shouldn't this have been closed by #7681? The first example in the issue description now lints on the playground. |
I commonly see people call
vec.set_len()
to grow a vector and then fill the uninitialized data as a slice. This is dangerous because it exposes uninitialized memory to be read and dropped on panic. See Here's My Type, So Initialize Me Maybe for more details - anything that applies tomem::uninitialized
also applies to regions exposed viavec.set_len()
.Here are some problematic examples:
Creating Vec to create a slice
Wrong way:
Right way:
Doing this for any type where not every bit pattern is valid (like
bool
) or forDrop
types is instant UB.For types with any valid bit pattern it's less clear-cut, but still very dangerous and has already led to security vulnerabilites in real code. It's also a common pattern to pass such slices to
std::io::Read::read()
, which is unsound.Note that for
u8
and friends the use ofvec![0; len]
is already encouraged through some lints, see #3237, but there are currently no lints for unsafe variants of the code. Usingvec![0; len]
and reusing the vector for subsequent operations should be as fast as using uninit, but safe.Appending to vector while borrowing its contents
Wrong way:
Right way:
Here's a real-world example of such code, albeit with
u8
: https://github.com/image-rs/inflate/blob/1a810dba8467fc9cf1e8c60155d3266790072220/src/lib.rs#L663This is instant UB for types where not all bit patterns are valid. This is also an exploitable security vulnerability if this is done for
Drop
types, or if*v_ptr = value
is used instead ofptr::write(v_ptr, value)
Sadly the wrong pattern is the best available pattern for types such as
u8
(at least in the stdlib). Using ptr::write is not needed for such types, and you lose the bounds checks too if you use pointers. I've opened an RFC to address this, but it's not getting much attention.Other patterns
I'm probably missing something, so please add other problematic examples.
cc @RalfJung
The text was updated successfully, but these errors were encountered: