blob: 8ec7aab89044019c846f0082be199bf08f1bbd48 [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"
Dave Chinner7fd36c42013-08-12 20:49:32 +100011#include "xfs_sb.h"
Christoph Hellwiga46db602011-01-07 13:02:04 +000012#include "xfs_mount.h"
Dave Chinnera4fbe6a2013-10-23 10:51:50 +110013#include "xfs_btree.h"
14#include "xfs_alloc_btree.h"
Christoph Hellwiga46db602011-01-07 13:02:04 +000015#include "xfs_alloc.h"
16#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"
Christoph Hellwiga46db602011-01-07 13:02:04 +000020
21STATIC int
22xfs_trim_extents(
23 struct xfs_mount *mp,
24 xfs_agnumber_t agno,
Dave Chinnera66d6362012-03-22 05:15:12 +000025 xfs_daddr_t start,
26 xfs_daddr_t end,
27 xfs_daddr_t minlen,
Darrick J. Wongc8ce5402017-06-16 11:00:05 -070028 uint64_t *blocks_trimmed)
Christoph Hellwiga46db602011-01-07 13:02:04 +000029{
30 struct block_device *bdev = mp->m_ddev_targp->bt_bdev;
31 struct xfs_btree_cur *cur;
32 struct xfs_buf *agbp;
33 struct xfs_perag *pag;
34 int error;
35 int i;
36
37 pag = xfs_perag_get(mp, agno);
38
Carlos Maiolino8c81dd42018-04-10 22:39:04 -070039 /*
40 * Force out the log. This means any transactions that might have freed
41 * space before we take the AGF buffer lock are now on disk, and the
42 * volatile disk cache is flushed.
43 */
44 xfs_log_force(mp, XFS_LOG_SYNC);
45
Christoph Hellwiga46db602011-01-07 13:02:04 +000046 error = xfs_alloc_read_agf(mp, NULL, agno, 0, &agbp);
47 if (error || !agbp)
48 goto out_put_perag;
49
50 cur = xfs_allocbt_init_cursor(mp, NULL, agbp, agno, XFS_BTNUM_CNT);
51
52 /*
Christoph Hellwiga46db602011-01-07 13:02:04 +000053 * Look up the longest btree in the AGF and start with it.
54 */
Dave Chinnera66d6362012-03-22 05:15:12 +000055 error = xfs_alloc_lookup_ge(cur, 0,
Dave Chinnerb1c770c2011-12-21 00:07:42 +000056 be32_to_cpu(XFS_BUF_TO_AGF(agbp)->agf_longest), &i);
Christoph Hellwiga46db602011-01-07 13:02:04 +000057 if (error)
58 goto out_del_cursor;
59
60 /*
61 * Loop until we are done with all extents that are large
62 * enough to be worth discarding.
63 */
64 while (i) {
Dave Chinnera66d6362012-03-22 05:15:12 +000065 xfs_agblock_t fbno;
66 xfs_extlen_t flen;
67 xfs_daddr_t dbno;
68 xfs_extlen_t dlen;
Christoph Hellwiga46db602011-01-07 13:02:04 +000069
70 error = xfs_alloc_get_rec(cur, &fbno, &flen, &i);
71 if (error)
72 goto out_del_cursor;
Eric Sandeenc29aad42015-02-23 22:39:08 +110073 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, out_del_cursor);
Dave Chinnerb1c770c2011-12-21 00:07:42 +000074 ASSERT(flen <= be32_to_cpu(XFS_BUF_TO_AGF(agbp)->agf_longest));
Christoph Hellwiga46db602011-01-07 13:02:04 +000075
76 /*
Dave Chinnera66d6362012-03-22 05:15:12 +000077 * use daddr format for all range/len calculations as that is
78 * the format the range/len variables are supplied in by
79 * userspace.
80 */
81 dbno = XFS_AGB_TO_DADDR(mp, agno, fbno);
82 dlen = XFS_FSB_TO_BB(mp, flen);
83
84 /*
Christoph Hellwiga46db602011-01-07 13:02:04 +000085 * Too small? Give up.
86 */
Dave Chinnera66d6362012-03-22 05:15:12 +000087 if (dlen < minlen) {
Christoph Hellwiga46db602011-01-07 13:02:04 +000088 trace_xfs_discard_toosmall(mp, agno, fbno, flen);
89 goto out_del_cursor;
90 }
91
92 /*
93 * If the extent is entirely outside of the range we are
94 * supposed to discard skip it. Do not bother to trim
95 * down partially overlapping ranges for now.
96 */
Dave Chinnera66d6362012-03-22 05:15:12 +000097 if (dbno + dlen < start || dbno > end) {
Christoph Hellwiga46db602011-01-07 13:02:04 +000098 trace_xfs_discard_exclude(mp, agno, fbno, flen);
99 goto next_extent;
100 }
101
102 /*
103 * If any blocks in the range are still busy, skip the
104 * discard and try again the next time.
105 */
Dave Chinner4ecbfe62012-04-29 10:41:10 +0000106 if (xfs_extent_busy_search(mp, agno, fbno, flen)) {
Christoph Hellwiga46db602011-01-07 13:02:04 +0000107 trace_xfs_discard_busy(mp, agno, fbno, flen);
108 goto next_extent;
109 }
110
111 trace_xfs_discard_extent(mp, agno, fbno, flen);
Dave Chinner24513372014-06-25 14:58:08 +1000112 error = blkdev_issue_discard(bdev, dbno, dlen, GFP_NOFS, 0);
Christoph Hellwiga46db602011-01-07 13:02:04 +0000113 if (error)
114 goto out_del_cursor;
115 *blocks_trimmed += flen;
116
117next_extent:
118 error = xfs_btree_decrement(cur, 0, &i);
119 if (error)
120 goto out_del_cursor;
Lukas Czerner3c378192017-04-27 08:59:36 -0700121
122 if (fatal_signal_pending(current)) {
123 error = -ERESTARTSYS;
124 goto out_del_cursor;
125 }
Christoph Hellwiga46db602011-01-07 13:02:04 +0000126 }
127
128out_del_cursor:
Darrick J. Wong0b04b6b82018-07-19 12:26:31 -0700129 xfs_btree_del_cursor(cur, error);
Christoph Hellwiga46db602011-01-07 13:02:04 +0000130 xfs_buf_relse(agbp);
131out_put_perag:
132 xfs_perag_put(pag);
133 return error;
134}
135
Dave Chinnera66d6362012-03-22 05:15:12 +0000136/*
137 * trim a range of the filesystem.
138 *
139 * Note: the parameters passed from userspace are byte ranges into the
140 * filesystem which does not match to the format we use for filesystem block
141 * addressing. FSB addressing is sparse (AGNO|AGBNO), while the incoming format
142 * is a linear address range. Hence we need to use DADDR based conversions and
143 * comparisons for determining the correct offset and regions to trim.
144 */
Christoph Hellwiga46db602011-01-07 13:02:04 +0000145int
146xfs_ioc_trim(
147 struct xfs_mount *mp,
148 struct fstrim_range __user *urange)
149{
Jie Liu2f42d612013-11-20 16:08:53 +0800150 struct request_queue *q = bdev_get_queue(mp->m_ddev_targp->bt_bdev);
Christoph Hellwiga46db602011-01-07 13:02:04 +0000151 unsigned int granularity = q->limits.discard_granularity;
152 struct fstrim_range range;
Dave Chinnera66d6362012-03-22 05:15:12 +0000153 xfs_daddr_t start, end, minlen;
Christoph Hellwiga46db602011-01-07 13:02:04 +0000154 xfs_agnumber_t start_agno, end_agno, agno;
Darrick J. Wongc8ce5402017-06-16 11:00:05 -0700155 uint64_t blocks_trimmed = 0;
Christoph Hellwiga46db602011-01-07 13:02:04 +0000156 int error, last_error = 0;
157
158 if (!capable(CAP_SYS_ADMIN))
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000159 return -EPERM;
Lukas Czernerbe715142011-02-15 17:07:36 +0000160 if (!blk_queue_discard(q))
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000161 return -EOPNOTSUPP;
Darrick J. Wonged79dac2019-03-22 18:10:22 -0700162
163 /*
164 * We haven't recovered the log, so we cannot use our bnobt-guided
165 * storage zapping commands.
166 */
167 if (mp->m_flags & XFS_MOUNT_NORECOVERY)
168 return -EROFS;
169
Christoph Hellwiga46db602011-01-07 13:02:04 +0000170 if (copy_from_user(&range, urange, sizeof(range)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000171 return -EFAULT;
Christoph Hellwiga46db602011-01-07 13:02:04 +0000172
Wang Shilong2bf9d262019-04-12 07:39:21 -0700173 range.minlen = max_t(u64, granularity, range.minlen);
174 minlen = BTOBB(range.minlen);
Christoph Hellwiga46db602011-01-07 13:02:04 +0000175 /*
176 * Truncating down the len isn't actually quite correct, but using
Dave Chinnera66d6362012-03-22 05:15:12 +0000177 * BBTOB would mean we trivially get overflows for values
Christoph Hellwiga46db602011-01-07 13:02:04 +0000178 * of ULLONG_MAX or slightly lower. And ULLONG_MAX is the default
179 * used by the fstrim application. In the end it really doesn't
180 * matter as trimming blocks is an advisory interface.
181 */
Tomas Raceka672e1b2012-08-14 10:35:04 +0200182 if (range.start >= XFS_FSB_TO_B(mp, mp->m_sb.sb_dblocks) ||
Darrick J. Wong52548852016-08-03 11:38:24 +1000183 range.minlen > XFS_FSB_TO_B(mp, mp->m_ag_max_usable) ||
Jie Liu2f42d612013-11-20 16:08:53 +0800184 range.len < mp->m_sb.sb_blocksize)
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000185 return -EINVAL;
Tomas Raceka672e1b2012-08-14 10:35:04 +0200186
Dave Chinnera66d6362012-03-22 05:15:12 +0000187 start = BTOBB(range.start);
188 end = start + BTOBBT(range.len) - 1;
Christoph Hellwiga46db602011-01-07 13:02:04 +0000189
Dave Chinnera66d6362012-03-22 05:15:12 +0000190 if (end > XFS_FSB_TO_BB(mp, mp->m_sb.sb_dblocks) - 1)
191 end = XFS_FSB_TO_BB(mp, mp->m_sb.sb_dblocks)- 1;
Christoph Hellwiga46db602011-01-07 13:02:04 +0000192
Dave Chinnera66d6362012-03-22 05:15:12 +0000193 start_agno = xfs_daddr_to_agno(mp, start);
194 end_agno = xfs_daddr_to_agno(mp, end);
Christoph Hellwiga46db602011-01-07 13:02:04 +0000195
196 for (agno = start_agno; agno <= end_agno; agno++) {
Dave Chinner24513372014-06-25 14:58:08 +1000197 error = xfs_trim_extents(mp, agno, start, end, minlen,
Christoph Hellwiga46db602011-01-07 13:02:04 +0000198 &blocks_trimmed);
Lukas Czerner3c378192017-04-27 08:59:36 -0700199 if (error) {
Christoph Hellwiga46db602011-01-07 13:02:04 +0000200 last_error = error;
Lukas Czerner3c378192017-04-27 08:59:36 -0700201 if (error == -ERESTARTSYS)
202 break;
203 }
Christoph Hellwiga46db602011-01-07 13:02:04 +0000204 }
205
206 if (last_error)
207 return last_error;
208
209 range.len = XFS_FSB_TO_B(mp, blocks_trimmed);
210 if (copy_to_user(urange, &range, sizeof(range)))
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000211 return -EFAULT;
Christoph Hellwiga46db602011-01-07 13:02:04 +0000212 return 0;
213}