blob: 6d0a7fa9abb3010141f5407e465296645b83855f [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
Christoph Hellwig019ab802007-07-17 04:04:33 -070093/*
94 * Make sure target_dir is fully connected to the dentry tree.
95 *
96 * It may already be, as the flag isn't always updated when connection happens.
97 */
98static int
Al Virof3f8e172008-08-11 12:39:47 -040099reconnect_path(struct vfsmount *mnt, struct dentry *target_dir, char *nbuf)
Christoph Hellwig019ab802007-07-17 04:04:33 -0700100{
Christoph Hellwig019ab802007-07-17 04:04:33 -0700101 int noprogress = 0;
102 int err = -ESTALE;
103
104 /*
105 * It is possible that a confused file system might not let us complete
106 * the path to the root. For example, if get_parent returns a directory
107 * in which we cannot find a name for the child. While this implies a
108 * very sick filesystem we don't want it to cause knfsd to spin. Hence
109 * the noprogress counter. If we go through the loop 10 times (2 is
110 * probably enough) without getting anywhere, we just give up
111 */
112 while (target_dir->d_flags & DCACHE_DISCONNECTED && noprogress++ < 10) {
113 struct dentry *pd = find_disconnected_root(target_dir);
114
Christoph Hellwig854ff5c2013-10-16 15:48:53 -0400115 BUG_ON(pd == mnt->mnt_sb->s_root);
116
Christoph Hellwig019ab802007-07-17 04:04:33 -0700117 if (!IS_ROOT(pd)) {
118 /* must have found a connected parent - great */
119 spin_lock(&pd->d_lock);
120 pd->d_flags &= ~DCACHE_DISCONNECTED;
121 spin_unlock(&pd->d_lock);
122 noprogress = 0;
Christoph Hellwig019ab802007-07-17 04:04:33 -0700123 } else {
124 /*
125 * We have hit the top of a disconnected path, try to
126 * find parent and connect.
127 *
128 * Racing with some other process renaming a directory
129 * isn't much of a problem here. If someone renames
130 * the directory, it will end up properly connected,
131 * which is what we want
132 *
133 * Getting the parent can't be supported generically,
134 * the locking is too icky.
135 *
136 * Instead we just return EACCES. If server reboots
137 * or inodes get flushed, you lose
138 */
139 struct dentry *ppd = ERR_PTR(-EACCES);
140 struct dentry *npd;
141
142 mutex_lock(&pd->d_inode->i_mutex);
Christoph Hellwige38f9812007-10-21 16:42:19 -0700143 if (mnt->mnt_sb->s_export_op->get_parent)
144 ppd = mnt->mnt_sb->s_export_op->get_parent(pd);
Christoph Hellwig019ab802007-07-17 04:04:33 -0700145 mutex_unlock(&pd->d_inode->i_mutex);
146
147 if (IS_ERR(ppd)) {
148 err = PTR_ERR(ppd);
149 dprintk("%s: get_parent of %ld failed, err %d\n",
Harvey Harrison8e24eea2008-04-30 00:55:09 -0700150 __func__, pd->d_inode->i_ino, err);
Christoph Hellwig019ab802007-07-17 04:04:33 -0700151 dput(pd);
152 break;
153 }
154
Harvey Harrison8e24eea2008-04-30 00:55:09 -0700155 dprintk("%s: find name of %lu in %lu\n", __func__,
Christoph Hellwig019ab802007-07-17 04:04:33 -0700156 pd->d_inode->i_ino, ppd->d_inode->i_ino);
Christoph Hellwige38f9812007-10-21 16:42:19 -0700157 err = exportfs_get_name(mnt, ppd, nbuf, pd);
Christoph Hellwig019ab802007-07-17 04:04:33 -0700158 if (err) {
159 dput(ppd);
160 dput(pd);
161 if (err == -ENOENT)
162 /* some race between get_parent and
163 * get_name? just try again
164 */
165 continue;
166 break;
167 }
Harvey Harrison8e24eea2008-04-30 00:55:09 -0700168 dprintk("%s: found name: %s\n", __func__, nbuf);
Christoph Hellwig019ab802007-07-17 04:04:33 -0700169 mutex_lock(&ppd->d_inode->i_mutex);
170 npd = lookup_one_len(nbuf, ppd, strlen(nbuf));
171 mutex_unlock(&ppd->d_inode->i_mutex);
172 if (IS_ERR(npd)) {
173 err = PTR_ERR(npd);
174 dprintk("%s: lookup failed: %d\n",
Harvey Harrison8e24eea2008-04-30 00:55:09 -0700175 __func__, err);
Christoph Hellwig019ab802007-07-17 04:04:33 -0700176 dput(ppd);
177 dput(pd);
178 break;
179 }
180 /* we didn't really want npd, we really wanted
181 * a side-effect of the lookup.
182 * hopefully, npd == pd, though it isn't really
183 * a problem if it isn't
184 */
185 if (npd == pd)
186 noprogress = 0;
187 else
Harvey Harrison8e24eea2008-04-30 00:55:09 -0700188 printk("%s: npd != pd\n", __func__);
Christoph Hellwig019ab802007-07-17 04:04:33 -0700189 dput(npd);
190 dput(ppd);
191 if (IS_ROOT(pd)) {
192 /* something went wrong, we have to give up */
193 dput(pd);
194 break;
195 }
196 }
197 dput(pd);
198 }
199
200 if (target_dir->d_flags & DCACHE_DISCONNECTED) {
201 /* something went wrong - oh-well */
202 if (!err)
203 err = -ESTALE;
204 return err;
205 }
206
207 return 0;
208}
209
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210struct getdents_callback {
Al Viro5c0ba4e2013-05-15 13:52:59 -0400211 struct dir_context ctx;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 char *name; /* name that was found. It already points to a
213 buffer NAME_MAX+1 is size */
J. Bruce Fields950ee952013-09-10 11:41:12 -0400214 u64 ino; /* the inum we are looking for */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 int found; /* inode matched? */
216 int sequence; /* sequence counter */
217};
218
219/*
220 * A rather strange filldir function to capture
221 * the name matching the specified inode number.
222 */
223static int filldir_one(void * __buf, const char * name, int len,
David Howellsafefdbb2006-10-03 01:13:46 -0700224 loff_t pos, u64 ino, unsigned int d_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225{
226 struct getdents_callback *buf = __buf;
227 int result = 0;
228
229 buf->sequence++;
Al Virodfc59e2c2013-09-06 16:55:36 -0400230 if (buf->ino == ino && len <= NAME_MAX) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 memcpy(buf->name, name, len);
232 buf->name[len] = '\0';
233 buf->found = 1;
234 result = -1;
235 }
236 return result;
237}
238
239/**
240 * get_name - default export_operations->get_name function
241 * @dentry: the directory in which to find a name
242 * @name: a pointer to a %NAME_MAX+1 char buffer to store the name
243 * @child: the dentry for the child directory.
244 *
245 * calls readdir on the parent until it finds an entry with
246 * the same inode number as the child, and returns that.
247 */
Al Viro765927b2012-06-26 21:58:53 +0400248static int get_name(const struct path *path, char *name, struct dentry *child)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249{
David Howells745ca242008-11-14 10:39:22 +1100250 const struct cred *cred = current_cred();
Al Viro765927b2012-06-26 21:58:53 +0400251 struct inode *dir = path->dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 int error;
253 struct file *file;
J. Bruce Fields950ee952013-09-10 11:41:12 -0400254 struct kstat stat;
255 struct path child_path = {
256 .mnt = path->mnt,
257 .dentry = child,
258 };
Al Viroac6614b2013-05-22 22:22:04 -0400259 struct getdents_callback buffer = {
260 .ctx.actor = filldir_one,
261 .name = name,
Al Viroac6614b2013-05-22 22:22:04 -0400262 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263
264 error = -ENOTDIR;
265 if (!dir || !S_ISDIR(dir->i_mode))
266 goto out;
267 error = -EINVAL;
268 if (!dir->i_fop)
269 goto out;
270 /*
J. Bruce Fields950ee952013-09-10 11:41:12 -0400271 * inode->i_ino is unsigned long, kstat->ino is u64, so the
272 * former would be insufficient on 32-bit hosts when the
273 * filesystem supports 64-bit inode numbers. So we need to
274 * actually call ->getattr, not just read i_ino:
275 */
276 error = vfs_getattr_nosec(&child_path, &stat);
277 if (error)
278 return error;
279 buffer.ino = stat.ino;
280 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 * Open the directory ...
282 */
Al Viro765927b2012-06-26 21:58:53 +0400283 file = dentry_open(path, O_RDONLY, cred);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 error = PTR_ERR(file);
285 if (IS_ERR(file))
286 goto out;
287
288 error = -EINVAL;
Al Viro2233f312013-05-22 21:44:23 -0400289 if (!file->f_op->iterate)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 goto out_close;
291
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 buffer.sequence = 0;
293 while (1) {
294 int old_seq = buffer.sequence;
295
Al Viro5c0ba4e2013-05-15 13:52:59 -0400296 error = iterate_dir(file, &buffer.ctx);
Al Viro53c9c5c2008-08-24 07:29:52 -0400297 if (buffer.found) {
298 error = 0;
299 break;
300 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301
302 if (error < 0)
303 break;
304
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 error = -ENOENT;
306 if (old_seq == buffer.sequence)
307 break;
308 }
309
310out_close:
311 fput(file);
312out:
313 return error;
314}
315
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316/**
317 * export_encode_fh - default export_operations->encode_fh function
Al Virob0b03822012-04-02 14:34:06 -0400318 * @inode: the object to encode
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 * @fh: where to store the file handle fragment
320 * @max_len: maximum length to store there
Al Virob0b03822012-04-02 14:34:06 -0400321 * @parent: parent directory inode, if wanted
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 *
323 * This default encode_fh function assumes that the 32 inode number
324 * is suitable for locating an inode, and that the generation number
325 * can be used to check that it is still valid. It places them in the
326 * filehandle fragment where export_decode_fh expects to find them.
327 */
Al Virob0b03822012-04-02 14:34:06 -0400328static int export_encode_fh(struct inode *inode, struct fid *fid,
329 int *max_len, struct inode *parent)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 int len = *max_len;
Christoph Hellwig6e91ea22007-10-21 16:42:03 -0700332 int type = FILEID_INO32_GEN;
Aneesh Kumar K.V5fe0c232011-01-29 18:43:25 +0530333
Al Virob0b03822012-04-02 14:34:06 -0400334 if (parent && (len < 4)) {
Aneesh Kumar K.V5fe0c232011-01-29 18:43:25 +0530335 *max_len = 4;
Namjae Jeon216b6cb2012-08-29 10:10:10 -0400336 return FILEID_INVALID;
Aneesh Kumar K.V5fe0c232011-01-29 18:43:25 +0530337 } else if (len < 2) {
338 *max_len = 2;
Namjae Jeon216b6cb2012-08-29 10:10:10 -0400339 return FILEID_INVALID;
Aneesh Kumar K.V5fe0c232011-01-29 18:43:25 +0530340 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341
342 len = 2;
Christoph Hellwig6e91ea22007-10-21 16:42:03 -0700343 fid->i32.ino = inode->i_ino;
344 fid->i32.gen = inode->i_generation;
Al Virob0b03822012-04-02 14:34:06 -0400345 if (parent) {
Christoph Hellwig6e91ea22007-10-21 16:42:03 -0700346 fid->i32.parent_ino = parent->i_ino;
347 fid->i32.parent_gen = parent->i_generation;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 len = 4;
Christoph Hellwig6e91ea22007-10-21 16:42:03 -0700349 type = FILEID_INO32_GEN_PARENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 }
351 *max_len = len;
352 return type;
353}
354
Cyrill Gorcunov711c7bf2012-12-17 16:05:08 -0800355int exportfs_encode_inode_fh(struct inode *inode, struct fid *fid,
356 int *max_len, struct inode *parent)
357{
358 const struct export_operations *nop = inode->i_sb->s_export_op;
359
360 if (nop && nop->encode_fh)
361 return nop->encode_fh(inode, fid->raw, max_len, parent);
362
363 return export_encode_fh(inode, fid, max_len, parent);
364}
365EXPORT_SYMBOL_GPL(exportfs_encode_inode_fh);
366
Christoph Hellwig6e91ea22007-10-21 16:42:03 -0700367int exportfs_encode_fh(struct dentry *dentry, struct fid *fid, int *max_len,
Christoph Hellwigd37065c2007-07-17 04:04:30 -0700368 int connectable)
369{
Christoph Hellwig10f11c32007-07-17 04:04:31 -0700370 int error;
Al Virob0b03822012-04-02 14:34:06 -0400371 struct dentry *p = NULL;
372 struct inode *inode = dentry->d_inode, *parent = NULL;
Christoph Hellwigd37065c2007-07-17 04:04:30 -0700373
Al Virob0b03822012-04-02 14:34:06 -0400374 if (connectable && !S_ISDIR(inode->i_mode)) {
375 p = dget_parent(dentry);
376 /*
377 * note that while p might've ceased to be our parent already,
378 * it's still pinned by and still positive.
379 */
380 parent = p->d_inode;
381 }
Cyrill Gorcunov711c7bf2012-12-17 16:05:08 -0800382
383 error = exportfs_encode_inode_fh(inode, fid, max_len, parent);
Al Virob0b03822012-04-02 14:34:06 -0400384 dput(p);
Christoph Hellwig10f11c32007-07-17 04:04:31 -0700385
386 return error;
Christoph Hellwigd37065c2007-07-17 04:04:30 -0700387}
388EXPORT_SYMBOL_GPL(exportfs_encode_fh);
389
Christoph Hellwig6e91ea22007-10-21 16:42:03 -0700390struct dentry *exportfs_decode_fh(struct vfsmount *mnt, struct fid *fid,
391 int fh_len, int fileid_type,
392 int (*acceptable)(void *, struct dentry *), void *context)
Christoph Hellwigd37065c2007-07-17 04:04:30 -0700393{
Christoph Hellwig39655162007-10-21 16:42:17 -0700394 const struct export_operations *nop = mnt->mnt_sb->s_export_op;
Christoph Hellwig25961102007-10-21 16:42:05 -0700395 struct dentry *result, *alias;
Al Virof3f8e172008-08-11 12:39:47 -0400396 char nbuf[NAME_MAX+1];
Christoph Hellwig25961102007-10-21 16:42:05 -0700397 int err;
Christoph Hellwigd37065c2007-07-17 04:04:30 -0700398
Christoph Hellwig25961102007-10-21 16:42:05 -0700399 /*
Christoph Hellwig25961102007-10-21 16:42:05 -0700400 * Try to get any dentry for the given file handle from the filesystem.
401 */
Aneesh Kumar K.Vbecfd1f2011-01-29 18:43:26 +0530402 if (!nop || !nop->fh_to_dentry)
403 return ERR_PTR(-ESTALE);
Christoph Hellwig25961102007-10-21 16:42:05 -0700404 result = nop->fh_to_dentry(mnt->mnt_sb, fid, fh_len, fileid_type);
J. Bruce Fieldsa4f4d6d2008-12-08 18:24:18 -0500405 if (!result)
406 result = ERR_PTR(-ESTALE);
Christoph Hellwig25961102007-10-21 16:42:05 -0700407 if (IS_ERR(result))
408 return result;
409
410 if (S_ISDIR(result->d_inode->i_mode)) {
411 /*
412 * This request is for a directory.
413 *
414 * On the positive side there is only one dentry for each
415 * directory inode. On the negative side this implies that we
416 * to ensure our dentry is connected all the way up to the
417 * filesystem root.
418 */
419 if (result->d_flags & DCACHE_DISCONNECTED) {
Al Virof3f8e172008-08-11 12:39:47 -0400420 err = reconnect_path(mnt, result, nbuf);
Christoph Hellwig25961102007-10-21 16:42:05 -0700421 if (err)
422 goto err_result;
423 }
424
425 if (!acceptable(context, result)) {
426 err = -EACCES;
427 goto err_result;
428 }
429
430 return result;
431 } else {
432 /*
433 * It's not a directory. Life is a little more complicated.
434 */
435 struct dentry *target_dir, *nresult;
Christoph Hellwig25961102007-10-21 16:42:05 -0700436
437 /*
438 * See if either the dentry we just got from the filesystem
439 * or any alias for it is acceptable. This is always true
440 * if this filesystem is exported without the subtreecheck
441 * option. If the filesystem is exported with the subtree
442 * check option there's a fair chance we need to look at
443 * the parent directory in the file handle and make sure
444 * it's connected to the filesystem root.
445 */
446 alias = find_acceptable_alias(result, acceptable, context);
447 if (alias)
448 return alias;
449
450 /*
451 * Try to extract a dentry for the parent directory from the
452 * file handle. If this fails we'll have to give up.
453 */
454 err = -ESTALE;
455 if (!nop->fh_to_parent)
456 goto err_result;
457
458 target_dir = nop->fh_to_parent(mnt->mnt_sb, fid,
459 fh_len, fileid_type);
J. Bruce Fieldsa4f4d6d2008-12-08 18:24:18 -0500460 if (!target_dir)
461 goto err_result;
Christoph Hellwig25961102007-10-21 16:42:05 -0700462 err = PTR_ERR(target_dir);
463 if (IS_ERR(target_dir))
464 goto err_result;
465
466 /*
467 * And as usual we need to make sure the parent directory is
468 * connected to the filesystem root. The VFS really doesn't
469 * like disconnected directories..
470 */
Al Virof3f8e172008-08-11 12:39:47 -0400471 err = reconnect_path(mnt, target_dir, nbuf);
Christoph Hellwig25961102007-10-21 16:42:05 -0700472 if (err) {
473 dput(target_dir);
474 goto err_result;
475 }
476
477 /*
478 * Now that we've got both a well-connected parent and a
479 * dentry for the inode we're after, make sure that our
480 * inode is actually connected to the parent.
481 */
Christoph Hellwige38f9812007-10-21 16:42:19 -0700482 err = exportfs_get_name(mnt, target_dir, nbuf, result);
Christoph Hellwig25961102007-10-21 16:42:05 -0700483 if (!err) {
484 mutex_lock(&target_dir->d_inode->i_mutex);
485 nresult = lookup_one_len(nbuf, target_dir,
486 strlen(nbuf));
487 mutex_unlock(&target_dir->d_inode->i_mutex);
488 if (!IS_ERR(nresult)) {
489 if (nresult->d_inode) {
490 dput(result);
491 result = nresult;
492 } else
493 dput(nresult);
494 }
495 }
496
497 /*
498 * At this point we are done with the parent, but it's pinned
499 * by the child dentry anyway.
500 */
501 dput(target_dir);
502
503 /*
504 * And finally make sure the dentry is actually acceptable
505 * to NFSD.
506 */
507 alias = find_acceptable_alias(result, acceptable, context);
508 if (!alias) {
509 err = -EACCES;
510 goto err_result;
511 }
512
513 return alias;
514 }
515
516 err_result:
517 dput(result);
518 return ERR_PTR(err);
Christoph Hellwigd37065c2007-07-17 04:04:30 -0700519}
520EXPORT_SYMBOL_GPL(exportfs_decode_fh);
521
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522MODULE_LICENSE("GPL");