2020-02-25 16:36:22 +00:00
|
|
|
package rbd
|
|
|
|
|
|
|
|
// #cgo LDFLAGS: -lrbd
|
|
|
|
// #include <stdlib.h>
|
|
|
|
// #include <rbd/librbd.h>
|
|
|
|
import "C"
|
|
|
|
|
|
|
|
import (
|
|
|
|
"unsafe"
|
2020-09-02 14:02:17 +00:00
|
|
|
|
|
|
|
ts "github.com/ceph/go-ceph/internal/timespec"
|
2020-02-25 16:36:22 +00:00
|
|
|
)
|
|
|
|
|
2020-02-25 17:20:58 +00:00
|
|
|
// Snapshot represents a snapshot on a particular rbd image.
|
2020-02-25 16:36:22 +00:00
|
|
|
type Snapshot struct {
|
|
|
|
image *Image
|
|
|
|
name string
|
|
|
|
}
|
|
|
|
|
2020-02-25 17:20:58 +00:00
|
|
|
// CreateSnapshot returns a new Snapshot objects after creating
|
|
|
|
// a snapshot of the rbd image.
|
|
|
|
//
|
|
|
|
// Implements:
|
|
|
|
// int rbd_snap_create(rbd_image_t image, const char *snapname);
|
2020-02-25 16:36:22 +00:00
|
|
|
func (image *Image) CreateSnapshot(snapname string) (*Snapshot, error) {
|
|
|
|
if err := image.validate(imageIsOpen); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
c_snapname := C.CString(snapname)
|
|
|
|
defer C.free(unsafe.Pointer(c_snapname))
|
|
|
|
|
|
|
|
ret := C.rbd_snap_create(image.image, c_snapname)
|
|
|
|
if ret < 0 {
|
2020-07-13 23:23:13 +00:00
|
|
|
return nil, rbdError(ret)
|
2020-02-25 16:36:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return &Snapshot{
|
|
|
|
image: image,
|
|
|
|
name: snapname,
|
|
|
|
}, 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 == "" {
|
|
|
|
return ErrSnapshotNoName
|
|
|
|
} else if snapshot.image != nil {
|
|
|
|
return snapshot.image.validate(req)
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2020-02-25 17:20:58 +00:00
|
|
|
// GetSnapshot constructs a snapshot object for the image given
|
|
|
|
// the snap name. It does not validate that this snapshot exists.
|
2020-02-25 16:36:22 +00:00
|
|
|
func (image *Image) GetSnapshot(snapname string) *Snapshot {
|
|
|
|
return &Snapshot{
|
|
|
|
image: image,
|
|
|
|
name: snapname,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-25 17:20:58 +00:00
|
|
|
// Remove the snapshot from the connected rbd image.
|
|
|
|
//
|
|
|
|
// Implements:
|
|
|
|
// int rbd_snap_remove(rbd_image_t image, const char *snapname);
|
2020-02-25 16:36:22 +00:00
|
|
|
func (snapshot *Snapshot) Remove() error {
|
|
|
|
if err := snapshot.validate(snapshotNeedsName | imageIsOpen); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
c_snapname := C.CString(snapshot.name)
|
|
|
|
defer C.free(unsafe.Pointer(c_snapname))
|
|
|
|
|
|
|
|
return getError(C.rbd_snap_remove(snapshot.image.image, c_snapname))
|
|
|
|
}
|
|
|
|
|
2020-02-25 17:20:58 +00:00
|
|
|
// Rollback the image to the snapshot.
|
|
|
|
//
|
|
|
|
// Implements:
|
|
|
|
// int rbd_snap_rollback(rbd_image_t image, const char *snapname);
|
2020-02-25 16:36:22 +00:00
|
|
|
func (snapshot *Snapshot) Rollback() error {
|
|
|
|
if err := snapshot.validate(snapshotNeedsName | imageIsOpen); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
c_snapname := C.CString(snapshot.name)
|
|
|
|
defer C.free(unsafe.Pointer(c_snapname))
|
|
|
|
|
|
|
|
return getError(C.rbd_snap_rollback(snapshot.image.image, c_snapname))
|
|
|
|
}
|
|
|
|
|
2020-02-25 17:20:58 +00:00
|
|
|
// Protect a snapshot from unwanted deletion.
|
|
|
|
//
|
|
|
|
// Implements:
|
|
|
|
// int rbd_snap_protect(rbd_image_t image, const char *snap_name);
|
2020-02-25 16:36:22 +00:00
|
|
|
func (snapshot *Snapshot) Protect() error {
|
|
|
|
if err := snapshot.validate(snapshotNeedsName | imageIsOpen); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
c_snapname := C.CString(snapshot.name)
|
|
|
|
defer C.free(unsafe.Pointer(c_snapname))
|
|
|
|
|
|
|
|
return getError(C.rbd_snap_protect(snapshot.image.image, c_snapname))
|
|
|
|
}
|
|
|
|
|
2020-02-25 17:20:58 +00:00
|
|
|
// Unprotect stops protecting the snapshot.
|
|
|
|
//
|
|
|
|
// Implements:
|
|
|
|
// int rbd_snap_unprotect(rbd_image_t image, const char *snap_name);
|
2020-02-25 16:36:22 +00:00
|
|
|
func (snapshot *Snapshot) Unprotect() error {
|
|
|
|
if err := snapshot.validate(snapshotNeedsName | imageIsOpen); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
c_snapname := C.CString(snapshot.name)
|
|
|
|
defer C.free(unsafe.Pointer(c_snapname))
|
|
|
|
|
|
|
|
return getError(C.rbd_snap_unprotect(snapshot.image.image, c_snapname))
|
|
|
|
}
|
|
|
|
|
2020-02-25 17:20:58 +00:00
|
|
|
// IsProtected returns true if the snapshot is currently protected.
|
|
|
|
//
|
|
|
|
// Implements:
|
|
|
|
// int rbd_snap_is_protected(rbd_image_t image, const char *snap_name,
|
2020-02-25 16:36:22 +00:00
|
|
|
// int *is_protected);
|
|
|
|
func (snapshot *Snapshot) IsProtected() (bool, error) {
|
|
|
|
if err := snapshot.validate(snapshotNeedsName | imageIsOpen); err != nil {
|
|
|
|
return false, err
|
|
|
|
}
|
|
|
|
|
|
|
|
var c_is_protected C.int
|
|
|
|
|
|
|
|
c_snapname := C.CString(snapshot.name)
|
|
|
|
defer C.free(unsafe.Pointer(c_snapname))
|
|
|
|
|
|
|
|
ret := C.rbd_snap_is_protected(snapshot.image.image, c_snapname,
|
|
|
|
&c_is_protected)
|
|
|
|
if ret < 0 {
|
2020-07-13 23:23:13 +00:00
|
|
|
return false, rbdError(ret)
|
2020-02-25 16:36:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return c_is_protected != 0, nil
|
|
|
|
}
|
|
|
|
|
2020-02-25 17:20:58 +00:00
|
|
|
// Set updates the rbd image (not the Snapshot) such that the snapshot
|
|
|
|
// is the source of readable data.
|
2021-05-10 05:34:52 +00:00
|
|
|
// This method is deprecated. Refer the SetSnapshot method of the Image type instead.
|
2020-02-25 17:20:58 +00:00
|
|
|
//
|
|
|
|
// Implements:
|
|
|
|
// int rbd_snap_set(rbd_image_t image, const char *snapname);
|
2020-02-25 16:36:22 +00:00
|
|
|
func (snapshot *Snapshot) Set() error {
|
|
|
|
if err := snapshot.validate(snapshotNeedsName | imageIsOpen); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2021-05-10 05:34:52 +00:00
|
|
|
return snapshot.image.SetSnapshot(snapshot.name)
|
2020-02-25 16:36:22 +00:00
|
|
|
}
|
2020-09-02 14:02:17 +00:00
|
|
|
|
|
|
|
// GetSnapTimestamp returns the timestamp of a snapshot for an image.
|
|
|
|
// For a non-existing snap ID, GetSnapTimestamp() may trigger an assertion
|
|
|
|
// and crash in the ceph library.
|
|
|
|
// Check https://tracker.ceph.com/issues/47287 for details.
|
|
|
|
//
|
|
|
|
// Implements:
|
|
|
|
// int rbd_snap_get_timestamp(rbd_image_t image, uint64_t snap_id, struct timespec *timestamp)
|
|
|
|
func (image *Image) GetSnapTimestamp(snapID uint64) (Timespec, error) {
|
|
|
|
if err := image.validate(imageIsOpen); err != nil {
|
|
|
|
return Timespec{}, err
|
|
|
|
}
|
|
|
|
|
|
|
|
var cts C.struct_timespec
|
|
|
|
|
|
|
|
ret := C.rbd_snap_get_timestamp(image.image, C.uint64_t(snapID), &cts)
|
|
|
|
if ret < 0 {
|
|
|
|
return Timespec{}, getError(ret)
|
|
|
|
}
|
|
|
|
|
|
|
|
return Timespec(ts.CStructToTimespec(ts.CTimespecPtr(&cts))), nil
|
|
|
|
}
|