moby--moby/devmapper/devmapper.go

349 lines
7.9 KiB
Go
Raw Normal View History

2013-09-04 09:14:31 +00:00
package devmapper
/*
#cgo LDFLAGS: -L. -ldevmapper
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <libdevmapper.h>
#include <linux/loop.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <sys/ioctl.h>
#include <linux/fs.h>
#include <errno.h>
static 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) {
2013-09-04 09:14:31 +00:00
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) {
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) || !S_ISBLK(st.st_mode)) {
close(fd);
return NULL;
}
loop_fd = open(buf, O_RDWR);
if (loop_fd < 0 && errno == ENOENT) {
close(fd);
fprintf (stderr, "no available loopback device!");
return NULL;
} else if (loop_fd < 0)
continue;
if (ioctl (loop_fd, LOOP_SET_FD, (void *)(size_t)fd) < 0) {
close(loop_fd);
loop_fd = -1;
if (errno != EBUSY) {
close (fd);
fprintf (stderr, "cannot set up loopback device %s", buf);
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) {
ioctl(loop_fd, LOOP_CLR_FD, 0);
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;
}
static int64_t
get_block_size(int fd)
{
uint64_t size;
if (ioctl(fd, BLKGETSIZE64, &size) == -1)
return -1;
return (int64_t)size;
}
*/
import "C"
2013-10-03 03:18:15 +00:00
import (
"fmt"
"github.com/dotcloud/docker/utils"
"os"
"runtime"
"unsafe"
)
2013-09-04 09:14:31 +00:00
func SetDevDir(dir string) error {
c_dir := C.CString(dir)
defer C.free(unsafe.Pointer(c_dir))
2013-10-03 03:18:15 +00:00
if res := C.dm_set_dev_dir(c_dir); res != 1 {
utils.Debugf("Error dm_set_dev_dir")
2013-09-04 09:14:31 +00:00
return fmt.Errorf("dm_set_dev_dir failed")
}
return nil
}
func GetLibraryVersion() (string, error) {
2013-10-03 03:18:15 +00:00
buffer := make([]byte, 128)
if res := C.dm_get_library_version((*C.char)(unsafe.Pointer(&buffer)), 128); res != 1 {
2013-09-04 09:14:31 +00:00
return "", fmt.Errorf("dm_get_library_version failed")
}
2013-10-03 03:18:15 +00:00
return string(buffer), nil
2013-09-04 09:14:31 +00:00
}
type TaskType int
const (
DeviceCreate TaskType = iota
DeviceReload
DeviceRemove
DeviceRemoveAll
DeviceSuspend
DeviceResume
DeviceInfo
DeviceDeps
DeviceRename
DeviceVersion
DeviceStatus
DeviceTable
DeviceWaitevent
DeviceList
DeviceClear
DeviceMknodes
DeviceListVersions
DeviceTargetMsg
DeviceSetGeometry
)
type Task struct {
unmanaged *C.struct_dm_task
}
type Info struct {
Exists int
Suspended int
LiveTable int
InactiveTable int
OpenCount int32
EventNr uint32
Major uint32
Minor uint32
ReadOnly int
TargetCount int32
}
func (t *Task) destroy() {
if t != nil {
C.dm_task_destroy(t.unmanaged)
runtime.SetFinalizer(t, nil)
}
}
func TaskCreate(tasktype TaskType) *Task {
2013-10-03 03:18:15 +00:00
c_task := C.dm_task_create(C.int(tasktype))
2013-09-04 09:14:31 +00:00
if c_task == nil {
return nil
}
2013-10-03 03:18:15 +00:00
task := &Task{unmanaged: c_task}
2013-09-04 09:14:31 +00:00
runtime.SetFinalizer(task, (*Task).destroy)
return task
}
func (t *Task) Run() error {
2013-10-03 03:18:15 +00:00
if res := C.dm_task_run(t.unmanaged); res != 1 {
2013-09-04 09:14:31 +00:00
return fmt.Errorf("dm_task_run failed")
}
return nil
}
func (t *Task) SetName(name string) error {
c_name := C.CString(name)
defer C.free(unsafe.Pointer(c_name))
2013-10-03 03:18:15 +00:00
if res := C.dm_task_set_name(t.unmanaged, c_name); res != 1 {
if os.Getenv("DEBUG") != "" {
C.perror(C.CString(fmt.Sprintf("[debug] Error dm_task_set_name(%s, %#v)", name, t.unmanaged)))
}
2013-09-04 09:14:31 +00:00
return fmt.Errorf("dm_task_set_name failed")
}
return nil
}
func (t *Task) SetMessage(message string) error {
c_message := C.CString(message)
defer C.free(unsafe.Pointer(c_message))
2013-10-03 03:18:15 +00:00
if res := C.dm_task_set_message(t.unmanaged, c_message); res != 1 {
2013-09-04 09:14:31 +00:00
return fmt.Errorf("dm_task_set_message failed")
}
return nil
}
func (t *Task) SetSector(sector uint64) error {
2013-10-03 03:18:15 +00:00
if res := C.dm_task_set_sector(t.unmanaged, C.uint64_t(sector)); res != 1 {
2013-09-04 09:14:31 +00:00
return fmt.Errorf("dm_task_set_add_node failed")
}
return nil
}
func (t *Task) SetCookie(cookie *uint32, flags uint16) error {
2013-10-03 03:18:15 +00:00
c_cookie := C.uint32_t(*cookie)
if res := C.dm_task_set_cookie(t.unmanaged, &c_cookie, C.uint16_t(flags)); res != 1 {
2013-09-04 09:14:31 +00:00
return fmt.Errorf("dm_task_set_add_node failed")
}
*cookie = uint32(c_cookie)
return nil
}
func (t *Task) SetRo() error {
2013-10-03 03:18:15 +00:00
if res := C.dm_task_set_ro(t.unmanaged); res != 1 {
2013-09-04 09:14:31 +00:00
return fmt.Errorf("dm_task_set_ro failed")
}
return nil
}
func (t *Task) AddTarget(start uint64, size uint64, ttype string, params string) error {
c_ttype := C.CString(ttype)
defer C.free(unsafe.Pointer(c_ttype))
c_params := C.CString(params)
defer C.free(unsafe.Pointer(c_params))
2013-10-03 03:18:15 +00:00
if res := C.dm_task_add_target(t.unmanaged, C.uint64_t(start), C.uint64_t(size), c_ttype, c_params); res != 1 {
2013-09-04 09:14:31 +00:00
return fmt.Errorf("dm_task_add_target failed")
}
return nil
}
func (t *Task) GetDriverVersion() (string, error) {
buffer := (*C.char)(C.malloc(128))
defer C.free(unsafe.Pointer(buffer))
2013-10-03 03:18:15 +00:00
if res := C.dm_task_get_driver_version(t.unmanaged, buffer, 128); res != 1 {
2013-09-04 09:14:31 +00:00
return "", fmt.Errorf("dm_task_get_driver_version")
}
2013-10-03 03:18:15 +00:00
return C.GoString(buffer), nil
2013-09-04 09:14:31 +00:00
}
func (t *Task) GetInfo() (*Info, error) {
c_info := C.struct_dm_info{}
2013-10-03 03:18:15 +00:00
if res := C.dm_task_get_info(t.unmanaged, &c_info); res != 1 {
2013-09-04 09:14:31 +00:00
return nil, fmt.Errorf("dm_task_get_driver_version")
}
2013-10-03 03:18:15 +00:00
return &Info{
Exists: int(c_info.exists),
Suspended: int(c_info.suspended),
LiveTable: int(c_info.live_table),
InactiveTable: int(c_info.inactive_table),
OpenCount: int32(c_info.open_count),
EventNr: uint32(c_info.event_nr),
Major: uint32(c_info.major),
Minor: uint32(c_info.minor),
ReadOnly: int(c_info.read_only),
TargetCount: int32(c_info.target_count),
}, nil
2013-09-04 09:14:31 +00:00
}
func (t *Task) GetNextTarget(next uintptr) (uintptr, uint64, uint64, string, string) {
2013-10-03 03:18:15 +00:00
var (
c_start, c_length C.uint64_t
c_target_type, c_params *C.char
)
2013-09-04 09:14:31 +00:00
2013-10-03 03:18:15 +00:00
nextp := C.dm_get_next_target(t.unmanaged, unsafe.Pointer(next), &c_start, &c_length, &c_target_type, &c_params)
return uintptr(nextp), uint64(c_start), uint64(c_length), C.GoString(c_target_type), C.GoString(c_params)
2013-09-04 09:14:31 +00:00
}
func AttachLoopDevice(filename string) (*os.File, error) {
c_filename := C.CString(filename)
defer C.free(unsafe.Pointer(c_filename))
var fd C.int
res := C.attach_loop_device(c_filename, &fd)
if res == nil {
return nil, fmt.Errorf("error loopback mounting")
}
2013-10-03 03:18:15 +00:00
defer C.free(unsafe.Pointer(res))
return os.NewFile(uintptr(fd), C.GoString(res)), nil
2013-09-04 09:14:31 +00:00
}
func GetBlockDeviceSize(file *os.File) (uint64, error) {
2013-10-03 03:18:15 +00:00
if size := C.get_block_size(C.int(file.Fd())); size == -1 {
2013-09-04 09:14:31 +00:00
return 0, fmt.Errorf("Can't get block size")
2013-10-03 03:18:15 +00:00
} else {
return uint64(size), nil
2013-09-04 09:14:31 +00:00
}
}
func UdevWait(cookie uint32) error {
res := C.dm_udev_wait(C.uint32_t(cookie))
if res != 1 {
return fmt.Errorf("Failed to wait on udev cookie %d", cookie)
}
return nil
}
func LogInitVerbose(level int) {
C.dm_log_init_verbose(C.int(level))
}
// Useful helper for cleanup
func RemoveDevice(name string) error {
task := TaskCreate(DeviceRemove)
if task == nil {
return fmt.Errorf("Can't create task of type DeviceRemove")
}
2013-10-03 03:18:15 +00:00
if err := task.SetName(name); err != nil {
return fmt.Errorf("Can't set task name %s", name)
}
2013-10-03 03:18:15 +00:00
if err := task.Run(); err != nil {
return fmt.Errorf("Error running removeDevice")
}
return nil
}