This commit was manufactured by cvs2svn to create branch 'vserver'.
[linux-2.6.git] / fs / nfs / namespace.c
1 /*
2  * linux/fs/nfs/namespace.c
3  *
4  * Copyright (C) 2005 Trond Myklebust <Trond.Myklebust@netapp.com>
5  * - Modified by David Howells <dhowells@redhat.com>
6  *
7  * NFS namespace
8  */
9
10 #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>
17 #include "internal.h"
18
19 #define NFSDBG_FACILITY         NFSDBG_VFS
20
21 static void nfs_expire_automounts(void *list);
22
23 LIST_HEAD(nfs_automount_list);
24 static DECLARE_WORK(nfs_automount_task, nfs_expire_automounts, &nfs_automount_list);
25 int nfs_mountpoint_expiry_timeout = 500 * HZ;
26
27 /*
28  * nfs_path - reconstruct the path given an arbitrary dentry
29  * @base - arbitrary string to prepend to the path
30  * @droot - pointer to root dentry for mountpoint
31  * @dentry - pointer to dentry
32  * @buffer - result buffer
33  * @buflen - length of buffer
34  *
35  * Helper function for constructing the path from the
36  * root dentry to an arbitrary hashed dentry.
37  *
38  * This is mainly for use in figuring out the path on the
39  * server side when automounting on top of an existing partition.
40  */
41 char *nfs_path(const char *base,
42                const struct dentry *droot,
43                const struct dentry *dentry,
44                char *buffer, ssize_t buflen)
45 {
46         char *end = buffer+buflen;
47         int namelen;
48
49         *--end = '\0';
50         buflen--;
51         spin_lock(&dcache_lock);
52         while (!IS_ROOT(dentry) && dentry != droot) {
53                 namelen = dentry->d_name.len;
54                 buflen -= namelen + 1;
55                 if (buflen < 0)
56                         goto Elong_unlock;
57                 end -= namelen;
58                 memcpy(end, dentry->d_name.name, namelen);
59                 *--end = '/';
60                 dentry = dentry->d_parent;
61         }
62         spin_unlock(&dcache_lock);
63         namelen = strlen(base);
64         /* Strip off excess slashes in base string */
65         while (namelen > 0 && base[namelen - 1] == '/')
66                 namelen--;
67         buflen -= namelen;
68         if (buflen < 0)
69                 goto Elong;
70         end -= namelen;
71         memcpy(end, base, namelen);
72         return end;
73 Elong_unlock:
74         spin_unlock(&dcache_lock);
75 Elong:
76         return ERR_PTR(-ENAMETOOLONG);
77 }
78
79 /*
80  * nfs_follow_mountpoint - handle crossing a mountpoint on the server
81  * @dentry - dentry of mountpoint
82  * @nd - nameidata info
83  *
84  * When we encounter a mountpoint on the server, we want to set up
85  * a mountpoint on the client too, to prevent inode numbers from
86  * colliding, and to allow "df" to work properly.
87  * On NFSv4, we also want to allow for the fact that different
88  * filesystems may be migrated to different servers in a failover
89  * situation, and that different filesystems may want to use
90  * different security flavours.
91  */
92 static void * nfs_follow_mountpoint(struct dentry *dentry, struct nameidata *nd)
93 {
94         struct vfsmount *mnt;
95         struct nfs_server *server = NFS_SERVER(dentry->d_inode);
96         struct dentry *parent;
97         struct nfs_fh fh;
98         struct nfs_fattr fattr;
99         int err;
100
101         dprintk("--> nfs_follow_mountpoint()\n");
102
103         BUG_ON(IS_ROOT(dentry));
104         dprintk("%s: enter\n", __FUNCTION__);
105         dput(nd->dentry);
106         nd->dentry = dget(dentry);
107
108         /* Look it up again */
109         parent = dget_parent(nd->dentry);
110         err = server->nfs_client->rpc_ops->lookup(parent->d_inode,
111                                                   &nd->dentry->d_name,
112                                                   &fh, &fattr);
113         dput(parent);
114         if (err != 0)
115                 goto out_err;
116
117         if (fattr.valid & NFS_ATTR_FATTR_V4_REFERRAL)
118                 mnt = nfs_do_refmount(nd->mnt, nd->dentry);
119         else
120                 mnt = nfs_do_submount(nd->mnt, nd->dentry, &fh, &fattr);
121         err = PTR_ERR(mnt);
122         if (IS_ERR(mnt))
123                 goto out_err;
124
125         mntget(mnt);
126         err = do_add_mount(mnt, nd, nd->mnt->mnt_flags|MNT_SHRINKABLE, &nfs_automount_list);
127         if (err < 0) {
128                 mntput(mnt);
129                 if (err == -EBUSY)
130                         goto out_follow;
131                 goto out_err;
132         }
133         mntput(nd->mnt);
134         dput(nd->dentry);
135         nd->mnt = mnt;
136         nd->dentry = dget(mnt->mnt_root);
137         schedule_delayed_work(&nfs_automount_task, nfs_mountpoint_expiry_timeout);
138 out:
139         dprintk("%s: done, returned %d\n", __FUNCTION__, err);
140
141         dprintk("<-- nfs_follow_mountpoint() = %d\n", err);
142         return ERR_PTR(err);
143 out_err:
144         path_release(nd);
145         goto out;
146 out_follow:
147         while(d_mountpoint(nd->dentry) && follow_down(&nd->mnt, &nd->dentry))
148                 ;
149         err = 0;
150         goto out;
151 }
152
153 struct inode_operations nfs_mountpoint_inode_operations = {
154         .follow_link    = nfs_follow_mountpoint,
155         .getattr        = nfs_getattr,
156 };
157
158 struct inode_operations nfs_referral_inode_operations = {
159         .follow_link    = nfs_follow_mountpoint,
160 };
161
162 static void nfs_expire_automounts(void *data)
163 {
164         struct list_head *list = (struct list_head *)data;
165
166         mark_mounts_for_expiry(list);
167         if (!list_empty(list))
168                 schedule_delayed_work(&nfs_automount_task, nfs_mountpoint_expiry_timeout);
169 }
170
171 void nfs_release_automount_timer(void)
172 {
173         if (list_empty(&nfs_automount_list)) {
174                 cancel_delayed_work(&nfs_automount_task);
175                 flush_scheduled_work();
176         }
177 }
178
179 /*
180  * Clone a mountpoint of the appropriate type
181  */
182 static struct vfsmount *nfs_do_clone_mount(struct nfs_server *server,
183                                            const char *devname,
184                                            struct nfs_clone_mount *mountdata)
185 {
186 #ifdef CONFIG_NFS_V4
187         struct vfsmount *mnt = NULL;
188         switch (server->nfs_client->cl_nfsversion) {
189                 case 2:
190                 case 3:
191                         mnt = vfs_kern_mount(&nfs_xdev_fs_type, 0, devname, mountdata);
192                         break;
193                 case 4:
194                         mnt = vfs_kern_mount(&nfs4_xdev_fs_type, 0, devname, mountdata);
195         }
196         return mnt;
197 #else
198         return vfs_kern_mount(&nfs_xdev_fs_type, 0, devname, mountdata);
199 #endif
200 }
201
202 /**
203  * nfs_do_submount - set up mountpoint when crossing a filesystem boundary
204  * @mnt_parent - mountpoint of parent directory
205  * @dentry - parent directory
206  * @fh - filehandle for new root dentry
207  * @fattr - attributes for new root inode
208  *
209  */
210 struct vfsmount *nfs_do_submount(const struct vfsmount *mnt_parent,
211                 const struct dentry *dentry, struct nfs_fh *fh,
212                 struct nfs_fattr *fattr)
213 {
214         struct nfs_clone_mount mountdata = {
215                 .sb = mnt_parent->mnt_sb,
216                 .dentry = dentry,
217                 .fh = fh,
218                 .fattr = fattr,
219         };
220         struct vfsmount *mnt = ERR_PTR(-ENOMEM);
221         char *page = (char *) __get_free_page(GFP_USER);
222         char *devname;
223
224         dprintk("--> nfs_do_submount()\n");
225
226         dprintk("%s: submounting on %s/%s\n", __FUNCTION__,
227                         dentry->d_parent->d_name.name,
228                         dentry->d_name.name);
229         if (page == NULL)
230                 goto out;
231         devname = nfs_devname(mnt_parent, dentry, page, PAGE_SIZE);
232         mnt = (struct vfsmount *)devname;
233         if (IS_ERR(devname))
234                 goto free_page;
235         mnt = nfs_do_clone_mount(NFS_SB(mnt_parent->mnt_sb), devname, &mountdata);
236 free_page:
237         free_page((unsigned long)page);
238 out:
239         dprintk("%s: done\n", __FUNCTION__);
240
241         dprintk("<-- nfs_do_submount() = %p\n", mnt);
242         return mnt;
243 }