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 <linux/uuid.h>
21 #include "transaction.h"
23 #include "print-tree.h"
26 * Read a root item from the tree. In case we detect a root item smaller then
27 * sizeof(root_item), we know it's an old version of the root structure and
28 * initialize all new fields to zero. The same happens if we detect mismatching
29 * generation numbers as then we know the root was once mounted with an older
30 * kernel that was not aware of the root item structure change.
32 void btrfs_read_root_item(struct btrfs_root
*root
,
33 struct extent_buffer
*eb
, int slot
,
34 struct btrfs_root_item
*item
)
40 len
= btrfs_item_size_nr(eb
, slot
);
41 read_extent_buffer(eb
, item
, btrfs_item_ptr_offset(eb
, slot
),
42 min_t(int, len
, (int)sizeof(*item
)));
43 if (len
< sizeof(*item
))
45 if (!need_reset
&& btrfs_root_generation(item
)
46 != btrfs_root_generation_v2(item
)) {
47 if (btrfs_root_generation_v2(item
) != 0) {
48 printk(KERN_WARNING
"btrfs: mismatching "
49 "generation and generation_v2 "
50 "found in root item. This root "
51 "was probably mounted with an "
52 "older kernel. Resetting all "
58 memset(&item
->generation_v2
, 0,
59 sizeof(*item
) - offsetof(struct btrfs_root_item
,
63 memcpy(item
->uuid
, uuid
.b
, BTRFS_UUID_SIZE
);
68 * lookup the root with the highest offset for a given objectid. The key we do
69 * find is copied into 'key'. If we find something return 0, otherwise 1, < 0
72 int btrfs_find_last_root(struct btrfs_root
*root
, u64 objectid
,
73 struct btrfs_root_item
*item
, struct btrfs_key
*key
)
75 struct btrfs_path
*path
;
76 struct btrfs_key search_key
;
77 struct btrfs_key found_key
;
78 struct extent_buffer
*l
;
82 search_key
.objectid
= objectid
;
83 search_key
.type
= BTRFS_ROOT_ITEM_KEY
;
84 search_key
.offset
= (u64
)-1;
86 path
= btrfs_alloc_path();
89 ret
= btrfs_search_slot(NULL
, root
, &search_key
, path
, 0, 0);
94 if (path
->slots
[0] == 0) {
99 slot
= path
->slots
[0] - 1;
100 btrfs_item_key_to_cpu(l
, &found_key
, slot
);
101 if (found_key
.objectid
!= objectid
||
102 found_key
.type
!= BTRFS_ROOT_ITEM_KEY
) {
107 btrfs_read_root_item(root
, l
, slot
, item
);
109 memcpy(key
, &found_key
, sizeof(found_key
));
113 btrfs_free_path(path
);
117 void btrfs_set_root_node(struct btrfs_root_item
*item
,
118 struct extent_buffer
*node
)
120 btrfs_set_root_bytenr(item
, node
->start
);
121 btrfs_set_root_level(item
, btrfs_header_level(node
));
122 btrfs_set_root_generation(item
, btrfs_header_generation(node
));
126 * copy the data in 'item' into the btree
128 int btrfs_update_root(struct btrfs_trans_handle
*trans
, struct btrfs_root
129 *root
, struct btrfs_key
*key
, struct btrfs_root_item
132 struct btrfs_path
*path
;
133 struct extent_buffer
*l
;
139 path
= btrfs_alloc_path();
143 ret
= btrfs_search_slot(trans
, root
, key
, path
, 0, 1);
145 btrfs_abort_transaction(trans
, root
, ret
);
150 btrfs_print_leaf(root
, path
->nodes
[0]);
151 printk(KERN_CRIT
"unable to update root key %llu %u %llu\n",
152 (unsigned long long)key
->objectid
, key
->type
,
153 (unsigned long long)key
->offset
);
158 slot
= path
->slots
[0];
159 ptr
= btrfs_item_ptr_offset(l
, slot
);
160 old_len
= btrfs_item_size_nr(l
, slot
);
163 * If this is the first time we update the root item which originated
164 * from an older kernel, we need to enlarge the item size to make room
165 * for the added fields.
167 if (old_len
< sizeof(*item
)) {
168 btrfs_release_path(path
);
169 ret
= btrfs_search_slot(trans
, root
, key
, path
,
172 btrfs_abort_transaction(trans
, root
, ret
);
176 ret
= btrfs_del_item(trans
, root
, path
);
178 btrfs_abort_transaction(trans
, root
, ret
);
181 btrfs_release_path(path
);
182 ret
= btrfs_insert_empty_item(trans
, root
, path
,
185 btrfs_abort_transaction(trans
, root
, ret
);
189 slot
= path
->slots
[0];
190 ptr
= btrfs_item_ptr_offset(l
, slot
);
194 * Update generation_v2 so at the next mount we know the new root
197 btrfs_set_root_generation_v2(item
, btrfs_root_generation(item
));
199 write_extent_buffer(l
, item
, ptr
, sizeof(*item
));
200 btrfs_mark_buffer_dirty(path
->nodes
[0]);
202 btrfs_free_path(path
);
206 int btrfs_insert_root(struct btrfs_trans_handle
*trans
, struct btrfs_root
*root
,
207 struct btrfs_key
*key
, struct btrfs_root_item
*item
)
210 * Make sure generation v1 and v2 match. See update_root for details.
212 btrfs_set_root_generation_v2(item
, btrfs_root_generation(item
));
213 return btrfs_insert_item(trans
, root
, key
, item
, sizeof(*item
));
217 * at mount time we want to find all the old transaction snapshots that were in
218 * the process of being deleted if we crashed. This is any root item with an
219 * offset lower than the latest root. They need to be queued for deletion to
220 * finish what was happening when we crashed.
222 int btrfs_find_dead_roots(struct btrfs_root
*root
, u64 objectid
)
224 struct btrfs_root
*dead_root
;
225 struct btrfs_root_item
*ri
;
226 struct btrfs_key key
;
227 struct btrfs_key found_key
;
228 struct btrfs_path
*path
;
231 struct extent_buffer
*leaf
;
234 key
.objectid
= objectid
;
235 btrfs_set_key_type(&key
, BTRFS_ROOT_ITEM_KEY
);
237 path
= btrfs_alloc_path();
242 ret
= btrfs_search_slot(NULL
, root
, &key
, path
, 0, 0);
246 leaf
= path
->nodes
[0];
247 nritems
= btrfs_header_nritems(leaf
);
248 slot
= path
->slots
[0];
249 if (slot
>= nritems
) {
250 ret
= btrfs_next_leaf(root
, path
);
253 leaf
= path
->nodes
[0];
254 nritems
= btrfs_header_nritems(leaf
);
255 slot
= path
->slots
[0];
257 btrfs_item_key_to_cpu(leaf
, &key
, slot
);
258 if (btrfs_key_type(&key
) != BTRFS_ROOT_ITEM_KEY
)
261 if (key
.objectid
< objectid
)
264 if (key
.objectid
> objectid
)
267 ri
= btrfs_item_ptr(leaf
, slot
, struct btrfs_root_item
);
268 if (btrfs_disk_root_refs(leaf
, ri
) != 0)
271 memcpy(&found_key
, &key
, sizeof(key
));
273 btrfs_release_path(path
);
275 btrfs_read_fs_root_no_radix(root
->fs_info
->tree_root
,
277 if (IS_ERR(dead_root
)) {
278 ret
= PTR_ERR(dead_root
);
282 ret
= btrfs_add_dead_root(dead_root
);
292 btrfs_free_path(path
);
296 int btrfs_find_orphan_roots(struct btrfs_root
*tree_root
)
298 struct extent_buffer
*leaf
;
299 struct btrfs_path
*path
;
300 struct btrfs_key key
;
301 struct btrfs_key root_key
;
302 struct btrfs_root
*root
;
306 path
= btrfs_alloc_path();
310 key
.objectid
= BTRFS_ORPHAN_OBJECTID
;
311 key
.type
= BTRFS_ORPHAN_ITEM_KEY
;
314 root_key
.type
= BTRFS_ROOT_ITEM_KEY
;
315 root_key
.offset
= (u64
)-1;
318 ret
= btrfs_search_slot(NULL
, tree_root
, &key
, path
, 0, 0);
324 leaf
= path
->nodes
[0];
325 if (path
->slots
[0] >= btrfs_header_nritems(leaf
)) {
326 ret
= btrfs_next_leaf(tree_root
, path
);
331 leaf
= path
->nodes
[0];
334 btrfs_item_key_to_cpu(leaf
, &key
, path
->slots
[0]);
335 btrfs_release_path(path
);
337 if (key
.objectid
!= BTRFS_ORPHAN_OBJECTID
||
338 key
.type
!= BTRFS_ORPHAN_ITEM_KEY
)
341 root_key
.objectid
= key
.offset
;
344 root
= btrfs_read_fs_root_no_name(tree_root
->fs_info
,
350 if (ret
!= -ENOENT
) {
355 ret
= btrfs_find_dead_roots(tree_root
, root_key
.objectid
);
362 btrfs_free_path(path
);
366 /* drop the root item for 'key' from 'root' */
367 int btrfs_del_root(struct btrfs_trans_handle
*trans
, struct btrfs_root
*root
,
368 struct btrfs_key
*key
)
370 struct btrfs_path
*path
;
372 struct btrfs_root_item
*ri
;
373 struct extent_buffer
*leaf
;
375 path
= btrfs_alloc_path();
378 ret
= btrfs_search_slot(trans
, root
, key
, path
, -1, 1);
383 leaf
= path
->nodes
[0];
384 ri
= btrfs_item_ptr(leaf
, path
->slots
[0], struct btrfs_root_item
);
386 ret
= btrfs_del_item(trans
, root
, path
);
388 btrfs_free_path(path
);
392 int btrfs_del_root_ref(struct btrfs_trans_handle
*trans
,
393 struct btrfs_root
*tree_root
,
394 u64 root_id
, u64 ref_id
, u64 dirid
, u64
*sequence
,
395 const char *name
, int name_len
)
398 struct btrfs_path
*path
;
399 struct btrfs_root_ref
*ref
;
400 struct extent_buffer
*leaf
;
401 struct btrfs_key key
;
406 path
= btrfs_alloc_path();
410 key
.objectid
= root_id
;
411 key
.type
= BTRFS_ROOT_BACKREF_KEY
;
414 ret
= btrfs_search_slot(trans
, tree_root
, &key
, path
, -1, 1);
417 leaf
= path
->nodes
[0];
418 ref
= btrfs_item_ptr(leaf
, path
->slots
[0],
419 struct btrfs_root_ref
);
421 WARN_ON(btrfs_root_ref_dirid(leaf
, ref
) != dirid
);
422 WARN_ON(btrfs_root_ref_name_len(leaf
, ref
) != name_len
);
423 ptr
= (unsigned long)(ref
+ 1);
424 WARN_ON(memcmp_extent_buffer(leaf
, name
, ptr
, name_len
));
425 *sequence
= btrfs_root_ref_sequence(leaf
, ref
);
427 ret
= btrfs_del_item(trans
, tree_root
, path
);
435 if (key
.type
== BTRFS_ROOT_BACKREF_KEY
) {
436 btrfs_release_path(path
);
437 key
.objectid
= ref_id
;
438 key
.type
= BTRFS_ROOT_REF_KEY
;
439 key
.offset
= root_id
;
444 btrfs_free_path(path
);
448 int btrfs_find_root_ref(struct btrfs_root
*tree_root
,
449 struct btrfs_path
*path
,
450 u64 root_id
, u64 ref_id
)
452 struct btrfs_key key
;
455 key
.objectid
= root_id
;
456 key
.type
= BTRFS_ROOT_REF_KEY
;
459 ret
= btrfs_search_slot(NULL
, tree_root
, &key
, path
, 0, 0);
464 * add a btrfs_root_ref item. type is either BTRFS_ROOT_REF_KEY
465 * or BTRFS_ROOT_BACKREF_KEY.
467 * The dirid, sequence, name and name_len refer to the directory entry
468 * that is referencing the root.
470 * For a forward ref, the root_id is the id of the tree referencing
471 * the root and ref_id is the id of the subvol or snapshot.
473 * For a back ref the root_id is the id of the subvol or snapshot and
474 * ref_id is the id of the tree referencing it.
476 * Will return 0, -ENOMEM, or anything from the CoW path
478 int btrfs_add_root_ref(struct btrfs_trans_handle
*trans
,
479 struct btrfs_root
*tree_root
,
480 u64 root_id
, u64 ref_id
, u64 dirid
, u64 sequence
,
481 const char *name
, int name_len
)
483 struct btrfs_key key
;
485 struct btrfs_path
*path
;
486 struct btrfs_root_ref
*ref
;
487 struct extent_buffer
*leaf
;
490 path
= btrfs_alloc_path();
494 key
.objectid
= root_id
;
495 key
.type
= BTRFS_ROOT_BACKREF_KEY
;
498 ret
= btrfs_insert_empty_item(trans
, tree_root
, path
, &key
,
499 sizeof(*ref
) + name_len
);
501 btrfs_abort_transaction(trans
, tree_root
, ret
);
502 btrfs_free_path(path
);
506 leaf
= path
->nodes
[0];
507 ref
= btrfs_item_ptr(leaf
, path
->slots
[0], struct btrfs_root_ref
);
508 btrfs_set_root_ref_dirid(leaf
, ref
, dirid
);
509 btrfs_set_root_ref_sequence(leaf
, ref
, sequence
);
510 btrfs_set_root_ref_name_len(leaf
, ref
, name_len
);
511 ptr
= (unsigned long)(ref
+ 1);
512 write_extent_buffer(leaf
, name
, ptr
, name_len
);
513 btrfs_mark_buffer_dirty(leaf
);
515 if (key
.type
== BTRFS_ROOT_BACKREF_KEY
) {
516 btrfs_release_path(path
);
517 key
.objectid
= ref_id
;
518 key
.type
= BTRFS_ROOT_REF_KEY
;
519 key
.offset
= root_id
;
523 btrfs_free_path(path
);
528 * Old btrfs forgets to init root_item->flags and root_item->byte_limit
529 * for subvolumes. To work around this problem, we steal a bit from
530 * root_item->inode_item->flags, and use it to indicate if those fields
531 * have been properly initialized.
533 void btrfs_check_and_init_root_item(struct btrfs_root_item
*root_item
)
535 u64 inode_flags
= le64_to_cpu(root_item
->inode
.flags
);
537 if (!(inode_flags
& BTRFS_INODE_ROOT_ITEM_INIT
)) {
538 inode_flags
|= BTRFS_INODE_ROOT_ITEM_INIT
;
539 root_item
->inode
.flags
= cpu_to_le64(inode_flags
);
540 root_item
->flags
= 0;
541 root_item
->byte_limit
= 0;
545 void btrfs_update_root_times(struct btrfs_trans_handle
*trans
,
546 struct btrfs_root
*root
)
548 struct btrfs_root_item
*item
= &root
->root_item
;
549 struct timespec ct
= CURRENT_TIME
;
551 spin_lock(&root
->root_item_lock
);
552 item
->ctransid
= cpu_to_le64(trans
->transid
);
553 item
->ctime
.sec
= cpu_to_le64(ct
.tv_sec
);
554 item
->ctime
.nsec
= cpu_to_le32(ct
.tv_nsec
);
555 spin_unlock(&root
->root_item_lock
);