fedora core 6 1.2949 + vserver 2.2.0
[linux-2.6.git] / fs / hfs / super.c
index 2b7d0b2..a369879 100644 (file)
  * Based on the minix file system code, (C) 1991, 1992 by Linus Torvalds
  */
 
-#include <linux/config.h>
 #include <linux/module.h>
 #include <linux/blkdev.h>
+#include <linux/mount.h>
 #include <linux/init.h>
+#include <linux/nls.h>
+#include <linux/parser.h>
+#include <linux/seq_file.h>
 #include <linux/vfs.h>
 
 #include "hfs_fs.h"
 #include "btree.h"
 
-const char hfs_version[]="0.96";
-
-static kmem_cache_t *hfs_inode_cachep;
+static struct kmem_cache *hfs_inode_cachep;
 
 MODULE_LICENSE("GPL");
 
@@ -78,8 +79,10 @@ static void hfs_put_super(struct super_block *sb)
  *
  * changed f_files/f_ffree to reflect the fs_ablock/free_ablocks.
  */
-static int hfs_statfs(struct super_block *sb, struct kstatfs *buf)
+static int hfs_statfs(struct dentry *dentry, struct kstatfs *buf)
 {
+       struct super_block *sb = dentry->d_sb;
+
        buf->f_type = HFS_SUPER_MAGIC;
        buf->f_bsize = sb->s_blocksize;
        buf->f_blocks = (u32)HFS_SB(sb)->fs_ablocks * HFS_SB(sb)->fs_div;
@@ -92,20 +95,19 @@ static int hfs_statfs(struct super_block *sb, struct kstatfs *buf)
        return 0;
 }
 
