| 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 |  | 
| Bryan Schumaker | ddda8e0 | 2012-07-30 16:05:23 -0400 | [diff] [blame] | 10 | #include <linux/module.h> | 
| Trond Myklebust | 55a9759 | 2006-06-09 09:34:19 -0400 | [diff] [blame] | 11 | #include <linux/dcache.h> | 
| Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 12 | #include <linux/gfp.h> | 
| Trond Myklebust | 55a9759 | 2006-06-09 09:34:19 -0400 | [diff] [blame] | 13 | #include <linux/mount.h> | 
|  | 14 | #include <linux/namei.h> | 
|  | 15 | #include <linux/nfs_fs.h> | 
|  | 16 | #include <linux/string.h> | 
|  | 17 | #include <linux/sunrpc/clnt.h> | 
|  | 18 | #include <linux/vfs.h> | 
| Bryan Schumaker | 7ebb931 | 2011-03-24 17:12:30 +0000 | [diff] [blame] | 19 | #include <linux/sunrpc/gss_api.h> | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 20 | #include "internal.h" | 
| Trond Myklebust | 55a9759 | 2006-06-09 09:34:19 -0400 | [diff] [blame] | 21 |  | 
|  | 22 | #define NFSDBG_FACILITY		NFSDBG_VFS | 
|  | 23 |  | 
| David Howells | 65f27f3 | 2006-11-22 14:55:48 +0000 | [diff] [blame] | 24 | static void nfs_expire_automounts(struct work_struct *work); | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 25 |  | 
| Adrian Bunk | a3dab29 | 2008-04-14 21:41:32 +0300 | [diff] [blame] | 26 | static LIST_HEAD(nfs_automount_list); | 
| David Howells | 65f27f3 | 2006-11-22 14:55:48 +0000 | [diff] [blame] | 27 | static DECLARE_DELAYED_WORK(nfs_automount_task, nfs_expire_automounts); | 
| Trond Myklebust | 51d8fa6 | 2006-06-09 09:34:20 -0400 | [diff] [blame] | 28 | int nfs_mountpoint_expiry_timeout = 500 * HZ; | 
|  | 29 |  | 
| Trond Myklebust | 55a9759 | 2006-06-09 09:34:19 -0400 | [diff] [blame] | 30 | /* | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 31 | * nfs_path - reconstruct the path given an arbitrary dentry | 
| Al Viro | b514f87 | 2011-03-16 06:26:11 -0400 | [diff] [blame] | 32 | * @base - used to return pointer to the end of devname part of path | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 33 | * @dentry - pointer to dentry | 
|  | 34 | * @buffer - result buffer | 
|  | 35 | * @buflen - length of buffer | 
| Ben Hutchings | 97a5486 | 2012-10-21 19:23:52 +0100 | [diff] [blame] | 36 | * @flags - options (see below) | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 37 | * | 
| Al Viro | b514f87 | 2011-03-16 06:26:11 -0400 | [diff] [blame] | 38 | * Helper function for constructing the server pathname | 
|  | 39 | * by arbitrary hashed dentry. | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 40 | * | 
|  | 41 | * This is mainly for use in figuring out the path on the | 
| Al Viro | b514f87 | 2011-03-16 06:26:11 -0400 | [diff] [blame] | 42 | * server side when automounting on top of an existing partition | 
|  | 43 | * and in generating /proc/mounts and friends. | 
| Ben Hutchings | 97a5486 | 2012-10-21 19:23:52 +0100 | [diff] [blame] | 44 | * | 
|  | 45 | * Supported flags: | 
|  | 46 | * NFS_PATH_CANONICAL: ensure there is exactly one slash after | 
|  | 47 | *		       the original device (export) name | 
|  | 48 | *		       (if unset, the original name is returned verbatim) | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 49 | */ | 
| Ben Hutchings | 97a5486 | 2012-10-21 19:23:52 +0100 | [diff] [blame] | 50 | char *nfs_path(char **p, struct dentry *dentry, char *buffer, ssize_t buflen, | 
|  | 51 | unsigned flags) | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 52 | { | 
| Nick Piggin | 949854d | 2011-01-07 17:49:37 +1100 | [diff] [blame] | 53 | char *end; | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 54 | int namelen; | 
| Nick Piggin | 949854d | 2011-01-07 17:49:37 +1100 | [diff] [blame] | 55 | unsigned seq; | 
| Al Viro | b514f87 | 2011-03-16 06:26:11 -0400 | [diff] [blame] | 56 | const char *base; | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 57 |  | 
| Nick Piggin | 949854d | 2011-01-07 17:49:37 +1100 | [diff] [blame] | 58 | rename_retry: | 
|  | 59 | end = buffer+buflen; | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 60 | *--end = '\0'; | 
|  | 61 | buflen--; | 
| Nick Piggin | 949854d | 2011-01-07 17:49:37 +1100 | [diff] [blame] | 62 |  | 
|  | 63 | seq = read_seqbegin(&rename_lock); | 
|  | 64 | rcu_read_lock(); | 
| Al Viro | b514f87 | 2011-03-16 06:26:11 -0400 | [diff] [blame] | 65 | while (1) { | 
|  | 66 | spin_lock(&dentry->d_lock); | 
|  | 67 | if (IS_ROOT(dentry)) | 
|  | 68 | break; | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 69 | namelen = dentry->d_name.len; | 
|  | 70 | buflen -= namelen + 1; | 
|  | 71 | if (buflen < 0) | 
| Josh Triplett | ce51019 | 2006-07-24 16:30:00 -0700 | [diff] [blame] | 72 | goto Elong_unlock; | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 73 | end -= namelen; | 
|  | 74 | memcpy(end, dentry->d_name.name, namelen); | 
|  | 75 | *--end = '/'; | 
| Al Viro | b514f87 | 2011-03-16 06:26:11 -0400 | [diff] [blame] | 76 | spin_unlock(&dentry->d_lock); | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 77 | dentry = dentry->d_parent; | 
|  | 78 | } | 
| Al Viro | b514f87 | 2011-03-16 06:26:11 -0400 | [diff] [blame] | 79 | if (read_seqretry(&rename_lock, seq)) { | 
|  | 80 | spin_unlock(&dentry->d_lock); | 
|  | 81 | rcu_read_unlock(); | 
| Nick Piggin | 949854d | 2011-01-07 17:49:37 +1100 | [diff] [blame] | 82 | goto rename_retry; | 
| Al Viro | b514f87 | 2011-03-16 06:26:11 -0400 | [diff] [blame] | 83 | } | 
| Ben Hutchings | 97a5486 | 2012-10-21 19:23:52 +0100 | [diff] [blame] | 84 | if ((flags & NFS_PATH_CANONICAL) && *end != '/') { | 
| Al Viro | b514f87 | 2011-03-16 06:26:11 -0400 | [diff] [blame] | 85 | if (--buflen < 0) { | 
|  | 86 | spin_unlock(&dentry->d_lock); | 
|  | 87 | rcu_read_unlock(); | 
| Trond Myklebust | 0b75b35 | 2009-06-22 15:09:14 -0400 | [diff] [blame] | 88 | goto Elong; | 
| Al Viro | b514f87 | 2011-03-16 06:26:11 -0400 | [diff] [blame] | 89 | } | 
| Trond Myklebust | 0b75b35 | 2009-06-22 15:09:14 -0400 | [diff] [blame] | 90 | *--end = '/'; | 
|  | 91 | } | 
| Al Viro | b514f87 | 2011-03-16 06:26:11 -0400 | [diff] [blame] | 92 | *p = end; | 
|  | 93 | base = dentry->d_fsdata; | 
|  | 94 | if (!base) { | 
|  | 95 | spin_unlock(&dentry->d_lock); | 
|  | 96 | rcu_read_unlock(); | 
|  | 97 | WARN_ON(1); | 
|  | 98 | return end; | 
|  | 99 | } | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 100 | namelen = strlen(base); | 
| Ben Hutchings | 97a5486 | 2012-10-21 19:23:52 +0100 | [diff] [blame] | 101 | if (flags & NFS_PATH_CANONICAL) { | 
|  | 102 | /* Strip off excess slashes in base string */ | 
|  | 103 | while (namelen > 0 && base[namelen - 1] == '/') | 
|  | 104 | namelen--; | 
|  | 105 | } | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 106 | buflen -= namelen; | 
| Al Viro | b514f87 | 2011-03-16 06:26:11 -0400 | [diff] [blame] | 107 | if (buflen < 0) { | 
| Dan Carpenter | 1c34092 | 2011-03-20 14:22:07 +0300 | [diff] [blame] | 108 | spin_unlock(&dentry->d_lock); | 
| Al Viro | b514f87 | 2011-03-16 06:26:11 -0400 | [diff] [blame] | 109 | rcu_read_unlock(); | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 110 | goto Elong; | 
| Al Viro | b514f87 | 2011-03-16 06:26:11 -0400 | [diff] [blame] | 111 | } | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 112 | end -= namelen; | 
|  | 113 | memcpy(end, base, namelen); | 
| Al Viro | b514f87 | 2011-03-16 06:26:11 -0400 | [diff] [blame] | 114 | spin_unlock(&dentry->d_lock); | 
|  | 115 | rcu_read_unlock(); | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 116 | return end; | 
| Josh Triplett | ce51019 | 2006-07-24 16:30:00 -0700 | [diff] [blame] | 117 | Elong_unlock: | 
| Dan Carpenter | 1c34092 | 2011-03-20 14:22:07 +0300 | [diff] [blame] | 118 | spin_unlock(&dentry->d_lock); | 
| Nick Piggin | 949854d | 2011-01-07 17:49:37 +1100 | [diff] [blame] | 119 | rcu_read_unlock(); | 
|  | 120 | if (read_seqretry(&rename_lock, seq)) | 
|  | 121 | goto rename_retry; | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 122 | Elong: | 
|  | 123 | return ERR_PTR(-ENAMETOOLONG); | 
|  | 124 | } | 
| Bryan Schumaker | 89d77c8 | 2012-07-30 16:05:25 -0400 | [diff] [blame] | 125 | EXPORT_SYMBOL_GPL(nfs_path); | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 126 |  | 
|  | 127 | /* | 
| David Howells | 36d43a4 | 2011-01-14 18:45:42 +0000 | [diff] [blame] | 128 | * nfs_d_automount - Handle crossing a mountpoint on the server | 
|  | 129 | * @path - The mountpoint | 
| Trond Myklebust | 55a9759 | 2006-06-09 09:34:19 -0400 | [diff] [blame] | 130 | * | 
|  | 131 | * When we encounter a mountpoint on the server, we want to set up | 
|  | 132 | * a mountpoint on the client too, to prevent inode numbers from | 
|  | 133 | * colliding, and to allow "df" to work properly. | 
|  | 134 | * On NFSv4, we also want to allow for the fact that different | 
|  | 135 | * filesystems may be migrated to different servers in a failover | 
|  | 136 | * situation, and that different filesystems may want to use | 
|  | 137 | * different security flavours. | 
|  | 138 | */ | 
| David Howells | 36d43a4 | 2011-01-14 18:45:42 +0000 | [diff] [blame] | 139 | struct vfsmount *nfs_d_automount(struct path *path) | 
| Trond Myklebust | 55a9759 | 2006-06-09 09:34:19 -0400 | [diff] [blame] | 140 | { | 
|  | 141 | struct vfsmount *mnt; | 
| Bryan Schumaker | 281cad4 | 2012-04-27 13:27:45 -0400 | [diff] [blame] | 142 | struct nfs_server *server = NFS_SERVER(path->dentry->d_inode); | 
| Trond Myklebust | a4d7f16 | 2010-04-16 16:22:46 -0400 | [diff] [blame] | 143 | struct nfs_fh *fh = NULL; | 
|  | 144 | struct nfs_fattr *fattr = NULL; | 
| Trond Myklebust | 55a9759 | 2006-06-09 09:34:19 -0400 | [diff] [blame] | 145 |  | 
| David Howells | 36d43a4 | 2011-01-14 18:45:42 +0000 | [diff] [blame] | 146 | dprintk("--> nfs_d_automount()\n"); | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 147 |  | 
| David Howells | 36d43a4 | 2011-01-14 18:45:42 +0000 | [diff] [blame] | 148 | mnt = ERR_PTR(-ESTALE); | 
|  | 149 | if (IS_ROOT(path->dentry)) | 
|  | 150 | goto out_nofree; | 
| Denis V. Lunev | 44d5759 | 2008-08-11 12:02:34 +0400 | [diff] [blame] | 151 |  | 
| David Howells | 36d43a4 | 2011-01-14 18:45:42 +0000 | [diff] [blame] | 152 | mnt = ERR_PTR(-ENOMEM); | 
| Trond Myklebust | a4d7f16 | 2010-04-16 16:22:46 -0400 | [diff] [blame] | 153 | fh = nfs_alloc_fhandle(); | 
|  | 154 | fattr = nfs_alloc_fattr(); | 
|  | 155 | if (fh == NULL || fattr == NULL) | 
| David Howells | 36d43a4 | 2011-01-14 18:45:42 +0000 | [diff] [blame] | 156 | goto out; | 
| Trond Myklebust | a4d7f16 | 2010-04-16 16:22:46 -0400 | [diff] [blame] | 157 |  | 
| Harvey Harrison | 3110ff8 | 2008-05-02 13:42:44 -0700 | [diff] [blame] | 158 | dprintk("%s: enter\n", __func__); | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 159 |  | 
| Bryan Schumaker | 281cad4 | 2012-04-27 13:27:45 -0400 | [diff] [blame] | 160 | mnt = server->nfs_client->rpc_ops->submount(server, path->dentry, fh, fattr); | 
| Trond Myklebust | 55a9759 | 2006-06-09 09:34:19 -0400 | [diff] [blame] | 161 | if (IS_ERR(mnt)) | 
| David Howells | 36d43a4 | 2011-01-14 18:45:42 +0000 | [diff] [blame] | 162 | goto out; | 
| Trond Myklebust | 55a9759 | 2006-06-09 09:34:19 -0400 | [diff] [blame] | 163 |  | 
| David Howells | ea5b778 | 2011-01-14 19:10:03 +0000 | [diff] [blame] | 164 | dprintk("%s: done, success\n", __func__); | 
|  | 165 | mntget(mnt); /* prevent immediate expiration */ | 
|  | 166 | mnt_set_expiry(mnt, &nfs_automount_list); | 
|  | 167 | schedule_delayed_work(&nfs_automount_task, nfs_mountpoint_expiry_timeout); | 
| David Howells | 36d43a4 | 2011-01-14 18:45:42 +0000 | [diff] [blame] | 168 |  | 
| Trond Myklebust | 55a9759 | 2006-06-09 09:34:19 -0400 | [diff] [blame] | 169 | out: | 
| Trond Myklebust | a4d7f16 | 2010-04-16 16:22:46 -0400 | [diff] [blame] | 170 | nfs_free_fattr(fattr); | 
|  | 171 | nfs_free_fhandle(fh); | 
| David Howells | 36d43a4 | 2011-01-14 18:45:42 +0000 | [diff] [blame] | 172 | out_nofree: | 
| Chuck Lever | d7c3267 | 2012-02-15 16:35:17 -0500 | [diff] [blame] | 173 | if (IS_ERR(mnt)) | 
|  | 174 | dprintk("<-- %s(): error %ld\n", __func__, PTR_ERR(mnt)); | 
|  | 175 | else | 
|  | 176 | dprintk("<-- %s() = %p\n", __func__, mnt); | 
| David Howells | 36d43a4 | 2011-01-14 18:45:42 +0000 | [diff] [blame] | 177 | return mnt; | 
| Trond Myklebust | 55a9759 | 2006-06-09 09:34:19 -0400 | [diff] [blame] | 178 | } | 
|  | 179 |  | 
| Trond Myklebust | ab22541 | 2013-01-22 00:17:06 -0500 | [diff] [blame] | 180 | static int | 
|  | 181 | nfs_namespace_getattr(struct vfsmount *mnt, struct dentry *dentry, struct kstat *stat) | 
|  | 182 | { | 
|  | 183 | if (NFS_FH(dentry->d_inode)->size != 0) | 
|  | 184 | return nfs_getattr(mnt, dentry, stat); | 
|  | 185 | generic_fillattr(dentry->d_inode, stat); | 
|  | 186 | return 0; | 
|  | 187 | } | 
|  | 188 |  | 
|  | 189 | static int | 
|  | 190 | nfs_namespace_setattr(struct dentry *dentry, struct iattr *attr) | 
|  | 191 | { | 
|  | 192 | if (NFS_FH(dentry->d_inode)->size != 0) | 
|  | 193 | return nfs_setattr(dentry, attr); | 
|  | 194 | return -EACCES; | 
|  | 195 | } | 
|  | 196 |  | 
| Arjan van de Ven | 92e1d5b | 2007-02-12 00:55:39 -0800 | [diff] [blame] | 197 | const struct inode_operations nfs_mountpoint_inode_operations = { | 
| Trond Myklebust | 55a9759 | 2006-06-09 09:34:19 -0400 | [diff] [blame] | 198 | .getattr	= nfs_getattr, | 
| Trond Myklebust | ab22541 | 2013-01-22 00:17:06 -0500 | [diff] [blame] | 199 | .setattr	= nfs_setattr, | 
| Trond Myklebust | 55a9759 | 2006-06-09 09:34:19 -0400 | [diff] [blame] | 200 | }; | 
| Trond Myklebust | 51d8fa6 | 2006-06-09 09:34:20 -0400 | [diff] [blame] | 201 |  | 
| Arjan van de Ven | 92e1d5b | 2007-02-12 00:55:39 -0800 | [diff] [blame] | 202 | const struct inode_operations nfs_referral_inode_operations = { | 
| Trond Myklebust | ab22541 | 2013-01-22 00:17:06 -0500 | [diff] [blame] | 203 | .getattr	= nfs_namespace_getattr, | 
|  | 204 | .setattr	= nfs_namespace_setattr, | 
| Manoj Naik | 6b97fd3 | 2006-06-09 09:34:29 -0400 | [diff] [blame] | 205 | }; | 
|  | 206 |  | 
| David Howells | 65f27f3 | 2006-11-22 14:55:48 +0000 | [diff] [blame] | 207 | static void nfs_expire_automounts(struct work_struct *work) | 
| Trond Myklebust | 51d8fa6 | 2006-06-09 09:34:20 -0400 | [diff] [blame] | 208 | { | 
| David Howells | 65f27f3 | 2006-11-22 14:55:48 +0000 | [diff] [blame] | 209 | struct list_head *list = &nfs_automount_list; | 
| Trond Myklebust | 51d8fa6 | 2006-06-09 09:34:20 -0400 | [diff] [blame] | 210 |  | 
|  | 211 | mark_mounts_for_expiry(list); | 
|  | 212 | if (!list_empty(list)) | 
|  | 213 | schedule_delayed_work(&nfs_automount_task, nfs_mountpoint_expiry_timeout); | 
|  | 214 | } | 
|  | 215 |  | 
|  | 216 | void nfs_release_automount_timer(void) | 
|  | 217 | { | 
| Trond Myklebust | 3d39c69 | 2007-08-07 15:28:33 -0400 | [diff] [blame] | 218 | if (list_empty(&nfs_automount_list)) | 
| Trond Myklebust | 560aef7 | 2007-08-27 09:14:56 -0400 | [diff] [blame] | 219 | cancel_delayed_work(&nfs_automount_task); | 
| Trond Myklebust | 51d8fa6 | 2006-06-09 09:34:20 -0400 | [diff] [blame] | 220 | } | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 221 |  | 
|  | 222 | /* | 
|  | 223 | * Clone a mountpoint of the appropriate type | 
|  | 224 | */ | 
| David Howells | 509de81 | 2006-08-22 20:06:11 -0400 | [diff] [blame] | 225 | static struct vfsmount *nfs_do_clone_mount(struct nfs_server *server, | 
|  | 226 | const char *devname, | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 227 | struct nfs_clone_mount *mountdata) | 
|  | 228 | { | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 229 | return vfs_kern_mount(&nfs_xdev_fs_type, 0, devname, mountdata); | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 230 | } | 
|  | 231 |  | 
|  | 232 | /** | 
|  | 233 | * nfs_do_submount - set up mountpoint when crossing a filesystem boundary | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 234 | * @dentry - parent directory | 
|  | 235 | * @fh - filehandle for new root dentry | 
|  | 236 | * @fattr - attributes for new root inode | 
| Bryan Schumaker | 7ebb931 | 2011-03-24 17:12:30 +0000 | [diff] [blame] | 237 | * @authflavor - security flavor to use when performing the mount | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 238 | * | 
|  | 239 | */ | 
| Bryan Schumaker | 281cad4 | 2012-04-27 13:27:45 -0400 | [diff] [blame] | 240 | struct vfsmount *nfs_do_submount(struct dentry *dentry, struct nfs_fh *fh, | 
|  | 241 | struct nfs_fattr *fattr, rpc_authflavor_t authflavor) | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 242 | { | 
|  | 243 | struct nfs_clone_mount mountdata = { | 
| Al Viro | f8ad9c4 | 2011-03-16 06:32:07 -0400 | [diff] [blame] | 244 | .sb = dentry->d_sb, | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 245 | .dentry = dentry, | 
|  | 246 | .fh = fh, | 
|  | 247 | .fattr = fattr, | 
| Bryan Schumaker | 7ebb931 | 2011-03-24 17:12:30 +0000 | [diff] [blame] | 248 | .authflavor = authflavor, | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 249 | }; | 
|  | 250 | struct vfsmount *mnt = ERR_PTR(-ENOMEM); | 
|  | 251 | char *page = (char *) __get_free_page(GFP_USER); | 
|  | 252 | char *devname; | 
|  | 253 |  | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 254 | dprintk("--> nfs_do_submount()\n"); | 
|  | 255 |  | 
| Harvey Harrison | 3110ff8 | 2008-05-02 13:42:44 -0700 | [diff] [blame] | 256 | dprintk("%s: submounting on %s/%s\n", __func__, | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 257 | dentry->d_parent->d_name.name, | 
|  | 258 | dentry->d_name.name); | 
|  | 259 | if (page == NULL) | 
|  | 260 | goto out; | 
| Al Viro | b514f87 | 2011-03-16 06:26:11 -0400 | [diff] [blame] | 261 | devname = nfs_devname(dentry, page, PAGE_SIZE); | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 262 | mnt = (struct vfsmount *)devname; | 
|  | 263 | if (IS_ERR(devname)) | 
|  | 264 | goto free_page; | 
| Al Viro | f8ad9c4 | 2011-03-16 06:32:07 -0400 | [diff] [blame] | 265 | mnt = nfs_do_clone_mount(NFS_SB(dentry->d_sb), devname, &mountdata); | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 266 | free_page: | 
|  | 267 | free_page((unsigned long)page); | 
|  | 268 | out: | 
| Harvey Harrison | 3110ff8 | 2008-05-02 13:42:44 -0700 | [diff] [blame] | 269 | dprintk("%s: done\n", __func__); | 
| David Howells | 54ceac4 | 2006-08-22 20:06:13 -0400 | [diff] [blame] | 270 |  | 
|  | 271 | dprintk("<-- nfs_do_submount() = %p\n", mnt); | 
| David Howells | f7b422b | 2006-06-09 09:34:33 -0400 | [diff] [blame] | 272 | return mnt; | 
|  | 273 | } | 
| Bryan Schumaker | 89d77c8 | 2012-07-30 16:05:25 -0400 | [diff] [blame] | 274 | EXPORT_SYMBOL_GPL(nfs_do_submount); | 
| Bryan Schumaker | 281cad4 | 2012-04-27 13:27:45 -0400 | [diff] [blame] | 275 |  | 
|  | 276 | struct vfsmount *nfs_submount(struct nfs_server *server, struct dentry *dentry, | 
|  | 277 | struct nfs_fh *fh, struct nfs_fattr *fattr) | 
|  | 278 | { | 
|  | 279 | int err; | 
|  | 280 | struct dentry *parent = dget_parent(dentry); | 
|  | 281 |  | 
|  | 282 | /* Look it up again to get its attributes */ | 
| Bryan Schumaker | 80a16b2 | 2012-04-27 13:27:46 -0400 | [diff] [blame] | 283 | err = server->nfs_client->rpc_ops->lookup(parent->d_inode, &dentry->d_name, fh, fattr); | 
| Bryan Schumaker | 281cad4 | 2012-04-27 13:27:45 -0400 | [diff] [blame] | 284 | dput(parent); | 
|  | 285 | if (err != 0) | 
|  | 286 | return ERR_PTR(err); | 
|  | 287 |  | 
|  | 288 | return nfs_do_submount(dentry, fh, fattr, server->client->cl_auth->au_flavor); | 
|  | 289 | } | 
| Bryan Schumaker | ddda8e0 | 2012-07-30 16:05:23 -0400 | [diff] [blame] | 290 | EXPORT_SYMBOL_GPL(nfs_submount); |