inode.c 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492
  1. /*
  2. * QNX4 file system, Linux implementation.
  3. *
  4. * Version : 0.2.1
  5. *
  6. * Using parts of the xiafs filesystem.
  7. *
  8. * History :
  9. *
  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.
  13. */
  14. #include <linux/module.h>
  15. #include <linux/init.h>
  16. #include <linux/slab.h>
  17. #include <linux/highuid.h>
  18. #include <linux/pagemap.h>
  19. #include <linux/buffer_head.h>
  20. #include <linux/writeback.h>
  21. #include <linux/statfs.h>
  22. #include "qnx4.h"
  23. #define QNX4_VERSION 4
  24. #define QNX4_BMNAME ".bitmap"
  25. static const struct super_operations qnx4_sops;
  26. static void qnx4_put_super(struct super_block *sb);
  27. static struct inode *qnx4_alloc_inode(struct super_block *sb);
  28. static void qnx4_destroy_inode(struct inode *inode);
  29. static int qnx4_remount(struct super_block *sb, int *flags, char *data);
  30. static int qnx4_statfs(struct dentry *, struct kstatfs *);
  31. static const struct super_operations qnx4_sops =
  32. {
  33. .alloc_inode = qnx4_alloc_inode,
  34. .destroy_inode = qnx4_destroy_inode,
  35. .put_super = qnx4_put_super,
  36. .statfs = qnx4_statfs,
  37. .remount_fs = qnx4_remount,
  38. };
  39. static int qnx4_remount(struct super_block *sb, int *flags, char *data)
  40. {
  41. struct qnx4_sb_info *qs;
  42. qs = qnx4_sb(sb);
  43. qs->Version = QNX4_VERSION;
  44. *flags |= MS_RDONLY;
  45. return 0;
  46. }
  47. static struct buffer_head *qnx4_getblk(struct inode *inode, int nr,
  48. int create)
  49. {
  50. struct buffer_head *result = NULL;
  51. if ( nr >= 0 )
  52. nr = qnx4_block_map( inode, nr );
  53. if (nr) {
  54. result = sb_getblk(inode->i_sb, nr);
  55. return result;
  56. }
  57. return NULL;
  58. }
  59. struct buffer_head *qnx4_bread(struct inode *inode, int block, int create)
  60. {
  61. struct buffer_head *bh;
  62. bh = qnx4_getblk(inode, block, create);
  63. if (!bh || buffer_uptodate(bh)) {
  64. return bh;
  65. }
  66. ll_rw_block(READ, 1, &bh);
  67. wait_on_buffer(bh);
  68. if (buffer_uptodate(bh)) {
  69. return bh;
  70. }
  71. brelse(bh);
  72. return NULL;
  73. }
  74. static int qnx4_get_block( struct inode *inode, sector_t iblock, struct buffer_head *bh, int create )
  75. {
  76. unsigned long phys;
  77. QNX4DEBUG((KERN_INFO "qnx4: qnx4_get_block inode=[%ld] iblock=[%ld]\n",inode->i_ino,iblock));
  78. phys = qnx4_block_map( inode, iblock );
  79. if ( phys ) {
  80. // logical block is before EOF
  81. map_bh(bh, inode->i_sb, phys);
  82. }
  83. return 0;
  84. }
  85. unsigned long qnx4_block_map( struct inode *inode, long iblock )
  86. {
  87. int ix;
  88. long offset, i_xblk;
  89. unsigned long block = 0;
  90. struct buffer_head *bh = NULL;
  91. struct qnx4_xblk *xblk = NULL;
  92. struct qnx4_inode_entry *qnx4_inode = qnx4_raw_inode(inode);
  93. u16 nxtnt = le16_to_cpu(qnx4_inode->di_num_xtnts);
  94. if ( iblock < le32_to_cpu(qnx4_inode->di_first_xtnt.xtnt_size) ) {
  95. // iblock is in the first extent. This is easy.
  96. block = le32_to_cpu(qnx4_inode->di_first_xtnt.xtnt_blk) + iblock - 1;
  97. } else {
  98. // iblock is beyond first extent. We have to follow the extent chain.
  99. i_xblk = le32_to_cpu(qnx4_inode->di_xblk);
  100. offset = iblock - le32_to_cpu(qnx4_inode->di_first_xtnt.xtnt_size);
  101. ix = 0;
  102. while ( --nxtnt > 0 ) {
  103. if ( ix == 0 ) {
  104. // read next xtnt block.
  105. bh = sb_bread(inode->i_sb, i_xblk - 1);
  106. if ( !bh ) {
  107. QNX4DEBUG((KERN_ERR "qnx4: I/O error reading xtnt block [%ld])\n", i_xblk - 1));
  108. return -EIO;
  109. }
  110. xblk = (struct qnx4_xblk*)bh->b_data;
  111. if ( memcmp( xblk->xblk_signature, "IamXblk", 7 ) ) {
  112. QNX4DEBUG((KERN_ERR "qnx4: block at %ld is not a valid xtnt\n", qnx4_inode->i_xblk));
  113. return -EIO;
  114. }
  115. }
  116. if ( offset < le32_to_cpu(xblk->xblk_xtnts[ix].xtnt_size) ) {
  117. // got it!
  118. block = le32_to_cpu(xblk->xblk_xtnts[ix].xtnt_blk) + offset - 1;
  119. break;
  120. }
  121. offset -= le32_to_cpu(xblk->xblk_xtnts[ix].xtnt_size);
  122. if ( ++ix >= xblk->xblk_num_xtnts ) {
  123. i_xblk = le32_to_cpu(xblk->xblk_next_xblk);
  124. ix = 0;
  125. brelse( bh );
  126. bh = NULL;
  127. }
  128. }
  129. if ( bh )
  130. brelse( bh );
  131. }
  132. QNX4DEBUG((KERN_INFO "qnx4: mapping block %ld of inode %ld = %ld\n",iblock,inode->i_ino,block));
  133. return block;
  134. }
  135. static int qnx4_statfs(struct dentry *dentry, struct kstatfs *buf)
  136. {
  137. struct super_block *sb = dentry->d_sb;
  138. u64 id = huge_encode_dev(sb->s_bdev->bd_dev);
  139. buf->f_type = sb->s_magic;
  140. buf->f_bsize = sb->s_blocksize;
  141. buf->f_blocks = le32_to_cpu(qnx4_sb(sb)->BitMap->di_size) * 8;
  142. buf->f_bfree = qnx4_count_free_blocks(sb);
  143. buf->f_bavail = buf->f_bfree;
  144. buf->f_namelen = QNX4_NAME_MAX;
  145. buf->f_fsid.val[0] = (u32)id;
  146. buf->f_fsid.val[1] = (u32)(id >> 32);
  147. return 0;
  148. }
  149. /*
  150. * Check the root directory of the filesystem to make sure
  151. * it really _is_ a qnx4 filesystem, and to check the size
  152. * of the directory entry.
  153. */
  154. static const char *qnx4_checkroot(struct super_block *sb)
  155. {
  156. struct buffer_head *bh;
  157. struct qnx4_inode_entry *rootdir;
  158. int rd, rl;
  159. int i, j;
  160. if (*(qnx4_sb(sb)->sb->RootDir.di_fname) != '/')
  161. return "no qnx4 filesystem (no root dir).";
  162. QNX4DEBUG((KERN_NOTICE "QNX4 filesystem found on dev %s.\n", sb->s_id));
  163. rd = le32_to_cpu(qnx4_sb(sb)->sb->RootDir.di_first_xtnt.xtnt_blk) - 1;
  164. rl = le32_to_cpu(qnx4_sb(sb)->sb->RootDir.di_first_xtnt.xtnt_size);
  165. for (j = 0; j < rl; j++) {
  166. bh = sb_bread(sb, rd + j); /* root dir, first block */
  167. if (bh == NULL)
  168. return "unable to read root entry.";
  169. rootdir = (struct qnx4_inode_entry *) bh->b_data;
  170. for (i = 0; i < QNX4_INODES_PER_BLOCK; i++, rootdir++) {
  171. QNX4DEBUG((KERN_INFO "rootdir entry found : [%s]\n", rootdir->di_fname));
  172. if (strcmp(rootdir->di_fname, QNX4_BMNAME) != 0)
  173. continue;
  174. qnx4_sb(sb)->BitMap = kmemdup(rootdir,
  175. sizeof(struct qnx4_inode_entry),
  176. GFP_KERNEL);
  177. brelse(bh);
  178. if (!qnx4_sb(sb)->BitMap)
  179. return "not enough memory for bitmap inode";
  180. /* keep bitmap inode known */
  181. return NULL;
  182. }
  183. brelse(bh);
  184. }
  185. return "bitmap file not found.";
  186. }
  187. static int qnx4_fill_super(struct super_block *s, void *data, int silent)
  188. {
  189. struct buffer_head *bh;
  190. struct inode *root;
  191. const char *errmsg;
  192. struct qnx4_sb_info *qs;
  193. int ret = -EINVAL;
  194. qs = kzalloc(sizeof(struct qnx4_sb_info), GFP_KERNEL);
  195. if (!qs)
  196. return -ENOMEM;
  197. s->s_fs_info = qs;
  198. sb_set_blocksize(s, QNX4_BLOCK_SIZE);
  199. /* Check the superblock signature. Since the qnx4 code is
  200. dangerous, we should leave as quickly as possible
  201. if we don't belong here... */
  202. bh = sb_bread(s, 1);
  203. if (!bh) {
  204. printk(KERN_ERR "qnx4: unable to read the superblock\n");
  205. goto outnobh;
  206. }
  207. if ( le32_to_cpup((__le32*) bh->b_data) != QNX4_SUPER_MAGIC ) {
  208. if (!silent)
  209. printk(KERN_ERR "qnx4: wrong fsid in superblock.\n");
  210. goto out;
  211. }
  212. s->s_op = &qnx4_sops;
  213. s->s_magic = QNX4_SUPER_MAGIC;
  214. s->s_flags |= MS_RDONLY; /* Yup, read-only yet */
  215. qnx4_sb(s)->sb_buf = bh;
  216. qnx4_sb(s)->sb = (struct qnx4_super_block *) bh->b_data;
  217. /* check before allocating dentries, inodes, .. */
  218. errmsg = qnx4_checkroot(s);
  219. if (errmsg != NULL) {
  220. if (!silent)
  221. printk(KERN_ERR "qnx4: %s\n", errmsg);
  222. goto out;
  223. }
  224. /* does root not have inode number QNX4_ROOT_INO ?? */
  225. root = qnx4_iget(s, QNX4_ROOT_INO * QNX4_INODES_PER_BLOCK);
  226. if (IS_ERR(root)) {
  227. printk(KERN_ERR "qnx4: get inode failed\n");
  228. ret = PTR_ERR(root);
  229. goto outb;
  230. }
  231. ret = -ENOMEM;
  232. s->s_root = d_alloc_root(root);
  233. if (s->s_root == NULL)
  234. goto outi;
  235. brelse(bh);
  236. return 0;
  237. outi:
  238. iput(root);
  239. outb:
  240. kfree(qs->BitMap);
  241. out:
  242. brelse(bh);
  243. outnobh:
  244. kfree(qs);
  245. s->s_fs_info = NULL;
  246. return ret;
  247. }
  248. static void qnx4_put_super(struct super_block *sb)
  249. {
  250. struct qnx4_sb_info *qs = qnx4_sb(sb);
  251. kfree( qs->BitMap );
  252. kfree( qs );
  253. sb->s_fs_info = NULL;
  254. return;
  255. }
  256. static int qnx4_writepage(struct page *page, struct writeback_control *wbc)
  257. {
  258. return block_write_full_page(page,qnx4_get_block, wbc);
  259. }
  260. static int qnx4_readpage(struct file *file, struct page *page)
  261. {
  262. return block_read_full_page(page,qnx4_get_block);
  263. }
  264. static int qnx4_write_begin(struct file *file, struct address_space *mapping,
  265. loff_t pos, unsigned len, unsigned flags,
  266. struct page **pagep, void **fsdata)
  267. {
  268. struct qnx4_inode_info *qnx4_inode = qnx4_i(mapping->host);
  269. int ret;
  270. *pagep = NULL;
  271. ret = cont_write_begin(file, mapping, pos, len, flags, pagep, fsdata,
  272. qnx4_get_block,
  273. &qnx4_inode->mmu_private);
  274. if (unlikely(ret)) {
  275. loff_t isize = mapping->host->i_size;
  276. if (pos + len > isize)
  277. vmtruncate(mapping->host, isize);
  278. }
  279. return ret;
  280. }
  281. static sector_t qnx4_bmap(struct address_space *mapping, sector_t block)
  282. {
  283. return generic_block_bmap(mapping,block,qnx4_get_block);
  284. }
  285. static const struct address_space_operations qnx4_aops = {
  286. .readpage = qnx4_readpage,
  287. .writepage = qnx4_writepage,
  288. .write_begin = qnx4_write_begin,
  289. .write_end = generic_write_end,
  290. .bmap = qnx4_bmap
  291. };
  292. struct inode *qnx4_iget(struct super_block *sb, unsigned long ino)
  293. {
  294. struct buffer_head *bh;
  295. struct qnx4_inode_entry *raw_inode;
  296. int block;
  297. struct qnx4_inode_entry *qnx4_inode;
  298. struct inode *inode;
  299. inode = iget_locked(sb, ino);
  300. if (!inode)
  301. return ERR_PTR(-ENOMEM);
  302. if (!(inode->i_state & I_NEW))
  303. return inode;
  304. qnx4_inode = qnx4_raw_inode(inode);
  305. inode->i_mode = 0;
  306. QNX4DEBUG((KERN_INFO "reading inode : [%d]\n", ino));
  307. if (!ino) {
  308. printk(KERN_ERR "qnx4: bad inode number on dev %s: %lu is "
  309. "out of range\n",
  310. sb->s_id, ino);
  311. iget_failed(inode);
  312. return ERR_PTR(-EIO);
  313. }
  314. block = ino / QNX4_INODES_PER_BLOCK;
  315. if (!(bh = sb_bread(sb, block))) {
  316. printk(KERN_ERR "qnx4: major problem: unable to read inode from dev "
  317. "%s\n", sb->s_id);
  318. iget_failed(inode);
  319. return ERR_PTR(-EIO);
  320. }
  321. raw_inode = ((struct qnx4_inode_entry *) bh->b_data) +
  322. (ino % QNX4_INODES_PER_BLOCK);
  323. inode->i_mode = le16_to_cpu(raw_inode->di_mode);
  324. inode->i_uid = (uid_t)le16_to_cpu(raw_inode->di_uid);
  325. inode->i_gid = (gid_t)le16_to_cpu(raw_inode->di_gid);
  326. set_nlink(inode, le16_to_cpu(raw_inode->di_nlink));
  327. inode->i_size = le32_to_cpu(raw_inode->di_size);
  328. inode->i_mtime.tv_sec = le32_to_cpu(raw_inode->di_mtime);
  329. inode->i_mtime.tv_nsec = 0;
  330. inode->i_atime.tv_sec = le32_to_cpu(raw_inode->di_atime);
  331. inode->i_atime.tv_nsec = 0;
  332. inode->i_ctime.tv_sec = le32_to_cpu(raw_inode->di_ctime);
  333. inode->i_ctime.tv_nsec = 0;
  334. inode->i_blocks = le32_to_cpu(raw_inode->di_first_xtnt.xtnt_size);
  335. memcpy(qnx4_inode, raw_inode, QNX4_DIR_ENTRY_SIZE);
  336. if (S_ISREG(inode->i_mode)) {
  337. inode->i_fop = &generic_ro_fops;
  338. inode->i_mapping->a_ops = &qnx4_aops;
  339. qnx4_i(inode)->mmu_private = inode->i_size;
  340. } else if (S_ISDIR(inode->i_mode)) {
  341. inode->i_op = &qnx4_dir_inode_operations;
  342. inode->i_fop = &qnx4_dir_operations;
  343. } else if (S_ISLNK(inode->i_mode)) {
  344. inode->i_op = &page_symlink_inode_operations;
  345. inode->i_mapping->a_ops = &qnx4_aops;
  346. qnx4_i(inode)->mmu_private = inode->i_size;
  347. } else {
  348. printk(KERN_ERR "qnx4: bad inode %lu on dev %s\n",
  349. ino, sb->s_id);
  350. iget_failed(inode);
  351. brelse(bh);
  352. return ERR_PTR(-EIO);
  353. }
  354. brelse(bh);
  355. unlock_new_inode(inode);
  356. return inode;
  357. }
  358. static struct kmem_cache *qnx4_inode_cachep;
  359. static struct inode *qnx4_alloc_inode(struct super_block *sb)
  360. {
  361. struct qnx4_inode_info *ei;
  362. ei = kmem_cache_alloc(qnx4_inode_cachep, GFP_KERNEL);
  363. if (!ei)
  364. return NULL;
  365. return &ei->vfs_inode;
  366. }
  367. static void qnx4_i_callback(struct rcu_head *head)
  368. {
  369. struct inode *inode = container_of(head, struct inode, i_rcu);
  370. kmem_cache_free(qnx4_inode_cachep, qnx4_i(inode));
  371. }
  372. static void qnx4_destroy_inode(struct inode *inode)
  373. {
  374. call_rcu(&inode->i_rcu, qnx4_i_callback);
  375. }
  376. static void init_once(void *foo)
  377. {
  378. struct qnx4_inode_info *ei = (struct qnx4_inode_info *) foo;
  379. inode_init_once(&ei->vfs_inode);
  380. }
  381. static int init_inodecache(void)
  382. {
  383. qnx4_inode_cachep = kmem_cache_create("qnx4_inode_cache",
  384. sizeof(struct qnx4_inode_info),
  385. 0, (SLAB_RECLAIM_ACCOUNT|
  386. SLAB_MEM_SPREAD),
  387. init_once);
  388. if (qnx4_inode_cachep == NULL)
  389. return -ENOMEM;
  390. return 0;
  391. }
  392. static void destroy_inodecache(void)
  393. {
  394. kmem_cache_destroy(qnx4_inode_cachep);
  395. }
  396. static struct dentry *qnx4_mount(struct file_system_type *fs_type,
  397. int flags, const char *dev_name, void *data)
  398. {
  399. return mount_bdev(fs_type, flags, dev_name, data, qnx4_fill_super);
  400. }
  401. static struct file_system_type qnx4_fs_type = {
  402. .owner = THIS_MODULE,
  403. .name = "qnx4",
  404. .mount = qnx4_mount,
  405. .kill_sb = kill_block_super,
  406. .fs_flags = FS_REQUIRES_DEV,
  407. };
  408. static int __init init_qnx4_fs(void)
  409. {
  410. int err;
  411. err = init_inodecache();
  412. if (err)
  413. return err;
  414. err = register_filesystem(&qnx4_fs_type);
  415. if (err) {
  416. destroy_inodecache();
  417. return err;
  418. }
  419. printk(KERN_INFO "QNX4 filesystem 0.2.3 registered.\n");
  420. return 0;
  421. }
  422. static void __exit exit_qnx4_fs(void)
  423. {
  424. unregister_filesystem(&qnx4_fs_type);
  425. destroy_inodecache();
  426. }
  427. module_init(init_qnx4_fs)
  428. module_exit(exit_qnx4_fs)
  429. MODULE_LICENSE("GPL");