2 #include <linux/types.h>
5 #include "btrfs_inode.h"
6 #include "print-tree.h"
10 #define BTRFS_FID_SIZE_NON_CONNECTABLE (offsetof(struct btrfs_fid, \
12 #define BTRFS_FID_SIZE_CONNECTABLE (offsetof(struct btrfs_fid, \
13 parent_root_objectid) / 4)
14 #define BTRFS_FID_SIZE_CONNECTABLE_ROOT (sizeof(struct btrfs_fid) / 4)
16 static int btrfs_encode_fh(struct dentry
*dentry
, u32
*fh
, int *max_len
,
19 struct btrfs_fid
*fid
= (struct btrfs_fid
*)fh
;
20 struct inode
*inode
= dentry
->d_inode
;
24 if ((len
< BTRFS_FID_SIZE_NON_CONNECTABLE
) ||
25 (connectable
&& len
< BTRFS_FID_SIZE_CONNECTABLE
))
28 len
= BTRFS_FID_SIZE_NON_CONNECTABLE
;
29 type
= FILEID_BTRFS_WITHOUT_PARENT
;
31 fid
->objectid
= BTRFS_I(inode
)->location
.objectid
;
32 fid
->root_objectid
= BTRFS_I(inode
)->root
->objectid
;
33 fid
->gen
= inode
->i_generation
;
35 if (connectable
&& !S_ISDIR(inode
->i_mode
)) {
39 spin_lock(&dentry
->d_lock
);
41 parent
= dentry
->d_parent
->d_inode
;
42 fid
->parent_objectid
= BTRFS_I(parent
)->location
.objectid
;
43 fid
->parent_gen
= parent
->i_generation
;
44 parent_root_id
= BTRFS_I(parent
)->root
->objectid
;
46 spin_unlock(&dentry
->d_lock
);
48 if (parent_root_id
!= fid
->root_objectid
) {
49 fid
->parent_root_objectid
= parent_root_id
;
50 len
= BTRFS_FID_SIZE_CONNECTABLE_ROOT
;
51 type
= FILEID_BTRFS_WITH_PARENT_ROOT
;
53 len
= BTRFS_FID_SIZE_CONNECTABLE
;
54 type
= FILEID_BTRFS_WITH_PARENT
;
62 static struct dentry
*btrfs_get_dentry(struct super_block
*sb
, u64 objectid
,
63 u64 root_objectid
, u32 generation
)
65 struct btrfs_root
*root
;
69 key
.objectid
= root_objectid
;
70 btrfs_set_key_type(&key
, BTRFS_ROOT_ITEM_KEY
);
73 root
= btrfs_read_fs_root_no_name(btrfs_sb(sb
)->fs_info
, &key
);
75 return ERR_CAST(root
);
77 key
.objectid
= objectid
;
78 btrfs_set_key_type(&key
, BTRFS_INODE_ITEM_KEY
);
81 inode
= btrfs_iget(sb
, &key
, root
, NULL
);
85 if (generation
!= inode
->i_generation
) {
87 return ERR_PTR(-ESTALE
);
90 return d_obtain_alias(inode
);
93 static struct dentry
*btrfs_fh_to_parent(struct super_block
*sb
, struct fid
*fh
,
94 int fh_len
, int fh_type
)
96 struct btrfs_fid
*fid
= (struct btrfs_fid
*) fh
;
97 u64 objectid
, root_objectid
;
100 if (fh_type
== FILEID_BTRFS_WITH_PARENT
) {
101 if (fh_len
!= BTRFS_FID_SIZE_CONNECTABLE
)
103 root_objectid
= fid
->root_objectid
;
104 } else if (fh_type
== FILEID_BTRFS_WITH_PARENT_ROOT
) {
105 if (fh_len
!= BTRFS_FID_SIZE_CONNECTABLE_ROOT
)
107 root_objectid
= fid
->parent_root_objectid
;
111 objectid
= fid
->parent_objectid
;
112 generation
= fid
->parent_gen
;
114 return btrfs_get_dentry(sb
, objectid
, root_objectid
, generation
);
117 static struct dentry
*btrfs_fh_to_dentry(struct super_block
*sb
, struct fid
*fh
,
118 int fh_len
, int fh_type
)
120 struct btrfs_fid
*fid
= (struct btrfs_fid
*) fh
;
121 u64 objectid
, root_objectid
;
124 if ((fh_type
!= FILEID_BTRFS_WITH_PARENT
||
125 fh_len
!= BTRFS_FID_SIZE_CONNECTABLE
) &&
126 (fh_type
!= FILEID_BTRFS_WITH_PARENT_ROOT
||
127 fh_len
!= BTRFS_FID_SIZE_CONNECTABLE_ROOT
) &&
128 (fh_type
!= FILEID_BTRFS_WITHOUT_PARENT
||
129 fh_len
!= BTRFS_FID_SIZE_NON_CONNECTABLE
))
132 objectid
= fid
->objectid
;
133 root_objectid
= fid
->root_objectid
;
134 generation
= fid
->gen
;
136 return btrfs_get_dentry(sb
, objectid
, root_objectid
, generation
);
139 static struct dentry
*btrfs_get_parent(struct dentry
*child
)
141 struct inode
*dir
= child
->d_inode
;
142 struct btrfs_root
*root
= BTRFS_I(dir
)->root
;
143 struct btrfs_key key
;
144 struct btrfs_path
*path
;
145 struct extent_buffer
*leaf
;
150 path
= btrfs_alloc_path();
152 key
.objectid
= dir
->i_ino
;
153 btrfs_set_key_type(&key
, BTRFS_INODE_REF_KEY
);
154 key
.offset
= (u64
)-1;
156 ret
= btrfs_search_slot(NULL
, root
, &key
, path
, 0, 0);
159 btrfs_free_path(path
);
162 leaf
= path
->nodes
[0];
163 slot
= path
->slots
[0];
165 /* btrfs_search_slot() returns the slot where we'd want to
166 insert a backref for parent inode #0xFFFFFFFFFFFFFFFF.
167 The _real_ backref, telling us what the parent inode
168 _actually_ is, will be in the slot _before_ the one
169 that btrfs_search_slot() returns. */
171 /* Unless there is _no_ key in the tree before... */
172 btrfs_free_path(path
);
173 return ERR_PTR(-EIO
);
178 btrfs_item_key_to_cpu(leaf
, &key
, slot
);
179 btrfs_free_path(path
);
181 if (key
.objectid
!= dir
->i_ino
|| key
.type
!= BTRFS_INODE_REF_KEY
)
182 return ERR_PTR(-EINVAL
);
184 objectid
= key
.offset
;
186 /* If we are already at the root of a subvol, return the real root */
187 if (objectid
== dir
->i_ino
)
188 return dget(dir
->i_sb
->s_root
);
190 /* Build a new key for the inode item */
191 key
.objectid
= objectid
;
192 btrfs_set_key_type(&key
, BTRFS_INODE_ITEM_KEY
);
195 return d_obtain_alias(btrfs_iget(root
->fs_info
->sb
, &key
, root
, NULL
));
198 const struct export_operations btrfs_export_ops
= {
199 .encode_fh
= btrfs_encode_fh
,
200 .fh_to_dentry
= btrfs_fh_to_dentry
,
201 .fh_to_parent
= btrfs_fh_to_parent
,
202 .get_parent
= btrfs_get_parent
,