2 * Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved.
3 * Copyright (C) 2004-2006 Red Hat, Inc. All rights reserved.
5 * This copyrighted material is made available to anyone wishing to use,
6 * modify, copy, or redistribute it subject to the terms and conditions
7 * of the GNU General Public License version 2.
10 #include <linux/sched.h>
11 #include <linux/slab.h>
12 #include <linux/spinlock.h>
13 #include <linux/completion.h>
14 #include <linux/buffer_head.h>
15 #include <linux/gfs2_ondisk.h>
16 #include <linux/crc32.h>
17 #include <linux/lm_interface.h>
25 #include "ops_export.h"
29 static struct dentry
*gfs2_decode_fh(struct super_block
*sb
,
33 int (*acceptable
)(void *context
,
34 struct dentry
*dentry
),
37 __be32
*fh
= (__force __be32
*)p
;
38 struct gfs2_fh_obj fh_obj
;
39 struct gfs2_inum_host
*this, parent
;
41 if (fh_type
!= fh_len
)
45 fh_obj
.imode
= DT_UNKNOWN
;
46 memset(&parent
, 0, sizeof(struct gfs2_inum
));
49 case GFS2_LARGE_FH_SIZE
:
50 parent
.no_formal_ino
= ((u64
)be32_to_cpu(fh
[4])) << 32;
51 parent
.no_formal_ino
|= be32_to_cpu(fh
[5]);
52 parent
.no_addr
= ((u64
)be32_to_cpu(fh
[6])) << 32;
53 parent
.no_addr
|= be32_to_cpu(fh
[7]);
54 fh_obj
.imode
= be32_to_cpu(fh
[8]);
55 case GFS2_SMALL_FH_SIZE
:
56 this->no_formal_ino
= ((u64
)be32_to_cpu(fh
[0])) << 32;
57 this->no_formal_ino
|= be32_to_cpu(fh
[1]);
58 this->no_addr
= ((u64
)be32_to_cpu(fh
[2])) << 32;
59 this->no_addr
|= be32_to_cpu(fh
[3]);
65 return gfs2_export_ops
.find_exported_dentry(sb
, &fh_obj
, &parent
,
69 static int gfs2_encode_fh(struct dentry
*dentry
, __u32
*p
, int *len
,
72 __be32
*fh
= (__force __be32
*)p
;
73 struct inode
*inode
= dentry
->d_inode
;
74 struct super_block
*sb
= inode
->i_sb
;
75 struct gfs2_inode
*ip
= GFS2_I(inode
);
77 if (*len
< GFS2_SMALL_FH_SIZE
||
78 (connectable
&& *len
< GFS2_LARGE_FH_SIZE
))
81 fh
[0] = cpu_to_be32(ip
->i_num
.no_formal_ino
>> 32);
82 fh
[1] = cpu_to_be32(ip
->i_num
.no_formal_ino
& 0xFFFFFFFF);
83 fh
[2] = cpu_to_be32(ip
->i_num
.no_addr
>> 32);
84 fh
[3] = cpu_to_be32(ip
->i_num
.no_addr
& 0xFFFFFFFF);
85 *len
= GFS2_SMALL_FH_SIZE
;
87 if (!connectable
|| inode
== sb
->s_root
->d_inode
)
90 spin_lock(&dentry
->d_lock
);
91 inode
= dentry
->d_parent
->d_inode
;
94 spin_unlock(&dentry
->d_lock
);
96 fh
[4] = cpu_to_be32(ip
->i_num
.no_formal_ino
>> 32);
97 fh
[5] = cpu_to_be32(ip
->i_num
.no_formal_ino
& 0xFFFFFFFF);
98 fh
[6] = cpu_to_be32(ip
->i_num
.no_addr
>> 32);
99 fh
[7] = cpu_to_be32(ip
->i_num
.no_addr
& 0xFFFFFFFF);
101 fh
[8] = cpu_to_be32(inode
->i_mode
);
102 fh
[9] = 0; /* pad to double word */
103 *len
= GFS2_LARGE_FH_SIZE
;
110 struct get_name_filldir
{
111 struct gfs2_inum_host inum
;
115 static int get_name_filldir(void *opaque
, const char *name
, unsigned int length
,
116 u64 offset
, struct gfs2_inum_host
*inum
,
119 struct get_name_filldir
*gnfd
= (struct get_name_filldir
*)opaque
;
121 if (!gfs2_inum_equal(inum
, &gnfd
->inum
))
124 memcpy(gnfd
->name
, name
, length
);
125 gnfd
->name
[length
] = 0;
130 static int gfs2_get_name(struct dentry
*parent
, char *name
,
131 struct dentry
*child
)
133 struct inode
*dir
= parent
->d_inode
;
134 struct inode
*inode
= child
->d_inode
;
135 struct gfs2_inode
*dip
, *ip
;
136 struct get_name_filldir gnfd
;
137 struct gfs2_holder gh
;
144 if (!S_ISDIR(dir
->i_mode
) || !inode
)
151 gnfd
.inum
= ip
->i_num
;
154 error
= gfs2_glock_nq_init(dip
->i_gl
, LM_ST_SHARED
, 0, &gh
);
158 error
= gfs2_dir_read(dir
, &offset
, &gnfd
, get_name_filldir
);
160 gfs2_glock_dq_uninit(&gh
);
162 if (!error
&& !*name
)
168 static struct dentry
*gfs2_get_parent(struct dentry
*child
)
172 struct dentry
*dentry
;
174 gfs2_str2qstr(&dotdot
, "..");
175 inode
= gfs2_lookupi(child
->d_inode
, &dotdot
, 1, NULL
);
178 return ERR_PTR(-ENOENT
);
180 * In case of an error, @inode carries the error value, and we
181 * have to return that as a(n invalid) pointer to dentry.
184 return ERR_PTR(PTR_ERR(inode
));
186 dentry
= d_alloc_anon(inode
);
189 return ERR_PTR(-ENOMEM
);
195 static struct dentry
*gfs2_get_dentry(struct super_block
*sb
, void *inum_obj
)
197 struct gfs2_sbd
*sdp
= sb
->s_fs_info
;
198 struct gfs2_fh_obj
*fh_obj
= (struct gfs2_fh_obj
*)inum_obj
;
199 struct gfs2_inum_host
*inum
= &fh_obj
->this;
200 struct gfs2_holder i_gh
, ri_gh
, rgd_gh
;
201 struct gfs2_rgrpd
*rgd
;
203 struct dentry
*dentry
;
208 inode
= gfs2_ilookup(sb
, inum
);
210 if (GFS2_I(inode
)->i_num
.no_formal_ino
!= inum
->no_formal_ino
) {
212 return ERR_PTR(-ESTALE
);
217 error
= gfs2_glock_nq_num(sdp
, inum
->no_addr
, &gfs2_inode_glops
,
218 LM_ST_SHARED
, LM_FLAG_ANY
| GL_LOCAL_EXCL
,
221 return ERR_PTR(error
);
223 error
= gfs2_rindex_hold(sdp
, &ri_gh
);
228 rgd
= gfs2_blk2rgrpd(sdp
, inum
->no_addr
);
232 error
= gfs2_glock_nq_init(rgd
->rd_gl
, LM_ST_SHARED
, 0, &rgd_gh
);
237 if (gfs2_get_block_type(rgd
, inum
->no_addr
) != GFS2_BLKST_DINODE
)
240 gfs2_glock_dq_uninit(&rgd_gh
);
241 gfs2_glock_dq_uninit(&ri_gh
);
243 inode
= gfs2_inode_lookup(sb
, inum
, fh_obj
->imode
);
247 error
= PTR_ERR(inode
);
251 error
= gfs2_inode_refresh(GFS2_I(inode
));
258 if (GFS2_I(inode
)->i_di
.di_flags
& GFS2_DIF_SYSTEM
) {
263 gfs2_glock_dq_uninit(&i_gh
);
266 dentry
= d_alloc_anon(inode
);
269 return ERR_PTR(-ENOMEM
);
275 gfs2_glock_dq_uninit(&rgd_gh
);
278 gfs2_glock_dq_uninit(&ri_gh
);
281 gfs2_glock_dq_uninit(&i_gh
);
282 return ERR_PTR(error
);
285 struct export_operations gfs2_export_ops
= {
286 .decode_fh
= gfs2_decode_fh
,
287 .encode_fh
= gfs2_encode_fh
,
288 .get_name
= gfs2_get_name
,
289 .get_parent
= gfs2_get_parent
,
290 .get_dentry
= gfs2_get_dentry
,