xfs_discard.c 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218
  1. /*
  2. * Copyright (C) 2010 Red Hat, 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_format.h"
  20. #include "xfs_log_format.h"
  21. #include "xfs_trans_resv.h"
  22. #include "xfs_sb.h"
  23. #include "xfs_mount.h"
  24. #include "xfs_quota.h"
  25. #include "xfs_inode.h"
  26. #include "xfs_btree.h"
  27. #include "xfs_alloc_btree.h"
  28. #include "xfs_alloc.h"
  29. #include "xfs_error.h"
  30. #include "xfs_extent_busy.h"
  31. #include "xfs_discard.h"
  32. #include "xfs_trace.h"
  33. #include "xfs_log.h"
  34. STATIC int
  35. xfs_trim_extents(
  36. struct xfs_mount *mp,
  37. xfs_agnumber_t agno,
  38. xfs_daddr_t start,
  39. xfs_daddr_t end,
  40. xfs_daddr_t minlen,
  41. uint64_t *blocks_trimmed)
  42. {
  43. struct block_device *bdev = mp->m_ddev_targp->bt_bdev;
  44. struct xfs_btree_cur *cur;
  45. struct xfs_buf *agbp;
  46. struct xfs_perag *pag;
  47. int error;
  48. int i;
  49. pag = xfs_perag_get(mp, agno);
  50. error = xfs_alloc_read_agf(mp, NULL, agno, 0, &agbp);
  51. if (error || !agbp)
  52. goto out_put_perag;
  53. cur = xfs_allocbt_init_cursor(mp, NULL, agbp, agno, XFS_BTNUM_CNT);
  54. /*
  55. * Force out the log. This means any transactions that might have freed
  56. * space before we took the AGF buffer lock are now on disk, and the
  57. * volatile disk cache is flushed.
  58. */
  59. xfs_log_force(mp, XFS_LOG_SYNC);
  60. /*
  61. * Look up the longest btree in the AGF and start with it.
  62. */
  63. error = xfs_alloc_lookup_ge(cur, 0,
  64. be32_to_cpu(XFS_BUF_TO_AGF(agbp)->agf_longest), &i);
  65. if (error)
  66. goto out_del_cursor;
  67. /*
  68. * Loop until we are done with all extents that are large
  69. * enough to be worth discarding.
  70. */
  71. while (i) {
  72. xfs_agblock_t fbno;
  73. xfs_extlen_t flen;
  74. xfs_daddr_t dbno;
  75. xfs_extlen_t dlen;
  76. error = xfs_alloc_get_rec(cur, &fbno, &flen, &i);
  77. if (error)
  78. goto out_del_cursor;
  79. XFS_WANT_CORRUPTED_GOTO(mp, i == 1, out_del_cursor);
  80. ASSERT(flen <= be32_to_cpu(XFS_BUF_TO_AGF(agbp)->agf_longest));
  81. /*
  82. * use daddr format for all range/len calculations as that is
  83. * the format the range/len variables are supplied in by
  84. * userspace.
  85. */
  86. dbno = XFS_AGB_TO_DADDR(mp, agno, fbno);
  87. dlen = XFS_FSB_TO_BB(mp, flen);
  88. /*
  89. * Too small? Give up.
  90. */
  91. if (dlen < minlen) {
  92. trace_xfs_discard_toosmall(mp, agno, fbno, flen);
  93. goto out_del_cursor;
  94. }
  95. /*
  96. * If the extent is entirely outside of the range we are
  97. * supposed to discard skip it. Do not bother to trim
  98. * down partially overlapping ranges for now.
  99. */
  100. if (dbno + dlen < start || dbno > end) {
  101. trace_xfs_discard_exclude(mp, agno, fbno, flen);
  102. goto next_extent;
  103. }
  104. /*
  105. * If any blocks in the range are still busy, skip the
  106. * discard and try again the next time.
  107. */
  108. if (xfs_extent_busy_search(mp, agno, fbno, flen)) {
  109. trace_xfs_discard_busy(mp, agno, fbno, flen);
  110. goto next_extent;
  111. }
  112. trace_xfs_discard_extent(mp, agno, fbno, flen);
  113. error = blkdev_issue_discard(bdev, dbno, dlen, GFP_NOFS, 0);
  114. if (error)
  115. goto out_del_cursor;
  116. *blocks_trimmed += flen;
  117. next_extent:
  118. error = xfs_btree_decrement(cur, 0, &i);
  119. if (error)
  120. goto out_del_cursor;
  121. if (fatal_signal_pending(current)) {
  122. error = -ERESTARTSYS;
  123. goto out_del_cursor;
  124. }
  125. }
  126. out_del_cursor:
  127. xfs_btree_del_cursor(cur, error ? XFS_BTREE_ERROR : XFS_BTREE_NOERROR);
  128. xfs_buf_relse(agbp);
  129. out_put_perag:
  130. xfs_perag_put(pag);
  131. return error;
  132. }
  133. /*
  134. * trim a range of the filesystem.
  135. *
  136. * Note: the parameters passed from userspace are byte ranges into the
  137. * filesystem which does not match to the format we use for filesystem block
  138. * addressing. FSB addressing is sparse (AGNO|AGBNO), while the incoming format
  139. * is a linear address range. Hence we need to use DADDR based conversions and
  140. * comparisons for determining the correct offset and regions to trim.
  141. */
  142. int
  143. xfs_ioc_trim(
  144. struct xfs_mount *mp,
  145. struct fstrim_range __user *urange)
  146. {
  147. struct request_queue *q = bdev_get_queue(mp->m_ddev_targp->bt_bdev);
  148. unsigned int granularity = q->limits.discard_granularity;
  149. struct fstrim_range range;
  150. xfs_daddr_t start, end, minlen;
  151. xfs_agnumber_t start_agno, end_agno, agno;
  152. uint64_t blocks_trimmed = 0;
  153. int error, last_error = 0;
  154. if (!capable(CAP_SYS_ADMIN))
  155. return -EPERM;
  156. if (!blk_queue_discard(q))
  157. return -EOPNOTSUPP;
  158. if (copy_from_user(&range, urange, sizeof(range)))
  159. return -EFAULT;
  160. /*
  161. * Truncating down the len isn't actually quite correct, but using
  162. * BBTOB would mean we trivially get overflows for values
  163. * of ULLONG_MAX or slightly lower. And ULLONG_MAX is the default
  164. * used by the fstrim application. In the end it really doesn't
  165. * matter as trimming blocks is an advisory interface.
  166. */
  167. if (range.start >= XFS_FSB_TO_B(mp, mp->m_sb.sb_dblocks) ||
  168. range.minlen > XFS_FSB_TO_B(mp, mp->m_ag_max_usable) ||
  169. range.len < mp->m_sb.sb_blocksize)
  170. return -EINVAL;
  171. start = BTOBB(range.start);
  172. end = start + BTOBBT(range.len) - 1;
  173. minlen = BTOBB(max_t(u64, granularity, range.minlen));
  174. if (end > XFS_FSB_TO_BB(mp, mp->m_sb.sb_dblocks) - 1)
  175. end = XFS_FSB_TO_BB(mp, mp->m_sb.sb_dblocks)- 1;
  176. start_agno = xfs_daddr_to_agno(mp, start);
  177. end_agno = xfs_daddr_to_agno(mp, end);
  178. for (agno = start_agno; agno <= end_agno; agno++) {
  179. error = xfs_trim_extents(mp, agno, start, end, minlen,
  180. &blocks_trimmed);
  181. if (error) {
  182. last_error = error;
  183. if (error == -ERESTARTSYS)
  184. break;
  185. }
  186. }
  187. if (last_error)
  188. return last_error;
  189. range.len = XFS_FSB_TO_B(mp, blocks_trimmed);
  190. if (copy_to_user(urange, &range, sizeof(range)))
  191. return -EFAULT;
  192. return 0;
  193. }