2 * QNX6 file system, Linux implementation.
8 * 01-02-2012 by Kai Bankett (chaosman@ontika.net) : first release.
12 #include <linux/buffer_head.h>
13 #include <linux/slab.h>
14 #include <linux/crc32.h>
17 static void qnx6_mmi_copy_sb(struct qnx6_super_block *qsb,
18 struct qnx6_mmi_super_block *sb)
20 qsb->sb_magic = sb->sb_magic;
21 qsb->sb_checksum = sb->sb_checksum;
22 qsb->sb_serial = sb->sb_serial;
23 qsb->sb_blocksize = sb->sb_blocksize;
24 qsb->sb_num_inodes = sb->sb_num_inodes;
25 qsb->sb_free_inodes = sb->sb_free_inodes;
26 qsb->sb_num_blocks = sb->sb_num_blocks;
27 qsb->sb_free_blocks = sb->sb_free_blocks;
29 /* the rest of the superblock is the same */
30 memcpy(&qsb->Inode, &sb->Inode, sizeof(sb->Inode));
31 memcpy(&qsb->Bitmap, &sb->Bitmap, sizeof(sb->Bitmap));
32 memcpy(&qsb->Longfile, &sb->Longfile, sizeof(sb->Longfile));
35 struct qnx6_super_block *qnx6_mmi_fill_super(struct super_block *s, int silent)
37 struct buffer_head *bh1, *bh2 = NULL;
38 struct qnx6_mmi_super_block *sb1, *sb2;
39 struct qnx6_super_block *qsb = NULL;
40 struct qnx6_sb_info *sbi;
43 /* Check the superblock signatures
44 start with the first superblock */
47 printk(KERN_ERR "qnx6: Unable to read first mmi superblock\n");
50 sb1 = (struct qnx6_mmi_super_block *)bh1->b_data;
52 if (fs32_to_cpu(sbi, sb1->sb_magic) != QNX6_SUPER_MAGIC) {
54 printk(KERN_ERR "qnx6: wrong signature (magic) in"
60 /* checksum check - start at byte 8 and end at byte 512 */
61 if (fs32_to_cpu(sbi, sb1->sb_checksum) !=
62 crc32_be(0, (char *)(bh1->b_data + 8), 504)) {
63 printk(KERN_ERR "qnx6: superblock #1 checksum error\n");
67 /* calculate second superblock blocknumber */
68 offset = fs32_to_cpu(sbi, sb1->sb_num_blocks) + QNX6_SUPERBLOCK_AREA /
69 fs32_to_cpu(sbi, sb1->sb_blocksize);
71 /* set new blocksize */
72 if (!sb_set_blocksize(s, fs32_to_cpu(sbi, sb1->sb_blocksize))) {
73 printk(KERN_ERR "qnx6: unable to set blocksize\n");
76 /* blocksize invalidates bh - pull it back in */
81 sb1 = (struct qnx6_mmi_super_block *)bh1->b_data;
83 /* read second superblock */
84 bh2 = sb_bread(s, offset);
86 printk(KERN_ERR "qnx6: unable to read the second superblock\n");
89 sb2 = (struct qnx6_mmi_super_block *)bh2->b_data;
90 if (fs32_to_cpu(sbi, sb2->sb_magic) != QNX6_SUPER_MAGIC) {
92 printk(KERN_ERR "qnx6: wrong signature (magic) in"
97 /* checksum check - start at byte 8 and end at byte 512 */
98 if (fs32_to_cpu(sbi, sb2->sb_checksum)
99 != crc32_be(0, (char *)(bh2->b_data + 8), 504)) {
100 printk(KERN_ERR "qnx6: superblock #1 checksum error\n");
104 qsb = kmalloc(sizeof(*qsb), GFP_KERNEL);
106 printk(KERN_ERR "qnx6: unable to allocate memory.\n");
110 if (fs64_to_cpu(sbi, sb1->sb_serial) >
111 fs64_to_cpu(sbi, sb2->sb_serial)) {
112 /* superblock #1 active */
113 qnx6_mmi_copy_sb(qsb, sb1);
114 #ifdef CONFIG_QNX6FS_DEBUG
115 qnx6_superblock_debug(qsb, s);
117 memcpy(bh1->b_data, qsb, sizeof(struct qnx6_super_block));
120 sbi->sb = (struct qnx6_super_block *)bh1->b_data;
122 printk(KERN_INFO "qnx6: superblock #1 active\n");
124 /* superblock #2 active */
125 qnx6_mmi_copy_sb(qsb, sb2);
126 #ifdef CONFIG_QNX6FS_DEBUG
127 qnx6_superblock_debug(qsb, s);
129 memcpy(bh2->b_data, qsb, sizeof(struct qnx6_super_block));
132 sbi->sb = (struct qnx6_super_block *)bh2->b_data;
134 printk(KERN_INFO "qnx6: superblock #2 active\n");
138 /* offset for mmi_fs is just SUPERBLOCK_AREA bytes */
139 sbi->s_blks_off = QNX6_SUPERBLOCK_AREA / s->s_blocksize;