blob: 84b8c460a781df3c33ff043f8c2ca65915deb525 [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
Christoph Hellwige38f9812007-10-21 16:42:19 -070022static int get_name(struct vfsmount *mnt, struct dentry *dentry, char *name,
Christoph Hellwig10f11c32007-07-17 04:04:31 -070023 struct dentry *child);
24
25
Christoph Hellwige38f9812007-10-21 16:42:19 -070026static int exportfs_get_name(struct vfsmount *mnt, struct dentry *dir,
27 char *name, struct dentry *child)
Christoph Hellwig10f11c32007-07-17 04:04:31 -070028{
Christoph Hellwig39655162007-10-21 16:42:17 -070029 const struct export_operations *nop = dir->d_sb->s_export_op;
Christoph Hellwig10f11c32007-07-17 04:04:31 -070030
31 if (nop->get_name)
32 return nop->get_name(dir, name, child);
33 else
Christoph Hellwige38f9812007-10-21 16:42:19 -070034 return get_name(mnt, dir, 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;
46
Christoph Hellwigfb66a192007-07-17 04:04:32 -070047 if (acceptable(context, result))
48 return result;
49
Christoph Hellwige2f99012006-01-18 17:43:52 -080050 spin_lock(&dcache_lock);
Nick Pigginb23fb0a2011-01-07 17:49:35 +110051 spin_lock(&dcache_inode_lock);
Christoph Hellwige2f99012006-01-18 17:43:52 -080052 list_for_each_entry(dentry, &result->d_inode->i_dentry, d_alias) {
53 dget_locked(dentry);
Nick Pigginb23fb0a2011-01-07 17:49:35 +110054 spin_unlock(&dcache_inode_lock);
Christoph Hellwige2f99012006-01-18 17:43:52 -080055 spin_unlock(&dcache_lock);
56 if (toput)
57 dput(toput);
58 if (dentry != result && acceptable(context, dentry)) {
59 dput(result);
60 return dentry;
61 }
62 spin_lock(&dcache_lock);
Nick Pigginb23fb0a2011-01-07 17:49:35 +110063 spin_lock(&dcache_inode_lock);
Christoph Hellwige2f99012006-01-18 17:43:52 -080064 toput = dentry;
65 }
Nick Pigginb23fb0a2011-01-07 17:49:35 +110066 spin_unlock(&dcache_inode_lock);
Christoph Hellwige2f99012006-01-18 17:43:52 -080067 spin_unlock(&dcache_lock);
68
69 if (toput)
70 dput(toput);
71 return NULL;
72}
73
Christoph Hellwigdd90b502007-07-17 04:04:32 -070074/*
75 * Find root of a disconnected subtree and return a reference to it.
76 */
77static struct dentry *
78find_disconnected_root(struct dentry *dentry)
79{
80 dget(dentry);
Christoph Hellwig0461ee22010-10-13 11:56:37 -040081 while (!IS_ROOT(dentry)) {
82 struct dentry *parent = dget_parent(dentry);
83
84 if (!(parent->d_flags & DCACHE_DISCONNECTED)) {
85 dput(parent);
86 break;
87 }
88
Christoph Hellwigdd90b502007-07-17 04:04:32 -070089 dput(dentry);
90 dentry = parent;
Christoph Hellwigdd90b502007-07-17 04:04:32 -070091 }
Christoph Hellwigdd90b502007-07-17 04:04:32 -070092 return dentry;
93}
94
Christoph Hellwig019ab802007-07-17 04:04:33 -070095/*
96 * Make sure target_dir is fully connected to the dentry tree.
97 *
98 * It may already be, as the flag isn't always updated when connection happens.
99 */
100static int
Al Virof3f8e172008-08-11 12:39:47 -0400101reconnect_path(struct vfsmount *mnt, struct dentry *target_dir, char *nbuf)
Christoph Hellwig019ab802007-07-17 04:04:33 -0700102{
Christoph Hellwig019ab802007-07-17 04:04:33 -0700103 int noprogress = 0;
104 int err = -ESTALE;
105
106 /*
107 * It is possible that a confused file system might not let us complete
108 * the path to the root. For example, if get_parent returns a directory
109 * in which we cannot find a name for the child. While this implies a
110 * very sick filesystem we don't want it to cause knfsd to spin. Hence
111 * the noprogress counter. If we go through the loop 10 times (2 is
112 * probably enough) without getting anywhere, we just give up
113 */
114 while (target_dir->d_flags & DCACHE_DISCONNECTED && noprogress++ < 10) {
115 struct dentry *pd = find_disconnected_root(target_dir);
116
117 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 Hellwige38f9812007-10-21 16:42:19 -0700123 } else if (pd == mnt->mnt_sb->s_root) {
Christoph Hellwig019ab802007-07-17 04:04:33 -0700124 printk(KERN_ERR "export: Eeek filesystem root is not connected, impossible\n");
125 spin_lock(&pd->d_lock);
126 pd->d_flags &= ~DCACHE_DISCONNECTED;
127 spin_unlock(&pd->d_lock);
128 noprogress = 0;
129 } else {
130 /*
131 * We have hit the top of a disconnected path, try to
132 * find parent and connect.
133 *
134 * Racing with some other process renaming a directory
135 * isn't much of a problem here. If someone renames
136 * the directory, it will end up properly connected,
137 * which is what we want
138 *
139 * Getting the parent can't be supported generically,
140 * the locking is too icky.
141 *
142 * Instead we just return EACCES. If server reboots
143 * or inodes get flushed, you lose
144 */
145 struct dentry *ppd = ERR_PTR(-EACCES);
146 struct dentry *npd;
147
148 mutex_lock(&pd->d_inode->i_mutex);
Christoph Hellwige38f9812007-10-21 16:42:19 -0700149 if (mnt->mnt_sb->s_export_op->get_parent)
150 ppd = mnt->mnt_sb->s_export_op->get_parent(pd);
Christoph Hellwig019ab802007-07-17 04:04:33 -0700151 mutex_unlock(&pd->d_inode->i_mutex);
152
153 if (IS_ERR(ppd)) {
154 err = PTR_ERR(ppd);
155 dprintk("%s: get_parent of %ld failed, err %d\n",
Harvey Harrison8e24eea2008-04-30 00:55:09 -0700156 __func__, pd->d_inode->i_ino, err);
Christoph Hellwig019ab802007-07-17 04:04:33 -0700157 dput(pd);
158 break;
159 }
160
Harvey Harrison8e24eea2008-04-30 00:55:09 -0700161 dprintk("%s: find name of %lu in %lu\n", __func__,
Christoph Hellwig019ab802007-07-17 04:04:33 -0700162 pd->d_inode->i_ino, ppd->d_inode->i_ino);
Christoph Hellwige38f9812007-10-21 16:42:19 -0700163 err = exportfs_get_name(mnt, ppd, nbuf, pd);
Christoph Hellwig019ab802007-07-17 04:04:33 -0700164 if (err) {
165 dput(ppd);
166 dput(pd);
167 if (err == -ENOENT)
168 /* some race between get_parent and
169 * get_name? just try again
170 */
171 continue;
172 break;
173 }
Harvey Harrison8e24eea2008-04-30 00:55:09 -0700174 dprintk("%s: found name: %s\n", __func__, nbuf);
Christoph Hellwig019ab802007-07-17 04:04:33 -0700175 mutex_lock(&ppd->d_inode->i_mutex);
176 npd = lookup_one_len(nbuf, ppd, strlen(nbuf));
177 mutex_unlock(&ppd->d_inode->i_mutex);
178 if (IS_ERR(npd)) {
179 err = PTR_ERR(npd);
180 dprintk("%s: lookup failed: %d\n",
Harvey Harrison8e24eea2008-04-30 00:55:09 -0700181 __func__, err);
Christoph Hellwig019ab802007-07-17 04:04:33 -0700182 dput(ppd);
183 dput(pd);
184 break;
185 }
186 /* we didn't really want npd, we really wanted
187 * a side-effect of the lookup.
188 * hopefully, npd == pd, though it isn't really
189 * a problem if it isn't
190 */
191 if (npd == pd)
192 noprogress = 0;
193 else
Harvey Harrison8e24eea2008-04-30 00:55:09 -0700194 printk("%s: npd != pd\n", __func__);
Christoph Hellwig019ab802007-07-17 04:04:33 -0700195 dput(npd);
196 dput(ppd);
197 if (IS_ROOT(pd)) {
198 /* something went wrong, we have to give up */
199 dput(pd);
200 break;
201 }
202 }
203 dput(pd);
204 }
205
206 if (target_dir->d_flags & DCACHE_DISCONNECTED) {
207 /* something went wrong - oh-well */
208 if (!err)
209 err = -ESTALE;
210 return err;
211 }
212
213 return 0;
214}
215
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216struct getdents_callback {
217 char *name; /* name that was found. It already points to a
218 buffer NAME_MAX+1 is size */
219 unsigned long ino; /* the inum we are looking for */
220 int found; /* inode matched? */
221 int sequence; /* sequence counter */
222};
223
224/*
225 * A rather strange filldir function to capture
226 * the name matching the specified inode number.
227 */
228static int filldir_one(void * __buf, const char * name, int len,
David Howellsafefdbb2006-10-03 01:13:46 -0700229 loff_t pos, u64 ino, unsigned int d_type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230{
231 struct getdents_callback *buf = __buf;
232 int result = 0;
233
234 buf->sequence++;
235 if (buf->ino == ino) {
236 memcpy(buf->name, name, len);
237 buf->name[len] = '\0';
238 buf->found = 1;
239 result = -1;
240 }
241 return result;
242}
243
244/**
245 * get_name - default export_operations->get_name function
246 * @dentry: the directory in which to find a name
247 * @name: a pointer to a %NAME_MAX+1 char buffer to store the name
248 * @child: the dentry for the child directory.
249 *
250 * calls readdir on the parent until it finds an entry with
251 * the same inode number as the child, and returns that.
252 */
Christoph Hellwige38f9812007-10-21 16:42:19 -0700253static int get_name(struct vfsmount *mnt, struct dentry *dentry,
254 char *name, struct dentry *child)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255{
David Howells745ca242008-11-14 10:39:22 +1100256 const struct cred *cred = current_cred();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 struct inode *dir = dentry->d_inode;
258 int error;
259 struct file *file;
260 struct getdents_callback buffer;
261
262 error = -ENOTDIR;
263 if (!dir || !S_ISDIR(dir->i_mode))
264 goto out;
265 error = -EINVAL;
266 if (!dir->i_fop)
267 goto out;
268 /*
269 * Open the directory ...
270 */
David Howells745ca242008-11-14 10:39:22 +1100271 file = dentry_open(dget(dentry), mntget(mnt), O_RDONLY, cred);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 error = PTR_ERR(file);
273 if (IS_ERR(file))
274 goto out;
275
276 error = -EINVAL;
277 if (!file->f_op->readdir)
278 goto out_close;
279
280 buffer.name = name;
281 buffer.ino = child->d_inode->i_ino;
282 buffer.found = 0;
283 buffer.sequence = 0;
284 while (1) {
285 int old_seq = buffer.sequence;
286
287 error = vfs_readdir(file, filldir_one, &buffer);
Al Viro53c9c5c2008-08-24 07:29:52 -0400288 if (buffer.found) {
289 error = 0;
290 break;
291 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292
293 if (error < 0)
294 break;
295
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 error = -ENOENT;
297 if (old_seq == buffer.sequence)
298 break;
299 }
300
301out_close:
302 fput(file);
303out:
304 return error;
305}
306
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307/**
308 * export_encode_fh - default export_operations->encode_fh function
309 * @dentry: the dentry to encode
310 * @fh: where to store the file handle fragment
311 * @max_len: maximum length to store there
312 * @connectable: whether to store parent information
313 *
314 * This default encode_fh function assumes that the 32 inode number
315 * is suitable for locating an inode, and that the generation number
316 * can be used to check that it is still valid. It places them in the
317 * filehandle fragment where export_decode_fh expects to find them.
318 */
Christoph Hellwig6e91ea22007-10-21 16:42:03 -0700319static int export_encode_fh(struct dentry *dentry, struct fid *fid,
320 int *max_len, int connectable)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321{
322 struct inode * inode = dentry->d_inode;
323 int len = *max_len;
Christoph Hellwig6e91ea22007-10-21 16:42:03 -0700324 int type = FILEID_INO32_GEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325
326 if (len < 2 || (connectable && len < 4))
327 return 255;
328
329 len = 2;
Christoph Hellwig6e91ea22007-10-21 16:42:03 -0700330 fid->i32.ino = inode->i_ino;
331 fid->i32.gen = inode->i_generation;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 if (connectable && !S_ISDIR(inode->i_mode)) {
333 struct inode *parent;
334
335 spin_lock(&dentry->d_lock);
336 parent = dentry->d_parent->d_inode;
Christoph Hellwig6e91ea22007-10-21 16:42:03 -0700337 fid->i32.parent_ino = parent->i_ino;
338 fid->i32.parent_gen = parent->i_generation;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 spin_unlock(&dentry->d_lock);
340 len = 4;
Christoph Hellwig6e91ea22007-10-21 16:42:03 -0700341 type = FILEID_INO32_GEN_PARENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 }
343 *max_len = len;
344 return type;
345}
346
Christoph Hellwig6e91ea22007-10-21 16:42:03 -0700347int exportfs_encode_fh(struct dentry *dentry, struct fid *fid, int *max_len,
Christoph Hellwigd37065c2007-07-17 04:04:30 -0700348 int connectable)
349{
Christoph Hellwig39655162007-10-21 16:42:17 -0700350 const struct export_operations *nop = dentry->d_sb->s_export_op;
Christoph Hellwig10f11c32007-07-17 04:04:31 -0700351 int error;
Christoph Hellwigd37065c2007-07-17 04:04:30 -0700352
Christoph Hellwig10f11c32007-07-17 04:04:31 -0700353 if (nop->encode_fh)
Christoph Hellwig6e91ea22007-10-21 16:42:03 -0700354 error = nop->encode_fh(dentry, fid->raw, max_len, connectable);
Christoph Hellwig10f11c32007-07-17 04:04:31 -0700355 else
Christoph Hellwig6e91ea22007-10-21 16:42:03 -0700356 error = export_encode_fh(dentry, fid, max_len, connectable);
Christoph Hellwig10f11c32007-07-17 04:04:31 -0700357
358 return error;
Christoph Hellwigd37065c2007-07-17 04:04:30 -0700359}
360EXPORT_SYMBOL_GPL(exportfs_encode_fh);
361
Christoph Hellwig6e91ea22007-10-21 16:42:03 -0700362struct dentry *exportfs_decode_fh(struct vfsmount *mnt, struct fid *fid,
363 int fh_len, int fileid_type,
364 int (*acceptable)(void *, struct dentry *), void *context)
Christoph Hellwigd37065c2007-07-17 04:04:30 -0700365{
Christoph Hellwig39655162007-10-21 16:42:17 -0700366 const struct export_operations *nop = mnt->mnt_sb->s_export_op;
Christoph Hellwig25961102007-10-21 16:42:05 -0700367 struct dentry *result, *alias;
Al Virof3f8e172008-08-11 12:39:47 -0400368 char nbuf[NAME_MAX+1];
Christoph Hellwig25961102007-10-21 16:42:05 -0700369 int err;
Christoph Hellwigd37065c2007-07-17 04:04:30 -0700370
Christoph Hellwig25961102007-10-21 16:42:05 -0700371 /*
Christoph Hellwig25961102007-10-21 16:42:05 -0700372 * Try to get any dentry for the given file handle from the filesystem.
373 */
374 result = nop->fh_to_dentry(mnt->mnt_sb, fid, fh_len, fileid_type);
J. Bruce Fieldsa4f4d6d2008-12-08 18:24:18 -0500375 if (!result)
376 result = ERR_PTR(-ESTALE);
Christoph Hellwig25961102007-10-21 16:42:05 -0700377 if (IS_ERR(result))
378 return result;
379
380 if (S_ISDIR(result->d_inode->i_mode)) {
381 /*
382 * This request is for a directory.
383 *
384 * On the positive side there is only one dentry for each
385 * directory inode. On the negative side this implies that we
386 * to ensure our dentry is connected all the way up to the
387 * filesystem root.
388 */
389 if (result->d_flags & DCACHE_DISCONNECTED) {
Al Virof3f8e172008-08-11 12:39:47 -0400390 err = reconnect_path(mnt, result, nbuf);
Christoph Hellwig25961102007-10-21 16:42:05 -0700391 if (err)
392 goto err_result;
393 }
394
395 if (!acceptable(context, result)) {
396 err = -EACCES;
397 goto err_result;
398 }
399
400 return result;
401 } else {
402 /*
403 * It's not a directory. Life is a little more complicated.
404 */
405 struct dentry *target_dir, *nresult;
Christoph Hellwig25961102007-10-21 16:42:05 -0700406
407 /*
408 * See if either the dentry we just got from the filesystem
409 * or any alias for it is acceptable. This is always true
410 * if this filesystem is exported without the subtreecheck
411 * option. If the filesystem is exported with the subtree
412 * check option there's a fair chance we need to look at
413 * the parent directory in the file handle and make sure
414 * it's connected to the filesystem root.
415 */
416 alias = find_acceptable_alias(result, acceptable, context);
417 if (alias)
418 return alias;
419
420 /*
421 * Try to extract a dentry for the parent directory from the
422 * file handle. If this fails we'll have to give up.
423 */
424 err = -ESTALE;
425 if (!nop->fh_to_parent)
426 goto err_result;
427
428 target_dir = nop->fh_to_parent(mnt->mnt_sb, fid,
429 fh_len, fileid_type);
J. Bruce Fieldsa4f4d6d2008-12-08 18:24:18 -0500430 if (!target_dir)
431 goto err_result;
Christoph Hellwig25961102007-10-21 16:42:05 -0700432 err = PTR_ERR(target_dir);
433 if (IS_ERR(target_dir))
434 goto err_result;
435
436 /*
437 * And as usual we need to make sure the parent directory is
438 * connected to the filesystem root. The VFS really doesn't
439 * like disconnected directories..
440 */
Al Virof3f8e172008-08-11 12:39:47 -0400441 err = reconnect_path(mnt, target_dir, nbuf);
Christoph Hellwig25961102007-10-21 16:42:05 -0700442 if (err) {
443 dput(target_dir);
444 goto err_result;
445 }
446
447 /*
448 * Now that we've got both a well-connected parent and a
449 * dentry for the inode we're after, make sure that our
450 * inode is actually connected to the parent.
451 */
Christoph Hellwige38f9812007-10-21 16:42:19 -0700452 err = exportfs_get_name(mnt, target_dir, nbuf, result);
Christoph Hellwig25961102007-10-21 16:42:05 -0700453 if (!err) {
454 mutex_lock(&target_dir->d_inode->i_mutex);
455 nresult = lookup_one_len(nbuf, target_dir,
456 strlen(nbuf));
457 mutex_unlock(&target_dir->d_inode->i_mutex);
458 if (!IS_ERR(nresult)) {
459 if (nresult->d_inode) {
460 dput(result);
461 result = nresult;
462 } else
463 dput(nresult);
464 }
465 }
466
467 /*
468 * At this point we are done with the parent, but it's pinned
469 * by the child dentry anyway.
470 */
471 dput(target_dir);
472
473 /*
474 * And finally make sure the dentry is actually acceptable
475 * to NFSD.
476 */
477 alias = find_acceptable_alias(result, acceptable, context);
478 if (!alias) {
479 err = -EACCES;
480 goto err_result;
481 }
482
483 return alias;
484 }
485
486 err_result:
487 dput(result);
488 return ERR_PTR(err);
Christoph Hellwigd37065c2007-07-17 04:04:30 -0700489}
490EXPORT_SYMBOL_GPL(exportfs_decode_fh);
491
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492MODULE_LICENSE("GPL");