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 | { |
Nick Piggin | 949854d | 2011-01-07 17:49:37 +1100 | [diff] [blame] | 52 | char *end; |
David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 53 | int namelen; |
Nick Piggin | 949854d | 2011-01-07 17:49:37 +1100 | [diff] [blame] | 54 | unsigned seq; |
David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 55 | |
Nick Piggin | 949854d | 2011-01-07 17:49:37 +1100 | [diff] [blame] | 56 | rename_retry: |
| 57 | end = buffer+buflen; |
David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 58 | *--end = '\0'; |
| 59 | buflen--; |
Nick Piggin | 949854d | 2011-01-07 17:49:37 +1100 | [diff] [blame] | 60 | |
| 61 | seq = read_seqbegin(&rename_lock); |
| 62 | rcu_read_lock(); |
David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 63 | while (!IS_ROOT(dentry) && dentry != droot) { |
David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 64 | namelen = dentry->d_name.len; |
| 65 | buflen -= namelen + 1; |
| 66 | if (buflen < 0) |
Josh Triplett | ce51019 | 2006-07-24 16:30:00 -0700 | [diff] [blame] | 67 | goto Elong_unlock; |
David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 68 | end -= namelen; |
| 69 | memcpy(end, dentry->d_name.name, namelen); |
| 70 | *--end = '/'; |
| 71 | dentry = dentry->d_parent; |
| 72 | } |
Nick Piggin | 949854d | 2011-01-07 17:49:37 +1100 | [diff] [blame] | 73 | rcu_read_unlock(); |
| 74 | if (read_seqretry(&rename_lock, seq)) |
| 75 | goto rename_retry; |
Trond Myklebust | 0b75b35 | 2009-06-22 15:09:14 -0400 | [diff] [blame] | 76 | if (*end != '/') { |
| 77 | if (--buflen < 0) |
| 78 | goto Elong; |
| 79 | *--end = '/'; |
| 80 | } |
David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 81 | namelen = strlen(base); |
| 82 | /* Strip off excess slashes in base string */ |
| 83 | while (namelen > 0 && base[namelen - 1] == '/') |
| 84 | namelen--; |
| 85 | buflen -= namelen; |
| 86 | if (buflen < 0) |
| 87 | goto Elong; |
| 88 | end -= namelen; |
| 89 | memcpy(end, base, namelen); |
| 90 | return end; |
Josh Triplett | ce51019 | 2006-07-24 16:30:00 -0700 | [diff] [blame] | 91 | Elong_unlock: |
Nick Piggin | 949854d | 2011-01-07 17:49:37 +1100 | [diff] [blame] | 92 | rcu_read_unlock(); |
| 93 | if (read_seqretry(&rename_lock, seq)) |
| 94 | goto rename_retry; |
David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 95 | Elong: |
| 96 | return ERR_PTR(-ENAMETOOLONG); |
| 97 | } |
| 98 | |
| 99 | /* |
David Howells | 36d43a4 | 2011-01-14 18:45:42 +0000 | [diff] [blame] | 100 | * nfs_d_automount - Handle crossing a mountpoint on the server |
| 101 | * @path - The mountpoint |
Trond Myklebust | 55a9759 | 2006-06-09 09:34:19 -0400 | [diff] [blame] | 102 | * |
| 103 | * When we encounter a mountpoint on the server, we want to set up |
| 104 | * a mountpoint on the client too, to prevent inode numbers from |
| 105 | * colliding, and to allow "df" to work properly. |
| 106 | * On NFSv4, we also want to allow for the fact that different |
| 107 | * filesystems may be migrated to different servers in a failover |
| 108 | * situation, and that different filesystems may want to use |
| 109 | * different security flavours. |
| 110 | */ |
David Howells | 36d43a4 | 2011-01-14 18:45:42 +0000 | [diff] [blame] | 111 | struct vfsmount *nfs_d_automount(struct path *path) |
Trond Myklebust | 55a9759 | 2006-06-09 09:34:19 -0400 | [diff] [blame] | 112 | { |
| 113 | struct vfsmount *mnt; |
David Howells | 36d43a4 | 2011-01-14 18:45:42 +0000 | [diff] [blame] | 114 | struct nfs_server *server = NFS_SERVER(path->dentry->d_inode); |
Trond Myklebust | 55a9759 | 2006-06-09 09:34:19 -0400 | [diff] [blame] | 115 | struct dentry *parent; |
Trond Myklebust | a4d7f16 | 2010-04-16 16:22:46 -0400 | [diff] [blame] | 116 | struct nfs_fh *fh = NULL; |
| 117 | struct nfs_fattr *fattr = NULL; |
Trond Myklebust | 55a9759 | 2006-06-09 09:34:19 -0400 | [diff] [blame] | 118 | int err; |
| 119 | |
David Howells | 36d43a4 | 2011-01-14 18:45:42 +0000 | [diff] [blame] | 120 | dprintk("--> nfs_d_automount()\n"); |
David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 121 | |
David Howells | 36d43a4 | 2011-01-14 18:45:42 +0000 | [diff] [blame] | 122 | mnt = ERR_PTR(-ESTALE); |
| 123 | if (IS_ROOT(path->dentry)) |
| 124 | goto out_nofree; |
Denis V. Lunev | 44d5759 | 2008-08-11 12:02:34 +0400 | [diff] [blame] | 125 | |
David Howells | 36d43a4 | 2011-01-14 18:45:42 +0000 | [diff] [blame] | 126 | mnt = ERR_PTR(-ENOMEM); |
Trond Myklebust | a4d7f16 | 2010-04-16 16:22:46 -0400 | [diff] [blame] | 127 | fh = nfs_alloc_fhandle(); |
| 128 | fattr = nfs_alloc_fattr(); |
| 129 | if (fh == NULL || fattr == NULL) |
David Howells | 36d43a4 | 2011-01-14 18:45:42 +0000 | [diff] [blame] | 130 | goto out; |
Trond Myklebust | a4d7f16 | 2010-04-16 16:22:46 -0400 | [diff] [blame] | 131 | |
Harvey Harrison | 3110ff8 | 2008-05-02 13:42:44 -0700 | [diff] [blame] | 132 | dprintk("%s: enter\n", __func__); |
David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 133 | |
David Howells | 36d43a4 | 2011-01-14 18:45:42 +0000 | [diff] [blame] | 134 | /* Look it up again to get its attributes */ |
| 135 | parent = dget_parent(path->dentry); |
David Howells | 8fa5c00 | 2006-08-22 20:06:12 -0400 | [diff] [blame] | 136 | err = server->nfs_client->rpc_ops->lookup(parent->d_inode, |
David Howells | 36d43a4 | 2011-01-14 18:45:42 +0000 | [diff] [blame] | 137 | &path->dentry->d_name, |
Trond Myklebust | a4d7f16 | 2010-04-16 16:22:46 -0400 | [diff] [blame] | 138 | fh, fattr); |
Trond Myklebust | 55a9759 | 2006-06-09 09:34:19 -0400 | [diff] [blame] | 139 | dput(parent); |
David Howells | 36d43a4 | 2011-01-14 18:45:42 +0000 | [diff] [blame] | 140 | if (err != 0) { |
| 141 | mnt = ERR_PTR(err); |
| 142 | goto out; |
| 143 | } |
Trond Myklebust | 55a9759 | 2006-06-09 09:34:19 -0400 | [diff] [blame] | 144 | |
Trond Myklebust | a4d7f16 | 2010-04-16 16:22:46 -0400 | [diff] [blame] | 145 | if (fattr->valid & NFS_ATTR_FATTR_V4_REFERRAL) |
David Howells | 36d43a4 | 2011-01-14 18:45:42 +0000 | [diff] [blame] | 146 | mnt = nfs_do_refmount(path->mnt, path->dentry); |
Manoj Naik | 6b97fd3 | 2006-06-09 09:34:29 -0400 | [diff] [blame] | 147 | else |
David Howells | 36d43a4 | 2011-01-14 18:45:42 +0000 | [diff] [blame] | 148 | mnt = nfs_do_submount(path->mnt, path->dentry, fh, fattr); |
Trond Myklebust | 55a9759 | 2006-06-09 09:34:19 -0400 | [diff] [blame] | 149 | if (IS_ERR(mnt)) |
David Howells | 36d43a4 | 2011-01-14 18:45:42 +0000 | [diff] [blame] | 150 | goto out; |
Trond Myklebust | 55a9759 | 2006-06-09 09:34:19 -0400 | [diff] [blame] | 151 | |
David Howells | ea5b778 | 2011-01-14 19:10:03 +0000 | [diff] [blame] | 152 | dprintk("%s: done, success\n", __func__); |
| 153 | mntget(mnt); /* prevent immediate expiration */ |
| 154 | mnt_set_expiry(mnt, &nfs_automount_list); |
| 155 | schedule_delayed_work(&nfs_automount_task, nfs_mountpoint_expiry_timeout); |
David Howells | 36d43a4 | 2011-01-14 18:45:42 +0000 | [diff] [blame] | 156 | |
Trond Myklebust | 55a9759 | 2006-06-09 09:34:19 -0400 | [diff] [blame] | 157 | out: |
Trond Myklebust | a4d7f16 | 2010-04-16 16:22:46 -0400 | [diff] [blame] | 158 | nfs_free_fattr(fattr); |
| 159 | nfs_free_fhandle(fh); |
David Howells | 36d43a4 | 2011-01-14 18:45:42 +0000 | [diff] [blame] | 160 | out_nofree: |
| 161 | dprintk("<-- nfs_follow_mountpoint() = %p\n", mnt); |
| 162 | return mnt; |
Trond Myklebust | 55a9759 | 2006-06-09 09:34:19 -0400 | [diff] [blame] | 163 | } |
| 164 | |
Arjan van de Ven | 92e1d5b | 2007-02-12 00:55:39 -0800 | [diff] [blame] | 165 | const struct inode_operations nfs_mountpoint_inode_operations = { |
Trond Myklebust | 55a9759 | 2006-06-09 09:34:19 -0400 | [diff] [blame] | 166 | .getattr = nfs_getattr, |
| 167 | }; |
Trond Myklebust | 51d8fa6 | 2006-06-09 09:34:20 -0400 | [diff] [blame] | 168 | |
Arjan van de Ven | 92e1d5b | 2007-02-12 00:55:39 -0800 | [diff] [blame] | 169 | const struct inode_operations nfs_referral_inode_operations = { |
Manoj Naik | 6b97fd3 | 2006-06-09 09:34:29 -0400 | [diff] [blame] | 170 | }; |
| 171 | |
David Howells | 65f27f3 | 2006-11-22 14:55:48 +0000 | [diff] [blame] | 172 | static void nfs_expire_automounts(struct work_struct *work) |
Trond Myklebust | 51d8fa6 | 2006-06-09 09:34:20 -0400 | [diff] [blame] | 173 | { |
David Howells | 65f27f3 | 2006-11-22 14:55:48 +0000 | [diff] [blame] | 174 | struct list_head *list = &nfs_automount_list; |
Trond Myklebust | 51d8fa6 | 2006-06-09 09:34:20 -0400 | [diff] [blame] | 175 | |
| 176 | mark_mounts_for_expiry(list); |
| 177 | if (!list_empty(list)) |
| 178 | schedule_delayed_work(&nfs_automount_task, nfs_mountpoint_expiry_timeout); |
| 179 | } |
| 180 | |
| 181 | void nfs_release_automount_timer(void) |
| 182 | { |
Trond Myklebust | 3d39c69 | 2007-08-07 15:28:33 -0400 | [diff] [blame] | 183 | if (list_empty(&nfs_automount_list)) |
Trond Myklebust | 560aef7 | 2007-08-27 09:14:56 -0400 | [diff] [blame] | 184 | cancel_delayed_work(&nfs_automount_task); |
Trond Myklebust | 51d8fa6 | 2006-06-09 09:34:20 -0400 | [diff] [blame] | 185 | } |
David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 186 | |
| 187 | /* |
| 188 | * Clone a mountpoint of the appropriate type |
| 189 | */ |
David Howells | 509de81 | 2006-08-22 20:06:11 -0400 | [diff] [blame] | 190 | static struct vfsmount *nfs_do_clone_mount(struct nfs_server *server, |
| 191 | const char *devname, |
David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 192 | struct nfs_clone_mount *mountdata) |
| 193 | { |
| 194 | #ifdef CONFIG_NFS_V4 |
Denis V. Lunev | fd08d7e | 2008-07-31 09:38:55 +0400 | [diff] [blame] | 195 | struct vfsmount *mnt = ERR_PTR(-EINVAL); |
Trond Myklebust | 40c55319 | 2007-12-14 14:56:07 -0500 | [diff] [blame] | 196 | switch (server->nfs_client->rpc_ops->version) { |
David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 197 | case 2: |
| 198 | case 3: |
David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 199 | mnt = vfs_kern_mount(&nfs_xdev_fs_type, 0, devname, mountdata); |
David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 200 | break; |
| 201 | case 4: |
David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 202 | mnt = vfs_kern_mount(&nfs4_xdev_fs_type, 0, devname, mountdata); |
David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 203 | } |
| 204 | return mnt; |
| 205 | #else |
David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 206 | return vfs_kern_mount(&nfs_xdev_fs_type, 0, devname, mountdata); |
David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 207 | #endif |
| 208 | } |
| 209 | |
| 210 | /** |
| 211 | * nfs_do_submount - set up mountpoint when crossing a filesystem boundary |
| 212 | * @mnt_parent - mountpoint of parent directory |
| 213 | * @dentry - parent directory |
| 214 | * @fh - filehandle for new root dentry |
| 215 | * @fattr - attributes for new root inode |
| 216 | * |
| 217 | */ |
Adrian Bunk | 66f3750 | 2006-09-27 01:51:13 -0700 | [diff] [blame] | 218 | static struct vfsmount *nfs_do_submount(const struct vfsmount *mnt_parent, |
| 219 | const struct dentry *dentry, |
| 220 | struct nfs_fh *fh, |
| 221 | struct nfs_fattr *fattr) |
David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 222 | { |
| 223 | struct nfs_clone_mount mountdata = { |
| 224 | .sb = mnt_parent->mnt_sb, |
| 225 | .dentry = dentry, |
| 226 | .fh = fh, |
| 227 | .fattr = fattr, |
| 228 | }; |
| 229 | struct vfsmount *mnt = ERR_PTR(-ENOMEM); |
| 230 | char *page = (char *) __get_free_page(GFP_USER); |
| 231 | char *devname; |
| 232 | |
David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 233 | dprintk("--> nfs_do_submount()\n"); |
| 234 | |
Harvey Harrison | 3110ff8 | 2008-05-02 13:42:44 -0700 | [diff] [blame] | 235 | dprintk("%s: submounting on %s/%s\n", __func__, |
David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 236 | dentry->d_parent->d_name.name, |
| 237 | dentry->d_name.name); |
| 238 | if (page == NULL) |
| 239 | goto out; |
| 240 | devname = nfs_devname(mnt_parent, dentry, page, PAGE_SIZE); |
| 241 | mnt = (struct vfsmount *)devname; |
| 242 | if (IS_ERR(devname)) |
| 243 | goto free_page; |
| 244 | mnt = nfs_do_clone_mount(NFS_SB(mnt_parent->mnt_sb), devname, &mountdata); |
| 245 | free_page: |
| 246 | free_page((unsigned long)page); |
| 247 | out: |
Harvey Harrison | 3110ff8 | 2008-05-02 13:42:44 -0700 | [diff] [blame] | 248 | dprintk("%s: done\n", __func__); |
David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 249 | |
| 250 | dprintk("<-- nfs_do_submount() = %p\n", mnt); |
David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 251 | return mnt; |
| 252 | } |