blob: e317db2a5548c35ff97d77097f1fe54a0fd90331 [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
David Teiglandb3b94fa2006-01-16 16:50:04 +000010#include <linux/slab.h>
11#include <linux/spinlock.h>
12#include <linux/completion.h>
13#include <linux/buffer_head.h>
Steven Whitehouse5c676f62006-02-27 17:23:27 -050014#include <linux/gfs2_ondisk.h>
Steven Whitehouse71b86f52006-03-28 14:14:04 -050015#include <linux/crc32.h>
Fabio Massimo Di Nitto7d308592006-09-19 07:56:29 +020016#include <linux/lm_interface.h>
David Teiglandb3b94fa2006-01-16 16:50:04 +000017
18#include "gfs2.h"
Steven Whitehouse5c676f62006-02-27 17:23:27 -050019#include "incore.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000020#include "dir.h"
21#include "glock.h"
22#include "glops.h"
23#include "inode.h"
Robert Peterson70831462007-01-11 13:25:00 -060024#include "ops_dentry.h"
Steven Whitehousebb8d8a62007-06-01 14:11:58 +010025#include "ops_fstype.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000026#include "rgrp.h"
Steven Whitehousec7526662006-03-20 12:30:04 -050027#include "util.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000028
Steven Whitehousebb8d8a62007-06-01 14:11:58 +010029#define GFS2_SMALL_FH_SIZE 4
Wendy Cheng35dcc522007-06-27 17:07:53 -040030#define GFS2_LARGE_FH_SIZE 8
Steven Whitehousebb8d8a62007-06-01 14:11:58 +010031
David Teiglandb3b94fa2006-01-16 16:50:04 +000032static struct dentry *gfs2_decode_fh(struct super_block *sb,
Al Virob44b84d2006-10-14 10:46:30 -040033 __u32 *p,
David Teiglandb3b94fa2006-01-16 16:50:04 +000034 int fh_len,
35 int fh_type,
36 int (*acceptable)(void *context,
37 struct dentry *dentry),
38 void *context)
39{
Al Virob44b84d2006-10-14 10:46:30 -040040 __be32 *fh = (__force __be32 *)p;
Wendy Cheng35dcc522007-06-27 17:07:53 -040041 struct gfs2_inum_host inum, parent;
David Teiglandb3b94fa2006-01-16 16:50:04 +000042
David Teiglandb3b94fa2006-01-16 16:50:04 +000043 memset(&parent, 0, sizeof(struct gfs2_inum));
44
Wendy Chenga7d2b2b2007-02-23 00:21:17 -050045 switch (fh_len) {
Steven Whitehouse5acd3962006-09-04 16:16:45 -040046 case GFS2_LARGE_FH_SIZE:
Steven Whitehousecd915492006-09-04 12:49:07 -040047 parent.no_formal_ino = ((u64)be32_to_cpu(fh[4])) << 32;
David Teiglandb3b94fa2006-01-16 16:50:04 +000048 parent.no_formal_ino |= be32_to_cpu(fh[5]);
Steven Whitehousecd915492006-09-04 12:49:07 -040049 parent.no_addr = ((u64)be32_to_cpu(fh[6])) << 32;
David Teiglandb3b94fa2006-01-16 16:50:04 +000050 parent.no_addr |= be32_to_cpu(fh[7]);
Steven Whitehouse5acd3962006-09-04 16:16:45 -040051 case GFS2_SMALL_FH_SIZE:
Wendy Cheng35dcc522007-06-27 17:07:53 -040052 inum.no_formal_ino = ((u64)be32_to_cpu(fh[0])) << 32;
53 inum.no_formal_ino |= be32_to_cpu(fh[1]);
54 inum.no_addr = ((u64)be32_to_cpu(fh[2])) << 32;
55 inum.no_addr |= be32_to_cpu(fh[3]);
David Teiglandb3b94fa2006-01-16 16:50:04 +000056 break;
57 default:
58 return NULL;
59 }
60
Wendy Cheng35dcc522007-06-27 17:07:53 -040061 return gfs2_export_ops.find_exported_dentry(sb, &inum, &parent,
David Teiglandb3b94fa2006-01-16 16:50:04 +000062 acceptable, context);
63}
64
Al Virob44b84d2006-10-14 10:46:30 -040065static int gfs2_encode_fh(struct dentry *dentry, __u32 *p, int *len,
David Teiglandb3b94fa2006-01-16 16:50:04 +000066 int connectable)
67{
Al Virob44b84d2006-10-14 10:46:30 -040068 __be32 *fh = (__force __be32 *)p;
David Teiglandb3b94fa2006-01-16 16:50:04 +000069 struct inode *inode = dentry->d_inode;
Steven Whitehousec9fd4302006-03-01 15:31:02 -050070 struct super_block *sb = inode->i_sb;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -040071 struct gfs2_inode *ip = GFS2_I(inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +000072
Steven Whitehouse5acd3962006-09-04 16:16:45 -040073 if (*len < GFS2_SMALL_FH_SIZE ||
74 (connectable && *len < GFS2_LARGE_FH_SIZE))
David Teiglandb3b94fa2006-01-16 16:50:04 +000075 return 255;
76
Steven Whitehousedbb7cae2007-05-15 15:37:50 +010077 fh[0] = cpu_to_be32(ip->i_no_formal_ino >> 32);
78 fh[1] = cpu_to_be32(ip->i_no_formal_ino & 0xFFFFFFFF);
79 fh[2] = cpu_to_be32(ip->i_no_addr >> 32);
80 fh[3] = cpu_to_be32(ip->i_no_addr & 0xFFFFFFFF);
Steven Whitehouse5acd3962006-09-04 16:16:45 -040081 *len = GFS2_SMALL_FH_SIZE;
David Teiglandb3b94fa2006-01-16 16:50:04 +000082
Steven Whitehousec9fd4302006-03-01 15:31:02 -050083 if (!connectable || inode == sb->s_root->d_inode)
David Teiglandb3b94fa2006-01-16 16:50:04 +000084 return *len;
85
86 spin_lock(&dentry->d_lock);
87 inode = dentry->d_parent->d_inode;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -040088 ip = GFS2_I(inode);
89 igrab(inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +000090 spin_unlock(&dentry->d_lock);
91
Steven Whitehousedbb7cae2007-05-15 15:37:50 +010092 fh[4] = cpu_to_be32(ip->i_no_formal_ino >> 32);
93 fh[5] = cpu_to_be32(ip->i_no_formal_ino & 0xFFFFFFFF);
94 fh[6] = cpu_to_be32(ip->i_no_addr >> 32);
95 fh[7] = cpu_to_be32(ip->i_no_addr & 0xFFFFFFFF);
Steven Whitehouse5acd3962006-09-04 16:16:45 -040096 *len = GFS2_LARGE_FH_SIZE;
David Teiglandb3b94fa2006-01-16 16:50:04 +000097
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -040098 iput(inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +000099
100 return *len;
101}
102
103struct get_name_filldir {
Al Viro629a21e2006-10-13 22:51:24 -0400104 struct gfs2_inum_host inum;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000105 char *name;
106};
107
Steven Whitehouse3699e3a2007-01-17 15:09:20 +0000108static int get_name_filldir(void *opaque, const char *name, int length,
109 loff_t offset, u64 inum, unsigned int type)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000110{
Steven Whitehouse3699e3a2007-01-17 15:09:20 +0000111 struct get_name_filldir *gnfd = opaque;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000112
Steven Whitehouse3699e3a2007-01-17 15:09:20 +0000113 if (inum != gnfd->inum.no_addr)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000114 return 0;
115
116 memcpy(gnfd->name, name, length);
117 gnfd->name[length] = 0;
118
119 return 1;
120}
121
122static int gfs2_get_name(struct dentry *parent, char *name,
123 struct dentry *child)
124{
125 struct inode *dir = parent->d_inode;
126 struct inode *inode = child->d_inode;
127 struct gfs2_inode *dip, *ip;
128 struct get_name_filldir gnfd;
129 struct gfs2_holder gh;
Steven Whitehousecd915492006-09-04 12:49:07 -0400130 u64 offset = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000131 int error;
132
133 if (!dir)
134 return -EINVAL;
135
David Teiglandb3b94fa2006-01-16 16:50:04 +0000136 if (!S_ISDIR(dir->i_mode) || !inode)
137 return -EINVAL;
138
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400139 dip = GFS2_I(dir);
140 ip = GFS2_I(inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000141
142 *name = 0;
Steven Whitehousedbb7cae2007-05-15 15:37:50 +0100143 gnfd.inum.no_addr = ip->i_no_addr;
144 gnfd.inum.no_formal_ino = ip->i_no_formal_ino;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000145 gnfd.name = name;
146
147 error = gfs2_glock_nq_init(dip->i_gl, LM_ST_SHARED, 0, &gh);
148 if (error)
149 return error;
150
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500151 error = gfs2_dir_read(dir, &offset, &gnfd, get_name_filldir);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000152
153 gfs2_glock_dq_uninit(&gh);
154
155 if (!error && !*name)
156 error = -ENOENT;
157
158 return error;
159}
160
161static struct dentry *gfs2_get_parent(struct dentry *child)
162{
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500163 struct qstr dotdot;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000164 struct inode *inode;
165 struct dentry *dentry;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000166
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500167 gfs2_str2qstr(&dotdot, "..");
Steven Whitehousec7526662006-03-20 12:30:04 -0500168 inode = gfs2_lookupi(child->d_inode, &dotdot, 1, NULL);
169
170 if (!inode)
171 return ERR_PTR(-ENOENT);
Steven Whitehouse7b625362006-09-05 15:56:17 -0400172 /*
173 * In case of an error, @inode carries the error value, and we
174 * have to return that as a(n invalid) pointer to dentry.
175 */
Steven Whitehousec7526662006-03-20 12:30:04 -0500176 if (IS_ERR(inode))
177 return ERR_PTR(PTR_ERR(inode));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000178
David Teiglandb3b94fa2006-01-16 16:50:04 +0000179 dentry = d_alloc_anon(inode);
180 if (!dentry) {
181 iput(inode);
182 return ERR_PTR(-ENOMEM);
183 }
184
Robert Peterson70831462007-01-11 13:25:00 -0600185 dentry->d_op = &gfs2_dops;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000186 return dentry;
187}
188
Wendy Cheng2eb168c2006-07-11 13:28:53 -0400189static struct dentry *gfs2_get_dentry(struct super_block *sb, void *inum_obj)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000190{
Steven Whitehouse5c676f62006-02-27 17:23:27 -0500191 struct gfs2_sbd *sdp = sb->s_fs_info;
Wendy Cheng35dcc522007-06-27 17:07:53 -0400192 struct gfs2_inum_host *inum = inum_obj;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000193 struct gfs2_holder i_gh, ri_gh, rgd_gh;
194 struct gfs2_rgrpd *rgd;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000195 struct inode *inode;
196 struct dentry *dentry;
197 int error;
198
David Teiglandb3b94fa2006-01-16 16:50:04 +0000199 /* System files? */
200
Steven Whitehousedbb7cae2007-05-15 15:37:50 +0100201 inode = gfs2_ilookup(sb, inum->no_addr);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000202 if (inode) {
Steven Whitehousedbb7cae2007-05-15 15:37:50 +0100203 if (GFS2_I(inode)->i_no_formal_ino != inum->no_formal_ino) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000204 iput(inode);
205 return ERR_PTR(-ESTALE);
206 }
207 goto out_inode;
208 }
209
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400210 error = gfs2_glock_nq_num(sdp, inum->no_addr, &gfs2_inode_glops,
Steven Whitehouse1c0f4872007-01-22 12:10:39 -0500211 LM_ST_SHARED, LM_FLAG_ANY, &i_gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000212 if (error)
213 return ERR_PTR(error);
214
David Teiglandb3b94fa2006-01-16 16:50:04 +0000215 error = gfs2_rindex_hold(sdp, &ri_gh);
216 if (error)
217 goto fail;
218
219 error = -EINVAL;
220 rgd = gfs2_blk2rgrpd(sdp, inum->no_addr);
221 if (!rgd)
222 goto fail_rindex;
223
224 error = gfs2_glock_nq_init(rgd->rd_gl, LM_ST_SHARED, 0, &rgd_gh);
225 if (error)
226 goto fail_rindex;
227
228 error = -ESTALE;
229 if (gfs2_get_block_type(rgd, inum->no_addr) != GFS2_BLKST_DINODE)
230 goto fail_rgd;
231
232 gfs2_glock_dq_uninit(&rgd_gh);
233 gfs2_glock_dq_uninit(&ri_gh);
234
Wendy Cheng35dcc522007-06-27 17:07:53 -0400235 inode = gfs2_inode_lookup(sb, DT_UNKNOWN,
Wendy Chengbb9bcf02007-06-27 17:07:08 -0400236 inum->no_addr,
Wendy Cheng35dcc522007-06-27 17:07:53 -0400237 0);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400238 if (!inode)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000239 goto fail;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400240 if (IS_ERR(inode)) {
241 error = PTR_ERR(inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000242 goto fail;
243 }
244
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400245 error = gfs2_inode_refresh(GFS2_I(inode));
246 if (error) {
247 iput(inode);
248 goto fail;
249 }
Wendy Cheng35dcc522007-06-27 17:07:53 -0400250
251 /* Pick up the works we bypass in gfs2_inode_lookup */
252 if (inode->i_state & I_NEW)
253 gfs2_set_iop(inode);
254
Steven Whitehousedbb7cae2007-05-15 15:37:50 +0100255 if (GFS2_I(inode)->i_no_formal_ino != inum->no_formal_ino) {
256 iput(inode);
257 goto fail;
258 }
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400259
David Teiglandb3b94fa2006-01-16 16:50:04 +0000260 error = -EIO;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400261 if (GFS2_I(inode)->i_di.di_flags & GFS2_DIF_SYSTEM) {
262 iput(inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000263 goto fail;
264 }
265
266 gfs2_glock_dq_uninit(&i_gh);
267
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400268out_inode:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000269 dentry = d_alloc_anon(inode);
270 if (!dentry) {
271 iput(inode);
272 return ERR_PTR(-ENOMEM);
273 }
274
Robert Peterson70831462007-01-11 13:25:00 -0600275 dentry->d_op = &gfs2_dops;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000276 return dentry;
277
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400278fail_rgd:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000279 gfs2_glock_dq_uninit(&rgd_gh);
280
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400281fail_rindex:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000282 gfs2_glock_dq_uninit(&ri_gh);
283
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400284fail:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000285 gfs2_glock_dq_uninit(&i_gh);
286 return ERR_PTR(error);
287}
288
289struct export_operations gfs2_export_ops = {
290 .decode_fh = gfs2_decode_fh,
291 .encode_fh = gfs2_encode_fh,
292 .get_name = gfs2_get_name,
293 .get_parent = gfs2_get_parent,
294 .get_dentry = gfs2_get_dentry,
295};
296