-int hfs_remount(struct super_block *sb, int *flags, char *data)
+static int hfs_remount(struct super_block *sb, int *flags, char *data)
 {
        *flags |= MS_NODIRATIME;
        if ((*flags & MS_RDONLY) == (sb->s_flags & MS_RDONLY))
                return 0;
        if (!(*flags & MS_RDONLY)) {
-               if (!(HFS_SB(sb)->mdb->drAtrb & cpu_to_be16(HFS_SB_ATTRIB_UNMNT))
-                   || (HFS_SB(sb)->mdb->drAtrb & cpu_to_be16(HFS_SB_ATTRIB_INCNSTNT))) {
-                       printk("HFS-fs warning: Filesystem was not cleanly unmounted, "
+               if (!(HFS_SB(sb)->mdb->drAtrb & cpu_to_be16(HFS_SB_ATTRIB_UNMNT))) {
+                       printk(KERN_WARNING "hfs: filesystem was not cleanly unmounted, "
                               "running fsck.hfs is recommended.  leaving read-only.\n");
                        sb->s_flags |= MS_RDONLY;
                        *flags |= MS_RDONLY;
                } else if (HFS_SB(sb)->mdb->drAtrb & cpu_to_be16(HFS_SB_ATTRIB_SLOCK)) {
-                       printk("HFS-fs: Filesystem is marked locked, leaving read-only.\n");
+                       printk(KERN_WARNING "hfs: filesystem is marked locked, leaving read-only.\n");
                        sb->s_flags |= MS_RDONLY;
                        *flags |= MS_RDONLY;
                }
@@ -113,11 +115,37 @@ int hfs_remount(struct super_block *sb, int *flags, char *data)
        return 0;
 }
 
+static int hfs_show_options(struct seq_file *seq, struct vfsmount *mnt)
+{
+       struct hfs_sb_info *sbi = HFS_SB(mnt->mnt_sb);
+
+       if (sbi->s_creator != cpu_to_be32(0x3f3f3f3f))
+               seq_printf(seq, ",creator=%.4s", (char *)&sbi->s_creator);
+       if (sbi->s_type != cpu_to_be32(0x3f3f3f3f))
+               seq_printf(seq, ",type=%.4s", (char *)&sbi->s_type);
+       seq_printf(seq, ",uid=%u,gid=%u", sbi->s_uid, sbi->s_gid);
+       if (sbi->s_file_umask != 0133)
+               seq_printf(seq, ",file_umask=%o", sbi->s_file_umask);
+       if (sbi->s_dir_umask != 0022)
+               seq_printf(seq, ",dir_umask=%o", sbi->s_dir_umask);
+       if (sbi->part >= 0)
+               seq_printf(seq, ",part=%u", sbi->part);
+       if (sbi->session >= 0)
+               seq_printf(seq, ",session=%u", sbi->session);
+       if (sbi->nls_disk)
+               seq_printf(seq, ",codepage=%s", sbi->nls_disk->charset);
+       if (sbi->nls_io)
+               seq_printf(seq, ",iocharset=%s", sbi->nls_io->charset);
+       if (sbi->s_quiet)
+               seq_printf(seq, ",quiet");
+       return 0;
+}
+
 static struct inode *hfs_alloc_inode(struct super_block *sb)
 {
        struct hfs_inode_info *i;
 
-       i = kmem_cache_alloc(hfs_inode_cachep, SLAB_KERNEL);
+       i = kmem_cache_alloc(hfs_inode_cachep, GFP_KERNEL);
        return i ? &i->vfs_inode : NULL;
 }
 
@@ -135,8 +163,40 @@ static struct super_operations hfs_super_operations = {
        .write_super    = hfs_write_super,
        .statfs         = hfs_statfs,
        .remount_fs     = hfs_remount,
+       .show_options   = hfs_show_options,
 };
 
+enum {
+       opt_uid, opt_gid, opt_umask, opt_file_umask, opt_dir_umask,
+       opt_part, opt_session, opt_type, opt_creator, opt_quiet,
+       opt_codepage, opt_iocharset,
+       opt_err
+};
+
+static match_table_t tokens = {
+       { opt_uid, "uid=%u" },
+       { opt_gid, "gid=%u" },
+       { opt_umask, "umask=%o" },
+       { opt_file_umask, "file_umask=%o" },
+       { opt_dir_umask, "dir_umask=%o" },
+       { opt_part, "part=%u" },
+       { opt_session, "session=%u" },
+       { opt_type, "type=%s" },
+       { opt_creator, "creator=%s" },
+       { opt_quiet, "quiet" },
+       { opt_codepage, "codepage=%s" },
+       { opt_iocharset, "iocharset=%s" },
+       { opt_err, NULL }
+};
+
+static inline int match_fourchar(substring_t *arg, u32 *result)
+{
+       if (arg->to - arg->from != 4)
+               return -EINVAL;
+       memcpy(result, arg->from, 4);
+       return 0;
+}
+
 /*
  * parse_options()
  *
@@ -145,15 +205,16 @@ static struct super_operations hfs_super_operations = {
  */
 static int parse_options(char *options, struct hfs_sb_info *hsb)
 {
-       char *this_char, *value;
+       char *p;
+       substring_t args[MAX_OPT_ARGS];
+       int tmp, token;
 
        /* initialize the sb with defaults */
        hsb->s_uid = current->uid;
        hsb->s_gid = current->gid;
-       hsb->s_file_umask = 0644;
-       hsb->s_dir_umask = 0755;
-       hsb->s_type = 0x3f3f3f3f;       /* == '????' */
-       hsb->s_creator = 0x3f3f3f3f;    /* == '????' */
+       hsb->s_file_umask = 0133;
+       hsb->s_dir_umask = 0022;
+       hsb->s_type = hsb->s_creator = cpu_to_be32(0x3f3f3f3f); /* == '????' */
        hsb->s_quiet = 0;
        hsb->part = -1;
        hsb->session = -1;
@@ -161,77 +222,117 @@ static int parse_options(char *options, struct hfs_sb_info *hsb)
        if (!options)
                return 1;
 
-       while ((this_char = strsep(&options, ","))) {
-               if (!*this_char)
+       while ((p = strsep(&options, ",")) != NULL) {
+               if (!*p)
                        continue;
-               value = strchr(this_char, '=');
-               if (value)
-                       *value++ = 0;
 
-       /* Numeric-valued options */
-               if (!strcmp(this_char, "uid")) {
-                       if (!value || !*value)
-                               return 0;
-                       hsb->s_uid = simple_strtoul(value, &value, 0);
-                       if (*value)
-                               return 0;
-               } else if (!strcmp(this_char, "gid")) {
-                       if (!value || !*value)
+               token = match_token(p, tokens, args);
+               switch (token) {
+               case opt_uid:
+                       if (match_int(&args[0], &tmp)) {
+                               printk(KERN_ERR "hfs: uid requires an argument\n");
                                return 0;
-                       hsb->s_gid = simple_strtoul(value, &value, 0);
-                       if (*value)
+                       }
+                       hsb->s_uid = (uid_t)tmp;
+                       break;
+               case opt_gid:
+                       if (match_int(&args[0], &tmp)) {
+                               printk(KERN_ERR "hfs: gid requires an argument\n");
                                return 0;
-               } else if (!strcmp(this_char, "umask")) {
-                       if (!value || !*value)
+                       }
+                       hsb->s_gid = (gid_t)tmp;
+                       break;
+               case opt_umask:
+                       if (match_octal(&args[0], &tmp)) {
+                               printk(KERN_ERR "hfs: umask requires a value\n");
                                return 0;
-                       hsb->s_file_umask = simple_strtoul(value, &value, 8);
-                       hsb->s_dir_umask = hsb->s_file_umask;
-                       if (*value)
+                       }
+                       hsb->s_file_umask = (umode_t)tmp;
+                       hsb->s_dir_umask = (umode_t)tmp;
+                       break;
+               case opt_file_umask:
+                       if (match_octal(&args[0], &tmp)) {
+                               printk(KERN_ERR "hfs: file_umask requires a value\n");
                                return 0;
-               } else if (!strcmp(this_char, "file_umask")) {
-                       if (!value || !*value)
+                       }
+                       hsb->s_file_umask = (umode_t)tmp;
+                       break;
+               case opt_dir_umask:
+                       if (match_octal(&args[0], &tmp)) {
+                               printk(KERN_ERR "hfs: dir_umask requires a value\n");
                                return 0;
-                       hsb->s_file_umask = simple_strtoul(value, &value, 8);
-                       if (*value)
+                       }
+                       hsb->s_dir_umask = (umode_t)tmp;
+                       break;
+               case opt_part:
+                       if (match_int(&args[0], &hsb->part)) {
+                               printk(KERN_ERR "hfs: part requires an argument\n");
                                return 0;
-               } else if (!strcmp(this_char, "dir_umask")) {
-                       if (!value || !*value)
+                       }
+                       break;
+               case opt_session:
+                       if (match_int(&args[0], &hsb->session)) {
+                               printk(KERN_ERR "hfs: session requires an argument\n");
                                return 0;
-                       hsb->s_dir_umask = simple_strtoul(value, &value, 8);
-                       if (*value)
+                       }
+                       break;
+               case opt_type:
+                       if (match_fourchar(&args[0], &hsb->s_type)) {
+                               printk(KERN_ERR "hfs: type requires a 4 character value\n");
                                return 0;
-               } else if (!strcmp(this_char, "part")) {
-                       if (!value || !*value)
+                       }
+                       break;
+               case opt_creator:
+                       if (match_fourchar(&args[0], &hsb->s_creator)) {
+                               printk(KERN_ERR "hfs: creator requires a 4 character value\n");
                                return 0;
-                       hsb->part = simple_strtoul(value, &value, 0);
-                       if (*value)
-                               return 0;
-               } else if (!strcmp(this_char, "session")) {
-                       if (!value || !*value)
-                               return 0;
-                       hsb->session = simple_strtoul(value, &value, 0);
-                       if (*value)
+                       }
+                       break;
+               case opt_quiet:
+                       hsb->s_quiet = 1;
+                       break;
+               case opt_codepage:
+                       if (hsb->nls_disk) {
+                               printk(KERN_ERR "hfs: unable to change codepage\n");
                                return 0;
-       /* String-valued options */
-               } else if (!strcmp(this_char, "type") && value) {
-                       if (strlen(value) != 4)
+                       }
+                       p = match_strdup(&args[0]);
+                       hsb->nls_disk = load_nls(p);
+                       if (!hsb->nls_disk) {
+                               printk(KERN_ERR "hfs: unable to load codepage \"%s\"\n", p);
+                               kfree(p);
                                return 0;
-                       hsb->s_type = *(u32 *)value;
-               } else if (!strcmp(this_char, "creator") && value) {
-                       if (strlen(value) != 4)
+                       }
+                       kfree(p);
+                       break;
+               case opt_iocharset:
+                       if (hsb->nls_io) {
+                               printk(KERN_ERR "hfs: unable to change iocharset\n");
                                return 0;
-                       hsb->s_creator = *(u32 *)value;
-       /* Boolean-valued options */
-               } else if (!strcmp(this_char, "quiet")) {
-                       if (value)
+                       }
+                       p = match_strdup(&args[0]);
+                       hsb->nls_io = load_nls(p);
+                       if (!hsb->nls_io) {
+                               printk(KERN_ERR "hfs: unable to load iocharset \"%s\"\n", p);
+                               kfree(p);
                                return 0;
-                       hsb->s_quiet = 1;
-               } else
+                       }
+                       kfree(p);
+                       break;
+               default:
                        return 0;
+               }
        }
 
+       if (hsb->nls_disk && !hsb->nls_io) {
+               hsb->nls_io = load_nls_default();
+               if (!hsb->nls_io) {
+                       printk(KERN_ERR "hfs: unable to load default iocharset\n");
+                       return 0;
+               }
+       }
        hsb->s_dir_umask &= 0777;
-       hsb->s_file_umask &= 0777;
+       hsb->s_file_umask &= 0577;
 
        return 1;
 }
@@ -255,17 +356,16 @@ static int hfs_fill_super(struct super_block *sb, void *data, int silent)
        struct inode *root_inode;
        int res;
 
-       sbi = kmalloc(sizeof(struct hfs_sb_info), GFP_KERNEL);
+       sbi = kzalloc(sizeof(struct hfs_sb_info), GFP_KERNEL);
        if (!sbi)
                return -ENOMEM;
        sb->s_fs_info = sbi;
-       memset(sbi, 0, sizeof(struct hfs_sb_info));
        INIT_HLIST_HEAD(&sbi->rsrc_inodes);
 
        res = -EINVAL;
        if (!parse_options((char *)data, sbi)) {
-               hfs_warn("hfs_fs: unable to parse mount options.\n");
-               goto bail3;
+               printk(KERN_ERR "hfs: unable to parse mount options.\n");
+               goto bail;
        }
 
        sb->s_op = &hfs_super_operations;
@@ -275,10 +375,10 @@ static int hfs_fill_super(struct super_block *sb, void *data, int silent)
        res = hfs_mdb_get(sb);
        if (res) {
                if (!silent)
-                       hfs_warn("VFS: Can't find a HFS filesystem on dev %s.\n",
+                       printk(KERN_WARNING "hfs: can't find a HFS filesystem on dev %s.\n",
                                hfs_mdb_name(sb));
                res = -EINVAL;
-               goto bail2;
+               goto bail;
        }
 
        /* try to get the root inode */
@@ -290,11 +390,13 @@ static int hfs_fill_super(struct super_block *sb, void *data, int silent)
                hfs_find_exit(&fd);
                goto bail_no_root;
        }
+       res = -EINVAL;
        root_inode = hfs_iget(sb, &fd.search_key->cat, &rec);
        hfs_find_exit(&fd);
        if (!root_inode)
                goto bail_no_root;
 
+       res = -ENOMEM;
        sb->s_root = d_alloc_root(root_inode);
        if (!sb->s_root)
                goto bail_iput;
@@ -307,18 +409,17 @@ static int hfs_fill_super(struct super_block *sb, void *data, int silent)
 bail_iput:
        iput(root_inode);
 bail_no_root:
-       hfs_warn("hfs_fs: get root inode failed.\n");
+       printk(KERN_ERR "hfs: get root inode failed.\n");
+bail:
        hfs_mdb_put(sb);
-bail2:
-bail3:
-       kfree(sbi);
        return res;
 }
 
-static struct super_block *hfs_get_sb(struct file_system_type *fs_type,
-                                     int flags, const char *dev_name, void *data)
+static int hfs_get_sb(struct file_system_type *fs_type,
+                     int flags, const char *dev_name, void *data,
+                     struct vfsmount *mnt)
 {
-       return get_sb_bdev(fs_type, flags, dev_name, data, hfs_fill_super);
+       return get_sb_bdev(fs_type, flags, dev_name, data, hfs_fill_super, mnt);
 }
 
 static struct file_system_type hfs_fs_type = {
@@ -329,7 +430,7 @@ static struct file_system_type hfs_fs_type = {
        .fs_flags       = FS_REQUIRES_DEV,
 };
 
-static void hfs_init_once(void *p, kmem_cache_t *cachep, unsigned long flags)
+static void hfs_init_once(void *p, struct kmem_cache *cachep, unsigned long flags)
 {
        struct hfs_inode_info *i = p;
 
@@ -355,8 +456,7 @@ static int __init init_hfs_fs(void)
 static void __exit exit_hfs_fs(void)
 {
        unregister_filesystem(&hfs_fs_type);
-       if (kmem_cache_destroy(hfs_inode_cachep))
-               printk(KERN_INFO "hfs_inode_cache: not all structures were freed\n");
+       kmem_cache_destroy(hfs_inode_cachep);
 }
 
 module_init(init_hfs_fs)