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
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
use crate::result::Result;
use crate::seek::SeekFrom;
use core::ffi::CStr;
#[repr(transparent)]
pub struct File {
pub(crate) fd: linux_unsafe::int,
}
impl File {
#[inline(always)]
pub fn open(path: &CStr, options: OpenOptions<OpenWithoutMode>) -> Result<Self> {
Self::open_raw(path, options.flags, 0)
}
#[inline(always)]
pub fn open_with_mode(
path: &CStr,
options: OpenOptions<OpenWithMode>,
mode: linux_unsafe::mode_t,
) -> Result<Self> {
Self::open_raw(path, options.flags, mode)
}
#[inline]
pub fn open_raw(
path: &CStr,
flags: linux_unsafe::int,
mode: linux_unsafe::mode_t,
) -> Result<Self> {
let path_raw = path.as_ptr() as *const linux_unsafe::char;
let result = unsafe {
linux_unsafe::open(
path_raw,
flags as linux_unsafe::int,
mode as linux_unsafe::mode_t,
)
};
result
.map(|fd| unsafe { Self::from_raw_fd(fd as linux_unsafe::int) })
.map_err(|e| e.into())
}
#[inline]
pub fn create_raw(path: &CStr, mode: linux_unsafe::mode_t) -> Result<Self> {
let path_raw = path.as_ptr() as *const linux_unsafe::char;
let result = unsafe { linux_unsafe::creat(path_raw, mode as linux_unsafe::mode_t) };
result
.map(|fd| unsafe { Self::from_raw_fd(fd as linux_unsafe::int) })
.map_err(|e| e.into())
}
#[inline]
pub unsafe fn from_raw_fd(fd: linux_unsafe::int) -> Self {
File { fd }
}
#[inline]
pub fn duplicate(&self) -> Result<Self> {
let result = unsafe { linux_unsafe::dup(self.fd) };
result
.map(|fd| unsafe { Self::from_raw_fd(fd) })
.map_err(|e| e.into())
}
#[inline(always)]
pub fn into_raw_fd(self) -> linux_unsafe::int {
let ret = self.fd;
core::mem::forget(self);
ret
}
#[inline]
pub fn close(mut self) -> Result<()> {
unsafe { self.close_mut() }?;
core::mem::forget(self);
Ok(())
}
#[inline(always)]
pub unsafe fn close_mut(&mut self) -> Result<()> {
let result = unsafe { linux_unsafe::close(self.fd) };
result.map(|_| ()).map_err(|e| e.into())
}
#[inline(always)]
pub fn read(&mut self, buf: &mut [u8]) -> Result<usize> {
let buf_ptr = buf.as_mut_ptr() as *mut linux_unsafe::void;
let buf_size = buf.len();
unsafe { self.read_raw(buf_ptr, buf_size) }.map(|v| v as _)
}
#[inline]
pub unsafe fn read_raw(
&mut self,
buf: *mut linux_unsafe::void,
count: linux_unsafe::size_t,
) -> Result<linux_unsafe::size_t> {
let result = unsafe { linux_unsafe::read(self.fd, buf, count) };
result.map(|v| v as _).map_err(|e| e.into())
}
#[inline]
pub fn seek(&mut self, pos: impl Into<SeekFrom>) -> Result<u64> {
let pos = pos.into();
let raw_offs = pos.for_raw_offset();
#[cfg(not(target_pointer_width = "32"))]
{
let raw_whence = pos.for_raw_whence();
let result = unsafe { linux_unsafe::lseek(self.fd, raw_offs, raw_whence) };
result.map(|v| v as u64).map_err(|e| e.into())
}
#[cfg(target_pointer_width = "32")]
{
let raw_offs_high = ((raw_offs as u64) >> 32) as linux_unsafe::ulong;
let raw_offs_low = (raw_offs as u64) as linux_unsafe::ulong;
use core::cell::UnsafeCell;
let result: UnsafeCell<linux_unsafe::loff_t> = UnsafeCell::new(0);
let result_ptr = result.get();
let raw_whence = pos.for_raw_uwhence();
let result = unsafe {
linux_unsafe::_llseek(self.fd, raw_offs_high, raw_offs_low, result_ptr, raw_whence)
};
match result {
Ok(_) => {
let result_offs = unsafe { *result_ptr } as u64;
Ok(result_offs)
}
Err(e) => Err(e.into()),
}
}
}
#[inline]
pub fn sync(&mut self) -> Result<()> {
let result = unsafe { linux_unsafe::fsync(self.fd) };
result.map(|_| ()).map_err(|e| e.into())
}
#[inline(always)]
pub fn write(&mut self, buf: &[u8]) -> Result<usize> {
let buf_ptr = buf.as_ptr() as *const linux_unsafe::void;
let buf_size = buf.len();
unsafe { self.write_raw(buf_ptr, buf_size) }.map(|v| v as _)
}
#[inline]
pub unsafe fn write_raw(
&mut self,
buf: *const linux_unsafe::void,
count: linux_unsafe::size_t,
) -> Result<linux_unsafe::size_t> {
let result = unsafe { linux_unsafe::write(self.fd, buf, count) };
result.map(|v| v as _).map_err(|e| e.into())
}
}
impl Drop for File {
#[allow(unused_must_use)] fn drop(&mut self) {
unsafe { self.close_mut() };
}
}
impl core::fmt::Write for File {
fn write_str(&mut self, s: &str) -> core::fmt::Result {
let mut bytes = s.as_bytes();
while !bytes.is_empty() {
let n = match self.write(bytes) {
Ok(n) => n,
Err(e) => return Err(e.into()),
};
bytes = &bytes[n..];
}
Ok(())
}
}
#[cfg(feature = "std")]
extern crate std;
#[cfg(feature = "std")]
impl std::io::Read for File {
fn read(&mut self, buf: &mut [u8]) -> std::io::Result<usize> {
self.read(buf).map_err(|e| e.into())
}
}
#[cfg(feature = "std")]
impl std::io::Write for File {
fn write(&mut self, buf: &[u8]) -> std::io::Result<usize> {
self.write(buf).map_err(|e| e.into())
}
fn flush(&mut self) -> std::io::Result<()> {
self.sync().map_err(|e| e.into())
}
}
#[cfg(feature = "std")]
impl std::io::Seek for File {
fn seek(&mut self, pos: std::io::SeekFrom) -> std::io::Result<u64> {
self.seek(pos).map_err(|e| e.into())
}
}
#[cfg(feature = "std")]
impl From<std::os::fd::OwnedFd> for File {
fn from(value: std::os::fd::OwnedFd) -> Self {
use std::os::fd::AsRawFd;
Self {
fd: value.as_raw_fd().into(),
}
}
}
#[cfg(feature = "std")]
impl std::os::fd::FromRawFd for File {
unsafe fn from_raw_fd(fd: std::os::fd::RawFd) -> Self {
Self {
fd: fd as linux_unsafe::int,
}
}
}
#[cfg(feature = "std")]
impl std::os::fd::IntoRawFd for File {
fn into_raw_fd(self) -> std::os::fd::RawFd {
self.into_raw_fd() as std::os::fd::RawFd
}
}
pub const OPEN_READ_ONLY: OpenOptions<OpenWithoutMode> =
OpenOptions::<OpenWithoutMode>::read_only();
pub const OPEN_WRITE_ONLY: OpenOptions<OpenWithoutMode> =
OpenOptions::<OpenWithoutMode>::write_only();
pub const OPEN_READ_WRITE: OpenOptions<OpenWithoutMode> =
OpenOptions::<OpenWithoutMode>::read_write();
#[derive(Clone, Copy, PartialEq, Eq)]
#[repr(transparent)]
pub struct OpenOptions<NeedMode: OpenMode> {
flags: linux_unsafe::int,
_phantom: core::marker::PhantomData<NeedMode>,
}
impl OpenOptions<OpenWithoutMode> {
#[inline(always)]
pub const fn read_only() -> Self {
Self {
flags: linux_unsafe::O_RDONLY, _phantom: core::marker::PhantomData,
}
}
#[inline(always)]
pub const fn write_only() -> Self {
Self {
flags: linux_unsafe::O_WRONLY,
_phantom: core::marker::PhantomData,
}
}
#[inline(always)]
pub const fn read_write() -> Self {
Self {
flags: linux_unsafe::O_RDWR,
_phantom: core::marker::PhantomData,
}
}
}
impl<NeedMode: OpenMode> OpenOptions<NeedMode> {
#[inline(always)]
const fn bit_or(self, new: linux_unsafe::int) -> Self {
Self {
flags: self.flags | new,
_phantom: core::marker::PhantomData,
}
}
#[inline(always)]
pub const fn append(self) -> Self {
self.bit_or(linux_unsafe::O_APPEND)
}
#[inline(always)]
pub const fn close_on_exec(self) -> Self {
self.bit_or(linux_unsafe::O_CLOEXEC)
}
#[inline(always)]
pub const fn create(self) -> OpenOptions<OpenWithMode> {
OpenOptions {
flags: self.bit_or(linux_unsafe::O_CREAT).flags,
_phantom: core::marker::PhantomData,
}
}
#[inline(always)]
pub const fn direct(self) -> Self {
self.bit_or(linux_unsafe::O_DIRECT)
}
#[inline(always)]
pub const fn directory(self) -> Self {
self.bit_or(linux_unsafe::O_DIRECTORY)
}
#[inline(always)]
pub const fn excl(self) -> Self {
self.bit_or(linux_unsafe::O_EXCL)
}
#[inline(always)]
pub const fn no_atime(self) -> Self {
self.bit_or(linux_unsafe::O_NOATIME)
}
#[inline(always)]
pub const fn no_controlling_tty(self) -> Self {
self.bit_or(linux_unsafe::O_NOCTTY)
}
#[inline(always)]
pub const fn no_follow_symlinks(self) -> Self {
self.bit_or(linux_unsafe::O_NOFOLLOW)
}
#[inline(always)]
pub const fn nonblocking(self) -> Self {
self.bit_or(linux_unsafe::O_NONBLOCK)
}
#[inline(always)]
pub const fn path_only(self) -> Self {
self.bit_or(linux_unsafe::O_PATH)
}
#[inline(always)]
pub const fn sync(self) -> Self {
self.bit_or(linux_unsafe::O_SYNC)
}
#[inline(always)]
pub const fn temp_file(self) -> OpenOptions<OpenWithMode> {
OpenOptions {
flags: self.bit_or(linux_unsafe::O_TMPFILE).flags,
_phantom: core::marker::PhantomData,
}
}
#[inline(always)]
pub const fn truncate(self) -> Self {
self.bit_or(linux_unsafe::O_TRUNC)
}
#[inline(always)]
pub const fn into_raw_flags(self) -> linux_unsafe::int {
self.flags
}
}
impl<NeedMode: OpenMode> Into<linux_unsafe::int> for OpenOptions<NeedMode> {
#[inline(always)]
fn into(self) -> linux_unsafe::int {
self.into_raw_flags()
}
}
pub enum OpenWithMode {}
pub enum OpenWithoutMode {}
pub trait OpenMode {}
impl OpenMode for OpenWithMode {}
impl OpenMode for OpenWithoutMode {}