]> bbs.cooldavid.org Git - net-next-2.6.git/blame - fs/affs/super.c
BKL: Explicitly add BKL around get_sb/fill_super
[net-next-2.6.git] / fs / affs / super.c
CommitLineData
1da177e4
LT
1/*
2 * linux/fs/affs/inode.c
3 *
4 * (c) 1996 Hans-Joachim Widmaier - Rewritten
5 *
6 * (C) 1993 Ray Burr - Modified for Amiga FFS filesystem.
7 *
8 * (C) 1992 Eric Youngdale Modified for ISO 9660 filesystem.
9 *
10 * (C) 1991 Linus Torvalds - minix filesystem
11 */
12
13#include <linux/module.h>
14#include <linux/init.h>
15#include <linux/statfs.h>
16#include <linux/parser.h>
e18fa700 17#include <linux/magic.h>
e8edc6e0 18#include <linux/sched.h>
337eb00a 19#include <linux/smp_lock.h>
5a0e3ad6 20#include <linux/slab.h>
1da177e4
LT
21#include "affs.h"
22
23extern struct timezone sys_tz;
24
726c3342 25static int affs_statfs(struct dentry *dentry, struct kstatfs *buf);
1da177e4
LT
26static int affs_remount (struct super_block *sb, int *flags, char *data);
27
e2896436 28static void
7435d506 29affs_commit_super(struct super_block *sb, int wait, int clean)
e2896436
CH
30{
31 struct affs_sb_info *sbi = AFFS_SB(sb);
32 struct buffer_head *bh = sbi->s_root_bh;
33 struct affs_root_tail *tail = AFFS_ROOT_TAIL(sb, bh);
34
35 tail->bm_flag = cpu_to_be32(clean);
36 secs_to_datestamp(get_seconds(), &tail->disk_change);
37 affs_fix_checksum(sb, bh);
38 mark_buffer_dirty(bh);
7435d506
AB
39 if (wait)
40 sync_dirty_buffer(bh);
e2896436
CH
41}
42
1da177e4
LT
43static void
44affs_put_super(struct super_block *sb)
45{
46 struct affs_sb_info *sbi = AFFS_SB(sb);
47 pr_debug("AFFS: put_super()\n");
48
6cfd0148
CH
49 lock_kernel();
50
7435d506
AB
51 if (!(sb->s_flags & MS_RDONLY) && sb->s_dirt)
52 affs_commit_super(sb, 1, 1);
1da177e4 53
f99d49ad 54 kfree(sbi->s_prefix);
1da177e4
LT
55 affs_free_bitmap(sb);
56 affs_brelse(sbi->s_root_bh);
57 kfree(sbi);
58 sb->s_fs_info = NULL;
6cfd0148
CH
59
60 unlock_kernel();
1da177e4
LT
61}
62
63static void
64affs_write_super(struct super_block *sb)
65{
ebc1ac16 66 lock_super(sb);
669d5f1f 67 if (!(sb->s_flags & MS_RDONLY))
7435d506 68 affs_commit_super(sb, 1, 2);
669d5f1f 69 sb->s_dirt = 0;
ebc1ac16 70 unlock_super(sb);
1da177e4 71
669d5f1f 72 pr_debug("AFFS: write_super() at %lu, clean=2\n", get_seconds());
1da177e4
LT
73}
74
e2896436
CH
75static int
76affs_sync_fs(struct super_block *sb, int wait)
77{
78 lock_super(sb);
7435d506 79 affs_commit_super(sb, wait, 2);
e2896436
CH
80 sb->s_dirt = 0;
81 unlock_super(sb);
82 return 0;
83}
84
e18b890b 85static struct kmem_cache * affs_inode_cachep;
1da177e4
LT
86
87static struct inode *affs_alloc_inode(struct super_block *sb)
88{
dca3c336
RZ
89 struct affs_inode_info *i;
90
91 i = kmem_cache_alloc(affs_inode_cachep, GFP_KERNEL);
92 if (!i)
1da177e4 93 return NULL;
dca3c336
RZ
94
95 i->vfs_inode.i_version = 1;
96 i->i_lc = NULL;
97 i->i_ext_bh = NULL;
98 i->i_pa_cnt = 0;
99
100 return &i->vfs_inode;
1da177e4
LT
101}
102
103static void affs_destroy_inode(struct inode *inode)
104{
105 kmem_cache_free(affs_inode_cachep, AFFS_I(inode));
106}
107
51cc5068 108static void init_once(void *foo)
1da177e4
LT
109{
110 struct affs_inode_info *ei = (struct affs_inode_info *) foo;
111
a35afb83
CL
112 init_MUTEX(&ei->i_link_lock);
113 init_MUTEX(&ei->i_ext_lock);
114 inode_init_once(&ei->vfs_inode);
1da177e4
LT
115}
116
117static int init_inodecache(void)
118{
119 affs_inode_cachep = kmem_cache_create("affs_inode_cache",
120 sizeof(struct affs_inode_info),
fffb60f9
PJ
121 0, (SLAB_RECLAIM_ACCOUNT|
122 SLAB_MEM_SPREAD),
20c2df83 123 init_once);
1da177e4
LT
124 if (affs_inode_cachep == NULL)
125 return -ENOMEM;
126 return 0;
127}
128
129static void destroy_inodecache(void)
130{
1a1d92c1 131 kmem_cache_destroy(affs_inode_cachep);
1da177e4
LT
132}
133
ee9b6d61 134static const struct super_operations affs_sops = {
1da177e4
LT
135 .alloc_inode = affs_alloc_inode,
136 .destroy_inode = affs_destroy_inode,
1da177e4 137 .write_inode = affs_write_inode,
f053ddde 138 .evict_inode = affs_evict_inode,
1da177e4
LT
139 .put_super = affs_put_super,
140 .write_super = affs_write_super,
e2896436 141 .sync_fs = affs_sync_fs,
1da177e4
LT
142 .statfs = affs_statfs,
143 .remount_fs = affs_remount,
e9b3961b 144 .show_options = generic_show_options,
1da177e4
LT
145};
146
147enum {
148 Opt_bs, Opt_mode, Opt_mufs, Opt_prefix, Opt_protect,
149 Opt_reserved, Opt_root, Opt_setgid, Opt_setuid,
150 Opt_verbose, Opt_volume, Opt_ignore, Opt_err,
151};
152
a447c093 153static const match_table_t tokens = {
1da177e4
LT
154 {Opt_bs, "bs=%u"},
155 {Opt_mode, "mode=%o"},
156 {Opt_mufs, "mufs"},
157 {Opt_prefix, "prefix=%s"},
158 {Opt_protect, "protect"},
159 {Opt_reserved, "reserved=%u"},
160 {Opt_root, "root=%u"},
161 {Opt_setgid, "setgid=%u"},
162 {Opt_setuid, "setuid=%u"},
163 {Opt_verbose, "verbose"},
164 {Opt_volume, "volume=%s"},
165 {Opt_ignore, "grpquota"},
166 {Opt_ignore, "noquota"},
167 {Opt_ignore, "quota"},
168 {Opt_ignore, "usrquota"},
169 {Opt_err, NULL},
170};
171
172static int
173parse_options(char *options, uid_t *uid, gid_t *gid, int *mode, int *reserved, s32 *root,
174 int *blocksize, char **prefix, char *volume, unsigned long *mount_opts)
175{
176 char *p;
177 substring_t args[MAX_OPT_ARGS];
178
179 /* Fill in defaults */
180
21559981
DH
181 *uid = current_uid();
182 *gid = current_gid();
1da177e4
LT
183 *reserved = 2;
184 *root = -1;
185 *blocksize = -1;
186 volume[0] = ':';
187 volume[1] = 0;
188 *mount_opts = 0;
189 if (!options)
190 return 1;
191
192 while ((p = strsep(&options, ",")) != NULL) {
193 int token, n, option;
194 if (!*p)
195 continue;
196
197 token = match_token(p, tokens, args);
198 switch (token) {
199 case Opt_bs:
200 if (match_int(&args[0], &n))
217686e9 201 return 0;
1da177e4
LT
202 if (n != 512 && n != 1024 && n != 2048
203 && n != 4096) {
204 printk ("AFFS: Invalid blocksize (512, 1024, 2048, 4096 allowed)\n");
205 return 0;
206 }
207 *blocksize = n;
208 break;
209 case Opt_mode:
210 if (match_octal(&args[0], &option))
217686e9 211 return 0;
1da177e4
LT
212 *mode = option & 0777;
213 *mount_opts |= SF_SETMODE;
214 break;
215 case Opt_mufs:
216 *mount_opts |= SF_MUFS;
217 break;
218 case Opt_prefix:
1da177e4
LT
219 *prefix = match_strdup(&args[0]);
220 if (!*prefix)
221 return 0;
222 *mount_opts |= SF_PREFIX;
223 break;
224 case Opt_protect:
225 *mount_opts |= SF_IMMUTABLE;
226 break;
227 case Opt_reserved:
228 if (match_int(&args[0], reserved))
217686e9 229 return 0;
1da177e4
LT
230 break;
231 case Opt_root:
232 if (match_int(&args[0], root))
217686e9 233 return 0;
1da177e4
LT
234 break;
235 case Opt_setgid:
236 if (match_int(&args[0], &option))
217686e9 237 return 0;
1da177e4
LT
238 *gid = option;
239 *mount_opts |= SF_SETGID;
240 break;
241 case Opt_setuid:
242 if (match_int(&args[0], &option))
217686e9 243 return 0;
1da177e4
LT
244 *uid = option;
245 *mount_opts |= SF_SETUID;
246 break;
247 case Opt_verbose:
248 *mount_opts |= SF_VERBOSE;
249 break;
250 case Opt_volume: {
251 char *vol = match_strdup(&args[0]);
6db27dd9
JM
252 if (!vol)
253 return 0;
1da177e4
LT
254 strlcpy(volume, vol, 32);
255 kfree(vol);
256 break;
257 }
258 case Opt_ignore:
259 /* Silently ignore the quota options */
260 break;
261 default:
262 printk("AFFS: Unrecognized mount option \"%s\" "
263 "or missing value\n", p);
264 return 0;
265 }
266 }
267 return 1;
268}
269
270/* This function definitely needs to be split up. Some fine day I'll
271 * hopefully have the guts to do so. Until then: sorry for the mess.
272 */
273
274static int affs_fill_super(struct super_block *sb, void *data, int silent)
275{
276 struct affs_sb_info *sbi;
277 struct buffer_head *root_bh = NULL;
278 struct buffer_head *boot_bh;
279 struct inode *root_inode = NULL;
280 s32 root_block;
281 int size, blocksize;
282 u32 chksum;
283 int num_bm;
284 int i, j;
285 s32 key;
286 uid_t uid;
287 gid_t gid;
288 int reserved;
289 unsigned long mount_flags;
290 int tmp_flags; /* fix remount prototype... */
2b943cf0 291 u8 sig[4];
210f8559 292 int ret = -EINVAL;
1da177e4 293
db719222
JB
294 lock_kernel();
295
e9b3961b
MS
296 save_mount_options(sb, data);
297
1da177e4
LT
298 pr_debug("AFFS: read_super(%s)\n",data ? (const char *)data : "no options");
299
300 sb->s_magic = AFFS_SUPER_MAGIC;
301 sb->s_op = &affs_sops;
302 sb->s_flags |= MS_NODIRATIME;
303
f8314dc6 304 sbi = kzalloc(sizeof(struct affs_sb_info), GFP_KERNEL);
db719222
JB
305 if (!sbi) {
306 unlock_kernel();
1da177e4 307 return -ENOMEM;
db719222 308 }
1da177e4 309 sb->s_fs_info = sbi;
7d135a5d 310 mutex_init(&sbi->s_bmlock);
29333920 311 spin_lock_init(&sbi->symlink_lock);
1da177e4
LT
312
313 if (!parse_options(data,&uid,&gid,&i,&reserved,&root_block,
314 &blocksize,&sbi->s_prefix,
315 sbi->s_volume, &mount_flags)) {
316 printk(KERN_ERR "AFFS: Error parsing options\n");
afc70ed0
AV
317 kfree(sbi->s_prefix);
318 kfree(sbi);
db719222 319 unlock_kernel();
1da177e4
LT
320 return -EINVAL;
321 }
322 /* N.B. after this point s_prefix must be released */
323
324 sbi->s_flags = mount_flags;
325 sbi->s_mode = i;
326 sbi->s_uid = uid;
327 sbi->s_gid = gid;
328 sbi->s_reserved= reserved;
329
330 /* Get the size of the device in 512-byte blocks.
331 * If we later see that the partition uses bigger
332 * blocks, we will have to change it.
333 */
334
335 size = sb->s_bdev->bd_inode->i_size >> 9;
336 pr_debug("AFFS: initial blocksize=%d, #blocks=%d\n", 512, size);
337
338 affs_set_blocksize(sb, PAGE_SIZE);
339 /* Try to find root block. Its location depends on the block size. */
340
341 i = 512;
342 j = 4096;
343 if (blocksize > 0) {
344 i = j = blocksize;
345 size = size / (blocksize / 512);
346 }
347 for (blocksize = i, key = 0; blocksize <= j; blocksize <<= 1, size >>= 1) {
348 sbi->s_root_block = root_block;
349 if (root_block < 0)
350 sbi->s_root_block = (reserved + size - 1) / 2;
351 pr_debug("AFFS: setting blocksize to %d\n", blocksize);
352 affs_set_blocksize(sb, blocksize);
353 sbi->s_partition_size = size;
354
355 /* The root block location that was calculated above is not
356 * correct if the partition size is an odd number of 512-
357 * byte blocks, which will be rounded down to a number of
358 * 1024-byte blocks, and if there were an even number of
359 * reserved blocks. Ideally, all partition checkers should
360 * report the real number of blocks of the real blocksize,
361 * but since this just cannot be done, we have to try to
362 * find the root block anyways. In the above case, it is one
363 * block behind the calculated one. So we check this one, too.
364 */
365 for (num_bm = 0; num_bm < 2; num_bm++) {
366 pr_debug("AFFS: Dev %s, trying root=%u, bs=%d, "
367 "size=%d, reserved=%d\n",
368 sb->s_id,
369 sbi->s_root_block + num_bm,
370 blocksize, size, reserved);
371 root_bh = affs_bread(sb, sbi->s_root_block + num_bm);
372 if (!root_bh)
373 continue;
374 if (!affs_checksum_block(sb, root_bh) &&
375 be32_to_cpu(AFFS_ROOT_HEAD(root_bh)->ptype) == T_SHORT &&
376 be32_to_cpu(AFFS_ROOT_TAIL(sb, root_bh)->stype) == ST_ROOT) {
377 sbi->s_hashsize = blocksize / 4 - 56;
378 sbi->s_root_block += num_bm;
379 key = 1;
380 goto got_root;
381 }
382 affs_brelse(root_bh);
383 root_bh = NULL;
384 }
385 }
386 if (!silent)
387 printk(KERN_ERR "AFFS: No valid root block on device %s\n",
388 sb->s_id);
389 goto out_error;
390
391 /* N.B. after this point bh must be released */
392got_root:
393 root_block = sbi->s_root_block;
394
395 /* Find out which kind of FS we have */
396 boot_bh = sb_bread(sb, 0);
397 if (!boot_bh) {
398 printk(KERN_ERR "AFFS: Cannot read boot block\n");
399 goto out_error;
400 }
2b943cf0 401 memcpy(sig, boot_bh->b_data, 4);
1da177e4 402 brelse(boot_bh);
2b943cf0 403 chksum = be32_to_cpu(*(__be32 *)sig);
1da177e4
LT
404
405 /* Dircache filesystems are compatible with non-dircache ones
406 * when reading. As long as they aren't supported, writing is
407 * not recommended.
408 */
409 if ((chksum == FS_DCFFS || chksum == MUFS_DCFFS || chksum == FS_DCOFS
410 || chksum == MUFS_DCOFS) && !(sb->s_flags & MS_RDONLY)) {
411 printk(KERN_NOTICE "AFFS: Dircache FS - mounting %s read only\n",
412 sb->s_id);
413 sb->s_flags |= MS_RDONLY;
414 }
415 switch (chksum) {
416 case MUFS_FS:
417 case MUFS_INTLFFS:
418 case MUFS_DCFFS:
419 sbi->s_flags |= SF_MUFS;
420 /* fall thru */
421 case FS_INTLFFS:
422 case FS_DCFFS:
423 sbi->s_flags |= SF_INTL;
424 break;
425 case MUFS_FFS:
426 sbi->s_flags |= SF_MUFS;
427 break;
428 case FS_FFS:
429 break;
430 case MUFS_OFS:
431 sbi->s_flags |= SF_MUFS;
432 /* fall thru */
433 case FS_OFS:
434 sbi->s_flags |= SF_OFS;
435 sb->s_flags |= MS_NOEXEC;
436 break;
437 case MUFS_DCOFS:
438 case MUFS_INTLOFS:
439 sbi->s_flags |= SF_MUFS;
440 case FS_DCOFS:
441 case FS_INTLOFS:
442 sbi->s_flags |= SF_INTL | SF_OFS;
443 sb->s_flags |= MS_NOEXEC;
444 break;
445 default:
446 printk(KERN_ERR "AFFS: Unknown filesystem on device %s: %08X\n",
447 sb->s_id, chksum);
448 goto out_error;
449 }
450
451 if (mount_flags & SF_VERBOSE) {
2b943cf0
AV
452 u8 len = AFFS_ROOT_TAIL(sb, root_bh)->disk_name[0];
453 printk(KERN_NOTICE "AFFS: Mounting volume \"%.*s\": Type=%.3s\\%c, Blocksize=%d\n",
454 len > 31 ? 31 : len,
1da177e4 455 AFFS_ROOT_TAIL(sb, root_bh)->disk_name + 1,
2b943cf0 456 sig, sig[3] + '0', blocksize);
1da177e4
LT
457 }
458
459 sb->s_flags |= MS_NODEV | MS_NOSUID;
460
461 sbi->s_data_blksize = sb->s_blocksize;
462 if (sbi->s_flags & SF_OFS)
463 sbi->s_data_blksize -= 24;
464
465 /* Keep super block in cache */
466 sbi->s_root_bh = root_bh;
467 /* N.B. after this point s_root_bh must be released */
468
469 tmp_flags = sb->s_flags;
470 if (affs_init_bitmap(sb, &tmp_flags))
471 goto out_error;
472 sb->s_flags = tmp_flags;
473
474 /* set up enough so that it can read an inode */
475
210f8559
DH
476 root_inode = affs_iget(sb, root_block);
477 if (IS_ERR(root_inode)) {
478 ret = PTR_ERR(root_inode);
479 goto out_error_noinode;
480 }
481
1da177e4
LT
482 sb->s_root = d_alloc_root(root_inode);
483 if (!sb->s_root) {
484 printk(KERN_ERR "AFFS: Get root inode failed\n");
485 goto out_error;
486 }
487 sb->s_root->d_op = &affs_dentry_operations;
488
489 pr_debug("AFFS: s_flags=%lX\n",sb->s_flags);
db719222 490 unlock_kernel();
1da177e4
LT
491 return 0;
492
493 /*
494 * Begin the cascaded cleanup ...
495 */
496out_error:
497 if (root_inode)
498 iput(root_inode);
210f8559 499out_error_noinode:
f99d49ad 500 kfree(sbi->s_bitmap);
1da177e4 501 affs_brelse(root_bh);
f99d49ad 502 kfree(sbi->s_prefix);
1da177e4
LT
503 kfree(sbi);
504 sb->s_fs_info = NULL;
db719222 505 unlock_kernel();
210f8559 506 return ret;
1da177e4
LT
507}
508
509static int
510affs_remount(struct super_block *sb, int *flags, char *data)
511{
512 struct affs_sb_info *sbi = AFFS_SB(sb);
513 int blocksize;
514 uid_t uid;
515 gid_t gid;
516 int mode;
517 int reserved;
518 int root_block;
519 unsigned long mount_flags;
520 int res = 0;
e9b3961b 521 char *new_opts = kstrdup(data, GFP_KERNEL);
29333920
AV
522 char volume[32];
523 char *prefix = NULL;
1da177e4
LT
524
525 pr_debug("AFFS: remount(flags=0x%x,opts=\"%s\")\n",*flags,data);
526
527 *flags |= MS_NODIRATIME;
528
29333920 529 memcpy(volume, sbi->s_volume, 32);
e9b3961b 530 if (!parse_options(data, &uid, &gid, &mode, &reserved, &root_block,
29333920 531 &blocksize, &prefix, volume,
e9b3961b 532 &mount_flags)) {
29333920 533 kfree(prefix);
e9b3961b 534 kfree(new_opts);
1da177e4 535 return -EINVAL;
e9b3961b 536 }
337eb00a 537 lock_kernel();
2a32cebd 538 replace_mount_options(sb, new_opts);
e9b3961b 539
1da177e4
LT
540 sbi->s_flags = mount_flags;
541 sbi->s_mode = mode;
542 sbi->s_uid = uid;
543 sbi->s_gid = gid;
29333920
AV
544 /* protect against readers */
545 spin_lock(&sbi->symlink_lock);
546 if (prefix) {
547 kfree(sbi->s_prefix);
548 sbi->s_prefix = prefix;
549 }
550 memcpy(sbi->s_volume, volume, 32);
551 spin_unlock(&sbi->symlink_lock);
1da177e4 552
337eb00a
AIB
553 if ((*flags & MS_RDONLY) == (sb->s_flags & MS_RDONLY)) {
554 unlock_kernel();
1da177e4 555 return 0;
337eb00a 556 }
1da177e4 557 if (*flags & MS_RDONLY) {
669d5f1f 558 affs_write_super(sb);
1da177e4
LT
559 affs_free_bitmap(sb);
560 } else
561 res = affs_init_bitmap(sb, flags);
562
337eb00a 563 unlock_kernel();
1da177e4
LT
564 return res;
565}
566
567static int
726c3342 568affs_statfs(struct dentry *dentry, struct kstatfs *buf)
1da177e4 569{
726c3342 570 struct super_block *sb = dentry->d_sb;
1da177e4 571 int free;
a6a2a73c 572 u64 id = huge_encode_dev(sb->s_bdev->bd_dev);
1da177e4
LT
573
574 pr_debug("AFFS: statfs() partsize=%d, reserved=%d\n",AFFS_SB(sb)->s_partition_size,
575 AFFS_SB(sb)->s_reserved);
576
577 free = affs_count_free_blocks(sb);
578 buf->f_type = AFFS_SUPER_MAGIC;
579 buf->f_bsize = sb->s_blocksize;
580 buf->f_blocks = AFFS_SB(sb)->s_partition_size - AFFS_SB(sb)->s_reserved;
581 buf->f_bfree = free;
582 buf->f_bavail = free;
a6a2a73c
CL
583 buf->f_fsid.val[0] = (u32)id;
584 buf->f_fsid.val[1] = (u32)(id >> 32);
585 buf->f_namelen = 30;
1da177e4
LT
586 return 0;
587}
588
454e2398
DH
589static int affs_get_sb(struct file_system_type *fs_type,
590 int flags, const char *dev_name, void *data, struct vfsmount *mnt)
1da177e4 591{
454e2398
DH
592 return get_sb_bdev(fs_type, flags, dev_name, data, affs_fill_super,
593 mnt);
1da177e4
LT
594}
595
596static struct file_system_type affs_fs_type = {
597 .owner = THIS_MODULE,
598 .name = "affs",
599 .get_sb = affs_get_sb,
600 .kill_sb = kill_block_super,
601 .fs_flags = FS_REQUIRES_DEV,
602};
603
604static int __init init_affs_fs(void)
605{
606 int err = init_inodecache();
607 if (err)
608 goto out1;
609 err = register_filesystem(&affs_fs_type);
610 if (err)
611 goto out;
612 return 0;
613out:
614 destroy_inodecache();
615out1:
616 return err;
617}
618
619static void __exit exit_affs_fs(void)
620{
621 unregister_filesystem(&affs_fs_type);
622 destroy_inodecache();
623}
624
625MODULE_DESCRIPTION("Amiga filesystem support for Linux");
626MODULE_LICENSE("GPL");
627
628module_init(init_affs_fs)
629module_exit(exit_affs_fs)