blob: c837e43687a6809e13955ecaa1bbd1787a4427f9 [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>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090019#include <linux/slab.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
Artem Bityutskiybc862562012-06-06 18:56:51 +030028affs_commit_super(struct super_block *sb, int wait)
Christoph Hellwige2896432009-06-08 10:03:15 +020029{
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
Christoph Hellwige2896432009-06-08 10:03:15 +020034 secs_to_datestamp(get_seconds(), &tail->disk_change);
35 affs_fix_checksum(sb, bh);
36 mark_buffer_dirty(bh);
Artem Bityutskiy7435d502010-07-05 15:15:00 +030037 if (wait)
38 sync_dirty_buffer(bh);
Christoph Hellwige2896432009-06-08 10:03:15 +020039}
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
Jesper Juhlf99d49a2005-11-07 01:01:34 -080047 kfree(sbi->s_prefix);
Linus Torvalds1da177e2005-04-16 15:20:36 -070048 affs_free_bitmap(sb);
49 affs_brelse(sbi->s_root_bh);
50 kfree(sbi);
51 sb->s_fs_info = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070052}
53
54static void
55affs_write_super(struct super_block *sb)
56{
Christoph Hellwigebc1ac12009-05-11 23:35:03 +020057 lock_super(sb);
Artem Bityutskiy669d5f12010-07-05 15:14:59 +030058 if (!(sb->s_flags & MS_RDONLY))
Artem Bityutskiybc862562012-06-06 18:56:51 +030059 affs_commit_super(sb, 1);
Artem Bityutskiy669d5f12010-07-05 15:14:59 +030060 sb->s_dirt = 0;
Christoph Hellwigebc1ac12009-05-11 23:35:03 +020061 unlock_super(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
Artem Bityutskiy669d5f12010-07-05 15:14:59 +030063 pr_debug("AFFS: write_super() at %lu, clean=2\n", get_seconds());
Linus Torvalds1da177e2005-04-16 15:20:36 -070064}
65
Christoph Hellwige2896432009-06-08 10:03:15 +020066static int
67affs_sync_fs(struct super_block *sb, int wait)
68{
69 lock_super(sb);
Artem Bityutskiybc862562012-06-06 18:56:51 +030070 affs_commit_super(sb, wait);
Christoph Hellwige2896432009-06-08 10:03:15 +020071 sb->s_dirt = 0;
72 unlock_super(sb);
73 return 0;
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
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +110094static void affs_i_callback(struct rcu_head *head)
95{
96 struct inode *inode = container_of(head, struct inode, i_rcu);
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +110097 kmem_cache_free(affs_inode_cachep, AFFS_I(inode));
98}
99
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100static void affs_destroy_inode(struct inode *inode)
101{
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +1100102 call_rcu(&inode->i_rcu, affs_i_callback);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103}
104
Alexey Dobriyan51cc5062008-07-25 19:45:34 -0700105static void init_once(void *foo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106{
107 struct affs_inode_info *ei = (struct affs_inode_info *) foo;
108
Thomas Gleixner756b0322010-09-07 14:33:11 +0000109 sema_init(&ei->i_link_lock, 1);
110 sema_init(&ei->i_ext_lock, 1);
Christoph Lametera35afb82007-05-16 22:10:57 -0700111 inode_init_once(&ei->vfs_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112}
113
114static int init_inodecache(void)
115{
116 affs_inode_cachep = kmem_cache_create("affs_inode_cache",
117 sizeof(struct affs_inode_info),
Paul Jacksonfffb60f2006-03-24 03:16:06 -0800118 0, (SLAB_RECLAIM_ACCOUNT|
119 SLAB_MEM_SPREAD),
Paul Mundt20c2df82007-07-20 10:11:58 +0900120 init_once);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 if (affs_inode_cachep == NULL)
122 return -ENOMEM;
123 return 0;
124}
125
126static void destroy_inodecache(void)
127{
Alexey Dobriyan1a1d92c2006-09-27 01:49:40 -0700128 kmem_cache_destroy(affs_inode_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129}
130
Josef 'Jeff' Sipekee9b6d62007-02-12 00:55:41 -0800131static const struct super_operations affs_sops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 .alloc_inode = affs_alloc_inode,
133 .destroy_inode = affs_destroy_inode,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 .write_inode = affs_write_inode,
Al Virof053ddd2010-06-06 10:16:41 -0400135 .evict_inode = affs_evict_inode,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 .put_super = affs_put_super,
137 .write_super = affs_write_super,
Christoph Hellwige2896432009-06-08 10:03:15 +0200138 .sync_fs = affs_sync_fs,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 .statfs = affs_statfs,
140 .remount_fs = affs_remount,
Miklos Szeredie9b39612008-02-08 04:21:36 -0800141 .show_options = generic_show_options,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142};
143
144enum {
145 Opt_bs, Opt_mode, Opt_mufs, Opt_prefix, Opt_protect,
146 Opt_reserved, Opt_root, Opt_setgid, Opt_setuid,
147 Opt_verbose, Opt_volume, Opt_ignore, Opt_err,
148};
149
Steven Whitehousea447c092008-10-13 10:46:57 +0100150static const match_table_t tokens = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 {Opt_bs, "bs=%u"},
152 {Opt_mode, "mode=%o"},
153 {Opt_mufs, "mufs"},
154 {Opt_prefix, "prefix=%s"},
155 {Opt_protect, "protect"},
156 {Opt_reserved, "reserved=%u"},
157 {Opt_root, "root=%u"},
158 {Opt_setgid, "setgid=%u"},
159 {Opt_setuid, "setuid=%u"},
160 {Opt_verbose, "verbose"},
161 {Opt_volume, "volume=%s"},
162 {Opt_ignore, "grpquota"},
163 {Opt_ignore, "noquota"},
164 {Opt_ignore, "quota"},
165 {Opt_ignore, "usrquota"},
166 {Opt_err, NULL},
167};
168
169static int
170parse_options(char *options, uid_t *uid, gid_t *gid, int *mode, int *reserved, s32 *root,
171 int *blocksize, char **prefix, char *volume, unsigned long *mount_opts)
172{
173 char *p;
174 substring_t args[MAX_OPT_ARGS];
175
176 /* Fill in defaults */
177
David Howells21559982008-11-14 10:38:45 +1100178 *uid = current_uid();
179 *gid = current_gid();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 *reserved = 2;
181 *root = -1;
182 *blocksize = -1;
183 volume[0] = ':';
184 volume[1] = 0;
185 *mount_opts = 0;
186 if (!options)
187 return 1;
188
189 while ((p = strsep(&options, ",")) != NULL) {
190 int token, n, option;
191 if (!*p)
192 continue;
193
194 token = match_token(p, tokens, args);
195 switch (token) {
196 case Opt_bs:
197 if (match_int(&args[0], &n))
Al Viro217686e2010-01-24 00:06:22 -0500198 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 if (n != 512 && n != 1024 && n != 2048
200 && n != 4096) {
201 printk ("AFFS: Invalid blocksize (512, 1024, 2048, 4096 allowed)\n");
202 return 0;
203 }
204 *blocksize = n;
205 break;
206 case Opt_mode:
207 if (match_octal(&args[0], &option))
Al Viro217686e2010-01-24 00:06:22 -0500208 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 *mode = option & 0777;
210 *mount_opts |= SF_SETMODE;
211 break;
212 case Opt_mufs:
213 *mount_opts |= SF_MUFS;
214 break;
215 case Opt_prefix:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 *prefix = match_strdup(&args[0]);
217 if (!*prefix)
218 return 0;
219 *mount_opts |= SF_PREFIX;
220 break;
221 case Opt_protect:
222 *mount_opts |= SF_IMMUTABLE;
223 break;
224 case Opt_reserved:
225 if (match_int(&args[0], reserved))
Al Viro217686e2010-01-24 00:06:22 -0500226 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 break;
228 case Opt_root:
229 if (match_int(&args[0], root))
Al Viro217686e2010-01-24 00:06:22 -0500230 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 break;
232 case Opt_setgid:
233 if (match_int(&args[0], &option))
Al Viro217686e2010-01-24 00:06:22 -0500234 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 *gid = option;
236 *mount_opts |= SF_SETGID;
237 break;
238 case Opt_setuid:
239 if (match_int(&args[0], &option))
Al Viro217686e2010-01-24 00:06:22 -0500240 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 *uid = option;
242 *mount_opts |= SF_SETUID;
243 break;
244 case Opt_verbose:
245 *mount_opts |= SF_VERBOSE;
246 break;
247 case Opt_volume: {
248 char *vol = match_strdup(&args[0]);
Jim Meyering6db27dd2008-04-29 00:59:06 -0700249 if (!vol)
250 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 strlcpy(volume, vol, 32);
252 kfree(vol);
253 break;
254 }
255 case Opt_ignore:
256 /* Silently ignore the quota options */
257 break;
258 default:
259 printk("AFFS: Unrecognized mount option \"%s\" "
260 "or missing value\n", p);
261 return 0;
262 }
263 }
264 return 1;
265}
266
267/* This function definitely needs to be split up. Some fine day I'll
268 * hopefully have the guts to do so. Until then: sorry for the mess.
269 */
270
271static int affs_fill_super(struct super_block *sb, void *data, int silent)
272{
273 struct affs_sb_info *sbi;
274 struct buffer_head *root_bh = NULL;
275 struct buffer_head *boot_bh;
276 struct inode *root_inode = NULL;
277 s32 root_block;
278 int size, blocksize;
279 u32 chksum;
280 int num_bm;
281 int i, j;
282 s32 key;
283 uid_t uid;
284 gid_t gid;
285 int reserved;
286 unsigned long mount_flags;
287 int tmp_flags; /* fix remount prototype... */
Al Viro2b943cf2006-06-25 05:49:08 -0700288 u8 sig[4];
David Howells210f8552008-02-07 00:15:29 -0800289 int ret = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290
Miklos Szeredie9b39612008-02-08 04:21:36 -0800291 save_mount_options(sb, data);
292
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 pr_debug("AFFS: read_super(%s)\n",data ? (const char *)data : "no options");
294
295 sb->s_magic = AFFS_SUPER_MAGIC;
296 sb->s_op = &affs_sops;
297 sb->s_flags |= MS_NODIRATIME;
298
Panagiotis Issarisf8314dc2006-09-27 01:49:37 -0700299 sbi = kzalloc(sizeof(struct affs_sb_info), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 if (!sbi)
301 return -ENOMEM;
Jan Blunck74c41422010-08-15 22:52:36 +0200302
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 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);
Al Viro48fde702012-01-08 22:15:13 -0500472 goto out_error;
David Howells210f8552008-02-07 00:15:29 -0800473 }
474
Al Viroa1298802011-01-12 16:45:19 -0500475 if (AFFS_SB(sb)->s_flags & SF_INTL)
476 sb->s_d_op = &affs_intl_dentry_operations;
477 else
478 sb->s_d_op = &affs_dentry_operations;
479
Al Viro48fde702012-01-08 22:15:13 -0500480 sb->s_root = d_make_root(root_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 if (!sb->s_root) {
482 printk(KERN_ERR "AFFS: Get root inode failed\n");
483 goto out_error;
484 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485
486 pr_debug("AFFS: s_flags=%lX\n",sb->s_flags);
487 return 0;
488
489 /*
490 * Begin the cascaded cleanup ...
491 */
492out_error:
Jesper Juhlf99d49a2005-11-07 01:01:34 -0800493 kfree(sbi->s_bitmap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 affs_brelse(root_bh);
Jesper Juhlf99d49a2005-11-07 01:01:34 -0800495 kfree(sbi->s_prefix);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 kfree(sbi);
497 sb->s_fs_info = NULL;
David Howells210f8552008-02-07 00:15:29 -0800498 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499}
500
501static int
502affs_remount(struct super_block *sb, int *flags, char *data)
503{
504 struct affs_sb_info *sbi = AFFS_SB(sb);
505 int blocksize;
506 uid_t uid;
507 gid_t gid;
508 int mode;
509 int reserved;
510 int root_block;
511 unsigned long mount_flags;
512 int res = 0;
Miklos Szeredie9b39612008-02-08 04:21:36 -0800513 char *new_opts = kstrdup(data, GFP_KERNEL);
Al Viro29333922010-01-24 00:04:07 -0500514 char volume[32];
515 char *prefix = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516
517 pr_debug("AFFS: remount(flags=0x%x,opts=\"%s\")\n",*flags,data);
518
519 *flags |= MS_NODIRATIME;
520
Al Viro29333922010-01-24 00:04:07 -0500521 memcpy(volume, sbi->s_volume, 32);
Miklos Szeredie9b39612008-02-08 04:21:36 -0800522 if (!parse_options(data, &uid, &gid, &mode, &reserved, &root_block,
Al Viro29333922010-01-24 00:04:07 -0500523 &blocksize, &prefix, volume,
Miklos Szeredie9b39612008-02-08 04:21:36 -0800524 &mount_flags)) {
Al Viro29333922010-01-24 00:04:07 -0500525 kfree(prefix);
Miklos Szeredie9b39612008-02-08 04:21:36 -0800526 kfree(new_opts);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 return -EINVAL;
Miklos Szeredie9b39612008-02-08 04:21:36 -0800528 }
Jan Blunck74c41422010-08-15 22:52:36 +0200529
Al Viro2a32ceb2009-05-08 16:05:57 -0400530 replace_mount_options(sb, new_opts);
Miklos Szeredie9b39612008-02-08 04:21:36 -0800531
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 sbi->s_flags = mount_flags;
533 sbi->s_mode = mode;
534 sbi->s_uid = uid;
535 sbi->s_gid = gid;
Al Viro29333922010-01-24 00:04:07 -0500536 /* protect against readers */
537 spin_lock(&sbi->symlink_lock);
538 if (prefix) {
539 kfree(sbi->s_prefix);
540 sbi->s_prefix = prefix;
541 }
542 memcpy(sbi->s_volume, volume, 32);
543 spin_unlock(&sbi->symlink_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544
Jan Blunck74c41422010-08-15 22:52:36 +0200545 if ((*flags & MS_RDONLY) == (sb->s_flags & MS_RDONLY))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 return 0;
Jan Blunck74c41422010-08-15 22:52:36 +0200547
Artem Bityutskiy0164b1a2012-06-06 18:56:53 +0300548 if (*flags & MS_RDONLY)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 affs_free_bitmap(sb);
Artem Bityutskiy0164b1a2012-06-06 18:56:53 +0300550 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 res = affs_init_bitmap(sb, flags);
552
553 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
Al Viro152a0832010-07-25 00:46:55 +0400578static struct dentry *affs_mount(struct file_system_type *fs_type,
579 int flags, const char *dev_name, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580{
Al Viro152a0832010-07-25 00:46:55 +0400581 return mount_bdev(fs_type, flags, dev_name, data, affs_fill_super);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582}
583
584static struct file_system_type affs_fs_type = {
585 .owner = THIS_MODULE,
586 .name = "affs",
Al Viro152a0832010-07-25 00:46:55 +0400587 .mount = affs_mount,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 .kill_sb = kill_block_super,
589 .fs_flags = FS_REQUIRES_DEV,
590};
591
592static int __init init_affs_fs(void)
593{
594 int err = init_inodecache();
595 if (err)
596 goto out1;
597 err = register_filesystem(&affs_fs_type);
598 if (err)
599 goto out;
600 return 0;
601out:
602 destroy_inodecache();
603out1:
604 return err;
605}
606
607static void __exit exit_affs_fs(void)
608{
609 unregister_filesystem(&affs_fs_type);
610 destroy_inodecache();
611}
612
613MODULE_DESCRIPTION("Amiga filesystem support for Linux");
614MODULE_LICENSE("GPL");
615
616module_init(init_affs_fs)
617module_exit(exit_affs_fs)