blob: b2a5958c619174e32bc7544498ec1b2680dc40bf [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
Christoph Hellwige2896432009-06-08 10:03:15 +020028affs_commit_super(struct super_block *sb, int clean)
29{
30 struct affs_sb_info *sbi = AFFS_SB(sb);
31 struct buffer_head *bh = sbi->s_root_bh;
32 struct affs_root_tail *tail = AFFS_ROOT_TAIL(sb, bh);
33
34 tail->bm_flag = cpu_to_be32(clean);
35 secs_to_datestamp(get_seconds(), &tail->disk_change);
36 affs_fix_checksum(sb, bh);
37 mark_buffer_dirty(bh);
38}
39
40static void
Linus Torvalds1da177e2005-04-16 15:20:36 -070041affs_put_super(struct super_block *sb)
42{
43 struct affs_sb_info *sbi = AFFS_SB(sb);
44 pr_debug("AFFS: put_super()\n");
45
Christoph Hellwig6cfd0142009-05-05 15:40:36 +020046 lock_kernel();
47
Christoph Hellwige2896432009-06-08 10:03:15 +020048 if (!(sb->s_flags & MS_RDONLY))
49 affs_commit_super(sb, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
Jesper Juhlf99d49a2005-11-07 01:01:34 -080051 kfree(sbi->s_prefix);
Linus Torvalds1da177e2005-04-16 15:20:36 -070052 affs_free_bitmap(sb);
53 affs_brelse(sbi->s_root_bh);
54 kfree(sbi);
55 sb->s_fs_info = NULL;
Christoph Hellwig6cfd0142009-05-05 15:40:36 +020056
57 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -070058}
59
60static void
61affs_write_super(struct super_block *sb)
62{
63 int clean = 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -070064
Christoph Hellwigebc1ac12009-05-11 23:35:03 +020065 lock_super(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -070066 if (!(sb->s_flags & MS_RDONLY)) {
67 // if (sbi->s_bitmap[i].bm_bh) {
68 // if (buffer_dirty(sbi->s_bitmap[i].bm_bh)) {
69 // clean = 0;
Christoph Hellwige2896432009-06-08 10:03:15 +020070 affs_commit_super(sb, clean);
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 sb->s_dirt = !clean; /* redo until bitmap synced */
72 } else
73 sb->s_dirt = 0;
Christoph Hellwigebc1ac12009-05-11 23:35:03 +020074 unlock_super(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
76 pr_debug("AFFS: write_super() at %lu, clean=%d\n", get_seconds(), clean);
77}
78
Christoph Hellwige2896432009-06-08 10:03:15 +020079static int
80affs_sync_fs(struct super_block *sb, int wait)
81{
82 lock_super(sb);
83 affs_commit_super(sb, 2);
84 sb->s_dirt = 0;
85 unlock_super(sb);
86 return 0;
87}
88
Christoph Lametere18b8902006-12-06 20:33:20 -080089static struct kmem_cache * affs_inode_cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -070090
91static struct inode *affs_alloc_inode(struct super_block *sb)
92{
Roman Zippeldca3c332008-04-29 17:02:20 +020093 struct affs_inode_info *i;
94
95 i = kmem_cache_alloc(affs_inode_cachep, GFP_KERNEL);
96 if (!i)
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 return NULL;
Roman Zippeldca3c332008-04-29 17:02:20 +020098
99 i->vfs_inode.i_version = 1;
100 i->i_lc = NULL;
101 i->i_ext_bh = NULL;
102 i->i_pa_cnt = 0;
103
104 return &i->vfs_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105}
106
107static void affs_destroy_inode(struct inode *inode)
108{
109 kmem_cache_free(affs_inode_cachep, AFFS_I(inode));
110}
111
Alexey Dobriyan51cc5062008-07-25 19:45:34 -0700112static void init_once(void *foo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113{
114 struct affs_inode_info *ei = (struct affs_inode_info *) foo;
115
Christoph Lametera35afb82007-05-16 22:10:57 -0700116 init_MUTEX(&ei->i_link_lock);
117 init_MUTEX(&ei->i_ext_lock);
118 inode_init_once(&ei->vfs_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119}
120
121static int init_inodecache(void)
122{
123 affs_inode_cachep = kmem_cache_create("affs_inode_cache",
124 sizeof(struct affs_inode_info),
Paul Jacksonfffb60f2006-03-24 03:16:06 -0800125 0, (SLAB_RECLAIM_ACCOUNT|
126 SLAB_MEM_SPREAD),
Paul Mundt20c2df82007-07-20 10:11:58 +0900127 init_once);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 if (affs_inode_cachep == NULL)
129 return -ENOMEM;
130 return 0;
131}
132
133static void destroy_inodecache(void)
134{
Alexey Dobriyan1a1d92c2006-09-27 01:49:40 -0700135 kmem_cache_destroy(affs_inode_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136}
137
Josef 'Jeff' Sipekee9b6d62007-02-12 00:55:41 -0800138static const struct super_operations affs_sops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 .alloc_inode = affs_alloc_inode,
140 .destroy_inode = affs_destroy_inode,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 .write_inode = affs_write_inode,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 .delete_inode = affs_delete_inode,
143 .clear_inode = affs_clear_inode,
144 .put_super = affs_put_super,
145 .write_super = affs_write_super,
Christoph Hellwige2896432009-06-08 10:03:15 +0200146 .sync_fs = affs_sync_fs,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 .statfs = affs_statfs,
148 .remount_fs = affs_remount,
Miklos Szeredie9b39612008-02-08 04:21:36 -0800149 .show_options = generic_show_options,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150};
151
152enum {
153 Opt_bs, Opt_mode, Opt_mufs, Opt_prefix, Opt_protect,
154 Opt_reserved, Opt_root, Opt_setgid, Opt_setuid,
155 Opt_verbose, Opt_volume, Opt_ignore, Opt_err,
156};
157
Steven Whitehousea447c092008-10-13 10:46:57 +0100158static const match_table_t tokens = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 {Opt_bs, "bs=%u"},
160 {Opt_mode, "mode=%o"},
161 {Opt_mufs, "mufs"},
162 {Opt_prefix, "prefix=%s"},
163 {Opt_protect, "protect"},
164 {Opt_reserved, "reserved=%u"},
165 {Opt_root, "root=%u"},
166 {Opt_setgid, "setgid=%u"},
167 {Opt_setuid, "setuid=%u"},
168 {Opt_verbose, "verbose"},
169 {Opt_volume, "volume=%s"},
170 {Opt_ignore, "grpquota"},
171 {Opt_ignore, "noquota"},
172 {Opt_ignore, "quota"},
173 {Opt_ignore, "usrquota"},
174 {Opt_err, NULL},
175};
176
177static int
178parse_options(char *options, uid_t *uid, gid_t *gid, int *mode, int *reserved, s32 *root,
179 int *blocksize, char **prefix, char *volume, unsigned long *mount_opts)
180{
181 char *p;
182 substring_t args[MAX_OPT_ARGS];
183
184 /* Fill in defaults */
185
David Howells21559982008-11-14 10:38:45 +1100186 *uid = current_uid();
187 *gid = current_gid();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 *reserved = 2;
189 *root = -1;
190 *blocksize = -1;
191 volume[0] = ':';
192 volume[1] = 0;
193 *mount_opts = 0;
194 if (!options)
195 return 1;
196
197 while ((p = strsep(&options, ",")) != NULL) {
198 int token, n, option;
199 if (!*p)
200 continue;
201
202 token = match_token(p, tokens, args);
203 switch (token) {
204 case Opt_bs:
205 if (match_int(&args[0], &n))
206 return -EINVAL;
207 if (n != 512 && n != 1024 && n != 2048
208 && n != 4096) {
209 printk ("AFFS: Invalid blocksize (512, 1024, 2048, 4096 allowed)\n");
210 return 0;
211 }
212 *blocksize = n;
213 break;
214 case Opt_mode:
215 if (match_octal(&args[0], &option))
216 return 1;
217 *mode = option & 0777;
218 *mount_opts |= SF_SETMODE;
219 break;
220 case Opt_mufs:
221 *mount_opts |= SF_MUFS;
222 break;
223 case Opt_prefix:
Jesper Juhlf99d49a2005-11-07 01:01:34 -0800224 /* Free any previous prefix */
225 kfree(*prefix);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 *prefix = match_strdup(&args[0]);
227 if (!*prefix)
228 return 0;
229 *mount_opts |= SF_PREFIX;
230 break;
231 case Opt_protect:
232 *mount_opts |= SF_IMMUTABLE;
233 break;
234 case Opt_reserved:
235 if (match_int(&args[0], reserved))
236 return 1;
237 break;
238 case Opt_root:
239 if (match_int(&args[0], root))
240 return 1;
241 break;
242 case Opt_setgid:
243 if (match_int(&args[0], &option))
244 return 1;
245 *gid = option;
246 *mount_opts |= SF_SETGID;
247 break;
248 case Opt_setuid:
249 if (match_int(&args[0], &option))
250 return -EINVAL;
251 *uid = option;
252 *mount_opts |= SF_SETUID;
253 break;
254 case Opt_verbose:
255 *mount_opts |= SF_VERBOSE;
256 break;
257 case Opt_volume: {
258 char *vol = match_strdup(&args[0]);
Jim Meyering6db27dd2008-04-29 00:59:06 -0700259 if (!vol)
260 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 strlcpy(volume, vol, 32);
262 kfree(vol);
263 break;
264 }
265 case Opt_ignore:
266 /* Silently ignore the quota options */
267 break;
268 default:
269 printk("AFFS: Unrecognized mount option \"%s\" "
270 "or missing value\n", p);
271 return 0;
272 }
273 }
274 return 1;
275}
276
277/* This function definitely needs to be split up. Some fine day I'll
278 * hopefully have the guts to do so. Until then: sorry for the mess.
279 */
280
281static int affs_fill_super(struct super_block *sb, void *data, int silent)
282{
283 struct affs_sb_info *sbi;
284 struct buffer_head *root_bh = NULL;
285 struct buffer_head *boot_bh;
286 struct inode *root_inode = NULL;
287 s32 root_block;
288 int size, blocksize;
289 u32 chksum;
290 int num_bm;
291 int i, j;
292 s32 key;
293 uid_t uid;
294 gid_t gid;
295 int reserved;
296 unsigned long mount_flags;
297 int tmp_flags; /* fix remount prototype... */
Al Viro2b943cf2006-06-25 05:49:08 -0700298 u8 sig[4];
David Howells210f8552008-02-07 00:15:29 -0800299 int ret = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300
Miklos Szeredie9b39612008-02-08 04:21:36 -0800301 save_mount_options(sb, data);
302
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 pr_debug("AFFS: read_super(%s)\n",data ? (const char *)data : "no options");
304
305 sb->s_magic = AFFS_SUPER_MAGIC;
306 sb->s_op = &affs_sops;
307 sb->s_flags |= MS_NODIRATIME;
308
Panagiotis Issarisf8314dc2006-09-27 01:49:37 -0700309 sbi = kzalloc(sizeof(struct affs_sb_info), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 if (!sbi)
311 return -ENOMEM;
312 sb->s_fs_info = sbi;
Matthias Kaehlcke7d135a52008-07-25 19:44:51 -0700313 mutex_init(&sbi->s_bmlock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314
315 if (!parse_options(data,&uid,&gid,&i,&reserved,&root_block,
316 &blocksize,&sbi->s_prefix,
317 sbi->s_volume, &mount_flags)) {
318 printk(KERN_ERR "AFFS: Error parsing options\n");
Al Viroafc70ed2010-01-23 23:38:27 -0500319 kfree(sbi->s_prefix);
320 kfree(sbi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 return -EINVAL;
322 }
323 /* N.B. after this point s_prefix must be released */
324
325 sbi->s_flags = mount_flags;
326 sbi->s_mode = i;
327 sbi->s_uid = uid;
328 sbi->s_gid = gid;
329 sbi->s_reserved= reserved;
330
331 /* Get the size of the device in 512-byte blocks.
332 * If we later see that the partition uses bigger
333 * blocks, we will have to change it.
334 */
335
336 size = sb->s_bdev->bd_inode->i_size >> 9;
337 pr_debug("AFFS: initial blocksize=%d, #blocks=%d\n", 512, size);
338
339 affs_set_blocksize(sb, PAGE_SIZE);
340 /* Try to find root block. Its location depends on the block size. */
341
342 i = 512;
343 j = 4096;
344 if (blocksize > 0) {
345 i = j = blocksize;
346 size = size / (blocksize / 512);
347 }
348 for (blocksize = i, key = 0; blocksize <= j; blocksize <<= 1, size >>= 1) {
349 sbi->s_root_block = root_block;
350 if (root_block < 0)
351 sbi->s_root_block = (reserved + size - 1) / 2;
352 pr_debug("AFFS: setting blocksize to %d\n", blocksize);
353 affs_set_blocksize(sb, blocksize);
354 sbi->s_partition_size = size;
355
356 /* The root block location that was calculated above is not
357 * correct if the partition size is an odd number of 512-
358 * byte blocks, which will be rounded down to a number of
359 * 1024-byte blocks, and if there were an even number of
360 * reserved blocks. Ideally, all partition checkers should
361 * report the real number of blocks of the real blocksize,
362 * but since this just cannot be done, we have to try to
363 * find the root block anyways. In the above case, it is one
364 * block behind the calculated one. So we check this one, too.
365 */
366 for (num_bm = 0; num_bm < 2; num_bm++) {
367 pr_debug("AFFS: Dev %s, trying root=%u, bs=%d, "
368 "size=%d, reserved=%d\n",
369 sb->s_id,
370 sbi->s_root_block + num_bm,
371 blocksize, size, reserved);
372 root_bh = affs_bread(sb, sbi->s_root_block + num_bm);
373 if (!root_bh)
374 continue;
375 if (!affs_checksum_block(sb, root_bh) &&
376 be32_to_cpu(AFFS_ROOT_HEAD(root_bh)->ptype) == T_SHORT &&
377 be32_to_cpu(AFFS_ROOT_TAIL(sb, root_bh)->stype) == ST_ROOT) {
378 sbi->s_hashsize = blocksize / 4 - 56;
379 sbi->s_root_block += num_bm;
380 key = 1;
381 goto got_root;
382 }
383 affs_brelse(root_bh);
384 root_bh = NULL;
385 }
386 }
387 if (!silent)
388 printk(KERN_ERR "AFFS: No valid root block on device %s\n",
389 sb->s_id);
390 goto out_error;
391
392 /* N.B. after this point bh must be released */
393got_root:
394 root_block = sbi->s_root_block;
395
396 /* Find out which kind of FS we have */
397 boot_bh = sb_bread(sb, 0);
398 if (!boot_bh) {
399 printk(KERN_ERR "AFFS: Cannot read boot block\n");
400 goto out_error;
401 }
Al Viro2b943cf2006-06-25 05:49:08 -0700402 memcpy(sig, boot_bh->b_data, 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 brelse(boot_bh);
Al Viro2b943cf2006-06-25 05:49:08 -0700404 chksum = be32_to_cpu(*(__be32 *)sig);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405
406 /* Dircache filesystems are compatible with non-dircache ones
407 * when reading. As long as they aren't supported, writing is
408 * not recommended.
409 */
410 if ((chksum == FS_DCFFS || chksum == MUFS_DCFFS || chksum == FS_DCOFS
411 || chksum == MUFS_DCOFS) && !(sb->s_flags & MS_RDONLY)) {
412 printk(KERN_NOTICE "AFFS: Dircache FS - mounting %s read only\n",
413 sb->s_id);
414 sb->s_flags |= MS_RDONLY;
415 }
416 switch (chksum) {
417 case MUFS_FS:
418 case MUFS_INTLFFS:
419 case MUFS_DCFFS:
420 sbi->s_flags |= SF_MUFS;
421 /* fall thru */
422 case FS_INTLFFS:
423 case FS_DCFFS:
424 sbi->s_flags |= SF_INTL;
425 break;
426 case MUFS_FFS:
427 sbi->s_flags |= SF_MUFS;
428 break;
429 case FS_FFS:
430 break;
431 case MUFS_OFS:
432 sbi->s_flags |= SF_MUFS;
433 /* fall thru */
434 case FS_OFS:
435 sbi->s_flags |= SF_OFS;
436 sb->s_flags |= MS_NOEXEC;
437 break;
438 case MUFS_DCOFS:
439 case MUFS_INTLOFS:
440 sbi->s_flags |= SF_MUFS;
441 case FS_DCOFS:
442 case FS_INTLOFS:
443 sbi->s_flags |= SF_INTL | SF_OFS;
444 sb->s_flags |= MS_NOEXEC;
445 break;
446 default:
447 printk(KERN_ERR "AFFS: Unknown filesystem on device %s: %08X\n",
448 sb->s_id, chksum);
449 goto out_error;
450 }
451
452 if (mount_flags & SF_VERBOSE) {
Al Viro2b943cf2006-06-25 05:49:08 -0700453 u8 len = AFFS_ROOT_TAIL(sb, root_bh)->disk_name[0];
454 printk(KERN_NOTICE "AFFS: Mounting volume \"%.*s\": Type=%.3s\\%c, Blocksize=%d\n",
455 len > 31 ? 31 : len,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 AFFS_ROOT_TAIL(sb, root_bh)->disk_name + 1,
Al Viro2b943cf2006-06-25 05:49:08 -0700457 sig, sig[3] + '0', blocksize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 }
459
460 sb->s_flags |= MS_NODEV | MS_NOSUID;
461
462 sbi->s_data_blksize = sb->s_blocksize;
463 if (sbi->s_flags & SF_OFS)
464 sbi->s_data_blksize -= 24;
465
466 /* Keep super block in cache */
467 sbi->s_root_bh = root_bh;
468 /* N.B. after this point s_root_bh must be released */
469
470 tmp_flags = sb->s_flags;
471 if (affs_init_bitmap(sb, &tmp_flags))
472 goto out_error;
473 sb->s_flags = tmp_flags;
474
475 /* set up enough so that it can read an inode */
476
David Howells210f8552008-02-07 00:15:29 -0800477 root_inode = affs_iget(sb, root_block);
478 if (IS_ERR(root_inode)) {
479 ret = PTR_ERR(root_inode);
480 goto out_error_noinode;
481 }
482
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 sb->s_root = d_alloc_root(root_inode);
484 if (!sb->s_root) {
485 printk(KERN_ERR "AFFS: Get root inode failed\n");
486 goto out_error;
487 }
488 sb->s_root->d_op = &affs_dentry_operations;
489
490 pr_debug("AFFS: s_flags=%lX\n",sb->s_flags);
491 return 0;
492
493 /*
494 * Begin the cascaded cleanup ...
495 */
496out_error:
497 if (root_inode)
498 iput(root_inode);
David Howells210f8552008-02-07 00:15:29 -0800499out_error_noinode:
Jesper Juhlf99d49a2005-11-07 01:01:34 -0800500 kfree(sbi->s_bitmap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 affs_brelse(root_bh);
Jesper Juhlf99d49a2005-11-07 01:01:34 -0800502 kfree(sbi->s_prefix);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 kfree(sbi);
504 sb->s_fs_info = NULL;
David Howells210f8552008-02-07 00:15:29 -0800505 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506}
507
508static int
509affs_remount(struct super_block *sb, int *flags, char *data)
510{
511 struct affs_sb_info *sbi = AFFS_SB(sb);
512 int blocksize;
513 uid_t uid;
514 gid_t gid;
515 int mode;
516 int reserved;
517 int root_block;
518 unsigned long mount_flags;
519 int res = 0;
Miklos Szeredie9b39612008-02-08 04:21:36 -0800520 char *new_opts = kstrdup(data, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521
522 pr_debug("AFFS: remount(flags=0x%x,opts=\"%s\")\n",*flags,data);
523
524 *flags |= MS_NODIRATIME;
525
Miklos Szeredie9b39612008-02-08 04:21:36 -0800526 if (!parse_options(data, &uid, &gid, &mode, &reserved, &root_block,
527 &blocksize, &sbi->s_prefix, sbi->s_volume,
528 &mount_flags)) {
529 kfree(new_opts);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 return -EINVAL;
Miklos Szeredie9b39612008-02-08 04:21:36 -0800531 }
Alessio Igor Bogani337eb002009-05-12 15:10:54 +0200532 lock_kernel();
Al Viro2a32ceb2009-05-08 16:05:57 -0400533 replace_mount_options(sb, new_opts);
Miklos Szeredie9b39612008-02-08 04:21:36 -0800534
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 sbi->s_flags = mount_flags;
536 sbi->s_mode = mode;
537 sbi->s_uid = uid;
538 sbi->s_gid = gid;
539
Alessio Igor Bogani337eb002009-05-12 15:10:54 +0200540 if ((*flags & MS_RDONLY) == (sb->s_flags & MS_RDONLY)) {
541 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 return 0;
Alessio Igor Bogani337eb002009-05-12 15:10:54 +0200543 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 if (*flags & MS_RDONLY) {
545 sb->s_dirt = 1;
546 while (sb->s_dirt)
547 affs_write_super(sb);
548 affs_free_bitmap(sb);
549 } else
550 res = affs_init_bitmap(sb, flags);
551
Alessio Igor Bogani337eb002009-05-12 15:10:54 +0200552 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 return res;
554}
555
556static int
David Howells726c3342006-06-23 02:02:58 -0700557affs_statfs(struct dentry *dentry, struct kstatfs *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558{
David Howells726c3342006-06-23 02:02:58 -0700559 struct super_block *sb = dentry->d_sb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 int free;
Coly Lia6a2a732009-04-02 16:59:32 -0700561 u64 id = huge_encode_dev(sb->s_bdev->bd_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562
563 pr_debug("AFFS: statfs() partsize=%d, reserved=%d\n",AFFS_SB(sb)->s_partition_size,
564 AFFS_SB(sb)->s_reserved);
565
566 free = affs_count_free_blocks(sb);
567 buf->f_type = AFFS_SUPER_MAGIC;
568 buf->f_bsize = sb->s_blocksize;
569 buf->f_blocks = AFFS_SB(sb)->s_partition_size - AFFS_SB(sb)->s_reserved;
570 buf->f_bfree = free;
571 buf->f_bavail = free;
Coly Lia6a2a732009-04-02 16:59:32 -0700572 buf->f_fsid.val[0] = (u32)id;
573 buf->f_fsid.val[1] = (u32)(id >> 32);
574 buf->f_namelen = 30;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 return 0;
576}
577
David Howells454e2392006-06-23 02:02:57 -0700578static int affs_get_sb(struct file_system_type *fs_type,
579 int flags, const char *dev_name, void *data, struct vfsmount *mnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580{
David Howells454e2392006-06-23 02:02:57 -0700581 return get_sb_bdev(fs_type, flags, dev_name, data, affs_fill_super,
582 mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583}
584
585static struct file_system_type affs_fs_type = {
586 .owner = THIS_MODULE,
587 .name = "affs",
588 .get_sb = affs_get_sb,
589 .kill_sb = kill_block_super,
590 .fs_flags = FS_REQUIRES_DEV,
591};
592
593static int __init init_affs_fs(void)
594{
595 int err = init_inodecache();
596 if (err)
597 goto out1;
598 err = register_filesystem(&affs_fs_type);
599 if (err)
600 goto out;
601 return 0;
602out:
603 destroy_inodecache();
604out1:
605 return err;
606}
607
608static void __exit exit_affs_fs(void)
609{
610 unregister_filesystem(&affs_fs_type);
611 destroy_inodecache();
612}
613
614MODULE_DESCRIPTION("Amiga filesystem support for Linux");
615MODULE_LICENSE("GPL");
616
617module_init(init_affs_fs)
618module_exit(exit_affs_fs)