blob: 54d58988483aa589a87dc1dabb8203d7d2f8badf [file] [log] [blame]
David Sterba9888c342018-04-03 19:16:55 +02001/* SPDX-License-Identifier: GPL-2.0 */
Jan Schmidta542ad12011-06-13 19:52:59 +02002/*
3 * Copyright (C) 2011 STRATO. All rights reserved.
Jan Schmidta542ad12011-06-13 19:52:59 +02004 */
5
David Sterba9888c342018-04-03 19:16:55 +02006#ifndef BTRFS_BACKREF_H
7#define BTRFS_BACKREF_H
Jan Schmidta542ad12011-06-13 19:52:59 +02008
Filipe Brandenburger55e301f2013-01-29 06:04:50 +00009#include <linux/btrfs.h>
Jan Schmidt8da6d582011-11-23 18:55:04 +010010#include "ulist.h"
Alexander Block91cb9162012-06-03 14:23:23 +020011#include "extent_io.h"
Jan Schmidta542ad12011-06-13 19:52:59 +020012
13struct inode_fs_paths {
14 struct btrfs_path *btrfs_path;
15 struct btrfs_root *fs_root;
16 struct btrfs_data_container *fspath;
17};
18
19typedef int (iterate_extent_inodes_t)(u64 inum, u64 offset, u64 root,
20 void *ctx);
Jan Schmidta542ad12011-06-13 19:52:59 +020021
Jan Schmidta542ad12011-06-13 19:52:59 +020022int extent_from_logical(struct btrfs_fs_info *fs_info, u64 logical,
Liu Bo69917e42012-09-07 20:01:28 -060023 struct btrfs_path *path, struct btrfs_key *found_key,
24 u64 *flags);
Jan Schmidta542ad12011-06-13 19:52:59 +020025
26int tree_backref_for_extent(unsigned long *ptr, struct extent_buffer *eb,
Liu Bo6eda71d2014-06-09 10:54:07 +080027 struct btrfs_key *key, struct btrfs_extent_item *ei,
28 u32 item_size, u64 *out_root, u8 *out_level);
Jan Schmidta542ad12011-06-13 19:52:59 +020029
30int iterate_extent_inodes(struct btrfs_fs_info *fs_info,
Jan Schmidta542ad12011-06-13 19:52:59 +020031 u64 extent_item_objectid,
Jan Schmidt7a3ae2f2012-03-23 17:32:28 +010032 u64 extent_offset, int search_commit_root,
Zygo Blaxellc995ab32017-09-22 13:58:45 -040033 iterate_extent_inodes_t *iterate, void *ctx,
34 bool ignore_offset);
Jan Schmidta542ad12011-06-13 19:52:59 +020035
36int iterate_inodes_from_logical(u64 logical, struct btrfs_fs_info *fs_info,
37 struct btrfs_path *path,
Zygo Blaxellc995ab32017-09-22 13:58:45 -040038 iterate_extent_inodes_t *iterate, void *ctx,
39 bool ignore_offset);
Jan Schmidta542ad12011-06-13 19:52:59 +020040
41int paths_from_inode(u64 inum, struct inode_fs_paths *ipath);
42
Jan Schmidt8da6d582011-11-23 18:55:04 +010043int btrfs_find_all_roots(struct btrfs_trans_handle *trans,
Josef Bacikfcebe452014-05-13 17:30:47 -070044 struct btrfs_fs_info *fs_info, u64 bytenr,
Zygo Blaxellc995ab32017-09-22 13:58:45 -040045 u64 time_seq, struct ulist **roots, bool ignore_offset);
Jan Schmidt96b5bd72012-10-15 08:30:45 +000046char *btrfs_ref_to_path(struct btrfs_root *fs_root, struct btrfs_path *path,
47 u32 name_len, unsigned long name_off,
48 struct extent_buffer *eb_in, u64 parent,
49 char *dest, u32 size);
Jan Schmidt8da6d582011-11-23 18:55:04 +010050
Jan Schmidta542ad12011-06-13 19:52:59 +020051struct btrfs_data_container *init_data_container(u32 total_bytes);
52struct inode_fs_paths *init_ipath(s32 total_bytes, struct btrfs_root *fs_root,
53 struct btrfs_path *path);
54void free_ipath(struct inode_fs_paths *ipath);
55
Mark Fashehf1863732012-08-08 11:32:27 -070056int btrfs_find_one_extref(struct btrfs_root *root, u64 inode_objectid,
57 u64 start_off, struct btrfs_path *path,
58 struct btrfs_inode_extref **ret_extref,
59 u64 *found_off);
Edmund Nadolskibb739cf2017-06-28 21:56:58 -060060int btrfs_check_shared(struct btrfs_root *root, u64 inum, u64 bytenr);
Mark Fashehf1863732012-08-08 11:32:27 -070061
Wang Shilongb9e9a6c2013-08-09 13:25:36 +080062int __init btrfs_prelim_ref_init(void);
David Sterbae67c7182018-02-19 17:24:18 +010063void __cold btrfs_prelim_ref_exit(void);
Jeff Mahoney00142752017-07-12 16:20:08 -060064
65struct prelim_ref {
66 struct rb_node rbnode;
67 u64 root_id;
68 struct btrfs_key key_for_search;
69 int level;
70 int count;
71 struct extent_inode_elem *inode_list;
72 u64 parent;
73 u64 wanted_disk_byte;
74};
75
Jan Schmidta542ad12011-06-13 19:52:59 +020076#endif