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