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.
20 #include "transaction.h"
22 #include "print-tree.h"
24 int btrfs_find_last_root(struct btrfs_root
*root
, u64 objectid
,
25 struct btrfs_root_item
*item
, struct btrfs_key
*key
)
27 struct btrfs_path
*path
;
28 struct btrfs_key search_key
;
29 struct btrfs_key found_key
;
30 struct extent_buffer
*l
;
34 path
= btrfs_alloc_path();
38 search_key
.objectid
= objectid
;
39 search_key
.type
= BTRFS_ROOT_ITEM_KEY
;
40 search_key
.offset
= (u64
)-1;
42 ret
= btrfs_search_slot(NULL
, root
, &search_key
, path
, 0, 0);
45 if (path
->slots
[0] == 0) {
52 slot
= path
->slots
[0] - 1;
53 btrfs_item_key_to_cpu(l
, &found_key
, slot
);
54 if (found_key
.type
!= BTRFS_ROOT_ITEM_KEY
||
55 found_key
.objectid
!= objectid
) {
59 read_extent_buffer(l
, item
, btrfs_item_ptr_offset(l
, slot
),
61 memcpy(key
, &found_key
, sizeof(found_key
));
64 btrfs_free_path(path
);
68 int btrfs_update_root(struct btrfs_trans_handle
*trans
, struct btrfs_root
69 *root
, struct btrfs_key
*key
, struct btrfs_root_item
72 struct btrfs_path
*path
;
73 struct extent_buffer
*l
;
79 path
= btrfs_alloc_path();
83 ret
= btrfs_search_slot(trans
, root
, key
, path
, 0, 1);
88 slot
= path
->slots
[0];
89 ptr
= btrfs_item_ptr_offset(l
, slot
);
90 old_len
= btrfs_item_size_nr(l
, slot
);
93 * If this is the first time we update the root item which originated
94 * from an older kernel, we need to enlarge the item size to make room
95 * for the added fields.
97 if (old_len
< sizeof(*item
)) {
98 btrfs_release_path(path
);
99 ret
= btrfs_search_slot(trans
, root
, key
, path
,
105 ret
= btrfs_del_item(trans
, root
, path
);
109 btrfs_release_path(path
);
110 ret
= btrfs_insert_empty_item(trans
, root
, path
,
116 slot
= path
->slots
[0];
117 ptr
= btrfs_item_ptr_offset(l
, slot
);
121 * Update generation_v2 so at the next mount we know the new root
124 btrfs_set_root_generation_v2(item
, btrfs_root_generation(item
));
126 write_extent_buffer(l
, item
, ptr
, sizeof(*item
));
127 btrfs_mark_buffer_dirty(path
->nodes
[0]);
129 btrfs_free_path(path
);
133 int btrfs_insert_root(struct btrfs_trans_handle
*trans
, struct btrfs_root
134 *root
, struct btrfs_key
*key
, struct btrfs_root_item
140 * Make sure generation v1 and v2 match. See update_root for details.
142 btrfs_set_root_generation_v2(item
, btrfs_root_generation(item
));
143 ret
= btrfs_insert_item(trans
, root
, key
, item
, sizeof(*item
));
147 /* drop the root item for 'key' from 'root' */
148 int btrfs_del_root(struct btrfs_trans_handle
*trans
, struct btrfs_root
*root
,
149 struct btrfs_key
*key
)
151 struct btrfs_path
*path
;
154 path
= btrfs_alloc_path();
157 ret
= btrfs_search_slot(trans
, root
, key
, path
, -1, 1);
166 ret
= btrfs_del_item(trans
, root
, path
);
168 btrfs_free_path(path
);
173 * add a btrfs_root_ref item. type is either BTRFS_ROOT_REF_KEY
174 * or BTRFS_ROOT_BACKREF_KEY.
176 * The dirid, sequence, name and name_len refer to the directory entry
177 * that is referencing the root.
179 * For a forward ref, the root_id is the id of the tree referencing
180 * the root and ref_id is the id of the subvol or snapshot.
182 * For a back ref the root_id is the id of the subvol or snapshot and
183 * ref_id is the id of the tree referencing it.
185 int btrfs_add_root_ref(struct btrfs_trans_handle
*trans
,
186 struct btrfs_root
*tree_root
,
187 u64 root_id
, u8 type
, u64 ref_id
,
188 u64 dirid
, u64 sequence
,
189 const char *name
, int name_len
)
191 struct btrfs_key key
;
193 struct btrfs_path
*path
;
194 struct btrfs_root_ref
*ref
;
195 struct extent_buffer
*leaf
;
199 path
= btrfs_alloc_path();
203 key
.objectid
= root_id
;
207 ret
= btrfs_insert_empty_item(trans
, tree_root
, path
, &key
,
208 sizeof(*ref
) + name_len
);
211 leaf
= path
->nodes
[0];
212 ref
= btrfs_item_ptr(leaf
, path
->slots
[0], struct btrfs_root_ref
);
213 btrfs_set_root_ref_dirid(leaf
, ref
, dirid
);
214 btrfs_set_root_ref_sequence(leaf
, ref
, sequence
);
215 btrfs_set_root_ref_name_len(leaf
, ref
, name_len
);
216 ptr
= (unsigned long)(ref
+ 1);
217 write_extent_buffer(leaf
, name
, ptr
, name_len
);
218 btrfs_mark_buffer_dirty(leaf
);
220 btrfs_free_path(path
);