Trond Myklebust | 55a9759 | 2006-06-09 09:34:19 -0400 | [diff] [blame] | 1 | /* |
| 2 | * linux/fs/nfs/namespace.c |
| 3 | * |
| 4 | * Copyright (C) 2005 Trond Myklebust <Trond.Myklebust@netapp.com> |
David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 5 | * - Modified by David Howells <dhowells@redhat.com> |
Trond Myklebust | 55a9759 | 2006-06-09 09:34:19 -0400 | [diff] [blame] | 6 | * |
| 7 | * NFS namespace |
| 8 | */ |
| 9 | |
Trond Myklebust | 55a9759 | 2006-06-09 09:34:19 -0400 | [diff] [blame] | 10 | #include <linux/dcache.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 11 | #include <linux/gfp.h> |
Trond Myklebust | 55a9759 | 2006-06-09 09:34:19 -0400 | [diff] [blame] | 12 | #include <linux/mount.h> |
| 13 | #include <linux/namei.h> |
| 14 | #include <linux/nfs_fs.h> |
| 15 | #include <linux/string.h> |
| 16 | #include <linux/sunrpc/clnt.h> |
| 17 | #include <linux/vfs.h> |
David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 18 | #include "internal.h" |
Trond Myklebust | 55a9759 | 2006-06-09 09:34:19 -0400 | [diff] [blame] | 19 | |
| 20 | #define NFSDBG_FACILITY NFSDBG_VFS |
| 21 | |
David Howells | 65f27f3 | 2006-11-22 14:55:48 +0000 | [diff] [blame] | 22 | static void nfs_expire_automounts(struct work_struct *work); |
David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 23 | |
Adrian Bunk | a3dab29 | 2008-04-14 21:41:32 +0300 | [diff] [blame] | 24 | static LIST_HEAD(nfs_automount_list); |
David Howells | 65f27f3 | 2006-11-22 14:55:48 +0000 | [diff] [blame] | 25 | static DECLARE_DELAYED_WORK(nfs_automount_task, nfs_expire_automounts); |
Trond Myklebust | 51d8fa6 | 2006-06-09 09:34:20 -0400 | [diff] [blame] | 26 | int nfs_mountpoint_expiry_timeout = 500 * HZ; |
| 27 | |
Adrian Bunk | 66f3750 | 2006-09-27 01:51:13 -0700 | [diff] [blame] | 28 | static struct vfsmount *nfs_do_submount(const struct vfsmount *mnt_parent, |
| 29 | const struct dentry *dentry, |
| 30 | struct nfs_fh *fh, |
| 31 | struct nfs_fattr *fattr); |
| 32 | |
Trond Myklebust | 55a9759 | 2006-06-09 09:34:19 -0400 | [diff] [blame] | 33 | /* |
David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 34 | * nfs_path - reconstruct the path given an arbitrary dentry |
| 35 | * @base - arbitrary string to prepend to the path |
David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 36 | * @droot - pointer to root dentry for mountpoint |
David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 37 | * @dentry - pointer to dentry |
| 38 | * @buffer - result buffer |
| 39 | * @buflen - length of buffer |
| 40 | * |
| 41 | * Helper function for constructing the path from the |
| 42 | * root dentry to an arbitrary hashed dentry. |
| 43 | * |
| 44 | * This is mainly for use in figuring out the path on the |
| 45 | * server side when automounting on top of an existing partition. |
| 46 | */ |
David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 47 | char *nfs_path(const char *base, |
| 48 | const struct dentry *droot, |
| 49 | const struct dentry *dentry, |
David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 50 | char *buffer, ssize_t buflen) |
| 51 | { |
| 52 | char *end = buffer+buflen; |
| 53 | int namelen; |
| 54 | |
| 55 | *--end = '\0'; |
| 56 | buflen--; |
| 57 | spin_lock(&dcache_lock); |
David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 58 | while (!IS_ROOT(dentry) && dentry != droot) { |
David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 59 | namelen = dentry->d_name.len; |
| 60 | buflen -= namelen + 1; |
| 61 | if (buflen < 0) |
Josh Triplett | ce51019 | 2006-07-24 16:30:00 -0700 | [diff] [blame] | 62 | goto Elong_unlock; |
David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 63 | end -= namelen; |
| 64 | memcpy(end, dentry->d_name.name, namelen); |
| 65 | *--end = '/'; |
| 66 | dentry = dentry->d_parent; |
| 67 | } |
| 68 | spin_unlock(&dcache_lock); |
Trond Myklebust | 0b75b35 | 2009-06-22 15:09:14 -0400 | [diff] [blame] | 69 | if (*end != '/') { |
| 70 | if (--buflen < 0) |
| 71 | goto Elong; |
| 72 | *--end = '/'; |
| 73 | } |
David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 74 | namelen = strlen(base); |
| 75 | /* Strip off excess slashes in base string */ |
| 76 | while (namelen > 0 && base[namelen - 1] == '/') |
| 77 | namelen--; |
| 78 | buflen -= namelen; |
| 79 | if (buflen < 0) |
| 80 | goto Elong; |
| 81 | end -= namelen; |
| 82 | memcpy(end, base, namelen); |
| 83 | return end; |
Josh Triplett | ce51019 | 2006-07-24 16:30:00 -0700 | [diff] [blame] | 84 | Elong_unlock: |
| 85 | spin_unlock(&dcache_lock); |
David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 86 | Elong: |
| 87 | return ERR_PTR(-ENAMETOOLONG); |
| 88 | } |
| 89 | |
| 90 | /* |
Trond Myklebust | 55a9759 | 2006-06-09 09:34:19 -0400 | [diff] [blame] | 91 | * nfs_follow_mountpoint - handle crossing a mountpoint on the server |
| 92 | * @dentry - dentry of mountpoint |
| 93 | * @nd - nameidata info |
| 94 | * |
| 95 | * When we encounter a mountpoint on the server, we want to set up |
| 96 | * a mountpoint on the client too, to prevent inode numbers from |
| 97 | * colliding, and to allow "df" to work properly. |
| 98 | * On NFSv4, we also want to allow for the fact that different |
| 99 | * filesystems may be migrated to different servers in a failover |
| 100 | * situation, and that different filesystems may want to use |
| 101 | * different security flavours. |
| 102 | */ |
| 103 | static void * nfs_follow_mountpoint(struct dentry *dentry, struct nameidata *nd) |
| 104 | { |
| 105 | struct vfsmount *mnt; |
| 106 | struct nfs_server *server = NFS_SERVER(dentry->d_inode); |
| 107 | struct dentry *parent; |
Trond Myklebust | a4d7f16 | 2010-04-16 16:22:46 -0400 | [diff] [blame] | 108 | struct nfs_fh *fh = NULL; |
| 109 | struct nfs_fattr *fattr = NULL; |
Trond Myklebust | 55a9759 | 2006-06-09 09:34:19 -0400 | [diff] [blame] | 110 | int err; |
| 111 | |
David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 112 | dprintk("--> nfs_follow_mountpoint()\n"); |
| 113 | |
Denis V. Lunev | 44d5759 | 2008-08-11 12:02:34 +0400 | [diff] [blame] | 114 | err = -ESTALE; |
| 115 | if (IS_ROOT(dentry)) |
| 116 | goto out_err; |
| 117 | |
Trond Myklebust | a4d7f16 | 2010-04-16 16:22:46 -0400 | [diff] [blame] | 118 | err = -ENOMEM; |
| 119 | fh = nfs_alloc_fhandle(); |
| 120 | fattr = nfs_alloc_fattr(); |
| 121 | if (fh == NULL || fattr == NULL) |
| 122 | goto out_err; |
| 123 | |
Harvey Harrison | 3110ff8 | 2008-05-02 13:42:44 -0700 | [diff] [blame] | 124 | dprintk("%s: enter\n", __func__); |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 125 | dput(nd->path.dentry); |
| 126 | nd->path.dentry = dget(dentry); |
David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 127 | |
Trond Myklebust | 55a9759 | 2006-06-09 09:34:19 -0400 | [diff] [blame] | 128 | /* Look it up again */ |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 129 | parent = dget_parent(nd->path.dentry); |
David Howells | 8fa5c00 | 2006-08-22 20:06:12 -0400 | [diff] [blame] | 130 | err = server->nfs_client->rpc_ops->lookup(parent->d_inode, |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 131 | &nd->path.dentry->d_name, |
Trond Myklebust | a4d7f16 | 2010-04-16 16:22:46 -0400 | [diff] [blame] | 132 | fh, fattr); |
Trond Myklebust | 55a9759 | 2006-06-09 09:34:19 -0400 | [diff] [blame] | 133 | dput(parent); |
| 134 | if (err != 0) |
| 135 | goto out_err; |
| 136 | |
Trond Myklebust | a4d7f16 | 2010-04-16 16:22:46 -0400 | [diff] [blame] | 137 | if (fattr->valid & NFS_ATTR_FATTR_V4_REFERRAL) |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 138 | mnt = nfs_do_refmount(nd->path.mnt, nd->path.dentry); |
Manoj Naik | 6b97fd3 | 2006-06-09 09:34:29 -0400 | [diff] [blame] | 139 | else |
Trond Myklebust | a4d7f16 | 2010-04-16 16:22:46 -0400 | [diff] [blame] | 140 | mnt = nfs_do_submount(nd->path.mnt, nd->path.dentry, fh, |
| 141 | fattr); |
Trond Myklebust | 55a9759 | 2006-06-09 09:34:19 -0400 | [diff] [blame] | 142 | err = PTR_ERR(mnt); |
| 143 | if (IS_ERR(mnt)) |
| 144 | goto out_err; |
| 145 | |
| 146 | mntget(mnt); |
Al Viro | 8d66bf5 | 2008-08-01 09:05:54 -0400 | [diff] [blame] | 147 | err = do_add_mount(mnt, &nd->path, nd->path.mnt->mnt_flags|MNT_SHRINKABLE, |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 148 | &nfs_automount_list); |
Trond Myklebust | 55a9759 | 2006-06-09 09:34:19 -0400 | [diff] [blame] | 149 | if (err < 0) { |
| 150 | mntput(mnt); |
| 151 | if (err == -EBUSY) |
| 152 | goto out_follow; |
| 153 | goto out_err; |
| 154 | } |
Jan Blunck | 31f31db | 2008-05-02 13:42:45 -0700 | [diff] [blame] | 155 | path_put(&nd->path); |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 156 | nd->path.mnt = mnt; |
| 157 | nd->path.dentry = dget(mnt->mnt_root); |
Trond Myklebust | 51d8fa6 | 2006-06-09 09:34:20 -0400 | [diff] [blame] | 158 | schedule_delayed_work(&nfs_automount_task, nfs_mountpoint_expiry_timeout); |
Trond Myklebust | 55a9759 | 2006-06-09 09:34:19 -0400 | [diff] [blame] | 159 | out: |
Trond Myklebust | a4d7f16 | 2010-04-16 16:22:46 -0400 | [diff] [blame] | 160 | nfs_free_fattr(fattr); |
| 161 | nfs_free_fhandle(fh); |
Harvey Harrison | 3110ff8 | 2008-05-02 13:42:44 -0700 | [diff] [blame] | 162 | dprintk("%s: done, returned %d\n", __func__, err); |
David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 163 | |
| 164 | dprintk("<-- nfs_follow_mountpoint() = %d\n", err); |
Trond Myklebust | 55a9759 | 2006-06-09 09:34:19 -0400 | [diff] [blame] | 165 | return ERR_PTR(err); |
| 166 | out_err: |
Jan Blunck | 1d957f9 | 2008-02-14 19:34:35 -0800 | [diff] [blame] | 167 | path_put(&nd->path); |
Trond Myklebust | 55a9759 | 2006-06-09 09:34:19 -0400 | [diff] [blame] | 168 | goto out; |
| 169 | out_follow: |
Jan Blunck | 4ac9137 | 2008-02-14 19:34:32 -0800 | [diff] [blame] | 170 | while (d_mountpoint(nd->path.dentry) && |
Al Viro | 9393bd0 | 2009-04-18 13:58:15 -0400 | [diff] [blame] | 171 | follow_down(&nd->path)) |
Trond Myklebust | 55a9759 | 2006-06-09 09:34:19 -0400 | [diff] [blame] | 172 | ; |
| 173 | err = 0; |
| 174 | goto out; |
| 175 | } |
| 176 | |
Arjan van de Ven | 92e1d5b | 2007-02-12 00:55:39 -0800 | [diff] [blame] | 177 | const struct inode_operations nfs_mountpoint_inode_operations = { |
Trond Myklebust | 55a9759 | 2006-06-09 09:34:19 -0400 | [diff] [blame] | 178 | .follow_link = nfs_follow_mountpoint, |
| 179 | .getattr = nfs_getattr, |
| 180 | }; |
Trond Myklebust | 51d8fa6 | 2006-06-09 09:34:20 -0400 | [diff] [blame] | 181 | |
Arjan van de Ven | 92e1d5b | 2007-02-12 00:55:39 -0800 | [diff] [blame] | 182 | const struct inode_operations nfs_referral_inode_operations = { |
Manoj Naik | 6b97fd3 | 2006-06-09 09:34:29 -0400 | [diff] [blame] | 183 | .follow_link = nfs_follow_mountpoint, |
| 184 | }; |
| 185 | |
David Howells | 65f27f3 | 2006-11-22 14:55:48 +0000 | [diff] [blame] | 186 | static void nfs_expire_automounts(struct work_struct *work) |
Trond Myklebust | 51d8fa6 | 2006-06-09 09:34:20 -0400 | [diff] [blame] | 187 | { |
David Howells | 65f27f3 | 2006-11-22 14:55:48 +0000 | [diff] [blame] | 188 | struct list_head *list = &nfs_automount_list; |
Trond Myklebust | 51d8fa6 | 2006-06-09 09:34:20 -0400 | [diff] [blame] | 189 | |
| 190 | mark_mounts_for_expiry(list); |
| 191 | if (!list_empty(list)) |
| 192 | schedule_delayed_work(&nfs_automount_task, nfs_mountpoint_expiry_timeout); |
| 193 | } |
| 194 | |
| 195 | void nfs_release_automount_timer(void) |
| 196 | { |
Trond Myklebust | 3d39c69 | 2007-08-07 15:28:33 -0400 | [diff] [blame] | 197 | if (list_empty(&nfs_automount_list)) |
Trond Myklebust | 560aef7 | 2007-08-27 09:14:56 -0400 | [diff] [blame] | 198 | cancel_delayed_work(&nfs_automount_task); |
Trond Myklebust | 51d8fa6 | 2006-06-09 09:34:20 -0400 | [diff] [blame] | 199 | } |
David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 200 | |
| 201 | /* |
| 202 | * Clone a mountpoint of the appropriate type |
| 203 | */ |
David Howells | 509de81 | 2006-08-22 20:06:11 -0400 | [diff] [blame] | 204 | static struct vfsmount *nfs_do_clone_mount(struct nfs_server *server, |
| 205 | const char *devname, |
David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 206 | struct nfs_clone_mount *mountdata) |
| 207 | { |
| 208 | #ifdef CONFIG_NFS_V4 |
Denis V. Lunev | fd08d7e | 2008-07-31 09:38:55 +0400 | [diff] [blame] | 209 | struct vfsmount *mnt = ERR_PTR(-EINVAL); |
Trond Myklebust | 40c55319 | 2007-12-14 14:56:07 -0500 | [diff] [blame] | 210 | switch (server->nfs_client->rpc_ops->version) { |
David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 211 | case 2: |
| 212 | case 3: |
David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 213 | mnt = vfs_kern_mount(&nfs_xdev_fs_type, 0, devname, mountdata); |
David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 214 | break; |
| 215 | case 4: |
David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 216 | mnt = vfs_kern_mount(&nfs4_xdev_fs_type, 0, devname, mountdata); |
David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 217 | } |
| 218 | return mnt; |
| 219 | #else |
David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 220 | return vfs_kern_mount(&nfs_xdev_fs_type, 0, devname, mountdata); |
David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 221 | #endif |
| 222 | } |
| 223 | |
| 224 | /** |
| 225 | * nfs_do_submount - set up mountpoint when crossing a filesystem boundary |
| 226 | * @mnt_parent - mountpoint of parent directory |
| 227 | * @dentry - parent directory |
| 228 | * @fh - filehandle for new root dentry |
| 229 | * @fattr - attributes for new root inode |
| 230 | * |
| 231 | */ |
Adrian Bunk | 66f3750 | 2006-09-27 01:51:13 -0700 | [diff] [blame] | 232 | static struct vfsmount *nfs_do_submount(const struct vfsmount *mnt_parent, |
| 233 | const struct dentry *dentry, |
| 234 | struct nfs_fh *fh, |
| 235 | struct nfs_fattr *fattr) |
David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 236 | { |
| 237 | struct nfs_clone_mount mountdata = { |
| 238 | .sb = mnt_parent->mnt_sb, |
| 239 | .dentry = dentry, |
| 240 | .fh = fh, |
| 241 | .fattr = fattr, |
| 242 | }; |
| 243 | struct vfsmount *mnt = ERR_PTR(-ENOMEM); |
| 244 | char *page = (char *) __get_free_page(GFP_USER); |
| 245 | char *devname; |
| 246 | |
David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 247 | dprintk("--> nfs_do_submount()\n"); |
| 248 | |
Harvey Harrison | 3110ff8 | 2008-05-02 13:42:44 -0700 | [diff] [blame] | 249 | dprintk("%s: submounting on %s/%s\n", __func__, |
David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 250 | dentry->d_parent->d_name.name, |
| 251 | dentry->d_name.name); |
| 252 | if (page == NULL) |
| 253 | goto out; |
| 254 | devname = nfs_devname(mnt_parent, dentry, page, PAGE_SIZE); |
| 255 | mnt = (struct vfsmount *)devname; |
| 256 | if (IS_ERR(devname)) |
| 257 | goto free_page; |
| 258 | mnt = nfs_do_clone_mount(NFS_SB(mnt_parent->mnt_sb), devname, &mountdata); |
| 259 | free_page: |
| 260 | free_page((unsigned long)page); |
| 261 | out: |
Harvey Harrison | 3110ff8 | 2008-05-02 13:42:44 -0700 | [diff] [blame] | 262 | dprintk("%s: done\n", __func__); |
David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 263 | |
| 264 | dprintk("<-- nfs_do_submount() = %p\n", mnt); |
David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 265 | return mnt; |
| 266 | } |