blob: bfad669e6b2f8ea550fb582c5335682a047dfc3d [file] [log] [blame]
Dave Chinner0b61f8a2018-06-05 19:42:14 -07001// SPDX-License-Identifier: GPL-2.0
Dave Chinnerfde22272013-08-12 20:49:39 +10002/*
3 * Copyright (c) 2000-2005 Silicon Graphics, Inc.
4 * Copyright (c) 2013 Red Hat, Inc.
5 * All Rights Reserved.
Dave Chinnerfde22272013-08-12 20:49:39 +10006 */
7#include "xfs.h"
8#include "xfs_fs.h"
Dave Chinner70a98832013-10-23 10:36:05 +11009#include "xfs_shared.h"
Dave Chinner239880e2013-10-23 10:50:10 +110010#include "xfs_format.h"
11#include "xfs_log_format.h"
12#include "xfs_trans_resv.h"
Dave Chinnerfde22272013-08-12 20:49:39 +100013#include "xfs_bit.h"
Dave Chinnerfde22272013-08-12 20:49:39 +100014#include "xfs_mount.h"
Dave Chinner57062782013-10-15 09:17:51 +110015#include "xfs_da_format.h"
Dave Chinnerfde22272013-08-12 20:49:39 +100016#include "xfs_da_btree.h"
Dave Chinnerfde22272013-08-12 20:49:39 +100017#include "xfs_inode.h"
Dave Chinnera4fbe6a2013-10-23 10:51:50 +110018#include "xfs_attr_remote.h"
Dave Chinner239880e2013-10-23 10:50:10 +110019#include "xfs_trans.h"
Dave Chinnerfde22272013-08-12 20:49:39 +100020#include "xfs_bmap.h"
21#include "xfs_attr.h"
22#include "xfs_attr_leaf.h"
Dave Chinnerfde22272013-08-12 20:49:39 +100023#include "xfs_quota.h"
Dave Chinner4bceb182013-10-29 22:11:51 +110024#include "xfs_dir2.h"
Darrick J. Wonga5155b82019-11-02 09:40:53 -070025#include "xfs_error.h"
Dave Chinnerfde22272013-08-12 20:49:39 +100026
27/*
Darrick J. Wonge8db2aa2020-01-07 16:11:45 -080028 * Invalidate any incore buffers associated with this remote attribute value
29 * extent. We never log remote attribute value buffers, which means that they
30 * won't be attached to a transaction and are therefore safe to mark stale.
31 * The actual bunmapi will be taken care of later.
Dave Chinnerfde22272013-08-12 20:49:39 +100032 */
33STATIC int
Darrick J. Wonge8db2aa2020-01-07 16:11:45 -080034xfs_attr3_rmt_stale(
Dave Chinnerfde22272013-08-12 20:49:39 +100035 struct xfs_inode *dp,
36 xfs_dablk_t blkno,
37 int blkcnt)
38{
39 struct xfs_bmbt_irec map;
Dave Chinnerfde22272013-08-12 20:49:39 +100040 int nmap;
41 int error;
42
43 /*
44 * Roll through the "value", invalidating the attribute value's
45 * blocks.
46 */
Darrick J. Wong0bb9d152020-01-14 14:31:49 -080047 while (blkcnt > 0) {
Dave Chinnerfde22272013-08-12 20:49:39 +100048 /*
49 * Try to remember where we decided to put the value.
50 */
51 nmap = 1;
Darrick J. Wong0bb9d152020-01-14 14:31:49 -080052 error = xfs_bmapi_read(dp, (xfs_fileoff_t)blkno, blkcnt,
Dave Chinnerfde22272013-08-12 20:49:39 +100053 &map, &nmap, XFS_BMAPI_ATTRFORK);
Darrick J. Wonge8db2aa2020-01-07 16:11:45 -080054 if (error)
Eric Sandeend99831f2014-06-22 15:03:54 +100055 return error;
Darrick J. Wonge8db2aa2020-01-07 16:11:45 -080056 if (XFS_IS_CORRUPT(dp->i_mount, nmap != 1))
57 return -EFSCORRUPTED;
Dave Chinnerfde22272013-08-12 20:49:39 +100058
59 /*
Darrick J. Wonge8db2aa2020-01-07 16:11:45 -080060 * Mark any incore buffers for the remote value as stale. We
61 * never log remote attr value buffers, so the buffer should be
62 * easy to kill.
Dave Chinnerfde22272013-08-12 20:49:39 +100063 */
Darrick J. Wonge8db2aa2020-01-07 16:11:45 -080064 error = xfs_attr_rmtval_stale(dp, &map, 0);
65 if (error)
66 return error;
Dave Chinnerfde22272013-08-12 20:49:39 +100067
Darrick J. Wong0bb9d152020-01-14 14:31:49 -080068 blkno += map.br_blockcount;
69 blkcnt -= map.br_blockcount;
Dave Chinnerfde22272013-08-12 20:49:39 +100070 }
71
Eric Sandeend99831f2014-06-22 15:03:54 +100072 return 0;
Dave Chinnerfde22272013-08-12 20:49:39 +100073}
74
75/*
76 * Invalidate all of the "remote" value regions pointed to by a particular
77 * leaf block.
78 * Note that we must release the lock on the buffer so that we are not
79 * caught holding something that the logging code wants to flush to disk.
80 */
81STATIC int
82xfs_attr3_leaf_inactive(
Darrick J. Wong0bb9d152020-01-14 14:31:49 -080083 struct xfs_trans **trans,
84 struct xfs_inode *dp,
85 struct xfs_buf *bp)
Dave Chinnerfde22272013-08-12 20:49:39 +100086{
Darrick J. Wong0bb9d152020-01-14 14:31:49 -080087 struct xfs_attr3_icleaf_hdr ichdr;
88 struct xfs_mount *mp = bp->b_mount;
89 struct xfs_attr_leafblock *leaf = bp->b_addr;
90 struct xfs_attr_leaf_entry *entry;
Dave Chinnerfde22272013-08-12 20:49:39 +100091 struct xfs_attr_leaf_name_remote *name_rmt;
Darrick J. Wong54027a42020-01-23 07:54:09 -080092 int error = 0;
Darrick J. Wong0bb9d152020-01-14 14:31:49 -080093 int i;
Dave Chinnerfde22272013-08-12 20:49:39 +100094
Brian Foster2f661242015-04-13 11:26:02 +100095 xfs_attr3_leaf_hdr_from_disk(mp->m_attr_geo, &ichdr, leaf);
Dave Chinnerfde22272013-08-12 20:49:39 +100096
97 /*
Darrick J. Wong0bb9d152020-01-14 14:31:49 -080098 * Find the remote value extents for this leaf and invalidate their
99 * incore buffers.
Dave Chinnerfde22272013-08-12 20:49:39 +1000100 */
Dave Chinnerfde22272013-08-12 20:49:39 +1000101 entry = xfs_attr3_leaf_entryp(leaf);
102 for (i = 0; i < ichdr.count; entry++, i++) {
Darrick J. Wong0bb9d152020-01-14 14:31:49 -0800103 int blkcnt;
104
105 if (!entry->nameidx || (entry->flags & XFS_ATTR_LOCAL))
106 continue;
107
108 name_rmt = xfs_attr3_leaf_name_remote(leaf, i);
109 if (!name_rmt->valueblk)
110 continue;
111
112 blkcnt = xfs_attr3_rmt_blocks(dp->i_mount,
113 be32_to_cpu(name_rmt->valuelen));
114 error = xfs_attr3_rmt_stale(dp,
115 be32_to_cpu(name_rmt->valueblk), blkcnt);
116 if (error)
117 goto err;
Dave Chinnerfde22272013-08-12 20:49:39 +1000118 }
119
Darrick J. Wong0bb9d152020-01-14 14:31:49 -0800120 xfs_trans_brelse(*trans, bp);
121err:
Dave Chinnerfde22272013-08-12 20:49:39 +1000122 return error;
123}
124
125/*
126 * Recurse (gasp!) through the attribute nodes until we find leaves.
127 * We're doing a depth-first traversal in order to invalidate everything.
128 */
129STATIC int
130xfs_attr3_node_inactive(
Christoph Hellwig51908ca2019-11-08 14:57:48 -0800131 struct xfs_trans **trans,
132 struct xfs_inode *dp,
133 struct xfs_buf *bp,
134 int level)
Dave Chinnerfde22272013-08-12 20:49:39 +1000135{
Christoph Hellwig2911edb2019-11-20 09:46:05 -0800136 struct xfs_mount *mp = dp->i_mount;
Christoph Hellwig51908ca2019-11-08 14:57:48 -0800137 struct xfs_da_blkinfo *info;
138 xfs_dablk_t child_fsb;
139 xfs_daddr_t parent_blkno, child_blkno;
140 struct xfs_buf *child_bp;
Dave Chinnerfde22272013-08-12 20:49:39 +1000141 struct xfs_da3_icnode_hdr ichdr;
Christoph Hellwig51908ca2019-11-08 14:57:48 -0800142 int error, i;
Dave Chinnerfde22272013-08-12 20:49:39 +1000143
144 /*
145 * Since this code is recursive (gasp!) we must protect ourselves.
146 */
147 if (level > XFS_DA_NODE_MAXDEPTH) {
Darrick J. Wong8d57c212020-03-11 10:37:54 -0700148 xfs_buf_mark_corrupt(bp);
Darrick J. Wong496b9bc2020-03-11 10:37:53 -0700149 xfs_trans_brelse(*trans, bp); /* no locks for later trans */
Darrick J. Wongc2414ad2019-10-28 16:12:34 -0700150 return -EFSCORRUPTED;
Dave Chinnerfde22272013-08-12 20:49:39 +1000151 }
152
Christoph Hellwig51908ca2019-11-08 14:57:48 -0800153 xfs_da3_node_hdr_from_disk(dp->i_mount, &ichdr, bp->b_addr);
Dave Chinnerfde22272013-08-12 20:49:39 +1000154 parent_blkno = bp->b_bn;
155 if (!ichdr.count) {
156 xfs_trans_brelse(*trans, bp);
157 return 0;
158 }
Christoph Hellwig51908ca2019-11-08 14:57:48 -0800159 child_fsb = be32_to_cpu(ichdr.btree[0].before);
Dave Chinnerfde22272013-08-12 20:49:39 +1000160 xfs_trans_brelse(*trans, bp); /* no locks for later trans */
161
162 /*
163 * If this is the node level just above the leaves, simply loop
164 * over the leaves removing all of them. If this is higher up
165 * in the tree, recurse downward.
166 */
167 for (i = 0; i < ichdr.count; i++) {
168 /*
169 * Read the subsidiary block to see what we have to work with.
170 * Don't do this in a transaction. This is a depth-first
171 * traversal of the tree so we may deal with many blocks
172 * before we come back to this one.
173 */
Christoph Hellwig02c57f02019-11-20 09:46:04 -0800174 error = xfs_da3_node_read(*trans, dp, child_fsb, &child_bp,
Brian Fostera53efbd2017-10-17 14:16:28 -0700175 XFS_ATTR_FORK);
Dave Chinnerfde22272013-08-12 20:49:39 +1000176 if (error)
Eric Sandeend99831f2014-06-22 15:03:54 +1000177 return error;
Dave Chinnerfde22272013-08-12 20:49:39 +1000178
Brian Fostera53efbd2017-10-17 14:16:28 -0700179 /* save for re-read later */
180 child_blkno = XFS_BUF_ADDR(child_bp);
Dave Chinnerfde22272013-08-12 20:49:39 +1000181
Brian Fostera53efbd2017-10-17 14:16:28 -0700182 /*
183 * Invalidate the subtree, however we have to.
184 */
185 info = child_bp->b_addr;
186 switch (info->magic) {
187 case cpu_to_be16(XFS_DA_NODE_MAGIC):
188 case cpu_to_be16(XFS_DA3_NODE_MAGIC):
189 error = xfs_attr3_node_inactive(trans, dp, child_bp,
190 level + 1);
191 break;
192 case cpu_to_be16(XFS_ATTR_LEAF_MAGIC):
193 case cpu_to_be16(XFS_ATTR3_LEAF_MAGIC):
194 error = xfs_attr3_leaf_inactive(trans, dp, child_bp);
195 break;
196 default:
Darrick J. Wong8d57c212020-03-11 10:37:54 -0700197 xfs_buf_mark_corrupt(child_bp);
Brian Fostera53efbd2017-10-17 14:16:28 -0700198 xfs_trans_brelse(*trans, child_bp);
Darrick J. Wonga5155b82019-11-02 09:40:53 -0700199 error = -EFSCORRUPTED;
Brian Fostera53efbd2017-10-17 14:16:28 -0700200 break;
Dave Chinnerfde22272013-08-12 20:49:39 +1000201 }
Brian Fostera53efbd2017-10-17 14:16:28 -0700202 if (error)
203 return error;
204
205 /*
206 * Remove the subsidiary block from the cache and from the log.
207 */
Darrick J. Wongce924642020-01-23 17:01:18 -0800208 error = xfs_trans_get_buf(*trans, mp->m_ddev_targp,
Christoph Hellwig2911edb2019-11-20 09:46:05 -0800209 child_blkno,
Darrick J. Wongce924642020-01-23 17:01:18 -0800210 XFS_FSB_TO_BB(mp, mp->m_attr_geo->fsbcount), 0,
211 &child_bp);
212 if (error)
213 return error;
Christoph Hellwig2911edb2019-11-20 09:46:05 -0800214 error = bp->b_error;
215 if (error) {
216 xfs_trans_brelse(*trans, child_bp);
Brian Fostera53efbd2017-10-17 14:16:28 -0700217 return error;
Christoph Hellwig2911edb2019-11-20 09:46:05 -0800218 }
Brian Fostera53efbd2017-10-17 14:16:28 -0700219 xfs_trans_binval(*trans, child_bp);
Dave Chinnerfde22272013-08-12 20:49:39 +1000220
221 /*
222 * If we're not done, re-read the parent to get the next
223 * child block number.
224 */
225 if (i + 1 < ichdr.count) {
Christoph Hellwig51908ca2019-11-08 14:57:48 -0800226 struct xfs_da3_icnode_hdr phdr;
227
Christoph Hellwig02c57f02019-11-20 09:46:04 -0800228 error = xfs_da3_node_read_mapped(*trans, dp,
229 parent_blkno, &bp, XFS_ATTR_FORK);
Dave Chinnerfde22272013-08-12 20:49:39 +1000230 if (error)
231 return error;
Christoph Hellwig51908ca2019-11-08 14:57:48 -0800232 xfs_da3_node_hdr_from_disk(dp->i_mount, &phdr,
233 bp->b_addr);
234 child_fsb = be32_to_cpu(phdr.btree[i + 1].before);
Dave Chinnerfde22272013-08-12 20:49:39 +1000235 xfs_trans_brelse(*trans, bp);
236 }
237 /*
238 * Atomically commit the whole invalidate stuff.
239 */
Christoph Hellwig411350d2017-08-28 10:21:03 -0700240 error = xfs_trans_roll_inode(trans, dp);
Dave Chinnerfde22272013-08-12 20:49:39 +1000241 if (error)
242 return error;
243 }
244
245 return 0;
246}
247
248/*
249 * Indiscriminately delete the entire attribute fork
250 *
251 * Recurse (gasp!) through the attribute nodes until we find leaves.
252 * We're doing a depth-first traversal in order to invalidate everything.
253 */
Eric Sandeen0d5a75e2016-06-01 17:38:15 +1000254static int
Dave Chinnerfde22272013-08-12 20:49:39 +1000255xfs_attr3_root_inactive(
256 struct xfs_trans **trans,
257 struct xfs_inode *dp)
258{
Christoph Hellwig2911edb2019-11-20 09:46:05 -0800259 struct xfs_mount *mp = dp->i_mount;
Dave Chinnerfde22272013-08-12 20:49:39 +1000260 struct xfs_da_blkinfo *info;
261 struct xfs_buf *bp;
262 xfs_daddr_t blkno;
263 int error;
264
265 /*
266 * Read block 0 to see what we have to work with.
267 * We only get here if we have extents, since we remove
268 * the extents in reverse order the extent containing
269 * block 0 must still be there.
270 */
Christoph Hellwig02c57f02019-11-20 09:46:04 -0800271 error = xfs_da3_node_read(*trans, dp, 0, &bp, XFS_ATTR_FORK);
Dave Chinnerfde22272013-08-12 20:49:39 +1000272 if (error)
273 return error;
274 blkno = bp->b_bn;
275
276 /*
277 * Invalidate the tree, even if the "tree" is only a single leaf block.
278 * This is a depth-first traversal!
279 */
280 info = bp->b_addr;
281 switch (info->magic) {
282 case cpu_to_be16(XFS_DA_NODE_MAGIC):
283 case cpu_to_be16(XFS_DA3_NODE_MAGIC):
284 error = xfs_attr3_node_inactive(trans, dp, bp, 1);
285 break;
286 case cpu_to_be16(XFS_ATTR_LEAF_MAGIC):
287 case cpu_to_be16(XFS_ATTR3_LEAF_MAGIC):
288 error = xfs_attr3_leaf_inactive(trans, dp, bp);
289 break;
290 default:
Darrick J. Wongc2414ad2019-10-28 16:12:34 -0700291 error = -EFSCORRUPTED;
Darrick J. Wong8d57c212020-03-11 10:37:54 -0700292 xfs_buf_mark_corrupt(bp);
Dave Chinnerfde22272013-08-12 20:49:39 +1000293 xfs_trans_brelse(*trans, bp);
294 break;
295 }
296 if (error)
297 return error;
298
299 /*
300 * Invalidate the incore copy of the root block.
301 */
Darrick J. Wongce924642020-01-23 17:01:18 -0800302 error = xfs_trans_get_buf(*trans, mp->m_ddev_targp, blkno,
303 XFS_FSB_TO_BB(mp, mp->m_attr_geo->fsbcount), 0, &bp);
304 if (error)
305 return error;
Christoph Hellwig2911edb2019-11-20 09:46:05 -0800306 error = bp->b_error;
307 if (error) {
308 xfs_trans_brelse(*trans, bp);
Dave Chinnerfde22272013-08-12 20:49:39 +1000309 return error;
Christoph Hellwig2911edb2019-11-20 09:46:05 -0800310 }
Dave Chinnerfde22272013-08-12 20:49:39 +1000311 xfs_trans_binval(*trans, bp); /* remove from cache */
312 /*
313 * Commit the invalidate and start the next transaction.
314 */
Christoph Hellwig411350d2017-08-28 10:21:03 -0700315 error = xfs_trans_roll_inode(trans, dp);
Dave Chinnerfde22272013-08-12 20:49:39 +1000316
317 return error;
318}
319
Dave Chinner6dfe5a02015-05-29 07:40:08 +1000320/*
321 * xfs_attr_inactive kills all traces of an attribute fork on an inode. It
322 * removes both the on-disk and in-memory inode fork. Note that this also has to
323 * handle the condition of inodes without attributes but with an attribute fork
324 * configured, so we can't use xfs_inode_hasattr() here.
325 *
326 * The in-memory attribute fork is removed even on error.
327 */
Dave Chinnerfde22272013-08-12 20:49:39 +1000328int
Dave Chinner6dfe5a02015-05-29 07:40:08 +1000329xfs_attr_inactive(
330 struct xfs_inode *dp)
Dave Chinnerfde22272013-08-12 20:49:39 +1000331{
Dave Chinner6dfe5a02015-05-29 07:40:08 +1000332 struct xfs_trans *trans;
333 struct xfs_mount *mp;
Dave Chinner6dfe5a02015-05-29 07:40:08 +1000334 int lock_mode = XFS_ILOCK_SHARED;
335 int error = 0;
Dave Chinnerfde22272013-08-12 20:49:39 +1000336
337 mp = dp->i_mount;
338 ASSERT(! XFS_NOT_DQATTACHED(mp, dp));
339
Dave Chinner6dfe5a02015-05-29 07:40:08 +1000340 xfs_ilock(dp, lock_mode);
341 if (!XFS_IFORK_Q(dp))
342 goto out_destroy_fork;
343 xfs_iunlock(dp, lock_mode);
Dave Chinnerfde22272013-08-12 20:49:39 +1000344
Dave Chinner6dfe5a02015-05-29 07:40:08 +1000345 lock_mode = 0;
Christoph Hellwig253f4912016-04-06 09:19:55 +1000346
347 error = xfs_trans_alloc(mp, &M_RES(mp)->tr_attrinval, 0, 0, 0, &trans);
Dave Chinner6dfe5a02015-05-29 07:40:08 +1000348 if (error)
Christoph Hellwig253f4912016-04-06 09:19:55 +1000349 goto out_destroy_fork;
Dave Chinner6dfe5a02015-05-29 07:40:08 +1000350
351 lock_mode = XFS_ILOCK_EXCL;
Dave Chinner6dfe5a02015-05-29 07:40:08 +1000352 xfs_ilock(dp, lock_mode);
353
354 if (!XFS_IFORK_Q(dp))
355 goto out_cancel;
Dave Chinnerfde22272013-08-12 20:49:39 +1000356
357 /*
358 * No need to make quota reservations here. We expect to release some
359 * blocks, not allocate, in the common case.
360 */
361 xfs_trans_ijoin(trans, dp, 0);
362
Brian Fosterf66bf042015-06-23 08:47:20 +1000363 /*
364 * Invalidate and truncate the attribute fork extents. Make sure the
365 * fork actually has attributes as otherwise the invalidation has no
366 * blocks to read and returns an error. In this case, just do the fork
367 * removal below.
368 */
369 if (xfs_inode_hasattr(dp) &&
Christoph Hellwigf7e67b22020-05-18 10:28:05 -0700370 dp->i_afp->if_format != XFS_DINODE_FMT_LOCAL) {
Dave Chinner6dfe5a02015-05-29 07:40:08 +1000371 error = xfs_attr3_root_inactive(&trans, dp);
372 if (error)
373 goto out_cancel;
Dave Chinnerfde22272013-08-12 20:49:39 +1000374
Dave Chinner6dfe5a02015-05-29 07:40:08 +1000375 error = xfs_itruncate_extents(&trans, dp, XFS_ATTR_FORK, 0);
376 if (error)
377 goto out_cancel;
378 }
379
380 /* Reset the attribute fork - this also destroys the in-core fork */
381 xfs_attr_fork_remove(dp, trans);
Dave Chinnerfde22272013-08-12 20:49:39 +1000382
Christoph Hellwig70393312015-06-04 13:48:08 +1000383 error = xfs_trans_commit(trans);
Dave Chinner6dfe5a02015-05-29 07:40:08 +1000384 xfs_iunlock(dp, lock_mode);
Eric Sandeend99831f2014-06-22 15:03:54 +1000385 return error;
Dave Chinnerfde22272013-08-12 20:49:39 +1000386
Dave Chinner6dfe5a02015-05-29 07:40:08 +1000387out_cancel:
Christoph Hellwig4906e212015-06-04 13:47:56 +1000388 xfs_trans_cancel(trans);
Dave Chinner6dfe5a02015-05-29 07:40:08 +1000389out_destroy_fork:
390 /* kill the in-core attr fork before we drop the inode lock */
Christoph Hellwigef838512020-05-18 10:29:27 -0700391 if (dp->i_afp) {
392 xfs_idestroy_fork(dp->i_afp);
393 kmem_cache_free(xfs_ifork_zone, dp->i_afp);
394 dp->i_afp = NULL;
395 }
Dave Chinner6dfe5a02015-05-29 07:40:08 +1000396 if (lock_mode)
397 xfs_iunlock(dp, lock_mode);
Eric Sandeend99831f2014-06-22 15:03:54 +1000398 return error;
Dave Chinnerfde22272013-08-12 20:49:39 +1000399}