]>
Commit | Line | Data |
---|---|---|
ec26815a DH |
1 | /* AFS superblock handling |
2 | * | |
08e0e7c8 | 3 | * Copyright (c) 2002, 2007 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]> | |
ec26815a | 13 | * David Woodhouse <[email protected]> |
1da177e4 LT |
14 | * |
15 | */ | |
16 | ||
17 | #include <linux/kernel.h> | |
18 | #include <linux/module.h> | |
19 | #include <linux/init.h> | |
20 | #include <linux/slab.h> | |
21 | #include <linux/fs.h> | |
22 | #include <linux/pagemap.h> | |
80c72fe4 | 23 | #include <linux/parser.h> |
45222b9e | 24 | #include <linux/statfs.h> |
1da177e4 LT |
25 | #include "internal.h" |
26 | ||
27 | #define AFS_FS_MAGIC 0x6B414653 /* 'kAFS' */ | |
28 | ||
e18b890b | 29 | static void afs_i_init_once(void *foo, struct kmem_cache *cachep, |
1da177e4 | 30 | unsigned long flags); |
454e2398 DH |
31 | static int afs_get_sb(struct file_system_type *fs_type, |
32 | int flags, const char *dev_name, | |
33 | void *data, struct vfsmount *mnt); | |
1da177e4 | 34 | static struct inode *afs_alloc_inode(struct super_block *sb); |
1da177e4 | 35 | static void afs_put_super(struct super_block *sb); |
1da177e4 | 36 | static void afs_destroy_inode(struct inode *inode); |
45222b9e | 37 | static int afs_statfs(struct dentry *dentry, struct kstatfs *buf); |
1da177e4 | 38 | |
1f5ce9e9 | 39 | struct file_system_type afs_fs_type = { |
1da177e4 LT |
40 | .owner = THIS_MODULE, |
41 | .name = "afs", | |
42 | .get_sb = afs_get_sb, | |
43 | .kill_sb = kill_anon_super, | |
80c72fe4 | 44 | .fs_flags = 0, |
1da177e4 LT |
45 | }; |
46 | ||
ee9b6d61 | 47 | static const struct super_operations afs_super_ops = { |
45222b9e | 48 | .statfs = afs_statfs, |
1da177e4 | 49 | .alloc_inode = afs_alloc_inode, |
31143d5d | 50 | .write_inode = afs_write_inode, |
1da177e4 LT |
51 | .destroy_inode = afs_destroy_inode, |
52 | .clear_inode = afs_clear_inode, | |
08e0e7c8 | 53 | .umount_begin = afs_umount_begin, |
1da177e4 LT |
54 | .put_super = afs_put_super, |
55 | }; | |
56 | ||
e18b890b | 57 | static struct kmem_cache *afs_inode_cachep; |
1da177e4 LT |
58 | static atomic_t afs_count_active_inodes; |
59 | ||
80c72fe4 DH |
60 | enum { |
61 | afs_no_opt, | |
62 | afs_opt_cell, | |
63 | afs_opt_rwpath, | |
64 | afs_opt_vol, | |
65 | }; | |
66 | ||
31143d5d | 67 | static match_table_t afs_options_list = { |
80c72fe4 DH |
68 | { afs_opt_cell, "cell=%s" }, |
69 | { afs_opt_rwpath, "rwpath" }, | |
70 | { afs_opt_vol, "vol=%s" }, | |
71 | { afs_no_opt, NULL }, | |
72 | }; | |
73 | ||
1da177e4 LT |
74 | /* |
75 | * initialise the filesystem | |
76 | */ | |
77 | int __init afs_fs_init(void) | |
78 | { | |
79 | int ret; | |
80 | ||
81 | _enter(""); | |
82 | ||
1da177e4 LT |
83 | /* create ourselves an inode cache */ |
84 | atomic_set(&afs_count_active_inodes, 0); | |
85 | ||
86 | ret = -ENOMEM; | |
87 | afs_inode_cachep = kmem_cache_create("afs_inode_cache", | |
88 | sizeof(struct afs_vnode), | |
89 | 0, | |
90 | SLAB_HWCACHE_ALIGN, | |
91 | afs_i_init_once, | |
92 | NULL); | |
93 | if (!afs_inode_cachep) { | |
94 | printk(KERN_NOTICE "kAFS: Failed to allocate inode cache\n"); | |
95 | return ret; | |
96 | } | |
97 | ||
98 | /* now export our filesystem to lesser mortals */ | |
99 | ret = register_filesystem(&afs_fs_type); | |
100 | if (ret < 0) { | |
101 | kmem_cache_destroy(afs_inode_cachep); | |
08e0e7c8 | 102 | _leave(" = %d", ret); |
1da177e4 LT |
103 | return ret; |
104 | } | |
105 | ||
08e0e7c8 | 106 | _leave(" = 0"); |
1da177e4 | 107 | return 0; |
ec26815a | 108 | } |
1da177e4 | 109 | |
1da177e4 LT |
110 | /* |
111 | * clean up the filesystem | |
112 | */ | |
113 | void __exit afs_fs_exit(void) | |
114 | { | |
08e0e7c8 DH |
115 | _enter(""); |
116 | ||
117 | afs_mntpt_kill_timer(); | |
1da177e4 LT |
118 | unregister_filesystem(&afs_fs_type); |
119 | ||
120 | if (atomic_read(&afs_count_active_inodes) != 0) { | |
121 | printk("kAFS: %d active inode objects still present\n", | |
122 | atomic_read(&afs_count_active_inodes)); | |
123 | BUG(); | |
124 | } | |
125 | ||
126 | kmem_cache_destroy(afs_inode_cachep); | |
08e0e7c8 | 127 | _leave(""); |
ec26815a | 128 | } |
1da177e4 | 129 | |
1da177e4 LT |
130 | /* |
131 | * parse the mount options | |
132 | * - this function has been shamelessly adapted from the ext3 fs which | |
133 | * shamelessly adapted it from the msdos fs | |
134 | */ | |
00d3b7a4 DH |
135 | static int afs_parse_options(struct afs_mount_params *params, |
136 | char *options, const char **devname) | |
1da177e4 | 137 | { |
08e0e7c8 | 138 | struct afs_cell *cell; |
80c72fe4 DH |
139 | substring_t args[MAX_OPT_ARGS]; |
140 | char *p; | |
141 | int token; | |
1da177e4 LT |
142 | |
143 | _enter("%s", options); | |
144 | ||
145 | options[PAGE_SIZE - 1] = 0; | |
146 | ||
80c72fe4 DH |
147 | while ((p = strsep(&options, ","))) { |
148 | if (!*p) | |
149 | continue; | |
1da177e4 | 150 | |
80c72fe4 DH |
151 | token = match_token(p, afs_options_list, args); |
152 | switch (token) { | |
153 | case afs_opt_cell: | |
154 | cell = afs_cell_lookup(args[0].from, | |
155 | args[0].to - args[0].from); | |
08e0e7c8 DH |
156 | if (IS_ERR(cell)) |
157 | return PTR_ERR(cell); | |
00d3b7a4 DH |
158 | afs_put_cell(params->cell); |
159 | params->cell = cell; | |
80c72fe4 DH |
160 | break; |
161 | ||
162 | case afs_opt_rwpath: | |
163 | params->rwpath = 1; | |
164 | break; | |
165 | ||
166 | case afs_opt_vol: | |
167 | *devname = args[0].from; | |
168 | break; | |
169 | ||
170 | default: | |
171 | printk(KERN_ERR "kAFS:" | |
172 | " Unknown or invalid mount option: '%s'\n", p); | |
173 | return -EINVAL; | |
1da177e4 | 174 | } |
1da177e4 LT |
175 | } |
176 | ||
80c72fe4 DH |
177 | _leave(" = 0"); |
178 | return 0; | |
ec26815a | 179 | } |
1da177e4 | 180 | |
00d3b7a4 DH |
181 | /* |
182 | * parse a device name to get cell name, volume name, volume type and R/W | |
183 | * selector | |
184 | * - this can be one of the following: | |
185 | * "%[cell:]volume[.]" R/W volume | |
186 | * "#[cell:]volume[.]" R/O or R/W volume (rwpath=0), | |
187 | * or R/W (rwpath=1) volume | |
188 | * "%[cell:]volume.readonly" R/O volume | |
189 | * "#[cell:]volume.readonly" R/O volume | |
190 | * "%[cell:]volume.backup" Backup volume | |
191 | * "#[cell:]volume.backup" Backup volume | |
192 | */ | |
193 | static int afs_parse_device_name(struct afs_mount_params *params, | |
194 | const char *name) | |
195 | { | |
196 | struct afs_cell *cell; | |
197 | const char *cellname, *suffix; | |
198 | int cellnamesz; | |
199 | ||
200 | _enter(",%s", name); | |
201 | ||
202 | if (!name) { | |
203 | printk(KERN_ERR "kAFS: no volume name specified\n"); | |
204 | return -EINVAL; | |
205 | } | |
206 | ||
207 | if ((name[0] != '%' && name[0] != '#') || !name[1]) { | |
208 | printk(KERN_ERR "kAFS: unparsable volume name\n"); | |
209 | return -EINVAL; | |
210 | } | |
211 | ||
212 | /* determine the type of volume we're looking for */ | |
213 | params->type = AFSVL_ROVOL; | |
214 | params->force = false; | |
215 | if (params->rwpath || name[0] == '%') { | |
216 | params->type = AFSVL_RWVOL; | |
217 | params->force = true; | |
218 | } | |
219 | name++; | |
220 | ||
221 | /* split the cell name out if there is one */ | |
222 | params->volname = strchr(name, ':'); | |
223 | if (params->volname) { | |
224 | cellname = name; | |
225 | cellnamesz = params->volname - name; | |
226 | params->volname++; | |
227 | } else { | |
228 | params->volname = name; | |
229 | cellname = NULL; | |
230 | cellnamesz = 0; | |
231 | } | |
232 | ||
233 | /* the volume type is further affected by a possible suffix */ | |
234 | suffix = strrchr(params->volname, '.'); | |
235 | if (suffix) { | |
236 | if (strcmp(suffix, ".readonly") == 0) { | |
237 | params->type = AFSVL_ROVOL; | |
238 | params->force = true; | |
239 | } else if (strcmp(suffix, ".backup") == 0) { | |
240 | params->type = AFSVL_BACKVOL; | |
241 | params->force = true; | |
242 | } else if (suffix[1] == 0) { | |
243 | } else { | |
244 | suffix = NULL; | |
245 | } | |
246 | } | |
247 | ||
248 | params->volnamesz = suffix ? | |
249 | suffix - params->volname : strlen(params->volname); | |
250 | ||
251 | _debug("cell %*.*s [%p]", | |
252 | cellnamesz, cellnamesz, cellname ?: "", params->cell); | |
253 | ||
254 | /* lookup the cell record */ | |
255 | if (cellname || !params->cell) { | |
256 | cell = afs_cell_lookup(cellname, cellnamesz); | |
257 | if (IS_ERR(cell)) { | |
258 | printk(KERN_ERR "kAFS: unable to lookup cell '%s'\n", | |
259 | cellname ?: ""); | |
260 | return PTR_ERR(cell); | |
261 | } | |
262 | afs_put_cell(params->cell); | |
263 | params->cell = cell; | |
264 | } | |
265 | ||
266 | _debug("CELL:%s [%p] VOLUME:%*.*s SUFFIX:%s TYPE:%d%s", | |
267 | params->cell->name, params->cell, | |
268 | params->volnamesz, params->volnamesz, params->volname, | |
269 | suffix ?: "-", params->type, params->force ? " FORCE" : ""); | |
270 | ||
271 | return 0; | |
272 | } | |
273 | ||
1da177e4 LT |
274 | /* |
275 | * check a superblock to see if it's the one we're looking for | |
276 | */ | |
277 | static int afs_test_super(struct super_block *sb, void *data) | |
278 | { | |
279 | struct afs_mount_params *params = data; | |
280 | struct afs_super_info *as = sb->s_fs_info; | |
281 | ||
282 | return as->volume == params->volume; | |
ec26815a | 283 | } |
1da177e4 | 284 | |
1da177e4 LT |
285 | /* |
286 | * fill in the superblock | |
287 | */ | |
436058a4 | 288 | static int afs_fill_super(struct super_block *sb, void *data) |
1da177e4 LT |
289 | { |
290 | struct afs_mount_params *params = data; | |
291 | struct afs_super_info *as = NULL; | |
292 | struct afs_fid fid; | |
293 | struct dentry *root = NULL; | |
294 | struct inode *inode = NULL; | |
295 | int ret; | |
296 | ||
08e0e7c8 | 297 | _enter(""); |
1da177e4 LT |
298 | |
299 | /* allocate a superblock info record */ | |
b593e48d | 300 | as = kzalloc(sizeof(struct afs_super_info), GFP_KERNEL); |
1da177e4 LT |
301 | if (!as) { |
302 | _leave(" = -ENOMEM"); | |
303 | return -ENOMEM; | |
304 | } | |
305 | ||
1da177e4 LT |
306 | afs_get_volume(params->volume); |
307 | as->volume = params->volume; | |
308 | ||
309 | /* fill in the superblock */ | |
310 | sb->s_blocksize = PAGE_CACHE_SIZE; | |
311 | sb->s_blocksize_bits = PAGE_CACHE_SHIFT; | |
312 | sb->s_magic = AFS_FS_MAGIC; | |
313 | sb->s_op = &afs_super_ops; | |
314 | sb->s_fs_info = as; | |
315 | ||
316 | /* allocate the root inode and dentry */ | |
317 | fid.vid = as->volume->vid; | |
318 | fid.vnode = 1; | |
319 | fid.unique = 1; | |
260a9803 | 320 | inode = afs_iget(sb, params->key, &fid, NULL, NULL); |
08e0e7c8 DH |
321 | if (IS_ERR(inode)) |
322 | goto error_inode; | |
1da177e4 LT |
323 | |
324 | ret = -ENOMEM; | |
325 | root = d_alloc_root(inode); | |
326 | if (!root) | |
327 | goto error; | |
328 | ||
329 | sb->s_root = root; | |
330 | ||
08e0e7c8 | 331 | _leave(" = 0"); |
1da177e4 LT |
332 | return 0; |
333 | ||
08e0e7c8 DH |
334 | error_inode: |
335 | ret = PTR_ERR(inode); | |
336 | inode = NULL; | |
ec26815a | 337 | error: |
1da177e4 LT |
338 | iput(inode); |
339 | afs_put_volume(as->volume); | |
340 | kfree(as); | |
341 | ||
342 | sb->s_fs_info = NULL; | |
343 | ||
08e0e7c8 | 344 | _leave(" = %d", ret); |
1da177e4 | 345 | return ret; |
ec26815a | 346 | } |
1da177e4 | 347 | |
1da177e4 LT |
348 | /* |
349 | * get an AFS superblock | |
1da177e4 | 350 | */ |
454e2398 DH |
351 | static int afs_get_sb(struct file_system_type *fs_type, |
352 | int flags, | |
353 | const char *dev_name, | |
354 | void *options, | |
355 | struct vfsmount *mnt) | |
1da177e4 LT |
356 | { |
357 | struct afs_mount_params params; | |
358 | struct super_block *sb; | |
08e0e7c8 | 359 | struct afs_volume *vol; |
00d3b7a4 | 360 | struct key *key; |
1da177e4 LT |
361 | int ret; |
362 | ||
363 | _enter(",,%s,%p", dev_name, options); | |
364 | ||
365 | memset(¶ms, 0, sizeof(params)); | |
366 | ||
00d3b7a4 | 367 | /* parse the options and device name */ |
1da177e4 | 368 | if (options) { |
00d3b7a4 | 369 | ret = afs_parse_options(¶ms, options, &dev_name); |
1da177e4 LT |
370 | if (ret < 0) |
371 | goto error; | |
1da177e4 LT |
372 | } |
373 | ||
00d3b7a4 DH |
374 | ret = afs_parse_device_name(¶ms, dev_name); |
375 | if (ret < 0) | |
376 | goto error; | |
377 | ||
378 | /* try and do the mount securely */ | |
379 | key = afs_request_key(params.cell); | |
380 | if (IS_ERR(key)) { | |
381 | _leave(" = %ld [key]", PTR_ERR(key)); | |
382 | ret = PTR_ERR(key); | |
383 | goto error; | |
384 | } | |
385 | params.key = key; | |
386 | ||
1da177e4 | 387 | /* parse the device name */ |
00d3b7a4 | 388 | vol = afs_volume_lookup(¶ms); |
08e0e7c8 DH |
389 | if (IS_ERR(vol)) { |
390 | ret = PTR_ERR(vol); | |
1da177e4 | 391 | goto error; |
08e0e7c8 | 392 | } |
08e0e7c8 | 393 | params.volume = vol; |
1da177e4 LT |
394 | |
395 | /* allocate a deviceless superblock */ | |
396 | sb = sget(fs_type, afs_test_super, set_anon_super, ¶ms); | |
08e0e7c8 DH |
397 | if (IS_ERR(sb)) { |
398 | ret = PTR_ERR(sb); | |
1da177e4 | 399 | goto error; |
08e0e7c8 | 400 | } |
1da177e4 | 401 | |
436058a4 DH |
402 | if (!sb->s_root) { |
403 | /* initial superblock/root creation */ | |
404 | _debug("create"); | |
405 | sb->s_flags = flags; | |
406 | ret = afs_fill_super(sb, ¶ms); | |
407 | if (ret < 0) { | |
408 | up_write(&sb->s_umount); | |
409 | deactivate_super(sb); | |
410 | goto error; | |
411 | } | |
412 | sb->s_flags |= MS_ACTIVE; | |
413 | } else { | |
414 | _debug("reuse"); | |
415 | ASSERTCMP(sb->s_flags, &, MS_ACTIVE); | |
1da177e4 | 416 | } |
1da177e4 | 417 | |
436058a4 | 418 | simple_set_mnt(mnt, sb); |
1da177e4 | 419 | afs_put_volume(params.volume); |
00d3b7a4 | 420 | afs_put_cell(params.cell); |
08e0e7c8 | 421 | _leave(" = 0 [%p]", sb); |
454e2398 | 422 | return 0; |
1da177e4 | 423 | |
ec26815a | 424 | error: |
1da177e4 | 425 | afs_put_volume(params.volume); |
00d3b7a4 DH |
426 | afs_put_cell(params.cell); |
427 | key_put(params.key); | |
1da177e4 | 428 | _leave(" = %d", ret); |
454e2398 | 429 | return ret; |
ec26815a | 430 | } |
1da177e4 | 431 | |
1da177e4 LT |
432 | /* |
433 | * finish the unmounting process on the superblock | |
434 | */ | |
435 | static void afs_put_super(struct super_block *sb) | |
436 | { | |
437 | struct afs_super_info *as = sb->s_fs_info; | |
438 | ||
439 | _enter(""); | |
440 | ||
441 | afs_put_volume(as->volume); | |
1da177e4 LT |
442 | |
443 | _leave(""); | |
ec26815a | 444 | } |
1da177e4 | 445 | |
1da177e4 LT |
446 | /* |
447 | * initialise an inode cache slab element prior to any use | |
448 | */ | |
e18b890b | 449 | static void afs_i_init_once(void *_vnode, struct kmem_cache *cachep, |
1da177e4 LT |
450 | unsigned long flags) |
451 | { | |
ec26815a | 452 | struct afs_vnode *vnode = _vnode; |
1da177e4 | 453 | |
50953fe9 | 454 | if (flags & SLAB_CTOR_CONSTRUCTOR) { |
1da177e4 LT |
455 | memset(vnode, 0, sizeof(*vnode)); |
456 | inode_init_once(&vnode->vfs_inode); | |
457 | init_waitqueue_head(&vnode->update_waitq); | |
00d3b7a4 | 458 | mutex_init(&vnode->permits_lock); |
260a9803 | 459 | mutex_init(&vnode->validate_lock); |
31143d5d | 460 | spin_lock_init(&vnode->writeback_lock); |
1da177e4 | 461 | spin_lock_init(&vnode->lock); |
31143d5d | 462 | INIT_LIST_HEAD(&vnode->writebacks); |
08e0e7c8 | 463 | INIT_WORK(&vnode->cb_broken_work, afs_broken_callback_work); |
1da177e4 | 464 | } |
ec26815a | 465 | } |
1da177e4 | 466 | |
1da177e4 LT |
467 | /* |
468 | * allocate an AFS inode struct from our slab cache | |
469 | */ | |
470 | static struct inode *afs_alloc_inode(struct super_block *sb) | |
471 | { | |
472 | struct afs_vnode *vnode; | |
473 | ||
ec26815a | 474 | vnode = kmem_cache_alloc(afs_inode_cachep, GFP_KERNEL); |
1da177e4 LT |
475 | if (!vnode) |
476 | return NULL; | |
477 | ||
478 | atomic_inc(&afs_count_active_inodes); | |
479 | ||
480 | memset(&vnode->fid, 0, sizeof(vnode->fid)); | |
481 | memset(&vnode->status, 0, sizeof(vnode->status)); | |
482 | ||
483 | vnode->volume = NULL; | |
484 | vnode->update_cnt = 0; | |
260a9803 | 485 | vnode->flags = 1 << AFS_VNODE_UNSET; |
08e0e7c8 | 486 | vnode->cb_promised = false; |
1da177e4 | 487 | |
0f300ca9 | 488 | _leave(" = %p", &vnode->vfs_inode); |
1da177e4 | 489 | return &vnode->vfs_inode; |
ec26815a | 490 | } |
1da177e4 | 491 | |
1da177e4 LT |
492 | /* |
493 | * destroy an AFS inode struct | |
494 | */ | |
495 | static void afs_destroy_inode(struct inode *inode) | |
496 | { | |
08e0e7c8 DH |
497 | struct afs_vnode *vnode = AFS_FS_I(inode); |
498 | ||
0f300ca9 | 499 | _enter("%p{%x:%u}", inode, vnode->fid.vid, vnode->fid.vnode); |
1da177e4 | 500 | |
08e0e7c8 DH |
501 | _debug("DESTROY INODE %p", inode); |
502 | ||
503 | ASSERTCMP(vnode->server, ==, NULL); | |
504 | ||
505 | kmem_cache_free(afs_inode_cachep, vnode); | |
1da177e4 | 506 | atomic_dec(&afs_count_active_inodes); |
ec26815a | 507 | } |
45222b9e DH |
508 | |
509 | /* | |
510 | * return information about an AFS volume | |
511 | */ | |
512 | static int afs_statfs(struct dentry *dentry, struct kstatfs *buf) | |
513 | { | |
514 | struct afs_volume_status vs; | |
515 | struct afs_vnode *vnode = AFS_FS_I(dentry->d_inode); | |
516 | struct key *key; | |
517 | int ret; | |
518 | ||
519 | key = afs_request_key(vnode->volume->cell); | |
520 | if (IS_ERR(key)) | |
521 | return PTR_ERR(key); | |
522 | ||
523 | ret = afs_vnode_get_volume_status(vnode, key, &vs); | |
524 | key_put(key); | |
525 | if (ret < 0) { | |
526 | _leave(" = %d", ret); | |
527 | return ret; | |
528 | } | |
529 | ||
530 | buf->f_type = dentry->d_sb->s_magic; | |
531 | buf->f_bsize = AFS_BLOCK_SIZE; | |
532 | buf->f_namelen = AFSNAMEMAX - 1; | |
533 | ||
534 | if (vs.max_quota == 0) | |
535 | buf->f_blocks = vs.part_max_blocks; | |
536 | else | |
537 | buf->f_blocks = vs.max_quota; | |
538 | buf->f_bavail = buf->f_bfree = buf->f_blocks - vs.blocks_in_use; | |
539 | return 0; | |
540 | } |