blob: 99ea5659bc2c58a5a41f482043ef25db8b6284ea [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 Whitehouse3ebf4492007-07-10 12:28:27 +010031#define GFS2_OLD_FH_SIZE 10
Steven Whitehousebb8d8a62007-06-01 14:11:58 +010032
David Teiglandb3b94fa2006-01-16 16:50:04 +000033static struct dentry *gfs2_decode_fh(struct super_block *sb,
Al Virob44b84d2006-10-14 10:46:30 -040034 __u32 *p,
David Teiglandb3b94fa2006-01-16 16:50:04 +000035 int fh_len,
36 int fh_type,
37 int (*acceptable)(void *context,
38 struct dentry *dentry),
39 void *context)
40{
Al Virob44b84d2006-10-14 10:46:30 -040041 __be32 *fh = (__force __be32 *)p;
Wendy Cheng35dcc522007-06-27 17:07:53 -040042 struct gfs2_inum_host inum, parent;
David Teiglandb3b94fa2006-01-16 16:50:04 +000043
David Teiglandb3b94fa2006-01-16 16:50:04 +000044 memset(&parent, 0, sizeof(struct gfs2_inum));
45
Wendy Chenga7d2b2b2007-02-23 00:21:17 -050046 switch (fh_len) {
Steven Whitehouse5acd3962006-09-04 16:16:45 -040047 case GFS2_LARGE_FH_SIZE:
Steven Whitehouse3ebf4492007-07-10 12:28:27 +010048 case GFS2_OLD_FH_SIZE:
Steven Whitehousecd915492006-09-04 12:49:07 -040049 parent.no_formal_ino = ((u64)be32_to_cpu(fh[4])) << 32;
David Teiglandb3b94fa2006-01-16 16:50:04 +000050 parent.no_formal_ino |= be32_to_cpu(fh[5]);
Steven Whitehousecd915492006-09-04 12:49:07 -040051 parent.no_addr = ((u64)be32_to_cpu(fh[6])) << 32;
David Teiglandb3b94fa2006-01-16 16:50:04 +000052 parent.no_addr |= be32_to_cpu(fh[7]);
Steven Whitehouse5acd3962006-09-04 16:16:45 -040053 case GFS2_SMALL_FH_SIZE:
Wendy Cheng35dcc522007-06-27 17:07:53 -040054 inum.no_formal_ino = ((u64)be32_to_cpu(fh[0])) << 32;
55 inum.no_formal_ino |= be32_to_cpu(fh[1]);
56 inum.no_addr = ((u64)be32_to_cpu(fh[2])) << 32;
57 inum.no_addr |= be32_to_cpu(fh[3]);
David Teiglandb3b94fa2006-01-16 16:50:04 +000058 break;
59 default:
60 return NULL;
61 }
62
Wendy Cheng35dcc522007-06-27 17:07:53 -040063 return gfs2_export_ops.find_exported_dentry(sb, &inum, &parent,
David Teiglandb3b94fa2006-01-16 16:50:04 +000064 acceptable, context);
65}
66
Al Virob44b84d2006-10-14 10:46:30 -040067static int gfs2_encode_fh(struct dentry *dentry, __u32 *p, int *len,
David Teiglandb3b94fa2006-01-16 16:50:04 +000068 int connectable)
69{
Al Virob44b84d2006-10-14 10:46:30 -040070 __be32 *fh = (__force __be32 *)p;
David Teiglandb3b94fa2006-01-16 16:50:04 +000071 struct inode *inode = dentry->d_inode;
Steven Whitehousec9fd4302006-03-01 15:31:02 -050072 struct super_block *sb = inode->i_sb;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -040073 struct gfs2_inode *ip = GFS2_I(inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +000074
Steven Whitehouse5acd3962006-09-04 16:16:45 -040075 if (*len < GFS2_SMALL_FH_SIZE ||
76 (connectable && *len < GFS2_LARGE_FH_SIZE))
David Teiglandb3b94fa2006-01-16 16:50:04 +000077 return 255;
78
Steven Whitehousedbb7cae2007-05-15 15:37:50 +010079 fh[0] = cpu_to_be32(ip->i_no_formal_ino >> 32);
80 fh[1] = cpu_to_be32(ip->i_no_formal_ino & 0xFFFFFFFF);
81 fh[2] = cpu_to_be32(ip->i_no_addr >> 32);
82 fh[3] = cpu_to_be32(ip->i_no_addr & 0xFFFFFFFF);
Steven Whitehouse5acd3962006-09-04 16:16:45 -040083 *len = GFS2_SMALL_FH_SIZE;
David Teiglandb3b94fa2006-01-16 16:50:04 +000084
Steven Whitehousec9fd4302006-03-01 15:31:02 -050085 if (!connectable || inode == sb->s_root->d_inode)
David Teiglandb3b94fa2006-01-16 16:50:04 +000086 return *len;
87
88 spin_lock(&dentry->d_lock);
89 inode = dentry->d_parent->d_inode;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -040090 ip = GFS2_I(inode);
91 igrab(inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +000092 spin_unlock(&dentry->d_lock);
93
Steven Whitehousedbb7cae2007-05-15 15:37:50 +010094 fh[4] = cpu_to_be32(ip->i_no_formal_ino >> 32);
95 fh[5] = cpu_to_be32(ip->i_no_formal_ino & 0xFFFFFFFF);
96 fh[6] = cpu_to_be32(ip->i_no_addr >> 32);
97 fh[7] = cpu_to_be32(ip->i_no_addr & 0xFFFFFFFF);
Steven Whitehouse5acd3962006-09-04 16:16:45 -040098 *len = GFS2_LARGE_FH_SIZE;
David Teiglandb3b94fa2006-01-16 16:50:04 +000099
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400100 iput(inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000101
102 return *len;
103}
104
105struct get_name_filldir {
Al Viro629a21e2006-10-13 22:51:24 -0400106 struct gfs2_inum_host inum;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000107 char *name;
108};
109
Steven Whitehouse3699e3a2007-01-17 15:09:20 +0000110static int get_name_filldir(void *opaque, const char *name, int length,
111 loff_t offset, u64 inum, unsigned int type)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000112{
Steven Whitehouse3699e3a2007-01-17 15:09:20 +0000113 struct get_name_filldir *gnfd = opaque;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000114
Steven Whitehouse3699e3a2007-01-17 15:09:20 +0000115 if (inum != gnfd->inum.no_addr)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000116 return 0;
117
118 memcpy(gnfd->name, name, length);
119 gnfd->name[length] = 0;
120
121 return 1;
122}
123
124static int gfs2_get_name(struct dentry *parent, char *name,
125 struct dentry *child)
126{
127 struct inode *dir = parent->d_inode;
128 struct inode *inode = child->d_inode;
129 struct gfs2_inode *dip, *ip;
130 struct get_name_filldir gnfd;
131 struct gfs2_holder gh;
Steven Whitehousecd915492006-09-04 12:49:07 -0400132 u64 offset = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000133 int error;
134
135 if (!dir)
136 return -EINVAL;
137
David Teiglandb3b94fa2006-01-16 16:50:04 +0000138 if (!S_ISDIR(dir->i_mode) || !inode)
139 return -EINVAL;
140
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400141 dip = GFS2_I(dir);
142 ip = GFS2_I(inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000143
144 *name = 0;
Steven Whitehousedbb7cae2007-05-15 15:37:50 +0100145 gnfd.inum.no_addr = ip->i_no_addr;
146 gnfd.inum.no_formal_ino = ip->i_no_formal_ino;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000147 gnfd.name = name;
148
149 error = gfs2_glock_nq_init(dip->i_gl, LM_ST_SHARED, 0, &gh);
150 if (error)
151 return error;
152
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500153 error = gfs2_dir_read(dir, &offset, &gnfd, get_name_filldir);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000154
155 gfs2_glock_dq_uninit(&gh);
156
157 if (!error && !*name)
158 error = -ENOENT;
159
160 return error;
161}
162
163static struct dentry *gfs2_get_parent(struct dentry *child)
164{
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500165 struct qstr dotdot;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000166 struct inode *inode;
167 struct dentry *dentry;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000168
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500169 gfs2_str2qstr(&dotdot, "..");
Steven Whitehousec7526662006-03-20 12:30:04 -0500170 inode = gfs2_lookupi(child->d_inode, &dotdot, 1, NULL);
171
172 if (!inode)
173 return ERR_PTR(-ENOENT);
Steven Whitehouse7b625362006-09-05 15:56:17 -0400174 /*
175 * In case of an error, @inode carries the error value, and we
176 * have to return that as a(n invalid) pointer to dentry.
177 */
Steven Whitehousec7526662006-03-20 12:30:04 -0500178 if (IS_ERR(inode))
179 return ERR_PTR(PTR_ERR(inode));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000180
David Teiglandb3b94fa2006-01-16 16:50:04 +0000181 dentry = d_alloc_anon(inode);
182 if (!dentry) {
183 iput(inode);
184 return ERR_PTR(-ENOMEM);
185 }
186
Robert Peterson70831462007-01-11 13:25:00 -0600187 dentry->d_op = &gfs2_dops;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000188 return dentry;
189}
190
Wendy Cheng2eb168c2006-07-11 13:28:53 -0400191static struct dentry *gfs2_get_dentry(struct super_block *sb, void *inum_obj)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000192{
Steven Whitehouse5c676f62006-02-27 17:23:27 -0500193 struct gfs2_sbd *sdp = sb->s_fs_info;
Wendy Cheng35dcc522007-06-27 17:07:53 -0400194 struct gfs2_inum_host *inum = inum_obj;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000195 struct gfs2_holder i_gh, ri_gh, rgd_gh;
196 struct gfs2_rgrpd *rgd;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000197 struct inode *inode;
198 struct dentry *dentry;
199 int error;
200
David Teiglandb3b94fa2006-01-16 16:50:04 +0000201 /* System files? */
202
Steven Whitehousedbb7cae2007-05-15 15:37:50 +0100203 inode = gfs2_ilookup(sb, inum->no_addr);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000204 if (inode) {
Steven Whitehousedbb7cae2007-05-15 15:37:50 +0100205 if (GFS2_I(inode)->i_no_formal_ino != inum->no_formal_ino) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000206 iput(inode);
207 return ERR_PTR(-ESTALE);
208 }
209 goto out_inode;
210 }
211
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400212 error = gfs2_glock_nq_num(sdp, inum->no_addr, &gfs2_inode_glops,
Steven Whitehouse1c0f4872007-01-22 12:10:39 -0500213 LM_ST_SHARED, LM_FLAG_ANY, &i_gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000214 if (error)
215 return ERR_PTR(error);
216
David Teiglandb3b94fa2006-01-16 16:50:04 +0000217 error = gfs2_rindex_hold(sdp, &ri_gh);
218 if (error)
219 goto fail;
220
221 error = -EINVAL;
222 rgd = gfs2_blk2rgrpd(sdp, inum->no_addr);
223 if (!rgd)
224 goto fail_rindex;
225
226 error = gfs2_glock_nq_init(rgd->rd_gl, LM_ST_SHARED, 0, &rgd_gh);
227 if (error)
228 goto fail_rindex;
229
230 error = -ESTALE;
231 if (gfs2_get_block_type(rgd, inum->no_addr) != GFS2_BLKST_DINODE)
232 goto fail_rgd;
233
234 gfs2_glock_dq_uninit(&rgd_gh);
235 gfs2_glock_dq_uninit(&ri_gh);
236
Wendy Cheng35dcc522007-06-27 17:07:53 -0400237 inode = gfs2_inode_lookup(sb, DT_UNKNOWN,
Wendy Chengbb9bcf02007-06-27 17:07:08 -0400238 inum->no_addr,
Wendy Cheng35dcc522007-06-27 17:07:53 -0400239 0);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400240 if (!inode)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000241 goto fail;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400242 if (IS_ERR(inode)) {
243 error = PTR_ERR(inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000244 goto fail;
245 }
246
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400247 error = gfs2_inode_refresh(GFS2_I(inode));
248 if (error) {
249 iput(inode);
250 goto fail;
251 }
Wendy Cheng35dcc522007-06-27 17:07:53 -0400252
253 /* Pick up the works we bypass in gfs2_inode_lookup */
254 if (inode->i_state & I_NEW)
255 gfs2_set_iop(inode);
256
Steven Whitehousedbb7cae2007-05-15 15:37:50 +0100257 if (GFS2_I(inode)->i_no_formal_ino != inum->no_formal_ino) {
258 iput(inode);
259 goto fail;
260 }
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400261
David Teiglandb3b94fa2006-01-16 16:50:04 +0000262 error = -EIO;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400263 if (GFS2_I(inode)->i_di.di_flags & GFS2_DIF_SYSTEM) {
264 iput(inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000265 goto fail;
266 }
267
268 gfs2_glock_dq_uninit(&i_gh);
269
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400270out_inode:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000271 dentry = d_alloc_anon(inode);
272 if (!dentry) {
273 iput(inode);
274 return ERR_PTR(-ENOMEM);
275 }
276
Robert Peterson70831462007-01-11 13:25:00 -0600277 dentry->d_op = &gfs2_dops;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000278 return dentry;
279
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400280fail_rgd:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000281 gfs2_glock_dq_uninit(&rgd_gh);
282
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400283fail_rindex:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000284 gfs2_glock_dq_uninit(&ri_gh);
285
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400286fail:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000287 gfs2_glock_dq_uninit(&i_gh);
288 return ERR_PTR(error);
289}
290
291struct export_operations gfs2_export_ops = {
292 .decode_fh = gfs2_decode_fh,
293 .encode_fh = gfs2_encode_fh,
294 .get_name = gfs2_get_name,
295 .get_parent = gfs2_get_parent,
296 .get_dentry = gfs2_get_dentry,
297};
298