inode.c 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423
  1. /*
  2. * Copyright (C) International Business Machines Corp., 2000-2004
  3. * Portions Copyright (C) Christoph Hellwig, 2001-2002
  4. *
  5. * This program is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License as published by
  7. * the Free Software Foundation; either version 2 of the License, or
  8. * (at your option) any later version.
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See
  13. * the GNU General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License
  16. * along with this program; if not, write to the Free Software
  17. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  18. */
  19. #include <linux/fs.h>
  20. #include <linux/mpage.h>
  21. #include <linux/buffer_head.h>
  22. #include <linux/pagemap.h>
  23. #include <linux/quotaops.h>
  24. #include <linux/writeback.h>
  25. #include <linux/aio.h>
  26. #include "jfs_incore.h"
  27. #include "jfs_inode.h"
  28. #include "jfs_filsys.h"
  29. #include "jfs_imap.h"
  30. #include "jfs_extent.h"
  31. #include "jfs_unicode.h"
  32. #include "jfs_debug.h"
  33. struct inode *jfs_iget(struct super_block *sb, unsigned long ino)
  34. {
  35. struct inode *inode;
  36. int ret;
  37. inode = iget_locked(sb, ino);
  38. if (!inode)
  39. return ERR_PTR(-ENOMEM);
  40. if (!(inode->i_state & I_NEW))
  41. return inode;
  42. ret = diRead(inode);
  43. if (ret < 0) {
  44. iget_failed(inode);
  45. return ERR_PTR(ret);
  46. }
  47. if (S_ISREG(inode->i_mode)) {
  48. inode->i_op = &jfs_file_inode_operations;
  49. inode->i_fop = &jfs_file_operations;
  50. inode->i_mapping->a_ops = &jfs_aops;
  51. } else if (S_ISDIR(inode->i_mode)) {
  52. inode->i_op = &jfs_dir_inode_operations;
  53. inode->i_fop = &jfs_dir_operations;
  54. } else if (S_ISLNK(inode->i_mode)) {
  55. if (inode->i_size >= IDATASIZE) {
  56. inode->i_op = &page_symlink_inode_operations;
  57. inode->i_mapping->a_ops = &jfs_aops;
  58. } else {
  59. inode->i_op = &jfs_fast_symlink_inode_operations;
  60. /*
  61. * The inline data should be null-terminated, but
  62. * don't let on-disk corruption crash the kernel
  63. */
  64. JFS_IP(inode)->i_inline[inode->i_size] = '\0';
  65. }
  66. } else {
  67. inode->i_op = &jfs_file_inode_operations;
  68. init_special_inode(inode, inode->i_mode, inode->i_rdev);
  69. }
  70. unlock_new_inode(inode);
  71. return inode;
  72. }
  73. /*
  74. * Workhorse of both fsync & write_inode
  75. */
  76. int jfs_commit_inode(struct inode *inode, int wait)
  77. {
  78. int rc = 0;
  79. tid_t tid;
  80. static int noisy = 5;
  81. jfs_info("In jfs_commit_inode, inode = 0x%p", inode);
  82. /*
  83. * Don't commit if inode has been committed since last being
  84. * marked dirty, or if it has been deleted.
  85. */
  86. if (inode->i_nlink == 0 || !test_cflag(COMMIT_Dirty, inode))
  87. return 0;
  88. if (isReadOnly(inode)) {
  89. /* kernel allows writes to devices on read-only
  90. * partitions and may think inode is dirty
  91. */
  92. if (!special_file(inode->i_mode) && noisy) {
  93. jfs_err("jfs_commit_inode(0x%p) called on "
  94. "read-only volume", inode);
  95. jfs_err("Is remount racy?");
  96. noisy--;
  97. }
  98. return 0;
  99. }
  100. tid = txBegin(inode->i_sb, COMMIT_INODE);
  101. mutex_lock(&JFS_IP(inode)->commit_mutex);
  102. /*
  103. * Retest inode state after taking commit_mutex
  104. */
  105. if (inode->i_nlink && test_cflag(COMMIT_Dirty, inode))
  106. rc = txCommit(tid, 1, &inode, wait ? COMMIT_SYNC : 0);
  107. txEnd(tid);
  108. mutex_unlock(&JFS_IP(inode)->commit_mutex);
  109. return rc;
  110. }
  111. int jfs_write_inode(struct inode *inode, struct writeback_control *wbc)
  112. {
  113. int wait = wbc->sync_mode == WB_SYNC_ALL;
  114. if (inode->i_nlink == 0)
  115. return 0;
  116. /*
  117. * If COMMIT_DIRTY is not set, the inode isn't really dirty.
  118. * It has been committed since the last change, but was still
  119. * on the dirty inode list.
  120. */
  121. if (!test_cflag(COMMIT_Dirty, inode)) {
  122. /* Make sure committed changes hit the disk */
  123. jfs_flush_journal(JFS_SBI(inode->i_sb)->log, wait);
  124. return 0;
  125. }
  126. if (jfs_commit_inode(inode, wait)) {
  127. jfs_err("jfs_write_inode: jfs_commit_inode failed!");
  128. return -EIO;
  129. } else
  130. return 0;
  131. }
  132. void jfs_evict_inode(struct inode *inode)
  133. {
  134. jfs_info("In jfs_evict_inode, inode = 0x%p", inode);
  135. if (!inode->i_nlink && !is_bad_inode(inode)) {
  136. dquot_initialize(inode);
  137. if (JFS_IP(inode)->fileset == FILESYSTEM_I) {
  138. truncate_inode_pages(&inode->i_data, 0);
  139. if (test_cflag(COMMIT_Freewmap, inode))
  140. jfs_free_zero_link(inode);
  141. diFree(inode);
  142. /*
  143. * Free the inode from the quota allocation.
  144. */
  145. dquot_initialize(inode);
  146. dquot_free_inode(inode);
  147. }
  148. } else {
  149. truncate_inode_pages(&inode->i_data, 0);
  150. }
  151. clear_inode(inode);
  152. dquot_drop(inode);
  153. }
  154. void jfs_dirty_inode(struct inode *inode, int flags)
  155. {
  156. static int noisy = 5;
  157. if (isReadOnly(inode)) {
  158. if (!special_file(inode->i_mode) && noisy) {
  159. /* kernel allows writes to devices on read-only
  160. * partitions and may try to mark inode dirty
  161. */
  162. jfs_err("jfs_dirty_inode called on read-only volume");
  163. jfs_err("Is remount racy?");
  164. noisy--;
  165. }
  166. return;
  167. }
  168. set_cflag(COMMIT_Dirty, inode);
  169. }
  170. int jfs_get_block(struct inode *ip, sector_t lblock,
  171. struct buffer_head *bh_result, int create)
  172. {
  173. s64 lblock64 = lblock;
  174. int rc = 0;
  175. xad_t xad;
  176. s64 xaddr;
  177. int xflag;
  178. s32 xlen = bh_result->b_size >> ip->i_blkbits;
  179. /*
  180. * Take appropriate lock on inode
  181. */
  182. if (create)
  183. IWRITE_LOCK(ip, RDWRLOCK_NORMAL);
  184. else
  185. IREAD_LOCK(ip, RDWRLOCK_NORMAL);
  186. if (((lblock64 << ip->i_sb->s_blocksize_bits) < ip->i_size) &&
  187. (!xtLookup(ip, lblock64, xlen, &xflag, &xaddr, &xlen, 0)) &&
  188. xaddr) {
  189. if (xflag & XAD_NOTRECORDED) {
  190. if (!create)
  191. /*
  192. * Allocated but not recorded, read treats
  193. * this as a hole
  194. */
  195. goto unlock;
  196. #ifdef _JFS_4K
  197. XADoffset(&xad, lblock64);
  198. XADlength(&xad, xlen);
  199. XADaddress(&xad, xaddr);
  200. #else /* _JFS_4K */
  201. /*
  202. * As long as block size = 4K, this isn't a problem.
  203. * We should mark the whole page not ABNR, but how
  204. * will we know to mark the other blocks BH_New?
  205. */
  206. BUG();
  207. #endif /* _JFS_4K */
  208. rc = extRecord(ip, &xad);
  209. if (rc)
  210. goto unlock;
  211. set_buffer_new(bh_result);
  212. }
  213. map_bh(bh_result, ip->i_sb, xaddr);
  214. bh_result->b_size = xlen << ip->i_blkbits;
  215. goto unlock;
  216. }
  217. if (!create)
  218. goto unlock;
  219. /*
  220. * Allocate a new block
  221. */
  222. #ifdef _JFS_4K
  223. if ((rc = extHint(ip, lblock64 << ip->i_sb->s_blocksize_bits, &xad)))
  224. goto unlock;
  225. rc = extAlloc(ip, xlen, lblock64, &xad, false);
  226. if (rc)
  227. goto unlock;
  228. set_buffer_new(bh_result);
  229. map_bh(bh_result, ip->i_sb, addressXAD(&xad));
  230. bh_result->b_size = lengthXAD(&xad) << ip->i_blkbits;
  231. #else /* _JFS_4K */
  232. /*
  233. * We need to do whatever it takes to keep all but the last buffers
  234. * in 4K pages - see jfs_write.c
  235. */
  236. BUG();
  237. #endif /* _JFS_4K */
  238. unlock:
  239. /*
  240. * Release lock on inode
  241. */
  242. if (create)
  243. IWRITE_UNLOCK(ip);
  244. else
  245. IREAD_UNLOCK(ip);
  246. return rc;
  247. }
  248. static int jfs_writepage(struct page *page, struct writeback_control *wbc)
  249. {
  250. return block_write_full_page(page, jfs_get_block, wbc);
  251. }
  252. static int jfs_writepages(struct address_space *mapping,
  253. struct writeback_control *wbc)
  254. {
  255. return mpage_writepages(mapping, wbc, jfs_get_block);
  256. }
  257. static int jfs_readpage(struct file *file, struct page *page)
  258. {
  259. return mpage_readpage(page, jfs_get_block);
  260. }
  261. static int jfs_readpages(struct file *file, struct address_space *mapping,
  262. struct list_head *pages, unsigned nr_pages)
  263. {
  264. return mpage_readpages(mapping, pages, nr_pages, jfs_get_block);
  265. }
  266. static void jfs_write_failed(struct address_space *mapping, loff_t to)
  267. {
  268. struct inode *inode = mapping->host;
  269. if (to > inode->i_size) {
  270. truncate_pagecache(inode, to, inode->i_size);
  271. jfs_truncate(inode);
  272. }
  273. }
  274. static int jfs_write_begin(struct file *file, struct address_space *mapping,
  275. loff_t pos, unsigned len, unsigned flags,
  276. struct page **pagep, void **fsdata)
  277. {
  278. int ret;
  279. ret = nobh_write_begin(mapping, pos, len, flags, pagep, fsdata,
  280. jfs_get_block);
  281. if (unlikely(ret))
  282. jfs_write_failed(mapping, pos + len);
  283. return ret;
  284. }
  285. static sector_t jfs_bmap(struct address_space *mapping, sector_t block)
  286. {
  287. return generic_block_bmap(mapping, block, jfs_get_block);
  288. }
  289. static ssize_t jfs_direct_IO(int rw, struct kiocb *iocb,
  290. const struct iovec *iov, loff_t offset, unsigned long nr_segs)
  291. {
  292. struct file *file = iocb->ki_filp;
  293. struct address_space *mapping = file->f_mapping;
  294. struct inode *inode = file->f_mapping->host;
  295. ssize_t ret;
  296. ret = blockdev_direct_IO(rw, iocb, inode, iov, offset, nr_segs,
  297. jfs_get_block);
  298. /*
  299. * In case of error extending write may have instantiated a few
  300. * blocks outside i_size. Trim these off again.
  301. */
  302. if (unlikely((rw & WRITE) && ret < 0)) {
  303. loff_t isize = i_size_read(inode);
  304. loff_t end = offset + iov_length(iov, nr_segs);
  305. if (end > isize)
  306. jfs_write_failed(mapping, end);
  307. }
  308. return ret;
  309. }
  310. const struct address_space_operations jfs_aops = {
  311. .readpage = jfs_readpage,
  312. .readpages = jfs_readpages,
  313. .writepage = jfs_writepage,
  314. .writepages = jfs_writepages,
  315. .write_begin = jfs_write_begin,
  316. .write_end = nobh_write_end,
  317. .bmap = jfs_bmap,
  318. .direct_IO = jfs_direct_IO,
  319. };
  320. /*
  321. * Guts of jfs_truncate. Called with locks already held. Can be called
  322. * with directory for truncating directory index table.
  323. */
  324. void jfs_truncate_nolock(struct inode *ip, loff_t length)
  325. {
  326. loff_t newsize;
  327. tid_t tid;
  328. ASSERT(length >= 0);
  329. if (test_cflag(COMMIT_Nolink, ip)) {
  330. xtTruncate(0, ip, length, COMMIT_WMAP);
  331. return;
  332. }
  333. do {
  334. tid = txBegin(ip->i_sb, 0);
  335. /*
  336. * The commit_mutex cannot be taken before txBegin.
  337. * txBegin may block and there is a chance the inode
  338. * could be marked dirty and need to be committed
  339. * before txBegin unblocks
  340. */
  341. mutex_lock(&JFS_IP(ip)->commit_mutex);
  342. newsize = xtTruncate(tid, ip, length,
  343. COMMIT_TRUNCATE | COMMIT_PWMAP);
  344. if (newsize < 0) {
  345. txEnd(tid);
  346. mutex_unlock(&JFS_IP(ip)->commit_mutex);
  347. break;
  348. }
  349. ip->i_mtime = ip->i_ctime = CURRENT_TIME;
  350. mark_inode_dirty(ip);
  351. txCommit(tid, 1, &ip, 0);
  352. txEnd(tid);
  353. mutex_unlock(&JFS_IP(ip)->commit_mutex);
  354. } while (newsize > length); /* Truncate isn't always atomic */
  355. }
  356. void jfs_truncate(struct inode *ip)
  357. {
  358. jfs_info("jfs_truncate: size = 0x%lx", (ulong) ip->i_size);
  359. nobh_truncate_page(ip->i_mapping, ip->i_size, jfs_get_block);
  360. IWRITE_LOCK(ip, RDWRLOCK_NORMAL);
  361. jfs_truncate_nolock(ip, ip->i_size);
  362. IWRITE_UNLOCK(ip);
  363. }