fuse-backend-rs icon indicating copy to clipboard operation
fuse-backend-rs copied to clipboard

Rust crate for implementing FUSE backends

Results 32 fuse-backend-rs issues
Sort by recently updated
recently updated
newest added

The affected dependencies includes: 1. Update vm-memory to fix CVE-2023-41051. 2. Update vmm-sys-util to fix CVE-2023-50711. 3. Update virtio-queue to 0.12 to be compatible with the above changes.

Hello, I am working on a virtual filesystem using fuse-backend-rs for [tvix](https://github.com/tvlfyi/tvix), a Rust implementation of Nix. Most of the underlying filesystem is built on top of async Rust +...

1. Support enable splice_read/splice_write on FuseChannel. 2. Add splice interface for ZeroCopyReader and ZeroCopyWriter. 3. Add unit-test cases for splice interface.

Hi my friend, are there plans for extending the project to support Windows ?

Currently, only single uid/gid idmapping supported. However, in userns, multiple idmappings can be setted. Besides, in the fuse-overlayfs project, multiple idmappings are supported. https://github.com/containers/fuse-overlayfs/blob/18f4d6768ab2178f0147c1bac0ccfd7d44841a56/README.md?plain=1#L16 This commit will be used to...

We have special support of the O_DIRECT flag, but the implementation has race conditions due to `Time To Check & Time To Use` issues. So refine the implementation by using...

Switch to new implementation of unix credentials, with support of supplemental group ids.

Implement perfile based chroot by using openat2 when available, to project path based attacks.

The fuse-t session uses a socket pair for communication but wasn't correctly handling EOF and so when trying to gracefully unmount it would just hang. This change simply deals with...