blob: 6db3bda44aa55f4be73c554d9f4fc961dc290841 [file] [log] [blame]
David Sterbac1d7c512018-04-03 19:23:33 +02001// SPDX-License-Identifier: GPL-2.0
Chris Mason6cbd5572007-06-12 09:07:21 -04002/*
3 * Copyright (C) 2007 Oracle. All rights reserved.
Chris Mason6cbd5572007-06-12 09:07:21 -04004 */
5
Sachin Kamat886322e2014-02-17 09:13:57 +05306#include <linux/err.h>
Alexander Block8ea05e32012-07-25 17:35:53 +02007#include <linux/uuid.h>
Chris Mason3768f362007-03-13 16:47:54 -04008#include "ctree.h"
Chris Mason5eda7b52007-06-22 14:16:25 -04009#include "transaction.h"
Chris Mason3768f362007-03-13 16:47:54 -040010#include "disk-io.h"
11#include "print-tree.h"
12
Chris Masonbf4ef672008-05-08 13:26:18 -040013/*
Alexander Block8ea05e32012-07-25 17:35:53 +020014 * Read a root item from the tree. In case we detect a root item smaller then
15 * sizeof(root_item), we know it's an old version of the root structure and
16 * initialize all new fields to zero. The same happens if we detect mismatching
17 * generation numbers as then we know the root was once mounted with an older
18 * kernel that was not aware of the root item structure change.
19 */
Sergei Trofimovich171170c2013-08-14 23:27:46 +030020static void btrfs_read_root_item(struct extent_buffer *eb, int slot,
21 struct btrfs_root_item *item)
Alexander Block8ea05e32012-07-25 17:35:53 +020022{
23 uuid_le uuid;
24 int len;
25 int need_reset = 0;
26
27 len = btrfs_item_size_nr(eb, slot);
28 read_extent_buffer(eb, item, btrfs_item_ptr_offset(eb, slot),
29 min_t(int, len, (int)sizeof(*item)));
30 if (len < sizeof(*item))
31 need_reset = 1;
32 if (!need_reset && btrfs_root_generation(item)
33 != btrfs_root_generation_v2(item)) {
34 if (btrfs_root_generation_v2(item) != 0) {
David Sterbaf14d1042015-10-08 11:37:06 +020035 btrfs_warn(eb->fs_info,
Jeff Mahoney5d163e02016-09-20 10:05:00 -040036 "mismatching generation and generation_v2 found in root item. This root was probably mounted with an older kernel. Resetting all new fields.");
Alexander Block8ea05e32012-07-25 17:35:53 +020037 }
38 need_reset = 1;
39 }
40 if (need_reset) {
41 memset(&item->generation_v2, 0,
42 sizeof(*item) - offsetof(struct btrfs_root_item,
43 generation_v2));
44
45 uuid_le_gen(&uuid);
46 memcpy(item->uuid, uuid.b, BTRFS_UUID_SIZE);
47 }
48}
49
50/*
Miao Xiecb517ea2013-05-15 07:48:19 +000051 * btrfs_find_root - lookup the root by the key.
52 * root: the root of the root tree
53 * search_key: the key to search
54 * path: the path we search
55 * root_item: the root item of the tree we look for
Nicholas D Steeves01327612016-05-19 21:18:45 -040056 * root_key: the root key of the tree we look for
Miao Xiecb517ea2013-05-15 07:48:19 +000057 *
Nicholas D Steeves01327612016-05-19 21:18:45 -040058 * If ->offset of 'search_key' is -1ULL, it means we are not sure the offset
Miao Xiecb517ea2013-05-15 07:48:19 +000059 * of the search key, just lookup the root with the highest offset for a
60 * given objectid.
61 *
62 * If we find something return 0, otherwise > 0, < 0 on error.
Chris Masond352ac62008-09-29 15:18:18 -040063 */
Omar Sandoval310712b2017-01-17 23:24:37 -080064int btrfs_find_root(struct btrfs_root *root, const struct btrfs_key *search_key,
Miao Xiecb517ea2013-05-15 07:48:19 +000065 struct btrfs_path *path, struct btrfs_root_item *root_item,
66 struct btrfs_key *root_key)
Chris Mason3768f362007-03-13 16:47:54 -040067{
Chris Mason5f39d392007-10-15 16:14:19 -040068 struct btrfs_key found_key;
69 struct extent_buffer *l;
Chris Mason3768f362007-03-13 16:47:54 -040070 int ret;
71 int slot;
72
Miao Xiecb517ea2013-05-15 07:48:19 +000073 ret = btrfs_search_slot(NULL, root, search_key, path, 0, 0);
Chris Mason3768f362007-03-13 16:47:54 -040074 if (ret < 0)
Miao Xiecb517ea2013-05-15 07:48:19 +000075 return ret;
Chris Mason5f39d392007-10-15 16:14:19 -040076
Miao Xiecb517ea2013-05-15 07:48:19 +000077 if (search_key->offset != -1ULL) { /* the search key is exact */
78 if (ret > 0)
79 goto out;
80 } else {
81 BUG_ON(ret == 0); /* Logical error */
82 if (path->slots[0] == 0)
83 goto out;
84 path->slots[0]--;
85 ret = 0;
Chris Mason3768f362007-03-13 16:47:54 -040086 }
Miao Xiecb517ea2013-05-15 07:48:19 +000087
Yan, Zheng76dda932009-09-21 16:00:26 -040088 l = path->nodes[0];
Miao Xiecb517ea2013-05-15 07:48:19 +000089 slot = path->slots[0];
90
Yan, Zheng76dda932009-09-21 16:00:26 -040091 btrfs_item_key_to_cpu(l, &found_key, slot);
Miao Xiecb517ea2013-05-15 07:48:19 +000092 if (found_key.objectid != search_key->objectid ||
Yan, Zheng76dda932009-09-21 16:00:26 -040093 found_key.type != BTRFS_ROOT_ITEM_KEY) {
94 ret = 1;
95 goto out;
96 }
Alexander Block8ea05e32012-07-25 17:35:53 +020097
Miao Xiecb517ea2013-05-15 07:48:19 +000098 if (root_item)
99 btrfs_read_root_item(l, slot, root_item);
100 if (root_key)
101 memcpy(root_key, &found_key, sizeof(found_key));
Chris Mason3768f362007-03-13 16:47:54 -0400102out:
Miao Xiecb517ea2013-05-15 07:48:19 +0000103 btrfs_release_path(path);
Chris Mason3768f362007-03-13 16:47:54 -0400104 return ret;
105}
106
Mark Fashehbf5f32e2011-07-14 21:23:06 +0000107void btrfs_set_root_node(struct btrfs_root_item *item,
108 struct extent_buffer *node)
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400109{
110 btrfs_set_root_bytenr(item, node->start);
111 btrfs_set_root_level(item, btrfs_header_level(node));
112 btrfs_set_root_generation(item, btrfs_header_generation(node));
Yan Zheng5d4f98a2009-06-10 10:45:14 -0400113}
114
Chris Masond352ac62008-09-29 15:18:18 -0400115/*
116 * copy the data in 'item' into the btree
117 */
Chris Masone089f052007-03-16 16:20:31 -0400118int btrfs_update_root(struct btrfs_trans_handle *trans, struct btrfs_root
119 *root, struct btrfs_key *key, struct btrfs_root_item
120 *item)
Chris Mason3768f362007-03-13 16:47:54 -0400121{
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400122 struct btrfs_fs_info *fs_info = root->fs_info;
Chris Mason5caf2a02007-04-02 11:20:42 -0400123 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -0400124 struct extent_buffer *l;
Chris Mason3768f362007-03-13 16:47:54 -0400125 int ret;
126 int slot;
Chris Mason5f39d392007-10-15 16:14:19 -0400127 unsigned long ptr;
Alexandru Moise0412e582015-08-24 21:56:28 +0000128 u32 old_len;
Chris Mason3768f362007-03-13 16:47:54 -0400129
Chris Mason5caf2a02007-04-02 11:20:42 -0400130 path = btrfs_alloc_path();
Jeff Mahoneyb45a9d82011-10-03 23:22:44 -0400131 if (!path)
132 return -ENOMEM;
133
Chris Mason5caf2a02007-04-02 11:20:42 -0400134 ret = btrfs_search_slot(trans, root, key, path, 0, 1);
David Sterba005d6422012-09-18 07:52:32 -0600135 if (ret < 0) {
Jeff Mahoney66642832016-06-10 18:19:25 -0400136 btrfs_abort_transaction(trans, ret);
David Sterba005d6422012-09-18 07:52:32 -0600137 goto out;
138 }
Chris Masond6667462008-01-03 14:51:00 -0500139
140 if (ret != 0) {
David Sterbaa4f78752017-06-29 18:37:49 +0200141 btrfs_print_leaf(path->nodes[0]);
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400142 btrfs_crit(fs_info, "unable to update root key %llu %u %llu",
Jeff Mahoney5d163e02016-09-20 10:05:00 -0400143 key->objectid, key->type, key->offset);
Chris Masond6667462008-01-03 14:51:00 -0500144 BUG_ON(1);
145 }
146
Chris Mason5f39d392007-10-15 16:14:19 -0400147 l = path->nodes[0];
Chris Mason5caf2a02007-04-02 11:20:42 -0400148 slot = path->slots[0];
Chris Mason5f39d392007-10-15 16:14:19 -0400149 ptr = btrfs_item_ptr_offset(l, slot);
Alexander Block8ea05e32012-07-25 17:35:53 +0200150 old_len = btrfs_item_size_nr(l, slot);
151
152 /*
153 * If this is the first time we update the root item which originated
154 * from an older kernel, we need to enlarge the item size to make room
155 * for the added fields.
156 */
157 if (old_len < sizeof(*item)) {
158 btrfs_release_path(path);
159 ret = btrfs_search_slot(trans, root, key, path,
160 -1, 1);
David Sterba005d6422012-09-18 07:52:32 -0600161 if (ret < 0) {
Jeff Mahoney66642832016-06-10 18:19:25 -0400162 btrfs_abort_transaction(trans, ret);
David Sterba005d6422012-09-18 07:52:32 -0600163 goto out;
164 }
165
Alexander Block8ea05e32012-07-25 17:35:53 +0200166 ret = btrfs_del_item(trans, root, path);
David Sterba005d6422012-09-18 07:52:32 -0600167 if (ret < 0) {
Jeff Mahoney66642832016-06-10 18:19:25 -0400168 btrfs_abort_transaction(trans, ret);
David Sterba005d6422012-09-18 07:52:32 -0600169 goto out;
170 }
Alexander Block8ea05e32012-07-25 17:35:53 +0200171 btrfs_release_path(path);
172 ret = btrfs_insert_empty_item(trans, root, path,
173 key, sizeof(*item));
David Sterba005d6422012-09-18 07:52:32 -0600174 if (ret < 0) {
Jeff Mahoney66642832016-06-10 18:19:25 -0400175 btrfs_abort_transaction(trans, ret);
David Sterba005d6422012-09-18 07:52:32 -0600176 goto out;
177 }
Alexander Block8ea05e32012-07-25 17:35:53 +0200178 l = path->nodes[0];
179 slot = path->slots[0];
180 ptr = btrfs_item_ptr_offset(l, slot);
181 }
182
183 /*
184 * Update generation_v2 so at the next mount we know the new root
185 * fields are valid.
186 */
187 btrfs_set_root_generation_v2(item, btrfs_root_generation(item));
188
Chris Mason5f39d392007-10-15 16:14:19 -0400189 write_extent_buffer(l, item, ptr, sizeof(*item));
Chris Mason5caf2a02007-04-02 11:20:42 -0400190 btrfs_mark_buffer_dirty(path->nodes[0]);
Chris Mason3768f362007-03-13 16:47:54 -0400191out:
Chris Mason5caf2a02007-04-02 11:20:42 -0400192 btrfs_free_path(path);
Chris Mason3768f362007-03-13 16:47:54 -0400193 return ret;
194}
195
Jeff Mahoneyd16cb052011-10-03 23:22:34 -0400196int btrfs_insert_root(struct btrfs_trans_handle *trans, struct btrfs_root *root,
Omar Sandoval310712b2017-01-17 23:24:37 -0800197 const struct btrfs_key *key, struct btrfs_root_item *item)
Chris Mason3768f362007-03-13 16:47:54 -0400198{
Alexander Block8ea05e32012-07-25 17:35:53 +0200199 /*
200 * Make sure generation v1 and v2 match. See update_root for details.
201 */
202 btrfs_set_root_generation_v2(item, btrfs_root_generation(item));
Jeff Mahoneyd16cb052011-10-03 23:22:34 -0400203 return btrfs_insert_item(trans, root, key, item, sizeof(*item));
Chris Mason3768f362007-03-13 16:47:54 -0400204}
205
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -0400206int btrfs_find_orphan_roots(struct btrfs_fs_info *fs_info)
Yan, Zheng76dda932009-09-21 16:00:26 -0400207{
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -0400208 struct btrfs_root *tree_root = fs_info->tree_root;
Yan, Zheng76dda932009-09-21 16:00:26 -0400209 struct extent_buffer *leaf;
210 struct btrfs_path *path;
211 struct btrfs_key key;
Yan, Zhengd68fc572010-05-16 10:49:58 -0400212 struct btrfs_key root_key;
213 struct btrfs_root *root;
Yan, Zheng76dda932009-09-21 16:00:26 -0400214 int err = 0;
215 int ret;
216
217 path = btrfs_alloc_path();
218 if (!path)
219 return -ENOMEM;
220
221 key.objectid = BTRFS_ORPHAN_OBJECTID;
222 key.type = BTRFS_ORPHAN_ITEM_KEY;
223 key.offset = 0;
224
Yan, Zhengd68fc572010-05-16 10:49:58 -0400225 root_key.type = BTRFS_ROOT_ITEM_KEY;
226 root_key.offset = (u64)-1;
227
Yan, Zheng76dda932009-09-21 16:00:26 -0400228 while (1) {
229 ret = btrfs_search_slot(NULL, tree_root, &key, path, 0, 0);
230 if (ret < 0) {
231 err = ret;
232 break;
233 }
234
235 leaf = path->nodes[0];
236 if (path->slots[0] >= btrfs_header_nritems(leaf)) {
237 ret = btrfs_next_leaf(tree_root, path);
238 if (ret < 0)
239 err = ret;
240 if (ret != 0)
241 break;
242 leaf = path->nodes[0];
243 }
244
245 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
David Sterbab3b4aa72011-04-21 01:20:15 +0200246 btrfs_release_path(path);
Yan, Zheng76dda932009-09-21 16:00:26 -0400247
248 if (key.objectid != BTRFS_ORPHAN_OBJECTID ||
249 key.type != BTRFS_ORPHAN_ITEM_KEY)
250 break;
251
Yan, Zhengd68fc572010-05-16 10:49:58 -0400252 root_key.objectid = key.offset;
253 key.offset++;
254
Jeff Mahoney35bbb972016-08-17 21:58:33 -0400255 /*
256 * The root might have been inserted already, as before we look
257 * for orphan roots, log replay might have happened, which
258 * triggers a transaction commit and qgroup accounting, which
259 * in turn reads and inserts fs roots while doing backref
260 * walking.
261 */
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400262 root = btrfs_lookup_fs_root(fs_info, root_key.objectid);
Jeff Mahoney35bbb972016-08-17 21:58:33 -0400263 if (root) {
264 WARN_ON(!test_bit(BTRFS_ROOT_ORPHAN_ITEM_INSERTED,
265 &root->state));
266 if (btrfs_root_refs(&root->root_item) == 0)
267 btrfs_add_dead_root(root);
268 continue;
269 }
270
Miao Xiecb517ea2013-05-15 07:48:19 +0000271 root = btrfs_read_fs_root(tree_root, &root_key);
Sachin Kamat886322e2014-02-17 09:13:57 +0530272 err = PTR_ERR_OR_ZERO(root);
Josef Bacik68a73422013-06-27 11:32:16 -0400273 if (err && err != -ENOENT) {
Yan, Zheng76dda932009-09-21 16:00:26 -0400274 break;
Josef Bacik68a73422013-06-27 11:32:16 -0400275 } else if (err == -ENOENT) {
276 struct btrfs_trans_handle *trans;
277
278 btrfs_release_path(path);
279
280 trans = btrfs_join_transaction(tree_root);
281 if (IS_ERR(trans)) {
282 err = PTR_ERR(trans);
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400283 btrfs_handle_fs_error(fs_info, err,
Jeff Mahoney5d163e02016-09-20 10:05:00 -0400284 "Failed to start trans to delete orphan item");
Josef Bacik68a73422013-06-27 11:32:16 -0400285 break;
286 }
287 err = btrfs_del_orphan_item(trans, tree_root,
288 root_key.objectid);
Jeff Mahoney3a45bb22016-09-09 21:39:03 -0400289 btrfs_end_transaction(trans);
Josef Bacik68a73422013-06-27 11:32:16 -0400290 if (err) {
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400291 btrfs_handle_fs_error(fs_info, err,
Jeff Mahoney5d163e02016-09-20 10:05:00 -0400292 "Failed to delete root orphan item");
Josef Bacik68a73422013-06-27 11:32:16 -0400293 break;
294 }
295 continue;
Yan, Zheng76dda932009-09-21 16:00:26 -0400296 }
297
Miao Xiecb517ea2013-05-15 07:48:19 +0000298 err = btrfs_init_fs_root(root);
299 if (err) {
300 btrfs_free_fs_root(root);
301 break;
302 }
303
Miao Xie27cdeb72014-04-02 19:51:05 +0800304 set_bit(BTRFS_ROOT_ORPHAN_ITEM_INSERTED, &root->state);
Miao Xiecb517ea2013-05-15 07:48:19 +0000305
Jeff Mahoney0b246af2016-06-22 18:54:23 -0400306 err = btrfs_insert_fs_root(fs_info, root);
Miao Xiecb517ea2013-05-15 07:48:19 +0000307 if (err) {
Jeff Mahoney35bbb972016-08-17 21:58:33 -0400308 BUG_ON(err == -EEXIST);
Miao Xiecb517ea2013-05-15 07:48:19 +0000309 btrfs_free_fs_root(root);
Yan, Zhengd68fc572010-05-16 10:49:58 -0400310 break;
311 }
Miao Xie14927d92013-09-25 21:47:43 +0800312
313 if (btrfs_root_refs(&root->root_item) == 0)
314 btrfs_add_dead_root(root);
Yan, Zheng76dda932009-09-21 16:00:26 -0400315 }
316
317 btrfs_free_path(path);
318 return err;
319}
320
Jeff Mahoney1cd54472017-08-17 10:25:11 -0400321/* drop the root item for 'key' from the tree root */
322int btrfs_del_root(struct btrfs_trans_handle *trans,
323 struct btrfs_fs_info *fs_info, const struct btrfs_key *key)
Chris Mason3768f362007-03-13 16:47:54 -0400324{
Jeff Mahoney1cd54472017-08-17 10:25:11 -0400325 struct btrfs_root *root = fs_info->tree_root;
Chris Mason5caf2a02007-04-02 11:20:42 -0400326 struct btrfs_path *path;
Chris Mason3768f362007-03-13 16:47:54 -0400327 int ret;
328
Chris Mason5caf2a02007-04-02 11:20:42 -0400329 path = btrfs_alloc_path();
Tsutomu Itohdb5b4932011-03-23 08:14:16 +0000330 if (!path)
331 return -ENOMEM;
Chris Mason5caf2a02007-04-02 11:20:42 -0400332 ret = btrfs_search_slot(trans, root, key, path, -1, 1);
Chris Mason3768f362007-03-13 16:47:54 -0400333 if (ret < 0)
334 goto out;
Chris Masonedbd8d42007-12-21 16:27:24 -0500335
Chris Mason3768f362007-03-13 16:47:54 -0400336 BUG_ON(ret != 0);
Chris Masonc5739bb2007-04-10 09:27:04 -0400337
Chris Mason5eda7b52007-06-22 14:16:25 -0400338 ret = btrfs_del_item(trans, root, path);
Chris Mason3768f362007-03-13 16:47:54 -0400339out:
Chris Mason5caf2a02007-04-02 11:20:42 -0400340 btrfs_free_path(path);
Chris Mason3768f362007-03-13 16:47:54 -0400341 return ret;
342}
Chris Mason0660b5a2008-11-17 20:37:39 -0500343
344int btrfs_del_root_ref(struct btrfs_trans_handle *trans,
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -0400345 struct btrfs_fs_info *fs_info,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -0400346 u64 root_id, u64 ref_id, u64 dirid, u64 *sequence,
347 const char *name, int name_len)
348
Chris Mason0660b5a2008-11-17 20:37:39 -0500349{
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -0400350 struct btrfs_root *tree_root = fs_info->tree_root;
Chris Mason0660b5a2008-11-17 20:37:39 -0500351 struct btrfs_path *path;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -0400352 struct btrfs_root_ref *ref;
353 struct extent_buffer *leaf;
354 struct btrfs_key key;
355 unsigned long ptr;
356 int err = 0;
357 int ret;
Chris Mason0660b5a2008-11-17 20:37:39 -0500358
359 path = btrfs_alloc_path();
Yan, Zheng4df27c4d2009-09-21 15:56:00 -0400360 if (!path)
361 return -ENOMEM;
Chris Mason0660b5a2008-11-17 20:37:39 -0500362
363 key.objectid = root_id;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -0400364 key.type = BTRFS_ROOT_BACKREF_KEY;
Chris Mason0660b5a2008-11-17 20:37:39 -0500365 key.offset = ref_id;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -0400366again:
Chris Mason0660b5a2008-11-17 20:37:39 -0500367 ret = btrfs_search_slot(trans, tree_root, &key, path, -1, 1);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -0400368 BUG_ON(ret < 0);
369 if (ret == 0) {
370 leaf = path->nodes[0];
371 ref = btrfs_item_ptr(leaf, path->slots[0],
372 struct btrfs_root_ref);
Chris Mason0660b5a2008-11-17 20:37:39 -0500373
Yan, Zheng4df27c4d2009-09-21 15:56:00 -0400374 WARN_ON(btrfs_root_ref_dirid(leaf, ref) != dirid);
375 WARN_ON(btrfs_root_ref_name_len(leaf, ref) != name_len);
376 ptr = (unsigned long)(ref + 1);
377 WARN_ON(memcmp_extent_buffer(leaf, name, ptr, name_len));
378 *sequence = btrfs_root_ref_sequence(leaf, ref);
379
380 ret = btrfs_del_item(trans, tree_root, path);
Tsutomu Itoh65a246c2011-05-19 04:37:44 +0000381 if (ret) {
382 err = ret;
383 goto out;
384 }
Yan, Zheng4df27c4d2009-09-21 15:56:00 -0400385 } else
386 err = -ENOENT;
387
388 if (key.type == BTRFS_ROOT_BACKREF_KEY) {
David Sterbab3b4aa72011-04-21 01:20:15 +0200389 btrfs_release_path(path);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -0400390 key.objectid = ref_id;
391 key.type = BTRFS_ROOT_REF_KEY;
392 key.offset = root_id;
393 goto again;
394 }
Chris Mason0660b5a2008-11-17 20:37:39 -0500395
Tsutomu Itoh65a246c2011-05-19 04:37:44 +0000396out:
Chris Mason0660b5a2008-11-17 20:37:39 -0500397 btrfs_free_path(path);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -0400398 return err;
Chris Mason0660b5a2008-11-17 20:37:39 -0500399}
400
401/*
402 * add a btrfs_root_ref item. type is either BTRFS_ROOT_REF_KEY
403 * or BTRFS_ROOT_BACKREF_KEY.
404 *
405 * The dirid, sequence, name and name_len refer to the directory entry
406 * that is referencing the root.
407 *
408 * For a forward ref, the root_id is the id of the tree referencing
409 * the root and ref_id is the id of the subvol or snapshot.
410 *
411 * For a back ref the root_id is the id of the subvol or snapshot and
412 * ref_id is the id of the tree referencing it.
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100413 *
414 * Will return 0, -ENOMEM, or anything from the CoW path
Chris Mason0660b5a2008-11-17 20:37:39 -0500415 */
416int btrfs_add_root_ref(struct btrfs_trans_handle *trans,
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -0400417 struct btrfs_fs_info *fs_info,
Yan, Zheng4df27c4d2009-09-21 15:56:00 -0400418 u64 root_id, u64 ref_id, u64 dirid, u64 sequence,
Chris Mason0660b5a2008-11-17 20:37:39 -0500419 const char *name, int name_len)
420{
Jeff Mahoney6bccf3a2016-06-21 21:16:51 -0400421 struct btrfs_root *tree_root = fs_info->tree_root;
Chris Mason0660b5a2008-11-17 20:37:39 -0500422 struct btrfs_key key;
423 int ret;
424 struct btrfs_path *path;
425 struct btrfs_root_ref *ref;
426 struct extent_buffer *leaf;
427 unsigned long ptr;
428
Chris Mason0660b5a2008-11-17 20:37:39 -0500429 path = btrfs_alloc_path();
Yan, Zheng4df27c4d2009-09-21 15:56:00 -0400430 if (!path)
431 return -ENOMEM;
Chris Mason0660b5a2008-11-17 20:37:39 -0500432
433 key.objectid = root_id;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -0400434 key.type = BTRFS_ROOT_BACKREF_KEY;
Chris Mason0660b5a2008-11-17 20:37:39 -0500435 key.offset = ref_id;
Yan, Zheng4df27c4d2009-09-21 15:56:00 -0400436again:
Chris Mason0660b5a2008-11-17 20:37:39 -0500437 ret = btrfs_insert_empty_item(trans, tree_root, path, &key,
438 sizeof(*ref) + name_len);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100439 if (ret) {
Jeff Mahoney66642832016-06-10 18:19:25 -0400440 btrfs_abort_transaction(trans, ret);
Jeff Mahoney79787ea2012-03-12 16:03:00 +0100441 btrfs_free_path(path);
442 return ret;
443 }
Chris Mason0660b5a2008-11-17 20:37:39 -0500444
445 leaf = path->nodes[0];
446 ref = btrfs_item_ptr(leaf, path->slots[0], struct btrfs_root_ref);
447 btrfs_set_root_ref_dirid(leaf, ref, dirid);
448 btrfs_set_root_ref_sequence(leaf, ref, sequence);
449 btrfs_set_root_ref_name_len(leaf, ref, name_len);
450 ptr = (unsigned long)(ref + 1);
451 write_extent_buffer(leaf, name, ptr, name_len);
452 btrfs_mark_buffer_dirty(leaf);
453
Yan, Zheng4df27c4d2009-09-21 15:56:00 -0400454 if (key.type == BTRFS_ROOT_BACKREF_KEY) {
David Sterbab3b4aa72011-04-21 01:20:15 +0200455 btrfs_release_path(path);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -0400456 key.objectid = ref_id;
457 key.type = BTRFS_ROOT_REF_KEY;
458 key.offset = root_id;
459 goto again;
460 }
461
Chris Mason0660b5a2008-11-17 20:37:39 -0500462 btrfs_free_path(path);
Yan, Zheng4df27c4d2009-09-21 15:56:00 -0400463 return 0;
Chris Mason0660b5a2008-11-17 20:37:39 -0500464}
Li Zefan08fe4db2011-03-28 02:01:25 +0000465
466/*
467 * Old btrfs forgets to init root_item->flags and root_item->byte_limit
468 * for subvolumes. To work around this problem, we steal a bit from
469 * root_item->inode_item->flags, and use it to indicate if those fields
470 * have been properly initialized.
471 */
472void btrfs_check_and_init_root_item(struct btrfs_root_item *root_item)
473{
Qu Wenruo3cae2102013-07-16 11:19:18 +0800474 u64 inode_flags = btrfs_stack_inode_flags(&root_item->inode);
Li Zefan08fe4db2011-03-28 02:01:25 +0000475
476 if (!(inode_flags & BTRFS_INODE_ROOT_ITEM_INIT)) {
477 inode_flags |= BTRFS_INODE_ROOT_ITEM_INIT;
Qu Wenruo3cae2102013-07-16 11:19:18 +0800478 btrfs_set_stack_inode_flags(&root_item->inode, inode_flags);
479 btrfs_set_root_flags(root_item, 0);
480 btrfs_set_root_limit(root_item, 0);
Li Zefan08fe4db2011-03-28 02:01:25 +0000481 }
482}
Alexander Block8ea05e32012-07-25 17:35:53 +0200483
484void btrfs_update_root_times(struct btrfs_trans_handle *trans,
485 struct btrfs_root *root)
486{
487 struct btrfs_root_item *item = &root->root_item;
Deepa Dinamanifa7aede2017-04-07 17:57:05 -0700488 struct timespec ct;
Alexander Block8ea05e32012-07-25 17:35:53 +0200489
Deepa Dinamanifa7aede2017-04-07 17:57:05 -0700490 ktime_get_real_ts(&ct);
Anand Jain5f3ab902012-12-07 09:28:54 +0000491 spin_lock(&root->root_item_lock);
Qu Wenruo3cae2102013-07-16 11:19:18 +0800492 btrfs_set_root_ctransid(item, trans->transid);
493 btrfs_set_stack_timespec_sec(&item->ctime, ct.tv_sec);
494 btrfs_set_stack_timespec_nsec(&item->ctime, ct.tv_nsec);
Anand Jain5f3ab902012-12-07 09:28:54 +0000495 spin_unlock(&root->root_item_lock);
Alexander Block8ea05e32012-07-25 17:35:53 +0200496}