blob: 23523b802539e145fc59184f2bed1ba58195c5b3 [file] [log] [blame]
Dave Chinner0b61f8a2018-06-05 19:42:14 -07001// SPDX-License-Identifier: GPL-2.0
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
Nathan Scott7b718762005-11-02 14:58:39 +11003 * Copyright (c) 2000-2005 Silicon Graphics, Inc.
4 * All Rights Reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006#include "xfs.h"
Nathan Scotta844f452005-11-02 14:38:42 +11007#include "xfs_fs.h"
Dave Chinner70a98832013-10-23 10:36:05 +11008#include "xfs_shared.h"
Dave Chinner239880e2013-10-23 10:50:10 +11009#include "xfs_format.h"
10#include "xfs_log_format.h"
11#include "xfs_trans_resv.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include "xfs_mount.h"
Darrick J. Wong3ab78df2016-08-03 11:15:38 +100013#include "xfs_defer.h"
Dave Chinner57062782013-10-15 09:17:51 +110014#include "xfs_da_format.h"
Nathan Scotta844f452005-11-02 14:38:42 +110015#include "xfs_da_btree.h"
Nathan Scotta844f452005-11-02 14:38:42 +110016#include "xfs_attr_sf.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include "xfs_inode.h"
Dave Chinner239880e2013-10-23 10:50:10 +110018#include "xfs_trans.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include "xfs_bmap.h"
Dave Chinnera4fbe6a2013-10-23 10:51:50 +110020#include "xfs_bmap_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include "xfs_attr.h"
22#include "xfs_attr_leaf.h"
Dave Chinner95920cd2013-04-03 16:11:27 +110023#include "xfs_attr_remote.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include "xfs_quota.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include "xfs_trans_space.h"
Christoph Hellwig0b1b2132009-12-14 23:14:59 +000026#include "xfs_trace.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070027
28/*
29 * xfs_attr.c
30 *
31 * Provide the external interfaces to manage attribute lists.
32 */
33
34/*========================================================================
35 * Function prototypes for the kernel.
36 *========================================================================*/
37
38/*
39 * Internal routines when attribute list fits inside the inode.
40 */
41STATIC int xfs_attr_shortform_addname(xfs_da_args_t *args);
42
43/*
44 * Internal routines when attribute list is one block.
45 */
Christoph Hellwigba0f32d2005-06-21 15:36:52 +100046STATIC int xfs_attr_leaf_get(xfs_da_args_t *args);
Linus Torvalds1da177e2005-04-16 15:20:36 -070047STATIC int xfs_attr_leaf_removename(xfs_da_args_t *args);
Allison Collins07120f12020-07-20 21:47:22 -070048STATIC int xfs_attr_leaf_hasname(struct xfs_da_args *args, struct xfs_buf **bp);
Allison Henderson83c6e702021-04-19 12:55:26 -070049STATIC int xfs_attr_leaf_try_add(struct xfs_da_args *args, struct xfs_buf *bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
51/*
52 * Internal routines when attribute list is more than one block.
53 */
Christoph Hellwigba0f32d2005-06-21 15:36:52 +100054STATIC int xfs_attr_node_get(xfs_da_args_t *args);
Allison Henderson5d954cc2021-04-26 16:50:26 -070055STATIC void xfs_attr_restore_rmt_blk(struct xfs_da_args *args);
Allison Henderson8f502a42021-05-21 15:48:13 -070056STATIC int xfs_attr_node_addname(struct xfs_delattr_context *dac);
57STATIC int xfs_attr_node_addname_find_attr(struct xfs_delattr_context *dac);
58STATIC int xfs_attr_node_addname_clear_incomplete(
59 struct xfs_delattr_context *dac);
Allison Collins07120f12020-07-20 21:47:22 -070060STATIC int xfs_attr_node_hasname(xfs_da_args_t *args,
61 struct xfs_da_state **state);
Linus Torvalds1da177e2005-04-16 15:20:36 -070062STATIC int xfs_attr_fillstate(xfs_da_state_t *state);
63STATIC int xfs_attr_refillstate(xfs_da_state_t *state);
Allison Henderson8f502a42021-05-21 15:48:13 -070064STATIC int xfs_attr_set_iter(struct xfs_delattr_context *dac,
65 struct xfs_buf **leaf_bp);
Allison Henderson816c8e32021-05-28 15:15:05 -070066STATIC int xfs_attr_node_removename(struct xfs_da_args *args,
67 struct xfs_da_state *state);
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
Dave Chinnerabec5f22013-08-12 20:49:38 +100069int
Christoph Hellwigcaf8aab2008-06-23 13:23:41 +100070xfs_inode_hasattr(
71 struct xfs_inode *ip)
72{
73 if (!XFS_IFORK_Q(ip) ||
Christoph Hellwigf7e67b22020-05-18 10:28:05 -070074 (ip->i_afp->if_format == XFS_DINODE_FMT_EXTENTS &&
Christoph Hellwigdaf83962020-05-18 10:27:22 -070075 ip->i_afp->if_nextents == 0))
Christoph Hellwigcaf8aab2008-06-23 13:23:41 +100076 return 0;
77 return 1;
78}
79
Christoph Hellwig2ac131d2021-04-13 11:15:10 -070080/*
81 * Returns true if the there is exactly only block in the attr fork, in which
82 * case the attribute fork consists of a single leaf block entry.
83 */
84bool
85xfs_attr_is_leaf(
86 struct xfs_inode *ip)
87{
88 struct xfs_ifork *ifp = ip->i_afp;
89 struct xfs_iext_cursor icur;
90 struct xfs_bmbt_irec imap;
91
92 if (ifp->if_nextents != 1 || ifp->if_format != XFS_DINODE_FMT_EXTENTS)
93 return false;
94
95 xfs_iext_first(ifp, &icur);
96 xfs_iext_get_extent(ifp, &icur, &imap);
97 return imap.br_startoff == 0 && imap.br_blockcount == 1;
98}
99
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100/*========================================================================
101 * Overall external interface routines.
102 *========================================================================*/
103
Dave Chinner728bcaa2019-08-29 09:04:08 -0700104/*
105 * Retrieve an extended attribute and its value. Must have ilock.
106 * Returns 0 on successful retrieval, otherwise an error.
107 */
Darrick J. Wongad017f62017-06-16 11:00:14 -0700108int
109xfs_attr_get_ilocked(
Darrick J. Wongad017f62017-06-16 11:00:14 -0700110 struct xfs_da_args *args)
111{
Christoph Hellwigc36f5332020-02-26 17:30:34 -0800112 ASSERT(xfs_isilocked(args->dp, XFS_ILOCK_SHARED | XFS_ILOCK_EXCL));
Christoph Hellwigcf69f822017-07-13 12:14:33 -0700113
Christoph Hellwigc36f5332020-02-26 17:30:34 -0800114 if (!xfs_inode_hasattr(args->dp))
Darrick J. Wongad017f62017-06-16 11:00:14 -0700115 return -ENOATTR;
Christoph Hellwigc36f5332020-02-26 17:30:34 -0800116
Christoph Hellwigf7e67b22020-05-18 10:28:05 -0700117 if (args->dp->i_afp->if_format == XFS_DINODE_FMT_LOCAL)
Darrick J. Wongad017f62017-06-16 11:00:14 -0700118 return xfs_attr_shortform_getvalue(args);
Christoph Hellwig2ac131d2021-04-13 11:15:10 -0700119 if (xfs_attr_is_leaf(args->dp))
Darrick J. Wongad017f62017-06-16 11:00:14 -0700120 return xfs_attr_leaf_get(args);
Christoph Hellwigc36f5332020-02-26 17:30:34 -0800121 return xfs_attr_node_get(args);
Darrick J. Wongad017f62017-06-16 11:00:14 -0700122}
123
Dave Chinnerddbca702019-08-29 09:04:10 -0700124/*
125 * Retrieve an extended attribute by name, and its value if requested.
126 *
Christoph Hellwige513e252020-02-26 17:30:35 -0800127 * If args->valuelen is zero, then the caller does not want the value, just an
128 * indication whether the attribute exists and the size of the value if it
129 * exists. The size is returned in args.valuelen.
Dave Chinnerddbca702019-08-29 09:04:10 -0700130 *
Christoph Hellwigd49db182020-02-26 17:30:35 -0800131 * If args->value is NULL but args->valuelen is non-zero, allocate the buffer
132 * for the value after existence of the attribute has been determined. The
133 * caller always has to free args->value if it is set, no matter if this
134 * function was successful or not.
135 *
Dave Chinnerddbca702019-08-29 09:04:10 -0700136 * If the attribute is found, but exceeds the size limit set by the caller in
Christoph Hellwige5171d72020-02-26 17:30:34 -0800137 * args->valuelen, return -ERANGE with the size of the attribute that was found
138 * in args->valuelen.
Dave Chinnerddbca702019-08-29 09:04:10 -0700139 */
Christoph Hellwigb87d0222014-05-13 16:34:24 +1000140int
141xfs_attr_get(
Christoph Hellwige5171d72020-02-26 17:30:34 -0800142 struct xfs_da_args *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143{
Christoph Hellwigb87d0222014-05-13 16:34:24 +1000144 uint lock_mode;
145 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146
Christoph Hellwige5171d72020-02-26 17:30:34 -0800147 XFS_STATS_INC(args->dp->i_mount, xs_attr_get);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148
Dave Chinner75c8c50f2021-08-18 18:46:53 -0700149 if (xfs_is_shutdown(args->dp->i_mount))
Dave Chinner24513372014-06-25 14:58:08 +1000150 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151
Christoph Hellwige5171d72020-02-26 17:30:34 -0800152 args->geo = args->dp->i_mount->m_attr_geo;
153 args->whichfork = XFS_ATTR_FORK;
154 args->hashval = xfs_da_hashname(args->name, args->namelen);
Barry Naujoke8b0eba2008-04-22 17:34:31 +1000155
Eric Sandeenc400ee32015-08-19 10:30:48 +1000156 /* Entirely possible to look up a name which doesn't exist */
Christoph Hellwige5171d72020-02-26 17:30:34 -0800157 args->op_flags = XFS_DA_OP_OKNOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158
Christoph Hellwige5171d72020-02-26 17:30:34 -0800159 lock_mode = xfs_ilock_attr_map_shared(args->dp);
Christoph Hellwigc36f5332020-02-26 17:30:34 -0800160 error = xfs_attr_get_ilocked(args);
Christoph Hellwige5171d72020-02-26 17:30:34 -0800161 xfs_iunlock(args->dp, lock_mode);
Dave Chinnerddbca702019-08-29 09:04:10 -0700162
Christoph Hellwige5171d72020-02-26 17:30:34 -0800163 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164}
165
Niv Sardi5e9da7b2008-08-13 16:03:35 +1000166/*
167 * Calculate how many blocks we need for the new attribute,
168 */
Eric Sandeen5d77c0d2009-11-19 15:52:00 +0000169STATIC int
Niv Sardi5e9da7b2008-08-13 16:03:35 +1000170xfs_attr_calc_size(
Christoph Hellwig6c888af2014-05-13 16:40:19 +1000171 struct xfs_da_args *args,
Niv Sardi5e9da7b2008-08-13 16:03:35 +1000172 int *local)
173{
Christoph Hellwig6c888af2014-05-13 16:40:19 +1000174 struct xfs_mount *mp = args->dp->i_mount;
Niv Sardi5e9da7b2008-08-13 16:03:35 +1000175 int size;
176 int nblks;
177
178 /*
179 * Determine space new attribute will use, and if it would be
180 * "local" or "remote" (note: local != inline).
181 */
Dave Chinnerc59f0ad2014-06-06 15:21:27 +1000182 size = xfs_attr_leaf_newentsize(args, local);
Niv Sardi5e9da7b2008-08-13 16:03:35 +1000183 nblks = XFS_DAENTER_SPACE_RES(mp, XFS_ATTR_FORK);
184 if (*local) {
Dave Chinner33a60392014-06-06 15:21:10 +1000185 if (size > (args->geo->blksize / 2)) {
Niv Sardi5e9da7b2008-08-13 16:03:35 +1000186 /* Double split possible */
187 nblks *= 2;
188 }
189 } else {
190 /*
191 * Out of line attribute, cannot double split, but
192 * make room for the attribute value itself.
193 */
Dave Chinner2d6dcc62014-05-15 09:39:28 +1000194 uint dblocks = xfs_attr3_rmt_blocks(mp, args->valuelen);
Niv Sardi5e9da7b2008-08-13 16:03:35 +1000195 nblks += dblocks;
196 nblks += XFS_NEXTENTADD_SPACE_RES(mp, dblocks, XFS_ATTR_FORK);
197 }
198
199 return nblks;
200}
201
Allison Henderson4c74a562018-10-18 17:20:50 +1100202STATIC int
203xfs_attr_try_sf_addname(
204 struct xfs_inode *dp,
205 struct xfs_da_args *args)
206{
207
Allison Collins6cc5b5f2020-07-20 21:47:24 -0700208 int error;
209
210 /*
211 * Build initial attribute list (if required).
212 */
213 if (dp->i_afp->if_format == XFS_DINODE_FMT_EXTENTS)
214 xfs_attr_shortform_create(args);
Allison Henderson4c74a562018-10-18 17:20:50 +1100215
216 error = xfs_attr_shortform_addname(args);
217 if (error == -ENOSPC)
218 return error;
219
220 /*
221 * Commit the shortform mods, and we're done.
222 * NOTE: this is also the error path (EEXIST, etc).
223 */
Christoph Hellwig1d733012020-02-26 17:30:36 -0800224 if (!error && !(args->op_flags & XFS_DA_OP_NOTIME))
Allison Henderson4c74a562018-10-18 17:20:50 +1100225 xfs_trans_ichgtime(args->trans, dp, XFS_ICHGTIME_CHG);
226
Dave Chinner0560f312021-08-18 18:46:52 -0700227 if (xfs_has_wsync(dp->i_mount))
Allison Henderson4c74a562018-10-18 17:20:50 +1100228 xfs_trans_set_sync(args->trans);
229
Allison Collins6cc5b5f2020-07-20 21:47:24 -0700230 return error;
Allison Henderson4c74a562018-10-18 17:20:50 +1100231}
232
Allison Henderson2f3cd802018-10-18 17:21:16 +1100233/*
Allison Collinsdb1a28c2020-07-20 21:47:28 -0700234 * Check to see if the attr should be upgraded from non-existent or shortform to
235 * single-leaf-block attribute list.
236 */
237static inline bool
238xfs_attr_is_shortform(
239 struct xfs_inode *ip)
240{
241 return ip->i_afp->if_format == XFS_DINODE_FMT_LOCAL ||
242 (ip->i_afp->if_format == XFS_DINODE_FMT_EXTENTS &&
243 ip->i_afp->if_nextents == 0);
244}
245
Allison Henderson2b74b032021-04-26 15:00:33 -0700246/*
247 * Checks to see if a delayed attribute transaction should be rolled. If so,
248 * transaction is finished or rolled as needed.
249 */
Allison Henderson8f502a42021-05-21 15:48:13 -0700250STATIC int
Allison Henderson2b74b032021-04-26 15:00:33 -0700251xfs_attr_trans_roll(
252 struct xfs_delattr_context *dac)
253{
254 struct xfs_da_args *args = dac->da_args;
255 int error;
256
257 if (dac->flags & XFS_DAC_DEFER_FINISH) {
258 /*
259 * The caller wants us to finish all the deferred ops so that we
260 * avoid pinning the log tail with a large number of deferred
261 * ops.
262 */
263 dac->flags &= ~XFS_DAC_DEFER_FINISH;
264 error = xfs_defer_finish(&args->trans);
265 } else
266 error = xfs_trans_roll_inode(&args->trans, args->dp);
267
268 return error;
269}
270
Allison Henderson8f502a42021-05-21 15:48:13 -0700271/*
272 * Set the attribute specified in @args.
273 */
274int
275xfs_attr_set_args(
276 struct xfs_da_args *args)
277{
278 struct xfs_buf *leaf_bp = NULL;
279 int error = 0;
280 struct xfs_delattr_context dac = {
281 .da_args = args,
282 };
283
284 do {
285 error = xfs_attr_set_iter(&dac, &leaf_bp);
286 if (error != -EAGAIN)
287 break;
288
289 error = xfs_attr_trans_roll(&dac);
290 if (error) {
291 if (leaf_bp)
292 xfs_trans_brelse(args->trans, leaf_bp);
293 return error;
294 }
295 } while (true);
296
297 return error;
298}
299
Allison Collinsdb1a28c2020-07-20 21:47:28 -0700300STATIC int
Allison Henderson816c8e32021-05-28 15:15:05 -0700301xfs_attr_sf_addname(
Allison Henderson8f502a42021-05-21 15:48:13 -0700302 struct xfs_delattr_context *dac,
303 struct xfs_buf **leaf_bp)
Allison Collinsdb1a28c2020-07-20 21:47:28 -0700304{
Allison Henderson8f502a42021-05-21 15:48:13 -0700305 struct xfs_da_args *args = dac->da_args;
306 struct xfs_inode *dp = args->dp;
307 int error = 0;
Allison Collinsdb1a28c2020-07-20 21:47:28 -0700308
309 /*
310 * Try to add the attr to the attribute list in the inode.
311 */
312 error = xfs_attr_try_sf_addname(dp, args);
Allison Henderson8f502a42021-05-21 15:48:13 -0700313
314 /* Should only be 0, -EEXIST or -ENOSPC */
315 if (error != -ENOSPC)
316 return error;
Allison Henderson62865142021-02-18 01:09:18 -0700317
Allison Collinsdb1a28c2020-07-20 21:47:28 -0700318 /*
319 * It won't fit in the shortform, transform to a leaf block. GROT:
320 * another possible req'mt for a double-split btree op.
321 */
Allison Henderson8f502a42021-05-21 15:48:13 -0700322 error = xfs_attr_shortform_to_leaf(args, leaf_bp);
Allison Collinsdb1a28c2020-07-20 21:47:28 -0700323 if (error)
324 return error;
325
326 /*
327 * Prevent the leaf buffer from being unlocked so that a concurrent AIL
328 * push cannot grab the half-baked leaf buffer and run into problems
Allison Henderson62865142021-02-18 01:09:18 -0700329 * with the write verifier.
Allison Collinsdb1a28c2020-07-20 21:47:28 -0700330 */
Allison Henderson8f502a42021-05-21 15:48:13 -0700331 xfs_trans_bhold(args->trans, *leaf_bp);
Allison Collinsdb1a28c2020-07-20 21:47:28 -0700332
Allison Henderson8f502a42021-05-21 15:48:13 -0700333 /*
334 * We're still in XFS_DAS_UNINIT state here. We've converted
335 * the attr fork to leaf format and will restart with the leaf
336 * add.
337 */
Allison Hendersondf082632021-08-08 08:27:13 -0700338 trace_xfs_attr_sf_addname_return(XFS_DAS_UNINIT, args->dp);
Allison Henderson8f502a42021-05-21 15:48:13 -0700339 dac->flags |= XFS_DAC_DEFER_FINISH;
Allison Henderson62865142021-02-18 01:09:18 -0700340 return -EAGAIN;
Allison Collinsdb1a28c2020-07-20 21:47:28 -0700341}
342
343/*
Allison Henderson2f3cd802018-10-18 17:21:16 +1100344 * Set the attribute specified in @args.
Allison Henderson8f502a42021-05-21 15:48:13 -0700345 * This routine is meant to function as a delayed operation, and may return
346 * -EAGAIN when the transaction needs to be rolled. Calling functions will need
347 * to handle this, and recall the function until a successful error code is
348 * returned.
Allison Henderson2f3cd802018-10-18 17:21:16 +1100349 */
350int
Allison Henderson8f502a42021-05-21 15:48:13 -0700351xfs_attr_set_iter(
352 struct xfs_delattr_context *dac,
353 struct xfs_buf **leaf_bp)
Allison Henderson2f3cd802018-10-18 17:21:16 +1100354{
Allison Henderson8f502a42021-05-21 15:48:13 -0700355 struct xfs_da_args *args = dac->da_args;
356 struct xfs_inode *dp = args->dp;
357 struct xfs_buf *bp = NULL;
358 int forkoff, error = 0;
Allison Henderson2f3cd802018-10-18 17:21:16 +1100359
Allison Henderson8f502a42021-05-21 15:48:13 -0700360 /* State machine switch */
361 switch (dac->dela_state) {
362 case XFS_DAS_UNINIT:
363 /*
364 * If the fork is shortform, attempt to add the attr. If there
365 * is no space, this converts to leaf format and returns
366 * -EAGAIN with the leaf buffer held across the roll. The caller
367 * will deal with a transaction roll error, but otherwise
368 * release the hold once we return with a clean transaction.
369 */
370 if (xfs_attr_is_shortform(dp))
Allison Henderson816c8e32021-05-28 15:15:05 -0700371 return xfs_attr_sf_addname(dac, leaf_bp);
Allison Henderson8f502a42021-05-21 15:48:13 -0700372 if (*leaf_bp != NULL) {
373 xfs_trans_bhold_release(args->trans, *leaf_bp);
374 *leaf_bp = NULL;
Allison Henderson3f562d02021-02-12 12:27:14 -0700375 }
Allison Collins7c93d4a2020-07-20 21:47:24 -0700376
Allison Henderson8f502a42021-05-21 15:48:13 -0700377 if (xfs_attr_is_leaf(dp)) {
378 error = xfs_attr_leaf_try_add(args, *leaf_bp);
379 if (error == -ENOSPC) {
380 error = xfs_attr3_leaf_to_node(args);
381 if (error)
382 return error;
Allison Henderson83c6e702021-04-19 12:55:26 -0700383
Allison Henderson8f502a42021-05-21 15:48:13 -0700384 /*
385 * Finish any deferred work items and roll the
386 * transaction once more. The goal here is to
387 * call node_addname with the inode and
388 * transaction in the same state (inode locked
389 * and joined, transaction clean) no matter how
390 * we got to this step.
391 *
392 * At this point, we are still in
393 * XFS_DAS_UNINIT, but when we come back, we'll
394 * be a node, so we'll fall down into the node
395 * handling code below
396 */
397 dac->flags |= XFS_DAC_DEFER_FINISH;
Allison Hendersondf082632021-08-08 08:27:13 -0700398 trace_xfs_attr_set_iter_return(
399 dac->dela_state, args->dp);
Allison Henderson8f502a42021-05-21 15:48:13 -0700400 return -EAGAIN;
401 } else if (error) {
402 return error;
403 }
404
405 dac->dela_state = XFS_DAS_FOUND_LBLK;
406 } else {
407 error = xfs_attr_node_addname_find_attr(dac);
408 if (error)
409 return error;
410
411 error = xfs_attr_node_addname(dac);
412 if (error)
413 return error;
414
415 dac->dela_state = XFS_DAS_FOUND_NBLK;
416 }
Allison Hendersondf082632021-08-08 08:27:13 -0700417 trace_xfs_attr_set_iter_return(dac->dela_state, args->dp);
Allison Henderson8f502a42021-05-21 15:48:13 -0700418 return -EAGAIN;
419 case XFS_DAS_FOUND_LBLK:
Allison Henderson83c6e702021-04-19 12:55:26 -0700420 /*
421 * If there was an out-of-line value, allocate the blocks we
422 * identified for its storage and copy the value. This is done
423 * after we create the attribute so that we don't overflow the
424 * maximum size of a transaction and/or hit a deadlock.
425 */
Allison Henderson8f502a42021-05-21 15:48:13 -0700426
427 /* Open coded xfs_attr_rmtval_set without trans handling */
428 if ((dac->flags & XFS_DAC_LEAF_ADDNAME_INIT) == 0) {
429 dac->flags |= XFS_DAC_LEAF_ADDNAME_INIT;
430 if (args->rmtblkno > 0) {
431 error = xfs_attr_rmtval_find_space(dac);
432 if (error)
433 return error;
434 }
Allison Henderson83c6e702021-04-19 12:55:26 -0700435 }
436
Allison Henderson8f502a42021-05-21 15:48:13 -0700437 /*
438 * Repeat allocating remote blocks for the attr value until
439 * blkcnt drops to zero.
440 */
441 if (dac->blkcnt > 0) {
442 error = xfs_attr_rmtval_set_blk(dac);
443 if (error)
444 return error;
Allison Hendersondf082632021-08-08 08:27:13 -0700445 trace_xfs_attr_set_iter_return(dac->dela_state,
446 args->dp);
Allison Henderson8f502a42021-05-21 15:48:13 -0700447 return -EAGAIN;
448 }
449
450 error = xfs_attr_rmtval_set_value(args);
451 if (error)
452 return error;
453
454 /*
455 * If this is not a rename, clear the incomplete flag and we're
456 * done.
457 */
Allison Henderson83c6e702021-04-19 12:55:26 -0700458 if (!(args->op_flags & XFS_DA_OP_RENAME)) {
Allison Henderson83c6e702021-04-19 12:55:26 -0700459 if (args->rmtblkno > 0)
460 error = xfs_attr3_leaf_clearflag(args);
Allison Henderson83c6e702021-04-19 12:55:26 -0700461 return error;
462 }
463
464 /*
465 * If this is an atomic rename operation, we must "flip" the
466 * incomplete flags on the "new" and "old" attribute/value pairs
467 * so that one disappears and one appears atomically. Then we
468 * must remove the "old" attribute/value pair.
469 *
470 * In a separate transaction, set the incomplete flag on the
471 * "old" attr and clear the incomplete flag on the "new" attr.
472 */
Allison Henderson83c6e702021-04-19 12:55:26 -0700473 error = xfs_attr3_leaf_flipflags(args);
474 if (error)
475 return error;
476 /*
477 * Commit the flag value change and start the next trans in
478 * series.
479 */
Allison Henderson8f502a42021-05-21 15:48:13 -0700480 dac->dela_state = XFS_DAS_FLIP_LFLAG;
Allison Hendersondf082632021-08-08 08:27:13 -0700481 trace_xfs_attr_set_iter_return(dac->dela_state, args->dp);
Allison Henderson8f502a42021-05-21 15:48:13 -0700482 return -EAGAIN;
483 case XFS_DAS_FLIP_LFLAG:
Allison Henderson83c6e702021-04-19 12:55:26 -0700484 /*
485 * Dismantle the "old" attribute/value pair by removing a
486 * "remote" value (if it exists).
487 */
488 xfs_attr_restore_rmt_blk(args);
Allison Henderson8f502a42021-05-21 15:48:13 -0700489 error = xfs_attr_rmtval_invalidate(args);
490 if (error)
491 return error;
Allison Henderson83c6e702021-04-19 12:55:26 -0700492
Gustavo A. R. Silva5937e002021-06-15 09:09:14 -0500493 fallthrough;
Allison Henderson8f502a42021-05-21 15:48:13 -0700494 case XFS_DAS_RM_LBLK:
495 /* Set state in case xfs_attr_rmtval_remove returns -EAGAIN */
496 dac->dela_state = XFS_DAS_RM_LBLK;
Allison Henderson83c6e702021-04-19 12:55:26 -0700497 if (args->rmtblkno) {
Allison Henderson5e68b4c2021-08-08 08:27:14 -0700498 error = xfs_attr_rmtval_remove(dac);
Allison Hendersondf082632021-08-08 08:27:13 -0700499 if (error == -EAGAIN)
500 trace_xfs_attr_set_iter_return(
501 dac->dela_state, args->dp);
Allison Henderson83c6e702021-04-19 12:55:26 -0700502 if (error)
503 return error;
504
Allison Henderson8f502a42021-05-21 15:48:13 -0700505 dac->dela_state = XFS_DAS_RD_LEAF;
Allison Hendersondf082632021-08-08 08:27:13 -0700506 trace_xfs_attr_set_iter_return(dac->dela_state, args->dp);
Allison Henderson8f502a42021-05-21 15:48:13 -0700507 return -EAGAIN;
Allison Henderson83c6e702021-04-19 12:55:26 -0700508 }
509
Gustavo A. R. Silva5937e002021-06-15 09:09:14 -0500510 fallthrough;
Allison Henderson8f502a42021-05-21 15:48:13 -0700511 case XFS_DAS_RD_LEAF:
Allison Henderson83c6e702021-04-19 12:55:26 -0700512 /*
Allison Henderson8f502a42021-05-21 15:48:13 -0700513 * This is the last step for leaf format. Read the block with
514 * the old attr, remove the old attr, check for shortform
515 * conversion and return.
Allison Henderson83c6e702021-04-19 12:55:26 -0700516 */
517 error = xfs_attr3_leaf_read(args->trans, args->dp, args->blkno,
518 &bp);
519 if (error)
520 return error;
521
522 xfs_attr3_leaf_remove(bp, args);
523
Allison Henderson83c6e702021-04-19 12:55:26 -0700524 forkoff = xfs_attr_shortform_allfit(bp, dp);
525 if (forkoff)
526 error = xfs_attr3_leaf_to_shortform(bp, args, forkoff);
527 /* bp is gone due to xfs_da_shrink_inode */
528
529 return error;
Allison Henderson3f562d02021-02-12 12:27:14 -0700530
Allison Henderson8f502a42021-05-21 15:48:13 -0700531 case XFS_DAS_FOUND_NBLK:
Allison Henderson5d954cc2021-04-26 16:50:26 -0700532 /*
Allison Henderson8f502a42021-05-21 15:48:13 -0700533 * Find space for remote blocks and fall into the allocation
534 * state.
Allison Henderson5d954cc2021-04-26 16:50:26 -0700535 */
Allison Henderson8f502a42021-05-21 15:48:13 -0700536 if (args->rmtblkno > 0) {
537 error = xfs_attr_rmtval_find_space(dac);
538 if (error)
539 return error;
540 }
Allison Henderson5d954cc2021-04-26 16:50:26 -0700541
Gustavo A. R. Silva5937e002021-06-15 09:09:14 -0500542 fallthrough;
Allison Henderson8f502a42021-05-21 15:48:13 -0700543 case XFS_DAS_ALLOC_NODE:
544 /*
545 * If there was an out-of-line value, allocate the blocks we
546 * identified for its storage and copy the value. This is done
547 * after we create the attribute so that we don't overflow the
548 * maximum size of a transaction and/or hit a deadlock.
549 */
550 dac->dela_state = XFS_DAS_ALLOC_NODE;
551 if (args->rmtblkno > 0) {
552 if (dac->blkcnt > 0) {
553 error = xfs_attr_rmtval_set_blk(dac);
554 if (error)
555 return error;
Allison Hendersondf082632021-08-08 08:27:13 -0700556 trace_xfs_attr_set_iter_return(
557 dac->dela_state, args->dp);
Allison Henderson8f502a42021-05-21 15:48:13 -0700558 return -EAGAIN;
559 }
Allison Henderson5d954cc2021-04-26 16:50:26 -0700560
Allison Henderson8f502a42021-05-21 15:48:13 -0700561 error = xfs_attr_rmtval_set_value(args);
562 if (error)
563 return error;
564 }
Allison Henderson5d954cc2021-04-26 16:50:26 -0700565
Allison Henderson8f502a42021-05-21 15:48:13 -0700566 /*
567 * If this was not a rename, clear the incomplete flag and we're
568 * done.
569 */
570 if (!(args->op_flags & XFS_DA_OP_RENAME)) {
571 if (args->rmtblkno > 0)
572 error = xfs_attr3_leaf_clearflag(args);
573 goto out;
574 }
575
576 /*
577 * If this is an atomic rename operation, we must "flip" the
578 * incomplete flags on the "new" and "old" attribute/value pairs
579 * so that one disappears and one appears atomically. Then we
580 * must remove the "old" attribute/value pair.
581 *
582 * In a separate transaction, set the incomplete flag on the
583 * "old" attr and clear the incomplete flag on the "new" attr.
584 */
585 error = xfs_attr3_leaf_flipflags(args);
586 if (error)
587 goto out;
588 /*
589 * Commit the flag value change and start the next trans in
590 * series
591 */
592 dac->dela_state = XFS_DAS_FLIP_NFLAG;
Allison Hendersondf082632021-08-08 08:27:13 -0700593 trace_xfs_attr_set_iter_return(dac->dela_state, args->dp);
Allison Henderson8f502a42021-05-21 15:48:13 -0700594 return -EAGAIN;
595
596 case XFS_DAS_FLIP_NFLAG:
597 /*
598 * Dismantle the "old" attribute/value pair by removing a
599 * "remote" value (if it exists).
600 */
601 xfs_attr_restore_rmt_blk(args);
602
Allison Henderson5d954cc2021-04-26 16:50:26 -0700603 error = xfs_attr_rmtval_invalidate(args);
604 if (error)
605 return error;
606
Gustavo A. R. Silva5937e002021-06-15 09:09:14 -0500607 fallthrough;
Allison Henderson8f502a42021-05-21 15:48:13 -0700608 case XFS_DAS_RM_NBLK:
609 /* Set state in case xfs_attr_rmtval_remove returns -EAGAIN */
610 dac->dela_state = XFS_DAS_RM_NBLK;
611 if (args->rmtblkno) {
Allison Henderson5e68b4c2021-08-08 08:27:14 -0700612 error = xfs_attr_rmtval_remove(dac);
Allison Hendersondf082632021-08-08 08:27:13 -0700613 if (error == -EAGAIN)
614 trace_xfs_attr_set_iter_return(
615 dac->dela_state, args->dp);
616
Allison Henderson8f502a42021-05-21 15:48:13 -0700617 if (error)
618 return error;
Allison Henderson5d954cc2021-04-26 16:50:26 -0700619
Allison Henderson8f502a42021-05-21 15:48:13 -0700620 dac->dela_state = XFS_DAS_CLR_FLAG;
Allison Hendersondf082632021-08-08 08:27:13 -0700621 trace_xfs_attr_set_iter_return(dac->dela_state, args->dp);
Allison Henderson8f502a42021-05-21 15:48:13 -0700622 return -EAGAIN;
623 }
624
Gustavo A. R. Silva5937e002021-06-15 09:09:14 -0500625 fallthrough;
Allison Henderson8f502a42021-05-21 15:48:13 -0700626 case XFS_DAS_CLR_FLAG:
627 /*
628 * The last state for node format. Look up the old attr and
629 * remove it.
630 */
631 error = xfs_attr_node_addname_clear_incomplete(dac);
632 break;
633 default:
Allison Henderson4a4957c2021-05-21 00:57:15 -0700634 ASSERT(0);
Allison Henderson8f502a42021-05-21 15:48:13 -0700635 break;
636 }
Allison Henderson5d954cc2021-04-26 16:50:26 -0700637out:
Allison Henderson6ca5a4a2021-04-12 14:15:31 -0700638 return error;
Allison Henderson2f3cd802018-10-18 17:21:16 +1100639}
640
Allison Henderson8f502a42021-05-21 15:48:13 -0700641
Allison Henderson068f9852018-10-18 17:21:23 +1100642/*
Allison Collins07120f12020-07-20 21:47:22 -0700643 * Return EEXIST if attr is found, or ENOATTR if not
644 */
Dave Chinner51b495e2021-08-18 18:46:25 -0700645static int
646xfs_attr_lookup(
Allison Collins07120f12020-07-20 21:47:22 -0700647 struct xfs_da_args *args)
648{
649 struct xfs_inode *dp = args->dp;
650 struct xfs_buf *bp = NULL;
651 int error;
652
653 if (!xfs_inode_hasattr(dp))
654 return -ENOATTR;
655
Christoph Hellwig0779f4a2021-04-13 11:15:11 -0700656 if (dp->i_afp->if_format == XFS_DINODE_FMT_LOCAL)
Allison Collins07120f12020-07-20 21:47:22 -0700657 return xfs_attr_sf_findname(args, NULL, NULL);
Allison Collins07120f12020-07-20 21:47:22 -0700658
Christoph Hellwig2ac131d2021-04-13 11:15:10 -0700659 if (xfs_attr_is_leaf(dp)) {
Allison Collins07120f12020-07-20 21:47:22 -0700660 error = xfs_attr_leaf_hasname(args, &bp);
661
662 if (bp)
663 xfs_trans_brelse(args->trans, bp);
664
665 return error;
666 }
667
668 return xfs_attr_node_hasname(args, NULL);
669}
670
671/*
Allison Henderson068f9852018-10-18 17:21:23 +1100672 * Remove the attribute specified in @args.
673 */
674int
675xfs_attr_remove_args(
Allison Henderson2b74b032021-04-26 15:00:33 -0700676 struct xfs_da_args *args)
Allison Henderson068f9852018-10-18 17:21:23 +1100677{
Allison Henderson2b74b032021-04-26 15:00:33 -0700678 int error;
679 struct xfs_delattr_context dac = {
680 .da_args = args,
681 };
Allison Henderson068f9852018-10-18 17:21:23 +1100682
Allison Henderson2b74b032021-04-26 15:00:33 -0700683 do {
684 error = xfs_attr_remove_iter(&dac);
685 if (error != -EAGAIN)
686 break;
687
688 error = xfs_attr_trans_roll(&dac);
689 if (error)
690 return error;
691
692 } while (true);
693
694 return error;
Allison Henderson068f9852018-10-18 17:21:23 +1100695}
696
Christoph Hellwig0eb81a52020-02-26 17:30:29 -0800697/*
Christoph Hellwiga2544622020-02-26 17:30:33 -0800698 * Note: If args->value is NULL the attribute will be removed, just like the
Christoph Hellwig0eb81a52020-02-26 17:30:29 -0800699 * Linux ->setattr API.
700 */
Christoph Hellwigc5b4ac32014-05-13 16:34:14 +1000701int
702xfs_attr_set(
Christoph Hellwiga2544622020-02-26 17:30:33 -0800703 struct xfs_da_args *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704{
Christoph Hellwiga2544622020-02-26 17:30:33 -0800705 struct xfs_inode *dp = args->dp;
Jie Liu3d3c8b52013-08-12 20:49:59 +1000706 struct xfs_mount *mp = dp->i_mount;
707 struct xfs_trans_res tres;
Christoph Hellwigd5f0f492020-02-26 17:30:42 -0800708 bool rsvd = (args->attr_filter & XFS_ATTR_ROOT);
Allison Henderson4c74a562018-10-18 17:20:50 +1100709 int error, local;
Chandan Babu R3a19bb12021-01-22 16:48:13 -0800710 int rmt_blks = 0;
Christoph Hellwig0eb81a52020-02-26 17:30:29 -0800711 unsigned int total;
Christoph Hellwigc5b4ac32014-05-13 16:34:14 +1000712
Dave Chinner75c8c50f2021-08-18 18:46:53 -0700713 if (xfs_is_shutdown(dp->i_mount))
Dave Chinner24513372014-06-25 14:58:08 +1000714 return -EIO;
Christoph Hellwigc5b4ac32014-05-13 16:34:14 +1000715
Christoph Hellwig0eb81a52020-02-26 17:30:29 -0800716 error = xfs_qm_dqattach(dp);
717 if (error)
718 return error;
719
Christoph Hellwiga2544622020-02-26 17:30:33 -0800720 args->geo = mp->m_attr_geo;
721 args->whichfork = XFS_ATTR_FORK;
722 args->hashval = xfs_da_hashname(args->name, args->namelen);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723
724 /*
Christoph Hellwig0eb81a52020-02-26 17:30:29 -0800725 * We have no control over the attribute names that userspace passes us
726 * to remove, so we have to allow the name lookup prior to attribute
727 * removal to fail as well.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 */
Christoph Hellwiga2544622020-02-26 17:30:33 -0800729 args->op_flags = XFS_DA_OP_OKNOENT;
Barry Naujoke5889e92007-02-10 18:35:58 +1100730
Christoph Hellwiga2544622020-02-26 17:30:33 -0800731 if (args->value) {
Christoph Hellwig0eb81a52020-02-26 17:30:29 -0800732 XFS_STATS_INC(mp, xs_attr_set);
733
Christoph Hellwiga2544622020-02-26 17:30:33 -0800734 args->op_flags |= XFS_DA_OP_ADDNAME;
735 args->total = xfs_attr_calc_size(args, &local);
Christoph Hellwig0eb81a52020-02-26 17:30:29 -0800736
737 /*
738 * If the inode doesn't have an attribute fork, add one.
739 * (inode must not be locked when we call this routine)
740 */
741 if (XFS_IFORK_Q(dp) == 0) {
742 int sf_size = sizeof(struct xfs_attr_sf_hdr) +
Carlos Maiolinoe01b7ee2020-09-07 08:08:50 -0700743 xfs_attr_sf_entsize_byname(args->namelen,
Christoph Hellwiga2544622020-02-26 17:30:33 -0800744 args->valuelen);
Christoph Hellwig0eb81a52020-02-26 17:30:29 -0800745
746 error = xfs_bmap_add_attrfork(dp, sf_size, rsvd);
747 if (error)
748 return error;
749 }
750
751 tres.tr_logres = M_RES(mp)->tr_attrsetm.tr_logres +
Christoph Hellwiga2544622020-02-26 17:30:33 -0800752 M_RES(mp)->tr_attrsetrt.tr_logres *
753 args->total;
Christoph Hellwig0eb81a52020-02-26 17:30:29 -0800754 tres.tr_logcount = XFS_ATTRSET_LOG_COUNT;
755 tres.tr_logflags = XFS_TRANS_PERM_LOG_RES;
Christoph Hellwiga2544622020-02-26 17:30:33 -0800756 total = args->total;
Chandan Babu R3a19bb12021-01-22 16:48:13 -0800757
758 if (!local)
759 rmt_blks = xfs_attr3_rmt_blocks(mp, args->valuelen);
Christoph Hellwig0eb81a52020-02-26 17:30:29 -0800760 } else {
761 XFS_STATS_INC(mp, xs_attr_remove);
762
763 tres = M_RES(mp)->tr_attrrm;
764 total = XFS_ATTRRM_SPACE_RES(mp);
Chandan Babu R3a19bb12021-01-22 16:48:13 -0800765 rmt_blks = xfs_attr3_rmt_blocks(mp, XFS_XATTR_SIZE_MAX);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 }
767
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 /*
769 * Root fork attributes can use reserved data blocks for this
770 * operation if necessary
771 */
Darrick J. Wong3de4eb12021-01-26 16:44:07 -0800772 error = xfs_trans_alloc_inode(dp, &tres, total, 0, rsvd, &args->trans);
Christoph Hellwig253f4912016-04-06 09:19:55 +1000773 if (error)
Christoph Hellwigc5b4ac32014-05-13 16:34:14 +1000774 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775
Chandan Babu R3a19bb12021-01-22 16:48:13 -0800776 if (args->value || xfs_inode_hasattr(dp)) {
777 error = xfs_iext_count_may_overflow(dp, XFS_ATTR_FORK,
778 XFS_IEXT_ATTR_MANIP_CNT(rmt_blks));
779 if (error)
780 goto out_trans_cancel;
781 }
782
Dave Chinner51b495e2021-08-18 18:46:25 -0700783 error = xfs_attr_lookup(args);
Christoph Hellwiga2544622020-02-26 17:30:33 -0800784 if (args->value) {
Allison Collinsdeed9512020-07-20 21:47:23 -0700785 if (error == -EEXIST && (args->attr_flags & XATTR_CREATE))
786 goto out_trans_cancel;
787 if (error == -ENOATTR && (args->attr_flags & XATTR_REPLACE))
788 goto out_trans_cancel;
789 if (error != -ENOATTR && error != -EEXIST)
790 goto out_trans_cancel;
791
Christoph Hellwiga2544622020-02-26 17:30:33 -0800792 error = xfs_attr_set_args(args);
Christoph Hellwig0eb81a52020-02-26 17:30:29 -0800793 if (error)
794 goto out_trans_cancel;
Allison Henderson2f3cd802018-10-18 17:21:16 +1100795 /* shortform attribute has already been committed */
Christoph Hellwiga2544622020-02-26 17:30:33 -0800796 if (!args->trans)
Christoph Hellwig0eb81a52020-02-26 17:30:29 -0800797 goto out_unlock;
798 } else {
Allison Collinsdeed9512020-07-20 21:47:23 -0700799 if (error != -EEXIST)
800 goto out_trans_cancel;
801
Christoph Hellwiga2544622020-02-26 17:30:33 -0800802 error = xfs_attr_remove_args(args);
Christoph Hellwig0eb81a52020-02-26 17:30:29 -0800803 if (error)
804 goto out_trans_cancel;
Allison Henderson2f3cd802018-10-18 17:21:16 +1100805 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806
807 /*
808 * If this is a synchronous mount, make sure that the
809 * transaction goes to disk before returning to the user.
810 */
Dave Chinner0560f312021-08-18 18:46:52 -0700811 if (xfs_has_wsync(mp))
Christoph Hellwiga2544622020-02-26 17:30:33 -0800812 xfs_trans_set_sync(args->trans);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813
Christoph Hellwig1d733012020-02-26 17:30:36 -0800814 if (!(args->op_flags & XFS_DA_OP_NOTIME))
Christoph Hellwiga2544622020-02-26 17:30:33 -0800815 xfs_trans_ichgtime(args->trans, dp, XFS_ICHGTIME_CHG);
Dave Chinnerdcd79a12010-09-28 12:27:25 +1000816
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 /*
818 * Commit the last in the sequence of transactions.
819 */
Christoph Hellwiga2544622020-02-26 17:30:33 -0800820 xfs_trans_log_inode(args->trans, dp, XFS_ILOG_CORE);
821 error = xfs_trans_commit(args->trans);
Allison Henderson2f3cd802018-10-18 17:21:16 +1100822out_unlock:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 xfs_iunlock(dp, XFS_ILOCK_EXCL);
Christoph Hellwigc5b4ac32014-05-13 16:34:14 +1000824 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825
Allison Henderson2f3cd802018-10-18 17:21:16 +1100826out_trans_cancel:
Christoph Hellwiga2544622020-02-26 17:30:33 -0800827 if (args->trans)
828 xfs_trans_cancel(args->trans);
Allison Henderson2f3cd802018-10-18 17:21:16 +1100829 goto out_unlock;
Nathan Scottaa82daa2005-11-02 10:33:33 +1100830}
831
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832/*========================================================================
833 * External routines when attribute list is inside the inode
834 *========================================================================*/
835
Carlos Maiolinoe01b7ee2020-09-07 08:08:50 -0700836static inline int xfs_attr_sf_totsize(struct xfs_inode *dp)
837{
838 struct xfs_attr_shortform *sf;
839
840 sf = (struct xfs_attr_shortform *)dp->i_afp->if_u1.if_data;
841 return be16_to_cpu(sf->hdr.totsize);
842}
843
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844/*
845 * Add a name to the shortform attribute list structure
846 * This is the external routine.
847 */
848STATIC int
849xfs_attr_shortform_addname(xfs_da_args_t *args)
850{
Nathan Scottd8cc8902005-11-02 10:34:53 +1100851 int newsize, forkoff, retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852
Dave Chinner5a5881c2012-03-22 05:15:13 +0000853 trace_xfs_attr_sf_addname(args);
854
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 retval = xfs_attr_shortform_lookup(args);
Christoph Hellwigd5f0f492020-02-26 17:30:42 -0800856 if (retval == -ENOATTR && (args->attr_flags & XATTR_REPLACE))
Eric Sandeend99831f2014-06-22 15:03:54 +1000857 return retval;
Christoph Hellwigf3e93d92020-02-26 17:30:42 -0800858 if (retval == -EEXIST) {
Christoph Hellwigd5f0f492020-02-26 17:30:42 -0800859 if (args->attr_flags & XATTR_CREATE)
Eric Sandeend99831f2014-06-22 15:03:54 +1000860 return retval;
Allison Henderson816c8e32021-05-28 15:15:05 -0700861 retval = xfs_attr_sf_removename(args);
Darrick J. Wong7b384602018-04-17 19:10:15 -0700862 if (retval)
863 return retval;
864 /*
865 * Since we have removed the old attr, clear ATTR_REPLACE so
866 * that the leaf format add routine won't trip over the attr
867 * not being around.
868 */
Christoph Hellwigd5f0f492020-02-26 17:30:42 -0800869 args->attr_flags &= ~XATTR_REPLACE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 }
871
Nathan Scottd8cc8902005-11-02 10:34:53 +1100872 if (args->namelen >= XFS_ATTR_SF_ENTSIZE_MAX ||
873 args->valuelen >= XFS_ATTR_SF_ENTSIZE_MAX)
Dave Chinner24513372014-06-25 14:58:08 +1000874 return -ENOSPC;
Nathan Scottd8cc8902005-11-02 10:34:53 +1100875
Carlos Maiolinoe01b7ee2020-09-07 08:08:50 -0700876 newsize = xfs_attr_sf_totsize(args->dp);
877 newsize += xfs_attr_sf_entsize_byname(args->namelen, args->valuelen);
Nathan Scottd8cc8902005-11-02 10:34:53 +1100878
879 forkoff = xfs_attr_shortform_bytesfit(args->dp, newsize);
880 if (!forkoff)
Dave Chinner24513372014-06-25 14:58:08 +1000881 return -ENOSPC;
Nathan Scottd8cc8902005-11-02 10:34:53 +1100882
883 xfs_attr_shortform_add(args, forkoff);
Eric Sandeend99831f2014-06-22 15:03:54 +1000884 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885}
886
887
888/*========================================================================
889 * External routines when attribute list is one block
890 *========================================================================*/
891
Allison Collins410c1982020-07-20 21:47:29 -0700892/* Store info about a remote block */
893STATIC void
894xfs_attr_save_rmt_blk(
895 struct xfs_da_args *args)
896{
897 args->blkno2 = args->blkno;
898 args->index2 = args->index;
899 args->rmtblkno2 = args->rmtblkno;
900 args->rmtblkcnt2 = args->rmtblkcnt;
901 args->rmtvaluelen2 = args->rmtvaluelen;
902}
903
904/* Set stored info about a remote block */
905STATIC void
906xfs_attr_restore_rmt_blk(
907 struct xfs_da_args *args)
908{
909 args->blkno = args->blkno2;
910 args->index = args->index2;
911 args->rmtblkno = args->rmtblkno2;
912 args->rmtblkcnt = args->rmtblkcnt2;
913 args->rmtvaluelen = args->rmtvaluelen2;
914}
915
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916/*
Allison Collins7c93d4a2020-07-20 21:47:24 -0700917 * Tries to add an attribute to an inode in leaf form
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918 *
Allison Collins7c93d4a2020-07-20 21:47:24 -0700919 * This function is meant to execute as part of a delayed operation and leaves
920 * the transaction handling to the caller. On success the attribute is added
921 * and the inode and transaction are left dirty. If there is not enough space,
922 * the attr data is converted to node format and -ENOSPC is returned. Caller is
923 * responsible for handling the dirty inode and transaction or adding the attr
924 * in node format.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 */
David Chinnera8272ce2007-11-23 16:28:09 +1100926STATIC int
Allison Collins7c93d4a2020-07-20 21:47:24 -0700927xfs_attr_leaf_try_add(
928 struct xfs_da_args *args,
929 struct xfs_buf *bp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930{
Allison Collins0f89edc2020-07-20 21:47:31 -0700931 int retval;
Dave Chinner5a5881c2012-03-22 05:15:13 +0000932
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934 * Look up the given attribute in the leaf block. Figure out if
935 * the given flags produce an error or call for an atomic rename.
936 */
Allison Collins07120f12020-07-20 21:47:22 -0700937 retval = xfs_attr_leaf_hasname(args, &bp);
938 if (retval != -ENOATTR && retval != -EEXIST)
939 return retval;
Christoph Hellwigd5f0f492020-02-26 17:30:42 -0800940 if (retval == -ENOATTR && (args->attr_flags & XATTR_REPLACE))
Christoph Hellwigf3e93d92020-02-26 17:30:42 -0800941 goto out_brelse;
942 if (retval == -EEXIST) {
Christoph Hellwigd5f0f492020-02-26 17:30:42 -0800943 if (args->attr_flags & XATTR_CREATE)
Christoph Hellwigf3e93d92020-02-26 17:30:42 -0800944 goto out_brelse;
Dave Chinner5a5881c2012-03-22 05:15:13 +0000945
946 trace_xfs_attr_leaf_replace(args);
947
Dave Chinner8275cdd2014-05-06 07:37:31 +1000948 /* save the attribute state for later removal*/
Barry Naujok6a178102008-05-21 16:42:05 +1000949 args->op_flags |= XFS_DA_OP_RENAME; /* an atomic rename */
Allison Collins410c1982020-07-20 21:47:29 -0700950 xfs_attr_save_rmt_blk(args);
Dave Chinner8275cdd2014-05-06 07:37:31 +1000951
952 /*
953 * clear the remote attr state now that it is saved so that the
954 * values reflect the state of the attribute we are about to
955 * add, not the attribute we just found and will remove later.
956 */
957 args->rmtblkno = 0;
958 args->rmtblkcnt = 0;
959 args->rmtvaluelen = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960 }
961
962 /*
Allison Collins0f89edc2020-07-20 21:47:31 -0700963 * Add the attribute to the leaf block
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964 */
Allison Collins0f89edc2020-07-20 21:47:31 -0700965 return xfs_attr3_leaf_add(bp, args);
966
Allison Collins7c93d4a2020-07-20 21:47:24 -0700967out_brelse:
968 xfs_trans_brelse(args->trans, bp);
969 return retval;
970}
971
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972/*
Allison Collins07120f12020-07-20 21:47:22 -0700973 * Return EEXIST if attr is found, or ENOATTR if not
974 */
975STATIC int
976xfs_attr_leaf_hasname(
977 struct xfs_da_args *args,
978 struct xfs_buf **bp)
979{
980 int error = 0;
981
982 error = xfs_attr3_leaf_read(args->trans, args->dp, 0, bp);
983 if (error)
984 return error;
985
986 error = xfs_attr3_leaf_lookup_int(*bp, args);
987 if (error != -ENOATTR && error != -EEXIST)
988 xfs_trans_brelse(args->trans, *bp);
989
990 return error;
991}
992
993/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 * Remove a name from the leaf attribute list structure
995 *
996 * This leaf block cannot have a "remote" value, we only call this routine
997 * if bmap_one_block() says there is only one block (ie: no remote blks).
998 */
999STATIC int
Brian Foster32a9b7c2018-07-11 22:26:11 -07001000xfs_attr_leaf_removename(
1001 struct xfs_da_args *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002{
Brian Foster32a9b7c2018-07-11 22:26:11 -07001003 struct xfs_inode *dp;
1004 struct xfs_buf *bp;
1005 int error, forkoff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006
Dave Chinner5a5881c2012-03-22 05:15:13 +00001007 trace_xfs_attr_leaf_removename(args);
1008
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009 /*
1010 * Remove the attribute.
1011 */
1012 dp = args->dp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013
Allison Collins07120f12020-07-20 21:47:22 -07001014 error = xfs_attr_leaf_hasname(args, &bp);
1015
Dave Chinner24513372014-06-25 14:58:08 +10001016 if (error == -ENOATTR) {
Dave Chinner1d9025e2012-06-22 18:50:14 +10001017 xfs_trans_brelse(args->trans, bp);
Dave Chinner517c2222013-04-24 18:58:55 +10001018 return error;
Allison Collins07120f12020-07-20 21:47:22 -07001019 } else if (error != -EEXIST)
1020 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021
Dave Chinner517c2222013-04-24 18:58:55 +10001022 xfs_attr3_leaf_remove(bp, args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023
1024 /*
1025 * If the result is small enough, shrink it all into the inode.
1026 */
Allison Collins0feaef12020-07-20 21:47:27 -07001027 forkoff = xfs_attr_shortform_allfit(bp, dp);
1028 if (forkoff)
1029 return xfs_attr3_leaf_to_shortform(bp, args, forkoff);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 /* bp is gone due to xfs_da_shrink_inode */
Allison Collins0feaef12020-07-20 21:47:27 -07001031
Dave Chinner517c2222013-04-24 18:58:55 +10001032 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033}
1034
1035/*
1036 * Look up a name in a leaf attribute list structure.
1037 *
1038 * This leaf block cannot have a "remote" value, we only call this routine
1039 * if bmap_one_block() says there is only one block (ie: no remote blks).
Dave Chinner728bcaa2019-08-29 09:04:08 -07001040 *
1041 * Returns 0 on successful retrieval, otherwise an error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 */
Christoph Hellwigba0f32d2005-06-21 15:36:52 +10001043STATIC int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044xfs_attr_leaf_get(xfs_da_args_t *args)
1045{
Dave Chinner1d9025e2012-06-22 18:50:14 +10001046 struct xfs_buf *bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 int error;
1048
Dave Chinneree732592012-11-12 22:53:53 +11001049 trace_xfs_attr_leaf_get(args);
1050
Allison Collins07120f12020-07-20 21:47:22 -07001051 error = xfs_attr_leaf_hasname(args, &bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052
Allison Collins07120f12020-07-20 21:47:22 -07001053 if (error == -ENOATTR) {
Dave Chinner1d9025e2012-06-22 18:50:14 +10001054 xfs_trans_brelse(args->trans, bp);
Dave Chinner517c2222013-04-24 18:58:55 +10001055 return error;
Allison Collins07120f12020-07-20 21:47:22 -07001056 } else if (error != -EEXIST)
1057 return error;
1058
1059
Dave Chinner517c2222013-04-24 18:58:55 +10001060 error = xfs_attr3_leaf_getvalue(bp, args);
Dave Chinner1d9025e2012-06-22 18:50:14 +10001061 xfs_trans_brelse(args->trans, bp);
Dave Chinnere3cc4552019-08-29 09:04:09 -07001062 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063}
1064
Allison Collins07120f12020-07-20 21:47:22 -07001065/*
1066 * Return EEXIST if attr is found, or ENOATTR if not
1067 * statep: If not null is set to point at the found state. Caller will
1068 * be responsible for freeing the state in this case.
1069 */
1070STATIC int
1071xfs_attr_node_hasname(
1072 struct xfs_da_args *args,
1073 struct xfs_da_state **statep)
1074{
1075 struct xfs_da_state *state;
1076 int retval, error;
1077
1078 state = xfs_da_state_alloc(args);
1079 if (statep != NULL)
Yang Xua1de97f2021-11-24 10:06:02 -08001080 *statep = state;
Allison Collins07120f12020-07-20 21:47:22 -07001081
1082 /*
1083 * Search to see if name exists, and get back a pointer to it.
1084 */
1085 error = xfs_da3_node_lookup_int(state, &retval);
Yang Xua1de97f2021-11-24 10:06:02 -08001086 if (error)
1087 retval = error;
Allison Collins07120f12020-07-20 21:47:22 -07001088
Yang Xua1de97f2021-11-24 10:06:02 -08001089 if (!statep)
Allison Collins07120f12020-07-20 21:47:22 -07001090 xfs_da_state_free(state);
Yang Xua1de97f2021-11-24 10:06:02 -08001091
Allison Collins07120f12020-07-20 21:47:22 -07001092 return retval;
1093}
1094
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095/*========================================================================
Dave Chinnerc2c4c472014-06-06 15:21:45 +10001096 * External routines when attribute list size > geo->blksize
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097 *========================================================================*/
1098
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099STATIC int
Allison Henderson6ca5a4a2021-04-12 14:15:31 -07001100xfs_attr_node_addname_find_attr(
Allison Henderson8f502a42021-05-21 15:48:13 -07001101 struct xfs_delattr_context *dac)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102{
Allison Henderson8f502a42021-05-21 15:48:13 -07001103 struct xfs_da_args *args = dac->da_args;
1104 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106 /*
1107 * Search to see if name already exists, and get back a pointer
1108 * to where it should go.
1109 */
Allison Henderson8f502a42021-05-21 15:48:13 -07001110 retval = xfs_attr_node_hasname(args, &dac->da_state);
Allison Collins07120f12020-07-20 21:47:22 -07001111 if (retval != -ENOATTR && retval != -EEXIST)
Yang Xua1de97f2021-11-24 10:06:02 -08001112 goto error;
Allison Collins07120f12020-07-20 21:47:22 -07001113
Christoph Hellwigd5f0f492020-02-26 17:30:42 -08001114 if (retval == -ENOATTR && (args->attr_flags & XATTR_REPLACE))
Allison Henderson6ca5a4a2021-04-12 14:15:31 -07001115 goto error;
Christoph Hellwigf3e93d92020-02-26 17:30:42 -08001116 if (retval == -EEXIST) {
Christoph Hellwigd5f0f492020-02-26 17:30:42 -08001117 if (args->attr_flags & XATTR_CREATE)
Allison Henderson6ca5a4a2021-04-12 14:15:31 -07001118 goto error;
Dave Chinner5a5881c2012-03-22 05:15:13 +00001119
1120 trace_xfs_attr_node_replace(args);
1121
Dave Chinner8275cdd2014-05-06 07:37:31 +10001122 /* save the attribute state for later removal*/
Barry Naujok6a178102008-05-21 16:42:05 +10001123 args->op_flags |= XFS_DA_OP_RENAME; /* atomic rename op */
Allison Collins410c1982020-07-20 21:47:29 -07001124 xfs_attr_save_rmt_blk(args);
Dave Chinner8275cdd2014-05-06 07:37:31 +10001125
1126 /*
1127 * clear the remote attr state now that it is saved so that the
1128 * values reflect the state of the attribute we are about to
1129 * add, not the attribute we just found and will remove later.
1130 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131 args->rmtblkno = 0;
1132 args->rmtblkcnt = 0;
Dave Chinner8275cdd2014-05-06 07:37:31 +10001133 args->rmtvaluelen = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134 }
1135
Allison Henderson6ca5a4a2021-04-12 14:15:31 -07001136 return 0;
1137error:
Allison Henderson8f502a42021-05-21 15:48:13 -07001138 if (dac->da_state)
1139 xfs_da_state_free(dac->da_state);
Allison Henderson6ca5a4a2021-04-12 14:15:31 -07001140 return retval;
1141}
1142
1143/*
1144 * Add a name to a Btree-format attribute list.
1145 *
1146 * This will involve walking down the Btree, and may involve splitting
1147 * leaf nodes and even splitting intermediate nodes up to and including
1148 * the root node (a special case of an intermediate node).
1149 *
1150 * "Remote" attribute values confuse the issue and atomic rename operations
1151 * add a whole extra layer of confusion on top of that.
Allison Henderson8f502a42021-05-21 15:48:13 -07001152 *
1153 * This routine is meant to function as a delayed operation, and may return
1154 * -EAGAIN when the transaction needs to be rolled. Calling functions will need
1155 * to handle this, and recall the function until a successful error code is
1156 *returned.
Allison Henderson6ca5a4a2021-04-12 14:15:31 -07001157 */
1158STATIC int
1159xfs_attr_node_addname(
Allison Henderson8f502a42021-05-21 15:48:13 -07001160 struct xfs_delattr_context *dac)
Allison Henderson6ca5a4a2021-04-12 14:15:31 -07001161{
Allison Henderson8f502a42021-05-21 15:48:13 -07001162 struct xfs_da_args *args = dac->da_args;
1163 struct xfs_da_state *state = dac->da_state;
1164 struct xfs_da_state_blk *blk;
1165 int error;
Allison Henderson6ca5a4a2021-04-12 14:15:31 -07001166
1167 trace_xfs_attr_node_addname(args);
1168
Allison Henderson6ca5a4a2021-04-12 14:15:31 -07001169 blk = &state->path.blk[state->path.active-1];
1170 ASSERT(blk->magic == XFS_ATTR_LEAF_MAGIC);
1171
Allison Henderson5d954cc2021-04-26 16:50:26 -07001172 error = xfs_attr3_leaf_add(blk->bp, state->args);
1173 if (error == -ENOSPC) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174 if (state->path.active == 1) {
1175 /*
1176 * Its really a single leaf node, but it had
1177 * out-of-line values so it looked like it *might*
1178 * have been a b-tree.
1179 */
1180 xfs_da_state_free(state);
Eric Sandeen6dd93e92013-07-31 20:18:54 -05001181 state = NULL;
Dave Chinner517c2222013-04-24 18:58:55 +10001182 error = xfs_attr3_leaf_to_node(args);
Christoph Hellwig8ad7c6292017-08-28 10:21:04 -07001183 if (error)
Brian Fosterd5a2e282018-09-29 13:41:58 +10001184 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185
1186 /*
Allison Henderson8f502a42021-05-21 15:48:13 -07001187 * Now that we have converted the leaf to a node, we can
1188 * roll the transaction, and try xfs_attr3_leaf_add
1189 * again on re-entry. No need to set dela_state to do
1190 * this. dela_state is still unset by this function at
1191 * this point.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192 */
Allison Henderson8f502a42021-05-21 15:48:13 -07001193 dac->flags |= XFS_DAC_DEFER_FINISH;
Allison Hendersondf082632021-08-08 08:27:13 -07001194 trace_xfs_attr_node_addname_return(
1195 dac->dela_state, args->dp);
Allison Henderson6ca5a4a2021-04-12 14:15:31 -07001196 return -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197 }
1198
1199 /*
1200 * Split as many Btree elements as required.
1201 * This code tracks the new and old attr's location
1202 * in the index/blkno/rmtblkno/rmtblkcnt fields and
1203 * in the index2/blkno2/rmtblkno2/rmtblkcnt2 fields.
1204 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001205 error = xfs_da3_split(state);
Christoph Hellwig8ad7c6292017-08-28 10:21:04 -07001206 if (error)
Brian Fosterd5a2e282018-09-29 13:41:58 +10001207 goto out;
Allison Henderson8f502a42021-05-21 15:48:13 -07001208 dac->flags |= XFS_DAC_DEFER_FINISH;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209 } else {
1210 /*
1211 * Addition succeeded, update Btree hashvals.
1212 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001213 xfs_da3_fixhashpath(state, &state->path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214 }
1215
Allison Hendersonf0f7c502021-02-18 01:24:24 -07001216out:
1217 if (state)
1218 xfs_da_state_free(state);
Allison Henderson5d954cc2021-04-26 16:50:26 -07001219 return error;
Allison Hendersonf0f7c502021-02-18 01:24:24 -07001220}
1221
1222
1223STATIC int
1224xfs_attr_node_addname_clear_incomplete(
Allison Henderson8f502a42021-05-21 15:48:13 -07001225 struct xfs_delattr_context *dac)
Allison Hendersonf0f7c502021-02-18 01:24:24 -07001226{
Allison Henderson8f502a42021-05-21 15:48:13 -07001227 struct xfs_da_args *args = dac->da_args;
Allison Hendersonf0f7c502021-02-18 01:24:24 -07001228 struct xfs_da_state *state = NULL;
Allison Hendersonf0f7c502021-02-18 01:24:24 -07001229 int retval = 0;
1230 int error = 0;
1231
Allison Collinsbf4a5cf2020-07-20 21:47:31 -07001232 /*
1233 * Re-find the "old" attribute entry after any split ops. The INCOMPLETE
1234 * flag means that we will find the "old" attr, not the "new" one.
1235 */
1236 args->attr_filter |= XFS_ATTR_INCOMPLETE;
1237 state = xfs_da_state_alloc(args);
1238 state->inleaf = 0;
1239 error = xfs_da3_node_lookup_int(state, &retval);
1240 if (error)
1241 goto out;
1242
Allison Henderson816c8e32021-05-28 15:15:05 -07001243 error = xfs_attr_node_removename(args, state);
Allison Collinsbf4a5cf2020-07-20 21:47:31 -07001244
1245 /*
1246 * Check to see if the tree needs to be collapsed.
1247 */
1248 if (retval && (state->path.active > 1)) {
1249 error = xfs_da3_join(state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250 if (error)
1251 goto out;
1252 }
1253 retval = error = 0;
1254
1255out:
1256 if (state)
1257 xfs_da_state_free(state);
1258 if (error)
Eric Sandeend99831f2014-06-22 15:03:54 +10001259 return error;
1260 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261}
1262
1263/*
Allison Collins3f6e0112020-07-20 21:47:27 -07001264 * Shrink an attribute from leaf to shortform
1265 */
1266STATIC int
1267xfs_attr_node_shrink(
1268 struct xfs_da_args *args,
1269 struct xfs_da_state *state)
1270{
1271 struct xfs_inode *dp = args->dp;
1272 int error, forkoff;
1273 struct xfs_buf *bp;
1274
1275 /*
1276 * Have to get rid of the copy of this dabuf in the state.
1277 */
1278 ASSERT(state->path.active == 1);
1279 ASSERT(state->path.blk[0].bp);
1280 state->path.blk[0].bp = NULL;
1281
1282 error = xfs_attr3_leaf_read(args->trans, args->dp, 0, &bp);
1283 if (error)
1284 return error;
1285
1286 forkoff = xfs_attr_shortform_allfit(bp, dp);
1287 if (forkoff) {
1288 error = xfs_attr3_leaf_to_shortform(bp, args, forkoff);
1289 /* bp is gone due to xfs_da_shrink_inode */
Allison Collins3f6e0112020-07-20 21:47:27 -07001290 } else
1291 xfs_trans_brelse(args->trans, bp);
1292
Allison Collins0feaef12020-07-20 21:47:27 -07001293 return error;
Allison Collins3f6e0112020-07-20 21:47:27 -07001294}
1295
1296/*
Allison Collinsf44df682020-07-20 21:47:28 -07001297 * Mark an attribute entry INCOMPLETE and save pointers to the relevant buffers
1298 * for later deletion of the entry.
1299 */
1300STATIC int
1301xfs_attr_leaf_mark_incomplete(
1302 struct xfs_da_args *args,
1303 struct xfs_da_state *state)
1304{
1305 int error;
1306
1307 /*
1308 * Fill in disk block numbers in the state structure
1309 * so that we can get the buffers back after we commit
1310 * several transactions in the following calls.
1311 */
1312 error = xfs_attr_fillstate(state);
1313 if (error)
1314 return error;
1315
1316 /*
1317 * Mark the attribute as INCOMPLETE
1318 */
1319 return xfs_attr3_leaf_setflag(args);
1320}
1321
1322/*
Allison Collins674eb542020-07-20 21:47:30 -07001323 * Initial setup for xfs_attr_node_removename. Make sure the attr is there and
1324 * the blocks are valid. Attr keys with remote blocks will be marked
1325 * incomplete.
1326 */
1327STATIC
1328int xfs_attr_node_removename_setup(
Allison Henderson2b74b032021-04-26 15:00:33 -07001329 struct xfs_delattr_context *dac)
Allison Collins674eb542020-07-20 21:47:30 -07001330{
Allison Henderson2b74b032021-04-26 15:00:33 -07001331 struct xfs_da_args *args = dac->da_args;
1332 struct xfs_da_state **state = &dac->da_state;
1333 int error;
Allison Collins674eb542020-07-20 21:47:30 -07001334
1335 error = xfs_attr_node_hasname(args, state);
1336 if (error != -EEXIST)
Yang Xua1de97f2021-11-24 10:06:02 -08001337 goto out;
Allison Henderson2b74b032021-04-26 15:00:33 -07001338 error = 0;
Allison Collins674eb542020-07-20 21:47:30 -07001339
1340 ASSERT((*state)->path.blk[(*state)->path.active - 1].bp != NULL);
1341 ASSERT((*state)->path.blk[(*state)->path.active - 1].magic ==
1342 XFS_ATTR_LEAF_MAGIC);
1343
1344 if (args->rmtblkno > 0) {
1345 error = xfs_attr_leaf_mark_incomplete(args, *state);
1346 if (error)
Allison Henderson2b74b032021-04-26 15:00:33 -07001347 goto out;
Allison Collins674eb542020-07-20 21:47:30 -07001348
Allison Henderson2b74b032021-04-26 15:00:33 -07001349 error = xfs_attr_rmtval_invalidate(args);
Allison Collins674eb542020-07-20 21:47:30 -07001350 }
Allison Henderson2b74b032021-04-26 15:00:33 -07001351out:
1352 if (error)
1353 xfs_da_state_free(*state);
Allison Collins674eb542020-07-20 21:47:30 -07001354
Allison Henderson2b74b032021-04-26 15:00:33 -07001355 return error;
Allison Collins674eb542020-07-20 21:47:30 -07001356}
1357
Allison Hendersona8490f62021-03-18 17:25:59 -07001358STATIC int
Allison Henderson816c8e32021-05-28 15:15:05 -07001359xfs_attr_node_removename(
Allison Hendersona8490f62021-03-18 17:25:59 -07001360 struct xfs_da_args *args,
1361 struct xfs_da_state *state)
1362{
1363 struct xfs_da_state_blk *blk;
1364 int retval;
1365
1366 /*
1367 * Remove the name and update the hashvals in the tree.
1368 */
1369 blk = &state->path.blk[state->path.active-1];
1370 ASSERT(blk->magic == XFS_ATTR_LEAF_MAGIC);
1371 retval = xfs_attr3_leaf_remove(blk->bp, args);
1372 xfs_da3_fixhashpath(state, &state->path);
1373
1374 return retval;
1375}
1376
Allison Collins674eb542020-07-20 21:47:30 -07001377/*
Allison Henderson2b74b032021-04-26 15:00:33 -07001378 * Remove the attribute specified in @args.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379 *
1380 * This will involve walking down the Btree, and may involve joining
1381 * leaf nodes and even joining intermediate nodes up to and including
1382 * the root node (a special case of an intermediate node).
Allison Henderson2b74b032021-04-26 15:00:33 -07001383 *
1384 * This routine is meant to function as either an in-line or delayed operation,
1385 * and may return -EAGAIN when the transaction needs to be rolled. Calling
1386 * functions will need to handle this, and call the function until a
1387 * successful error code is returned.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388 */
Allison Henderson2b74b032021-04-26 15:00:33 -07001389int
1390xfs_attr_remove_iter(
1391 struct xfs_delattr_context *dac)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392{
Allison Henderson2b74b032021-04-26 15:00:33 -07001393 struct xfs_da_args *args = dac->da_args;
1394 struct xfs_da_state *state = dac->da_state;
Allison Hendersond3a33402021-06-25 11:19:58 -07001395 int retval, error = 0;
Allison Henderson2b74b032021-04-26 15:00:33 -07001396 struct xfs_inode *dp = args->dp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397
Dave Chinner5a5881c2012-03-22 05:15:13 +00001398 trace_xfs_attr_node_removename(args);
1399
Allison Henderson2b74b032021-04-26 15:00:33 -07001400 switch (dac->dela_state) {
1401 case XFS_DAS_UNINIT:
1402 if (!xfs_inode_hasattr(dp))
1403 return -ENOATTR;
1404
1405 /*
1406 * Shortform or leaf formats don't require transaction rolls and
1407 * thus state transitions. Call the right helper and return.
1408 */
1409 if (dp->i_afp->if_format == XFS_DINODE_FMT_LOCAL)
Allison Henderson816c8e32021-05-28 15:15:05 -07001410 return xfs_attr_sf_removename(args);
Allison Henderson2b74b032021-04-26 15:00:33 -07001411
1412 if (xfs_attr_is_leaf(dp))
1413 return xfs_attr_leaf_removename(args);
1414
1415 /*
1416 * Node format may require transaction rolls. Set up the
1417 * state context and fall into the state machine.
1418 */
1419 if (!dac->da_state) {
1420 error = xfs_attr_node_removename_setup(dac);
1421 if (error)
1422 return error;
1423 state = dac->da_state;
1424 }
1425
Gustavo A. R. Silva5937e002021-06-15 09:09:14 -05001426 fallthrough;
Allison Henderson2b74b032021-04-26 15:00:33 -07001427 case XFS_DAS_RMTBLK:
1428 dac->dela_state = XFS_DAS_RMTBLK;
1429
1430 /*
1431 * If there is an out-of-line value, de-allocate the blocks.
1432 * This is done before we remove the attribute so that we don't
1433 * overflow the maximum size of a transaction and/or hit a
1434 * deadlock.
1435 */
1436 if (args->rmtblkno > 0) {
1437 /*
1438 * May return -EAGAIN. Roll and repeat until all remote
1439 * blocks are removed.
1440 */
Allison Henderson5e68b4c2021-08-08 08:27:14 -07001441 error = xfs_attr_rmtval_remove(dac);
Allison Hendersondf082632021-08-08 08:27:13 -07001442 if (error == -EAGAIN) {
1443 trace_xfs_attr_remove_iter_return(
1444 dac->dela_state, args->dp);
Allison Henderson2b74b032021-04-26 15:00:33 -07001445 return error;
Allison Hendersondf082632021-08-08 08:27:13 -07001446 } else if (error) {
Allison Henderson2b74b032021-04-26 15:00:33 -07001447 goto out;
Allison Hendersondf082632021-08-08 08:27:13 -07001448 }
Allison Henderson2b74b032021-04-26 15:00:33 -07001449
1450 /*
1451 * Refill the state structure with buffers (the prior
1452 * calls released our buffers) and close out this
1453 * transaction before proceeding.
1454 */
1455 ASSERT(args->rmtblkno == 0);
1456 error = xfs_attr_refillstate(state);
1457 if (error)
1458 goto out;
1459 dac->dela_state = XFS_DAS_RM_NAME;
1460 dac->flags |= XFS_DAC_DEFER_FINISH;
Allison Hendersondf082632021-08-08 08:27:13 -07001461 trace_xfs_attr_remove_iter_return(dac->dela_state, args->dp);
Allison Henderson2b74b032021-04-26 15:00:33 -07001462 return -EAGAIN;
1463 }
1464
Gustavo A. R. Silva5937e002021-06-15 09:09:14 -05001465 fallthrough;
Allison Henderson2b74b032021-04-26 15:00:33 -07001466 case XFS_DAS_RM_NAME:
1467 /*
1468 * If we came here fresh from a transaction roll, reattach all
1469 * the buffers to the current transaction.
1470 */
1471 if (dac->dela_state == XFS_DAS_RM_NAME) {
1472 error = xfs_attr_refillstate(state);
1473 if (error)
1474 goto out;
1475 }
1476
Allison Henderson816c8e32021-05-28 15:15:05 -07001477 retval = xfs_attr_node_removename(args, state);
Allison Henderson2b74b032021-04-26 15:00:33 -07001478
1479 /*
1480 * Check to see if the tree needs to be collapsed. If so, roll
1481 * the transacton and fall into the shrink state.
1482 */
1483 if (retval && (state->path.active > 1)) {
1484 error = xfs_da3_join(state);
1485 if (error)
1486 goto out;
1487
1488 dac->flags |= XFS_DAC_DEFER_FINISH;
1489 dac->dela_state = XFS_DAS_RM_SHRINK;
Allison Hendersondf082632021-08-08 08:27:13 -07001490 trace_xfs_attr_remove_iter_return(
1491 dac->dela_state, args->dp);
Allison Henderson2b74b032021-04-26 15:00:33 -07001492 return -EAGAIN;
1493 }
1494
Gustavo A. R. Silva5937e002021-06-15 09:09:14 -05001495 fallthrough;
Allison Henderson2b74b032021-04-26 15:00:33 -07001496 case XFS_DAS_RM_SHRINK:
1497 /*
1498 * If the result is small enough, push it all into the inode.
1499 * This is our final state so it's safe to return a dirty
1500 * transaction.
1501 */
1502 if (xfs_attr_is_leaf(dp))
1503 error = xfs_attr_node_shrink(args, state);
1504 ASSERT(error != -EAGAIN);
1505 break;
1506 default:
1507 ASSERT(0);
1508 error = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511out:
Allison Collins07120f12020-07-20 21:47:22 -07001512 if (state)
1513 xfs_da_state_free(state);
Eric Sandeend99831f2014-06-22 15:03:54 +10001514 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515}
1516
1517/*
1518 * Fill in the disk block numbers in the state structure for the buffers
1519 * that are attached to the state structure.
1520 * This is done so that we can quickly reattach ourselves to those buffers
Nathan Scottc41564b2006-03-29 08:55:14 +10001521 * after some set of transaction commits have released these buffers.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522 */
1523STATIC int
1524xfs_attr_fillstate(xfs_da_state_t *state)
1525{
1526 xfs_da_state_path_t *path;
1527 xfs_da_state_blk_t *blk;
1528 int level;
1529
Dave Chinneree732592012-11-12 22:53:53 +11001530 trace_xfs_attr_fillstate(state->args);
1531
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532 /*
1533 * Roll down the "path" in the state structure, storing the on-disk
1534 * block number for those buffers in the "path".
1535 */
1536 path = &state->path;
1537 ASSERT((path->active >= 0) && (path->active < XFS_DA_NODE_MAXDEPTH));
1538 for (blk = path->blk, level = 0; level < path->active; blk++, level++) {
1539 if (blk->bp) {
Dave Chinner04fcad82021-08-18 18:46:57 -07001540 blk->disk_blkno = xfs_buf_daddr(blk->bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541 blk->bp = NULL;
1542 } else {
1543 blk->disk_blkno = 0;
1544 }
1545 }
1546
1547 /*
1548 * Roll down the "altpath" in the state structure, storing the on-disk
1549 * block number for those buffers in the "altpath".
1550 */
1551 path = &state->altpath;
1552 ASSERT((path->active >= 0) && (path->active < XFS_DA_NODE_MAXDEPTH));
1553 for (blk = path->blk, level = 0; level < path->active; blk++, level++) {
1554 if (blk->bp) {
Dave Chinner04fcad82021-08-18 18:46:57 -07001555 blk->disk_blkno = xfs_buf_daddr(blk->bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556 blk->bp = NULL;
1557 } else {
1558 blk->disk_blkno = 0;
1559 }
1560 }
1561
Eric Sandeend99831f2014-06-22 15:03:54 +10001562 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563}
1564
1565/*
1566 * Reattach the buffers to the state structure based on the disk block
1567 * numbers stored in the state structure.
Nathan Scottc41564b2006-03-29 08:55:14 +10001568 * This is done after some set of transaction commits have released those
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569 * buffers from our grip.
1570 */
1571STATIC int
1572xfs_attr_refillstate(xfs_da_state_t *state)
1573{
1574 xfs_da_state_path_t *path;
1575 xfs_da_state_blk_t *blk;
1576 int level, error;
1577
Dave Chinneree732592012-11-12 22:53:53 +11001578 trace_xfs_attr_refillstate(state->args);
1579
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580 /*
1581 * Roll down the "path" in the state structure, storing the on-disk
1582 * block number for those buffers in the "path".
1583 */
1584 path = &state->path;
1585 ASSERT((path->active >= 0) && (path->active < XFS_DA_NODE_MAXDEPTH));
1586 for (blk = path->blk, level = 0; level < path->active; blk++, level++) {
1587 if (blk->disk_blkno) {
Christoph Hellwig02c57f02019-11-20 09:46:04 -08001588 error = xfs_da3_node_read_mapped(state->args->trans,
1589 state->args->dp, blk->disk_blkno,
1590 &blk->bp, XFS_ATTR_FORK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591 if (error)
Eric Sandeend99831f2014-06-22 15:03:54 +10001592 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593 } else {
1594 blk->bp = NULL;
1595 }
1596 }
1597
1598 /*
1599 * Roll down the "altpath" in the state structure, storing the on-disk
1600 * block number for those buffers in the "altpath".
1601 */
1602 path = &state->altpath;
1603 ASSERT((path->active >= 0) && (path->active < XFS_DA_NODE_MAXDEPTH));
1604 for (blk = path->blk, level = 0; level < path->active; blk++, level++) {
1605 if (blk->disk_blkno) {
Christoph Hellwig02c57f02019-11-20 09:46:04 -08001606 error = xfs_da3_node_read_mapped(state->args->trans,
1607 state->args->dp, blk->disk_blkno,
1608 &blk->bp, XFS_ATTR_FORK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609 if (error)
Eric Sandeend99831f2014-06-22 15:03:54 +10001610 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611 } else {
1612 blk->bp = NULL;
1613 }
1614 }
1615
Eric Sandeend99831f2014-06-22 15:03:54 +10001616 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617}
1618
1619/*
Dave Chinner728bcaa2019-08-29 09:04:08 -07001620 * Retrieve the attribute data from a node attribute list.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621 *
1622 * This routine gets called for any attribute fork that has more than one
1623 * block, ie: both true Btree attr lists and for single-leaf-blocks with
1624 * "remote" values taking up more blocks.
Dave Chinner728bcaa2019-08-29 09:04:08 -07001625 *
1626 * Returns 0 on successful retrieval, otherwise an error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627 */
Christoph Hellwigba0f32d2005-06-21 15:36:52 +10001628STATIC int
Allison Collins07120f12020-07-20 21:47:22 -07001629xfs_attr_node_get(
1630 struct xfs_da_args *args)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631{
Allison Collins07120f12020-07-20 21:47:22 -07001632 struct xfs_da_state *state;
1633 struct xfs_da_state_blk *blk;
1634 int i;
1635 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636
Dave Chinneree732592012-11-12 22:53:53 +11001637 trace_xfs_attr_node_get(args);
1638
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639 /*
1640 * Search to see if name exists, and get back a pointer to it.
1641 */
Allison Collins07120f12020-07-20 21:47:22 -07001642 error = xfs_attr_node_hasname(args, &state);
1643 if (error != -EEXIST)
Dave Chinner728bcaa2019-08-29 09:04:08 -07001644 goto out_release;
1645
1646 /*
1647 * Get the value, local or "remote"
1648 */
1649 blk = &state->path.blk[state->path.active - 1];
Allison Collins07120f12020-07-20 21:47:22 -07001650 error = xfs_attr3_leaf_getvalue(blk->bp, args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651
1652 /*
1653 * If not in a transaction, we have to release all the buffers.
1654 */
Dave Chinner728bcaa2019-08-29 09:04:08 -07001655out_release:
Allison Collins07120f12020-07-20 21:47:22 -07001656 for (i = 0; state != NULL && i < state->path.active; i++) {
Dave Chinner1d9025e2012-06-22 18:50:14 +10001657 xfs_trans_brelse(args->trans, state->path.blk[i].bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658 state->path.blk[i].bp = NULL;
1659 }
1660
Allison Collins07120f12020-07-20 21:47:22 -07001661 if (state)
1662 xfs_da_state_free(state);
1663 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664}
Darrick J. Wong65480532019-02-01 09:08:54 -08001665
1666/* Returns true if the attribute entry name is valid. */
1667bool
1668xfs_attr_namecheck(
1669 const void *name,
1670 size_t length)
1671{
1672 /*
1673 * MAXNAMELEN includes the trailing null, but (name/length) leave it
1674 * out, so use >= for the length check.
1675 */
1676 if (length >= MAXNAMELEN)
1677 return false;
1678
1679 /* There shouldn't be any nulls here */
1680 return !memchr(name, 0, length);
1681}