1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
use crate::fs::remove_file_impl;
#[cfg(racy_asserts)]
use crate::fs::{
manually, map_result, remove_file_unchecked, stat_unchecked, FollowSymlinks, Metadata,
};
use std::path::Path;
use std::{fs, io};
#[cfg_attr(not(racy_asserts), allow(clippy::let_and_return))]
#[inline]
pub fn remove_file(start: &fs::File, path: &Path) -> io::Result<()> {
#[cfg(racy_asserts)]
let stat_before = stat_unchecked(start, path, FollowSymlinks::No);
let result = remove_file_impl(start, path);
#[cfg(racy_asserts)]
let stat_after = stat_unchecked(start, path, FollowSymlinks::No);
#[cfg(racy_asserts)]
check_remove_file(start, path, &stat_before, &result, &stat_after);
result
}
#[cfg(racy_asserts)]
#[allow(clippy::enum_glob_use)]
fn check_remove_file(
start: &fs::File,
path: &Path,
stat_before: &io::Result<Metadata>,
result: &io::Result<()>,
stat_after: &io::Result<Metadata>,
) {
use io::ErrorKind::*;
match (
map_result(stat_before),
map_result(result),
map_result(stat_after),
) {
(Ok(metadata), Ok(()), Err((NotFound, _))) => {
assert!(!metadata.is_dir());
}
(Err((Other, _)), Ok(()), Err((NotFound, _))) => {
}
(_, Err((_kind, _message)), _) => {
match map_result(&manually::canonicalize_with(
start,
path,
FollowSymlinks::No,
)) {
Ok(canon) => match map_result(&remove_file_unchecked(start, &canon)) {
Err((_unchecked_kind, _unchecked_message)) => {
}
_ => panic!("unsandboxed remove_file success"),
},
Err((_canon_kind, _canon_message)) => {
}
}
}
other => panic!(
"inconsistent remove_file checks: start='{:?}' path='{}':\n{:#?}",
start,
path.display(),
other,
),
}
match (result, stat_after) {
(Ok(()), Ok(_unchecked_metadata)) => panic!(
"file still exists after remove_file start='{:?}', path='{}'",
start,
path.display()
),
(Err(e), Ok(unchecked_metadata)) => match e.kind() {
#[cfg(io_error_more)]
io::ErrorKind::IsADirectory => assert!(unchecked_metadata.is_dir()),
io::ErrorKind::PermissionDenied => (),
#[cfg(not(io_error_more))]
io::ErrorKind::Other if unchecked_metadata.is_dir() => (),
_ => panic!(
"unexpected error removing file start='{:?}', path='{}': {:?}",
start,
path.display(),
e
),
},
(Ok(()), Err(_unchecked_error)) => (),
(Err(result_error), Err(_unchecked_error)) => match result_error.kind() {
io::ErrorKind::PermissionDenied => (),
_ => {
}
},
}
}