ocfs2: Add ocfs2_read_refcount_block.
[deliverable/linux.git] / fs / nfs / namespace.c
CommitLineData
55a97593
TM
1/*
2 * linux/fs/nfs/namespace.c
3 *
4 * Copyright (C) 2005 Trond Myklebust <Trond.Myklebust@netapp.com>
54ceac45 5 * - Modified by David Howells <dhowells@redhat.com>
55a97593
TM
6 *
7 * NFS namespace
8 */
9
55a97593
TM
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>
f7b422b1 17#include "internal.h"
55a97593
TM
18
19#define NFSDBG_FACILITY NFSDBG_VFS
20
65f27f38 21static void nfs_expire_automounts(struct work_struct *work);
f7b422b1 22
a3dab293 23static LIST_HEAD(nfs_automount_list);
65f27f38 24static DECLARE_DELAYED_WORK(nfs_automount_task, nfs_expire_automounts);
51d8fa6a
TM
25int nfs_mountpoint_expiry_timeout = 500 * HZ;
26
66f37509
AB
27static 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
f7b422b1
DH
32/*
33 * nfs_path - reconstruct the path given an arbitrary dentry
34 * @base - arbitrary string to prepend to the path
54ceac45 35 * @droot - pointer to root dentry for mountpoint
f7b422b1
DH
36 * @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 */
54ceac45
DH
46char *nfs_path(const char *base,
47 const struct dentry *droot,
48 const struct dentry *dentry,
f7b422b1
DH
49 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);
54ceac45 57 while (!IS_ROOT(dentry) && dentry != droot) {
f7b422b1
DH
58 namelen = dentry->d_name.len;
59 buflen -= namelen + 1;
60 if (buflen < 0)
ce510193 61 goto Elong_unlock;
f7b422b1
DH
62 end -= namelen;
63 memcpy(end, dentry->d_name.name, namelen);
64 *--end = '/';
65 dentry = dentry->d_parent;
66 }
67 spin_unlock(&dcache_lock);
0b75b35c
TM
68 if (*end != '/') {
69 if (--buflen < 0)
70 goto Elong;
71 *--end = '/';
72 }
f7b422b1
DH
73 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;
ce510193
JT
83Elong_unlock:
84 spin_unlock(&dcache_lock);
f7b422b1
DH
85Elong:
86 return ERR_PTR(-ENAMETOOLONG);
87}
88
55a97593
TM
89/*
90 * 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
54ceac45
DH
111 dprintk("--> nfs_follow_mountpoint()\n");
112
44d5759d
DL
113 err = -ESTALE;
114 if (IS_ROOT(dentry))
115 goto out_err;
116
3110ff80 117 dprintk("%s: enter\n", __func__);
4ac91378
JB
118 dput(nd->path.dentry);
119 nd->path.dentry = dget(dentry);
54ceac45 120
55a97593 121 /* Look it up again */
4ac91378 122 parent = dget_parent(nd->path.dentry);
8fa5c000 123 err = server->nfs_client->rpc_ops->lookup(parent->d_inode,
4ac91378 124 &nd->path.dentry->d_name,
8fa5c000 125 &fh, &fattr);
55a97593
TM
126 dput(parent);
127 if (err != 0)
128 goto out_err;
129
6b97fd3d 130 if (fattr.valid & NFS_ATTR_FATTR_V4_REFERRAL)
4ac91378 131 mnt = nfs_do_refmount(nd->path.mnt, nd->path.dentry);
6b97fd3d 132 else
4ac91378
JB
133 mnt = nfs_do_submount(nd->path.mnt, nd->path.dentry, &fh,
134 &fattr);
55a97593
TM
135 err = PTR_ERR(mnt);
136 if (IS_ERR(mnt))
137 goto out_err;
138
139 mntget(mnt);
8d66bf54 140 err = do_add_mount(mnt, &nd->path, nd->path.mnt->mnt_flags|MNT_SHRINKABLE,
4ac91378 141 &nfs_automount_list);
55a97593
TM
142 if (err < 0) {
143 mntput(mnt);
144 if (err == -EBUSY)
145 goto out_follow;
146 goto out_err;
147 }
31f31db1 148 path_put(&nd->path);
4ac91378
JB
149 nd->path.mnt = mnt;
150 nd->path.dentry = dget(mnt->mnt_root);
51d8fa6a 151 schedule_delayed_work(&nfs_automount_task, nfs_mountpoint_expiry_timeout);
55a97593 152out:
3110ff80 153 dprintk("%s: done, returned %d\n", __func__, err);
54ceac45
DH
154
155 dprintk("<-- nfs_follow_mountpoint() = %d\n", err);
55a97593
TM
156 return ERR_PTR(err);
157out_err:
1d957f9b 158 path_put(&nd->path);
55a97593
TM
159 goto out;
160out_follow:
4ac91378 161 while (d_mountpoint(nd->path.dentry) &&
9393bd07 162 follow_down(&nd->path))
55a97593
TM
163 ;
164 err = 0;
165 goto out;
166}
167
92e1d5be 168const struct inode_operations nfs_mountpoint_inode_operations = {
55a97593
TM
169 .follow_link = nfs_follow_mountpoint,
170 .getattr = nfs_getattr,
171};
51d8fa6a 172
92e1d5be 173const struct inode_operations nfs_referral_inode_operations = {
6b97fd3d
MN
174 .follow_link = nfs_follow_mountpoint,
175};
176
65f27f38 177static void nfs_expire_automounts(struct work_struct *work)
51d8fa6a 178{
65f27f38 179 struct list_head *list = &nfs_automount_list;
51d8fa6a
TM
180
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{
3d39c691 188 if (list_empty(&nfs_automount_list))
560aef74 189 cancel_delayed_work(&nfs_automount_task);
51d8fa6a 190}
f7b422b1
DH
191
192/*
193 * Clone a mountpoint of the appropriate type
194 */
509de811
DH
195static struct vfsmount *nfs_do_clone_mount(struct nfs_server *server,
196 const char *devname,
f7b422b1
DH
197 struct nfs_clone_mount *mountdata)
198{
199#ifdef CONFIG_NFS_V4
fd08d7e9 200 struct vfsmount *mnt = ERR_PTR(-EINVAL);
40c55319 201 switch (server->nfs_client->rpc_ops->version) {
f7b422b1
DH
202 case 2:
203 case 3:
54ceac45 204 mnt = vfs_kern_mount(&nfs_xdev_fs_type, 0, devname, mountdata);
f7b422b1
DH
205 break;
206 case 4:
54ceac45 207 mnt = vfs_kern_mount(&nfs4_xdev_fs_type, 0, devname, mountdata);
f7b422b1
DH
208 }
209 return mnt;
210#else
54ceac45 211 return vfs_kern_mount(&nfs_xdev_fs_type, 0, devname, mountdata);
f7b422b1
DH
212#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 */
66f37509
AB
223static 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)
f7b422b1
DH
227{
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
54ceac45
DH
238 dprintk("--> nfs_do_submount()\n");
239
3110ff80 240 dprintk("%s: submounting on %s/%s\n", __func__,
f7b422b1
DH
241 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:
3110ff80 253 dprintk("%s: done\n", __func__);
54ceac45
DH
254
255 dprintk("<-- nfs_do_submount() = %p\n", mnt);
f7b422b1
DH
256 return mnt;
257}
This page took 0.326592 seconds and 5 git commands to generate.