k3s/vendor/github.com/opencontainers/runc/libcontainer/utils/utils_unix.go

69 lines
1.7 KiB
Go
Raw Normal View History

2019-01-12 04:58:27 +00:00
// +build !windows
package utils
import (
2019-12-12 01:27:03 +00:00
"fmt"
2019-01-12 04:58:27 +00:00
"os"
"strconv"
"golang.org/x/sys/unix"
)
2019-12-12 01:27:03 +00:00
// EnsureProcHandle returns whether or not the given file handle is on procfs.
func EnsureProcHandle(fh *os.File) error {
var buf unix.Statfs_t
if err := unix.Fstatfs(int(fh.Fd()), &buf); err != nil {
return fmt.Errorf("ensure %s is on procfs: %v", fh.Name(), err)
}
if buf.Type != unix.PROC_SUPER_MAGIC {
return fmt.Errorf("%s is not on procfs", fh.Name())
}
return nil
}
// CloseExecFrom applies O_CLOEXEC to all file descriptors currently open for
// the process (except for those below the given fd value).
2019-01-12 04:58:27 +00:00
func CloseExecFrom(minFd int) error {
2019-12-12 01:27:03 +00:00
fdDir, err := os.Open("/proc/self/fd")
if err != nil {
return err
}
defer fdDir.Close()
if err := EnsureProcHandle(fdDir); err != nil {
return err
}
fdList, err := fdDir.Readdirnames(-1)
2019-01-12 04:58:27 +00:00
if err != nil {
return err
}
2019-12-12 01:27:03 +00:00
for _, fdStr := range fdList {
fd, err := strconv.Atoi(fdStr)
// Ignore non-numeric file names.
2019-01-12 04:58:27 +00:00
if err != nil {
continue
}
2019-12-12 01:27:03 +00:00
// Ignore descriptors lower than our specified minimum.
2019-01-12 04:58:27 +00:00
if fd < minFd {
continue
}
2019-12-12 01:27:03 +00:00
// Intentionally ignore errors from unix.CloseOnExec -- the cases where
// this might fail are basically file descriptors that have already
// been closed (including and especially the one that was created when
// ioutil.ReadDir did the "opendir" syscall).
2019-01-12 04:58:27 +00:00
unix.CloseOnExec(fd)
}
return nil
}
// NewSockPair returns a new unix socket pair
func NewSockPair(name string) (parent *os.File, child *os.File, err error) {
fds, err := unix.Socketpair(unix.AF_LOCAL, unix.SOCK_STREAM|unix.SOCK_CLOEXEC, 0)
if err != nil {
return nil, nil, err
}
return os.NewFile(uintptr(fds[1]), name+"-p"), os.NewFile(uintptr(fds[0]), name+"-c"), nil
}