blob: 0191de8ce9cedd822ff2ec3a2191fefb37296cd2 [file] [log] [blame]
Dave Chinner0b61f8a2018-06-05 19:42:14 -07001// SPDX-License-Identifier: GPL-2.0
Christoph Hellwiga46db602011-01-07 13:02:04 +00002/*
3 * Copyright (C) 2010 Red Hat, Inc.
4 * All Rights Reserved.
Christoph Hellwiga46db602011-01-07 13:02:04 +00005 */
6#include "xfs.h"
Darrick J. Wong5467b342019-06-28 19:25:35 -07007#include "xfs_shared.h"
Dave Chinner6ca1c902013-08-12 20:49:26 +10008#include "xfs_format.h"
Dave Chinner239880e2013-10-23 10:50:10 +11009#include "xfs_log_format.h"
10#include "xfs_trans_resv.h"
Christoph Hellwiga46db602011-01-07 13:02:04 +000011#include "xfs_mount.h"
Dave Chinnera4fbe6a2013-10-23 10:51:50 +110012#include "xfs_btree.h"
13#include "xfs_alloc_btree.h"
Christoph Hellwiga46db602011-01-07 13:02:04 +000014#include "xfs_alloc.h"
Darrick J. Wong5f213dd2019-11-06 17:19:33 -080015#include "xfs_discard.h"
Christoph Hellwiga46db602011-01-07 13:02:04 +000016#include "xfs_error.h"
Dave Chinnerefc27b52012-04-29 10:39:43 +000017#include "xfs_extent_busy.h"
Christoph Hellwiga46db602011-01-07 13:02:04 +000018#include "xfs_trace.h"
Dave Chinner239880e2013-10-23 10:50:10 +110019#include "xfs_log.h"
Dave Chinner9bbafc712021-06-02 10:48:24 +100020#include "xfs_ag.h"
Christoph Hellwiga46db602011-01-07 13:02:04 +000021
22STATIC int
23xfs_trim_extents(
24 struct xfs_mount *mp,
25 xfs_agnumber_t agno,
Dave Chinnera66d6362012-03-22 05:15:12 +000026 xfs_daddr_t start,
27 xfs_daddr_t end,
28 xfs_daddr_t minlen,
Darrick J. Wongc8ce5402017-06-16 11:00:05 -070029 uint64_t *blocks_trimmed)
Christoph Hellwiga46db602011-01-07 13:02:04 +000030{
31 struct block_device *bdev = mp->m_ddev_targp->bt_bdev;
32 struct xfs_btree_cur *cur;
33 struct xfs_buf *agbp;
Christoph Hellwig9798f612020-03-10 08:57:29 -070034 struct xfs_agf *agf;
Christoph Hellwiga46db602011-01-07 13:02:04 +000035 struct xfs_perag *pag;
36 int error;
37 int i;
38
39 pag = xfs_perag_get(mp, agno);
40
Carlos Maiolino8c81dd42018-04-10 22:39:04 -070041 /*
42 * Force out the log. This means any transactions that might have freed
43 * space before we take the AGF buffer lock are now on disk, and the
44 * volatile disk cache is flushed.
45 */
46 xfs_log_force(mp, XFS_LOG_SYNC);
47
Christoph Hellwiga46db602011-01-07 13:02:04 +000048 error = xfs_alloc_read_agf(mp, NULL, agno, 0, &agbp);
Darrick J. Wong706b8c5b2020-01-23 17:01:20 -080049 if (error)
Christoph Hellwiga46db602011-01-07 13:02:04 +000050 goto out_put_perag;
Christoph Hellwig9798f612020-03-10 08:57:29 -070051 agf = agbp->b_addr;
Christoph Hellwiga46db602011-01-07 13:02:04 +000052
Dave Chinner289d38d2021-06-02 10:48:24 +100053 cur = xfs_allocbt_init_cursor(mp, NULL, agbp, pag, XFS_BTNUM_CNT);
Christoph Hellwiga46db602011-01-07 13:02:04 +000054
55 /*
Christoph Hellwiga46db602011-01-07 13:02:04 +000056 * Look up the longest btree in the AGF and start with it.
57 */
Christoph Hellwig9798f612020-03-10 08:57:29 -070058 error = xfs_alloc_lookup_ge(cur, 0, be32_to_cpu(agf->agf_longest), &i);
Christoph Hellwiga46db602011-01-07 13:02:04 +000059 if (error)
60 goto out_del_cursor;
61
62 /*
63 * Loop until we are done with all extents that are large
64 * enough to be worth discarding.
65 */
66 while (i) {
Dave Chinnera66d6362012-03-22 05:15:12 +000067 xfs_agblock_t fbno;
68 xfs_extlen_t flen;
69 xfs_daddr_t dbno;
70 xfs_extlen_t dlen;
Christoph Hellwiga46db602011-01-07 13:02:04 +000071
72 error = xfs_alloc_get_rec(cur, &fbno, &flen, &i);
73 if (error)
74 goto out_del_cursor;
Darrick J. Wongf9e03702019-11-11 12:52:18 -080075 if (XFS_IS_CORRUPT(mp, i != 1)) {
76 error = -EFSCORRUPTED;
77 goto out_del_cursor;
78 }
Christoph Hellwig9798f612020-03-10 08:57:29 -070079 ASSERT(flen <= be32_to_cpu(agf->agf_longest));
Christoph Hellwiga46db602011-01-07 13:02:04 +000080
81 /*
Dave Chinnera66d6362012-03-22 05:15:12 +000082 * 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 /*
Christoph Hellwiga46db602011-01-07 13:02:04 +000090 * Too small? Give up.
91 */
Dave Chinnera66d6362012-03-22 05:15:12 +000092 if (dlen < minlen) {
Christoph Hellwiga46db602011-01-07 13:02:04 +000093 trace_xfs_discard_toosmall(mp, agno, fbno, flen);
94 goto out_del_cursor;
95 }
96
97 /*
98 * If the extent is entirely outside of the range we are
99 * supposed to discard skip it. Do not bother to trim
100 * down partially overlapping ranges for now.
101 */
Dave Chinnera66d6362012-03-22 05:15:12 +0000102 if (dbno + dlen < start || dbno > end) {
Christoph Hellwiga46db602011-01-07 13:02:04 +0000103 trace_xfs_discard_exclude(mp, agno, fbno, flen);
104 goto next_extent;
105 }
106
107 /*
108 * If any blocks in the range are still busy, skip the
109 * discard and try again the next time.
110 */
Dave Chinner45d06622021-06-02 10:48:24 +1000111 if (xfs_extent_busy_search(mp, pag, fbno, flen)) {
Christoph Hellwiga46db602011-01-07 13:02:04 +0000112 trace_xfs_discard_busy(mp, agno, fbno, flen);
113 goto next_extent;
114 }
115
116 trace_xfs_discard_extent(mp, agno, fbno, flen);
Dave Chinner24513372014-06-25 14:58:08 +1000117 error = blkdev_issue_discard(bdev, dbno, dlen, GFP_NOFS, 0);
Christoph Hellwiga46db602011-01-07 13:02:04 +0000118 if (error)
119 goto out_del_cursor;
120 *blocks_trimmed += flen;
121
122next_extent:
123 error = xfs_btree_decrement(cur, 0, &i);
124 if (error)
125 goto out_del_cursor;
Lukas Czerner3c378192017-04-27 08:59:36 -0700126
127 if (fatal_signal_pending(current)) {
128 error = -ERESTARTSYS;
129 goto out_del_cursor;
130 }
Christoph Hellwiga46db602011-01-07 13:02:04 +0000131 }
132
133out_del_cursor:
Darrick J. Wong0b04b6b82018-07-19 12:26:31 -0700134 xfs_btree_del_cursor(cur, error);
Christoph Hellwiga46db602011-01-07 13:02:04 +0000135 xfs_buf_relse(agbp);
136out_put_perag:
137 xfs_perag_put(pag);
138 return error;
139}
140
Dave Chinnera66d6362012-03-22 05:15:12 +0000141/*
142 * trim a range of the filesystem.
143 *
144 * Note: the parameters passed from userspace are byte ranges into the
145 * filesystem which does not match to the format we use for filesystem block
146 * addressing. FSB addressing is sparse (AGNO|AGBNO), while the incoming format
147 * is a linear address range. Hence we need to use DADDR based conversions and
148 * comparisons for determining the correct offset and regions to trim.
149 */
Christoph Hellwiga46db602011-01-07 13:02:04 +0000150int
151xfs_ioc_trim(
152 struct xfs_mount *mp,
153 struct fstrim_range __user *urange)
154{
Jie Liu2f42d612013-11-20 16:08:53 +0800155 struct request_queue *q = bdev_get_queue(mp->m_ddev_targp->bt_bdev);
Christoph Hellwiga46db602011-01-07 13:02:04 +0000156 unsigned int granularity = q->limits.discard_granularity;
157 struct fstrim_range range;
Dave Chinnera66d6362012-03-22 05:15:12 +0000158 xfs_daddr_t start, end, minlen;
Christoph Hellwiga46db602011-01-07 13:02:04 +0000159 xfs_agnumber_t start_agno, end_agno, agno;
Darrick J. Wongc8ce5402017-06-16 11:00:05 -0700160 uint64_t blocks_trimmed = 0;
Christoph Hellwiga46db602011-01-07 13:02:04 +0000161 int error, last_error = 0;
162
163 if (!capable(CAP_SYS_ADMIN))
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000164 return -EPERM;
Lukas Czernerbe715142011-02-15 17:07:36 +0000165 if (!blk_queue_discard(q))
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000166 return -EOPNOTSUPP;
Darrick J. Wonged79dac2019-03-22 18:10:22 -0700167
168 /*
169 * We haven't recovered the log, so we cannot use our bnobt-guided
170 * storage zapping commands.
171 */
Dave Chinner0560f312021-08-18 18:46:52 -0700172 if (xfs_has_norecovery(mp))
Darrick J. Wonged79dac2019-03-22 18:10:22 -0700173 return -EROFS;
174
Christoph Hellwiga46db602011-01-07 13:02:04 +0000175 if (copy_from_user(&range, urange, sizeof(range)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000176 return -EFAULT;
Christoph Hellwiga46db602011-01-07 13:02:04 +0000177
Wang Shilong2bf9d262019-04-12 07:39:21 -0700178 range.minlen = max_t(u64, granularity, range.minlen);
179 minlen = BTOBB(range.minlen);
Christoph Hellwiga46db602011-01-07 13:02:04 +0000180 /*
181 * Truncating down the len isn't actually quite correct, but using
Dave Chinnera66d6362012-03-22 05:15:12 +0000182 * BBTOB would mean we trivially get overflows for values
Christoph Hellwiga46db602011-01-07 13:02:04 +0000183 * of ULLONG_MAX or slightly lower. And ULLONG_MAX is the default
184 * used by the fstrim application. In the end it really doesn't
185 * matter as trimming blocks is an advisory interface.
186 */
Tomas Raceka672e1b2012-08-14 10:35:04 +0200187 if (range.start >= XFS_FSB_TO_B(mp, mp->m_sb.sb_dblocks) ||
Darrick J. Wong52548852016-08-03 11:38:24 +1000188 range.minlen > XFS_FSB_TO_B(mp, mp->m_ag_max_usable) ||
Jie Liu2f42d612013-11-20 16:08:53 +0800189 range.len < mp->m_sb.sb_blocksize)
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000190 return -EINVAL;
Tomas Raceka672e1b2012-08-14 10:35:04 +0200191
Dave Chinnera66d6362012-03-22 05:15:12 +0000192 start = BTOBB(range.start);
193 end = start + BTOBBT(range.len) - 1;
Christoph Hellwiga46db602011-01-07 13:02:04 +0000194
Dave Chinnera66d6362012-03-22 05:15:12 +0000195 if (end > XFS_FSB_TO_BB(mp, mp->m_sb.sb_dblocks) - 1)
196 end = XFS_FSB_TO_BB(mp, mp->m_sb.sb_dblocks)- 1;
Christoph Hellwiga46db602011-01-07 13:02:04 +0000197
Dave Chinnera66d6362012-03-22 05:15:12 +0000198 start_agno = xfs_daddr_to_agno(mp, start);
199 end_agno = xfs_daddr_to_agno(mp, end);
Christoph Hellwiga46db602011-01-07 13:02:04 +0000200
201 for (agno = start_agno; agno <= end_agno; agno++) {
Dave Chinner24513372014-06-25 14:58:08 +1000202 error = xfs_trim_extents(mp, agno, start, end, minlen,
Christoph Hellwiga46db602011-01-07 13:02:04 +0000203 &blocks_trimmed);
Lukas Czerner3c378192017-04-27 08:59:36 -0700204 if (error) {
Christoph Hellwiga46db602011-01-07 13:02:04 +0000205 last_error = error;
Lukas Czerner3c378192017-04-27 08:59:36 -0700206 if (error == -ERESTARTSYS)
207 break;
208 }
Christoph Hellwiga46db602011-01-07 13:02:04 +0000209 }
210
211 if (last_error)
212 return last_error;
213
214 range.len = XFS_FSB_TO_B(mp, blocks_trimmed);
215 if (copy_to_user(urange, &range, sizeof(range)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000216 return -EFAULT;
Christoph Hellwiga46db602011-01-07 13:02:04 +0000217 return 0;
218}