diff options
author | gVisor bot <gvisor-bot@google.com> | 2020-02-26 03:16:03 +0000 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2020-02-26 03:16:03 +0000 |
commit | c065c5f9eeec194fe40dadb5f2396fd078474299 (patch) | |
tree | 070bd17cc0ef22fcd8d2834f2d4c95cff7c58295 /pkg/sentry/vfs/mount.go | |
parent | 834ceb8b0d7550793610ed0173c3fa669f53b46c (diff) | |
parent | a92087f0f8fe82ce99414ec99ffe33e514cb21f6 (diff) |
Merge release-20200219.0-46-ga92087f (automated)
Diffstat (limited to 'pkg/sentry/vfs/mount.go')
-rwxr-xr-x | pkg/sentry/vfs/mount.go | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/pkg/sentry/vfs/mount.go b/pkg/sentry/vfs/mount.go index 9912df799..31a4e5480 100755 --- a/pkg/sentry/vfs/mount.go +++ b/pkg/sentry/vfs/mount.go @@ -139,6 +139,23 @@ func (vfs *VirtualFilesystem) NewMountNamespace(ctx context.Context, creds *auth return mntns, nil } +// NewDisconnectedMount returns a Mount representing fs with the given root +// (which may be nil). The new Mount is not associated with any MountNamespace +// and is not connected to any other Mounts. References are taken on fs and +// root. +func (vfs *VirtualFilesystem) NewDisconnectedMount(fs *Filesystem, root *Dentry, opts *MountOptions) (*Mount, error) { + fs.IncRef() + if root != nil { + root.IncRef() + } + return &Mount{ + vfs: vfs, + fs: fs, + root: root, + refs: 1, + }, nil +} + // MountAt creates and mounts a Filesystem configured by the given arguments. func (vfs *VirtualFilesystem) MountAt(ctx context.Context, creds *auth.Credentials, source string, target *PathOperation, fsTypeName string, opts *MountOptions) error { rft := vfs.getFilesystemType(fsTypeName) |