blob: aad918337a469136778f32e5367c3fb586da82b2 [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"
David Teiglandb3b94fa2006-01-16 16:50:04 +000025#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
Wendy Cheng2eb168c2006-07-11 13:28:53 -040041 this = &fh_obj.this;
42 fh_obj.imode = DT_UNKNOWN;
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]);
Wendy Cheng2eb168c2006-07-11 13:28:53 -040051 fh_obj.imode = be32_to_cpu(fh[8]);
Steven Whitehouse5acd3962006-09-04 16:16:45 -040052 case GFS2_SMALL_FH_SIZE:
Steven Whitehousecd915492006-09-04 12:49:07 -040053 this->no_formal_ino = ((u64)be32_to_cpu(fh[0])) << 32;
Wendy Cheng2eb168c2006-07-11 13:28:53 -040054 this->no_formal_ino |= be32_to_cpu(fh[1]);
Steven Whitehousecd915492006-09-04 12:49:07 -040055 this->no_addr = ((u64)be32_to_cpu(fh[2])) << 32;
Wendy Cheng2eb168c2006-07-11 13:28:53 -040056 this->no_addr |= be32_to_cpu(fh[3]);
David Teiglandb3b94fa2006-01-16 16:50:04 +000057 break;
58 default:
59 return NULL;
60 }
61
Wendy Cheng2eb168c2006-07-11 13:28:53 -040062 return gfs2_export_ops.find_exported_dentry(sb, &fh_obj, &parent,
David Teiglandb3b94fa2006-01-16 16:50:04 +000063 acceptable, context);
64}
65
Al Virob44b84d2006-10-14 10:46:30 -040066static int gfs2_encode_fh(struct dentry *dentry, __u32 *p, int *len,
David Teiglandb3b94fa2006-01-16 16:50:04 +000067 int connectable)
68{
Al Virob44b84d2006-10-14 10:46:30 -040069 __be32 *fh = (__force __be32 *)p;
David Teiglandb3b94fa2006-01-16 16:50:04 +000070 struct inode *inode = dentry->d_inode;
Steven Whitehousec9fd4302006-03-01 15:31:02 -050071 struct super_block *sb = inode->i_sb;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -040072 struct gfs2_inode *ip = GFS2_I(inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +000073
Steven Whitehouse5acd3962006-09-04 16:16:45 -040074 if (*len < GFS2_SMALL_FH_SIZE ||
75 (connectable && *len < GFS2_LARGE_FH_SIZE))
David Teiglandb3b94fa2006-01-16 16:50:04 +000076 return 255;
77
Al Virob44b84d2006-10-14 10:46:30 -040078 fh[0] = cpu_to_be32(ip->i_num.no_formal_ino >> 32);
79 fh[1] = cpu_to_be32(ip->i_num.no_formal_ino & 0xFFFFFFFF);
80 fh[2] = cpu_to_be32(ip->i_num.no_addr >> 32);
81 fh[3] = cpu_to_be32(ip->i_num.no_addr & 0xFFFFFFFF);
Steven Whitehouse5acd3962006-09-04 16:16:45 -040082 *len = GFS2_SMALL_FH_SIZE;
David Teiglandb3b94fa2006-01-16 16:50:04 +000083
Steven Whitehousec9fd4302006-03-01 15:31:02 -050084 if (!connectable || inode == sb->s_root->d_inode)
David Teiglandb3b94fa2006-01-16 16:50:04 +000085 return *len;
86
87 spin_lock(&dentry->d_lock);
88 inode = dentry->d_parent->d_inode;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -040089 ip = GFS2_I(inode);
90 igrab(inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +000091 spin_unlock(&dentry->d_lock);
92
Al Virob44b84d2006-10-14 10:46:30 -040093 fh[4] = cpu_to_be32(ip->i_num.no_formal_ino >> 32);
94 fh[5] = cpu_to_be32(ip->i_num.no_formal_ino & 0xFFFFFFFF);
95 fh[6] = cpu_to_be32(ip->i_num.no_addr >> 32);
96 fh[7] = cpu_to_be32(ip->i_num.no_addr & 0xFFFFFFFF);
Wendy Cheng2eb168c2006-07-11 13:28:53 -040097
98 fh[8] = cpu_to_be32(inode->i_mode);
99 fh[9] = 0; /* pad to double word */
Steven Whitehouse5acd3962006-09-04 16:16:45 -0400100 *len = GFS2_LARGE_FH_SIZE;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000101
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400102 iput(inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000103
104 return *len;
105}
106
107struct get_name_filldir {
Al Viro629a21e2006-10-13 22:51:24 -0400108 struct gfs2_inum_host inum;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000109 char *name;
110};
111
Steven Whitehouse3699e3a2007-01-17 15:09:20 +0000112static int get_name_filldir(void *opaque, const char *name, int length,
113 loff_t offset, u64 inum, unsigned int type)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000114{
Steven Whitehouse3699e3a2007-01-17 15:09:20 +0000115 struct get_name_filldir *gnfd = opaque;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000116
Steven Whitehouse3699e3a2007-01-17 15:09:20 +0000117 if (inum != gnfd->inum.no_addr)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000118 return 0;
119
120 memcpy(gnfd->name, name, length);
121 gnfd->name[length] = 0;
122
123 return 1;
124}
125
126static int gfs2_get_name(struct dentry *parent, char *name,
127 struct dentry *child)
128{
129 struct inode *dir = parent->d_inode;
130 struct inode *inode = child->d_inode;
131 struct gfs2_inode *dip, *ip;
132 struct get_name_filldir gnfd;
133 struct gfs2_holder gh;
Steven Whitehousecd915492006-09-04 12:49:07 -0400134 u64 offset = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000135 int error;
136
137 if (!dir)
138 return -EINVAL;
139
David Teiglandb3b94fa2006-01-16 16:50:04 +0000140 if (!S_ISDIR(dir->i_mode) || !inode)
141 return -EINVAL;
142
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400143 dip = GFS2_I(dir);
144 ip = GFS2_I(inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000145
146 *name = 0;
147 gnfd.inum = ip->i_num;
148 gnfd.name = name;
149
150 error = gfs2_glock_nq_init(dip->i_gl, LM_ST_SHARED, 0, &gh);
151 if (error)
152 return error;
153
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500154 error = gfs2_dir_read(dir, &offset, &gnfd, get_name_filldir);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000155
156 gfs2_glock_dq_uninit(&gh);
157
158 if (!error && !*name)
159 error = -ENOENT;
160
161 return error;
162}
163
164static struct dentry *gfs2_get_parent(struct dentry *child)
165{
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500166 struct qstr dotdot;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000167 struct inode *inode;
168 struct dentry *dentry;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000169
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500170 gfs2_str2qstr(&dotdot, "..");
Steven Whitehousec7526662006-03-20 12:30:04 -0500171 inode = gfs2_lookupi(child->d_inode, &dotdot, 1, NULL);
172
173 if (!inode)
174 return ERR_PTR(-ENOENT);
Steven Whitehouse7b625362006-09-05 15:56:17 -0400175 /*
176 * In case of an error, @inode carries the error value, and we
177 * have to return that as a(n invalid) pointer to dentry.
178 */
Steven Whitehousec7526662006-03-20 12:30:04 -0500179 if (IS_ERR(inode))
180 return ERR_PTR(PTR_ERR(inode));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000181
David Teiglandb3b94fa2006-01-16 16:50:04 +0000182 dentry = d_alloc_anon(inode);
183 if (!dentry) {
184 iput(inode);
185 return ERR_PTR(-ENOMEM);
186 }
187
Robert Peterson70831462007-01-11 13:25:00 -0600188 dentry->d_op = &gfs2_dops;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000189 return dentry;
190}
191
Wendy Cheng2eb168c2006-07-11 13:28:53 -0400192static struct dentry *gfs2_get_dentry(struct super_block *sb, void *inum_obj)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000193{
Steven Whitehouse5c676f62006-02-27 17:23:27 -0500194 struct gfs2_sbd *sdp = sb->s_fs_info;
Wendy Cheng2eb168c2006-07-11 13:28:53 -0400195 struct gfs2_fh_obj *fh_obj = (struct gfs2_fh_obj *)inum_obj;
Al Viro629a21e2006-10-13 22:51:24 -0400196 struct gfs2_inum_host *inum = &fh_obj->this;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000197 struct gfs2_holder i_gh, ri_gh, rgd_gh;
198 struct gfs2_rgrpd *rgd;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000199 struct inode *inode;
200 struct dentry *dentry;
201 int error;
202
David Teiglandb3b94fa2006-01-16 16:50:04 +0000203 /* System files? */
204
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400205 inode = gfs2_ilookup(sb, inum);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000206 if (inode) {
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400207 if (GFS2_I(inode)->i_num.no_formal_ino != inum->no_formal_ino) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000208 iput(inode);
209 return ERR_PTR(-ESTALE);
210 }
211 goto out_inode;
212 }
213
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400214 error = gfs2_glock_nq_num(sdp, inum->no_addr, &gfs2_inode_glops,
Steven Whitehouse1c0f4872007-01-22 12:10:39 -0500215 LM_ST_SHARED, LM_FLAG_ANY, &i_gh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000216 if (error)
217 return ERR_PTR(error);
218
David Teiglandb3b94fa2006-01-16 16:50:04 +0000219 error = gfs2_rindex_hold(sdp, &ri_gh);
220 if (error)
221 goto fail;
222
223 error = -EINVAL;
224 rgd = gfs2_blk2rgrpd(sdp, inum->no_addr);
225 if (!rgd)
226 goto fail_rindex;
227
228 error = gfs2_glock_nq_init(rgd->rd_gl, LM_ST_SHARED, 0, &rgd_gh);
229 if (error)
230 goto fail_rindex;
231
232 error = -ESTALE;
233 if (gfs2_get_block_type(rgd, inum->no_addr) != GFS2_BLKST_DINODE)
234 goto fail_rgd;
235
236 gfs2_glock_dq_uninit(&rgd_gh);
237 gfs2_glock_dq_uninit(&ri_gh);
238
Wendy Cheng2eb168c2006-07-11 13:28:53 -0400239 inode = gfs2_inode_lookup(sb, inum, fh_obj->imode);
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 }
252
David Teiglandb3b94fa2006-01-16 16:50:04 +0000253 error = -EIO;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400254 if (GFS2_I(inode)->i_di.di_flags & GFS2_DIF_SYSTEM) {
255 iput(inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000256 goto fail;
257 }
258
259 gfs2_glock_dq_uninit(&i_gh);
260
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400261out_inode:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000262 dentry = d_alloc_anon(inode);
263 if (!dentry) {
264 iput(inode);
265 return ERR_PTR(-ENOMEM);
266 }
267
Robert Peterson70831462007-01-11 13:25:00 -0600268 dentry->d_op = &gfs2_dops;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000269 return dentry;
270
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400271fail_rgd:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000272 gfs2_glock_dq_uninit(&rgd_gh);
273
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400274fail_rindex:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000275 gfs2_glock_dq_uninit(&ri_gh);
276
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400277fail:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000278 gfs2_glock_dq_uninit(&i_gh);
279 return ERR_PTR(error);
280}
281
282struct export_operations gfs2_export_ops = {
283 .decode_fh = gfs2_decode_fh,
284 .encode_fh = gfs2_encode_fh,
285 .get_name = gfs2_get_name,
286 .get_parent = gfs2_get_parent,
287 .get_dentry = gfs2_get_dentry,
288};
289