blob: 78c0ebb0b07c93b40bdbcc07cf9744a3860f9bd6 [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
Trond Myklebust55a97592006-06-09 09:34:19 -040010#include <linux/dcache.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090011#include <linux/gfp.h>
Trond Myklebust55a97592006-06-09 09:34:19 -040012#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 Howellsf7b422b2006-06-09 09:34:33 -040018#include "internal.h"
Trond Myklebust55a97592006-06-09 09:34:19 -040019
20#define NFSDBG_FACILITY NFSDBG_VFS
21
David Howells65f27f32006-11-22 14:55:48 +000022static void nfs_expire_automounts(struct work_struct *work);
David Howellsf7b422b2006-06-09 09:34:33 -040023
Adrian Bunka3dab292008-04-14 21:41:32 +030024static LIST_HEAD(nfs_automount_list);
David Howells65f27f32006-11-22 14:55:48 +000025static DECLARE_DELAYED_WORK(nfs_automount_task, nfs_expire_automounts);
Trond Myklebust51d8fa62006-06-09 09:34:20 -040026int nfs_mountpoint_expiry_timeout = 500 * HZ;
27
Adrian Bunk66f37502006-09-27 01:51:13 -070028static 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 Myklebust55a97592006-06-09 09:34:19 -040033/*
David Howellsf7b422b2006-06-09 09:34:33 -040034 * nfs_path - reconstruct the path given an arbitrary dentry
35 * @base - arbitrary string to prepend to the path
David Howells54ceac42006-08-22 20:06:13 -040036 * @droot - pointer to root dentry for mountpoint
David Howellsf7b422b2006-06-09 09:34:33 -040037 * @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 Howells54ceac42006-08-22 20:06:13 -040047char *nfs_path(const char *base,
48 const struct dentry *droot,
49 const struct dentry *dentry,
David Howellsf7b422b2006-06-09 09:34:33 -040050 char *buffer, ssize_t buflen)
51{
Nick Piggin949854d2011-01-07 17:49:37 +110052 char *end;
David Howellsf7b422b2006-06-09 09:34:33 -040053 int namelen;
Nick Piggin949854d2011-01-07 17:49:37 +110054 unsigned seq;
David Howellsf7b422b2006-06-09 09:34:33 -040055
Nick Piggin949854d2011-01-07 17:49:37 +110056rename_retry:
57 end = buffer+buflen;
David Howellsf7b422b2006-06-09 09:34:33 -040058 *--end = '\0';
59 buflen--;
Nick Piggin949854d2011-01-07 17:49:37 +110060
61 seq = read_seqbegin(&rename_lock);
62 rcu_read_lock();
David Howellsf7b422b2006-06-09 09:34:33 -040063 spin_lock(&dcache_lock);
David Howells54ceac42006-08-22 20:06:13 -040064 while (!IS_ROOT(dentry) && dentry != droot) {
David Howellsf7b422b2006-06-09 09:34:33 -040065 namelen = dentry->d_name.len;
66 buflen -= namelen + 1;
67 if (buflen < 0)
Josh Triplettce510192006-07-24 16:30:00 -070068 goto Elong_unlock;
David Howellsf7b422b2006-06-09 09:34:33 -040069 end -= namelen;
70 memcpy(end, dentry->d_name.name, namelen);
71 *--end = '/';
72 dentry = dentry->d_parent;
73 }
74 spin_unlock(&dcache_lock);
Nick Piggin949854d2011-01-07 17:49:37 +110075 rcu_read_unlock();
76 if (read_seqretry(&rename_lock, seq))
77 goto rename_retry;
Trond Myklebust0b75b352009-06-22 15:09:14 -040078 if (*end != '/') {
79 if (--buflen < 0)
80 goto Elong;
81 *--end = '/';
82 }
David Howellsf7b422b2006-06-09 09:34:33 -040083 namelen = strlen(base);
84 /* Strip off excess slashes in base string */
85 while (namelen > 0 && base[namelen - 1] == '/')
86 namelen--;
87 buflen -= namelen;
88 if (buflen < 0)
89 goto Elong;
90 end -= namelen;
91 memcpy(end, base, namelen);
92 return end;
Josh Triplettce510192006-07-24 16:30:00 -070093Elong_unlock:
94 spin_unlock(&dcache_lock);
Nick Piggin949854d2011-01-07 17:49:37 +110095 rcu_read_unlock();
96 if (read_seqretry(&rename_lock, seq))
97 goto rename_retry;
David Howellsf7b422b2006-06-09 09:34:33 -040098Elong:
99 return ERR_PTR(-ENAMETOOLONG);
100}
101
102/*
Trond Myklebust55a97592006-06-09 09:34:19 -0400103 * nfs_follow_mountpoint - handle crossing a mountpoint on the server
104 * @dentry - dentry of mountpoint
105 * @nd - nameidata info
106 *
107 * When we encounter a mountpoint on the server, we want to set up
108 * a mountpoint on the client too, to prevent inode numbers from
109 * colliding, and to allow "df" to work properly.
110 * On NFSv4, we also want to allow for the fact that different
111 * filesystems may be migrated to different servers in a failover
112 * situation, and that different filesystems may want to use
113 * different security flavours.
114 */
115static void * nfs_follow_mountpoint(struct dentry *dentry, struct nameidata *nd)
116{
117 struct vfsmount *mnt;
118 struct nfs_server *server = NFS_SERVER(dentry->d_inode);
119 struct dentry *parent;
Trond Myklebusta4d7f162010-04-16 16:22:46 -0400120 struct nfs_fh *fh = NULL;
121 struct nfs_fattr *fattr = NULL;
Trond Myklebust55a97592006-06-09 09:34:19 -0400122 int err;
123
David Howells54ceac42006-08-22 20:06:13 -0400124 dprintk("--> nfs_follow_mountpoint()\n");
125
Denis V. Lunev44d57592008-08-11 12:02:34 +0400126 err = -ESTALE;
127 if (IS_ROOT(dentry))
128 goto out_err;
129
Trond Myklebusta4d7f162010-04-16 16:22:46 -0400130 err = -ENOMEM;
131 fh = nfs_alloc_fhandle();
132 fattr = nfs_alloc_fattr();
133 if (fh == NULL || fattr == NULL)
134 goto out_err;
135
Harvey Harrison3110ff82008-05-02 13:42:44 -0700136 dprintk("%s: enter\n", __func__);
Jan Blunck4ac91372008-02-14 19:34:32 -0800137 dput(nd->path.dentry);
138 nd->path.dentry = dget(dentry);
David Howells54ceac42006-08-22 20:06:13 -0400139
Trond Myklebust55a97592006-06-09 09:34:19 -0400140 /* Look it up again */
Jan Blunck4ac91372008-02-14 19:34:32 -0800141 parent = dget_parent(nd->path.dentry);
David Howells8fa5c002006-08-22 20:06:12 -0400142 err = server->nfs_client->rpc_ops->lookup(parent->d_inode,
Jan Blunck4ac91372008-02-14 19:34:32 -0800143 &nd->path.dentry->d_name,
Trond Myklebusta4d7f162010-04-16 16:22:46 -0400144 fh, fattr);
Trond Myklebust55a97592006-06-09 09:34:19 -0400145 dput(parent);
146 if (err != 0)
147 goto out_err;
148
Trond Myklebusta4d7f162010-04-16 16:22:46 -0400149 if (fattr->valid & NFS_ATTR_FATTR_V4_REFERRAL)
Jan Blunck4ac91372008-02-14 19:34:32 -0800150 mnt = nfs_do_refmount(nd->path.mnt, nd->path.dentry);
Manoj Naik6b97fd32006-06-09 09:34:29 -0400151 else
Trond Myklebusta4d7f162010-04-16 16:22:46 -0400152 mnt = nfs_do_submount(nd->path.mnt, nd->path.dentry, fh,
153 fattr);
Trond Myklebust55a97592006-06-09 09:34:19 -0400154 err = PTR_ERR(mnt);
155 if (IS_ERR(mnt))
156 goto out_err;
157
158 mntget(mnt);
Al Viro8d66bf52008-08-01 09:05:54 -0400159 err = do_add_mount(mnt, &nd->path, nd->path.mnt->mnt_flags|MNT_SHRINKABLE,
Jan Blunck4ac91372008-02-14 19:34:32 -0800160 &nfs_automount_list);
Trond Myklebust55a97592006-06-09 09:34:19 -0400161 if (err < 0) {
162 mntput(mnt);
163 if (err == -EBUSY)
164 goto out_follow;
165 goto out_err;
166 }
Jan Blunck31f31db12008-05-02 13:42:45 -0700167 path_put(&nd->path);
Jan Blunck4ac91372008-02-14 19:34:32 -0800168 nd->path.mnt = mnt;
169 nd->path.dentry = dget(mnt->mnt_root);
Trond Myklebust51d8fa62006-06-09 09:34:20 -0400170 schedule_delayed_work(&nfs_automount_task, nfs_mountpoint_expiry_timeout);
Trond Myklebust55a97592006-06-09 09:34:19 -0400171out:
Trond Myklebusta4d7f162010-04-16 16:22:46 -0400172 nfs_free_fattr(fattr);
173 nfs_free_fhandle(fh);
Harvey Harrison3110ff82008-05-02 13:42:44 -0700174 dprintk("%s: done, returned %d\n", __func__, err);
David Howells54ceac42006-08-22 20:06:13 -0400175
176 dprintk("<-- nfs_follow_mountpoint() = %d\n", err);
Trond Myklebust55a97592006-06-09 09:34:19 -0400177 return ERR_PTR(err);
178out_err:
Jan Blunck1d957f92008-02-14 19:34:35 -0800179 path_put(&nd->path);
Trond Myklebust55a97592006-06-09 09:34:19 -0400180 goto out;
181out_follow:
Jan Blunck4ac91372008-02-14 19:34:32 -0800182 while (d_mountpoint(nd->path.dentry) &&
Al Viro9393bd02009-04-18 13:58:15 -0400183 follow_down(&nd->path))
Trond Myklebust55a97592006-06-09 09:34:19 -0400184 ;
185 err = 0;
186 goto out;
187}
188
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -0800189const struct inode_operations nfs_mountpoint_inode_operations = {
Trond Myklebust55a97592006-06-09 09:34:19 -0400190 .follow_link = nfs_follow_mountpoint,
191 .getattr = nfs_getattr,
192};
Trond Myklebust51d8fa62006-06-09 09:34:20 -0400193
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -0800194const struct inode_operations nfs_referral_inode_operations = {
Manoj Naik6b97fd32006-06-09 09:34:29 -0400195 .follow_link = nfs_follow_mountpoint,
196};
197
David Howells65f27f32006-11-22 14:55:48 +0000198static void nfs_expire_automounts(struct work_struct *work)
Trond Myklebust51d8fa62006-06-09 09:34:20 -0400199{
David Howells65f27f32006-11-22 14:55:48 +0000200 struct list_head *list = &nfs_automount_list;
Trond Myklebust51d8fa62006-06-09 09:34:20 -0400201
202 mark_mounts_for_expiry(list);
203 if (!list_empty(list))
204 schedule_delayed_work(&nfs_automount_task, nfs_mountpoint_expiry_timeout);
205}
206
207void nfs_release_automount_timer(void)
208{
Trond Myklebust3d39c692007-08-07 15:28:33 -0400209 if (list_empty(&nfs_automount_list))
Trond Myklebust560aef72007-08-27 09:14:56 -0400210 cancel_delayed_work(&nfs_automount_task);
Trond Myklebust51d8fa62006-06-09 09:34:20 -0400211}
David Howellsf7b422b2006-06-09 09:34:33 -0400212
213/*
214 * Clone a mountpoint of the appropriate type
215 */
David Howells509de812006-08-22 20:06:11 -0400216static struct vfsmount *nfs_do_clone_mount(struct nfs_server *server,
217 const char *devname,
David Howellsf7b422b2006-06-09 09:34:33 -0400218 struct nfs_clone_mount *mountdata)
219{
220#ifdef CONFIG_NFS_V4
Denis V. Lunevfd08d7e2008-07-31 09:38:55 +0400221 struct vfsmount *mnt = ERR_PTR(-EINVAL);
Trond Myklebust40c553192007-12-14 14:56:07 -0500222 switch (server->nfs_client->rpc_ops->version) {
David Howellsf7b422b2006-06-09 09:34:33 -0400223 case 2:
224 case 3:
David Howells54ceac42006-08-22 20:06:13 -0400225 mnt = vfs_kern_mount(&nfs_xdev_fs_type, 0, devname, mountdata);
David Howellsf7b422b2006-06-09 09:34:33 -0400226 break;
227 case 4:
David Howells54ceac42006-08-22 20:06:13 -0400228 mnt = vfs_kern_mount(&nfs4_xdev_fs_type, 0, devname, mountdata);
David Howellsf7b422b2006-06-09 09:34:33 -0400229 }
230 return mnt;
231#else
David Howells54ceac42006-08-22 20:06:13 -0400232 return vfs_kern_mount(&nfs_xdev_fs_type, 0, devname, mountdata);
David Howellsf7b422b2006-06-09 09:34:33 -0400233#endif
234}
235
236/**
237 * nfs_do_submount - set up mountpoint when crossing a filesystem boundary
238 * @mnt_parent - mountpoint of parent directory
239 * @dentry - parent directory
240 * @fh - filehandle for new root dentry
241 * @fattr - attributes for new root inode
242 *
243 */
Adrian Bunk66f37502006-09-27 01:51:13 -0700244static struct vfsmount *nfs_do_submount(const struct vfsmount *mnt_parent,
245 const struct dentry *dentry,
246 struct nfs_fh *fh,
247 struct nfs_fattr *fattr)
David Howellsf7b422b2006-06-09 09:34:33 -0400248{
249 struct nfs_clone_mount mountdata = {
250 .sb = mnt_parent->mnt_sb,
251 .dentry = dentry,
252 .fh = fh,
253 .fattr = fattr,
254 };
255 struct vfsmount *mnt = ERR_PTR(-ENOMEM);
256 char *page = (char *) __get_free_page(GFP_USER);
257 char *devname;
258
David Howells54ceac42006-08-22 20:06:13 -0400259 dprintk("--> nfs_do_submount()\n");
260
Harvey Harrison3110ff82008-05-02 13:42:44 -0700261 dprintk("%s: submounting on %s/%s\n", __func__,
David Howellsf7b422b2006-06-09 09:34:33 -0400262 dentry->d_parent->d_name.name,
263 dentry->d_name.name);
264 if (page == NULL)
265 goto out;
266 devname = nfs_devname(mnt_parent, dentry, page, PAGE_SIZE);
267 mnt = (struct vfsmount *)devname;
268 if (IS_ERR(devname))
269 goto free_page;
270 mnt = nfs_do_clone_mount(NFS_SB(mnt_parent->mnt_sb), devname, &mountdata);
271free_page:
272 free_page((unsigned long)page);
273out:
Harvey Harrison3110ff82008-05-02 13:42:44 -0700274 dprintk("%s: done\n", __func__);
David Howells54ceac42006-08-22 20:06:13 -0400275
276 dprintk("<-- nfs_do_submount() = %p\n", mnt);
David Howellsf7b422b2006-06-09 09:34:33 -0400277 return mnt;
278}