Add a dentry op to allow processes to be held during pathwalk transit
[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 10#include <linux/dcache.h>
5a0e3ad6 11#include <linux/gfp.h>
55a97593
TM
12#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>
f7b422b1 18#include "internal.h"
55a97593
TM
19
20#define NFSDBG_FACILITY NFSDBG_VFS
21
65f27f38 22static void nfs_expire_automounts(struct work_struct *work);
f7b422b1 23
a3dab293 24static LIST_HEAD(nfs_automount_list);
65f27f38 25static DECLARE_DELAYED_WORK(nfs_automount_task, nfs_expire_automounts);
51d8fa6a
TM
26int nfs_mountpoint_expiry_timeout = 500 * HZ;
27
66f37509
AB
28static 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
f7b422b1
DH
33/*
34 * nfs_path - reconstruct the path given an arbitrary dentry
35 * @base - arbitrary string to prepend to the path
54ceac45 36 * @droot - pointer to root dentry for mountpoint
f7b422b1
DH
37 * @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 */
54ceac45
DH
47char *nfs_path(const char *base,
48 const struct dentry *droot,
49 const struct dentry *dentry,
f7b422b1
DH
50 char *buffer, ssize_t buflen)
51{
949854d0 52 char *end;
f7b422b1 53 int namelen;
949854d0 54 unsigned seq;
f7b422b1 55
949854d0
NP
56rename_retry:
57 end = buffer+buflen;
f7b422b1
DH
58 *--end = '\0';
59 buflen--;
949854d0
NP
60
61 seq = read_seqbegin(&rename_lock);
62 rcu_read_lock();
54ceac45 63 while (!IS_ROOT(dentry) && dentry != droot) {
f7b422b1
DH
64 namelen = dentry->d_name.len;
65 buflen -= namelen + 1;
66 if (buflen < 0)
ce510193 67 goto Elong_unlock;
f7b422b1
DH
68 end -= namelen;
69 memcpy(end, dentry->d_name.name, namelen);
70 *--end = '/';
71 dentry = dentry->d_parent;
72 }
949854d0
NP
73 rcu_read_unlock();
74 if (read_seqretry(&rename_lock, seq))
75 goto rename_retry;
0b75b35c
TM
76 if (*end != '/') {
77 if (--buflen < 0)
78 goto Elong;
79 *--end = '/';
80 }
f7b422b1
DH
81 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;
ce510193 91Elong_unlock:
949854d0
NP
92 rcu_read_unlock();
93 if (read_seqretry(&rename_lock, seq))
94 goto rename_retry;
f7b422b1
DH
95Elong:
96 return ERR_PTR(-ENAMETOOLONG);
97}
98
55a97593
TM
99/*
100 * nfs_follow_mountpoint - handle crossing a mountpoint on the server
101 * @dentry - dentry of mountpoint
102 * @nd - nameidata info
103 *
104 * When we encounter a mountpoint on the server, we want to set up
105 * a mountpoint on the client too, to prevent inode numbers from
106 * colliding, and to allow "df" to work properly.
107 * On NFSv4, we also want to allow for the fact that different
108 * filesystems may be migrated to different servers in a failover
109 * situation, and that different filesystems may want to use
110 * different security flavours.
111 */
112static void * nfs_follow_mountpoint(struct dentry *dentry, struct nameidata *nd)
113{
114 struct vfsmount *mnt;
115 struct nfs_server *server = NFS_SERVER(dentry->d_inode);
116 struct dentry *parent;
a4d7f168
TM
117 struct nfs_fh *fh = NULL;
118 struct nfs_fattr *fattr = NULL;
55a97593
TM
119 int err;
120
54ceac45
DH
121 dprintk("--> nfs_follow_mountpoint()\n");
122
44d5759d
DL
123 err = -ESTALE;
124 if (IS_ROOT(dentry))
125 goto out_err;
126
a4d7f168
TM
127 err = -ENOMEM;
128 fh = nfs_alloc_fhandle();
129 fattr = nfs_alloc_fattr();
130 if (fh == NULL || fattr == NULL)
131 goto out_err;
132
3110ff80 133 dprintk("%s: enter\n", __func__);
4ac91378
JB
134 dput(nd->path.dentry);
135 nd->path.dentry = dget(dentry);
54ceac45 136
55a97593 137 /* Look it up again */
4ac91378 138 parent = dget_parent(nd->path.dentry);
8fa5c000 139 err = server->nfs_client->rpc_ops->lookup(parent->d_inode,
4ac91378 140 &nd->path.dentry->d_name,
a4d7f168 141 fh, fattr);
55a97593
TM
142 dput(parent);
143 if (err != 0)
144 goto out_err;
145
a4d7f168 146 if (fattr->valid & NFS_ATTR_FATTR_V4_REFERRAL)
4ac91378 147 mnt = nfs_do_refmount(nd->path.mnt, nd->path.dentry);
6b97fd3d 148 else
a4d7f168
TM
149 mnt = nfs_do_submount(nd->path.mnt, nd->path.dentry, fh,
150 fattr);
55a97593
TM
151 err = PTR_ERR(mnt);
152 if (IS_ERR(mnt))
153 goto out_err;
154
155 mntget(mnt);
8d66bf54 156 err = do_add_mount(mnt, &nd->path, nd->path.mnt->mnt_flags|MNT_SHRINKABLE,
4ac91378 157 &nfs_automount_list);
55a97593
TM
158 if (err < 0) {
159 mntput(mnt);
160 if (err == -EBUSY)
161 goto out_follow;
162 goto out_err;
163 }
31f31db1 164 path_put(&nd->path);
4ac91378
JB
165 nd->path.mnt = mnt;
166 nd->path.dentry = dget(mnt->mnt_root);
51d8fa6a 167 schedule_delayed_work(&nfs_automount_task, nfs_mountpoint_expiry_timeout);
55a97593 168out:
a4d7f168
TM
169 nfs_free_fattr(fattr);
170 nfs_free_fhandle(fh);
3110ff80 171 dprintk("%s: done, returned %d\n", __func__, err);
54ceac45
DH
172
173 dprintk("<-- nfs_follow_mountpoint() = %d\n", err);
55a97593
TM
174 return ERR_PTR(err);
175out_err:
1d957f9b 176 path_put(&nd->path);
55a97593
TM
177 goto out;
178out_follow:
cc53ce53 179 err = follow_down(&nd->path, false);
55a97593
TM
180 goto out;
181}
182
92e1d5be 183const struct inode_operations nfs_mountpoint_inode_operations = {
55a97593
TM
184 .follow_link = nfs_follow_mountpoint,
185 .getattr = nfs_getattr,
186};
51d8fa6a 187
92e1d5be 188const struct inode_operations nfs_referral_inode_operations = {
6b97fd3d
MN
189 .follow_link = nfs_follow_mountpoint,
190};
191
65f27f38 192static void nfs_expire_automounts(struct work_struct *work)
51d8fa6a 193{
65f27f38 194 struct list_head *list = &nfs_automount_list;
51d8fa6a
TM
195
196 mark_mounts_for_expiry(list);
197 if (!list_empty(list))
198 schedule_delayed_work(&nfs_automount_task, nfs_mountpoint_expiry_timeout);
199}
200
201void nfs_release_automount_timer(void)
202{
3d39c691 203 if (list_empty(&nfs_automount_list))
560aef74 204 cancel_delayed_work(&nfs_automount_task);
51d8fa6a 205}
f7b422b1
DH
206
207/*
208 * Clone a mountpoint of the appropriate type
209 */
509de811
DH
210static struct vfsmount *nfs_do_clone_mount(struct nfs_server *server,
211 const char *devname,
f7b422b1
DH
212 struct nfs_clone_mount *mountdata)
213{
214#ifdef CONFIG_NFS_V4
fd08d7e9 215 struct vfsmount *mnt = ERR_PTR(-EINVAL);
40c55319 216 switch (server->nfs_client->rpc_ops->version) {
f7b422b1
DH
217 case 2:
218 case 3:
54ceac45 219 mnt = vfs_kern_mount(&nfs_xdev_fs_type, 0, devname, mountdata);
f7b422b1
DH
220 break;
221 case 4:
54ceac45 222 mnt = vfs_kern_mount(&nfs4_xdev_fs_type, 0, devname, mountdata);
f7b422b1
DH
223 }
224 return mnt;
225#else
54ceac45 226 return vfs_kern_mount(&nfs_xdev_fs_type, 0, devname, mountdata);
f7b422b1
DH
227#endif
228}
229
230/**
231 * nfs_do_submount - set up mountpoint when crossing a filesystem boundary
232 * @mnt_parent - mountpoint of parent directory
233 * @dentry - parent directory
234 * @fh - filehandle for new root dentry
235 * @fattr - attributes for new root inode
236 *
237 */
66f37509
AB
238static struct vfsmount *nfs_do_submount(const struct vfsmount *mnt_parent,
239 const struct dentry *dentry,
240 struct nfs_fh *fh,
241 struct nfs_fattr *fattr)
f7b422b1
DH
242{
243 struct nfs_clone_mount mountdata = {
244 .sb = mnt_parent->mnt_sb,
245 .dentry = dentry,
246 .fh = fh,
247 .fattr = fattr,
248 };
249 struct vfsmount *mnt = ERR_PTR(-ENOMEM);
250 char *page = (char *) __get_free_page(GFP_USER);
251 char *devname;
252
54ceac45
DH
253 dprintk("--> nfs_do_submount()\n");
254
3110ff80 255 dprintk("%s: submounting on %s/%s\n", __func__,
f7b422b1
DH
256 dentry->d_parent->d_name.name,
257 dentry->d_name.name);
258 if (page == NULL)
259 goto out;
260 devname = nfs_devname(mnt_parent, dentry, page, PAGE_SIZE);
261 mnt = (struct vfsmount *)devname;
262 if (IS_ERR(devname))
263 goto free_page;
264 mnt = nfs_do_clone_mount(NFS_SB(mnt_parent->mnt_sb), devname, &mountdata);
265free_page:
266 free_page((unsigned long)page);
267out:
3110ff80 268 dprintk("%s: done\n", __func__);
54ceac45
DH
269
270 dprintk("<-- nfs_do_submount() = %p\n", mnt);
f7b422b1
DH
271 return mnt;
272}
This page took 0.420265 seconds and 5 git commands to generate.