2007-06-12 13:07:11 +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.
|
|
|
|
*/
|
|
|
|
|
2015-01-21 16:49:26 +00:00
|
|
|
#ifndef __BTRFS_DISK_IO_H__
|
|
|
|
#define __BTRFS_DISK_IO_H__
|
2007-02-02 14:18:22 +00:00
|
|
|
|
2015-06-10 00:21:42 +00:00
|
|
|
#include "kerncompat.h"
|
|
|
|
#include "ctree.h"
|
2019-06-20 13:30:57 +00:00
|
|
|
#include "kernel-lib/sizes.h"
|
2015-06-10 00:21:42 +00:00
|
|
|
|
2017-01-24 03:03:05 +00:00
|
|
|
#define BTRFS_SUPER_INFO_OFFSET SZ_64K
|
2008-04-10 20:22:00 +00:00
|
|
|
#define BTRFS_SUPER_INFO_SIZE 4096
|
|
|
|
|
2008-12-05 17:21:31 +00:00
|
|
|
#define BTRFS_SUPER_MIRROR_MAX 3
|
|
|
|
#define BTRFS_SUPER_MIRROR_SHIFT 12
|
|
|
|
|
2013-10-28 18:28:43 +00:00
|
|
|
enum btrfs_open_ctree_flags {
|
2016-08-22 16:08:13 +00:00
|
|
|
/* Open filesystem for writes */
|
|
|
|
OPEN_CTREE_WRITES = (1U << 0),
|
|
|
|
/* Allow to open filesystem with some broken tree roots (eg log root) */
|
|
|
|
OPEN_CTREE_PARTIAL = (1U << 1),
|
|
|
|
/* If primary root pinters are invalid, try backup copies */
|
|
|
|
OPEN_CTREE_BACKUP_ROOT = (1U << 2),
|
2018-11-26 17:01:42 +00:00
|
|
|
/* Allow reading all superblock copies if the primary is damaged */
|
2016-08-22 16:08:13 +00:00
|
|
|
OPEN_CTREE_RECOVER_SUPER = (1U << 3),
|
|
|
|
/* Restoring filesystem image */
|
|
|
|
OPEN_CTREE_RESTORE = (1U << 4),
|
|
|
|
/* Do not read block groups (extent tree) */
|
|
|
|
OPEN_CTREE_NO_BLOCK_GROUPS = (1U << 5),
|
|
|
|
/* Open all devices in O_EXCL mode */
|
|
|
|
OPEN_CTREE_EXCLUSIVE = (1U << 6),
|
|
|
|
/* Do not scan devices */
|
|
|
|
OPEN_CTREE_NO_DEVICES = (1U << 7),
|
2015-01-16 03:04:09 +00:00
|
|
|
/*
|
|
|
|
* Don't print error messages if bytenr or checksums do not match in
|
|
|
|
* tree block headers. Turn on by OPEN_CTREE_SUPPRESS_ERROR
|
|
|
|
*/
|
2016-08-22 16:08:13 +00:00
|
|
|
OPEN_CTREE_SUPPRESS_CHECK_BLOCK_ERRORS = (1U << 8),
|
|
|
|
/* Return the chunk root */
|
|
|
|
__OPEN_CTREE_RETURN_CHUNK_ROOT = (1U << 9),
|
2015-01-16 03:22:28 +00:00
|
|
|
OPEN_CTREE_CHUNK_ROOT_ONLY = OPEN_CTREE_PARTIAL +
|
|
|
|
OPEN_CTREE_SUPPRESS_CHECK_BLOCK_ERRORS +
|
2015-02-12 12:41:00 +00:00
|
|
|
__OPEN_CTREE_RETURN_CHUNK_ROOT,
|
2015-01-16 03:22:28 +00:00
|
|
|
/*
|
2016-05-11 23:50:36 +00:00
|
|
|
* TODO: cleanup: Split the open_ctree_flags into more independent
|
|
|
|
* Tree bits.
|
2015-01-16 03:22:28 +00:00
|
|
|
* Like split PARTIAL into SKIP_CSUM/SKIP_EXTENT
|
|
|
|
*/
|
2015-05-11 08:08:45 +00:00
|
|
|
|
2016-08-22 16:08:13 +00:00
|
|
|
/* Ignore UUID mismatches */
|
|
|
|
OPEN_CTREE_IGNORE_FSID_MISMATCH = (1U << 10),
|
2016-02-22 06:59:54 +00:00
|
|
|
|
|
|
|
/*
|
2016-08-22 16:08:13 +00:00
|
|
|
* Allow open_ctree_fs_info() to return an incomplete fs_info with
|
2016-02-22 06:59:54 +00:00
|
|
|
* system chunks from super block only.
|
2016-08-22 16:08:13 +00:00
|
|
|
* It's useful when chunks are corrupted.
|
2016-02-22 06:59:54 +00:00
|
|
|
* Makes no sense for open_ctree variants returning btrfs_root.
|
|
|
|
*/
|
2016-08-22 16:08:13 +00:00
|
|
|
OPEN_CTREE_IGNORE_CHUNK_TREE_ERROR = (1U << 11),
|
2016-08-22 14:32:24 +00:00
|
|
|
|
2018-04-11 07:29:35 +00:00
|
|
|
/*
|
|
|
|
* Allow to open fs with temporary superblock (BTRFS_MAGIC_PARTIAL),
|
|
|
|
* such fs contains very basic tree layout, just able to be opened.
|
|
|
|
* Such temporary super is used for mkfs or convert.
|
|
|
|
*/
|
|
|
|
OPEN_CTREE_TEMPORARY_SUPER = (1U << 12),
|
2016-11-14 18:43:20 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Invalidate the free space tree (i.e., clear the FREE_SPACE_TREE_VALID
|
|
|
|
* compat_ro bit).
|
|
|
|
*/
|
|
|
|
OPEN_CTREE_INVALIDATE_FST = (1U << 13),
|
2013-10-28 18:28:43 +00:00
|
|
|
};
|
|
|
|
|
2016-08-19 14:36:40 +00:00
|
|
|
/*
|
|
|
|
* Modes of superblock access
|
|
|
|
*/
|
|
|
|
enum btrfs_read_sb_flags {
|
|
|
|
SBREAD_DEFAULT = 0,
|
|
|
|
/* Reading superblock during recovery */
|
|
|
|
SBREAD_RECOVER = (1 << 0),
|
2016-08-22 14:32:24 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Read superblock with the fake signature, cannot be used with
|
|
|
|
* SBREAD_RECOVER
|
|
|
|
*/
|
2018-04-11 07:29:35 +00:00
|
|
|
SBREAD_TEMPORARY = (1 << 1),
|
2018-06-18 15:11:33 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Equivalent of OPEN_CTREE_IGNORE_FSID_MISMATCH, allow to read
|
|
|
|
* superblock that has mismatched sb::fsid and sb::dev_item.fsid
|
|
|
|
*/
|
|
|
|
SBREAD_IGNORE_FSID_MISMATCH = (1 << 2),
|
2016-08-19 14:36:40 +00:00
|
|
|
};
|
|
|
|
|
2017-01-24 03:03:06 +00:00
|
|
|
/*
|
|
|
|
* Use macro to define mirror super block position,
|
|
|
|
* so we can use it in static array initialization
|
|
|
|
*/
|
|
|
|
#define BTRFS_SB_MIRROR_OFFSET(mirror) ((u64)(SZ_16K) << \
|
|
|
|
(BTRFS_SUPER_MIRROR_SHIFT * (mirror)))
|
|
|
|
|
2008-12-05 17:21:31 +00:00
|
|
|
static inline u64 btrfs_sb_offset(int mirror)
|
|
|
|
{
|
|
|
|
if (mirror)
|
2017-01-24 03:03:06 +00:00
|
|
|
return BTRFS_SB_MIRROR_OFFSET(mirror);
|
2008-12-05 17:21:31 +00:00
|
|
|
return BTRFS_SUPER_INFO_OFFSET;
|
|
|
|
}
|
|
|
|
|
2008-03-24 19:03:18 +00:00
|
|
|
struct btrfs_device;
|
2007-02-02 14:18:22 +00:00
|
|
|
|
Btrfs-progs: enhance btrfs-image to restore image onto multiple disks
This adds a 'btrfs-image -m' option, which let us restore an image that
is built from a btrfs of multiple disks onto several disks altogether.
This aims to address the following case,
$ mkfs.btrfs -m raid0 sda sdb
$ btrfs-image sda image.file
$ btrfs-image -r image.file sdc
---------
so we can only restore metadata onto sdc, and another thing is we can
only mount sdc with degraded mode as we don't provide informations of
another disk. And, it's built as RAID0 and we have only one disk,
so after mount sdc we'll get into readonly mode.
This is just annoying for people(like me) who're trying to restore image
but turn to find they cannot make it work.
So this'll make your life easier, just tap
$ btrfs-image -m image.file sdc sdd
---------
then you get everything about metadata done, the same offset with that of
the originals(of course, you need offer enough disk size, at least the disk
size of the original disks).
Besides, this also works with raid5 and raid6 metadata image.
Signed-off-by: Liu Bo <bo.li.liu@oracle.com>
Signed-off-by: Chris Mason <chris.mason@fusionio.com>
2013-06-22 05:32:45 +00:00
|
|
|
int read_whole_eb(struct btrfs_fs_info *info, struct extent_buffer *eb, int mirror);
|
2017-08-25 14:54:16 +00:00
|
|
|
struct extent_buffer* read_tree_block(struct btrfs_fs_info *fs_info, u64 bytenr,
|
2016-02-22 06:59:55 +00:00
|
|
|
u64 parent_transid);
|
|
|
|
|
2017-06-13 09:19:24 +00:00
|
|
|
int read_extent_data(struct btrfs_fs_info *fs_info, char *data, u64 logical,
|
2015-06-17 07:49:00 +00:00
|
|
|
u64 *len, int mirror);
|
2017-06-13 09:19:26 +00:00
|
|
|
void readahead_tree_block(struct btrfs_fs_info *fs_info, u64 bytenr,
|
2017-08-25 16:07:15 +00:00
|
|
|
u64 parent_transid);
|
2016-02-22 06:59:55 +00:00
|
|
|
struct extent_buffer* btrfs_find_create_tree_block(
|
2017-08-25 15:44:22 +00:00
|
|
|
struct btrfs_fs_info *fs_info, u64 bytenr);
|
2013-01-25 00:18:57 +00:00
|
|
|
|
2017-05-17 09:17:56 +00:00
|
|
|
void btrfs_setup_root(struct btrfs_root *root, struct btrfs_fs_info *fs_info,
|
|
|
|
u64 objectid);
|
2018-05-28 06:36:45 +00:00
|
|
|
int clean_tree_block(struct extent_buffer *buf);
|
2013-07-03 13:25:12 +00:00
|
|
|
|
|
|
|
void btrfs_free_fs_info(struct btrfs_fs_info *fs_info);
|
|
|
|
struct btrfs_fs_info *btrfs_new_fs_info(int writable, u64 sb_bytenr);
|
2016-11-14 18:43:20 +00:00
|
|
|
int btrfs_check_fs_compatibility(struct btrfs_super_block *sb,
|
|
|
|
unsigned int flags);
|
2013-10-28 18:28:43 +00:00
|
|
|
int btrfs_setup_all_roots(struct btrfs_fs_info *fs_info, u64 root_tree_bytenr,
|
2016-08-19 14:20:36 +00:00
|
|
|
unsigned flags);
|
2013-07-03 13:25:12 +00:00
|
|
|
void btrfs_release_all_roots(struct btrfs_fs_info *fs_info);
|
|
|
|
void btrfs_cleanup_all_caches(struct btrfs_fs_info *fs_info);
|
|
|
|
int btrfs_scan_fs_devices(int fd, const char *path,
|
2013-09-18 08:27:34 +00:00
|
|
|
struct btrfs_fs_devices **fs_devices, u64 sb_bytenr,
|
2016-08-19 14:36:40 +00:00
|
|
|
unsigned sbflags, int skip_devices);
|
2016-03-07 04:57:41 +00:00
|
|
|
int btrfs_setup_chunk_tree_and_device_map(struct btrfs_fs_info *fs_info,
|
|
|
|
u64 chunk_root_bytenr);
|
2013-07-03 13:25:12 +00:00
|
|
|
|
2013-10-28 18:28:43 +00:00
|
|
|
struct btrfs_root *open_ctree(const char *filename, u64 sb_bytenr,
|
2016-08-19 14:20:36 +00:00
|
|
|
unsigned flags);
|
2008-05-05 13:45:26 +00:00
|
|
|
struct btrfs_root *open_ctree_fd(int fp, const char *path, u64 sb_bytenr,
|
2016-08-19 14:20:36 +00:00
|
|
|
unsigned flags);
|
2012-02-05 21:11:48 +00:00
|
|
|
struct btrfs_fs_info *open_ctree_fs_info(const char *filename,
|
2013-04-16 17:13:38 +00:00
|
|
|
u64 sb_bytenr, u64 root_tree_bytenr,
|
2016-03-07 04:57:41 +00:00
|
|
|
u64 chunk_root_bytenr,
|
2016-08-19 14:20:36 +00:00
|
|
|
unsigned flags);
|
2016-02-22 06:59:54 +00:00
|
|
|
int close_ctree_fs_info(struct btrfs_fs_info *fs_info);
|
|
|
|
static inline int close_ctree(struct btrfs_root *root)
|
|
|
|
{
|
2016-08-18 15:44:18 +00:00
|
|
|
if (!root)
|
|
|
|
return 0;
|
2016-02-22 06:59:54 +00:00
|
|
|
return close_ctree_fs_info(root->fs_info);
|
|
|
|
}
|
|
|
|
|
2017-06-13 09:19:27 +00:00
|
|
|
int write_all_supers(struct btrfs_fs_info *fs_info);
|
2018-05-28 06:36:50 +00:00
|
|
|
int write_ctree_super(struct btrfs_trans_handle *trans);
|
2019-06-06 11:06:06 +00:00
|
|
|
int btrfs_check_super(struct btrfs_super_block *sb, unsigned sbflags);
|
2014-07-03 09:36:36 +00:00
|
|
|
int btrfs_read_dev_super(int fd, struct btrfs_super_block *sb, u64 sb_bytenr,
|
2016-08-19 14:36:40 +00:00
|
|
|
unsigned sbflags);
|
2008-01-04 15:38:22 +00:00
|
|
|
int btrfs_map_bh_to_logical(struct btrfs_root *root, struct extent_buffer *bh,
|
|
|
|
u64 logical);
|
2017-06-13 09:19:25 +00:00
|
|
|
struct extent_buffer *btrfs_find_tree_block(struct btrfs_fs_info *fs_info,
|
2008-01-04 15:38:22 +00:00
|
|
|
u64 bytenr, u32 blocksize);
|
|
|
|
struct btrfs_root *btrfs_read_fs_root(struct btrfs_fs_info *fs_info,
|
|
|
|
struct btrfs_key *location);
|
2009-05-29 20:35:30 +00:00
|
|
|
struct btrfs_root *btrfs_read_fs_root_no_cache(struct btrfs_fs_info *fs_info,
|
|
|
|
struct btrfs_key *location);
|
2013-07-03 13:25:13 +00:00
|
|
|
int btrfs_free_fs_root(struct btrfs_root *root);
|
2008-01-04 15:38:22 +00:00
|
|
|
void btrfs_mark_buffer_dirty(struct extent_buffer *buf);
|
2008-05-13 17:48:58 +00:00
|
|
|
int btrfs_buffer_uptodate(struct extent_buffer *buf, u64 parent_transid);
|
2008-01-04 15:38:22 +00:00
|
|
|
int btrfs_set_buffer_uptodate(struct extent_buffer *buf);
|
2019-09-03 15:00:41 +00:00
|
|
|
int btrfs_csum_data(u16 csum_type, const u8 *data, u8 *out, size_t len);
|
2007-02-02 14:18:22 +00:00
|
|
|
|
2008-03-24 19:03:18 +00:00
|
|
|
int btrfs_open_device(struct btrfs_device *dev);
|
2008-12-02 14:58:23 +00:00
|
|
|
int csum_tree_block_size(struct extent_buffer *buf, u16 csum_sectorsize,
|
2019-09-03 15:00:37 +00:00
|
|
|
int verify, u16 csum_type);
|
|
|
|
int verify_tree_block_csum_silent(struct extent_buffer *buf, u16 csum_size,
|
|
|
|
u16 csum_type);
|
2008-05-12 17:51:24 +00:00
|
|
|
int btrfs_read_buffer(struct extent_buffer *buf, u64 parent_transid);
|
2015-05-11 08:08:46 +00:00
|
|
|
int write_tree_block(struct btrfs_trans_handle *trans,
|
2017-06-13 09:19:22 +00:00
|
|
|
struct btrfs_fs_info *fs_info,
|
2015-05-11 08:08:46 +00:00
|
|
|
struct extent_buffer *eb);
|
2017-06-13 09:19:21 +00:00
|
|
|
int write_and_map_eb(struct btrfs_fs_info *fs_info, struct extent_buffer *eb);
|
2019-01-03 07:32:18 +00:00
|
|
|
int btrfs_fs_roots_compare_roots(struct rb_node *node1, struct rb_node *node2);
|
2019-01-03 07:32:17 +00:00
|
|
|
struct btrfs_root *btrfs_create_tree(struct btrfs_trans_handle *trans,
|
|
|
|
struct btrfs_fs_info *fs_info,
|
|
|
|
u64 objectid);
|
2009-07-11 17:12:37 +00:00
|
|
|
|
2015-01-21 16:49:26 +00:00
|
|
|
#endif
|