2015-01-13 06:15:32 +00:00
|
|
|
package rbd
|
|
|
|
|
|
|
|
// #cgo LDFLAGS: -lrbd
|
2019-12-09 18:43:49 +00:00
|
|
|
// /* force XSI-complaint strerror_r() */
|
|
|
|
// #define _POSIX_C_SOURCE 200112L
|
|
|
|
// #undef _GNU_SOURCE
|
2015-07-20 04:15:40 +00:00
|
|
|
// #include <errno.h>
|
2015-01-13 06:15:32 +00:00
|
|
|
// #include <stdlib.h>
|
|
|
|
// #include <rados/librados.h>
|
|
|
|
// #include <rbd/librbd.h>
|
2018-09-14 21:52:24 +00:00
|
|
|
// #include <rbd/features.h>
|
2015-01-13 06:15:32 +00:00
|
|
|
import "C"
|
|
|
|
|
|
|
|
import (
|
2015-02-11 21:21:05 +00:00
|
|
|
"bytes"
|
|
|
|
"errors"
|
|
|
|
"fmt"
|
|
|
|
"io"
|
2018-09-14 23:31:19 +00:00
|
|
|
"time"
|
2015-02-11 21:21:05 +00:00
|
|
|
"unsafe"
|
2019-12-13 16:42:50 +00:00
|
|
|
|
2019-12-12 19:02:44 +00:00
|
|
|
"github.com/ceph/go-ceph/errutil"
|
2019-12-13 16:42:50 +00:00
|
|
|
"github.com/ceph/go-ceph/rados"
|
2015-01-13 06:15:32 +00:00
|
|
|
)
|
|
|
|
|
2018-09-14 14:38:01 +00:00
|
|
|
const (
|
2018-09-14 14:59:08 +00:00
|
|
|
// RBD features.
|
2019-12-12 10:17:28 +00:00
|
|
|
RbdFeatureLayering = uint64(C.RBD_FEATURE_LAYERING)
|
|
|
|
RbdFeatureStripingV2 = uint64(C.RBD_FEATURE_STRIPINGV2)
|
|
|
|
RbdFeatureExclusiveLock = uint64(C.RBD_FEATURE_EXCLUSIVE_LOCK)
|
|
|
|
RbdFeatureObjectMap = uint64(C.RBD_FEATURE_OBJECT_MAP)
|
|
|
|
RbdFeatureFastDiff = uint64(C.RBD_FEATURE_FAST_DIFF)
|
|
|
|
RbdFeatureDeepFlatten = uint64(C.RBD_FEATURE_DEEP_FLATTEN)
|
|
|
|
RbdFeatureJournaling = uint64(C.RBD_FEATURE_JOURNALING)
|
|
|
|
RbdFeatureDataPool = uint64(C.RBD_FEATURE_DATA_POOL)
|
2018-09-14 21:52:24 +00:00
|
|
|
|
2019-12-12 10:17:28 +00:00
|
|
|
RbdFeaturesDefault = uint64(C.RBD_FEATURES_DEFAULT)
|
2018-09-14 14:59:08 +00:00
|
|
|
|
|
|
|
// Features that make an image inaccessible for read or write by clients that don't understand
|
|
|
|
// them.
|
2019-12-12 10:17:28 +00:00
|
|
|
RbdFeaturesIncompatible = uint64(C.RBD_FEATURES_INCOMPATIBLE)
|
2018-09-14 14:59:08 +00:00
|
|
|
|
|
|
|
// Features that make an image unwritable by clients that don't understand them.
|
2019-12-12 10:17:28 +00:00
|
|
|
RbdFeaturesRwIncompatible = uint64(C.RBD_FEATURES_RW_INCOMPATIBLE)
|
2018-09-14 14:59:08 +00:00
|
|
|
|
|
|
|
// Features that may be dynamically enabled or disabled.
|
2019-12-12 10:17:28 +00:00
|
|
|
RbdFeaturesMutable = uint64(C.RBD_FEATURES_MUTABLE)
|
2018-09-14 14:59:08 +00:00
|
|
|
|
|
|
|
// Features that only work when used with a single client using the image for writes.
|
2019-12-12 10:17:28 +00:00
|
|
|
RbdFeaturesSingleClient = uint64(C.RBD_FEATURES_SINGLE_CLIENT)
|
2019-12-10 11:10:45 +00:00
|
|
|
|
|
|
|
// Image.Seek() constants
|
|
|
|
SeekSet = int(C.SEEK_SET)
|
|
|
|
SeekCur = int(C.SEEK_CUR)
|
|
|
|
SeekEnd = int(C.SEEK_END)
|
2018-09-14 14:38:01 +00:00
|
|
|
)
|
|
|
|
|
2019-12-09 13:19:30 +00:00
|
|
|
// bits for Image.validate() and Snapshot.validate()
|
|
|
|
const (
|
|
|
|
imageNeedsName uint32 = 1 << iota
|
|
|
|
imageNeedsIOContext
|
|
|
|
imageIsOpen
|
|
|
|
snapshotNeedsName
|
|
|
|
)
|
|
|
|
|
2015-01-13 06:15:32 +00:00
|
|
|
//
|
|
|
|
type RBDError int
|
2015-02-11 21:21:05 +00:00
|
|
|
|
2018-09-14 14:38:01 +00:00
|
|
|
var (
|
2019-12-12 17:25:42 +00:00
|
|
|
ErrNoIOContext = errors.New("RBD image does not have an IOContext")
|
|
|
|
ErrNoName = errors.New("RBD image does not have a name")
|
|
|
|
ErrSnapshotNoName = errors.New("RBD snapshot does not have a name")
|
|
|
|
ErrImageNotOpen = errors.New("RBD image not open")
|
|
|
|
ErrNotFound = errors.New("RBD image not found")
|
|
|
|
|
|
|
|
// retained for compatibility with old versions
|
|
|
|
RbdErrorImageNotOpen = ErrImageNotOpen
|
|
|
|
RbdErrorNotFound = ErrNotFound
|
2018-09-14 14:38:01 +00:00
|
|
|
)
|
2015-01-14 23:39:19 +00:00
|
|
|
|
|
|
|
//
|
|
|
|
type ImageInfo struct {
|
2015-02-11 21:21:05 +00:00
|
|
|
Size uint64
|
|
|
|
Obj_size uint64
|
|
|
|
Num_objs uint64
|
|
|
|
Order int
|
|
|
|
Block_name_prefix string
|
|
|
|
Parent_pool int64
|
|
|
|
Parent_name string
|
2015-01-14 23:39:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
type SnapInfo struct {
|
2015-02-11 21:21:05 +00:00
|
|
|
Id uint64
|
|
|
|
Size uint64
|
|
|
|
Name string
|
2015-01-14 23:39:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
type Locker struct {
|
2015-02-11 21:21:05 +00:00
|
|
|
Client string
|
|
|
|
Cookie string
|
|
|
|
Addr string
|
2015-01-14 23:39:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
type Image struct {
|
2015-02-11 21:21:05 +00:00
|
|
|
io.Reader
|
|
|
|
io.Writer
|
|
|
|
io.Seeker
|
|
|
|
io.ReaderAt
|
|
|
|
io.WriterAt
|
|
|
|
name string
|
|
|
|
offset int64
|
|
|
|
ioctx *rados.IOContext
|
|
|
|
image C.rbd_image_t
|
2015-01-14 23:39:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
type Snapshot struct {
|
2015-02-11 21:21:05 +00:00
|
|
|
image *Image
|
|
|
|
name string
|
2015-01-14 23:39:19 +00:00
|
|
|
}
|
|
|
|
|
2018-09-14 23:31:19 +00:00
|
|
|
// TrashInfo contains information about trashed RBDs.
|
|
|
|
type TrashInfo struct {
|
|
|
|
Id string // Id string, required to remove / restore trashed RBDs.
|
|
|
|
Name string // Original name of trashed RBD.
|
|
|
|
DeletionTime time.Time // Date / time at which the RBD was moved to the trash.
|
|
|
|
DefermentEndTime time.Time // Date / time after which the trashed RBD may be permanently deleted.
|
|
|
|
}
|
|
|
|
|
2015-01-14 23:39:19 +00:00
|
|
|
//
|
|
|
|
func split(buf []byte) (values []string) {
|
2015-02-11 21:21:05 +00:00
|
|
|
tmp := bytes.Split(buf[:len(buf)-1], []byte{0})
|
|
|
|
for _, s := range tmp {
|
|
|
|
if len(s) > 0 {
|
|
|
|
go_s := C.GoString((*C.char)(unsafe.Pointer(&s[0])))
|
|
|
|
values = append(values, go_s)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return values
|
2015-01-14 23:39:19 +00:00
|
|
|
}
|
2015-01-13 06:15:32 +00:00
|
|
|
|
2019-12-09 13:19:30 +00:00
|
|
|
// test if a bit is set in the given value
|
|
|
|
func hasBit(value, bit uint32) bool {
|
|
|
|
return (value & bit) == bit
|
|
|
|
}
|
|
|
|
|
|
|
|
// validate the attributes listed in the req bitmask, and return an error in
|
|
|
|
// case the attribute is not set
|
|
|
|
func (image *Image) validate(req uint32) error {
|
|
|
|
if hasBit(req, imageNeedsName) && image.name == "" {
|
2019-12-12 17:25:42 +00:00
|
|
|
return ErrNoName
|
2019-12-09 13:19:30 +00:00
|
|
|
} else if hasBit(req, imageNeedsIOContext) && image.ioctx == nil {
|
2019-12-12 17:25:42 +00:00
|
|
|
return ErrNoIOContext
|
2019-12-09 13:19:30 +00:00
|
|
|
} else if hasBit(req, imageIsOpen) && image.image == nil {
|
2019-12-12 17:25:42 +00:00
|
|
|
return ErrImageNotOpen
|
2019-12-09 13:19:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// validate the attributes listed in the req bitmask, and return an error in
|
|
|
|
// case the attribute is not set
|
|
|
|
// Calls snapshot.image.validate(req) to validate the image attributes.
|
|
|
|
func (snapshot *Snapshot) validate(req uint32) error {
|
|
|
|
if hasBit(req, snapshotNeedsName) && snapshot.name == "" {
|
2019-12-12 17:25:42 +00:00
|
|
|
return ErrSnapshotNoName
|
2019-12-09 13:19:30 +00:00
|
|
|
} else if snapshot.image != nil {
|
|
|
|
return snapshot.image.validate(req)
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2015-01-13 06:15:32 +00:00
|
|
|
func (e RBDError) Error() string {
|
2019-12-12 19:02:44 +00:00
|
|
|
errno, s := errutil.FormatErrno(int(e))
|
|
|
|
if s == "" {
|
|
|
|
return fmt.Sprintf("rbd: ret=%d", errno)
|
2019-12-09 18:43:49 +00:00
|
|
|
}
|
2019-12-12 19:02:44 +00:00
|
|
|
return fmt.Sprintf("rbd: ret=%d, %s", errno, s)
|
2015-01-13 06:15:32 +00:00
|
|
|
}
|
|
|
|
|
2015-01-14 23:39:19 +00:00
|
|
|
//
|
|
|
|
func GetError(err C.int) error {
|
2015-02-11 21:21:05 +00:00
|
|
|
if err != 0 {
|
2015-07-20 04:15:40 +00:00
|
|
|
if err == -C.ENOENT {
|
2019-12-12 17:25:42 +00:00
|
|
|
return ErrNotFound
|
2015-07-20 04:15:40 +00:00
|
|
|
}
|
2015-02-11 21:21:05 +00:00
|
|
|
return RBDError(err)
|
|
|
|
} else {
|
|
|
|
return nil
|
|
|
|
}
|
2015-01-14 23:39:19 +00:00
|
|
|
}
|
|
|
|
|
2015-01-13 06:15:32 +00:00
|
|
|
//
|
|
|
|
func Version() (int, int, int) {
|
2015-02-11 21:21:05 +00:00
|
|
|
var c_major, c_minor, c_patch C.int
|
|
|
|
C.rbd_version(&c_major, &c_minor, &c_patch)
|
|
|
|
return int(c_major), int(c_minor), int(c_patch)
|
2015-01-13 06:15:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// GetImageNames returns the list of current RBD images.
|
|
|
|
func GetImageNames(ioctx *rados.IOContext) (names []string, err error) {
|
2015-02-11 21:21:05 +00:00
|
|
|
buf := make([]byte, 4096)
|
|
|
|
for {
|
|
|
|
size := C.size_t(len(buf))
|
|
|
|
ret := C.rbd_list(C.rados_ioctx_t(ioctx.Pointer()),
|
|
|
|
(*C.char)(unsafe.Pointer(&buf[0])), &size)
|
2018-09-18 08:31:10 +00:00
|
|
|
if ret == -C.ERANGE {
|
2015-02-11 21:21:05 +00:00
|
|
|
buf = make([]byte, size)
|
|
|
|
continue
|
|
|
|
} else if ret < 0 {
|
|
|
|
return nil, RBDError(ret)
|
|
|
|
}
|
|
|
|
tmp := bytes.Split(buf[:size-1], []byte{0})
|
|
|
|
for _, s := range tmp {
|
|
|
|
if len(s) > 0 {
|
|
|
|
name := C.GoString((*C.char)(unsafe.Pointer(&s[0])))
|
|
|
|
names = append(names, name)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return names, nil
|
|
|
|
}
|
2015-01-13 06:15:32 +00:00
|
|
|
}
|
2015-01-14 23:39:19 +00:00
|
|
|
|
|
|
|
//
|
|
|
|
func GetImage(ioctx *rados.IOContext, name string) *Image {
|
2015-02-11 21:21:05 +00:00
|
|
|
return &Image{
|
|
|
|
ioctx: ioctx,
|
|
|
|
name: name,
|
|
|
|
}
|
2015-01-14 23:39:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// int rbd_create(rados_ioctx_t io, const char *name, uint64_t size, int *order);
|
2019-12-06 17:25:08 +00:00
|
|
|
//
|
|
|
|
// But also (for backward compability):
|
2015-01-14 23:39:19 +00:00
|
|
|
// int rbd_create2(rados_ioctx_t io, const char *name, uint64_t size,
|
|
|
|
// uint64_t features, int *order);
|
|
|
|
// int rbd_create3(rados_ioctx_t io, const char *name, uint64_t size,
|
|
|
|
// uint64_t features, int *order,
|
|
|
|
// uint64_t stripe_unit, uint64_t stripe_count);
|
2016-03-04 02:59:09 +00:00
|
|
|
func Create(ioctx *rados.IOContext, name string, size uint64, order int,
|
2015-02-11 21:21:05 +00:00
|
|
|
args ...uint64) (image *Image, err error) {
|
|
|
|
var ret C.int
|
2018-09-18 08:31:10 +00:00
|
|
|
|
2015-02-11 21:21:05 +00:00
|
|
|
switch len(args) {
|
2016-12-20 11:24:31 +00:00
|
|
|
case 3:
|
2019-12-06 17:25:08 +00:00
|
|
|
return Create3(ioctx, name, size, args[0], order, args[1],
|
|
|
|
args[2])
|
2015-02-11 21:21:05 +00:00
|
|
|
case 1:
|
2019-12-06 17:25:08 +00:00
|
|
|
return Create2(ioctx, name, size, args[0], order)
|
2015-02-11 21:21:05 +00:00
|
|
|
case 0:
|
2019-12-06 17:25:08 +00:00
|
|
|
c_order := C.int(order)
|
|
|
|
c_name := C.CString(name)
|
|
|
|
|
|
|
|
defer C.free(unsafe.Pointer(c_name))
|
|
|
|
|
2015-02-11 21:21:05 +00:00
|
|
|
ret = C.rbd_create(C.rados_ioctx_t(ioctx.Pointer()),
|
|
|
|
c_name, C.uint64_t(size), &c_order)
|
|
|
|
default:
|
|
|
|
return nil, errors.New("Wrong number of argument")
|
|
|
|
}
|
|
|
|
|
|
|
|
if ret < 0 {
|
2018-09-18 09:12:32 +00:00
|
|
|
return nil, RBDError(ret)
|
2015-02-11 21:21:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return &Image{
|
|
|
|
ioctx: ioctx,
|
|
|
|
name: name,
|
|
|
|
}, nil
|
2015-01-14 23:39:19 +00:00
|
|
|
}
|
|
|
|
|
2019-12-06 17:25:08 +00:00
|
|
|
// int rbd_create2(rados_ioctx_t io, const char *name, uint64_t size,
|
|
|
|
// uint64_t features, int *order);
|
|
|
|
func Create2(ioctx *rados.IOContext, name string, size uint64, features uint64,
|
|
|
|
order int) (image *Image, err error) {
|
|
|
|
var ret C.int
|
|
|
|
|
|
|
|
c_order := C.int(order)
|
|
|
|
c_name := C.CString(name)
|
|
|
|
|
|
|
|
defer C.free(unsafe.Pointer(c_name))
|
|
|
|
|
|
|
|
ret = C.rbd_create2(C.rados_ioctx_t(ioctx.Pointer()), c_name,
|
|
|
|
C.uint64_t(size), C.uint64_t(features), &c_order)
|
|
|
|
if ret < 0 {
|
|
|
|
return nil, RBDError(ret)
|
|
|
|
}
|
|
|
|
|
|
|
|
return &Image{
|
|
|
|
ioctx: ioctx,
|
|
|
|
name: name,
|
|
|
|
}, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// int rbd_create3(rados_ioctx_t io, const char *name, uint64_t size,
|
|
|
|
// uint64_t features, int *order,
|
|
|
|
// uint64_t stripe_unit, uint64_t stripe_count);
|
|
|
|
func Create3(ioctx *rados.IOContext, name string, size uint64, features uint64,
|
|
|
|
order int, stripe_unit uint64, stripe_count uint64) (image *Image, err error) {
|
|
|
|
var ret C.int
|
|
|
|
|
|
|
|
c_order := C.int(order)
|
|
|
|
c_name := C.CString(name)
|
|
|
|
|
|
|
|
defer C.free(unsafe.Pointer(c_name))
|
|
|
|
|
|
|
|
ret = C.rbd_create3(C.rados_ioctx_t(ioctx.Pointer()), c_name,
|
|
|
|
C.uint64_t(size), C.uint64_t(features), &c_order,
|
|
|
|
C.uint64_t(stripe_unit), C.uint64_t(stripe_count))
|
|
|
|
if ret < 0 {
|
|
|
|
return nil, RBDError(ret)
|
|
|
|
}
|
|
|
|
|
|
|
|
return &Image{
|
|
|
|
ioctx: ioctx,
|
|
|
|
name: name,
|
|
|
|
}, nil
|
|
|
|
}
|
|
|
|
|
2019-11-28 09:43:33 +00:00
|
|
|
// int rbd_create4(rados_ioctx_t io, const char *name, uint64_t size,
|
|
|
|
// rbd_image_options_t opts);
|
|
|
|
func Create4(ioctx *rados.IOContext, name string, size uint64, rio *RbdImageOptions) (image *Image, err error) {
|
|
|
|
if rio == nil {
|
|
|
|
return nil, RBDError(C.EINVAL)
|
|
|
|
}
|
|
|
|
|
|
|
|
c_name := C.CString(name)
|
|
|
|
defer C.free(unsafe.Pointer(c_name))
|
|
|
|
|
|
|
|
ret := C.rbd_create4(C.rados_ioctx_t(ioctx.Pointer()), c_name,
|
|
|
|
C.uint64_t(size), C.rbd_image_options_t(rio.options))
|
|
|
|
|
|
|
|
if ret < 0 {
|
|
|
|
return nil, RBDError(ret)
|
|
|
|
}
|
|
|
|
|
|
|
|
return &Image{
|
|
|
|
ioctx: ioctx,
|
|
|
|
name: name,
|
|
|
|
}, nil
|
|
|
|
}
|
|
|
|
|
2015-01-14 23:39:19 +00:00
|
|
|
// int rbd_clone(rados_ioctx_t p_ioctx, const char *p_name,
|
|
|
|
// const char *p_snapname, rados_ioctx_t c_ioctx,
|
|
|
|
// const char *c_name, uint64_t features, int *c_order);
|
|
|
|
// int rbd_clone2(rados_ioctx_t p_ioctx, const char *p_name,
|
|
|
|
// const char *p_snapname, rados_ioctx_t c_ioctx,
|
|
|
|
// const char *c_name, uint64_t features, int *c_order,
|
|
|
|
// uint64_t stripe_unit, int stripe_count);
|
2016-03-04 02:59:09 +00:00
|
|
|
func (image *Image) Clone(snapname string, c_ioctx *rados.IOContext, c_name string, features uint64, order int) (*Image, error) {
|
2019-12-09 13:19:30 +00:00
|
|
|
if err := image.validate(imageNeedsIOContext); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2018-09-18 08:31:10 +00:00
|
|
|
c_order := C.int(order)
|
|
|
|
c_p_name := C.CString(image.name)
|
|
|
|
c_p_snapname := C.CString(snapname)
|
|
|
|
c_c_name := C.CString(c_name)
|
|
|
|
|
2015-02-11 21:21:05 +00:00
|
|
|
defer C.free(unsafe.Pointer(c_p_name))
|
|
|
|
defer C.free(unsafe.Pointer(c_p_snapname))
|
|
|
|
defer C.free(unsafe.Pointer(c_c_name))
|
|
|
|
|
|
|
|
ret := C.rbd_clone(C.rados_ioctx_t(image.ioctx.Pointer()),
|
|
|
|
c_p_name, c_p_snapname,
|
|
|
|
C.rados_ioctx_t(c_ioctx.Pointer()),
|
|
|
|
c_c_name, C.uint64_t(features), &c_order)
|
|
|
|
if ret < 0 {
|
2018-09-18 09:12:32 +00:00
|
|
|
return nil, RBDError(ret)
|
2015-02-11 21:21:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return &Image{
|
|
|
|
ioctx: c_ioctx,
|
|
|
|
name: c_name,
|
|
|
|
}, nil
|
2015-01-14 23:39:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// int rbd_remove(rados_ioctx_t io, const char *name);
|
|
|
|
// int rbd_remove_with_progress(rados_ioctx_t io, const char *name,
|
|
|
|
// librbd_progress_fn_t cb, void *cbdata);
|
|
|
|
func (image *Image) Remove() error {
|
2019-12-09 13:19:30 +00:00
|
|
|
if err := image.validate(imageNeedsIOContext | imageNeedsName); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2018-09-18 08:31:10 +00:00
|
|
|
c_name := C.CString(image.name)
|
2015-02-11 21:21:05 +00:00
|
|
|
defer C.free(unsafe.Pointer(c_name))
|
|
|
|
return GetError(C.rbd_remove(C.rados_ioctx_t(image.ioctx.Pointer()), c_name))
|
2015-01-14 23:39:19 +00:00
|
|
|
}
|
|
|
|
|
2018-09-14 23:31:19 +00:00
|
|
|
// Trash will move an image into the RBD trash, where it will be protected (i.e., salvageable) for
|
|
|
|
// at least the specified delay.
|
|
|
|
func (image *Image) Trash(delay time.Duration) error {
|
2019-12-09 13:19:30 +00:00
|
|
|
if err := image.validate(imageNeedsIOContext | imageNeedsName); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2018-09-14 23:31:19 +00:00
|
|
|
c_name := C.CString(image.name)
|
|
|
|
defer C.free(unsafe.Pointer(c_name))
|
|
|
|
|
|
|
|
return GetError(C.rbd_trash_move(C.rados_ioctx_t(image.ioctx.Pointer()), c_name,
|
|
|
|
C.uint64_t(delay.Seconds())))
|
|
|
|
}
|
|
|
|
|
2015-01-14 23:39:19 +00:00
|
|
|
// int rbd_rename(rados_ioctx_t src_io_ctx, const char *srcname, const char *destname);
|
|
|
|
func (image *Image) Rename(destname string) error {
|
2019-12-09 13:19:30 +00:00
|
|
|
if err := image.validate(imageNeedsIOContext | imageNeedsName); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2018-09-18 08:31:10 +00:00
|
|
|
c_srcname := C.CString(image.name)
|
|
|
|
c_destname := C.CString(destname)
|
|
|
|
|
2015-02-11 21:21:05 +00:00
|
|
|
defer C.free(unsafe.Pointer(c_srcname))
|
|
|
|
defer C.free(unsafe.Pointer(c_destname))
|
2018-09-18 08:31:10 +00:00
|
|
|
|
2015-02-11 21:21:05 +00:00
|
|
|
err := RBDError(C.rbd_rename(C.rados_ioctx_t(image.ioctx.Pointer()),
|
|
|
|
c_srcname, c_destname))
|
|
|
|
if err == 0 {
|
|
|
|
image.name = destname
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return err
|
2015-01-14 23:39:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// int rbd_open(rados_ioctx_t io, const char *name, rbd_image_t *image, const char *snap_name);
|
|
|
|
// int rbd_open_read_only(rados_ioctx_t io, const char *name, rbd_image_t *image,
|
|
|
|
// const char *snap_name);
|
|
|
|
func (image *Image) Open(args ...interface{}) error {
|
2019-12-09 13:19:30 +00:00
|
|
|
if err := image.validate(imageNeedsIOContext | imageNeedsName); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2015-02-11 21:21:05 +00:00
|
|
|
var c_image C.rbd_image_t
|
|
|
|
var c_snap_name *C.char
|
|
|
|
var ret C.int
|
2018-09-18 08:31:10 +00:00
|
|
|
var read_only bool
|
|
|
|
|
|
|
|
c_name := C.CString(image.name)
|
2015-02-11 21:21:05 +00:00
|
|
|
|
|
|
|
defer C.free(unsafe.Pointer(c_name))
|
|
|
|
for _, arg := range args {
|
|
|
|
switch t := arg.(type) {
|
|
|
|
case string:
|
|
|
|
if t != "" {
|
|
|
|
c_snap_name = C.CString(t)
|
|
|
|
defer C.free(unsafe.Pointer(c_snap_name))
|
|
|
|
}
|
|
|
|
case bool:
|
|
|
|
read_only = t
|
|
|
|
default:
|
|
|
|
return errors.New("Unexpected argument")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if read_only {
|
|
|
|
ret = C.rbd_open_read_only(C.rados_ioctx_t(image.ioctx.Pointer()), c_name,
|
|
|
|
&c_image, c_snap_name)
|
|
|
|
} else {
|
|
|
|
ret = C.rbd_open(C.rados_ioctx_t(image.ioctx.Pointer()), c_name,
|
|
|
|
&c_image, c_snap_name)
|
|
|
|
}
|
|
|
|
|
|
|
|
image.image = c_image
|
|
|
|
|
2015-07-24 03:23:00 +00:00
|
|
|
return GetError(ret)
|
2015-01-14 23:39:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// int rbd_close(rbd_image_t image);
|
|
|
|
func (image *Image) Close() error {
|
2019-12-09 13:19:30 +00:00
|
|
|
if err := image.validate(imageIsOpen); err != nil {
|
|
|
|
return err
|
2015-02-11 21:21:05 +00:00
|
|
|
}
|
2015-01-14 23:39:19 +00:00
|
|
|
|
2018-09-18 08:31:10 +00:00
|
|
|
if ret := C.rbd_close(image.image); ret != 0 {
|
2015-02-11 21:21:05 +00:00
|
|
|
return RBDError(ret)
|
|
|
|
}
|
2018-09-18 08:31:10 +00:00
|
|
|
|
2015-02-11 21:21:05 +00:00
|
|
|
image.image = nil
|
|
|
|
return nil
|
2015-01-14 23:39:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// int rbd_resize(rbd_image_t image, uint64_t size);
|
|
|
|
func (image *Image) Resize(size uint64) error {
|
2019-12-09 13:19:30 +00:00
|
|
|
if err := image.validate(imageIsOpen); err != nil {
|
|
|
|
return err
|
2015-02-11 21:21:05 +00:00
|
|
|
}
|
2015-01-14 23:39:19 +00:00
|
|
|
|
2015-02-11 21:21:05 +00:00
|
|
|
return GetError(C.rbd_resize(image.image, C.uint64_t(size)))
|
2015-01-14 23:39:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// int rbd_stat(rbd_image_t image, rbd_image_info_t *info, size_t infosize);
|
|
|
|
func (image *Image) Stat() (info *ImageInfo, err error) {
|
2019-12-09 13:19:30 +00:00
|
|
|
if err := image.validate(imageIsOpen); err != nil {
|
|
|
|
return nil, err
|
2015-02-11 21:21:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
var c_stat C.rbd_image_info_t
|
2018-09-18 08:31:10 +00:00
|
|
|
|
|
|
|
if ret := C.rbd_stat(image.image, &c_stat, C.size_t(unsafe.Sizeof(info))); ret < 0 {
|
2018-09-18 09:12:32 +00:00
|
|
|
return info, RBDError(ret)
|
2015-02-11 21:21:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return &ImageInfo{
|
|
|
|
Size: uint64(c_stat.size),
|
|
|
|
Obj_size: uint64(c_stat.obj_size),
|
|
|
|
Num_objs: uint64(c_stat.num_objs),
|
|
|
|
Order: int(c_stat.order),
|
|
|
|
Block_name_prefix: C.GoString((*C.char)(&c_stat.block_name_prefix[0])),
|
|
|
|
Parent_pool: int64(c_stat.parent_pool),
|
|
|
|
Parent_name: C.GoString((*C.char)(&c_stat.parent_name[0]))}, nil
|
2015-01-14 23:39:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// int rbd_get_old_format(rbd_image_t image, uint8_t *old);
|
|
|
|
func (image *Image) IsOldFormat() (old_format bool, err error) {
|
2019-12-09 13:19:30 +00:00
|
|
|
if err := image.validate(imageIsOpen); err != nil {
|
|
|
|
return false, err
|
2015-02-11 21:21:05 +00:00
|
|
|
}
|
2015-01-14 23:39:19 +00:00
|
|
|
|
2015-02-11 21:21:05 +00:00
|
|
|
var c_old_format C.uint8_t
|
|
|
|
ret := C.rbd_get_old_format(image.image,
|
|
|
|
&c_old_format)
|
|
|
|
if ret < 0 {
|
2018-09-18 09:12:32 +00:00
|
|
|
return false, RBDError(ret)
|
2015-02-11 21:21:05 +00:00
|
|
|
}
|
2015-01-14 23:39:19 +00:00
|
|
|
|
2015-02-11 21:21:05 +00:00
|
|
|
return c_old_format != 0, nil
|
2015-01-14 23:39:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// int rbd_size(rbd_image_t image, uint64_t *size);
|
|
|
|
func (image *Image) GetSize() (size uint64, err error) {
|
2019-12-09 13:19:30 +00:00
|
|
|
if err := image.validate(imageIsOpen); err != nil {
|
|
|
|
return 0, err
|
2015-02-11 21:21:05 +00:00
|
|
|
}
|
2015-01-14 23:39:19 +00:00
|
|
|
|
2018-09-18 08:31:10 +00:00
|
|
|
if ret := C.rbd_get_size(image.image, (*C.uint64_t)(&size)); ret < 0 {
|
2018-09-18 09:12:32 +00:00
|
|
|
return 0, RBDError(ret)
|
2015-02-11 21:21:05 +00:00
|
|
|
}
|
2015-01-14 23:39:19 +00:00
|
|
|
|
2015-02-11 21:21:05 +00:00
|
|
|
return size, nil
|
2015-01-14 23:39:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// int rbd_get_features(rbd_image_t image, uint64_t *features);
|
|
|
|
func (image *Image) GetFeatures() (features uint64, err error) {
|
2019-12-09 13:19:30 +00:00
|
|
|
if err := image.validate(imageIsOpen); err != nil {
|
|
|
|
return 0, err
|
2015-02-11 21:21:05 +00:00
|
|
|
}
|
2015-01-14 23:39:19 +00:00
|
|
|
|
2018-09-18 08:31:10 +00:00
|
|
|
if ret := C.rbd_get_features(image.image, (*C.uint64_t)(&features)); ret < 0 {
|
2018-09-18 09:12:32 +00:00
|
|
|
return 0, RBDError(ret)
|
2015-02-11 21:21:05 +00:00
|
|
|
}
|
2015-01-14 23:39:19 +00:00
|
|
|
|
2015-02-11 21:21:05 +00:00
|
|
|
return features, nil
|
2015-01-14 23:39:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// int rbd_get_stripe_unit(rbd_image_t image, uint64_t *stripe_unit);
|
|
|
|
func (image *Image) GetStripeUnit() (stripe_unit uint64, err error) {
|
2019-12-09 13:19:30 +00:00
|
|
|
if err := image.validate(imageIsOpen); err != nil {
|
|
|
|
return 0, err
|
2015-02-11 21:21:05 +00:00
|
|
|
}
|
2015-01-14 23:39:19 +00:00
|
|
|
|
2018-09-18 08:31:10 +00:00
|
|
|
if ret := C.rbd_get_stripe_unit(image.image, (*C.uint64_t)(&stripe_unit)); ret < 0 {
|
2018-09-18 09:12:32 +00:00
|
|
|
return 0, RBDError(ret)
|
2015-02-11 21:21:05 +00:00
|
|
|
}
|
2015-01-14 23:39:19 +00:00
|
|
|
|
2015-02-11 21:21:05 +00:00
|
|
|
return stripe_unit, nil
|
2015-01-14 23:39:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// int rbd_get_stripe_count(rbd_image_t image, uint64_t *stripe_count);
|
|
|
|
func (image *Image) GetStripeCount() (stripe_count uint64, err error) {
|
2019-12-09 13:19:30 +00:00
|
|
|
if err := image.validate(imageIsOpen); err != nil {
|
|
|
|
return 0, err
|
2015-02-11 21:21:05 +00:00
|
|
|
}
|
2015-01-14 23:39:19 +00:00
|
|
|
|
2018-09-18 08:31:10 +00:00
|
|
|
if ret := C.rbd_get_stripe_count(image.image, (*C.uint64_t)(&stripe_count)); ret < 0 {
|
2018-09-18 09:12:32 +00:00
|
|
|
return 0, RBDError(ret)
|
2015-02-11 21:21:05 +00:00
|
|
|
}
|
2015-01-14 23:39:19 +00:00
|
|
|
|
2015-02-11 21:21:05 +00:00
|
|
|
return stripe_count, nil
|
2015-01-14 23:39:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// int rbd_get_overlap(rbd_image_t image, uint64_t *overlap);
|
|
|
|
func (image *Image) GetOverlap() (overlap uint64, err error) {
|
2019-12-09 13:19:30 +00:00
|
|
|
if err := image.validate(imageIsOpen); err != nil {
|
|
|
|
return 0, err
|
2015-02-11 21:21:05 +00:00
|
|
|
}
|
2015-01-14 23:39:19 +00:00
|
|
|
|
2018-09-18 08:31:10 +00:00
|
|
|
if ret := C.rbd_get_overlap(image.image, (*C.uint64_t)(&overlap)); ret < 0 {
|
2018-09-18 09:12:32 +00:00
|
|
|
return overlap, RBDError(ret)
|
2015-02-11 21:21:05 +00:00
|
|
|
}
|
2015-01-14 23:39:19 +00:00
|
|
|
|
2015-02-11 21:21:05 +00:00
|
|
|
return overlap, nil
|
2015-01-14 23:39:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// int rbd_copy(rbd_image_t image, rados_ioctx_t dest_io_ctx, const char *destname);
|
|
|
|
// int rbd_copy2(rbd_image_t src, rbd_image_t dest);
|
|
|
|
// int rbd_copy_with_progress(rbd_image_t image, rados_ioctx_t dest_p, const char *destname,
|
|
|
|
// librbd_progress_fn_t cb, void *cbdata);
|
|
|
|
// int rbd_copy_with_progress2(rbd_image_t src, rbd_image_t dest,
|
|
|
|
// librbd_progress_fn_t cb, void *cbdata);
|
|
|
|
func (image *Image) Copy(args ...interface{}) error {
|
2019-12-09 13:19:30 +00:00
|
|
|
if err := image.validate(imageIsOpen); err != nil {
|
|
|
|
return err
|
2015-02-11 21:21:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
switch t := args[0].(type) {
|
|
|
|
case rados.IOContext:
|
|
|
|
switch t2 := args[1].(type) {
|
|
|
|
case string:
|
2018-09-18 08:31:10 +00:00
|
|
|
c_destname := C.CString(t2)
|
2015-02-11 21:21:05 +00:00
|
|
|
defer C.free(unsafe.Pointer(c_destname))
|
2018-12-12 11:41:13 +00:00
|
|
|
return GetError(C.rbd_copy(image.image,
|
2015-02-11 21:21:05 +00:00
|
|
|
C.rados_ioctx_t(t.Pointer()),
|
|
|
|
c_destname))
|
|
|
|
default:
|
|
|
|
return errors.New("Must specify destname")
|
|
|
|
}
|
|
|
|
case Image:
|
|
|
|
var dest Image = t
|
|
|
|
if dest.image == nil {
|
|
|
|
return errors.New(fmt.Sprintf("RBD image %s is not open", dest.name))
|
|
|
|
}
|
2018-09-18 08:31:10 +00:00
|
|
|
return GetError(C.rbd_copy2(image.image, dest.image))
|
2015-02-11 21:21:05 +00:00
|
|
|
default:
|
2018-09-18 08:31:10 +00:00
|
|
|
return errors.New("Must specify either destination pool or destination image")
|
2015-02-11 21:21:05 +00:00
|
|
|
}
|
2015-01-14 23:39:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// int rbd_flatten(rbd_image_t image);
|
|
|
|
func (image *Image) Flatten() error {
|
2019-12-09 13:19:30 +00:00
|
|
|
if err := image.validate(imageIsOpen); err != nil {
|
|
|
|
return err
|
2015-02-11 21:21:05 +00:00
|
|
|
}
|
2015-01-14 23:39:19 +00:00
|
|
|
|
2015-02-11 21:21:05 +00:00
|
|
|
return GetError(C.rbd_flatten(image.image))
|
2015-01-14 23:39:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ssize_t rbd_list_children(rbd_image_t image, char *pools, size_t *pools_len,
|
|
|
|
// char *images, size_t *images_len);
|
|
|
|
func (image *Image) ListChildren() (pools []string, images []string, err error) {
|
2019-12-09 13:19:30 +00:00
|
|
|
if err := image.validate(imageIsOpen); err != nil {
|
|
|
|
return nil, nil, err
|
2015-02-11 21:21:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
var c_pools_len, c_images_len C.size_t
|
|
|
|
|
|
|
|
ret := C.rbd_list_children(image.image,
|
|
|
|
nil, &c_pools_len,
|
|
|
|
nil, &c_images_len)
|
2016-04-05 15:47:47 +00:00
|
|
|
if ret == 0 {
|
|
|
|
return nil, nil, nil
|
|
|
|
}
|
|
|
|
if ret < 0 && ret != -C.ERANGE {
|
2018-09-18 09:12:32 +00:00
|
|
|
return nil, nil, RBDError(ret)
|
2015-02-11 21:21:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
pools_buf := make([]byte, c_pools_len)
|
|
|
|
images_buf := make([]byte, c_images_len)
|
|
|
|
|
|
|
|
ret = C.rbd_list_children(image.image,
|
|
|
|
(*C.char)(unsafe.Pointer(&pools_buf[0])),
|
|
|
|
&c_pools_len,
|
|
|
|
(*C.char)(unsafe.Pointer(&images_buf[0])),
|
|
|
|
&c_images_len)
|
|
|
|
if ret < 0 {
|
2018-09-18 09:12:32 +00:00
|
|
|
return nil, nil, RBDError(ret)
|
2015-02-11 21:21:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
tmp := bytes.Split(pools_buf[:c_pools_len-1], []byte{0})
|
|
|
|
for _, s := range tmp {
|
|
|
|
if len(s) > 0 {
|
|
|
|
name := C.GoString((*C.char)(unsafe.Pointer(&s[0])))
|
|
|
|
pools = append(pools, name)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
tmp = bytes.Split(images_buf[:c_images_len-1], []byte{0})
|
|
|
|
for _, s := range tmp {
|
|
|
|
if len(s) > 0 {
|
|
|
|
name := C.GoString((*C.char)(unsafe.Pointer(&s[0])))
|
|
|
|
images = append(images, name)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return pools, images, nil
|
2015-01-14 23:39:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ssize_t rbd_list_lockers(rbd_image_t image, int *exclusive,
|
|
|
|
// char *tag, size_t *tag_len,
|
|
|
|
// char *clients, size_t *clients_len,
|
|
|
|
// char *cookies, size_t *cookies_len,
|
|
|
|
// char *addrs, size_t *addrs_len);
|
|
|
|
func (image *Image) ListLockers() (tag string, lockers []Locker, err error) {
|
2019-12-09 13:19:30 +00:00
|
|
|
if err := image.validate(imageIsOpen); err != nil {
|
|
|
|
return "", nil, err
|
2015-02-11 21:21:05 +00:00
|
|
|
}
|
2015-01-14 23:39:19 +00:00
|
|
|
|
2015-02-11 21:21:05 +00:00
|
|
|
var c_exclusive C.int
|
|
|
|
var c_tag_len, c_clients_len, c_cookies_len, c_addrs_len C.size_t
|
2016-05-20 09:26:29 +00:00
|
|
|
var c_locker_cnt C.ssize_t
|
2015-01-14 23:39:19 +00:00
|
|
|
|
2015-02-11 21:21:05 +00:00
|
|
|
C.rbd_list_lockers(image.image, &c_exclusive,
|
|
|
|
nil, (*C.size_t)(&c_tag_len),
|
|
|
|
nil, (*C.size_t)(&c_clients_len),
|
|
|
|
nil, (*C.size_t)(&c_cookies_len),
|
|
|
|
nil, (*C.size_t)(&c_addrs_len))
|
2018-09-17 22:57:31 +00:00
|
|
|
|
|
|
|
// no locker held on rbd image when either c_clients_len,
|
|
|
|
// c_cookies_len or c_addrs_len is *0*, so just quickly returned
|
|
|
|
if int(c_clients_len) == 0 || int(c_cookies_len) == 0 ||
|
|
|
|
int(c_addrs_len) == 0 {
|
2016-05-20 09:26:29 +00:00
|
|
|
lockers = make([]Locker, 0)
|
2018-09-17 22:57:31 +00:00
|
|
|
return "", lockers, nil
|
2016-05-20 09:26:29 +00:00
|
|
|
}
|
2015-01-14 23:39:19 +00:00
|
|
|
|
2015-02-11 21:21:05 +00:00
|
|
|
tag_buf := make([]byte, c_tag_len)
|
|
|
|
clients_buf := make([]byte, c_clients_len)
|
|
|
|
cookies_buf := make([]byte, c_cookies_len)
|
|
|
|
addrs_buf := make([]byte, c_addrs_len)
|
2018-09-17 22:57:31 +00:00
|
|
|
|
2016-05-20 09:26:29 +00:00
|
|
|
c_locker_cnt = C.rbd_list_lockers(image.image, &c_exclusive,
|
2015-02-11 21:21:05 +00:00
|
|
|
(*C.char)(unsafe.Pointer(&tag_buf[0])), (*C.size_t)(&c_tag_len),
|
|
|
|
(*C.char)(unsafe.Pointer(&clients_buf[0])), (*C.size_t)(&c_clients_len),
|
|
|
|
(*C.char)(unsafe.Pointer(&cookies_buf[0])), (*C.size_t)(&c_cookies_len),
|
|
|
|
(*C.char)(unsafe.Pointer(&addrs_buf[0])), (*C.size_t)(&c_addrs_len))
|
2018-09-17 22:57:31 +00:00
|
|
|
|
|
|
|
// rbd_list_lockers returns negative value for errors
|
2016-05-20 09:26:29 +00:00
|
|
|
// and *0* means no locker held on rbd image.
|
2018-09-17 22:57:31 +00:00
|
|
|
// but *0* is unexpected here because first rbd_list_lockers already
|
|
|
|
// dealt with no locker case
|
2016-05-20 09:26:29 +00:00
|
|
|
if int(c_locker_cnt) <= 0 {
|
2018-09-18 09:12:32 +00:00
|
|
|
return "", nil, RBDError(c_locker_cnt)
|
2016-05-20 09:26:29 +00:00
|
|
|
}
|
2015-01-14 23:39:19 +00:00
|
|
|
|
2015-02-11 21:21:05 +00:00
|
|
|
clients := split(clients_buf)
|
|
|
|
cookies := split(cookies_buf)
|
|
|
|
addrs := split(addrs_buf)
|
2015-01-14 23:39:19 +00:00
|
|
|
|
2016-05-20 09:26:29 +00:00
|
|
|
lockers = make([]Locker, c_locker_cnt)
|
|
|
|
for i := 0; i < int(c_locker_cnt); i++ {
|
2015-02-11 21:21:05 +00:00
|
|
|
lockers[i] = Locker{Client: clients[i],
|
|
|
|
Cookie: cookies[i],
|
|
|
|
Addr: addrs[i]}
|
|
|
|
}
|
2015-01-14 23:39:19 +00:00
|
|
|
|
2015-02-11 21:21:05 +00:00
|
|
|
return string(tag_buf), lockers, nil
|
2015-01-14 23:39:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// int rbd_lock_exclusive(rbd_image_t image, const char *cookie);
|
|
|
|
func (image *Image) LockExclusive(cookie string) error {
|
2019-12-09 13:19:30 +00:00
|
|
|
if err := image.validate(imageIsOpen); err != nil {
|
|
|
|
return err
|
2015-02-11 21:21:05 +00:00
|
|
|
}
|
2015-01-14 23:39:19 +00:00
|
|
|
|
2018-09-18 08:31:10 +00:00
|
|
|
c_cookie := C.CString(cookie)
|
2015-02-11 21:21:05 +00:00
|
|
|
defer C.free(unsafe.Pointer(c_cookie))
|
2015-01-14 23:39:19 +00:00
|
|
|
|
2015-02-11 21:21:05 +00:00
|
|
|
return GetError(C.rbd_lock_exclusive(image.image, c_cookie))
|
2015-01-14 23:39:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// int rbd_lock_shared(rbd_image_t image, const char *cookie, const char *tag);
|
|
|
|
func (image *Image) LockShared(cookie string, tag string) error {
|
2019-12-09 13:19:30 +00:00
|
|
|
if err := image.validate(imageIsOpen); err != nil {
|
|
|
|
return err
|
2015-02-11 21:21:05 +00:00
|
|
|
}
|
2015-01-14 23:39:19 +00:00
|
|
|
|
2018-09-18 08:31:10 +00:00
|
|
|
c_cookie := C.CString(cookie)
|
|
|
|
c_tag := C.CString(tag)
|
2015-02-11 21:21:05 +00:00
|
|
|
defer C.free(unsafe.Pointer(c_cookie))
|
|
|
|
defer C.free(unsafe.Pointer(c_tag))
|
2015-01-14 23:39:19 +00:00
|
|
|
|
2015-02-11 21:21:05 +00:00
|
|
|
return GetError(C.rbd_lock_shared(image.image, c_cookie, c_tag))
|
2015-01-14 23:39:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// int rbd_lock_shared(rbd_image_t image, const char *cookie, const char *tag);
|
|
|
|
func (image *Image) Unlock(cookie string) error {
|
2019-12-09 13:19:30 +00:00
|
|
|
if err := image.validate(imageIsOpen); err != nil {
|
|
|
|
return err
|
2015-02-11 21:21:05 +00:00
|
|
|
}
|
2015-01-14 23:39:19 +00:00
|
|
|
|
2018-09-18 08:31:10 +00:00
|
|
|
c_cookie := C.CString(cookie)
|
2015-02-11 21:21:05 +00:00
|
|
|
defer C.free(unsafe.Pointer(c_cookie))
|
2015-01-14 23:39:19 +00:00
|
|
|
|
2015-02-11 21:21:05 +00:00
|
|
|
return GetError(C.rbd_unlock(image.image, c_cookie))
|
2015-01-14 23:39:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// int rbd_break_lock(rbd_image_t image, const char *client, const char *cookie);
|
|
|
|
func (image *Image) BreakLock(client string, cookie string) error {
|
2019-12-09 13:19:30 +00:00
|
|
|
if err := image.validate(imageIsOpen); err != nil {
|
|
|
|
return err
|
2015-02-11 21:21:05 +00:00
|
|
|
}
|
2015-01-14 23:39:19 +00:00
|
|
|
|
2018-09-18 08:31:10 +00:00
|
|
|
c_client := C.CString(client)
|
|
|
|
c_cookie := C.CString(cookie)
|
2015-02-11 21:21:05 +00:00
|
|
|
defer C.free(unsafe.Pointer(c_client))
|
|
|
|
defer C.free(unsafe.Pointer(c_cookie))
|
2015-01-14 23:39:19 +00:00
|
|
|
|
2015-02-11 21:21:05 +00:00
|
|
|
return GetError(C.rbd_break_lock(image.image, c_client, c_cookie))
|
2015-01-14 23:39:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ssize_t rbd_read(rbd_image_t image, uint64_t ofs, size_t len, char *buf);
|
|
|
|
// TODO: int64_t rbd_read_iterate(rbd_image_t image, uint64_t ofs, size_t len,
|
|
|
|
// int (*cb)(uint64_t, size_t, const char *, void *), void *arg);
|
|
|
|
// TODO: int rbd_read_iterate2(rbd_image_t image, uint64_t ofs, uint64_t len,
|
|
|
|
// int (*cb)(uint64_t, size_t, const char *, void *), void *arg);
|
|
|
|
// TODO: int rbd_diff_iterate(rbd_image_t image,
|
|
|
|
// const char *fromsnapname,
|
|
|
|
// uint64_t ofs, uint64_t len,
|
|
|
|
// int (*cb)(uint64_t, size_t, int, void *), void *arg);
|
|
|
|
func (image *Image) Read(data []byte) (n int, err error) {
|
2019-12-09 13:19:30 +00:00
|
|
|
if err := image.validate(imageIsOpen); err != nil {
|
|
|
|
return 0, err
|
2015-02-11 21:21:05 +00:00
|
|
|
}
|
2015-01-14 23:39:19 +00:00
|
|
|
|
2015-02-11 21:21:05 +00:00
|
|
|
if len(data) == 0 {
|
|
|
|
return 0, nil
|
|
|
|
}
|
2015-01-14 23:39:19 +00:00
|
|
|
|
2015-02-11 21:21:05 +00:00
|
|
|
ret := int(C.rbd_read(
|
|
|
|
image.image,
|
|
|
|
(C.uint64_t)(image.offset),
|
|
|
|
(C.size_t)(len(data)),
|
|
|
|
(*C.char)(unsafe.Pointer(&data[0]))))
|
2015-01-14 23:39:19 +00:00
|
|
|
|
2015-02-11 21:21:05 +00:00
|
|
|
if ret < 0 {
|
|
|
|
return 0, RBDError(ret)
|
|
|
|
}
|
2015-01-14 23:39:19 +00:00
|
|
|
|
2015-02-11 21:21:05 +00:00
|
|
|
image.offset += int64(ret)
|
|
|
|
if ret < n {
|
|
|
|
return ret, io.EOF
|
|
|
|
}
|
2015-01-14 23:39:19 +00:00
|
|
|
|
2015-02-11 21:21:05 +00:00
|
|
|
return ret, nil
|
2015-01-14 23:39:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// ssize_t rbd_write(rbd_image_t image, uint64_t ofs, size_t len, const char *buf);
|
|
|
|
func (image *Image) Write(data []byte) (n int, err error) {
|
2019-12-09 13:19:30 +00:00
|
|
|
if err := image.validate(imageIsOpen); err != nil {
|
|
|
|
return 0, err
|
|
|
|
}
|
|
|
|
|
2015-02-11 21:21:05 +00:00
|
|
|
ret := int(C.rbd_write(image.image, C.uint64_t(image.offset),
|
|
|
|
C.size_t(len(data)), (*C.char)(unsafe.Pointer(&data[0]))))
|
2015-01-14 23:39:19 +00:00
|
|
|
|
2015-02-11 21:21:05 +00:00
|
|
|
if ret >= 0 {
|
|
|
|
image.offset += int64(ret)
|
|
|
|
}
|
2015-01-14 23:39:19 +00:00
|
|
|
|
2015-02-11 21:21:05 +00:00
|
|
|
if ret != len(data) {
|
2018-09-18 08:31:10 +00:00
|
|
|
err = RBDError(-C.EPERM)
|
2015-02-11 21:21:05 +00:00
|
|
|
}
|
2015-01-15 14:15:31 +00:00
|
|
|
|
2015-02-11 21:21:05 +00:00
|
|
|
return ret, err
|
2015-01-14 23:39:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (image *Image) Seek(offset int64, whence int) (int64, error) {
|
2015-02-11 21:21:05 +00:00
|
|
|
switch whence {
|
2019-12-10 11:10:45 +00:00
|
|
|
case SeekSet:
|
2015-02-11 21:21:05 +00:00
|
|
|
image.offset = offset
|
2019-12-10 11:10:45 +00:00
|
|
|
case SeekCur:
|
2015-02-11 21:21:05 +00:00
|
|
|
image.offset += offset
|
2019-12-10 11:10:45 +00:00
|
|
|
case SeekEnd:
|
2015-02-11 21:21:05 +00:00
|
|
|
stats, err := image.Stat()
|
|
|
|
if err != nil {
|
|
|
|
return 0, err
|
|
|
|
}
|
|
|
|
image.offset = int64(stats.Size) - offset
|
|
|
|
default:
|
|
|
|
return 0, errors.New("Wrong value for whence")
|
|
|
|
}
|
|
|
|
return image.offset, nil
|
2015-01-14 23:39:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// int rbd_discard(rbd_image_t image, uint64_t ofs, uint64_t len);
|
2019-12-10 11:57:29 +00:00
|
|
|
func (image *Image) Discard(ofs uint64, length uint64) (int, error) {
|
2019-12-09 13:19:30 +00:00
|
|
|
if err := image.validate(imageIsOpen); err != nil {
|
2019-12-10 11:57:29 +00:00
|
|
|
return 0, err
|
|
|
|
}
|
|
|
|
|
|
|
|
ret := C.rbd_discard(image.image, C.uint64_t(ofs), C.uint64_t(length))
|
|
|
|
if ret < 0 {
|
|
|
|
return 0, RBDError(ret)
|
2019-12-09 13:19:30 +00:00
|
|
|
}
|
|
|
|
|
2019-12-10 11:57:29 +00:00
|
|
|
return int(ret), nil
|
2015-01-14 23:39:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (image *Image) ReadAt(data []byte, off int64) (n int, err error) {
|
2019-12-09 13:19:30 +00:00
|
|
|
if err := image.validate(imageIsOpen); err != nil {
|
|
|
|
return 0, err
|
2016-04-29 13:36:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if len(data) == 0 {
|
|
|
|
return 0, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
ret := int(C.rbd_read(
|
|
|
|
image.image,
|
|
|
|
(C.uint64_t)(off),
|
|
|
|
(C.size_t)(len(data)),
|
|
|
|
(*C.char)(unsafe.Pointer(&data[0]))))
|
|
|
|
|
|
|
|
if ret < 0 {
|
|
|
|
return 0, RBDError(ret)
|
2015-02-11 21:21:05 +00:00
|
|
|
}
|
2016-04-29 13:36:01 +00:00
|
|
|
|
|
|
|
if ret < n {
|
|
|
|
return ret, io.EOF
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret, nil
|
2015-01-14 23:39:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (image *Image) WriteAt(data []byte, off int64) (n int, err error) {
|
2019-12-09 13:19:30 +00:00
|
|
|
if err := image.validate(imageIsOpen); err != nil {
|
|
|
|
return 0, err
|
2016-04-29 13:36:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if len(data) == 0 {
|
|
|
|
return 0, nil
|
2015-02-11 21:21:05 +00:00
|
|
|
}
|
2016-04-29 13:36:01 +00:00
|
|
|
|
|
|
|
ret := int(C.rbd_write(image.image, C.uint64_t(off),
|
|
|
|
C.size_t(len(data)), (*C.char)(unsafe.Pointer(&data[0]))))
|
|
|
|
|
|
|
|
if ret != len(data) {
|
2018-09-18 08:31:10 +00:00
|
|
|
err = RBDError(-C.EPERM)
|
2016-04-29 13:36:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return ret, err
|
2015-01-14 23:39:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// int rbd_flush(rbd_image_t image);
|
|
|
|
func (image *Image) Flush() error {
|
2019-12-09 13:19:30 +00:00
|
|
|
if err := image.validate(imageIsOpen); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2015-02-11 21:21:05 +00:00
|
|
|
return GetError(C.rbd_flush(image.image))
|
2015-01-14 23:39:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// int rbd_snap_list(rbd_image_t image, rbd_snap_info_t *snaps, int *max_snaps);
|
|
|
|
// void rbd_snap_list_end(rbd_snap_info_t *snaps);
|
|
|
|
func (image *Image) GetSnapshotNames() (snaps []SnapInfo, err error) {
|
2019-12-09 13:19:30 +00:00
|
|
|
if err := image.validate(imageIsOpen); err != nil {
|
|
|
|
return nil, err
|
2015-02-11 21:21:05 +00:00
|
|
|
}
|
2015-01-14 23:39:19 +00:00
|
|
|
|
2018-09-18 08:31:10 +00:00
|
|
|
var c_max_snaps C.int
|
2015-01-14 23:39:19 +00:00
|
|
|
|
2015-02-11 21:21:05 +00:00
|
|
|
ret := C.rbd_snap_list(image.image, nil, &c_max_snaps)
|
2015-01-14 23:39:19 +00:00
|
|
|
|
2015-02-11 21:21:05 +00:00
|
|
|
c_snaps := make([]C.rbd_snap_info_t, c_max_snaps)
|
|
|
|
snaps = make([]SnapInfo, c_max_snaps)
|
2015-01-14 23:39:19 +00:00
|
|
|
|
2015-02-11 21:21:05 +00:00
|
|
|
ret = C.rbd_snap_list(image.image,
|
|
|
|
&c_snaps[0], &c_max_snaps)
|
|
|
|
if ret < 0 {
|
2018-09-18 09:12:32 +00:00
|
|
|
return nil, RBDError(ret)
|
2015-02-11 21:21:05 +00:00
|
|
|
}
|
2015-01-14 23:39:19 +00:00
|
|
|
|
2015-02-11 21:21:05 +00:00
|
|
|
for i, s := range c_snaps {
|
|
|
|
snaps[i] = SnapInfo{Id: uint64(s.id),
|
|
|
|
Size: uint64(s.size),
|
|
|
|
Name: C.GoString(s.name)}
|
|
|
|
}
|
2015-01-14 23:39:19 +00:00
|
|
|
|
2015-02-11 21:21:05 +00:00
|
|
|
C.rbd_snap_list_end(&c_snaps[0])
|
|
|
|
return snaps[:len(snaps)-1], nil
|
2015-01-14 23:39:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// int rbd_snap_create(rbd_image_t image, const char *snapname);
|
|
|
|
func (image *Image) CreateSnapshot(snapname string) (*Snapshot, error) {
|
2019-12-09 13:19:30 +00:00
|
|
|
if err := image.validate(imageIsOpen); err != nil {
|
|
|
|
return nil, err
|
2015-02-11 21:21:05 +00:00
|
|
|
}
|
2015-01-14 23:39:19 +00:00
|
|
|
|
2018-09-18 08:31:10 +00:00
|
|
|
c_snapname := C.CString(snapname)
|
2015-02-11 21:21:05 +00:00
|
|
|
defer C.free(unsafe.Pointer(c_snapname))
|
2015-01-14 23:39:19 +00:00
|
|
|
|
2015-02-11 21:21:05 +00:00
|
|
|
ret := C.rbd_snap_create(image.image, c_snapname)
|
|
|
|
if ret < 0 {
|
2018-09-18 09:12:32 +00:00
|
|
|
return nil, RBDError(ret)
|
2015-02-11 21:21:05 +00:00
|
|
|
}
|
2015-01-14 23:39:19 +00:00
|
|
|
|
2015-02-11 21:21:05 +00:00
|
|
|
return &Snapshot{
|
|
|
|
image: image,
|
|
|
|
name: snapname,
|
|
|
|
}, nil
|
2015-01-14 23:39:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
func (image *Image) GetSnapshot(snapname string) *Snapshot {
|
2015-02-11 21:21:05 +00:00
|
|
|
return &Snapshot{
|
|
|
|
image: image,
|
|
|
|
name: snapname,
|
|
|
|
}
|
2015-01-14 23:39:19 +00:00
|
|
|
}
|
|
|
|
|
2015-07-17 02:27:57 +00:00
|
|
|
// int rbd_get_parent_info(rbd_image_t image,
|
|
|
|
// char *parent_pool_name, size_t ppool_namelen, char *parent_name,
|
|
|
|
// size_t pnamelen, char *parent_snap_name, size_t psnap_namelen)
|
|
|
|
func (image *Image) GetParentInfo(p_pool, p_name, p_snapname []byte) error {
|
2019-12-09 13:19:30 +00:00
|
|
|
if err := image.validate(imageIsOpen); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2015-07-17 02:27:57 +00:00
|
|
|
ret := C.rbd_get_parent_info(
|
|
|
|
image.image,
|
|
|
|
(*C.char)(unsafe.Pointer(&p_pool[0])),
|
|
|
|
(C.size_t)(len(p_pool)),
|
|
|
|
(*C.char)(unsafe.Pointer(&p_name[0])),
|
|
|
|
(C.size_t)(len(p_name)),
|
|
|
|
(*C.char)(unsafe.Pointer(&p_snapname[0])),
|
|
|
|
(C.size_t)(len(p_snapname)))
|
|
|
|
if ret == 0 {
|
|
|
|
return nil
|
|
|
|
} else {
|
2018-09-18 09:12:32 +00:00
|
|
|
return RBDError(ret)
|
2015-07-17 02:27:57 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-01-14 23:39:19 +00:00
|
|
|
// int rbd_snap_remove(rbd_image_t image, const char *snapname);
|
|
|
|
func (snapshot *Snapshot) Remove() error {
|
2019-12-09 13:19:30 +00:00
|
|
|
if err := snapshot.validate(snapshotNeedsName | imageIsOpen); err != nil {
|
|
|
|
return err
|
2018-09-14 14:02:11 +00:00
|
|
|
}
|
|
|
|
|
2018-09-18 08:31:10 +00:00
|
|
|
c_snapname := C.CString(snapshot.name)
|
2015-02-11 21:21:05 +00:00
|
|
|
defer C.free(unsafe.Pointer(c_snapname))
|
2015-01-14 23:39:19 +00:00
|
|
|
|
2015-02-11 21:21:05 +00:00
|
|
|
return GetError(C.rbd_snap_remove(snapshot.image.image, c_snapname))
|
2015-01-14 23:39:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// int rbd_snap_rollback(rbd_image_t image, const char *snapname);
|
|
|
|
// int rbd_snap_rollback_with_progress(rbd_image_t image, const char *snapname,
|
|
|
|
// librbd_progress_fn_t cb, void *cbdata);
|
|
|
|
func (snapshot *Snapshot) Rollback() error {
|
2019-12-09 13:19:30 +00:00
|
|
|
if err := snapshot.validate(snapshotNeedsName | imageIsOpen); err != nil {
|
|
|
|
return err
|
2018-09-14 14:02:11 +00:00
|
|
|
}
|
|
|
|
|
2018-09-18 08:31:10 +00:00
|
|
|
c_snapname := C.CString(snapshot.name)
|
2015-02-11 21:21:05 +00:00
|
|
|
defer C.free(unsafe.Pointer(c_snapname))
|
2015-01-14 23:39:19 +00:00
|
|
|
|
2015-02-11 21:21:05 +00:00
|
|
|
return GetError(C.rbd_snap_rollback(snapshot.image.image, c_snapname))
|
2015-01-14 23:39:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// int rbd_snap_protect(rbd_image_t image, const char *snap_name);
|
|
|
|
func (snapshot *Snapshot) Protect() error {
|
2019-12-09 13:19:30 +00:00
|
|
|
if err := snapshot.validate(snapshotNeedsName | imageIsOpen); err != nil {
|
|
|
|
return err
|
2018-09-14 14:02:11 +00:00
|
|
|
}
|
|
|
|
|
2018-09-18 08:31:10 +00:00
|
|
|
c_snapname := C.CString(snapshot.name)
|
2015-02-11 21:21:05 +00:00
|
|
|
defer C.free(unsafe.Pointer(c_snapname))
|
2015-01-14 23:39:19 +00:00
|
|
|
|
2015-02-11 21:21:05 +00:00
|
|
|
return GetError(C.rbd_snap_protect(snapshot.image.image, c_snapname))
|
2015-01-14 23:39:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// int rbd_snap_unprotect(rbd_image_t image, const char *snap_name);
|
|
|
|
func (snapshot *Snapshot) Unprotect() error {
|
2019-12-09 13:19:30 +00:00
|
|
|
if err := snapshot.validate(snapshotNeedsName | imageIsOpen); err != nil {
|
|
|
|
return err
|
2018-09-14 14:02:11 +00:00
|
|
|
}
|
|
|
|
|
2018-09-18 08:31:10 +00:00
|
|
|
c_snapname := C.CString(snapshot.name)
|
2015-02-11 21:21:05 +00:00
|
|
|
defer C.free(unsafe.Pointer(c_snapname))
|
2015-01-14 23:39:19 +00:00
|
|
|
|
2015-02-11 21:21:05 +00:00
|
|
|
return GetError(C.rbd_snap_unprotect(snapshot.image.image, c_snapname))
|
2015-01-14 23:39:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// int rbd_snap_is_protected(rbd_image_t image, const char *snap_name,
|
|
|
|
// int *is_protected);
|
|
|
|
func (snapshot *Snapshot) IsProtected() (bool, error) {
|
2019-12-09 13:19:30 +00:00
|
|
|
if err := snapshot.validate(snapshotNeedsName | imageIsOpen); err != nil {
|
|
|
|
return false, err
|
2018-09-14 14:02:11 +00:00
|
|
|
}
|
|
|
|
|
2015-02-11 21:21:05 +00:00
|
|
|
var c_is_protected C.int
|
2018-09-18 08:31:10 +00:00
|
|
|
|
|
|
|
c_snapname := C.CString(snapshot.name)
|
2015-02-11 21:21:05 +00:00
|
|
|
defer C.free(unsafe.Pointer(c_snapname))
|
2015-01-14 23:39:19 +00:00
|
|
|
|
2015-02-11 21:21:05 +00:00
|
|
|
ret := C.rbd_snap_is_protected(snapshot.image.image, c_snapname,
|
|
|
|
&c_is_protected)
|
|
|
|
if ret < 0 {
|
2018-09-18 09:12:32 +00:00
|
|
|
return false, RBDError(ret)
|
2015-02-11 21:21:05 +00:00
|
|
|
}
|
2015-01-14 23:39:19 +00:00
|
|
|
|
2015-02-11 21:21:05 +00:00
|
|
|
return c_is_protected != 0, nil
|
2015-01-14 23:39:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// int rbd_snap_set(rbd_image_t image, const char *snapname);
|
|
|
|
func (snapshot *Snapshot) Set() error {
|
2019-12-09 13:19:30 +00:00
|
|
|
if err := snapshot.validate(snapshotNeedsName | imageIsOpen); err != nil {
|
|
|
|
return err
|
2018-09-14 14:02:11 +00:00
|
|
|
}
|
|
|
|
|
2018-09-18 08:31:10 +00:00
|
|
|
c_snapname := C.CString(snapshot.name)
|
2015-02-11 21:21:05 +00:00
|
|
|
defer C.free(unsafe.Pointer(c_snapname))
|
2015-01-14 23:39:19 +00:00
|
|
|
|
2015-02-11 21:21:05 +00:00
|
|
|
return GetError(C.rbd_snap_set(snapshot.image.image, c_snapname))
|
2015-01-14 23:39:19 +00:00
|
|
|
}
|
2018-09-14 23:31:19 +00:00
|
|
|
|
|
|
|
// GetTrashList returns a slice of TrashInfo structs, containing information about all RBD images
|
|
|
|
// currently residing in the trash.
|
|
|
|
func GetTrashList(ioctx *rados.IOContext) ([]TrashInfo, error) {
|
|
|
|
var num_entries C.size_t
|
|
|
|
|
|
|
|
// Call rbd_trash_list with nil pointer to get number of trash entries.
|
|
|
|
if C.rbd_trash_list(C.rados_ioctx_t(ioctx.Pointer()), nil, &num_entries); num_entries == 0 {
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
c_entries := make([]C.rbd_trash_image_info_t, num_entries)
|
|
|
|
trashList := make([]TrashInfo, num_entries)
|
|
|
|
|
|
|
|
if ret := C.rbd_trash_list(C.rados_ioctx_t(ioctx.Pointer()), &c_entries[0], &num_entries); ret < 0 {
|
|
|
|
return nil, RBDError(ret)
|
|
|
|
}
|
|
|
|
|
|
|
|
for i, ti := range c_entries {
|
|
|
|
trashList[i] = TrashInfo{
|
|
|
|
Id: C.GoString(ti.id),
|
|
|
|
Name: C.GoString(ti.name),
|
|
|
|
DeletionTime: time.Unix(int64(ti.deletion_time), 0),
|
|
|
|
DefermentEndTime: time.Unix(int64(ti.deferment_end_time), 0),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Free rbd_trash_image_info_t pointers
|
|
|
|
C.rbd_trash_list_cleanup(&c_entries[0], num_entries)
|
|
|
|
|
|
|
|
return trashList, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// TrashRemove permanently deletes the trashed RBD with the specified id.
|
|
|
|
func TrashRemove(ioctx *rados.IOContext, id string, force bool) error {
|
|
|
|
c_id := C.CString(id)
|
|
|
|
defer C.free(unsafe.Pointer(c_id))
|
|
|
|
|
|
|
|
return GetError(C.rbd_trash_remove(C.rados_ioctx_t(ioctx.Pointer()), c_id, C.bool(force)))
|
|
|
|
}
|
|
|
|
|
|
|
|
// TrashRestore restores the trashed RBD with the specified id back to the pool from whence it
|
|
|
|
// came, with the specified new name.
|
|
|
|
func TrashRestore(ioctx *rados.IOContext, id, name string) error {
|
|
|
|
c_id := C.CString(id)
|
|
|
|
c_name := C.CString(name)
|
|
|
|
defer C.free(unsafe.Pointer(c_id))
|
|
|
|
defer C.free(unsafe.Pointer(c_name))
|
|
|
|
|
|
|
|
return GetError(C.rbd_trash_restore(C.rados_ioctx_t(ioctx.Pointer()), c_id, c_name))
|
|
|
|
}
|