mirror of
https://github.com/aljazceru/kata-containers.git
synced 2025-12-26 02:24:21 +01:00
This reverts: -590ed09vendor: update gogo/protobuf, containerd and agent vendors -eabfd99shimv2: Improve shim shutdown logic These introduce a regression for starting pods with k8s 1.14 + contaienr 1.2.6 Fixes: #1781 Signed-off-by: Eric Ernst <eric.ernst@intel.com>
59 lines
1.5 KiB
Go
59 lines
1.5 KiB
Go
package vsock
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
"unsafe"
|
|
|
|
"golang.org/x/sys/unix"
|
|
)
|
|
|
|
const (
|
|
// devVsock is the location of /dev/vsock. It is exposed on both the
|
|
// hypervisor and on virtual machines.
|
|
devVsock = "/dev/vsock"
|
|
)
|
|
|
|
// A fs is an interface over the filesystem and ioctl, to enable testing.
|
|
type fs interface {
|
|
Open(name string) (*os.File, error)
|
|
Ioctl(fd uintptr, request int, argp unsafe.Pointer) error
|
|
}
|
|
|
|
// localContextID retrieves the local context ID for this system, using the
|
|
// methods from fs. The context ID is stored in cid for later use.
|
|
//
|
|
// This method uses this signature to enable easier testing without unsafe
|
|
// usage of unsafe.Pointer.
|
|
func localContextID(fs fs, cid *uint32) error {
|
|
f, err := fs.Open(devVsock)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
defer f.Close()
|
|
|
|
// Retrieve the context ID of this machine from /dev/vsock.
|
|
return fs.Ioctl(f.Fd(), unix.IOCTL_VM_SOCKETS_GET_LOCAL_CID, unsafe.Pointer(cid))
|
|
}
|
|
|
|
// A sysFS is the system call implementation of fs.
|
|
type sysFS struct{}
|
|
|
|
func (sysFS) Open(name string) (*os.File, error) { return os.Open(name) }
|
|
func (sysFS) Ioctl(fd uintptr, request int, argp unsafe.Pointer) error {
|
|
_, _, errno := unix.Syscall(
|
|
unix.SYS_IOCTL,
|
|
fd,
|
|
uintptr(request),
|
|
// Note that the conversion from unsafe.Pointer to uintptr _must_
|
|
// occur in the call expression. See the package unsafe documentation
|
|
// for more details.
|
|
uintptr(argp),
|
|
)
|
|
if errno != 0 {
|
|
return os.NewSyscallError("ioctl", fmt.Errorf("%d", int(errno)))
|
|
}
|
|
|
|
return nil
|
|
}
|