xfs_symlink.c 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530
  1. // SPDX-License-Identifier: GPL-2.0
  2. /*
  3. * Copyright (c) 2000-2006 Silicon Graphics, Inc.
  4. * Copyright (c) 2012-2013 Red Hat, Inc.
  5. * All rights reserved.
  6. */
  7. #include "xfs.h"
  8. #include "xfs_shared.h"
  9. #include "xfs_fs.h"
  10. #include "xfs_format.h"
  11. #include "xfs_log_format.h"
  12. #include "xfs_trans_resv.h"
  13. #include "xfs_bit.h"
  14. #include "xfs_mount.h"
  15. #include "xfs_da_format.h"
  16. #include "xfs_da_btree.h"
  17. #include "xfs_defer.h"
  18. #include "xfs_dir2.h"
  19. #include "xfs_inode.h"
  20. #include "xfs_ialloc.h"
  21. #include "xfs_alloc.h"
  22. #include "xfs_bmap.h"
  23. #include "xfs_bmap_btree.h"
  24. #include "xfs_bmap_util.h"
  25. #include "xfs_error.h"
  26. #include "xfs_quota.h"
  27. #include "xfs_trans_space.h"
  28. #include "xfs_trace.h"
  29. #include "xfs_symlink.h"
  30. #include "xfs_trans.h"
  31. #include "xfs_log.h"
  32. /* ----- Kernel only functions below ----- */
  33. int
  34. xfs_readlink_bmap_ilocked(
  35. struct xfs_inode *ip,
  36. char *link)
  37. {
  38. struct xfs_mount *mp = ip->i_mount;
  39. struct xfs_bmbt_irec mval[XFS_SYMLINK_MAPS];
  40. struct xfs_buf *bp;
  41. xfs_daddr_t d;
  42. char *cur_chunk;
  43. int pathlen = ip->i_d.di_size;
  44. int nmaps = XFS_SYMLINK_MAPS;
  45. int byte_cnt;
  46. int n;
  47. int error = 0;
  48. int fsblocks = 0;
  49. int offset;
  50. ASSERT(xfs_isilocked(ip, XFS_ILOCK_SHARED | XFS_ILOCK_EXCL));
  51. fsblocks = xfs_symlink_blocks(mp, pathlen);
  52. error = xfs_bmapi_read(ip, 0, fsblocks, mval, &nmaps, 0);
  53. if (error)
  54. goto out;
  55. offset = 0;
  56. for (n = 0; n < nmaps; n++) {
  57. d = XFS_FSB_TO_DADDR(mp, mval[n].br_startblock);
  58. byte_cnt = XFS_FSB_TO_B(mp, mval[n].br_blockcount);
  59. bp = xfs_buf_read(mp->m_ddev_targp, d, BTOBB(byte_cnt), 0,
  60. &xfs_symlink_buf_ops);
  61. if (!bp)
  62. return -ENOMEM;
  63. error = bp->b_error;
  64. if (error) {
  65. xfs_buf_ioerror_alert(bp, __func__);
  66. xfs_buf_relse(bp);
  67. /* bad CRC means corrupted metadata */
  68. if (error == -EFSBADCRC)
  69. error = -EFSCORRUPTED;
  70. goto out;
  71. }
  72. byte_cnt = XFS_SYMLINK_BUF_SPACE(mp, byte_cnt);
  73. if (pathlen < byte_cnt)
  74. byte_cnt = pathlen;
  75. cur_chunk = bp->b_addr;
  76. if (xfs_sb_version_hascrc(&mp->m_sb)) {
  77. if (!xfs_symlink_hdr_ok(ip->i_ino, offset,
  78. byte_cnt, bp)) {
  79. error = -EFSCORRUPTED;
  80. xfs_alert(mp,
  81. "symlink header does not match required off/len/owner (0x%x/Ox%x,0x%llx)",
  82. offset, byte_cnt, ip->i_ino);
  83. xfs_buf_relse(bp);
  84. goto out;
  85. }
  86. cur_chunk += sizeof(struct xfs_dsymlink_hdr);
  87. }
  88. memcpy(link + offset, cur_chunk, byte_cnt);
  89. pathlen -= byte_cnt;
  90. offset += byte_cnt;
  91. xfs_buf_relse(bp);
  92. }
  93. ASSERT(pathlen == 0);
  94. link[ip->i_d.di_size] = '\0';
  95. error = 0;
  96. out:
  97. return error;
  98. }
  99. int
  100. xfs_readlink(
  101. struct xfs_inode *ip,
  102. char *link)
  103. {
  104. struct xfs_mount *mp = ip->i_mount;
  105. xfs_fsize_t pathlen;
  106. int error = 0;
  107. trace_xfs_readlink(ip);
  108. ASSERT(!(ip->i_df.if_flags & XFS_IFINLINE));
  109. if (XFS_FORCED_SHUTDOWN(mp))
  110. return -EIO;
  111. xfs_ilock(ip, XFS_ILOCK_SHARED);
  112. pathlen = ip->i_d.di_size;
  113. if (!pathlen)
  114. goto out;
  115. if (pathlen < 0 || pathlen > XFS_SYMLINK_MAXLEN) {
  116. xfs_alert(mp, "%s: inode (%llu) bad symlink length (%lld)",
  117. __func__, (unsigned long long) ip->i_ino,
  118. (long long) pathlen);
  119. ASSERT(0);
  120. error = -EFSCORRUPTED;
  121. goto out;
  122. }
  123. error = xfs_readlink_bmap_ilocked(ip, link);
  124. out:
  125. xfs_iunlock(ip, XFS_ILOCK_SHARED);
  126. return error;
  127. }
  128. int
  129. xfs_symlink(
  130. struct xfs_inode *dp,
  131. struct xfs_name *link_name,
  132. const char *target_path,
  133. umode_t mode,
  134. struct xfs_inode **ipp)
  135. {
  136. struct xfs_mount *mp = dp->i_mount;
  137. struct xfs_trans *tp = NULL;
  138. struct xfs_inode *ip = NULL;
  139. int error = 0;
  140. int pathlen;
  141. bool unlock_dp_on_error = false;
  142. xfs_fileoff_t first_fsb;
  143. xfs_filblks_t fs_blocks;
  144. int nmaps;
  145. struct xfs_bmbt_irec mval[XFS_SYMLINK_MAPS];
  146. xfs_daddr_t d;
  147. const char *cur_chunk;
  148. int byte_cnt;
  149. int n;
  150. xfs_buf_t *bp;
  151. prid_t prid;
  152. struct xfs_dquot *udqp = NULL;
  153. struct xfs_dquot *gdqp = NULL;
  154. struct xfs_dquot *pdqp = NULL;
  155. uint resblks;
  156. *ipp = NULL;
  157. trace_xfs_symlink(dp, link_name);
  158. if (XFS_FORCED_SHUTDOWN(mp))
  159. return -EIO;
  160. /*
  161. * Check component lengths of the target path name.
  162. */
  163. pathlen = strlen(target_path);
  164. if (pathlen >= XFS_SYMLINK_MAXLEN) /* total string too long */
  165. return -ENAMETOOLONG;
  166. ASSERT(pathlen > 0);
  167. udqp = gdqp = NULL;
  168. prid = xfs_get_initial_prid(dp);
  169. /*
  170. * Make sure that we have allocated dquot(s) on disk.
  171. */
  172. error = xfs_qm_vop_dqalloc(dp,
  173. xfs_kuid_to_uid(current_fsuid()),
  174. xfs_kgid_to_gid(current_fsgid()), prid,
  175. XFS_QMOPT_QUOTALL | XFS_QMOPT_INHERIT,
  176. &udqp, &gdqp, &pdqp);
  177. if (error)
  178. return error;
  179. /*
  180. * The symlink will fit into the inode data fork?
  181. * There can't be any attributes so we get the whole variable part.
  182. */
  183. if (pathlen <= XFS_LITINO(mp, dp->i_d.di_version))
  184. fs_blocks = 0;
  185. else
  186. fs_blocks = xfs_symlink_blocks(mp, pathlen);
  187. resblks = XFS_SYMLINK_SPACE_RES(mp, link_name->len, fs_blocks);
  188. error = xfs_trans_alloc(mp, &M_RES(mp)->tr_symlink, resblks, 0, 0, &tp);
  189. if (error)
  190. goto out_release_inode;
  191. xfs_ilock(dp, XFS_ILOCK_EXCL | XFS_ILOCK_PARENT);
  192. unlock_dp_on_error = true;
  193. /*
  194. * Check whether the directory allows new symlinks or not.
  195. */
  196. if (dp->i_d.di_flags & XFS_DIFLAG_NOSYMLINKS) {
  197. error = -EPERM;
  198. goto out_trans_cancel;
  199. }
  200. /*
  201. * Reserve disk quota : blocks and inode.
  202. */
  203. error = xfs_trans_reserve_quota(tp, mp, udqp, gdqp,
  204. pdqp, resblks, 1, 0);
  205. if (error)
  206. goto out_trans_cancel;
  207. /*
  208. * Allocate an inode for the symlink.
  209. */
  210. error = xfs_dir_ialloc(&tp, dp, S_IFLNK | (mode & ~S_IFMT), 1, 0,
  211. prid, &ip);
  212. if (error)
  213. goto out_trans_cancel;
  214. /*
  215. * Now we join the directory inode to the transaction. We do not do it
  216. * earlier because xfs_dir_ialloc might commit the previous transaction
  217. * (and release all the locks). An error from here on will result in
  218. * the transaction cancel unlocking dp so don't do it explicitly in the
  219. * error path.
  220. */
  221. xfs_trans_ijoin(tp, dp, XFS_ILOCK_EXCL);
  222. unlock_dp_on_error = false;
  223. /*
  224. * Also attach the dquot(s) to it, if applicable.
  225. */
  226. xfs_qm_vop_create_dqattach(tp, ip, udqp, gdqp, pdqp);
  227. if (resblks)
  228. resblks -= XFS_IALLOC_SPACE_RES(mp);
  229. /*
  230. * If the symlink will fit into the inode, write it inline.
  231. */
  232. if (pathlen <= XFS_IFORK_DSIZE(ip)) {
  233. xfs_init_local_fork(ip, XFS_DATA_FORK, target_path, pathlen);
  234. ip->i_d.di_size = pathlen;
  235. ip->i_d.di_format = XFS_DINODE_FMT_LOCAL;
  236. xfs_trans_log_inode(tp, ip, XFS_ILOG_DDATA | XFS_ILOG_CORE);
  237. } else {
  238. int offset;
  239. first_fsb = 0;
  240. nmaps = XFS_SYMLINK_MAPS;
  241. error = xfs_bmapi_write(tp, ip, first_fsb, fs_blocks,
  242. XFS_BMAPI_METADATA, resblks, mval, &nmaps);
  243. if (error)
  244. goto out_trans_cancel;
  245. if (resblks)
  246. resblks -= fs_blocks;
  247. ip->i_d.di_size = pathlen;
  248. xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
  249. cur_chunk = target_path;
  250. offset = 0;
  251. for (n = 0; n < nmaps; n++) {
  252. char *buf;
  253. d = XFS_FSB_TO_DADDR(mp, mval[n].br_startblock);
  254. byte_cnt = XFS_FSB_TO_B(mp, mval[n].br_blockcount);
  255. bp = xfs_trans_get_buf(tp, mp->m_ddev_targp, d,
  256. BTOBB(byte_cnt), 0);
  257. if (!bp) {
  258. error = -ENOMEM;
  259. goto out_trans_cancel;
  260. }
  261. bp->b_ops = &xfs_symlink_buf_ops;
  262. byte_cnt = XFS_SYMLINK_BUF_SPACE(mp, byte_cnt);
  263. byte_cnt = min(byte_cnt, pathlen);
  264. buf = bp->b_addr;
  265. buf += xfs_symlink_hdr_set(mp, ip->i_ino, offset,
  266. byte_cnt, bp);
  267. memcpy(buf, cur_chunk, byte_cnt);
  268. cur_chunk += byte_cnt;
  269. pathlen -= byte_cnt;
  270. offset += byte_cnt;
  271. xfs_trans_buf_set_type(tp, bp, XFS_BLFT_SYMLINK_BUF);
  272. xfs_trans_log_buf(tp, bp, 0, (buf + byte_cnt - 1) -
  273. (char *)bp->b_addr);
  274. }
  275. ASSERT(pathlen == 0);
  276. }
  277. /*
  278. * Create the directory entry for the symlink.
  279. */
  280. error = xfs_dir_createname(tp, dp, link_name, ip->i_ino, resblks);
  281. if (error)
  282. goto out_trans_cancel;
  283. xfs_trans_ichgtime(tp, dp, XFS_ICHGTIME_MOD | XFS_ICHGTIME_CHG);
  284. xfs_trans_log_inode(tp, dp, XFS_ILOG_CORE);
  285. /*
  286. * If this is a synchronous mount, make sure that the
  287. * symlink transaction goes to disk before returning to
  288. * the user.
  289. */
  290. if (mp->m_flags & (XFS_MOUNT_WSYNC|XFS_MOUNT_DIRSYNC)) {
  291. xfs_trans_set_sync(tp);
  292. }
  293. error = xfs_trans_commit(tp);
  294. if (error)
  295. goto out_release_inode;
  296. xfs_qm_dqrele(udqp);
  297. xfs_qm_dqrele(gdqp);
  298. xfs_qm_dqrele(pdqp);
  299. *ipp = ip;
  300. return 0;
  301. out_trans_cancel:
  302. xfs_trans_cancel(tp);
  303. out_release_inode:
  304. /*
  305. * Wait until after the current transaction is aborted to finish the
  306. * setup of the inode and release the inode. This prevents recursive
  307. * transactions and deadlocks from xfs_inactive.
  308. */
  309. if (ip) {
  310. xfs_finish_inode_setup(ip);
  311. xfs_irele(ip);
  312. }
  313. xfs_qm_dqrele(udqp);
  314. xfs_qm_dqrele(gdqp);
  315. xfs_qm_dqrele(pdqp);
  316. if (unlock_dp_on_error)
  317. xfs_iunlock(dp, XFS_ILOCK_EXCL);
  318. return error;
  319. }
  320. /*
  321. * Free a symlink that has blocks associated with it.
  322. *
  323. * Note: zero length symlinks are not allowed to exist. When we set the size to
  324. * zero, also change it to a regular file so that it does not get written to
  325. * disk as a zero length symlink. The inode is on the unlinked list already, so
  326. * userspace cannot find this inode anymore, so this change is not user visible
  327. * but allows us to catch corrupt zero-length symlinks in the verifiers.
  328. */
  329. STATIC int
  330. xfs_inactive_symlink_rmt(
  331. struct xfs_inode *ip)
  332. {
  333. xfs_buf_t *bp;
  334. int done;
  335. int error;
  336. int i;
  337. xfs_mount_t *mp;
  338. xfs_bmbt_irec_t mval[XFS_SYMLINK_MAPS];
  339. int nmaps;
  340. int size;
  341. xfs_trans_t *tp;
  342. mp = ip->i_mount;
  343. ASSERT(ip->i_df.if_flags & XFS_IFEXTENTS);
  344. /*
  345. * We're freeing a symlink that has some
  346. * blocks allocated to it. Free the
  347. * blocks here. We know that we've got
  348. * either 1 or 2 extents and that we can
  349. * free them all in one bunmapi call.
  350. */
  351. ASSERT(ip->i_d.di_nextents > 0 && ip->i_d.di_nextents <= 2);
  352. error = xfs_trans_alloc(mp, &M_RES(mp)->tr_itruncate, 0, 0, 0, &tp);
  353. if (error)
  354. return error;
  355. xfs_ilock(ip, XFS_ILOCK_EXCL);
  356. xfs_trans_ijoin(tp, ip, 0);
  357. /*
  358. * Lock the inode, fix the size, turn it into a regular file and join it
  359. * to the transaction. Hold it so in the normal path, we still have it
  360. * locked for the second transaction. In the error paths we need it
  361. * held so the cancel won't rele it, see below.
  362. */
  363. size = (int)ip->i_d.di_size;
  364. ip->i_d.di_size = 0;
  365. VFS_I(ip)->i_mode = (VFS_I(ip)->i_mode & ~S_IFMT) | S_IFREG;
  366. xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
  367. /*
  368. * Find the block(s) so we can inval and unmap them.
  369. */
  370. done = 0;
  371. nmaps = ARRAY_SIZE(mval);
  372. error = xfs_bmapi_read(ip, 0, xfs_symlink_blocks(mp, size),
  373. mval, &nmaps, 0);
  374. if (error)
  375. goto error_trans_cancel;
  376. /*
  377. * Invalidate the block(s). No validation is done.
  378. */
  379. for (i = 0; i < nmaps; i++) {
  380. bp = xfs_trans_get_buf(tp, mp->m_ddev_targp,
  381. XFS_FSB_TO_DADDR(mp, mval[i].br_startblock),
  382. XFS_FSB_TO_BB(mp, mval[i].br_blockcount), 0);
  383. if (!bp) {
  384. error = -ENOMEM;
  385. goto error_trans_cancel;
  386. }
  387. xfs_trans_binval(tp, bp);
  388. }
  389. /*
  390. * Unmap the dead block(s) to the dfops.
  391. */
  392. error = xfs_bunmapi(tp, ip, 0, size, 0, nmaps, &done);
  393. if (error)
  394. goto error_trans_cancel;
  395. ASSERT(done);
  396. /*
  397. * Commit the transaction. This first logs the EFI and the inode, then
  398. * rolls and commits the transaction that frees the extents.
  399. */
  400. xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
  401. error = xfs_trans_commit(tp);
  402. if (error) {
  403. ASSERT(XFS_FORCED_SHUTDOWN(mp));
  404. goto error_unlock;
  405. }
  406. /*
  407. * Remove the memory for extent descriptions (just bookkeeping).
  408. */
  409. if (ip->i_df.if_bytes)
  410. xfs_idata_realloc(ip, -ip->i_df.if_bytes, XFS_DATA_FORK);
  411. ASSERT(ip->i_df.if_bytes == 0);
  412. xfs_iunlock(ip, XFS_ILOCK_EXCL);
  413. return 0;
  414. error_trans_cancel:
  415. xfs_trans_cancel(tp);
  416. error_unlock:
  417. xfs_iunlock(ip, XFS_ILOCK_EXCL);
  418. return error;
  419. }
  420. /*
  421. * xfs_inactive_symlink - free a symlink
  422. */
  423. int
  424. xfs_inactive_symlink(
  425. struct xfs_inode *ip)
  426. {
  427. struct xfs_mount *mp = ip->i_mount;
  428. int pathlen;
  429. trace_xfs_inactive_symlink(ip);
  430. if (XFS_FORCED_SHUTDOWN(mp))
  431. return -EIO;
  432. xfs_ilock(ip, XFS_ILOCK_EXCL);
  433. pathlen = (int)ip->i_d.di_size;
  434. ASSERT(pathlen);
  435. if (pathlen <= 0 || pathlen > XFS_SYMLINK_MAXLEN) {
  436. xfs_alert(mp, "%s: inode (0x%llx) bad symlink length (%d)",
  437. __func__, (unsigned long long)ip->i_ino, pathlen);
  438. xfs_iunlock(ip, XFS_ILOCK_EXCL);
  439. ASSERT(0);
  440. return -EFSCORRUPTED;
  441. }
  442. /*
  443. * Inline fork state gets removed by xfs_difree() so we have nothing to
  444. * do here in that case.
  445. */
  446. if (ip->i_df.if_flags & XFS_IFINLINE) {
  447. xfs_iunlock(ip, XFS_ILOCK_EXCL);
  448. return 0;
  449. }
  450. xfs_iunlock(ip, XFS_ILOCK_EXCL);
  451. /* remove the remote symlink */
  452. return xfs_inactive_symlink_rmt(ip);
  453. }