blob: 1d42e468abdd06f4747a43c37ae5f1e0d3a85f2e [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
Artem Bityutskiy7435d502010-07-05 15:15:00 +030047 if (!(sb->s_flags & MS_RDONLY) && sb->s_dirt)
Artem Bityutskiybc862562012-06-06 18:56:51 +030048 affs_commit_super(sb, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
Jesper Juhlf99d49a2005-11-07 01:01:34 -080050 kfree(sbi->s_prefix);
Linus Torvalds1da177e2005-04-16 15:20:36 -070051 affs_free_bitmap(sb);
52 affs_brelse(sbi->s_root_bh);
53 kfree(sbi);
54 sb->s_fs_info = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070055}
56
57static void
58affs_write_super(struct super_block *sb)
59{
Christoph Hellwigebc1ac12009-05-11 23:35:03 +020060 lock_super(sb);
Artem Bityutskiy669d5f12010-07-05 15:14:59 +030061 if (!(sb->s_flags & MS_RDONLY))
Artem Bityutskiybc862562012-06-06 18:56:51 +030062 affs_commit_super(sb, 1);
Artem Bityutskiy669d5f12010-07-05 15:14:59 +030063 sb->s_dirt = 0;
Christoph Hellwigebc1ac12009-05-11 23:35:03 +020064 unlock_super(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -070065
Artem Bityutskiy669d5f12010-07-05 15:14:59 +030066 pr_debug("AFFS: write_super() at %lu, clean=2\n", get_seconds());
Linus Torvalds1da177e2005-04-16 15:20:36 -070067}
68
Christoph Hellwige2896432009-06-08 10:03:15 +020069static int
70affs_sync_fs(struct super_block *sb, int wait)
71{
72 lock_super(sb);
Artem Bityutskiybc862562012-06-06 18:56:51 +030073 affs_commit_super(sb, wait);
Christoph Hellwige2896432009-06-08 10:03:15 +020074 sb->s_dirt = 0;
75 unlock_super(sb);
76 return 0;
77}
78
Christoph Lametere18b8902006-12-06 20:33:20 -080079static struct kmem_cache * affs_inode_cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -070080
81static struct inode *affs_alloc_inode(struct super_block *sb)
82{
Roman Zippeldca3c332008-04-29 17:02:20 +020083 struct affs_inode_info *i;
84
85 i = kmem_cache_alloc(affs_inode_cachep, GFP_KERNEL);
86 if (!i)
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 return NULL;
Roman Zippeldca3c332008-04-29 17:02:20 +020088
89 i->vfs_inode.i_version = 1;
90 i->i_lc = NULL;
91 i->i_ext_bh = NULL;
92 i->i_pa_cnt = 0;
93
94 return &i->vfs_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -070095}
96
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +110097static void affs_i_callback(struct rcu_head *head)
98{
99 struct inode *inode = container_of(head, struct inode, i_rcu);
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +1100100 kmem_cache_free(affs_inode_cachep, AFFS_I(inode));
101}
102
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103static void affs_destroy_inode(struct inode *inode)
104{
Nick Pigginfa0d7e3d2011-01-07 17:49:49 +1100105 call_rcu(&inode->i_rcu, affs_i_callback);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106}
107
Alexey Dobriyan51cc5062008-07-25 19:45:34 -0700108static void init_once(void *foo)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109{
110 struct affs_inode_info *ei = (struct affs_inode_info *) foo;
111
Thomas Gleixner756b0322010-09-07 14:33:11 +0000112 sema_init(&ei->i_link_lock, 1);
113 sema_init(&ei->i_ext_lock, 1);
Christoph Lametera35afb82007-05-16 22:10:57 -0700114 inode_init_once(&ei->vfs_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115}
116
117static int init_inodecache(void)
118{
119 affs_inode_cachep = kmem_cache_create("affs_inode_cache",
120 sizeof(struct affs_inode_info),
Paul Jacksonfffb60f2006-03-24 03:16:06 -0800121 0, (SLAB_RECLAIM_ACCOUNT|
122 SLAB_MEM_SPREAD),
Paul Mundt20c2df82007-07-20 10:11:58 +0900123 init_once);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 if (affs_inode_cachep == NULL)
125 return -ENOMEM;
126 return 0;
127}
128
129static void destroy_inodecache(void)
130{
Alexey Dobriyan1a1d92c2006-09-27 01:49:40 -0700131 kmem_cache_destroy(affs_inode_cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132}
133
Josef 'Jeff' Sipekee9b6d62007-02-12 00:55:41 -0800134static const struct super_operations affs_sops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 .alloc_inode = affs_alloc_inode,
136 .destroy_inode = affs_destroy_inode,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 .write_inode = affs_write_inode,
Al Virof053ddd2010-06-06 10:16:41 -0400138 .evict_inode = affs_evict_inode,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 .put_super = affs_put_super,
140 .write_super = affs_write_super,
Christoph Hellwige2896432009-06-08 10:03:15 +0200141 .sync_fs = affs_sync_fs,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 .statfs = affs_statfs,
143 .remount_fs = affs_remount,
Miklos Szeredie9b39612008-02-08 04:21:36 -0800144 .show_options = generic_show_options,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145};
146
147enum {
148 Opt_bs, Opt_mode, Opt_mufs, Opt_prefix, Opt_protect,
149 Opt_reserved, Opt_root, Opt_setgid, Opt_setuid,
150 Opt_verbose, Opt_volume, Opt_ignore, Opt_err,
151};
152
Steven Whitehousea447c092008-10-13 10:46:57 +0100153static const match_table_t tokens = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 {Opt_bs, "bs=%u"},
155 {Opt_mode, "mode=%o"},
156 {Opt_mufs, "mufs"},
157 {Opt_prefix, "prefix=%s"},
158 {Opt_protect, "protect"},
159 {Opt_reserved, "reserved=%u"},
160 {Opt_root, "root=%u"},
161 {Opt_setgid, "setgid=%u"},
162 {Opt_setuid, "setuid=%u"},
163 {Opt_verbose, "verbose"},
164 {Opt_volume, "volume=%s"},
165 {Opt_ignore, "grpquota"},
166 {Opt_ignore, "noquota"},
167 {Opt_ignore, "quota"},
168 {Opt_ignore, "usrquota"},
169 {Opt_err, NULL},
170};
171
172static int
173parse_options(char *options, uid_t *uid, gid_t *gid, int *mode, int *reserved, s32 *root,
174 int *blocksize, char **prefix, char *volume, unsigned long *mount_opts)
175{
176 char *p;
177 substring_t args[MAX_OPT_ARGS];
178
179 /* Fill in defaults */
180
David Howells21559982008-11-14 10:38:45 +1100181 *uid = current_uid();
182 *gid = current_gid();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 *reserved = 2;
184 *root = -1;
185 *blocksize = -1;
186 volume[0] = ':';
187 volume[1] = 0;
188 *mount_opts = 0;
189 if (!options)
190 return 1;
191
192 while ((p = strsep(&options, ",")) != NULL) {
193 int token, n, option;
194 if (!*p)
195 continue;
196
197 token = match_token(p, tokens, args);
198 switch (token) {
199 case Opt_bs:
200 if (match_int(&args[0], &n))
Al Viro217686e2010-01-24 00:06:22 -0500201 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 if (n != 512 && n != 1024 && n != 2048
203 && n != 4096) {
204 printk ("AFFS: Invalid blocksize (512, 1024, 2048, 4096 allowed)\n");
205 return 0;
206 }
207 *blocksize = n;
208 break;
209 case Opt_mode:
210 if (match_octal(&args[0], &option))
Al Viro217686e2010-01-24 00:06:22 -0500211 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 *mode = option & 0777;
213 *mount_opts |= SF_SETMODE;
214 break;
215 case Opt_mufs:
216 *mount_opts |= SF_MUFS;
217 break;
218 case Opt_prefix:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 *prefix = match_strdup(&args[0]);
220 if (!*prefix)
221 return 0;
222 *mount_opts |= SF_PREFIX;
223 break;
224 case Opt_protect:
225 *mount_opts |= SF_IMMUTABLE;
226 break;
227 case Opt_reserved:
228 if (match_int(&args[0], reserved))
Al Viro217686e2010-01-24 00:06:22 -0500229 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 break;
231 case Opt_root:
232 if (match_int(&args[0], root))
Al Viro217686e2010-01-24 00:06:22 -0500233 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 break;
235 case Opt_setgid:
236 if (match_int(&args[0], &option))
Al Viro217686e2010-01-24 00:06:22 -0500237 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 *gid = option;
239 *mount_opts |= SF_SETGID;
240 break;
241 case Opt_setuid:
242 if (match_int(&args[0], &option))
Al Viro217686e2010-01-24 00:06:22 -0500243 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 *uid = option;
245 *mount_opts |= SF_SETUID;
246 break;
247 case Opt_verbose:
248 *mount_opts |= SF_VERBOSE;
249 break;
250 case Opt_volume: {
251 char *vol = match_strdup(&args[0]);
Jim Meyering6db27dd2008-04-29 00:59:06 -0700252 if (!vol)
253 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 strlcpy(volume, vol, 32);
255 kfree(vol);
256 break;
257 }
258 case Opt_ignore:
259 /* Silently ignore the quota options */
260 break;
261 default:
262 printk("AFFS: Unrecognized mount option \"%s\" "
263 "or missing value\n", p);
264 return 0;
265 }
266 }
267 return 1;
268}
269
270/* This function definitely needs to be split up. Some fine day I'll
271 * hopefully have the guts to do so. Until then: sorry for the mess.
272 */
273
274static int affs_fill_super(struct super_block *sb, void *data, int silent)
275{
276 struct affs_sb_info *sbi;
277 struct buffer_head *root_bh = NULL;
278 struct buffer_head *boot_bh;
279 struct inode *root_inode = NULL;
280 s32 root_block;
281 int size, blocksize;
282 u32 chksum;
283 int num_bm;
284 int i, j;
285 s32 key;
286 uid_t uid;
287 gid_t gid;
288 int reserved;
289 unsigned long mount_flags;
290 int tmp_flags; /* fix remount prototype... */
Al Viro2b943cf2006-06-25 05:49:08 -0700291 u8 sig[4];
David Howells210f8552008-02-07 00:15:29 -0800292 int ret = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293
Miklos Szeredie9b39612008-02-08 04:21:36 -0800294 save_mount_options(sb, data);
295
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 pr_debug("AFFS: read_super(%s)\n",data ? (const char *)data : "no options");
297
298 sb->s_magic = AFFS_SUPER_MAGIC;
299 sb->s_op = &affs_sops;
300 sb->s_flags |= MS_NODIRATIME;
301
Panagiotis Issarisf8314dc2006-09-27 01:49:37 -0700302 sbi = kzalloc(sizeof(struct affs_sb_info), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 if (!sbi)
304 return -ENOMEM;
Jan Blunck74c41422010-08-15 22:52:36 +0200305
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 sb->s_fs_info = sbi;
Matthias Kaehlcke7d135a52008-07-25 19:44:51 -0700307 mutex_init(&sbi->s_bmlock);
Al Viro29333922010-01-24 00:04:07 -0500308 spin_lock_init(&sbi->symlink_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309
310 if (!parse_options(data,&uid,&gid,&i,&reserved,&root_block,
311 &blocksize,&sbi->s_prefix,
312 sbi->s_volume, &mount_flags)) {
313 printk(KERN_ERR "AFFS: Error parsing options\n");
Al Viroafc70ed2010-01-23 23:38:27 -0500314 kfree(sbi->s_prefix);
315 kfree(sbi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 return -EINVAL;
317 }
318 /* N.B. after this point s_prefix must be released */
319
320 sbi->s_flags = mount_flags;
321 sbi->s_mode = i;
322 sbi->s_uid = uid;
323 sbi->s_gid = gid;
324 sbi->s_reserved= reserved;
325
326 /* Get the size of the device in 512-byte blocks.
327 * If we later see that the partition uses bigger
328 * blocks, we will have to change it.
329 */
330
331 size = sb->s_bdev->bd_inode->i_size >> 9;
332 pr_debug("AFFS: initial blocksize=%d, #blocks=%d\n", 512, size);
333
334 affs_set_blocksize(sb, PAGE_SIZE);
335 /* Try to find root block. Its location depends on the block size. */
336
337 i = 512;
338 j = 4096;
339 if (blocksize > 0) {
340 i = j = blocksize;
341 size = size / (blocksize / 512);
342 }
343 for (blocksize = i, key = 0; blocksize <= j; blocksize <<= 1, size >>= 1) {
344 sbi->s_root_block = root_block;
345 if (root_block < 0)
346 sbi->s_root_block = (reserved + size - 1) / 2;
347 pr_debug("AFFS: setting blocksize to %d\n", blocksize);
348 affs_set_blocksize(sb, blocksize);
349 sbi->s_partition_size = size;
350
351 /* The root block location that was calculated above is not
352 * correct if the partition size is an odd number of 512-
353 * byte blocks, which will be rounded down to a number of
354 * 1024-byte blocks, and if there were an even number of
355 * reserved blocks. Ideally, all partition checkers should
356 * report the real number of blocks of the real blocksize,
357 * but since this just cannot be done, we have to try to
358 * find the root block anyways. In the above case, it is one
359 * block behind the calculated one. So we check this one, too.
360 */
361 for (num_bm = 0; num_bm < 2; num_bm++) {
362 pr_debug("AFFS: Dev %s, trying root=%u, bs=%d, "
363 "size=%d, reserved=%d\n",
364 sb->s_id,
365 sbi->s_root_block + num_bm,
366 blocksize, size, reserved);
367 root_bh = affs_bread(sb, sbi->s_root_block + num_bm);
368 if (!root_bh)
369 continue;
370 if (!affs_checksum_block(sb, root_bh) &&
371 be32_to_cpu(AFFS_ROOT_HEAD(root_bh)->ptype) == T_SHORT &&
372 be32_to_cpu(AFFS_ROOT_TAIL(sb, root_bh)->stype) == ST_ROOT) {
373 sbi->s_hashsize = blocksize / 4 - 56;
374 sbi->s_root_block += num_bm;
375 key = 1;
376 goto got_root;
377 }
378 affs_brelse(root_bh);
379 root_bh = NULL;
380 }
381 }
382 if (!silent)
383 printk(KERN_ERR "AFFS: No valid root block on device %s\n",
384 sb->s_id);
385 goto out_error;
386
387 /* N.B. after this point bh must be released */
388got_root:
389 root_block = sbi->s_root_block;
390
391 /* Find out which kind of FS we have */
392 boot_bh = sb_bread(sb, 0);
393 if (!boot_bh) {
394 printk(KERN_ERR "AFFS: Cannot read boot block\n");
395 goto out_error;
396 }
Al Viro2b943cf2006-06-25 05:49:08 -0700397 memcpy(sig, boot_bh->b_data, 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 brelse(boot_bh);
Al Viro2b943cf2006-06-25 05:49:08 -0700399 chksum = be32_to_cpu(*(__be32 *)sig);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400
401 /* Dircache filesystems are compatible with non-dircache ones
402 * when reading. As long as they aren't supported, writing is
403 * not recommended.
404 */
405 if ((chksum == FS_DCFFS || chksum == MUFS_DCFFS || chksum == FS_DCOFS
406 || chksum == MUFS_DCOFS) && !(sb->s_flags & MS_RDONLY)) {
407 printk(KERN_NOTICE "AFFS: Dircache FS - mounting %s read only\n",
408 sb->s_id);
409 sb->s_flags |= MS_RDONLY;
410 }
411 switch (chksum) {
412 case MUFS_FS:
413 case MUFS_INTLFFS:
414 case MUFS_DCFFS:
415 sbi->s_flags |= SF_MUFS;
416 /* fall thru */
417 case FS_INTLFFS:
418 case FS_DCFFS:
419 sbi->s_flags |= SF_INTL;
420 break;
421 case MUFS_FFS:
422 sbi->s_flags |= SF_MUFS;
423 break;
424 case FS_FFS:
425 break;
426 case MUFS_OFS:
427 sbi->s_flags |= SF_MUFS;
428 /* fall thru */
429 case FS_OFS:
430 sbi->s_flags |= SF_OFS;
431 sb->s_flags |= MS_NOEXEC;
432 break;
433 case MUFS_DCOFS:
434 case MUFS_INTLOFS:
435 sbi->s_flags |= SF_MUFS;
436 case FS_DCOFS:
437 case FS_INTLOFS:
438 sbi->s_flags |= SF_INTL | SF_OFS;
439 sb->s_flags |= MS_NOEXEC;
440 break;
441 default:
442 printk(KERN_ERR "AFFS: Unknown filesystem on device %s: %08X\n",
443 sb->s_id, chksum);
444 goto out_error;
445 }
446
447 if (mount_flags & SF_VERBOSE) {
Al Viro2b943cf2006-06-25 05:49:08 -0700448 u8 len = AFFS_ROOT_TAIL(sb, root_bh)->disk_name[0];
449 printk(KERN_NOTICE "AFFS: Mounting volume \"%.*s\": Type=%.3s\\%c, Blocksize=%d\n",
450 len > 31 ? 31 : len,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 AFFS_ROOT_TAIL(sb, root_bh)->disk_name + 1,
Al Viro2b943cf2006-06-25 05:49:08 -0700452 sig, sig[3] + '0', blocksize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 }
454
455 sb->s_flags |= MS_NODEV | MS_NOSUID;
456
457 sbi->s_data_blksize = sb->s_blocksize;
458 if (sbi->s_flags & SF_OFS)
459 sbi->s_data_blksize -= 24;
460
461 /* Keep super block in cache */
462 sbi->s_root_bh = root_bh;
463 /* N.B. after this point s_root_bh must be released */
464
465 tmp_flags = sb->s_flags;
466 if (affs_init_bitmap(sb, &tmp_flags))
467 goto out_error;
468 sb->s_flags = tmp_flags;
469
470 /* set up enough so that it can read an inode */
471
David Howells210f8552008-02-07 00:15:29 -0800472 root_inode = affs_iget(sb, root_block);
473 if (IS_ERR(root_inode)) {
474 ret = PTR_ERR(root_inode);
Al Viro48fde702012-01-08 22:15:13 -0500475 goto out_error;
David Howells210f8552008-02-07 00:15:29 -0800476 }
477
Al Viroa1298802011-01-12 16:45:19 -0500478 if (AFFS_SB(sb)->s_flags & SF_INTL)
479 sb->s_d_op = &affs_intl_dentry_operations;
480 else
481 sb->s_d_op = &affs_dentry_operations;
482
Al Viro48fde702012-01-08 22:15:13 -0500483 sb->s_root = d_make_root(root_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 if (!sb->s_root) {
485 printk(KERN_ERR "AFFS: Get root inode failed\n");
486 goto out_error;
487 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488
489 pr_debug("AFFS: s_flags=%lX\n",sb->s_flags);
490 return 0;
491
492 /*
493 * Begin the cascaded cleanup ...
494 */
495out_error:
Jesper Juhlf99d49a2005-11-07 01:01:34 -0800496 kfree(sbi->s_bitmap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 affs_brelse(root_bh);
Jesper Juhlf99d49a2005-11-07 01:01:34 -0800498 kfree(sbi->s_prefix);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 kfree(sbi);
500 sb->s_fs_info = NULL;
David Howells210f8552008-02-07 00:15:29 -0800501 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502}
503
504static int
505affs_remount(struct super_block *sb, int *flags, char *data)
506{
507 struct affs_sb_info *sbi = AFFS_SB(sb);
508 int blocksize;
509 uid_t uid;
510 gid_t gid;
511 int mode;
512 int reserved;
513 int root_block;
514 unsigned long mount_flags;
515 int res = 0;
Miklos Szeredie9b39612008-02-08 04:21:36 -0800516 char *new_opts = kstrdup(data, GFP_KERNEL);
Al Viro29333922010-01-24 00:04:07 -0500517 char volume[32];
518 char *prefix = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519
520 pr_debug("AFFS: remount(flags=0x%x,opts=\"%s\")\n",*flags,data);
521
522 *flags |= MS_NODIRATIME;
523
Al Viro29333922010-01-24 00:04:07 -0500524 memcpy(volume, sbi->s_volume, 32);
Miklos Szeredie9b39612008-02-08 04:21:36 -0800525 if (!parse_options(data, &uid, &gid, &mode, &reserved, &root_block,
Al Viro29333922010-01-24 00:04:07 -0500526 &blocksize, &prefix, volume,
Miklos Szeredie9b39612008-02-08 04:21:36 -0800527 &mount_flags)) {
Al Viro29333922010-01-24 00:04:07 -0500528 kfree(prefix);
Miklos Szeredie9b39612008-02-08 04:21:36 -0800529 kfree(new_opts);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 return -EINVAL;
Miklos Szeredie9b39612008-02-08 04:21:36 -0800531 }
Jan Blunck74c41422010-08-15 22:52:36 +0200532
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;
Al Viro29333922010-01-24 00:04:07 -0500539 /* protect against readers */
540 spin_lock(&sbi->symlink_lock);
541 if (prefix) {
542 kfree(sbi->s_prefix);
543 sbi->s_prefix = prefix;
544 }
545 memcpy(sbi->s_volume, volume, 32);
546 spin_unlock(&sbi->symlink_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547
Jan Blunck74c41422010-08-15 22:52:36 +0200548 if ((*flags & MS_RDONLY) == (sb->s_flags & MS_RDONLY))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 return 0;
Jan Blunck74c41422010-08-15 22:52:36 +0200550
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 if (*flags & MS_RDONLY) {
Artem Bityutskiy669d5f12010-07-05 15:14:59 +0300552 affs_write_super(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 affs_free_bitmap(sb);
554 } else
555 res = affs_init_bitmap(sb, flags);
556
557 return res;
558}
559
560static int
David Howells726c3342006-06-23 02:02:58 -0700561affs_statfs(struct dentry *dentry, struct kstatfs *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562{
David Howells726c3342006-06-23 02:02:58 -0700563 struct super_block *sb = dentry->d_sb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 int free;
Coly Lia6a2a732009-04-02 16:59:32 -0700565 u64 id = huge_encode_dev(sb->s_bdev->bd_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566
567 pr_debug("AFFS: statfs() partsize=%d, reserved=%d\n",AFFS_SB(sb)->s_partition_size,
568 AFFS_SB(sb)->s_reserved);
569
570 free = affs_count_free_blocks(sb);
571 buf->f_type = AFFS_SUPER_MAGIC;
572 buf->f_bsize = sb->s_blocksize;
573 buf->f_blocks = AFFS_SB(sb)->s_partition_size - AFFS_SB(sb)->s_reserved;
574 buf->f_bfree = free;
575 buf->f_bavail = free;
Coly Lia6a2a732009-04-02 16:59:32 -0700576 buf->f_fsid.val[0] = (u32)id;
577 buf->f_fsid.val[1] = (u32)(id >> 32);
578 buf->f_namelen = 30;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 return 0;
580}
581
Al Viro152a0832010-07-25 00:46:55 +0400582static struct dentry *affs_mount(struct file_system_type *fs_type,
583 int flags, const char *dev_name, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584{
Al Viro152a0832010-07-25 00:46:55 +0400585 return mount_bdev(fs_type, flags, dev_name, data, affs_fill_super);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586}
587
588static struct file_system_type affs_fs_type = {
589 .owner = THIS_MODULE,
590 .name = "affs",
Al Viro152a0832010-07-25 00:46:55 +0400591 .mount = affs_mount,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 .kill_sb = kill_block_super,
593 .fs_flags = FS_REQUIRES_DEV,
594};
595
596static int __init init_affs_fs(void)
597{
598 int err = init_inodecache();
599 if (err)
600 goto out1;
601 err = register_filesystem(&affs_fs_type);
602 if (err)
603 goto out;
604 return 0;
605out:
606 destroy_inodecache();
607out1:
608 return err;
609}
610
611static void __exit exit_affs_fs(void)
612{
613 unregister_filesystem(&affs_fs_type);
614 destroy_inodecache();
615}
616
617MODULE_DESCRIPTION("Amiga filesystem support for Linux");
618MODULE_LICENSE("GPL");
619
620module_init(init_affs_fs)
621module_exit(exit_affs_fs)