Add libbtrfsutil
Currently, users wishing to manage Btrfs filesystems programatically
have to shell out to btrfs-progs and parse the output. This isn't ideal.
The goal of libbtrfsutil is to provide a library version of as many of
the operations of btrfs-progs as possible and to migrate btrfs-progs to
use it.
Rather than simply refactoring the existing btrfs-progs code, the code
has to be written from scratch for a couple of reasons:
* A lot of the btrfs-progs code was not designed with a nice library API
in mind in terms of reusability, naming, and error reporting.
* libbtrfsutil is licensed under the LGPL, whereas btrfs-progs is under
the GPL, which makes it dubious to directly copy or move the code.
Eventually, most of the low-level btrfs-progs code should either live in
libbtrfsutil or the shared kernel/userspace filesystem code, and
btrfs-progs will just be the CLI wrapper.
This first commit just includes the build system changes, license,
README, and error reporting helper.
Signed-off-by: Omar Sandoval <osandov@fb.com>
Reviewed-by: Liu Bo <bo.li.liu@oracle.com>
Signed-off-by: David Sterba <dsterba@suse.com>
2018-02-15 19:04:47 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2018 Facebook
|
|
|
|
*
|
|
|
|
* This file is part of libbtrfsutil.
|
|
|
|
*
|
|
|
|
* libbtrfsutil is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Lesser General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* libbtrfsutil is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
|
|
* along with libbtrfsutil. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef BTRFS_UTIL_H
|
|
|
|
#define BTRFS_UTIL_H
|
|
|
|
|
2018-01-18 21:09:32 +00:00
|
|
|
#include <stddef.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
|
Add libbtrfsutil
Currently, users wishing to manage Btrfs filesystems programatically
have to shell out to btrfs-progs and parse the output. This isn't ideal.
The goal of libbtrfsutil is to provide a library version of as many of
the operations of btrfs-progs as possible and to migrate btrfs-progs to
use it.
Rather than simply refactoring the existing btrfs-progs code, the code
has to be written from scratch for a couple of reasons:
* A lot of the btrfs-progs code was not designed with a nice library API
in mind in terms of reusability, naming, and error reporting.
* libbtrfsutil is licensed under the LGPL, whereas btrfs-progs is under
the GPL, which makes it dubious to directly copy or move the code.
Eventually, most of the low-level btrfs-progs code should either live in
libbtrfsutil or the shared kernel/userspace filesystem code, and
btrfs-progs will just be the CLI wrapper.
This first commit just includes the build system changes, license,
README, and error reporting helper.
Signed-off-by: Omar Sandoval <osandov@fb.com>
Reviewed-by: Liu Bo <bo.li.liu@oracle.com>
Signed-off-by: David Sterba <dsterba@suse.com>
2018-02-15 19:04:47 +00:00
|
|
|
#define BTRFS_UTIL_VERSION_MAJOR 1
|
|
|
|
#define BTRFS_UTIL_VERSION_MINOR 0
|
|
|
|
#define BTRFS_UTIL_VERSION_PATCH 0
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/**
|
|
|
|
* enum btrfs_util_error - libbtrfsutil error codes.
|
|
|
|
*
|
|
|
|
* All functions in libbtrfsutil that can return an error return this type and
|
|
|
|
* set errno.
|
|
|
|
*/
|
|
|
|
enum btrfs_util_error {
|
|
|
|
BTRFS_UTIL_OK,
|
|
|
|
BTRFS_UTIL_ERROR_STOP_ITERATION,
|
|
|
|
BTRFS_UTIL_ERROR_NO_MEMORY,
|
|
|
|
BTRFS_UTIL_ERROR_INVALID_ARGUMENT,
|
|
|
|
BTRFS_UTIL_ERROR_NOT_BTRFS,
|
|
|
|
BTRFS_UTIL_ERROR_NOT_SUBVOLUME,
|
|
|
|
BTRFS_UTIL_ERROR_SUBVOLUME_NOT_FOUND,
|
|
|
|
BTRFS_UTIL_ERROR_OPEN_FAILED,
|
|
|
|
BTRFS_UTIL_ERROR_RMDIR_FAILED,
|
|
|
|
BTRFS_UTIL_ERROR_UNLINK_FAILED,
|
|
|
|
BTRFS_UTIL_ERROR_STAT_FAILED,
|
|
|
|
BTRFS_UTIL_ERROR_STATFS_FAILED,
|
|
|
|
BTRFS_UTIL_ERROR_SEARCH_FAILED,
|
|
|
|
BTRFS_UTIL_ERROR_INO_LOOKUP_FAILED,
|
|
|
|
BTRFS_UTIL_ERROR_SUBVOL_GETFLAGS_FAILED,
|
|
|
|
BTRFS_UTIL_ERROR_SUBVOL_SETFLAGS_FAILED,
|
|
|
|
BTRFS_UTIL_ERROR_SUBVOL_CREATE_FAILED,
|
|
|
|
BTRFS_UTIL_ERROR_SNAP_CREATE_FAILED,
|
|
|
|
BTRFS_UTIL_ERROR_SNAP_DESTROY_FAILED,
|
|
|
|
BTRFS_UTIL_ERROR_DEFAULT_SUBVOL_FAILED,
|
|
|
|
BTRFS_UTIL_ERROR_SYNC_FAILED,
|
|
|
|
BTRFS_UTIL_ERROR_START_SYNC_FAILED,
|
|
|
|
BTRFS_UTIL_ERROR_WAIT_SYNC_FAILED,
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* btrfs_util_strerror() - Convert a libtrfsutil error code to a string
|
|
|
|
* description.
|
|
|
|
* @err: The error to convert.
|
|
|
|
*
|
|
|
|
* Return: Error description.
|
|
|
|
*/
|
|
|
|
const char *btrfs_util_strerror(enum btrfs_util_error err);
|
|
|
|
|
2018-01-25 09:18:20 +00:00
|
|
|
/**
|
|
|
|
* btrfs_util_sync() - Force a sync on a specific Btrfs filesystem.
|
|
|
|
* @path: Path on a Btrfs filesystem.
|
|
|
|
*
|
|
|
|
* Return: %BTRFS_UTIL_OK on success, non-zero error code on failure.
|
|
|
|
*/
|
|
|
|
enum btrfs_util_error btrfs_util_sync(const char *path);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* btrfs_util_sync_fd() - See btrfs_util_sync().
|
|
|
|
*/
|
|
|
|
enum btrfs_util_error btrfs_util_sync_fd(int fd);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* btrfs_util_start_sync() - Start a sync on a specific Btrfs filesystem but
|
|
|
|
* don't wait for it.
|
|
|
|
* @path: Path on a Btrfs filesystem.
|
|
|
|
* @transid: Returned transaction ID which can be waited on with
|
|
|
|
* btrfs_util_wait_sync(). This can be %NULL.
|
|
|
|
*
|
|
|
|
* Return: %BTRFS_UTIL_OK on success, non-zero error code on failure.
|
|
|
|
*/
|
|
|
|
enum btrfs_util_error btrfs_util_start_sync(const char *path,
|
|
|
|
uint64_t *transid);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* btrfs_util_start_sync_fd() - See btrfs_util_start_sync().
|
|
|
|
*/
|
|
|
|
enum btrfs_util_error btrfs_util_start_sync_fd(int fd, uint64_t *transid);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* btrfs_util_wait_sync() - Wait for a transaction with a given ID to sync.
|
|
|
|
* @path: Path on a Btrfs filesystem.
|
|
|
|
* @transid: Transaction ID to wait for, or zero for the current transaction.
|
|
|
|
*
|
|
|
|
* Return: %BTRFS_UTIL_OK on success, non-zero error code on failure.
|
|
|
|
*/
|
|
|
|
enum btrfs_util_error btrfs_util_wait_sync(const char *path, uint64_t transid);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* btrfs_util_wait_sync_fd() - See btrfs_util_wait_sync().
|
|
|
|
*/
|
|
|
|
enum btrfs_util_error btrfs_util_wait_sync_fd(int fd, uint64_t transid);
|
|
|
|
|
2018-01-18 21:09:32 +00:00
|
|
|
/**
|
|
|
|
* btrfs_util_is_subvolume() - Return whether a given path is a Btrfs subvolume.
|
|
|
|
* @path: Path to check.
|
|
|
|
*
|
|
|
|
* Return: %BTRFS_UTIL_OK if @path is a Btrfs subvolume,
|
|
|
|
* %BTRFS_UTIL_ERROR_NOT_BTRFS if @path is not on a Btrfs filesystem,
|
|
|
|
* %BTRFS_UTIL_ERROR_NOT_SUBVOLUME if @path is not a subvolume, non-zero error
|
|
|
|
* code on any other failure.
|
|
|
|
*/
|
|
|
|
enum btrfs_util_error btrfs_util_is_subvolume(const char *path);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* btrfs_util_is_subvolume_fd() - See btrfs_util_is_subvolume().
|
|
|
|
*/
|
|
|
|
enum btrfs_util_error btrfs_util_is_subvolume_fd(int fd);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* btrfs_util_subvolume_id() - Get the ID of the subvolume containing a path.
|
|
|
|
* @path: Path on a Btrfs filesystem.
|
|
|
|
* @id_ret: Returned subvolume ID.
|
|
|
|
*
|
|
|
|
* Return: %BTRFS_UTIL_OK on success, non-zero error code on failure.
|
|
|
|
*/
|
|
|
|
enum btrfs_util_error btrfs_util_subvolume_id(const char *path,
|
|
|
|
uint64_t *id_ret);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* btrfs_util_subvolume_id_fd() - See btrfs_util_subvolume_id().
|
|
|
|
*/
|
|
|
|
enum btrfs_util_error btrfs_util_subvolume_id_fd(int fd, uint64_t *id_ret);
|
|
|
|
|
|
|
|
struct btrfs_util_qgroup_inherit;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* btrfs_util_create_qgroup_inherit() - Create a qgroup inheritance specifier
|
|
|
|
* for btrfs_util_create_subvolume() or btrfs_util_create_snapshot().
|
|
|
|
* @flags: Must be zero.
|
|
|
|
* @ret: Returned qgroup inheritance specifier.
|
|
|
|
*
|
|
|
|
* The returned structure must be freed with
|
|
|
|
* btrfs_util_destroy_qgroup_inherit().
|
|
|
|
*
|
|
|
|
* Return: %BTRFS_UTIL_OK on success, non-zero error code on failure.
|
|
|
|
*/
|
|
|
|
enum btrfs_util_error btrfs_util_create_qgroup_inherit(int flags,
|
|
|
|
struct btrfs_util_qgroup_inherit **ret);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* btrfs_util_destroy_qgroup_inherit() - Destroy a qgroup inheritance specifier
|
|
|
|
* previously created with btrfs_util_create_qgroup_inherit().
|
|
|
|
* @inherit: Specifier to destroy.
|
|
|
|
*/
|
|
|
|
void btrfs_util_destroy_qgroup_inherit(struct btrfs_util_qgroup_inherit *inherit);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* btrfs_util_qgroup_inherit_add_group() - Add inheritance from a qgroup to a
|
|
|
|
* qgroup inheritance specifier.
|
|
|
|
* @inherit: Specifier to modify. May be reallocated.
|
|
|
|
* @qgroupid: ID of qgroup to inherit from.
|
|
|
|
*
|
|
|
|
* Return: %BTRFS_UTIL_OK on success, non-zero error code on failure.
|
|
|
|
*/
|
|
|
|
enum btrfs_util_error btrfs_util_qgroup_inherit_add_group(struct btrfs_util_qgroup_inherit **inherit,
|
|
|
|
uint64_t qgroupid);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* btrfs_util_qgroup_inherit_get_groups() - Get the qgroups a qgroup inheritance
|
|
|
|
* specifier contains.
|
|
|
|
* @inherit: Qgroup inheritance specifier.
|
|
|
|
* @groups: Returned array of qgroup IDs.
|
|
|
|
* @n: Returned number of entries in the @groups array.
|
|
|
|
*/
|
|
|
|
void btrfs_util_qgroup_inherit_get_groups(const struct btrfs_util_qgroup_inherit *inherit,
|
|
|
|
const uint64_t **groups, size_t *n);
|
|
|
|
|
Add libbtrfsutil
Currently, users wishing to manage Btrfs filesystems programatically
have to shell out to btrfs-progs and parse the output. This isn't ideal.
The goal of libbtrfsutil is to provide a library version of as many of
the operations of btrfs-progs as possible and to migrate btrfs-progs to
use it.
Rather than simply refactoring the existing btrfs-progs code, the code
has to be written from scratch for a couple of reasons:
* A lot of the btrfs-progs code was not designed with a nice library API
in mind in terms of reusability, naming, and error reporting.
* libbtrfsutil is licensed under the LGPL, whereas btrfs-progs is under
the GPL, which makes it dubious to directly copy or move the code.
Eventually, most of the low-level btrfs-progs code should either live in
libbtrfsutil or the shared kernel/userspace filesystem code, and
btrfs-progs will just be the CLI wrapper.
This first commit just includes the build system changes, license,
README, and error reporting helper.
Signed-off-by: Omar Sandoval <osandov@fb.com>
Reviewed-by: Liu Bo <bo.li.liu@oracle.com>
Signed-off-by: David Sterba <dsterba@suse.com>
2018-02-15 19:04:47 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* BTRFS_UTIL_H */
|