inode.c 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458
  1. /*
  2. * fs/bfs/inode.c
  3. * BFS superblock and inode operations.
  4. * Copyright (C) 1999-2006 Tigran Aivazian <tigran@aivazian.fsnet.co.uk>
  5. * From fs/minix, Copyright (C) 1991, 1992 Linus Torvalds.
  6. *
  7. * Made endianness-clean by Andrew Stribblehill <ads@wompom.org>, 2005.
  8. */
  9. #include <linux/module.h>
  10. #include <linux/mm.h>
  11. #include <linux/slab.h>
  12. #include <linux/init.h>
  13. #include <linux/fs.h>
  14. #include <linux/smp_lock.h>
  15. #include <linux/buffer_head.h>
  16. #include <linux/vfs.h>
  17. #include <asm/uaccess.h>
  18. #include "bfs.h"
  19. MODULE_AUTHOR("Tigran Aivazian <tigran@aivazian.fsnet.co.uk>");
  20. MODULE_DESCRIPTION("SCO UnixWare BFS filesystem for Linux");
  21. MODULE_LICENSE("GPL");
  22. #undef DEBUG
  23. #ifdef DEBUG
  24. #define dprintf(x...) printf(x)
  25. #else
  26. #define dprintf(x...)
  27. #endif
  28. void dump_imap(const char *prefix, struct super_block *s);
  29. struct inode *bfs_iget(struct super_block *sb, unsigned long ino)
  30. {
  31. struct bfs_inode *di;
  32. struct inode *inode;
  33. struct buffer_head *bh;
  34. int block, off;
  35. inode = iget_locked(sb, ino);
  36. if (IS_ERR(inode))
  37. return ERR_PTR(-ENOMEM);
  38. if (!(inode->i_state & I_NEW))
  39. return inode;
  40. if ((ino < BFS_ROOT_INO) || (ino > BFS_SB(inode->i_sb)->si_lasti)) {
  41. printf("Bad inode number %s:%08lx\n", inode->i_sb->s_id, ino);
  42. goto error;
  43. }
  44. block = (ino - BFS_ROOT_INO) / BFS_INODES_PER_BLOCK + 1;
  45. bh = sb_bread(inode->i_sb, block);
  46. if (!bh) {
  47. printf("Unable to read inode %s:%08lx\n", inode->i_sb->s_id,
  48. ino);
  49. goto error;
  50. }
  51. off = (ino - BFS_ROOT_INO) % BFS_INODES_PER_BLOCK;
  52. di = (struct bfs_inode *)bh->b_data + off;
  53. inode->i_mode = 0x0000FFFF & le32_to_cpu(di->i_mode);
  54. if (le32_to_cpu(di->i_vtype) == BFS_VDIR) {
  55. inode->i_mode |= S_IFDIR;
  56. inode->i_op = &bfs_dir_inops;
  57. inode->i_fop = &bfs_dir_operations;
  58. } else if (le32_to_cpu(di->i_vtype) == BFS_VREG) {
  59. inode->i_mode |= S_IFREG;
  60. inode->i_op = &bfs_file_inops;
  61. inode->i_fop = &bfs_file_operations;
  62. inode->i_mapping->a_ops = &bfs_aops;
  63. }
  64. BFS_I(inode)->i_sblock = le32_to_cpu(di->i_sblock);
  65. BFS_I(inode)->i_eblock = le32_to_cpu(di->i_eblock);
  66. BFS_I(inode)->i_dsk_ino = le16_to_cpu(di->i_ino);
  67. inode->i_uid = le32_to_cpu(di->i_uid);
  68. inode->i_gid = le32_to_cpu(di->i_gid);
  69. inode->i_nlink = le32_to_cpu(di->i_nlink);
  70. inode->i_size = BFS_FILESIZE(di);
  71. inode->i_blocks = BFS_FILEBLOCKS(di);
  72. inode->i_atime.tv_sec = le32_to_cpu(di->i_atime);
  73. inode->i_mtime.tv_sec = le32_to_cpu(di->i_mtime);
  74. inode->i_ctime.tv_sec = le32_to_cpu(di->i_ctime);
  75. inode->i_atime.tv_nsec = 0;
  76. inode->i_mtime.tv_nsec = 0;
  77. inode->i_ctime.tv_nsec = 0;
  78. brelse(bh);
  79. unlock_new_inode(inode);
  80. return inode;
  81. error:
  82. iget_failed(inode);
  83. return ERR_PTR(-EIO);
  84. }
  85. static int bfs_write_inode(struct inode *inode, int unused)
  86. {
  87. unsigned int ino = (u16)inode->i_ino;
  88. unsigned long i_sblock;
  89. struct bfs_inode *di;
  90. struct buffer_head *bh;
  91. int block, off;
  92. dprintf("ino=%08x\n", ino);
  93. if ((ino < BFS_ROOT_INO) || (ino > BFS_SB(inode->i_sb)->si_lasti)) {
  94. printf("Bad inode number %s:%08x\n", inode->i_sb->s_id, ino);
  95. return -EIO;
  96. }
  97. lock_kernel();
  98. block = (ino - BFS_ROOT_INO) / BFS_INODES_PER_BLOCK + 1;
  99. bh = sb_bread(inode->i_sb, block);
  100. if (!bh) {
  101. printf("Unable to read inode %s:%08x\n",
  102. inode->i_sb->s_id, ino);
  103. unlock_kernel();
  104. return -EIO;
  105. }
  106. off = (ino - BFS_ROOT_INO) % BFS_INODES_PER_BLOCK;
  107. di = (struct bfs_inode *)bh->b_data + off;
  108. if (ino == BFS_ROOT_INO)
  109. di->i_vtype = cpu_to_le32(BFS_VDIR);
  110. else
  111. di->i_vtype = cpu_to_le32(BFS_VREG);
  112. di->i_ino = cpu_to_le16(ino);
  113. di->i_mode = cpu_to_le32(inode->i_mode);
  114. di->i_uid = cpu_to_le32(inode->i_uid);
  115. di->i_gid = cpu_to_le32(inode->i_gid);
  116. di->i_nlink = cpu_to_le32(inode->i_nlink);
  117. di->i_atime = cpu_to_le32(inode->i_atime.tv_sec);
  118. di->i_mtime = cpu_to_le32(inode->i_mtime.tv_sec);
  119. di->i_ctime = cpu_to_le32(inode->i_ctime.tv_sec);
  120. i_sblock = BFS_I(inode)->i_sblock;
  121. di->i_sblock = cpu_to_le32(i_sblock);
  122. di->i_eblock = cpu_to_le32(BFS_I(inode)->i_eblock);
  123. di->i_eoffset = cpu_to_le32(i_sblock * BFS_BSIZE + inode->i_size - 1);
  124. mark_buffer_dirty(bh);
  125. brelse(bh);
  126. unlock_kernel();
  127. return 0;
  128. }
  129. static void bfs_delete_inode(struct inode *inode)
  130. {
  131. unsigned long ino = inode->i_ino;
  132. struct bfs_inode *di;
  133. struct buffer_head *bh;
  134. int block, off;
  135. struct super_block *s = inode->i_sb;
  136. struct bfs_sb_info *info = BFS_SB(s);
  137. struct bfs_inode_info *bi = BFS_I(inode);
  138. dprintf("ino=%08lx\n", ino);
  139. truncate_inode_pages(&inode->i_data, 0);
  140. if ((ino < BFS_ROOT_INO) || (ino > info->si_lasti)) {
  141. printf("invalid ino=%08lx\n", ino);
  142. return;
  143. }
  144. inode->i_size = 0;
  145. inode->i_atime = inode->i_mtime = inode->i_ctime = CURRENT_TIME_SEC;
  146. lock_kernel();
  147. mark_inode_dirty(inode);
  148. block = (ino - BFS_ROOT_INO) / BFS_INODES_PER_BLOCK + 1;
  149. bh = sb_bread(s, block);
  150. if (!bh) {
  151. printf("Unable to read inode %s:%08lx\n",
  152. inode->i_sb->s_id, ino);
  153. unlock_kernel();
  154. return;
  155. }
  156. off = (ino - BFS_ROOT_INO) % BFS_INODES_PER_BLOCK;
  157. di = (struct bfs_inode *)bh->b_data + off;
  158. memset((void *)di, 0, sizeof(struct bfs_inode));
  159. mark_buffer_dirty(bh);
  160. brelse(bh);
  161. if (bi->i_dsk_ino) {
  162. if (bi->i_sblock)
  163. info->si_freeb += bi->i_eblock + 1 - bi->i_sblock;
  164. info->si_freei++;
  165. clear_bit(ino, info->si_imap);
  166. dump_imap("delete_inode", s);
  167. }
  168. /*
  169. * If this was the last file, make the previous block
  170. * "last block of the last file" even if there is no
  171. * real file there, saves us 1 gap.
  172. */
  173. if (info->si_lf_eblk == bi->i_eblock) {
  174. info->si_lf_eblk = bi->i_sblock - 1;
  175. mark_buffer_dirty(info->si_sbh);
  176. }
  177. unlock_kernel();
  178. clear_inode(inode);
  179. }
  180. static void bfs_put_super(struct super_block *s)
  181. {
  182. struct bfs_sb_info *info = BFS_SB(s);
  183. brelse(info->si_sbh);
  184. kfree(info->si_imap);
  185. kfree(info);
  186. s->s_fs_info = NULL;
  187. }
  188. static int bfs_statfs(struct dentry *dentry, struct kstatfs *buf)
  189. {
  190. struct super_block *s = dentry->d_sb;
  191. struct bfs_sb_info *info = BFS_SB(s);
  192. u64 id = huge_encode_dev(s->s_bdev->bd_dev);
  193. buf->f_type = BFS_MAGIC;
  194. buf->f_bsize = s->s_blocksize;
  195. buf->f_blocks = info->si_blocks;
  196. buf->f_bfree = buf->f_bavail = info->si_freeb;
  197. buf->f_files = info->si_lasti + 1 - BFS_ROOT_INO;
  198. buf->f_ffree = info->si_freei;
  199. buf->f_fsid.val[0] = (u32)id;
  200. buf->f_fsid.val[1] = (u32)(id >> 32);
  201. buf->f_namelen = BFS_NAMELEN;
  202. return 0;
  203. }
  204. static void bfs_write_super(struct super_block *s)
  205. {
  206. lock_kernel();
  207. if (!(s->s_flags & MS_RDONLY))
  208. mark_buffer_dirty(BFS_SB(s)->si_sbh);
  209. s->s_dirt = 0;
  210. unlock_kernel();
  211. }
  212. static struct kmem_cache *bfs_inode_cachep;
  213. static struct inode *bfs_alloc_inode(struct super_block *sb)
  214. {
  215. struct bfs_inode_info *bi;
  216. bi = kmem_cache_alloc(bfs_inode_cachep, GFP_KERNEL);
  217. if (!bi)
  218. return NULL;
  219. return &bi->vfs_inode;
  220. }
  221. static void bfs_destroy_inode(struct inode *inode)
  222. {
  223. kmem_cache_free(bfs_inode_cachep, BFS_I(inode));
  224. }
  225. static void init_once(struct kmem_cache *cachep, void *foo)
  226. {
  227. struct bfs_inode_info *bi = foo;
  228. inode_init_once(&bi->vfs_inode);
  229. }
  230. static int init_inodecache(void)
  231. {
  232. bfs_inode_cachep = kmem_cache_create("bfs_inode_cache",
  233. sizeof(struct bfs_inode_info),
  234. 0, (SLAB_RECLAIM_ACCOUNT|
  235. SLAB_MEM_SPREAD),
  236. init_once);
  237. if (bfs_inode_cachep == NULL)
  238. return -ENOMEM;
  239. return 0;
  240. }
  241. static void destroy_inodecache(void)
  242. {
  243. kmem_cache_destroy(bfs_inode_cachep);
  244. }
  245. static const struct super_operations bfs_sops = {
  246. .alloc_inode = bfs_alloc_inode,
  247. .destroy_inode = bfs_destroy_inode,
  248. .write_inode = bfs_write_inode,
  249. .delete_inode = bfs_delete_inode,
  250. .put_super = bfs_put_super,
  251. .write_super = bfs_write_super,
  252. .statfs = bfs_statfs,
  253. };
  254. void dump_imap(const char *prefix, struct super_block *s)
  255. {
  256. #ifdef DEBUG
  257. int i;
  258. char *tmpbuf = (char *)get_zeroed_page(GFP_KERNEL);
  259. if (!tmpbuf)
  260. return;
  261. for (i = BFS_SB(s)->si_lasti; i >= 0; i--) {
  262. if (i > PAGE_SIZE - 100) break;
  263. if (test_bit(i, BFS_SB(s)->si_imap))
  264. strcat(tmpbuf, "1");
  265. else
  266. strcat(tmpbuf, "0");
  267. }
  268. printf("BFS-fs: %s: lasti=%08lx <%s>\n",
  269. prefix, BFS_SB(s)->si_lasti, tmpbuf);
  270. free_page((unsigned long)tmpbuf);
  271. #endif
  272. }
  273. static int bfs_fill_super(struct super_block *s, void *data, int silent)
  274. {
  275. struct buffer_head *bh;
  276. struct bfs_super_block *bfs_sb;
  277. struct inode *inode;
  278. unsigned i, imap_len;
  279. struct bfs_sb_info *info;
  280. long ret = -EINVAL;
  281. info = kzalloc(sizeof(*info), GFP_KERNEL);
  282. if (!info)
  283. return -ENOMEM;
  284. s->s_fs_info = info;
  285. sb_set_blocksize(s, BFS_BSIZE);
  286. bh = sb_bread(s, 0);
  287. if(!bh)
  288. goto out;
  289. bfs_sb = (struct bfs_super_block *)bh->b_data;
  290. if (le32_to_cpu(bfs_sb->s_magic) != BFS_MAGIC) {
  291. if (!silent)
  292. printf("No BFS filesystem on %s (magic=%08x)\n",
  293. s->s_id, le32_to_cpu(bfs_sb->s_magic));
  294. goto out;
  295. }
  296. if (BFS_UNCLEAN(bfs_sb, s) && !silent)
  297. printf("%s is unclean, continuing\n", s->s_id);
  298. s->s_magic = BFS_MAGIC;
  299. info->si_sbh = bh;
  300. info->si_lasti = (le32_to_cpu(bfs_sb->s_start) - BFS_BSIZE) /
  301. sizeof(struct bfs_inode)
  302. + BFS_ROOT_INO - 1;
  303. imap_len = (info->si_lasti / 8) + 1;
  304. info->si_imap = kzalloc(imap_len, GFP_KERNEL);
  305. if (!info->si_imap)
  306. goto out;
  307. for (i = 0; i < BFS_ROOT_INO; i++)
  308. set_bit(i, info->si_imap);
  309. s->s_op = &bfs_sops;
  310. inode = bfs_iget(s, BFS_ROOT_INO);
  311. if (IS_ERR(inode)) {
  312. ret = PTR_ERR(inode);
  313. kfree(info->si_imap);
  314. goto out;
  315. }
  316. s->s_root = d_alloc_root(inode);
  317. if (!s->s_root) {
  318. iput(inode);
  319. ret = -ENOMEM;
  320. kfree(info->si_imap);
  321. goto out;
  322. }
  323. info->si_blocks = (le32_to_cpu(bfs_sb->s_end) + 1) >> BFS_BSIZE_BITS;
  324. info->si_freeb = (le32_to_cpu(bfs_sb->s_end) + 1
  325. - le32_to_cpu(bfs_sb->s_start)) >> BFS_BSIZE_BITS;
  326. info->si_freei = 0;
  327. info->si_lf_eblk = 0;
  328. bh = NULL;
  329. for (i = BFS_ROOT_INO; i <= info->si_lasti; i++) {
  330. struct bfs_inode *di;
  331. int block = (i - BFS_ROOT_INO) / BFS_INODES_PER_BLOCK + 1;
  332. int off = (i - BFS_ROOT_INO) % BFS_INODES_PER_BLOCK;
  333. unsigned long sblock, eblock;
  334. if (!off) {
  335. brelse(bh);
  336. bh = sb_bread(s, block);
  337. }
  338. if (!bh)
  339. continue;
  340. di = (struct bfs_inode *)bh->b_data + off;
  341. if (!di->i_ino) {
  342. info->si_freei++;
  343. continue;
  344. }
  345. set_bit(i, info->si_imap);
  346. info->si_freeb -= BFS_FILEBLOCKS(di);
  347. sblock = le32_to_cpu(di->i_sblock);
  348. eblock = le32_to_cpu(di->i_eblock);
  349. if (eblock > info->si_lf_eblk)
  350. info->si_lf_eblk = eblock;
  351. }
  352. brelse(bh);
  353. if (!(s->s_flags & MS_RDONLY)) {
  354. mark_buffer_dirty(info->si_sbh);
  355. s->s_dirt = 1;
  356. }
  357. dump_imap("read_super", s);
  358. return 0;
  359. out:
  360. brelse(bh);
  361. kfree(info);
  362. s->s_fs_info = NULL;
  363. return ret;
  364. }
  365. static int bfs_get_sb(struct file_system_type *fs_type,
  366. int flags, const char *dev_name, void *data, struct vfsmount *mnt)
  367. {
  368. return get_sb_bdev(fs_type, flags, dev_name, data, bfs_fill_super, mnt);
  369. }
  370. static struct file_system_type bfs_fs_type = {
  371. .owner = THIS_MODULE,
  372. .name = "bfs",
  373. .get_sb = bfs_get_sb,
  374. .kill_sb = kill_block_super,
  375. .fs_flags = FS_REQUIRES_DEV,
  376. };
  377. static int __init init_bfs_fs(void)
  378. {
  379. int err = init_inodecache();
  380. if (err)
  381. goto out1;
  382. err = register_filesystem(&bfs_fs_type);
  383. if (err)
  384. goto out;
  385. return 0;
  386. out:
  387. destroy_inodecache();
  388. out1:
  389. return err;
  390. }
  391. static void __exit exit_bfs_fs(void)
  392. {
  393. unregister_filesystem(&bfs_fs_type);
  394. destroy_inodecache();
  395. }
  396. module_init(init_bfs_fs)
  397. module_exit(exit_bfs_fs)