btrfs-progs: convert: use helper for special inode number check
[platform/upstream/btrfs-progs.git] / convert / source-fs.h
1 /*
2  * This program is free software; you can redistribute it and/or
3  * modify it under the terms of the GNU General Public
4  * License v2 as published by the Free Software Foundation.
5  *
6  * This program is distributed in the hope that it will be useful,
7  * but WITHOUT ANY WARRANTY; without even the implied warranty of
8  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
9  * General Public License for more details.
10  *
11  * You should have received a copy of the GNU General Public
12  * License along with this program; if not, write to the
13  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
14  * Boston, MA 021110-1307, USA.
15  */
16
17 #ifndef __BTRFS_CONVERT_SOURCE_FS_H__
18 #define __BTRFS_CONVERT_SOURCE_FS_H__
19
20 #include "kerncompat.h"
21
22 #define CONV_IMAGE_SUBVOL_OBJECTID BTRFS_FIRST_FREE_OBJECTID
23
24 struct task_info;
25
26 struct task_ctx {
27         u64 max_copy_inodes;
28         u64 cur_copy_inodes;
29         struct task_info *info;
30 };
31
32 struct btrfs_convert_context;
33
34 #define SOURCE_FS_NAME_LEN      (16)
35
36 struct btrfs_convert_operations {
37         const char name[SOURCE_FS_NAME_LEN];
38         int (*open_fs)(struct btrfs_convert_context *cctx, const char *devname);
39         int (*read_used_space)(struct btrfs_convert_context *cctx);
40         int (*copy_inodes)(struct btrfs_convert_context *cctx,
41                          struct btrfs_root *root, int datacsum,
42                          int packing, int noxattr, struct task_ctx *p);
43         void (*close_fs)(struct btrfs_convert_context *cctx);
44         int (*check_state)(struct btrfs_convert_context *cctx);
45 };
46
47 struct btrfs_trans_handle;
48 struct btrfs_root;
49 struct btrfs_inode_item;
50
51 struct blk_iterate_data {
52         struct btrfs_trans_handle *trans;
53         struct btrfs_root *root;
54         struct btrfs_root *convert_root;
55         struct btrfs_inode_item *inode;
56         u64 convert_ino;
57         u64 objectid;
58         u64 first_block;
59         u64 disk_block;
60         u64 num_blocks;
61         u64 boundary;
62         int checksum;
63         int errcode;
64 };
65
66 void init_convert_context(struct btrfs_convert_context *cctx);
67 void clean_convert_context(struct btrfs_convert_context *cctx);
68 int block_iterate_proc(u64 disk_block, u64 file_block,
69                               struct blk_iterate_data *idata);
70 void init_blk_iterate_data(struct blk_iterate_data *data,
71                                   struct btrfs_trans_handle *trans,
72                                   struct btrfs_root *root,
73                                   struct btrfs_inode_item *inode,
74                                   u64 objectid, int checksum);
75 int convert_insert_dirent(struct btrfs_trans_handle *trans,
76                                  struct btrfs_root *root,
77                                  const char *name, size_t name_len,
78                                  u64 dir, u64 objectid,
79                                  u8 file_type, u64 index_cnt,
80                                  struct btrfs_inode_item *inode);
81 int read_disk_extent(struct btrfs_root *root, u64 bytenr,
82                             u32 num_bytes, char *buffer);
83 int record_file_blocks(struct blk_iterate_data *data,
84                               u64 file_block, u64 disk_block, u64 num_blocks);
85
86 #endif