2007-06-12 21:07:11 +08: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-22 00:49:26 +08:00
|
|
|
#ifndef __BTRFS_DISK_IO_H__
|
|
|
|
#define __BTRFS_DISK_IO_H__
|
2007-02-02 22:18:22 +08:00
|
|
|
|
2015-06-10 08:21:42 +08:00
|
|
|
#include "kerncompat.h"
|
|
|
|
#include "ctree.h"
|
|
|
|
|
2008-12-06 01:21:31 +08:00
|
|
|
#define BTRFS_SUPER_INFO_OFFSET (64 * 1024)
|
2008-04-11 04:22:00 +08:00
|
|
|
#define BTRFS_SUPER_INFO_SIZE 4096
|
|
|
|
|
2008-12-06 01:21:31 +08:00
|
|
|
#define BTRFS_SUPER_MIRROR_MAX 3
|
|
|
|
#define BTRFS_SUPER_MIRROR_SHIFT 12
|
|
|
|
|
2013-10-29 02:28:43 +08:00
|
|
|
enum btrfs_open_ctree_flags {
|
2015-01-19 14:45:03 +08:00
|
|
|
OPEN_CTREE_WRITES = (1 << 0),
|
|
|
|
OPEN_CTREE_PARTIAL = (1 << 1),
|
|
|
|
OPEN_CTREE_BACKUP_ROOT = (1 << 2),
|
|
|
|
OPEN_CTREE_RECOVER_SUPER = (1 << 3),
|
|
|
|
OPEN_CTREE_RESTORE = (1 << 4),
|
|
|
|
OPEN_CTREE_NO_BLOCK_GROUPS = (1 << 5),
|
|
|
|
OPEN_CTREE_EXCLUSIVE = (1 << 6),
|
2015-02-03 22:48:57 +08:00
|
|
|
OPEN_CTREE_NO_DEVICES = (1 << 7),
|
2015-01-16 11:04:09 +08:00
|
|
|
/*
|
|
|
|
* Don't print error messages if bytenr or checksums do not match in
|
|
|
|
* tree block headers. Turn on by OPEN_CTREE_SUPPRESS_ERROR
|
|
|
|
*/
|
2015-01-16 11:22:28 +08:00
|
|
|
OPEN_CTREE_SUPPRESS_CHECK_BLOCK_ERRORS = (1 << 8),
|
|
|
|
/* Return chunk root */
|
2015-02-12 20:41:00 +08:00
|
|
|
__OPEN_CTREE_RETURN_CHUNK_ROOT = (1 << 9),
|
2015-01-16 11:22:28 +08:00
|
|
|
OPEN_CTREE_CHUNK_ROOT_ONLY = OPEN_CTREE_PARTIAL +
|
|
|
|
OPEN_CTREE_SUPPRESS_CHECK_BLOCK_ERRORS +
|
2015-02-12 20:41:00 +08:00
|
|
|
__OPEN_CTREE_RETURN_CHUNK_ROOT,
|
2015-01-16 11:22:28 +08:00
|
|
|
/*
|
2016-05-12 07:50:36 +08:00
|
|
|
* TODO: cleanup: Split the open_ctree_flags into more independent
|
|
|
|
* Tree bits.
|
2015-01-16 11:22:28 +08:00
|
|
|
* Like split PARTIAL into SKIP_CSUM/SKIP_EXTENT
|
|
|
|
*/
|
2015-05-11 16:08:45 +08:00
|
|
|
|
2016-02-22 14:59:54 +08:00
|
|
|
OPEN_CTREE_IGNORE_FSID_MISMATCH = (1 << 10),
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Allow open_ctree_fs_info() to return a incomplete fs_info with
|
|
|
|
* system chunks from super block only.
|
|
|
|
* It's useful for chunk corruption case.
|
|
|
|
* Makes no sense for open_ctree variants returning btrfs_root.
|
|
|
|
*/
|
2016-08-22 22:32:24 +08:00
|
|
|
OPEN_CTREE_IGNORE_CHUNK_TREE_ERROR = (1 << 11),
|
|
|
|
|
|
|
|
/* Allow to open a partially created filesystem */
|
|
|
|
OPEN_CTREE_FS_PARTIAL = (1 << 12),
|
2013-10-29 02:28:43 +08:00
|
|
|
};
|
|
|
|
|
2016-08-19 22:36:40 +08:00
|
|
|
/*
|
|
|
|
* Modes of superblock access
|
|
|
|
*/
|
|
|
|
enum btrfs_read_sb_flags {
|
|
|
|
SBREAD_DEFAULT = 0,
|
|
|
|
/* Reading superblock during recovery */
|
|
|
|
SBREAD_RECOVER = (1 << 0),
|
2016-08-22 22:32:24 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Read superblock with the fake signature, cannot be used with
|
|
|
|
* SBREAD_RECOVER
|
|
|
|
*/
|
|
|
|
SBREAD_PARTIAL = (1 << 1),
|
2016-08-19 22:36:40 +08:00
|
|
|
};
|
|
|
|
|
2008-12-06 01:21:31 +08:00
|
|
|
static inline u64 btrfs_sb_offset(int mirror)
|
|
|
|
{
|
|
|
|
u64 start = 16 * 1024;
|
|
|
|
if (mirror)
|
|
|
|
return start << (BTRFS_SUPER_MIRROR_SHIFT * mirror);
|
|
|
|
return BTRFS_SUPER_INFO_OFFSET;
|
|
|
|
}
|
|
|
|
|
2008-03-25 03:03:18 +08:00
|
|
|
struct btrfs_device;
|
2007-02-02 22:18:22 +08: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 13:32:45 +08:00
|
|
|
int read_whole_eb(struct btrfs_fs_info *info, struct extent_buffer *eb, int mirror);
|
2016-02-22 14:59:55 +08:00
|
|
|
struct extent_buffer* read_tree_block_fs_info(
|
|
|
|
struct btrfs_fs_info *fs_info, u64 bytenr, u32 blocksize,
|
|
|
|
u64 parent_transid);
|
|
|
|
static inline struct extent_buffer* read_tree_block(
|
|
|
|
struct btrfs_root *root, u64 bytenr, u32 blocksize,
|
|
|
|
u64 parent_transid)
|
|
|
|
{
|
|
|
|
return read_tree_block_fs_info(root->fs_info, bytenr, blocksize,
|
|
|
|
parent_transid);
|
|
|
|
}
|
|
|
|
|
2015-06-17 15:49:00 +08:00
|
|
|
int read_extent_data(struct btrfs_root *root, char *data, u64 logical,
|
|
|
|
u64 *len, int mirror);
|
2014-08-28 02:16:03 +08:00
|
|
|
void readahead_tree_block(struct btrfs_root *root, u64 bytenr, u32 blocksize,
|
|
|
|
u64 parent_transid);
|
2016-02-22 14:59:55 +08:00
|
|
|
struct extent_buffer* btrfs_find_create_tree_block(
|
|
|
|
struct btrfs_fs_info *fs_info, u64 bytenr, u32 blocksize);
|
2013-01-25 08:18:57 +08:00
|
|
|
|
|
|
|
int __setup_root(u32 nodesize, u32 leafsize, u32 sectorsize,
|
|
|
|
u32 stripesize, struct btrfs_root *root,
|
|
|
|
struct btrfs_fs_info *fs_info, u64 objectid);
|
2007-03-17 04:20:31 +08:00
|
|
|
int clean_tree_block(struct btrfs_trans_handle *trans,
|
2008-01-04 23:38:22 +08:00
|
|
|
struct btrfs_root *root, struct extent_buffer *buf);
|
2013-07-03 21:25:12 +08: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);
|
|
|
|
int btrfs_check_fs_compatibility(struct btrfs_super_block *sb, int writable);
|
2013-10-29 02:28:43 +08:00
|
|
|
int btrfs_setup_all_roots(struct btrfs_fs_info *fs_info, u64 root_tree_bytenr,
|
2016-08-19 22:20:36 +08:00
|
|
|
unsigned flags);
|
2013-07-03 21:25:12 +08: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 16:27:34 +08:00
|
|
|
struct btrfs_fs_devices **fs_devices, u64 sb_bytenr,
|
2016-08-19 22:36:40 +08:00
|
|
|
unsigned sbflags, int skip_devices);
|
2016-03-07 12:57:41 +08:00
|
|
|
int btrfs_setup_chunk_tree_and_device_map(struct btrfs_fs_info *fs_info,
|
|
|
|
u64 chunk_root_bytenr);
|
2013-07-03 21:25:12 +08:00
|
|
|
|
2013-10-29 02:28:43 +08:00
|
|
|
struct btrfs_root *open_ctree(const char *filename, u64 sb_bytenr,
|
2016-08-19 22:20:36 +08:00
|
|
|
unsigned flags);
|
2008-05-05 21:45:26 +08:00
|
|
|
struct btrfs_root *open_ctree_fd(int fp, const char *path, u64 sb_bytenr,
|
2016-08-19 22:20:36 +08:00
|
|
|
unsigned flags);
|
2012-02-06 05:11:48 +08:00
|
|
|
struct btrfs_fs_info *open_ctree_fs_info(const char *filename,
|
2013-04-17 01:13:38 +08:00
|
|
|
u64 sb_bytenr, u64 root_tree_bytenr,
|
2016-03-07 12:57:41 +08:00
|
|
|
u64 chunk_root_bytenr,
|
2016-08-19 22:20:36 +08:00
|
|
|
unsigned flags);
|
2016-02-22 14:59:54 +08:00
|
|
|
int close_ctree_fs_info(struct btrfs_fs_info *fs_info);
|
|
|
|
static inline int close_ctree(struct btrfs_root *root)
|
|
|
|
{
|
2016-08-18 23:44:18 +08:00
|
|
|
if (!root)
|
|
|
|
return 0;
|
2016-02-22 14:59:54 +08:00
|
|
|
return close_ctree_fs_info(root->fs_info);
|
|
|
|
}
|
|
|
|
|
2010-12-10 05:36:29 +08:00
|
|
|
int write_all_supers(struct btrfs_root *root);
|
2008-01-04 23:38:22 +08:00
|
|
|
int write_ctree_super(struct btrfs_trans_handle *trans,
|
|
|
|
struct btrfs_root *root);
|
2014-07-03 17:36:36 +08:00
|
|
|
int btrfs_read_dev_super(int fd, struct btrfs_super_block *sb, u64 sb_bytenr,
|
2016-08-19 22:36:40 +08:00
|
|
|
unsigned sbflags);
|
2008-01-04 23:38:22 +08:00
|
|
|
int btrfs_map_bh_to_logical(struct btrfs_root *root, struct extent_buffer *bh,
|
|
|
|
u64 logical);
|
|
|
|
struct extent_buffer *btrfs_find_tree_block(struct btrfs_root *root,
|
|
|
|
u64 bytenr, u32 blocksize);
|
|
|
|
struct btrfs_root *btrfs_read_fs_root(struct btrfs_fs_info *fs_info,
|
|
|
|
struct btrfs_key *location);
|
2009-05-30 04:35:30 +08:00
|
|
|
struct btrfs_root *btrfs_read_fs_root_no_cache(struct btrfs_fs_info *fs_info,
|
|
|
|
struct btrfs_key *location);
|
2013-07-03 21:25:13 +08:00
|
|
|
int btrfs_free_fs_root(struct btrfs_root *root);
|
2008-01-04 23:38:22 +08:00
|
|
|
void btrfs_mark_buffer_dirty(struct extent_buffer *buf);
|
2008-05-14 01:48:58 +08:00
|
|
|
int btrfs_buffer_uptodate(struct extent_buffer *buf, u64 parent_transid);
|
2008-01-04 23:38:22 +08:00
|
|
|
int btrfs_set_buffer_uptodate(struct extent_buffer *buf);
|
|
|
|
int wait_on_tree_block_writeback(struct btrfs_root *root,
|
|
|
|
struct extent_buffer *buf);
|
|
|
|
u32 btrfs_csum_data(struct btrfs_root *root, char *data, u32 seed, size_t len);
|
|
|
|
void btrfs_csum_final(u32 crc, char *result);
|
2007-02-02 22:18:22 +08:00
|
|
|
|
2008-01-04 23:38:22 +08:00
|
|
|
int btrfs_commit_transaction(struct btrfs_trans_handle *trans,
|
|
|
|
struct btrfs_root *root);
|
2008-03-25 03:03:18 +08:00
|
|
|
int btrfs_open_device(struct btrfs_device *dev);
|
2008-12-02 22:58:23 +08:00
|
|
|
int csum_tree_block_size(struct extent_buffer *buf, u16 csum_sectorsize,
|
|
|
|
int verify);
|
2013-07-03 21:25:17 +08:00
|
|
|
int verify_tree_block_csum_silent(struct extent_buffer *buf, u16 csum_size);
|
2008-05-13 01:51:24 +08:00
|
|
|
int btrfs_read_buffer(struct extent_buffer *buf, u64 parent_transid);
|
2015-05-11 16:08:46 +08:00
|
|
|
int write_tree_block(struct btrfs_trans_handle *trans,
|
|
|
|
struct btrfs_root *root,
|
|
|
|
struct extent_buffer *eb);
|
2013-10-16 22:36:55 +08:00
|
|
|
int write_and_map_eb(struct btrfs_trans_handle *trans, struct btrfs_root *root,
|
|
|
|
struct extent_buffer *eb);
|
2009-07-12 01:12:37 +08:00
|
|
|
|
|
|
|
/* raid6.c */
|
|
|
|
void raid6_gen_syndrome(int disks, size_t bytes, void **ptrs);
|
2015-01-22 00:49:26 +08:00
|
|
|
|
|
|
|
#endif
|