mirror of
https://github.com/netbirdio/gvisor.git
synced 2026-05-22 17:12:49 -07:00
This partially reverts cl/578969556, but implements devtmpfs using fsimpl/dev (added by that CL). Note that the behavior of "devtmpfs" differs compared to before cl/578969556. Container runtime specs typically specify a tmpfs mount at /dev, which the container runtime is required to prepopulate with certain device files (https://github.com/opencontainers/runtime-spec/blob/main/config-linux.md#default-devices). Prior to cl/578969556, runsc did so by silently replacing tmpfs mounts at /dev with devtmpfs mounts. After that CL, runsc does so by silently replacing tmpfs mounts at /dev with fsimpl/dev mounts. The distinction is that devtmpfs is a singleton whereas fsimpl/dev is not, so in a multi-container sandbox, all containers shared the contents of /dev before cl/578969556, but not after that CL; this change was necessary due to differences in GPU/TPU accessibility between containers, and is also more consistent with runc (which also creates separate tmpfs mounts for /dev as specified). As a side effect, explicit devtmpfs mounts shared the same filesystem as every container's /dev before cl/578969556. Since the change to container /dev won't be reverted, our options now are: - All devtmpfs mounts share a single filesystem, which is distinct from any container's /dev. - Each devtmpfs mount gets a distinct filesystem. This CL chooses the former option for greater similarity to Linux devtmpfs semantics. (In runc, explicit devtmpfs mounts share a single filesystem, which is the *host's* /dev.) PiperOrigin-RevId: 589021563
75 lines
2.2 KiB
Go
75 lines
2.2 KiB
Go
// Copyright 2020 The gVisor Authors.
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
// Package devtmpfs provides a singleton fsimpl/dev filesystem instance,
|
|
// analogous to Linux's devtmpfs.
|
|
package devtmpfs
|
|
|
|
import (
|
|
"gvisor.dev/gvisor/pkg/context"
|
|
"gvisor.dev/gvisor/pkg/sentry/fsimpl/dev"
|
|
"gvisor.dev/gvisor/pkg/sentry/kernel/auth"
|
|
"gvisor.dev/gvisor/pkg/sentry/vfs"
|
|
"gvisor.dev/gvisor/pkg/sync"
|
|
)
|
|
|
|
// Name is the default filesystem name.
|
|
const Name = "devtmpfs"
|
|
|
|
// FilesystemType implements vfs.FilesystemType.
|
|
//
|
|
// +stateify savable
|
|
type FilesystemType struct {
|
|
initOnce sync.Once `state:"nosave"`
|
|
initErr error
|
|
|
|
// fs is the tmpfs filesystem that backs all mounts of this FilesystemType.
|
|
// root is fs' root. fs and root are immutable.
|
|
fs *vfs.Filesystem
|
|
root *vfs.Dentry
|
|
}
|
|
|
|
// Name implements vfs.FilesystemType.Name.
|
|
func (*FilesystemType) Name() string {
|
|
return Name
|
|
}
|
|
|
|
// GetFilesystem implements vfs.FilesystemType.GetFilesystem.
|
|
func (fst *FilesystemType) GetFilesystem(ctx context.Context, vfsObj *vfs.VirtualFilesystem, creds *auth.Credentials, source string, opts vfs.GetFilesystemOptions) (*vfs.Filesystem, *vfs.Dentry, error) {
|
|
fst.initOnce.Do(func() {
|
|
fs, root, err := dev.FilesystemType{}.GetFilesystem(ctx, vfsObj, creds, source, opts)
|
|
if err != nil {
|
|
fst.initErr = err
|
|
return
|
|
}
|
|
fst.fs = fs
|
|
fst.root = root
|
|
})
|
|
if fst.initErr != nil {
|
|
return nil, nil, fst.initErr
|
|
}
|
|
fst.fs.IncRef()
|
|
fst.root.IncRef()
|
|
return fst.fs, fst.root, nil
|
|
}
|
|
|
|
// Release implements vfs.FilesystemType.Release.
|
|
func (fst *FilesystemType) Release(ctx context.Context) {
|
|
if fst.fs != nil {
|
|
// Release the original reference obtained when creating the filesystem.
|
|
fst.root.DecRef(ctx)
|
|
fst.fs.DecRef(ctx)
|
|
}
|
|
}
|