2 * Copyright (C) 2007 Oracle. All rights reserved.
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public
6 * License v2 as published by the Free Software Foundation.
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * General Public License for more details.
13 * You should have received a copy of the GNU General Public
14 * License along with this program; if not, write to the
15 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16 * Boston, MA 021110-1307, USA.
19 #include "kerncompat.h"
21 #include <sys/ioctl.h>
22 #include <sys/mount.h>
25 #include <sys/types.h>
29 #include <uuid/uuid.h>
30 #include <linux/limits.h>
36 #include "transaction.h"
39 #include "task-utils.h"
41 #include "mkfs/common.h"
42 #include "convert/common.h"
43 #include "convert/source-fs.h"
44 #include "convert/source-ext2.h"
45 #include "fsfeatures.h"
47 static void *print_copied_inodes(void *p)
49 struct task_ctx *priv = p;
50 const char work_indicator[] = { '.', 'o', 'O', 'o' };
53 task_period_start(priv->info, 1000 /* 1s */);
56 printf("copy inodes [%c] [%10d/%10d]\r",
57 work_indicator[count % 4], priv->cur_copy_inodes,
58 priv->max_copy_inodes);
60 task_period_wait(priv->info);
66 static int after_copied_inodes(void *p)
74 void init_convert_context(struct btrfs_convert_context *cctx)
76 cache_tree_init(&cctx->used);
77 cache_tree_init(&cctx->data_chunks);
78 cache_tree_init(&cctx->free);
81 void clean_convert_context(struct btrfs_convert_context *cctx)
83 free_extent_cache_tree(&cctx->used);
84 free_extent_cache_tree(&cctx->data_chunks);
85 free_extent_cache_tree(&cctx->free);
88 static inline int copy_inodes(struct btrfs_convert_context *cctx,
89 struct btrfs_root *root, int datacsum,
90 int packing, int noxattr, struct task_ctx *p)
92 return cctx->convert_ops->copy_inodes(cctx, root, datacsum, packing,
96 static inline void convert_close_fs(struct btrfs_convert_context *cctx)
98 cctx->convert_ops->close_fs(cctx);
101 static inline int convert_check_state(struct btrfs_convert_context *cctx)
103 return cctx->convert_ops->check_state(cctx);
106 static int intersect_with_sb(u64 bytenr, u64 num_bytes)
111 for (i = 0; i < BTRFS_SUPER_MIRROR_MAX; i++) {
112 offset = btrfs_sb_offset(i);
113 offset &= ~((u64)BTRFS_STRIPE_LEN - 1);
115 if (bytenr < offset + BTRFS_STRIPE_LEN &&
116 bytenr + num_bytes > offset)
122 int convert_insert_dirent(struct btrfs_trans_handle *trans,
123 struct btrfs_root *root,
124 const char *name, size_t name_len,
125 u64 dir, u64 objectid,
126 u8 file_type, u64 index_cnt,
127 struct btrfs_inode_item *inode)
131 struct btrfs_key location = {
132 .objectid = objectid,
134 .type = BTRFS_INODE_ITEM_KEY,
137 ret = btrfs_insert_dir_item(trans, root, name, name_len,
138 dir, &location, file_type, index_cnt);
141 ret = btrfs_insert_inode_ref(trans, root, name, name_len,
142 objectid, dir, index_cnt);
145 inode_size = btrfs_stack_inode_size(inode) + name_len * 2;
146 btrfs_set_stack_inode_size(inode, inode_size);
151 int read_disk_extent(struct btrfs_root *root, u64 bytenr,
152 u32 num_bytes, char *buffer)
155 struct btrfs_fs_devices *fs_devs = root->fs_info->fs_devices;
157 ret = pread(fs_devs->latest_bdev, buffer, num_bytes, bytenr);
158 if (ret != num_bytes)
167 static int csum_disk_extent(struct btrfs_trans_handle *trans,
168 struct btrfs_root *root,
169 u64 disk_bytenr, u64 num_bytes)
171 u32 blocksize = root->sectorsize;
176 buffer = malloc(blocksize);
179 for (offset = 0; offset < num_bytes; offset += blocksize) {
180 ret = read_disk_extent(root, disk_bytenr + offset,
184 ret = btrfs_csum_file_block(trans,
185 root->fs_info->csum_root,
186 disk_bytenr + num_bytes,
187 disk_bytenr + offset,
196 void init_blk_iterate_data(struct blk_iterate_data *data,
197 struct btrfs_trans_handle *trans,
198 struct btrfs_root *root,
199 struct btrfs_inode_item *inode,
200 u64 objectid, int checksum)
202 struct btrfs_key key;
207 data->objectid = objectid;
208 data->first_block = 0;
209 data->disk_block = 0;
210 data->num_blocks = 0;
211 data->boundary = (u64)-1;
212 data->checksum = checksum;
215 key.objectid = CONV_IMAGE_SUBVOL_OBJECTID;
216 key.type = BTRFS_ROOT_ITEM_KEY;
217 key.offset = (u64)-1;
218 data->convert_root = btrfs_read_fs_root(root->fs_info, &key);
219 /* Impossible as we just opened it before */
220 BUG_ON(!data->convert_root || IS_ERR(data->convert_root));
221 data->convert_ino = BTRFS_FIRST_FREE_OBJECTID + 1;
225 * Record a file extent in original filesystem into btrfs one.
226 * The special point is, old disk_block can point to a reserved range.
227 * So here, we don't use disk_block directly but search convert_root
228 * to get the real disk_bytenr.
230 int record_file_blocks(struct blk_iterate_data *data,
231 u64 file_block, u64 disk_block, u64 num_blocks)
234 struct btrfs_root *root = data->root;
235 struct btrfs_root *convert_root = data->convert_root;
236 struct btrfs_path path;
237 u64 file_pos = file_block * root->sectorsize;
238 u64 old_disk_bytenr = disk_block * root->sectorsize;
239 u64 num_bytes = num_blocks * root->sectorsize;
240 u64 cur_off = old_disk_bytenr;
242 /* Hole, pass it to record_file_extent directly */
243 if (old_disk_bytenr == 0)
244 return btrfs_record_file_extent(data->trans, root,
245 data->objectid, data->inode, file_pos, 0,
248 btrfs_init_path(&path);
251 * Search real disk bytenr from convert root
253 while (cur_off < old_disk_bytenr + num_bytes) {
254 struct btrfs_key key;
255 struct btrfs_file_extent_item *fi;
256 struct extent_buffer *node;
258 u64 extent_disk_bytenr;
259 u64 extent_num_bytes;
260 u64 real_disk_bytenr;
263 key.objectid = data->convert_ino;
264 key.type = BTRFS_EXTENT_DATA_KEY;
265 key.offset = cur_off;
267 ret = btrfs_search_slot(NULL, convert_root, &key, &path, 0, 0);
271 ret = btrfs_previous_item(convert_root, &path,
273 BTRFS_EXTENT_DATA_KEY);
281 node = path.nodes[0];
282 slot = path.slots[0];
283 btrfs_item_key_to_cpu(node, &key, slot);
284 BUG_ON(key.type != BTRFS_EXTENT_DATA_KEY ||
285 key.objectid != data->convert_ino ||
286 key.offset > cur_off);
287 fi = btrfs_item_ptr(node, slot, struct btrfs_file_extent_item);
288 extent_disk_bytenr = btrfs_file_extent_disk_bytenr(node, fi);
289 extent_num_bytes = btrfs_file_extent_num_bytes(node, fi);
290 BUG_ON(cur_off - key.offset >= extent_num_bytes);
291 btrfs_release_path(&path);
293 if (extent_disk_bytenr)
294 real_disk_bytenr = cur_off - key.offset +
297 real_disk_bytenr = 0;
298 cur_len = min(key.offset + extent_num_bytes,
299 old_disk_bytenr + num_bytes) - cur_off;
300 ret = btrfs_record_file_extent(data->trans, data->root,
301 data->objectid, data->inode, file_pos,
302 real_disk_bytenr, cur_len);
309 * No need to care about csum
310 * As every byte of old fs image is calculated for csum, no
311 * need to waste CPU cycles now.
314 btrfs_release_path(&path);
318 int block_iterate_proc(u64 disk_block, u64 file_block,
319 struct blk_iterate_data *idata)
324 struct btrfs_root *root = idata->root;
325 struct btrfs_block_group_cache *cache;
326 u64 bytenr = disk_block * root->sectorsize;
328 sb_region = intersect_with_sb(bytenr, root->sectorsize);
329 do_barrier = sb_region || disk_block >= idata->boundary;
330 if ((idata->num_blocks > 0 && do_barrier) ||
331 (file_block > idata->first_block + idata->num_blocks) ||
332 (disk_block != idata->disk_block + idata->num_blocks)) {
333 if (idata->num_blocks > 0) {
334 ret = record_file_blocks(idata, idata->first_block,
339 idata->first_block += idata->num_blocks;
340 idata->num_blocks = 0;
342 if (file_block > idata->first_block) {
343 ret = record_file_blocks(idata, idata->first_block,
344 0, file_block - idata->first_block);
350 bytenr += BTRFS_STRIPE_LEN - 1;
351 bytenr &= ~((u64)BTRFS_STRIPE_LEN - 1);
353 cache = btrfs_lookup_block_group(root->fs_info, bytenr);
355 bytenr = cache->key.objectid + cache->key.offset;
358 idata->first_block = file_block;
359 idata->disk_block = disk_block;
360 idata->boundary = bytenr / root->sectorsize;
367 static int create_image_file_range(struct btrfs_trans_handle *trans,
368 struct btrfs_root *root,
369 struct cache_tree *used,
370 struct btrfs_inode_item *inode,
371 u64 ino, u64 bytenr, u64 *ret_len,
374 struct cache_extent *cache;
375 struct btrfs_block_group_cache *bg_cache;
381 if (bytenr != round_down(bytenr, root->sectorsize)) {
382 error("bytenr not sectorsize aligned: %llu",
383 (unsigned long long)bytenr);
386 if (len != round_down(len, root->sectorsize)) {
387 error("length not sectorsize aligned: %llu",
388 (unsigned long long)len);
391 len = min_t(u64, len, BTRFS_MAX_EXTENT_SIZE);
394 * Skip sb ranges first
395 * [0, 1M), [sb_offset(1), +64K), [sb_offset(2), +64K].
397 * Or we will insert a hole into current image file, and later
398 * migrate block will fail as there is already a file extent.
400 if (bytenr < 1024 * 1024) {
401 *ret_len = 1024 * 1024 - bytenr;
404 for (i = 1; i < BTRFS_SUPER_MIRROR_MAX; i++) {
405 u64 cur = btrfs_sb_offset(i);
407 if (bytenr >= cur && bytenr < cur + BTRFS_STRIPE_LEN) {
408 *ret_len = cur + BTRFS_STRIPE_LEN - bytenr;
412 for (i = 1; i < BTRFS_SUPER_MIRROR_MAX; i++) {
413 u64 cur = btrfs_sb_offset(i);
418 * May still need to go through file extent inserts
420 if (bytenr < cur && bytenr + len >= cur) {
421 len = min_t(u64, len, cur - bytenr);
427 * Drop out, no need to insert anything
429 if (bytenr >= cur && bytenr < cur + BTRFS_STRIPE_LEN) {
430 *ret_len = cur + BTRFS_STRIPE_LEN - bytenr;
435 cache = search_cache_extent(used, bytenr);
437 if (cache->start <= bytenr) {
439 * |///////Used///////|
443 len = min_t(u64, len, cache->start + cache->size -
445 disk_bytenr = bytenr;
452 len = min(len, cache->start - bytenr);
467 /* Check if the range is in a data block group */
468 bg_cache = btrfs_lookup_block_group(root->fs_info, bytenr);
471 if (!(bg_cache->flags & BTRFS_BLOCK_GROUP_DATA))
474 /* The extent should never cross block group boundary */
475 len = min_t(u64, len, bg_cache->key.objectid +
476 bg_cache->key.offset - bytenr);
479 if (len != round_down(len, root->sectorsize)) {
480 error("remaining length not sectorsize aligned: %llu",
481 (unsigned long long)len);
484 ret = btrfs_record_file_extent(trans, root, ino, inode, bytenr,
490 ret = csum_disk_extent(trans, root, bytenr, len);
496 * Relocate old fs data in one reserved ranges
498 * Since all old fs data in reserved range is not covered by any chunk nor
499 * data extent, we don't need to handle any reference but add new
500 * extent/reference, which makes codes more clear
502 static int migrate_one_reserved_range(struct btrfs_trans_handle *trans,
503 struct btrfs_root *root,
504 struct cache_tree *used,
505 struct btrfs_inode_item *inode, int fd,
506 u64 ino, u64 start, u64 len, int datacsum)
510 u64 hole_start = start;
512 struct cache_extent *cache;
513 struct btrfs_key key;
514 struct extent_buffer *eb;
517 while (cur_off < start + len) {
518 cache = lookup_cache_extent(used, cur_off, cur_len);
521 cur_off = max(cache->start, cur_off);
522 cur_len = min(cache->start + cache->size, start + len) -
524 BUG_ON(cur_len < root->sectorsize);
526 /* reserve extent for the data */
527 ret = btrfs_reserve_extent(trans, root, cur_len, 0, 0, (u64)-1,
532 eb = malloc(sizeof(*eb) + cur_len);
538 ret = pread(fd, eb->data, cur_len, cur_off);
540 ret = (ret < 0 ? ret : -EIO);
544 eb->start = key.objectid;
545 eb->len = key.offset;
548 ret = write_and_map_eb(trans, root, eb);
553 /* Now handle extent item and file extent things */
554 ret = btrfs_record_file_extent(trans, root, ino, inode, cur_off,
555 key.objectid, key.offset);
558 /* Finally, insert csum items */
560 ret = csum_disk_extent(trans, root, key.objectid,
563 /* Don't forget to insert hole */
564 hole_len = cur_off - hole_start;
566 ret = btrfs_record_file_extent(trans, root, ino, inode,
567 hole_start, 0, hole_len);
572 cur_off += key.offset;
573 hole_start = cur_off;
574 cur_len = start + len - cur_off;
577 if (start + len - hole_start > 0)
578 ret = btrfs_record_file_extent(trans, root, ino, inode,
579 hole_start, 0, start + len - hole_start);
584 * Relocate the used ext2 data in reserved ranges
586 * [btrfs_sb_offset(1), +BTRFS_STRIPE_LEN)
587 * [btrfs_sb_offset(2), +BTRFS_STRIPE_LEN)
589 static int migrate_reserved_ranges(struct btrfs_trans_handle *trans,
590 struct btrfs_root *root,
591 struct cache_tree *used,
592 struct btrfs_inode_item *inode, int fd,
593 u64 ino, u64 total_bytes, int datacsum)
601 cur_len = 1024 * 1024;
602 ret = migrate_one_reserved_range(trans, root, used, inode, fd, ino,
603 cur_off, cur_len, datacsum);
607 /* second sb(fisrt sb is included in 0~1M) */
608 cur_off = btrfs_sb_offset(1);
609 cur_len = min(total_bytes, cur_off + BTRFS_STRIPE_LEN) - cur_off;
610 if (cur_off > total_bytes)
612 ret = migrate_one_reserved_range(trans, root, used, inode, fd, ino,
613 cur_off, cur_len, datacsum);
618 cur_off = btrfs_sb_offset(2);
619 cur_len = min(total_bytes, cur_off + BTRFS_STRIPE_LEN) - cur_off;
620 if (cur_off > total_bytes)
622 ret = migrate_one_reserved_range(trans, root, used, inode, fd, ino,
623 cur_off, cur_len, datacsum);
628 * Helper for expand and merge extent_cache for wipe_one_reserved_range() to
629 * handle wiping a range that exists in cache.
631 static int _expand_extent_cache(struct cache_tree *tree,
632 struct cache_extent *entry,
633 u64 min_stripe_size, int backward)
635 struct cache_extent *ce;
638 if (entry->size >= min_stripe_size)
640 diff = min_stripe_size - entry->size;
643 ce = prev_cache_extent(entry);
646 if (ce->start + ce->size >= entry->start - diff) {
647 /* Directly merge with previous extent */
648 ce->size = entry->start + entry->size - ce->start;
649 remove_cache_extent(tree, entry);
654 /* No overlap, normal extent */
655 if (entry->start < diff) {
656 error("cannot find space for data chunk layout");
659 entry->start -= diff;
663 ce = next_cache_extent(entry);
666 if (entry->start + entry->size + diff >= ce->start) {
667 /* Directly merge with next extent */
668 entry->size = ce->start + ce->size - entry->start;
669 remove_cache_extent(tree, ce);
679 * Remove one reserve range from given cache tree
680 * if min_stripe_size is non-zero, it will ensure for split case,
681 * all its split cache extent is no smaller than @min_strip_size / 2.
683 static int wipe_one_reserved_range(struct cache_tree *tree,
684 u64 start, u64 len, u64 min_stripe_size,
687 struct cache_extent *cache;
690 BUG_ON(ensure_size && min_stripe_size == 0);
692 * The logical here is simplified to handle special cases only
693 * So we don't need to consider merge case for ensure_size
695 BUG_ON(min_stripe_size && (min_stripe_size < len * 2 ||
696 min_stripe_size / 2 < BTRFS_STRIPE_LEN));
698 /* Also, wipe range should already be aligned */
699 BUG_ON(start != round_down(start, BTRFS_STRIPE_LEN) ||
700 start + len != round_up(start + len, BTRFS_STRIPE_LEN));
702 min_stripe_size /= 2;
704 cache = lookup_cache_extent(tree, start, len);
708 if (start <= cache->start) {
710 * |--------cache---------|
713 BUG_ON(start + len <= cache->start);
716 * The wipe size is smaller than min_stripe_size / 2,
717 * so the result length should still meet min_stripe_size
718 * And no need to do alignment
720 cache->size -= (start + len - cache->start);
721 if (cache->size == 0) {
722 remove_cache_extent(tree, cache);
727 BUG_ON(ensure_size && cache->size < min_stripe_size);
729 cache->start = start + len;
731 } else if (start > cache->start && start + len < cache->start +
734 * |-------cache-----|
737 u64 old_start = cache->start;
738 u64 old_len = cache->size;
739 u64 insert_start = start + len;
742 cache->size = start - cache->start;
743 /* Expand the leading half part if needed */
744 if (ensure_size && cache->size < min_stripe_size) {
745 ret = _expand_extent_cache(tree, cache,
751 /* And insert the new one */
752 insert_len = old_start + old_len - start - len;
753 ret = add_merge_cache_extent(tree, insert_start, insert_len);
757 /* Expand the last half part if needed */
758 if (ensure_size && insert_len < min_stripe_size) {
759 cache = lookup_cache_extent(tree, insert_start,
761 if (!cache || cache->start != insert_start ||
762 cache->size != insert_len)
764 ret = _expand_extent_cache(tree, cache,
773 * Wipe len should be small enough and no need to expand the
776 cache->size = start - cache->start;
777 BUG_ON(ensure_size && cache->size < min_stripe_size);
782 * Remove reserved ranges from given cache_tree
784 * It will remove the following ranges
786 * 2) 2nd superblock, +64K (make sure chunks are 64K aligned)
787 * 3) 3rd superblock, +64K
789 * @min_stripe must be given for safety check
790 * and if @ensure_size is given, it will ensure affected cache_extent will be
791 * larger than min_stripe_size
793 static int wipe_reserved_ranges(struct cache_tree *tree, u64 min_stripe_size,
798 ret = wipe_one_reserved_range(tree, 0, 1024 * 1024, min_stripe_size,
802 ret = wipe_one_reserved_range(tree, btrfs_sb_offset(1),
803 BTRFS_STRIPE_LEN, min_stripe_size, ensure_size);
806 ret = wipe_one_reserved_range(tree, btrfs_sb_offset(2),
807 BTRFS_STRIPE_LEN, min_stripe_size, ensure_size);
811 static int calculate_available_space(struct btrfs_convert_context *cctx)
813 struct cache_tree *used = &cctx->used;
814 struct cache_tree *data_chunks = &cctx->data_chunks;
815 struct cache_tree *free = &cctx->free;
816 struct cache_extent *cache;
819 * Twice the minimal chunk size, to allow later wipe_reserved_ranges()
820 * works without need to consider overlap
822 u64 min_stripe_size = 2 * 16 * 1024 * 1024;
825 /* Calculate data_chunks */
826 for (cache = first_cache_extent(used); cache;
827 cache = next_cache_extent(cache)) {
830 if (cache->start + cache->size < cur_off)
832 if (cache->start > cur_off + min_stripe_size)
833 cur_off = cache->start;
834 cur_len = max(cache->start + cache->size - cur_off,
836 ret = add_merge_cache_extent(data_chunks, cur_off, cur_len);
842 * remove reserved ranges, so we won't ever bother relocating an old
843 * filesystem extent to other place.
845 ret = wipe_reserved_ranges(data_chunks, min_stripe_size, 1);
851 * Calculate free space
852 * Always round up the start bytenr, to avoid metadata extent corss
853 * stripe boundary, as later mkfs_convert() won't have all the extent
856 for (cache = first_cache_extent(data_chunks); cache;
857 cache = next_cache_extent(cache)) {
858 if (cache->start < cur_off)
860 if (cache->start > cur_off) {
864 len = cache->start - round_up(cur_off,
866 insert_start = round_up(cur_off, BTRFS_STRIPE_LEN);
868 ret = add_merge_cache_extent(free, insert_start, len);
872 cur_off = cache->start + cache->size;
874 /* Don't forget the last range */
875 if (cctx->total_bytes > cur_off) {
876 u64 len = cctx->total_bytes - cur_off;
879 insert_start = round_up(cur_off, BTRFS_STRIPE_LEN);
881 ret = add_merge_cache_extent(free, insert_start, len);
886 /* Remove reserved bytes */
887 ret = wipe_reserved_ranges(free, min_stripe_size, 0);
893 * Read used space, and since we have the used space,
894 * calcuate data_chunks and free for later mkfs
896 static int convert_read_used_space(struct btrfs_convert_context *cctx)
900 ret = cctx->convert_ops->read_used_space(cctx);
904 ret = calculate_available_space(cctx);
909 * Create the fs image file of old filesystem.
911 * This is completely fs independent as we have cctx->used, only
912 * need to create file extents pointing to all the positions.
914 static int create_image(struct btrfs_root *root,
915 struct btrfs_mkfs_config *cfg,
916 struct btrfs_convert_context *cctx, int fd,
917 u64 size, char *name, int datacsum)
919 struct btrfs_inode_item buf;
920 struct btrfs_trans_handle *trans;
921 struct btrfs_path path;
922 struct btrfs_key key;
923 struct cache_extent *cache;
924 struct cache_tree used_tmp;
927 u64 flags = BTRFS_INODE_READONLY;
931 flags |= BTRFS_INODE_NODATASUM;
933 trans = btrfs_start_transaction(root, 1);
937 cache_tree_init(&used_tmp);
938 btrfs_init_path(&path);
940 ret = btrfs_find_free_objectid(trans, root, BTRFS_FIRST_FREE_OBJECTID,
944 ret = btrfs_new_inode(trans, root, ino, 0400 | S_IFREG);
947 ret = btrfs_change_inode_flags(trans, root, ino, flags);
950 ret = btrfs_add_link(trans, root, ino, BTRFS_FIRST_FREE_OBJECTID, name,
951 strlen(name), BTRFS_FT_REG_FILE, NULL, 1);
956 key.type = BTRFS_INODE_ITEM_KEY;
959 ret = btrfs_search_slot(trans, root, &key, &path, 0, 1);
961 ret = (ret > 0 ? -ENOENT : ret);
964 read_extent_buffer(path.nodes[0], &buf,
965 btrfs_item_ptr_offset(path.nodes[0], path.slots[0]),
967 btrfs_release_path(&path);
970 * Create a new used space cache, which doesn't contain the reserved
973 for (cache = first_cache_extent(&cctx->used); cache;
974 cache = next_cache_extent(cache)) {
975 ret = add_cache_extent(&used_tmp, cache->start, cache->size);
979 ret = wipe_reserved_ranges(&used_tmp, 0, 0);
984 * Start from 1M, as 0~1M is reserved, and create_image_file_range()
985 * can't handle bytenr 0(will consider it as a hole)
989 u64 len = size - cur;
991 ret = create_image_file_range(trans, root, &used_tmp,
992 &buf, ino, cur, &len, datacsum);
997 /* Handle the reserved ranges */
998 ret = migrate_reserved_ranges(trans, root, &cctx->used, &buf, fd, ino,
999 cfg->num_bytes, datacsum);
1003 key.type = BTRFS_INODE_ITEM_KEY;
1005 ret = btrfs_search_slot(trans, root, &key, &path, 0, 1);
1007 ret = (ret > 0 ? -ENOENT : ret);
1010 btrfs_set_stack_inode_size(&buf, cfg->num_bytes);
1011 write_extent_buffer(path.nodes[0], &buf,
1012 btrfs_item_ptr_offset(path.nodes[0], path.slots[0]),
1015 free_extent_cache_tree(&used_tmp);
1016 btrfs_release_path(&path);
1017 btrfs_commit_transaction(trans, root);
1021 static struct btrfs_root* link_subvol(struct btrfs_root *root,
1022 const char *base, u64 root_objectid)
1024 struct btrfs_trans_handle *trans;
1025 struct btrfs_fs_info *fs_info = root->fs_info;
1026 struct btrfs_root *tree_root = fs_info->tree_root;
1027 struct btrfs_root *new_root = NULL;
1028 struct btrfs_path path;
1029 struct btrfs_inode_item *inode_item;
1030 struct extent_buffer *leaf;
1031 struct btrfs_key key;
1032 u64 dirid = btrfs_root_dirid(&root->root_item);
1034 char buf[BTRFS_NAME_LEN + 1]; /* for snprintf null */
1040 if (len == 0 || len > BTRFS_NAME_LEN)
1043 btrfs_init_path(&path);
1044 key.objectid = dirid;
1045 key.type = BTRFS_DIR_INDEX_KEY;
1046 key.offset = (u64)-1;
1048 ret = btrfs_search_slot(NULL, root, &key, &path, 0, 0);
1050 error("search for DIR_INDEX dirid %llu failed: %d",
1051 (unsigned long long)dirid, ret);
1055 if (path.slots[0] > 0) {
1057 btrfs_item_key_to_cpu(path.nodes[0], &key, path.slots[0]);
1058 if (key.objectid == dirid && key.type == BTRFS_DIR_INDEX_KEY)
1059 index = key.offset + 1;
1061 btrfs_release_path(&path);
1063 trans = btrfs_start_transaction(root, 1);
1065 error("unable to start transaction");
1069 key.objectid = dirid;
1071 key.type = BTRFS_INODE_ITEM_KEY;
1073 ret = btrfs_lookup_inode(trans, root, &path, &key, 1);
1075 error("search for INODE_ITEM %llu failed: %d",
1076 (unsigned long long)dirid, ret);
1079 leaf = path.nodes[0];
1080 inode_item = btrfs_item_ptr(leaf, path.slots[0],
1081 struct btrfs_inode_item);
1083 key.objectid = root_objectid;
1084 key.offset = (u64)-1;
1085 key.type = BTRFS_ROOT_ITEM_KEY;
1087 memcpy(buf, base, len);
1088 for (i = 0; i < 1024; i++) {
1089 ret = btrfs_insert_dir_item(trans, root, buf, len,
1090 dirid, &key, BTRFS_FT_DIR, index);
1093 len = snprintf(buf, ARRAY_SIZE(buf), "%s%d", base, i);
1094 if (len < 1 || len > BTRFS_NAME_LEN) {
1102 btrfs_set_inode_size(leaf, inode_item, len * 2 +
1103 btrfs_inode_size(leaf, inode_item));
1104 btrfs_mark_buffer_dirty(leaf);
1105 btrfs_release_path(&path);
1107 /* add the backref first */
1108 ret = btrfs_add_root_ref(trans, tree_root, root_objectid,
1109 BTRFS_ROOT_BACKREF_KEY,
1110 root->root_key.objectid,
1111 dirid, index, buf, len);
1113 error("unable to add root backref for %llu: %d",
1114 root->root_key.objectid, ret);
1118 /* now add the forward ref */
1119 ret = btrfs_add_root_ref(trans, tree_root, root->root_key.objectid,
1120 BTRFS_ROOT_REF_KEY, root_objectid,
1121 dirid, index, buf, len);
1123 error("unable to add root ref for %llu: %d",
1124 root->root_key.objectid, ret);
1128 ret = btrfs_commit_transaction(trans, root);
1130 error("transaction commit failed: %d", ret);
1134 new_root = btrfs_read_fs_root(fs_info, &key);
1135 if (IS_ERR(new_root)) {
1136 error("unable to fs read root: %lu", PTR_ERR(new_root));
1140 btrfs_init_path(&path);
1144 static int create_subvol(struct btrfs_trans_handle *trans,
1145 struct btrfs_root *root, u64 root_objectid)
1147 struct extent_buffer *tmp;
1148 struct btrfs_root *new_root;
1149 struct btrfs_key key;
1150 struct btrfs_root_item root_item;
1153 ret = btrfs_copy_root(trans, root, root->node, &tmp,
1158 memcpy(&root_item, &root->root_item, sizeof(root_item));
1159 btrfs_set_root_bytenr(&root_item, tmp->start);
1160 btrfs_set_root_level(&root_item, btrfs_header_level(tmp));
1161 btrfs_set_root_generation(&root_item, trans->transid);
1162 free_extent_buffer(tmp);
1164 key.objectid = root_objectid;
1165 key.type = BTRFS_ROOT_ITEM_KEY;
1166 key.offset = trans->transid;
1167 ret = btrfs_insert_root(trans, root->fs_info->tree_root,
1170 key.offset = (u64)-1;
1171 new_root = btrfs_read_fs_root(root->fs_info, &key);
1172 if (!new_root || IS_ERR(new_root)) {
1173 error("unable to fs read root: %lu", PTR_ERR(new_root));
1174 return PTR_ERR(new_root);
1177 ret = btrfs_make_root_dir(trans, new_root, BTRFS_FIRST_FREE_OBJECTID);
1183 * New make_btrfs() has handle system and meta chunks quite well.
1184 * So only need to add remaining data chunks.
1186 static int make_convert_data_block_groups(struct btrfs_trans_handle *trans,
1187 struct btrfs_fs_info *fs_info,
1188 struct btrfs_mkfs_config *cfg,
1189 struct btrfs_convert_context *cctx)
1191 struct btrfs_root *extent_root = fs_info->extent_root;
1192 struct cache_tree *data_chunks = &cctx->data_chunks;
1193 struct cache_extent *cache;
1198 * Don't create data chunk over 10% of the convert device
1199 * And for single chunk, don't create chunk larger than 1G.
1201 max_chunk_size = cfg->num_bytes / 10;
1202 max_chunk_size = min((u64)(1024 * 1024 * 1024), max_chunk_size);
1203 max_chunk_size = round_down(max_chunk_size, extent_root->sectorsize);
1205 for (cache = first_cache_extent(data_chunks); cache;
1206 cache = next_cache_extent(cache)) {
1207 u64 cur = cache->start;
1209 while (cur < cache->start + cache->size) {
1211 u64 cur_backup = cur;
1213 len = min(max_chunk_size,
1214 cache->start + cache->size - cur);
1215 ret = btrfs_alloc_data_chunk(trans, extent_root,
1217 BTRFS_BLOCK_GROUP_DATA, 1);
1220 ret = btrfs_make_block_group(trans, extent_root, 0,
1221 BTRFS_BLOCK_GROUP_DATA,
1222 BTRFS_FIRST_CHUNK_TREE_OBJECTID,
1233 * Init the temp btrfs to a operational status.
1235 * It will fix the extent usage accounting(XXX: Do we really need?) and
1236 * insert needed data chunks, to ensure all old fs data extents are covered
1237 * by DATA chunks, preventing wrong chunks are allocated.
1239 * And also create convert image subvolume and relocation tree.
1240 * (XXX: Not need again?)
1241 * But the convert image subvolume is *NOT* linked to fs tree yet.
1243 static int init_btrfs(struct btrfs_mkfs_config *cfg, struct btrfs_root *root,
1244 struct btrfs_convert_context *cctx, int datacsum,
1245 int packing, int noxattr)
1247 struct btrfs_key location;
1248 struct btrfs_trans_handle *trans;
1249 struct btrfs_fs_info *fs_info = root->fs_info;
1253 * Don't alloc any metadata/system chunk, as we don't want
1254 * any meta/sys chunk allcated before all data chunks are inserted.
1255 * Or we screw up the chunk layout just like the old implement.
1257 fs_info->avoid_sys_chunk_alloc = 1;
1258 fs_info->avoid_meta_chunk_alloc = 1;
1259 trans = btrfs_start_transaction(root, 1);
1261 error("unable to start transaction");
1265 ret = btrfs_fix_block_accounting(trans, root);
1268 ret = make_convert_data_block_groups(trans, fs_info, cfg, cctx);
1271 ret = btrfs_make_root_dir(trans, fs_info->tree_root,
1272 BTRFS_ROOT_TREE_DIR_OBJECTID);
1275 memcpy(&location, &root->root_key, sizeof(location));
1276 location.offset = (u64)-1;
1277 ret = btrfs_insert_dir_item(trans, fs_info->tree_root, "default", 7,
1278 btrfs_super_root_dir(fs_info->super_copy),
1279 &location, BTRFS_FT_DIR, 0);
1282 ret = btrfs_insert_inode_ref(trans, fs_info->tree_root, "default", 7,
1284 btrfs_super_root_dir(fs_info->super_copy), 0);
1287 btrfs_set_root_dirid(&fs_info->fs_root->root_item,
1288 BTRFS_FIRST_FREE_OBJECTID);
1290 /* subvol for fs image file */
1291 ret = create_subvol(trans, root, CONV_IMAGE_SUBVOL_OBJECTID);
1293 error("failed to create subvolume image root: %d", ret);
1296 /* subvol for data relocation tree */
1297 ret = create_subvol(trans, root, BTRFS_DATA_RELOC_TREE_OBJECTID);
1299 error("failed to create DATA_RELOC root: %d", ret);
1303 ret = btrfs_commit_transaction(trans, root);
1304 fs_info->avoid_sys_chunk_alloc = 0;
1305 fs_info->avoid_meta_chunk_alloc = 0;
1311 * Migrate super block to its default position and zero 0 ~ 16k
1313 static int migrate_super_block(int fd, u64 old_bytenr)
1316 struct extent_buffer *buf;
1317 struct btrfs_super_block *super;
1321 buf = malloc(sizeof(*buf) + BTRFS_SUPER_INFO_SIZE);
1325 buf->len = BTRFS_SUPER_INFO_SIZE;
1326 ret = pread(fd, buf->data, BTRFS_SUPER_INFO_SIZE, old_bytenr);
1327 if (ret != BTRFS_SUPER_INFO_SIZE)
1330 super = (struct btrfs_super_block *)buf->data;
1331 BUG_ON(btrfs_super_bytenr(super) != old_bytenr);
1332 btrfs_set_super_bytenr(super, BTRFS_SUPER_INFO_OFFSET);
1334 csum_tree_block_size(buf, BTRFS_CRC32_SIZE, 0);
1335 ret = pwrite(fd, buf->data, BTRFS_SUPER_INFO_SIZE,
1336 BTRFS_SUPER_INFO_OFFSET);
1337 if (ret != BTRFS_SUPER_INFO_SIZE)
1344 memset(buf->data, 0, BTRFS_SUPER_INFO_SIZE);
1345 for (bytenr = 0; bytenr < BTRFS_SUPER_INFO_OFFSET; ) {
1346 len = BTRFS_SUPER_INFO_OFFSET - bytenr;
1347 if (len > BTRFS_SUPER_INFO_SIZE)
1348 len = BTRFS_SUPER_INFO_SIZE;
1349 ret = pwrite(fd, buf->data, len, bytenr);
1351 fprintf(stderr, "unable to zero fill device\n");
1365 static int prepare_system_chunk_sb(struct btrfs_super_block *super)
1367 struct btrfs_chunk *chunk;
1368 struct btrfs_disk_key *key;
1369 u32 sectorsize = btrfs_super_sectorsize(super);
1371 key = (struct btrfs_disk_key *)(super->sys_chunk_array);
1372 chunk = (struct btrfs_chunk *)(super->sys_chunk_array +
1373 sizeof(struct btrfs_disk_key));
1375 btrfs_set_disk_key_objectid(key, BTRFS_FIRST_CHUNK_TREE_OBJECTID);
1376 btrfs_set_disk_key_type(key, BTRFS_CHUNK_ITEM_KEY);
1377 btrfs_set_disk_key_offset(key, 0);
1379 btrfs_set_stack_chunk_length(chunk, btrfs_super_total_bytes(super));
1380 btrfs_set_stack_chunk_owner(chunk, BTRFS_EXTENT_TREE_OBJECTID);
1381 btrfs_set_stack_chunk_stripe_len(chunk, BTRFS_STRIPE_LEN);
1382 btrfs_set_stack_chunk_type(chunk, BTRFS_BLOCK_GROUP_SYSTEM);
1383 btrfs_set_stack_chunk_io_align(chunk, sectorsize);
1384 btrfs_set_stack_chunk_io_width(chunk, sectorsize);
1385 btrfs_set_stack_chunk_sector_size(chunk, sectorsize);
1386 btrfs_set_stack_chunk_num_stripes(chunk, 1);
1387 btrfs_set_stack_chunk_sub_stripes(chunk, 0);
1388 chunk->stripe.devid = super->dev_item.devid;
1389 btrfs_set_stack_stripe_offset(&chunk->stripe, 0);
1390 memcpy(chunk->stripe.dev_uuid, super->dev_item.uuid, BTRFS_UUID_SIZE);
1391 btrfs_set_super_sys_array_size(super, sizeof(*key) + sizeof(*chunk));
1395 #if BTRFSCONVERT_EXT2
1398 * Open Ext2fs in readonly mode, read block allocation bitmap and
1399 * inode bitmap into memory.
1401 static int ext2_open_fs(struct btrfs_convert_context *cctx, const char *name)
1404 ext2_filsys ext2_fs;
1408 ret = ext2fs_open(name, 0, 0, 0, unix_io_manager, &ext2_fs);
1410 fprintf(stderr, "ext2fs_open: %s\n", error_message(ret));
1414 * We need to know exactly the used space, some RO compat flags like
1415 * BIGALLOC will affect how used space is present.
1416 * So we need manuall check any unsupported RO compat flags
1418 ro_feature = ext2_fs->super->s_feature_ro_compat;
1419 if (ro_feature & ~EXT2_LIB_FEATURE_RO_COMPAT_SUPP) {
1421 "unsupported RO features detected: %x, abort convert to avoid possible corruption",
1422 ro_feature & ~EXT2_LIB_FEATURE_COMPAT_SUPP);
1425 ret = ext2fs_read_inode_bitmap(ext2_fs);
1427 fprintf(stderr, "ext2fs_read_inode_bitmap: %s\n",
1428 error_message(ret));
1431 ret = ext2fs_read_block_bitmap(ext2_fs);
1433 fprintf(stderr, "ext2fs_read_block_bitmap: %s\n",
1434 error_message(ret));
1438 * search each block group for a free inode. this set up
1439 * uninit block/inode bitmaps appropriately.
1442 while (ino <= ext2_fs->super->s_inodes_count) {
1444 ext2fs_new_inode(ext2_fs, ino, 0, NULL, &foo);
1445 ino += EXT2_INODES_PER_GROUP(ext2_fs->super);
1448 if (!(ext2_fs->super->s_feature_incompat &
1449 EXT2_FEATURE_INCOMPAT_FILETYPE)) {
1450 error("filetype feature is missing");
1454 cctx->fs_data = ext2_fs;
1455 cctx->blocksize = ext2_fs->blocksize;
1456 cctx->block_count = ext2_fs->super->s_blocks_count;
1457 cctx->total_bytes = ext2_fs->blocksize * ext2_fs->super->s_blocks_count;
1458 cctx->volume_name = strndup(ext2_fs->super->s_volume_name, 16);
1459 cctx->first_data_block = ext2_fs->super->s_first_data_block;
1460 cctx->inodes_count = ext2_fs->super->s_inodes_count;
1461 cctx->free_inodes_count = ext2_fs->super->s_free_inodes_count;
1464 ext2fs_close(ext2_fs);
1468 static int __ext2_add_one_block(ext2_filsys fs, char *bitmap,
1469 unsigned long group_nr, struct cache_tree *used)
1471 unsigned long offset;
1475 offset = fs->super->s_first_data_block;
1476 offset /= EXT2FS_CLUSTER_RATIO(fs);
1477 offset += group_nr * EXT2_CLUSTERS_PER_GROUP(fs->super);
1478 for (i = 0; i < EXT2_CLUSTERS_PER_GROUP(fs->super); i++) {
1479 if ((i + offset) >= ext2fs_blocks_count(fs->super))
1482 if (ext2fs_test_bit(i, bitmap)) {
1485 start = (i + offset) * EXT2FS_CLUSTER_RATIO(fs);
1486 start *= fs->blocksize;
1487 ret = add_merge_cache_extent(used, start,
1497 * Read all used ext2 space into cctx->used cache tree
1499 static int ext2_read_used_space(struct btrfs_convert_context *cctx)
1501 ext2_filsys fs = (ext2_filsys)cctx->fs_data;
1502 blk64_t blk_itr = EXT2FS_B2C(fs, fs->super->s_first_data_block);
1503 struct cache_tree *used_tree = &cctx->used;
1504 char *block_bitmap = NULL;
1509 block_nbytes = EXT2_CLUSTERS_PER_GROUP(fs->super) / 8;
1510 /* Shouldn't happen */
1511 BUG_ON(!fs->block_map);
1513 block_bitmap = malloc(block_nbytes);
1517 for (i = 0; i < fs->group_desc_count; i++) {
1518 ret = ext2fs_get_block_bitmap_range(fs->block_map, blk_itr,
1519 block_nbytes * 8, block_bitmap);
1521 error("fail to get bitmap from ext2, %s",
1525 ret = __ext2_add_one_block(fs, block_bitmap, i, used_tree);
1527 error("fail to build used space tree, %s",
1531 blk_itr += EXT2_CLUSTERS_PER_GROUP(fs->super);
1538 static void ext2_close_fs(struct btrfs_convert_context *cctx)
1540 if (cctx->volume_name) {
1541 free(cctx->volume_name);
1542 cctx->volume_name = NULL;
1544 ext2fs_close(cctx->fs_data);
1547 static u8 ext2_filetype_conversion_table[EXT2_FT_MAX] = {
1548 [EXT2_FT_UNKNOWN] = BTRFS_FT_UNKNOWN,
1549 [EXT2_FT_REG_FILE] = BTRFS_FT_REG_FILE,
1550 [EXT2_FT_DIR] = BTRFS_FT_DIR,
1551 [EXT2_FT_CHRDEV] = BTRFS_FT_CHRDEV,
1552 [EXT2_FT_BLKDEV] = BTRFS_FT_BLKDEV,
1553 [EXT2_FT_FIFO] = BTRFS_FT_FIFO,
1554 [EXT2_FT_SOCK] = BTRFS_FT_SOCK,
1555 [EXT2_FT_SYMLINK] = BTRFS_FT_SYMLINK,
1558 static int ext2_dir_iterate_proc(ext2_ino_t dir, int entry,
1559 struct ext2_dir_entry *dirent,
1560 int offset, int blocksize,
1561 char *buf,void *priv_data)
1566 char dotdot[] = "..";
1567 struct dir_iterate_data *idata = (struct dir_iterate_data *)priv_data;
1570 name_len = dirent->name_len & 0xFF;
1572 objectid = dirent->inode + INO_OFFSET;
1573 if (!strncmp(dirent->name, dotdot, name_len)) {
1574 if (name_len == 2) {
1575 BUG_ON(idata->parent != 0);
1576 idata->parent = objectid;
1580 if (dirent->inode < EXT2_GOOD_OLD_FIRST_INO)
1583 file_type = dirent->name_len >> 8;
1584 BUG_ON(file_type > EXT2_FT_SYMLINK);
1586 ret = convert_insert_dirent(idata->trans, idata->root, dirent->name,
1587 name_len, idata->objectid, objectid,
1588 ext2_filetype_conversion_table[file_type],
1589 idata->index_cnt, idata->inode);
1591 idata->errcode = ret;
1599 static int ext2_create_dir_entries(struct btrfs_trans_handle *trans,
1600 struct btrfs_root *root, u64 objectid,
1601 struct btrfs_inode_item *btrfs_inode,
1602 ext2_filsys ext2_fs, ext2_ino_t ext2_ino)
1606 struct dir_iterate_data data = {
1609 .inode = btrfs_inode,
1610 .objectid = objectid,
1616 err = ext2fs_dir_iterate2(ext2_fs, ext2_ino, 0, NULL,
1617 ext2_dir_iterate_proc, &data);
1621 if (ret == 0 && data.parent == objectid) {
1622 ret = btrfs_insert_inode_ref(trans, root, "..", 2,
1623 objectid, objectid, 0);
1627 fprintf(stderr, "ext2fs_dir_iterate2: %s\n", error_message(err));
1631 static int ext2_block_iterate_proc(ext2_filsys fs, blk_t *blocknr,
1632 e2_blkcnt_t blockcnt, blk_t ref_block,
1633 int ref_offset, void *priv_data)
1636 struct blk_iterate_data *idata;
1637 idata = (struct blk_iterate_data *)priv_data;
1638 ret = block_iterate_proc(*blocknr, blockcnt, idata);
1640 idata->errcode = ret;
1647 * traverse file's data blocks, record these data blocks as file extents.
1649 static int ext2_create_file_extents(struct btrfs_trans_handle *trans,
1650 struct btrfs_root *root, u64 objectid,
1651 struct btrfs_inode_item *btrfs_inode,
1652 ext2_filsys ext2_fs, ext2_ino_t ext2_ino,
1653 int datacsum, int packing)
1656 char *buffer = NULL;
1659 u32 sectorsize = root->sectorsize;
1660 u64 inode_size = btrfs_stack_inode_size(btrfs_inode);
1661 struct blk_iterate_data data;
1663 init_blk_iterate_data(&data, trans, root, btrfs_inode, objectid,
1666 err = ext2fs_block_iterate2(ext2_fs, ext2_ino, BLOCK_FLAG_DATA_ONLY,
1667 NULL, ext2_block_iterate_proc, &data);
1673 if (packing && data.first_block == 0 && data.num_blocks > 0 &&
1674 inode_size <= BTRFS_MAX_INLINE_DATA_SIZE(root)) {
1675 u64 num_bytes = data.num_blocks * sectorsize;
1676 u64 disk_bytenr = data.disk_block * sectorsize;
1679 buffer = malloc(num_bytes);
1682 ret = read_disk_extent(root, disk_bytenr, num_bytes, buffer);
1685 if (num_bytes > inode_size)
1686 num_bytes = inode_size;
1687 ret = btrfs_insert_inline_extent(trans, root, objectid,
1688 0, buffer, num_bytes);
1691 nbytes = btrfs_stack_inode_nbytes(btrfs_inode) + num_bytes;
1692 btrfs_set_stack_inode_nbytes(btrfs_inode, nbytes);
1693 } else if (data.num_blocks > 0) {
1694 ret = record_file_blocks(&data, data.first_block,
1695 data.disk_block, data.num_blocks);
1699 data.first_block += data.num_blocks;
1700 last_block = (inode_size + sectorsize - 1) / sectorsize;
1701 if (last_block > data.first_block) {
1702 ret = record_file_blocks(&data, data.first_block, 0,
1703 last_block - data.first_block);
1709 fprintf(stderr, "ext2fs_block_iterate2: %s\n", error_message(err));
1713 static int ext2_create_symbol_link(struct btrfs_trans_handle *trans,
1714 struct btrfs_root *root, u64 objectid,
1715 struct btrfs_inode_item *btrfs_inode,
1716 ext2_filsys ext2_fs, ext2_ino_t ext2_ino,
1717 struct ext2_inode *ext2_inode)
1721 u64 inode_size = btrfs_stack_inode_size(btrfs_inode);
1722 if (ext2fs_inode_data_blocks(ext2_fs, ext2_inode)) {
1723 btrfs_set_stack_inode_size(btrfs_inode, inode_size + 1);
1724 ret = ext2_create_file_extents(trans, root, objectid,
1725 btrfs_inode, ext2_fs, ext2_ino, 1, 1);
1726 btrfs_set_stack_inode_size(btrfs_inode, inode_size);
1730 pathname = (char *)&(ext2_inode->i_block[0]);
1731 BUG_ON(pathname[inode_size] != 0);
1732 ret = btrfs_insert_inline_extent(trans, root, objectid, 0,
1733 pathname, inode_size + 1);
1734 btrfs_set_stack_inode_nbytes(btrfs_inode, inode_size + 1);
1739 * Following xattr/acl related codes are based on codes in
1740 * fs/ext3/xattr.c and fs/ext3/acl.c
1742 #define EXT2_XATTR_BHDR(ptr) ((struct ext2_ext_attr_header *)(ptr))
1743 #define EXT2_XATTR_BFIRST(ptr) \
1744 ((struct ext2_ext_attr_entry *)(EXT2_XATTR_BHDR(ptr) + 1))
1745 #define EXT2_XATTR_IHDR(inode) \
1746 ((struct ext2_ext_attr_header *) ((void *)(inode) + \
1747 EXT2_GOOD_OLD_INODE_SIZE + (inode)->i_extra_isize))
1748 #define EXT2_XATTR_IFIRST(inode) \
1749 ((struct ext2_ext_attr_entry *) ((void *)EXT2_XATTR_IHDR(inode) + \
1750 sizeof(EXT2_XATTR_IHDR(inode)->h_magic)))
1752 static int ext2_xattr_check_names(struct ext2_ext_attr_entry *entry,
1755 struct ext2_ext_attr_entry *next;
1757 while (!EXT2_EXT_IS_LAST_ENTRY(entry)) {
1758 next = EXT2_EXT_ATTR_NEXT(entry);
1759 if ((void *)next >= end)
1766 static int ext2_xattr_check_block(const char *buf, size_t size)
1769 struct ext2_ext_attr_header *header = EXT2_XATTR_BHDR(buf);
1771 if (header->h_magic != EXT2_EXT_ATTR_MAGIC ||
1772 header->h_blocks != 1)
1774 error = ext2_xattr_check_names(EXT2_XATTR_BFIRST(buf), buf + size);
1778 static int ext2_xattr_check_entry(struct ext2_ext_attr_entry *entry,
1781 size_t value_size = entry->e_value_size;
1783 if (entry->e_value_block != 0 || value_size > size ||
1784 entry->e_value_offs + value_size > size)
1789 static inline int ext2_acl_count(size_t size)
1792 size -= sizeof(ext2_acl_header);
1793 s = size - 4 * sizeof(ext2_acl_entry_short);
1795 if (size % sizeof(ext2_acl_entry_short))
1797 return size / sizeof(ext2_acl_entry_short);
1799 if (s % sizeof(ext2_acl_entry))
1801 return s / sizeof(ext2_acl_entry) + 4;
1805 static inline size_t acl_ea_size(int count)
1807 return sizeof(acl_ea_header) + count * sizeof(acl_ea_entry);
1810 static int ext2_acl_to_xattr(void *dst, const void *src,
1811 size_t dst_size, size_t src_size)
1814 const void *end = src + src_size;
1815 acl_ea_header *ext_acl = (acl_ea_header *)dst;
1816 acl_ea_entry *dst_entry = ext_acl->a_entries;
1817 ext2_acl_entry *src_entry;
1819 if (src_size < sizeof(ext2_acl_header))
1821 if (((ext2_acl_header *)src)->a_version !=
1822 cpu_to_le32(EXT2_ACL_VERSION))
1824 src += sizeof(ext2_acl_header);
1825 count = ext2_acl_count(src_size);
1829 BUG_ON(dst_size < acl_ea_size(count));
1830 ext_acl->a_version = cpu_to_le32(ACL_EA_VERSION);
1831 for (i = 0; i < count; i++, dst_entry++) {
1832 src_entry = (ext2_acl_entry *)src;
1833 if (src + sizeof(ext2_acl_entry_short) > end)
1835 dst_entry->e_tag = src_entry->e_tag;
1836 dst_entry->e_perm = src_entry->e_perm;
1837 switch (le16_to_cpu(src_entry->e_tag)) {
1842 src += sizeof(ext2_acl_entry_short);
1843 dst_entry->e_id = cpu_to_le32(ACL_UNDEFINED_ID);
1847 src += sizeof(ext2_acl_entry);
1850 dst_entry->e_id = src_entry->e_id;
1863 static char *xattr_prefix_table[] = {
1865 [2] = "system.posix_acl_access",
1866 [3] = "system.posix_acl_default",
1871 static int ext2_copy_single_xattr(struct btrfs_trans_handle *trans,
1872 struct btrfs_root *root, u64 objectid,
1873 struct ext2_ext_attr_entry *entry,
1874 const void *data, u32 datalen)
1879 void *databuf = NULL;
1880 char namebuf[XATTR_NAME_MAX + 1];
1882 name_index = entry->e_name_index;
1883 if (name_index >= ARRAY_SIZE(xattr_prefix_table) ||
1884 xattr_prefix_table[name_index] == NULL)
1886 name_len = strlen(xattr_prefix_table[name_index]) +
1888 if (name_len >= sizeof(namebuf))
1891 if (name_index == 2 || name_index == 3) {
1892 size_t bufsize = acl_ea_size(ext2_acl_count(datalen));
1893 databuf = malloc(bufsize);
1896 ret = ext2_acl_to_xattr(databuf, data, bufsize, datalen);
1902 strncpy(namebuf, xattr_prefix_table[name_index], XATTR_NAME_MAX);
1903 strncat(namebuf, EXT2_EXT_ATTR_NAME(entry), entry->e_name_len);
1904 if (name_len + datalen > BTRFS_LEAF_DATA_SIZE(root) -
1905 sizeof(struct btrfs_item) - sizeof(struct btrfs_dir_item)) {
1906 fprintf(stderr, "skip large xattr on inode %Lu name %.*s\n",
1907 objectid - INO_OFFSET, name_len, namebuf);
1910 ret = btrfs_insert_xattr_item(trans, root, namebuf, name_len,
1911 data, datalen, objectid);
1917 static int ext2_copy_extended_attrs(struct btrfs_trans_handle *trans,
1918 struct btrfs_root *root, u64 objectid,
1919 struct btrfs_inode_item *btrfs_inode,
1920 ext2_filsys ext2_fs, ext2_ino_t ext2_ino)
1926 u32 block_size = ext2_fs->blocksize;
1927 u32 inode_size = EXT2_INODE_SIZE(ext2_fs->super);
1928 struct ext2_inode_large *ext2_inode;
1929 struct ext2_ext_attr_entry *entry;
1931 char *buffer = NULL;
1932 char inode_buf[EXT2_GOOD_OLD_INODE_SIZE];
1934 if (inode_size <= EXT2_GOOD_OLD_INODE_SIZE) {
1935 ext2_inode = (struct ext2_inode_large *)inode_buf;
1937 ext2_inode = (struct ext2_inode_large *)malloc(inode_size);
1941 err = ext2fs_read_inode_full(ext2_fs, ext2_ino, (void *)ext2_inode,
1944 fprintf(stderr, "ext2fs_read_inode_full: %s\n",
1945 error_message(err));
1950 if (ext2_ino > ext2_fs->super->s_first_ino &&
1951 inode_size > EXT2_GOOD_OLD_INODE_SIZE) {
1952 if (EXT2_GOOD_OLD_INODE_SIZE +
1953 ext2_inode->i_extra_isize > inode_size) {
1957 if (ext2_inode->i_extra_isize != 0 &&
1958 EXT2_XATTR_IHDR(ext2_inode)->h_magic ==
1959 EXT2_EXT_ATTR_MAGIC) {
1965 void *end = (void *)ext2_inode + inode_size;
1966 entry = EXT2_XATTR_IFIRST(ext2_inode);
1967 total = end - (void *)entry;
1968 ret = ext2_xattr_check_names(entry, end);
1971 while (!EXT2_EXT_IS_LAST_ENTRY(entry)) {
1972 ret = ext2_xattr_check_entry(entry, total);
1975 data = (void *)EXT2_XATTR_IFIRST(ext2_inode) +
1976 entry->e_value_offs;
1977 datalen = entry->e_value_size;
1978 ret = ext2_copy_single_xattr(trans, root, objectid,
1979 entry, data, datalen);
1982 entry = EXT2_EXT_ATTR_NEXT(entry);
1986 if (ext2_inode->i_file_acl == 0)
1989 buffer = malloc(block_size);
1994 err = ext2fs_read_ext_attr(ext2_fs, ext2_inode->i_file_acl, buffer);
1996 fprintf(stderr, "ext2fs_read_ext_attr: %s\n",
1997 error_message(err));
2001 ret = ext2_xattr_check_block(buffer, block_size);
2005 entry = EXT2_XATTR_BFIRST(buffer);
2006 while (!EXT2_EXT_IS_LAST_ENTRY(entry)) {
2007 ret = ext2_xattr_check_entry(entry, block_size);
2010 data = buffer + entry->e_value_offs;
2011 datalen = entry->e_value_size;
2012 ret = ext2_copy_single_xattr(trans, root, objectid,
2013 entry, data, datalen);
2016 entry = EXT2_EXT_ATTR_NEXT(entry);
2020 if ((void *)ext2_inode != inode_buf)
2024 #define MINORBITS 20
2025 #define MKDEV(ma, mi) (((ma) << MINORBITS) | (mi))
2027 static inline dev_t old_decode_dev(u16 val)
2029 return MKDEV((val >> 8) & 255, val & 255);
2032 static inline dev_t new_decode_dev(u32 dev)
2034 unsigned major = (dev & 0xfff00) >> 8;
2035 unsigned minor = (dev & 0xff) | ((dev >> 12) & 0xfff00);
2036 return MKDEV(major, minor);
2039 static void ext2_copy_inode_item(struct btrfs_inode_item *dst,
2040 struct ext2_inode *src, u32 blocksize)
2042 btrfs_set_stack_inode_generation(dst, 1);
2043 btrfs_set_stack_inode_sequence(dst, 0);
2044 btrfs_set_stack_inode_transid(dst, 1);
2045 btrfs_set_stack_inode_size(dst, src->i_size);
2046 btrfs_set_stack_inode_nbytes(dst, 0);
2047 btrfs_set_stack_inode_block_group(dst, 0);
2048 btrfs_set_stack_inode_nlink(dst, src->i_links_count);
2049 btrfs_set_stack_inode_uid(dst, src->i_uid | (src->i_uid_high << 16));
2050 btrfs_set_stack_inode_gid(dst, src->i_gid | (src->i_gid_high << 16));
2051 btrfs_set_stack_inode_mode(dst, src->i_mode);
2052 btrfs_set_stack_inode_rdev(dst, 0);
2053 btrfs_set_stack_inode_flags(dst, 0);
2054 btrfs_set_stack_timespec_sec(&dst->atime, src->i_atime);
2055 btrfs_set_stack_timespec_nsec(&dst->atime, 0);
2056 btrfs_set_stack_timespec_sec(&dst->ctime, src->i_ctime);
2057 btrfs_set_stack_timespec_nsec(&dst->ctime, 0);
2058 btrfs_set_stack_timespec_sec(&dst->mtime, src->i_mtime);
2059 btrfs_set_stack_timespec_nsec(&dst->mtime, 0);
2060 btrfs_set_stack_timespec_sec(&dst->otime, 0);
2061 btrfs_set_stack_timespec_nsec(&dst->otime, 0);
2063 if (S_ISDIR(src->i_mode)) {
2064 btrfs_set_stack_inode_size(dst, 0);
2065 btrfs_set_stack_inode_nlink(dst, 1);
2067 if (S_ISREG(src->i_mode)) {
2068 btrfs_set_stack_inode_size(dst, (u64)src->i_size_high << 32 |
2071 if (!S_ISREG(src->i_mode) && !S_ISDIR(src->i_mode) &&
2072 !S_ISLNK(src->i_mode)) {
2073 if (src->i_block[0]) {
2074 btrfs_set_stack_inode_rdev(dst,
2075 old_decode_dev(src->i_block[0]));
2077 btrfs_set_stack_inode_rdev(dst,
2078 new_decode_dev(src->i_block[1]));
2081 memset(&dst->reserved, 0, sizeof(dst->reserved));
2083 static int ext2_check_state(struct btrfs_convert_context *cctx)
2085 ext2_filsys fs = cctx->fs_data;
2087 if (!(fs->super->s_state & EXT2_VALID_FS))
2089 else if (fs->super->s_state & EXT2_ERROR_FS)
2095 /* EXT2_*_FL to BTRFS_INODE_FLAG_* stringification helper */
2096 #define COPY_ONE_EXT2_FLAG(flags, ext2_inode, name) ({ \
2097 if (ext2_inode->i_flags & EXT2_##name##_FL) \
2098 flags |= BTRFS_INODE_##name; \
2102 * Convert EXT2_*_FL to corresponding BTRFS_INODE_* flags
2104 * Only a subset of EXT_*_FL is supported in btrfs.
2106 static void ext2_convert_inode_flags(struct btrfs_inode_item *dst,
2107 struct ext2_inode *src)
2111 COPY_ONE_EXT2_FLAG(flags, src, APPEND);
2112 COPY_ONE_EXT2_FLAG(flags, src, SYNC);
2113 COPY_ONE_EXT2_FLAG(flags, src, IMMUTABLE);
2114 COPY_ONE_EXT2_FLAG(flags, src, NODUMP);
2115 COPY_ONE_EXT2_FLAG(flags, src, NOATIME);
2116 COPY_ONE_EXT2_FLAG(flags, src, DIRSYNC);
2117 btrfs_set_stack_inode_flags(dst, flags);
2121 * copy a single inode. do all the required works, such as cloning
2122 * inode item, creating file extents and creating directory entries.
2124 static int ext2_copy_single_inode(struct btrfs_trans_handle *trans,
2125 struct btrfs_root *root, u64 objectid,
2126 ext2_filsys ext2_fs, ext2_ino_t ext2_ino,
2127 struct ext2_inode *ext2_inode,
2128 int datacsum, int packing, int noxattr)
2131 struct btrfs_inode_item btrfs_inode;
2133 if (ext2_inode->i_links_count == 0)
2136 ext2_copy_inode_item(&btrfs_inode, ext2_inode, ext2_fs->blocksize);
2137 if (!datacsum && S_ISREG(ext2_inode->i_mode)) {
2138 u32 flags = btrfs_stack_inode_flags(&btrfs_inode) |
2139 BTRFS_INODE_NODATASUM;
2140 btrfs_set_stack_inode_flags(&btrfs_inode, flags);
2142 ext2_convert_inode_flags(&btrfs_inode, ext2_inode);
2144 switch (ext2_inode->i_mode & S_IFMT) {
2146 ret = ext2_create_file_extents(trans, root, objectid,
2147 &btrfs_inode, ext2_fs, ext2_ino, datacsum, packing);
2150 ret = ext2_create_dir_entries(trans, root, objectid,
2151 &btrfs_inode, ext2_fs, ext2_ino);
2154 ret = ext2_create_symbol_link(trans, root, objectid,
2155 &btrfs_inode, ext2_fs, ext2_ino, ext2_inode);
2165 ret = ext2_copy_extended_attrs(trans, root, objectid,
2166 &btrfs_inode, ext2_fs, ext2_ino);
2170 return btrfs_insert_inode(trans, root, objectid, &btrfs_inode);
2174 * scan ext2's inode bitmap and copy all used inodes.
2176 static int ext2_copy_inodes(struct btrfs_convert_context *cctx,
2177 struct btrfs_root *root,
2178 int datacsum, int packing, int noxattr, struct task_ctx *p)
2180 ext2_filsys ext2_fs = cctx->fs_data;
2183 ext2_inode_scan ext2_scan;
2184 struct ext2_inode ext2_inode;
2185 ext2_ino_t ext2_ino;
2187 struct btrfs_trans_handle *trans;
2189 trans = btrfs_start_transaction(root, 1);
2192 err = ext2fs_open_inode_scan(ext2_fs, 0, &ext2_scan);
2194 fprintf(stderr, "ext2fs_open_inode_scan: %s\n", error_message(err));
2197 while (!(err = ext2fs_get_next_inode(ext2_scan, &ext2_ino,
2199 /* no more inodes */
2202 /* skip special inode in ext2fs */
2203 if (ext2_ino < EXT2_GOOD_OLD_FIRST_INO &&
2204 ext2_ino != EXT2_ROOT_INO)
2206 objectid = ext2_ino + INO_OFFSET;
2207 ret = ext2_copy_single_inode(trans, root,
2208 objectid, ext2_fs, ext2_ino,
2209 &ext2_inode, datacsum, packing,
2211 p->cur_copy_inodes++;
2214 if (trans->blocks_used >= 4096) {
2215 ret = btrfs_commit_transaction(trans, root);
2217 trans = btrfs_start_transaction(root, 1);
2222 fprintf(stderr, "ext2fs_get_next_inode: %s\n", error_message(err));
2225 ret = btrfs_commit_transaction(trans, root);
2227 ext2fs_close_inode_scan(ext2_scan);
2232 static const struct btrfs_convert_operations ext2_convert_ops = {
2234 .open_fs = ext2_open_fs,
2235 .read_used_space = ext2_read_used_space,
2236 .copy_inodes = ext2_copy_inodes,
2237 .close_fs = ext2_close_fs,
2238 .check_state = ext2_check_state,
2243 static const struct btrfs_convert_operations *convert_operations[] = {
2244 #if BTRFSCONVERT_EXT2
2249 static int convert_open_fs(const char *devname,
2250 struct btrfs_convert_context *cctx)
2254 memset(cctx, 0, sizeof(*cctx));
2256 for (i = 0; i < ARRAY_SIZE(convert_operations); i++) {
2257 int ret = convert_operations[i]->open_fs(cctx, devname);
2260 cctx->convert_ops = convert_operations[i];
2265 error("no file system found to convert");
2269 static int do_convert(const char *devname, int datacsum, int packing,
2270 int noxattr, u32 nodesize, int copylabel, const char *fslabel,
2271 int progress, u64 features)
2277 struct btrfs_root *root;
2278 struct btrfs_root *image_root;
2279 struct btrfs_convert_context cctx;
2280 struct btrfs_key key;
2281 char *subvol_name = NULL;
2282 struct task_ctx ctx;
2283 char features_buf[64];
2284 struct btrfs_mkfs_config mkfs_cfg;
2286 init_convert_context(&cctx);
2287 ret = convert_open_fs(devname, &cctx);
2290 ret = convert_check_state(&cctx);
2293 "source filesystem is not clean, running filesystem check is recommended");
2294 ret = convert_read_used_space(&cctx);
2298 blocksize = cctx.blocksize;
2299 total_bytes = (u64)blocksize * (u64)cctx.block_count;
2300 if (blocksize < 4096) {
2301 error("block size is too small: %u < 4096", blocksize);
2304 if (btrfs_check_nodesize(nodesize, blocksize, features))
2306 fd = open(devname, O_RDWR);
2308 error("unable to open %s: %s", devname, strerror(errno));
2311 btrfs_parse_features_to_string(features_buf, features);
2312 if (features == BTRFS_MKFS_DEFAULT_FEATURES)
2313 strcat(features_buf, " (default)");
2315 printf("create btrfs filesystem:\n");
2316 printf("\tblocksize: %u\n", blocksize);
2317 printf("\tnodesize: %u\n", nodesize);
2318 printf("\tfeatures: %s\n", features_buf);
2320 mkfs_cfg.label = cctx.volume_name;
2321 mkfs_cfg.num_bytes = total_bytes;
2322 mkfs_cfg.nodesize = nodesize;
2323 mkfs_cfg.sectorsize = blocksize;
2324 mkfs_cfg.stripesize = blocksize;
2325 mkfs_cfg.features = features;
2326 /* New convert need these space */
2327 memset(mkfs_cfg.chunk_uuid, 0, BTRFS_UUID_UNPARSED_SIZE);
2328 memset(mkfs_cfg.fs_uuid, 0, BTRFS_UUID_UNPARSED_SIZE);
2330 ret = make_convert_btrfs(fd, &mkfs_cfg, &cctx);
2332 error("unable to create initial ctree: %s", strerror(-ret));
2336 root = open_ctree_fd(fd, devname, mkfs_cfg.super_bytenr,
2337 OPEN_CTREE_WRITES | OPEN_CTREE_FS_PARTIAL);
2339 error("unable to open ctree");
2342 ret = init_btrfs(&mkfs_cfg, root, &cctx, datacsum, packing, noxattr);
2344 error("unable to setup the root tree: %d", ret);
2348 printf("creating %s image file\n", cctx.convert_ops->name);
2349 ret = asprintf(&subvol_name, "%s_saved", cctx.convert_ops->name);
2351 error("memory allocation failure for subvolume name: %s_saved",
2352 cctx.convert_ops->name);
2355 key.objectid = CONV_IMAGE_SUBVOL_OBJECTID;
2356 key.offset = (u64)-1;
2357 key.type = BTRFS_ROOT_ITEM_KEY;
2358 image_root = btrfs_read_fs_root(root->fs_info, &key);
2360 error("unable to create image subvolume");
2363 ret = create_image(image_root, &mkfs_cfg, &cctx, fd,
2364 mkfs_cfg.num_bytes, "image", datacsum);
2366 error("failed to create %s/image: %d", subvol_name, ret);
2370 printf("creating btrfs metadata");
2371 ctx.max_copy_inodes = (cctx.inodes_count - cctx.free_inodes_count);
2372 ctx.cur_copy_inodes = 0;
2375 ctx.info = task_init(print_copied_inodes, after_copied_inodes,
2377 task_start(ctx.info);
2379 ret = copy_inodes(&cctx, root, datacsum, packing, noxattr, &ctx);
2381 error("error during copy_inodes %d", ret);
2385 task_stop(ctx.info);
2386 task_deinit(ctx.info);
2389 image_root = link_subvol(root, subvol_name, CONV_IMAGE_SUBVOL_OBJECTID);
2391 error("unable to link subvolume %s", subvol_name);
2397 memset(root->fs_info->super_copy->label, 0, BTRFS_LABEL_SIZE);
2398 if (copylabel == 1) {
2399 __strncpy_null(root->fs_info->super_copy->label,
2400 cctx.volume_name, BTRFS_LABEL_SIZE - 1);
2401 printf("copy label '%s'\n", root->fs_info->super_copy->label);
2402 } else if (copylabel == -1) {
2403 strcpy(root->fs_info->super_copy->label, fslabel);
2404 printf("set label to '%s'\n", fslabel);
2407 ret = close_ctree(root);
2409 error("close_ctree failed: %d", ret);
2412 convert_close_fs(&cctx);
2413 clean_convert_context(&cctx);
2416 * If this step succeed, we get a mountable btrfs. Otherwise
2417 * the source fs is left unchanged.
2419 ret = migrate_super_block(fd, mkfs_cfg.super_bytenr);
2421 error("unable to migrate super block: %d", ret);
2425 root = open_ctree_fd(fd, devname, 0,
2426 OPEN_CTREE_WRITES | OPEN_CTREE_FS_PARTIAL);
2428 error("unable to open ctree for finalization");
2431 root->fs_info->finalize_on_close = 1;
2435 printf("conversion complete");
2438 clean_convert_context(&cctx);
2442 "an error occurred during conversion, filesystem is partially created but not finalized and not mountable");
2447 * Check if a non 1:1 mapped chunk can be rolled back.
2448 * For new convert, it's OK while for old convert it's not.
2450 static int may_rollback_chunk(struct btrfs_fs_info *fs_info, u64 bytenr)
2452 struct btrfs_block_group_cache *bg;
2453 struct btrfs_key key;
2454 struct btrfs_path path;
2455 struct btrfs_root *extent_root = fs_info->extent_root;
2460 bg = btrfs_lookup_first_block_group(fs_info, bytenr);
2463 bg_start = bg->key.objectid;
2464 bg_end = bg->key.objectid + bg->key.offset;
2466 key.objectid = bg_end;
2467 key.type = BTRFS_METADATA_ITEM_KEY;
2469 btrfs_init_path(&path);
2471 ret = btrfs_search_slot(NULL, extent_root, &key, &path, 0, 0);
2476 struct btrfs_extent_item *ei;
2478 ret = btrfs_previous_extent_item(extent_root, &path, bg_start);
2486 btrfs_item_key_to_cpu(path.nodes[0], &key, path.slots[0]);
2487 if (key.type == BTRFS_METADATA_ITEM_KEY)
2489 /* Now it's EXTENT_ITEM_KEY only */
2490 ei = btrfs_item_ptr(path.nodes[0], path.slots[0],
2491 struct btrfs_extent_item);
2493 * Found data extent, means this is old convert must follow 1:1
2496 if (btrfs_extent_flags(path.nodes[0], ei)
2497 & BTRFS_EXTENT_FLAG_DATA) {
2502 btrfs_release_path(&path);
2506 static int may_rollback(struct btrfs_root *root)
2508 struct btrfs_fs_info *info = root->fs_info;
2509 struct btrfs_multi_bio *multi = NULL;
2517 if (btrfs_super_num_devices(info->super_copy) != 1)
2520 bytenr = BTRFS_SUPER_INFO_OFFSET;
2521 total_bytes = btrfs_super_total_bytes(root->fs_info->super_copy);
2524 ret = btrfs_map_block(&info->mapping_tree, WRITE, bytenr,
2525 &length, &multi, 0, NULL);
2527 if (ret == -ENOENT) {
2528 /* removed block group at the tail */
2529 if (length == (u64)-1)
2532 /* removed block group in the middle */
2538 num_stripes = multi->num_stripes;
2539 physical = multi->stripes[0].physical;
2542 if (num_stripes != 1) {
2543 error("num stripes for bytenr %llu is not 1", bytenr);
2548 * Extra check for new convert, as metadata chunk from new
2549 * convert is much more free than old convert, it doesn't need
2550 * to do 1:1 mapping.
2552 if (physical != bytenr) {
2554 * Check if it's a metadata chunk and has only metadata
2557 ret = may_rollback_chunk(info, bytenr);
2563 if (bytenr >= total_bytes)
2571 static int do_rollback(const char *devname)
2576 struct btrfs_root *root;
2577 struct btrfs_root *image_root;
2578 struct btrfs_root *chunk_root;
2579 struct btrfs_dir_item *dir;
2580 struct btrfs_inode_item *inode;
2581 struct btrfs_file_extent_item *fi;
2582 struct btrfs_trans_handle *trans;
2583 struct extent_buffer *leaf;
2584 struct btrfs_block_group_cache *cache1;
2585 struct btrfs_block_group_cache *cache2;
2586 struct btrfs_key key;
2587 struct btrfs_path path;
2588 struct extent_io_tree io_tree;
2603 extent_io_tree_init(&io_tree);
2605 fd = open(devname, O_RDWR);
2607 error("unable to open %s: %s", devname, strerror(errno));
2610 root = open_ctree_fd(fd, devname, 0, OPEN_CTREE_WRITES);
2612 error("unable to open ctree");
2615 ret = may_rollback(root);
2617 error("unable to do rollback: %d", ret);
2621 sectorsize = root->sectorsize;
2622 buf = malloc(sectorsize);
2624 error("unable to allocate memory");
2628 btrfs_init_path(&path);
2630 key.objectid = CONV_IMAGE_SUBVOL_OBJECTID;
2631 key.type = BTRFS_ROOT_BACKREF_KEY;
2632 key.offset = BTRFS_FS_TREE_OBJECTID;
2633 ret = btrfs_search_slot(NULL, root->fs_info->tree_root, &key, &path, 0,
2635 btrfs_release_path(&path);
2637 error("unable to convert ext2 image subvolume, is it deleted?");
2639 } else if (ret < 0) {
2640 error("unable to open ext2_saved, id %llu: %s",
2641 (unsigned long long)key.objectid, strerror(-ret));
2645 key.objectid = CONV_IMAGE_SUBVOL_OBJECTID;
2646 key.type = BTRFS_ROOT_ITEM_KEY;
2647 key.offset = (u64)-1;
2648 image_root = btrfs_read_fs_root(root->fs_info, &key);
2649 if (!image_root || IS_ERR(image_root)) {
2650 error("unable to open subvolume %llu: %ld",
2651 (unsigned long long)key.objectid, PTR_ERR(image_root));
2656 root_dir = btrfs_root_dirid(&root->root_item);
2657 dir = btrfs_lookup_dir_item(NULL, image_root, &path,
2658 root_dir, name, strlen(name), 0);
2659 if (!dir || IS_ERR(dir)) {
2660 error("unable to find file %s: %ld", name, PTR_ERR(dir));
2663 leaf = path.nodes[0];
2664 btrfs_dir_item_key_to_cpu(leaf, dir, &key);
2665 btrfs_release_path(&path);
2667 objectid = key.objectid;
2669 ret = btrfs_lookup_inode(NULL, image_root, &path, &key, 0);
2671 error("unable to find inode item: %d", ret);
2674 leaf = path.nodes[0];
2675 inode = btrfs_item_ptr(leaf, path.slots[0], struct btrfs_inode_item);
2676 total_bytes = btrfs_inode_size(leaf, inode);
2677 btrfs_release_path(&path);
2679 key.objectid = objectid;
2681 key.type = BTRFS_EXTENT_DATA_KEY;
2682 ret = btrfs_search_slot(NULL, image_root, &key, &path, 0, 0);
2684 error("unable to find first file extent: %d", ret);
2685 btrfs_release_path(&path);
2689 /* build mapping tree for the relocated blocks */
2690 for (offset = 0; offset < total_bytes; ) {
2691 leaf = path.nodes[0];
2692 if (path.slots[0] >= btrfs_header_nritems(leaf)) {
2693 ret = btrfs_next_leaf(root, &path);
2699 btrfs_item_key_to_cpu(leaf, &key, path.slots[0]);
2700 if (key.objectid != objectid || key.offset != offset ||
2701 key.type != BTRFS_EXTENT_DATA_KEY)
2704 fi = btrfs_item_ptr(leaf, path.slots[0],
2705 struct btrfs_file_extent_item);
2706 if (btrfs_file_extent_type(leaf, fi) != BTRFS_FILE_EXTENT_REG)
2708 if (btrfs_file_extent_compression(leaf, fi) ||
2709 btrfs_file_extent_encryption(leaf, fi) ||
2710 btrfs_file_extent_other_encoding(leaf, fi))
2713 bytenr = btrfs_file_extent_disk_bytenr(leaf, fi);
2714 /* skip holes and direct mapped extents */
2715 if (bytenr == 0 || bytenr == offset)
2718 bytenr += btrfs_file_extent_offset(leaf, fi);
2719 num_bytes = btrfs_file_extent_num_bytes(leaf, fi);
2721 cache1 = btrfs_lookup_block_group(root->fs_info, offset);
2722 cache2 = btrfs_lookup_block_group(root->fs_info,
2723 offset + num_bytes - 1);
2725 * Here we must take consideration of old and new convert
2727 * For old convert case, sign, there is no consist chunk type
2728 * that will cover the extent. META/DATA/SYS are all possible.
2729 * Just ensure relocate one is in SYS chunk.
2730 * For new convert case, they are all covered by DATA chunk.
2732 * So, there is not valid chunk type check for it now.
2734 if (cache1 != cache2)
2737 set_extent_bits(&io_tree, offset, offset + num_bytes - 1,
2738 EXTENT_LOCKED, GFP_NOFS);
2739 set_state_private(&io_tree, offset, bytenr);
2741 offset += btrfs_file_extent_num_bytes(leaf, fi);
2744 btrfs_release_path(&path);
2746 if (offset < total_bytes) {
2747 error("unable to build extent mapping (offset %llu, total_bytes %llu)",
2748 (unsigned long long)offset,
2749 (unsigned long long)total_bytes);
2750 error("converted filesystem after balance is unable to rollback");
2754 first_free = BTRFS_SUPER_INFO_OFFSET + 2 * sectorsize - 1;
2755 first_free &= ~((u64)sectorsize - 1);
2756 /* backup for extent #0 should exist */
2757 if(!test_range_bit(&io_tree, 0, first_free - 1, EXTENT_LOCKED, 1)) {
2758 error("no backup for the first extent");
2761 /* force no allocation from system block group */
2762 root->fs_info->system_allocs = -1;
2763 trans = btrfs_start_transaction(root, 1);
2765 error("unable to start transaction");
2769 * recow the whole chunk tree, this will remove all chunk tree blocks
2770 * from system block group
2772 chunk_root = root->fs_info->chunk_root;
2773 memset(&key, 0, sizeof(key));
2775 ret = btrfs_search_slot(trans, chunk_root, &key, &path, 0, 1);
2779 ret = btrfs_next_leaf(chunk_root, &path);
2783 btrfs_item_key_to_cpu(path.nodes[0], &key, path.slots[0]);
2784 btrfs_release_path(&path);
2786 btrfs_release_path(&path);
2791 cache1 = btrfs_lookup_block_group(root->fs_info, offset);
2795 if (cache1->flags & BTRFS_BLOCK_GROUP_SYSTEM)
2796 num_bytes += btrfs_block_group_used(&cache1->item);
2798 offset = cache1->key.objectid + cache1->key.offset;
2800 /* only extent #0 left in system block group? */
2801 if (num_bytes > first_free) {
2803 "unable to empty system block group (num_bytes %llu, first_free %llu",
2804 (unsigned long long)num_bytes,
2805 (unsigned long long)first_free);
2808 /* create a system chunk that maps the whole device */
2809 ret = prepare_system_chunk_sb(root->fs_info->super_copy);
2811 error("unable to update system chunk: %d", ret);
2815 ret = btrfs_commit_transaction(trans, root);
2817 error("transaction commit failed: %d", ret);
2821 ret = close_ctree(root);
2823 error("close_ctree failed: %d", ret);
2827 /* zero btrfs super block mirrors */
2828 memset(buf, 0, sectorsize);
2829 for (i = 1 ; i < BTRFS_SUPER_MIRROR_MAX; i++) {
2830 bytenr = btrfs_sb_offset(i);
2831 if (bytenr >= total_bytes)
2833 ret = pwrite(fd, buf, sectorsize, bytenr);
2834 if (ret != sectorsize) {
2835 error("zeroing superblock mirror %d failed: %d",
2841 sb_bytenr = (u64)-1;
2842 /* copy all relocated blocks back */
2844 ret = find_first_extent_bit(&io_tree, 0, &start, &end,
2849 ret = get_state_private(&io_tree, start, &bytenr);
2852 clear_extent_bits(&io_tree, start, end, EXTENT_LOCKED,
2855 while (start <= end) {
2856 if (start == BTRFS_SUPER_INFO_OFFSET) {
2860 ret = pread(fd, buf, sectorsize, bytenr);
2862 error("reading superblock at %llu failed: %d",
2863 (unsigned long long)bytenr, ret);
2866 BUG_ON(ret != sectorsize);
2867 ret = pwrite(fd, buf, sectorsize, start);
2869 error("writing superblock at %llu failed: %d",
2870 (unsigned long long)start, ret);
2873 BUG_ON(ret != sectorsize);
2875 start += sectorsize;
2876 bytenr += sectorsize;
2882 error("fsync failed: %s", strerror(errno));
2886 * finally, overwrite btrfs super block.
2888 ret = pread(fd, buf, sectorsize, sb_bytenr);
2890 error("reading primary superblock failed: %s",
2894 BUG_ON(ret != sectorsize);
2895 ret = pwrite(fd, buf, sectorsize, BTRFS_SUPER_INFO_OFFSET);
2897 error("writing primary superblock failed: %s",
2901 BUG_ON(ret != sectorsize);
2904 error("fsync failed: %s", strerror(errno));
2910 extent_io_tree_cleanup(&io_tree);
2911 printf("rollback complete\n");
2918 error("rollback aborted");
2922 static void print_usage(void)
2924 printf("usage: btrfs-convert [options] device\n");
2925 printf("options:\n");
2926 printf("\t-d|--no-datasum disable data checksum, sets NODATASUM\n");
2927 printf("\t-i|--no-xattr ignore xattrs and ACLs\n");
2928 printf("\t-n|--no-inline disable inlining of small files to metadata\n");
2929 printf("\t-N|--nodesize SIZE set filesystem metadata nodesize\n");
2930 printf("\t-r|--rollback roll back to the original filesystem\n");
2931 printf("\t-l|--label LABEL set filesystem label\n");
2932 printf("\t-L|--copy-label use label from converted filesystem\n");
2933 printf("\t-p|--progress show converting progress (default)\n");
2934 printf("\t-O|--features LIST comma separated list of filesystem features\n");
2935 printf("\t--no-progress show only overview, not the detailed progress\n");
2937 printf("Supported filesystems:\n");
2938 printf("\text2/3/4: %s\n", BTRFSCONVERT_EXT2 ? "yes" : "no");
2941 int main(int argc, char *argv[])
2947 u32 nodesize = max_t(u32, sysconf(_SC_PAGESIZE),
2948 BTRFS_MKFS_DEFAULT_NODE_SIZE);
2951 int usage_error = 0;
2954 char fslabel[BTRFS_LABEL_SIZE];
2955 u64 features = BTRFS_MKFS_DEFAULT_FEATURES;
2958 enum { GETOPT_VAL_NO_PROGRESS = 256 };
2959 static const struct option long_options[] = {
2960 { "no-progress", no_argument, NULL,
2961 GETOPT_VAL_NO_PROGRESS },
2962 { "no-datasum", no_argument, NULL, 'd' },
2963 { "no-inline", no_argument, NULL, 'n' },
2964 { "no-xattr", no_argument, NULL, 'i' },
2965 { "rollback", no_argument, NULL, 'r' },
2966 { "features", required_argument, NULL, 'O' },
2967 { "progress", no_argument, NULL, 'p' },
2968 { "label", required_argument, NULL, 'l' },
2969 { "copy-label", no_argument, NULL, 'L' },
2970 { "nodesize", required_argument, NULL, 'N' },
2971 { "help", no_argument, NULL, GETOPT_VAL_HELP},
2972 { NULL, 0, NULL, 0 }
2974 int c = getopt_long(argc, argv, "dinN:rl:LpO:", long_options, NULL);
2989 nodesize = parse_size(optarg);
2996 if (strlen(optarg) >= BTRFS_LABEL_SIZE) {
2998 "label too long, trimmed to %d bytes",
2999 BTRFS_LABEL_SIZE - 1);
3001 __strncpy_null(fslabel, optarg, BTRFS_LABEL_SIZE - 1);
3010 char *orig = strdup(optarg);
3013 tmp = btrfs_parse_fs_features(tmp, &features);
3015 error("unrecognized filesystem feature: %s",
3021 if (features & BTRFS_FEATURE_LIST_ALL) {
3022 btrfs_list_all_fs_features(
3023 ~BTRFS_CONVERT_ALLOWED_FEATURES);
3026 if (features & ~BTRFS_CONVERT_ALLOWED_FEATURES) {
3029 btrfs_parse_features_to_string(buf,
3030 features & ~BTRFS_CONVERT_ALLOWED_FEATURES);
3031 error("features not allowed for convert: %s",
3038 case GETOPT_VAL_NO_PROGRESS:
3041 case GETOPT_VAL_HELP:
3044 return c != GETOPT_VAL_HELP;
3048 if (check_argc_exact(argc - optind, 1)) {
3053 if (rollback && (!datacsum || noxattr || !packing)) {
3055 "Usage error: -d, -i, -n options do not apply to rollback\n");
3064 file = argv[optind];
3065 ret = check_mounted(file);
3067 error("could not check mount status: %s", strerror(-ret));
3070 error("%s is mounted", file);
3075 ret = do_rollback(file);
3077 ret = do_convert(file, datacsum, packing, noxattr, nodesize,
3078 copylabel, fslabel, progress, features);