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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
use cap_std::fs::{Dir, File, Permissions};
use rustix::fd::{AsFd, FromFd};
use rustix::fs::{AtFlags, Mode, OFlags};
use rustix::path::DecInt;
use std::ffi::OsStr;
use std::io::{Result, Write};
use std::ops::{Deref, DerefMut};
use std::os::unix::prelude::PermissionsExt;
use std::path::Path;
use crate::prelude::CapStdExtDirExt;
fn new_name() -> String {
#[cfg(not(target_os = "emscripten"))]
{
uuid::Uuid::new_v4().to_string()
}
#[cfg(target_os = "emscripten")]
{
use rand::RngCore;
let mut r = rand::thread_rng();
format!("cap-primitives.{}", r.next_u32())
}
}
#[derive(Debug)]
pub struct LinkableTempfile<'p, 'd> {
name: &'p OsStr,
dir: &'d Dir,
subdir: Option<Dir>,
fd: File,
}
impl<'p, 'd> Deref for LinkableTempfile<'p, 'd> {
type Target = File;
fn deref(&self) -> &Self::Target {
&self.fd
}
}
impl<'p, 'd> std::io::Write for LinkableTempfile<'p, 'd> {
fn write(&mut self, buf: &[u8]) -> Result<usize> {
self.fd.write(buf)
}
fn flush(&mut self) -> Result<()> {
self.fd.flush()
}
}
impl<'p, 'd> DerefMut for LinkableTempfile<'p, 'd> {
fn deref_mut(&mut self) -> &mut Self::Target {
&mut self.fd
}
}
impl<'p, 'd> LinkableTempfile<'p, 'd> {
pub(crate) fn new_in(dir: &'d Dir, target: &'p Path) -> Result<Self> {
let name = target.file_name().ok_or_else(|| {
std::io::Error::new(std::io::ErrorKind::InvalidInput, "Not a file name")
})?;
let subdir = if let Some(parent) = target.parent().filter(|v| !v.as_os_str().is_empty()) {
Some(dir.open_dir(parent)?)
} else {
None
};
let subdir_fd = subdir.as_ref().unwrap_or(dir).as_fd();
let oflags = OFlags::CLOEXEC | OFlags::TMPFILE | OFlags::RDWR;
let mode = Mode::RUSR | Mode::WUSR;
let fd = rustix::fs::openat(&subdir_fd, ".", oflags, mode)?;
let fd = File::from_fd(fd.into());
Ok(Self {
name,
dir,
subdir,
fd,
})
}
fn subdir(&self) -> &Dir {
self.subdir.as_ref().unwrap_or(self.dir)
}
fn try_emplace_to(dir: &Dir, fdname: &DecInt, name: &OsStr) -> rustix::io::Result<()> {
let procself_fd = rustix::io::proc_self_fd()?;
rustix::fs::linkat(
&procself_fd,
fdname.as_c_str(),
dir,
name,
AtFlags::SYMLINK_FOLLOW,
)
}
pub fn replace_with_perms(self, permissions: Permissions) -> Result<()> {
let subdir = self.subdir();
let fd = self.fd.as_fd();
let procself_fd = rustix::io::proc_self_fd()?;
let fdnum = rustix::path::DecInt::from_fd(&fd);
let mut attempts = 0u32;
let tempname = loop {
attempts = attempts.saturating_add(1);
if attempts == u32::MAX {
return Err(std::io::Error::new(
std::io::ErrorKind::AlreadyExists,
"too many temporary files exist",
));
}
let name = new_name();
match rustix::fs::linkat(
&procself_fd,
fdnum.as_c_str(),
subdir,
&name,
AtFlags::SYMLINK_FOLLOW,
) {
Ok(()) => break name,
Err(e) if e == rustix::io::Error::EXIST => continue,
Err(e) => return Err(e.into()),
}
};
self.fd.set_permissions(permissions)?;
let tempname = rustix::ffi::ZString::new(tempname)?;
match rustix::fs::renameat(subdir, &tempname, subdir, self.name) {
Ok(()) => Ok(()),
Err(e) => {
let _ = rustix::fs::unlinkat(subdir, tempname, AtFlags::empty());
Err(e.into())
}
}
}
pub fn replace_contents_using_perms(
mut self,
contents: impl AsRef<[u8]>,
permissions: Permissions,
) -> Result<()> {
self.write_all(contents.as_ref())?;
self.replace_with_perms(permissions)
}
pub fn replace_contents(mut self, contents: impl AsRef<[u8]>) -> Result<()> {
self.write_all(contents.as_ref())?;
let permissions = self.default_permissions()?;
self.replace_with_perms(permissions)
}
pub fn replace(self) -> Result<()> {
let permissions = self.default_permissions()?;
self.replace_with_perms(permissions)
}
fn default_permissions(&self) -> Result<Permissions> {
let permissions = if let Some(p) = self.subdir().metadata_optional(self.name)? {
p.permissions()
} else {
Permissions::from_mode(0o600)
};
Ok(permissions)
}
pub fn emplace(self) -> Result<()> {
let fdnum = rustix::path::DecInt::from_fd(&self.fd);
Self::try_emplace_to(self.subdir(), &fdnum, self.name).map_err(|e| e.into())
}
}