GNU Linux-libre 5.4.257-gnu1
[releases.git] / fs / afs / super.c
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
32 static void afs_i_init_once(void *foo);
33 static void afs_kill_super(struct super_block *sb);
34 static struct inode *afs_alloc_inode(struct super_block *sb);
35 static void afs_destroy_inode(struct inode *inode);
36 static void afs_free_inode(struct inode *inode);
37 static int afs_statfs(struct dentry *dentry, struct kstatfs *buf);
38 static int afs_show_devname(struct seq_file *m, struct dentry *root);
39 static int afs_show_options(struct seq_file *m, struct dentry *root);
40 static int afs_init_fs_context(struct fs_context *fc);
41 static const struct fs_parameter_description afs_fs_parameters;
42
43 struct 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 };
51 MODULE_ALIAS_FS("afs");
52
53 int afs_net_id;
54
55 static 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
66 static struct kmem_cache *afs_inode_cachep;
67 static atomic_t afs_count_active_inodes;
68
69 enum afs_param {
70         Opt_autocell,
71         Opt_dyn,
72         Opt_flock,
73         Opt_source,
74 };
75
76 static 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
84 static 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
92 static 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  */
101 int __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  */
136 void 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  */
161 static 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  */
195 static 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  */
230 static 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 (fc->source)
240                 return invalf(fc, "kAFS: Multiple sources not supported");
241
242         if (!name) {
243                 printk(KERN_ERR "kAFS: no volume name specified\n");
244                 return -EINVAL;
245         }
246
247         if ((name[0] != '%' && name[0] != '#') || !name[1]) {
248                 /* To use dynroot, we don't want to have to provide a source */
249                 if (strcmp(name, "none") == 0) {
250                         ctx->no_cell = true;
251                         return 0;
252                 }
253                 printk(KERN_ERR "kAFS: unparsable volume name\n");
254                 return -EINVAL;
255         }
256
257         /* determine the type of volume we're looking for */
258         if (name[0] == '%') {
259                 ctx->type = AFSVL_RWVOL;
260                 ctx->force = true;
261         }
262         name++;
263
264         /* split the cell name out if there is one */
265         ctx->volname = strchr(name, ':');
266         if (ctx->volname) {
267                 cellname = name;
268                 cellnamesz = ctx->volname - name;
269                 ctx->volname++;
270         } else {
271                 ctx->volname = name;
272                 cellname = NULL;
273                 cellnamesz = 0;
274         }
275
276         /* the volume type is further affected by a possible suffix */
277         suffix = strrchr(ctx->volname, '.');
278         if (suffix) {
279                 if (strcmp(suffix, ".readonly") == 0) {
280                         ctx->type = AFSVL_ROVOL;
281                         ctx->force = true;
282                 } else if (strcmp(suffix, ".backup") == 0) {
283                         ctx->type = AFSVL_BACKVOL;
284                         ctx->force = true;
285                 } else if (suffix[1] == 0) {
286                 } else {
287                         suffix = NULL;
288                 }
289         }
290
291         ctx->volnamesz = suffix ?
292                 suffix - ctx->volname : strlen(ctx->volname);
293
294         _debug("cell %*.*s [%p]",
295                cellnamesz, cellnamesz, cellname ?: "", ctx->cell);
296
297         /* lookup the cell record */
298         if (cellname) {
299                 cell = afs_lookup_cell(ctx->net, cellname, cellnamesz,
300                                        NULL, false);
301                 if (IS_ERR(cell)) {
302                         pr_err("kAFS: unable to lookup cell '%*.*s'\n",
303                                cellnamesz, cellnamesz, cellname ?: "");
304                         return PTR_ERR(cell);
305                 }
306                 afs_put_cell(ctx->net, ctx->cell);
307                 ctx->cell = cell;
308         }
309
310         _debug("CELL:%s [%p] VOLUME:%*.*s SUFFIX:%s TYPE:%d%s",
311                ctx->cell->name, ctx->cell,
312                ctx->volnamesz, ctx->volnamesz, ctx->volname,
313                suffix ?: "-", ctx->type, ctx->force ? " FORCE" : "");
314
315         fc->source = param->string;
316         param->string = NULL;
317         return 0;
318 }
319
320 /*
321  * Parse a single mount parameter.
322  */
323 static int afs_parse_param(struct fs_context *fc, struct fs_parameter *param)
324 {
325         struct fs_parse_result result;
326         struct afs_fs_context *ctx = fc->fs_private;
327         int opt;
328
329         opt = fs_parse(fc, &afs_fs_parameters, param, &result);
330         if (opt < 0)
331                 return opt;
332
333         switch (opt) {
334         case Opt_source:
335                 return afs_parse_source(fc, param);
336
337         case Opt_autocell:
338                 ctx->autocell = true;
339                 break;
340
341         case Opt_dyn:
342                 ctx->dyn_root = true;
343                 break;
344
345         case Opt_flock:
346                 ctx->flock_mode = result.uint_32;
347                 break;
348
349         default:
350                 return -EINVAL;
351         }
352
353         _leave(" = 0");
354         return 0;
355 }
356
357 /*
358  * Validate the options, get the cell key and look up the volume.
359  */
360 static int afs_validate_fc(struct fs_context *fc)
361 {
362         struct afs_fs_context *ctx = fc->fs_private;
363         struct afs_volume *volume;
364         struct key *key;
365
366         if (!ctx->dyn_root) {
367                 if (ctx->no_cell) {
368                         pr_warn("kAFS: Can only specify source 'none' with -o dyn\n");
369                         return -EINVAL;
370                 }
371
372                 if (!ctx->cell) {
373                         pr_warn("kAFS: No cell specified\n");
374                         return -EDESTADDRREQ;
375                 }
376
377                 /* We try to do the mount securely. */
378                 key = afs_request_key(ctx->cell);
379                 if (IS_ERR(key))
380                         return PTR_ERR(key);
381
382                 ctx->key = key;
383
384                 if (ctx->volume) {
385                         afs_put_volume(ctx->cell, ctx->volume);
386                         ctx->volume = NULL;
387                 }
388
389                 volume = afs_create_volume(ctx);
390                 if (IS_ERR(volume))
391                         return PTR_ERR(volume);
392
393                 ctx->volume = volume;
394         }
395
396         return 0;
397 }
398
399 /*
400  * check a superblock to see if it's the one we're looking for
401  */
402 static int afs_test_super(struct super_block *sb, struct fs_context *fc)
403 {
404         struct afs_fs_context *ctx = fc->fs_private;
405         struct afs_super_info *as = AFS_FS_S(sb);
406
407         return (as->net_ns == fc->net_ns &&
408                 as->volume &&
409                 as->volume->vid == ctx->volume->vid &&
410                 as->cell == ctx->cell &&
411                 !as->dyn_root);
412 }
413
414 static int afs_dynroot_test_super(struct super_block *sb, struct fs_context *fc)
415 {
416         struct afs_super_info *as = AFS_FS_S(sb);
417
418         return (as->net_ns == fc->net_ns &&
419                 as->dyn_root);
420 }
421
422 static int afs_set_super(struct super_block *sb, struct fs_context *fc)
423 {
424         return set_anon_super(sb, NULL);
425 }
426
427 /*
428  * fill in the superblock
429  */
430 static int afs_fill_super(struct super_block *sb, struct afs_fs_context *ctx)
431 {
432         struct afs_super_info *as = AFS_FS_S(sb);
433         struct afs_iget_data iget_data;
434         struct inode *inode = NULL;
435         int ret;
436
437         _enter("");
438
439         /* fill in the superblock */
440         sb->s_blocksize         = PAGE_SIZE;
441         sb->s_blocksize_bits    = PAGE_SHIFT;
442         sb->s_maxbytes          = MAX_LFS_FILESIZE;
443         sb->s_magic             = AFS_FS_MAGIC;
444         sb->s_op                = &afs_super_ops;
445         if (!as->dyn_root)
446                 sb->s_xattr     = afs_xattr_handlers;
447         ret = super_setup_bdi(sb);
448         if (ret)
449                 return ret;
450         sb->s_bdi->ra_pages     = VM_READAHEAD_PAGES;
451
452         /* allocate the root inode and dentry */
453         if (as->dyn_root) {
454                 inode = afs_iget_pseudo_dir(sb, true);
455         } else {
456                 sprintf(sb->s_id, "%llu", as->volume->vid);
457                 afs_activate_volume(as->volume);
458                 iget_data.fid.vid       = as->volume->vid;
459                 iget_data.fid.vnode     = 1;
460                 iget_data.fid.vnode_hi  = 0;
461                 iget_data.fid.unique    = 1;
462                 iget_data.cb_v_break    = as->volume->cb_v_break;
463                 iget_data.cb_s_break    = 0;
464                 inode = afs_iget(sb, ctx->key, &iget_data, NULL, NULL, NULL);
465         }
466
467         if (IS_ERR(inode))
468                 return PTR_ERR(inode);
469
470         if (ctx->autocell || as->dyn_root)
471                 set_bit(AFS_VNODE_AUTOCELL, &AFS_FS_I(inode)->flags);
472
473         ret = -ENOMEM;
474         sb->s_root = d_make_root(inode);
475         if (!sb->s_root)
476                 goto error;
477
478         if (as->dyn_root) {
479                 sb->s_d_op = &afs_dynroot_dentry_operations;
480                 ret = afs_dynroot_populate(sb);
481                 if (ret < 0)
482                         goto error;
483         } else {
484                 sb->s_d_op = &afs_fs_dentry_operations;
485         }
486
487         _leave(" = 0");
488         return 0;
489
490 error:
491         _leave(" = %d", ret);
492         return ret;
493 }
494
495 static struct afs_super_info *afs_alloc_sbi(struct fs_context *fc)
496 {
497         struct afs_fs_context *ctx = fc->fs_private;
498         struct afs_super_info *as;
499
500         as = kzalloc(sizeof(struct afs_super_info), GFP_KERNEL);
501         if (as) {
502                 as->net_ns = get_net(fc->net_ns);
503                 as->flock_mode = ctx->flock_mode;
504                 if (ctx->dyn_root) {
505                         as->dyn_root = true;
506                 } else {
507                         as->cell = afs_get_cell(ctx->cell);
508                         as->volume = __afs_get_volume(ctx->volume);
509                 }
510         }
511         return as;
512 }
513
514 static void afs_destroy_sbi(struct afs_super_info *as)
515 {
516         if (as) {
517                 afs_put_volume(as->cell, as->volume);
518                 afs_put_cell(afs_net(as->net_ns), as->cell);
519                 put_net(as->net_ns);
520                 kfree(as);
521         }
522 }
523
524 static void afs_kill_super(struct super_block *sb)
525 {
526         struct afs_super_info *as = AFS_FS_S(sb);
527         struct afs_net *net = afs_net(as->net_ns);
528
529         if (as->dyn_root)
530                 afs_dynroot_depopulate(sb);
531
532         /* Clear the callback interests (which will do ilookup5) before
533          * deactivating the superblock.
534          */
535         if (as->volume)
536                 afs_clear_callback_interests(net, as->volume->servers);
537         kill_anon_super(sb);
538         if (as->volume)
539                 afs_deactivate_volume(as->volume);
540         afs_destroy_sbi(as);
541 }
542
543 /*
544  * Get an AFS superblock and root directory.
545  */
546 static int afs_get_tree(struct fs_context *fc)
547 {
548         struct afs_fs_context *ctx = fc->fs_private;
549         struct super_block *sb;
550         struct afs_super_info *as;
551         int ret;
552
553         ret = afs_validate_fc(fc);
554         if (ret)
555                 goto error;
556
557         _enter("");
558
559         /* allocate a superblock info record */
560         ret = -ENOMEM;
561         as = afs_alloc_sbi(fc);
562         if (!as)
563                 goto error;
564         fc->s_fs_info = as;
565
566         /* allocate a deviceless superblock */
567         sb = sget_fc(fc,
568                      as->dyn_root ? afs_dynroot_test_super : afs_test_super,
569                      afs_set_super);
570         if (IS_ERR(sb)) {
571                 ret = PTR_ERR(sb);
572                 goto error;
573         }
574
575         if (!sb->s_root) {
576                 /* initial superblock/root creation */
577                 _debug("create");
578                 ret = afs_fill_super(sb, ctx);
579                 if (ret < 0)
580                         goto error_sb;
581                 sb->s_flags |= SB_ACTIVE;
582         } else {
583                 _debug("reuse");
584                 ASSERTCMP(sb->s_flags, &, SB_ACTIVE);
585         }
586
587         fc->root = dget(sb->s_root);
588         trace_afs_get_tree(as->cell, as->volume);
589         _leave(" = 0 [%p]", sb);
590         return 0;
591
592 error_sb:
593         deactivate_locked_super(sb);
594 error:
595         _leave(" = %d", ret);
596         return ret;
597 }
598
599 static void afs_free_fc(struct fs_context *fc)
600 {
601         struct afs_fs_context *ctx = fc->fs_private;
602
603         afs_destroy_sbi(fc->s_fs_info);
604         afs_put_volume(ctx->cell, ctx->volume);
605         afs_put_cell(ctx->net, ctx->cell);
606         key_put(ctx->key);
607         kfree(ctx);
608 }
609
610 static const struct fs_context_operations afs_context_ops = {
611         .free           = afs_free_fc,
612         .parse_param    = afs_parse_param,
613         .get_tree       = afs_get_tree,
614 };
615
616 /*
617  * Set up the filesystem mount context.
618  */
619 static int afs_init_fs_context(struct fs_context *fc)
620 {
621         struct afs_fs_context *ctx;
622         struct afs_cell *cell;
623
624         ctx = kzalloc(sizeof(struct afs_fs_context), GFP_KERNEL);
625         if (!ctx)
626                 return -ENOMEM;
627
628         ctx->type = AFSVL_ROVOL;
629         ctx->net = afs_net(fc->net_ns);
630
631         /* Default to the workstation cell. */
632         rcu_read_lock();
633         cell = afs_lookup_cell_rcu(ctx->net, NULL, 0);
634         rcu_read_unlock();
635         if (IS_ERR(cell))
636                 cell = NULL;
637         ctx->cell = cell;
638
639         fc->fs_private = ctx;
640         fc->ops = &afs_context_ops;
641         return 0;
642 }
643
644 /*
645  * Initialise an inode cache slab element prior to any use.  Note that
646  * afs_alloc_inode() *must* reset anything that could incorrectly leak from one
647  * inode to another.
648  */
649 static void afs_i_init_once(void *_vnode)
650 {
651         struct afs_vnode *vnode = _vnode;
652
653         memset(vnode, 0, sizeof(*vnode));
654         inode_init_once(&vnode->vfs_inode);
655         mutex_init(&vnode->io_lock);
656         init_rwsem(&vnode->validate_lock);
657         spin_lock_init(&vnode->wb_lock);
658         spin_lock_init(&vnode->lock);
659         INIT_LIST_HEAD(&vnode->wb_keys);
660         INIT_LIST_HEAD(&vnode->pending_locks);
661         INIT_LIST_HEAD(&vnode->granted_locks);
662         INIT_DELAYED_WORK(&vnode->lock_work, afs_lock_work);
663         seqlock_init(&vnode->cb_lock);
664 }
665
666 /*
667  * allocate an AFS inode struct from our slab cache
668  */
669 static struct inode *afs_alloc_inode(struct super_block *sb)
670 {
671         struct afs_vnode *vnode;
672
673         vnode = kmem_cache_alloc(afs_inode_cachep, GFP_KERNEL);
674         if (!vnode)
675                 return NULL;
676
677         atomic_inc(&afs_count_active_inodes);
678
679         /* Reset anything that shouldn't leak from one inode to the next. */
680         memset(&vnode->fid, 0, sizeof(vnode->fid));
681         memset(&vnode->status, 0, sizeof(vnode->status));
682
683         vnode->volume           = NULL;
684         vnode->lock_key         = NULL;
685         vnode->permit_cache     = NULL;
686         RCU_INIT_POINTER(vnode->cb_interest, NULL);
687 #ifdef CONFIG_AFS_FSCACHE
688         vnode->cache            = NULL;
689 #endif
690
691         vnode->flags            = 1 << AFS_VNODE_UNSET;
692         vnode->lock_state       = AFS_VNODE_LOCK_NONE;
693
694         init_rwsem(&vnode->rmdir_lock);
695
696         _leave(" = %p", &vnode->vfs_inode);
697         return &vnode->vfs_inode;
698 }
699
700 static void afs_free_inode(struct inode *inode)
701 {
702         kmem_cache_free(afs_inode_cachep, AFS_FS_I(inode));
703 }
704
705 /*
706  * destroy an AFS inode struct
707  */
708 static void afs_destroy_inode(struct inode *inode)
709 {
710         struct afs_vnode *vnode = AFS_FS_I(inode);
711
712         _enter("%p{%llx:%llu}", inode, vnode->fid.vid, vnode->fid.vnode);
713
714         _debug("DESTROY INODE %p", inode);
715
716         ASSERTCMP(rcu_access_pointer(vnode->cb_interest), ==, NULL);
717
718         atomic_dec(&afs_count_active_inodes);
719 }
720
721 /*
722  * return information about an AFS volume
723  */
724 static int afs_statfs(struct dentry *dentry, struct kstatfs *buf)
725 {
726         struct afs_super_info *as = AFS_FS_S(dentry->d_sb);
727         struct afs_fs_cursor fc;
728         struct afs_volume_status vs;
729         struct afs_vnode *vnode = AFS_FS_I(d_inode(dentry));
730         struct key *key;
731         int ret;
732
733         buf->f_type     = dentry->d_sb->s_magic;
734         buf->f_bsize    = AFS_BLOCK_SIZE;
735         buf->f_namelen  = AFSNAMEMAX - 1;
736
737         if (as->dyn_root) {
738                 buf->f_blocks   = 1;
739                 buf->f_bavail   = 0;
740                 buf->f_bfree    = 0;
741                 return 0;
742         }
743
744         key = afs_request_key(vnode->volume->cell);
745         if (IS_ERR(key))
746                 return PTR_ERR(key);
747
748         ret = -ERESTARTSYS;
749         if (afs_begin_vnode_operation(&fc, vnode, key, true)) {
750                 fc.flags |= AFS_FS_CURSOR_NO_VSLEEP;
751                 while (afs_select_fileserver(&fc)) {
752                         fc.cb_break = afs_calc_vnode_cb_break(vnode);
753                         afs_fs_get_volume_status(&fc, &vs);
754                 }
755
756                 afs_check_for_remote_deletion(&fc, fc.vnode);
757                 ret = afs_end_vnode_operation(&fc);
758         }
759
760         key_put(key);
761
762         if (ret == 0) {
763                 if (vs.max_quota == 0)
764                         buf->f_blocks = vs.part_max_blocks;
765                 else
766                         buf->f_blocks = vs.max_quota;
767                 buf->f_bavail = buf->f_bfree = buf->f_blocks - vs.blocks_in_use;
768         }
769
770         return ret;
771 }