Created
August 15, 2018 19:17
-
-
Save sunhay/5870c3e4df19c389f18c10f3000fc980 to your computer and use it in GitHub Desktop.
Listing docker host devices
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Taken from: https://github.com/opencontainers/runc/blob/master/libcontainer/devices/devices.go | |
``` | |
$ go get -u github.com/opencontainers/runc | |
$ go get -u golang.org/x/sys/unix | |
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"fmt" | |
"errors" | |
"io/ioutil" | |
"os" | |
"path/filepath" | |
"github.com/opencontainers/runc/libcontainer/configs" | |
"golang.org/x/sys/unix" | |
) | |
var ( | |
ErrNotADevice = errors.New("not a device node") | |
) | |
// Testing dependencies | |
var ( | |
unixLstat = unix.Lstat | |
ioutilReadDir = ioutil.ReadDir | |
) | |
// 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) (*configs.Device, error) { | |
var stat unix.Stat_t | |
err := unixLstat(path, &stat) | |
if err != nil { | |
return nil, err | |
} | |
var ( | |
devNumber = uint64(stat.Rdev) | |
major = unix.Major(devNumber) | |
minor = unix.Minor(devNumber) | |
) | |
if major == 0 { | |
return nil, ErrNotADevice | |
} | |
var ( | |
devType rune | |
mode = stat.Mode | |
) | |
switch { | |
case mode&unix.S_IFBLK == unix.S_IFBLK: | |
devType = 'b' | |
case mode&unix.S_IFCHR == unix.S_IFCHR: | |
devType = 'c' | |
} | |
return &configs.Device{ | |
Type: devType, | |
Path: path, | |
Major: int64(major), | |
Minor: int64(minor), | |
Permissions: permissions, | |
FileMode: os.FileMode(mode), | |
Uid: stat.Uid, | |
Gid: stat.Gid, | |
}, nil | |
} | |
func HostDevices() ([]*configs.Device, error) { | |
return getDevices("/dev") | |
} | |
func getDevices(path string) ([]*configs.Device, error) { | |
files, err := ioutilReadDir(path) | |
if err != nil { | |
return nil, err | |
} | |
out := []*configs.Device{} | |
for _, f := range files { | |
switch { | |
case f.IsDir(): | |
switch f.Name() { | |
// ".lxc" & ".lxd-mounts" added to address https://github.com/lxc/lxd/issues/2825 | |
case "pts", "shm", "fd", "mqueue", ".lxc", ".lxd-mounts": | |
continue | |
default: | |
sub, err := getDevices(filepath.Join(path, f.Name())) | |
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 | |
} | |
out = append(out, device) | |
} | |
return out, nil | |
} | |
func main() { | |
ds, err := HostDevices() | |
if err == nil { | |
for _, d := range ds { | |
fmt.Printf("%v\n", *d) | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment