Committer: Michael Beasley <mike@snafu.setup>
[mikesnafu-overlay.git] / fs / nfs / namespace.c
blob607f6eb9cdb519f549ce19e590470d24e52ed90e
1 /*
2 * linux/fs/nfs/namespace.c
4 * Copyright (C) 2005 Trond Myklebust <Trond.Myklebust@netapp.com>
5 * - Modified by David Howells <dhowells@redhat.com>
7 * NFS namespace
8 */
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"
19 #define NFSDBG_FACILITY NFSDBG_VFS
21 static void nfs_expire_automounts(struct work_struct *work);
23 LIST_HEAD(nfs_automount_list);
24 static DECLARE_DELAYED_WORK(nfs_automount_task, nfs_expire_automounts);
25 int nfs_mountpoint_expiry_timeout = 500 * HZ;
27 static 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);
33 * nfs_path - reconstruct the path given an arbitrary dentry
34 * @base - arbitrary string to prepend to the path
35 * @droot - pointer to root dentry for mountpoint
36 * @dentry - pointer to dentry
37 * @buffer - result buffer
38 * @buflen - length of buffer
40 * Helper function for constructing the path from the
41 * root dentry to an arbitrary hashed dentry.
43 * This is mainly for use in figuring out the path on the
44 * server side when automounting on top of an existing partition.
46 char *nfs_path(const char *base,
47 const struct dentry *droot,
48 const struct dentry *dentry,
49 char *buffer, ssize_t buflen)
51 char *end = buffer+buflen;
52 int namelen;
54 *--end = '\0';
55 buflen--;
56 spin_lock(&dcache_lock);
57 while (!IS_ROOT(dentry) && dentry != droot) {
58 namelen = dentry->d_name.len;
59 buflen -= namelen + 1;
60 if (buflen < 0)
61 goto Elong_unlock;
62 end -= namelen;
63 memcpy(end, dentry->d_name.name, namelen);
64 *--end = '/';
65 dentry = dentry->d_parent;
67 spin_unlock(&dcache_lock);
68 namelen = strlen(base);
69 /* Strip off excess slashes in base string */
70 while (namelen > 0 && base[namelen - 1] == '/')
71 namelen--;
72 buflen -= namelen;
73 if (buflen < 0)
74 goto Elong;
75 end -= namelen;
76 memcpy(end, base, namelen);
77 return end;
78 Elong_unlock:
79 spin_unlock(&dcache_lock);
80 Elong:
81 return ERR_PTR(-ENAMETOOLONG);
85 * nfs_follow_mountpoint - handle crossing a mountpoint on the server
86 * @dentry - dentry of mountpoint
87 * @nd - nameidata info
89 * When we encounter a mountpoint on the server, we want to set up
90 * a mountpoint on the client too, to prevent inode numbers from
91 * colliding, and to allow "df" to work properly.
92 * On NFSv4, we also want to allow for the fact that different
93 * filesystems may be migrated to different servers in a failover
94 * situation, and that different filesystems may want to use
95 * different security flavours.
97 static void * nfs_follow_mountpoint(struct dentry *dentry, struct nameidata *nd)
99 struct vfsmount *mnt;
100 struct nfs_server *server = NFS_SERVER(dentry->d_inode);
101 struct dentry *parent;
102 struct nfs_fh fh;
103 struct nfs_fattr fattr;
104 int err;
106 dprintk("--> nfs_follow_mountpoint()\n");
108 BUG_ON(IS_ROOT(dentry));
109 dprintk("%s: enter\n", __FUNCTION__);
110 dput(nd->path.dentry);
111 nd->path.dentry = dget(dentry);
113 /* Look it up again */
114 parent = dget_parent(nd->path.dentry);
115 err = server->nfs_client->rpc_ops->lookup(parent->d_inode,
116 &nd->path.dentry->d_name,
117 &fh, &fattr);
118 dput(parent);
119 if (err != 0)
120 goto out_err;
122 if (fattr.valid & NFS_ATTR_FATTR_V4_REFERRAL)
123 mnt = nfs_do_refmount(nd->path.mnt, nd->path.dentry);
124 else
125 mnt = nfs_do_submount(nd->path.mnt, nd->path.dentry, &fh,
126 &fattr);
127 err = PTR_ERR(mnt);
128 if (IS_ERR(mnt))
129 goto out_err;
131 mntget(mnt);
132 err = do_add_mount(mnt, nd, nd->path.mnt->mnt_flags|MNT_SHRINKABLE,
133 &nfs_automount_list);
134 if (err < 0) {
135 mntput(mnt);
136 if (err == -EBUSY)
137 goto out_follow;
138 goto out_err;
140 mntput(nd->path.mnt);
141 dput(nd->path.dentry);
142 nd->path.mnt = mnt;
143 nd->path.dentry = dget(mnt->mnt_root);
144 schedule_delayed_work(&nfs_automount_task, nfs_mountpoint_expiry_timeout);
145 out:
146 dprintk("%s: done, returned %d\n", __FUNCTION__, err);
148 dprintk("<-- nfs_follow_mountpoint() = %d\n", err);
149 return ERR_PTR(err);
150 out_err:
151 path_put(&nd->path);
152 goto out;
153 out_follow:
154 while (d_mountpoint(nd->path.dentry) &&
155 follow_down(&nd->path.mnt, &nd->path.dentry))
157 err = 0;
158 goto out;
161 const struct inode_operations nfs_mountpoint_inode_operations = {
162 .follow_link = nfs_follow_mountpoint,
163 .getattr = nfs_getattr,
166 const struct inode_operations nfs_referral_inode_operations = {
167 .follow_link = nfs_follow_mountpoint,
170 static void nfs_expire_automounts(struct work_struct *work)
172 struct list_head *list = &nfs_automount_list;
174 mark_mounts_for_expiry(list);
175 if (!list_empty(list))
176 schedule_delayed_work(&nfs_automount_task, nfs_mountpoint_expiry_timeout);
179 void nfs_release_automount_timer(void)
181 if (list_empty(&nfs_automount_list))
182 cancel_delayed_work(&nfs_automount_task);
186 * Clone a mountpoint of the appropriate type
188 static struct vfsmount *nfs_do_clone_mount(struct nfs_server *server,
189 const char *devname,
190 struct nfs_clone_mount *mountdata)
192 #ifdef CONFIG_NFS_V4
193 struct vfsmount *mnt = NULL;
194 switch (server->nfs_client->rpc_ops->version) {
195 case 2:
196 case 3:
197 mnt = vfs_kern_mount(&nfs_xdev_fs_type, 0, devname, mountdata);
198 break;
199 case 4:
200 mnt = vfs_kern_mount(&nfs4_xdev_fs_type, 0, devname, mountdata);
202 return mnt;
203 #else
204 return vfs_kern_mount(&nfs_xdev_fs_type, 0, devname, mountdata);
205 #endif
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
216 static 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)
221 struct nfs_clone_mount mountdata = {
222 .sb = mnt_parent->mnt_sb,
223 .dentry = dentry,
224 .fh = fh,
225 .fattr = fattr,
227 struct vfsmount *mnt = ERR_PTR(-ENOMEM);
228 char *page = (char *) __get_free_page(GFP_USER);
229 char *devname;
231 dprintk("--> nfs_do_submount()\n");
233 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);
243 free_page:
244 free_page((unsigned long)page);
245 out:
246 dprintk("%s: done\n", __FUNCTION__);
248 dprintk("<-- nfs_do_submount() = %p\n", mnt);
249 return mnt;