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>
26 static const struct inode_operations afs_symlink_inode_operations
= {
27 .get_link
= page_get_link
,
28 .listxattr
= afs_listxattr
,
32 * map the AFS file status to the inode member variables
34 static int afs_inode_map_status(struct afs_vnode
*vnode
, struct key
*key
)
36 struct inode
*inode
= AFS_VNODE_TO_I(vnode
);
39 _debug("FS: ft=%d lk=%d sz=%llu ver=%Lu mod=%hu",
42 (unsigned long long) vnode
->status
.size
,
43 vnode
->status
.data_version
,
46 read_seqlock_excl(&vnode
->cb_lock
);
48 switch (vnode
->status
.type
) {
50 inode
->i_mode
= S_IFREG
| vnode
->status
.mode
;
51 inode
->i_op
= &afs_file_inode_operations
;
52 inode
->i_fop
= &afs_file_operations
;
55 inode
->i_mode
= S_IFDIR
| vnode
->status
.mode
;
56 inode
->i_op
= &afs_dir_inode_operations
;
57 inode
->i_fop
= &afs_dir_file_operations
;
59 case AFS_FTYPE_SYMLINK
:
60 /* Symlinks with a mode of 0644 are actually mountpoints. */
61 if ((vnode
->status
.mode
& 0777) == 0644) {
62 inode
->i_flags
|= S_AUTOMOUNT
;
64 set_bit(AFS_VNODE_MOUNTPOINT
, &vnode
->flags
);
66 inode
->i_mode
= S_IFDIR
| 0555;
67 inode
->i_op
= &afs_mntpt_inode_operations
;
68 inode
->i_fop
= &afs_mntpt_file_operations
;
70 inode
->i_mode
= S_IFLNK
| vnode
->status
.mode
;
71 inode
->i_op
= &afs_symlink_inode_operations
;
73 inode_nohighmem(inode
);
76 printk("kAFS: AFS vnode with undefined type\n");
77 read_sequnlock_excl(&vnode
->cb_lock
);
81 changed
= (vnode
->status
.size
!= inode
->i_size
);
83 set_nlink(inode
, vnode
->status
.nlink
);
84 inode
->i_uid
= vnode
->status
.owner
;
85 inode
->i_gid
= vnode
->status
.group
;
86 inode
->i_size
= vnode
->status
.size
;
87 inode
->i_ctime
.tv_sec
= vnode
->status
.mtime_client
;
88 inode
->i_ctime
.tv_nsec
= 0;
89 inode
->i_atime
= inode
->i_mtime
= inode
->i_ctime
;
91 inode
->i_generation
= vnode
->fid
.unique
;
92 inode
->i_version
= vnode
->status
.data_version
;
93 inode
->i_mapping
->a_ops
= &afs_fs_aops
;
95 read_sequnlock_excl(&vnode
->cb_lock
);
97 #ifdef CONFIG_AFS_FSCACHE
99 fscache_attr_changed(vnode
->cache
);
105 * Fetch file status from the volume.
107 int afs_fetch_status(struct afs_vnode
*vnode
, struct key
*key
)
109 struct afs_fs_cursor fc
;
112 _enter("%s,{%x:%u.%u,S=%lx}",
114 vnode
->fid
.vid
, vnode
->fid
.vnode
, vnode
->fid
.unique
,
118 if (afs_begin_vnode_operation(&fc
, vnode
, key
)) {
119 while (afs_select_fileserver(&fc
)) {
120 fc
.cb_break
= vnode
->cb_break
+ vnode
->cb_s_break
;
121 afs_fs_fetch_file_status(&fc
, NULL
);
124 afs_check_for_remote_deletion(&fc
, fc
.vnode
);
125 afs_vnode_commit_status(&fc
, vnode
, fc
.cb_break
);
126 ret
= afs_end_vnode_operation(&fc
);
129 _leave(" = %d", ret
);
136 int afs_iget5_test(struct inode
*inode
, void *opaque
)
138 struct afs_iget_data
*data
= opaque
;
140 return inode
->i_ino
== data
->fid
.vnode
&&
141 inode
->i_generation
== data
->fid
.unique
;
145 * iget5() comparator for inode created by autocell operations
147 * These pseudo inodes don't match anything.
149 static int afs_iget5_autocell_test(struct inode
*inode
, void *opaque
)
155 * iget5() inode initialiser
157 static int afs_iget5_set(struct inode
*inode
, void *opaque
)
159 struct afs_iget_data
*data
= opaque
;
160 struct afs_vnode
*vnode
= AFS_FS_I(inode
);
162 inode
->i_ino
= data
->fid
.vnode
;
163 inode
->i_generation
= data
->fid
.unique
;
164 vnode
->fid
= data
->fid
;
165 vnode
->volume
= data
->volume
;
171 * inode retrieval for autocell
173 struct inode
*afs_iget_autocell(struct inode
*dir
, const char *dev_name
,
174 int namesz
, struct key
*key
)
176 struct afs_iget_data data
;
177 struct afs_super_info
*as
;
178 struct afs_vnode
*vnode
;
179 struct super_block
*sb
;
181 static atomic_t afs_autocell_ino
;
183 _enter("{%x:%u},%*.*s,",
184 AFS_FS_I(dir
)->fid
.vid
, AFS_FS_I(dir
)->fid
.vnode
,
185 namesz
, namesz
, dev_name
?: "");
189 data
.volume
= as
->volume
;
190 data
.fid
.vid
= as
->volume
->vid
;
194 inode
= iget5_locked(sb
, atomic_inc_return(&afs_autocell_ino
),
195 afs_iget5_autocell_test
, afs_iget5_set
,
198 _leave(" = -ENOMEM");
199 return ERR_PTR(-ENOMEM
);
202 _debug("GOT INODE %p { ino=%lu, vl=%x, vn=%x, u=%x }",
203 inode
, inode
->i_ino
, data
.fid
.vid
, data
.fid
.vnode
,
206 vnode
= AFS_FS_I(inode
);
208 /* there shouldn't be an existing inode */
209 BUG_ON(!(inode
->i_state
& I_NEW
));
212 inode
->i_mode
= S_IFDIR
| S_IRUGO
| S_IXUGO
;
213 inode
->i_op
= &afs_autocell_inode_operations
;
215 inode
->i_uid
= GLOBAL_ROOT_UID
;
216 inode
->i_gid
= GLOBAL_ROOT_GID
;
217 inode
->i_ctime
.tv_sec
= get_seconds();
218 inode
->i_ctime
.tv_nsec
= 0;
219 inode
->i_atime
= inode
->i_mtime
= inode
->i_ctime
;
221 inode
->i_version
= 0;
222 inode
->i_generation
= 0;
224 set_bit(AFS_VNODE_PSEUDODIR
, &vnode
->flags
);
225 set_bit(AFS_VNODE_MOUNTPOINT
, &vnode
->flags
);
226 inode
->i_flags
|= S_AUTOMOUNT
| S_NOATIME
;
227 unlock_new_inode(inode
);
228 _leave(" = %p", inode
);
235 struct inode
*afs_iget(struct super_block
*sb
, struct key
*key
,
236 struct afs_fid
*fid
, struct afs_file_status
*status
,
237 struct afs_callback
*cb
, struct afs_cb_interest
*cbi
)
239 struct afs_iget_data data
= { .fid
= *fid
};
240 struct afs_super_info
*as
;
241 struct afs_vnode
*vnode
;
245 _enter(",{%x:%u.%u},,", fid
->vid
, fid
->vnode
, fid
->unique
);
248 data
.volume
= as
->volume
;
250 inode
= iget5_locked(sb
, fid
->vnode
, afs_iget5_test
, afs_iget5_set
,
253 _leave(" = -ENOMEM");
254 return ERR_PTR(-ENOMEM
);
257 _debug("GOT INODE %p { vl=%x vn=%x, u=%x }",
258 inode
, fid
->vid
, fid
->vnode
, fid
->unique
);
260 vnode
= AFS_FS_I(inode
);
262 /* deal with an existing inode */
263 if (!(inode
->i_state
& I_NEW
)) {
264 _leave(" = %p", inode
);
269 /* it's a remotely extant inode */
270 ret
= afs_fetch_status(vnode
, key
);
274 /* it's an inode we just created */
275 memcpy(&vnode
->status
, status
, sizeof(vnode
->status
));
278 /* it's a symlink we just created (the fileserver
279 * didn't give us a callback) */
280 vnode
->cb_version
= 0;
282 vnode
->cb_expires_at
= 0;
284 vnode
->cb_version
= cb
->version
;
285 vnode
->cb_type
= cb
->type
;
286 vnode
->cb_expires_at
= cb
->expiry
;
287 vnode
->cb_interest
= afs_get_cb_interest(cbi
);
288 set_bit(AFS_VNODE_CB_PROMISED
, &vnode
->flags
);
291 vnode
->cb_expires_at
+= ktime_get_real_seconds();
294 /* set up caching before mapping the status, as map-status reads the
295 * first page of symlinks to see if they're really mountpoints */
296 inode
->i_size
= vnode
->status
.size
;
297 #ifdef CONFIG_AFS_FSCACHE
298 vnode
->cache
= fscache_acquire_cookie(vnode
->volume
->cache
,
299 &afs_vnode_cache_index_def
,
303 ret
= afs_inode_map_status(vnode
, key
);
308 clear_bit(AFS_VNODE_UNSET
, &vnode
->flags
);
309 inode
->i_flags
|= S_NOATIME
;
310 unlock_new_inode(inode
);
311 _leave(" = %p [CB { v=%u t=%u }]", inode
, vnode
->cb_version
, vnode
->cb_type
);
316 #ifdef CONFIG_AFS_FSCACHE
317 fscache_relinquish_cookie(vnode
->cache
, 0);
321 _leave(" = %d [bad]", ret
);
326 * mark the data attached to an inode as obsolete due to a write on the server
327 * - might also want to ditch all the outstanding writes and dirty pages
329 void afs_zap_data(struct afs_vnode
*vnode
)
331 _enter("{%x:%u}", vnode
->fid
.vid
, vnode
->fid
.vnode
);
333 /* nuke all the non-dirty pages that aren't locked, mapped or being
334 * written back in a regular file and completely discard the pages in a
335 * directory or symlink */
336 if (S_ISREG(vnode
->vfs_inode
.i_mode
))
337 invalidate_remote_inode(&vnode
->vfs_inode
);
339 invalidate_inode_pages2(vnode
->vfs_inode
.i_mapping
);
343 * validate a vnode/inode
344 * - there are several things we need to check
345 * - parent dir data changes (rm, rmdir, rename, mkdir, create, link,
347 * - parent dir metadata changed (security changes)
348 * - dentry data changed (write, truncate)
349 * - dentry metadata changed (security changes)
351 int afs_validate(struct afs_vnode
*vnode
, struct key
*key
)
353 time64_t now
= ktime_get_real_seconds();
357 _enter("{v={%x:%u} fl=%lx},%x",
358 vnode
->fid
.vid
, vnode
->fid
.vnode
, vnode
->flags
,
361 /* Quickly check the callback state. Ideally, we'd use read_seqbegin
362 * here, but we have no way to pass the net namespace to the RCU
363 * cleanup for the server record.
365 read_seqlock_excl(&vnode
->cb_lock
);
367 if (test_bit(AFS_VNODE_CB_PROMISED
, &vnode
->flags
)) {
368 if (vnode
->cb_s_break
!= vnode
->cb_interest
->server
->cb_s_break
) {
369 vnode
->cb_s_break
= vnode
->cb_interest
->server
->cb_s_break
;
370 } else if (!test_bit(AFS_VNODE_DIR_MODIFIED
, &vnode
->flags
) &&
371 !test_bit(AFS_VNODE_ZAP_DATA
, &vnode
->flags
) &&
372 vnode
->cb_expires_at
- 10 > now
) {
375 } else if (test_bit(AFS_VNODE_DELETED
, &vnode
->flags
)) {
379 read_sequnlock_excl(&vnode
->cb_lock
);
383 mutex_lock(&vnode
->validate_lock
);
385 /* if the promise has expired, we need to check the server again to get
386 * a new promise - note that if the (parent) directory's metadata was
387 * changed then the security may be different and we may no longer have
389 if (!test_bit(AFS_VNODE_CB_PROMISED
, &vnode
->flags
)) {
390 _debug("not promised");
391 ret
= afs_fetch_status(vnode
, key
);
393 if (ret
== -ENOENT
) {
394 set_bit(AFS_VNODE_DELETED
, &vnode
->flags
);
399 _debug("new promise [fl=%lx]", vnode
->flags
);
402 if (test_bit(AFS_VNODE_DELETED
, &vnode
->flags
)) {
403 _debug("file already deleted");
408 /* if the vnode's data version number changed then its contents are
410 if (test_and_clear_bit(AFS_VNODE_ZAP_DATA
, &vnode
->flags
))
413 clear_bit(AFS_VNODE_DIR_MODIFIED
, &vnode
->flags
);
414 mutex_unlock(&vnode
->validate_lock
);
420 mutex_unlock(&vnode
->validate_lock
);
421 _leave(" = %d", ret
);
426 * read the attributes of an inode
428 int afs_getattr(const struct path
*path
, struct kstat
*stat
,
429 u32 request_mask
, unsigned int query_flags
)
431 struct inode
*inode
= d_inode(path
->dentry
);
432 struct afs_vnode
*vnode
= AFS_FS_I(inode
);
435 _enter("{ ino=%lu v=%u }", inode
->i_ino
, inode
->i_generation
);
438 read_seqbegin_or_lock(&vnode
->cb_lock
, &seq
);
439 generic_fillattr(inode
, stat
);
440 } while (need_seqretry(&vnode
->cb_lock
, seq
));
442 done_seqretry(&vnode
->cb_lock
, seq
);
447 * discard an AFS inode
449 int afs_drop_inode(struct inode
*inode
)
453 if (test_bit(AFS_VNODE_PSEUDODIR
, &AFS_FS_I(inode
)->flags
))
454 return generic_delete_inode(inode
);
456 return generic_drop_inode(inode
);
462 void afs_evict_inode(struct inode
*inode
)
464 struct afs_vnode
*vnode
;
466 vnode
= AFS_FS_I(inode
);
473 _debug("CLEAR INODE %p", inode
);
475 ASSERTCMP(inode
->i_ino
, ==, vnode
->fid
.vnode
);
477 truncate_inode_pages_final(&inode
->i_data
);
480 if (vnode
->cb_interest
) {
481 afs_put_cb_interest(afs_i2net(inode
), vnode
->cb_interest
);
482 vnode
->cb_interest
= NULL
;
485 while (!list_empty(&vnode
->wb_keys
)) {
486 struct afs_wb_key
*wbk
= list_entry(vnode
->wb_keys
.next
,
487 struct afs_wb_key
, vnode_link
);
488 list_del(&wbk
->vnode_link
);
492 #ifdef CONFIG_AFS_FSCACHE
493 fscache_relinquish_cookie(vnode
->cache
, 0);
497 afs_put_permits(vnode
->permit_cache
);
502 * set the attributes of an inode
504 int afs_setattr(struct dentry
*dentry
, struct iattr
*attr
)
506 struct afs_fs_cursor fc
;
507 struct afs_vnode
*vnode
= AFS_FS_I(d_inode(dentry
));
511 _enter("{%x:%u},{n=%pd},%x",
512 vnode
->fid
.vid
, vnode
->fid
.vnode
, dentry
,
515 if (!(attr
->ia_valid
& (ATTR_SIZE
| ATTR_MODE
| ATTR_UID
| ATTR_GID
|
517 _leave(" = 0 [unsupported]");
521 /* flush any dirty data outstanding on a regular file */
522 if (S_ISREG(vnode
->vfs_inode
.i_mode
))
523 filemap_write_and_wait(vnode
->vfs_inode
.i_mapping
);
525 if (attr
->ia_valid
& ATTR_FILE
) {
526 key
= afs_file_key(attr
->ia_file
);
528 key
= afs_request_key(vnode
->volume
->cell
);
536 if (afs_begin_vnode_operation(&fc
, vnode
, key
)) {
537 while (afs_select_fileserver(&fc
)) {
538 fc
.cb_break
= vnode
->cb_break
+ vnode
->cb_s_break
;
539 afs_fs_setattr(&fc
, attr
);
542 afs_check_for_remote_deletion(&fc
, fc
.vnode
);
543 afs_vnode_commit_status(&fc
, vnode
, fc
.cb_break
);
544 ret
= afs_end_vnode_operation(&fc
);
547 if (!(attr
->ia_valid
& ATTR_FILE
))
551 _leave(" = %d", ret
);