xfs_inode_buf.c 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453
  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_format.h"
  21. #include "xfs_log.h"
  22. #include "xfs_trans.h"
  23. #include "xfs_sb.h"
  24. #include "xfs_ag.h"
  25. #include "xfs_mount.h"
  26. #include "xfs_bmap_btree.h"
  27. #include "xfs_ialloc_btree.h"
  28. #include "xfs_dinode.h"
  29. #include "xfs_inode.h"
  30. #include "xfs_error.h"
  31. #include "xfs_cksum.h"
  32. #include "xfs_icache.h"
  33. #include "xfs_ialloc.h"
  34. /*
  35. * Check that none of the inode's in the buffer have a next
  36. * unlinked field of 0.
  37. */
  38. #if defined(DEBUG)
  39. void
  40. xfs_inobp_check(
  41. xfs_mount_t *mp,
  42. xfs_buf_t *bp)
  43. {
  44. int i;
  45. int j;
  46. xfs_dinode_t *dip;
  47. j = mp->m_inode_cluster_size >> mp->m_sb.sb_inodelog;
  48. for (i = 0; i < j; i++) {
  49. dip = (xfs_dinode_t *)xfs_buf_offset(bp,
  50. i * mp->m_sb.sb_inodesize);
  51. if (!dip->di_next_unlinked) {
  52. xfs_alert(mp,
  53. "Detected bogus zero next_unlinked field in incore inode buffer 0x%p.",
  54. bp);
  55. ASSERT(dip->di_next_unlinked);
  56. }
  57. }
  58. }
  59. #endif
  60. static void
  61. xfs_inode_buf_verify(
  62. struct xfs_buf *bp)
  63. {
  64. struct xfs_mount *mp = bp->b_target->bt_mount;
  65. int i;
  66. int ni;
  67. /*
  68. * Validate the magic number and version of every inode in the buffer
  69. */
  70. ni = XFS_BB_TO_FSB(mp, bp->b_length) * mp->m_sb.sb_inopblock;
  71. for (i = 0; i < ni; i++) {
  72. int di_ok;
  73. xfs_dinode_t *dip;
  74. dip = (struct xfs_dinode *)xfs_buf_offset(bp,
  75. (i << mp->m_sb.sb_inodelog));
  76. di_ok = dip->di_magic == cpu_to_be16(XFS_DINODE_MAGIC) &&
  77. XFS_DINODE_GOOD_VERSION(dip->di_version);
  78. if (unlikely(XFS_TEST_ERROR(!di_ok, mp,
  79. XFS_ERRTAG_ITOBP_INOTOBP,
  80. XFS_RANDOM_ITOBP_INOTOBP))) {
  81. xfs_buf_ioerror(bp, EFSCORRUPTED);
  82. XFS_CORRUPTION_ERROR(__func__, XFS_ERRLEVEL_HIGH,
  83. mp, dip);
  84. #ifdef DEBUG
  85. xfs_emerg(mp,
  86. "bad inode magic/vsn daddr %lld #%d (magic=%x)",
  87. (unsigned long long)bp->b_bn, i,
  88. be16_to_cpu(dip->di_magic));
  89. ASSERT(0);
  90. #endif
  91. }
  92. }
  93. xfs_inobp_check(mp, bp);
  94. }
  95. static void
  96. xfs_inode_buf_read_verify(
  97. struct xfs_buf *bp)
  98. {
  99. xfs_inode_buf_verify(bp);
  100. }
  101. static void
  102. xfs_inode_buf_write_verify(
  103. struct xfs_buf *bp)
  104. {
  105. xfs_inode_buf_verify(bp);
  106. }
  107. const struct xfs_buf_ops xfs_inode_buf_ops = {
  108. .verify_read = xfs_inode_buf_read_verify,
  109. .verify_write = xfs_inode_buf_write_verify,
  110. };
  111. /*
  112. * This routine is called to map an inode to the buffer containing the on-disk
  113. * version of the inode. It returns a pointer to the buffer containing the
  114. * on-disk inode in the bpp parameter, and in the dipp parameter it returns a
  115. * pointer to the on-disk inode within that buffer.
  116. *
  117. * If a non-zero error is returned, then the contents of bpp and dipp are
  118. * undefined.
  119. */
  120. int
  121. xfs_imap_to_bp(
  122. struct xfs_mount *mp,
  123. struct xfs_trans *tp,
  124. struct xfs_imap *imap,
  125. struct xfs_dinode **dipp,
  126. struct xfs_buf **bpp,
  127. uint buf_flags,
  128. uint iget_flags)
  129. {
  130. struct xfs_buf *bp;
  131. int error;
  132. buf_flags |= XBF_UNMAPPED;
  133. error = xfs_trans_read_buf(mp, tp, mp->m_ddev_targp, imap->im_blkno,
  134. (int)imap->im_len, buf_flags, &bp,
  135. &xfs_inode_buf_ops);
  136. if (error) {
  137. if (error == EAGAIN) {
  138. ASSERT(buf_flags & XBF_TRYLOCK);
  139. return error;
  140. }
  141. if (error == EFSCORRUPTED &&
  142. (iget_flags & XFS_IGET_UNTRUSTED))
  143. return XFS_ERROR(EINVAL);
  144. xfs_warn(mp, "%s: xfs_trans_read_buf() returned error %d.",
  145. __func__, error);
  146. return error;
  147. }
  148. *bpp = bp;
  149. *dipp = (struct xfs_dinode *)xfs_buf_offset(bp, imap->im_boffset);
  150. return 0;
  151. }
  152. STATIC void
  153. xfs_dinode_from_disk(
  154. xfs_icdinode_t *to,
  155. xfs_dinode_t *from)
  156. {
  157. to->di_magic = be16_to_cpu(from->di_magic);
  158. to->di_mode = be16_to_cpu(from->di_mode);
  159. to->di_version = from ->di_version;
  160. to->di_format = from->di_format;
  161. to->di_onlink = be16_to_cpu(from->di_onlink);
  162. to->di_uid = be32_to_cpu(from->di_uid);
  163. to->di_gid = be32_to_cpu(from->di_gid);
  164. to->di_nlink = be32_to_cpu(from->di_nlink);
  165. to->di_projid_lo = be16_to_cpu(from->di_projid_lo);
  166. to->di_projid_hi = be16_to_cpu(from->di_projid_hi);
  167. memcpy(to->di_pad, from->di_pad, sizeof(to->di_pad));
  168. to->di_flushiter = be16_to_cpu(from->di_flushiter);
  169. to->di_atime.t_sec = be32_to_cpu(from->di_atime.t_sec);
  170. to->di_atime.t_nsec = be32_to_cpu(from->di_atime.t_nsec);
  171. to->di_mtime.t_sec = be32_to_cpu(from->di_mtime.t_sec);
  172. to->di_mtime.t_nsec = be32_to_cpu(from->di_mtime.t_nsec);
  173. to->di_ctime.t_sec = be32_to_cpu(from->di_ctime.t_sec);
  174. to->di_ctime.t_nsec = be32_to_cpu(from->di_ctime.t_nsec);
  175. to->di_size = be64_to_cpu(from->di_size);
  176. to->di_nblocks = be64_to_cpu(from->di_nblocks);
  177. to->di_extsize = be32_to_cpu(from->di_extsize);
  178. to->di_nextents = be32_to_cpu(from->di_nextents);
  179. to->di_anextents = be16_to_cpu(from->di_anextents);
  180. to->di_forkoff = from->di_forkoff;
  181. to->di_aformat = from->di_aformat;
  182. to->di_dmevmask = be32_to_cpu(from->di_dmevmask);
  183. to->di_dmstate = be16_to_cpu(from->di_dmstate);
  184. to->di_flags = be16_to_cpu(from->di_flags);
  185. to->di_gen = be32_to_cpu(from->di_gen);
  186. if (to->di_version == 3) {
  187. to->di_changecount = be64_to_cpu(from->di_changecount);
  188. to->di_crtime.t_sec = be32_to_cpu(from->di_crtime.t_sec);
  189. to->di_crtime.t_nsec = be32_to_cpu(from->di_crtime.t_nsec);
  190. to->di_flags2 = be64_to_cpu(from->di_flags2);
  191. to->di_ino = be64_to_cpu(from->di_ino);
  192. to->di_lsn = be64_to_cpu(from->di_lsn);
  193. memcpy(to->di_pad2, from->di_pad2, sizeof(to->di_pad2));
  194. uuid_copy(&to->di_uuid, &from->di_uuid);
  195. }
  196. }
  197. void
  198. xfs_dinode_to_disk(
  199. xfs_dinode_t *to,
  200. xfs_icdinode_t *from)
  201. {
  202. to->di_magic = cpu_to_be16(from->di_magic);
  203. to->di_mode = cpu_to_be16(from->di_mode);
  204. to->di_version = from ->di_version;
  205. to->di_format = from->di_format;
  206. to->di_onlink = cpu_to_be16(from->di_onlink);
  207. to->di_uid = cpu_to_be32(from->di_uid);
  208. to->di_gid = cpu_to_be32(from->di_gid);
  209. to->di_nlink = cpu_to_be32(from->di_nlink);
  210. to->di_projid_lo = cpu_to_be16(from->di_projid_lo);
  211. to->di_projid_hi = cpu_to_be16(from->di_projid_hi);
  212. memcpy(to->di_pad, from->di_pad, sizeof(to->di_pad));
  213. to->di_atime.t_sec = cpu_to_be32(from->di_atime.t_sec);
  214. to->di_atime.t_nsec = cpu_to_be32(from->di_atime.t_nsec);
  215. to->di_mtime.t_sec = cpu_to_be32(from->di_mtime.t_sec);
  216. to->di_mtime.t_nsec = cpu_to_be32(from->di_mtime.t_nsec);
  217. to->di_ctime.t_sec = cpu_to_be32(from->di_ctime.t_sec);
  218. to->di_ctime.t_nsec = cpu_to_be32(from->di_ctime.t_nsec);
  219. to->di_size = cpu_to_be64(from->di_size);
  220. to->di_nblocks = cpu_to_be64(from->di_nblocks);
  221. to->di_extsize = cpu_to_be32(from->di_extsize);
  222. to->di_nextents = cpu_to_be32(from->di_nextents);
  223. to->di_anextents = cpu_to_be16(from->di_anextents);
  224. to->di_forkoff = from->di_forkoff;
  225. to->di_aformat = from->di_aformat;
  226. to->di_dmevmask = cpu_to_be32(from->di_dmevmask);
  227. to->di_dmstate = cpu_to_be16(from->di_dmstate);
  228. to->di_flags = cpu_to_be16(from->di_flags);
  229. to->di_gen = cpu_to_be32(from->di_gen);
  230. if (from->di_version == 3) {
  231. to->di_changecount = cpu_to_be64(from->di_changecount);
  232. to->di_crtime.t_sec = cpu_to_be32(from->di_crtime.t_sec);
  233. to->di_crtime.t_nsec = cpu_to_be32(from->di_crtime.t_nsec);
  234. to->di_flags2 = cpu_to_be64(from->di_flags2);
  235. to->di_ino = cpu_to_be64(from->di_ino);
  236. to->di_lsn = cpu_to_be64(from->di_lsn);
  237. memcpy(to->di_pad2, from->di_pad2, sizeof(to->di_pad2));
  238. uuid_copy(&to->di_uuid, &from->di_uuid);
  239. to->di_flushiter = 0;
  240. } else {
  241. to->di_flushiter = cpu_to_be16(from->di_flushiter);
  242. }
  243. }
  244. static bool
  245. xfs_dinode_verify(
  246. struct xfs_mount *mp,
  247. struct xfs_inode *ip,
  248. struct xfs_dinode *dip)
  249. {
  250. if (dip->di_magic != cpu_to_be16(XFS_DINODE_MAGIC))
  251. return false;
  252. /* only version 3 or greater inodes are extensively verified here */
  253. if (dip->di_version < 3)
  254. return true;
  255. if (!xfs_sb_version_hascrc(&mp->m_sb))
  256. return false;
  257. if (!xfs_verify_cksum((char *)dip, mp->m_sb.sb_inodesize,
  258. offsetof(struct xfs_dinode, di_crc)))
  259. return false;
  260. if (be64_to_cpu(dip->di_ino) != ip->i_ino)
  261. return false;
  262. if (!uuid_equal(&dip->di_uuid, &mp->m_sb.sb_uuid))
  263. return false;
  264. return true;
  265. }
  266. void
  267. xfs_dinode_calc_crc(
  268. struct xfs_mount *mp,
  269. struct xfs_dinode *dip)
  270. {
  271. __uint32_t crc;
  272. if (dip->di_version < 3)
  273. return;
  274. ASSERT(xfs_sb_version_hascrc(&mp->m_sb));
  275. crc = xfs_start_cksum((char *)dip, mp->m_sb.sb_inodesize,
  276. offsetof(struct xfs_dinode, di_crc));
  277. dip->di_crc = xfs_end_cksum(crc);
  278. }
  279. /*
  280. * Read the disk inode attributes into the in-core inode structure.
  281. *
  282. * For version 5 superblocks, if we are initialising a new inode and we are not
  283. * utilising the XFS_MOUNT_IKEEP inode cluster mode, we can simple build the new
  284. * inode core with a random generation number. If we are keeping inodes around,
  285. * we need to read the inode cluster to get the existing generation number off
  286. * disk. Further, if we are using version 4 superblocks (i.e. v1/v2 inode
  287. * format) then log recovery is dependent on the di_flushiter field being
  288. * initialised from the current on-disk value and hence we must also read the
  289. * inode off disk.
  290. */
  291. int
  292. xfs_iread(
  293. xfs_mount_t *mp,
  294. xfs_trans_t *tp,
  295. xfs_inode_t *ip,
  296. uint iget_flags)
  297. {
  298. xfs_buf_t *bp;
  299. xfs_dinode_t *dip;
  300. int error;
  301. /*
  302. * Fill in the location information in the in-core inode.
  303. */
  304. error = xfs_imap(mp, tp, ip->i_ino, &ip->i_imap, iget_flags);
  305. if (error)
  306. return error;
  307. /* shortcut IO on inode allocation if possible */
  308. if ((iget_flags & XFS_IGET_CREATE) &&
  309. xfs_sb_version_hascrc(&mp->m_sb) &&
  310. !(mp->m_flags & XFS_MOUNT_IKEEP)) {
  311. /* initialise the on-disk inode core */
  312. memset(&ip->i_d, 0, sizeof(ip->i_d));
  313. ip->i_d.di_magic = XFS_DINODE_MAGIC;
  314. ip->i_d.di_gen = prandom_u32();
  315. if (xfs_sb_version_hascrc(&mp->m_sb)) {
  316. ip->i_d.di_version = 3;
  317. ip->i_d.di_ino = ip->i_ino;
  318. uuid_copy(&ip->i_d.di_uuid, &mp->m_sb.sb_uuid);
  319. } else
  320. ip->i_d.di_version = 2;
  321. return 0;
  322. }
  323. /*
  324. * Get pointers to the on-disk inode and the buffer containing it.
  325. */
  326. error = xfs_imap_to_bp(mp, tp, &ip->i_imap, &dip, &bp, 0, iget_flags);
  327. if (error)
  328. return error;
  329. /* even unallocated inodes are verified */
  330. if (!xfs_dinode_verify(mp, ip, dip)) {
  331. xfs_alert(mp, "%s: validation failed for inode %lld failed",
  332. __func__, ip->i_ino);
  333. XFS_CORRUPTION_ERROR(__func__, XFS_ERRLEVEL_LOW, mp, dip);
  334. error = XFS_ERROR(EFSCORRUPTED);
  335. goto out_brelse;
  336. }
  337. /*
  338. * If the on-disk inode is already linked to a directory
  339. * entry, copy all of the inode into the in-core inode.
  340. * xfs_iformat_fork() handles copying in the inode format
  341. * specific information.
  342. * Otherwise, just get the truly permanent information.
  343. */
  344. if (dip->di_mode) {
  345. xfs_dinode_from_disk(&ip->i_d, dip);
  346. error = xfs_iformat_fork(ip, dip);
  347. if (error) {
  348. #ifdef DEBUG
  349. xfs_alert(mp, "%s: xfs_iformat() returned error %d",
  350. __func__, error);
  351. #endif /* DEBUG */
  352. goto out_brelse;
  353. }
  354. } else {
  355. /*
  356. * Partial initialisation of the in-core inode. Just the bits
  357. * that xfs_ialloc won't overwrite or relies on being correct.
  358. */
  359. ip->i_d.di_magic = be16_to_cpu(dip->di_magic);
  360. ip->i_d.di_version = dip->di_version;
  361. ip->i_d.di_gen = be32_to_cpu(dip->di_gen);
  362. ip->i_d.di_flushiter = be16_to_cpu(dip->di_flushiter);
  363. if (dip->di_version == 3) {
  364. ip->i_d.di_ino = be64_to_cpu(dip->di_ino);
  365. uuid_copy(&ip->i_d.di_uuid, &dip->di_uuid);
  366. }
  367. /*
  368. * Make sure to pull in the mode here as well in
  369. * case the inode is released without being used.
  370. * This ensures that xfs_inactive() will see that
  371. * the inode is already free and not try to mess
  372. * with the uninitialized part of it.
  373. */
  374. ip->i_d.di_mode = 0;
  375. }
  376. /*
  377. * The inode format changed when we moved the link count and
  378. * made it 32 bits long. If this is an old format inode,
  379. * convert it in memory to look like a new one. If it gets
  380. * flushed to disk we will convert back before flushing or
  381. * logging it. We zero out the new projid field and the old link
  382. * count field. We'll handle clearing the pad field (the remains
  383. * of the old uuid field) when we actually convert the inode to
  384. * the new format. We don't change the version number so that we
  385. * can distinguish this from a real new format inode.
  386. */
  387. if (ip->i_d.di_version == 1) {
  388. ip->i_d.di_nlink = ip->i_d.di_onlink;
  389. ip->i_d.di_onlink = 0;
  390. xfs_set_projid(ip, 0);
  391. }
  392. ip->i_delayed_blks = 0;
  393. /*
  394. * Mark the buffer containing the inode as something to keep
  395. * around for a while. This helps to keep recently accessed
  396. * meta-data in-core longer.
  397. */
  398. xfs_buf_set_ref(bp, XFS_INO_REF);
  399. /*
  400. * Use xfs_trans_brelse() to release the buffer containing the on-disk
  401. * inode, because it was acquired with xfs_trans_read_buf() in
  402. * xfs_imap_to_bp() above. If tp is NULL, this is just a normal
  403. * brelse(). If we're within a transaction, then xfs_trans_brelse()
  404. * will only release the buffer if it is not dirty within the
  405. * transaction. It will be OK to release the buffer in this case,
  406. * because inodes on disk are never destroyed and we will be locking the
  407. * new in-core inode before putting it in the cache where other
  408. * processes can find it. Thus we don't have to worry about the inode
  409. * being changed just because we released the buffer.
  410. */
  411. out_brelse:
  412. xfs_trans_brelse(tp, bp);
  413. return error;
  414. }