blob: 5ed798bc1cf7f7e75dad6f6387694631f5ee9497 [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
Trond Myklebust51d8fa62006-06-09 09:34:20 -040021static void nfs_expire_automounts(void *list);
David Howellsf7b422b2006-06-09 09:34:33 -040022
23LIST_HEAD(nfs_automount_list);
David Howells52bad642006-11-22 14:54:01 +000024static DECLARE_DELAYED_WORK(nfs_automount_task, nfs_expire_automounts,
25 &nfs_automount_list);
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{
52 char *end = buffer+buflen;
53 int namelen;
54
55 *--end = '\0';
56 buflen--;
57 spin_lock(&dcache_lock);
David Howells54ceac42006-08-22 20:06:13 -040058 while (!IS_ROOT(dentry) && dentry != droot) {
David Howellsf7b422b2006-06-09 09:34:33 -040059 namelen = dentry->d_name.len;
60 buflen -= namelen + 1;
61 if (buflen < 0)
Josh Triplettce510192006-07-24 16:30:00 -070062 goto Elong_unlock;
David Howellsf7b422b2006-06-09 09:34:33 -040063 end -= namelen;
64 memcpy(end, dentry->d_name.name, namelen);
65 *--end = '/';
66 dentry = dentry->d_parent;
67 }
68 spin_unlock(&dcache_lock);
69 namelen = strlen(base);
70 /* Strip off excess slashes in base string */
71 while (namelen > 0 && base[namelen - 1] == '/')
72 namelen--;
73 buflen -= namelen;
74 if (buflen < 0)
75 goto Elong;
76 end -= namelen;
77 memcpy(end, base, namelen);
78 return end;
Josh Triplettce510192006-07-24 16:30:00 -070079Elong_unlock:
80 spin_unlock(&dcache_lock);
David Howellsf7b422b2006-06-09 09:34:33 -040081Elong:
82 return ERR_PTR(-ENAMETOOLONG);
83}
84
85/*
Trond Myklebust55a97592006-06-09 09:34:19 -040086 * nfs_follow_mountpoint - handle crossing a mountpoint on the server
87 * @dentry - dentry of mountpoint
88 * @nd - nameidata info
89 *
90 * When we encounter a mountpoint on the server, we want to set up
91 * a mountpoint on the client too, to prevent inode numbers from
92 * colliding, and to allow "df" to work properly.
93 * On NFSv4, we also want to allow for the fact that different
94 * filesystems may be migrated to different servers in a failover
95 * situation, and that different filesystems may want to use
96 * different security flavours.
97 */
98static void * nfs_follow_mountpoint(struct dentry *dentry, struct nameidata *nd)
99{
100 struct vfsmount *mnt;
101 struct nfs_server *server = NFS_SERVER(dentry->d_inode);
102 struct dentry *parent;
103 struct nfs_fh fh;
104 struct nfs_fattr fattr;
105 int err;
106
David Howells54ceac42006-08-22 20:06:13 -0400107 dprintk("--> nfs_follow_mountpoint()\n");
108
Trond Myklebust55a97592006-06-09 09:34:19 -0400109 BUG_ON(IS_ROOT(dentry));
110 dprintk("%s: enter\n", __FUNCTION__);
111 dput(nd->dentry);
112 nd->dentry = dget(dentry);
David Howells54ceac42006-08-22 20:06:13 -0400113
Trond Myklebust55a97592006-06-09 09:34:19 -0400114 /* Look it up again */
115 parent = dget_parent(nd->dentry);
David Howells8fa5c002006-08-22 20:06:12 -0400116 err = server->nfs_client->rpc_ops->lookup(parent->d_inode,
117 &nd->dentry->d_name,
118 &fh, &fattr);
Trond Myklebust55a97592006-06-09 09:34:19 -0400119 dput(parent);
120 if (err != 0)
121 goto out_err;
122
Manoj Naik6b97fd32006-06-09 09:34:29 -0400123 if (fattr.valid & NFS_ATTR_FATTR_V4_REFERRAL)
124 mnt = nfs_do_refmount(nd->mnt, nd->dentry);
125 else
126 mnt = nfs_do_submount(nd->mnt, nd->dentry, &fh, &fattr);
Trond Myklebust55a97592006-06-09 09:34:19 -0400127 err = PTR_ERR(mnt);
128 if (IS_ERR(mnt))
129 goto out_err;
130
131 mntget(mnt);
Trond Myklebust51d8fa62006-06-09 09:34:20 -0400132 err = do_add_mount(mnt, nd, nd->mnt->mnt_flags|MNT_SHRINKABLE, &nfs_automount_list);
Trond Myklebust55a97592006-06-09 09:34:19 -0400133 if (err < 0) {
134 mntput(mnt);
135 if (err == -EBUSY)
136 goto out_follow;
137 goto out_err;
138 }
139 mntput(nd->mnt);
140 dput(nd->dentry);
141 nd->mnt = mnt;
142 nd->dentry = dget(mnt->mnt_root);
Trond Myklebust51d8fa62006-06-09 09:34:20 -0400143 schedule_delayed_work(&nfs_automount_task, nfs_mountpoint_expiry_timeout);
Trond Myklebust55a97592006-06-09 09:34:19 -0400144out:
145 dprintk("%s: done, returned %d\n", __FUNCTION__, err);
David Howells54ceac42006-08-22 20:06:13 -0400146
147 dprintk("<-- nfs_follow_mountpoint() = %d\n", err);
Trond Myklebust55a97592006-06-09 09:34:19 -0400148 return ERR_PTR(err);
149out_err:
150 path_release(nd);
151 goto out;
152out_follow:
153 while(d_mountpoint(nd->dentry) && follow_down(&nd->mnt, &nd->dentry))
154 ;
155 err = 0;
156 goto out;
157}
158
159struct inode_operations nfs_mountpoint_inode_operations = {
160 .follow_link = nfs_follow_mountpoint,
161 .getattr = nfs_getattr,
162};
Trond Myklebust51d8fa62006-06-09 09:34:20 -0400163
Manoj Naik6b97fd32006-06-09 09:34:29 -0400164struct inode_operations nfs_referral_inode_operations = {
165 .follow_link = nfs_follow_mountpoint,
166};
167
Trond Myklebust51d8fa62006-06-09 09:34:20 -0400168static void nfs_expire_automounts(void *data)
169{
170 struct list_head *list = (struct list_head *)data;
171
172 mark_mounts_for_expiry(list);
173 if (!list_empty(list))
174 schedule_delayed_work(&nfs_automount_task, nfs_mountpoint_expiry_timeout);
175}
176
177void nfs_release_automount_timer(void)
178{
179 if (list_empty(&nfs_automount_list)) {
180 cancel_delayed_work(&nfs_automount_task);
181 flush_scheduled_work();
182 }
183}
David Howellsf7b422b2006-06-09 09:34:33 -0400184
185/*
186 * Clone a mountpoint of the appropriate type
187 */
David Howells509de812006-08-22 20:06:11 -0400188static struct vfsmount *nfs_do_clone_mount(struct nfs_server *server,
189 const char *devname,
David Howellsf7b422b2006-06-09 09:34:33 -0400190 struct nfs_clone_mount *mountdata)
191{
192#ifdef CONFIG_NFS_V4
193 struct vfsmount *mnt = NULL;
David Howells8fa5c002006-08-22 20:06:12 -0400194 switch (server->nfs_client->cl_nfsversion) {
David Howellsf7b422b2006-06-09 09:34:33 -0400195 case 2:
196 case 3:
David Howells54ceac42006-08-22 20:06:13 -0400197 mnt = vfs_kern_mount(&nfs_xdev_fs_type, 0, devname, mountdata);
David Howellsf7b422b2006-06-09 09:34:33 -0400198 break;
199 case 4:
David Howells54ceac42006-08-22 20:06:13 -0400200 mnt = vfs_kern_mount(&nfs4_xdev_fs_type, 0, devname, mountdata);
David Howellsf7b422b2006-06-09 09:34:33 -0400201 }
202 return mnt;
203#else
David Howells54ceac42006-08-22 20:06:13 -0400204 return vfs_kern_mount(&nfs_xdev_fs_type, 0, devname, mountdata);
David Howellsf7b422b2006-06-09 09:34:33 -0400205#endif
206}
207
208/**
209 * nfs_do_submount - set up mountpoint when crossing a filesystem boundary
210 * @mnt_parent - mountpoint of parent directory
211 * @dentry - parent directory
212 * @fh - filehandle for new root dentry
213 * @fattr - attributes for new root inode
214 *
215 */
Adrian Bunk66f37502006-09-27 01:51:13 -0700216static struct vfsmount *nfs_do_submount(const struct vfsmount *mnt_parent,
217 const struct dentry *dentry,
218 struct nfs_fh *fh,
219 struct nfs_fattr *fattr)
David Howellsf7b422b2006-06-09 09:34:33 -0400220{
221 struct nfs_clone_mount mountdata = {
222 .sb = mnt_parent->mnt_sb,
223 .dentry = dentry,
224 .fh = fh,
225 .fattr = fattr,
226 };
227 struct vfsmount *mnt = ERR_PTR(-ENOMEM);
228 char *page = (char *) __get_free_page(GFP_USER);
229 char *devname;
230
David Howells54ceac42006-08-22 20:06:13 -0400231 dprintk("--> nfs_do_submount()\n");
232
David Howellsf7b422b2006-06-09 09:34:33 -0400233 dprintk("%s: submounting on %s/%s\n", __FUNCTION__,
234 dentry->d_parent->d_name.name,
235 dentry->d_name.name);
236 if (page == NULL)
237 goto out;
238 devname = nfs_devname(mnt_parent, dentry, page, PAGE_SIZE);
239 mnt = (struct vfsmount *)devname;
240 if (IS_ERR(devname))
241 goto free_page;
242 mnt = nfs_do_clone_mount(NFS_SB(mnt_parent->mnt_sb), devname, &mountdata);
243free_page:
244 free_page((unsigned long)page);
245out:
246 dprintk("%s: done\n", __FUNCTION__);
David Howells54ceac42006-08-22 20:06:13 -0400247
248 dprintk("<-- nfs_do_submount() = %p\n", mnt);
David Howellsf7b422b2006-06-09 09:34:33 -0400249 return mnt;
250}