2 * linux/fs/affs/inode.c
4 * (c) 1996 Hans-Joachim Widmaier - Rewritten
6 * (C) 1993 Ray Burr - Modified for Amiga FFS filesystem.
8 * (C) 1992 Eric Youngdale Modified for ISO 9660 filesystem.
10 * (C) 1991 Linus Torvalds - minix filesystem
13 #include <linux/module.h>
14 #include <linux/errno.h>
16 #include <linux/slab.h>
17 #include <linux/stat.h>
18 #include <linux/time.h>
19 #include <linux/affs_fs.h>
20 #include <linux/kernel.h>
22 #include <linux/string.h>
23 #include <linux/genhd.h>
24 #include <linux/amigaffs.h>
25 #include <linux/major.h>
26 #include <linux/blkdev.h>
27 #include <linux/init.h>
28 #include <linux/smp_lock.h>
29 #include <linux/buffer_head.h>
30 #include <linux/vfs.h>
31 #include <asm/system.h>
32 #include <asm/uaccess.h>
34 extern struct timezone sys_tz
;
36 static int affs_statfs(struct super_block
*sb
, struct kstatfs
*buf
);
37 static int affs_remount (struct super_block
*sb
, int *flags
, char *data
);
40 affs_put_super(struct super_block
*sb
)
42 struct affs_sb_info
*sbi
= AFFS_SB(sb
);
43 pr_debug("AFFS: put_super()\n");
45 if (!(sb
->s_flags
& MS_RDONLY
)) {
46 AFFS_ROOT_TAIL(sb
, sbi
->s_root_bh
)->bm_flag
= be32_to_cpu(1);
47 secs_to_datestamp(get_seconds(),
48 &AFFS_ROOT_TAIL(sb
, sbi
->s_root_bh
)->disk_change
);
49 affs_fix_checksum(sb
, sbi
->s_root_bh
);
50 mark_buffer_dirty(sbi
->s_root_bh
);
53 affs_brelse(sbi
->s_bmap_bh
);
57 affs_brelse(sbi
->s_root_bh
);
64 affs_write_super(struct super_block
*sb
)
67 struct affs_sb_info
*sbi
= AFFS_SB(sb
);
69 if (!(sb
->s_flags
& MS_RDONLY
)) {
70 // if (sbi->s_bitmap[i].bm_bh) {
71 // if (buffer_dirty(sbi->s_bitmap[i].bm_bh)) {
73 AFFS_ROOT_TAIL(sb
, sbi
->s_root_bh
)->bm_flag
= be32_to_cpu(clean
);
74 secs_to_datestamp(get_seconds(),
75 &AFFS_ROOT_TAIL(sb
, sbi
->s_root_bh
)->disk_change
);
76 affs_fix_checksum(sb
, sbi
->s_root_bh
);
77 mark_buffer_dirty(sbi
->s_root_bh
);
78 sb
->s_dirt
= !clean
; /* redo until bitmap synced */
82 pr_debug("AFFS: write_super() at %lu, clean=%d\n", get_seconds(), clean
);
85 static kmem_cache_t
* affs_inode_cachep
;
87 static struct inode
*affs_alloc_inode(struct super_block
*sb
)
89 struct affs_inode_info
*ei
;
90 ei
= (struct affs_inode_info
*)kmem_cache_alloc(affs_inode_cachep
, SLAB_KERNEL
);
93 ei
->vfs_inode
.i_version
= 1;
94 return &ei
->vfs_inode
;
97 static void affs_destroy_inode(struct inode
*inode
)
99 kmem_cache_free(affs_inode_cachep
, AFFS_I(inode
));
102 static void init_once(void * foo
, kmem_cache_t
* cachep
, unsigned long flags
)
104 struct affs_inode_info
*ei
= (struct affs_inode_info
*) foo
;
106 if ((flags
& (SLAB_CTOR_VERIFY
|SLAB_CTOR_CONSTRUCTOR
)) ==
107 SLAB_CTOR_CONSTRUCTOR
) {
108 init_MUTEX(&ei
->i_link_lock
);
109 init_MUTEX(&ei
->i_ext_lock
);
110 inode_init_once(&ei
->vfs_inode
);
114 static int init_inodecache(void)
116 affs_inode_cachep
= kmem_cache_create("affs_inode_cache",
117 sizeof(struct affs_inode_info
),
118 0, SLAB_HWCACHE_ALIGN
|SLAB_RECLAIM_ACCOUNT
,
120 if (affs_inode_cachep
== NULL
)
125 static void destroy_inodecache(void)
127 if (kmem_cache_destroy(affs_inode_cachep
))
128 printk(KERN_INFO
"affs_inode_cache: not all structures were freed\n");
131 static struct super_operations affs_sops
= {
132 .alloc_inode
= affs_alloc_inode
,
133 .destroy_inode
= affs_destroy_inode
,
134 .read_inode
= affs_read_inode
,
135 .write_inode
= affs_write_inode
,
136 .put_inode
= affs_put_inode
,
137 .delete_inode
= affs_delete_inode
,
138 .clear_inode
= affs_clear_inode
,
139 .put_super
= affs_put_super
,
140 .write_super
= affs_write_super
,
141 .statfs
= affs_statfs
,
142 .remount_fs
= affs_remount
,
146 parse_options(char *options
, uid_t
*uid
, gid_t
*gid
, int *mode
, int *reserved
, s32
*root
,
147 int *blocksize
, char **prefix
, char *volume
, unsigned long *mount_opts
)
149 char *this_char
, *value
, *optn
;
152 /* Fill in defaults */
164 while ((this_char
= strsep(&options
, ",")) != NULL
) {
168 if ((value
= strchr(this_char
,'=')) != NULL
)
170 if ((optn
= "protect") && !strcmp(this_char
, optn
)) {
173 *mount_opts
|= SF_IMMUTABLE
;
174 } else if ((optn
= "verbose") && !strcmp(this_char
, optn
)) {
177 *mount_opts
|= SF_VERBOSE
;
178 } else if ((optn
= "mufs") && !strcmp(this_char
, optn
)) {
181 *mount_opts
|= SF_MUFS
;
182 } else if ((f
= !strcmp(this_char
,"setuid")) || !strcmp(this_char
,"setgid")) {
185 printk("AFFS: Argument for set[ug]id option missing\n");
188 (f
? *uid
: *gid
) = simple_strtoul(value
,&value
,0);
190 printk("AFFS: Bad set[ug]id argument\n");
193 *mount_opts
|= f
? SF_SETUID
: SF_SETGID
;
196 } else if (!strcmp(this_char
,"prefix")) {
198 if (!value
|| !*value
)
200 if (*prefix
) { /* Free any previous prefix */
204 *prefix
= kmalloc(strlen(value
) + 1,GFP_KERNEL
);
207 strcpy(*prefix
,value
);
208 *mount_opts
|= SF_PREFIX
;
209 } else if (!strcmp(this_char
,"volume")) {
211 if (!value
|| !*value
)
213 strlcpy(volume
,value
,31);
214 } else if (!strcmp(this_char
,"mode")) {
216 if (!value
|| !*value
)
218 *mode
= simple_strtoul(value
,&value
,8) & 0777;
221 *mount_opts
|= SF_SETMODE
;
222 } else if (!strcmp(this_char
,"reserved")) {
224 if (!value
|| !*value
)
226 *reserved
= simple_strtoul(value
,&value
,0);
229 } else if (!strcmp(this_char
,"root")) {
231 if (!value
|| !*value
)
233 *root
= simple_strtoul(value
,&value
,0);
236 } else if (!strcmp(this_char
,"bs")) {
238 if (!value
|| !*value
)
240 *blocksize
= simple_strtoul(value
,&value
,0);
243 if (*blocksize
!= 512 && *blocksize
!= 1024 && *blocksize
!= 2048
244 && *blocksize
!= 4096) {
245 printk ("AFFS: Invalid blocksize (512, 1024, 2048, 4096 allowed)\n");
248 } else if (!strcmp (this_char
, "grpquota")
249 || !strcmp (this_char
, "noquota")
250 || !strcmp (this_char
, "quota")
251 || !strcmp (this_char
, "usrquota"))
252 /* Silently ignore the quota options */
255 printk("AFFS: Unrecognized mount option %s\n", this_char
);
262 printk("AFFS: The %s option requires an argument\n", optn
);
265 printk("AFFS: Option %s does not take an argument\n", optn
);
269 /* This function definitely needs to be split up. Some fine day I'll
270 * hopefully have the guts to do so. Until then: sorry for the mess.
273 static int affs_fill_super(struct super_block
*sb
, void *data
, int silent
)
275 struct affs_sb_info
*sbi
;
276 struct buffer_head
*root_bh
= NULL
;
277 struct buffer_head
*boot_bh
;
278 struct inode
*root_inode
= NULL
;
288 unsigned long mount_flags
;
290 pr_debug("AFFS: read_super(%s)\n",data
? (const char *)data
: "no options");
292 sb
->s_magic
= AFFS_SUPER_MAGIC
;
293 sb
->s_op
= &affs_sops
;
295 sbi
= kmalloc(sizeof(struct affs_sb_info
), GFP_KERNEL
);
299 memset(sbi
, 0, sizeof(*sbi
));
300 init_MUTEX(&sbi
->s_bmlock
);
302 if (!parse_options(data
,&uid
,&gid
,&i
,&reserved
,&root_block
,
303 &blocksize
,&sbi
->s_prefix
,
304 sbi
->s_volume
, &mount_flags
)) {
305 printk(KERN_ERR
"AFFS: Error parsing options\n");
308 /* N.B. after this point s_prefix must be released */
310 sbi
->s_flags
= mount_flags
;
314 sbi
->s_reserved
= reserved
;
316 /* Get the size of the device in 512-byte blocks.
317 * If we later see that the partition uses bigger
318 * blocks, we will have to change it.
321 size
= sb
->s_bdev
->bd_inode
->i_size
>> 9;
322 pr_debug("AFFS: initial blocksize=%d, #blocks=%d\n", 512, size
);
324 affs_set_blocksize(sb
, PAGE_SIZE
);
325 /* Try to find root block. Its location depends on the block size. */
331 size
= size
/ (blocksize
/ 512);
333 for (blocksize
= i
, key
= 0; blocksize
<= j
; blocksize
<<= 1, size
>>= 1) {
334 sbi
->s_root_block
= root_block
;
336 sbi
->s_root_block
= (reserved
+ size
- 1) / 2;
337 pr_debug("AFFS: setting blocksize to %d\n", blocksize
);
338 affs_set_blocksize(sb
, blocksize
);
339 sbi
->s_partition_size
= size
;
341 /* The root block location that was calculated above is not
342 * correct if the partition size is an odd number of 512-
343 * byte blocks, which will be rounded down to a number of
344 * 1024-byte blocks, and if there were an even number of
345 * reserved blocks. Ideally, all partition checkers should
346 * report the real number of blocks of the real blocksize,
347 * but since this just cannot be done, we have to try to
348 * find the root block anyways. In the above case, it is one
349 * block behind the calculated one. So we check this one, too.
351 for (num_bm
= 0; num_bm
< 2; num_bm
++) {
352 pr_debug("AFFS: Dev %s, trying root=%u, bs=%d, "
353 "size=%d, reserved=%d\n",
355 sbi
->s_root_block
+ num_bm
,
356 blocksize
, size
, reserved
);
357 root_bh
= affs_bread(sb
, sbi
->s_root_block
+ num_bm
);
360 if (!affs_checksum_block(sb
, root_bh
) &&
361 be32_to_cpu(AFFS_ROOT_HEAD(root_bh
)->ptype
) == T_SHORT
&&
362 be32_to_cpu(AFFS_ROOT_TAIL(sb
, root_bh
)->stype
) == ST_ROOT
) {
363 sbi
->s_hashsize
= blocksize
/ 4 - 56;
364 sbi
->s_root_block
+= num_bm
;
368 affs_brelse(root_bh
);
373 printk(KERN_ERR
"AFFS: No valid root block on device %s\n",
377 /* N.B. after this point bh must be released */
379 root_block
= sbi
->s_root_block
;
381 /* Find out which kind of FS we have */
382 boot_bh
= sb_bread(sb
, 0);
384 printk(KERN_ERR
"AFFS: Cannot read boot block\n");
387 chksum
= be32_to_cpu(*(u32
*)boot_bh
->b_data
);
390 /* Dircache filesystems are compatible with non-dircache ones
391 * when reading. As long as they aren't supported, writing is
394 if ((chksum
== FS_DCFFS
|| chksum
== MUFS_DCFFS
|| chksum
== FS_DCOFS
395 || chksum
== MUFS_DCOFS
) && !(sb
->s_flags
& MS_RDONLY
)) {
396 printk(KERN_NOTICE
"AFFS: Dircache FS - mounting %s read only\n",
398 sb
->s_flags
|= MS_RDONLY
;
399 sbi
->s_flags
|= SF_READONLY
;
405 sbi
->s_flags
|= SF_MUFS
;
409 sbi
->s_flags
|= SF_INTL
;
412 sbi
->s_flags
|= SF_MUFS
;
417 sbi
->s_flags
|= SF_MUFS
;
420 sbi
->s_flags
|= SF_OFS
;
421 sb
->s_flags
|= MS_NOEXEC
;
425 sbi
->s_flags
|= SF_MUFS
;
428 sbi
->s_flags
|= SF_INTL
| SF_OFS
;
429 sb
->s_flags
|= MS_NOEXEC
;
432 printk(KERN_ERR
"AFFS: Unknown filesystem on device %s: %08X\n",
437 if (mount_flags
& SF_VERBOSE
) {
438 chksum
= cpu_to_be32(chksum
);
439 printk(KERN_NOTICE
"AFFS: Mounting volume \"%*s\": Type=%.3s\\%c, Blocksize=%d\n",
440 AFFS_ROOT_TAIL(sb
, root_bh
)->disk_name
[0],
441 AFFS_ROOT_TAIL(sb
, root_bh
)->disk_name
+ 1,
442 (char *)&chksum
,((char *)&chksum
)[3] + '0',blocksize
);
445 sb
->s_flags
|= MS_NODEV
| MS_NOSUID
;
447 sbi
->s_data_blksize
= sb
->s_blocksize
;
448 if (sbi
->s_flags
& SF_OFS
)
449 sbi
->s_data_blksize
-= 24;
451 /* Keep super block in cache */
452 sbi
->s_root_bh
= root_bh
;
453 /* N.B. after this point s_root_bh must be released */
455 if (affs_init_bitmap(sb
))
458 /* set up enough so that it can read an inode */
460 root_inode
= iget(sb
, root_block
);
461 sb
->s_root
= d_alloc_root(root_inode
);
463 printk(KERN_ERR
"AFFS: Get root inode failed\n");
466 sb
->s_root
->d_op
= &affs_dentry_operations
;
468 pr_debug("AFFS: s_flags=%lX\n",sb
->s_flags
);
472 * Begin the cascaded cleanup ...
478 kfree(sbi
->s_bitmap
);
479 affs_brelse(root_bh
);
481 kfree(sbi
->s_prefix
);
483 sb
->s_fs_info
= NULL
;
488 affs_remount(struct super_block
*sb
, int *flags
, char *data
)
490 struct affs_sb_info
*sbi
= AFFS_SB(sb
);
497 unsigned long mount_flags
;
498 unsigned long read_only
= sbi
->s_flags
& SF_READONLY
;
500 pr_debug("AFFS: remount(flags=0x%x,opts=\"%s\")\n",*flags
,data
);
502 if (!parse_options(data
,&uid
,&gid
,&mode
,&reserved
,&root_block
,
503 &blocksize
,&sbi
->s_prefix
,sbi
->s_volume
,&mount_flags
))
505 sbi
->s_flags
= mount_flags
| read_only
;
510 if ((*flags
& MS_RDONLY
) == (sb
->s_flags
& MS_RDONLY
))
512 if (*flags
& MS_RDONLY
) {
515 affs_write_super(sb
);
516 sb
->s_flags
|= MS_RDONLY
;
517 } else if (!(sbi
->s_flags
& SF_READONLY
)) {
518 sb
->s_flags
&= ~MS_RDONLY
;
520 affs_warning(sb
,"remount","Cannot remount fs read/write because of errors");
527 affs_statfs(struct super_block
*sb
, struct kstatfs
*buf
)
531 pr_debug("AFFS: statfs() partsize=%d, reserved=%d\n",AFFS_SB(sb
)->s_partition_size
,
532 AFFS_SB(sb
)->s_reserved
);
534 free
= affs_count_free_blocks(sb
);
535 buf
->f_type
= AFFS_SUPER_MAGIC
;
536 buf
->f_bsize
= sb
->s_blocksize
;
537 buf
->f_blocks
= AFFS_SB(sb
)->s_partition_size
- AFFS_SB(sb
)->s_reserved
;
539 buf
->f_bavail
= free
;
543 static struct super_block
*affs_get_sb(struct file_system_type
*fs_type
,
544 int flags
, const char *dev_name
, void *data
)
546 return get_sb_bdev(fs_type
, flags
, dev_name
, data
, affs_fill_super
);
549 static struct file_system_type affs_fs_type
= {
550 .owner
= THIS_MODULE
,
552 .get_sb
= affs_get_sb
,
553 .kill_sb
= kill_block_super
,
554 .fs_flags
= FS_REQUIRES_DEV
,
557 static int __init
init_affs_fs(void)
559 int err
= init_inodecache();
562 err
= register_filesystem(&affs_fs_type
);
567 destroy_inodecache();
572 static void __exit
exit_affs_fs(void)
574 unregister_filesystem(&affs_fs_type
);
575 destroy_inodecache();
578 MODULE_DESCRIPTION("Amiga filesystem support for Linux");
579 MODULE_LICENSE("GPL");
581 module_init(init_affs_fs
)
582 module_exit(exit_affs_fs
)