mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-22 14:20:19 +00:00
ci: remove this commit later
This is temporary test only commit and not suitable for review. Signed-off-by: Madhu Rajanna <madhupr007@gmail.com>
This commit is contained in:
parent
8ee57e0bb7
commit
e4d6e19554
@ -15,7 +15,7 @@ CSI_IMAGE_VERSION=canary
|
|||||||
CSI_UPGRADE_VERSION=v3.12.1
|
CSI_UPGRADE_VERSION=v3.12.1
|
||||||
|
|
||||||
# Ceph version to use
|
# Ceph version to use
|
||||||
BASE_IMAGE=quay.io/ceph/ceph:v19
|
BASE_IMAGE=quay.ceph.io/ceph-ci/ceph:wip-pkalever-rbd-group-snap-mirror
|
||||||
CEPH_VERSION=squid
|
CEPH_VERSION=squid
|
||||||
|
|
||||||
# standard Golang options
|
# standard Golang options
|
||||||
|
@ -8,7 +8,7 @@
|
|||||||
# little different.
|
# little different.
|
||||||
#
|
#
|
||||||
|
|
||||||
FROM registry.fedoraproject.org/fedora:latest
|
FROM quay.ceph.io/ceph-ci/ceph:wip-pkalever-rbd-group-snap-mirror
|
||||||
|
|
||||||
ARG GOPATH=/go
|
ARG GOPATH=/go
|
||||||
ARG GOROOT=/usr/local/go
|
ARG GOROOT=/usr/local/go
|
||||||
|
9
vendor/github.com/ceph/go-ceph/rbd/group.go
generated
vendored
9
vendor/github.com/ceph/go-ceph/rbd/group.go
generated
vendored
@ -110,7 +110,8 @@ func GroupImageAdd(groupIoctx *rados.IOContext, groupName string,
|
|||||||
cephIoctx(groupIoctx),
|
cephIoctx(groupIoctx),
|
||||||
cGroupName,
|
cGroupName,
|
||||||
cephIoctx(imageIoctx),
|
cephIoctx(imageIoctx),
|
||||||
cImageName)
|
cImageName,
|
||||||
|
C.uint32_t(0))
|
||||||
return getError(ret)
|
return getError(ret)
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -135,7 +136,8 @@ func GroupImageRemove(groupIoctx *rados.IOContext, groupName string,
|
|||||||
cephIoctx(groupIoctx),
|
cephIoctx(groupIoctx),
|
||||||
cGroupName,
|
cGroupName,
|
||||||
cephIoctx(imageIoctx),
|
cephIoctx(imageIoctx),
|
||||||
cImageName)
|
cImageName,
|
||||||
|
C.uint32_t(0))
|
||||||
return getError(ret)
|
return getError(ret)
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -160,7 +162,8 @@ func GroupImageRemoveByID(groupIoctx *rados.IOContext, groupName string,
|
|||||||
cephIoctx(groupIoctx),
|
cephIoctx(groupIoctx),
|
||||||
cGroupName,
|
cGroupName,
|
||||||
cephIoctx(imageIoctx),
|
cephIoctx(imageIoctx),
|
||||||
cid)
|
cid,
|
||||||
|
C.uint32_t(0))
|
||||||
return getError(ret)
|
return getError(ret)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
332
vendor/github.com/ceph/go-ceph/rbd/mirror_group.go
generated
vendored
Normal file
332
vendor/github.com/ceph/go-ceph/rbd/mirror_group.go
generated
vendored
Normal file
@ -0,0 +1,332 @@
|
|||||||
|
//go:build ceph_preview
|
||||||
|
|
||||||
|
package rbd
|
||||||
|
|
||||||
|
// #cgo LDFLAGS: -lrbd
|
||||||
|
// #include <stdlib.h>
|
||||||
|
// #include <rbd/librbd.h>
|
||||||
|
import "C"
|
||||||
|
import (
|
||||||
|
"fmt"
|
||||||
|
"unsafe"
|
||||||
|
|
||||||
|
"github.com/ceph/go-ceph/internal/cutil"
|
||||||
|
"github.com/ceph/go-ceph/rados"
|
||||||
|
)
|
||||||
|
|
||||||
|
// MirrorGroupEnable will enable mirroring for a group using the specified mode.
|
||||||
|
//
|
||||||
|
// Implements:
|
||||||
|
//
|
||||||
|
// int rbd_mirror_group_enable(rados_ioctx_t p, const char *name,
|
||||||
|
// rbd_mirror_image_mode_t mirror_image_mode,
|
||||||
|
// uint32_t flags);
|
||||||
|
func MirrorGroupEnable(groupIoctx *rados.IOContext, groupName string, mode ImageMirrorMode) error {
|
||||||
|
cGroupName := C.CString(groupName)
|
||||||
|
defer C.free(unsafe.Pointer(cGroupName))
|
||||||
|
ret := C.rbd_mirror_group_enable(
|
||||||
|
cephIoctx(groupIoctx),
|
||||||
|
cGroupName,
|
||||||
|
C.rbd_mirror_image_mode_t(mode),
|
||||||
|
(C.uint32_t)(2),
|
||||||
|
)
|
||||||
|
return getError(ret)
|
||||||
|
}
|
||||||
|
|
||||||
|
// MirrorGroupDisable will disabling mirroring for a group
|
||||||
|
//
|
||||||
|
// Implements:
|
||||||
|
//
|
||||||
|
// int rbd_mirror_group_disable(rados_ioctx_t p, const char *name,
|
||||||
|
// bool force)
|
||||||
|
func MirrorGroupDisable(groupIoctx *rados.IOContext, groupName string, force bool) error {
|
||||||
|
cGroupName := C.CString(groupName)
|
||||||
|
defer C.free(unsafe.Pointer(cGroupName))
|
||||||
|
ret := C.rbd_mirror_group_disable(
|
||||||
|
cephIoctx(groupIoctx),
|
||||||
|
cGroupName,
|
||||||
|
C.bool(force))
|
||||||
|
return getError(ret)
|
||||||
|
}
|
||||||
|
|
||||||
|
// MirrorGroupPromote will promote the mirrored group to primary status
|
||||||
|
//
|
||||||
|
// Implements:
|
||||||
|
//
|
||||||
|
// int rbd_mirror_group_promote(rados_ioctx_t p, const char *name,
|
||||||
|
// uint32_t flags, bool force)
|
||||||
|
func MirrorGroupPromote(groupIoctx *rados.IOContext, groupName string, force bool) error {
|
||||||
|
cGroupName := C.CString(groupName)
|
||||||
|
defer C.free(unsafe.Pointer(cGroupName))
|
||||||
|
ret := C.rbd_mirror_group_promote(
|
||||||
|
cephIoctx(groupIoctx),
|
||||||
|
cGroupName,
|
||||||
|
(C.uint32_t)(0),
|
||||||
|
C.bool(force))
|
||||||
|
return getError(ret)
|
||||||
|
}
|
||||||
|
|
||||||
|
// MirrorGroupDemote will demote the mirrored group to primary status
|
||||||
|
//
|
||||||
|
// Implements:
|
||||||
|
//
|
||||||
|
// int rbd_mirror_group_demote(rados_ioctx_t p, const char *name,
|
||||||
|
// uint32_t flags)
|
||||||
|
func MirrorGroupDemote(groupIoctx *rados.IOContext, groupName string) error {
|
||||||
|
cGroupName := C.CString(groupName)
|
||||||
|
defer C.free(unsafe.Pointer(cGroupName))
|
||||||
|
ret := C.rbd_mirror_group_demote(
|
||||||
|
cephIoctx(groupIoctx),
|
||||||
|
cGroupName,
|
||||||
|
(C.uint32_t)(0))
|
||||||
|
return getError(ret)
|
||||||
|
}
|
||||||
|
|
||||||
|
// MirrorGroupResync is used to manually resolve split-brain status by triggering
|
||||||
|
// resynchronization
|
||||||
|
//
|
||||||
|
// Implements:
|
||||||
|
//
|
||||||
|
// int rbd_mirror_group_resync(rados_ioctx_t p, const char *name)
|
||||||
|
func MirrorGroupResync(groupIoctx *rados.IOContext, groupName string) error {
|
||||||
|
cGroupName := C.CString(groupName)
|
||||||
|
defer C.free(unsafe.Pointer(cGroupName))
|
||||||
|
ret := C.rbd_mirror_group_resync(
|
||||||
|
cephIoctx(groupIoctx),
|
||||||
|
cGroupName)
|
||||||
|
return getError(ret)
|
||||||
|
}
|
||||||
|
|
||||||
|
// MirrorGroupState represents the current state of the mirrored group
|
||||||
|
type MirrorGroupState C.rbd_mirror_group_state_t
|
||||||
|
|
||||||
|
// String representation of MirrorGroupState.
|
||||||
|
func (mgs MirrorGroupState) String() string {
|
||||||
|
switch mgs {
|
||||||
|
case MirrorGroupEnabled:
|
||||||
|
return "enabled"
|
||||||
|
case MirrorGroupDisabled:
|
||||||
|
return "disabled"
|
||||||
|
case MirrorGroupEnabling:
|
||||||
|
return "enabling"
|
||||||
|
case MirrorGrpupDisabling:
|
||||||
|
return "disabled"
|
||||||
|
default:
|
||||||
|
return "<unknown>"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
const (
|
||||||
|
// MirrorGrpupDisabling is the representation of
|
||||||
|
// RBD_MIRROR_GROUP_DISABLING from librbd.
|
||||||
|
MirrorGrpupDisabling = MirrorGroupState(C.RBD_MIRROR_GROUP_DISABLING)
|
||||||
|
// MirrorGroupEnabling is the representation of
|
||||||
|
// RBD_MIRROR_GROUP_ENABLING from librbd
|
||||||
|
MirrorGroupEnabling = MirrorGroupState(C.RBD_MIRROR_GROUP_ENABLING)
|
||||||
|
// MirrorGroupEnabled is the representation of
|
||||||
|
// RBD_MIRROR_IMAGE_ENABLED from librbd.
|
||||||
|
MirrorGroupEnabled = MirrorGroupState(C.RBD_MIRROR_GROUP_ENABLED)
|
||||||
|
// MirrorGroupDisabled is the representation of
|
||||||
|
// RBD_MIRROR_GROUP_DISABLED from librbd.
|
||||||
|
MirrorGroupDisabled = MirrorGroupState(C.RBD_MIRROR_GROUP_DISABLED)
|
||||||
|
)
|
||||||
|
|
||||||
|
// MirrorGroupInfo represents the mirroring status information of group.
|
||||||
|
type MirrorGroupInfo struct {
|
||||||
|
GlobalID string
|
||||||
|
State MirrorGroupState
|
||||||
|
MirrorImageMode ImageMirrorMode
|
||||||
|
Primary bool
|
||||||
|
}
|
||||||
|
|
||||||
|
// GetMirrorGroupInfo returns the mirroring status information of the mirrored group
|
||||||
|
//
|
||||||
|
// Implements:
|
||||||
|
//
|
||||||
|
// int rbd_mirror_group_get_info(rados_ioctx_t p, const char *name,
|
||||||
|
// rbd_mirror_group_info_t *mirror_group_info,
|
||||||
|
// size_t info_size)
|
||||||
|
func GetMirrorGroupInfo(groupIoctx *rados.IOContext, groupName string) (*MirrorGroupInfo, error) {
|
||||||
|
var cgInfo C.rbd_mirror_group_info_t
|
||||||
|
cGroupName := C.CString(groupName)
|
||||||
|
defer C.free(unsafe.Pointer(cGroupName))
|
||||||
|
|
||||||
|
ret := C.rbd_mirror_group_get_info(
|
||||||
|
cephIoctx(groupIoctx),
|
||||||
|
cGroupName,
|
||||||
|
&cgInfo,
|
||||||
|
C.sizeof_rbd_mirror_group_info_t)
|
||||||
|
|
||||||
|
if ret < 0 {
|
||||||
|
return nil, getError(ret)
|
||||||
|
}
|
||||||
|
|
||||||
|
info := convertMirrorGroupInfo(&cgInfo)
|
||||||
|
|
||||||
|
// free C memory allocated by C.rbd_mirror_group_get_info call
|
||||||
|
C.rbd_mirror_group_get_info_cleanup(&cgInfo)
|
||||||
|
return &info, nil
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
func convertMirrorGroupInfo(cgInfo *C.rbd_mirror_group_info_t) MirrorGroupInfo {
|
||||||
|
return MirrorGroupInfo{
|
||||||
|
GlobalID: C.GoString(cgInfo.global_id),
|
||||||
|
MirrorImageMode: ImageMirrorMode(cgInfo.mirror_image_mode),
|
||||||
|
State: MirrorGroupState(cgInfo.state),
|
||||||
|
Primary: bool(cgInfo.primary),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// MirrorGroupStatusState is used to indicate the state of a mirrored group
|
||||||
|
// within the site status info.
|
||||||
|
type MirrorGroupStatusState int64
|
||||||
|
|
||||||
|
const (
|
||||||
|
// MirrorGroupStatusStateUnknown is equivalent to MIRROR_GROUP_STATUS_STATE_UNKNOWN
|
||||||
|
MirrorGroupStatusStateUnknown = MirrorGroupStatusState(C.MIRROR_GROUP_STATUS_STATE_UNKNOWN)
|
||||||
|
// MirrorGroupStatusStateError is equivalent to MIRROR_GROUP_STATUS_STATE_ERROR
|
||||||
|
MirrorGroupStatusStateError = MirrorGroupStatusState(C.MIRROR_GROUP_STATUS_STATE_ERROR)
|
||||||
|
// MirrorGroupStatusStateStartingReplay is equivalent to MIRROR_GROUP_STATUS_STATE_STARTING_REPLAY
|
||||||
|
MirrorGroupStatusStateStartingReplay = MirrorGroupStatusState(C.MIRROR_GROUP_STATUS_STATE_STARTING_REPLAY)
|
||||||
|
// MirrorGroupStatusStateReplaying is equivalent to MIRROR_GROUP_STATUS_STATE_REPLAYING
|
||||||
|
MirrorGroupStatusStateReplaying = MirrorGroupStatusState(C.MIRROR_GROUP_STATUS_STATE_REPLAYING)
|
||||||
|
// MirrorGroupStatusStateStoppingReplay is equivalent to MIRROR_GROUP_STATUS_STATE_STOPPING_REPLAY
|
||||||
|
MirrorGroupStatusStateStoppingReplay = MirrorGroupStatusState(C.MIRROR_GROUP_STATUS_STATE_STOPPING_REPLAY)
|
||||||
|
// MirrorGroupStatusStateStopped is equivalent to MIRROR_IMAGE_GROUP_STATUS_STATE_STOPPED
|
||||||
|
MirrorGroupStatusStateStopped = MirrorGroupStatusState(C.MIRROR_GROUP_STATUS_STATE_STOPPED)
|
||||||
|
)
|
||||||
|
|
||||||
|
// String represents the MirrorImageStatusState as a short string.
|
||||||
|
func (state MirrorGroupStatusState) String() (s string) {
|
||||||
|
switch state {
|
||||||
|
case MirrorGroupStatusStateUnknown:
|
||||||
|
s = "unknown"
|
||||||
|
case MirrorGroupStatusStateError:
|
||||||
|
s = "error"
|
||||||
|
case MirrorGroupStatusStateStartingReplay:
|
||||||
|
s = "starting_replay"
|
||||||
|
case MirrorGroupStatusStateReplaying:
|
||||||
|
s = "replaying"
|
||||||
|
case MirrorGroupStatusStateStoppingReplay:
|
||||||
|
s = "stopping_replay"
|
||||||
|
case MirrorGroupStatusStateStopped:
|
||||||
|
s = "stopped"
|
||||||
|
default:
|
||||||
|
s = fmt.Sprintf("unknown(%d)", state)
|
||||||
|
}
|
||||||
|
return s
|
||||||
|
}
|
||||||
|
|
||||||
|
// SiteMirrorGroupStatus contains information pertaining to the status of
|
||||||
|
// a mirrored group within a site.
|
||||||
|
type SiteMirrorGroupStatus struct {
|
||||||
|
MirrorUUID string
|
||||||
|
State MirrorGroupStatusState
|
||||||
|
MirrorImageCount int
|
||||||
|
MirrorImagePoolIDs int64
|
||||||
|
MirrorImageGlobalIDs string
|
||||||
|
MirrorImages []SiteMirrorImageStatus
|
||||||
|
Description string
|
||||||
|
LastUpdate int64
|
||||||
|
Up bool
|
||||||
|
}
|
||||||
|
|
||||||
|
// GlobalMirrorGroupStatus contains information pertaining to the global
|
||||||
|
// status of a mirrored group. It contains general information as well
|
||||||
|
// as per-site information stored in the SiteStatuses slice.
|
||||||
|
type GlobalMirrorGroupStatus struct {
|
||||||
|
Name string
|
||||||
|
Info MirrorGroupInfo
|
||||||
|
SiteStatusesCount int
|
||||||
|
SiteStatuses []SiteMirrorGroupStatus
|
||||||
|
}
|
||||||
|
|
||||||
|
// LocalStatus returns one SiteMirrorGroupStatus item from the SiteStatuses
|
||||||
|
// slice that corresponds to the local site's status. If the local status
|
||||||
|
// is not found than the error ErrNotExist will be returned.
|
||||||
|
func (gmis GlobalMirrorGroupStatus) LocalStatus() (SiteMirrorGroupStatus, error) {
|
||||||
|
var (
|
||||||
|
ss SiteMirrorGroupStatus
|
||||||
|
err error = ErrNotExist
|
||||||
|
)
|
||||||
|
for i := range gmis.SiteStatuses {
|
||||||
|
// I couldn't find it explicitly documented, but a site mirror uuid
|
||||||
|
// of an empty string indicates that this is the local site.
|
||||||
|
// This pattern occurs in both the pybind code and ceph c++.
|
||||||
|
if gmis.SiteStatuses[i].MirrorUUID == "" {
|
||||||
|
ss = gmis.SiteStatuses[i]
|
||||||
|
err = nil
|
||||||
|
break
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return ss, err
|
||||||
|
}
|
||||||
|
|
||||||
|
type groupSiteArray [cutil.MaxIdx]C.rbd_mirror_group_site_status_t
|
||||||
|
|
||||||
|
// GetGlobalMirrorGroupStatus returns status information pertaining to the state
|
||||||
|
// of a groups's mirroring.
|
||||||
|
//
|
||||||
|
// Implements:
|
||||||
|
//
|
||||||
|
// int rbd_mirror_group_get_global_status(
|
||||||
|
// IoCtx& io_ctx,
|
||||||
|
// const char *group_name
|
||||||
|
// mirror_group_global_status_t *mirror_group_status,
|
||||||
|
// size_t status_size);
|
||||||
|
func GetGlobalMirrorGroupStatus(ioctx *rados.IOContext, groupName string) (GlobalMirrorGroupStatus, error) {
|
||||||
|
s := C.rbd_mirror_group_global_status_t{}
|
||||||
|
cGroupName := C.CString(groupName)
|
||||||
|
defer C.free(unsafe.Pointer(cGroupName))
|
||||||
|
// ret := C.rbd_mirror_group_get_global_status(
|
||||||
|
// cephIoctx(ioctx),
|
||||||
|
// (*C.char)(cGroupName),
|
||||||
|
// &s,
|
||||||
|
// C.sizeof_rbd_mirror_group_global_status_t)
|
||||||
|
// if err := getError(ret); err != nil {
|
||||||
|
// return GlobalMirrorGroupStatus{}, err
|
||||||
|
// }
|
||||||
|
|
||||||
|
status := newGlobalMirrorGroupStatus(&s)
|
||||||
|
return status, nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func newGlobalMirrorGroupStatus(
|
||||||
|
s *C.rbd_mirror_group_global_status_t) GlobalMirrorGroupStatus {
|
||||||
|
|
||||||
|
status := GlobalMirrorGroupStatus{
|
||||||
|
Name: C.GoString(s.name),
|
||||||
|
Info: convertMirrorGroupInfo(&s.info),
|
||||||
|
SiteStatusesCount: int(s.site_statuses_count),
|
||||||
|
SiteStatuses: make([]SiteMirrorGroupStatus, s.site_statuses_count),
|
||||||
|
}
|
||||||
|
gsscs := (*groupSiteArray)(unsafe.Pointer(s.site_statuses))[:s.site_statuses_count:s.site_statuses_count]
|
||||||
|
for i := C.uint32_t(0); i < s.site_statuses_count; i++ {
|
||||||
|
gss := gsscs[i]
|
||||||
|
status.SiteStatuses[i] = SiteMirrorGroupStatus{
|
||||||
|
MirrorUUID: C.GoString(gss.mirror_uuid),
|
||||||
|
MirrorImageGlobalIDs: C.GoString(*gss.mirror_image_global_ids),
|
||||||
|
MirrorImagePoolIDs: int64(*gss.mirror_image_pool_ids),
|
||||||
|
State: MirrorGroupStatusState(gss.state),
|
||||||
|
Description: C.GoString(gss.description),
|
||||||
|
MirrorImageCount: int(gss.mirror_image_count),
|
||||||
|
LastUpdate: int64(gss.last_update),
|
||||||
|
MirrorImages: make([]SiteMirrorImageStatus, gss.mirror_image_count),
|
||||||
|
Up: bool(gss.up),
|
||||||
|
}
|
||||||
|
|
||||||
|
sscs := (*siteArray)(unsafe.Pointer(gss.mirror_images))[:gss.mirror_image_count:gss.mirror_image_count]
|
||||||
|
for i := C.uint32_t(0); i < gss.mirror_image_count; i++ {
|
||||||
|
ss := sscs[i]
|
||||||
|
status.SiteStatuses[i].MirrorImages[i] = SiteMirrorImageStatus{
|
||||||
|
MirrorUUID: C.GoString(ss.mirror_uuid),
|
||||||
|
State: MirrorImageStatusState(ss.state),
|
||||||
|
Description: C.GoString(ss.description),
|
||||||
|
LastUpdate: int64(ss.last_update),
|
||||||
|
Up: bool(ss.up),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return status
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user