2019-02-12 12:51:34 +00:00
|
|
|
//! File system helper utilities.
|
|
|
|
|
2019-02-13 11:38:27 +00:00
|
|
|
use std::borrow::{Borrow, BorrowMut};
|
|
|
|
use std::ops::{Deref, DerefMut};
|
2019-02-13 13:02:27 +00:00
|
|
|
use std::os::unix::io::{AsRawFd, RawFd};
|
2019-02-12 12:51:34 +00:00
|
|
|
|
2019-02-13 12:51:29 +00:00
|
|
|
use failure::*;
|
2019-02-12 12:51:34 +00:00
|
|
|
use nix::dir;
|
|
|
|
use nix::dir::Dir;
|
2019-02-13 13:00:48 +00:00
|
|
|
use regex::Regex;
|
2019-02-12 12:51:34 +00:00
|
|
|
|
|
|
|
use crate::tools::borrow::Tied;
|
|
|
|
|
2019-02-13 11:38:27 +00:00
|
|
|
/// This wraps nix::dir::Entry with the parent directory's file descriptor.
|
|
|
|
pub struct ReadDirEntry {
|
|
|
|
entry: dir::Entry,
|
|
|
|
parent_fd: RawFd,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Into<dir::Entry> for ReadDirEntry {
|
|
|
|
fn into(self) -> dir::Entry {
|
|
|
|
self.entry
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Deref for ReadDirEntry {
|
|
|
|
type Target = dir::Entry;
|
|
|
|
|
|
|
|
fn deref(&self) -> &Self::Target {
|
|
|
|
&self.entry
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl DerefMut for ReadDirEntry {
|
|
|
|
fn deref_mut(&mut self) -> &mut Self::Target {
|
|
|
|
&mut self.entry
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl AsRef<dir::Entry> for ReadDirEntry {
|
|
|
|
fn as_ref(&self) -> &dir::Entry {
|
|
|
|
&self.entry
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl AsMut<dir::Entry> for ReadDirEntry {
|
|
|
|
fn as_mut(&mut self) -> &mut dir::Entry {
|
|
|
|
&mut self.entry
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Borrow<dir::Entry> for ReadDirEntry {
|
|
|
|
fn borrow(&self) -> &dir::Entry {
|
|
|
|
&self.entry
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl BorrowMut<dir::Entry> for ReadDirEntry {
|
|
|
|
fn borrow_mut(&mut self) -> &mut dir::Entry {
|
|
|
|
&mut self.entry
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl ReadDirEntry {
|
|
|
|
#[inline]
|
|
|
|
pub fn parent_fd(&self) -> RawFd {
|
|
|
|
self.parent_fd
|
|
|
|
}
|
2019-02-13 13:26:34 +00:00
|
|
|
|
|
|
|
pub unsafe fn file_name_utf8_unchecked(&self) -> &str {
|
|
|
|
std::str::from_utf8_unchecked(self.file_name().to_bytes())
|
|
|
|
}
|
2019-02-13 11:38:27 +00:00
|
|
|
}
|
|
|
|
|
2019-02-12 12:51:34 +00:00
|
|
|
// Since Tied<T, U> implements Deref to U, a Tied<Dir, Iterator> already implements Iterator.
|
|
|
|
// This is simply a wrapper with a shorter type name mapping nix::Error to failure::Error.
|
|
|
|
/// Wrapper over a pair of `nix::dir::Dir` and `nix::dir::Iter`, returned by `read_subdir()`.
|
|
|
|
pub struct ReadDir {
|
2019-06-07 11:10:56 +00:00
|
|
|
iter: Tied<Dir, dyn Iterator<Item = nix::Result<dir::Entry>> + Send>,
|
2019-02-13 13:02:27 +00:00
|
|
|
dir_fd: RawFd,
|
2019-02-12 12:51:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Iterator for ReadDir {
|
2019-02-13 13:02:27 +00:00
|
|
|
type Item = Result<ReadDirEntry, Error>;
|
2019-02-12 12:51:34 +00:00
|
|
|
|
|
|
|
fn next(&mut self) -> Option<Self::Item> {
|
2019-02-13 13:02:27 +00:00
|
|
|
self.iter.next().map(|res| {
|
|
|
|
res.map(|entry| ReadDirEntry { entry, parent_fd: self.dir_fd })
|
2019-02-18 12:21:25 +00:00
|
|
|
.map_err(Error::from)
|
2019-02-13 13:02:27 +00:00
|
|
|
})
|
2019-02-12 12:51:34 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Create an iterator over sub directory entries.
|
|
|
|
/// This uses `openat` on `dirfd`, so `path` can be relative to that or an absolute path.
|
2019-07-04 08:47:16 +00:00
|
|
|
pub fn read_subdir<P: ?Sized + nix::NixPath>(dirfd: RawFd, path: &P) -> nix::Result<ReadDir> {
|
2019-02-12 12:51:34 +00:00
|
|
|
use nix::fcntl::OFlag;
|
|
|
|
use nix::sys::stat::Mode;
|
|
|
|
|
|
|
|
let dir = Dir::openat(dirfd, path, OFlag::O_RDONLY, Mode::empty())?;
|
2019-02-13 13:02:27 +00:00
|
|
|
let fd = dir.as_raw_fd();
|
2019-02-12 12:51:34 +00:00
|
|
|
let iter = Tied::new(dir, |dir| {
|
2019-06-07 11:10:56 +00:00
|
|
|
Box::new(unsafe { (*dir).iter() })
|
|
|
|
as Box<dyn Iterator<Item = nix::Result<dir::Entry>> + Send>
|
2019-02-12 12:51:34 +00:00
|
|
|
});
|
2019-02-13 13:02:27 +00:00
|
|
|
Ok(ReadDir { iter, dir_fd: fd })
|
2019-02-12 12:51:34 +00:00
|
|
|
}
|
2019-02-12 13:20:16 +00:00
|
|
|
|
|
|
|
/// Scan through a directory with a regular expression. This is simply a shortcut filtering the
|
|
|
|
/// results of `read_subdir`. Non-UTF8 comaptible file names are silently ignored.
|
|
|
|
pub fn scan_subdir<'a, P: ?Sized + nix::NixPath>(
|
|
|
|
dirfd: RawFd,
|
|
|
|
path: &P,
|
|
|
|
regex: &'a regex::Regex,
|
2019-02-13 13:01:28 +00:00
|
|
|
) -> Result<impl Iterator<Item = Result<ReadDirEntry, Error>> + 'a, Error> {
|
|
|
|
Ok(read_subdir(dirfd, path)?.filter_file_name_regex(regex))
|
2019-02-12 13:20:16 +00:00
|
|
|
}
|
2019-02-13 12:51:29 +00:00
|
|
|
|
|
|
|
/// Helper trait to provide a combinators for directory entry iterators.
|
|
|
|
pub trait FileIterOps<T, E>
|
|
|
|
where
|
|
|
|
Self: Sized + Iterator<Item = Result<T, E>>,
|
|
|
|
T: Borrow<dir::Entry>,
|
|
|
|
E: Into<Error> + Send + Sync,
|
|
|
|
{
|
|
|
|
/// Filter by file type. This is more convenient than using the `filter` method alone as this
|
|
|
|
/// also includes error handling and handling of files without a type (via an error).
|
|
|
|
fn filter_file_type(self, ty: dir::Type) -> FileTypeFilter<Self, T, E> {
|
|
|
|
FileTypeFilter { inner: self, ty }
|
|
|
|
}
|
2019-02-13 13:00:48 +00:00
|
|
|
|
|
|
|
/// Filter by file name. Note that file names which aren't valid utf-8 will be treated as if
|
|
|
|
/// they do not match the pattern.
|
|
|
|
fn filter_file_name_regex<'a>(self, regex: &'a Regex) -> FileNameRegexFilter<'a, Self, T, E> {
|
|
|
|
FileNameRegexFilter { inner: self, regex }
|
|
|
|
}
|
2019-02-13 12:51:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl<I, T, E> FileIterOps<T, E> for I
|
|
|
|
where
|
|
|
|
I: Iterator<Item = Result<T, E>>,
|
|
|
|
T: Borrow<dir::Entry>,
|
|
|
|
E: Into<Error> + Send + Sync,
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
/// This filters files from its inner iterator by a file type. Files with no type produce an error.
|
|
|
|
pub struct FileTypeFilter<I, T, E>
|
|
|
|
where
|
|
|
|
I: Iterator<Item = Result<T, E>>,
|
|
|
|
T: Borrow<dir::Entry>,
|
|
|
|
E: Into<Error> + Send + Sync,
|
|
|
|
{
|
|
|
|
inner: I,
|
|
|
|
ty: nix::dir::Type,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<I, T, E> Iterator for FileTypeFilter<I, T, E>
|
|
|
|
where
|
|
|
|
I: Iterator<Item = Result<T, E>>,
|
|
|
|
T: Borrow<dir::Entry>,
|
|
|
|
E: Into<Error> + Send + Sync,
|
|
|
|
{
|
|
|
|
type Item = Result<T, Error>;
|
|
|
|
|
|
|
|
fn next(&mut self) -> Option<Self::Item> {
|
|
|
|
loop {
|
|
|
|
let item = self.inner.next()?.map_err(|e| e.into());
|
|
|
|
match item {
|
|
|
|
Ok(ref entry) => match entry.borrow().file_type() {
|
|
|
|
Some(ty) => {
|
|
|
|
if ty == self.ty {
|
|
|
|
return Some(item);
|
|
|
|
} else {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
None => return Some(Err(format_err!("unable to detect file type"))),
|
|
|
|
},
|
|
|
|
Err(_) => return Some(item),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-02-13 13:00:48 +00:00
|
|
|
/// This filters files by name via a Regex. Files whose file name aren't valid utf-8 are skipped
|
|
|
|
/// silently.
|
|
|
|
pub struct FileNameRegexFilter<'a, I, T, E>
|
|
|
|
where
|
|
|
|
I: Iterator<Item = Result<T, E>>,
|
|
|
|
T: Borrow<dir::Entry>,
|
|
|
|
{
|
|
|
|
inner: I,
|
|
|
|
regex: &'a Regex,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<I, T, E> Iterator for FileNameRegexFilter<'_, I, T, E>
|
|
|
|
where
|
|
|
|
I: Iterator<Item = Result<T, E>>,
|
|
|
|
T: Borrow<dir::Entry>,
|
|
|
|
{
|
|
|
|
type Item = Result<T, E>;
|
|
|
|
|
|
|
|
fn next(&mut self) -> Option<Self::Item> {
|
|
|
|
loop {
|
|
|
|
let item = self.inner.next()?;
|
|
|
|
match item {
|
|
|
|
Ok(ref entry) => {
|
|
|
|
if let Ok(name) = entry.borrow().file_name().to_str() {
|
|
|
|
if self.regex.is_match(name) {
|
|
|
|
return Some(item);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// file did not match regex or isn't valid utf-8
|
|
|
|
continue;
|
|
|
|
},
|
|
|
|
Err(_) => return Some(item),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-05-29 12:34:03 +00:00
|
|
|
|
|
|
|
// /usr/include/linux/fs.h: #define FS_IOC_GETFLAGS _IOR('f', 1, long)
|
|
|
|
// read Linux file system attributes (see man chattr)
|
|
|
|
nix::ioctl_read!(read_attr_fd, b'f', 1, usize);
|
|
|
|
|
|
|
|
// /usr/include/linux/msdos_fs.h: #define FAT_IOCTL_GET_ATTRIBUTES _IOR('r', 0x10, __u32)
|
|
|
|
// read FAT file system attributes
|
|
|
|
nix::ioctl_read!(read_fat_attr_fd, b'r', 0x10, u32);
|
|
|
|
|
|
|
|
// From /usr/include/linux/fs.h
|
|
|
|
// #define FS_IOC_FSGETXATTR _IOR('X', 31, struct fsxattr)
|
|
|
|
// #define FS_IOC_FSSETXATTR _IOW('X', 32, struct fsxattr)
|
|
|
|
nix::ioctl_read!(fs_ioc_fsgetxattr, b'X', 31, FSXAttr);
|
|
|
|
nix::ioctl_write_ptr!(fs_ioc_fssetxattr, b'X', 32, FSXAttr);
|
|
|
|
|
|
|
|
#[repr(C)]
|
|
|
|
#[derive(Debug)]
|
|
|
|
pub struct FSXAttr {
|
|
|
|
pub fsx_xflags: u32,
|
|
|
|
pub fsx_extsize: u32,
|
|
|
|
pub fsx_nextents: u32,
|
|
|
|
pub fsx_projid: u32,
|
|
|
|
pub fsx_cowextsize: u32,
|
|
|
|
pub fsx_pad: [u8; 8],
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Default for FSXAttr {
|
|
|
|
fn default() -> Self {
|
|
|
|
FSXAttr {
|
|
|
|
fsx_xflags: 0u32,
|
|
|
|
fsx_extsize: 0u32,
|
|
|
|
fsx_nextents: 0u32,
|
|
|
|
fsx_projid: 0u32,
|
|
|
|
fsx_cowextsize: 0u32,
|
|
|
|
fsx_pad: [0u8; 8],
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|