xfs_inode_buf.c 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476
  1. /*
  2. * Copyright (c) 2000-2006 Silicon Graphics, Inc.
  3. * All Rights Reserved.
  4. *
  5. * This program is free software; you can redistribute it and/or
  6. * modify it under the terms of the GNU General Public License as
  7. * published by the Free Software Foundation.
  8. *
  9. * This program is distributed in the hope that it would be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. * GNU General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU General Public License
  15. * along with this program; if not, write the Free Software Foundation,
  16. * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
  17. */
  18. #include "xfs.h"
  19. #include "xfs_fs.h"
  20. #include "xfs_shared.h"
  21. #include "xfs_format.h"
  22. #include "xfs_log_format.h"
  23. #include "xfs_trans_resv.h"
  24. #include "xfs_mount.h"
  25. #include "xfs_inode.h"
  26. #include "xfs_error.h"
  27. #include "xfs_cksum.h"
  28. #include "xfs_icache.h"
  29. #include "xfs_trans.h"
  30. #include "xfs_ialloc.h"
  31. /*
  32. * Check that none of the inode's in the buffer have a next
  33. * unlinked field of 0.
  34. */
  35. #if defined(DEBUG)
  36. void
  37. xfs_inobp_check(
  38. xfs_mount_t *mp,
  39. xfs_buf_t *bp)
  40. {
  41. int i;
  42. int j;
  43. xfs_dinode_t *dip;
  44. j = mp->m_inode_cluster_size >> mp->m_sb.sb_inodelog;
  45. for (i = 0; i < j; i++) {
  46. dip = (xfs_dinode_t *)xfs_buf_offset(bp,
  47. i * mp->m_sb.sb_inodesize);
  48. if (!dip->di_next_unlinked) {
  49. xfs_alert(mp,
  50. "Detected bogus zero next_unlinked field in inode %d buffer 0x%llx.",
  51. i, (long long)bp->b_bn);
  52. }
  53. }
  54. }
  55. #endif
  56. /*
  57. * If we are doing readahead on an inode buffer, we might be in log recovery
  58. * reading an inode allocation buffer that hasn't yet been replayed, and hence
  59. * has not had the inode cores stamped into it. Hence for readahead, the buffer
  60. * may be potentially invalid.
  61. *
  62. * If the readahead buffer is invalid, we don't want to mark it with an error,
  63. * but we do want to clear the DONE status of the buffer so that a followup read
  64. * will re-read it from disk. This will ensure that we don't get an unnecessary
  65. * warnings during log recovery and we don't get unnecssary panics on debug
  66. * kernels.
  67. */
  68. static void
  69. xfs_inode_buf_verify(
  70. struct xfs_buf *bp,
  71. bool readahead)
  72. {
  73. struct xfs_mount *mp = bp->b_target->bt_mount;
  74. int i;
  75. int ni;
  76. /*
  77. * Validate the magic number and version of every inode in the buffer
  78. */
  79. ni = XFS_BB_TO_FSB(mp, bp->b_length) * mp->m_sb.sb_inopblock;
  80. for (i = 0; i < ni; i++) {
  81. int di_ok;
  82. xfs_dinode_t *dip;
  83. dip = (struct xfs_dinode *)xfs_buf_offset(bp,
  84. (i << mp->m_sb.sb_inodelog));
  85. di_ok = dip->di_magic == cpu_to_be16(XFS_DINODE_MAGIC) &&
  86. XFS_DINODE_GOOD_VERSION(dip->di_version);
  87. if (unlikely(XFS_TEST_ERROR(!di_ok, mp,
  88. XFS_ERRTAG_ITOBP_INOTOBP,
  89. XFS_RANDOM_ITOBP_INOTOBP))) {
  90. if (readahead) {
  91. bp->b_flags &= ~XBF_DONE;
  92. return;
  93. }
  94. xfs_buf_ioerror(bp, -EFSCORRUPTED);
  95. xfs_verifier_error(bp);
  96. #ifdef DEBUG
  97. xfs_alert(mp,
  98. "bad inode magic/vsn daddr %lld #%d (magic=%x)",
  99. (unsigned long long)bp->b_bn, i,
  100. be16_to_cpu(dip->di_magic));
  101. #endif
  102. }
  103. }
  104. xfs_inobp_check(mp, bp);
  105. }
  106. static void
  107. xfs_inode_buf_read_verify(
  108. struct xfs_buf *bp)
  109. {
  110. xfs_inode_buf_verify(bp, false);
  111. }
  112. static void
  113. xfs_inode_buf_readahead_verify(
  114. struct xfs_buf *bp)
  115. {
  116. xfs_inode_buf_verify(bp, true);
  117. }
  118. static void
  119. xfs_inode_buf_write_verify(
  120. struct xfs_buf *bp)
  121. {
  122. xfs_inode_buf_verify(bp, false);
  123. }
  124. const struct xfs_buf_ops xfs_inode_buf_ops = {
  125. .verify_read = xfs_inode_buf_read_verify,
  126. .verify_write = xfs_inode_buf_write_verify,
  127. };
  128. const struct xfs_buf_ops xfs_inode_buf_ra_ops = {
  129. .verify_read = xfs_inode_buf_readahead_verify,
  130. .verify_write = xfs_inode_buf_write_verify,
  131. };
  132. /*
  133. * This routine is called to map an inode to the buffer containing the on-disk
  134. * version of the inode. It returns a pointer to the buffer containing the
  135. * on-disk inode in the bpp parameter, and in the dipp parameter it returns a
  136. * pointer to the on-disk inode within that buffer.
  137. *
  138. * If a non-zero error is returned, then the contents of bpp and dipp are
  139. * undefined.
  140. */
  141. int
  142. xfs_imap_to_bp(
  143. struct xfs_mount *mp,
  144. struct xfs_trans *tp,
  145. struct xfs_imap *imap,
  146. struct xfs_dinode **dipp,
  147. struct xfs_buf **bpp,
  148. uint buf_flags,
  149. uint iget_flags)
  150. {
  151. struct xfs_buf *bp;
  152. int error;
  153. buf_flags |= XBF_UNMAPPED;
  154. error = xfs_trans_read_buf(mp, tp, mp->m_ddev_targp, imap->im_blkno,
  155. (int)imap->im_len, buf_flags, &bp,
  156. &xfs_inode_buf_ops);
  157. if (error) {
  158. if (error == -EAGAIN) {
  159. ASSERT(buf_flags & XBF_TRYLOCK);
  160. return error;
  161. }
  162. if (error == -EFSCORRUPTED &&
  163. (iget_flags & XFS_IGET_UNTRUSTED))
  164. return -EINVAL;
  165. xfs_warn(mp, "%s: xfs_trans_read_buf() returned error %d.",
  166. __func__, error);
  167. return error;
  168. }
  169. *bpp = bp;
  170. *dipp = (struct xfs_dinode *)xfs_buf_offset(bp, imap->im_boffset);
  171. return 0;
  172. }
  173. void
  174. xfs_dinode_from_disk(
  175. xfs_icdinode_t *to,
  176. xfs_dinode_t *from)
  177. {
  178. to->di_magic = be16_to_cpu(from->di_magic);
  179. to->di_mode = be16_to_cpu(from->di_mode);
  180. to->di_version = from ->di_version;
  181. to->di_format = from->di_format;
  182. to->di_onlink = be16_to_cpu(from->di_onlink);
  183. to->di_uid = be32_to_cpu(from->di_uid);
  184. to->di_gid = be32_to_cpu(from->di_gid);
  185. to->di_nlink = be32_to_cpu(from->di_nlink);
  186. to->di_projid_lo = be16_to_cpu(from->di_projid_lo);
  187. to->di_projid_hi = be16_to_cpu(from->di_projid_hi);
  188. memcpy(to->di_pad, from->di_pad, sizeof(to->di_pad));
  189. to->di_flushiter = be16_to_cpu(from->di_flushiter);
  190. to->di_atime.t_sec = be32_to_cpu(from->di_atime.t_sec);
  191. to->di_atime.t_nsec = be32_to_cpu(from->di_atime.t_nsec);
  192. to->di_mtime.t_sec = be32_to_cpu(from->di_mtime.t_sec);
  193. to->di_mtime.t_nsec = be32_to_cpu(from->di_mtime.t_nsec);
  194. to->di_ctime.t_sec = be32_to_cpu(from->di_ctime.t_sec);
  195. to->di_ctime.t_nsec = be32_to_cpu(from->di_ctime.t_nsec);
  196. to->di_size = be64_to_cpu(from->di_size);
  197. to->di_nblocks = be64_to_cpu(from->di_nblocks);
  198. to->di_extsize = be32_to_cpu(from->di_extsize);
  199. to->di_nextents = be32_to_cpu(from->di_nextents);
  200. to->di_anextents = be16_to_cpu(from->di_anextents);
  201. to->di_forkoff = from->di_forkoff;
  202. to->di_aformat = from->di_aformat;
  203. to->di_dmevmask = be32_to_cpu(from->di_dmevmask);
  204. to->di_dmstate = be16_to_cpu(from->di_dmstate);
  205. to->di_flags = be16_to_cpu(from->di_flags);
  206. to->di_gen = be32_to_cpu(from->di_gen);
  207. if (to->di_version == 3) {
  208. to->di_changecount = be64_to_cpu(from->di_changecount);
  209. to->di_crtime.t_sec = be32_to_cpu(from->di_crtime.t_sec);
  210. to->di_crtime.t_nsec = be32_to_cpu(from->di_crtime.t_nsec);
  211. to->di_flags2 = be64_to_cpu(from->di_flags2);
  212. to->di_ino = be64_to_cpu(from->di_ino);
  213. to->di_lsn = be64_to_cpu(from->di_lsn);
  214. memcpy(to->di_pad2, from->di_pad2, sizeof(to->di_pad2));
  215. uuid_copy(&to->di_uuid, &from->di_uuid);
  216. }
  217. }
  218. void
  219. xfs_dinode_to_disk(
  220. xfs_dinode_t *to,
  221. xfs_icdinode_t *from)
  222. {
  223. to->di_magic = cpu_to_be16(from->di_magic);
  224. to->di_mode = cpu_to_be16(from->di_mode);
  225. to->di_version = from ->di_version;
  226. to->di_format = from->di_format;
  227. to->di_onlink = cpu_to_be16(from->di_onlink);
  228. to->di_uid = cpu_to_be32(from->di_uid);
  229. to->di_gid = cpu_to_be32(from->di_gid);
  230. to->di_nlink = cpu_to_be32(from->di_nlink);
  231. to->di_projid_lo = cpu_to_be16(from->di_projid_lo);
  232. to->di_projid_hi = cpu_to_be16(from->di_projid_hi);
  233. memcpy(to->di_pad, from->di_pad, sizeof(to->di_pad));
  234. to->di_atime.t_sec = cpu_to_be32(from->di_atime.t_sec);
  235. to->di_atime.t_nsec = cpu_to_be32(from->di_atime.t_nsec);
  236. to->di_mtime.t_sec = cpu_to_be32(from->di_mtime.t_sec);
  237. to->di_mtime.t_nsec = cpu_to_be32(from->di_mtime.t_nsec);
  238. to->di_ctime.t_sec = cpu_to_be32(from->di_ctime.t_sec);
  239. to->di_ctime.t_nsec = cpu_to_be32(from->di_ctime.t_nsec);
  240. to->di_size = cpu_to_be64(from->di_size);
  241. to->di_nblocks = cpu_to_be64(from->di_nblocks);
  242. to->di_extsize = cpu_to_be32(from->di_extsize);
  243. to->di_nextents = cpu_to_be32(from->di_nextents);
  244. to->di_anextents = cpu_to_be16(from->di_anextents);
  245. to->di_forkoff = from->di_forkoff;
  246. to->di_aformat = from->di_aformat;
  247. to->di_dmevmask = cpu_to_be32(from->di_dmevmask);
  248. to->di_dmstate = cpu_to_be16(from->di_dmstate);
  249. to->di_flags = cpu_to_be16(from->di_flags);
  250. to->di_gen = cpu_to_be32(from->di_gen);
  251. if (from->di_version == 3) {
  252. to->di_changecount = cpu_to_be64(from->di_changecount);
  253. to->di_crtime.t_sec = cpu_to_be32(from->di_crtime.t_sec);
  254. to->di_crtime.t_nsec = cpu_to_be32(from->di_crtime.t_nsec);
  255. to->di_flags2 = cpu_to_be64(from->di_flags2);
  256. to->di_ino = cpu_to_be64(from->di_ino);
  257. to->di_lsn = cpu_to_be64(from->di_lsn);
  258. memcpy(to->di_pad2, from->di_pad2, sizeof(to->di_pad2));
  259. uuid_copy(&to->di_uuid, &from->di_uuid);
  260. to->di_flushiter = 0;
  261. } else {
  262. to->di_flushiter = cpu_to_be16(from->di_flushiter);
  263. }
  264. }
  265. static bool
  266. xfs_dinode_verify(
  267. struct xfs_mount *mp,
  268. struct xfs_inode *ip,
  269. struct xfs_dinode *dip)
  270. {
  271. if (dip->di_magic != cpu_to_be16(XFS_DINODE_MAGIC))
  272. return false;
  273. /* only version 3 or greater inodes are extensively verified here */
  274. if (dip->di_version < 3)
  275. return true;
  276. if (!xfs_sb_version_hascrc(&mp->m_sb))
  277. return false;
  278. if (!xfs_verify_cksum((char *)dip, mp->m_sb.sb_inodesize,
  279. XFS_DINODE_CRC_OFF))
  280. return false;
  281. if (be64_to_cpu(dip->di_ino) != ip->i_ino)
  282. return false;
  283. if (!uuid_equal(&dip->di_uuid, &mp->m_sb.sb_uuid))
  284. return false;
  285. return true;
  286. }
  287. void
  288. xfs_dinode_calc_crc(
  289. struct xfs_mount *mp,
  290. struct xfs_dinode *dip)
  291. {
  292. __uint32_t crc;
  293. if (dip->di_version < 3)
  294. return;
  295. ASSERT(xfs_sb_version_hascrc(&mp->m_sb));
  296. crc = xfs_start_cksum((char *)dip, mp->m_sb.sb_inodesize,
  297. XFS_DINODE_CRC_OFF);
  298. dip->di_crc = xfs_end_cksum(crc);
  299. }
  300. /*
  301. * Read the disk inode attributes into the in-core inode structure.
  302. *
  303. * For version 5 superblocks, if we are initialising a new inode and we are not
  304. * utilising the XFS_MOUNT_IKEEP inode cluster mode, we can simple build the new
  305. * inode core with a random generation number. If we are keeping inodes around,
  306. * we need to read the inode cluster to get the existing generation number off
  307. * disk. Further, if we are using version 4 superblocks (i.e. v1/v2 inode
  308. * format) then log recovery is dependent on the di_flushiter field being
  309. * initialised from the current on-disk value and hence we must also read the
  310. * inode off disk.
  311. */
  312. int
  313. xfs_iread(
  314. xfs_mount_t *mp,
  315. xfs_trans_t *tp,
  316. xfs_inode_t *ip,
  317. uint iget_flags)
  318. {
  319. xfs_buf_t *bp;
  320. xfs_dinode_t *dip;
  321. int error;
  322. /*
  323. * Fill in the location information in the in-core inode.
  324. */
  325. error = xfs_imap(mp, tp, ip->i_ino, &ip->i_imap, iget_flags);
  326. if (error)
  327. return error;
  328. /* shortcut IO on inode allocation if possible */
  329. if ((iget_flags & XFS_IGET_CREATE) &&
  330. xfs_sb_version_hascrc(&mp->m_sb) &&
  331. !(mp->m_flags & XFS_MOUNT_IKEEP)) {
  332. /* initialise the on-disk inode core */
  333. memset(&ip->i_d, 0, sizeof(ip->i_d));
  334. ip->i_d.di_magic = XFS_DINODE_MAGIC;
  335. ip->i_d.di_gen = prandom_u32();
  336. if (xfs_sb_version_hascrc(&mp->m_sb)) {
  337. ip->i_d.di_version = 3;
  338. ip->i_d.di_ino = ip->i_ino;
  339. uuid_copy(&ip->i_d.di_uuid, &mp->m_sb.sb_uuid);
  340. } else
  341. ip->i_d.di_version = 2;
  342. return 0;
  343. }
  344. /*
  345. * Get pointers to the on-disk inode and the buffer containing it.
  346. */
  347. error = xfs_imap_to_bp(mp, tp, &ip->i_imap, &dip, &bp, 0, iget_flags);
  348. if (error)
  349. return error;
  350. /* even unallocated inodes are verified */
  351. if (!xfs_dinode_verify(mp, ip, dip)) {
  352. xfs_alert(mp, "%s: validation failed for inode %lld failed",
  353. __func__, ip->i_ino);
  354. XFS_CORRUPTION_ERROR(__func__, XFS_ERRLEVEL_LOW, mp, dip);
  355. error = -EFSCORRUPTED;
  356. goto out_brelse;
  357. }
  358. /*
  359. * If the on-disk inode is already linked to a directory
  360. * entry, copy all of the inode into the in-core inode.
  361. * xfs_iformat_fork() handles copying in the inode format
  362. * specific information.
  363. * Otherwise, just get the truly permanent information.
  364. */
  365. if (dip->di_mode) {
  366. xfs_dinode_from_disk(&ip->i_d, dip);
  367. error = xfs_iformat_fork(ip, dip);
  368. if (error) {
  369. #ifdef DEBUG
  370. xfs_alert(mp, "%s: xfs_iformat() returned error %d",
  371. __func__, error);
  372. #endif /* DEBUG */
  373. goto out_brelse;
  374. }
  375. } else {
  376. /*
  377. * Partial initialisation of the in-core inode. Just the bits
  378. * that xfs_ialloc won't overwrite or relies on being correct.
  379. */
  380. ip->i_d.di_magic = be16_to_cpu(dip->di_magic);
  381. ip->i_d.di_version = dip->di_version;
  382. ip->i_d.di_gen = be32_to_cpu(dip->di_gen);
  383. ip->i_d.di_flushiter = be16_to_cpu(dip->di_flushiter);
  384. if (dip->di_version == 3) {
  385. ip->i_d.di_ino = be64_to_cpu(dip->di_ino);
  386. uuid_copy(&ip->i_d.di_uuid, &dip->di_uuid);
  387. }
  388. /*
  389. * Make sure to pull in the mode here as well in
  390. * case the inode is released without being used.
  391. * This ensures that xfs_inactive() will see that
  392. * the inode is already free and not try to mess
  393. * with the uninitialized part of it.
  394. */
  395. ip->i_d.di_mode = 0;
  396. }
  397. /*
  398. * Automatically convert version 1 inode formats in memory to version 2
  399. * inode format. If the inode is modified, it will get logged and
  400. * rewritten as a version 2 inode. We can do this because we set the
  401. * superblock feature bit for v2 inodes unconditionally during mount
  402. * and it means the reast of the code can assume the inode version is 2
  403. * or higher.
  404. */
  405. if (ip->i_d.di_version == 1) {
  406. ip->i_d.di_version = 2;
  407. memset(&(ip->i_d.di_pad[0]), 0, sizeof(ip->i_d.di_pad));
  408. ip->i_d.di_nlink = ip->i_d.di_onlink;
  409. ip->i_d.di_onlink = 0;
  410. xfs_set_projid(ip, 0);
  411. }
  412. ip->i_delayed_blks = 0;
  413. /*
  414. * Mark the buffer containing the inode as something to keep
  415. * around for a while. This helps to keep recently accessed
  416. * meta-data in-core longer.
  417. */
  418. xfs_buf_set_ref(bp, XFS_INO_REF);
  419. /*
  420. * Use xfs_trans_brelse() to release the buffer containing the on-disk
  421. * inode, because it was acquired with xfs_trans_read_buf() in
  422. * xfs_imap_to_bp() above. If tp is NULL, this is just a normal
  423. * brelse(). If we're within a transaction, then xfs_trans_brelse()
  424. * will only release the buffer if it is not dirty within the
  425. * transaction. It will be OK to release the buffer in this case,
  426. * because inodes on disk are never destroyed and we will be locking the
  427. * new in-core inode before putting it in the cache where other
  428. * processes can find it. Thus we don't have to worry about the inode
  429. * being changed just because we released the buffer.
  430. */
  431. out_brelse:
  432. xfs_trans_brelse(tp, bp);
  433. return error;
  434. }