blob: fde3b9ae700f6780b5059c820ae4400192821fde [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>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090020#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include "affs.h"
22
23extern struct timezone sys_tz;
24
David Howells726c3342006-06-23 02:02:58 -070025static int affs_statfs(struct dentry *dentry, struct kstatfs *buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -070026static int affs_remount (struct super_block *sb, int *flags, char *data);
27
28static void
Christoph Hellwige2896432009-06-08 10:03:15 +020029affs_commit_super(struct super_block *sb, int clean)
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);
39}
40
41static void
Linus Torvalds1da177e2005-04-16 15:20:36 -070042affs_put_super(struct super_block *sb)
43{
44 struct affs_sb_info *sbi = AFFS_SB(sb);
45 pr_debug("AFFS: put_super()\n");
46
Christoph Hellwig6cfd0142009-05-05 15:40:36 +020047 lock_kernel();
48
Christoph Hellwige2896432009-06-08 10:03:15 +020049 if (!(sb->s_flags & MS_RDONLY))
50 affs_commit_super(sb, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
Jesper Juhlf99d49a2005-11-07 01:01:34 -080052 kfree(sbi->s_prefix);
Linus Torvalds1da177e2005-04-16 15:20:36 -070053 affs_free_bitmap(sb);
54 affs_brelse(sbi->s_root_bh);
55 kfree(sbi);
56 sb->s_fs_info = NULL;
Christoph Hellwig6cfd0142009-05-05 15:40:36 +020057
58 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -070059}
60
61static void
62affs_write_super(struct super_block *sb)
63{
Christoph Hellwigebc1ac12009-05-11 23:35:03 +020064 lock_super(sb);
Artem Bityutskiy669d5f12010-07-05 15:14:59 +030065 if (!(sb->s_flags & MS_RDONLY))
66 affs_commit_super(sb, 2);
67 sb->s_dirt = 0;
Christoph Hellwigebc1ac12009-05-11 23:35:03 +020068 unlock_super(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
Artem Bityutskiy669d5f12010-07-05 15:14:59 +030070 pr_debug("AFFS: write_super() at %lu, clean=2\n", get_seconds());
Linus Torvalds1da177e2005-04-16 15:20:36 -070071}
72
Christoph Hellwige2896432009-06-08 10:03:15 +020073static int
74affs_sync_fs(struct super_block *sb, int wait)
75{
76 lock_super(sb);
77 affs_commit_super(sb, 2);
78 sb->s_dirt = 0;
79 unlock_super(sb);
80 return 0;
81}
82
Christoph Lametere18b8902006-12-06 20:33:20 -080083static struct kmem_cache * affs_inode_cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -070084
85static struct inode *affs_alloc_inode(struct super_block *sb)
86{
Roman Zippeldca3c332008-04-29 17:02:20 +020087 struct affs_inode_info *i;
88
89 i = kmem_cache_alloc(affs_inode_cachep, GFP_KERNEL);
90 if (!i)
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 return NULL;
Roman Zippeldca3c332008-04-29 17:02:20 +020092
93 i->vfs_inode.i_version = 1;
94 i->i_lc = NULL;
95 i->i_ext_bh = NULL;
96 i->i_pa_cnt = 0;
97
98 return &i->vfs_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -070099}
100
101static void affs_destroy_inode(struct inode *inode)
102{
103 kmem_cache_free(affs_inode_cachep, AFFS_I(inode));
104}
105
Alexey Dobriyan51cc5062008-07-25 19:45:34 -0700106static void init_once(void *foo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107{
108 struct affs_inode_info *ei = (struct affs_inode_info *) foo;
109
Christoph Lametera35afb82007-05-16 22:10:57 -0700110 init_MUTEX(&ei->i_link_lock);
111 init_MUTEX(&ei->i_ext_lock);
112 inode_init_once(&ei->vfs_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113}
114
115static int init_inodecache(void)
116{
117 affs_inode_cachep = kmem_cache_create("affs_inode_cache",
118 sizeof(struct affs_inode_info),
Paul Jacksonfffb60f2006-03-24 03:16:06 -0800119 0, (SLAB_RECLAIM_ACCOUNT|
120 SLAB_MEM_SPREAD),
Paul Mundt20c2df82007-07-20 10:11:58 +0900121 init_once);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 if (affs_inode_cachep == NULL)
123 return -ENOMEM;
124 return 0;
125}
126
127static void destroy_inodecache(void)
128{
Alexey Dobriyan1a1d92c2006-09-27 01:49:40 -0700129 kmem_cache_destroy(affs_inode_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130}
131
Josef 'Jeff' Sipekee9b6d62007-02-12 00:55:41 -0800132static const struct super_operations affs_sops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 .alloc_inode = affs_alloc_inode,
134 .destroy_inode = affs_destroy_inode,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 .write_inode = affs_write_inode,
Al Virof053ddd2010-06-06 10:16:41 -0400136 .evict_inode = affs_evict_inode,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 .put_super = affs_put_super,
138 .write_super = affs_write_super,
Christoph Hellwige2896432009-06-08 10:03:15 +0200139 .sync_fs = affs_sync_fs,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 .statfs = affs_statfs,
141 .remount_fs = affs_remount,
Miklos Szeredie9b39612008-02-08 04:21:36 -0800142 .show_options = generic_show_options,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143};
144
145enum {
146 Opt_bs, Opt_mode, Opt_mufs, Opt_prefix, Opt_protect,
147 Opt_reserved, Opt_root, Opt_setgid, Opt_setuid,
148 Opt_verbose, Opt_volume, Opt_ignore, Opt_err,
149};
150
Steven Whitehousea447c092008-10-13 10:46:57 +0100151static const match_table_t tokens = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 {Opt_bs, "bs=%u"},
153 {Opt_mode, "mode=%o"},
154 {Opt_mufs, "mufs"},
155 {Opt_prefix, "prefix=%s"},
156 {Opt_protect, "protect"},
157 {Opt_reserved, "reserved=%u"},
158 {Opt_root, "root=%u"},
159 {Opt_setgid, "setgid=%u"},
160 {Opt_setuid, "setuid=%u"},
161 {Opt_verbose, "verbose"},
162 {Opt_volume, "volume=%s"},
163 {Opt_ignore, "grpquota"},
164 {Opt_ignore, "noquota"},
165 {Opt_ignore, "quota"},
166 {Opt_ignore, "usrquota"},
167 {Opt_err, NULL},
168};
169
170static int
171parse_options(char *options, uid_t *uid, gid_t *gid, int *mode, int *reserved, s32 *root,
172 int *blocksize, char **prefix, char *volume, unsigned long *mount_opts)
173{
174 char *p;
175 substring_t args[MAX_OPT_ARGS];
176
177 /* Fill in defaults */
178
David Howells21559982008-11-14 10:38:45 +1100179 *uid = current_uid();
180 *gid = current_gid();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 *reserved = 2;
182 *root = -1;
183 *blocksize = -1;
184 volume[0] = ':';
185 volume[1] = 0;
186 *mount_opts = 0;
187 if (!options)
188 return 1;
189
190 while ((p = strsep(&options, ",")) != NULL) {
191 int token, n, option;
192 if (!*p)
193 continue;
194
195 token = match_token(p, tokens, args);
196 switch (token) {
197 case Opt_bs:
198 if (match_int(&args[0], &n))
Al Viro217686e2010-01-24 00:06:22 -0500199 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 if (n != 512 && n != 1024 && n != 2048
201 && n != 4096) {
202 printk ("AFFS: Invalid blocksize (512, 1024, 2048, 4096 allowed)\n");
203 return 0;
204 }
205 *blocksize = n;
206 break;
207 case Opt_mode:
208 if (match_octal(&args[0], &option))
Al Viro217686e2010-01-24 00:06:22 -0500209 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 *mode = option & 0777;
211 *mount_opts |= SF_SETMODE;
212 break;
213 case Opt_mufs:
214 *mount_opts |= SF_MUFS;
215 break;
216 case Opt_prefix:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 *prefix = match_strdup(&args[0]);
218 if (!*prefix)
219 return 0;
220 *mount_opts |= SF_PREFIX;
221 break;
222 case Opt_protect:
223 *mount_opts |= SF_IMMUTABLE;
224 break;
225 case Opt_reserved:
226 if (match_int(&args[0], reserved))
Al Viro217686e2010-01-24 00:06:22 -0500227 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 break;
229 case Opt_root:
230 if (match_int(&args[0], root))
Al Viro217686e2010-01-24 00:06:22 -0500231 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 break;
233 case Opt_setgid:
234 if (match_int(&args[0], &option))
Al Viro217686e2010-01-24 00:06:22 -0500235 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 *gid = option;
237 *mount_opts |= SF_SETGID;
238 break;
239 case Opt_setuid:
240 if (match_int(&args[0], &option))
Al Viro217686e2010-01-24 00:06:22 -0500241 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 *uid = option;
243 *mount_opts |= SF_SETUID;
244 break;
245 case Opt_verbose:
246 *mount_opts |= SF_VERBOSE;
247 break;
248 case Opt_volume: {
249 char *vol = match_strdup(&args[0]);
Jim Meyering6db27dd2008-04-29 00:59:06 -0700250 if (!vol)
251 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 strlcpy(volume, vol, 32);
253 kfree(vol);
254 break;
255 }
256 case Opt_ignore:
257 /* Silently ignore the quota options */
258 break;
259 default:
260 printk("AFFS: Unrecognized mount option \"%s\" "
261 "or missing value\n", p);
262 return 0;
263 }
264 }
265 return 1;
266}
267
268/* This function definitely needs to be split up. Some fine day I'll
269 * hopefully have the guts to do so. Until then: sorry for the mess.
270 */
271
272static int affs_fill_super(struct super_block *sb, void *data, int silent)
273{
274 struct affs_sb_info *sbi;
275 struct buffer_head *root_bh = NULL;
276 struct buffer_head *boot_bh;
277 struct inode *root_inode = NULL;
278 s32 root_block;
279 int size, blocksize;
280 u32 chksum;
281 int num_bm;
282 int i, j;
283 s32 key;
284 uid_t uid;
285 gid_t gid;
286 int reserved;
287 unsigned long mount_flags;
288 int tmp_flags; /* fix remount prototype... */
Al Viro2b943cf2006-06-25 05:49:08 -0700289 u8 sig[4];
David Howells210f8552008-02-07 00:15:29 -0800290 int ret = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291
Miklos Szeredie9b39612008-02-08 04:21:36 -0800292 save_mount_options(sb, data);
293
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 pr_debug("AFFS: read_super(%s)\n",data ? (const char *)data : "no options");
295
296 sb->s_magic = AFFS_SUPER_MAGIC;
297 sb->s_op = &affs_sops;
298 sb->s_flags |= MS_NODIRATIME;
299
Panagiotis Issarisf8314dc2006-09-27 01:49:37 -0700300 sbi = kzalloc(sizeof(struct affs_sb_info), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 if (!sbi)
302 return -ENOMEM;
303 sb->s_fs_info = sbi;
Matthias Kaehlcke7d135a52008-07-25 19:44:51 -0700304 mutex_init(&sbi->s_bmlock);
Al Viro29333922010-01-24 00:04:07 -0500305 spin_lock_init(&sbi->symlink_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306
307 if (!parse_options(data,&uid,&gid,&i,&reserved,&root_block,
308 &blocksize,&sbi->s_prefix,
309 sbi->s_volume, &mount_flags)) {
310 printk(KERN_ERR "AFFS: Error parsing options\n");
Al Viroafc70ed2010-01-23 23:38:27 -0500311 kfree(sbi->s_prefix);
312 kfree(sbi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 return -EINVAL;
314 }
315 /* N.B. after this point s_prefix must be released */
316
317 sbi->s_flags = mount_flags;
318 sbi->s_mode = i;
319 sbi->s_uid = uid;
320 sbi->s_gid = gid;
321 sbi->s_reserved= reserved;
322
323 /* Get the size of the device in 512-byte blocks.
324 * If we later see that the partition uses bigger
325 * blocks, we will have to change it.
326 */
327
328 size = sb->s_bdev->bd_inode->i_size >> 9;
329 pr_debug("AFFS: initial blocksize=%d, #blocks=%d\n", 512, size);
330
331 affs_set_blocksize(sb, PAGE_SIZE);
332 /* Try to find root block. Its location depends on the block size. */
333
334 i = 512;
335 j = 4096;
336 if (blocksize > 0) {
337 i = j = blocksize;
338 size = size / (blocksize / 512);
339 }
340 for (blocksize = i, key = 0; blocksize <= j; blocksize <<= 1, size >>= 1) {
341 sbi->s_root_block = root_block;
342 if (root_block < 0)
343 sbi->s_root_block = (reserved + size - 1) / 2;
344 pr_debug("AFFS: setting blocksize to %d\n", blocksize);
345 affs_set_blocksize(sb, blocksize);
346 sbi->s_partition_size = size;
347
348 /* The root block location that was calculated above is not
349 * correct if the partition size is an odd number of 512-
350 * byte blocks, which will be rounded down to a number of
351 * 1024-byte blocks, and if there were an even number of
352 * reserved blocks. Ideally, all partition checkers should
353 * report the real number of blocks of the real blocksize,
354 * but since this just cannot be done, we have to try to
355 * find the root block anyways. In the above case, it is one
356 * block behind the calculated one. So we check this one, too.
357 */
358 for (num_bm = 0; num_bm < 2; num_bm++) {
359 pr_debug("AFFS: Dev %s, trying root=%u, bs=%d, "
360 "size=%d, reserved=%d\n",
361 sb->s_id,
362 sbi->s_root_block + num_bm,
363 blocksize, size, reserved);
364 root_bh = affs_bread(sb, sbi->s_root_block + num_bm);
365 if (!root_bh)
366 continue;
367 if (!affs_checksum_block(sb, root_bh) &&
368 be32_to_cpu(AFFS_ROOT_HEAD(root_bh)->ptype) == T_SHORT &&
369 be32_to_cpu(AFFS_ROOT_TAIL(sb, root_bh)->stype) == ST_ROOT) {
370 sbi->s_hashsize = blocksize / 4 - 56;
371 sbi->s_root_block += num_bm;
372 key = 1;
373 goto got_root;
374 }
375 affs_brelse(root_bh);
376 root_bh = NULL;
377 }
378 }
379 if (!silent)
380 printk(KERN_ERR "AFFS: No valid root block on device %s\n",
381 sb->s_id);
382 goto out_error;
383
384 /* N.B. after this point bh must be released */
385got_root:
386 root_block = sbi->s_root_block;
387
388 /* Find out which kind of FS we have */
389 boot_bh = sb_bread(sb, 0);
390 if (!boot_bh) {
391 printk(KERN_ERR "AFFS: Cannot read boot block\n");
392 goto out_error;
393 }
Al Viro2b943cf2006-06-25 05:49:08 -0700394 memcpy(sig, boot_bh->b_data, 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 brelse(boot_bh);
Al Viro2b943cf2006-06-25 05:49:08 -0700396 chksum = be32_to_cpu(*(__be32 *)sig);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397
398 /* Dircache filesystems are compatible with non-dircache ones
399 * when reading. As long as they aren't supported, writing is
400 * not recommended.
401 */
402 if ((chksum == FS_DCFFS || chksum == MUFS_DCFFS || chksum == FS_DCOFS
403 || chksum == MUFS_DCOFS) && !(sb->s_flags & MS_RDONLY)) {
404 printk(KERN_NOTICE "AFFS: Dircache FS - mounting %s read only\n",
405 sb->s_id);
406 sb->s_flags |= MS_RDONLY;
407 }
408 switch (chksum) {
409 case MUFS_FS:
410 case MUFS_INTLFFS:
411 case MUFS_DCFFS:
412 sbi->s_flags |= SF_MUFS;
413 /* fall thru */
414 case FS_INTLFFS:
415 case FS_DCFFS:
416 sbi->s_flags |= SF_INTL;
417 break;
418 case MUFS_FFS:
419 sbi->s_flags |= SF_MUFS;
420 break;
421 case FS_FFS:
422 break;
423 case MUFS_OFS:
424 sbi->s_flags |= SF_MUFS;
425 /* fall thru */
426 case FS_OFS:
427 sbi->s_flags |= SF_OFS;
428 sb->s_flags |= MS_NOEXEC;
429 break;
430 case MUFS_DCOFS:
431 case MUFS_INTLOFS:
432 sbi->s_flags |= SF_MUFS;
433 case FS_DCOFS:
434 case FS_INTLOFS:
435 sbi->s_flags |= SF_INTL | SF_OFS;
436 sb->s_flags |= MS_NOEXEC;
437 break;
438 default:
439 printk(KERN_ERR "AFFS: Unknown filesystem on device %s: %08X\n",
440 sb->s_id, chksum);
441 goto out_error;
442 }
443
444 if (mount_flags & SF_VERBOSE) {
Al Viro2b943cf2006-06-25 05:49:08 -0700445 u8 len = AFFS_ROOT_TAIL(sb, root_bh)->disk_name[0];
446 printk(KERN_NOTICE "AFFS: Mounting volume \"%.*s\": Type=%.3s\\%c, Blocksize=%d\n",
447 len > 31 ? 31 : len,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 AFFS_ROOT_TAIL(sb, root_bh)->disk_name + 1,
Al Viro2b943cf2006-06-25 05:49:08 -0700449 sig, sig[3] + '0', blocksize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 }
451
452 sb->s_flags |= MS_NODEV | MS_NOSUID;
453
454 sbi->s_data_blksize = sb->s_blocksize;
455 if (sbi->s_flags & SF_OFS)
456 sbi->s_data_blksize -= 24;
457
458 /* Keep super block in cache */
459 sbi->s_root_bh = root_bh;
460 /* N.B. after this point s_root_bh must be released */
461
462 tmp_flags = sb->s_flags;
463 if (affs_init_bitmap(sb, &tmp_flags))
464 goto out_error;
465 sb->s_flags = tmp_flags;
466
467 /* set up enough so that it can read an inode */
468
David Howells210f8552008-02-07 00:15:29 -0800469 root_inode = affs_iget(sb, root_block);
470 if (IS_ERR(root_inode)) {
471 ret = PTR_ERR(root_inode);
472 goto out_error_noinode;
473 }
474
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 sb->s_root = d_alloc_root(root_inode);
476 if (!sb->s_root) {
477 printk(KERN_ERR "AFFS: Get root inode failed\n");
478 goto out_error;
479 }
480 sb->s_root->d_op = &affs_dentry_operations;
481
482 pr_debug("AFFS: s_flags=%lX\n",sb->s_flags);
483 return 0;
484
485 /*
486 * Begin the cascaded cleanup ...
487 */
488out_error:
489 if (root_inode)
490 iput(root_inode);
David Howells210f8552008-02-07 00:15:29 -0800491out_error_noinode:
Jesper Juhlf99d49a2005-11-07 01:01:34 -0800492 kfree(sbi->s_bitmap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 affs_brelse(root_bh);
Jesper Juhlf99d49a2005-11-07 01:01:34 -0800494 kfree(sbi->s_prefix);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 kfree(sbi);
496 sb->s_fs_info = NULL;
David Howells210f8552008-02-07 00:15:29 -0800497 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498}
499
500static int
501affs_remount(struct super_block *sb, int *flags, char *data)
502{
503 struct affs_sb_info *sbi = AFFS_SB(sb);
504 int blocksize;
505 uid_t uid;
506 gid_t gid;
507 int mode;
508 int reserved;
509 int root_block;
510 unsigned long mount_flags;
511 int res = 0;
Miklos Szeredie9b39612008-02-08 04:21:36 -0800512 char *new_opts = kstrdup(data, GFP_KERNEL);
Al Viro29333922010-01-24 00:04:07 -0500513 char volume[32];
514 char *prefix = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515
516 pr_debug("AFFS: remount(flags=0x%x,opts=\"%s\")\n",*flags,data);
517
518 *flags |= MS_NODIRATIME;
519
Al Viro29333922010-01-24 00:04:07 -0500520 memcpy(volume, sbi->s_volume, 32);
Miklos Szeredie9b39612008-02-08 04:21:36 -0800521 if (!parse_options(data, &uid, &gid, &mode, &reserved, &root_block,
Al Viro29333922010-01-24 00:04:07 -0500522 &blocksize, &prefix, volume,
Miklos Szeredie9b39612008-02-08 04:21:36 -0800523 &mount_flags)) {
Al Viro29333922010-01-24 00:04:07 -0500524 kfree(prefix);
Miklos Szeredie9b39612008-02-08 04:21:36 -0800525 kfree(new_opts);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 return -EINVAL;
Miklos Szeredie9b39612008-02-08 04:21:36 -0800527 }
Alessio Igor Bogani337eb002009-05-12 15:10:54 +0200528 lock_kernel();
Al Viro2a32ceb2009-05-08 16:05:57 -0400529 replace_mount_options(sb, new_opts);
Miklos Szeredie9b39612008-02-08 04:21:36 -0800530
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 sbi->s_flags = mount_flags;
532 sbi->s_mode = mode;
533 sbi->s_uid = uid;
534 sbi->s_gid = gid;
Al Viro29333922010-01-24 00:04:07 -0500535 /* protect against readers */
536 spin_lock(&sbi->symlink_lock);
537 if (prefix) {
538 kfree(sbi->s_prefix);
539 sbi->s_prefix = prefix;
540 }
541 memcpy(sbi->s_volume, volume, 32);
542 spin_unlock(&sbi->symlink_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543
Alessio Igor Bogani337eb002009-05-12 15:10:54 +0200544 if ((*flags & MS_RDONLY) == (sb->s_flags & MS_RDONLY)) {
545 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 return 0;
Alessio Igor Bogani337eb002009-05-12 15:10:54 +0200547 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 if (*flags & MS_RDONLY) {
Artem Bityutskiy669d5f12010-07-05 15:14:59 +0300549 affs_write_super(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 affs_free_bitmap(sb);
551 } else
552 res = affs_init_bitmap(sb, flags);
553
Alessio Igor Bogani337eb002009-05-12 15:10:54 +0200554 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 return res;
556}
557
558static int
David Howells726c3342006-06-23 02:02:58 -0700559affs_statfs(struct dentry *dentry, struct kstatfs *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560{
David Howells726c3342006-06-23 02:02:58 -0700561 struct super_block *sb = dentry->d_sb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 int free;
Coly Lia6a2a732009-04-02 16:59:32 -0700563 u64 id = huge_encode_dev(sb->s_bdev->bd_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564
565 pr_debug("AFFS: statfs() partsize=%d, reserved=%d\n",AFFS_SB(sb)->s_partition_size,
566 AFFS_SB(sb)->s_reserved);
567
568 free = affs_count_free_blocks(sb);
569 buf->f_type = AFFS_SUPER_MAGIC;
570 buf->f_bsize = sb->s_blocksize;
571 buf->f_blocks = AFFS_SB(sb)->s_partition_size - AFFS_SB(sb)->s_reserved;
572 buf->f_bfree = free;
573 buf->f_bavail = free;
Coly Lia6a2a732009-04-02 16:59:32 -0700574 buf->f_fsid.val[0] = (u32)id;
575 buf->f_fsid.val[1] = (u32)(id >> 32);
576 buf->f_namelen = 30;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 return 0;
578}
579
David Howells454e2392006-06-23 02:02:57 -0700580static int affs_get_sb(struct file_system_type *fs_type,
581 int flags, const char *dev_name, void *data, struct vfsmount *mnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582{
David Howells454e2392006-06-23 02:02:57 -0700583 return get_sb_bdev(fs_type, flags, dev_name, data, affs_fill_super,
584 mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585}
586
587static struct file_system_type affs_fs_type = {
588 .owner = THIS_MODULE,
589 .name = "affs",
590 .get_sb = affs_get_sb,
591 .kill_sb = kill_block_super,
592 .fs_flags = FS_REQUIRES_DEV,
593};
594
595static int __init init_affs_fs(void)
596{
597 int err = init_inodecache();
598 if (err)
599 goto out1;
600 err = register_filesystem(&affs_fs_type);
601 if (err)
602 goto out;
603 return 0;
604out:
605 destroy_inodecache();
606out1:
607 return err;
608}
609
610static void __exit exit_affs_fs(void)
611{
612 unregister_filesystem(&affs_fs_type);
613 destroy_inodecache();
614}
615
616MODULE_DESCRIPTION("Amiga filesystem support for Linux");
617MODULE_LICENSE("GPL");
618
619module_init(init_affs_fs)
620module_exit(exit_affs_fs)