]> git.karo-electronics.de Git - mv-sheeva.git/blob - fs/affs/super.c
AFFS: clean up dirty flag usage
[mv-sheeva.git] / fs / affs / super.c
1 /*
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>
17 #include <linux/magic.h>
18 #include <linux/sched.h>
19 #include <linux/smp_lock.h>
20 #include <linux/slab.h>
21 #include "affs.h"
22
23 extern struct timezone sys_tz;
24
25 static int affs_statfs(struct dentry *dentry, struct kstatfs *buf);
26 static int affs_remount (struct super_block *sb, int *flags, char *data);
27
28 static void
29 affs_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
41 static void
42 affs_put_super(struct super_block *sb)
43 {
44         struct affs_sb_info *sbi = AFFS_SB(sb);
45         pr_debug("AFFS: put_super()\n");
46
47         lock_kernel();
48
49         if (!(sb->s_flags & MS_RDONLY))
50                 affs_commit_super(sb, 1);
51
52         kfree(sbi->s_prefix);
53         affs_free_bitmap(sb);
54         affs_brelse(sbi->s_root_bh);
55         kfree(sbi);
56         sb->s_fs_info = NULL;
57
58         unlock_kernel();
59 }
60
61 static void
62 affs_write_super(struct super_block *sb)
63 {
64         lock_super(sb);
65         if (!(sb->s_flags & MS_RDONLY))
66                 affs_commit_super(sb, 2);
67         sb->s_dirt = 0;
68         unlock_super(sb);
69
70         pr_debug("AFFS: write_super() at %lu, clean=2\n", get_seconds());
71 }
72
73 static int
74 affs_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
83 static struct kmem_cache * affs_inode_cachep;
84
85 static struct inode *affs_alloc_inode(struct super_block *sb)
86 {
87         struct affs_inode_info *i;
88
89         i = kmem_cache_alloc(affs_inode_cachep, GFP_KERNEL);
90         if (!i)
91                 return NULL;
92
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;
99 }
100
101 static void affs_destroy_inode(struct inode *inode)
102 {
103         kmem_cache_free(affs_inode_cachep, AFFS_I(inode));
104 }
105
106 static void init_once(void *foo)
107 {
108         struct affs_inode_info *ei = (struct affs_inode_info *) foo;
109
110         init_MUTEX(&ei->i_link_lock);
111         init_MUTEX(&ei->i_ext_lock);
112         inode_init_once(&ei->vfs_inode);
113 }
114
115 static int init_inodecache(void)
116 {
117         affs_inode_cachep = kmem_cache_create("affs_inode_cache",
118                                              sizeof(struct affs_inode_info),
119                                              0, (SLAB_RECLAIM_ACCOUNT|
120                                                 SLAB_MEM_SPREAD),
121                                              init_once);
122         if (affs_inode_cachep == NULL)
123                 return -ENOMEM;
124         return 0;
125 }
126
127 static void destroy_inodecache(void)
128 {
129         kmem_cache_destroy(affs_inode_cachep);
130 }
131
132 static const struct super_operations affs_sops = {
133         .alloc_inode    = affs_alloc_inode,
134         .destroy_inode  = affs_destroy_inode,
135         .write_inode    = affs_write_inode,
136         .evict_inode    = affs_evict_inode,
137         .put_super      = affs_put_super,
138         .write_super    = affs_write_super,
139         .sync_fs        = affs_sync_fs,
140         .statfs         = affs_statfs,
141         .remount_fs     = affs_remount,
142         .show_options   = generic_show_options,
143 };
144
145 enum {
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
151 static const match_table_t tokens = {
152         {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
170 static int
171 parse_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
179         *uid        = current_uid();
180         *gid        = current_gid();
181         *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))
199                                 return 0;
200                         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))
209                                 return 0;
210                         *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:
217                         *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))
227                                 return 0;
228                         break;
229                 case Opt_root:
230                         if (match_int(&args[0], root))
231                                 return 0;
232                         break;
233                 case Opt_setgid:
234                         if (match_int(&args[0], &option))
235                                 return 0;
236                         *gid = option;
237                         *mount_opts |= SF_SETGID;
238                         break;
239                 case Opt_setuid:
240                         if (match_int(&args[0], &option))
241                                 return 0;
242                         *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]);
250                         if (!vol)
251                                 return 0;
252                         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
272 static 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... */
289         u8                       sig[4];
290         int                      ret = -EINVAL;
291
292         save_mount_options(sb, data);
293
294         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
300         sbi = kzalloc(sizeof(struct affs_sb_info), GFP_KERNEL);
301         if (!sbi)
302                 return -ENOMEM;
303         sb->s_fs_info = sbi;
304         mutex_init(&sbi->s_bmlock);
305         spin_lock_init(&sbi->symlink_lock);
306
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");
311                 kfree(sbi->s_prefix);
312                 kfree(sbi);
313                 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 */
385 got_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         }
394         memcpy(sig, boot_bh->b_data, 4);
395         brelse(boot_bh);
396         chksum = be32_to_cpu(*(__be32 *)sig);
397
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) {
445                 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,
448                         AFFS_ROOT_TAIL(sb, root_bh)->disk_name + 1,
449                         sig, sig[3] + '0', blocksize);
450         }
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
469         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
475         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          */
488 out_error:
489         if (root_inode)
490                 iput(root_inode);
491 out_error_noinode:
492         kfree(sbi->s_bitmap);
493         affs_brelse(root_bh);
494         kfree(sbi->s_prefix);
495         kfree(sbi);
496         sb->s_fs_info = NULL;
497         return ret;
498 }
499
500 static int
501 affs_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;
512         char                    *new_opts = kstrdup(data, GFP_KERNEL);
513         char                     volume[32];
514         char                    *prefix = NULL;
515
516         pr_debug("AFFS: remount(flags=0x%x,opts=\"%s\")\n",*flags,data);
517
518         *flags |= MS_NODIRATIME;
519
520         memcpy(volume, sbi->s_volume, 32);
521         if (!parse_options(data, &uid, &gid, &mode, &reserved, &root_block,
522                            &blocksize, &prefix, volume,
523                            &mount_flags)) {
524                 kfree(prefix);
525                 kfree(new_opts);
526                 return -EINVAL;
527         }
528         lock_kernel();
529         replace_mount_options(sb, new_opts);
530
531         sbi->s_flags = mount_flags;
532         sbi->s_mode  = mode;
533         sbi->s_uid   = uid;
534         sbi->s_gid   = gid;
535         /* 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);
543
544         if ((*flags & MS_RDONLY) == (sb->s_flags & MS_RDONLY)) {
545                 unlock_kernel();
546                 return 0;
547         }
548         if (*flags & MS_RDONLY) {
549                 affs_write_super(sb);
550                 affs_free_bitmap(sb);
551         } else
552                 res = affs_init_bitmap(sb, flags);
553
554         unlock_kernel();
555         return res;
556 }
557
558 static int
559 affs_statfs(struct dentry *dentry, struct kstatfs *buf)
560 {
561         struct super_block *sb = dentry->d_sb;
562         int              free;
563         u64              id = huge_encode_dev(sb->s_bdev->bd_dev);
564
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;
574         buf->f_fsid.val[0] = (u32)id;
575         buf->f_fsid.val[1] = (u32)(id >> 32);
576         buf->f_namelen = 30;
577         return 0;
578 }
579
580 static int affs_get_sb(struct file_system_type *fs_type,
581         int flags, const char *dev_name, void *data, struct vfsmount *mnt)
582 {
583         return get_sb_bdev(fs_type, flags, dev_name, data, affs_fill_super,
584                            mnt);
585 }
586
587 static 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
595 static 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;
604 out:
605         destroy_inodecache();
606 out1:
607         return err;
608 }
609
610 static void __exit exit_affs_fs(void)
611 {
612         unregister_filesystem(&affs_fs_type);
613         destroy_inodecache();
614 }
615
616 MODULE_DESCRIPTION("Amiga filesystem support for Linux");
617 MODULE_LICENSE("GPL");
618
619 module_init(init_affs_fs)
620 module_exit(exit_affs_fs)