xfs: prohibit fstrim in norecovery mode
[linux-2.6-block.git] / fs / xfs / xfs_discard.c
CommitLineData
0b61f8a4 1// SPDX-License-Identifier: GPL-2.0
a46db608
CH
2/*
3 * Copyright (C) 2010 Red Hat, Inc.
4 * All Rights Reserved.
a46db608
CH
5 */
6#include "xfs.h"
6ca1c906 7#include "xfs_format.h"
239880ef
DC
8#include "xfs_log_format.h"
9#include "xfs_trans_resv.h"
7fd36c44 10#include "xfs_sb.h"
a46db608
CH
11#include "xfs_mount.h"
12#include "xfs_quota.h"
a46db608 13#include "xfs_inode.h"
a4fbe6ab
DC
14#include "xfs_btree.h"
15#include "xfs_alloc_btree.h"
a46db608
CH
16#include "xfs_alloc.h"
17#include "xfs_error.h"
efc27b52 18#include "xfs_extent_busy.h"
a46db608
CH
19#include "xfs_discard.h"
20#include "xfs_trace.h"
239880ef 21#include "xfs_log.h"
a46db608
CH
22
23STATIC int
24xfs_trim_extents(
25 struct xfs_mount *mp,
26 xfs_agnumber_t agno,
a66d6363
DC
27 xfs_daddr_t start,
28 xfs_daddr_t end,
29 xfs_daddr_t minlen,
c8ce540d 30 uint64_t *blocks_trimmed)
a46db608
CH
31{
32 struct block_device *bdev = mp->m_ddev_targp->bt_bdev;
33 struct xfs_btree_cur *cur;
34 struct xfs_buf *agbp;
35 struct xfs_perag *pag;
36 int error;
37 int i;
38
39 pag = xfs_perag_get(mp, agno);
40
a46db608
CH
41 /*
42 * Force out the log. This means any transactions that might have freed
8c81dd46 43 * space before we take the AGF buffer lock are now on disk, and the
a46db608
CH
44 * volatile disk cache is flushed.
45 */
46 xfs_log_force(mp, XFS_LOG_SYNC);
47
8c81dd46
CM
48 error = xfs_alloc_read_agf(mp, NULL, agno, 0, &agbp);
49 if (error || !agbp)
50 goto out_put_perag;
51
52 cur = xfs_allocbt_init_cursor(mp, NULL, agbp, agno, XFS_BTNUM_CNT);
53
a46db608
CH
54 /*
55 * Look up the longest btree in the AGF and start with it.
56 */
a66d6363 57 error = xfs_alloc_lookup_ge(cur, 0,
b1c770c2 58 be32_to_cpu(XFS_BUF_TO_AGF(agbp)->agf_longest), &i);
a46db608
CH
59 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) {
a66d6363
DC
67 xfs_agblock_t fbno;
68 xfs_extlen_t flen;
69 xfs_daddr_t dbno;
70 xfs_extlen_t dlen;
a46db608
CH
71
72 error = xfs_alloc_get_rec(cur, &fbno, &flen, &i);
73 if (error)
74 goto out_del_cursor;
c29aad41 75 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, out_del_cursor);
b1c770c2 76 ASSERT(flen <= be32_to_cpu(XFS_BUF_TO_AGF(agbp)->agf_longest));
a46db608 77
a66d6363
DC
78 /*
79 * use daddr format for all range/len calculations as that is
80 * the format the range/len variables are supplied in by
81 * userspace.
82 */
83 dbno = XFS_AGB_TO_DADDR(mp, agno, fbno);
84 dlen = XFS_FSB_TO_BB(mp, flen);
85
a46db608
CH
86 /*
87 * Too small? Give up.
88 */
a66d6363 89 if (dlen < minlen) {
a46db608
CH
90 trace_xfs_discard_toosmall(mp, agno, fbno, flen);
91 goto out_del_cursor;
92 }
93
94 /*
95 * If the extent is entirely outside of the range we are
96 * supposed to discard skip it. Do not bother to trim
97 * down partially overlapping ranges for now.
98 */
a66d6363 99 if (dbno + dlen < start || dbno > end) {
a46db608
CH
100 trace_xfs_discard_exclude(mp, agno, fbno, flen);
101 goto next_extent;
102 }
103
104 /*
105 * If any blocks in the range are still busy, skip the
106 * discard and try again the next time.
107 */
4ecbfe63 108 if (xfs_extent_busy_search(mp, agno, fbno, flen)) {
a46db608
CH
109 trace_xfs_discard_busy(mp, agno, fbno, flen);
110 goto next_extent;
111 }
112
113 trace_xfs_discard_extent(mp, agno, fbno, flen);
2451337d 114 error = blkdev_issue_discard(bdev, dbno, dlen, GFP_NOFS, 0);
a46db608
CH
115 if (error)
116 goto out_del_cursor;
117 *blocks_trimmed += flen;
118
119next_extent:
120 error = xfs_btree_decrement(cur, 0, &i);
121 if (error)
122 goto out_del_cursor;
3c378195
LC
123
124 if (fatal_signal_pending(current)) {
125 error = -ERESTARTSYS;
126 goto out_del_cursor;
127 }
a46db608
CH
128 }
129
130out_del_cursor:
0b04b6b8 131 xfs_btree_del_cursor(cur, error);
a46db608
CH
132 xfs_buf_relse(agbp);
133out_put_perag:
134 xfs_perag_put(pag);
135 return error;
136}
137
a66d6363
DC
138/*
139 * trim a range of the filesystem.
140 *
141 * Note: the parameters passed from userspace are byte ranges into the
142 * filesystem which does not match to the format we use for filesystem block
143 * addressing. FSB addressing is sparse (AGNO|AGBNO), while the incoming format
144 * is a linear address range. Hence we need to use DADDR based conversions and
145 * comparisons for determining the correct offset and regions to trim.
146 */
a46db608
CH
147int
148xfs_ioc_trim(
149 struct xfs_mount *mp,
150 struct fstrim_range __user *urange)
151{
2f42d612 152 struct request_queue *q = bdev_get_queue(mp->m_ddev_targp->bt_bdev);
a46db608
CH
153 unsigned int granularity = q->limits.discard_granularity;
154 struct fstrim_range range;
a66d6363 155 xfs_daddr_t start, end, minlen;
a46db608 156 xfs_agnumber_t start_agno, end_agno, agno;
c8ce540d 157 uint64_t blocks_trimmed = 0;
a46db608
CH
158 int error, last_error = 0;
159
160 if (!capable(CAP_SYS_ADMIN))
b474c7ae 161 return -EPERM;
be715140 162 if (!blk_queue_discard(q))
b474c7ae 163 return -EOPNOTSUPP;
ed79dac9
DW
164
165 /*
166 * We haven't recovered the log, so we cannot use our bnobt-guided
167 * storage zapping commands.
168 */
169 if (mp->m_flags & XFS_MOUNT_NORECOVERY)
170 return -EROFS;
171
a46db608 172 if (copy_from_user(&range, urange, sizeof(range)))
b474c7ae 173 return -EFAULT;
a46db608
CH
174
175 /*
176 * Truncating down the len isn't actually quite correct, but using
a66d6363 177 * BBTOB would mean we trivially get overflows for values
a46db608
CH
178 * 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 */
a672e1be 182 if (range.start >= XFS_FSB_TO_B(mp, mp->m_sb.sb_dblocks) ||
52548852 183 range.minlen > XFS_FSB_TO_B(mp, mp->m_ag_max_usable) ||
2f42d612 184 range.len < mp->m_sb.sb_blocksize)
b474c7ae 185 return -EINVAL;
a672e1be 186
a66d6363
DC
187 start = BTOBB(range.start);
188 end = start + BTOBBT(range.len) - 1;
189 minlen = BTOBB(max_t(u64, granularity, range.minlen));
a46db608 190
a66d6363
DC
191 if (end > XFS_FSB_TO_BB(mp, mp->m_sb.sb_dblocks) - 1)
192 end = XFS_FSB_TO_BB(mp, mp->m_sb.sb_dblocks)- 1;
a46db608 193
a66d6363
DC
194 start_agno = xfs_daddr_to_agno(mp, start);
195 end_agno = xfs_daddr_to_agno(mp, end);
a46db608
CH
196
197 for (agno = start_agno; agno <= end_agno; agno++) {
2451337d 198 error = xfs_trim_extents(mp, agno, start, end, minlen,
a46db608 199 &blocks_trimmed);
3c378195 200 if (error) {
a46db608 201 last_error = error;
3c378195
LC
202 if (error == -ERESTARTSYS)
203 break;
204 }
a46db608
CH
205 }
206
207 if (last_error)
208 return last_error;
209
210 range.len = XFS_FSB_TO_B(mp, blocks_trimmed);
211 if (copy_to_user(urange, &range, sizeof(range)))
b474c7ae 212 return -EFAULT;
a46db608
CH
213 return 0;
214}