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>
20 #include <linux/pagemap.h>
21 #include <linux/sched.h>
22 #include <linux/mount.h>
23 #include <linux/namei.h>
24 #include <linux/iversion.h>
27 static const struct inode_operations afs_symlink_inode_operations
= {
28 .get_link
= page_get_link
,
29 .listxattr
= afs_listxattr
,
33 * map the AFS file status to the inode member variables
35 static int afs_inode_map_status(struct afs_vnode
*vnode
, struct key
*key
)
37 struct inode
*inode
= AFS_VNODE_TO_I(vnode
);
40 _debug("FS: ft=%d lk=%d sz=%llu ver=%Lu mod=%hu",
43 (unsigned long long) vnode
->status
.size
,
44 vnode
->status
.data_version
,
47 read_seqlock_excl(&vnode
->cb_lock
);
49 switch (vnode
->status
.type
) {
51 inode
->i_mode
= S_IFREG
| vnode
->status
.mode
;
52 inode
->i_op
= &afs_file_inode_operations
;
53 inode
->i_fop
= &afs_file_operations
;
56 inode
->i_mode
= S_IFDIR
| vnode
->status
.mode
;
57 inode
->i_op
= &afs_dir_inode_operations
;
58 inode
->i_fop
= &afs_dir_file_operations
;
60 case AFS_FTYPE_SYMLINK
:
61 /* Symlinks with a mode of 0644 are actually mountpoints. */
62 if ((vnode
->status
.mode
& 0777) == 0644) {
63 inode
->i_flags
|= S_AUTOMOUNT
;
65 set_bit(AFS_VNODE_MOUNTPOINT
, &vnode
->flags
);
67 inode
->i_mode
= S_IFDIR
| 0555;
68 inode
->i_op
= &afs_mntpt_inode_operations
;
69 inode
->i_fop
= &afs_mntpt_file_operations
;
71 inode
->i_mode
= S_IFLNK
| vnode
->status
.mode
;
72 inode
->i_op
= &afs_symlink_inode_operations
;
74 inode_nohighmem(inode
);
77 printk("kAFS: AFS vnode with undefined type\n");
78 read_sequnlock_excl(&vnode
->cb_lock
);
82 changed
= (vnode
->status
.size
!= inode
->i_size
);
84 set_nlink(inode
, vnode
->status
.nlink
);
85 inode
->i_uid
= vnode
->status
.owner
;
86 inode
->i_gid
= vnode
->status
.group
;
87 inode
->i_size
= vnode
->status
.size
;
88 inode
->i_ctime
.tv_sec
= vnode
->status
.mtime_client
;
89 inode
->i_ctime
.tv_nsec
= 0;
90 inode
->i_atime
= inode
->i_mtime
= inode
->i_ctime
;
92 inode
->i_generation
= vnode
->fid
.unique
;
93 inode_set_iversion_raw(inode
, vnode
->status
.data_version
);
94 inode
->i_mapping
->a_ops
= &afs_fs_aops
;
96 read_sequnlock_excl(&vnode
->cb_lock
);
98 #ifdef CONFIG_AFS_FSCACHE
100 fscache_attr_changed(vnode
->cache
);
106 * Fetch file status from the volume.
108 int afs_fetch_status(struct afs_vnode
*vnode
, struct key
*key
)
110 struct afs_fs_cursor fc
;
113 _enter("%s,{%x:%u.%u,S=%lx}",
115 vnode
->fid
.vid
, vnode
->fid
.vnode
, vnode
->fid
.unique
,
119 if (afs_begin_vnode_operation(&fc
, vnode
, key
)) {
120 while (afs_select_fileserver(&fc
)) {
121 fc
.cb_break
= vnode
->cb_break
+ vnode
->cb_s_break
;
122 afs_fs_fetch_file_status(&fc
, NULL
);
125 afs_check_for_remote_deletion(&fc
, fc
.vnode
);
126 afs_vnode_commit_status(&fc
, vnode
, fc
.cb_break
);
127 ret
= afs_end_vnode_operation(&fc
);
130 _leave(" = %d", ret
);
137 int afs_iget5_test(struct inode
*inode
, void *opaque
)
139 struct afs_iget_data
*data
= opaque
;
141 return inode
->i_ino
== data
->fid
.vnode
&&
142 inode
->i_generation
== data
->fid
.unique
;
146 * iget5() comparator for inode created by autocell operations
148 * These pseudo inodes don't match anything.
150 static int afs_iget5_pseudo_dir_test(struct inode
*inode
, void *opaque
)
156 * iget5() inode initialiser
158 static int afs_iget5_set(struct inode
*inode
, void *opaque
)
160 struct afs_iget_data
*data
= opaque
;
161 struct afs_vnode
*vnode
= AFS_FS_I(inode
);
163 inode
->i_ino
= data
->fid
.vnode
;
164 inode
->i_generation
= data
->fid
.unique
;
165 vnode
->fid
= data
->fid
;
166 vnode
->volume
= data
->volume
;
172 * Create an inode for a dynamic root directory or an autocell dynamic
175 struct inode
*afs_iget_pseudo_dir(struct super_block
*sb
, bool root
)
177 struct afs_iget_data data
;
178 struct afs_super_info
*as
;
179 struct afs_vnode
*vnode
;
181 static atomic_t afs_autocell_ino
;
187 data
.volume
= as
->volume
;
188 data
.fid
.vid
= as
->volume
->vid
;
194 data
.fid
.vnode
= atomic_inc_return(&afs_autocell_ino
);
198 inode
= iget5_locked(sb
, data
.fid
.vnode
,
199 afs_iget5_pseudo_dir_test
, afs_iget5_set
,
202 _leave(" = -ENOMEM");
203 return ERR_PTR(-ENOMEM
);
206 _debug("GOT INODE %p { ino=%lu, vl=%x, vn=%x, u=%x }",
207 inode
, inode
->i_ino
, data
.fid
.vid
, data
.fid
.vnode
,
210 vnode
= AFS_FS_I(inode
);
212 /* there shouldn't be an existing inode */
213 BUG_ON(!(inode
->i_state
& I_NEW
));
216 inode
->i_mode
= S_IFDIR
| S_IRUGO
| S_IXUGO
;
218 inode
->i_op
= &afs_dynroot_inode_operations
;
219 inode
->i_fop
= &afs_dynroot_file_operations
;
221 inode
->i_op
= &afs_autocell_inode_operations
;
224 inode
->i_uid
= GLOBAL_ROOT_UID
;
225 inode
->i_gid
= GLOBAL_ROOT_GID
;
226 inode
->i_ctime
.tv_sec
= get_seconds();
227 inode
->i_ctime
.tv_nsec
= 0;
228 inode
->i_atime
= inode
->i_mtime
= inode
->i_ctime
;
230 inode_set_iversion_raw(inode
, 0);
231 inode
->i_generation
= 0;
233 set_bit(AFS_VNODE_PSEUDODIR
, &vnode
->flags
);
235 set_bit(AFS_VNODE_MOUNTPOINT
, &vnode
->flags
);
236 inode
->i_flags
|= S_AUTOMOUNT
;
239 inode
->i_flags
|= S_NOATIME
;
240 unlock_new_inode(inode
);
241 _leave(" = %p", inode
);
248 struct inode
*afs_iget(struct super_block
*sb
, struct key
*key
,
249 struct afs_fid
*fid
, struct afs_file_status
*status
,
250 struct afs_callback
*cb
, struct afs_cb_interest
*cbi
)
252 struct afs_iget_data data
= { .fid
= *fid
};
253 struct afs_super_info
*as
;
254 struct afs_vnode
*vnode
;
258 _enter(",{%x:%u.%u},,", fid
->vid
, fid
->vnode
, fid
->unique
);
261 data
.volume
= as
->volume
;
263 inode
= iget5_locked(sb
, fid
->vnode
, afs_iget5_test
, afs_iget5_set
,
266 _leave(" = -ENOMEM");
267 return ERR_PTR(-ENOMEM
);
270 _debug("GOT INODE %p { vl=%x vn=%x, u=%x }",
271 inode
, fid
->vid
, fid
->vnode
, fid
->unique
);
273 vnode
= AFS_FS_I(inode
);
275 /* deal with an existing inode */
276 if (!(inode
->i_state
& I_NEW
)) {
277 _leave(" = %p", inode
);
282 /* it's a remotely extant inode */
283 ret
= afs_fetch_status(vnode
, key
);
287 /* it's an inode we just created */
288 memcpy(&vnode
->status
, status
, sizeof(vnode
->status
));
291 /* it's a symlink we just created (the fileserver
292 * didn't give us a callback) */
293 vnode
->cb_version
= 0;
295 vnode
->cb_expires_at
= 0;
297 vnode
->cb_version
= cb
->version
;
298 vnode
->cb_type
= cb
->type
;
299 vnode
->cb_expires_at
= cb
->expiry
;
300 vnode
->cb_interest
= afs_get_cb_interest(cbi
);
301 set_bit(AFS_VNODE_CB_PROMISED
, &vnode
->flags
);
304 vnode
->cb_expires_at
+= ktime_get_real_seconds();
307 /* set up caching before mapping the status, as map-status reads the
308 * first page of symlinks to see if they're really mountpoints */
309 inode
->i_size
= vnode
->status
.size
;
310 #ifdef CONFIG_AFS_FSCACHE
311 vnode
->cache
= fscache_acquire_cookie(vnode
->volume
->cache
,
312 &afs_vnode_cache_index_def
,
316 ret
= afs_inode_map_status(vnode
, key
);
321 clear_bit(AFS_VNODE_UNSET
, &vnode
->flags
);
322 inode
->i_flags
|= S_NOATIME
;
323 unlock_new_inode(inode
);
324 _leave(" = %p [CB { v=%u t=%u }]", inode
, vnode
->cb_version
, vnode
->cb_type
);
329 #ifdef CONFIG_AFS_FSCACHE
330 fscache_relinquish_cookie(vnode
->cache
, 0);
334 _leave(" = %d [bad]", ret
);
339 * mark the data attached to an inode as obsolete due to a write on the server
340 * - might also want to ditch all the outstanding writes and dirty pages
342 void afs_zap_data(struct afs_vnode
*vnode
)
344 _enter("{%x:%u}", vnode
->fid
.vid
, vnode
->fid
.vnode
);
346 /* nuke all the non-dirty pages that aren't locked, mapped or being
347 * written back in a regular file and completely discard the pages in a
348 * directory or symlink */
349 if (S_ISREG(vnode
->vfs_inode
.i_mode
))
350 invalidate_remote_inode(&vnode
->vfs_inode
);
352 invalidate_inode_pages2(vnode
->vfs_inode
.i_mapping
);
356 * validate a vnode/inode
357 * - there are several things we need to check
358 * - parent dir data changes (rm, rmdir, rename, mkdir, create, link,
360 * - parent dir metadata changed (security changes)
361 * - dentry data changed (write, truncate)
362 * - dentry metadata changed (security changes)
364 int afs_validate(struct afs_vnode
*vnode
, struct key
*key
)
366 time64_t now
= ktime_get_real_seconds();
370 _enter("{v={%x:%u} fl=%lx},%x",
371 vnode
->fid
.vid
, vnode
->fid
.vnode
, vnode
->flags
,
374 /* Quickly check the callback state. Ideally, we'd use read_seqbegin
375 * here, but we have no way to pass the net namespace to the RCU
376 * cleanup for the server record.
378 read_seqlock_excl(&vnode
->cb_lock
);
380 if (test_bit(AFS_VNODE_CB_PROMISED
, &vnode
->flags
)) {
381 if (vnode
->cb_s_break
!= vnode
->cb_interest
->server
->cb_s_break
) {
382 vnode
->cb_s_break
= vnode
->cb_interest
->server
->cb_s_break
;
383 } else if (!test_bit(AFS_VNODE_DIR_MODIFIED
, &vnode
->flags
) &&
384 !test_bit(AFS_VNODE_ZAP_DATA
, &vnode
->flags
) &&
385 vnode
->cb_expires_at
- 10 > now
) {
388 } else if (test_bit(AFS_VNODE_DELETED
, &vnode
->flags
)) {
392 read_sequnlock_excl(&vnode
->cb_lock
);
394 if (test_bit(AFS_VNODE_DELETED
, &vnode
->flags
))
395 clear_nlink(&vnode
->vfs_inode
);
400 mutex_lock(&vnode
->validate_lock
);
402 /* if the promise has expired, we need to check the server again to get
403 * a new promise - note that if the (parent) directory's metadata was
404 * changed then the security may be different and we may no longer have
406 if (!test_bit(AFS_VNODE_CB_PROMISED
, &vnode
->flags
)) {
407 _debug("not promised");
408 ret
= afs_fetch_status(vnode
, key
);
410 if (ret
== -ENOENT
) {
411 set_bit(AFS_VNODE_DELETED
, &vnode
->flags
);
416 _debug("new promise [fl=%lx]", vnode
->flags
);
419 if (test_bit(AFS_VNODE_DELETED
, &vnode
->flags
)) {
420 _debug("file already deleted");
425 /* if the vnode's data version number changed then its contents are
427 if (test_and_clear_bit(AFS_VNODE_ZAP_DATA
, &vnode
->flags
))
430 clear_bit(AFS_VNODE_DIR_MODIFIED
, &vnode
->flags
);
431 mutex_unlock(&vnode
->validate_lock
);
437 mutex_unlock(&vnode
->validate_lock
);
438 _leave(" = %d", ret
);
443 * read the attributes of an inode
445 int afs_getattr(const struct path
*path
, struct kstat
*stat
,
446 u32 request_mask
, unsigned int query_flags
)
448 struct inode
*inode
= d_inode(path
->dentry
);
449 struct afs_vnode
*vnode
= AFS_FS_I(inode
);
452 _enter("{ ino=%lu v=%u }", inode
->i_ino
, inode
->i_generation
);
455 read_seqbegin_or_lock(&vnode
->cb_lock
, &seq
);
456 generic_fillattr(inode
, stat
);
457 } while (need_seqretry(&vnode
->cb_lock
, seq
));
459 done_seqretry(&vnode
->cb_lock
, seq
);
464 * discard an AFS inode
466 int afs_drop_inode(struct inode
*inode
)
470 if (test_bit(AFS_VNODE_PSEUDODIR
, &AFS_FS_I(inode
)->flags
))
471 return generic_delete_inode(inode
);
473 return generic_drop_inode(inode
);
479 void afs_evict_inode(struct inode
*inode
)
481 struct afs_vnode
*vnode
;
483 vnode
= AFS_FS_I(inode
);
490 _debug("CLEAR INODE %p", inode
);
492 ASSERTCMP(inode
->i_ino
, ==, vnode
->fid
.vnode
);
494 truncate_inode_pages_final(&inode
->i_data
);
497 if (vnode
->cb_interest
) {
498 afs_put_cb_interest(afs_i2net(inode
), vnode
->cb_interest
);
499 vnode
->cb_interest
= NULL
;
502 while (!list_empty(&vnode
->wb_keys
)) {
503 struct afs_wb_key
*wbk
= list_entry(vnode
->wb_keys
.next
,
504 struct afs_wb_key
, vnode_link
);
505 list_del(&wbk
->vnode_link
);
509 #ifdef CONFIG_AFS_FSCACHE
510 fscache_relinquish_cookie(vnode
->cache
, 0);
514 afs_put_permits(vnode
->permit_cache
);
519 * set the attributes of an inode
521 int afs_setattr(struct dentry
*dentry
, struct iattr
*attr
)
523 struct afs_fs_cursor fc
;
524 struct afs_vnode
*vnode
= AFS_FS_I(d_inode(dentry
));
528 _enter("{%x:%u},{n=%pd},%x",
529 vnode
->fid
.vid
, vnode
->fid
.vnode
, dentry
,
532 if (!(attr
->ia_valid
& (ATTR_SIZE
| ATTR_MODE
| ATTR_UID
| ATTR_GID
|
534 _leave(" = 0 [unsupported]");
538 /* flush any dirty data outstanding on a regular file */
539 if (S_ISREG(vnode
->vfs_inode
.i_mode
))
540 filemap_write_and_wait(vnode
->vfs_inode
.i_mapping
);
542 if (attr
->ia_valid
& ATTR_FILE
) {
543 key
= afs_file_key(attr
->ia_file
);
545 key
= afs_request_key(vnode
->volume
->cell
);
553 if (afs_begin_vnode_operation(&fc
, vnode
, key
)) {
554 while (afs_select_fileserver(&fc
)) {
555 fc
.cb_break
= vnode
->cb_break
+ vnode
->cb_s_break
;
556 afs_fs_setattr(&fc
, attr
);
559 afs_check_for_remote_deletion(&fc
, fc
.vnode
);
560 afs_vnode_commit_status(&fc
, vnode
, fc
.cb_break
);
561 ret
= afs_end_vnode_operation(&fc
);
564 if (!(attr
->ia_valid
& ATTR_FILE
))
568 _leave(" = %d", ret
);