blob: b4e7b8775315e34dd70ad60b935875d3ed274b1c [file] [log] [blame]
David Teiglandb3b94fa2006-01-16 16:50:04 +00001/*
2 * Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved.
Steven Whitehouse3a8a9a12006-05-18 15:09:15 -04003 * Copyright (C) 2004-2006 Red Hat, Inc. All rights reserved.
David Teiglandb3b94fa2006-01-16 16:50:04 +00004 *
5 * This copyrighted material is made available to anyone wishing to use,
6 * modify, copy, or redistribute it subject to the terms and conditions
Steven Whitehousee9fc2aa2006-09-01 11:05:15 -04007 * of the GNU General Public License version 2.
David Teiglandb3b94fa2006-01-16 16:50:04 +00008 */
9
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>
Steven Whitehouse5c676f62006-02-27 17:23:27 -050015#include <linux/gfs2_ondisk.h>
Steven Whitehouse71b86f52006-03-28 14:14:04 -050016#include <linux/crc32.h>
Fabio Massimo Di Nitto7d308592006-09-19 07:56:29 +020017#include <linux/lm_interface.h>
David Teiglandb3b94fa2006-01-16 16:50:04 +000018
19#include "gfs2.h"
Steven Whitehouse5c676f62006-02-27 17:23:27 -050020#include "incore.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000021#include "dir.h"
22#include "glock.h"
23#include "glops.h"
24#include "inode.h"
25#include "ops_export.h"
26#include "rgrp.h"
Steven Whitehousec7526662006-03-20 12:30:04 -050027#include "util.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000028
29static struct dentry *gfs2_decode_fh(struct super_block *sb,
Al Virob44b84d2006-10-14 10:46:30 -040030 __u32 *p,
David Teiglandb3b94fa2006-01-16 16:50:04 +000031 int fh_len,
32 int fh_type,
33 int (*acceptable)(void *context,
34 struct dentry *dentry),
35 void *context)
36{
Al Virob44b84d2006-10-14 10:46:30 -040037 __be32 *fh = (__force __be32 *)p;
Wendy Cheng2eb168c2006-07-11 13:28:53 -040038 struct gfs2_fh_obj fh_obj;
Al Viro629a21e2006-10-13 22:51:24 -040039 struct gfs2_inum_host *this, parent;
David Teiglandb3b94fa2006-01-16 16:50:04 +000040
David Teiglandb3b94fa2006-01-16 16:50:04 +000041 if (fh_type != fh_len)
42 return NULL;
43
Wendy Cheng2eb168c2006-07-11 13:28:53 -040044 this = &fh_obj.this;
45 fh_obj.imode = DT_UNKNOWN;
David Teiglandb3b94fa2006-01-16 16:50:04 +000046 memset(&parent, 0, sizeof(struct gfs2_inum));
47
48 switch (fh_type) {
Steven Whitehouse5acd3962006-09-04 16:16:45 -040049 case GFS2_LARGE_FH_SIZE:
Steven Whitehousecd915492006-09-04 12:49:07 -040050 parent.no_formal_ino = ((u64)be32_to_cpu(fh[4])) << 32;
David Teiglandb3b94fa2006-01-16 16:50:04 +000051 parent.no_formal_ino |= be32_to_cpu(fh[5]);
Steven Whitehousecd915492006-09-04 12:49:07 -040052 parent.no_addr = ((u64)be32_to_cpu(fh[6])) << 32;
David Teiglandb3b94fa2006-01-16 16:50:04 +000053 parent.no_addr |= be32_to_cpu(fh[7]);
Wendy Cheng2eb168c2006-07-11 13:28:53 -040054 fh_obj.imode = be32_to_cpu(fh[8]);
Steven Whitehouse5acd3962006-09-04 16:16:45 -040055 case GFS2_SMALL_FH_SIZE:
Steven Whitehousecd915492006-09-04 12:49:07 -040056 this->no_formal_ino = ((u64)be32_to_cpu(fh[0])) << 32;
Wendy Cheng2eb168c2006-07-11 13:28:53 -040057 this->no_formal_ino |= be32_to_cpu(fh[1]);
Steven Whitehousecd915492006-09-04 12:49:07 -040058 this->no_addr = ((u64)be32_to_cpu(fh[2])) << 32;
Wendy Cheng2eb168c2006-07-11 13:28:53 -040059 this->no_addr |= be32_to_cpu(fh[3]);
David Teiglandb3b94fa2006-01-16 16:50:04 +000060 break;
61 default:
62 return NULL;
63 }
64
Wendy Cheng2eb168c2006-07-11 13:28:53 -040065 return gfs2_export_ops.find_exported_dentry(sb, &fh_obj, &parent,
David Teiglandb3b94fa2006-01-16 16:50:04 +000066 acceptable, context);
67}
68
Al Virob44b84d2006-10-14 10:46:30 -040069static int gfs2_encode_fh(struct dentry *dentry, __u32 *p, int *len,
David Teiglandb3b94fa2006-01-16 16:50:04 +000070 int connectable)
71{
Al Virob44b84d2006-10-14 10:46:30 -040072 __be32 *fh = (__force __be32 *)p;
David Teiglandb3b94fa2006-01-16 16:50:04 +000073 struct inode *inode = dentry->d_inode;
Steven Whitehousec9fd4302006-03-01 15:31:02 -050074 struct super_block *sb = inode->i_sb;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -040075 struct gfs2_inode *ip = GFS2_I(inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +000076
Steven Whitehouse5acd3962006-09-04 16:16:45 -040077 if (*len < GFS2_SMALL_FH_SIZE ||
78 (connectable && *len < GFS2_LARGE_FH_SIZE))
David Teiglandb3b94fa2006-01-16 16:50:04 +000079 return 255;
80
Al Virob44b84d2006-10-14 10:46:30 -040081 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);
Steven Whitehouse5acd3962006-09-04 16:16:45 -040085 *len = GFS2_SMALL_FH_SIZE;
David Teiglandb3b94fa2006-01-16 16:50:04 +000086
Steven Whitehousec9fd4302006-03-01 15:31:02 -050087 if (!connectable || inode == sb->s_root->d_inode)
David Teiglandb3b94fa2006-01-16 16:50:04 +000088 return *len;
89
90 spin_lock(&dentry->d_lock);
91 inode = dentry->d_parent->d_inode;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -040092 ip = GFS2_I(inode);
93 igrab(inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +000094 spin_unlock(&dentry->d_lock);
95
Al Virob44b84d2006-10-14 10:46:30 -040096 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);
Wendy Cheng2eb168c2006-07-11 13:28:53 -0400100
101 fh[8] = cpu_to_be32(inode->i_mode);
102 fh[9] = 0; /* pad to double word */
Steven Whitehouse5acd3962006-09-04 16:16:45 -0400103 *len = GFS2_LARGE_FH_SIZE;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000104
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400105 iput(inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000106
107 return *len;
108}
109
110struct get_name_filldir {
Al Viro629a21e2006-10-13 22:51:24 -0400111 struct gfs2_inum_host inum;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000112 char *name;
113};
114
115static int get_name_filldir(void *opaque, const char *name, unsigned int length,
Al Viro629a21e2006-10-13 22:51:24 -0400116 u64 offset, struct gfs2_inum_host *inum,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000117 unsigned int type)
118{
119 struct get_name_filldir *gnfd = (struct get_name_filldir *)opaque;
120
121 if (!gfs2_inum_equal(inum, &gnfd->inum))
122 return 0;
123
124 memcpy(gnfd->name, name, length);
125 gnfd->name[length] = 0;
126
127 return 1;
128}
129
130static int gfs2_get_name(struct dentry *parent, char *name,
131 struct dentry *child)
132{
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;
Steven Whitehousecd915492006-09-04 12:49:07 -0400138 u64 offset = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000139 int error;
140
141 if (!dir)
142 return -EINVAL;
143
David Teiglandb3b94fa2006-01-16 16:50:04 +0000144 if (!S_ISDIR(dir->i_mode) || !inode)
145 return -EINVAL;
146
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400147 dip = GFS2_I(dir);
148 ip = GFS2_I(inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000149
150 *name = 0;
151 gnfd.inum = ip->i_num;
152 gnfd.name = name;
153
154 error = gfs2_glock_nq_init(dip->i_gl, LM_ST_SHARED, 0, &gh);
155 if (error)
156 return error;
157
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500158 error = gfs2_dir_read(dir, &offset, &gnfd, get_name_filldir);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000159
160 gfs2_glock_dq_uninit(&gh);
161
162 if (!error && !*name)
163 error = -ENOENT;
164
165 return error;
166}
167
168static struct dentry *gfs2_get_parent(struct dentry *child)
169{
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500170 struct qstr dotdot;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000171 struct inode *inode;
172 struct dentry *dentry;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000173
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500174 gfs2_str2qstr(&dotdot, "..");
Steven Whitehousec7526662006-03-20 12:30:04 -0500175 inode = gfs2_lookupi(child->d_inode, &dotdot, 1, NULL);
176
177 if (!inode)
178 return ERR_PTR(-ENOENT);
Steven Whitehouse7b625362006-09-05 15:56:17 -0400179 /*
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.
182 */
Steven Whitehousec7526662006-03-20 12:30:04 -0500183 if (IS_ERR(inode))
184 return ERR_PTR(PTR_ERR(inode));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000185
David Teiglandb3b94fa2006-01-16 16:50:04 +0000186 dentry = d_alloc_anon(inode);
187 if (!dentry) {
188 iput(inode);
189 return ERR_PTR(-ENOMEM);
190 }
191
192 return dentry;
193}
194
Wendy Cheng2eb168c2006-07-11 13:28:53 -0400195static struct dentry *gfs2_get_dentry(struct super_block *sb, void *inum_obj)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000196{
Steven Whitehouse5c676f62006-02-27 17:23:27 -0500197 struct gfs2_sbd *sdp = sb->s_fs_info;
Wendy Cheng2eb168c2006-07-11 13:28:53 -0400198 struct gfs2_fh_obj *fh_obj = (struct gfs2_fh_obj *)inum_obj;
Al Viro629a21e2006-10-13 22:51:24 -0400199 struct gfs2_inum_host *inum = &fh_obj->this;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000200 struct gfs2_holder i_gh, ri_gh, rgd_gh;
201 struct gfs2_rgrpd *rgd;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000202 struct inode *inode;
203 struct dentry *dentry;
204 int error;
205
David Teiglandb3b94fa2006-01-16 16:50:04 +0000206 /* System files? */
207
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400208 inode = gfs2_ilookup(sb, inum);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000209 if (inode) {
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400210 if (GFS2_I(inode)->i_num.no_formal_ino != inum->no_formal_ino) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000211 iput(inode);
212 return ERR_PTR(-ESTALE);
213 }
214 goto out_inode;
215 }
216
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400217 error = gfs2_glock_nq_num(sdp, inum->no_addr, &gfs2_inode_glops,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000218 LM_ST_SHARED, LM_FLAG_ANY | GL_LOCAL_EXCL,
219 &i_gh);
220 if (error)
221 return ERR_PTR(error);
222
David Teiglandb3b94fa2006-01-16 16:50:04 +0000223 error = gfs2_rindex_hold(sdp, &ri_gh);
224 if (error)
225 goto fail;
226
227 error = -EINVAL;
228 rgd = gfs2_blk2rgrpd(sdp, inum->no_addr);
229 if (!rgd)
230 goto fail_rindex;
231
232 error = gfs2_glock_nq_init(rgd->rd_gl, LM_ST_SHARED, 0, &rgd_gh);
233 if (error)
234 goto fail_rindex;
235
236 error = -ESTALE;
237 if (gfs2_get_block_type(rgd, inum->no_addr) != GFS2_BLKST_DINODE)
238 goto fail_rgd;
239
240 gfs2_glock_dq_uninit(&rgd_gh);
241 gfs2_glock_dq_uninit(&ri_gh);
242
Wendy Cheng2eb168c2006-07-11 13:28:53 -0400243 inode = gfs2_inode_lookup(sb, inum, fh_obj->imode);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400244 if (!inode)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000245 goto fail;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400246 if (IS_ERR(inode)) {
247 error = PTR_ERR(inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000248 goto fail;
249 }
250
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400251 error = gfs2_inode_refresh(GFS2_I(inode));
252 if (error) {
253 iput(inode);
254 goto fail;
255 }
256
David Teiglandb3b94fa2006-01-16 16:50:04 +0000257 error = -EIO;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400258 if (GFS2_I(inode)->i_di.di_flags & GFS2_DIF_SYSTEM) {
259 iput(inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000260 goto fail;
261 }
262
263 gfs2_glock_dq_uninit(&i_gh);
264
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400265out_inode:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000266 dentry = d_alloc_anon(inode);
267 if (!dentry) {
268 iput(inode);
269 return ERR_PTR(-ENOMEM);
270 }
271
272 return dentry;
273
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400274fail_rgd:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000275 gfs2_glock_dq_uninit(&rgd_gh);
276
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400277fail_rindex:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000278 gfs2_glock_dq_uninit(&ri_gh);
279
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400280fail:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000281 gfs2_glock_dq_uninit(&i_gh);
282 return ERR_PTR(error);
283}
284
285struct 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,
291};
292