blob: c4814937c9685b88957bbcf1d1ffede4368d02df [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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>
Jeff Garzike18fa702006-09-24 11:13:19 -040017#include <linux/magic.h>
Alexey Dobriyane8edc6e2007-05-21 01:22:52 +040018#include <linux/sched.h>
Alessio Igor Bogani337eb002009-05-12 15:10:54 +020019#include <linux/smp_lock.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include "affs.h"
21
22extern struct timezone sys_tz;
23
David Howells726c3342006-06-23 02:02:58 -070024static int affs_statfs(struct dentry *dentry, struct kstatfs *buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -070025static int affs_remount (struct super_block *sb, int *flags, char *data);
26
27static void
28affs_put_super(struct super_block *sb)
29{
30 struct affs_sb_info *sbi = AFFS_SB(sb);
31 pr_debug("AFFS: put_super()\n");
32
Christoph Hellwig6cfd0142009-05-05 15:40:36 +020033 lock_kernel();
34
Linus Torvalds1da177e2005-04-16 15:20:36 -070035 if (!(sb->s_flags & MS_RDONLY)) {
36 AFFS_ROOT_TAIL(sb, sbi->s_root_bh)->bm_flag = cpu_to_be32(1);
37 secs_to_datestamp(get_seconds(),
38 &AFFS_ROOT_TAIL(sb, sbi->s_root_bh)->disk_change);
39 affs_fix_checksum(sb, sbi->s_root_bh);
40 mark_buffer_dirty(sbi->s_root_bh);
41 }
42
Jesper Juhlf99d49a2005-11-07 01:01:34 -080043 kfree(sbi->s_prefix);
Linus Torvalds1da177e2005-04-16 15:20:36 -070044 affs_free_bitmap(sb);
45 affs_brelse(sbi->s_root_bh);
46 kfree(sbi);
47 sb->s_fs_info = NULL;
Christoph Hellwig6cfd0142009-05-05 15:40:36 +020048
49 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -070050}
51
52static void
53affs_write_super(struct super_block *sb)
54{
55 int clean = 2;
56 struct affs_sb_info *sbi = AFFS_SB(sb);
57
Christoph Hellwigebc1ac12009-05-11 23:35:03 +020058 lock_super(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 if (!(sb->s_flags & MS_RDONLY)) {
60 // if (sbi->s_bitmap[i].bm_bh) {
61 // if (buffer_dirty(sbi->s_bitmap[i].bm_bh)) {
62 // clean = 0;
63 AFFS_ROOT_TAIL(sb, sbi->s_root_bh)->bm_flag = cpu_to_be32(clean);
64 secs_to_datestamp(get_seconds(),
65 &AFFS_ROOT_TAIL(sb, sbi->s_root_bh)->disk_change);
66 affs_fix_checksum(sb, sbi->s_root_bh);
67 mark_buffer_dirty(sbi->s_root_bh);
68 sb->s_dirt = !clean; /* redo until bitmap synced */
69 } else
70 sb->s_dirt = 0;
Christoph Hellwigebc1ac12009-05-11 23:35:03 +020071 unlock_super(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
73 pr_debug("AFFS: write_super() at %lu, clean=%d\n", get_seconds(), clean);
74}
75
Christoph Lametere18b8902006-12-06 20:33:20 -080076static struct kmem_cache * affs_inode_cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -070077
78static struct inode *affs_alloc_inode(struct super_block *sb)
79{
Roman Zippeldca3c332008-04-29 17:02:20 +020080 struct affs_inode_info *i;
81
82 i = kmem_cache_alloc(affs_inode_cachep, GFP_KERNEL);
83 if (!i)
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 return NULL;
Roman Zippeldca3c332008-04-29 17:02:20 +020085
86 i->vfs_inode.i_version = 1;
87 i->i_lc = NULL;
88 i->i_ext_bh = NULL;
89 i->i_pa_cnt = 0;
90
91 return &i->vfs_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -070092}
93
94static void affs_destroy_inode(struct inode *inode)
95{
96 kmem_cache_free(affs_inode_cachep, AFFS_I(inode));
97}
98
Alexey Dobriyan51cc5062008-07-25 19:45:34 -070099static void init_once(void *foo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100{
101 struct affs_inode_info *ei = (struct affs_inode_info *) foo;
102
Christoph Lametera35afb82007-05-16 22:10:57 -0700103 init_MUTEX(&ei->i_link_lock);
104 init_MUTEX(&ei->i_ext_lock);
105 inode_init_once(&ei->vfs_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106}
107
108static int init_inodecache(void)
109{
110 affs_inode_cachep = kmem_cache_create("affs_inode_cache",
111 sizeof(struct affs_inode_info),
Paul Jacksonfffb60f2006-03-24 03:16:06 -0800112 0, (SLAB_RECLAIM_ACCOUNT|
113 SLAB_MEM_SPREAD),
Paul Mundt20c2df82007-07-20 10:11:58 +0900114 init_once);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 if (affs_inode_cachep == NULL)
116 return -ENOMEM;
117 return 0;
118}
119
120static void destroy_inodecache(void)
121{
Alexey Dobriyan1a1d92c2006-09-27 01:49:40 -0700122 kmem_cache_destroy(affs_inode_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123}
124
Josef 'Jeff' Sipekee9b6d62007-02-12 00:55:41 -0800125static const struct super_operations affs_sops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 .alloc_inode = affs_alloc_inode,
127 .destroy_inode = affs_destroy_inode,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 .write_inode = affs_write_inode,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 .delete_inode = affs_delete_inode,
130 .clear_inode = affs_clear_inode,
131 .put_super = affs_put_super,
132 .write_super = affs_write_super,
133 .statfs = affs_statfs,
134 .remount_fs = affs_remount,
Miklos Szeredie9b39612008-02-08 04:21:36 -0800135 .show_options = generic_show_options,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136};
137
138enum {
139 Opt_bs, Opt_mode, Opt_mufs, Opt_prefix, Opt_protect,
140 Opt_reserved, Opt_root, Opt_setgid, Opt_setuid,
141 Opt_verbose, Opt_volume, Opt_ignore, Opt_err,
142};
143
Steven Whitehousea447c092008-10-13 10:46:57 +0100144static const match_table_t tokens = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 {Opt_bs, "bs=%u"},
146 {Opt_mode, "mode=%o"},
147 {Opt_mufs, "mufs"},
148 {Opt_prefix, "prefix=%s"},
149 {Opt_protect, "protect"},
150 {Opt_reserved, "reserved=%u"},
151 {Opt_root, "root=%u"},
152 {Opt_setgid, "setgid=%u"},
153 {Opt_setuid, "setuid=%u"},
154 {Opt_verbose, "verbose"},
155 {Opt_volume, "volume=%s"},
156 {Opt_ignore, "grpquota"},
157 {Opt_ignore, "noquota"},
158 {Opt_ignore, "quota"},
159 {Opt_ignore, "usrquota"},
160 {Opt_err, NULL},
161};
162
163static int
164parse_options(char *options, uid_t *uid, gid_t *gid, int *mode, int *reserved, s32 *root,
165 int *blocksize, char **prefix, char *volume, unsigned long *mount_opts)
166{
167 char *p;
168 substring_t args[MAX_OPT_ARGS];
169
170 /* Fill in defaults */
171
David Howells21559982008-11-14 10:38:45 +1100172 *uid = current_uid();
173 *gid = current_gid();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 *reserved = 2;
175 *root = -1;
176 *blocksize = -1;
177 volume[0] = ':';
178 volume[1] = 0;
179 *mount_opts = 0;
180 if (!options)
181 return 1;
182
183 while ((p = strsep(&options, ",")) != NULL) {
184 int token, n, option;
185 if (!*p)
186 continue;
187
188 token = match_token(p, tokens, args);
189 switch (token) {
190 case Opt_bs:
191 if (match_int(&args[0], &n))
192 return -EINVAL;
193 if (n != 512 && n != 1024 && n != 2048
194 && n != 4096) {
195 printk ("AFFS: Invalid blocksize (512, 1024, 2048, 4096 allowed)\n");
196 return 0;
197 }
198 *blocksize = n;
199 break;
200 case Opt_mode:
201 if (match_octal(&args[0], &option))
202 return 1;
203 *mode = option & 0777;
204 *mount_opts |= SF_SETMODE;
205 break;
206 case Opt_mufs:
207 *mount_opts |= SF_MUFS;
208 break;
209 case Opt_prefix:
Jesper Juhlf99d49a2005-11-07 01:01:34 -0800210 /* Free any previous prefix */
211 kfree(*prefix);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 *prefix = match_strdup(&args[0]);
213 if (!*prefix)
214 return 0;
215 *mount_opts |= SF_PREFIX;
216 break;
217 case Opt_protect:
218 *mount_opts |= SF_IMMUTABLE;
219 break;
220 case Opt_reserved:
221 if (match_int(&args[0], reserved))
222 return 1;
223 break;
224 case Opt_root:
225 if (match_int(&args[0], root))
226 return 1;
227 break;
228 case Opt_setgid:
229 if (match_int(&args[0], &option))
230 return 1;
231 *gid = option;
232 *mount_opts |= SF_SETGID;
233 break;
234 case Opt_setuid:
235 if (match_int(&args[0], &option))
236 return -EINVAL;
237 *uid = option;
238 *mount_opts |= SF_SETUID;
239 break;
240 case Opt_verbose:
241 *mount_opts |= SF_VERBOSE;
242 break;
243 case Opt_volume: {
244 char *vol = match_strdup(&args[0]);
Jim Meyering6db27dd2008-04-29 00:59:06 -0700245 if (!vol)
246 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 strlcpy(volume, vol, 32);
248 kfree(vol);
249 break;
250 }
251 case Opt_ignore:
252 /* Silently ignore the quota options */
253 break;
254 default:
255 printk("AFFS: Unrecognized mount option \"%s\" "
256 "or missing value\n", p);
257 return 0;
258 }
259 }
260 return 1;
261}
262
263/* This function definitely needs to be split up. Some fine day I'll
264 * hopefully have the guts to do so. Until then: sorry for the mess.
265 */
266
267static int affs_fill_super(struct super_block *sb, void *data, int silent)
268{
269 struct affs_sb_info *sbi;
270 struct buffer_head *root_bh = NULL;
271 struct buffer_head *boot_bh;
272 struct inode *root_inode = NULL;
273 s32 root_block;
274 int size, blocksize;
275 u32 chksum;
276 int num_bm;
277 int i, j;
278 s32 key;
279 uid_t uid;
280 gid_t gid;
281 int reserved;
282 unsigned long mount_flags;
283 int tmp_flags; /* fix remount prototype... */
Al Viro2b943cf2006-06-25 05:49:08 -0700284 u8 sig[4];
David Howells210f8552008-02-07 00:15:29 -0800285 int ret = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286
Miklos Szeredie9b39612008-02-08 04:21:36 -0800287 save_mount_options(sb, data);
288
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 pr_debug("AFFS: read_super(%s)\n",data ? (const char *)data : "no options");
290
291 sb->s_magic = AFFS_SUPER_MAGIC;
292 sb->s_op = &affs_sops;
293 sb->s_flags |= MS_NODIRATIME;
294
Panagiotis Issarisf8314dc2006-09-27 01:49:37 -0700295 sbi = kzalloc(sizeof(struct affs_sb_info), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 if (!sbi)
297 return -ENOMEM;
298 sb->s_fs_info = sbi;
Matthias Kaehlcke7d135a52008-07-25 19:44:51 -0700299 mutex_init(&sbi->s_bmlock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300
301 if (!parse_options(data,&uid,&gid,&i,&reserved,&root_block,
302 &blocksize,&sbi->s_prefix,
303 sbi->s_volume, &mount_flags)) {
304 printk(KERN_ERR "AFFS: Error parsing options\n");
305 return -EINVAL;
306 }
307 /* N.B. after this point s_prefix must be released */
308
309 sbi->s_flags = mount_flags;
310 sbi->s_mode = i;
311 sbi->s_uid = uid;
312 sbi->s_gid = gid;
313 sbi->s_reserved= reserved;
314
315 /* Get the size of the device in 512-byte blocks.
316 * If we later see that the partition uses bigger
317 * blocks, we will have to change it.
318 */
319
320 size = sb->s_bdev->bd_inode->i_size >> 9;
321 pr_debug("AFFS: initial blocksize=%d, #blocks=%d\n", 512, size);
322
323 affs_set_blocksize(sb, PAGE_SIZE);
324 /* Try to find root block. Its location depends on the block size. */
325
326 i = 512;
327 j = 4096;
328 if (blocksize > 0) {
329 i = j = blocksize;
330 size = size / (blocksize / 512);
331 }
332 for (blocksize = i, key = 0; blocksize <= j; blocksize <<= 1, size >>= 1) {
333 sbi->s_root_block = root_block;
334 if (root_block < 0)
335 sbi->s_root_block = (reserved + size - 1) / 2;
336 pr_debug("AFFS: setting blocksize to %d\n", blocksize);
337 affs_set_blocksize(sb, blocksize);
338 sbi->s_partition_size = size;
339
340 /* The root block location that was calculated above is not
341 * correct if the partition size is an odd number of 512-
342 * byte blocks, which will be rounded down to a number of
343 * 1024-byte blocks, and if there were an even number of
344 * reserved blocks. Ideally, all partition checkers should
345 * report the real number of blocks of the real blocksize,
346 * but since this just cannot be done, we have to try to
347 * find the root block anyways. In the above case, it is one
348 * block behind the calculated one. So we check this one, too.
349 */
350 for (num_bm = 0; num_bm < 2; num_bm++) {
351 pr_debug("AFFS: Dev %s, trying root=%u, bs=%d, "
352 "size=%d, reserved=%d\n",
353 sb->s_id,
354 sbi->s_root_block + num_bm,
355 blocksize, size, reserved);
356 root_bh = affs_bread(sb, sbi->s_root_block + num_bm);
357 if (!root_bh)
358 continue;
359 if (!affs_checksum_block(sb, root_bh) &&
360 be32_to_cpu(AFFS_ROOT_HEAD(root_bh)->ptype) == T_SHORT &&
361 be32_to_cpu(AFFS_ROOT_TAIL(sb, root_bh)->stype) == ST_ROOT) {
362 sbi->s_hashsize = blocksize / 4 - 56;
363 sbi->s_root_block += num_bm;
364 key = 1;
365 goto got_root;
366 }
367 affs_brelse(root_bh);
368 root_bh = NULL;
369 }
370 }
371 if (!silent)
372 printk(KERN_ERR "AFFS: No valid root block on device %s\n",
373 sb->s_id);
374 goto out_error;
375
376 /* N.B. after this point bh must be released */
377got_root:
378 root_block = sbi->s_root_block;
379
380 /* Find out which kind of FS we have */
381 boot_bh = sb_bread(sb, 0);
382 if (!boot_bh) {
383 printk(KERN_ERR "AFFS: Cannot read boot block\n");
384 goto out_error;
385 }
Al Viro2b943cf2006-06-25 05:49:08 -0700386 memcpy(sig, boot_bh->b_data, 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 brelse(boot_bh);
Al Viro2b943cf2006-06-25 05:49:08 -0700388 chksum = be32_to_cpu(*(__be32 *)sig);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389
390 /* Dircache filesystems are compatible with non-dircache ones
391 * when reading. As long as they aren't supported, writing is
392 * not recommended.
393 */
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",
397 sb->s_id);
398 sb->s_flags |= MS_RDONLY;
399 }
400 switch (chksum) {
401 case MUFS_FS:
402 case MUFS_INTLFFS:
403 case MUFS_DCFFS:
404 sbi->s_flags |= SF_MUFS;
405 /* fall thru */
406 case FS_INTLFFS:
407 case FS_DCFFS:
408 sbi->s_flags |= SF_INTL;
409 break;
410 case MUFS_FFS:
411 sbi->s_flags |= SF_MUFS;
412 break;
413 case FS_FFS:
414 break;
415 case MUFS_OFS:
416 sbi->s_flags |= SF_MUFS;
417 /* fall thru */
418 case FS_OFS:
419 sbi->s_flags |= SF_OFS;
420 sb->s_flags |= MS_NOEXEC;
421 break;
422 case MUFS_DCOFS:
423 case MUFS_INTLOFS:
424 sbi->s_flags |= SF_MUFS;
425 case FS_DCOFS:
426 case FS_INTLOFS:
427 sbi->s_flags |= SF_INTL | SF_OFS;
428 sb->s_flags |= MS_NOEXEC;
429 break;
430 default:
431 printk(KERN_ERR "AFFS: Unknown filesystem on device %s: %08X\n",
432 sb->s_id, chksum);
433 goto out_error;
434 }
435
436 if (mount_flags & SF_VERBOSE) {
Al Viro2b943cf2006-06-25 05:49:08 -0700437 u8 len = AFFS_ROOT_TAIL(sb, root_bh)->disk_name[0];
438 printk(KERN_NOTICE "AFFS: Mounting volume \"%.*s\": Type=%.3s\\%c, Blocksize=%d\n",
439 len > 31 ? 31 : len,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 AFFS_ROOT_TAIL(sb, root_bh)->disk_name + 1,
Al Viro2b943cf2006-06-25 05:49:08 -0700441 sig, sig[3] + '0', blocksize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 }
443
444 sb->s_flags |= MS_NODEV | MS_NOSUID;
445
446 sbi->s_data_blksize = sb->s_blocksize;
447 if (sbi->s_flags & SF_OFS)
448 sbi->s_data_blksize -= 24;
449
450 /* Keep super block in cache */
451 sbi->s_root_bh = root_bh;
452 /* N.B. after this point s_root_bh must be released */
453
454 tmp_flags = sb->s_flags;
455 if (affs_init_bitmap(sb, &tmp_flags))
456 goto out_error;
457 sb->s_flags = tmp_flags;
458
459 /* set up enough so that it can read an inode */
460
David Howells210f8552008-02-07 00:15:29 -0800461 root_inode = affs_iget(sb, root_block);
462 if (IS_ERR(root_inode)) {
463 ret = PTR_ERR(root_inode);
464 goto out_error_noinode;
465 }
466
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 sb->s_root = d_alloc_root(root_inode);
468 if (!sb->s_root) {
469 printk(KERN_ERR "AFFS: Get root inode failed\n");
470 goto out_error;
471 }
472 sb->s_root->d_op = &affs_dentry_operations;
473
474 pr_debug("AFFS: s_flags=%lX\n",sb->s_flags);
475 return 0;
476
477 /*
478 * Begin the cascaded cleanup ...
479 */
480out_error:
481 if (root_inode)
482 iput(root_inode);
David Howells210f8552008-02-07 00:15:29 -0800483out_error_noinode:
Jesper Juhlf99d49a2005-11-07 01:01:34 -0800484 kfree(sbi->s_bitmap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 affs_brelse(root_bh);
Jesper Juhlf99d49a2005-11-07 01:01:34 -0800486 kfree(sbi->s_prefix);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 kfree(sbi);
488 sb->s_fs_info = NULL;
David Howells210f8552008-02-07 00:15:29 -0800489 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490}
491
492static int
493affs_remount(struct super_block *sb, int *flags, char *data)
494{
495 struct affs_sb_info *sbi = AFFS_SB(sb);
496 int blocksize;
497 uid_t uid;
498 gid_t gid;
499 int mode;
500 int reserved;
501 int root_block;
502 unsigned long mount_flags;
503 int res = 0;
Miklos Szeredie9b39612008-02-08 04:21:36 -0800504 char *new_opts = kstrdup(data, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505
506 pr_debug("AFFS: remount(flags=0x%x,opts=\"%s\")\n",*flags,data);
507
508 *flags |= MS_NODIRATIME;
509
Miklos Szeredie9b39612008-02-08 04:21:36 -0800510 if (!parse_options(data, &uid, &gid, &mode, &reserved, &root_block,
511 &blocksize, &sbi->s_prefix, sbi->s_volume,
512 &mount_flags)) {
513 kfree(new_opts);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 return -EINVAL;
Miklos Szeredie9b39612008-02-08 04:21:36 -0800515 }
Alessio Igor Bogani337eb002009-05-12 15:10:54 +0200516 lock_kernel();
Al Viro2a32ceb2009-05-08 16:05:57 -0400517 replace_mount_options(sb, new_opts);
Miklos Szeredie9b39612008-02-08 04:21:36 -0800518
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 sbi->s_flags = mount_flags;
520 sbi->s_mode = mode;
521 sbi->s_uid = uid;
522 sbi->s_gid = gid;
523
Alessio Igor Bogani337eb002009-05-12 15:10:54 +0200524 if ((*flags & MS_RDONLY) == (sb->s_flags & MS_RDONLY)) {
525 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 return 0;
Alessio Igor Bogani337eb002009-05-12 15:10:54 +0200527 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 if (*flags & MS_RDONLY) {
529 sb->s_dirt = 1;
530 while (sb->s_dirt)
531 affs_write_super(sb);
532 affs_free_bitmap(sb);
533 } else
534 res = affs_init_bitmap(sb, flags);
535
Alessio Igor Bogani337eb002009-05-12 15:10:54 +0200536 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 return res;
538}
539
540static int
David Howells726c3342006-06-23 02:02:58 -0700541affs_statfs(struct dentry *dentry, struct kstatfs *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542{
David Howells726c3342006-06-23 02:02:58 -0700543 struct super_block *sb = dentry->d_sb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 int free;
Coly Lia6a2a732009-04-02 16:59:32 -0700545 u64 id = huge_encode_dev(sb->s_bdev->bd_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546
547 pr_debug("AFFS: statfs() partsize=%d, reserved=%d\n",AFFS_SB(sb)->s_partition_size,
548 AFFS_SB(sb)->s_reserved);
549
550 free = affs_count_free_blocks(sb);
551 buf->f_type = AFFS_SUPER_MAGIC;
552 buf->f_bsize = sb->s_blocksize;
553 buf->f_blocks = AFFS_SB(sb)->s_partition_size - AFFS_SB(sb)->s_reserved;
554 buf->f_bfree = free;
555 buf->f_bavail = free;
Coly Lia6a2a732009-04-02 16:59:32 -0700556 buf->f_fsid.val[0] = (u32)id;
557 buf->f_fsid.val[1] = (u32)(id >> 32);
558 buf->f_namelen = 30;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 return 0;
560}
561
David Howells454e2392006-06-23 02:02:57 -0700562static int affs_get_sb(struct file_system_type *fs_type,
563 int flags, const char *dev_name, void *data, struct vfsmount *mnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564{
David Howells454e2392006-06-23 02:02:57 -0700565 return get_sb_bdev(fs_type, flags, dev_name, data, affs_fill_super,
566 mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567}
568
569static struct file_system_type affs_fs_type = {
570 .owner = THIS_MODULE,
571 .name = "affs",
572 .get_sb = affs_get_sb,
573 .kill_sb = kill_block_super,
574 .fs_flags = FS_REQUIRES_DEV,
575};
576
577static int __init init_affs_fs(void)
578{
579 int err = init_inodecache();
580 if (err)
581 goto out1;
582 err = register_filesystem(&affs_fs_type);
583 if (err)
584 goto out;
585 return 0;
586out:
587 destroy_inodecache();
588out1:
589 return err;
590}
591
592static void __exit exit_affs_fs(void)
593{
594 unregister_filesystem(&affs_fs_type);
595 destroy_inodecache();
596}
597
598MODULE_DESCRIPTION("Amiga filesystem support for Linux");
599MODULE_LICENSE("GPL");
600
601module_init(init_affs_fs)
602module_exit(exit_affs_fs)