blob: 8f7d1237b7a018db7c170f648df3b4d76c663023 [file] [log] [blame]
Jan Schmidta542ad12011-06-13 19:52:59 +02001/*
2 * Copyright (C) 2011 STRATO. All rights reserved.
3 *
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.
7 *
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.
12 *
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.
17 */
18
19#include "ctree.h"
20#include "disk-io.h"
21#include "backref.h"
Jan Schmidt8da6d582011-11-23 18:55:04 +010022#include "ulist.h"
23#include "transaction.h"
24#include "delayed-ref.h"
Jan Schmidtb916a592012-04-13 12:28:08 +020025#include "locking.h"
Jan Schmidta542ad12011-06-13 19:52:59 +020026
Jan Schmidt976b1902012-05-17 16:43:03 +020027struct extent_inode_elem {
28 u64 inum;
29 u64 offset;
30 struct extent_inode_elem *next;
31};
32
33static int check_extent_in_eb(struct btrfs_key *key, struct extent_buffer *eb,
34 struct btrfs_file_extent_item *fi,
35 u64 extent_item_pos,
36 struct extent_inode_elem **eie)
37{
38 u64 data_offset;
39 u64 data_len;
40 struct extent_inode_elem *e;
41
42 data_offset = btrfs_file_extent_offset(eb, fi);
43 data_len = btrfs_file_extent_num_bytes(eb, fi);
44
45 if (extent_item_pos < data_offset ||
46 extent_item_pos >= data_offset + data_len)
47 return 1;
48
49 e = kmalloc(sizeof(*e), GFP_NOFS);
50 if (!e)
51 return -ENOMEM;
52
53 e->next = *eie;
54 e->inum = key->objectid;
55 e->offset = key->offset + (extent_item_pos - data_offset);
56 *eie = e;
57
58 return 0;
59}
60
61static int find_extent_in_eb(struct extent_buffer *eb, u64 wanted_disk_byte,
62 u64 extent_item_pos,
63 struct extent_inode_elem **eie)
64{
65 u64 disk_byte;
66 struct btrfs_key key;
67 struct btrfs_file_extent_item *fi;
68 int slot;
69 int nritems;
70 int extent_type;
71 int ret;
72
73 /*
74 * from the shared data ref, we only have the leaf but we need
75 * the key. thus, we must look into all items and see that we
76 * find one (some) with a reference to our extent item.
77 */
78 nritems = btrfs_header_nritems(eb);
79 for (slot = 0; slot < nritems; ++slot) {
80 btrfs_item_key_to_cpu(eb, &key, slot);
81 if (key.type != BTRFS_EXTENT_DATA_KEY)
82 continue;
83 fi = btrfs_item_ptr(eb, slot, struct btrfs_file_extent_item);
84 extent_type = btrfs_file_extent_type(eb, fi);
85 if (extent_type == BTRFS_FILE_EXTENT_INLINE)
86 continue;
87 /* don't skip BTRFS_FILE_EXTENT_PREALLOC, we can handle that */
88 disk_byte = btrfs_file_extent_disk_bytenr(eb, fi);
89 if (disk_byte != wanted_disk_byte)
90 continue;
91
92 ret = check_extent_in_eb(&key, eb, fi, extent_item_pos, eie);
93 if (ret < 0)
94 return ret;
95 }
96
97 return 0;
98}
99
Jan Schmidt8da6d582011-11-23 18:55:04 +0100100/*
101 * this structure records all encountered refs on the way up to the root
102 */
103struct __prelim_ref {
104 struct list_head list;
105 u64 root_id;
Jan Schmidtd5c88b72012-05-15 17:55:51 +0200106 struct btrfs_key key_for_search;
Jan Schmidt8da6d582011-11-23 18:55:04 +0100107 int level;
108 int count;
Jan Schmidt33019582012-05-30 18:05:21 +0200109 struct extent_inode_elem *inode_list;
Jan Schmidt8da6d582011-11-23 18:55:04 +0100110 u64 parent;
111 u64 wanted_disk_byte;
112};
113
Jan Schmidtd5c88b72012-05-15 17:55:51 +0200114/*
115 * the rules for all callers of this function are:
116 * - obtaining the parent is the goal
117 * - if you add a key, you must know that it is a correct key
118 * - if you cannot add the parent or a correct key, then we will look into the
119 * block later to set a correct key
120 *
121 * delayed refs
122 * ============
123 * backref type | shared | indirect | shared | indirect
124 * information | tree | tree | data | data
125 * --------------------+--------+----------+--------+----------
126 * parent logical | y | - | - | -
127 * key to resolve | - | y | y | y
128 * tree block logical | - | - | - | -
129 * root for resolving | y | y | y | y
130 *
131 * - column 1: we've the parent -> done
132 * - column 2, 3, 4: we use the key to find the parent
133 *
134 * on disk refs (inline or keyed)
135 * ==============================
136 * backref type | shared | indirect | shared | indirect
137 * information | tree | tree | data | data
138 * --------------------+--------+----------+--------+----------
139 * parent logical | y | - | y | -
140 * key to resolve | - | - | - | y
141 * tree block logical | y | y | y | y
142 * root for resolving | - | y | y | y
143 *
144 * - column 1, 3: we've the parent -> done
145 * - column 2: we take the first key from the block to find the parent
146 * (see __add_missing_keys)
147 * - column 4: we use the key to find the parent
148 *
149 * additional information that's available but not required to find the parent
150 * block might help in merging entries to gain some speed.
151 */
152
Jan Schmidt8da6d582011-11-23 18:55:04 +0100153static int __add_prelim_ref(struct list_head *head, u64 root_id,
Jan Schmidtd5c88b72012-05-15 17:55:51 +0200154 struct btrfs_key *key, int level,
155 u64 parent, u64 wanted_disk_byte, int count)
Jan Schmidt8da6d582011-11-23 18:55:04 +0100156{
157 struct __prelim_ref *ref;
158
159 /* in case we're adding delayed refs, we're holding the refs spinlock */
160 ref = kmalloc(sizeof(*ref), GFP_ATOMIC);
161 if (!ref)
162 return -ENOMEM;
163
164 ref->root_id = root_id;
165 if (key)
Jan Schmidtd5c88b72012-05-15 17:55:51 +0200166 ref->key_for_search = *key;
Jan Schmidt8da6d582011-11-23 18:55:04 +0100167 else
Jan Schmidtd5c88b72012-05-15 17:55:51 +0200168 memset(&ref->key_for_search, 0, sizeof(ref->key_for_search));
Jan Schmidt8da6d582011-11-23 18:55:04 +0100169
Jan Schmidt33019582012-05-30 18:05:21 +0200170 ref->inode_list = NULL;
Jan Schmidt8da6d582011-11-23 18:55:04 +0100171 ref->level = level;
172 ref->count = count;
173 ref->parent = parent;
174 ref->wanted_disk_byte = wanted_disk_byte;
175 list_add_tail(&ref->list, head);
176
177 return 0;
178}
179
180static int add_all_parents(struct btrfs_root *root, struct btrfs_path *path,
Jan Schmidt976b1902012-05-17 16:43:03 +0200181 struct ulist *parents, int level,
Jan Schmidt3d7806e2012-06-11 08:29:29 +0200182 struct btrfs_key *key, u64 time_seq,
183 u64 wanted_disk_byte,
Jan Schmidt976b1902012-05-17 16:43:03 +0200184 const u64 *extent_item_pos)
Jan Schmidt8da6d582011-11-23 18:55:04 +0100185{
186 int ret;
Jan Schmidt33019582012-05-30 18:05:21 +0200187 int slot = path->slots[level];
Jan Schmidt976b1902012-05-17 16:43:03 +0200188 struct extent_buffer *eb = path->nodes[level];
Jan Schmidt8da6d582011-11-23 18:55:04 +0100189 struct btrfs_file_extent_item *fi;
Jan Schmidt33019582012-05-30 18:05:21 +0200190 struct extent_inode_elem *eie = NULL;
Jan Schmidt8da6d582011-11-23 18:55:04 +0100191 u64 disk_byte;
Jan Schmidt976b1902012-05-17 16:43:03 +0200192 u64 wanted_objectid = key->objectid;
Jan Schmidt8da6d582011-11-23 18:55:04 +0100193
194add_parent:
Jan Schmidt33019582012-05-30 18:05:21 +0200195 if (level == 0 && extent_item_pos) {
196 fi = btrfs_item_ptr(eb, slot, struct btrfs_file_extent_item);
197 ret = check_extent_in_eb(key, eb, fi, *extent_item_pos, &eie);
198 if (ret < 0)
199 return ret;
200 }
201 ret = ulist_add(parents, eb->start, (unsigned long)eie, GFP_NOFS);
Jan Schmidt8da6d582011-11-23 18:55:04 +0100202 if (ret < 0)
203 return ret;
204
205 if (level != 0)
206 return 0;
207
208 /*
209 * if the current leaf is full with EXTENT_DATA items, we must
210 * check the next one if that holds a reference as well.
211 * ref->count cannot be used to skip this check.
212 * repeat this until we don't find any additional EXTENT_DATA items.
213 */
214 while (1) {
Jan Schmidt33019582012-05-30 18:05:21 +0200215 eie = NULL;
Jan Schmidt3d7806e2012-06-11 08:29:29 +0200216 ret = btrfs_next_old_leaf(root, path, time_seq);
Jan Schmidt8da6d582011-11-23 18:55:04 +0100217 if (ret < 0)
218 return ret;
219 if (ret)
220 return 0;
221
222 eb = path->nodes[0];
223 for (slot = 0; slot < btrfs_header_nritems(eb); ++slot) {
Jan Schmidt976b1902012-05-17 16:43:03 +0200224 btrfs_item_key_to_cpu(eb, key, slot);
225 if (key->objectid != wanted_objectid ||
226 key->type != BTRFS_EXTENT_DATA_KEY)
Jan Schmidt8da6d582011-11-23 18:55:04 +0100227 return 0;
228 fi = btrfs_item_ptr(eb, slot,
229 struct btrfs_file_extent_item);
230 disk_byte = btrfs_file_extent_disk_bytenr(eb, fi);
231 if (disk_byte == wanted_disk_byte)
232 goto add_parent;
233 }
234 }
235
236 return 0;
237}
238
239/*
240 * resolve an indirect backref in the form (root_id, key, level)
241 * to a logical address
242 */
243static int __resolve_indirect_ref(struct btrfs_fs_info *fs_info,
Jan Schmidt7a3ae2f2012-03-23 17:32:28 +0100244 int search_commit_root,
Jan Schmidt8445f612012-05-16 18:36:03 +0200245 u64 time_seq,
Jan Schmidt8da6d582011-11-23 18:55:04 +0100246 struct __prelim_ref *ref,
Jan Schmidt976b1902012-05-17 16:43:03 +0200247 struct ulist *parents,
248 const u64 *extent_item_pos)
Jan Schmidt8da6d582011-11-23 18:55:04 +0100249{
250 struct btrfs_path *path;
251 struct btrfs_root *root;
252 struct btrfs_key root_key;
253 struct btrfs_key key = {0};
254 struct extent_buffer *eb;
255 int ret = 0;
256 int root_level;
257 int level = ref->level;
258
259 path = btrfs_alloc_path();
260 if (!path)
261 return -ENOMEM;
Jan Schmidt7a3ae2f2012-03-23 17:32:28 +0100262 path->search_commit_root = !!search_commit_root;
Jan Schmidt8da6d582011-11-23 18:55:04 +0100263
264 root_key.objectid = ref->root_id;
265 root_key.type = BTRFS_ROOT_ITEM_KEY;
266 root_key.offset = (u64)-1;
267 root = btrfs_read_fs_root_no_name(fs_info, &root_key);
268 if (IS_ERR(root)) {
269 ret = PTR_ERR(root);
270 goto out;
271 }
272
273 rcu_read_lock();
274 root_level = btrfs_header_level(root->node);
275 rcu_read_unlock();
276
277 if (root_level + 1 == level)
278 goto out;
279
280 path->lowest_level = level;
Jan Schmidt8445f612012-05-16 18:36:03 +0200281 ret = btrfs_search_old_slot(root, &ref->key_for_search, path, time_seq);
Jan Schmidt8da6d582011-11-23 18:55:04 +0100282 pr_debug("search slot in root %llu (level %d, ref count %d) returned "
283 "%d for key (%llu %u %llu)\n",
284 (unsigned long long)ref->root_id, level, ref->count, ret,
Jan Schmidtd5c88b72012-05-15 17:55:51 +0200285 (unsigned long long)ref->key_for_search.objectid,
286 ref->key_for_search.type,
287 (unsigned long long)ref->key_for_search.offset);
Jan Schmidt8da6d582011-11-23 18:55:04 +0100288 if (ret < 0)
289 goto out;
290
291 eb = path->nodes[level];
292 if (!eb) {
293 WARN_ON(1);
294 ret = 1;
295 goto out;
296 }
297
Jan Schmidtf617e2fd2012-06-14 16:10:13 +0200298 if (level == 0)
Jan Schmidt8da6d582011-11-23 18:55:04 +0100299 btrfs_item_key_to_cpu(eb, &key, path->slots[0]);
Jan Schmidt8da6d582011-11-23 18:55:04 +0100300
Jan Schmidt3d7806e2012-06-11 08:29:29 +0200301 ret = add_all_parents(root, path, parents, level, &key, time_seq,
Jan Schmidt976b1902012-05-17 16:43:03 +0200302 ref->wanted_disk_byte, extent_item_pos);
Jan Schmidt8da6d582011-11-23 18:55:04 +0100303out:
304 btrfs_free_path(path);
305 return ret;
306}
307
308/*
309 * resolve all indirect backrefs from the list
310 */
311static int __resolve_indirect_refs(struct btrfs_fs_info *fs_info,
Jan Schmidt8445f612012-05-16 18:36:03 +0200312 int search_commit_root, u64 time_seq,
Jan Schmidt976b1902012-05-17 16:43:03 +0200313 struct list_head *head,
314 const u64 *extent_item_pos)
Jan Schmidt8da6d582011-11-23 18:55:04 +0100315{
316 int err;
317 int ret = 0;
318 struct __prelim_ref *ref;
319 struct __prelim_ref *ref_safe;
320 struct __prelim_ref *new_ref;
321 struct ulist *parents;
322 struct ulist_node *node;
Jan Schmidtcd1b4132012-05-22 14:56:50 +0200323 struct ulist_iterator uiter;
Jan Schmidt8da6d582011-11-23 18:55:04 +0100324
325 parents = ulist_alloc(GFP_NOFS);
326 if (!parents)
327 return -ENOMEM;
328
329 /*
330 * _safe allows us to insert directly after the current item without
331 * iterating over the newly inserted items.
332 * we're also allowed to re-assign ref during iteration.
333 */
334 list_for_each_entry_safe(ref, ref_safe, head, list) {
335 if (ref->parent) /* already direct */
336 continue;
337 if (ref->count == 0)
338 continue;
Jan Schmidt7a3ae2f2012-03-23 17:32:28 +0100339 err = __resolve_indirect_ref(fs_info, search_commit_root,
Jan Schmidt8445f612012-05-16 18:36:03 +0200340 time_seq, ref, parents,
341 extent_item_pos);
Jan Schmidt8da6d582011-11-23 18:55:04 +0100342 if (err) {
343 if (ret == 0)
344 ret = err;
345 continue;
346 }
347
348 /* we put the first parent into the ref at hand */
Jan Schmidtcd1b4132012-05-22 14:56:50 +0200349 ULIST_ITER_INIT(&uiter);
350 node = ulist_next(parents, &uiter);
Jan Schmidt8da6d582011-11-23 18:55:04 +0100351 ref->parent = node ? node->val : 0;
Jan Schmidt33019582012-05-30 18:05:21 +0200352 ref->inode_list =
353 node ? (struct extent_inode_elem *)node->aux : 0;
Jan Schmidt8da6d582011-11-23 18:55:04 +0100354
355 /* additional parents require new refs being added here */
Jan Schmidtcd1b4132012-05-22 14:56:50 +0200356 while ((node = ulist_next(parents, &uiter))) {
Jan Schmidt8da6d582011-11-23 18:55:04 +0100357 new_ref = kmalloc(sizeof(*new_ref), GFP_NOFS);
358 if (!new_ref) {
359 ret = -ENOMEM;
360 break;
361 }
362 memcpy(new_ref, ref, sizeof(*ref));
363 new_ref->parent = node->val;
Jan Schmidt33019582012-05-30 18:05:21 +0200364 new_ref->inode_list =
365 (struct extent_inode_elem *)node->aux;
Jan Schmidt8da6d582011-11-23 18:55:04 +0100366 list_add(&new_ref->list, &ref->list);
367 }
368 ulist_reinit(parents);
369 }
370
371 ulist_free(parents);
372 return ret;
373}
374
Jan Schmidtd5c88b72012-05-15 17:55:51 +0200375static inline int ref_for_same_block(struct __prelim_ref *ref1,
376 struct __prelim_ref *ref2)
377{
378 if (ref1->level != ref2->level)
379 return 0;
380 if (ref1->root_id != ref2->root_id)
381 return 0;
382 if (ref1->key_for_search.type != ref2->key_for_search.type)
383 return 0;
384 if (ref1->key_for_search.objectid != ref2->key_for_search.objectid)
385 return 0;
386 if (ref1->key_for_search.offset != ref2->key_for_search.offset)
387 return 0;
388 if (ref1->parent != ref2->parent)
389 return 0;
390
391 return 1;
392}
393
394/*
395 * read tree blocks and add keys where required.
396 */
397static int __add_missing_keys(struct btrfs_fs_info *fs_info,
398 struct list_head *head)
399{
400 struct list_head *pos;
401 struct extent_buffer *eb;
402
403 list_for_each(pos, head) {
404 struct __prelim_ref *ref;
405 ref = list_entry(pos, struct __prelim_ref, list);
406
407 if (ref->parent)
408 continue;
409 if (ref->key_for_search.type)
410 continue;
411 BUG_ON(!ref->wanted_disk_byte);
412 eb = read_tree_block(fs_info->tree_root, ref->wanted_disk_byte,
413 fs_info->tree_root->leafsize, 0);
414 BUG_ON(!eb);
415 btrfs_tree_read_lock(eb);
416 if (btrfs_header_level(eb) == 0)
417 btrfs_item_key_to_cpu(eb, &ref->key_for_search, 0);
418 else
419 btrfs_node_key_to_cpu(eb, &ref->key_for_search, 0);
420 btrfs_tree_read_unlock(eb);
421 free_extent_buffer(eb);
422 }
423 return 0;
424}
425
Jan Schmidt8da6d582011-11-23 18:55:04 +0100426/*
427 * merge two lists of backrefs and adjust counts accordingly
428 *
429 * mode = 1: merge identical keys, if key is set
Jan Schmidtd5c88b72012-05-15 17:55:51 +0200430 * FIXME: if we add more keys in __add_prelim_ref, we can merge more here.
431 * additionally, we could even add a key range for the blocks we
432 * looked into to merge even more (-> replace unresolved refs by those
433 * having a parent).
Jan Schmidt8da6d582011-11-23 18:55:04 +0100434 * mode = 2: merge identical parents
435 */
436static int __merge_refs(struct list_head *head, int mode)
437{
438 struct list_head *pos1;
439
440 list_for_each(pos1, head) {
441 struct list_head *n2;
442 struct list_head *pos2;
443 struct __prelim_ref *ref1;
444
445 ref1 = list_entry(pos1, struct __prelim_ref, list);
446
Jan Schmidt8da6d582011-11-23 18:55:04 +0100447 for (pos2 = pos1->next, n2 = pos2->next; pos2 != head;
448 pos2 = n2, n2 = pos2->next) {
449 struct __prelim_ref *ref2;
Jan Schmidtd5c88b72012-05-15 17:55:51 +0200450 struct __prelim_ref *xchg;
Jan Schmidt8da6d582011-11-23 18:55:04 +0100451
452 ref2 = list_entry(pos2, struct __prelim_ref, list);
453
454 if (mode == 1) {
Jan Schmidtd5c88b72012-05-15 17:55:51 +0200455 if (!ref_for_same_block(ref1, ref2))
Jan Schmidt8da6d582011-11-23 18:55:04 +0100456 continue;
Jan Schmidtd5c88b72012-05-15 17:55:51 +0200457 if (!ref1->parent && ref2->parent) {
458 xchg = ref1;
459 ref1 = ref2;
460 ref2 = xchg;
461 }
Jan Schmidt8da6d582011-11-23 18:55:04 +0100462 ref1->count += ref2->count;
463 } else {
464 if (ref1->parent != ref2->parent)
465 continue;
466 ref1->count += ref2->count;
467 }
468 list_del(&ref2->list);
469 kfree(ref2);
470 }
471
472 }
473 return 0;
474}
475
476/*
477 * add all currently queued delayed refs from this head whose seq nr is
478 * smaller or equal that seq to the list
479 */
480static int __add_delayed_refs(struct btrfs_delayed_ref_head *head, u64 seq,
Jan Schmidt8da6d582011-11-23 18:55:04 +0100481 struct list_head *prefs)
482{
483 struct btrfs_delayed_extent_op *extent_op = head->extent_op;
484 struct rb_node *n = &head->node.rb_node;
Jan Schmidtd5c88b72012-05-15 17:55:51 +0200485 struct btrfs_key key;
486 struct btrfs_key op_key = {0};
Jan Schmidt8da6d582011-11-23 18:55:04 +0100487 int sgn;
Jan Schmidtb1375d62012-01-26 15:01:11 -0500488 int ret = 0;
Jan Schmidt8da6d582011-11-23 18:55:04 +0100489
490 if (extent_op && extent_op->update_key)
Jan Schmidtd5c88b72012-05-15 17:55:51 +0200491 btrfs_disk_key_to_cpu(&op_key, &extent_op->key);
Jan Schmidt8da6d582011-11-23 18:55:04 +0100492
493 while ((n = rb_prev(n))) {
494 struct btrfs_delayed_ref_node *node;
495 node = rb_entry(n, struct btrfs_delayed_ref_node,
496 rb_node);
497 if (node->bytenr != head->node.bytenr)
498 break;
499 WARN_ON(node->is_head);
500
501 if (node->seq > seq)
502 continue;
503
504 switch (node->action) {
505 case BTRFS_ADD_DELAYED_EXTENT:
506 case BTRFS_UPDATE_DELAYED_HEAD:
507 WARN_ON(1);
508 continue;
509 case BTRFS_ADD_DELAYED_REF:
510 sgn = 1;
511 break;
512 case BTRFS_DROP_DELAYED_REF:
513 sgn = -1;
514 break;
515 default:
516 BUG_ON(1);
517 }
518 switch (node->type) {
519 case BTRFS_TREE_BLOCK_REF_KEY: {
520 struct btrfs_delayed_tree_ref *ref;
521
522 ref = btrfs_delayed_node_to_tree_ref(node);
Jan Schmidtd5c88b72012-05-15 17:55:51 +0200523 ret = __add_prelim_ref(prefs, ref->root, &op_key,
Jan Schmidt8da6d582011-11-23 18:55:04 +0100524 ref->level + 1, 0, node->bytenr,
525 node->ref_mod * sgn);
526 break;
527 }
528 case BTRFS_SHARED_BLOCK_REF_KEY: {
529 struct btrfs_delayed_tree_ref *ref;
530
531 ref = btrfs_delayed_node_to_tree_ref(node);
Jan Schmidtd5c88b72012-05-15 17:55:51 +0200532 ret = __add_prelim_ref(prefs, ref->root, NULL,
Jan Schmidt8da6d582011-11-23 18:55:04 +0100533 ref->level + 1, ref->parent,
534 node->bytenr,
535 node->ref_mod * sgn);
536 break;
537 }
538 case BTRFS_EXTENT_DATA_REF_KEY: {
539 struct btrfs_delayed_data_ref *ref;
Jan Schmidt8da6d582011-11-23 18:55:04 +0100540 ref = btrfs_delayed_node_to_data_ref(node);
541
542 key.objectid = ref->objectid;
543 key.type = BTRFS_EXTENT_DATA_KEY;
544 key.offset = ref->offset;
545 ret = __add_prelim_ref(prefs, ref->root, &key, 0, 0,
546 node->bytenr,
547 node->ref_mod * sgn);
548 break;
549 }
550 case BTRFS_SHARED_DATA_REF_KEY: {
551 struct btrfs_delayed_data_ref *ref;
Jan Schmidt8da6d582011-11-23 18:55:04 +0100552
553 ref = btrfs_delayed_node_to_data_ref(node);
554
555 key.objectid = ref->objectid;
556 key.type = BTRFS_EXTENT_DATA_KEY;
557 key.offset = ref->offset;
558 ret = __add_prelim_ref(prefs, ref->root, &key, 0,
559 ref->parent, node->bytenr,
560 node->ref_mod * sgn);
561 break;
562 }
563 default:
564 WARN_ON(1);
565 }
566 BUG_ON(ret);
567 }
568
569 return 0;
570}
571
572/*
573 * add all inline backrefs for bytenr to the list
574 */
575static int __add_inline_refs(struct btrfs_fs_info *fs_info,
576 struct btrfs_path *path, u64 bytenr,
Jan Schmidtd5c88b72012-05-15 17:55:51 +0200577 int *info_level, struct list_head *prefs)
Jan Schmidt8da6d582011-11-23 18:55:04 +0100578{
Jan Schmidtb1375d62012-01-26 15:01:11 -0500579 int ret = 0;
Jan Schmidt8da6d582011-11-23 18:55:04 +0100580 int slot;
581 struct extent_buffer *leaf;
582 struct btrfs_key key;
583 unsigned long ptr;
584 unsigned long end;
585 struct btrfs_extent_item *ei;
586 u64 flags;
587 u64 item_size;
588
589 /*
590 * enumerate all inline refs
591 */
592 leaf = path->nodes[0];
Jan Schmidtdadcaf72012-05-22 13:43:25 +0200593 slot = path->slots[0];
Jan Schmidt8da6d582011-11-23 18:55:04 +0100594
595 item_size = btrfs_item_size_nr(leaf, slot);
596 BUG_ON(item_size < sizeof(*ei));
597
598 ei = btrfs_item_ptr(leaf, slot, struct btrfs_extent_item);
599 flags = btrfs_extent_flags(leaf, ei);
600
601 ptr = (unsigned long)(ei + 1);
602 end = (unsigned long)ei + item_size;
603
604 if (flags & BTRFS_EXTENT_FLAG_TREE_BLOCK) {
605 struct btrfs_tree_block_info *info;
Jan Schmidt8da6d582011-11-23 18:55:04 +0100606
607 info = (struct btrfs_tree_block_info *)ptr;
608 *info_level = btrfs_tree_block_level(leaf, info);
Jan Schmidt8da6d582011-11-23 18:55:04 +0100609 ptr += sizeof(struct btrfs_tree_block_info);
610 BUG_ON(ptr > end);
611 } else {
612 BUG_ON(!(flags & BTRFS_EXTENT_FLAG_DATA));
613 }
614
615 while (ptr < end) {
616 struct btrfs_extent_inline_ref *iref;
617 u64 offset;
618 int type;
619
620 iref = (struct btrfs_extent_inline_ref *)ptr;
621 type = btrfs_extent_inline_ref_type(leaf, iref);
622 offset = btrfs_extent_inline_ref_offset(leaf, iref);
623
624 switch (type) {
625 case BTRFS_SHARED_BLOCK_REF_KEY:
Jan Schmidtd5c88b72012-05-15 17:55:51 +0200626 ret = __add_prelim_ref(prefs, 0, NULL,
Jan Schmidt8da6d582011-11-23 18:55:04 +0100627 *info_level + 1, offset,
628 bytenr, 1);
629 break;
630 case BTRFS_SHARED_DATA_REF_KEY: {
631 struct btrfs_shared_data_ref *sdref;
632 int count;
633
634 sdref = (struct btrfs_shared_data_ref *)(iref + 1);
635 count = btrfs_shared_data_ref_count(leaf, sdref);
636 ret = __add_prelim_ref(prefs, 0, NULL, 0, offset,
637 bytenr, count);
638 break;
639 }
640 case BTRFS_TREE_BLOCK_REF_KEY:
Jan Schmidtd5c88b72012-05-15 17:55:51 +0200641 ret = __add_prelim_ref(prefs, offset, NULL,
642 *info_level + 1, 0,
643 bytenr, 1);
Jan Schmidt8da6d582011-11-23 18:55:04 +0100644 break;
645 case BTRFS_EXTENT_DATA_REF_KEY: {
646 struct btrfs_extent_data_ref *dref;
647 int count;
648 u64 root;
649
650 dref = (struct btrfs_extent_data_ref *)(&iref->offset);
651 count = btrfs_extent_data_ref_count(leaf, dref);
652 key.objectid = btrfs_extent_data_ref_objectid(leaf,
653 dref);
654 key.type = BTRFS_EXTENT_DATA_KEY;
655 key.offset = btrfs_extent_data_ref_offset(leaf, dref);
656 root = btrfs_extent_data_ref_root(leaf, dref);
Jan Schmidtd5c88b72012-05-15 17:55:51 +0200657 ret = __add_prelim_ref(prefs, root, &key, 0, 0,
658 bytenr, count);
Jan Schmidt8da6d582011-11-23 18:55:04 +0100659 break;
660 }
661 default:
662 WARN_ON(1);
663 }
664 BUG_ON(ret);
665 ptr += btrfs_extent_inline_ref_size(type);
666 }
667
668 return 0;
669}
670
671/*
672 * add all non-inline backrefs for bytenr to the list
673 */
674static int __add_keyed_refs(struct btrfs_fs_info *fs_info,
675 struct btrfs_path *path, u64 bytenr,
Jan Schmidtd5c88b72012-05-15 17:55:51 +0200676 int info_level, struct list_head *prefs)
Jan Schmidt8da6d582011-11-23 18:55:04 +0100677{
678 struct btrfs_root *extent_root = fs_info->extent_root;
679 int ret;
680 int slot;
681 struct extent_buffer *leaf;
682 struct btrfs_key key;
683
684 while (1) {
685 ret = btrfs_next_item(extent_root, path);
686 if (ret < 0)
687 break;
688 if (ret) {
689 ret = 0;
690 break;
691 }
692
693 slot = path->slots[0];
694 leaf = path->nodes[0];
695 btrfs_item_key_to_cpu(leaf, &key, slot);
696
697 if (key.objectid != bytenr)
698 break;
699 if (key.type < BTRFS_TREE_BLOCK_REF_KEY)
700 continue;
701 if (key.type > BTRFS_SHARED_DATA_REF_KEY)
702 break;
703
704 switch (key.type) {
705 case BTRFS_SHARED_BLOCK_REF_KEY:
Jan Schmidtd5c88b72012-05-15 17:55:51 +0200706 ret = __add_prelim_ref(prefs, 0, NULL,
Jan Schmidt8da6d582011-11-23 18:55:04 +0100707 info_level + 1, key.offset,
708 bytenr, 1);
709 break;
710 case BTRFS_SHARED_DATA_REF_KEY: {
711 struct btrfs_shared_data_ref *sdref;
712 int count;
713
714 sdref = btrfs_item_ptr(leaf, slot,
715 struct btrfs_shared_data_ref);
716 count = btrfs_shared_data_ref_count(leaf, sdref);
717 ret = __add_prelim_ref(prefs, 0, NULL, 0, key.offset,
718 bytenr, count);
719 break;
720 }
721 case BTRFS_TREE_BLOCK_REF_KEY:
Jan Schmidtd5c88b72012-05-15 17:55:51 +0200722 ret = __add_prelim_ref(prefs, key.offset, NULL,
723 info_level + 1, 0,
724 bytenr, 1);
Jan Schmidt8da6d582011-11-23 18:55:04 +0100725 break;
726 case BTRFS_EXTENT_DATA_REF_KEY: {
727 struct btrfs_extent_data_ref *dref;
728 int count;
729 u64 root;
730
731 dref = btrfs_item_ptr(leaf, slot,
732 struct btrfs_extent_data_ref);
733 count = btrfs_extent_data_ref_count(leaf, dref);
734 key.objectid = btrfs_extent_data_ref_objectid(leaf,
735 dref);
736 key.type = BTRFS_EXTENT_DATA_KEY;
737 key.offset = btrfs_extent_data_ref_offset(leaf, dref);
738 root = btrfs_extent_data_ref_root(leaf, dref);
739 ret = __add_prelim_ref(prefs, root, &key, 0, 0,
Jan Schmidtd5c88b72012-05-15 17:55:51 +0200740 bytenr, count);
Jan Schmidt8da6d582011-11-23 18:55:04 +0100741 break;
742 }
743 default:
744 WARN_ON(1);
745 }
746 BUG_ON(ret);
747 }
748
749 return ret;
750}
751
752/*
753 * this adds all existing backrefs (inline backrefs, backrefs and delayed
754 * refs) for the given bytenr to the refs list, merges duplicates and resolves
755 * indirect refs to their parent bytenr.
756 * When roots are found, they're added to the roots list
757 *
758 * FIXME some caching might speed things up
759 */
760static int find_parent_nodes(struct btrfs_trans_handle *trans,
761 struct btrfs_fs_info *fs_info, u64 bytenr,
Jan Schmidt8445f612012-05-16 18:36:03 +0200762 u64 delayed_ref_seq, u64 time_seq,
763 struct ulist *refs, struct ulist *roots,
Jan Schmidt976b1902012-05-17 16:43:03 +0200764 const u64 *extent_item_pos)
Jan Schmidt8da6d582011-11-23 18:55:04 +0100765{
766 struct btrfs_key key;
767 struct btrfs_path *path;
Jan Schmidt8da6d582011-11-23 18:55:04 +0100768 struct btrfs_delayed_ref_root *delayed_refs = NULL;
Li Zefand3b01062012-03-03 07:41:15 -0500769 struct btrfs_delayed_ref_head *head;
Jan Schmidt8da6d582011-11-23 18:55:04 +0100770 int info_level = 0;
771 int ret;
Jan Schmidt7a3ae2f2012-03-23 17:32:28 +0100772 int search_commit_root = (trans == BTRFS_BACKREF_SEARCH_COMMIT_ROOT);
Jan Schmidt8da6d582011-11-23 18:55:04 +0100773 struct list_head prefs_delayed;
774 struct list_head prefs;
775 struct __prelim_ref *ref;
776
777 INIT_LIST_HEAD(&prefs);
778 INIT_LIST_HEAD(&prefs_delayed);
779
780 key.objectid = bytenr;
781 key.type = BTRFS_EXTENT_ITEM_KEY;
782 key.offset = (u64)-1;
783
784 path = btrfs_alloc_path();
785 if (!path)
786 return -ENOMEM;
Jan Schmidt7a3ae2f2012-03-23 17:32:28 +0100787 path->search_commit_root = !!search_commit_root;
Jan Schmidt8da6d582011-11-23 18:55:04 +0100788
789 /*
790 * grab both a lock on the path and a lock on the delayed ref head.
791 * We need both to get a consistent picture of how the refs look
792 * at a specified point in time
793 */
794again:
Li Zefand3b01062012-03-03 07:41:15 -0500795 head = NULL;
796
Jan Schmidt8da6d582011-11-23 18:55:04 +0100797 ret = btrfs_search_slot(trans, fs_info->extent_root, &key, path, 0, 0);
798 if (ret < 0)
799 goto out;
800 BUG_ON(ret == 0);
801
Jan Schmidt7a3ae2f2012-03-23 17:32:28 +0100802 if (trans != BTRFS_BACKREF_SEARCH_COMMIT_ROOT) {
803 /*
804 * look if there are updates for this ref queued and lock the
805 * head
806 */
807 delayed_refs = &trans->transaction->delayed_refs;
808 spin_lock(&delayed_refs->lock);
809 head = btrfs_find_delayed_ref_head(trans, bytenr);
810 if (head) {
811 if (!mutex_trylock(&head->mutex)) {
812 atomic_inc(&head->node.refs);
813 spin_unlock(&delayed_refs->lock);
Jan Schmidt8da6d582011-11-23 18:55:04 +0100814
Jan Schmidt7a3ae2f2012-03-23 17:32:28 +0100815 btrfs_release_path(path);
Jan Schmidt8da6d582011-11-23 18:55:04 +0100816
Jan Schmidt7a3ae2f2012-03-23 17:32:28 +0100817 /*
818 * Mutex was contended, block until it's
819 * released and try again
820 */
821 mutex_lock(&head->mutex);
822 mutex_unlock(&head->mutex);
823 btrfs_put_delayed_ref(&head->node);
824 goto again;
825 }
Jan Schmidt8445f612012-05-16 18:36:03 +0200826 ret = __add_delayed_refs(head, delayed_ref_seq,
827 &prefs_delayed);
Jan Schmidt7a3ae2f2012-03-23 17:32:28 +0100828 if (ret) {
829 spin_unlock(&delayed_refs->lock);
830 goto out;
831 }
Jan Schmidt8da6d582011-11-23 18:55:04 +0100832 }
Jan Schmidt7a3ae2f2012-03-23 17:32:28 +0100833 spin_unlock(&delayed_refs->lock);
Jan Schmidt8da6d582011-11-23 18:55:04 +0100834 }
Jan Schmidt8da6d582011-11-23 18:55:04 +0100835
836 if (path->slots[0]) {
837 struct extent_buffer *leaf;
838 int slot;
839
Jan Schmidtdadcaf72012-05-22 13:43:25 +0200840 path->slots[0]--;
Jan Schmidt8da6d582011-11-23 18:55:04 +0100841 leaf = path->nodes[0];
Jan Schmidtdadcaf72012-05-22 13:43:25 +0200842 slot = path->slots[0];
Jan Schmidt8da6d582011-11-23 18:55:04 +0100843 btrfs_item_key_to_cpu(leaf, &key, slot);
844 if (key.objectid == bytenr &&
845 key.type == BTRFS_EXTENT_ITEM_KEY) {
846 ret = __add_inline_refs(fs_info, path, bytenr,
Jan Schmidtd5c88b72012-05-15 17:55:51 +0200847 &info_level, &prefs);
Jan Schmidt8da6d582011-11-23 18:55:04 +0100848 if (ret)
849 goto out;
Jan Schmidtd5c88b72012-05-15 17:55:51 +0200850 ret = __add_keyed_refs(fs_info, path, bytenr,
Jan Schmidt8da6d582011-11-23 18:55:04 +0100851 info_level, &prefs);
852 if (ret)
853 goto out;
854 }
855 }
856 btrfs_release_path(path);
857
Jan Schmidt8da6d582011-11-23 18:55:04 +0100858 list_splice_init(&prefs_delayed, &prefs);
859
Jan Schmidtd5c88b72012-05-15 17:55:51 +0200860 ret = __add_missing_keys(fs_info, &prefs);
861 if (ret)
862 goto out;
863
Jan Schmidt8da6d582011-11-23 18:55:04 +0100864 ret = __merge_refs(&prefs, 1);
865 if (ret)
866 goto out;
867
Jan Schmidt8445f612012-05-16 18:36:03 +0200868 ret = __resolve_indirect_refs(fs_info, search_commit_root, time_seq,
869 &prefs, extent_item_pos);
Jan Schmidt8da6d582011-11-23 18:55:04 +0100870 if (ret)
871 goto out;
872
873 ret = __merge_refs(&prefs, 2);
874 if (ret)
875 goto out;
876
877 while (!list_empty(&prefs)) {
878 ref = list_first_entry(&prefs, struct __prelim_ref, list);
879 list_del(&ref->list);
880 if (ref->count < 0)
881 WARN_ON(1);
882 if (ref->count && ref->root_id && ref->parent == 0) {
883 /* no parent == root of tree */
884 ret = ulist_add(roots, ref->root_id, 0, GFP_NOFS);
885 BUG_ON(ret < 0);
886 }
887 if (ref->count && ref->parent) {
Jan Schmidt976b1902012-05-17 16:43:03 +0200888 struct extent_inode_elem *eie = NULL;
Jan Schmidt33019582012-05-30 18:05:21 +0200889 if (extent_item_pos && !ref->inode_list) {
Jan Schmidt976b1902012-05-17 16:43:03 +0200890 u32 bsz;
891 struct extent_buffer *eb;
892 bsz = btrfs_level_size(fs_info->extent_root,
893 info_level);
894 eb = read_tree_block(fs_info->extent_root,
895 ref->parent, bsz, 0);
896 BUG_ON(!eb);
897 ret = find_extent_in_eb(eb, bytenr,
898 *extent_item_pos, &eie);
Jan Schmidt33019582012-05-30 18:05:21 +0200899 ref->inode_list = eie;
Jan Schmidt976b1902012-05-17 16:43:03 +0200900 free_extent_buffer(eb);
901 }
Jan Schmidt33019582012-05-30 18:05:21 +0200902 ret = ulist_add_merge(refs, ref->parent,
903 (unsigned long)ref->inode_list,
904 (unsigned long *)&eie, GFP_NOFS);
905 if (!ret && extent_item_pos) {
906 /*
907 * we've recorded that parent, so we must extend
908 * its inode list here
909 */
910 BUG_ON(!eie);
911 while (eie->next)
912 eie = eie->next;
913 eie->next = ref->inode_list;
914 }
Jan Schmidt8da6d582011-11-23 18:55:04 +0100915 BUG_ON(ret < 0);
916 }
917 kfree(ref);
918 }
919
920out:
921 if (head)
922 mutex_unlock(&head->mutex);
923 btrfs_free_path(path);
924 while (!list_empty(&prefs)) {
925 ref = list_first_entry(&prefs, struct __prelim_ref, list);
926 list_del(&ref->list);
927 kfree(ref);
928 }
929 while (!list_empty(&prefs_delayed)) {
930 ref = list_first_entry(&prefs_delayed, struct __prelim_ref,
931 list);
932 list_del(&ref->list);
933 kfree(ref);
934 }
935
936 return ret;
937}
938
Jan Schmidt976b1902012-05-17 16:43:03 +0200939static void free_leaf_list(struct ulist *blocks)
940{
941 struct ulist_node *node = NULL;
942 struct extent_inode_elem *eie;
943 struct extent_inode_elem *eie_next;
944 struct ulist_iterator uiter;
945
946 ULIST_ITER_INIT(&uiter);
947 while ((node = ulist_next(blocks, &uiter))) {
948 if (!node->aux)
949 continue;
950 eie = (struct extent_inode_elem *)node->aux;
951 for (; eie; eie = eie_next) {
952 eie_next = eie->next;
953 kfree(eie);
954 }
955 node->aux = 0;
956 }
957
958 ulist_free(blocks);
959}
960
Jan Schmidt8da6d582011-11-23 18:55:04 +0100961/*
962 * Finds all leafs with a reference to the specified combination of bytenr and
963 * offset. key_list_head will point to a list of corresponding keys (caller must
964 * free each list element). The leafs will be stored in the leafs ulist, which
965 * must be freed with ulist_free.
966 *
967 * returns 0 on success, <0 on error
968 */
969static int btrfs_find_all_leafs(struct btrfs_trans_handle *trans,
970 struct btrfs_fs_info *fs_info, u64 bytenr,
Jan Schmidt8445f612012-05-16 18:36:03 +0200971 u64 delayed_ref_seq, u64 time_seq,
972 struct ulist **leafs,
Jan Schmidt976b1902012-05-17 16:43:03 +0200973 const u64 *extent_item_pos)
Jan Schmidt8da6d582011-11-23 18:55:04 +0100974{
975 struct ulist *tmp;
976 int ret;
977
978 tmp = ulist_alloc(GFP_NOFS);
979 if (!tmp)
980 return -ENOMEM;
981 *leafs = ulist_alloc(GFP_NOFS);
982 if (!*leafs) {
983 ulist_free(tmp);
984 return -ENOMEM;
985 }
986
Jan Schmidt8445f612012-05-16 18:36:03 +0200987 ret = find_parent_nodes(trans, fs_info, bytenr, delayed_ref_seq,
988 time_seq, *leafs, tmp, extent_item_pos);
Jan Schmidt8da6d582011-11-23 18:55:04 +0100989 ulist_free(tmp);
990
991 if (ret < 0 && ret != -ENOENT) {
Jan Schmidt976b1902012-05-17 16:43:03 +0200992 free_leaf_list(*leafs);
Jan Schmidt8da6d582011-11-23 18:55:04 +0100993 return ret;
994 }
995
996 return 0;
997}
998
999/*
1000 * walk all backrefs for a given extent to find all roots that reference this
1001 * extent. Walking a backref means finding all extents that reference this
1002 * extent and in turn walk the backrefs of those, too. Naturally this is a
1003 * recursive process, but here it is implemented in an iterative fashion: We
1004 * find all referencing extents for the extent in question and put them on a
1005 * list. In turn, we find all referencing extents for those, further appending
1006 * to the list. The way we iterate the list allows adding more elements after
1007 * the current while iterating. The process stops when we reach the end of the
1008 * list. Found roots are added to the roots list.
1009 *
1010 * returns 0 on success, < 0 on error.
1011 */
1012int btrfs_find_all_roots(struct btrfs_trans_handle *trans,
1013 struct btrfs_fs_info *fs_info, u64 bytenr,
Jan Schmidt8445f612012-05-16 18:36:03 +02001014 u64 delayed_ref_seq, u64 time_seq,
1015 struct ulist **roots)
Jan Schmidt8da6d582011-11-23 18:55:04 +01001016{
1017 struct ulist *tmp;
1018 struct ulist_node *node = NULL;
Jan Schmidtcd1b4132012-05-22 14:56:50 +02001019 struct ulist_iterator uiter;
Jan Schmidt8da6d582011-11-23 18:55:04 +01001020 int ret;
1021
1022 tmp = ulist_alloc(GFP_NOFS);
1023 if (!tmp)
1024 return -ENOMEM;
1025 *roots = ulist_alloc(GFP_NOFS);
1026 if (!*roots) {
1027 ulist_free(tmp);
1028 return -ENOMEM;
1029 }
1030
Jan Schmidtcd1b4132012-05-22 14:56:50 +02001031 ULIST_ITER_INIT(&uiter);
Jan Schmidt8da6d582011-11-23 18:55:04 +01001032 while (1) {
Jan Schmidt8445f612012-05-16 18:36:03 +02001033 ret = find_parent_nodes(trans, fs_info, bytenr, delayed_ref_seq,
1034 time_seq, tmp, *roots, NULL);
Jan Schmidt8da6d582011-11-23 18:55:04 +01001035 if (ret < 0 && ret != -ENOENT) {
1036 ulist_free(tmp);
1037 ulist_free(*roots);
1038 return ret;
1039 }
Jan Schmidtcd1b4132012-05-22 14:56:50 +02001040 node = ulist_next(tmp, &uiter);
Jan Schmidt8da6d582011-11-23 18:55:04 +01001041 if (!node)
1042 break;
1043 bytenr = node->val;
1044 }
1045
1046 ulist_free(tmp);
1047 return 0;
1048}
1049
1050
Jan Schmidta542ad12011-06-13 19:52:59 +02001051static int __inode_info(u64 inum, u64 ioff, u8 key_type,
1052 struct btrfs_root *fs_root, struct btrfs_path *path,
1053 struct btrfs_key *found_key)
1054{
1055 int ret;
1056 struct btrfs_key key;
1057 struct extent_buffer *eb;
1058
1059 key.type = key_type;
1060 key.objectid = inum;
1061 key.offset = ioff;
1062
1063 ret = btrfs_search_slot(NULL, fs_root, &key, path, 0, 0);
1064 if (ret < 0)
1065 return ret;
1066
1067 eb = path->nodes[0];
1068 if (ret && path->slots[0] >= btrfs_header_nritems(eb)) {
1069 ret = btrfs_next_leaf(fs_root, path);
1070 if (ret)
1071 return ret;
1072 eb = path->nodes[0];
1073 }
1074
1075 btrfs_item_key_to_cpu(eb, found_key, path->slots[0]);
1076 if (found_key->type != key.type || found_key->objectid != key.objectid)
1077 return 1;
1078
1079 return 0;
1080}
1081
1082/*
1083 * this makes the path point to (inum INODE_ITEM ioff)
1084 */
1085int inode_item_info(u64 inum, u64 ioff, struct btrfs_root *fs_root,
1086 struct btrfs_path *path)
1087{
1088 struct btrfs_key key;
1089 return __inode_info(inum, ioff, BTRFS_INODE_ITEM_KEY, fs_root, path,
1090 &key);
1091}
1092
1093static int inode_ref_info(u64 inum, u64 ioff, struct btrfs_root *fs_root,
1094 struct btrfs_path *path,
1095 struct btrfs_key *found_key)
1096{
1097 return __inode_info(inum, ioff, BTRFS_INODE_REF_KEY, fs_root, path,
1098 found_key);
1099}
1100
1101/*
1102 * this iterates to turn a btrfs_inode_ref into a full filesystem path. elements
1103 * of the path are separated by '/' and the path is guaranteed to be
1104 * 0-terminated. the path is only given within the current file system.
1105 * Therefore, it never starts with a '/'. the caller is responsible to provide
1106 * "size" bytes in "dest". the dest buffer will be filled backwards. finally,
1107 * the start point of the resulting string is returned. this pointer is within
1108 * dest, normally.
1109 * in case the path buffer would overflow, the pointer is decremented further
1110 * as if output was written to the buffer, though no more output is actually
1111 * generated. that way, the caller can determine how much space would be
1112 * required for the path to fit into the buffer. in that case, the returned
1113 * value will be smaller than dest. callers must check this!
1114 */
1115static char *iref_to_path(struct btrfs_root *fs_root, struct btrfs_path *path,
1116 struct btrfs_inode_ref *iref,
1117 struct extent_buffer *eb_in, u64 parent,
1118 char *dest, u32 size)
1119{
1120 u32 len;
1121 int slot;
1122 u64 next_inum;
1123 int ret;
1124 s64 bytes_left = size - 1;
1125 struct extent_buffer *eb = eb_in;
1126 struct btrfs_key found_key;
Jan Schmidtb916a592012-04-13 12:28:08 +02001127 int leave_spinning = path->leave_spinning;
Jan Schmidta542ad12011-06-13 19:52:59 +02001128
1129 if (bytes_left >= 0)
1130 dest[bytes_left] = '\0';
1131
Jan Schmidtb916a592012-04-13 12:28:08 +02001132 path->leave_spinning = 1;
Jan Schmidta542ad12011-06-13 19:52:59 +02001133 while (1) {
1134 len = btrfs_inode_ref_name_len(eb, iref);
1135 bytes_left -= len;
1136 if (bytes_left >= 0)
1137 read_extent_buffer(eb, dest + bytes_left,
1138 (unsigned long)(iref + 1), len);
Jan Schmidtb916a592012-04-13 12:28:08 +02001139 if (eb != eb_in) {
1140 btrfs_tree_read_unlock_blocking(eb);
Jan Schmidta542ad12011-06-13 19:52:59 +02001141 free_extent_buffer(eb);
Jan Schmidtb916a592012-04-13 12:28:08 +02001142 }
Jan Schmidta542ad12011-06-13 19:52:59 +02001143 ret = inode_ref_info(parent, 0, fs_root, path, &found_key);
Jan Schmidt8f24b492012-02-08 16:01:01 +01001144 if (ret > 0)
1145 ret = -ENOENT;
Jan Schmidta542ad12011-06-13 19:52:59 +02001146 if (ret)
1147 break;
1148 next_inum = found_key.offset;
1149
1150 /* regular exit ahead */
1151 if (parent == next_inum)
1152 break;
1153
1154 slot = path->slots[0];
1155 eb = path->nodes[0];
1156 /* make sure we can use eb after releasing the path */
Jan Schmidtb916a592012-04-13 12:28:08 +02001157 if (eb != eb_in) {
Jan Schmidta542ad12011-06-13 19:52:59 +02001158 atomic_inc(&eb->refs);
Jan Schmidtb916a592012-04-13 12:28:08 +02001159 btrfs_tree_read_lock(eb);
1160 btrfs_set_lock_blocking_rw(eb, BTRFS_READ_LOCK);
1161 }
Jan Schmidta542ad12011-06-13 19:52:59 +02001162 btrfs_release_path(path);
1163
1164 iref = btrfs_item_ptr(eb, slot, struct btrfs_inode_ref);
1165 parent = next_inum;
1166 --bytes_left;
1167 if (bytes_left >= 0)
1168 dest[bytes_left] = '/';
1169 }
1170
1171 btrfs_release_path(path);
Jan Schmidtb916a592012-04-13 12:28:08 +02001172 path->leave_spinning = leave_spinning;
Jan Schmidta542ad12011-06-13 19:52:59 +02001173
1174 if (ret)
1175 return ERR_PTR(ret);
1176
1177 return dest + bytes_left;
1178}
1179
1180/*
1181 * this makes the path point to (logical EXTENT_ITEM *)
1182 * returns BTRFS_EXTENT_FLAG_DATA for data, BTRFS_EXTENT_FLAG_TREE_BLOCK for
1183 * tree blocks and <0 on error.
1184 */
1185int extent_from_logical(struct btrfs_fs_info *fs_info, u64 logical,
1186 struct btrfs_path *path, struct btrfs_key *found_key)
1187{
1188 int ret;
1189 u64 flags;
1190 u32 item_size;
1191 struct extent_buffer *eb;
1192 struct btrfs_extent_item *ei;
1193 struct btrfs_key key;
1194
1195 key.type = BTRFS_EXTENT_ITEM_KEY;
1196 key.objectid = logical;
1197 key.offset = (u64)-1;
1198
1199 ret = btrfs_search_slot(NULL, fs_info->extent_root, &key, path, 0, 0);
1200 if (ret < 0)
1201 return ret;
1202 ret = btrfs_previous_item(fs_info->extent_root, path,
1203 0, BTRFS_EXTENT_ITEM_KEY);
1204 if (ret < 0)
1205 return ret;
1206
1207 btrfs_item_key_to_cpu(path->nodes[0], found_key, path->slots[0]);
1208 if (found_key->type != BTRFS_EXTENT_ITEM_KEY ||
1209 found_key->objectid > logical ||
Jan Schmidt4692cf52011-12-02 14:56:41 +01001210 found_key->objectid + found_key->offset <= logical) {
1211 pr_debug("logical %llu is not within any extent\n",
1212 (unsigned long long)logical);
Jan Schmidta542ad12011-06-13 19:52:59 +02001213 return -ENOENT;
Jan Schmidt4692cf52011-12-02 14:56:41 +01001214 }
Jan Schmidta542ad12011-06-13 19:52:59 +02001215
1216 eb = path->nodes[0];
1217 item_size = btrfs_item_size_nr(eb, path->slots[0]);
1218 BUG_ON(item_size < sizeof(*ei));
1219
1220 ei = btrfs_item_ptr(eb, path->slots[0], struct btrfs_extent_item);
1221 flags = btrfs_extent_flags(eb, ei);
1222
Jan Schmidt4692cf52011-12-02 14:56:41 +01001223 pr_debug("logical %llu is at position %llu within the extent (%llu "
1224 "EXTENT_ITEM %llu) flags %#llx size %u\n",
1225 (unsigned long long)logical,
1226 (unsigned long long)(logical - found_key->objectid),
1227 (unsigned long long)found_key->objectid,
1228 (unsigned long long)found_key->offset,
1229 (unsigned long long)flags, item_size);
Jan Schmidta542ad12011-06-13 19:52:59 +02001230 if (flags & BTRFS_EXTENT_FLAG_TREE_BLOCK)
1231 return BTRFS_EXTENT_FLAG_TREE_BLOCK;
1232 if (flags & BTRFS_EXTENT_FLAG_DATA)
1233 return BTRFS_EXTENT_FLAG_DATA;
1234
1235 return -EIO;
1236}
1237
1238/*
1239 * helper function to iterate extent inline refs. ptr must point to a 0 value
1240 * for the first call and may be modified. it is used to track state.
1241 * if more refs exist, 0 is returned and the next call to
1242 * __get_extent_inline_ref must pass the modified ptr parameter to get the
1243 * next ref. after the last ref was processed, 1 is returned.
1244 * returns <0 on error
1245 */
1246static int __get_extent_inline_ref(unsigned long *ptr, struct extent_buffer *eb,
1247 struct btrfs_extent_item *ei, u32 item_size,
1248 struct btrfs_extent_inline_ref **out_eiref,
1249 int *out_type)
1250{
1251 unsigned long end;
1252 u64 flags;
1253 struct btrfs_tree_block_info *info;
1254
1255 if (!*ptr) {
1256 /* first call */
1257 flags = btrfs_extent_flags(eb, ei);
1258 if (flags & BTRFS_EXTENT_FLAG_TREE_BLOCK) {
1259 info = (struct btrfs_tree_block_info *)(ei + 1);
1260 *out_eiref =
1261 (struct btrfs_extent_inline_ref *)(info + 1);
1262 } else {
1263 *out_eiref = (struct btrfs_extent_inline_ref *)(ei + 1);
1264 }
1265 *ptr = (unsigned long)*out_eiref;
1266 if ((void *)*ptr >= (void *)ei + item_size)
1267 return -ENOENT;
1268 }
1269
1270 end = (unsigned long)ei + item_size;
1271 *out_eiref = (struct btrfs_extent_inline_ref *)*ptr;
1272 *out_type = btrfs_extent_inline_ref_type(eb, *out_eiref);
1273
1274 *ptr += btrfs_extent_inline_ref_size(*out_type);
1275 WARN_ON(*ptr > end);
1276 if (*ptr == end)
1277 return 1; /* last */
1278
1279 return 0;
1280}
1281
1282/*
1283 * reads the tree block backref for an extent. tree level and root are returned
1284 * through out_level and out_root. ptr must point to a 0 value for the first
1285 * call and may be modified (see __get_extent_inline_ref comment).
1286 * returns 0 if data was provided, 1 if there was no more data to provide or
1287 * <0 on error.
1288 */
1289int tree_backref_for_extent(unsigned long *ptr, struct extent_buffer *eb,
1290 struct btrfs_extent_item *ei, u32 item_size,
1291 u64 *out_root, u8 *out_level)
1292{
1293 int ret;
1294 int type;
1295 struct btrfs_tree_block_info *info;
1296 struct btrfs_extent_inline_ref *eiref;
1297
1298 if (*ptr == (unsigned long)-1)
1299 return 1;
1300
1301 while (1) {
1302 ret = __get_extent_inline_ref(ptr, eb, ei, item_size,
1303 &eiref, &type);
1304 if (ret < 0)
1305 return ret;
1306
1307 if (type == BTRFS_TREE_BLOCK_REF_KEY ||
1308 type == BTRFS_SHARED_BLOCK_REF_KEY)
1309 break;
1310
1311 if (ret == 1)
1312 return 1;
1313 }
1314
1315 /* we can treat both ref types equally here */
1316 info = (struct btrfs_tree_block_info *)(ei + 1);
1317 *out_root = btrfs_extent_inline_ref_offset(eb, eiref);
1318 *out_level = btrfs_tree_block_level(eb, info);
1319
1320 if (ret == 1)
1321 *ptr = (unsigned long)-1;
1322
1323 return 0;
1324}
1325
Jan Schmidt976b1902012-05-17 16:43:03 +02001326static int iterate_leaf_refs(struct extent_inode_elem *inode_list,
1327 u64 root, u64 extent_item_objectid,
Jan Schmidt4692cf52011-12-02 14:56:41 +01001328 iterate_extent_inodes_t *iterate, void *ctx)
Jan Schmidta542ad12011-06-13 19:52:59 +02001329{
Jan Schmidt976b1902012-05-17 16:43:03 +02001330 struct extent_inode_elem *eie;
Jan Schmidt4692cf52011-12-02 14:56:41 +01001331 int ret = 0;
Jan Schmidta542ad12011-06-13 19:52:59 +02001332
Jan Schmidt976b1902012-05-17 16:43:03 +02001333 for (eie = inode_list; eie; eie = eie->next) {
Jan Schmidt4692cf52011-12-02 14:56:41 +01001334 pr_debug("ref for %llu resolved, key (%llu EXTEND_DATA %llu), "
Jan Schmidt976b1902012-05-17 16:43:03 +02001335 "root %llu\n", extent_item_objectid,
1336 eie->inum, eie->offset, root);
1337 ret = iterate(eie->inum, eie->offset, root, ctx);
Jan Schmidt4692cf52011-12-02 14:56:41 +01001338 if (ret) {
Jan Schmidt976b1902012-05-17 16:43:03 +02001339 pr_debug("stopping iteration for %llu due to ret=%d\n",
1340 extent_item_objectid, ret);
Jan Schmidt4692cf52011-12-02 14:56:41 +01001341 break;
1342 }
Jan Schmidta542ad12011-06-13 19:52:59 +02001343 }
1344
Jan Schmidta542ad12011-06-13 19:52:59 +02001345 return ret;
1346}
1347
1348/*
1349 * calls iterate() for every inode that references the extent identified by
Jan Schmidt4692cf52011-12-02 14:56:41 +01001350 * the given parameters.
Jan Schmidta542ad12011-06-13 19:52:59 +02001351 * when the iterator function returns a non-zero value, iteration stops.
1352 */
1353int iterate_extent_inodes(struct btrfs_fs_info *fs_info,
Jan Schmidt4692cf52011-12-02 14:56:41 +01001354 u64 extent_item_objectid, u64 extent_item_pos,
Jan Schmidt7a3ae2f2012-03-23 17:32:28 +01001355 int search_commit_root,
Jan Schmidta542ad12011-06-13 19:52:59 +02001356 iterate_extent_inodes_t *iterate, void *ctx)
1357{
Jan Schmidta542ad12011-06-13 19:52:59 +02001358 int ret;
Jan Schmidta542ad12011-06-13 19:52:59 +02001359 struct list_head data_refs = LIST_HEAD_INIT(data_refs);
1360 struct list_head shared_refs = LIST_HEAD_INIT(shared_refs);
Jan Schmidt4692cf52011-12-02 14:56:41 +01001361 struct btrfs_trans_handle *trans;
Jan Schmidt7a3ae2f2012-03-23 17:32:28 +01001362 struct ulist *refs = NULL;
1363 struct ulist *roots = NULL;
Jan Schmidt4692cf52011-12-02 14:56:41 +01001364 struct ulist_node *ref_node = NULL;
1365 struct ulist_node *root_node = NULL;
Jan Schmidt8445f612012-05-16 18:36:03 +02001366 struct seq_list seq_elem = {};
1367 struct seq_list tree_mod_seq_elem = {};
Jan Schmidtcd1b4132012-05-22 14:56:50 +02001368 struct ulist_iterator ref_uiter;
1369 struct ulist_iterator root_uiter;
Jan Schmidt7a3ae2f2012-03-23 17:32:28 +01001370 struct btrfs_delayed_ref_root *delayed_refs = NULL;
Jan Schmidta542ad12011-06-13 19:52:59 +02001371
Jan Schmidt4692cf52011-12-02 14:56:41 +01001372 pr_debug("resolving all inodes for extent %llu\n",
1373 extent_item_objectid);
1374
Jan Schmidt7a3ae2f2012-03-23 17:32:28 +01001375 if (search_commit_root) {
1376 trans = BTRFS_BACKREF_SEARCH_COMMIT_ROOT;
1377 } else {
1378 trans = btrfs_join_transaction(fs_info->extent_root);
1379 if (IS_ERR(trans))
1380 return PTR_ERR(trans);
1381
1382 delayed_refs = &trans->transaction->delayed_refs;
1383 spin_lock(&delayed_refs->lock);
1384 btrfs_get_delayed_seq(delayed_refs, &seq_elem);
1385 spin_unlock(&delayed_refs->lock);
Jan Schmidt8445f612012-05-16 18:36:03 +02001386 btrfs_get_tree_mod_seq(fs_info, &tree_mod_seq_elem);
Jan Schmidt7a3ae2f2012-03-23 17:32:28 +01001387 }
Jan Schmidt4692cf52011-12-02 14:56:41 +01001388
1389 ret = btrfs_find_all_leafs(trans, fs_info, extent_item_objectid,
Jan Schmidt8445f612012-05-16 18:36:03 +02001390 seq_elem.seq, tree_mod_seq_elem.seq, &refs,
1391 &extent_item_pos);
Jan Schmidt4692cf52011-12-02 14:56:41 +01001392 if (ret)
1393 goto out;
1394
Jan Schmidtcd1b4132012-05-22 14:56:50 +02001395 ULIST_ITER_INIT(&ref_uiter);
1396 while (!ret && (ref_node = ulist_next(refs, &ref_uiter))) {
Jan Schmidt976b1902012-05-17 16:43:03 +02001397 ret = btrfs_find_all_roots(trans, fs_info, ref_node->val,
Jan Schmidt8445f612012-05-16 18:36:03 +02001398 seq_elem.seq,
1399 tree_mod_seq_elem.seq, &roots);
Jan Schmidt4692cf52011-12-02 14:56:41 +01001400 if (ret)
Jan Schmidta542ad12011-06-13 19:52:59 +02001401 break;
Jan Schmidtcd1b4132012-05-22 14:56:50 +02001402 ULIST_ITER_INIT(&root_uiter);
1403 while (!ret && (root_node = ulist_next(roots, &root_uiter))) {
Jan Schmidt976b1902012-05-17 16:43:03 +02001404 pr_debug("root %llu references leaf %llu, data list "
1405 "%#lx\n", root_node->val, ref_node->val,
1406 ref_node->aux);
1407 ret = iterate_leaf_refs(
1408 (struct extent_inode_elem *)ref_node->aux,
1409 root_node->val, extent_item_objectid,
1410 iterate, ctx);
Jan Schmidta542ad12011-06-13 19:52:59 +02001411 }
Jan Schmidt976b1902012-05-17 16:43:03 +02001412 ulist_free(roots);
1413 roots = NULL;
Jan Schmidta542ad12011-06-13 19:52:59 +02001414 }
1415
Jan Schmidt976b1902012-05-17 16:43:03 +02001416 free_leaf_list(refs);
Jan Schmidt4692cf52011-12-02 14:56:41 +01001417 ulist_free(roots);
1418out:
Jan Schmidt7a3ae2f2012-03-23 17:32:28 +01001419 if (!search_commit_root) {
Jan Schmidt8445f612012-05-16 18:36:03 +02001420 btrfs_put_tree_mod_seq(fs_info, &tree_mod_seq_elem);
Jan Schmidt7a3ae2f2012-03-23 17:32:28 +01001421 btrfs_put_delayed_seq(delayed_refs, &seq_elem);
1422 btrfs_end_transaction(trans, fs_info->extent_root);
1423 }
1424
Jan Schmidta542ad12011-06-13 19:52:59 +02001425 return ret;
1426}
1427
1428int iterate_inodes_from_logical(u64 logical, struct btrfs_fs_info *fs_info,
1429 struct btrfs_path *path,
1430 iterate_extent_inodes_t *iterate, void *ctx)
1431{
1432 int ret;
Jan Schmidt4692cf52011-12-02 14:56:41 +01001433 u64 extent_item_pos;
Jan Schmidta542ad12011-06-13 19:52:59 +02001434 struct btrfs_key found_key;
Jan Schmidt7a3ae2f2012-03-23 17:32:28 +01001435 int search_commit_root = path->search_commit_root;
Jan Schmidta542ad12011-06-13 19:52:59 +02001436
1437 ret = extent_from_logical(fs_info, logical, path,
1438 &found_key);
Jan Schmidt4692cf52011-12-02 14:56:41 +01001439 btrfs_release_path(path);
Jan Schmidta542ad12011-06-13 19:52:59 +02001440 if (ret & BTRFS_EXTENT_FLAG_TREE_BLOCK)
1441 ret = -EINVAL;
1442 if (ret < 0)
1443 return ret;
1444
Jan Schmidt4692cf52011-12-02 14:56:41 +01001445 extent_item_pos = logical - found_key.objectid;
Jan Schmidt7a3ae2f2012-03-23 17:32:28 +01001446 ret = iterate_extent_inodes(fs_info, found_key.objectid,
1447 extent_item_pos, search_commit_root,
1448 iterate, ctx);
Jan Schmidta542ad12011-06-13 19:52:59 +02001449
1450 return ret;
1451}
1452
1453static int iterate_irefs(u64 inum, struct btrfs_root *fs_root,
1454 struct btrfs_path *path,
1455 iterate_irefs_t *iterate, void *ctx)
1456{
Jan Schmidtaefc1eb2012-04-13 12:28:00 +02001457 int ret = 0;
Jan Schmidta542ad12011-06-13 19:52:59 +02001458 int slot;
1459 u32 cur;
1460 u32 len;
1461 u32 name_len;
1462 u64 parent = 0;
1463 int found = 0;
1464 struct extent_buffer *eb;
1465 struct btrfs_item *item;
1466 struct btrfs_inode_ref *iref;
1467 struct btrfs_key found_key;
1468
Jan Schmidtaefc1eb2012-04-13 12:28:00 +02001469 while (!ret) {
Jan Schmidtb916a592012-04-13 12:28:08 +02001470 path->leave_spinning = 1;
Jan Schmidta542ad12011-06-13 19:52:59 +02001471 ret = inode_ref_info(inum, parent ? parent+1 : 0, fs_root, path,
1472 &found_key);
1473 if (ret < 0)
1474 break;
1475 if (ret) {
1476 ret = found ? 0 : -ENOENT;
1477 break;
1478 }
1479 ++found;
1480
1481 parent = found_key.offset;
1482 slot = path->slots[0];
1483 eb = path->nodes[0];
1484 /* make sure we can use eb after releasing the path */
1485 atomic_inc(&eb->refs);
Jan Schmidtb916a592012-04-13 12:28:08 +02001486 btrfs_tree_read_lock(eb);
1487 btrfs_set_lock_blocking_rw(eb, BTRFS_READ_LOCK);
Jan Schmidta542ad12011-06-13 19:52:59 +02001488 btrfs_release_path(path);
1489
1490 item = btrfs_item_nr(eb, slot);
1491 iref = btrfs_item_ptr(eb, slot, struct btrfs_inode_ref);
1492
1493 for (cur = 0; cur < btrfs_item_size(eb, item); cur += len) {
1494 name_len = btrfs_inode_ref_name_len(eb, iref);
1495 /* path must be released before calling iterate()! */
Jan Schmidt4692cf52011-12-02 14:56:41 +01001496 pr_debug("following ref at offset %u for inode %llu in "
1497 "tree %llu\n", cur,
1498 (unsigned long long)found_key.objectid,
1499 (unsigned long long)fs_root->objectid);
Jan Schmidta542ad12011-06-13 19:52:59 +02001500 ret = iterate(parent, iref, eb, ctx);
Jan Schmidtaefc1eb2012-04-13 12:28:00 +02001501 if (ret)
Jan Schmidta542ad12011-06-13 19:52:59 +02001502 break;
Jan Schmidta542ad12011-06-13 19:52:59 +02001503 len = sizeof(*iref) + name_len;
1504 iref = (struct btrfs_inode_ref *)((char *)iref + len);
1505 }
Jan Schmidtb916a592012-04-13 12:28:08 +02001506 btrfs_tree_read_unlock_blocking(eb);
Jan Schmidta542ad12011-06-13 19:52:59 +02001507 free_extent_buffer(eb);
1508 }
1509
1510 btrfs_release_path(path);
1511
1512 return ret;
1513}
1514
1515/*
1516 * returns 0 if the path could be dumped (probably truncated)
1517 * returns <0 in case of an error
1518 */
1519static int inode_to_path(u64 inum, struct btrfs_inode_ref *iref,
1520 struct extent_buffer *eb, void *ctx)
1521{
1522 struct inode_fs_paths *ipath = ctx;
1523 char *fspath;
1524 char *fspath_min;
1525 int i = ipath->fspath->elem_cnt;
1526 const int s_ptr = sizeof(char *);
1527 u32 bytes_left;
1528
1529 bytes_left = ipath->fspath->bytes_left > s_ptr ?
1530 ipath->fspath->bytes_left - s_ptr : 0;
1531
Chris Mason740c3d22011-11-02 15:48:34 -04001532 fspath_min = (char *)ipath->fspath->val + (i + 1) * s_ptr;
Jan Schmidta542ad12011-06-13 19:52:59 +02001533 fspath = iref_to_path(ipath->fs_root, ipath->btrfs_path, iref, eb,
1534 inum, fspath_min, bytes_left);
1535 if (IS_ERR(fspath))
1536 return PTR_ERR(fspath);
1537
1538 if (fspath > fspath_min) {
Jan Schmidt4692cf52011-12-02 14:56:41 +01001539 pr_debug("path resolved: %s\n", fspath);
Jeff Mahoney745c4d82011-11-20 07:31:57 -05001540 ipath->fspath->val[i] = (u64)(unsigned long)fspath;
Jan Schmidta542ad12011-06-13 19:52:59 +02001541 ++ipath->fspath->elem_cnt;
1542 ipath->fspath->bytes_left = fspath - fspath_min;
1543 } else {
Jan Schmidt4692cf52011-12-02 14:56:41 +01001544 pr_debug("missed path, not enough space. missing bytes: %lu, "
1545 "constructed so far: %s\n",
1546 (unsigned long)(fspath_min - fspath), fspath_min);
Jan Schmidta542ad12011-06-13 19:52:59 +02001547 ++ipath->fspath->elem_missed;
1548 ipath->fspath->bytes_missing += fspath_min - fspath;
1549 ipath->fspath->bytes_left = 0;
1550 }
1551
1552 return 0;
1553}
1554
1555/*
1556 * this dumps all file system paths to the inode into the ipath struct, provided
1557 * is has been created large enough. each path is zero-terminated and accessed
Chris Mason740c3d22011-11-02 15:48:34 -04001558 * from ipath->fspath->val[i].
Jan Schmidta542ad12011-06-13 19:52:59 +02001559 * when it returns, there are ipath->fspath->elem_cnt number of paths available
Chris Mason740c3d22011-11-02 15:48:34 -04001560 * in ipath->fspath->val[]. when the allocated space wasn't sufficient, the
Jan Schmidta542ad12011-06-13 19:52:59 +02001561 * number of missed paths in recored in ipath->fspath->elem_missed, otherwise,
1562 * it's zero. ipath->fspath->bytes_missing holds the number of bytes that would
1563 * have been needed to return all paths.
1564 */
1565int paths_from_inode(u64 inum, struct inode_fs_paths *ipath)
1566{
1567 return iterate_irefs(inum, ipath->fs_root, ipath->btrfs_path,
1568 inode_to_path, ipath);
1569}
1570
Jan Schmidta542ad12011-06-13 19:52:59 +02001571struct btrfs_data_container *init_data_container(u32 total_bytes)
1572{
1573 struct btrfs_data_container *data;
1574 size_t alloc_bytes;
1575
1576 alloc_bytes = max_t(size_t, total_bytes, sizeof(*data));
1577 data = kmalloc(alloc_bytes, GFP_NOFS);
1578 if (!data)
1579 return ERR_PTR(-ENOMEM);
1580
1581 if (total_bytes >= sizeof(*data)) {
1582 data->bytes_left = total_bytes - sizeof(*data);
1583 data->bytes_missing = 0;
1584 } else {
1585 data->bytes_missing = sizeof(*data) - total_bytes;
1586 data->bytes_left = 0;
1587 }
1588
1589 data->elem_cnt = 0;
1590 data->elem_missed = 0;
1591
1592 return data;
1593}
1594
1595/*
1596 * allocates space to return multiple file system paths for an inode.
1597 * total_bytes to allocate are passed, note that space usable for actual path
1598 * information will be total_bytes - sizeof(struct inode_fs_paths).
1599 * the returned pointer must be freed with free_ipath() in the end.
1600 */
1601struct inode_fs_paths *init_ipath(s32 total_bytes, struct btrfs_root *fs_root,
1602 struct btrfs_path *path)
1603{
1604 struct inode_fs_paths *ifp;
1605 struct btrfs_data_container *fspath;
1606
1607 fspath = init_data_container(total_bytes);
1608 if (IS_ERR(fspath))
1609 return (void *)fspath;
1610
1611 ifp = kmalloc(sizeof(*ifp), GFP_NOFS);
1612 if (!ifp) {
1613 kfree(fspath);
1614 return ERR_PTR(-ENOMEM);
1615 }
1616
1617 ifp->btrfs_path = path;
1618 ifp->fspath = fspath;
1619 ifp->fs_root = fs_root;
1620
1621 return ifp;
1622}
1623
1624void free_ipath(struct inode_fs_paths *ipath)
1625{
Jesper Juhl4735fb22012-04-12 22:47:52 +02001626 if (!ipath)
1627 return;
Ilya Dryomov5eb56d22012-03-27 17:09:18 +03001628 kfree(ipath->fspath);
Jan Schmidta542ad12011-06-13 19:52:59 +02001629 kfree(ipath);
1630}