Documentation ¶
Overview ¶
Package nsfs provides the filesystem implementation backing Kernel.NsfsMount.
Index ¶
- func NewFilesystem(vfsObj *vfs.VirtualFilesystem) (*vfs.Filesystem, error)
- type Inode
- func (i *Inode) DecRef(ctx context.Context)
- func (i *Inode) Keep() bool
- func (i *Inode) Mode() linux.FileMode
- func (i *Inode) Name() string
- func (i *Inode) Namespace() vfs.Namespace
- func (i *Inode) Open(ctx context.Context, rp *vfs.ResolvingPath, d *kernfs.Dentry, ...) (*vfs.FileDescription, error)
- func (i *Inode) SetStat(ctx context.Context, vfsfs *vfs.Filesystem, creds *auth.Credentials, ...) error
- func (i *Inode) StatFS(ctx context.Context, fs *vfs.Filesystem) (linux.Statfs, error)
- func (i *Inode) VirtualDentry() vfs.VirtualDentry
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func NewFilesystem ¶
func NewFilesystem(vfsObj *vfs.VirtualFilesystem) (*vfs.Filesystem, error)
NewFilesystem sets up and returns a new vfs.Filesystem implemented by nsfs.
Types ¶
type Inode ¶
type Inode struct { kernfs.InodeAttrs kernfs.InodeAnonymous kernfs.InodeNotDirectory kernfs.InodeNotSymlink kernfs.InodeWatches // contains filtered or unexported fields }
Inode implements kernfs.Inode.
+stateify savable
func (*Inode) Name ¶
Name returns the inode name that is used to implement readlink() of /proc/pid/ns/ files.
func (*Inode) Open ¶
func (i *Inode) Open(ctx context.Context, rp *vfs.ResolvingPath, d *kernfs.Dentry, opts vfs.OpenOptions) (*vfs.FileDescription, error)
Open implements kernfs.Inode.Open.
func (*Inode) SetStat ¶
func (i *Inode) SetStat(ctx context.Context, vfsfs *vfs.Filesystem, creds *auth.Credentials, opts vfs.SetStatOptions) error
SetStat implements kernfs.Inode.SetStat.
Linux sets S_IMMUTABLE to nsfs inodes that prevents any attribute changes on them.
func (*Inode) VirtualDentry ¶
func (i *Inode) VirtualDentry() vfs.VirtualDentry
VirtualDentry returns VirtualDentry for the inode.
Click to show internal directories.
Click to hide internal directories.