2 * Copyright (c) 2002 Red Hat, Inc. All rights reserved.
4 * This software may be freely redistributed under the terms of the
5 * GNU General Public License.
7 * You should have received a copy of the GNU General Public License
8 * along with this program; if not, write to the Free Software
9 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
11 * Authors: David Woodhouse <dwmw2@infradead.org>
12 * David Howells <dhowells@redhat.com>
16 #include <linux/kernel.h>
17 #include <linux/module.h>
18 #include <linux/init.h>
19 #include <linux/slab.h>
21 #include <linux/pagemap.h>
22 #include <linux/sched.h>
25 struct afs_iget_data {
27 struct afs_volume *volume; /* volume on which resides */
31 * map the AFS file status to the inode member variables
33 static int afs_inode_map_status(struct afs_vnode *vnode, struct key *key)
35 struct inode *inode = AFS_VNODE_TO_I(vnode);
37 _debug("FS: ft=%d lk=%d sz=%llu ver=%Lu mod=%hu",
40 (unsigned long long) vnode->status.size,
41 vnode->status.data_version,
44 switch (vnode->status.type) {
46 inode->i_mode = S_IFREG | vnode->status.mode;
47 inode->i_op = &afs_file_inode_operations;
48 inode->i_fop = &afs_file_operations;
51 inode->i_mode = S_IFDIR | vnode->status.mode;
52 inode->i_op = &afs_dir_inode_operations;
53 inode->i_fop = &afs_dir_file_operations;
55 case AFS_FTYPE_SYMLINK:
56 inode->i_mode = S_IFLNK | vnode->status.mode;
57 inode->i_op = &page_symlink_inode_operations;
60 printk("kAFS: AFS vnode with undefined type\n");
64 #ifdef CONFIG_AFS_FSCACHE
65 if (vnode->status.size != inode->i_size)
66 fscache_attr_changed(vnode->cache);
69 inode->i_nlink = vnode->status.nlink;
70 inode->i_uid = vnode->status.owner;
72 inode->i_size = vnode->status.size;
73 inode->i_ctime.tv_sec = vnode->status.mtime_server;
74 inode->i_ctime.tv_nsec = 0;
75 inode->i_atime = inode->i_mtime = inode->i_ctime;
77 inode->i_version = vnode->fid.unique;
78 inode->i_mapping->a_ops = &afs_fs_aops;
80 /* check to see whether a symbolic link is really a mountpoint */
81 if (vnode->status.type == AFS_FTYPE_SYMLINK) {
82 afs_mntpt_check_symlink(vnode, key);
84 if (test_bit(AFS_VNODE_MOUNTPOINT, &vnode->flags)) {
85 inode->i_mode = S_IFDIR | vnode->status.mode;
86 inode->i_op = &afs_mntpt_inode_operations;
87 inode->i_fop = &afs_mntpt_file_operations;
97 static int afs_iget5_test(struct inode *inode, void *opaque)
99 struct afs_iget_data *data = opaque;
101 return inode->i_ino == data->fid.vnode &&
102 inode->i_version == data->fid.unique;
106 * iget5() inode initialiser
108 static int afs_iget5_set(struct inode *inode, void *opaque)
110 struct afs_iget_data *data = opaque;
111 struct afs_vnode *vnode = AFS_FS_I(inode);
113 inode->i_ino = data->fid.vnode;
114 inode->i_version = data->fid.unique;
115 vnode->fid = data->fid;
116 vnode->volume = data->volume;
124 struct inode *afs_iget(struct super_block *sb, struct key *key,
125 struct afs_fid *fid, struct afs_file_status *status,
126 struct afs_callback *cb)
128 struct afs_iget_data data = { .fid = *fid };
129 struct afs_super_info *as;
130 struct afs_vnode *vnode;
134 _enter(",{%x:%u.%u},,", fid->vid, fid->vnode, fid->unique);
137 data.volume = as->volume;
139 inode = iget5_locked(sb, fid->vnode, afs_iget5_test, afs_iget5_set,
142 _leave(" = -ENOMEM");
143 return ERR_PTR(-ENOMEM);
146 _debug("GOT INODE %p { vl=%x vn=%x, u=%x }",
147 inode, fid->vid, fid->vnode, fid->unique);
149 vnode = AFS_FS_I(inode);
151 /* deal with an existing inode */
152 if (!(inode->i_state & I_NEW)) {
153 _leave(" = %p", inode);
158 /* it's a remotely extant inode */
159 set_bit(AFS_VNODE_CB_BROKEN, &vnode->flags);
160 ret = afs_vnode_fetch_status(vnode, NULL, key);
164 /* it's an inode we just created */
165 memcpy(&vnode->status, status, sizeof(vnode->status));
168 /* it's a symlink we just created (the fileserver
169 * didn't give us a callback) */
170 vnode->cb_version = 0;
171 vnode->cb_expiry = 0;
173 vnode->cb_expires = get_seconds();
175 vnode->cb_version = cb->version;
176 vnode->cb_expiry = cb->expiry;
177 vnode->cb_type = cb->type;
178 vnode->cb_expires = vnode->cb_expiry + get_seconds();
182 /* set up caching before mapping the status, as map-status reads the
183 * first page of symlinks to see if they're really mountpoints */
184 inode->i_size = vnode->status.size;
185 #ifdef CONFIG_AFS_FSCACHE
186 vnode->cache = fscache_acquire_cookie(vnode->volume->cache,
187 &afs_vnode_cache_index_def,
191 ret = afs_inode_map_status(vnode, key);
196 clear_bit(AFS_VNODE_UNSET, &vnode->flags);
197 inode->i_flags |= S_NOATIME;
198 unlock_new_inode(inode);
199 _leave(" = %p [CB { v=%u t=%u }]", inode, vnode->cb_version, vnode->cb_type);
204 #ifdef CONFIG_AFS_FSCACHE
205 fscache_relinquish_cookie(vnode->cache, 0);
209 _leave(" = %d [bad]", ret);
214 * mark the data attached to an inode as obsolete due to a write on the server
215 * - might also want to ditch all the outstanding writes and dirty pages
217 void afs_zap_data(struct afs_vnode *vnode)
219 _enter("{%x:%u}", vnode->fid.vid, vnode->fid.vnode);
221 /* nuke all the non-dirty pages that aren't locked, mapped or being
222 * written back in a regular file and completely discard the pages in a
223 * directory or symlink */
224 if (S_ISREG(vnode->vfs_inode.i_mode))
225 invalidate_remote_inode(&vnode->vfs_inode);
227 invalidate_inode_pages2(vnode->vfs_inode.i_mapping);
231 * validate a vnode/inode
232 * - there are several things we need to check
233 * - parent dir data changes (rm, rmdir, rename, mkdir, create, link,
235 * - parent dir metadata changed (security changes)
236 * - dentry data changed (write, truncate)
237 * - dentry metadata changed (security changes)
239 int afs_validate(struct afs_vnode *vnode, struct key *key)
243 _enter("{v={%x:%u} fl=%lx},%x",
244 vnode->fid.vid, vnode->fid.vnode, vnode->flags,
247 if (vnode->cb_promised &&
248 !test_bit(AFS_VNODE_CB_BROKEN, &vnode->flags) &&
249 !test_bit(AFS_VNODE_MODIFIED, &vnode->flags) &&
250 !test_bit(AFS_VNODE_ZAP_DATA, &vnode->flags)) {
251 if (vnode->cb_expires < get_seconds() + 10) {
252 _debug("callback expired");
253 set_bit(AFS_VNODE_CB_BROKEN, &vnode->flags);
259 if (test_bit(AFS_VNODE_DELETED, &vnode->flags))
262 mutex_lock(&vnode->validate_lock);
264 /* if the promise has expired, we need to check the server again to get
265 * a new promise - note that if the (parent) directory's metadata was
266 * changed then the security may be different and we may no longer have
268 if (!vnode->cb_promised ||
269 test_bit(AFS_VNODE_CB_BROKEN, &vnode->flags)) {
270 _debug("not promised");
271 ret = afs_vnode_fetch_status(vnode, NULL, key);
274 _debug("new promise [fl=%lx]", vnode->flags);
277 if (test_bit(AFS_VNODE_DELETED, &vnode->flags)) {
278 _debug("file already deleted");
283 /* if the vnode's data version number changed then its contents are
285 if (test_and_clear_bit(AFS_VNODE_ZAP_DATA, &vnode->flags))
288 clear_bit(AFS_VNODE_MODIFIED, &vnode->flags);
289 mutex_unlock(&vnode->validate_lock);
295 mutex_unlock(&vnode->validate_lock);
296 _leave(" = %d", ret);
301 * read the attributes of an inode
303 int afs_getattr(struct vfsmount *mnt, struct dentry *dentry,
308 inode = dentry->d_inode;
310 _enter("{ ino=%lu v=%llu }", inode->i_ino,
311 (unsigned long long)inode->i_version);
313 generic_fillattr(inode, stat);
320 void afs_clear_inode(struct inode *inode)
322 struct afs_permits *permits;
323 struct afs_vnode *vnode;
325 vnode = AFS_FS_I(inode);
327 _enter("{%x:%u.%d} v=%u x=%u t=%u }",
335 _debug("CLEAR INODE %p", inode);
337 ASSERTCMP(inode->i_ino, ==, vnode->fid.vnode);
339 afs_give_up_callback(vnode);
342 spin_lock(&vnode->server->fs_lock);
343 rb_erase(&vnode->server_rb, &vnode->server->fs_vnodes);
344 spin_unlock(&vnode->server->fs_lock);
345 afs_put_server(vnode->server);
346 vnode->server = NULL;
349 ASSERT(list_empty(&vnode->writebacks));
350 ASSERT(!vnode->cb_promised);
352 #ifdef CONFIG_AFS_FSCACHE
353 fscache_relinquish_cookie(vnode->cache, 0);
357 mutex_lock(&vnode->permits_lock);
358 permits = vnode->permits;
359 rcu_assign_pointer(vnode->permits, NULL);
360 mutex_unlock(&vnode->permits_lock);
362 call_rcu(&permits->rcu, afs_zap_permits);
368 * set the attributes of an inode
370 int afs_setattr(struct dentry *dentry, struct iattr *attr)
372 struct afs_vnode *vnode = AFS_FS_I(dentry->d_inode);
376 _enter("{%x:%u},{n=%s},%x",
377 vnode->fid.vid, vnode->fid.vnode, dentry->d_name.name,
380 if (!(attr->ia_valid & (ATTR_SIZE | ATTR_MODE | ATTR_UID | ATTR_GID |
382 _leave(" = 0 [unsupported]");
386 /* flush any dirty data outstanding on a regular file */
387 if (S_ISREG(vnode->vfs_inode.i_mode)) {
388 filemap_write_and_wait(vnode->vfs_inode.i_mapping);
389 afs_writeback_all(vnode);
392 if (attr->ia_valid & ATTR_FILE) {
393 key = attr->ia_file->private_data;
395 key = afs_request_key(vnode->volume->cell);
402 ret = afs_vnode_setattr(vnode, key, attr);
403 if (!(attr->ia_valid & ATTR_FILE))
407 _leave(" = %d", ret);