2020-05-08 14:07:31 +00:00
|
|
|
package rbd
|
|
|
|
|
|
|
|
/*
|
|
|
|
#include <errno.h>
|
|
|
|
*/
|
|
|
|
import "C"
|
|
|
|
|
|
|
|
import (
|
|
|
|
"errors"
|
|
|
|
|
|
|
|
"github.com/ceph/go-ceph/internal/errutil"
|
|
|
|
)
|
|
|
|
|
2020-08-11 14:42:21 +00:00
|
|
|
// rbdError represents an error condition returned from the librbd APIs.
|
|
|
|
type rbdError int
|
2020-05-08 14:07:31 +00:00
|
|
|
|
2020-08-11 14:42:21 +00:00
|
|
|
func (e rbdError) Error() string {
|
|
|
|
return errutil.FormatErrorCode("rbd", int(e))
|
|
|
|
}
|
2020-05-08 14:07:31 +00:00
|
|
|
|
2020-08-11 14:42:21 +00:00
|
|
|
func (e rbdError) ErrorCode() int {
|
|
|
|
return int(e)
|
2020-05-08 14:07:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func getError(err C.int) error {
|
|
|
|
if err != 0 {
|
|
|
|
if err == -C.ENOENT {
|
|
|
|
return ErrNotFound
|
|
|
|
}
|
2020-08-11 14:42:21 +00:00
|
|
|
return rbdError(err)
|
2020-05-08 14:07:31 +00:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2020-06-17 09:37:06 +00:00
|
|
|
// getErrorIfNegative converts a ceph return code to error if negative.
|
|
|
|
// This is useful for functions that return a usable positive value on
|
|
|
|
// success but a negative error number on error.
|
|
|
|
func getErrorIfNegative(ret C.int) error {
|
|
|
|
if ret >= 0 {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return getError(ret)
|
|
|
|
}
|
|
|
|
|
2020-05-08 14:07:31 +00:00
|
|
|
// Public go errors:
|
|
|
|
|
|
|
|
var (
|
|
|
|
// ErrNoIOContext may be returned if an api call requires an IOContext and
|
|
|
|
// it is not provided.
|
2020-06-17 09:37:06 +00:00
|
|
|
ErrNoIOContext = errors.New("IOContext is missing")
|
2020-05-08 14:07:31 +00:00
|
|
|
// ErrNoName may be returned if an api call requires a name and it is
|
|
|
|
// not provided.
|
|
|
|
ErrNoName = errors.New("RBD image does not have a name")
|
2020-06-17 09:37:06 +00:00
|
|
|
// ErrSnapshotNoName may be returned if an api call requires a snapshot
|
2020-05-08 14:07:31 +00:00
|
|
|
// name and it is not provided.
|
|
|
|
ErrSnapshotNoName = errors.New("RBD snapshot does not have a name")
|
2020-06-17 09:37:06 +00:00
|
|
|
// ErrImageNotOpen may be returned if an api call requires an open image handle and one is not provided.
|
2020-05-08 14:07:31 +00:00
|
|
|
ErrImageNotOpen = errors.New("RBD image not open")
|
2020-06-17 09:37:06 +00:00
|
|
|
// ErrImageIsOpen may be returned if an api call requires a closed image handle and one is not provided.
|
|
|
|
ErrImageIsOpen = errors.New("RBD image is open")
|
2020-05-08 14:07:31 +00:00
|
|
|
// ErrNotFound may be returned from an api call when the requested item is
|
|
|
|
// missing.
|
|
|
|
ErrNotFound = errors.New("RBD image not found")
|
2020-06-17 09:37:06 +00:00
|
|
|
// ErrNoNamespaceName maye be returned if an api call requires a namespace
|
|
|
|
// name and it is not provided.
|
|
|
|
ErrNoNamespaceName = errors.New("Namespace value is missing")
|
2020-05-08 14:07:31 +00:00
|
|
|
|
|
|
|
// revive:disable:exported for compatibility with old versions
|
|
|
|
RbdErrorImageNotOpen = ErrImageNotOpen
|
|
|
|
RbdErrorNotFound = ErrNotFound
|
|
|
|
// revive:enable:exported
|
|
|
|
)
|
2020-06-17 09:37:06 +00:00
|
|
|
|
|
|
|
// Private errors:
|
|
|
|
|
|
|
|
const (
|
2020-08-11 14:42:21 +00:00
|
|
|
errRange = rbdError(-C.ERANGE)
|
2020-06-17 09:37:06 +00:00
|
|
|
)
|