github.com/SagerNet/gvisor@v0.0.0-20210707092255-7731c139d75c/pkg/sentry/fsimpl/tmpfs/device_file.go (about)

     1  // Copyright 2020 The gVisor Authors.
     2  //
     3  // Licensed under the Apache License, Version 2.0 (the "License");
     4  // you may not use this file except in compliance with the License.
     5  // You may obtain a copy of the License at
     6  //
     7  //     http://www.apache.org/licenses/LICENSE-2.0
     8  //
     9  // Unless required by applicable law or agreed to in writing, software
    10  // distributed under the License is distributed on an "AS IS" BASIS,
    11  // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    12  // See the License for the specific language governing permissions and
    13  // limitations under the License.
    14  
    15  package tmpfs
    16  
    17  import (
    18  	"fmt"
    19  
    20  	"github.com/SagerNet/gvisor/pkg/abi/linux"
    21  	"github.com/SagerNet/gvisor/pkg/sentry/kernel/auth"
    22  	"github.com/SagerNet/gvisor/pkg/sentry/vfs"
    23  )
    24  
    25  // +stateify savable
    26  type deviceFile struct {
    27  	inode inode
    28  	kind  vfs.DeviceKind
    29  	major uint32
    30  	minor uint32
    31  }
    32  
    33  func (fs *filesystem) newDeviceFile(kuid auth.KUID, kgid auth.KGID, mode linux.FileMode, kind vfs.DeviceKind, major, minor uint32, parentDir *directory) *inode {
    34  	file := &deviceFile{
    35  		kind:  kind,
    36  		major: major,
    37  		minor: minor,
    38  	}
    39  	switch kind {
    40  	case vfs.BlockDevice:
    41  		mode |= linux.S_IFBLK
    42  	case vfs.CharDevice:
    43  		mode |= linux.S_IFCHR
    44  	default:
    45  		panic(fmt.Sprintf("invalid DeviceKind: %v", kind))
    46  	}
    47  	file.inode.init(file, fs, kuid, kgid, mode, parentDir)
    48  	file.inode.nlink = 1 // from parent directory
    49  	return &file.inode
    50  }