Expand description
Implementation of the sandboxfs FUSE file system.
Structs§
- IdGenerator
- Monotonically-increasing generator of identifiers.
- Kernel
Error - Type that represents an error understood by the kernel.
- Mapping
- Mapping describes how an individual path within the sandbox is connected to an external path in the underlying file system.
- NoCache
- Node factory without any caching.
- Path
Cache - Cache of sandboxfs nodes indexed by their underlying path.
- Scoped
Profiler - Facade for
cpuprofiler::PROFILER
to cope with the optional gperftools dependency and to ensure profiling stops ondrop
.
Enums§
- Mapping
Error - An error indicating that a mapping specification (coming from the command line or from a reconfiguration operation) is invalid.
Functions§
- flatten_
causes - Flattens all causes of an error into a single string.
- mount
- Mounts a new sandboxfs instance on the given
mount_point
and maps allmappings
within it. - open_
input - Opens the input file for the reconfiguration loop.
- open_
output - Opens the output file for the reconfiguration loop.
Type Aliases§
- ArcCache
- A reference-counted
Cache
that’s safe to send across threads.