2014-08-02 03:46:15 -04:00
|
|
|
// +build linux
|
2013-11-27 22:12:51 -05:00
|
|
|
|
2013-11-27 20:44:54 -05:00
|
|
|
package devmapper
|
|
|
|
|
|
|
|
import (
|
2014-05-16 08:10:02 -04:00
|
|
|
"syscall"
|
2013-11-27 20:44:54 -05:00
|
|
|
"unsafe"
|
|
|
|
)
|
|
|
|
|
|
|
|
func ioctlLoopCtlGetFree(fd uintptr) (int, error) {
|
2014-05-16 08:10:02 -04:00
|
|
|
index, _, err := syscall.Syscall(syscall.SYS_IOCTL, fd, LoopCtlGetFree, 0)
|
2013-11-27 20:44:54 -05:00
|
|
|
if err != 0 {
|
|
|
|
return 0, err
|
|
|
|
}
|
|
|
|
return int(index), nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func ioctlLoopSetFd(loopFd, sparseFd uintptr) error {
|
2014-05-16 08:10:02 -04:00
|
|
|
if _, _, err := syscall.Syscall(syscall.SYS_IOCTL, loopFd, LoopSetFd, sparseFd); err != 0 {
|
2013-11-27 20:44:54 -05:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func ioctlLoopSetStatus64(loopFd uintptr, loopInfo *LoopInfo64) error {
|
2014-05-16 08:10:02 -04:00
|
|
|
if _, _, err := syscall.Syscall(syscall.SYS_IOCTL, loopFd, LoopSetStatus64, uintptr(unsafe.Pointer(loopInfo))); err != 0 {
|
2013-11-27 20:44:54 -05:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func ioctlLoopClrFd(loopFd uintptr) error {
|
2014-05-16 08:10:02 -04:00
|
|
|
if _, _, err := syscall.Syscall(syscall.SYS_IOCTL, loopFd, LoopClrFd, 0); err != 0 {
|
2013-11-27 20:44:54 -05:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func ioctlLoopGetStatus64(loopFd uintptr) (*LoopInfo64, error) {
|
|
|
|
loopInfo := &LoopInfo64{}
|
|
|
|
|
2014-05-16 08:10:02 -04:00
|
|
|
if _, _, err := syscall.Syscall(syscall.SYS_IOCTL, loopFd, LoopGetStatus64, uintptr(unsafe.Pointer(loopInfo))); err != 0 {
|
2013-11-27 20:44:54 -05:00
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return loopInfo, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func ioctlLoopSetCapacity(loopFd uintptr, value int) error {
|
2014-05-16 08:10:02 -04:00
|
|
|
if _, _, err := syscall.Syscall(syscall.SYS_IOCTL, loopFd, LoopSetCapacity, uintptr(value)); err != 0 {
|
2013-11-27 20:44:54 -05:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func ioctlBlkGetSize64(fd uintptr) (int64, error) {
|
|
|
|
var size int64
|
2014-05-16 08:10:02 -04:00
|
|
|
if _, _, err := syscall.Syscall(syscall.SYS_IOCTL, fd, BlkGetSize64, uintptr(unsafe.Pointer(&size))); err != 0 {
|
2013-11-27 20:44:54 -05:00
|
|
|
return 0, err
|
|
|
|
}
|
|
|
|
return size, nil
|
|
|
|
}
|
2013-12-17 03:12:44 -05:00
|
|
|
|
|
|
|
func ioctlBlkDiscard(fd uintptr, offset, length uint64) error {
|
|
|
|
var r [2]uint64
|
|
|
|
r[0] = offset
|
|
|
|
r[1] = length
|
|
|
|
|
2014-05-16 08:10:02 -04:00
|
|
|
if _, _, err := syscall.Syscall(syscall.SYS_IOCTL, fd, BlkDiscard, uintptr(unsafe.Pointer(&r[0]))); err != 0 {
|
2013-12-17 03:12:44 -05:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|