k3s/vendor/github.com/opencontainers/runc/libcontainer/devices/device_unix.go

122 lines
2.7 KiB
Go
Raw Normal View History

// +build !windows
2019-01-12 04:58:27 +00:00
package devices
import (
"errors"
"io/ioutil"
"os"
"path/filepath"
"golang.org/x/sys/unix"
)
var (
2019-12-12 01:27:03 +00:00
// ErrNotADevice denotes that a file is not a valid linux device.
2019-01-12 04:58:27 +00:00
ErrNotADevice = errors.New("not a device node")
)
// Testing dependencies
var (
unixLstat = unix.Lstat
ioutilReadDir = ioutil.ReadDir
)
func mkDev(d *Rule) (uint64, error) {
if d.Major == Wildcard || d.Minor == Wildcard {
return 0, errors.New("cannot mkdev() device with wildcards")
}
return unix.Mkdev(uint32(d.Major), uint32(d.Minor)), nil
}
2019-12-12 01:27:03 +00:00
// Given the path to a device and its cgroup_permissions(which cannot be easily queried) look up the
// information about a linux device and return that information as a Device struct.
func DeviceFromPath(path, permissions string) (*Device, error) {
2019-01-12 04:58:27 +00:00
var stat unix.Stat_t
err := unixLstat(path, &stat)
if err != nil {
return nil, err
}
var (
devType Type
2020-08-10 17:43:49 +00:00
mode = stat.Mode
2019-01-12 04:58:27 +00:00
devNumber = uint64(stat.Rdev)
major = unix.Major(devNumber)
minor = unix.Minor(devNumber)
)
2020-08-10 17:43:49 +00:00
switch mode & unix.S_IFMT {
case unix.S_IFBLK:
devType = BlockDevice
2020-08-10 17:43:49 +00:00
case unix.S_IFCHR:
devType = CharDevice
2020-08-10 17:43:49 +00:00
case unix.S_IFIFO:
devType = FifoDevice
2020-08-10 17:43:49 +00:00
default:
2019-01-12 04:58:27 +00:00
return nil, ErrNotADevice
}
return &Device{
Rule: Rule{
2020-08-10 17:43:49 +00:00
Type: devType,
Major: int64(major),
Minor: int64(minor),
Permissions: Permissions(permissions),
2020-08-10 17:43:49 +00:00
},
Path: path,
FileMode: os.FileMode(mode &^ unix.S_IFMT),
2020-08-10 17:43:49 +00:00
Uid: stat.Uid,
Gid: stat.Gid,
2019-01-12 04:58:27 +00:00
}, nil
}
2019-12-12 01:27:03 +00:00
// HostDevices returns all devices that can be found under /dev directory.
func HostDevices() ([]*Device, error) {
2019-12-12 01:27:03 +00:00
return GetDevices("/dev")
2019-01-12 04:58:27 +00:00
}
2019-12-12 01:27:03 +00:00
// GetDevices recursively traverses a directory specified by path
// and returns all devices found there.
func GetDevices(path string) ([]*Device, error) {
2019-01-12 04:58:27 +00:00
files, err := ioutilReadDir(path)
if err != nil {
return nil, err
}
var out []*Device
2019-01-12 04:58:27 +00:00
for _, f := range files {
switch {
case f.IsDir():
switch f.Name() {
// ".lxc" & ".lxd-mounts" added to address https://github.com/lxc/lxd/issues/2825
2019-12-12 01:27:03 +00:00
// ".udev" added to address https://github.com/opencontainers/runc/issues/2093
case "pts", "shm", "fd", "mqueue", ".lxc", ".lxd-mounts", ".udev":
2019-01-12 04:58:27 +00:00
continue
default:
2019-12-12 01:27:03 +00:00
sub, err := GetDevices(filepath.Join(path, f.Name()))
2019-01-12 04:58:27 +00:00
if err != nil {
return nil, err
}
out = append(out, sub...)
continue
}
case f.Name() == "console":
continue
}
device, err := DeviceFromPath(filepath.Join(path, f.Name()), "rwm")
if err != nil {
if err == ErrNotADevice {
continue
}
if os.IsNotExist(err) {
continue
}
return nil, err
}
if device.Type == FifoDevice {
2020-08-10 17:43:49 +00:00
continue
}
2019-01-12 04:58:27 +00:00
out = append(out, device)
}
return out, nil
}