2008-01-04 15:38:22 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2007 Oracle. All rights reserved.
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public
|
|
|
|
* License v2 as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program 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
|
|
|
|
* General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public
|
|
|
|
* License along with this program; if not, write to the
|
|
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
* Boston, MA 021110-1307, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __UTILS__
|
|
|
|
#define __UTILS__
|
2008-03-24 19:03:18 +00:00
|
|
|
|
2013-03-27 20:55:41 +00:00
|
|
|
#include <sys/stat.h>
|
2013-01-28 05:22:30 +00:00
|
|
|
#include "ctree.h"
|
|
|
|
|
2008-03-24 19:03:18 +00:00
|
|
|
#define BTRFS_MKFS_SYSTEM_GROUP_SIZE (4 * 1024 * 1024)
|
|
|
|
|
2008-04-22 18:06:56 +00:00
|
|
|
int make_btrfs(int fd, const char *device, const char *label,
|
2008-03-24 19:03:18 +00:00
|
|
|
u64 blocks[6], u64 num_bytes, u32 nodesize,
|
|
|
|
u32 leafsize, u32 sectorsize, u32 stripesize);
|
2008-01-04 15:38:22 +00:00
|
|
|
int btrfs_make_root_dir(struct btrfs_trans_handle *trans,
|
|
|
|
struct btrfs_root *root, u64 objectid);
|
2012-07-27 12:37:55 +00:00
|
|
|
int btrfs_prepare_device(int fd, char *file, int zero_end, u64 *block_count_ret,
|
|
|
|
u64 max_block_count, int *mixed, int nodiscard);
|
2008-03-24 19:04:49 +00:00
|
|
|
int btrfs_add_to_fsid(struct btrfs_trans_handle *trans,
|
2008-04-18 14:31:42 +00:00
|
|
|
struct btrfs_root *root, int fd, char *path,
|
|
|
|
u64 block_count, u32 io_width, u32 io_align,
|
|
|
|
u32 sectorsize);
|
2008-03-24 19:05:44 +00:00
|
|
|
int btrfs_scan_for_fsid(struct btrfs_fs_devices *fs_devices, u64 total_devs,
|
|
|
|
int run_ioctls);
|
2009-01-07 19:57:11 +00:00
|
|
|
void btrfs_register_one_device(char *fname);
|
2008-03-24 19:05:44 +00:00
|
|
|
int btrfs_scan_one_dir(char *dirname, int run_ioctl);
|
2010-09-09 02:57:02 +00:00
|
|
|
int check_mounted(const char *devicename);
|
2011-07-18 12:37:23 +00:00
|
|
|
int check_mounted_where(int fd, const char *file, char *where, int size,
|
|
|
|
struct btrfs_fs_devices **fs_devices_mnt);
|
2008-04-18 14:45:17 +00:00
|
|
|
int btrfs_device_already_in_root(struct btrfs_root *root, int fd,
|
|
|
|
int super_offset);
|
2013-07-09 20:24:43 +00:00
|
|
|
|
|
|
|
void pretty_size_snprintf(u64 size, char *str, size_t str_bytes);
|
|
|
|
#define pretty_size(size) \
|
|
|
|
({ \
|
|
|
|
static __thread char _str[24]; \
|
|
|
|
pretty_size_snprintf((size), _str, sizeof(_str)); \
|
|
|
|
_str; \
|
|
|
|
})
|
|
|
|
|
2010-12-05 17:46:44 +00:00
|
|
|
int get_mountpt(char *dev, char *mntpt, size_t size);
|
2011-06-15 19:55:25 +00:00
|
|
|
int btrfs_scan_block_devices(int run_ioctl);
|
2012-10-29 17:53:17 +00:00
|
|
|
u64 parse_size(char *s);
|
2013-01-28 05:22:30 +00:00
|
|
|
int open_file_or_dir(const char *fname);
|
2012-05-15 10:05:44 +00:00
|
|
|
int get_device_info(int fd, u64 devid,
|
|
|
|
struct btrfs_ioctl_dev_info_args *di_args);
|
2013-03-12 04:17:40 +00:00
|
|
|
int get_fs_info(char *path, struct btrfs_ioctl_fs_info_args *fi_args,
|
2012-05-15 10:05:44 +00:00
|
|
|
struct btrfs_ioctl_dev_info_args **di_ret);
|
2013-01-30 08:32:47 +00:00
|
|
|
int get_label(const char *btrfs_dev);
|
|
|
|
int set_label(const char *btrfs_dev, const char *label);
|
2013-01-25 19:27:47 +00:00
|
|
|
|
|
|
|
char *__strncpy__null(char *dest, const char *src, size_t n);
|
2013-03-11 23:12:59 +00:00
|
|
|
int is_block_device(const char *file);
|
|
|
|
int get_btrfs_mount(const char *path, char *mp, size_t mp_size);
|
|
|
|
int open_path_or_dev_mnt(const char *path);
|
2013-02-14 07:53:04 +00:00
|
|
|
int is_swap_device(const char *file);
|
2013-03-27 20:55:41 +00:00
|
|
|
u64 btrfs_device_size(int fd, struct stat *st);
|
2013-01-25 19:27:47 +00:00
|
|
|
/* Helper to always get proper size of the destination string */
|
|
|
|
#define strncpy_null(dest, src) __strncpy__null(dest, src, sizeof(dest))
|
2013-04-15 06:38:09 +00:00
|
|
|
int test_dev_for_mkfs(char *file, int force_overwrite, char *estr);
|
2013-01-25 19:27:47 +00:00
|
|
|
|
2008-01-04 15:38:22 +00:00
|
|
|
#endif
|