blob: 40c76678289168ed0cbbe3e653f58485a56003eb [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>
11#include <linux/mount.h>
12#include <linux/namei.h>
13#include <linux/nfs_fs.h>
14#include <linux/string.h>
15#include <linux/sunrpc/clnt.h>
16#include <linux/vfs.h>
David Howellsf7b422b2006-06-09 09:34:33 -040017#include "internal.h"
Trond Myklebust55a97592006-06-09 09:34:19 -040018
19#define NFSDBG_FACILITY NFSDBG_VFS
20
David Howells65f27f32006-11-22 14:55:48 +000021static void nfs_expire_automounts(struct work_struct *work);
David Howellsf7b422b2006-06-09 09:34:33 -040022
Adrian Bunka3dab292008-04-14 21:41:32 +030023static LIST_HEAD(nfs_automount_list);
David Howells65f27f32006-11-22 14:55:48 +000024static DECLARE_DELAYED_WORK(nfs_automount_task, nfs_expire_automounts);
Trond Myklebust51d8fa62006-06-09 09:34:20 -040025int nfs_mountpoint_expiry_timeout = 500 * HZ;
26
Adrian Bunk66f37502006-09-27 01:51:13 -070027static struct vfsmount *nfs_do_submount(const struct vfsmount *mnt_parent,
28 const struct dentry *dentry,
29 struct nfs_fh *fh,
30 struct nfs_fattr *fattr);
31
Trond Myklebust55a97592006-06-09 09:34:19 -040032/*
David Howellsf7b422b2006-06-09 09:34:33 -040033 * nfs_path - reconstruct the path given an arbitrary dentry
34 * @base - arbitrary string to prepend to the path
David Howells54ceac42006-08-22 20:06:13 -040035 * @droot - pointer to root dentry for mountpoint
David Howellsf7b422b2006-06-09 09:34:33 -040036 * @dentry - pointer to dentry
37 * @buffer - result buffer
38 * @buflen - length of buffer
39 *
40 * Helper function for constructing the path from the
41 * root dentry to an arbitrary hashed dentry.
42 *
43 * This is mainly for use in figuring out the path on the
44 * server side when automounting on top of an existing partition.
45 */
David Howells54ceac42006-08-22 20:06:13 -040046char *nfs_path(const char *base,
47 const struct dentry *droot,
48 const struct dentry *dentry,
David Howellsf7b422b2006-06-09 09:34:33 -040049 char *buffer, ssize_t buflen)
50{
51 char *end = buffer+buflen;
52 int namelen;
53
54 *--end = '\0';
55 buflen--;
56 spin_lock(&dcache_lock);
David Howells54ceac42006-08-22 20:06:13 -040057 while (!IS_ROOT(dentry) && dentry != droot) {
David Howellsf7b422b2006-06-09 09:34:33 -040058 namelen = dentry->d_name.len;
59 buflen -= namelen + 1;
60 if (buflen < 0)
Josh Triplettce510192006-07-24 16:30:00 -070061 goto Elong_unlock;
David Howellsf7b422b2006-06-09 09:34:33 -040062 end -= namelen;
63 memcpy(end, dentry->d_name.name, namelen);
64 *--end = '/';
65 dentry = dentry->d_parent;
66 }
67 spin_unlock(&dcache_lock);
Trond Myklebust0b75b352009-06-22 15:09:14 -040068 if (*end != '/') {
69 if (--buflen < 0)
70 goto Elong;
71 *--end = '/';
72 }
David Howellsf7b422b2006-06-09 09:34:33 -040073 namelen = strlen(base);
74 /* Strip off excess slashes in base string */
75 while (namelen > 0 && base[namelen - 1] == '/')
76 namelen--;
77 buflen -= namelen;
78 if (buflen < 0)
79 goto Elong;
80 end -= namelen;
81 memcpy(end, base, namelen);
82 return end;
Josh Triplettce510192006-07-24 16:30:00 -070083Elong_unlock:
84 spin_unlock(&dcache_lock);
David Howellsf7b422b2006-06-09 09:34:33 -040085Elong:
86 return ERR_PTR(-ENAMETOOLONG);
87}
88
89/*
Trond Myklebust55a97592006-06-09 09:34:19 -040090 * nfs_follow_mountpoint - handle crossing a mountpoint on the server
91 * @dentry - dentry of mountpoint
92 * @nd - nameidata info
93 *
94 * When we encounter a mountpoint on the server, we want to set up
95 * a mountpoint on the client too, to prevent inode numbers from
96 * colliding, and to allow "df" to work properly.
97 * On NFSv4, we also want to allow for the fact that different
98 * filesystems may be migrated to different servers in a failover
99 * situation, and that different filesystems may want to use
100 * different security flavours.
101 */
102static void * nfs_follow_mountpoint(struct dentry *dentry, struct nameidata *nd)
103{
104 struct vfsmount *mnt;
105 struct nfs_server *server = NFS_SERVER(dentry->d_inode);
106 struct dentry *parent;
107 struct nfs_fh fh;
108 struct nfs_fattr fattr;
109 int err;
110
David Howells54ceac42006-08-22 20:06:13 -0400111 dprintk("--> nfs_follow_mountpoint()\n");
112
Denis V. Lunev44d57592008-08-11 12:02:34 +0400113 err = -ESTALE;
114 if (IS_ROOT(dentry))
115 goto out_err;
116
Harvey Harrison3110ff82008-05-02 13:42:44 -0700117 dprintk("%s: enter\n", __func__);
Jan Blunck4ac91372008-02-14 19:34:32 -0800118 dput(nd->path.dentry);
119 nd->path.dentry = dget(dentry);
David Howells54ceac42006-08-22 20:06:13 -0400120
Trond Myklebust55a97592006-06-09 09:34:19 -0400121 /* Look it up again */
Jan Blunck4ac91372008-02-14 19:34:32 -0800122 parent = dget_parent(nd->path.dentry);
David Howells8fa5c002006-08-22 20:06:12 -0400123 err = server->nfs_client->rpc_ops->lookup(parent->d_inode,
Jan Blunck4ac91372008-02-14 19:34:32 -0800124 &nd->path.dentry->d_name,
David Howells8fa5c002006-08-22 20:06:12 -0400125 &fh, &fattr);
Trond Myklebust55a97592006-06-09 09:34:19 -0400126 dput(parent);
127 if (err != 0)
128 goto out_err;
129
Manoj Naik6b97fd32006-06-09 09:34:29 -0400130 if (fattr.valid & NFS_ATTR_FATTR_V4_REFERRAL)
Jan Blunck4ac91372008-02-14 19:34:32 -0800131 mnt = nfs_do_refmount(nd->path.mnt, nd->path.dentry);
Manoj Naik6b97fd32006-06-09 09:34:29 -0400132 else
Jan Blunck4ac91372008-02-14 19:34:32 -0800133 mnt = nfs_do_submount(nd->path.mnt, nd->path.dentry, &fh,
134 &fattr);
Trond Myklebust55a97592006-06-09 09:34:19 -0400135 err = PTR_ERR(mnt);
136 if (IS_ERR(mnt))
137 goto out_err;
138
139 mntget(mnt);
Al Viro8d66bf52008-08-01 09:05:54 -0400140 err = do_add_mount(mnt, &nd->path, nd->path.mnt->mnt_flags|MNT_SHRINKABLE,
Jan Blunck4ac91372008-02-14 19:34:32 -0800141 &nfs_automount_list);
Trond Myklebust55a97592006-06-09 09:34:19 -0400142 if (err < 0) {
143 mntput(mnt);
144 if (err == -EBUSY)
145 goto out_follow;
146 goto out_err;
147 }
Jan Blunck31f31db12008-05-02 13:42:45 -0700148 path_put(&nd->path);
Jan Blunck4ac91372008-02-14 19:34:32 -0800149 nd->path.mnt = mnt;
150 nd->path.dentry = dget(mnt->mnt_root);
Trond Myklebust51d8fa62006-06-09 09:34:20 -0400151 schedule_delayed_work(&nfs_automount_task, nfs_mountpoint_expiry_timeout);
Trond Myklebust55a97592006-06-09 09:34:19 -0400152out:
Harvey Harrison3110ff82008-05-02 13:42:44 -0700153 dprintk("%s: done, returned %d\n", __func__, err);
David Howells54ceac42006-08-22 20:06:13 -0400154
155 dprintk("<-- nfs_follow_mountpoint() = %d\n", err);
Trond Myklebust55a97592006-06-09 09:34:19 -0400156 return ERR_PTR(err);
157out_err:
Jan Blunck1d957f92008-02-14 19:34:35 -0800158 path_put(&nd->path);
Trond Myklebust55a97592006-06-09 09:34:19 -0400159 goto out;
160out_follow:
Jan Blunck4ac91372008-02-14 19:34:32 -0800161 while (d_mountpoint(nd->path.dentry) &&
Al Viro9393bd02009-04-18 13:58:15 -0400162 follow_down(&nd->path))
Trond Myklebust55a97592006-06-09 09:34:19 -0400163 ;
164 err = 0;
165 goto out;
166}
167
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -0800168const struct inode_operations nfs_mountpoint_inode_operations = {
Trond Myklebust55a97592006-06-09 09:34:19 -0400169 .follow_link = nfs_follow_mountpoint,
170 .getattr = nfs_getattr,
171};
Trond Myklebust51d8fa62006-06-09 09:34:20 -0400172
Arjan van de Ven92e1d5b2007-02-12 00:55:39 -0800173const struct inode_operations nfs_referral_inode_operations = {
Manoj Naik6b97fd32006-06-09 09:34:29 -0400174 .follow_link = nfs_follow_mountpoint,
175};
176
David Howells65f27f32006-11-22 14:55:48 +0000177static void nfs_expire_automounts(struct work_struct *work)
Trond Myklebust51d8fa62006-06-09 09:34:20 -0400178{
David Howells65f27f32006-11-22 14:55:48 +0000179 struct list_head *list = &nfs_automount_list;
Trond Myklebust51d8fa62006-06-09 09:34:20 -0400180
181 mark_mounts_for_expiry(list);
182 if (!list_empty(list))
183 schedule_delayed_work(&nfs_automount_task, nfs_mountpoint_expiry_timeout);
184}
185
186void nfs_release_automount_timer(void)
187{
Trond Myklebust3d39c692007-08-07 15:28:33 -0400188 if (list_empty(&nfs_automount_list))
Trond Myklebust560aef72007-08-27 09:14:56 -0400189 cancel_delayed_work(&nfs_automount_task);
Trond Myklebust51d8fa62006-06-09 09:34:20 -0400190}
David Howellsf7b422b2006-06-09 09:34:33 -0400191
192/*
193 * Clone a mountpoint of the appropriate type
194 */
David Howells509de812006-08-22 20:06:11 -0400195static struct vfsmount *nfs_do_clone_mount(struct nfs_server *server,
196 const char *devname,
David Howellsf7b422b2006-06-09 09:34:33 -0400197 struct nfs_clone_mount *mountdata)
198{
199#ifdef CONFIG_NFS_V4
Denis V. Lunevfd08d7e2008-07-31 09:38:55 +0400200 struct vfsmount *mnt = ERR_PTR(-EINVAL);
Trond Myklebust40c553192007-12-14 14:56:07 -0500201 switch (server->nfs_client->rpc_ops->version) {
David Howellsf7b422b2006-06-09 09:34:33 -0400202 case 2:
203 case 3:
David Howells54ceac42006-08-22 20:06:13 -0400204 mnt = vfs_kern_mount(&nfs_xdev_fs_type, 0, devname, mountdata);
David Howellsf7b422b2006-06-09 09:34:33 -0400205 break;
206 case 4:
David Howells54ceac42006-08-22 20:06:13 -0400207 mnt = vfs_kern_mount(&nfs4_xdev_fs_type, 0, devname, mountdata);
David Howellsf7b422b2006-06-09 09:34:33 -0400208 }
209 return mnt;
210#else
David Howells54ceac42006-08-22 20:06:13 -0400211 return vfs_kern_mount(&nfs_xdev_fs_type, 0, devname, mountdata);
David Howellsf7b422b2006-06-09 09:34:33 -0400212#endif
213}
214
215/**
216 * nfs_do_submount - set up mountpoint when crossing a filesystem boundary
217 * @mnt_parent - mountpoint of parent directory
218 * @dentry - parent directory
219 * @fh - filehandle for new root dentry
220 * @fattr - attributes for new root inode
221 *
222 */
Adrian Bunk66f37502006-09-27 01:51:13 -0700223static struct vfsmount *nfs_do_submount(const struct vfsmount *mnt_parent,
224 const struct dentry *dentry,
225 struct nfs_fh *fh,
226 struct nfs_fattr *fattr)
David Howellsf7b422b2006-06-09 09:34:33 -0400227{
228 struct nfs_clone_mount mountdata = {
229 .sb = mnt_parent->mnt_sb,
230 .dentry = dentry,
231 .fh = fh,
232 .fattr = fattr,
233 };
234 struct vfsmount *mnt = ERR_PTR(-ENOMEM);
235 char *page = (char *) __get_free_page(GFP_USER);
236 char *devname;
237
David Howells54ceac42006-08-22 20:06:13 -0400238 dprintk("--> nfs_do_submount()\n");
239
Harvey Harrison3110ff82008-05-02 13:42:44 -0700240 dprintk("%s: submounting on %s/%s\n", __func__,
David Howellsf7b422b2006-06-09 09:34:33 -0400241 dentry->d_parent->d_name.name,
242 dentry->d_name.name);
243 if (page == NULL)
244 goto out;
245 devname = nfs_devname(mnt_parent, dentry, page, PAGE_SIZE);
246 mnt = (struct vfsmount *)devname;
247 if (IS_ERR(devname))
248 goto free_page;
249 mnt = nfs_do_clone_mount(NFS_SB(mnt_parent->mnt_sb), devname, &mountdata);
250free_page:
251 free_page((unsigned long)page);
252out:
Harvey Harrison3110ff82008-05-02 13:42:44 -0700253 dprintk("%s: done\n", __func__);
David Howells54ceac42006-08-22 20:06:13 -0400254
255 dprintk("<-- nfs_do_submount() = %p\n", mnt);
David Howellsf7b422b2006-06-09 09:34:33 -0400256 return mnt;
257}