Christoph Hellwig | e38f981 | 2007-10-21 16:42:19 -0700 | [diff] [blame] | 1 | /* |
| 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 Fields | dc7a081 | 2009-10-27 14:41:35 -0400 | [diff] [blame] | 9 | * take a look at Documentation/filesystems/nfs/Exporting. |
Christoph Hellwig | e38f981 | 2007-10-21 16:42:19 -0700 | [diff] [blame] | 10 | */ |
Christoph Hellwig | a569425 | 2007-07-17 04:04:28 -0700 | [diff] [blame] | 11 | #include <linux/exportfs.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12 | #include <linux/fs.h> |
| 13 | #include <linux/file.h> |
| 14 | #include <linux/module.h> |
Christoph Hellwig | d37065c | 2007-07-17 04:04:30 -0700 | [diff] [blame] | 15 | #include <linux/mount.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | #include <linux/namei.h> |
David Howells | 745ca24 | 2008-11-14 10:39:22 +1100 | [diff] [blame] | 17 | #include <linux/sched.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 18 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 | #define dprintk(fmt, args...) do{}while(0) |
| 20 | |
Christoph Hellwig | 10f11c3 | 2007-07-17 04:04:31 -0700 | [diff] [blame] | 21 | |
Al Viro | 765927b | 2012-06-26 21:58:53 +0400 | [diff] [blame] | 22 | static int get_name(const struct path *path, char *name, struct dentry *child); |
Christoph Hellwig | 10f11c3 | 2007-07-17 04:04:31 -0700 | [diff] [blame] | 23 | |
| 24 | |
Christoph Hellwig | e38f981 | 2007-10-21 16:42:19 -0700 | [diff] [blame] | 25 | static int exportfs_get_name(struct vfsmount *mnt, struct dentry *dir, |
| 26 | char *name, struct dentry *child) |
Christoph Hellwig | 10f11c3 | 2007-07-17 04:04:31 -0700 | [diff] [blame] | 27 | { |
Christoph Hellwig | 3965516 | 2007-10-21 16:42:17 -0700 | [diff] [blame] | 28 | const struct export_operations *nop = dir->d_sb->s_export_op; |
Al Viro | 765927b | 2012-06-26 21:58:53 +0400 | [diff] [blame] | 29 | struct path path = {.mnt = mnt, .dentry = dir}; |
Christoph Hellwig | 10f11c3 | 2007-07-17 04:04:31 -0700 | [diff] [blame] | 30 | |
| 31 | if (nop->get_name) |
| 32 | return nop->get_name(dir, name, child); |
| 33 | else |
Al Viro | 765927b | 2012-06-26 21:58:53 +0400 | [diff] [blame] | 34 | return get_name(&path, name, child); |
Christoph Hellwig | 10f11c3 | 2007-07-17 04:04:31 -0700 | [diff] [blame] | 35 | } |
| 36 | |
Christoph Hellwig | fb66a19 | 2007-07-17 04:04:32 -0700 | [diff] [blame] | 37 | /* |
| 38 | * Check if the dentry or any of it's aliases is acceptable. |
| 39 | */ |
Christoph Hellwig | e2f9901 | 2006-01-18 17:43:52 -0800 | [diff] [blame] | 40 | static struct dentry * |
| 41 | find_acceptable_alias(struct dentry *result, |
| 42 | int (*acceptable)(void *context, struct dentry *dentry), |
| 43 | void *context) |
| 44 | { |
| 45 | struct dentry *dentry, *toput = NULL; |
Nick Piggin | 873feea | 2011-01-07 17:50:06 +1100 | [diff] [blame] | 46 | struct inode *inode; |
Christoph Hellwig | e2f9901 | 2006-01-18 17:43:52 -0800 | [diff] [blame] | 47 | |
Christoph Hellwig | fb66a19 | 2007-07-17 04:04:32 -0700 | [diff] [blame] | 48 | if (acceptable(context, result)) |
| 49 | return result; |
| 50 | |
Nick Piggin | 873feea | 2011-01-07 17:50:06 +1100 | [diff] [blame] | 51 | inode = result->d_inode; |
| 52 | spin_lock(&inode->i_lock); |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 53 | hlist_for_each_entry(dentry, &inode->i_dentry, d_alias) { |
Nick Piggin | dc0474b | 2011-01-07 17:49:43 +1100 | [diff] [blame] | 54 | dget(dentry); |
Nick Piggin | 873feea | 2011-01-07 17:50:06 +1100 | [diff] [blame] | 55 | spin_unlock(&inode->i_lock); |
Christoph Hellwig | e2f9901 | 2006-01-18 17:43:52 -0800 | [diff] [blame] | 56 | if (toput) |
| 57 | dput(toput); |
| 58 | if (dentry != result && acceptable(context, dentry)) { |
| 59 | dput(result); |
| 60 | return dentry; |
| 61 | } |
Nick Piggin | 873feea | 2011-01-07 17:50:06 +1100 | [diff] [blame] | 62 | spin_lock(&inode->i_lock); |
Christoph Hellwig | e2f9901 | 2006-01-18 17:43:52 -0800 | [diff] [blame] | 63 | toput = dentry; |
| 64 | } |
Nick Piggin | 873feea | 2011-01-07 17:50:06 +1100 | [diff] [blame] | 65 | spin_unlock(&inode->i_lock); |
Christoph Hellwig | e2f9901 | 2006-01-18 17:43:52 -0800 | [diff] [blame] | 66 | |
| 67 | if (toput) |
| 68 | dput(toput); |
| 69 | return NULL; |
| 70 | } |
| 71 | |
Christoph Hellwig | dd90b50 | 2007-07-17 04:04:32 -0700 | [diff] [blame] | 72 | /* |
| 73 | * Find root of a disconnected subtree and return a reference to it. |
| 74 | */ |
| 75 | static struct dentry * |
| 76 | find_disconnected_root(struct dentry *dentry) |
| 77 | { |
| 78 | dget(dentry); |
Christoph Hellwig | 0461ee2 | 2010-10-13 11:56:37 -0400 | [diff] [blame] | 79 | 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 Hellwig | dd90b50 | 2007-07-17 04:04:32 -0700 | [diff] [blame] | 87 | dput(dentry); |
| 88 | dentry = parent; |
Christoph Hellwig | dd90b50 | 2007-07-17 04:04:32 -0700 | [diff] [blame] | 89 | } |
Christoph Hellwig | dd90b50 | 2007-07-17 04:04:32 -0700 | [diff] [blame] | 90 | return dentry; |
| 91 | } |
| 92 | |
J. Bruce Fields | 0dbc018 | 2013-09-09 16:15:13 -0400 | [diff] [blame^] | 93 | static 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 Hellwig | 019ab80 | 2007-07-17 04:04:33 -0700 | [diff] [blame] | 111 | /* |
| 112 | * Make sure target_dir is fully connected to the dentry tree. |
| 113 | * |
J. Bruce Fields | 78cee9a | 2013-10-22 20:59:19 -0400 | [diff] [blame] | 114 | * 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 Hellwig | 019ab80 | 2007-07-17 04:04:33 -0700 | [diff] [blame] | 127 | */ |
| 128 | static int |
Al Viro | f3f8e17 | 2008-08-11 12:39:47 -0400 | [diff] [blame] | 129 | reconnect_path(struct vfsmount *mnt, struct dentry *target_dir, char *nbuf) |
Christoph Hellwig | 019ab80 | 2007-07-17 04:04:33 -0700 | [diff] [blame] | 130 | { |
Christoph Hellwig | 019ab80 | 2007-07-17 04:04:33 -0700 | [diff] [blame] | 131 | 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 Hellwig | 854ff5c | 2013-10-16 15:48:53 -0400 | [diff] [blame] | 145 | BUG_ON(pd == mnt->mnt_sb->s_root); |
| 146 | |
Christoph Hellwig | 019ab80 | 2007-07-17 04:04:33 -0700 | [diff] [blame] | 147 | if (!IS_ROOT(pd)) { |
| 148 | /* must have found a connected parent - great */ |
J. Bruce Fields | 0dbc018 | 2013-09-09 16:15:13 -0400 | [diff] [blame^] | 149 | clear_disconnected(target_dir); |
| 150 | dput(pd); |
| 151 | break; |
Christoph Hellwig | 019ab80 | 2007-07-17 04:04:33 -0700 | [diff] [blame] | 152 | } 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 Hellwig | e38f981 | 2007-10-21 16:42:19 -0700 | [diff] [blame] | 172 | if (mnt->mnt_sb->s_export_op->get_parent) |
| 173 | ppd = mnt->mnt_sb->s_export_op->get_parent(pd); |
Christoph Hellwig | 019ab80 | 2007-07-17 04:04:33 -0700 | [diff] [blame] | 174 | 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 Harrison | 8e24eea | 2008-04-30 00:55:09 -0700 | [diff] [blame] | 179 | __func__, pd->d_inode->i_ino, err); |
Christoph Hellwig | 019ab80 | 2007-07-17 04:04:33 -0700 | [diff] [blame] | 180 | dput(pd); |
| 181 | break; |
| 182 | } |
| 183 | |
Harvey Harrison | 8e24eea | 2008-04-30 00:55:09 -0700 | [diff] [blame] | 184 | dprintk("%s: find name of %lu in %lu\n", __func__, |
Christoph Hellwig | 019ab80 | 2007-07-17 04:04:33 -0700 | [diff] [blame] | 185 | pd->d_inode->i_ino, ppd->d_inode->i_ino); |
Christoph Hellwig | e38f981 | 2007-10-21 16:42:19 -0700 | [diff] [blame] | 186 | err = exportfs_get_name(mnt, ppd, nbuf, pd); |
Christoph Hellwig | 019ab80 | 2007-07-17 04:04:33 -0700 | [diff] [blame] | 187 | 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 Harrison | 8e24eea | 2008-04-30 00:55:09 -0700 | [diff] [blame] | 197 | dprintk("%s: found name: %s\n", __func__, nbuf); |
Christoph Hellwig | 019ab80 | 2007-07-17 04:04:33 -0700 | [diff] [blame] | 198 | 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 Harrison | 8e24eea | 2008-04-30 00:55:09 -0700 | [diff] [blame] | 204 | __func__, err); |
Christoph Hellwig | 019ab80 | 2007-07-17 04:04:33 -0700 | [diff] [blame] | 205 | 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 Harrison | 8e24eea | 2008-04-30 00:55:09 -0700 | [diff] [blame] | 217 | printk("%s: npd != pd\n", __func__); |
Christoph Hellwig | 019ab80 | 2007-07-17 04:04:33 -0700 | [diff] [blame] | 218 | 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 239 | struct getdents_callback { |
Al Viro | 5c0ba4e | 2013-05-15 13:52:59 -0400 | [diff] [blame] | 240 | struct dir_context ctx; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 241 | char *name; /* name that was found. It already points to a |
| 242 | buffer NAME_MAX+1 is size */ |
J. Bruce Fields | 950ee95 | 2013-09-10 11:41:12 -0400 | [diff] [blame] | 243 | u64 ino; /* the inum we are looking for */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 244 | 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 | */ |
| 252 | static int filldir_one(void * __buf, const char * name, int len, |
David Howells | afefdbb | 2006-10-03 01:13:46 -0700 | [diff] [blame] | 253 | loff_t pos, u64 ino, unsigned int d_type) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 254 | { |
| 255 | struct getdents_callback *buf = __buf; |
| 256 | int result = 0; |
| 257 | |
| 258 | buf->sequence++; |
Al Viro | dfc59e2c | 2013-09-06 16:55:36 -0400 | [diff] [blame] | 259 | if (buf->ino == ino && len <= NAME_MAX) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 260 | 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 Viro | 765927b | 2012-06-26 21:58:53 +0400 | [diff] [blame] | 277 | static int get_name(const struct path *path, char *name, struct dentry *child) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 278 | { |
David Howells | 745ca24 | 2008-11-14 10:39:22 +1100 | [diff] [blame] | 279 | const struct cred *cred = current_cred(); |
Al Viro | 765927b | 2012-06-26 21:58:53 +0400 | [diff] [blame] | 280 | struct inode *dir = path->dentry->d_inode; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 281 | int error; |
| 282 | struct file *file; |
J. Bruce Fields | 950ee95 | 2013-09-10 11:41:12 -0400 | [diff] [blame] | 283 | struct kstat stat; |
| 284 | struct path child_path = { |
| 285 | .mnt = path->mnt, |
| 286 | .dentry = child, |
| 287 | }; |
Al Viro | ac6614b | 2013-05-22 22:22:04 -0400 | [diff] [blame] | 288 | struct getdents_callback buffer = { |
| 289 | .ctx.actor = filldir_one, |
| 290 | .name = name, |
Al Viro | ac6614b | 2013-05-22 22:22:04 -0400 | [diff] [blame] | 291 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 292 | |
| 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 Fields | 950ee95 | 2013-09-10 11:41:12 -0400 | [diff] [blame] | 300 | * 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 310 | * Open the directory ... |
| 311 | */ |
Al Viro | 765927b | 2012-06-26 21:58:53 +0400 | [diff] [blame] | 312 | file = dentry_open(path, O_RDONLY, cred); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 313 | error = PTR_ERR(file); |
| 314 | if (IS_ERR(file)) |
| 315 | goto out; |
| 316 | |
| 317 | error = -EINVAL; |
Al Viro | 2233f31 | 2013-05-22 21:44:23 -0400 | [diff] [blame] | 318 | if (!file->f_op->iterate) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 319 | goto out_close; |
| 320 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 321 | buffer.sequence = 0; |
| 322 | while (1) { |
| 323 | int old_seq = buffer.sequence; |
| 324 | |
Al Viro | 5c0ba4e | 2013-05-15 13:52:59 -0400 | [diff] [blame] | 325 | error = iterate_dir(file, &buffer.ctx); |
Al Viro | 53c9c5c | 2008-08-24 07:29:52 -0400 | [diff] [blame] | 326 | if (buffer.found) { |
| 327 | error = 0; |
| 328 | break; |
| 329 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 330 | |
| 331 | if (error < 0) |
| 332 | break; |
| 333 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 334 | error = -ENOENT; |
| 335 | if (old_seq == buffer.sequence) |
| 336 | break; |
| 337 | } |
| 338 | |
| 339 | out_close: |
| 340 | fput(file); |
| 341 | out: |
| 342 | return error; |
| 343 | } |
| 344 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 345 | /** |
| 346 | * export_encode_fh - default export_operations->encode_fh function |
Al Viro | b0b0382 | 2012-04-02 14:34:06 -0400 | [diff] [blame] | 347 | * @inode: the object to encode |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 348 | * @fh: where to store the file handle fragment |
| 349 | * @max_len: maximum length to store there |
Al Viro | b0b0382 | 2012-04-02 14:34:06 -0400 | [diff] [blame] | 350 | * @parent: parent directory inode, if wanted |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 351 | * |
| 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 Viro | b0b0382 | 2012-04-02 14:34:06 -0400 | [diff] [blame] | 357 | static int export_encode_fh(struct inode *inode, struct fid *fid, |
| 358 | int *max_len, struct inode *parent) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 359 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 360 | int len = *max_len; |
Christoph Hellwig | 6e91ea2 | 2007-10-21 16:42:03 -0700 | [diff] [blame] | 361 | int type = FILEID_INO32_GEN; |
Aneesh Kumar K.V | 5fe0c23 | 2011-01-29 18:43:25 +0530 | [diff] [blame] | 362 | |
Al Viro | b0b0382 | 2012-04-02 14:34:06 -0400 | [diff] [blame] | 363 | if (parent && (len < 4)) { |
Aneesh Kumar K.V | 5fe0c23 | 2011-01-29 18:43:25 +0530 | [diff] [blame] | 364 | *max_len = 4; |
Namjae Jeon | 216b6cb | 2012-08-29 10:10:10 -0400 | [diff] [blame] | 365 | return FILEID_INVALID; |
Aneesh Kumar K.V | 5fe0c23 | 2011-01-29 18:43:25 +0530 | [diff] [blame] | 366 | } else if (len < 2) { |
| 367 | *max_len = 2; |
Namjae Jeon | 216b6cb | 2012-08-29 10:10:10 -0400 | [diff] [blame] | 368 | return FILEID_INVALID; |
Aneesh Kumar K.V | 5fe0c23 | 2011-01-29 18:43:25 +0530 | [diff] [blame] | 369 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 370 | |
| 371 | len = 2; |
Christoph Hellwig | 6e91ea2 | 2007-10-21 16:42:03 -0700 | [diff] [blame] | 372 | fid->i32.ino = inode->i_ino; |
| 373 | fid->i32.gen = inode->i_generation; |
Al Viro | b0b0382 | 2012-04-02 14:34:06 -0400 | [diff] [blame] | 374 | if (parent) { |
Christoph Hellwig | 6e91ea2 | 2007-10-21 16:42:03 -0700 | [diff] [blame] | 375 | fid->i32.parent_ino = parent->i_ino; |
| 376 | fid->i32.parent_gen = parent->i_generation; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 377 | len = 4; |
Christoph Hellwig | 6e91ea2 | 2007-10-21 16:42:03 -0700 | [diff] [blame] | 378 | type = FILEID_INO32_GEN_PARENT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 379 | } |
| 380 | *max_len = len; |
| 381 | return type; |
| 382 | } |
| 383 | |
Cyrill Gorcunov | 711c7bf | 2012-12-17 16:05:08 -0800 | [diff] [blame] | 384 | int 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 | } |
| 394 | EXPORT_SYMBOL_GPL(exportfs_encode_inode_fh); |
| 395 | |
Christoph Hellwig | 6e91ea2 | 2007-10-21 16:42:03 -0700 | [diff] [blame] | 396 | int exportfs_encode_fh(struct dentry *dentry, struct fid *fid, int *max_len, |
Christoph Hellwig | d37065c | 2007-07-17 04:04:30 -0700 | [diff] [blame] | 397 | int connectable) |
| 398 | { |
Christoph Hellwig | 10f11c3 | 2007-07-17 04:04:31 -0700 | [diff] [blame] | 399 | int error; |
Al Viro | b0b0382 | 2012-04-02 14:34:06 -0400 | [diff] [blame] | 400 | struct dentry *p = NULL; |
| 401 | struct inode *inode = dentry->d_inode, *parent = NULL; |
Christoph Hellwig | d37065c | 2007-07-17 04:04:30 -0700 | [diff] [blame] | 402 | |
Al Viro | b0b0382 | 2012-04-02 14:34:06 -0400 | [diff] [blame] | 403 | 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 Gorcunov | 711c7bf | 2012-12-17 16:05:08 -0800 | [diff] [blame] | 411 | |
| 412 | error = exportfs_encode_inode_fh(inode, fid, max_len, parent); |
Al Viro | b0b0382 | 2012-04-02 14:34:06 -0400 | [diff] [blame] | 413 | dput(p); |
Christoph Hellwig | 10f11c3 | 2007-07-17 04:04:31 -0700 | [diff] [blame] | 414 | |
| 415 | return error; |
Christoph Hellwig | d37065c | 2007-07-17 04:04:30 -0700 | [diff] [blame] | 416 | } |
| 417 | EXPORT_SYMBOL_GPL(exportfs_encode_fh); |
| 418 | |
Christoph Hellwig | 6e91ea2 | 2007-10-21 16:42:03 -0700 | [diff] [blame] | 419 | struct 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 Hellwig | d37065c | 2007-07-17 04:04:30 -0700 | [diff] [blame] | 422 | { |
Christoph Hellwig | 3965516 | 2007-10-21 16:42:17 -0700 | [diff] [blame] | 423 | const struct export_operations *nop = mnt->mnt_sb->s_export_op; |
Christoph Hellwig | 2596110 | 2007-10-21 16:42:05 -0700 | [diff] [blame] | 424 | struct dentry *result, *alias; |
Al Viro | f3f8e17 | 2008-08-11 12:39:47 -0400 | [diff] [blame] | 425 | char nbuf[NAME_MAX+1]; |
Christoph Hellwig | 2596110 | 2007-10-21 16:42:05 -0700 | [diff] [blame] | 426 | int err; |
Christoph Hellwig | d37065c | 2007-07-17 04:04:30 -0700 | [diff] [blame] | 427 | |
Christoph Hellwig | 2596110 | 2007-10-21 16:42:05 -0700 | [diff] [blame] | 428 | /* |
Christoph Hellwig | 2596110 | 2007-10-21 16:42:05 -0700 | [diff] [blame] | 429 | * Try to get any dentry for the given file handle from the filesystem. |
| 430 | */ |
Aneesh Kumar K.V | becfd1f | 2011-01-29 18:43:26 +0530 | [diff] [blame] | 431 | if (!nop || !nop->fh_to_dentry) |
| 432 | return ERR_PTR(-ESTALE); |
Christoph Hellwig | 2596110 | 2007-10-21 16:42:05 -0700 | [diff] [blame] | 433 | result = nop->fh_to_dentry(mnt->mnt_sb, fid, fh_len, fileid_type); |
J. Bruce Fields | a4f4d6d | 2008-12-08 18:24:18 -0500 | [diff] [blame] | 434 | if (!result) |
| 435 | result = ERR_PTR(-ESTALE); |
Christoph Hellwig | 2596110 | 2007-10-21 16:42:05 -0700 | [diff] [blame] | 436 | 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 Viro | f3f8e17 | 2008-08-11 12:39:47 -0400 | [diff] [blame] | 449 | err = reconnect_path(mnt, result, nbuf); |
Christoph Hellwig | 2596110 | 2007-10-21 16:42:05 -0700 | [diff] [blame] | 450 | 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 Hellwig | 2596110 | 2007-10-21 16:42:05 -0700 | [diff] [blame] | 465 | |
| 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 Fields | a4f4d6d | 2008-12-08 18:24:18 -0500 | [diff] [blame] | 489 | if (!target_dir) |
| 490 | goto err_result; |
Christoph Hellwig | 2596110 | 2007-10-21 16:42:05 -0700 | [diff] [blame] | 491 | 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 Viro | f3f8e17 | 2008-08-11 12:39:47 -0400 | [diff] [blame] | 500 | err = reconnect_path(mnt, target_dir, nbuf); |
Christoph Hellwig | 2596110 | 2007-10-21 16:42:05 -0700 | [diff] [blame] | 501 | 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 Hellwig | e38f981 | 2007-10-21 16:42:19 -0700 | [diff] [blame] | 511 | err = exportfs_get_name(mnt, target_dir, nbuf, result); |
Christoph Hellwig | 2596110 | 2007-10-21 16:42:05 -0700 | [diff] [blame] | 512 | 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 Hellwig | d37065c | 2007-07-17 04:04:30 -0700 | [diff] [blame] | 548 | } |
| 549 | EXPORT_SYMBOL_GPL(exportfs_decode_fh); |
| 550 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 551 | MODULE_LICENSE("GPL"); |