blob: f3fbb1bf3f18542ba33560b0518f47bd82e90c59 [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 Howells54ceac42006-08-22 20:06:13 -040063 while (!IS_ROOT(dentry) && dentry != droot) {
David Howellsf7b422b2006-06-09 09:34:33 -040064 namelen = dentry->d_name.len;
65 buflen -= namelen + 1;
66 if (buflen < 0)
Josh Triplettce510192006-07-24 16:30:00 -070067 goto Elong_unlock;
David Howellsf7b422b2006-06-09 09:34:33 -040068 end -= namelen;
69 memcpy(end, dentry->d_name.name, namelen);
70 *--end = '/';
71 dentry = dentry->d_parent;
72 }
Nick Piggin949854d2011-01-07 17:49:37 +110073 rcu_read_unlock();
74 if (read_seqretry(&rename_lock, seq))
75 goto rename_retry;
Trond Myklebust0b75b352009-06-22 15:09:14 -040076 if (*end != '/') {
77 if (--buflen < 0)
78 goto Elong;
79 *--end = '/';
80 }
David Howellsf7b422b2006-06-09 09:34:33 -040081 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 Triplettce510192006-07-24 16:30:00 -070091Elong_unlock:
Nick Piggin949854d2011-01-07 17:49:37 +110092 rcu_read_unlock();
93 if (read_seqretry(&rename_lock, seq))
94 goto rename_retry;
David Howellsf7b422b2006-06-09 09:34:33 -040095Elong:
96 return ERR_PTR(-ENAMETOOLONG);
97}
98
99/*
David Howells36d43a42011-01-14 18:45:42 +0000100 * nfs_d_automount - Handle crossing a mountpoint on the server
101 * @path - The mountpoint
Trond Myklebust55a97592006-06-09 09:34:19 -0400102 *
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 Howells36d43a42011-01-14 18:45:42 +0000111struct vfsmount *nfs_d_automount(struct path *path)
Trond Myklebust55a97592006-06-09 09:34:19 -0400112{
113 struct vfsmount *mnt;
David Howells36d43a42011-01-14 18:45:42 +0000114 struct nfs_server *server = NFS_SERVER(path->dentry->d_inode);
Trond Myklebust55a97592006-06-09 09:34:19 -0400115 struct dentry *parent;
Trond Myklebusta4d7f162010-04-16 16:22:46 -0400116 struct nfs_fh *fh = NULL;
117 struct nfs_fattr *fattr = NULL;
Trond Myklebust55a97592006-06-09 09:34:19 -0400118 int err;
119
David Howells36d43a42011-01-14 18:45:42 +0000120 dprintk("--> nfs_d_automount()\n");
David Howells54ceac42006-08-22 20:06:13 -0400121
David Howells36d43a42011-01-14 18:45:42 +0000122 mnt = ERR_PTR(-ESTALE);
123 if (IS_ROOT(path->dentry))
124 goto out_nofree;
Denis V. Lunev44d57592008-08-11 12:02:34 +0400125
David Howells36d43a42011-01-14 18:45:42 +0000126 mnt = ERR_PTR(-ENOMEM);
Trond Myklebusta4d7f162010-04-16 16:22:46 -0400127 fh = nfs_alloc_fhandle();
128 fattr = nfs_alloc_fattr();
129 if (fh == NULL || fattr == NULL)
David Howells36d43a42011-01-14 18:45:42 +0000130 goto out;
Trond Myklebusta4d7f162010-04-16 16:22:46 -0400131
Harvey Harrison3110ff82008-05-02 13:42:44 -0700132 dprintk("%s: enter\n", __func__);
David Howells54ceac42006-08-22 20:06:13 -0400133
David Howells36d43a42011-01-14 18:45:42 +0000134 /* Look it up again to get its attributes */
135 parent = dget_parent(path->dentry);
David Howells8fa5c002006-08-22 20:06:12 -0400136 err = server->nfs_client->rpc_ops->lookup(parent->d_inode,
David Howells36d43a42011-01-14 18:45:42 +0000137 &path->dentry->d_name,
Trond Myklebusta4d7f162010-04-16 16:22:46 -0400138 fh, fattr);
Trond Myklebust55a97592006-06-09 09:34:19 -0400139 dput(parent);
David Howells36d43a42011-01-14 18:45:42 +0000140 if (err != 0) {
141 mnt = ERR_PTR(err);
142 goto out;
143 }
Trond Myklebust55a97592006-06-09 09:34:19 -0400144
Trond Myklebusta4d7f162010-04-16 16:22:46 -0400145 if (fattr->valid & NFS_ATTR_FATTR_V4_REFERRAL)
David Howells36d43a42011-01-14 18:45:42 +0000146 mnt = nfs_do_refmount(path->mnt, path->dentry);
Manoj Naik6b97fd32006-06-09 09:34:29 -0400147 else
David Howells36d43a42011-01-14 18:45:42 +0000148 mnt = nfs_do_submount(path->mnt, path->dentry, fh, fattr);
Trond Myklebust55a97592006-06-09 09:34:19 -0400149 if (IS_ERR(mnt))
David Howells36d43a42011-01-14 18:45:42 +0000150 goto out;
Trond Myklebust55a97592006-06-09 09:34:19 -0400151
152 mntget(mnt);
David Howells36d43a42011-01-14 18:45:42 +0000153 err = do_add_mount(mnt, path, path->mnt->mnt_flags | MNT_SHRINKABLE,
Jan Blunck4ac91372008-02-14 19:34:32 -0800154 &nfs_automount_list);
David Howells36d43a42011-01-14 18:45:42 +0000155 switch (err) {
156 case 0:
157 dprintk("%s: done, success\n", __func__);
158 schedule_delayed_work(&nfs_automount_task, nfs_mountpoint_expiry_timeout);
159 break;
160 case -EBUSY:
161 /* someone else made a mount here whilst we were busy */
Trond Myklebust55a97592006-06-09 09:34:19 -0400162 mntput(mnt);
David Howells36d43a42011-01-14 18:45:42 +0000163 dprintk("%s: done, collision\n", __func__);
164 mnt = NULL;
165 break;
166 default:
167 mntput(mnt);
168 dprintk("%s: done, error %d\n", __func__, err);
169 mnt = ERR_PTR(err);
170 break;
Trond Myklebust55a97592006-06-09 09:34:19 -0400171 }
David Howells36d43a42011-01-14 18:45:42 +0000172
Trond Myklebust55a97592006-06-09 09:34:19 -0400173out:
Trond Myklebusta4d7f162010-04-16 16:22:46 -0400174 nfs_free_fattr(fattr);
175 nfs_free_fhandle(fh);
David Howells36d43a42011-01-14 18:45:42 +0000176out_nofree:
177 dprintk("<-- nfs_follow_mountpoint() = %p\n", mnt);
178 return mnt;
Trond Myklebust55a97592006-06-09 09:34:19 -0400179}
180
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -0800181const struct inode_operations nfs_mountpoint_inode_operations = {
Trond Myklebust55a97592006-06-09 09:34:19 -0400182 .getattr = nfs_getattr,
183};
Trond Myklebust51d8fa62006-06-09 09:34:20 -0400184
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -0800185const struct inode_operations nfs_referral_inode_operations = {
Manoj Naik6b97fd32006-06-09 09:34:29 -0400186};
187
David Howells65f27f32006-11-22 14:55:48 +0000188static void nfs_expire_automounts(struct work_struct *work)
Trond Myklebust51d8fa62006-06-09 09:34:20 -0400189{
David Howells65f27f32006-11-22 14:55:48 +0000190 struct list_head *list = &nfs_automount_list;
Trond Myklebust51d8fa62006-06-09 09:34:20 -0400191
192 mark_mounts_for_expiry(list);
193 if (!list_empty(list))
194 schedule_delayed_work(&nfs_automount_task, nfs_mountpoint_expiry_timeout);
195}
196
197void nfs_release_automount_timer(void)
198{
Trond Myklebust3d39c692007-08-07 15:28:33 -0400199 if (list_empty(&nfs_automount_list))
Trond Myklebust560aef72007-08-27 09:14:56 -0400200 cancel_delayed_work(&nfs_automount_task);
Trond Myklebust51d8fa62006-06-09 09:34:20 -0400201}
David Howellsf7b422b2006-06-09 09:34:33 -0400202
203/*
204 * Clone a mountpoint of the appropriate type
205 */
David Howells509de812006-08-22 20:06:11 -0400206static struct vfsmount *nfs_do_clone_mount(struct nfs_server *server,
207 const char *devname,
David Howellsf7b422b2006-06-09 09:34:33 -0400208 struct nfs_clone_mount *mountdata)
209{
210#ifdef CONFIG_NFS_V4
Denis V. Lunevfd08d7e2008-07-31 09:38:55 +0400211 struct vfsmount *mnt = ERR_PTR(-EINVAL);
Trond Myklebust40c553192007-12-14 14:56:07 -0500212 switch (server->nfs_client->rpc_ops->version) {
David Howellsf7b422b2006-06-09 09:34:33 -0400213 case 2:
214 case 3:
David Howells54ceac42006-08-22 20:06:13 -0400215 mnt = vfs_kern_mount(&nfs_xdev_fs_type, 0, devname, mountdata);
David Howellsf7b422b2006-06-09 09:34:33 -0400216 break;
217 case 4:
David Howells54ceac42006-08-22 20:06:13 -0400218 mnt = vfs_kern_mount(&nfs4_xdev_fs_type, 0, devname, mountdata);
David Howellsf7b422b2006-06-09 09:34:33 -0400219 }
220 return mnt;
221#else
David Howells54ceac42006-08-22 20:06:13 -0400222 return vfs_kern_mount(&nfs_xdev_fs_type, 0, devname, mountdata);
David Howellsf7b422b2006-06-09 09:34:33 -0400223#endif
224}
225
226/**
227 * nfs_do_submount - set up mountpoint when crossing a filesystem boundary
228 * @mnt_parent - mountpoint of parent directory
229 * @dentry - parent directory
230 * @fh - filehandle for new root dentry
231 * @fattr - attributes for new root inode
232 *
233 */
Adrian Bunk66f37502006-09-27 01:51:13 -0700234static struct vfsmount *nfs_do_submount(const struct vfsmount *mnt_parent,
235 const struct dentry *dentry,
236 struct nfs_fh *fh,
237 struct nfs_fattr *fattr)
David Howellsf7b422b2006-06-09 09:34:33 -0400238{
239 struct nfs_clone_mount mountdata = {
240 .sb = mnt_parent->mnt_sb,
241 .dentry = dentry,
242 .fh = fh,
243 .fattr = fattr,
244 };
245 struct vfsmount *mnt = ERR_PTR(-ENOMEM);
246 char *page = (char *) __get_free_page(GFP_USER);
247 char *devname;
248
David Howells54ceac42006-08-22 20:06:13 -0400249 dprintk("--> nfs_do_submount()\n");
250
Harvey Harrison3110ff82008-05-02 13:42:44 -0700251 dprintk("%s: submounting on %s/%s\n", __func__,
David Howellsf7b422b2006-06-09 09:34:33 -0400252 dentry->d_parent->d_name.name,
253 dentry->d_name.name);
254 if (page == NULL)
255 goto out;
256 devname = nfs_devname(mnt_parent, dentry, page, PAGE_SIZE);
257 mnt = (struct vfsmount *)devname;
258 if (IS_ERR(devname))
259 goto free_page;
260 mnt = nfs_do_clone_mount(NFS_SB(mnt_parent->mnt_sb), devname, &mountdata);
261free_page:
262 free_page((unsigned long)page);
263out:
Harvey Harrison3110ff82008-05-02 13:42:44 -0700264 dprintk("%s: done\n", __func__);
David Howells54ceac42006-08-22 20:06:13 -0400265
266 dprintk("<-- nfs_do_submount() = %p\n", mnt);
David Howellsf7b422b2006-06-09 09:34:33 -0400267 return mnt;
268}