Description
Proposal
Problem statement
It is currently impossible to properly check for errors with std::fs::remove_dir_all
, especially with concurrent calls to it. This doesn't have to be the case, as we can e.g. see in std::fs::create_dir_all
which can be called multiple times concurrently and succeed.
The current documentation of std::fs::remove_dir_all
currently guarantees that std::fs::remove_dir_all
is not idempotent and will return an error if the directory does not exist.
Motivating examples or use cases
The Rust repository itself has skipped error checking for std::fs::remove_dir_all
(as suggested by the documentation itself). We see snippets like the following all over the codebase:
let _ = fs::remove_dir_all(dir);
The problem is so bad that cargo-miri
contains an incorrect version of the proposed fixed version:
/// An idempotent version of the stdlib's remove_dir_all
/// it is considered a success if the directory was not there.
fn remove_dir_all_idem(dir: &Path) -> std::io::Result<()> {
match std::fs::remove_dir_all(dir) {
Ok(_) => Ok(()),
// If the directory doesn't exist, it is still a success.
Err(err) if err.kind() == io::ErrorKind::NotFound => Ok(()),
Err(err) => Err(err),
}
}
This version doesn't account for the fact that these functions might return io::ErrorKind::NotFound
also when any file deletion fails with this error code (on Unix-like systems) or when any of the parent directories of dir
do not exist.
Note that these are just two examples from the rust repository itself, the whole ecosystem probably has more examples like this.
I believe that despite changing documented behavior, this will not break existing programs, since the end result of the directory not existing stays the same.
Solution sketch
Make concurrent calls to std::fs::remove_dir_all
succeed. If the passed path contains more than one component, still fail with io::ErrorKind::NotFound
when any component but the last one does not exist. I.e. fs::remove_dir_all("foo/bar")
succeeds if foo
exists but foo/bar
does not. It'll fail if even foo
does not exist.
Alternatives
The proposed solution cannot be written using existing APIs, except by copying the implementation from the standard library and modifying it.
-
Another possible solution would be to also not fail when parent directories of the passed path do not exist.
-
A third possible solution would be to create a new function which would have the behavior described in this API change proposal. I don't see a use case for the original function so, that's why I didn't propose this.
Links and related work
Not aware of any.
What happens now?
This issue contains an API change proposal (or ACP) and is part of the libs-api team feature lifecycle. Once this issue is filed, the libs-api team will review open proposals as capability becomes available. Current response times do not have a clear estimate, but may be up to several months.
Possible responses
The libs team may respond in various different ways. First, the team will consider the problem (this doesn't require any concrete solution or alternatives to have been proposed):
- We think this problem seems worth solving, and the standard library might be the right place to solve it.
- We think that this probably doesn't belong in the standard library.
Second, if there's a concrete solution:
- We think this specific solution looks roughly right, approved, you or someone else should implement this. (Further review will still happen on the subsequent implementation PR.)
- We're not sure this is the right solution, and the alternatives or other materials don't give us enough information to be sure about that. Here are some questions we have that aren't answered, or rough ideas about alternatives we'd want to see discussed.