#open #fs #api-bindings

openat

A wrapper around openat, symlinkat, and similar system calls

21 releases

0.1.21 Apr 16, 2021
0.1.20 Mar 19, 2021
0.1.19 Jun 10, 2020
0.1.18 Aug 5, 2019
0.1.2 Dec 28, 2016

#669 in Filesystem

Download history 310/week @ 2023-11-20 348/week @ 2023-11-27 287/week @ 2023-12-04 463/week @ 2023-12-11 378/week @ 2023-12-18 261/week @ 2023-12-25 365/week @ 2024-01-01 422/week @ 2024-01-08 442/week @ 2024-01-15 483/week @ 2024-01-22 480/week @ 2024-01-29 373/week @ 2024-02-05 348/week @ 2024-02-12 394/week @ 2024-02-19 392/week @ 2024-02-26 436/week @ 2024-03-04

1,625 downloads per month
Used in 21 crates (10 directly)

MIT/Apache

39KB
741 lines

Openat Crate

Status: Beta

Documentation | Github | Crate

The interface to openat, symlinkat, and other functions in *at family.

Dependent crates

This crate is a thin wrapper for the underlying system calls. You may find the extension methods in openat-ext useful.

License

Licensed under either of

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.


lib.rs:

Handling Files Relative to File Descriptor

Main concept here is a Dir which holds O_PATH file descriptor, you can create it with:

  • Dir::open("/some/path") -- open this directory as a file descriptor
  • Dir::from_raw_fd(fd) -- uses a file descriptor provided elsewhere

Note after opening file descriptors refer to same directory regardless of where it's moved or mounted (with pivot_root or mount --move). It may also be unmounted or be out of chroot and you will still be able to access files relative to it.

Note2: The constructor Dir::cwd() is deprecated, and it's recommended to use Dir::open(".") instead.

Note3: Some OS's (e.g., macOS) do not provide O_PATH, in which case the file descriptor is of regular type.

Most other operations are done on Dir object and are executed relative to it:

  • Dir::list_dir()
  • Dir::sub_dir()
  • Dir::read_link()
  • Dir::open_file()
  • Dir::create_file()
  • Dir::update_file()
  • Dir::create_dir()
  • Dir::symlink()
  • Dir::local_rename()

Functions that expect path relative to the directory accept both the traditional path-like objects, such as Path, PathBuf and &str, and Entry type returned from list_dir(). The latter is faster as underlying system call wants CString and we keep that in entry.

Note that if path supplied to any method of dir is absolute the Dir file descriptor is ignored.

Also while all methods of dir accept any path if you want to prevent certain symlink attacks and race condition you should only use a single-component path. I.e. open one part of a chain at a time.

Dependencies