mirror of https://github.com/docker/docs.git
Merge pull request #2923 from creack/refactor_cgo_in_go
Refactor attach loop device in pure Go
This commit is contained in:
commit
f94ea7769f
|
@ -0,0 +1,124 @@
|
||||||
|
package devmapper
|
||||||
|
|
||||||
|
import (
|
||||||
|
"fmt"
|
||||||
|
"github.com/dotcloud/docker/utils"
|
||||||
|
)
|
||||||
|
|
||||||
|
func stringToLoopName(src string) [LoNameSize]uint8 {
|
||||||
|
var dst [LoNameSize]uint8
|
||||||
|
copy(dst[:], src[:])
|
||||||
|
return dst
|
||||||
|
}
|
||||||
|
|
||||||
|
func getNextFreeLoopbackIndex() (int, error) {
|
||||||
|
f, err := osOpenFile("/dev/loop-control", osORdOnly, 0644)
|
||||||
|
if err != nil {
|
||||||
|
return 0, err
|
||||||
|
}
|
||||||
|
defer f.Close()
|
||||||
|
|
||||||
|
index, err := ioctlLoopCtlGetFree(f.Fd())
|
||||||
|
if index < 0 {
|
||||||
|
index = 0
|
||||||
|
}
|
||||||
|
return index, err
|
||||||
|
}
|
||||||
|
|
||||||
|
func openNextAvailableLoopback(index int, sparseFile *osFile) (loopFile *osFile, err error) {
|
||||||
|
// Start looking for a free /dev/loop
|
||||||
|
for {
|
||||||
|
target := fmt.Sprintf("/dev/loop%d", index)
|
||||||
|
index++
|
||||||
|
|
||||||
|
fi, err := osStat(target)
|
||||||
|
if err != nil {
|
||||||
|
if osIsNotExist(err) {
|
||||||
|
utils.Errorf("There are no more loopback device available.")
|
||||||
|
}
|
||||||
|
return nil, ErrAttachLoopbackDevice
|
||||||
|
}
|
||||||
|
|
||||||
|
if fi.Mode()&osModeDevice != osModeDevice {
|
||||||
|
utils.Errorf("Loopback device %s is not a block device.", target)
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
|
||||||
|
// OpenFile adds O_CLOEXEC
|
||||||
|
loopFile, err = osOpenFile(target, osORdWr, 0644)
|
||||||
|
if err != nil {
|
||||||
|
utils.Errorf("Error openning loopback device: %s", err)
|
||||||
|
return nil, ErrAttachLoopbackDevice
|
||||||
|
}
|
||||||
|
|
||||||
|
// Try to attach to the loop file
|
||||||
|
if err := ioctlLoopSetFd(loopFile.Fd(), sparseFile.Fd()); err != nil {
|
||||||
|
loopFile.Close()
|
||||||
|
|
||||||
|
// If the error is EBUSY, then try the next loopback
|
||||||
|
if err != sysEBusy {
|
||||||
|
utils.Errorf("Cannot set up loopback device %s: %s", target, err)
|
||||||
|
return nil, ErrAttachLoopbackDevice
|
||||||
|
}
|
||||||
|
|
||||||
|
// Otherwise, we keep going with the loop
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
// In case of success, we finished. Break the loop.
|
||||||
|
break
|
||||||
|
}
|
||||||
|
|
||||||
|
// This can't happen, but let's be sure
|
||||||
|
if loopFile == nil {
|
||||||
|
utils.Errorf("Unreachable code reached! Error attaching %s to a loopback device.", sparseFile.Name())
|
||||||
|
return nil, ErrAttachLoopbackDevice
|
||||||
|
}
|
||||||
|
|
||||||
|
return loopFile, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
// attachLoopDevice attaches the given sparse file to the next
|
||||||
|
// available loopback device. It returns an opened *osFile.
|
||||||
|
func attachLoopDevice(sparseName string) (loop *osFile, err error) {
|
||||||
|
|
||||||
|
// Try to retrieve the next available loopback device via syscall.
|
||||||
|
// If it fails, we discard error and start loopking for a
|
||||||
|
// loopback from index 0.
|
||||||
|
startIndex, err := getNextFreeLoopbackIndex()
|
||||||
|
if err != nil {
|
||||||
|
utils.Debugf("Error retrieving the next available loopback: %s", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
// OpenFile adds O_CLOEXEC
|
||||||
|
sparseFile, err := osOpenFile(sparseName, osORdWr, 0644)
|
||||||
|
if err != nil {
|
||||||
|
utils.Errorf("Error openning sparse file %s: %s", sparseName, err)
|
||||||
|
return nil, ErrAttachLoopbackDevice
|
||||||
|
}
|
||||||
|
defer sparseFile.Close()
|
||||||
|
|
||||||
|
loopFile, err := openNextAvailableLoopback(startIndex, sparseFile)
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
|
||||||
|
// Set the status of the loopback device
|
||||||
|
loopInfo := &LoopInfo64{
|
||||||
|
loFileName: stringToLoopName(loopFile.Name()),
|
||||||
|
loOffset: 0,
|
||||||
|
loFlags: LoFlagsAutoClear,
|
||||||
|
}
|
||||||
|
|
||||||
|
if err := ioctlLoopSetStatus64(loopFile.Fd(), loopInfo); err != nil {
|
||||||
|
utils.Errorf("Cannot set up loopback device info: %s", err)
|
||||||
|
|
||||||
|
// If the call failed, then free the loopback device
|
||||||
|
if err := ioctlLoopClrFd(loopFile.Fd()); err != nil {
|
||||||
|
utils.Errorf("Error while cleaning up the loopback device")
|
||||||
|
}
|
||||||
|
loopFile.Close()
|
||||||
|
return nil, ErrAttachLoopbackDevice
|
||||||
|
}
|
||||||
|
|
||||||
|
return loopFile, nil
|
||||||
|
}
|
|
@ -383,7 +383,7 @@ func (devices *DeviceSet) ResizePool(size int64) error {
|
||||||
return fmt.Errorf("Can't shrink file")
|
return fmt.Errorf("Can't shrink file")
|
||||||
}
|
}
|
||||||
|
|
||||||
dataloopback := FindLoopDeviceFor(&osFile{File: datafile})
|
dataloopback := FindLoopDeviceFor(datafile)
|
||||||
if dataloopback == nil {
|
if dataloopback == nil {
|
||||||
return fmt.Errorf("Unable to find loopback mount for: %s", datafilename)
|
return fmt.Errorf("Unable to find loopback mount for: %s", datafilename)
|
||||||
}
|
}
|
||||||
|
@ -395,7 +395,7 @@ func (devices *DeviceSet) ResizePool(size int64) error {
|
||||||
}
|
}
|
||||||
defer metadatafile.Close()
|
defer metadatafile.Close()
|
||||||
|
|
||||||
metadataloopback := FindLoopDeviceFor(&osFile{File: metadatafile})
|
metadataloopback := FindLoopDeviceFor(metadatafile)
|
||||||
if metadataloopback == nil {
|
if metadataloopback == nil {
|
||||||
return fmt.Errorf("Unable to find loopback mount for: %s", metadatafilename)
|
return fmt.Errorf("Unable to find loopback mount for: %s", metadatafilename)
|
||||||
}
|
}
|
||||||
|
@ -491,14 +491,14 @@ func (devices *DeviceSet) initDevmapper(doInit bool) error {
|
||||||
if info.Exists == 0 {
|
if info.Exists == 0 {
|
||||||
utils.Debugf("Pool doesn't exist. Creating it.")
|
utils.Debugf("Pool doesn't exist. Creating it.")
|
||||||
|
|
||||||
dataFile, err := AttachLoopDevice(data)
|
dataFile, err := attachLoopDevice(data)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
utils.Debugf("\n--->Err: %s\n", err)
|
utils.Debugf("\n--->Err: %s\n", err)
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
defer dataFile.Close()
|
defer dataFile.Close()
|
||||||
|
|
||||||
metadataFile, err := AttachLoopDevice(metadata)
|
metadataFile, err := attachLoopDevice(metadata)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
utils.Debugf("\n--->Err: %s\n", err)
|
utils.Debugf("\n--->Err: %s\n", err)
|
||||||
return err
|
return err
|
||||||
|
@ -637,7 +637,7 @@ func (devices *DeviceSet) deactivateDevice(hash string) error {
|
||||||
// or b) the 1 second timeout expires.
|
// or b) the 1 second timeout expires.
|
||||||
func (devices *DeviceSet) waitRemove(hash string) error {
|
func (devices *DeviceSet) waitRemove(hash string) error {
|
||||||
utils.Debugf("[deviceset %s] waitRemove(%s)", devices.devicePrefix, hash)
|
utils.Debugf("[deviceset %s] waitRemove(%s)", devices.devicePrefix, hash)
|
||||||
defer utils.Debugf("[deviceset %s] waitRemove END", devices.devicePrefix, hash)
|
defer utils.Debugf("[deviceset %s] waitRemove(%) END", devices.devicePrefix, hash)
|
||||||
devname, err := devices.byHash(hash)
|
devname, err := devices.byHash(hash)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
|
|
|
@ -177,25 +177,18 @@ func (t *Task) GetNextTarget(next uintptr) (nextPtr uintptr, start uint64,
|
||||||
start, length, targetType, params
|
start, length, targetType, params
|
||||||
}
|
}
|
||||||
|
|
||||||
func AttachLoopDevice(filename string) (*osFile, error) {
|
|
||||||
var fd int
|
|
||||||
res := DmAttachLoopDevice(filename, &fd)
|
|
||||||
if res == "" {
|
|
||||||
return nil, ErrAttachLoopbackDevice
|
|
||||||
}
|
|
||||||
return &osFile{File: osNewFile(uintptr(fd), res)}, nil
|
|
||||||
}
|
|
||||||
|
|
||||||
func getLoopbackBackingFile(file *osFile) (uint64, uint64, error) {
|
func getLoopbackBackingFile(file *osFile) (uint64, uint64, error) {
|
||||||
dev, inode, err := DmGetLoopbackBackingFile(file.Fd())
|
loopInfo, err := ioctlLoopGetStatus64(file.Fd())
|
||||||
if err != 0 {
|
if err != nil {
|
||||||
|
utils.Errorf("Error get loopback backing file: %s\n", err)
|
||||||
return 0, 0, ErrGetLoopbackBackingFile
|
return 0, 0, ErrGetLoopbackBackingFile
|
||||||
}
|
}
|
||||||
return dev, inode, nil
|
return loopInfo.loDevice, loopInfo.loInode, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func LoopbackSetCapacity(file *osFile) error {
|
func LoopbackSetCapacity(file *osFile) error {
|
||||||
if err := DmLoopbackSetCapacity(file.Fd()); err != 0 {
|
if err := ioctlLoopSetCapacity(file.Fd(), 0); err != nil {
|
||||||
|
utils.Errorf("Error loopbackSetCapacity: %s", err)
|
||||||
return ErrLoopbackSetCapacity
|
return ErrLoopbackSetCapacity
|
||||||
}
|
}
|
||||||
return nil
|
return nil
|
||||||
|
@ -223,11 +216,10 @@ func FindLoopDeviceFor(file *osFile) *osFile {
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
|
|
||||||
dev, inode, err := getLoopbackBackingFile(&osFile{File: file})
|
dev, inode, err := getLoopbackBackingFile(file)
|
||||||
if err == nil && dev == targetDevice && inode == targetInode {
|
if err == nil && dev == targetDevice && inode == targetInode {
|
||||||
return &osFile{File: file}
|
return file
|
||||||
}
|
}
|
||||||
|
|
||||||
file.Close()
|
file.Close()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -286,8 +278,9 @@ func RemoveDevice(name string) error {
|
||||||
}
|
}
|
||||||
|
|
||||||
func GetBlockDeviceSize(file *osFile) (uint64, error) {
|
func GetBlockDeviceSize(file *osFile) (uint64, error) {
|
||||||
size, errno := DmGetBlockSize(file.Fd())
|
size, err := ioctlBlkGetSize64(file.Fd())
|
||||||
if size == -1 || errno != 0 {
|
if err != nil {
|
||||||
|
utils.Errorf("Error getblockdevicesize: %s", err)
|
||||||
return 0, ErrGetBlockSize
|
return 0, ErrGetBlockSize
|
||||||
}
|
}
|
||||||
return uint64(size), nil
|
return uint64(size), nil
|
||||||
|
@ -420,7 +413,7 @@ func suspendDevice(name string) error {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
if err := task.Run(); err != nil {
|
if err := task.Run(); err != nil {
|
||||||
return fmt.Errorf("Error running DeviceSuspend")
|
return fmt.Errorf("Error running DeviceSuspend: %s", err)
|
||||||
}
|
}
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
@ -437,7 +430,7 @@ func resumeDevice(name string) error {
|
||||||
}
|
}
|
||||||
|
|
||||||
if err := task.Run(); err != nil {
|
if err := task.Run(); err != nil {
|
||||||
return fmt.Errorf("Error running DeviceSuspend")
|
return fmt.Errorf("Error running DeviceResume")
|
||||||
}
|
}
|
||||||
|
|
||||||
UdevWait(cookie)
|
UdevWait(cookie)
|
||||||
|
|
|
@ -2,124 +2,14 @@ package devmapper
|
||||||
|
|
||||||
/*
|
/*
|
||||||
#cgo LDFLAGS: -L. -ldevmapper
|
#cgo LDFLAGS: -L. -ldevmapper
|
||||||
#include <stdio.h>
|
|
||||||
#include <stdlib.h>
|
|
||||||
#include <unistd.h>
|
|
||||||
#include <libdevmapper.h>
|
#include <libdevmapper.h>
|
||||||
#include <linux/loop.h>
|
#include <linux/loop.h> // FIXME: present only for defines, maybe we can remove it?
|
||||||
#include <sys/types.h>
|
#include <linux/fs.h> // FIXME: present only for BLKGETSIZE64, maybe we can remove it?
|
||||||
#include <sys/stat.h>
|
|
||||||
#include <fcntl.h>
|
|
||||||
#include <sys/ioctl.h>
|
|
||||||
#include <linux/fs.h>
|
|
||||||
#include <errno.h>
|
|
||||||
|
|
||||||
#ifndef LOOP_CTL_GET_FREE
|
|
||||||
#define LOOP_CTL_GET_FREE 0x4C82
|
|
||||||
#endif
|
|
||||||
|
|
||||||
// FIXME: this could easily be rewritten in go
|
|
||||||
char* attach_loop_device(const char *filename, int *loop_fd_out)
|
|
||||||
{
|
|
||||||
struct loop_info64 loopinfo = {0};
|
|
||||||
struct stat st;
|
|
||||||
char buf[64];
|
|
||||||
int i, loop_fd, fd, start_index;
|
|
||||||
char* loopname;
|
|
||||||
|
|
||||||
|
|
||||||
*loop_fd_out = -1;
|
|
||||||
|
|
||||||
start_index = 0;
|
|
||||||
fd = open("/dev/loop-control", O_RDONLY);
|
|
||||||
if (fd >= 0) {
|
|
||||||
start_index = ioctl(fd, LOOP_CTL_GET_FREE);
|
|
||||||
close(fd);
|
|
||||||
|
|
||||||
if (start_index < 0)
|
|
||||||
start_index = 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
fd = open(filename, O_RDWR);
|
|
||||||
if (fd < 0) {
|
|
||||||
perror("open");
|
|
||||||
return NULL;
|
|
||||||
}
|
|
||||||
|
|
||||||
loop_fd = -1;
|
|
||||||
for (i = start_index ; loop_fd < 0 ; i++ ) {
|
|
||||||
if (sprintf(buf, "/dev/loop%d", i) < 0) {
|
|
||||||
close(fd);
|
|
||||||
return NULL;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (stat(buf, &st)) {
|
|
||||||
if (!S_ISBLK(st.st_mode)) {
|
|
||||||
fprintf(stderr, "[error] Loopback device %s is not a block device.\n", buf);
|
|
||||||
} else if (errno == ENOENT) {
|
|
||||||
fprintf(stderr, "[error] There are no more loopback device available.\n");
|
|
||||||
} else {
|
|
||||||
fprintf(stderr, "[error] Unkown error trying to stat the loopback device %s (errno: %d).\n", buf, errno);
|
|
||||||
}
|
|
||||||
close(fd);
|
|
||||||
return NULL;
|
|
||||||
}
|
|
||||||
|
|
||||||
loop_fd = open(buf, O_RDWR);
|
|
||||||
if (loop_fd < 0 && errno == ENOENT) {
|
|
||||||
fprintf(stderr, "[error] The loopback device %s does not exists.\n", buf);
|
|
||||||
close(fd);
|
|
||||||
return NULL;
|
|
||||||
} else if (loop_fd < 0) {
|
|
||||||
fprintf(stderr, "[error] Unkown error openning the loopback device %s. (errno: %d)\n", buf, errno);
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (ioctl(loop_fd, LOOP_SET_FD, (void *)(size_t)fd) < 0) {
|
|
||||||
int errsv = errno;
|
|
||||||
close(loop_fd);
|
|
||||||
loop_fd = -1;
|
|
||||||
if (errsv != EBUSY) {
|
|
||||||
close(fd);
|
|
||||||
fprintf(stderr, "cannot set up loopback device %s: %s", buf, strerror(errsv));
|
|
||||||
return NULL;
|
|
||||||
}
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
close(fd);
|
|
||||||
|
|
||||||
strncpy((char*)loopinfo.lo_file_name, buf, LO_NAME_SIZE);
|
|
||||||
loopinfo.lo_offset = 0;
|
|
||||||
loopinfo.lo_flags = LO_FLAGS_AUTOCLEAR;
|
|
||||||
|
|
||||||
if (ioctl(loop_fd, LOOP_SET_STATUS64, &loopinfo) < 0) {
|
|
||||||
perror("ioctl LOOP_SET_STATUS64");
|
|
||||||
if (ioctl(loop_fd, LOOP_CLR_FD, 0) < 0) {
|
|
||||||
perror("ioctl LOOP_CLR_FD");
|
|
||||||
}
|
|
||||||
close(loop_fd);
|
|
||||||
fprintf (stderr, "cannot set up loopback device info");
|
|
||||||
return (NULL);
|
|
||||||
}
|
|
||||||
|
|
||||||
loopname = strdup(buf);
|
|
||||||
if (loopname == NULL) {
|
|
||||||
close(loop_fd);
|
|
||||||
return (NULL);
|
|
||||||
}
|
|
||||||
|
|
||||||
*loop_fd_out = loop_fd;
|
|
||||||
return (loopname);
|
|
||||||
}
|
|
||||||
|
|
||||||
return (NULL);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
// FIXME: Can't we find a way to do the logging in pure Go?
|
||||||
extern void DevmapperLogCallback(int level, char *file, int line, int dm_errno_or_class, char *str);
|
extern void DevmapperLogCallback(int level, char *file, int line, int dm_errno_or_class, char *str);
|
||||||
|
|
||||||
static void log_cb(int level, const char *file, int line,
|
static void log_cb(int level, const char *file, int line, int dm_errno_or_class, const char *f, ...)
|
||||||
int dm_errno_or_class, const char *f, ...)
|
|
||||||
{
|
{
|
||||||
char buffer[256];
|
char buffer[256];
|
||||||
va_list ap;
|
va_list ap;
|
||||||
|
@ -135,7 +25,6 @@ static void log_with_errno_init()
|
||||||
{
|
{
|
||||||
dm_log_with_errno_init(log_cb);
|
dm_log_with_errno_init(log_cb);
|
||||||
}
|
}
|
||||||
|
|
||||||
*/
|
*/
|
||||||
import "C"
|
import "C"
|
||||||
|
|
||||||
|
@ -145,31 +34,64 @@ import (
|
||||||
|
|
||||||
type (
|
type (
|
||||||
CDmTask C.struct_dm_task
|
CDmTask C.struct_dm_task
|
||||||
|
|
||||||
|
CLoopInfo64 C.struct_loop_info64
|
||||||
|
LoopInfo64 struct {
|
||||||
|
loDevice uint64 /* ioctl r/o */
|
||||||
|
loInode uint64 /* ioctl r/o */
|
||||||
|
loRdevice uint64 /* ioctl r/o */
|
||||||
|
loOffset uint64
|
||||||
|
loSizelimit uint64 /* bytes, 0 == max available */
|
||||||
|
loNumber uint32 /* ioctl r/o */
|
||||||
|
loEncrypt_type uint32
|
||||||
|
loEncrypt_key_size uint32 /* ioctl w/o */
|
||||||
|
loFlags uint32 /* ioctl r/o */
|
||||||
|
loFileName [LoNameSize]uint8
|
||||||
|
loCryptName [LoNameSize]uint8
|
||||||
|
loEncryptKey [LoKeySize]uint8 /* ioctl w/o */
|
||||||
|
loInit [2]uint64
|
||||||
|
}
|
||||||
|
)
|
||||||
|
|
||||||
|
// FIXME: Make sure the values are defined in C
|
||||||
|
// IOCTL consts
|
||||||
|
const (
|
||||||
|
BlkGetSize64 = C.BLKGETSIZE64
|
||||||
|
|
||||||
|
LoopSetFd = C.LOOP_SET_FD
|
||||||
|
LoopCtlGetFree = C.LOOP_CTL_GET_FREE
|
||||||
|
LoopGetStatus64 = C.LOOP_GET_STATUS64
|
||||||
|
LoopSetStatus64 = C.LOOP_SET_STATUS64
|
||||||
|
LoopClrFd = C.LOOP_CLR_FD
|
||||||
|
LoopSetCapacity = C.LOOP_SET_CAPACITY
|
||||||
|
)
|
||||||
|
|
||||||
|
const (
|
||||||
|
LoFlagsAutoClear = C.LO_FLAGS_AUTOCLEAR
|
||||||
|
LoFlagsReadOnly = C.LO_FLAGS_READ_ONLY
|
||||||
|
LoFlagsPartScan = C.LO_FLAGS_PARTSCAN
|
||||||
|
LoKeySize = C.LO_KEY_SIZE
|
||||||
|
LoNameSize = C.LO_NAME_SIZE
|
||||||
)
|
)
|
||||||
|
|
||||||
var (
|
var (
|
||||||
DmAttachLoopDevice = dmAttachLoopDeviceFct
|
DmGetLibraryVersion = dmGetLibraryVersionFct
|
||||||
DmGetBlockSize = dmGetBlockSizeFct
|
DmGetNextTarget = dmGetNextTargetFct
|
||||||
DmGetLibraryVersion = dmGetLibraryVersionFct
|
DmLogInitVerbose = dmLogInitVerboseFct
|
||||||
DmGetNextTarget = dmGetNextTargetFct
|
DmSetDevDir = dmSetDevDirFct
|
||||||
DmLogInitVerbose = dmLogInitVerboseFct
|
DmTaskAddTarget = dmTaskAddTargetFct
|
||||||
DmSetDevDir = dmSetDevDirFct
|
DmTaskCreate = dmTaskCreateFct
|
||||||
DmTaskAddTarget = dmTaskAddTargetFct
|
DmTaskDestroy = dmTaskDestroyFct
|
||||||
DmTaskCreate = dmTaskCreateFct
|
DmTaskGetInfo = dmTaskGetInfoFct
|
||||||
DmTaskDestroy = dmTaskDestroyFct
|
DmTaskRun = dmTaskRunFct
|
||||||
DmTaskGetInfo = dmTaskGetInfoFct
|
DmTaskSetAddNode = dmTaskSetAddNodeFct
|
||||||
DmTaskRun = dmTaskRunFct
|
DmTaskSetCookie = dmTaskSetCookieFct
|
||||||
DmTaskSetAddNode = dmTaskSetAddNodeFct
|
DmTaskSetMessage = dmTaskSetMessageFct
|
||||||
DmTaskSetCookie = dmTaskSetCookieFct
|
DmTaskSetName = dmTaskSetNameFct
|
||||||
DmTaskSetMessage = dmTaskSetMessageFct
|
DmTaskSetRo = dmTaskSetRoFct
|
||||||
DmTaskSetName = dmTaskSetNameFct
|
DmTaskSetSector = dmTaskSetSectorFct
|
||||||
DmTaskSetRo = dmTaskSetRoFct
|
DmUdevWait = dmUdevWaitFct
|
||||||
DmTaskSetSector = dmTaskSetSectorFct
|
LogWithErrnoInit = logWithErrnoInitFct
|
||||||
DmUdevWait = dmUdevWaitFct
|
|
||||||
GetBlockSize = getBlockSizeFct
|
|
||||||
LogWithErrnoInit = logWithErrnoInitFct
|
|
||||||
DmGetLoopbackBackingFile = dmGetLoopbackBackingFileFct
|
|
||||||
DmLoopbackSetCapacity = dmLoopbackSetCapacityFct
|
|
||||||
)
|
)
|
||||||
|
|
||||||
func free(p *C.char) {
|
func free(p *C.char) {
|
||||||
|
@ -185,28 +107,26 @@ func dmTaskCreateFct(taskType int) *CDmTask {
|
||||||
}
|
}
|
||||||
|
|
||||||
func dmTaskRunFct(task *CDmTask) int {
|
func dmTaskRunFct(task *CDmTask) int {
|
||||||
return int(C.dm_task_run((*C.struct_dm_task)(task)))
|
ret, _ := C.dm_task_run((*C.struct_dm_task)(task))
|
||||||
|
return int(ret)
|
||||||
}
|
}
|
||||||
|
|
||||||
func dmTaskSetNameFct(task *CDmTask, name string) int {
|
func dmTaskSetNameFct(task *CDmTask, name string) int {
|
||||||
Cname := C.CString(name)
|
Cname := C.CString(name)
|
||||||
defer free(Cname)
|
defer free(Cname)
|
||||||
|
|
||||||
return int(C.dm_task_set_name((*C.struct_dm_task)(task),
|
return int(C.dm_task_set_name((*C.struct_dm_task)(task), Cname))
|
||||||
Cname))
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func dmTaskSetMessageFct(task *CDmTask, message string) int {
|
func dmTaskSetMessageFct(task *CDmTask, message string) int {
|
||||||
Cmessage := C.CString(message)
|
Cmessage := C.CString(message)
|
||||||
defer free(Cmessage)
|
defer free(Cmessage)
|
||||||
|
|
||||||
return int(C.dm_task_set_message((*C.struct_dm_task)(task),
|
return int(C.dm_task_set_message((*C.struct_dm_task)(task), Cmessage))
|
||||||
Cmessage))
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func dmTaskSetSectorFct(task *CDmTask, sector uint64) int {
|
func dmTaskSetSectorFct(task *CDmTask, sector uint64) int {
|
||||||
return int(C.dm_task_set_sector((*C.struct_dm_task)(task),
|
return int(C.dm_task_set_sector((*C.struct_dm_task)(task), C.uint64_t(sector)))
|
||||||
C.uint64_t(sector)))
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func dmTaskSetCookieFct(task *CDmTask, cookie *uint, flags uint16) int {
|
func dmTaskSetCookieFct(task *CDmTask, cookie *uint, flags uint16) int {
|
||||||
|
@ -214,13 +134,11 @@ func dmTaskSetCookieFct(task *CDmTask, cookie *uint, flags uint16) int {
|
||||||
defer func() {
|
defer func() {
|
||||||
*cookie = uint(cCookie)
|
*cookie = uint(cCookie)
|
||||||
}()
|
}()
|
||||||
return int(C.dm_task_set_cookie((*C.struct_dm_task)(task), &cCookie,
|
return int(C.dm_task_set_cookie((*C.struct_dm_task)(task), &cCookie, C.uint16_t(flags)))
|
||||||
C.uint16_t(flags)))
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func dmTaskSetAddNodeFct(task *CDmTask, addNode AddNodeType) int {
|
func dmTaskSetAddNodeFct(task *CDmTask, addNode AddNodeType) int {
|
||||||
return int(C.dm_task_set_add_node((*C.struct_dm_task)(task),
|
return int(C.dm_task_set_add_node((*C.struct_dm_task)(task), C.dm_add_node_t(addNode)))
|
||||||
C.dm_add_node_t(addNode)))
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func dmTaskSetRoFct(task *CDmTask) int {
|
func dmTaskSetRoFct(task *CDmTask) int {
|
||||||
|
@ -236,26 +154,7 @@ func dmTaskAddTargetFct(task *CDmTask,
|
||||||
Cparams := C.CString(params)
|
Cparams := C.CString(params)
|
||||||
defer free(Cparams)
|
defer free(Cparams)
|
||||||
|
|
||||||
return int(C.dm_task_add_target((*C.struct_dm_task)(task),
|
return int(C.dm_task_add_target((*C.struct_dm_task)(task), C.uint64_t(start), C.uint64_t(size), Cttype, Cparams))
|
||||||
C.uint64_t(start), C.uint64_t(size), Cttype, Cparams))
|
|
||||||
}
|
|
||||||
|
|
||||||
func dmGetLoopbackBackingFileFct(fd uintptr) (uint64, uint64, sysErrno) {
|
|
||||||
var lo64 C.struct_loop_info64
|
|
||||||
_, _, err := sysSyscall(sysSysIoctl, fd, C.LOOP_GET_STATUS64,
|
|
||||||
uintptr(unsafe.Pointer(&lo64)))
|
|
||||||
return uint64(lo64.lo_device), uint64(lo64.lo_inode), sysErrno(err)
|
|
||||||
}
|
|
||||||
|
|
||||||
func dmLoopbackSetCapacityFct(fd uintptr) sysErrno {
|
|
||||||
_, _, err := sysSyscall(sysSysIoctl, fd, C.LOOP_SET_CAPACITY, 0)
|
|
||||||
return sysErrno(err)
|
|
||||||
}
|
|
||||||
|
|
||||||
func dmGetBlockSizeFct(fd uintptr) (int64, sysErrno) {
|
|
||||||
var size int64
|
|
||||||
_, _, err := sysSyscall(sysSysIoctl, fd, C.BLKGETSIZE64, uintptr(unsafe.Pointer(&size)))
|
|
||||||
return size, sysErrno(err)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func dmTaskGetInfoFct(task *CDmTask, info *Info) int {
|
func dmTaskGetInfoFct(task *CDmTask, info *Info) int {
|
||||||
|
@ -287,30 +186,10 @@ func dmGetNextTargetFct(task *CDmTask, next uintptr, start, length *uint64, targ
|
||||||
*params = C.GoString(Cparams)
|
*params = C.GoString(Cparams)
|
||||||
}()
|
}()
|
||||||
|
|
||||||
nextp := C.dm_get_next_target((*C.struct_dm_task)(task),
|
nextp := C.dm_get_next_target((*C.struct_dm_task)(task), unsafe.Pointer(next), &Cstart, &Clength, &CtargetType, &Cparams)
|
||||||
unsafe.Pointer(next), &Cstart, &Clength, &CtargetType, &Cparams)
|
|
||||||
return uintptr(nextp)
|
return uintptr(nextp)
|
||||||
}
|
}
|
||||||
|
|
||||||
func dmAttachLoopDeviceFct(filename string, fd *int) string {
|
|
||||||
cFilename := C.CString(filename)
|
|
||||||
defer free(cFilename)
|
|
||||||
|
|
||||||
var cFd C.int
|
|
||||||
defer func() {
|
|
||||||
*fd = int(cFd)
|
|
||||||
}()
|
|
||||||
|
|
||||||
ret := C.attach_loop_device(cFilename, &cFd)
|
|
||||||
defer free(ret)
|
|
||||||
return C.GoString(ret)
|
|
||||||
}
|
|
||||||
|
|
||||||
func getBlockSizeFct(fd uintptr, size *uint64) sysErrno {
|
|
||||||
_, _, err := sysSyscall(sysSysIoctl, fd, C.BLKGETSIZE64, uintptr(unsafe.Pointer(&size)))
|
|
||||||
return sysErrno(err)
|
|
||||||
}
|
|
||||||
|
|
||||||
func dmUdevWaitFct(cookie uint) int {
|
func dmUdevWaitFct(cookie uint) int {
|
||||||
return int(C.dm_udev_wait(C.uint32_t(cookie)))
|
return int(C.dm_udev_wait(C.uint32_t(cookie)))
|
||||||
}
|
}
|
||||||
|
|
|
@ -55,12 +55,6 @@ func denyAllDevmapper() {
|
||||||
DmGetNextTarget = func(task *CDmTask, next uintptr, start, length *uint64, target, params *string) uintptr {
|
DmGetNextTarget = func(task *CDmTask, next uintptr, start, length *uint64, target, params *string) uintptr {
|
||||||
panic("DmGetNextTarget: this method should not be called here")
|
panic("DmGetNextTarget: this method should not be called here")
|
||||||
}
|
}
|
||||||
DmAttachLoopDevice = func(filename string, fd *int) string {
|
|
||||||
panic("DmAttachLoopDevice: this method should not be called here")
|
|
||||||
}
|
|
||||||
DmGetBlockSize = func(fd uintptr) (int64, sysErrno) {
|
|
||||||
panic("DmGetBlockSize: this method should not be called here")
|
|
||||||
}
|
|
||||||
DmUdevWait = func(cookie uint) int {
|
DmUdevWait = func(cookie uint) int {
|
||||||
panic("DmUdevWait: this method should not be called here")
|
panic("DmUdevWait: this method should not be called here")
|
||||||
}
|
}
|
||||||
|
@ -76,9 +70,6 @@ func denyAllDevmapper() {
|
||||||
DmTaskDestroy = func(task *CDmTask) {
|
DmTaskDestroy = func(task *CDmTask) {
|
||||||
panic("DmTaskDestroy: this method should not be called here")
|
panic("DmTaskDestroy: this method should not be called here")
|
||||||
}
|
}
|
||||||
GetBlockSize = func(fd uintptr, size *uint64) sysErrno {
|
|
||||||
panic("GetBlockSize: this method should not be called here")
|
|
||||||
}
|
|
||||||
LogWithErrnoInit = func() {
|
LogWithErrnoInit = func() {
|
||||||
panic("LogWithErrnoInit: this method should not be called here")
|
panic("LogWithErrnoInit: this method should not be called here")
|
||||||
}
|
}
|
||||||
|
@ -155,11 +146,10 @@ func (r Set) Assert(t *testing.T, names ...string) {
|
||||||
|
|
||||||
func TestInit(t *testing.T) {
|
func TestInit(t *testing.T) {
|
||||||
var (
|
var (
|
||||||
calls = make(Set)
|
calls = make(Set)
|
||||||
devicesAttached = make(Set)
|
taskMessages = make(Set)
|
||||||
taskMessages = make(Set)
|
taskTypes = make(Set)
|
||||||
taskTypes = make(Set)
|
home = mkTestDirectory(t)
|
||||||
home = mkTestDirectory(t)
|
|
||||||
)
|
)
|
||||||
defer osRemoveAll(home)
|
defer osRemoveAll(home)
|
||||||
|
|
||||||
|
@ -233,29 +223,6 @@ func TestInit(t *testing.T) {
|
||||||
taskMessages[message] = true
|
taskMessages[message] = true
|
||||||
return 1
|
return 1
|
||||||
}
|
}
|
||||||
var (
|
|
||||||
fakeDataLoop = "/dev/loop42"
|
|
||||||
fakeMetadataLoop = "/dev/loop43"
|
|
||||||
fakeDataLoopFd = 42
|
|
||||||
fakeMetadataLoopFd = 43
|
|
||||||
)
|
|
||||||
var attachCount int
|
|
||||||
DmAttachLoopDevice = func(filename string, fd *int) string {
|
|
||||||
calls["DmAttachLoopDevice"] = true
|
|
||||||
if _, exists := devicesAttached[filename]; exists {
|
|
||||||
t.Fatalf("Already attached %s", filename)
|
|
||||||
}
|
|
||||||
devicesAttached[filename] = true
|
|
||||||
// This will crash if fd is not dereferenceable
|
|
||||||
if attachCount == 0 {
|
|
||||||
attachCount++
|
|
||||||
*fd = fakeDataLoopFd
|
|
||||||
return fakeDataLoop
|
|
||||||
} else {
|
|
||||||
*fd = fakeMetadataLoopFd
|
|
||||||
return fakeMetadataLoop
|
|
||||||
}
|
|
||||||
}
|
|
||||||
DmTaskDestroy = func(task *CDmTask) {
|
DmTaskDestroy = func(task *CDmTask) {
|
||||||
calls["DmTaskDestroy"] = true
|
calls["DmTaskDestroy"] = true
|
||||||
expectedTask := &task1
|
expectedTask := &task1
|
||||||
|
@ -263,14 +230,6 @@ func TestInit(t *testing.T) {
|
||||||
t.Fatalf("Wrong libdevmapper call\nExpected: DmTaskDestroy(%v)\nReceived: DmTaskDestroy(%v)\n", expectedTask, task)
|
t.Fatalf("Wrong libdevmapper call\nExpected: DmTaskDestroy(%v)\nReceived: DmTaskDestroy(%v)\n", expectedTask, task)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
fakeBlockSize := int64(4242 * 512)
|
|
||||||
DmGetBlockSize = func(fd uintptr) (int64, sysErrno) {
|
|
||||||
calls["DmGetBlockSize"] = true
|
|
||||||
if expectedFd := uintptr(42); fd != expectedFd {
|
|
||||||
t.Fatalf("Wrong libdevmapper call\nExpected: DmGetBlockSize(%v)\nReceived: DmGetBlockSize(%v)\n", expectedFd, fd)
|
|
||||||
}
|
|
||||||
return fakeBlockSize, 0
|
|
||||||
}
|
|
||||||
DmTaskAddTarget = func(task *CDmTask, start, size uint64, ttype, params string) int {
|
DmTaskAddTarget = func(task *CDmTask, start, size uint64, ttype, params string) int {
|
||||||
calls["DmTaskSetTarget"] = true
|
calls["DmTaskSetTarget"] = true
|
||||||
expectedTask := &task1
|
expectedTask := &task1
|
||||||
|
@ -345,11 +304,9 @@ func TestInit(t *testing.T) {
|
||||||
"DmTaskSetName",
|
"DmTaskSetName",
|
||||||
"DmTaskRun",
|
"DmTaskRun",
|
||||||
"DmTaskGetInfo",
|
"DmTaskGetInfo",
|
||||||
"DmAttachLoopDevice",
|
|
||||||
"DmTaskDestroy",
|
"DmTaskDestroy",
|
||||||
"execRun",
|
"execRun",
|
||||||
"DmTaskCreate",
|
"DmTaskCreate",
|
||||||
"DmGetBlockSize",
|
|
||||||
"DmTaskSetTarget",
|
"DmTaskSetTarget",
|
||||||
"DmTaskSetCookie",
|
"DmTaskSetCookie",
|
||||||
"DmUdevWait",
|
"DmUdevWait",
|
||||||
|
@ -357,7 +314,6 @@ func TestInit(t *testing.T) {
|
||||||
"DmTaskSetMessage",
|
"DmTaskSetMessage",
|
||||||
"DmTaskSetAddNode",
|
"DmTaskSetAddNode",
|
||||||
)
|
)
|
||||||
devicesAttached.Assert(t, path.Join(home, "devicemapper", "data"), path.Join(home, "devicemapper", "metadata"))
|
|
||||||
taskTypes.Assert(t, "0", "6", "17")
|
taskTypes.Assert(t, "0", "6", "17")
|
||||||
taskMessages.Assert(t, "create_thin 0", "set_transaction_id 0 1")
|
taskMessages.Assert(t, "create_thin 0", "set_transaction_id 0 1")
|
||||||
}
|
}
|
||||||
|
@ -408,17 +364,9 @@ func mockAllDevmapper(calls Set) {
|
||||||
calls["DmTaskSetMessage"] = true
|
calls["DmTaskSetMessage"] = true
|
||||||
return 1
|
return 1
|
||||||
}
|
}
|
||||||
DmAttachLoopDevice = func(filename string, fd *int) string {
|
|
||||||
calls["DmAttachLoopDevice"] = true
|
|
||||||
return "/dev/loop42"
|
|
||||||
}
|
|
||||||
DmTaskDestroy = func(task *CDmTask) {
|
DmTaskDestroy = func(task *CDmTask) {
|
||||||
calls["DmTaskDestroy"] = true
|
calls["DmTaskDestroy"] = true
|
||||||
}
|
}
|
||||||
DmGetBlockSize = func(fd uintptr) (int64, sysErrno) {
|
|
||||||
calls["DmGetBlockSize"] = true
|
|
||||||
return int64(4242 * 512), 0
|
|
||||||
}
|
|
||||||
DmTaskAddTarget = func(task *CDmTask, start, size uint64, ttype, params string) int {
|
DmTaskAddTarget = func(task *CDmTask, start, size uint64, ttype, params string) int {
|
||||||
calls["DmTaskSetTarget"] = true
|
calls["DmTaskSetTarget"] = true
|
||||||
return 1
|
return 1
|
||||||
|
@ -489,6 +437,32 @@ func TestDriverCreate(t *testing.T) {
|
||||||
return false, nil
|
return false, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
sysSyscall = func(trap, a1, a2, a3 uintptr) (r1, r2 uintptr, err syscall.Errno) {
|
||||||
|
calls["sysSyscall"] = true
|
||||||
|
if trap != sysSysIoctl {
|
||||||
|
t.Fatalf("Unexpected syscall. Expecting SYS_IOCTL, received: %d", trap)
|
||||||
|
}
|
||||||
|
switch a2 {
|
||||||
|
case LoopSetFd:
|
||||||
|
calls["ioctl.loopsetfd"] = true
|
||||||
|
case LoopCtlGetFree:
|
||||||
|
calls["ioctl.loopctlgetfree"] = true
|
||||||
|
case LoopGetStatus64:
|
||||||
|
calls["ioctl.loopgetstatus"] = true
|
||||||
|
case LoopSetStatus64:
|
||||||
|
calls["ioctl.loopsetstatus"] = true
|
||||||
|
case LoopClrFd:
|
||||||
|
calls["ioctl.loopclrfd"] = true
|
||||||
|
case LoopSetCapacity:
|
||||||
|
calls["ioctl.loopsetcapacity"] = true
|
||||||
|
case BlkGetSize64:
|
||||||
|
calls["ioctl.blkgetsize"] = true
|
||||||
|
default:
|
||||||
|
t.Fatalf("Unexpected IOCTL. Received %d", a2)
|
||||||
|
}
|
||||||
|
return 0, 0, 0
|
||||||
|
}
|
||||||
|
|
||||||
func() {
|
func() {
|
||||||
d := newDriver(t)
|
d := newDriver(t)
|
||||||
|
|
||||||
|
@ -498,16 +472,18 @@ func TestDriverCreate(t *testing.T) {
|
||||||
"DmTaskSetName",
|
"DmTaskSetName",
|
||||||
"DmTaskRun",
|
"DmTaskRun",
|
||||||
"DmTaskGetInfo",
|
"DmTaskGetInfo",
|
||||||
"DmAttachLoopDevice",
|
|
||||||
"execRun",
|
"execRun",
|
||||||
"DmTaskCreate",
|
"DmTaskCreate",
|
||||||
"DmGetBlockSize",
|
|
||||||
"DmTaskSetTarget",
|
"DmTaskSetTarget",
|
||||||
"DmTaskSetCookie",
|
"DmTaskSetCookie",
|
||||||
"DmUdevWait",
|
"DmUdevWait",
|
||||||
"DmTaskSetSector",
|
"DmTaskSetSector",
|
||||||
"DmTaskSetMessage",
|
"DmTaskSetMessage",
|
||||||
"DmTaskSetAddNode",
|
"DmTaskSetAddNode",
|
||||||
|
"sysSyscall",
|
||||||
|
"ioctl.blkgetsize",
|
||||||
|
"ioctl.loopsetfd",
|
||||||
|
"ioctl.loopsetstatus",
|
||||||
)
|
)
|
||||||
|
|
||||||
if err := d.Create("1", ""); err != nil {
|
if err := d.Create("1", ""); err != nil {
|
||||||
|
@ -579,6 +555,32 @@ func TestDriverRemove(t *testing.T) {
|
||||||
return false, nil
|
return false, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
sysSyscall = func(trap, a1, a2, a3 uintptr) (r1, r2 uintptr, err syscall.Errno) {
|
||||||
|
calls["sysSyscall"] = true
|
||||||
|
if trap != sysSysIoctl {
|
||||||
|
t.Fatalf("Unexpected syscall. Expecting SYS_IOCTL, received: %d", trap)
|
||||||
|
}
|
||||||
|
switch a2 {
|
||||||
|
case LoopSetFd:
|
||||||
|
calls["ioctl.loopsetfd"] = true
|
||||||
|
case LoopCtlGetFree:
|
||||||
|
calls["ioctl.loopctlgetfree"] = true
|
||||||
|
case LoopGetStatus64:
|
||||||
|
calls["ioctl.loopgetstatus"] = true
|
||||||
|
case LoopSetStatus64:
|
||||||
|
calls["ioctl.loopsetstatus"] = true
|
||||||
|
case LoopClrFd:
|
||||||
|
calls["ioctl.loopclrfd"] = true
|
||||||
|
case LoopSetCapacity:
|
||||||
|
calls["ioctl.loopsetcapacity"] = true
|
||||||
|
case BlkGetSize64:
|
||||||
|
calls["ioctl.blkgetsize"] = true
|
||||||
|
default:
|
||||||
|
t.Fatalf("Unexpected IOCTL. Received %d", a2)
|
||||||
|
}
|
||||||
|
return 0, 0, 0
|
||||||
|
}
|
||||||
|
|
||||||
func() {
|
func() {
|
||||||
d := newDriver(t)
|
d := newDriver(t)
|
||||||
|
|
||||||
|
@ -588,16 +590,18 @@ func TestDriverRemove(t *testing.T) {
|
||||||
"DmTaskSetName",
|
"DmTaskSetName",
|
||||||
"DmTaskRun",
|
"DmTaskRun",
|
||||||
"DmTaskGetInfo",
|
"DmTaskGetInfo",
|
||||||
"DmAttachLoopDevice",
|
|
||||||
"execRun",
|
"execRun",
|
||||||
"DmTaskCreate",
|
"DmTaskCreate",
|
||||||
"DmGetBlockSize",
|
|
||||||
"DmTaskSetTarget",
|
"DmTaskSetTarget",
|
||||||
"DmTaskSetCookie",
|
"DmTaskSetCookie",
|
||||||
"DmUdevWait",
|
"DmUdevWait",
|
||||||
"DmTaskSetSector",
|
"DmTaskSetSector",
|
||||||
"DmTaskSetMessage",
|
"DmTaskSetMessage",
|
||||||
"DmTaskSetAddNode",
|
"DmTaskSetAddNode",
|
||||||
|
"sysSyscall",
|
||||||
|
"ioctl.blkgetsize",
|
||||||
|
"ioctl.loopsetfd",
|
||||||
|
"ioctl.loopsetstatus",
|
||||||
)
|
)
|
||||||
|
|
||||||
if err := d.Create("1", ""); err != nil {
|
if err := d.Create("1", ""); err != nil {
|
||||||
|
|
|
@ -0,0 +1,58 @@
|
||||||
|
package devmapper
|
||||||
|
|
||||||
|
import (
|
||||||
|
"unsafe"
|
||||||
|
)
|
||||||
|
|
||||||
|
func ioctlLoopCtlGetFree(fd uintptr) (int, error) {
|
||||||
|
index, _, err := sysSyscall(sysSysIoctl, fd, LoopCtlGetFree, 0)
|
||||||
|
if err != 0 {
|
||||||
|
return 0, err
|
||||||
|
}
|
||||||
|
return int(index), nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func ioctlLoopSetFd(loopFd, sparseFd uintptr) error {
|
||||||
|
if _, _, err := sysSyscall(sysSysIoctl, loopFd, LoopSetFd, sparseFd); err != 0 {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func ioctlLoopSetStatus64(loopFd uintptr, loopInfo *LoopInfo64) error {
|
||||||
|
if _, _, err := sysSyscall(sysSysIoctl, loopFd, LoopSetStatus64, uintptr(unsafe.Pointer(loopInfo))); err != 0 {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func ioctlLoopClrFd(loopFd uintptr) error {
|
||||||
|
if _, _, err := sysSyscall(sysSysIoctl, loopFd, LoopClrFd, 0); err != 0 {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func ioctlLoopGetStatus64(loopFd uintptr) (*LoopInfo64, error) {
|
||||||
|
loopInfo := &LoopInfo64{}
|
||||||
|
|
||||||
|
if _, _, err := sysSyscall(sysSysIoctl, loopFd, LoopGetStatus64, uintptr(unsafe.Pointer(loopInfo))); err != 0 {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
return loopInfo, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func ioctlLoopSetCapacity(loopFd uintptr, value int) error {
|
||||||
|
if _, _, err := sysSyscall(sysSysIoctl, loopFd, LoopSetCapacity, uintptr(value)); err != 0 {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func ioctlBlkGetSize64(fd uintptr) (int64, error) {
|
||||||
|
var size int64
|
||||||
|
if _, _, err := sysSyscall(sysSysIoctl, fd, BlkGetSize64, uintptr(unsafe.Pointer(&size))); err != 0 {
|
||||||
|
return 0, err
|
||||||
|
}
|
||||||
|
return size, nil
|
||||||
|
}
|
|
@ -19,7 +19,11 @@ var (
|
||||||
sysCloseOnExec = syscall.CloseOnExec
|
sysCloseOnExec = syscall.CloseOnExec
|
||||||
sysSyscall = syscall.Syscall
|
sysSyscall = syscall.Syscall
|
||||||
|
|
||||||
osOpenFile = os.OpenFile
|
osOpenFile = func(name string, flag int, perm os.FileMode) (*osFile, error) {
|
||||||
|
f, err := os.OpenFile(name, flag, perm)
|
||||||
|
return &osFile{File: f}, err
|
||||||
|
}
|
||||||
|
osOpen = func(name string) (*osFile, error) { f, err := os.Open(name); return &osFile{File: f}, err }
|
||||||
osNewFile = os.NewFile
|
osNewFile = os.NewFile
|
||||||
osCreate = os.Create
|
osCreate = os.Create
|
||||||
osStat = os.Stat
|
osStat = os.Stat
|
||||||
|
@ -30,9 +34,7 @@ var (
|
||||||
osRename = os.Rename
|
osRename = os.Rename
|
||||||
osReadlink = os.Readlink
|
osReadlink = os.Readlink
|
||||||
|
|
||||||
execRun = func(name string, args ...string) error {
|
execRun = func(name string, args ...string) error { return exec.Command(name, args...).Run() }
|
||||||
return exec.Command(name, args...).Run()
|
|
||||||
}
|
|
||||||
)
|
)
|
||||||
|
|
||||||
const (
|
const (
|
||||||
|
@ -40,9 +42,12 @@ const (
|
||||||
sysMsRdOnly = syscall.MS_RDONLY
|
sysMsRdOnly = syscall.MS_RDONLY
|
||||||
sysEInval = syscall.EINVAL
|
sysEInval = syscall.EINVAL
|
||||||
sysSysIoctl = syscall.SYS_IOCTL
|
sysSysIoctl = syscall.SYS_IOCTL
|
||||||
|
sysEBusy = syscall.EBUSY
|
||||||
|
|
||||||
osORdWr = os.O_RDWR
|
osORdOnly = os.O_RDONLY
|
||||||
osOCreate = os.O_CREATE
|
osORdWr = os.O_RDWR
|
||||||
|
osOCreate = os.O_CREATE
|
||||||
|
osModeDevice = os.ModeDevice
|
||||||
)
|
)
|
||||||
|
|
||||||
func toSysStatT(i interface{}) *sysStatT {
|
func toSysStatT(i interface{}) *sysStatT {
|
||||||
|
|
Loading…
Reference in New Issue