[PARISC] Update bitops from parisc tree
[linux-2.6.22.y-op.git] / fs / afs / mntpt.c
blob31ee06590de549d833be410c742da32240187d22
1 /* mntpt.c: mountpoint management
3 * Copyright (C) 2002 Red Hat, Inc. All Rights Reserved.
4 * Written by David Howells (dhowells@redhat.com)
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
12 #include <linux/kernel.h>
13 #include <linux/module.h>
14 #include <linux/init.h>
15 #include <linux/sched.h>
16 #include <linux/slab.h>
17 #include <linux/fs.h>
18 #include <linux/pagemap.h>
19 #include <linux/mount.h>
20 #include <linux/namei.h>
21 #include <linux/namespace.h>
22 #include "super.h"
23 #include "cell.h"
24 #include "volume.h"
25 #include "vnode.h"
26 #include "internal.h"
29 static struct dentry *afs_mntpt_lookup(struct inode *dir,
30 struct dentry *dentry,
31 struct nameidata *nd);
32 static int afs_mntpt_open(struct inode *inode, struct file *file);
33 static void *afs_mntpt_follow_link(struct dentry *dentry, struct nameidata *nd);
35 struct file_operations afs_mntpt_file_operations = {
36 .open = afs_mntpt_open,
39 struct inode_operations afs_mntpt_inode_operations = {
40 .lookup = afs_mntpt_lookup,
41 .follow_link = afs_mntpt_follow_link,
42 .readlink = page_readlink,
43 .getattr = afs_inode_getattr,
46 static LIST_HEAD(afs_vfsmounts);
48 static void afs_mntpt_expiry_timed_out(struct afs_timer *timer);
50 struct afs_timer_ops afs_mntpt_expiry_timer_ops = {
51 .timed_out = afs_mntpt_expiry_timed_out,
54 struct afs_timer afs_mntpt_expiry_timer;
56 unsigned long afs_mntpt_expiry_timeout = 20;
58 /*****************************************************************************/
60 * check a symbolic link to see whether it actually encodes a mountpoint
61 * - sets the AFS_VNODE_MOUNTPOINT flag on the vnode appropriately
63 int afs_mntpt_check_symlink(struct afs_vnode *vnode)
65 struct page *page;
66 filler_t *filler;
67 size_t size;
68 char *buf;
69 int ret;
71 _enter("{%u,%u}", vnode->fid.vnode, vnode->fid.unique);
73 /* read the contents of the symlink into the pagecache */
74 filler = (filler_t *) AFS_VNODE_TO_I(vnode)->i_mapping->a_ops->readpage;
76 page = read_cache_page(AFS_VNODE_TO_I(vnode)->i_mapping, 0,
77 filler, NULL);
78 if (IS_ERR(page)) {
79 ret = PTR_ERR(page);
80 goto out;
83 ret = -EIO;
84 wait_on_page_locked(page);
85 buf = kmap(page);
86 if (!PageUptodate(page))
87 goto out_free;
88 if (PageError(page))
89 goto out_free;
91 /* examine the symlink's contents */
92 size = vnode->status.size;
93 _debug("symlink to %*.*s", size, (int) size, buf);
95 if (size > 2 &&
96 (buf[0] == '%' || buf[0] == '#') &&
97 buf[size - 1] == '.'
98 ) {
99 _debug("symlink is a mountpoint");
100 spin_lock(&vnode->lock);
101 vnode->flags |= AFS_VNODE_MOUNTPOINT;
102 spin_unlock(&vnode->lock);
105 ret = 0;
107 out_free:
108 kunmap(page);
109 page_cache_release(page);
110 out:
111 _leave(" = %d", ret);
112 return ret;
114 } /* end afs_mntpt_check_symlink() */
116 /*****************************************************************************/
118 * no valid lookup procedure on this sort of dir
120 static struct dentry *afs_mntpt_lookup(struct inode *dir,
121 struct dentry *dentry,
122 struct nameidata *nd)
124 kenter("%p,%p{%p{%s},%s}",
125 dir,
126 dentry,
127 dentry->d_parent,
128 dentry->d_parent ?
129 dentry->d_parent->d_name.name : (const unsigned char *) "",
130 dentry->d_name.name);
132 return ERR_PTR(-EREMOTE);
133 } /* end afs_mntpt_lookup() */
135 /*****************************************************************************/
137 * no valid open procedure on this sort of dir
139 static int afs_mntpt_open(struct inode *inode, struct file *file)
141 kenter("%p,%p{%p{%s},%s}",
142 inode, file,
143 file->f_dentry->d_parent,
144 file->f_dentry->d_parent ?
145 file->f_dentry->d_parent->d_name.name :
146 (const unsigned char *) "",
147 file->f_dentry->d_name.name);
149 return -EREMOTE;
150 } /* end afs_mntpt_open() */
152 /*****************************************************************************/
154 * create a vfsmount to be automounted
156 static struct vfsmount *afs_mntpt_do_automount(struct dentry *mntpt)
158 struct afs_super_info *super;
159 struct vfsmount *mnt;
160 struct page *page = NULL;
161 size_t size;
162 char *buf, *devname = NULL, *options = NULL;
163 filler_t *filler;
164 int ret;
166 kenter("{%s}", mntpt->d_name.name);
168 BUG_ON(!mntpt->d_inode);
170 ret = -EINVAL;
171 size = mntpt->d_inode->i_size;
172 if (size > PAGE_SIZE - 1)
173 goto error;
175 ret = -ENOMEM;
176 devname = (char *) get_zeroed_page(GFP_KERNEL);
177 if (!devname)
178 goto error;
180 options = (char *) get_zeroed_page(GFP_KERNEL);
181 if (!options)
182 goto error;
184 /* read the contents of the AFS special symlink */
185 filler = (filler_t *)mntpt->d_inode->i_mapping->a_ops->readpage;
187 page = read_cache_page(mntpt->d_inode->i_mapping, 0, filler, NULL);
188 if (IS_ERR(page)) {
189 ret = PTR_ERR(page);
190 goto error;
193 ret = -EIO;
194 wait_on_page_locked(page);
195 if (!PageUptodate(page) || PageError(page))
196 goto error;
198 buf = kmap(page);
199 memcpy(devname, buf, size);
200 kunmap(page);
201 page_cache_release(page);
202 page = NULL;
204 /* work out what options we want */
205 super = AFS_FS_S(mntpt->d_sb);
206 memcpy(options, "cell=", 5);
207 strcpy(options + 5, super->volume->cell->name);
208 if (super->volume->type == AFSVL_RWVOL)
209 strcat(options, ",rwpath");
211 /* try and do the mount */
212 kdebug("--- attempting mount %s -o %s ---", devname, options);
213 mnt = do_kern_mount("afs", 0, devname, options);
214 kdebug("--- mount result %p ---", mnt);
216 free_page((unsigned long) devname);
217 free_page((unsigned long) options);
218 kleave(" = %p", mnt);
219 return mnt;
221 error:
222 if (page)
223 page_cache_release(page);
224 if (devname)
225 free_page((unsigned long) devname);
226 if (options)
227 free_page((unsigned long) options);
228 kleave(" = %d", ret);
229 return ERR_PTR(ret);
230 } /* end afs_mntpt_do_automount() */
232 /*****************************************************************************/
234 * follow a link from a mountpoint directory, thus causing it to be mounted
236 static void *afs_mntpt_follow_link(struct dentry *dentry, struct nameidata *nd)
238 struct vfsmount *newmnt;
239 struct dentry *old_dentry;
240 int err;
242 kenter("%p{%s},{%s:%p{%s}}",
243 dentry,
244 dentry->d_name.name,
245 nd->mnt->mnt_devname,
246 dentry,
247 nd->dentry->d_name.name);
249 newmnt = afs_mntpt_do_automount(dentry);
250 if (IS_ERR(newmnt)) {
251 path_release(nd);
252 return (void *)newmnt;
255 old_dentry = nd->dentry;
256 nd->dentry = dentry;
257 err = do_add_mount(newmnt, nd, 0, &afs_vfsmounts);
258 nd->dentry = old_dentry;
260 path_release(nd);
262 if (!err) {
263 mntget(newmnt);
264 nd->mnt = newmnt;
265 dget(newmnt->mnt_root);
266 nd->dentry = newmnt->mnt_root;
269 kleave(" = %d", err);
270 return ERR_PTR(err);
271 } /* end afs_mntpt_follow_link() */
273 /*****************************************************************************/
275 * handle mountpoint expiry timer going off
277 static void afs_mntpt_expiry_timed_out(struct afs_timer *timer)
279 kenter("");
281 mark_mounts_for_expiry(&afs_vfsmounts);
283 afs_kafstimod_add_timer(&afs_mntpt_expiry_timer,
284 afs_mntpt_expiry_timeout * HZ);
286 kleave("");
287 } /* end afs_mntpt_expiry_timed_out() */