2 * QNX4 file system, Linux implementation.
6 * Using parts of the xiafs filesystem.
10 * 01-06-1998 by Richard Frowijn : first release.
11 * 20-06-1998 by Frank Denis : Linux 2.1.99+ support, boot signature, misc.
12 * 30-06-1998 by Frank Denis : first step to write inodes.
15 #include <linux/module.h>
16 #include <linux/init.h>
17 #include <linux/slab.h>
18 #include <linux/highuid.h>
19 #include <linux/pagemap.h>
20 #include <linux/buffer_head.h>
21 #include <linux/writeback.h>
22 #include <linux/statfs.h>
25 #define QNX4_VERSION 4
26 #define QNX4_BMNAME ".bitmap"
28 static const struct super_operations qnx4_sops
;
30 static struct inode
*qnx4_alloc_inode(struct super_block
*sb
);
31 static void qnx4_destroy_inode(struct inode
*inode
);
32 static int qnx4_remount(struct super_block
*sb
, int *flags
, char *data
);
33 static int qnx4_statfs(struct dentry
*, struct kstatfs
*);
35 static const struct super_operations qnx4_sops
=
37 .alloc_inode
= qnx4_alloc_inode
,
38 .destroy_inode
= qnx4_destroy_inode
,
39 .statfs
= qnx4_statfs
,
40 .remount_fs
= qnx4_remount
,
43 static int qnx4_remount(struct super_block
*sb
, int *flags
, char *data
)
45 struct qnx4_sb_info
*qs
;
48 qs
->Version
= QNX4_VERSION
;
53 static int qnx4_get_block( struct inode
*inode
, sector_t iblock
, struct buffer_head
*bh
, int create
)
57 QNX4DEBUG((KERN_INFO
"qnx4: qnx4_get_block inode=[%ld] iblock=[%ld]\n",inode
->i_ino
,iblock
));
59 phys
= qnx4_block_map( inode
, iblock
);
61 // logical block is before EOF
62 map_bh(bh
, inode
->i_sb
, phys
);
67 static inline u32
try_extent(qnx4_xtnt_t
*extent
, u32
*offset
)
69 u32 size
= le32_to_cpu(extent
->xtnt_size
);
71 return le32_to_cpu(extent
->xtnt_blk
) + *offset
- 1;
76 unsigned long qnx4_block_map( struct inode
*inode
, long iblock
)
80 struct buffer_head
*bh
= NULL
;
81 struct qnx4_xblk
*xblk
= NULL
;
82 struct qnx4_inode_entry
*qnx4_inode
= qnx4_raw_inode(inode
);
83 u16 nxtnt
= le16_to_cpu(qnx4_inode
->di_num_xtnts
);
85 u32 block
= try_extent(&qnx4_inode
->di_first_xtnt
, &offset
);
88 // iblock is in the first extent. This is easy.
90 // iblock is beyond first extent. We have to follow the extent chain.
91 i_xblk
= le32_to_cpu(qnx4_inode
->di_xblk
);
93 while ( --nxtnt
> 0 ) {
95 // read next xtnt block.
96 bh
= sb_bread(inode
->i_sb
, i_xblk
- 1);
98 QNX4DEBUG((KERN_ERR
"qnx4: I/O error reading xtnt block [%ld])\n", i_xblk
- 1));
101 xblk
= (struct qnx4_xblk
*)bh
->b_data
;
102 if ( memcmp( xblk
->xblk_signature
, "IamXblk", 7 ) ) {
103 QNX4DEBUG((KERN_ERR
"qnx4: block at %ld is not a valid xtnt\n", qnx4_inode
->i_xblk
));
107 block
= try_extent(&xblk
->xblk_xtnts
[ix
], &offset
);
112 if ( ++ix
>= xblk
->xblk_num_xtnts
) {
113 i_xblk
= le32_to_cpu(xblk
->xblk_next_xblk
);
123 QNX4DEBUG((KERN_INFO
"qnx4: mapping block %ld of inode %ld = %ld\n",iblock
,inode
->i_ino
,block
));
127 static int qnx4_statfs(struct dentry
*dentry
, struct kstatfs
*buf
)
129 struct super_block
*sb
= dentry
->d_sb
;
130 u64 id
= huge_encode_dev(sb
->s_bdev
->bd_dev
);
132 buf
->f_type
= sb
->s_magic
;
133 buf
->f_bsize
= sb
->s_blocksize
;
134 buf
->f_blocks
= le32_to_cpu(qnx4_sb(sb
)->BitMap
->di_size
) * 8;
135 buf
->f_bfree
= qnx4_count_free_blocks(sb
);
136 buf
->f_bavail
= buf
->f_bfree
;
137 buf
->f_namelen
= QNX4_NAME_MAX
;
138 buf
->f_fsid
.val
[0] = (u32
)id
;
139 buf
->f_fsid
.val
[1] = (u32
)(id
>> 32);
145 * Check the root directory of the filesystem to make sure
146 * it really _is_ a qnx4 filesystem, and to check the size
147 * of the directory entry.
149 static const char *qnx4_checkroot(struct super_block
*sb
,
150 struct qnx4_super_block
*s
)
152 struct buffer_head
*bh
;
153 struct qnx4_inode_entry
*rootdir
;
157 if (s
->RootDir
.di_fname
[0] != '/' || s
->RootDir
.di_fname
[1] != '\0')
158 return "no qnx4 filesystem (no root dir).";
159 QNX4DEBUG((KERN_NOTICE
"QNX4 filesystem found on dev %s.\n", sb
->s_id
));
160 rd
= le32_to_cpu(s
->RootDir
.di_first_xtnt
.xtnt_blk
) - 1;
161 rl
= le32_to_cpu(s
->RootDir
.di_first_xtnt
.xtnt_size
);
162 for (j
= 0; j
< rl
; j
++) {
163 bh
= sb_bread(sb
, rd
+ j
); /* root dir, first block */
165 return "unable to read root entry.";
166 rootdir
= (struct qnx4_inode_entry
*) bh
->b_data
;
167 for (i
= 0; i
< QNX4_INODES_PER_BLOCK
; i
++, rootdir
++) {
168 QNX4DEBUG((KERN_INFO
"rootdir entry found : [%s]\n", rootdir
->di_fname
));
169 if (strcmp(rootdir
->di_fname
, QNX4_BMNAME
) != 0)
171 qnx4_sb(sb
)->BitMap
= kmemdup(rootdir
,
172 sizeof(struct qnx4_inode_entry
),
175 if (!qnx4_sb(sb
)->BitMap
)
176 return "not enough memory for bitmap inode";
177 /* keep bitmap inode known */
182 return "bitmap file not found.";
185 static int qnx4_fill_super(struct super_block
*s
, void *data
, int silent
)
187 struct buffer_head
*bh
;
190 struct qnx4_sb_info
*qs
;
192 qs
= kzalloc(sizeof(struct qnx4_sb_info
), GFP_KERNEL
);
197 sb_set_blocksize(s
, QNX4_BLOCK_SIZE
);
199 s
->s_op
= &qnx4_sops
;
200 s
->s_magic
= QNX4_SUPER_MAGIC
;
201 s
->s_flags
|= MS_RDONLY
; /* Yup, read-only yet */
203 /* Check the superblock signature. Since the qnx4 code is
204 dangerous, we should leave as quickly as possible
205 if we don't belong here... */
208 printk(KERN_ERR
"qnx4: unable to read the superblock\n");
212 /* check before allocating dentries, inodes, .. */
213 errmsg
= qnx4_checkroot(s
, (struct qnx4_super_block
*) bh
->b_data
);
215 if (errmsg
!= NULL
) {
217 printk(KERN_ERR
"qnx4: %s\n", errmsg
);
221 /* does root not have inode number QNX4_ROOT_INO ?? */
222 root
= qnx4_iget(s
, QNX4_ROOT_INO
* QNX4_INODES_PER_BLOCK
);
224 printk(KERN_ERR
"qnx4: get inode failed\n");
225 return PTR_ERR(root
);
228 s
->s_root
= d_make_root(root
);
229 if (s
->s_root
== NULL
)
235 static void qnx4_kill_sb(struct super_block
*sb
)
237 struct qnx4_sb_info
*qs
= qnx4_sb(sb
);
238 kill_block_super(sb
);
245 static int qnx4_readpage(struct file
*file
, struct page
*page
)
247 return block_read_full_page(page
,qnx4_get_block
);
250 static sector_t
qnx4_bmap(struct address_space
*mapping
, sector_t block
)
252 return generic_block_bmap(mapping
,block
,qnx4_get_block
);
254 static const struct address_space_operations qnx4_aops
= {
255 .readpage
= qnx4_readpage
,
259 struct inode
*qnx4_iget(struct super_block
*sb
, unsigned long ino
)
261 struct buffer_head
*bh
;
262 struct qnx4_inode_entry
*raw_inode
;
264 struct qnx4_inode_entry
*qnx4_inode
;
267 inode
= iget_locked(sb
, ino
);
269 return ERR_PTR(-ENOMEM
);
270 if (!(inode
->i_state
& I_NEW
))
273 qnx4_inode
= qnx4_raw_inode(inode
);
276 QNX4DEBUG((KERN_INFO
"reading inode : [%d]\n", ino
));
278 printk(KERN_ERR
"qnx4: bad inode number on dev %s: %lu is "
282 return ERR_PTR(-EIO
);
284 block
= ino
/ QNX4_INODES_PER_BLOCK
;
286 if (!(bh
= sb_bread(sb
, block
))) {
287 printk(KERN_ERR
"qnx4: major problem: unable to read inode from dev "
290 return ERR_PTR(-EIO
);
292 raw_inode
= ((struct qnx4_inode_entry
*) bh
->b_data
) +
293 (ino
% QNX4_INODES_PER_BLOCK
);
295 inode
->i_mode
= le16_to_cpu(raw_inode
->di_mode
);
296 i_uid_write(inode
, (uid_t
)le16_to_cpu(raw_inode
->di_uid
));
297 i_gid_write(inode
, (gid_t
)le16_to_cpu(raw_inode
->di_gid
));
298 set_nlink(inode
, le16_to_cpu(raw_inode
->di_nlink
));
299 inode
->i_size
= le32_to_cpu(raw_inode
->di_size
);
300 inode
->i_mtime
.tv_sec
= le32_to_cpu(raw_inode
->di_mtime
);
301 inode
->i_mtime
.tv_nsec
= 0;
302 inode
->i_atime
.tv_sec
= le32_to_cpu(raw_inode
->di_atime
);
303 inode
->i_atime
.tv_nsec
= 0;
304 inode
->i_ctime
.tv_sec
= le32_to_cpu(raw_inode
->di_ctime
);
305 inode
->i_ctime
.tv_nsec
= 0;
306 inode
->i_blocks
= le32_to_cpu(raw_inode
->di_first_xtnt
.xtnt_size
);
308 memcpy(qnx4_inode
, raw_inode
, QNX4_DIR_ENTRY_SIZE
);
309 if (S_ISREG(inode
->i_mode
)) {
310 inode
->i_fop
= &generic_ro_fops
;
311 inode
->i_mapping
->a_ops
= &qnx4_aops
;
312 qnx4_i(inode
)->mmu_private
= inode
->i_size
;
313 } else if (S_ISDIR(inode
->i_mode
)) {
314 inode
->i_op
= &qnx4_dir_inode_operations
;
315 inode
->i_fop
= &qnx4_dir_operations
;
316 } else if (S_ISLNK(inode
->i_mode
)) {
317 inode
->i_op
= &page_symlink_inode_operations
;
318 inode
->i_mapping
->a_ops
= &qnx4_aops
;
319 qnx4_i(inode
)->mmu_private
= inode
->i_size
;
321 printk(KERN_ERR
"qnx4: bad inode %lu on dev %s\n",
325 return ERR_PTR(-EIO
);
328 unlock_new_inode(inode
);
332 static struct kmem_cache
*qnx4_inode_cachep
;
334 static struct inode
*qnx4_alloc_inode(struct super_block
*sb
)
336 struct qnx4_inode_info
*ei
;
337 ei
= kmem_cache_alloc(qnx4_inode_cachep
, GFP_KERNEL
);
340 return &ei
->vfs_inode
;
343 static void qnx4_i_callback(struct rcu_head
*head
)
345 struct inode
*inode
= container_of(head
, struct inode
, i_rcu
);
346 kmem_cache_free(qnx4_inode_cachep
, qnx4_i(inode
));
349 static void qnx4_destroy_inode(struct inode
*inode
)
351 call_rcu(&inode
->i_rcu
, qnx4_i_callback
);
354 static void init_once(void *foo
)
356 struct qnx4_inode_info
*ei
= (struct qnx4_inode_info
*) foo
;
358 inode_init_once(&ei
->vfs_inode
);
361 static int init_inodecache(void)
363 qnx4_inode_cachep
= kmem_cache_create("qnx4_inode_cache",
364 sizeof(struct qnx4_inode_info
),
365 0, (SLAB_RECLAIM_ACCOUNT
|
368 if (qnx4_inode_cachep
== NULL
)
373 static void destroy_inodecache(void)
376 * Make sure all delayed rcu free inodes are flushed before we
380 kmem_cache_destroy(qnx4_inode_cachep
);
383 static struct dentry
*qnx4_mount(struct file_system_type
*fs_type
,
384 int flags
, const char *dev_name
, void *data
)
386 return mount_bdev(fs_type
, flags
, dev_name
, data
, qnx4_fill_super
);
389 static struct file_system_type qnx4_fs_type
= {
390 .owner
= THIS_MODULE
,
393 .kill_sb
= qnx4_kill_sb
,
394 .fs_flags
= FS_REQUIRES_DEV
,
396 MODULE_ALIAS_FS("qnx4");
398 static int __init
init_qnx4_fs(void)
402 err
= init_inodecache();
406 err
= register_filesystem(&qnx4_fs_type
);
408 destroy_inodecache();
412 printk(KERN_INFO
"QNX4 filesystem 0.2.3 registered.\n");
416 static void __exit
exit_qnx4_fs(void)
418 unregister_filesystem(&qnx4_fs_type
);
419 destroy_inodecache();
422 module_init(init_qnx4_fs
)
423 module_exit(exit_qnx4_fs
)
424 MODULE_LICENSE("GPL");