-
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
BufWriter is not panic-safe #30888
Comments
Note that Rust is normally referring to "memory safety" when talking about safety, so the issue here isn't in conflict with the related discussions. It's definitely a bug in |
If your
This is not quite the case - What's specifically the expected behavior here? Is the For reference, Java's |
Without the But with
I think we need some guideline like: If a method call panics, it's a bug to call any additional methods on the same object. The Java Essentially, the Rust world needs to decide between a Java/C++-style "strong exception safety guarantee" (=failing method call should not have any side effects) or a new "no-use-after-panic guarantee" (=after a failing method call, no additional method calls should occur). Some types (like BufWriter) can be compatible with at most one of the guarantees -- strong exception safety requires that a panicking inner.write call has no side effects; no-use-after-panic requires that a panicking inner.write call has the side effect of suppressing the buffer flush in the The |
We don't want to write the same data twice. Closes rust-lang#30888
We don't want to write the same data twice. Closes #30888 r? @alexcrichton
There is a panic safety issue in
BufWriter
: after ainner.write()
call panics, theDrop
impl ofBufWriter
callsinner.write()
again, which means the buffer contents are potentially written twice. This may cause an application to overwrite parts of a file that it did not mean to overwrite (in a DB engine written in Rust, this could cause unrecoverable data corruption!).Demonstration: https://play.rust-lang.org/?gist=9991550d3efb38c93df4&version=stable
The expected output of the demo program is
File contents: aBBccc
, the actual output is:File contents: aBBBBc
More generally, we need a story for panic safety in Rust.
My takeaway from the related discussions (e.g. RFC 1236, #27719, the RecoverSafe trait) was that only
unsafe
code andDrop
impls should have to worry about panic safety. The demo app contains none of these, so I'd consider this a bug inimpl Drop for BufWriter
. (otherwise allWrite
implementations would need to provide the strong exception safety guarantee?)Solution:
BufWriter
could use temporarily mark the buffer as empty during theinner.write
calls; so that theDrop
impl doesn't do anything after a panic.However, this doesn't help if the panic occurs during a
bufWriter.get_mut().write()
call...The text was updated successfully, but these errors were encountered: