blob: c65b748688ff6917c56f726a6a2d77e623aa1c76 [file] [log] [blame]
Christoph Hellwige38f9812007-10-21 16:42:19 -07001/*
2 * Copyright (C) Neil Brown 2002
3 * Copyright (C) Christoph Hellwig 2007
4 *
5 * This file contains the code mapping from inodes to NFS file handles,
6 * and for mapping back from file handles to dentries.
7 *
8 * For details on why we do all the strange and hairy things in here
J. Bruce Fieldsdc7a0812009-10-27 14:41:35 -04009 * take a look at Documentation/filesystems/nfs/Exporting.
Christoph Hellwige38f9812007-10-21 16:42:19 -070010 */
Christoph Hellwiga5694252007-07-17 04:04:28 -070011#include <linux/exportfs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include <linux/fs.h>
13#include <linux/file.h>
14#include <linux/module.h>
Christoph Hellwigd37065c2007-07-17 04:04:30 -070015#include <linux/mount.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/namei.h>
David Howells745ca242008-11-14 10:39:22 +110017#include <linux/sched.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#define dprintk(fmt, args...) do{}while(0)
20
Christoph Hellwig10f11c32007-07-17 04:04:31 -070021
Al Viro765927b2012-06-26 21:58:53 +040022static int get_name(const struct path *path, char *name, struct dentry *child);
Christoph Hellwig10f11c32007-07-17 04:04:31 -070023
24
Christoph Hellwige38f9812007-10-21 16:42:19 -070025static int exportfs_get_name(struct vfsmount *mnt, struct dentry *dir,
26 char *name, struct dentry *child)
Christoph Hellwig10f11c32007-07-17 04:04:31 -070027{
Christoph Hellwig39655162007-10-21 16:42:17 -070028 const struct export_operations *nop = dir->d_sb->s_export_op;
Al Viro765927b2012-06-26 21:58:53 +040029 struct path path = {.mnt = mnt, .dentry = dir};
Christoph Hellwig10f11c32007-07-17 04:04:31 -070030
31 if (nop->get_name)
32 return nop->get_name(dir, name, child);
33 else
Al Viro765927b2012-06-26 21:58:53 +040034 return get_name(&path, name, child);
Christoph Hellwig10f11c32007-07-17 04:04:31 -070035}
36
Christoph Hellwigfb66a192007-07-17 04:04:32 -070037/*
38 * Check if the dentry or any of it's aliases is acceptable.
39 */
Christoph Hellwige2f99012006-01-18 17:43:52 -080040static struct dentry *
41find_acceptable_alias(struct dentry *result,
42 int (*acceptable)(void *context, struct dentry *dentry),
43 void *context)
44{
45 struct dentry *dentry, *toput = NULL;
Nick Piggin873feea2011-01-07 17:50:06 +110046 struct inode *inode;
Christoph Hellwige2f99012006-01-18 17:43:52 -080047
Christoph Hellwigfb66a192007-07-17 04:04:32 -070048 if (acceptable(context, result))
49 return result;
50
Nick Piggin873feea2011-01-07 17:50:06 +110051 inode = result->d_inode;
52 spin_lock(&inode->i_lock);
Sasha Levinb67bfe02013-02-27 17:06:00 -080053 hlist_for_each_entry(dentry, &inode->i_dentry, d_alias) {
Nick Piggindc0474b2011-01-07 17:49:43 +110054 dget(dentry);
Nick Piggin873feea2011-01-07 17:50:06 +110055 spin_unlock(&inode->i_lock);
Christoph Hellwige2f99012006-01-18 17:43:52 -080056 if (toput)
57 dput(toput);
58 if (dentry != result && acceptable(context, dentry)) {
59 dput(result);
60 return dentry;
61 }
Nick Piggin873feea2011-01-07 17:50:06 +110062 spin_lock(&inode->i_lock);
Christoph Hellwige2f99012006-01-18 17:43:52 -080063 toput = dentry;
64 }
Nick Piggin873feea2011-01-07 17:50:06 +110065 spin_unlock(&inode->i_lock);
Christoph Hellwige2f99012006-01-18 17:43:52 -080066
67 if (toput)
68 dput(toput);
69 return NULL;
70}
71
Christoph Hellwigdd90b502007-07-17 04:04:32 -070072/*
73 * Find root of a disconnected subtree and return a reference to it.
74 */
75static struct dentry *
76find_disconnected_root(struct dentry *dentry)
77{
78 dget(dentry);
Christoph Hellwig0461ee22010-10-13 11:56:37 -040079 while (!IS_ROOT(dentry)) {
80 struct dentry *parent = dget_parent(dentry);
81
82 if (!(parent->d_flags & DCACHE_DISCONNECTED)) {
83 dput(parent);
84 break;
85 }
86
Christoph Hellwigdd90b502007-07-17 04:04:32 -070087 dput(dentry);
88 dentry = parent;
Christoph Hellwigdd90b502007-07-17 04:04:32 -070089 }
Christoph Hellwigdd90b502007-07-17 04:04:32 -070090 return dentry;
91}
92
J. Bruce Fields0dbc0182013-09-09 16:15:13 -040093static void clear_disconnected(struct dentry *dentry)
94{
95 dget(dentry);
96 while (dentry->d_flags & DCACHE_DISCONNECTED) {
97 struct dentry *parent = dget_parent(dentry);
98
99 WARN_ON_ONCE(IS_ROOT(dentry));
100
101 spin_lock(&dentry->d_lock);
102 dentry->d_flags &= ~DCACHE_DISCONNECTED;
103 spin_unlock(&dentry->d_lock);
104
105 dput(dentry);
106 dentry = parent;
107 }
108 dput(dentry);
109}
110
Christoph Hellwig019ab802007-07-17 04:04:33 -0700111/*
112 * Make sure target_dir is fully connected to the dentry tree.
113 *
J. Bruce Fields78cee9a2013-10-22 20:59:19 -0400114 * On successful return, DCACHE_DISCONNECTED will be cleared on
115 * target_dir, and target_dir->d_parent->...->d_parent will reach the
116 * root of the filesystem.
117 *
118 * Whenever DCACHE_DISCONNECTED is unset, target_dir is fully connected.
119 * But the converse is not true: target_dir may have DCACHE_DISCONNECTED
120 * set but already be connected. In that case we'll verify the
121 * connection to root and then clear the flag.
122 *
123 * Note that target_dir could be removed by a concurrent operation. In
124 * that case reconnect_path may still succeed with target_dir fully
125 * connected, but further operations using the filehandle will fail when
126 * necessary (due to S_DEAD being set on the directory).
Christoph Hellwig019ab802007-07-17 04:04:33 -0700127 */
128static int
Al Virof3f8e172008-08-11 12:39:47 -0400129reconnect_path(struct vfsmount *mnt, struct dentry *target_dir, char *nbuf)
Christoph Hellwig019ab802007-07-17 04:04:33 -0700130{
Christoph Hellwig019ab802007-07-17 04:04:33 -0700131 int noprogress = 0;
132 int err = -ESTALE;
133
134 /*
135 * It is possible that a confused file system might not let us complete
136 * the path to the root. For example, if get_parent returns a directory
137 * in which we cannot find a name for the child. While this implies a
138 * very sick filesystem we don't want it to cause knfsd to spin. Hence
139 * the noprogress counter. If we go through the loop 10 times (2 is
140 * probably enough) without getting anywhere, we just give up
141 */
142 while (target_dir->d_flags & DCACHE_DISCONNECTED && noprogress++ < 10) {
143 struct dentry *pd = find_disconnected_root(target_dir);
144
Christoph Hellwig854ff5c2013-10-16 15:48:53 -0400145 BUG_ON(pd == mnt->mnt_sb->s_root);
146
Christoph Hellwig019ab802007-07-17 04:04:33 -0700147 if (!IS_ROOT(pd)) {
148 /* must have found a connected parent - great */
J. Bruce Fields0dbc0182013-09-09 16:15:13 -0400149 clear_disconnected(target_dir);
150 dput(pd);
151 break;
Christoph Hellwig019ab802007-07-17 04:04:33 -0700152 } else {
153 /*
154 * We have hit the top of a disconnected path, try to
155 * find parent and connect.
156 *
157 * Racing with some other process renaming a directory
158 * isn't much of a problem here. If someone renames
159 * the directory, it will end up properly connected,
160 * which is what we want
161 *
162 * Getting the parent can't be supported generically,
163 * the locking is too icky.
164 *
165 * Instead we just return EACCES. If server reboots
166 * or inodes get flushed, you lose
167 */
168 struct dentry *ppd = ERR_PTR(-EACCES);
169 struct dentry *npd;
170
171 mutex_lock(&pd->d_inode->i_mutex);
Christoph Hellwige38f9812007-10-21 16:42:19 -0700172 if (mnt->mnt_sb->s_export_op->get_parent)
173 ppd = mnt->mnt_sb->s_export_op->get_parent(pd);
Christoph Hellwig019ab802007-07-17 04:04:33 -0700174 mutex_unlock(&pd->d_inode->i_mutex);
175
176 if (IS_ERR(ppd)) {
177 err = PTR_ERR(ppd);
178 dprintk("%s: get_parent of %ld failed, err %d\n",
Harvey Harrison8e24eea2008-04-30 00:55:09 -0700179 __func__, pd->d_inode->i_ino, err);
Christoph Hellwig019ab802007-07-17 04:04:33 -0700180 dput(pd);
181 break;
182 }
183
Harvey Harrison8e24eea2008-04-30 00:55:09 -0700184 dprintk("%s: find name of %lu in %lu\n", __func__,
Christoph Hellwig019ab802007-07-17 04:04:33 -0700185 pd->d_inode->i_ino, ppd->d_inode->i_ino);
Christoph Hellwige38f9812007-10-21 16:42:19 -0700186 err = exportfs_get_name(mnt, ppd, nbuf, pd);
Christoph Hellwig019ab802007-07-17 04:04:33 -0700187 if (err) {
188 dput(ppd);
189 dput(pd);
190 if (err == -ENOENT)
191 /* some race between get_parent and
192 * get_name? just try again
193 */
194 continue;
195 break;
196 }
Harvey Harrison8e24eea2008-04-30 00:55:09 -0700197 dprintk("%s: found name: %s\n", __func__, nbuf);
Christoph Hellwig019ab802007-07-17 04:04:33 -0700198 mutex_lock(&ppd->d_inode->i_mutex);
199 npd = lookup_one_len(nbuf, ppd, strlen(nbuf));
200 mutex_unlock(&ppd->d_inode->i_mutex);
201 if (IS_ERR(npd)) {
202 err = PTR_ERR(npd);
203 dprintk("%s: lookup failed: %d\n",
Harvey Harrison8e24eea2008-04-30 00:55:09 -0700204 __func__, err);
Christoph Hellwig019ab802007-07-17 04:04:33 -0700205 dput(ppd);
206 dput(pd);
207 break;
208 }
209 /* we didn't really want npd, we really wanted
210 * a side-effect of the lookup.
211 * hopefully, npd == pd, though it isn't really
212 * a problem if it isn't
213 */
214 if (npd == pd)
215 noprogress = 0;
216 else
Harvey Harrison8e24eea2008-04-30 00:55:09 -0700217 printk("%s: npd != pd\n", __func__);
Christoph Hellwig019ab802007-07-17 04:04:33 -0700218 dput(npd);
219 dput(ppd);
220 if (IS_ROOT(pd)) {
221 /* something went wrong, we have to give up */
222 dput(pd);
223 break;
224 }
225 }
226 dput(pd);
227 }
228
229 if (target_dir->d_flags & DCACHE_DISCONNECTED) {
230 /* something went wrong - oh-well */
231 if (!err)
232 err = -ESTALE;
233 return err;
234 }
235
236 return 0;
237}
238
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239struct getdents_callback {
Al Viro5c0ba4e2013-05-15 13:52:59 -0400240 struct dir_context ctx;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 char *name; /* name that was found. It already points to a
242 buffer NAME_MAX+1 is size */
J. Bruce Fields950ee952013-09-10 11:41:12 -0400243 u64 ino; /* the inum we are looking for */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 int found; /* inode matched? */
245 int sequence; /* sequence counter */
246};
247
248/*
249 * A rather strange filldir function to capture
250 * the name matching the specified inode number.
251 */
252static int filldir_one(void * __buf, const char * name, int len,
David Howellsafefdbb2006-10-03 01:13:46 -0700253 loff_t pos, u64 ino, unsigned int d_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254{
255 struct getdents_callback *buf = __buf;
256 int result = 0;
257
258 buf->sequence++;
Al Virodfc59e2c2013-09-06 16:55:36 -0400259 if (buf->ino == ino && len <= NAME_MAX) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 memcpy(buf->name, name, len);
261 buf->name[len] = '\0';
262 buf->found = 1;
263 result = -1;
264 }
265 return result;
266}
267
268/**
269 * get_name - default export_operations->get_name function
270 * @dentry: the directory in which to find a name
271 * @name: a pointer to a %NAME_MAX+1 char buffer to store the name
272 * @child: the dentry for the child directory.
273 *
274 * calls readdir on the parent until it finds an entry with
275 * the same inode number as the child, and returns that.
276 */
Al Viro765927b2012-06-26 21:58:53 +0400277static int get_name(const struct path *path, char *name, struct dentry *child)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278{
David Howells745ca242008-11-14 10:39:22 +1100279 const struct cred *cred = current_cred();
Al Viro765927b2012-06-26 21:58:53 +0400280 struct inode *dir = path->dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 int error;
282 struct file *file;
J. Bruce Fields950ee952013-09-10 11:41:12 -0400283 struct kstat stat;
284 struct path child_path = {
285 .mnt = path->mnt,
286 .dentry = child,
287 };
Al Viroac6614b2013-05-22 22:22:04 -0400288 struct getdents_callback buffer = {
289 .ctx.actor = filldir_one,
290 .name = name,
Al Viroac6614b2013-05-22 22:22:04 -0400291 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292
293 error = -ENOTDIR;
294 if (!dir || !S_ISDIR(dir->i_mode))
295 goto out;
296 error = -EINVAL;
297 if (!dir->i_fop)
298 goto out;
299 /*
J. Bruce Fields950ee952013-09-10 11:41:12 -0400300 * inode->i_ino is unsigned long, kstat->ino is u64, so the
301 * former would be insufficient on 32-bit hosts when the
302 * filesystem supports 64-bit inode numbers. So we need to
303 * actually call ->getattr, not just read i_ino:
304 */
305 error = vfs_getattr_nosec(&child_path, &stat);
306 if (error)
307 return error;
308 buffer.ino = stat.ino;
309 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 * Open the directory ...
311 */
Al Viro765927b2012-06-26 21:58:53 +0400312 file = dentry_open(path, O_RDONLY, cred);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 error = PTR_ERR(file);
314 if (IS_ERR(file))
315 goto out;
316
317 error = -EINVAL;
Al Viro2233f312013-05-22 21:44:23 -0400318 if (!file->f_op->iterate)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 goto out_close;
320
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 buffer.sequence = 0;
322 while (1) {
323 int old_seq = buffer.sequence;
324
Al Viro5c0ba4e2013-05-15 13:52:59 -0400325 error = iterate_dir(file, &buffer.ctx);
Al Viro53c9c5c2008-08-24 07:29:52 -0400326 if (buffer.found) {
327 error = 0;
328 break;
329 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330
331 if (error < 0)
332 break;
333
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 error = -ENOENT;
335 if (old_seq == buffer.sequence)
336 break;
337 }
338
339out_close:
340 fput(file);
341out:
342 return error;
343}
344
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345/**
346 * export_encode_fh - default export_operations->encode_fh function
Al Virob0b03822012-04-02 14:34:06 -0400347 * @inode: the object to encode
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 * @fh: where to store the file handle fragment
349 * @max_len: maximum length to store there
Al Virob0b03822012-04-02 14:34:06 -0400350 * @parent: parent directory inode, if wanted
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 *
352 * This default encode_fh function assumes that the 32 inode number
353 * is suitable for locating an inode, and that the generation number
354 * can be used to check that it is still valid. It places them in the
355 * filehandle fragment where export_decode_fh expects to find them.
356 */
Al Virob0b03822012-04-02 14:34:06 -0400357static int export_encode_fh(struct inode *inode, struct fid *fid,
358 int *max_len, struct inode *parent)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 int len = *max_len;
Christoph Hellwig6e91ea22007-10-21 16:42:03 -0700361 int type = FILEID_INO32_GEN;
Aneesh Kumar K.V5fe0c232011-01-29 18:43:25 +0530362
Al Virob0b03822012-04-02 14:34:06 -0400363 if (parent && (len < 4)) {
Aneesh Kumar K.V5fe0c232011-01-29 18:43:25 +0530364 *max_len = 4;
Namjae Jeon216b6cb2012-08-29 10:10:10 -0400365 return FILEID_INVALID;
Aneesh Kumar K.V5fe0c232011-01-29 18:43:25 +0530366 } else if (len < 2) {
367 *max_len = 2;
Namjae Jeon216b6cb2012-08-29 10:10:10 -0400368 return FILEID_INVALID;
Aneesh Kumar K.V5fe0c232011-01-29 18:43:25 +0530369 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370
371 len = 2;
Christoph Hellwig6e91ea22007-10-21 16:42:03 -0700372 fid->i32.ino = inode->i_ino;
373 fid->i32.gen = inode->i_generation;
Al Virob0b03822012-04-02 14:34:06 -0400374 if (parent) {
Christoph Hellwig6e91ea22007-10-21 16:42:03 -0700375 fid->i32.parent_ino = parent->i_ino;
376 fid->i32.parent_gen = parent->i_generation;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 len = 4;
Christoph Hellwig6e91ea22007-10-21 16:42:03 -0700378 type = FILEID_INO32_GEN_PARENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 }
380 *max_len = len;
381 return type;
382}
383
Cyrill Gorcunov711c7bf2012-12-17 16:05:08 -0800384int exportfs_encode_inode_fh(struct inode *inode, struct fid *fid,
385 int *max_len, struct inode *parent)
386{
387 const struct export_operations *nop = inode->i_sb->s_export_op;
388
389 if (nop && nop->encode_fh)
390 return nop->encode_fh(inode, fid->raw, max_len, parent);
391
392 return export_encode_fh(inode, fid, max_len, parent);
393}
394EXPORT_SYMBOL_GPL(exportfs_encode_inode_fh);
395
Christoph Hellwig6e91ea22007-10-21 16:42:03 -0700396int exportfs_encode_fh(struct dentry *dentry, struct fid *fid, int *max_len,
Christoph Hellwigd37065c2007-07-17 04:04:30 -0700397 int connectable)
398{
Christoph Hellwig10f11c32007-07-17 04:04:31 -0700399 int error;
Al Virob0b03822012-04-02 14:34:06 -0400400 struct dentry *p = NULL;
401 struct inode *inode = dentry->d_inode, *parent = NULL;
Christoph Hellwigd37065c2007-07-17 04:04:30 -0700402
Al Virob0b03822012-04-02 14:34:06 -0400403 if (connectable && !S_ISDIR(inode->i_mode)) {
404 p = dget_parent(dentry);
405 /*
406 * note that while p might've ceased to be our parent already,
407 * it's still pinned by and still positive.
408 */
409 parent = p->d_inode;
410 }
Cyrill Gorcunov711c7bf2012-12-17 16:05:08 -0800411
412 error = exportfs_encode_inode_fh(inode, fid, max_len, parent);
Al Virob0b03822012-04-02 14:34:06 -0400413 dput(p);
Christoph Hellwig10f11c32007-07-17 04:04:31 -0700414
415 return error;
Christoph Hellwigd37065c2007-07-17 04:04:30 -0700416}
417EXPORT_SYMBOL_GPL(exportfs_encode_fh);
418
Christoph Hellwig6e91ea22007-10-21 16:42:03 -0700419struct dentry *exportfs_decode_fh(struct vfsmount *mnt, struct fid *fid,
420 int fh_len, int fileid_type,
421 int (*acceptable)(void *, struct dentry *), void *context)
Christoph Hellwigd37065c2007-07-17 04:04:30 -0700422{
Christoph Hellwig39655162007-10-21 16:42:17 -0700423 const struct export_operations *nop = mnt->mnt_sb->s_export_op;
Christoph Hellwig25961102007-10-21 16:42:05 -0700424 struct dentry *result, *alias;
Al Virof3f8e172008-08-11 12:39:47 -0400425 char nbuf[NAME_MAX+1];
Christoph Hellwig25961102007-10-21 16:42:05 -0700426 int err;
Christoph Hellwigd37065c2007-07-17 04:04:30 -0700427
Christoph Hellwig25961102007-10-21 16:42:05 -0700428 /*
Christoph Hellwig25961102007-10-21 16:42:05 -0700429 * Try to get any dentry for the given file handle from the filesystem.
430 */
Aneesh Kumar K.Vbecfd1f2011-01-29 18:43:26 +0530431 if (!nop || !nop->fh_to_dentry)
432 return ERR_PTR(-ESTALE);
Christoph Hellwig25961102007-10-21 16:42:05 -0700433 result = nop->fh_to_dentry(mnt->mnt_sb, fid, fh_len, fileid_type);
J. Bruce Fieldsa4f4d6d2008-12-08 18:24:18 -0500434 if (!result)
435 result = ERR_PTR(-ESTALE);
Christoph Hellwig25961102007-10-21 16:42:05 -0700436 if (IS_ERR(result))
437 return result;
438
439 if (S_ISDIR(result->d_inode->i_mode)) {
440 /*
441 * This request is for a directory.
442 *
443 * On the positive side there is only one dentry for each
444 * directory inode. On the negative side this implies that we
445 * to ensure our dentry is connected all the way up to the
446 * filesystem root.
447 */
448 if (result->d_flags & DCACHE_DISCONNECTED) {
Al Virof3f8e172008-08-11 12:39:47 -0400449 err = reconnect_path(mnt, result, nbuf);
Christoph Hellwig25961102007-10-21 16:42:05 -0700450 if (err)
451 goto err_result;
452 }
453
454 if (!acceptable(context, result)) {
455 err = -EACCES;
456 goto err_result;
457 }
458
459 return result;
460 } else {
461 /*
462 * It's not a directory. Life is a little more complicated.
463 */
464 struct dentry *target_dir, *nresult;
Christoph Hellwig25961102007-10-21 16:42:05 -0700465
466 /*
467 * See if either the dentry we just got from the filesystem
468 * or any alias for it is acceptable. This is always true
469 * if this filesystem is exported without the subtreecheck
470 * option. If the filesystem is exported with the subtree
471 * check option there's a fair chance we need to look at
472 * the parent directory in the file handle and make sure
473 * it's connected to the filesystem root.
474 */
475 alias = find_acceptable_alias(result, acceptable, context);
476 if (alias)
477 return alias;
478
479 /*
480 * Try to extract a dentry for the parent directory from the
481 * file handle. If this fails we'll have to give up.
482 */
483 err = -ESTALE;
484 if (!nop->fh_to_parent)
485 goto err_result;
486
487 target_dir = nop->fh_to_parent(mnt->mnt_sb, fid,
488 fh_len, fileid_type);
J. Bruce Fieldsa4f4d6d2008-12-08 18:24:18 -0500489 if (!target_dir)
490 goto err_result;
Christoph Hellwig25961102007-10-21 16:42:05 -0700491 err = PTR_ERR(target_dir);
492 if (IS_ERR(target_dir))
493 goto err_result;
494
495 /*
496 * And as usual we need to make sure the parent directory is
497 * connected to the filesystem root. The VFS really doesn't
498 * like disconnected directories..
499 */
Al Virof3f8e172008-08-11 12:39:47 -0400500 err = reconnect_path(mnt, target_dir, nbuf);
Christoph Hellwig25961102007-10-21 16:42:05 -0700501 if (err) {
502 dput(target_dir);
503 goto err_result;
504 }
505
506 /*
507 * Now that we've got both a well-connected parent and a
508 * dentry for the inode we're after, make sure that our
509 * inode is actually connected to the parent.
510 */
Christoph Hellwige38f9812007-10-21 16:42:19 -0700511 err = exportfs_get_name(mnt, target_dir, nbuf, result);
Christoph Hellwig25961102007-10-21 16:42:05 -0700512 if (!err) {
513 mutex_lock(&target_dir->d_inode->i_mutex);
514 nresult = lookup_one_len(nbuf, target_dir,
515 strlen(nbuf));
516 mutex_unlock(&target_dir->d_inode->i_mutex);
517 if (!IS_ERR(nresult)) {
518 if (nresult->d_inode) {
519 dput(result);
520 result = nresult;
521 } else
522 dput(nresult);
523 }
524 }
525
526 /*
527 * At this point we are done with the parent, but it's pinned
528 * by the child dentry anyway.
529 */
530 dput(target_dir);
531
532 /*
533 * And finally make sure the dentry is actually acceptable
534 * to NFSD.
535 */
536 alias = find_acceptable_alias(result, acceptable, context);
537 if (!alias) {
538 err = -EACCES;
539 goto err_result;
540 }
541
542 return alias;
543 }
544
545 err_result:
546 dput(result);
547 return ERR_PTR(err);
Christoph Hellwigd37065c2007-07-17 04:04:30 -0700548}
549EXPORT_SYMBOL_GPL(exportfs_decode_fh);
550
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551MODULE_LICENSE("GPL");