blob: 1a224a33a6c23c362e1bbacb8150bb9bbf02b3fd [file] [log] [blame]
Trond Myklebust55a97592006-06-09 09:34:19 -04001/*
2 * linux/fs/nfs/namespace.c
3 *
4 * Copyright (C) 2005 Trond Myklebust <Trond.Myklebust@netapp.com>
David Howells54ceac42006-08-22 20:06:13 -04005 * - Modified by David Howells <dhowells@redhat.com>
Trond Myklebust55a97592006-06-09 09:34:19 -04006 *
7 * NFS namespace
8 */
9
Bryan Schumakerddda8e02012-07-30 16:05:23 -040010#include <linux/module.h>
Trond Myklebust55a97592006-06-09 09:34:19 -040011#include <linux/dcache.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090012#include <linux/gfp.h>
Trond Myklebust55a97592006-06-09 09:34:19 -040013#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 Schumaker7ebb9312011-03-24 17:12:30 +000019#include <linux/sunrpc/gss_api.h>
David Howellsf7b422b2006-06-09 09:34:33 -040020#include "internal.h"
Trond Myklebust55a97592006-06-09 09:34:19 -040021
22#define NFSDBG_FACILITY NFSDBG_VFS
23
David Howells65f27f32006-11-22 14:55:48 +000024static void nfs_expire_automounts(struct work_struct *work);
David Howellsf7b422b2006-06-09 09:34:33 -040025
Adrian Bunka3dab292008-04-14 21:41:32 +030026static LIST_HEAD(nfs_automount_list);
David Howells65f27f32006-11-22 14:55:48 +000027static DECLARE_DELAYED_WORK(nfs_automount_task, nfs_expire_automounts);
Trond Myklebust51d8fa62006-06-09 09:34:20 -040028int nfs_mountpoint_expiry_timeout = 500 * HZ;
29
Trond Myklebust55a97592006-06-09 09:34:19 -040030/*
David Howellsf7b422b2006-06-09 09:34:33 -040031 * nfs_path - reconstruct the path given an arbitrary dentry
Al Virob514f872011-03-16 06:26:11 -040032 * @base - used to return pointer to the end of devname part of path
David Howellsf7b422b2006-06-09 09:34:33 -040033 * @dentry - pointer to dentry
34 * @buffer - result buffer
35 * @buflen - length of buffer
Ben Hutchings97a54862012-10-21 19:23:52 +010036 * @flags - options (see below)
David Howellsf7b422b2006-06-09 09:34:33 -040037 *
Al Virob514f872011-03-16 06:26:11 -040038 * Helper function for constructing the server pathname
39 * by arbitrary hashed dentry.
David Howellsf7b422b2006-06-09 09:34:33 -040040 *
41 * This is mainly for use in figuring out the path on the
Al Virob514f872011-03-16 06:26:11 -040042 * server side when automounting on top of an existing partition
43 * and in generating /proc/mounts and friends.
Ben Hutchings97a54862012-10-21 19:23:52 +010044 *
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 Howellsf7b422b2006-06-09 09:34:33 -040049 */
Ben Hutchings97a54862012-10-21 19:23:52 +010050char *nfs_path(char **p, struct dentry *dentry, char *buffer, ssize_t buflen,
51 unsigned flags)
David Howellsf7b422b2006-06-09 09:34:33 -040052{
Nick Piggin949854d2011-01-07 17:49:37 +110053 char *end;
David Howellsf7b422b2006-06-09 09:34:33 -040054 int namelen;
Nick Piggin949854d2011-01-07 17:49:37 +110055 unsigned seq;
Al Virob514f872011-03-16 06:26:11 -040056 const char *base;
David Howellsf7b422b2006-06-09 09:34:33 -040057
Nick Piggin949854d2011-01-07 17:49:37 +110058rename_retry:
59 end = buffer+buflen;
David Howellsf7b422b2006-06-09 09:34:33 -040060 *--end = '\0';
61 buflen--;
Nick Piggin949854d2011-01-07 17:49:37 +110062
63 seq = read_seqbegin(&rename_lock);
64 rcu_read_lock();
Al Virob514f872011-03-16 06:26:11 -040065 while (1) {
66 spin_lock(&dentry->d_lock);
67 if (IS_ROOT(dentry))
68 break;
David Howellsf7b422b2006-06-09 09:34:33 -040069 namelen = dentry->d_name.len;
70 buflen -= namelen + 1;
71 if (buflen < 0)
Josh Triplettce510192006-07-24 16:30:00 -070072 goto Elong_unlock;
David Howellsf7b422b2006-06-09 09:34:33 -040073 end -= namelen;
74 memcpy(end, dentry->d_name.name, namelen);
75 *--end = '/';
Al Virob514f872011-03-16 06:26:11 -040076 spin_unlock(&dentry->d_lock);
David Howellsf7b422b2006-06-09 09:34:33 -040077 dentry = dentry->d_parent;
78 }
Al Virob514f872011-03-16 06:26:11 -040079 if (read_seqretry(&rename_lock, seq)) {
80 spin_unlock(&dentry->d_lock);
81 rcu_read_unlock();
Nick Piggin949854d2011-01-07 17:49:37 +110082 goto rename_retry;
Al Virob514f872011-03-16 06:26:11 -040083 }
Ben Hutchings97a54862012-10-21 19:23:52 +010084 if ((flags & NFS_PATH_CANONICAL) && *end != '/') {
Al Virob514f872011-03-16 06:26:11 -040085 if (--buflen < 0) {
86 spin_unlock(&dentry->d_lock);
87 rcu_read_unlock();
Trond Myklebust0b75b352009-06-22 15:09:14 -040088 goto Elong;
Al Virob514f872011-03-16 06:26:11 -040089 }
Trond Myklebust0b75b352009-06-22 15:09:14 -040090 *--end = '/';
91 }
Al Virob514f872011-03-16 06:26:11 -040092 *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 Howellsf7b422b2006-06-09 09:34:33 -0400100 namelen = strlen(base);
Benjamin Coddington86a6c212016-06-15 15:02:55 -0400101 if (*end == '/') {
Ben Hutchings97a54862012-10-21 19:23:52 +0100102 /* Strip off excess slashes in base string */
103 while (namelen > 0 && base[namelen - 1] == '/')
104 namelen--;
105 }
David Howellsf7b422b2006-06-09 09:34:33 -0400106 buflen -= namelen;
Al Virob514f872011-03-16 06:26:11 -0400107 if (buflen < 0) {
Dan Carpenter1c340922011-03-20 14:22:07 +0300108 spin_unlock(&dentry->d_lock);
Al Virob514f872011-03-16 06:26:11 -0400109 rcu_read_unlock();
David Howellsf7b422b2006-06-09 09:34:33 -0400110 goto Elong;
Al Virob514f872011-03-16 06:26:11 -0400111 }
David Howellsf7b422b2006-06-09 09:34:33 -0400112 end -= namelen;
113 memcpy(end, base, namelen);
Al Virob514f872011-03-16 06:26:11 -0400114 spin_unlock(&dentry->d_lock);
115 rcu_read_unlock();
David Howellsf7b422b2006-06-09 09:34:33 -0400116 return end;
Josh Triplettce510192006-07-24 16:30:00 -0700117Elong_unlock:
Dan Carpenter1c340922011-03-20 14:22:07 +0300118 spin_unlock(&dentry->d_lock);
Nick Piggin949854d2011-01-07 17:49:37 +1100119 rcu_read_unlock();
120 if (read_seqretry(&rename_lock, seq))
121 goto rename_retry;
David Howellsf7b422b2006-06-09 09:34:33 -0400122Elong:
123 return ERR_PTR(-ENAMETOOLONG);
124}
Bryan Schumaker89d77c82012-07-30 16:05:25 -0400125EXPORT_SYMBOL_GPL(nfs_path);
David Howellsf7b422b2006-06-09 09:34:33 -0400126
127/*
David Howells36d43a42011-01-14 18:45:42 +0000128 * nfs_d_automount - Handle crossing a mountpoint on the server
129 * @path - The mountpoint
Trond Myklebust55a97592006-06-09 09:34:19 -0400130 *
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 Howells36d43a42011-01-14 18:45:42 +0000139struct vfsmount *nfs_d_automount(struct path *path)
Trond Myklebust55a97592006-06-09 09:34:19 -0400140{
141 struct vfsmount *mnt;
David Howells2b0143b2015-03-17 22:25:59 +0000142 struct nfs_server *server = NFS_SERVER(d_inode(path->dentry));
Trond Myklebusta4d7f162010-04-16 16:22:46 -0400143 struct nfs_fh *fh = NULL;
144 struct nfs_fattr *fattr = NULL;
Trond Myklebust55a97592006-06-09 09:34:19 -0400145
David Howells36d43a42011-01-14 18:45:42 +0000146 if (IS_ROOT(path->dentry))
Anna Schumakere36d48e2017-04-07 14:15:09 -0400147 return ERR_PTR(-ESTALE);
Denis V. Lunev44d57592008-08-11 12:02:34 +0400148
David Howells36d43a42011-01-14 18:45:42 +0000149 mnt = ERR_PTR(-ENOMEM);
Trond Myklebusta4d7f162010-04-16 16:22:46 -0400150 fh = nfs_alloc_fhandle();
151 fattr = nfs_alloc_fattr();
152 if (fh == NULL || fattr == NULL)
David Howells36d43a42011-01-14 18:45:42 +0000153 goto out;
Trond Myklebusta4d7f162010-04-16 16:22:46 -0400154
Bryan Schumaker281cad42012-04-27 13:27:45 -0400155 mnt = server->nfs_client->rpc_ops->submount(server, path->dentry, fh, fattr);
Trond Myklebust55a97592006-06-09 09:34:19 -0400156 if (IS_ERR(mnt))
David Howells36d43a42011-01-14 18:45:42 +0000157 goto out;
Trond Myklebust55a97592006-06-09 09:34:19 -0400158
David Howellsea5b7782011-01-14 19:10:03 +0000159 mntget(mnt); /* prevent immediate expiration */
160 mnt_set_expiry(mnt, &nfs_automount_list);
161 schedule_delayed_work(&nfs_automount_task, nfs_mountpoint_expiry_timeout);
David Howells36d43a42011-01-14 18:45:42 +0000162
Trond Myklebust55a97592006-06-09 09:34:19 -0400163out:
Trond Myklebusta4d7f162010-04-16 16:22:46 -0400164 nfs_free_fattr(fattr);
165 nfs_free_fhandle(fh);
David Howells36d43a42011-01-14 18:45:42 +0000166 return mnt;
Trond Myklebust55a97592006-06-09 09:34:19 -0400167}
168
Trond Myklebustab225412013-01-22 00:17:06 -0500169static int
David Howellsa528d352017-01-31 16:46:22 +0000170nfs_namespace_getattr(const struct path *path, struct kstat *stat,
171 u32 request_mask, unsigned int query_flags)
Trond Myklebustab225412013-01-22 00:17:06 -0500172{
David Howellsa528d352017-01-31 16:46:22 +0000173 if (NFS_FH(d_inode(path->dentry))->size != 0)
174 return nfs_getattr(path, stat, request_mask, query_flags);
175 generic_fillattr(d_inode(path->dentry), stat);
Trond Myklebustab225412013-01-22 00:17:06 -0500176 return 0;
177}
178
179static int
180nfs_namespace_setattr(struct dentry *dentry, struct iattr *attr)
181{
David Howells2b0143b2015-03-17 22:25:59 +0000182 if (NFS_FH(d_inode(dentry))->size != 0)
Trond Myklebustab225412013-01-22 00:17:06 -0500183 return nfs_setattr(dentry, attr);
184 return -EACCES;
185}
186
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -0800187const struct inode_operations nfs_mountpoint_inode_operations = {
Trond Myklebust55a97592006-06-09 09:34:19 -0400188 .getattr = nfs_getattr,
Trond Myklebustab225412013-01-22 00:17:06 -0500189 .setattr = nfs_setattr,
Trond Myklebust55a97592006-06-09 09:34:19 -0400190};
Trond Myklebust51d8fa62006-06-09 09:34:20 -0400191
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -0800192const struct inode_operations nfs_referral_inode_operations = {
Trond Myklebustab225412013-01-22 00:17:06 -0500193 .getattr = nfs_namespace_getattr,
194 .setattr = nfs_namespace_setattr,
Manoj Naik6b97fd32006-06-09 09:34:29 -0400195};
196
David Howells65f27f32006-11-22 14:55:48 +0000197static void nfs_expire_automounts(struct work_struct *work)
Trond Myklebust51d8fa62006-06-09 09:34:20 -0400198{
David Howells65f27f32006-11-22 14:55:48 +0000199 struct list_head *list = &nfs_automount_list;
Trond Myklebust51d8fa62006-06-09 09:34:20 -0400200
201 mark_mounts_for_expiry(list);
202 if (!list_empty(list))
203 schedule_delayed_work(&nfs_automount_task, nfs_mountpoint_expiry_timeout);
204}
205
206void nfs_release_automount_timer(void)
207{
Trond Myklebust3d39c692007-08-07 15:28:33 -0400208 if (list_empty(&nfs_automount_list))
Trond Myklebust560aef72007-08-27 09:14:56 -0400209 cancel_delayed_work(&nfs_automount_task);
Trond Myklebust51d8fa62006-06-09 09:34:20 -0400210}
David Howellsf7b422b2006-06-09 09:34:33 -0400211
212/*
213 * Clone a mountpoint of the appropriate type
214 */
David Howells509de812006-08-22 20:06:11 -0400215static struct vfsmount *nfs_do_clone_mount(struct nfs_server *server,
216 const char *devname,
David Howellsf7b422b2006-06-09 09:34:33 -0400217 struct nfs_clone_mount *mountdata)
218{
Eric W. Biederman93faccbb2017-02-01 06:06:16 +1300219 return vfs_submount(mountdata->dentry, &nfs_xdev_fs_type, devname, mountdata);
David Howellsf7b422b2006-06-09 09:34:33 -0400220}
221
222/**
223 * nfs_do_submount - set up mountpoint when crossing a filesystem boundary
David Howellsf7b422b2006-06-09 09:34:33 -0400224 * @dentry - parent directory
225 * @fh - filehandle for new root dentry
226 * @fattr - attributes for new root inode
Bryan Schumaker7ebb9312011-03-24 17:12:30 +0000227 * @authflavor - security flavor to use when performing the mount
David Howellsf7b422b2006-06-09 09:34:33 -0400228 *
229 */
Bryan Schumaker281cad42012-04-27 13:27:45 -0400230struct vfsmount *nfs_do_submount(struct dentry *dentry, struct nfs_fh *fh,
231 struct nfs_fattr *fattr, rpc_authflavor_t authflavor)
David Howellsf7b422b2006-06-09 09:34:33 -0400232{
233 struct nfs_clone_mount mountdata = {
Al Virof8ad9c42011-03-16 06:32:07 -0400234 .sb = dentry->d_sb,
David Howellsf7b422b2006-06-09 09:34:33 -0400235 .dentry = dentry,
236 .fh = fh,
237 .fattr = fattr,
Bryan Schumaker7ebb9312011-03-24 17:12:30 +0000238 .authflavor = authflavor,
David Howellsf7b422b2006-06-09 09:34:33 -0400239 };
Anna Schumakere36d48e2017-04-07 14:15:09 -0400240 struct vfsmount *mnt;
David Howellsf7b422b2006-06-09 09:34:33 -0400241 char *page = (char *) __get_free_page(GFP_USER);
242 char *devname;
243
David Howellsf7b422b2006-06-09 09:34:33 -0400244 if (page == NULL)
Anna Schumakere36d48e2017-04-07 14:15:09 -0400245 return ERR_PTR(-ENOMEM);
David Howells54ceac42006-08-22 20:06:13 -0400246
Anna Schumakere36d48e2017-04-07 14:15:09 -0400247 devname = nfs_devname(dentry, page, PAGE_SIZE);
248 if (IS_ERR(devname))
249 mnt = (struct vfsmount *)devname;
250 else
251 mnt = nfs_do_clone_mount(NFS_SB(dentry->d_sb), devname, &mountdata);
252
253 free_page((unsigned long)page);
David Howellsf7b422b2006-06-09 09:34:33 -0400254 return mnt;
255}
Bryan Schumaker89d77c82012-07-30 16:05:25 -0400256EXPORT_SYMBOL_GPL(nfs_do_submount);
Bryan Schumaker281cad42012-04-27 13:27:45 -0400257
258struct vfsmount *nfs_submount(struct nfs_server *server, struct dentry *dentry,
259 struct nfs_fh *fh, struct nfs_fattr *fattr)
260{
261 int err;
262 struct dentry *parent = dget_parent(dentry);
263
264 /* Look it up again to get its attributes */
David Howells2b0143b2015-03-17 22:25:59 +0000265 err = server->nfs_client->rpc_ops->lookup(d_inode(parent), &dentry->d_name, fh, fattr, NULL);
Bryan Schumaker281cad42012-04-27 13:27:45 -0400266 dput(parent);
267 if (err != 0)
268 return ERR_PTR(err);
269
270 return nfs_do_submount(dentry, fh, fattr, server->client->cl_auth->au_flavor);
271}
Bryan Schumakerddda8e02012-07-30 16:05:23 -0400272EXPORT_SYMBOL_GPL(nfs_submount);