Loading...
1/* AFS superblock handling
2 *
3 * Copyright (c) 2002, 2007, 2018 Red Hat, Inc. All rights reserved.
4 *
5 * This software may be freely redistributed under the terms of the
6 * GNU General Public License.
7 *
8 * You should have received a copy of the GNU General Public License
9 * along with this program; if not, write to the Free Software
10 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
11 *
12 * Authors: David Howells <dhowells@redhat.com>
13 * David Woodhouse <dwmw2@infradead.org>
14 *
15 */
16
17#include <linux/kernel.h>
18#include <linux/module.h>
19#include <linux/mount.h>
20#include <linux/init.h>
21#include <linux/slab.h>
22#include <linux/fs.h>
23#include <linux/pagemap.h>
24#include <linux/fs_parser.h>
25#include <linux/statfs.h>
26#include <linux/sched.h>
27#include <linux/nsproxy.h>
28#include <linux/magic.h>
29#include <net/net_namespace.h>
30#include "internal.h"
31
32static void afs_i_init_once(void *foo);
33static void afs_kill_super(struct super_block *sb);
34static struct inode *afs_alloc_inode(struct super_block *sb);
35static void afs_destroy_inode(struct inode *inode);
36static void afs_free_inode(struct inode *inode);
37static int afs_statfs(struct dentry *dentry, struct kstatfs *buf);
38static int afs_show_devname(struct seq_file *m, struct dentry *root);
39static int afs_show_options(struct seq_file *m, struct dentry *root);
40static int afs_init_fs_context(struct fs_context *fc);
41static const struct fs_parameter_spec afs_fs_parameters[];
42
43struct file_system_type afs_fs_type = {
44 .owner = THIS_MODULE,
45 .name = "afs",
46 .init_fs_context = afs_init_fs_context,
47 .parameters = afs_fs_parameters,
48 .kill_sb = afs_kill_super,
49 .fs_flags = FS_RENAME_DOES_D_MOVE,
50};
51MODULE_ALIAS_FS("afs");
52
53int afs_net_id;
54
55static const struct super_operations afs_super_ops = {
56 .statfs = afs_statfs,
57 .alloc_inode = afs_alloc_inode,
58 .write_inode = netfs_unpin_writeback,
59 .drop_inode = afs_drop_inode,
60 .destroy_inode = afs_destroy_inode,
61 .free_inode = afs_free_inode,
62 .evict_inode = afs_evict_inode,
63 .show_devname = afs_show_devname,
64 .show_options = afs_show_options,
65};
66
67static struct kmem_cache *afs_inode_cachep;
68static atomic_t afs_count_active_inodes;
69
70enum afs_param {
71 Opt_autocell,
72 Opt_dyn,
73 Opt_flock,
74 Opt_source,
75};
76
77static const struct constant_table afs_param_flock[] = {
78 {"local", afs_flock_mode_local },
79 {"openafs", afs_flock_mode_openafs },
80 {"strict", afs_flock_mode_strict },
81 {"write", afs_flock_mode_write },
82 {}
83};
84
85static const struct fs_parameter_spec afs_fs_parameters[] = {
86 fsparam_flag ("autocell", Opt_autocell),
87 fsparam_flag ("dyn", Opt_dyn),
88 fsparam_enum ("flock", Opt_flock, afs_param_flock),
89 fsparam_string("source", Opt_source),
90 {}
91};
92
93/*
94 * initialise the filesystem
95 */
96int __init afs_fs_init(void)
97{
98 int ret;
99
100 _enter("");
101
102 /* create ourselves an inode cache */
103 atomic_set(&afs_count_active_inodes, 0);
104
105 ret = -ENOMEM;
106 afs_inode_cachep = kmem_cache_create("afs_inode_cache",
107 sizeof(struct afs_vnode),
108 0,
109 SLAB_HWCACHE_ALIGN|SLAB_ACCOUNT,
110 afs_i_init_once);
111 if (!afs_inode_cachep) {
112 printk(KERN_NOTICE "kAFS: Failed to allocate inode cache\n");
113 return ret;
114 }
115
116 /* now export our filesystem to lesser mortals */
117 ret = register_filesystem(&afs_fs_type);
118 if (ret < 0) {
119 kmem_cache_destroy(afs_inode_cachep);
120 _leave(" = %d", ret);
121 return ret;
122 }
123
124 _leave(" = 0");
125 return 0;
126}
127
128/*
129 * clean up the filesystem
130 */
131void afs_fs_exit(void)
132{
133 _enter("");
134
135 afs_mntpt_kill_timer();
136 unregister_filesystem(&afs_fs_type);
137
138 if (atomic_read(&afs_count_active_inodes) != 0) {
139 printk("kAFS: %d active inode objects still present\n",
140 atomic_read(&afs_count_active_inodes));
141 BUG();
142 }
143
144 /*
145 * Make sure all delayed rcu free inodes are flushed before we
146 * destroy cache.
147 */
148 rcu_barrier();
149 kmem_cache_destroy(afs_inode_cachep);
150 _leave("");
151}
152
153/*
154 * Display the mount device name in /proc/mounts.
155 */
156static int afs_show_devname(struct seq_file *m, struct dentry *root)
157{
158 struct afs_super_info *as = AFS_FS_S(root->d_sb);
159 struct afs_volume *volume = as->volume;
160 struct afs_cell *cell = as->cell;
161 const char *suf = "";
162 char pref = '%';
163
164 if (as->dyn_root) {
165 seq_puts(m, "none");
166 return 0;
167 }
168
169 switch (volume->type) {
170 case AFSVL_RWVOL:
171 break;
172 case AFSVL_ROVOL:
173 pref = '#';
174 if (volume->type_force)
175 suf = ".readonly";
176 break;
177 case AFSVL_BACKVOL:
178 pref = '#';
179 suf = ".backup";
180 break;
181 }
182
183 seq_printf(m, "%c%s:%s%s", pref, cell->name, volume->name, suf);
184 return 0;
185}
186
187/*
188 * Display the mount options in /proc/mounts.
189 */
190static int afs_show_options(struct seq_file *m, struct dentry *root)
191{
192 struct afs_super_info *as = AFS_FS_S(root->d_sb);
193 const char *p = NULL;
194
195 if (as->dyn_root)
196 seq_puts(m, ",dyn");
197 if (test_bit(AFS_VNODE_AUTOCELL, &AFS_FS_I(d_inode(root))->flags))
198 seq_puts(m, ",autocell");
199 switch (as->flock_mode) {
200 case afs_flock_mode_unset: break;
201 case afs_flock_mode_local: p = "local"; break;
202 case afs_flock_mode_openafs: p = "openafs"; break;
203 case afs_flock_mode_strict: p = "strict"; break;
204 case afs_flock_mode_write: p = "write"; break;
205 }
206 if (p)
207 seq_printf(m, ",flock=%s", p);
208
209 return 0;
210}
211
212/*
213 * Parse the source name to get cell name, volume name, volume type and R/W
214 * selector.
215 *
216 * This can be one of the following:
217 * "%[cell:]volume[.]" R/W volume
218 * "#[cell:]volume[.]" R/O or R/W volume (R/O parent),
219 * or R/W (R/W parent) volume
220 * "%[cell:]volume.readonly" R/O volume
221 * "#[cell:]volume.readonly" R/O volume
222 * "%[cell:]volume.backup" Backup volume
223 * "#[cell:]volume.backup" Backup volume
224 */
225static int afs_parse_source(struct fs_context *fc, struct fs_parameter *param)
226{
227 struct afs_fs_context *ctx = fc->fs_private;
228 struct afs_cell *cell;
229 const char *cellname, *suffix, *name = param->string;
230 int cellnamesz;
231
232 _enter(",%s", name);
233
234 if (fc->source)
235 return invalf(fc, "kAFS: Multiple sources not supported");
236
237 if (!name) {
238 printk(KERN_ERR "kAFS: no volume name specified\n");
239 return -EINVAL;
240 }
241
242 if ((name[0] != '%' && name[0] != '#') || !name[1]) {
243 /* To use dynroot, we don't want to have to provide a source */
244 if (strcmp(name, "none") == 0) {
245 ctx->no_cell = true;
246 return 0;
247 }
248 printk(KERN_ERR "kAFS: unparsable volume name\n");
249 return -EINVAL;
250 }
251
252 /* determine the type of volume we're looking for */
253 if (name[0] == '%') {
254 ctx->type = AFSVL_RWVOL;
255 ctx->force = true;
256 }
257 name++;
258
259 /* split the cell name out if there is one */
260 ctx->volname = strchr(name, ':');
261 if (ctx->volname) {
262 cellname = name;
263 cellnamesz = ctx->volname - name;
264 ctx->volname++;
265 } else {
266 ctx->volname = name;
267 cellname = NULL;
268 cellnamesz = 0;
269 }
270
271 /* the volume type is further affected by a possible suffix */
272 suffix = strrchr(ctx->volname, '.');
273 if (suffix) {
274 if (strcmp(suffix, ".readonly") == 0) {
275 ctx->type = AFSVL_ROVOL;
276 ctx->force = true;
277 } else if (strcmp(suffix, ".backup") == 0) {
278 ctx->type = AFSVL_BACKVOL;
279 ctx->force = true;
280 } else if (suffix[1] == 0) {
281 } else {
282 suffix = NULL;
283 }
284 }
285
286 ctx->volnamesz = suffix ?
287 suffix - ctx->volname : strlen(ctx->volname);
288
289 _debug("cell %*.*s [%p]",
290 cellnamesz, cellnamesz, cellname ?: "", ctx->cell);
291
292 /* lookup the cell record */
293 if (cellname) {
294 cell = afs_lookup_cell(ctx->net, cellname, cellnamesz,
295 NULL, false);
296 if (IS_ERR(cell)) {
297 pr_err("kAFS: unable to lookup cell '%*.*s'\n",
298 cellnamesz, cellnamesz, cellname ?: "");
299 return PTR_ERR(cell);
300 }
301 afs_unuse_cell(ctx->net, ctx->cell, afs_cell_trace_unuse_parse);
302 afs_see_cell(cell, afs_cell_trace_see_source);
303 ctx->cell = cell;
304 }
305
306 _debug("CELL:%s [%p] VOLUME:%*.*s SUFFIX:%s TYPE:%d%s",
307 ctx->cell->name, ctx->cell,
308 ctx->volnamesz, ctx->volnamesz, ctx->volname,
309 suffix ?: "-", ctx->type, ctx->force ? " FORCE" : "");
310
311 fc->source = param->string;
312 param->string = NULL;
313 return 0;
314}
315
316/*
317 * Parse a single mount parameter.
318 */
319static int afs_parse_param(struct fs_context *fc, struct fs_parameter *param)
320{
321 struct fs_parse_result result;
322 struct afs_fs_context *ctx = fc->fs_private;
323 int opt;
324
325 opt = fs_parse(fc, afs_fs_parameters, param, &result);
326 if (opt < 0)
327 return opt;
328
329 switch (opt) {
330 case Opt_source:
331 return afs_parse_source(fc, param);
332
333 case Opt_autocell:
334 ctx->autocell = true;
335 break;
336
337 case Opt_dyn:
338 ctx->dyn_root = true;
339 break;
340
341 case Opt_flock:
342 ctx->flock_mode = result.uint_32;
343 break;
344
345 default:
346 return -EINVAL;
347 }
348
349 _leave(" = 0");
350 return 0;
351}
352
353/*
354 * Validate the options, get the cell key and look up the volume.
355 */
356static int afs_validate_fc(struct fs_context *fc)
357{
358 struct afs_fs_context *ctx = fc->fs_private;
359 struct afs_volume *volume;
360 struct afs_cell *cell;
361 struct key *key;
362 int ret;
363
364 if (!ctx->dyn_root) {
365 if (ctx->no_cell) {
366 pr_warn("kAFS: Can only specify source 'none' with -o dyn\n");
367 return -EINVAL;
368 }
369
370 if (!ctx->cell) {
371 pr_warn("kAFS: No cell specified\n");
372 return -EDESTADDRREQ;
373 }
374
375 reget_key:
376 /* We try to do the mount securely. */
377 key = afs_request_key(ctx->cell);
378 if (IS_ERR(key))
379 return PTR_ERR(key);
380
381 ctx->key = key;
382
383 if (ctx->volume) {
384 afs_put_volume(ctx->volume, afs_volume_trace_put_validate_fc);
385 ctx->volume = NULL;
386 }
387
388 if (test_bit(AFS_CELL_FL_CHECK_ALIAS, &ctx->cell->flags)) {
389 ret = afs_cell_detect_alias(ctx->cell, key);
390 if (ret < 0)
391 return ret;
392 if (ret == 1) {
393 _debug("switch to alias");
394 key_put(ctx->key);
395 ctx->key = NULL;
396 cell = afs_use_cell(ctx->cell->alias_of,
397 afs_cell_trace_use_fc_alias);
398 afs_unuse_cell(ctx->net, ctx->cell, afs_cell_trace_unuse_fc);
399 ctx->cell = cell;
400 goto reget_key;
401 }
402 }
403
404 volume = afs_create_volume(ctx);
405 if (IS_ERR(volume))
406 return PTR_ERR(volume);
407
408 ctx->volume = volume;
409 if (volume->type != AFSVL_RWVOL) {
410 ctx->flock_mode = afs_flock_mode_local;
411 fc->sb_flags |= SB_RDONLY;
412 }
413 }
414
415 return 0;
416}
417
418/*
419 * check a superblock to see if it's the one we're looking for
420 */
421static int afs_test_super(struct super_block *sb, struct fs_context *fc)
422{
423 struct afs_fs_context *ctx = fc->fs_private;
424 struct afs_super_info *as = AFS_FS_S(sb);
425
426 return (as->net_ns == fc->net_ns &&
427 as->volume &&
428 as->volume->vid == ctx->volume->vid &&
429 as->cell == ctx->cell &&
430 !as->dyn_root);
431}
432
433static int afs_dynroot_test_super(struct super_block *sb, struct fs_context *fc)
434{
435 struct afs_super_info *as = AFS_FS_S(sb);
436
437 return (as->net_ns == fc->net_ns &&
438 as->dyn_root);
439}
440
441static int afs_set_super(struct super_block *sb, struct fs_context *fc)
442{
443 return set_anon_super(sb, NULL);
444}
445
446/*
447 * fill in the superblock
448 */
449static int afs_fill_super(struct super_block *sb, struct afs_fs_context *ctx)
450{
451 struct afs_super_info *as = AFS_FS_S(sb);
452 struct inode *inode = NULL;
453 int ret;
454
455 _enter("");
456
457 /* fill in the superblock */
458 sb->s_blocksize = PAGE_SIZE;
459 sb->s_blocksize_bits = PAGE_SHIFT;
460 sb->s_maxbytes = MAX_LFS_FILESIZE;
461 sb->s_magic = AFS_FS_MAGIC;
462 sb->s_op = &afs_super_ops;
463 if (!as->dyn_root)
464 sb->s_xattr = afs_xattr_handlers;
465 ret = super_setup_bdi(sb);
466 if (ret)
467 return ret;
468
469 /* allocate the root inode and dentry */
470 if (as->dyn_root) {
471 inode = afs_iget_pseudo_dir(sb, true);
472 } else {
473 sprintf(sb->s_id, "%llu", as->volume->vid);
474 afs_activate_volume(as->volume);
475 inode = afs_root_iget(sb, ctx->key);
476 }
477
478 if (IS_ERR(inode))
479 return PTR_ERR(inode);
480
481 if (ctx->autocell || as->dyn_root)
482 set_bit(AFS_VNODE_AUTOCELL, &AFS_FS_I(inode)->flags);
483
484 ret = -ENOMEM;
485 sb->s_root = d_make_root(inode);
486 if (!sb->s_root)
487 goto error;
488
489 if (as->dyn_root) {
490 sb->s_d_op = &afs_dynroot_dentry_operations;
491 ret = afs_dynroot_populate(sb);
492 if (ret < 0)
493 goto error;
494 } else {
495 sb->s_d_op = &afs_fs_dentry_operations;
496 rcu_assign_pointer(as->volume->sb, sb);
497 }
498
499 _leave(" = 0");
500 return 0;
501
502error:
503 _leave(" = %d", ret);
504 return ret;
505}
506
507static struct afs_super_info *afs_alloc_sbi(struct fs_context *fc)
508{
509 struct afs_fs_context *ctx = fc->fs_private;
510 struct afs_super_info *as;
511
512 as = kzalloc(sizeof(struct afs_super_info), GFP_KERNEL);
513 if (as) {
514 as->net_ns = get_net(fc->net_ns);
515 as->flock_mode = ctx->flock_mode;
516 if (ctx->dyn_root) {
517 as->dyn_root = true;
518 } else {
519 as->cell = afs_use_cell(ctx->cell, afs_cell_trace_use_sbi);
520 as->volume = afs_get_volume(ctx->volume,
521 afs_volume_trace_get_alloc_sbi);
522 }
523 }
524 return as;
525}
526
527static void afs_destroy_sbi(struct afs_super_info *as)
528{
529 if (as) {
530 struct afs_net *net = afs_net(as->net_ns);
531 afs_put_volume(as->volume, afs_volume_trace_put_destroy_sbi);
532 afs_unuse_cell(net, as->cell, afs_cell_trace_unuse_sbi);
533 put_net(as->net_ns);
534 kfree(as);
535 }
536}
537
538static void afs_kill_super(struct super_block *sb)
539{
540 struct afs_super_info *as = AFS_FS_S(sb);
541
542 if (as->dyn_root)
543 afs_dynroot_depopulate(sb);
544
545 /* Clear the callback interests (which will do ilookup5) before
546 * deactivating the superblock.
547 */
548 if (as->volume)
549 rcu_assign_pointer(as->volume->sb, NULL);
550 kill_anon_super(sb);
551 if (as->volume)
552 afs_deactivate_volume(as->volume);
553 afs_destroy_sbi(as);
554}
555
556/*
557 * Get an AFS superblock and root directory.
558 */
559static int afs_get_tree(struct fs_context *fc)
560{
561 struct afs_fs_context *ctx = fc->fs_private;
562 struct super_block *sb;
563 struct afs_super_info *as;
564 int ret;
565
566 ret = afs_validate_fc(fc);
567 if (ret)
568 goto error;
569
570 _enter("");
571
572 /* allocate a superblock info record */
573 ret = -ENOMEM;
574 as = afs_alloc_sbi(fc);
575 if (!as)
576 goto error;
577 fc->s_fs_info = as;
578
579 /* allocate a deviceless superblock */
580 sb = sget_fc(fc,
581 as->dyn_root ? afs_dynroot_test_super : afs_test_super,
582 afs_set_super);
583 if (IS_ERR(sb)) {
584 ret = PTR_ERR(sb);
585 goto error;
586 }
587
588 if (!sb->s_root) {
589 /* initial superblock/root creation */
590 _debug("create");
591 ret = afs_fill_super(sb, ctx);
592 if (ret < 0)
593 goto error_sb;
594 sb->s_flags |= SB_ACTIVE;
595 } else {
596 _debug("reuse");
597 ASSERTCMP(sb->s_flags, &, SB_ACTIVE);
598 }
599
600 fc->root = dget(sb->s_root);
601 trace_afs_get_tree(as->cell, as->volume);
602 _leave(" = 0 [%p]", sb);
603 return 0;
604
605error_sb:
606 deactivate_locked_super(sb);
607error:
608 _leave(" = %d", ret);
609 return ret;
610}
611
612static void afs_free_fc(struct fs_context *fc)
613{
614 struct afs_fs_context *ctx = fc->fs_private;
615
616 afs_destroy_sbi(fc->s_fs_info);
617 afs_put_volume(ctx->volume, afs_volume_trace_put_free_fc);
618 afs_unuse_cell(ctx->net, ctx->cell, afs_cell_trace_unuse_fc);
619 key_put(ctx->key);
620 kfree(ctx);
621}
622
623static const struct fs_context_operations afs_context_ops = {
624 .free = afs_free_fc,
625 .parse_param = afs_parse_param,
626 .get_tree = afs_get_tree,
627};
628
629/*
630 * Set up the filesystem mount context.
631 */
632static int afs_init_fs_context(struct fs_context *fc)
633{
634 struct afs_fs_context *ctx;
635 struct afs_cell *cell;
636
637 ctx = kzalloc(sizeof(struct afs_fs_context), GFP_KERNEL);
638 if (!ctx)
639 return -ENOMEM;
640
641 ctx->type = AFSVL_ROVOL;
642 ctx->net = afs_net(fc->net_ns);
643
644 /* Default to the workstation cell. */
645 cell = afs_find_cell(ctx->net, NULL, 0, afs_cell_trace_use_fc);
646 if (IS_ERR(cell))
647 cell = NULL;
648 ctx->cell = cell;
649
650 fc->fs_private = ctx;
651 fc->ops = &afs_context_ops;
652 return 0;
653}
654
655/*
656 * Initialise an inode cache slab element prior to any use. Note that
657 * afs_alloc_inode() *must* reset anything that could incorrectly leak from one
658 * inode to another.
659 */
660static void afs_i_init_once(void *_vnode)
661{
662 struct afs_vnode *vnode = _vnode;
663
664 memset(vnode, 0, sizeof(*vnode));
665 inode_init_once(&vnode->netfs.inode);
666 mutex_init(&vnode->io_lock);
667 init_rwsem(&vnode->validate_lock);
668 spin_lock_init(&vnode->wb_lock);
669 spin_lock_init(&vnode->lock);
670 INIT_LIST_HEAD(&vnode->wb_keys);
671 INIT_LIST_HEAD(&vnode->pending_locks);
672 INIT_LIST_HEAD(&vnode->granted_locks);
673 INIT_DELAYED_WORK(&vnode->lock_work, afs_lock_work);
674 INIT_LIST_HEAD(&vnode->cb_mmap_link);
675 seqlock_init(&vnode->cb_lock);
676}
677
678/*
679 * allocate an AFS inode struct from our slab cache
680 */
681static struct inode *afs_alloc_inode(struct super_block *sb)
682{
683 struct afs_vnode *vnode;
684
685 vnode = alloc_inode_sb(sb, afs_inode_cachep, GFP_KERNEL);
686 if (!vnode)
687 return NULL;
688
689 atomic_inc(&afs_count_active_inodes);
690
691 /* Reset anything that shouldn't leak from one inode to the next. */
692 memset(&vnode->fid, 0, sizeof(vnode->fid));
693 memset(&vnode->status, 0, sizeof(vnode->status));
694 afs_vnode_set_cache(vnode, NULL);
695
696 vnode->volume = NULL;
697 vnode->lock_key = NULL;
698 vnode->permit_cache = NULL;
699
700 vnode->flags = 1 << AFS_VNODE_UNSET;
701 vnode->lock_state = AFS_VNODE_LOCK_NONE;
702
703 init_rwsem(&vnode->rmdir_lock);
704 INIT_WORK(&vnode->cb_work, afs_invalidate_mmap_work);
705
706 _leave(" = %p", &vnode->netfs.inode);
707 return &vnode->netfs.inode;
708}
709
710static void afs_free_inode(struct inode *inode)
711{
712 kmem_cache_free(afs_inode_cachep, AFS_FS_I(inode));
713}
714
715/*
716 * destroy an AFS inode struct
717 */
718static void afs_destroy_inode(struct inode *inode)
719{
720 struct afs_vnode *vnode = AFS_FS_I(inode);
721
722 _enter("%p{%llx:%llu}", inode, vnode->fid.vid, vnode->fid.vnode);
723
724 _debug("DESTROY INODE %p", inode);
725
726 atomic_dec(&afs_count_active_inodes);
727}
728
729static void afs_get_volume_status_success(struct afs_operation *op)
730{
731 struct afs_volume_status *vs = &op->volstatus.vs;
732 struct kstatfs *buf = op->volstatus.buf;
733
734 if (vs->max_quota == 0)
735 buf->f_blocks = vs->part_max_blocks;
736 else
737 buf->f_blocks = vs->max_quota;
738
739 if (buf->f_blocks > vs->blocks_in_use)
740 buf->f_bavail = buf->f_bfree =
741 buf->f_blocks - vs->blocks_in_use;
742}
743
744static const struct afs_operation_ops afs_get_volume_status_operation = {
745 .issue_afs_rpc = afs_fs_get_volume_status,
746 .issue_yfs_rpc = yfs_fs_get_volume_status,
747 .success = afs_get_volume_status_success,
748};
749
750/*
751 * return information about an AFS volume
752 */
753static int afs_statfs(struct dentry *dentry, struct kstatfs *buf)
754{
755 struct afs_super_info *as = AFS_FS_S(dentry->d_sb);
756 struct afs_operation *op;
757 struct afs_vnode *vnode = AFS_FS_I(d_inode(dentry));
758
759 buf->f_type = dentry->d_sb->s_magic;
760 buf->f_bsize = AFS_BLOCK_SIZE;
761 buf->f_namelen = AFSNAMEMAX - 1;
762
763 if (as->dyn_root) {
764 buf->f_blocks = 1;
765 buf->f_bavail = 0;
766 buf->f_bfree = 0;
767 return 0;
768 }
769
770 op = afs_alloc_operation(NULL, as->volume);
771 if (IS_ERR(op))
772 return PTR_ERR(op);
773
774 afs_op_set_vnode(op, 0, vnode);
775 op->nr_files = 1;
776 op->volstatus.buf = buf;
777 op->ops = &afs_get_volume_status_operation;
778 return afs_do_sync_operation(op);
779}
1/* AFS superblock handling
2 *
3 * Copyright (c) 2002, 2007, 2018 Red Hat, Inc. All rights reserved.
4 *
5 * This software may be freely redistributed under the terms of the
6 * GNU General Public License.
7 *
8 * You should have received a copy of the GNU General Public License
9 * along with this program; if not, write to the Free Software
10 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
11 *
12 * Authors: David Howells <dhowells@redhat.com>
13 * David Woodhouse <dwmw2@infradead.org>
14 *
15 */
16
17#include <linux/kernel.h>
18#include <linux/module.h>
19#include <linux/mount.h>
20#include <linux/init.h>
21#include <linux/slab.h>
22#include <linux/fs.h>
23#include <linux/pagemap.h>
24#include <linux/fs_parser.h>
25#include <linux/statfs.h>
26#include <linux/sched.h>
27#include <linux/nsproxy.h>
28#include <linux/magic.h>
29#include <net/net_namespace.h>
30#include "internal.h"
31
32static void afs_i_init_once(void *foo);
33static void afs_kill_super(struct super_block *sb);
34static struct inode *afs_alloc_inode(struct super_block *sb);
35static void afs_destroy_inode(struct inode *inode);
36static void afs_free_inode(struct inode *inode);
37static int afs_statfs(struct dentry *dentry, struct kstatfs *buf);
38static int afs_show_devname(struct seq_file *m, struct dentry *root);
39static int afs_show_options(struct seq_file *m, struct dentry *root);
40static int afs_init_fs_context(struct fs_context *fc);
41static const struct fs_parameter_description afs_fs_parameters;
42
43struct file_system_type afs_fs_type = {
44 .owner = THIS_MODULE,
45 .name = "afs",
46 .init_fs_context = afs_init_fs_context,
47 .parameters = &afs_fs_parameters,
48 .kill_sb = afs_kill_super,
49 .fs_flags = FS_RENAME_DOES_D_MOVE,
50};
51MODULE_ALIAS_FS("afs");
52
53int afs_net_id;
54
55static const struct super_operations afs_super_ops = {
56 .statfs = afs_statfs,
57 .alloc_inode = afs_alloc_inode,
58 .drop_inode = afs_drop_inode,
59 .destroy_inode = afs_destroy_inode,
60 .free_inode = afs_free_inode,
61 .evict_inode = afs_evict_inode,
62 .show_devname = afs_show_devname,
63 .show_options = afs_show_options,
64};
65
66static struct kmem_cache *afs_inode_cachep;
67static atomic_t afs_count_active_inodes;
68
69enum afs_param {
70 Opt_autocell,
71 Opt_dyn,
72 Opt_flock,
73 Opt_source,
74};
75
76static const struct fs_parameter_spec afs_param_specs[] = {
77 fsparam_flag ("autocell", Opt_autocell),
78 fsparam_flag ("dyn", Opt_dyn),
79 fsparam_enum ("flock", Opt_flock),
80 fsparam_string("source", Opt_source),
81 {}
82};
83
84static const struct fs_parameter_enum afs_param_enums[] = {
85 { Opt_flock, "local", afs_flock_mode_local },
86 { Opt_flock, "openafs", afs_flock_mode_openafs },
87 { Opt_flock, "strict", afs_flock_mode_strict },
88 { Opt_flock, "write", afs_flock_mode_write },
89 {}
90};
91
92static const struct fs_parameter_description afs_fs_parameters = {
93 .name = "kAFS",
94 .specs = afs_param_specs,
95 .enums = afs_param_enums,
96};
97
98/*
99 * initialise the filesystem
100 */
101int __init afs_fs_init(void)
102{
103 int ret;
104
105 _enter("");
106
107 /* create ourselves an inode cache */
108 atomic_set(&afs_count_active_inodes, 0);
109
110 ret = -ENOMEM;
111 afs_inode_cachep = kmem_cache_create("afs_inode_cache",
112 sizeof(struct afs_vnode),
113 0,
114 SLAB_HWCACHE_ALIGN|SLAB_ACCOUNT,
115 afs_i_init_once);
116 if (!afs_inode_cachep) {
117 printk(KERN_NOTICE "kAFS: Failed to allocate inode cache\n");
118 return ret;
119 }
120
121 /* now export our filesystem to lesser mortals */
122 ret = register_filesystem(&afs_fs_type);
123 if (ret < 0) {
124 kmem_cache_destroy(afs_inode_cachep);
125 _leave(" = %d", ret);
126 return ret;
127 }
128
129 _leave(" = 0");
130 return 0;
131}
132
133/*
134 * clean up the filesystem
135 */
136void afs_fs_exit(void)
137{
138 _enter("");
139
140 afs_mntpt_kill_timer();
141 unregister_filesystem(&afs_fs_type);
142
143 if (atomic_read(&afs_count_active_inodes) != 0) {
144 printk("kAFS: %d active inode objects still present\n",
145 atomic_read(&afs_count_active_inodes));
146 BUG();
147 }
148
149 /*
150 * Make sure all delayed rcu free inodes are flushed before we
151 * destroy cache.
152 */
153 rcu_barrier();
154 kmem_cache_destroy(afs_inode_cachep);
155 _leave("");
156}
157
158/*
159 * Display the mount device name in /proc/mounts.
160 */
161static int afs_show_devname(struct seq_file *m, struct dentry *root)
162{
163 struct afs_super_info *as = AFS_FS_S(root->d_sb);
164 struct afs_volume *volume = as->volume;
165 struct afs_cell *cell = as->cell;
166 const char *suf = "";
167 char pref = '%';
168
169 if (as->dyn_root) {
170 seq_puts(m, "none");
171 return 0;
172 }
173
174 switch (volume->type) {
175 case AFSVL_RWVOL:
176 break;
177 case AFSVL_ROVOL:
178 pref = '#';
179 if (volume->type_force)
180 suf = ".readonly";
181 break;
182 case AFSVL_BACKVOL:
183 pref = '#';
184 suf = ".backup";
185 break;
186 }
187
188 seq_printf(m, "%c%s:%s%s", pref, cell->name, volume->name, suf);
189 return 0;
190}
191
192/*
193 * Display the mount options in /proc/mounts.
194 */
195static int afs_show_options(struct seq_file *m, struct dentry *root)
196{
197 struct afs_super_info *as = AFS_FS_S(root->d_sb);
198 const char *p = NULL;
199
200 if (as->dyn_root)
201 seq_puts(m, ",dyn");
202 if (test_bit(AFS_VNODE_AUTOCELL, &AFS_FS_I(d_inode(root))->flags))
203 seq_puts(m, ",autocell");
204 switch (as->flock_mode) {
205 case afs_flock_mode_unset: break;
206 case afs_flock_mode_local: p = "local"; break;
207 case afs_flock_mode_openafs: p = "openafs"; break;
208 case afs_flock_mode_strict: p = "strict"; break;
209 case afs_flock_mode_write: p = "write"; break;
210 }
211 if (p)
212 seq_printf(m, ",flock=%s", p);
213
214 return 0;
215}
216
217/*
218 * Parse the source name to get cell name, volume name, volume type and R/W
219 * selector.
220 *
221 * This can be one of the following:
222 * "%[cell:]volume[.]" R/W volume
223 * "#[cell:]volume[.]" R/O or R/W volume (R/O parent),
224 * or R/W (R/W parent) volume
225 * "%[cell:]volume.readonly" R/O volume
226 * "#[cell:]volume.readonly" R/O volume
227 * "%[cell:]volume.backup" Backup volume
228 * "#[cell:]volume.backup" Backup volume
229 */
230static int afs_parse_source(struct fs_context *fc, struct fs_parameter *param)
231{
232 struct afs_fs_context *ctx = fc->fs_private;
233 struct afs_cell *cell;
234 const char *cellname, *suffix, *name = param->string;
235 int cellnamesz;
236
237 _enter(",%s", name);
238
239 if (!name) {
240 printk(KERN_ERR "kAFS: no volume name specified\n");
241 return -EINVAL;
242 }
243
244 if ((name[0] != '%' && name[0] != '#') || !name[1]) {
245 /* To use dynroot, we don't want to have to provide a source */
246 if (strcmp(name, "none") == 0) {
247 ctx->no_cell = true;
248 return 0;
249 }
250 printk(KERN_ERR "kAFS: unparsable volume name\n");
251 return -EINVAL;
252 }
253
254 /* determine the type of volume we're looking for */
255 if (name[0] == '%') {
256 ctx->type = AFSVL_RWVOL;
257 ctx->force = true;
258 }
259 name++;
260
261 /* split the cell name out if there is one */
262 ctx->volname = strchr(name, ':');
263 if (ctx->volname) {
264 cellname = name;
265 cellnamesz = ctx->volname - name;
266 ctx->volname++;
267 } else {
268 ctx->volname = name;
269 cellname = NULL;
270 cellnamesz = 0;
271 }
272
273 /* the volume type is further affected by a possible suffix */
274 suffix = strrchr(ctx->volname, '.');
275 if (suffix) {
276 if (strcmp(suffix, ".readonly") == 0) {
277 ctx->type = AFSVL_ROVOL;
278 ctx->force = true;
279 } else if (strcmp(suffix, ".backup") == 0) {
280 ctx->type = AFSVL_BACKVOL;
281 ctx->force = true;
282 } else if (suffix[1] == 0) {
283 } else {
284 suffix = NULL;
285 }
286 }
287
288 ctx->volnamesz = suffix ?
289 suffix - ctx->volname : strlen(ctx->volname);
290
291 _debug("cell %*.*s [%p]",
292 cellnamesz, cellnamesz, cellname ?: "", ctx->cell);
293
294 /* lookup the cell record */
295 if (cellname) {
296 cell = afs_lookup_cell(ctx->net, cellname, cellnamesz,
297 NULL, false);
298 if (IS_ERR(cell)) {
299 pr_err("kAFS: unable to lookup cell '%*.*s'\n",
300 cellnamesz, cellnamesz, cellname ?: "");
301 return PTR_ERR(cell);
302 }
303 afs_put_cell(ctx->net, ctx->cell);
304 ctx->cell = cell;
305 }
306
307 _debug("CELL:%s [%p] VOLUME:%*.*s SUFFIX:%s TYPE:%d%s",
308 ctx->cell->name, ctx->cell,
309 ctx->volnamesz, ctx->volnamesz, ctx->volname,
310 suffix ?: "-", ctx->type, ctx->force ? " FORCE" : "");
311
312 fc->source = param->string;
313 param->string = NULL;
314 return 0;
315}
316
317/*
318 * Parse a single mount parameter.
319 */
320static int afs_parse_param(struct fs_context *fc, struct fs_parameter *param)
321{
322 struct fs_parse_result result;
323 struct afs_fs_context *ctx = fc->fs_private;
324 int opt;
325
326 opt = fs_parse(fc, &afs_fs_parameters, param, &result);
327 if (opt < 0)
328 return opt;
329
330 switch (opt) {
331 case Opt_source:
332 return afs_parse_source(fc, param);
333
334 case Opt_autocell:
335 ctx->autocell = true;
336 break;
337
338 case Opt_dyn:
339 ctx->dyn_root = true;
340 break;
341
342 case Opt_flock:
343 ctx->flock_mode = result.uint_32;
344 break;
345
346 default:
347 return -EINVAL;
348 }
349
350 _leave(" = 0");
351 return 0;
352}
353
354/*
355 * Validate the options, get the cell key and look up the volume.
356 */
357static int afs_validate_fc(struct fs_context *fc)
358{
359 struct afs_fs_context *ctx = fc->fs_private;
360 struct afs_volume *volume;
361 struct key *key;
362
363 if (!ctx->dyn_root) {
364 if (ctx->no_cell) {
365 pr_warn("kAFS: Can only specify source 'none' with -o dyn\n");
366 return -EINVAL;
367 }
368
369 if (!ctx->cell) {
370 pr_warn("kAFS: No cell specified\n");
371 return -EDESTADDRREQ;
372 }
373
374 /* We try to do the mount securely. */
375 key = afs_request_key(ctx->cell);
376 if (IS_ERR(key))
377 return PTR_ERR(key);
378
379 ctx->key = key;
380
381 if (ctx->volume) {
382 afs_put_volume(ctx->cell, ctx->volume);
383 ctx->volume = NULL;
384 }
385
386 volume = afs_create_volume(ctx);
387 if (IS_ERR(volume))
388 return PTR_ERR(volume);
389
390 ctx->volume = volume;
391 }
392
393 return 0;
394}
395
396/*
397 * check a superblock to see if it's the one we're looking for
398 */
399static int afs_test_super(struct super_block *sb, struct fs_context *fc)
400{
401 struct afs_fs_context *ctx = fc->fs_private;
402 struct afs_super_info *as = AFS_FS_S(sb);
403
404 return (as->net_ns == fc->net_ns &&
405 as->volume &&
406 as->volume->vid == ctx->volume->vid &&
407 !as->dyn_root);
408}
409
410static int afs_dynroot_test_super(struct super_block *sb, struct fs_context *fc)
411{
412 struct afs_super_info *as = AFS_FS_S(sb);
413
414 return (as->net_ns == fc->net_ns &&
415 as->dyn_root);
416}
417
418static int afs_set_super(struct super_block *sb, struct fs_context *fc)
419{
420 return set_anon_super(sb, NULL);
421}
422
423/*
424 * fill in the superblock
425 */
426static int afs_fill_super(struct super_block *sb, struct afs_fs_context *ctx)
427{
428 struct afs_super_info *as = AFS_FS_S(sb);
429 struct afs_iget_data iget_data;
430 struct inode *inode = NULL;
431 int ret;
432
433 _enter("");
434
435 /* fill in the superblock */
436 sb->s_blocksize = PAGE_SIZE;
437 sb->s_blocksize_bits = PAGE_SHIFT;
438 sb->s_maxbytes = MAX_LFS_FILESIZE;
439 sb->s_magic = AFS_FS_MAGIC;
440 sb->s_op = &afs_super_ops;
441 if (!as->dyn_root)
442 sb->s_xattr = afs_xattr_handlers;
443 ret = super_setup_bdi(sb);
444 if (ret)
445 return ret;
446 sb->s_bdi->ra_pages = VM_READAHEAD_PAGES;
447
448 /* allocate the root inode and dentry */
449 if (as->dyn_root) {
450 inode = afs_iget_pseudo_dir(sb, true);
451 sb->s_flags |= SB_RDONLY;
452 } else {
453 sprintf(sb->s_id, "%llu", as->volume->vid);
454 afs_activate_volume(as->volume);
455 iget_data.fid.vid = as->volume->vid;
456 iget_data.fid.vnode = 1;
457 iget_data.fid.vnode_hi = 0;
458 iget_data.fid.unique = 1;
459 iget_data.cb_v_break = as->volume->cb_v_break;
460 iget_data.cb_s_break = 0;
461 inode = afs_iget(sb, ctx->key, &iget_data, NULL, NULL, NULL);
462 }
463
464 if (IS_ERR(inode))
465 return PTR_ERR(inode);
466
467 if (ctx->autocell || as->dyn_root)
468 set_bit(AFS_VNODE_AUTOCELL, &AFS_FS_I(inode)->flags);
469
470 ret = -ENOMEM;
471 sb->s_root = d_make_root(inode);
472 if (!sb->s_root)
473 goto error;
474
475 if (as->dyn_root) {
476 sb->s_d_op = &afs_dynroot_dentry_operations;
477 ret = afs_dynroot_populate(sb);
478 if (ret < 0)
479 goto error;
480 } else {
481 sb->s_d_op = &afs_fs_dentry_operations;
482 }
483
484 _leave(" = 0");
485 return 0;
486
487error:
488 _leave(" = %d", ret);
489 return ret;
490}
491
492static struct afs_super_info *afs_alloc_sbi(struct fs_context *fc)
493{
494 struct afs_fs_context *ctx = fc->fs_private;
495 struct afs_super_info *as;
496
497 as = kzalloc(sizeof(struct afs_super_info), GFP_KERNEL);
498 if (as) {
499 as->net_ns = get_net(fc->net_ns);
500 as->flock_mode = ctx->flock_mode;
501 if (ctx->dyn_root) {
502 as->dyn_root = true;
503 } else {
504 as->cell = afs_get_cell(ctx->cell);
505 as->volume = __afs_get_volume(ctx->volume);
506 }
507 }
508 return as;
509}
510
511static void afs_destroy_sbi(struct afs_super_info *as)
512{
513 if (as) {
514 afs_put_volume(as->cell, as->volume);
515 afs_put_cell(afs_net(as->net_ns), as->cell);
516 put_net(as->net_ns);
517 kfree(as);
518 }
519}
520
521static void afs_kill_super(struct super_block *sb)
522{
523 struct afs_super_info *as = AFS_FS_S(sb);
524 struct afs_net *net = afs_net(as->net_ns);
525
526 if (as->dyn_root)
527 afs_dynroot_depopulate(sb);
528
529 /* Clear the callback interests (which will do ilookup5) before
530 * deactivating the superblock.
531 */
532 if (as->volume)
533 afs_clear_callback_interests(net, as->volume->servers);
534 kill_anon_super(sb);
535 if (as->volume)
536 afs_deactivate_volume(as->volume);
537 afs_destroy_sbi(as);
538}
539
540/*
541 * Get an AFS superblock and root directory.
542 */
543static int afs_get_tree(struct fs_context *fc)
544{
545 struct afs_fs_context *ctx = fc->fs_private;
546 struct super_block *sb;
547 struct afs_super_info *as;
548 int ret;
549
550 ret = afs_validate_fc(fc);
551 if (ret)
552 goto error;
553
554 _enter("");
555
556 /* allocate a superblock info record */
557 ret = -ENOMEM;
558 as = afs_alloc_sbi(fc);
559 if (!as)
560 goto error;
561 fc->s_fs_info = as;
562
563 /* allocate a deviceless superblock */
564 sb = sget_fc(fc,
565 as->dyn_root ? afs_dynroot_test_super : afs_test_super,
566 afs_set_super);
567 if (IS_ERR(sb)) {
568 ret = PTR_ERR(sb);
569 goto error;
570 }
571
572 if (!sb->s_root) {
573 /* initial superblock/root creation */
574 _debug("create");
575 ret = afs_fill_super(sb, ctx);
576 if (ret < 0)
577 goto error_sb;
578 sb->s_flags |= SB_ACTIVE;
579 } else {
580 _debug("reuse");
581 ASSERTCMP(sb->s_flags, &, SB_ACTIVE);
582 }
583
584 fc->root = dget(sb->s_root);
585 trace_afs_get_tree(as->cell, as->volume);
586 _leave(" = 0 [%p]", sb);
587 return 0;
588
589error_sb:
590 deactivate_locked_super(sb);
591error:
592 _leave(" = %d", ret);
593 return ret;
594}
595
596static void afs_free_fc(struct fs_context *fc)
597{
598 struct afs_fs_context *ctx = fc->fs_private;
599
600 afs_destroy_sbi(fc->s_fs_info);
601 afs_put_volume(ctx->cell, ctx->volume);
602 afs_put_cell(ctx->net, ctx->cell);
603 key_put(ctx->key);
604 kfree(ctx);
605}
606
607static const struct fs_context_operations afs_context_ops = {
608 .free = afs_free_fc,
609 .parse_param = afs_parse_param,
610 .get_tree = afs_get_tree,
611};
612
613/*
614 * Set up the filesystem mount context.
615 */
616static int afs_init_fs_context(struct fs_context *fc)
617{
618 struct afs_fs_context *ctx;
619 struct afs_cell *cell;
620
621 ctx = kzalloc(sizeof(struct afs_fs_context), GFP_KERNEL);
622 if (!ctx)
623 return -ENOMEM;
624
625 ctx->type = AFSVL_ROVOL;
626 ctx->net = afs_net(fc->net_ns);
627
628 /* Default to the workstation cell. */
629 rcu_read_lock();
630 cell = afs_lookup_cell_rcu(ctx->net, NULL, 0);
631 rcu_read_unlock();
632 if (IS_ERR(cell))
633 cell = NULL;
634 ctx->cell = cell;
635
636 fc->fs_private = ctx;
637 fc->ops = &afs_context_ops;
638 return 0;
639}
640
641/*
642 * Initialise an inode cache slab element prior to any use. Note that
643 * afs_alloc_inode() *must* reset anything that could incorrectly leak from one
644 * inode to another.
645 */
646static void afs_i_init_once(void *_vnode)
647{
648 struct afs_vnode *vnode = _vnode;
649
650 memset(vnode, 0, sizeof(*vnode));
651 inode_init_once(&vnode->vfs_inode);
652 mutex_init(&vnode->io_lock);
653 init_rwsem(&vnode->validate_lock);
654 spin_lock_init(&vnode->wb_lock);
655 spin_lock_init(&vnode->lock);
656 INIT_LIST_HEAD(&vnode->wb_keys);
657 INIT_LIST_HEAD(&vnode->pending_locks);
658 INIT_LIST_HEAD(&vnode->granted_locks);
659 INIT_DELAYED_WORK(&vnode->lock_work, afs_lock_work);
660 seqlock_init(&vnode->cb_lock);
661}
662
663/*
664 * allocate an AFS inode struct from our slab cache
665 */
666static struct inode *afs_alloc_inode(struct super_block *sb)
667{
668 struct afs_vnode *vnode;
669
670 vnode = kmem_cache_alloc(afs_inode_cachep, GFP_KERNEL);
671 if (!vnode)
672 return NULL;
673
674 atomic_inc(&afs_count_active_inodes);
675
676 /* Reset anything that shouldn't leak from one inode to the next. */
677 memset(&vnode->fid, 0, sizeof(vnode->fid));
678 memset(&vnode->status, 0, sizeof(vnode->status));
679
680 vnode->volume = NULL;
681 vnode->lock_key = NULL;
682 vnode->permit_cache = NULL;
683 RCU_INIT_POINTER(vnode->cb_interest, NULL);
684#ifdef CONFIG_AFS_FSCACHE
685 vnode->cache = NULL;
686#endif
687
688 vnode->flags = 1 << AFS_VNODE_UNSET;
689 vnode->lock_state = AFS_VNODE_LOCK_NONE;
690
691 init_rwsem(&vnode->rmdir_lock);
692
693 _leave(" = %p", &vnode->vfs_inode);
694 return &vnode->vfs_inode;
695}
696
697static void afs_free_inode(struct inode *inode)
698{
699 kmem_cache_free(afs_inode_cachep, AFS_FS_I(inode));
700}
701
702/*
703 * destroy an AFS inode struct
704 */
705static void afs_destroy_inode(struct inode *inode)
706{
707 struct afs_vnode *vnode = AFS_FS_I(inode);
708
709 _enter("%p{%llx:%llu}", inode, vnode->fid.vid, vnode->fid.vnode);
710
711 _debug("DESTROY INODE %p", inode);
712
713 ASSERTCMP(rcu_access_pointer(vnode->cb_interest), ==, NULL);
714
715 atomic_dec(&afs_count_active_inodes);
716}
717
718/*
719 * return information about an AFS volume
720 */
721static int afs_statfs(struct dentry *dentry, struct kstatfs *buf)
722{
723 struct afs_super_info *as = AFS_FS_S(dentry->d_sb);
724 struct afs_fs_cursor fc;
725 struct afs_volume_status vs;
726 struct afs_vnode *vnode = AFS_FS_I(d_inode(dentry));
727 struct key *key;
728 int ret;
729
730 buf->f_type = dentry->d_sb->s_magic;
731 buf->f_bsize = AFS_BLOCK_SIZE;
732 buf->f_namelen = AFSNAMEMAX - 1;
733
734 if (as->dyn_root) {
735 buf->f_blocks = 1;
736 buf->f_bavail = 0;
737 buf->f_bfree = 0;
738 return 0;
739 }
740
741 key = afs_request_key(vnode->volume->cell);
742 if (IS_ERR(key))
743 return PTR_ERR(key);
744
745 ret = -ERESTARTSYS;
746 if (afs_begin_vnode_operation(&fc, vnode, key, true)) {
747 fc.flags |= AFS_FS_CURSOR_NO_VSLEEP;
748 while (afs_select_fileserver(&fc)) {
749 fc.cb_break = afs_calc_vnode_cb_break(vnode);
750 afs_fs_get_volume_status(&fc, &vs);
751 }
752
753 afs_check_for_remote_deletion(&fc, fc.vnode);
754 ret = afs_end_vnode_operation(&fc);
755 }
756
757 key_put(key);
758
759 if (ret == 0) {
760 if (vs.max_quota == 0)
761 buf->f_blocks = vs.part_max_blocks;
762 else
763 buf->f_blocks = vs.max_quota;
764 buf->f_bavail = buf->f_bfree = buf->f_blocks - vs.blocks_in_use;
765 }
766
767 return ret;
768}