2015-05-01 19:35:40 +00:00
|
|
|
package cephfs
|
|
|
|
|
|
|
|
/*
|
|
|
|
#cgo LDFLAGS: -lcephfs
|
|
|
|
#cgo CPPFLAGS: -D_FILE_OFFSET_BITS=64
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <cephfs/libcephfs.h>
|
|
|
|
*/
|
|
|
|
import "C"
|
|
|
|
|
2018-10-09 04:26:51 +00:00
|
|
|
import (
|
|
|
|
"unsafe"
|
2019-12-12 18:27:28 +00:00
|
|
|
|
2020-04-10 17:35:49 +00:00
|
|
|
"github.com/ceph/go-ceph/internal/retry"
|
2019-12-18 22:27:12 +00:00
|
|
|
"github.com/ceph/go-ceph/rados"
|
2018-10-09 04:26:51 +00:00
|
|
|
)
|
|
|
|
|
2018-10-11 18:36:26 +00:00
|
|
|
// MountInfo exports ceph's ceph_mount_info from libcephfs.cc
|
2015-05-01 19:35:40 +00:00
|
|
|
type MountInfo struct {
|
2015-07-08 08:34:54 +00:00
|
|
|
mount *C.struct_ceph_mount_info
|
2015-05-01 19:35:40 +00:00
|
|
|
}
|
|
|
|
|
2019-12-19 20:11:50 +00:00
|
|
|
func createMount(id *C.char) (*MountInfo, error) {
|
2015-07-08 08:34:54 +00:00
|
|
|
mount := &MountInfo{}
|
2019-12-19 20:11:50 +00:00
|
|
|
ret := C.ceph_create(&mount.mount, id)
|
2018-10-11 18:36:26 +00:00
|
|
|
if ret != 0 {
|
2019-12-12 18:54:55 +00:00
|
|
|
return nil, getError(ret)
|
2015-07-08 08:34:54 +00:00
|
|
|
}
|
2018-10-11 18:36:26 +00:00
|
|
|
return mount, nil
|
2015-05-01 19:35:40 +00:00
|
|
|
}
|
|
|
|
|
2020-05-04 07:42:08 +00:00
|
|
|
// validate checks whether mount.mount is ready to use or not.
|
|
|
|
func (mount *MountInfo) validate() error {
|
|
|
|
if mount.mount == nil {
|
|
|
|
return ErrNotConnected
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2019-12-19 20:11:50 +00:00
|
|
|
// CreateMount creates a mount handle for interacting with Ceph.
|
|
|
|
func CreateMount() (*MountInfo, error) {
|
|
|
|
return createMount(nil)
|
|
|
|
}
|
|
|
|
|
|
|
|
// CreateMountWithId creates a mount handle for interacting with Ceph.
|
|
|
|
// The caller can specify a unique id that will identify this client.
|
|
|
|
func CreateMountWithId(id string) (*MountInfo, error) {
|
|
|
|
cid := C.CString(id)
|
|
|
|
defer C.free(unsafe.Pointer(cid))
|
|
|
|
return createMount(cid)
|
|
|
|
}
|
|
|
|
|
2019-12-18 22:27:12 +00:00
|
|
|
// CreateFromRados creates a mount handle using an existing rados cluster
|
|
|
|
// connection.
|
|
|
|
//
|
|
|
|
// Implements:
|
|
|
|
// int ceph_create_from_rados(struct ceph_mount_info **cmount, rados_t cluster);
|
|
|
|
func CreateFromRados(conn *rados.Conn) (*MountInfo, error) {
|
|
|
|
mount := &MountInfo{}
|
|
|
|
ret := C.ceph_create_from_rados(&mount.mount, C.rados_t(conn.Cluster()))
|
|
|
|
if ret != 0 {
|
|
|
|
return nil, getError(ret)
|
|
|
|
}
|
|
|
|
return mount, nil
|
|
|
|
}
|
|
|
|
|
2018-10-11 18:36:26 +00:00
|
|
|
// ReadDefaultConfigFile loads the ceph configuration from the specified config file.
|
2018-10-10 22:06:47 +00:00
|
|
|
func (mount *MountInfo) ReadDefaultConfigFile() error {
|
|
|
|
ret := C.ceph_conf_read_file(mount.mount, nil)
|
2019-12-12 18:54:55 +00:00
|
|
|
return getError(ret)
|
2018-10-10 22:06:47 +00:00
|
|
|
}
|
2018-10-09 04:26:51 +00:00
|
|
|
|
2020-06-11 18:37:51 +00:00
|
|
|
// ParseConfigArgv configures the mount using a unix style command line
|
|
|
|
// argument vector.
|
|
|
|
//
|
|
|
|
// Implements:
|
|
|
|
// int ceph_conf_parse_argv(struct ceph_mount_info *cmount, int argc, const char **argv);
|
|
|
|
func (mount *MountInfo) ParseConfigArgv(argv []string) error {
|
|
|
|
if err := mount.validate(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if len(argv) == 0 {
|
|
|
|
return ErrEmptyArgument
|
|
|
|
}
|
|
|
|
cargv := make([]*C.char, len(argv))
|
|
|
|
for i := range argv {
|
|
|
|
cargv[i] = C.CString(argv[i])
|
|
|
|
defer C.free(unsafe.Pointer(cargv[i]))
|
|
|
|
}
|
|
|
|
|
|
|
|
ret := C.ceph_conf_parse_argv(mount.mount, C.int(len(cargv)), &cargv[0])
|
|
|
|
return getError(ret)
|
|
|
|
}
|
|
|
|
|
2020-06-11 18:46:25 +00:00
|
|
|
// ParseDefaultConfigEnv configures the mount from the default Ceph
|
|
|
|
// environment variable CEPH_ARGS.
|
|
|
|
//
|
|
|
|
// Implements:
|
|
|
|
// int ceph_conf_parse_env(struct ceph_mount_info *cmount, const char *var);
|
|
|
|
func (mount *MountInfo) ParseDefaultConfigEnv() error {
|
|
|
|
if err := mount.validate(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
ret := C.ceph_conf_parse_env(mount.mount, nil)
|
|
|
|
return getError(ret)
|
|
|
|
}
|
|
|
|
|
2020-03-04 18:44:42 +00:00
|
|
|
// SetConfigOption sets the value of the configuration option identified by
|
|
|
|
// the given name.
|
|
|
|
//
|
|
|
|
// Implements:
|
|
|
|
// int ceph_conf_set(struct ceph_mount_info *cmount, const char *option, const char *value);
|
|
|
|
func (mount *MountInfo) SetConfigOption(option, value string) error {
|
|
|
|
cOption := C.CString(option)
|
|
|
|
defer C.free(unsafe.Pointer(cOption))
|
|
|
|
cValue := C.CString(value)
|
|
|
|
defer C.free(unsafe.Pointer(cValue))
|
|
|
|
return getError(C.ceph_conf_set(mount.mount, cOption, cValue))
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetConfigOption returns the value of the Ceph configuration option
|
|
|
|
// identified by the given name.
|
|
|
|
//
|
|
|
|
// Implements:
|
|
|
|
// int ceph_conf_get(struct ceph_mount_info *cmount, const char *option, char *buf, size_t len);
|
|
|
|
func (mount *MountInfo) GetConfigOption(option string) (string, error) {
|
|
|
|
cOption := C.CString(option)
|
|
|
|
defer C.free(unsafe.Pointer(cOption))
|
2020-04-10 17:35:49 +00:00
|
|
|
|
|
|
|
var (
|
|
|
|
err error
|
|
|
|
buf []byte
|
|
|
|
)
|
|
|
|
// range from 4k to 256KiB
|
|
|
|
retry.WithSizes(4096, 1<<18, func(size int) retry.Hint {
|
|
|
|
buf = make([]byte, size)
|
|
|
|
ret := C.ceph_conf_get(
|
|
|
|
mount.mount,
|
|
|
|
cOption,
|
|
|
|
(*C.char)(unsafe.Pointer(&buf[0])),
|
|
|
|
C.size_t(len(buf)))
|
|
|
|
err = getError(ret)
|
|
|
|
return retry.DoubleSize.If(err == errNameTooLong)
|
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
2020-03-04 18:44:42 +00:00
|
|
|
}
|
|
|
|
value := C.GoString((*C.char)(unsafe.Pointer(&buf[0])))
|
|
|
|
return value, nil
|
|
|
|
}
|
|
|
|
|
2020-03-24 23:56:53 +00:00
|
|
|
// Init the file system client without actually mounting the file system.
|
|
|
|
//
|
|
|
|
// Implements:
|
|
|
|
// int ceph_init(struct ceph_mount_info *cmount);
|
|
|
|
func (mount *MountInfo) Init() error {
|
|
|
|
return getError(C.ceph_init(mount.mount))
|
|
|
|
}
|
|
|
|
|
2020-02-13 19:54:59 +00:00
|
|
|
// Mount the file system, establishing a connection capable of I/O.
|
|
|
|
//
|
|
|
|
// Implements:
|
|
|
|
// int ceph_mount(struct ceph_mount_info *cmount, const char *root);
|
2018-10-10 22:06:47 +00:00
|
|
|
func (mount *MountInfo) Mount() error {
|
|
|
|
ret := C.ceph_mount(mount.mount, nil)
|
2019-12-12 18:54:55 +00:00
|
|
|
return getError(ret)
|
2018-10-09 04:26:51 +00:00
|
|
|
}
|
|
|
|
|
2020-02-13 22:18:01 +00:00
|
|
|
// MountWithRoot mounts the file system using the path provided for the root of
|
|
|
|
// the mount. This establishes a connection capable of I/O.
|
|
|
|
//
|
|
|
|
// Implements:
|
|
|
|
// int ceph_mount(struct ceph_mount_info *cmount, const char *root);
|
|
|
|
func (mount *MountInfo) MountWithRoot(root string) error {
|
|
|
|
croot := C.CString(root)
|
|
|
|
defer C.free(unsafe.Pointer(croot))
|
|
|
|
return getError(C.ceph_mount(mount.mount, croot))
|
|
|
|
}
|
|
|
|
|
2020-02-13 19:54:59 +00:00
|
|
|
// Unmount the file system.
|
|
|
|
//
|
|
|
|
// Implements:
|
|
|
|
// int ceph_unmount(struct ceph_mount_info *cmount);
|
2018-10-09 04:26:51 +00:00
|
|
|
func (mount *MountInfo) Unmount() error {
|
|
|
|
ret := C.ceph_unmount(mount.mount)
|
2019-12-12 18:54:55 +00:00
|
|
|
return getError(ret)
|
2018-10-09 04:26:51 +00:00
|
|
|
}
|
|
|
|
|
2018-10-11 18:36:26 +00:00
|
|
|
// Release destroys the mount handle.
|
2020-02-13 19:54:59 +00:00
|
|
|
//
|
|
|
|
// Implements:
|
|
|
|
// int ceph_release(struct ceph_mount_info *cmount);
|
2018-10-09 04:26:51 +00:00
|
|
|
func (mount *MountInfo) Release() error {
|
2020-03-23 21:00:29 +00:00
|
|
|
if mount.mount == nil {
|
|
|
|
return nil
|
|
|
|
}
|
2018-10-09 04:26:51 +00:00
|
|
|
ret := C.ceph_release(mount.mount)
|
2020-03-23 21:00:29 +00:00
|
|
|
if err := getError(ret); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
mount.mount = nil
|
|
|
|
return nil
|
2018-10-09 04:26:51 +00:00
|
|
|
}
|
|
|
|
|
2018-10-11 18:36:26 +00:00
|
|
|
// SyncFs synchronizes all filesystem data to persistent media.
|
2015-05-01 19:35:40 +00:00
|
|
|
func (mount *MountInfo) SyncFs() error {
|
2015-07-08 08:34:54 +00:00
|
|
|
ret := C.ceph_sync_fs(mount.mount)
|
2019-12-12 18:54:55 +00:00
|
|
|
return getError(ret)
|
2015-05-01 19:35:40 +00:00
|
|
|
}
|
|
|
|
|
2018-10-11 18:36:26 +00:00
|
|
|
// IsMounted checks mount status.
|
2018-10-09 04:26:51 +00:00
|
|
|
func (mount *MountInfo) IsMounted() bool {
|
|
|
|
ret := C.ceph_is_mounted(mount.mount)
|
2018-10-10 22:06:47 +00:00
|
|
|
return ret == 1
|
2018-10-09 04:26:51 +00:00
|
|
|
}
|