xfs_inode_buf.c 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532
  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_buf_offset(bp, i * mp->m_sb.sb_inodesize);
  47. if (!dip->di_next_unlinked) {
  48. xfs_alert(mp,
  49. "Detected bogus zero next_unlinked field in inode %d buffer 0x%llx.",
  50. i, (long long)bp->b_bn);
  51. }
  52. }
  53. }
  54. #endif
  55. /*
  56. * If we are doing readahead on an inode buffer, we might be in log recovery
  57. * reading an inode allocation buffer that hasn't yet been replayed, and hence
  58. * has not had the inode cores stamped into it. Hence for readahead, the buffer
  59. * may be potentially invalid.
  60. *
  61. * If the readahead buffer is invalid, we need to mark it with an error and
  62. * clear the DONE status of the buffer so that a followup read will re-read it
  63. * from disk. We don't report the error otherwise to avoid warnings during log
  64. * recovery and we don't get unnecssary panics on debug kernels. We use EIO here
  65. * because all we want to do is say readahead failed; there is no-one to report
  66. * the error to, so this will distinguish it from a non-ra verifier failure.
  67. * Changes to this readahead error behavour also need to be reflected in
  68. * xfs_dquot_buf_readahead_verify().
  69. */
  70. static void
  71. xfs_inode_buf_verify(
  72. struct xfs_buf *bp,
  73. bool readahead)
  74. {
  75. struct xfs_mount *mp = bp->b_target->bt_mount;
  76. int i;
  77. int ni;
  78. /*
  79. * Validate the magic number and version of every inode in the buffer
  80. */
  81. ni = XFS_BB_TO_FSB(mp, bp->b_length) * mp->m_sb.sb_inopblock;
  82. for (i = 0; i < ni; i++) {
  83. int di_ok;
  84. xfs_dinode_t *dip;
  85. dip = xfs_buf_offset(bp, (i << mp->m_sb.sb_inodelog));
  86. di_ok = dip->di_magic == cpu_to_be16(XFS_DINODE_MAGIC) &&
  87. XFS_DINODE_GOOD_VERSION(dip->di_version);
  88. if (unlikely(XFS_TEST_ERROR(!di_ok, mp,
  89. XFS_ERRTAG_ITOBP_INOTOBP,
  90. XFS_RANDOM_ITOBP_INOTOBP))) {
  91. if (readahead) {
  92. bp->b_flags &= ~XBF_DONE;
  93. xfs_buf_ioerror(bp, -EIO);
  94. return;
  95. }
  96. xfs_buf_ioerror(bp, -EFSCORRUPTED);
  97. xfs_verifier_error(bp);
  98. #ifdef DEBUG
  99. xfs_alert(mp,
  100. "bad inode magic/vsn daddr %lld #%d (magic=%x)",
  101. (unsigned long long)bp->b_bn, i,
  102. be16_to_cpu(dip->di_magic));
  103. #endif
  104. }
  105. }
  106. xfs_inobp_check(mp, bp);
  107. }
  108. static void
  109. xfs_inode_buf_read_verify(
  110. struct xfs_buf *bp)
  111. {
  112. xfs_inode_buf_verify(bp, false);
  113. }
  114. static void
  115. xfs_inode_buf_readahead_verify(
  116. struct xfs_buf *bp)
  117. {
  118. xfs_inode_buf_verify(bp, true);
  119. }
  120. static void
  121. xfs_inode_buf_write_verify(
  122. struct xfs_buf *bp)
  123. {
  124. xfs_inode_buf_verify(bp, false);
  125. }
  126. const struct xfs_buf_ops xfs_inode_buf_ops = {
  127. .name = "xfs_inode",
  128. .verify_read = xfs_inode_buf_read_verify,
  129. .verify_write = xfs_inode_buf_write_verify,
  130. };
  131. const struct xfs_buf_ops xfs_inode_buf_ra_ops = {
  132. .name = "xxfs_inode_ra",
  133. .verify_read = xfs_inode_buf_readahead_verify,
  134. .verify_write = xfs_inode_buf_write_verify,
  135. };
  136. /*
  137. * This routine is called to map an inode to the buffer containing the on-disk
  138. * version of the inode. It returns a pointer to the buffer containing the
  139. * on-disk inode in the bpp parameter, and in the dipp parameter it returns a
  140. * pointer to the on-disk inode within that buffer.
  141. *
  142. * If a non-zero error is returned, then the contents of bpp and dipp are
  143. * undefined.
  144. */
  145. int
  146. xfs_imap_to_bp(
  147. struct xfs_mount *mp,
  148. struct xfs_trans *tp,
  149. struct xfs_imap *imap,
  150. struct xfs_dinode **dipp,
  151. struct xfs_buf **bpp,
  152. uint buf_flags,
  153. uint iget_flags)
  154. {
  155. struct xfs_buf *bp;
  156. int error;
  157. buf_flags |= XBF_UNMAPPED;
  158. error = xfs_trans_read_buf(mp, tp, mp->m_ddev_targp, imap->im_blkno,
  159. (int)imap->im_len, buf_flags, &bp,
  160. &xfs_inode_buf_ops);
  161. if (error) {
  162. if (error == -EAGAIN) {
  163. ASSERT(buf_flags & XBF_TRYLOCK);
  164. return error;
  165. }
  166. if (error == -EFSCORRUPTED &&
  167. (iget_flags & XFS_IGET_UNTRUSTED))
  168. return -EINVAL;
  169. xfs_warn(mp, "%s: xfs_trans_read_buf() returned error %d.",
  170. __func__, error);
  171. return error;
  172. }
  173. *bpp = bp;
  174. *dipp = xfs_buf_offset(bp, imap->im_boffset);
  175. return 0;
  176. }
  177. void
  178. xfs_inode_from_disk(
  179. struct xfs_inode *ip,
  180. struct xfs_dinode *from)
  181. {
  182. struct xfs_icdinode *to = &ip->i_d;
  183. struct inode *inode = VFS_I(ip);
  184. to->di_mode = be16_to_cpu(from->di_mode);
  185. to->di_version = from ->di_version;
  186. /*
  187. * Convert v1 inodes immediately to v2 inode format as this is the
  188. * minimum inode version format we support in the rest of the code.
  189. */
  190. if (to->di_version == 1) {
  191. set_nlink(inode, be16_to_cpu(from->di_onlink));
  192. to->di_projid_lo = 0;
  193. to->di_projid_hi = 0;
  194. to->di_version = 2;
  195. } else {
  196. set_nlink(inode, be32_to_cpu(from->di_nlink));
  197. to->di_projid_lo = be16_to_cpu(from->di_projid_lo);
  198. to->di_projid_hi = be16_to_cpu(from->di_projid_hi);
  199. }
  200. to->di_format = from->di_format;
  201. to->di_uid = be32_to_cpu(from->di_uid);
  202. to->di_gid = be32_to_cpu(from->di_gid);
  203. to->di_flushiter = be16_to_cpu(from->di_flushiter);
  204. /*
  205. * Time is signed, so need to convert to signed 32 bit before
  206. * storing in inode timestamp which may be 64 bit. Otherwise
  207. * a time before epoch is converted to a time long after epoch
  208. * on 64 bit systems.
  209. */
  210. inode->i_atime.tv_sec = (int)be32_to_cpu(from->di_atime.t_sec);
  211. inode->i_atime.tv_nsec = (int)be32_to_cpu(from->di_atime.t_nsec);
  212. inode->i_mtime.tv_sec = (int)be32_to_cpu(from->di_mtime.t_sec);
  213. inode->i_mtime.tv_nsec = (int)be32_to_cpu(from->di_mtime.t_nsec);
  214. inode->i_ctime.tv_sec = (int)be32_to_cpu(from->di_ctime.t_sec);
  215. inode->i_ctime.tv_nsec = (int)be32_to_cpu(from->di_ctime.t_nsec);
  216. inode->i_generation = be32_to_cpu(from->di_gen);
  217. to->di_size = be64_to_cpu(from->di_size);
  218. to->di_nblocks = be64_to_cpu(from->di_nblocks);
  219. to->di_extsize = be32_to_cpu(from->di_extsize);
  220. to->di_nextents = be32_to_cpu(from->di_nextents);
  221. to->di_anextents = be16_to_cpu(from->di_anextents);
  222. to->di_forkoff = from->di_forkoff;
  223. to->di_aformat = from->di_aformat;
  224. to->di_dmevmask = be32_to_cpu(from->di_dmevmask);
  225. to->di_dmstate = be16_to_cpu(from->di_dmstate);
  226. to->di_flags = be16_to_cpu(from->di_flags);
  227. if (to->di_version == 3) {
  228. inode->i_version = be64_to_cpu(from->di_changecount);
  229. to->di_crtime.t_sec = be32_to_cpu(from->di_crtime.t_sec);
  230. to->di_crtime.t_nsec = be32_to_cpu(from->di_crtime.t_nsec);
  231. to->di_flags2 = be64_to_cpu(from->di_flags2);
  232. }
  233. }
  234. void
  235. xfs_inode_to_disk(
  236. struct xfs_inode *ip,
  237. struct xfs_dinode *to,
  238. xfs_lsn_t lsn)
  239. {
  240. struct xfs_icdinode *from = &ip->i_d;
  241. struct inode *inode = VFS_I(ip);
  242. to->di_magic = cpu_to_be16(XFS_DINODE_MAGIC);
  243. to->di_onlink = 0;
  244. to->di_mode = cpu_to_be16(from->di_mode);
  245. to->di_version = from->di_version;
  246. to->di_format = from->di_format;
  247. to->di_uid = cpu_to_be32(from->di_uid);
  248. to->di_gid = cpu_to_be32(from->di_gid);
  249. to->di_projid_lo = cpu_to_be16(from->di_projid_lo);
  250. to->di_projid_hi = cpu_to_be16(from->di_projid_hi);
  251. memset(to->di_pad, 0, sizeof(to->di_pad));
  252. to->di_atime.t_sec = cpu_to_be32(inode->i_atime.tv_sec);
  253. to->di_atime.t_nsec = cpu_to_be32(inode->i_atime.tv_nsec);
  254. to->di_mtime.t_sec = cpu_to_be32(inode->i_mtime.tv_sec);
  255. to->di_mtime.t_nsec = cpu_to_be32(inode->i_mtime.tv_nsec);
  256. to->di_ctime.t_sec = cpu_to_be32(inode->i_ctime.tv_sec);
  257. to->di_ctime.t_nsec = cpu_to_be32(inode->i_ctime.tv_nsec);
  258. to->di_nlink = cpu_to_be32(inode->i_nlink);
  259. to->di_gen = cpu_to_be32(inode->i_generation);
  260. to->di_size = cpu_to_be64(from->di_size);
  261. to->di_nblocks = cpu_to_be64(from->di_nblocks);
  262. to->di_extsize = cpu_to_be32(from->di_extsize);
  263. to->di_nextents = cpu_to_be32(from->di_nextents);
  264. to->di_anextents = cpu_to_be16(from->di_anextents);
  265. to->di_forkoff = from->di_forkoff;
  266. to->di_aformat = from->di_aformat;
  267. to->di_dmevmask = cpu_to_be32(from->di_dmevmask);
  268. to->di_dmstate = cpu_to_be16(from->di_dmstate);
  269. to->di_flags = cpu_to_be16(from->di_flags);
  270. if (from->di_version == 3) {
  271. to->di_changecount = cpu_to_be64(inode->i_version);
  272. to->di_crtime.t_sec = cpu_to_be32(from->di_crtime.t_sec);
  273. to->di_crtime.t_nsec = cpu_to_be32(from->di_crtime.t_nsec);
  274. to->di_flags2 = cpu_to_be64(from->di_flags2);
  275. to->di_ino = cpu_to_be64(ip->i_ino);
  276. to->di_lsn = cpu_to_be64(lsn);
  277. memset(to->di_pad2, 0, sizeof(to->di_pad2));
  278. uuid_copy(&to->di_uuid, &ip->i_mount->m_sb.sb_meta_uuid);
  279. to->di_flushiter = 0;
  280. } else {
  281. to->di_flushiter = cpu_to_be16(from->di_flushiter);
  282. }
  283. }
  284. void
  285. xfs_log_dinode_to_disk(
  286. struct xfs_log_dinode *from,
  287. struct xfs_dinode *to)
  288. {
  289. to->di_magic = cpu_to_be16(from->di_magic);
  290. to->di_mode = cpu_to_be16(from->di_mode);
  291. to->di_version = from->di_version;
  292. to->di_format = from->di_format;
  293. to->di_onlink = 0;
  294. to->di_uid = cpu_to_be32(from->di_uid);
  295. to->di_gid = cpu_to_be32(from->di_gid);
  296. to->di_nlink = cpu_to_be32(from->di_nlink);
  297. to->di_projid_lo = cpu_to_be16(from->di_projid_lo);
  298. to->di_projid_hi = cpu_to_be16(from->di_projid_hi);
  299. memcpy(to->di_pad, from->di_pad, sizeof(to->di_pad));
  300. to->di_atime.t_sec = cpu_to_be32(from->di_atime.t_sec);
  301. to->di_atime.t_nsec = cpu_to_be32(from->di_atime.t_nsec);
  302. to->di_mtime.t_sec = cpu_to_be32(from->di_mtime.t_sec);
  303. to->di_mtime.t_nsec = cpu_to_be32(from->di_mtime.t_nsec);
  304. to->di_ctime.t_sec = cpu_to_be32(from->di_ctime.t_sec);
  305. to->di_ctime.t_nsec = cpu_to_be32(from->di_ctime.t_nsec);
  306. to->di_size = cpu_to_be64(from->di_size);
  307. to->di_nblocks = cpu_to_be64(from->di_nblocks);
  308. to->di_extsize = cpu_to_be32(from->di_extsize);
  309. to->di_nextents = cpu_to_be32(from->di_nextents);
  310. to->di_anextents = cpu_to_be16(from->di_anextents);
  311. to->di_forkoff = from->di_forkoff;
  312. to->di_aformat = from->di_aformat;
  313. to->di_dmevmask = cpu_to_be32(from->di_dmevmask);
  314. to->di_dmstate = cpu_to_be16(from->di_dmstate);
  315. to->di_flags = cpu_to_be16(from->di_flags);
  316. to->di_gen = cpu_to_be32(from->di_gen);
  317. if (from->di_version == 3) {
  318. to->di_changecount = cpu_to_be64(from->di_changecount);
  319. to->di_crtime.t_sec = cpu_to_be32(from->di_crtime.t_sec);
  320. to->di_crtime.t_nsec = cpu_to_be32(from->di_crtime.t_nsec);
  321. to->di_flags2 = cpu_to_be64(from->di_flags2);
  322. to->di_ino = cpu_to_be64(from->di_ino);
  323. to->di_lsn = cpu_to_be64(from->di_lsn);
  324. memcpy(to->di_pad2, from->di_pad2, sizeof(to->di_pad2));
  325. uuid_copy(&to->di_uuid, &from->di_uuid);
  326. to->di_flushiter = 0;
  327. } else {
  328. to->di_flushiter = cpu_to_be16(from->di_flushiter);
  329. }
  330. }
  331. static bool
  332. xfs_dinode_verify(
  333. struct xfs_mount *mp,
  334. struct xfs_inode *ip,
  335. struct xfs_dinode *dip)
  336. {
  337. if (dip->di_magic != cpu_to_be16(XFS_DINODE_MAGIC))
  338. return false;
  339. /* only version 3 or greater inodes are extensively verified here */
  340. if (dip->di_version < 3)
  341. return true;
  342. if (!xfs_sb_version_hascrc(&mp->m_sb))
  343. return false;
  344. if (!xfs_verify_cksum((char *)dip, mp->m_sb.sb_inodesize,
  345. XFS_DINODE_CRC_OFF))
  346. return false;
  347. if (be64_to_cpu(dip->di_ino) != ip->i_ino)
  348. return false;
  349. if (!uuid_equal(&dip->di_uuid, &mp->m_sb.sb_meta_uuid))
  350. return false;
  351. return true;
  352. }
  353. void
  354. xfs_dinode_calc_crc(
  355. struct xfs_mount *mp,
  356. struct xfs_dinode *dip)
  357. {
  358. __uint32_t crc;
  359. if (dip->di_version < 3)
  360. return;
  361. ASSERT(xfs_sb_version_hascrc(&mp->m_sb));
  362. crc = xfs_start_cksum((char *)dip, mp->m_sb.sb_inodesize,
  363. XFS_DINODE_CRC_OFF);
  364. dip->di_crc = xfs_end_cksum(crc);
  365. }
  366. /*
  367. * Read the disk inode attributes into the in-core inode structure.
  368. *
  369. * For version 5 superblocks, if we are initialising a new inode and we are not
  370. * utilising the XFS_MOUNT_IKEEP inode cluster mode, we can simple build the new
  371. * inode core with a random generation number. If we are keeping inodes around,
  372. * we need to read the inode cluster to get the existing generation number off
  373. * disk. Further, if we are using version 4 superblocks (i.e. v1/v2 inode
  374. * format) then log recovery is dependent on the di_flushiter field being
  375. * initialised from the current on-disk value and hence we must also read the
  376. * inode off disk.
  377. */
  378. int
  379. xfs_iread(
  380. xfs_mount_t *mp,
  381. xfs_trans_t *tp,
  382. xfs_inode_t *ip,
  383. uint iget_flags)
  384. {
  385. xfs_buf_t *bp;
  386. xfs_dinode_t *dip;
  387. int error;
  388. /*
  389. * Fill in the location information in the in-core inode.
  390. */
  391. error = xfs_imap(mp, tp, ip->i_ino, &ip->i_imap, iget_flags);
  392. if (error)
  393. return error;
  394. /* shortcut IO on inode allocation if possible */
  395. if ((iget_flags & XFS_IGET_CREATE) &&
  396. xfs_sb_version_hascrc(&mp->m_sb) &&
  397. !(mp->m_flags & XFS_MOUNT_IKEEP)) {
  398. /* initialise the on-disk inode core */
  399. memset(&ip->i_d, 0, sizeof(ip->i_d));
  400. VFS_I(ip)->i_generation = prandom_u32();
  401. if (xfs_sb_version_hascrc(&mp->m_sb))
  402. ip->i_d.di_version = 3;
  403. else
  404. ip->i_d.di_version = 2;
  405. return 0;
  406. }
  407. /*
  408. * Get pointers to the on-disk inode and the buffer containing it.
  409. */
  410. error = xfs_imap_to_bp(mp, tp, &ip->i_imap, &dip, &bp, 0, iget_flags);
  411. if (error)
  412. return error;
  413. /* even unallocated inodes are verified */
  414. if (!xfs_dinode_verify(mp, ip, dip)) {
  415. xfs_alert(mp, "%s: validation failed for inode %lld failed",
  416. __func__, ip->i_ino);
  417. XFS_CORRUPTION_ERROR(__func__, XFS_ERRLEVEL_LOW, mp, dip);
  418. error = -EFSCORRUPTED;
  419. goto out_brelse;
  420. }
  421. /*
  422. * If the on-disk inode is already linked to a directory
  423. * entry, copy all of the inode into the in-core inode.
  424. * xfs_iformat_fork() handles copying in the inode format
  425. * specific information.
  426. * Otherwise, just get the truly permanent information.
  427. */
  428. if (dip->di_mode) {
  429. xfs_inode_from_disk(ip, dip);
  430. error = xfs_iformat_fork(ip, dip);
  431. if (error) {
  432. #ifdef DEBUG
  433. xfs_alert(mp, "%s: xfs_iformat() returned error %d",
  434. __func__, error);
  435. #endif /* DEBUG */
  436. goto out_brelse;
  437. }
  438. } else {
  439. /*
  440. * Partial initialisation of the in-core inode. Just the bits
  441. * that xfs_ialloc won't overwrite or relies on being correct.
  442. */
  443. ip->i_d.di_version = dip->di_version;
  444. VFS_I(ip)->i_generation = be32_to_cpu(dip->di_gen);
  445. ip->i_d.di_flushiter = be16_to_cpu(dip->di_flushiter);
  446. /*
  447. * Make sure to pull in the mode here as well in
  448. * case the inode is released without being used.
  449. * This ensures that xfs_inactive() will see that
  450. * the inode is already free and not try to mess
  451. * with the uninitialized part of it.
  452. */
  453. ip->i_d.di_mode = 0;
  454. }
  455. ASSERT(ip->i_d.di_version >= 2);
  456. ip->i_delayed_blks = 0;
  457. /*
  458. * Mark the buffer containing the inode as something to keep
  459. * around for a while. This helps to keep recently accessed
  460. * meta-data in-core longer.
  461. */
  462. xfs_buf_set_ref(bp, XFS_INO_REF);
  463. /*
  464. * Use xfs_trans_brelse() to release the buffer containing the on-disk
  465. * inode, because it was acquired with xfs_trans_read_buf() in
  466. * xfs_imap_to_bp() above. If tp is NULL, this is just a normal
  467. * brelse(). If we're within a transaction, then xfs_trans_brelse()
  468. * will only release the buffer if it is not dirty within the
  469. * transaction. It will be OK to release the buffer in this case,
  470. * because inodes on disk are never destroyed and we will be locking the
  471. * new in-core inode before putting it in the cache where other
  472. * processes can find it. Thus we don't have to worry about the inode
  473. * being changed just because we released the buffer.
  474. */
  475. out_brelse:
  476. xfs_trans_brelse(tp, bp);
  477. return error;
  478. }