2019-08-08 10:49:18 +00:00
|
|
|
//! Low level FUSE implementation for pxar.
|
|
|
|
//!
|
|
|
|
//! Allows to mount the archive as read-only filesystem to inspect its contents.
|
|
|
|
|
2019-09-09 16:27:26 +00:00
|
|
|
use std::collections::HashMap;
|
2019-09-06 09:38:28 +00:00
|
|
|
use std::convert::TryFrom;
|
2019-09-09 16:27:26 +00:00
|
|
|
use std::ffi::{CStr, CString, OsStr};
|
2019-08-08 10:49:18 +00:00
|
|
|
use std::fs::File;
|
2019-11-26 09:45:11 +00:00
|
|
|
use std::io::BufReader;
|
2019-09-09 16:27:31 +00:00
|
|
|
use std::os::unix::ffi::{OsStrExt, OsStringExt};
|
2019-08-08 10:49:18 +00:00
|
|
|
use std::path::Path;
|
2019-08-13 13:37:46 +00:00
|
|
|
use std::sync::Mutex;
|
2019-08-08 10:49:18 +00:00
|
|
|
|
2019-08-22 12:46:23 +00:00
|
|
|
use failure::{bail, format_err, Error};
|
2019-08-08 10:49:18 +00:00
|
|
|
use libc;
|
2019-09-06 09:38:26 +00:00
|
|
|
use libc::{c_char, c_int, c_void, size_t};
|
2019-08-08 10:49:18 +00:00
|
|
|
|
2019-12-06 12:13:18 +00:00
|
|
|
use super::binary_search_tree::search_binary_tree_by;
|
2020-01-16 14:56:41 +00:00
|
|
|
use super::decoder::{Decoder, DirectoryEntry};
|
|
|
|
use super::format_definition::{PxarEntry, PxarGoodbyeItem};
|
2019-08-13 13:37:46 +00:00
|
|
|
|
2019-09-06 09:38:26 +00:00
|
|
|
/// Node ID of the root i-node
|
|
|
|
///
|
|
|
|
/// Offsets in the archive are used as i-node for the fuse implementation, as
|
|
|
|
/// they are unique and enough to reference each item in the pxar archive.
|
|
|
|
/// The only exception to this is the `FUSE_ROOT_ID`, which is defined as 1 by
|
|
|
|
/// the fuse library.
|
|
|
|
/// This is okay since offset 1 is part of the root directory entry header and
|
|
|
|
/// will therefore not occur again, but remapping to the correct offset of 0 is
|
|
|
|
/// required.
|
2019-09-03 12:14:30 +00:00
|
|
|
const FUSE_ROOT_ID: u64 = 1;
|
2019-08-13 13:37:46 +00:00
|
|
|
|
2019-09-06 09:38:27 +00:00
|
|
|
const GOODBYE_ITEM_SIZE: u64 = std::mem::size_of::<PxarGoodbyeItem>() as u64;
|
2019-09-09 16:27:26 +00:00
|
|
|
|
2019-09-19 12:22:42 +00:00
|
|
|
type Offset = u64;
|
2019-08-13 13:37:46 +00:00
|
|
|
/// FFI types for easier readability
|
|
|
|
type Request = *mut c_void;
|
|
|
|
type MutPtr = *mut c_void;
|
|
|
|
type ConstPtr = *const c_void;
|
|
|
|
type StrPtr = *const c_char;
|
2019-09-09 16:27:28 +00:00
|
|
|
type MutStrPtr = *mut c_char;
|
2019-08-13 13:37:46 +00:00
|
|
|
|
2019-09-06 09:38:26 +00:00
|
|
|
#[rustfmt::skip]
|
2019-08-08 10:49:18 +00:00
|
|
|
#[link(name = "fuse3")]
|
|
|
|
extern "C" {
|
2019-09-06 09:38:26 +00:00
|
|
|
fn fuse_session_new(args: Option<&FuseArgs>, oprs: Option<&Operations>, size: size_t, op: ConstPtr) -> MutPtr;
|
2019-08-13 13:37:46 +00:00
|
|
|
fn fuse_set_signal_handlers(session: ConstPtr) -> c_int;
|
|
|
|
fn fuse_remove_signal_handlers(session: ConstPtr);
|
2019-08-08 10:49:18 +00:00
|
|
|
fn fuse_daemonize(foreground: c_int) -> c_int;
|
2019-08-13 13:37:46 +00:00
|
|
|
fn fuse_session_mount(session: ConstPtr, mountpoint: StrPtr) -> c_int;
|
|
|
|
fn fuse_session_unmount(session: ConstPtr);
|
|
|
|
fn fuse_session_loop(session: ConstPtr) -> c_int;
|
2019-08-22 14:39:04 +00:00
|
|
|
fn fuse_session_loop_mt_31(session: ConstPtr, clone_fd: c_int) -> c_int;
|
2019-08-13 13:37:46 +00:00
|
|
|
fn fuse_session_destroy(session: ConstPtr);
|
2019-09-06 09:38:28 +00:00
|
|
|
fn fuse_reply_attr(req: Request, attr: Option<&libc::stat>, timeout: f64) -> c_int;
|
2019-08-13 13:37:46 +00:00
|
|
|
fn fuse_reply_err(req: Request, errno: c_int) -> c_int;
|
2019-09-09 16:27:27 +00:00
|
|
|
fn fuse_reply_open(req: Request, fileinfo: ConstPtr) -> c_int;
|
2019-09-09 16:27:28 +00:00
|
|
|
fn fuse_reply_buf(req: Request, buf: MutStrPtr, size: size_t) -> c_int;
|
2019-09-09 16:27:26 +00:00
|
|
|
fn fuse_reply_entry(req: Request, entry: Option<&EntryParam>) -> c_int;
|
2019-12-06 13:31:19 +00:00
|
|
|
fn fuse_reply_xattr(req: Request, size: size_t) -> c_int;
|
2019-09-09 16:27:31 +00:00
|
|
|
fn fuse_reply_readlink(req: Request, link: StrPtr) -> c_int;
|
2019-08-13 13:37:46 +00:00
|
|
|
fn fuse_req_userdata(req: Request) -> MutPtr;
|
2020-01-10 16:37:33 +00:00
|
|
|
fn fuse_add_direntry_plus(req: Request, buf: MutStrPtr, bufsize: size_t, name: StrPtr, stbuf: Option<&EntryParam>, off: c_int) -> c_int;
|
2019-08-08 10:49:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Command line arguments passed to fuse.
|
|
|
|
#[repr(C)]
|
|
|
|
#[derive(Debug)]
|
|
|
|
struct FuseArgs {
|
|
|
|
argc: c_int,
|
2019-08-13 13:37:46 +00:00
|
|
|
argv: *const StrPtr,
|
2019-08-08 10:49:18 +00:00
|
|
|
allocated: c_int,
|
|
|
|
}
|
|
|
|
|
2019-09-19 12:22:42 +00:00
|
|
|
/// `Context` for callback functions providing the decoder, caches and the
|
|
|
|
/// offset within the archive for the i-node given by the caller.
|
2019-11-26 09:45:11 +00:00
|
|
|
struct Context {
|
|
|
|
decoder: Decoder,
|
2019-09-19 12:22:42 +00:00
|
|
|
ino_offset: Offset,
|
2020-01-16 14:56:41 +00:00
|
|
|
/// The start of each DirectoryEntry is used as inode, used as key for this
|
|
|
|
/// hashmap.
|
2020-01-09 17:11:53 +00:00
|
|
|
///
|
2020-01-16 14:56:41 +00:00
|
|
|
/// This map stores the corresponding end offset, needed to read the
|
|
|
|
/// DirectoryEntry via the Decoder as well as the parent, in order
|
|
|
|
/// to be able to include the parent directory on readdirplus calls.
|
|
|
|
start_end_parent: HashMap<u64, (u64, u64)>,
|
2019-09-19 12:22:42 +00:00
|
|
|
}
|
|
|
|
|
2019-11-26 10:16:46 +00:00
|
|
|
impl Context {
|
|
|
|
/// Lookup the goodbye item identified by `filename` and its corresponding `hash`
|
|
|
|
///
|
|
|
|
/// Updates the goodbye table cache to contain the table for the directory given
|
|
|
|
/// by the i-node in the provided `Context`.
|
|
|
|
/// Search the first matching `hash` in the goodbye table, allowing for a fast
|
|
|
|
/// comparison with the items.
|
|
|
|
/// As there could be a hash collision, the found items filename is then compared
|
|
|
|
/// by seek to the corresponding item in the archive and reading its attributes
|
|
|
|
/// (which the lookup callback needs to do anyway).
|
|
|
|
/// If the filename does not match, the function is called recursively with the
|
|
|
|
/// rest of the goodbye table to lookup the next match.
|
|
|
|
/// The matching items archive offset, entry and payload size are returned.
|
|
|
|
/// If there is no entry with matching `filename` and `hash` a `libc::ENOENT` is
|
|
|
|
/// returned.
|
|
|
|
fn find_goodbye_entry(
|
|
|
|
&mut self,
|
|
|
|
filename: &CStr,
|
|
|
|
hash: u64,
|
2020-01-16 14:56:41 +00:00
|
|
|
) -> Result<(u64, DirectoryEntry), i32> {
|
|
|
|
let (end, _) = *self.start_end_parent
|
|
|
|
.get(&self.ino_offset)
|
|
|
|
.unwrap();
|
2020-01-10 16:37:32 +00:00
|
|
|
let gbt = self.decoder
|
2020-01-16 14:56:41 +00:00
|
|
|
.goodbye_table(None, end)
|
2020-01-10 16:37:32 +00:00
|
|
|
.map_err(|_| libc::EIO)?;
|
2019-12-06 12:53:38 +00:00
|
|
|
let mut start_idx = 0;
|
|
|
|
let mut skip_multiple = 0;
|
|
|
|
loop {
|
|
|
|
// Search for the next goodbye entry with matching hash.
|
|
|
|
let idx = search_binary_tree_by(
|
|
|
|
start_idx,
|
|
|
|
gbt.len(),
|
|
|
|
skip_multiple,
|
|
|
|
|idx| hash.cmp(&gbt[idx].0.hash),
|
|
|
|
).ok_or(libc::ENOENT)?;
|
|
|
|
|
|
|
|
let (_item, start, end) = &gbt[idx];
|
2020-01-16 14:56:41 +00:00
|
|
|
self.start_end_parent.insert(*start, (*end, self.ino_offset));
|
2019-12-06 12:53:38 +00:00
|
|
|
|
2020-01-16 14:56:41 +00:00
|
|
|
let entry = self.decoder
|
|
|
|
.read_directory_entry(*start, *end)
|
|
|
|
.map_err(|_| libc::EIO)?;
|
2019-12-06 12:53:38 +00:00
|
|
|
|
|
|
|
// Possible hash collision, need to check if the found entry is indeed
|
|
|
|
// the filename to lookup.
|
2020-01-16 14:56:41 +00:00
|
|
|
if entry.filename.as_bytes() == filename.to_bytes() {
|
|
|
|
return Ok((*start, entry));
|
2019-11-26 10:16:46 +00:00
|
|
|
}
|
2019-12-06 12:53:38 +00:00
|
|
|
// Hash collision, check the next entry in the goodbye table by starting
|
|
|
|
// from given index but skipping one more match (so hash at index itself).
|
|
|
|
start_idx = idx;
|
|
|
|
skip_multiple = 1;
|
2019-11-26 10:16:46 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-08-08 10:49:18 +00:00
|
|
|
/// `Session` stores a pointer to the session context and is used to mount the
|
|
|
|
/// archive to the given mountpoint.
|
2019-11-26 09:45:11 +00:00
|
|
|
pub struct Session {
|
2019-08-13 13:37:46 +00:00
|
|
|
ptr: MutPtr,
|
2019-08-08 10:49:18 +00:00
|
|
|
verbose: bool,
|
|
|
|
}
|
|
|
|
|
|
|
|
/// `Operations` defines the callback function table of supported operations.
|
|
|
|
#[repr(C)]
|
2019-08-13 13:37:46 +00:00
|
|
|
#[derive(Default)]
|
2019-08-22 12:46:23 +00:00
|
|
|
#[rustfmt::skip]
|
2019-08-08 10:49:18 +00:00
|
|
|
struct Operations {
|
2019-08-13 13:37:46 +00:00
|
|
|
// The order in which the functions are listed matters, as the offset in the
|
|
|
|
// struct defines what function the fuse driver uses.
|
|
|
|
// It should therefore not be altered!
|
|
|
|
init: Option<extern fn(userdata: MutPtr)>,
|
|
|
|
destroy: Option<extern fn(userdata: MutPtr)>,
|
|
|
|
lookup: Option<extern fn(req: Request, parent: u64, name: StrPtr)>,
|
|
|
|
forget: Option<extern fn(req: Request, inode: u64, nlookup: u64)>,
|
|
|
|
getattr: Option<extern fn(req: Request, inode: u64, fileinfo: MutPtr)>,
|
|
|
|
setattr: Option<extern fn(req: Request, inode: u64, attr: MutPtr, to_set: c_int, fileinfo: MutPtr)>,
|
|
|
|
readlink: Option<extern fn(req: Request, inode: u64)>,
|
|
|
|
mknod: Option<extern fn(req: Request, parent: u64, name: StrPtr, mode: c_int, rdev: c_int)>,
|
|
|
|
mkdir: Option<extern fn(req: Request, parent: u64, name: StrPtr, mode: c_int)>,
|
|
|
|
unlink: Option<extern fn(req: Request, parent: u64, name: StrPtr)>,
|
|
|
|
rmdir: Option<extern fn(req: Request, parent: u64, name: StrPtr)>,
|
|
|
|
symlink: Option<extern fn(req: Request, link: StrPtr, parent: u64, name: StrPtr)>,
|
|
|
|
rename: Option<extern fn(req: Request, parent: u64, name: StrPtr, newparent: u64, newname: StrPtr, flags: c_int)>,
|
|
|
|
link: Option<extern fn(req: Request, inode: u64, newparent: u64, newname: StrPtr)>,
|
|
|
|
open: Option<extern fn(req: Request, indoe: u64, fileinfo: MutPtr)>,
|
|
|
|
read: Option<extern fn(req: Request, inode: u64, size: size_t, offset: c_int, fileinfo: MutPtr)>,
|
|
|
|
write: Option<extern fn(req: Request, inode: u64, buffer: StrPtr, size: size_t, offset: c_void, fileinfo: MutPtr)>,
|
|
|
|
flush: Option<extern fn(req: Request, inode: u64, fileinfo: MutPtr)>,
|
|
|
|
release: Option<extern fn(req: Request, inode: u64, fileinfo: MutPtr)>,
|
|
|
|
fsync: Option<extern fn(req: Request, inode: u64, datasync: c_int, fileinfo: MutPtr)>,
|
|
|
|
opendir: Option<extern fn(req: Request, inode: u64, fileinfo: MutPtr)>,
|
|
|
|
readdir: Option<extern fn(req: Request, inode: u64, size: size_t, offset: c_int, fileinfo: MutPtr)>,
|
|
|
|
releasedir: Option<extern fn(req: Request, inode: u64, fileinfo: MutPtr)>,
|
|
|
|
fsyncdir: Option<extern fn(req: Request, inode: u64, datasync: c_int, fileinfo: MutPtr)>,
|
|
|
|
statfs: Option<extern fn(req: Request, inode: u64)>,
|
|
|
|
setxattr: Option<extern fn(req: Request, inode: u64, name: StrPtr, value: StrPtr, size: size_t, flags: c_int)>,
|
|
|
|
getxattr: Option<extern fn(req: Request, inode: u64, name: StrPtr, size: size_t)>,
|
|
|
|
listxattr: Option<extern fn(req: Request, inode: u64, size: size_t)>,
|
|
|
|
removexattr: Option<extern fn(req: Request, inode: u64, name: StrPtr)>,
|
|
|
|
access: Option<extern fn(req: Request, inode: u64, mask: i32)>,
|
|
|
|
create: Option<extern fn(req: Request, parent: u64, name: StrPtr, mode: c_int, fileinfo: MutPtr)>,
|
|
|
|
getlk: Option<extern fn(req: Request, inode: u64, fileinfo: MutPtr, lock: MutPtr)>,
|
|
|
|
setlk: Option<extern fn(req: Request, inode: u64, fileinfo: MutPtr, lock: MutPtr, sleep: c_int)>,
|
|
|
|
bmap: Option<extern fn(req: Request, inode: u64, blocksize: size_t, idx: u64)>,
|
|
|
|
ioctl: Option<extern fn(req: Request, inode: u64, cmd: c_int, arg: MutPtr, fileinfo: MutPtr, flags: c_int, in_buf: ConstPtr, in_bufsz: size_t, out_bufsz: size_t)>,
|
|
|
|
poll: Option<extern fn(req: Request, inode: u64, fileinfo: MutPtr, pollhandle: MutPtr)>,
|
|
|
|
write_buf: Option<extern fn(req: Request, inode: u64, bufv: MutPtr, offset: c_int, fileinfo: MutPtr)>,
|
|
|
|
retrieve_reply: Option<extern fn(req: Request, cookie: ConstPtr, inode: u64, offset: c_int, bufv: MutPtr)>,
|
|
|
|
forget_multi: Option<extern fn(req: Request, count: size_t, forgets: MutPtr)>,
|
|
|
|
flock: Option<extern fn(req: Request, inode: u64, fileinfo: MutPtr, op: c_int)>,
|
|
|
|
fallocate: Option<extern fn(req: Request, inode: u64, mode: c_int, offset: c_int, length: c_int, fileinfo: MutPtr)>,
|
|
|
|
readdirplus: Option<extern fn(req: Request, inode: u64, size: size_t, offset: c_int, fileinfo: MutPtr)>,
|
|
|
|
copy_file_range: Option<extern fn(req: Request, ino_in: u64, off_in: c_int, fi_in: MutPtr, ino_out: u64, off_out: c_int, fi_out: MutPtr, len: size_t, flags: c_int)>,
|
2019-08-08 10:49:18 +00:00
|
|
|
}
|
|
|
|
|
2019-11-26 09:45:11 +00:00
|
|
|
|
|
|
|
impl Session {
|
|
|
|
|
2019-11-26 08:56:48 +00:00
|
|
|
/// Create a new low level fuse session.
|
|
|
|
///
|
|
|
|
/// `Session` is created using the provided mount options and sets the
|
|
|
|
/// default signal handlers.
|
|
|
|
/// Options have to be provided as comma separated OsStr, e.g.
|
|
|
|
/// ("ro,default_permissions").
|
2019-11-26 09:56:41 +00:00
|
|
|
pub fn from_path(archive_path: &Path, options: &OsStr, verbose: bool) -> Result<Self, Error> {
|
2019-11-26 08:56:48 +00:00
|
|
|
let file = File::open(archive_path)?;
|
|
|
|
let reader = BufReader::new(file);
|
|
|
|
let decoder = Decoder::new(reader)?;
|
2019-11-26 10:04:46 +00:00
|
|
|
Self::new(decoder, options, verbose)
|
2019-11-26 08:56:48 +00:00
|
|
|
}
|
|
|
|
|
2019-11-26 09:56:41 +00:00
|
|
|
/// Create a new low level fuse session using the given `Decoder`.
|
|
|
|
///
|
|
|
|
/// `Session` is created using the provided mount options and sets the
|
|
|
|
/// default signal handlers.
|
|
|
|
/// Options have to be provided as comma separated OsStr, e.g.
|
|
|
|
/// ("ro,default_permissions").
|
2020-01-10 16:37:32 +00:00
|
|
|
pub fn new(decoder: Decoder, options: &OsStr, verbose: bool) -> Result<Self, Error> {
|
2019-11-26 09:56:41 +00:00
|
|
|
let args = Self::setup_args(options, verbose)?;
|
|
|
|
let oprs = Self::setup_callbacks();
|
2020-01-16 14:56:41 +00:00
|
|
|
let mut map = HashMap::new();
|
|
|
|
// Insert entry for the root directory, with itself as parent.
|
|
|
|
map.insert(0, (decoder.root_end_offset(), 0));
|
2019-08-08 10:49:18 +00:00
|
|
|
|
2019-09-19 12:22:42 +00:00
|
|
|
let ctx = Context {
|
|
|
|
decoder,
|
|
|
|
ino_offset: 0,
|
2020-01-16 14:56:41 +00:00
|
|
|
start_end_parent: map,
|
2019-09-19 12:22:42 +00:00
|
|
|
};
|
2019-11-26 10:04:46 +00:00
|
|
|
|
2019-09-19 12:22:42 +00:00
|
|
|
let session_ctx = Box::new(Mutex::new(ctx));
|
2019-09-19 14:33:06 +00:00
|
|
|
let arg_ptrs: Vec<_> = args.iter().map(|opt| opt.as_ptr()).collect();
|
|
|
|
let fuse_args = FuseArgs {
|
|
|
|
argc: arg_ptrs.len() as i32,
|
|
|
|
argv: arg_ptrs.as_ptr(),
|
|
|
|
allocated: 0,
|
|
|
|
};
|
2019-08-22 12:46:23 +00:00
|
|
|
let session_ptr = unsafe {
|
|
|
|
fuse_session_new(
|
2019-09-19 14:33:06 +00:00
|
|
|
Some(&fuse_args),
|
2019-09-06 09:38:26 +00:00
|
|
|
Some(&oprs),
|
2019-08-22 12:46:23 +00:00
|
|
|
std::mem::size_of::<Operations>(),
|
2019-09-19 12:22:42 +00:00
|
|
|
// Ownership of session_ctx is passed to the session here.
|
2019-08-22 12:46:23 +00:00
|
|
|
// It has to be reclaimed before dropping the session to free
|
2019-09-19 12:22:42 +00:00
|
|
|
// the `Context` and close the underlying file. This is done inside
|
2019-08-22 12:46:23 +00:00
|
|
|
// the destroy callback function.
|
2019-09-19 12:22:42 +00:00
|
|
|
Box::into_raw(session_ctx) as ConstPtr,
|
2019-08-22 12:46:23 +00:00
|
|
|
)
|
|
|
|
};
|
2019-08-08 10:49:18 +00:00
|
|
|
|
|
|
|
if session_ptr.is_null() {
|
|
|
|
bail!("error while creating new fuse session");
|
|
|
|
}
|
|
|
|
|
|
|
|
if unsafe { fuse_set_signal_handlers(session_ptr) } != 0 {
|
|
|
|
bail!("error while setting signal handlers");
|
|
|
|
}
|
|
|
|
|
2019-11-26 10:04:46 +00:00
|
|
|
Ok(Self { ptr: session_ptr, verbose })
|
|
|
|
}
|
|
|
|
|
|
|
|
fn setup_args(options: &OsStr, verbose: bool) -> Result<Vec<CString>, Error> {
|
|
|
|
// First argument should be the executable name
|
|
|
|
let mut arguments = vec![
|
|
|
|
CString::new("pxar-mount").unwrap(),
|
|
|
|
CString::new("-o").unwrap(),
|
|
|
|
CString::new(options.as_bytes())?,
|
|
|
|
];
|
|
|
|
if verbose {
|
|
|
|
arguments.push(CString::new("--debug").unwrap());
|
|
|
|
}
|
|
|
|
|
|
|
|
Ok(arguments)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn setup_callbacks() -> Operations {
|
|
|
|
// Register the callback functions for the session
|
|
|
|
let mut oprs = Operations::default();
|
2019-11-26 10:08:55 +00:00
|
|
|
oprs.init = Some(Self::init);
|
|
|
|
oprs.destroy = Some(Self::destroy);
|
2019-11-26 10:04:46 +00:00
|
|
|
oprs.lookup = Some(Self::lookup);
|
|
|
|
oprs.getattr = Some(Self::getattr);
|
|
|
|
oprs.readlink = Some(Self::readlink);
|
|
|
|
oprs.open = Some(Self::open);
|
|
|
|
oprs.read = Some(Self::read);
|
|
|
|
oprs.opendir = Some(Self::opendir);
|
2019-12-06 12:53:38 +00:00
|
|
|
oprs.releasedir = Some(Self::releasedir);
|
2019-12-06 13:31:19 +00:00
|
|
|
oprs.getxattr = Some(Self::getxattr);
|
|
|
|
oprs.listxattr = Some(Self::listxattr);
|
2020-01-10 16:37:33 +00:00
|
|
|
oprs.readdirplus = Some(Self::readdirplus);
|
2019-11-26 10:04:46 +00:00
|
|
|
oprs
|
2019-08-08 10:49:18 +00:00
|
|
|
}
|
|
|
|
|
2019-09-06 09:38:26 +00:00
|
|
|
/// Mount the filesystem on the given mountpoint.
|
|
|
|
///
|
2019-08-08 10:49:18 +00:00
|
|
|
/// Actually mount the filesystem for this session on the provided mountpoint
|
|
|
|
/// and daemonize process.
|
2019-09-19 14:33:07 +00:00
|
|
|
pub fn mount(&mut self, mountpoint: &Path, deamonize: bool) -> Result<(), Error> {
|
2019-08-08 10:49:18 +00:00
|
|
|
if self.verbose {
|
|
|
|
println!("Mounting archive to {:#?}", mountpoint);
|
|
|
|
}
|
|
|
|
let mountpoint = mountpoint.canonicalize()?;
|
|
|
|
let path_cstr = CString::new(mountpoint.as_os_str().as_bytes())
|
|
|
|
.map_err(|err| format_err!("invalid mountpoint - {}", err))?;
|
|
|
|
if unsafe { fuse_session_mount(self.ptr, path_cstr.as_ptr()) } != 0 {
|
|
|
|
bail!("mounting on {:#?} failed", mountpoint);
|
|
|
|
}
|
|
|
|
|
2019-09-19 14:33:07 +00:00
|
|
|
// Send process to background if deamonize is set
|
|
|
|
if deamonize && unsafe { fuse_daemonize(0) } != 0 {
|
2019-08-08 10:49:18 +00:00
|
|
|
bail!("could not send process to background");
|
|
|
|
}
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Execute session loop which handles requests from kernel.
|
2019-08-22 14:39:04 +00:00
|
|
|
///
|
|
|
|
/// The multi_threaded flag controls if the session loop runs in
|
2019-09-06 09:38:26 +00:00
|
|
|
/// single-threaded or multi-threaded mode.
|
|
|
|
/// Single-threaded mode is intended for debugging only.
|
2019-08-22 14:39:04 +00:00
|
|
|
pub fn run_loop(&mut self, multi_threaded: bool) -> Result<(), Error> {
|
2019-08-08 10:49:18 +00:00
|
|
|
if self.verbose {
|
|
|
|
println!("Executing fuse session loop");
|
|
|
|
}
|
2019-08-22 14:39:04 +00:00
|
|
|
let result = match multi_threaded {
|
|
|
|
true => unsafe { fuse_session_loop_mt_31(self.ptr, 1) },
|
|
|
|
false => unsafe { fuse_session_loop(self.ptr) },
|
|
|
|
};
|
2019-08-08 10:49:18 +00:00
|
|
|
if result < 0 {
|
|
|
|
bail!("fuse session loop exited with - {}", result);
|
|
|
|
}
|
|
|
|
if result > 0 {
|
2019-09-06 09:38:26 +00:00
|
|
|
eprintln!("fuse session loop received signal - {}", result);
|
2019-08-08 10:49:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
2019-11-26 08:56:48 +00:00
|
|
|
|
|
|
|
/// Creates a context providing an exclusive mutable reference to the `Context`.
|
|
|
|
///
|
|
|
|
/// Each callback function needing access to the `Context` can easily get an
|
|
|
|
/// exclusive handle by running the code inside this context.
|
|
|
|
/// Responses with error code can easily be generated by returning with the
|
|
|
|
/// error code.
|
|
|
|
/// The error code will be used to reply to libfuse.
|
|
|
|
fn run_in_context<F>(req: Request, inode: u64, code: F)
|
|
|
|
where
|
2019-11-26 09:45:11 +00:00
|
|
|
F: FnOnce(&mut Context) -> Result<(), i32>,
|
2019-11-26 08:56:48 +00:00
|
|
|
{
|
|
|
|
let boxed_ctx = unsafe {
|
2019-11-26 09:45:11 +00:00
|
|
|
let ptr = fuse_req_userdata(req) as *mut Mutex<Context>;
|
2019-11-26 08:56:48 +00:00
|
|
|
Box::from_raw(ptr)
|
|
|
|
};
|
|
|
|
let result = boxed_ctx
|
|
|
|
.lock()
|
|
|
|
.map(|mut ctx| {
|
|
|
|
ctx.ino_offset = match inode {
|
2020-01-16 14:56:41 +00:00
|
|
|
FUSE_ROOT_ID => 0,
|
2019-11-26 08:56:48 +00:00
|
|
|
_ => inode,
|
|
|
|
};
|
|
|
|
code(&mut ctx)
|
|
|
|
})
|
|
|
|
.unwrap_or(Err(libc::EIO));
|
|
|
|
|
|
|
|
if let Err(err) = result {
|
|
|
|
unsafe {
|
|
|
|
let _res = fuse_reply_err(req, err);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Release ownership of boxed context, do not drop it.
|
|
|
|
let _ = Box::into_raw(boxed_ctx);
|
|
|
|
}
|
|
|
|
|
2019-11-26 10:08:55 +00:00
|
|
|
/// Callback functions for fuse kernel driver.
|
|
|
|
extern "C" fn init(_decoder: MutPtr) {
|
|
|
|
// Notting to do here for now
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Cleanup the userdata created while creating the session, which is the `Context`
|
|
|
|
extern "C" fn destroy(ctx: MutPtr) {
|
|
|
|
// Get ownership of the `Context` and drop it when Box goes out of scope.
|
|
|
|
unsafe { Box::from_raw(ctx) };
|
|
|
|
}
|
|
|
|
|
2019-11-26 08:56:48 +00:00
|
|
|
/// Lookup `name` in the directory referenced by `parent` i-node.
|
|
|
|
///
|
|
|
|
/// Inserts also the child and parent file offset in the hashmap to quickly
|
|
|
|
/// obtain the parent offset based on the child offset.
|
|
|
|
/// Caches goodbye table of parent and attributes of child, if found.
|
|
|
|
extern "C" fn lookup(req: Request, parent: u64, name: StrPtr) {
|
|
|
|
let filename = unsafe { CStr::from_ptr(name) };
|
|
|
|
let hash = super::format_definition::compute_goodbye_hash(filename.to_bytes());
|
|
|
|
|
2020-01-10 16:37:32 +00:00
|
|
|
Self::run_in_context(req, parent, |ctx| {
|
2020-01-16 14:56:41 +00:00
|
|
|
let (offset, entry) = ctx.find_goodbye_entry(&filename, hash)?;
|
2019-11-26 08:56:48 +00:00
|
|
|
|
|
|
|
let e = EntryParam {
|
2020-01-16 14:56:41 +00:00
|
|
|
inode: offset,
|
2019-11-26 08:56:48 +00:00
|
|
|
generation: 1,
|
2020-01-16 14:56:41 +00:00
|
|
|
attr: stat(offset, &entry.entry, entry.size)?,
|
2019-11-26 08:56:48 +00:00
|
|
|
attr_timeout: std::f64::MAX,
|
|
|
|
entry_timeout: std::f64::MAX,
|
|
|
|
};
|
|
|
|
|
|
|
|
let _res = unsafe { fuse_reply_entry(req, Some(&e)) };
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
extern "C" fn getattr(req: Request, inode: u64, _fileinfo: MutPtr) {
|
|
|
|
Self::run_in_context(req, inode, |ctx| {
|
2020-01-10 16:37:32 +00:00
|
|
|
let (_, entry, _, payload_size) = ctx
|
2019-11-26 08:56:48 +00:00
|
|
|
.decoder
|
|
|
|
.attributes(ctx.ino_offset)
|
|
|
|
.map_err(|_| libc::EIO)?;
|
|
|
|
let attr = stat(inode, &entry, payload_size)?;
|
|
|
|
let _res = unsafe {
|
|
|
|
// Since fs is read-only, the timeout can be max.
|
|
|
|
let timeout = std::f64::MAX;
|
|
|
|
fuse_reply_attr(req, Some(&attr), timeout)
|
|
|
|
};
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
extern "C" fn readlink(req: Request, inode: u64) {
|
|
|
|
Self::run_in_context(req, inode, |ctx| {
|
|
|
|
let (target, _) = ctx
|
|
|
|
.decoder
|
|
|
|
.read_link(ctx.ino_offset)
|
|
|
|
.map_err(|_| libc::EIO)?;
|
|
|
|
let link = CString::new(target.into_os_string().into_vec()).map_err(|_| libc::EIO)?;
|
|
|
|
let _ret = unsafe { fuse_reply_readlink(req, link.as_ptr()) };
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
extern "C" fn open(req: Request, inode: u64, fileinfo: MutPtr) {
|
|
|
|
Self::run_in_context(req, inode, |ctx| {
|
|
|
|
ctx.decoder.open(ctx.ino_offset).map_err(|_| libc::ENOENT)?;
|
|
|
|
let _ret = unsafe { fuse_reply_open(req, fileinfo) };
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
extern "C" fn read(req: Request, inode: u64, size: size_t, offset: c_int, _fileinfo: MutPtr) {
|
|
|
|
Self::run_in_context(req, inode, |ctx| {
|
|
|
|
let mut data = ctx
|
|
|
|
.decoder
|
|
|
|
.read(ctx.ino_offset, size, offset as u64)
|
|
|
|
.map_err(|_| libc::EIO)?;
|
|
|
|
|
|
|
|
let _res = unsafe {
|
|
|
|
let len = data.len();
|
|
|
|
let dptr = data.as_mut_ptr() as *mut c_char;
|
|
|
|
fuse_reply_buf(req, dptr, len)
|
|
|
|
};
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Open the directory referenced by the given inode for reading.
|
|
|
|
///
|
|
|
|
/// This simply checks if the inode references a valid directory, no internal
|
|
|
|
/// state identifies the directory as opened.
|
|
|
|
extern "C" fn opendir(req: Request, inode: u64, fileinfo: MutPtr) {
|
2020-01-10 16:37:32 +00:00
|
|
|
Self::run_in_context(req, inode, |_ctx| {
|
2019-12-06 12:53:38 +00:00
|
|
|
let _ret = unsafe { fuse_reply_open(req, fileinfo as MutPtr) };
|
2019-11-26 08:56:48 +00:00
|
|
|
|
|
|
|
Ok(())
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2020-01-10 16:37:33 +00:00
|
|
|
/// Read and return the entries of the directory referenced by i-node.
|
|
|
|
///
|
|
|
|
/// Replies to the request with the entries fitting into a buffer of length
|
|
|
|
/// `size`, as requested by the caller.
|
|
|
|
/// `offset` identifies the start index of entries to return. This is used on
|
|
|
|
/// repeated calls, occurring if not all entries fitted into the buffer.
|
|
|
|
extern "C" fn readdirplus(req: Request, inode: u64, size: size_t, offset: c_int, _fileinfo: MutPtr) {
|
|
|
|
let offset = offset as usize;
|
|
|
|
|
|
|
|
Self::run_in_context(req, inode, |ctx| {
|
2020-01-16 14:56:41 +00:00
|
|
|
let (end, _) = *ctx.start_end_parent
|
|
|
|
.get(&ctx.ino_offset)
|
|
|
|
.unwrap();
|
2020-01-10 16:37:33 +00:00
|
|
|
let gbt = ctx.decoder
|
2020-01-16 14:56:41 +00:00
|
|
|
.goodbye_table(None, end)
|
2020-01-10 16:37:33 +00:00
|
|
|
.map_err(|_| libc::EIO)?;
|
|
|
|
let n_entries = gbt.len();
|
|
|
|
let mut buf = ReplyBuf::new(req, size, offset);
|
|
|
|
|
|
|
|
if offset < n_entries {
|
|
|
|
for e in gbt[offset..gbt.len()].iter() {
|
2020-01-16 14:56:41 +00:00
|
|
|
ctx.start_end_parent.insert(e.1, (e.2, ctx.ino_offset));
|
|
|
|
let entry = ctx.decoder
|
|
|
|
.read_directory_entry(e.1, e.2)
|
|
|
|
.map_err(|_| libc::EIO)?;
|
|
|
|
let name = CString::new(entry.filename.as_bytes())
|
|
|
|
.map_err(|_| libc::EIO)?;
|
2020-01-10 16:37:33 +00:00
|
|
|
let attr = EntryParam {
|
2020-01-16 14:56:41 +00:00
|
|
|
inode: e.1,
|
2020-01-10 16:37:33 +00:00
|
|
|
generation: 1,
|
2020-01-16 14:56:41 +00:00
|
|
|
attr: stat(e.1, &entry.entry, entry.size).map_err(|_| libc::EIO)?,
|
2020-01-10 16:37:33 +00:00
|
|
|
attr_timeout: std::f64::MAX,
|
|
|
|
entry_timeout: std::f64::MAX,
|
|
|
|
};
|
2020-01-15 12:11:42 +00:00
|
|
|
match buf.fill(&name, &attr) {
|
2020-01-10 16:37:33 +00:00
|
|
|
Ok(ReplyBufState::Okay) => {}
|
|
|
|
Ok(ReplyBufState::Overfull) => return buf.reply_filled(),
|
|
|
|
Err(_) => return Err(libc::EIO),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Add current directory entry "."
|
|
|
|
if offset <= n_entries {
|
2020-01-16 14:56:41 +00:00
|
|
|
let entry = if ctx.ino_offset == 0 {
|
|
|
|
ctx.decoder
|
|
|
|
.root()
|
|
|
|
.map_err(|_| libc::EIO)?
|
|
|
|
} else {
|
|
|
|
ctx.decoder
|
|
|
|
.read_directory_entry(ctx.ino_offset, end)
|
|
|
|
.map_err(|_| libc::EIO)?
|
|
|
|
};
|
2020-01-10 16:37:33 +00:00
|
|
|
// No need to calculate i-node for current dir, since it is given as parameter
|
|
|
|
let name = CString::new(".").unwrap();
|
|
|
|
let attr = EntryParam {
|
|
|
|
inode: inode,
|
|
|
|
generation: 1,
|
2020-01-16 14:56:41 +00:00
|
|
|
attr: stat(inode, &entry.entry, entry.size).map_err(|_| libc::EIO)?,
|
2020-01-10 16:37:33 +00:00
|
|
|
attr_timeout: std::f64::MAX,
|
|
|
|
entry_timeout: std::f64::MAX,
|
|
|
|
};
|
2020-01-15 12:11:42 +00:00
|
|
|
match buf.fill(&name, &attr) {
|
2020-01-10 16:37:33 +00:00
|
|
|
Ok(ReplyBufState::Okay) => {}
|
|
|
|
Ok(ReplyBufState::Overfull) => return buf.reply_filled(),
|
|
|
|
Err(_) => return Err(libc::EIO),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Add parent directory entry ".."
|
|
|
|
if offset <= n_entries + 1 {
|
2020-01-16 14:56:41 +00:00
|
|
|
let (_, parent) = *ctx.start_end_parent
|
|
|
|
.get(&ctx.ino_offset)
|
|
|
|
.unwrap();
|
|
|
|
let entry = if parent == 0 {
|
|
|
|
ctx.decoder
|
|
|
|
.root()
|
|
|
|
.map_err(|_| libc::EIO)?
|
2020-01-10 16:37:33 +00:00
|
|
|
} else {
|
2020-01-16 14:56:41 +00:00
|
|
|
let (end, _) = *ctx.start_end_parent
|
|
|
|
.get(&parent)
|
|
|
|
.unwrap();
|
|
|
|
ctx.decoder
|
|
|
|
.read_directory_entry(parent, end)
|
|
|
|
.map_err(|_| libc::EIO)?
|
2020-01-10 16:37:33 +00:00
|
|
|
};
|
2020-01-16 14:56:41 +00:00
|
|
|
let inode = if parent == 0 { FUSE_ROOT_ID } else { parent };
|
2020-01-10 16:37:33 +00:00
|
|
|
let name = CString::new("..").unwrap();
|
|
|
|
let attr = EntryParam {
|
2020-01-16 14:56:41 +00:00
|
|
|
inode: inode,
|
2020-01-10 16:37:33 +00:00
|
|
|
generation: 1,
|
2020-01-16 14:56:41 +00:00
|
|
|
attr: stat(inode, &entry.entry, entry.size).map_err(|_| libc::EIO)?,
|
2020-01-10 16:37:33 +00:00
|
|
|
attr_timeout: std::f64::MAX,
|
|
|
|
entry_timeout: std::f64::MAX,
|
|
|
|
};
|
2020-01-15 12:11:42 +00:00
|
|
|
match buf.fill(&name, &attr) {
|
2019-11-26 08:56:48 +00:00
|
|
|
Ok(ReplyBufState::Okay) => {}
|
|
|
|
Ok(ReplyBufState::Overfull) => return buf.reply_filled(),
|
|
|
|
Err(_) => return Err(libc::EIO),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
buf.reply_filled()
|
|
|
|
});
|
|
|
|
}
|
2019-12-06 12:53:38 +00:00
|
|
|
|
|
|
|
extern "C" fn releasedir(req: Request, inode: u64, _fileinfo: MutPtr) {
|
2020-01-10 16:37:32 +00:00
|
|
|
Self::run_in_context(req, inode, |_ctx| {
|
2019-12-06 12:53:38 +00:00
|
|
|
Ok(())
|
|
|
|
});
|
|
|
|
}
|
2019-12-06 13:31:19 +00:00
|
|
|
|
|
|
|
/// Get the value of the extended attribute of `inode` identified by `name`.
|
|
|
|
extern "C" fn getxattr(req: Request, inode: u64, name: StrPtr, size: size_t) {
|
|
|
|
let name = unsafe { CStr::from_ptr(name) };
|
|
|
|
|
|
|
|
Self::run_in_context(req, inode, |ctx| {
|
|
|
|
let (_, _, xattrs, _) = ctx
|
|
|
|
.decoder
|
|
|
|
.attributes(ctx.ino_offset)
|
|
|
|
.map_err(|_| libc::EIO)?;
|
|
|
|
// security.capability is stored separately, check it first
|
|
|
|
if name.to_bytes() == b"security.capability" {
|
|
|
|
match xattrs.fcaps {
|
|
|
|
None => return Err(libc::ENODATA),
|
|
|
|
Some(mut fcaps) => return Self::xattr_reply_value(req, &mut fcaps.data, size),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for mut xattr in xattrs.xattrs {
|
|
|
|
if name.to_bytes() == xattr.name.as_slice() {
|
|
|
|
return Self::xattr_reply_value(req, &mut xattr.value, size);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Err(libc::ENODATA)
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Get a list of the extended attribute of `inode`.
|
|
|
|
extern "C" fn listxattr(req: Request, inode: u64, size: size_t) {
|
|
|
|
Self::run_in_context(req, inode, |ctx| {
|
|
|
|
let (_, _, xattrs, _) = ctx
|
|
|
|
.decoder
|
|
|
|
.attributes(ctx.ino_offset)
|
|
|
|
.map_err(|_| libc::EIO)?;
|
|
|
|
let mut buffer = Vec::new();
|
|
|
|
if xattrs.fcaps.is_some() {
|
|
|
|
buffer.extend_from_slice(b"security.capability\0");
|
|
|
|
}
|
|
|
|
for mut xattr in xattrs.xattrs {
|
|
|
|
buffer.append(&mut xattr.name);
|
|
|
|
buffer.push(b'\0');
|
|
|
|
}
|
|
|
|
Self::xattr_reply_value(req, &mut buffer, size)
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Helper function used to respond to get- and listxattr calls in order to
|
|
|
|
/// de-duplicate code.
|
|
|
|
fn xattr_reply_value(req: Request, value: &mut Vec<u8>, size: size_t) -> Result<(), i32> {
|
|
|
|
let len = value.len();
|
|
|
|
|
|
|
|
if size == 0 {
|
|
|
|
// reply the needed buffer size to fit value
|
|
|
|
let _res = unsafe { fuse_reply_xattr(req, len) };
|
|
|
|
} else if size < len {
|
|
|
|
// value does not fit into requested buffer size
|
|
|
|
return Err(libc::ERANGE);
|
|
|
|
} else {
|
|
|
|
// value fits into requested buffer size, send value
|
|
|
|
let _res = unsafe {
|
|
|
|
let vptr = value.as_mut_ptr() as *mut c_char;
|
|
|
|
fuse_reply_buf(req, vptr, len)
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
2019-08-08 10:49:18 +00:00
|
|
|
}
|
|
|
|
|
2019-11-26 09:45:11 +00:00
|
|
|
impl Drop for Session {
|
2019-08-08 10:49:18 +00:00
|
|
|
fn drop(&mut self) {
|
|
|
|
unsafe {
|
|
|
|
fuse_session_unmount(self.ptr);
|
|
|
|
fuse_remove_signal_handlers(self.ptr);
|
|
|
|
fuse_session_destroy(self.ptr);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-09-10 15:14:27 +00:00
|
|
|
/// Return the correct offset for the item based on its `PxarEntry` mode
|
|
|
|
///
|
|
|
|
/// For directories, the offset for the corresponding `GOODBYE_TAIL_MARKER`
|
|
|
|
/// is returned.
|
|
|
|
/// If it is not a directory, the start offset is returned.
|
|
|
|
fn find_offset(entry: &PxarEntry, start: u64, end: u64) -> u64 {
|
|
|
|
if (entry.mode as u32 & libc::S_IFMT) == libc::S_IFDIR {
|
|
|
|
end - GOODBYE_ITEM_SIZE
|
|
|
|
} else {
|
|
|
|
start
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Calculate the i-node based on the given `offset`
|
|
|
|
///
|
|
|
|
/// This maps the `offset` to the correct i-node, which is simply the offset.
|
|
|
|
/// The root directory is an exception, as it has per definition `FUSE_ROOT_ID`.
|
|
|
|
/// `root_end` is the end offset of the root directory (archive end).
|
|
|
|
fn calculate_inode(offset: u64, root_end: u64) -> u64 {
|
|
|
|
// check for root offset which has to be mapped to `FUSE_ROOT_ID`
|
|
|
|
if offset == root_end - GOODBYE_ITEM_SIZE {
|
|
|
|
FUSE_ROOT_ID
|
|
|
|
} else {
|
|
|
|
offset
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-09-09 16:27:26 +00:00
|
|
|
/// FUSE entry for fuse_reply_entry in lookup callback
|
|
|
|
#[repr(C)]
|
|
|
|
struct EntryParam {
|
|
|
|
inode: u64,
|
|
|
|
generation: u64,
|
|
|
|
attr: libc::stat,
|
|
|
|
attr_timeout: f64,
|
|
|
|
entry_timeout: f64,
|
|
|
|
}
|
|
|
|
|
2019-09-10 15:14:27 +00:00
|
|
|
/// Create a `libc::stat` with the provided i-node, entry and payload size
|
|
|
|
fn stat(inode: u64, entry: &PxarEntry, payload_size: u64) -> Result<libc::stat, i32> {
|
2019-09-06 09:38:28 +00:00
|
|
|
let nlink = match (entry.mode as u32) & libc::S_IFMT {
|
|
|
|
libc::S_IFDIR => 2,
|
|
|
|
_ => 1,
|
|
|
|
};
|
2019-10-16 15:13:58 +00:00
|
|
|
let time = i64::try_from(entry.mtime).map_err(|_| libc::EIO)?;
|
|
|
|
let sec = time / 1_000_000_000;
|
|
|
|
let nsec = time % 1_000_000_000;
|
2019-09-06 09:38:28 +00:00
|
|
|
|
|
|
|
let mut attr: libc::stat = unsafe { std::mem::zeroed() };
|
|
|
|
attr.st_ino = inode;
|
|
|
|
attr.st_nlink = nlink;
|
|
|
|
attr.st_mode = u32::try_from(entry.mode).map_err(|_| libc::EIO)?;
|
|
|
|
attr.st_size = i64::try_from(payload_size).map_err(|_| libc::EIO)?;
|
|
|
|
attr.st_uid = entry.uid;
|
|
|
|
attr.st_gid = entry.gid;
|
2019-10-16 15:13:58 +00:00
|
|
|
attr.st_atime = sec;
|
|
|
|
attr.st_atime_nsec = nsec;
|
|
|
|
attr.st_mtime = sec;
|
|
|
|
attr.st_mtime_nsec = nsec;
|
|
|
|
attr.st_ctime = sec;
|
|
|
|
attr.st_ctime_nsec = nsec;
|
2019-09-06 09:38:28 +00:00
|
|
|
|
2019-09-10 15:14:27 +00:00
|
|
|
Ok(attr)
|
2019-09-06 09:38:28 +00:00
|
|
|
}
|
|
|
|
|
2019-09-10 15:33:15 +00:00
|
|
|
/// State of ReplyBuf after last add_entry call
|
|
|
|
enum ReplyBufState {
|
|
|
|
/// Entry was successfully added to ReplyBuf
|
2019-09-09 16:27:32 +00:00
|
|
|
Okay,
|
2019-09-10 15:33:15 +00:00
|
|
|
/// Entry did not fit into ReplyBuf, was not added
|
2019-09-09 16:27:32 +00:00
|
|
|
Overfull,
|
|
|
|
}
|
|
|
|
|
2020-01-15 12:11:42 +00:00
|
|
|
/// Used to correctly fill and reply the buffer for the readdirplus callback
|
2019-09-10 15:33:15 +00:00
|
|
|
struct ReplyBuf {
|
2019-09-09 16:27:32 +00:00
|
|
|
/// internal buffer holding the binary data
|
|
|
|
buffer: Vec<u8>,
|
|
|
|
/// offset up to which the buffer is filled already
|
|
|
|
filled: usize,
|
|
|
|
/// fuse request the buffer is used to reply to
|
|
|
|
req: Request,
|
2020-01-15 12:11:42 +00:00
|
|
|
/// index of the next item, telling from were to start on the next readdirplus
|
|
|
|
/// callback in case not everything fitted in the buffer on the first reply.
|
2019-09-09 16:27:32 +00:00
|
|
|
next: usize,
|
|
|
|
}
|
|
|
|
|
2019-09-10 15:33:15 +00:00
|
|
|
impl ReplyBuf {
|
|
|
|
/// Create a new empty `ReplyBuf` of `size` with element counting index at `next`.
|
2019-09-09 16:27:32 +00:00
|
|
|
fn new(req: Request, size: usize, next: usize) -> Self {
|
|
|
|
Self {
|
|
|
|
buffer: vec![0; size],
|
|
|
|
filled: 0,
|
|
|
|
req,
|
|
|
|
next,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Reply to the `Request` with the filled buffer
|
|
|
|
fn reply_filled(&mut self) -> Result<(), i32> {
|
|
|
|
let _res = unsafe {
|
|
|
|
let ptr = self.buffer.as_mut_ptr() as *mut c_char;
|
|
|
|
fuse_reply_buf(self.req, ptr, self.filled)
|
|
|
|
};
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2020-01-13 11:48:07 +00:00
|
|
|
/// Fill the buffer for the fuse reply with the next dir entry by invoking the
|
2020-01-15 12:11:42 +00:00
|
|
|
/// fuse_add_direntry_plus helper function for the readdirplus callback.
|
2020-01-13 11:48:07 +00:00
|
|
|
/// The attr type T is has to be `libc::stat` or `EntryParam` accordingly.
|
2020-01-15 12:11:42 +00:00
|
|
|
fn fill(&mut self, name: &CString, attr: &EntryParam) -> Result<ReplyBufState, Error> {
|
2020-01-13 11:48:07 +00:00
|
|
|
self.next += 1;
|
|
|
|
let size = self.buffer.len();
|
|
|
|
let bytes = unsafe {
|
|
|
|
let bptr = self.buffer.as_mut_ptr() as *mut c_char;
|
|
|
|
let nptr = name.as_ptr();
|
2020-01-15 12:11:42 +00:00
|
|
|
fuse_add_direntry_plus(
|
2020-01-13 11:48:07 +00:00
|
|
|
self.req,
|
|
|
|
bptr.offset(self.filled as isize),
|
|
|
|
size - self.filled,
|
|
|
|
nptr,
|
|
|
|
Some(&attr),
|
|
|
|
i32::try_from(self.next)?,
|
|
|
|
) as usize
|
|
|
|
};
|
|
|
|
self.filled += bytes;
|
|
|
|
// Never exceed the max size requested in the callback (=buffer.len())
|
|
|
|
if self.filled > size {
|
|
|
|
// Entry did not fit, so go back to previous state
|
|
|
|
self.filled -= bytes;
|
|
|
|
self.next -= 1;
|
|
|
|
return Ok(ReplyBufState::Overfull);
|
|
|
|
}
|
|
|
|
|
|
|
|
Ok(ReplyBufState::Okay)
|
|
|
|
}
|
2019-09-09 16:27:32 +00:00
|
|
|
}
|