blob: 6622d46ddec3890c0356dab26fbff448436584d7 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Nathan Scott7b718762005-11-02 14:58:39 +11002 * Copyright (c) 2000-2005 Silicon Graphics, Inc.
3 * All Rights Reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
Nathan Scott7b718762005-11-02 14:58:39 +11005 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License as
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * published by the Free Software Foundation.
8 *
Nathan Scott7b718762005-11-02 14:58:39 +11009 * This program is distributed in the hope that it would be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 *
Nathan Scott7b718762005-11-02 14:58:39 +110014 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write the Free Software Foundation,
16 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Linus Torvalds1da177e2005-04-16 15:20:36 -070017 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include "xfs.h"
Nathan Scotta844f452005-11-02 14:38:42 +110019#include "xfs_fs.h"
Dave Chinner70a98832013-10-23 10:36:05 +110020#include "xfs_shared.h"
Dave Chinner239880e2013-10-23 10:50:10 +110021#include "xfs_format.h"
22#include "xfs_log_format.h"
23#include "xfs_trans_resv.h"
Nathan Scotta844f452005-11-02 14:38:42 +110024#include "xfs_bit.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include "xfs_mount.h"
Darrick J. Wong3ab78df2016-08-03 11:15:38 +100026#include "xfs_defer.h"
Dave Chinner57062782013-10-15 09:17:51 +110027#include "xfs_da_format.h"
Nathan Scotta844f452005-11-02 14:38:42 +110028#include "xfs_da_btree.h"
Nathan Scotta844f452005-11-02 14:38:42 +110029#include "xfs_attr_sf.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include "xfs_inode.h"
Nathan Scotta844f452005-11-02 14:38:42 +110031#include "xfs_alloc.h"
Dave Chinner239880e2013-10-23 10:50:10 +110032#include "xfs_trans.h"
Nathan Scotta844f452005-11-02 14:38:42 +110033#include "xfs_inode_item.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include "xfs_bmap.h"
Dave Chinner68988112013-08-12 20:49:42 +100035#include "xfs_bmap_util.h"
Dave Chinnera4fbe6a2013-10-23 10:51:50 +110036#include "xfs_bmap_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include "xfs_attr.h"
38#include "xfs_attr_leaf.h"
Dave Chinner95920cd2013-04-03 16:11:27 +110039#include "xfs_attr_remote.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#include "xfs_error.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#include "xfs_quota.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#include "xfs_trans_space.h"
Christoph Hellwig0b1b2132009-12-14 23:14:59 +000043#include "xfs_trace.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
45/*
46 * xfs_attr.c
47 *
48 * Provide the external interfaces to manage attribute lists.
49 */
50
51/*========================================================================
52 * Function prototypes for the kernel.
53 *========================================================================*/
54
55/*
56 * Internal routines when attribute list fits inside the inode.
57 */
58STATIC int xfs_attr_shortform_addname(xfs_da_args_t *args);
59
60/*
61 * Internal routines when attribute list is one block.
62 */
Christoph Hellwigba0f32d2005-06-21 15:36:52 +100063STATIC int xfs_attr_leaf_get(xfs_da_args_t *args);
Linus Torvalds1da177e2005-04-16 15:20:36 -070064STATIC int xfs_attr_leaf_addname(xfs_da_args_t *args);
65STATIC int xfs_attr_leaf_removename(xfs_da_args_t *args);
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
67/*
68 * Internal routines when attribute list is more than one block.
69 */
Christoph Hellwigba0f32d2005-06-21 15:36:52 +100070STATIC int xfs_attr_node_get(xfs_da_args_t *args);
Linus Torvalds1da177e2005-04-16 15:20:36 -070071STATIC int xfs_attr_node_addname(xfs_da_args_t *args);
72STATIC int xfs_attr_node_removename(xfs_da_args_t *args);
Linus Torvalds1da177e2005-04-16 15:20:36 -070073STATIC int xfs_attr_fillstate(xfs_da_state_t *state);
74STATIC int xfs_attr_refillstate(xfs_da_state_t *state);
75
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
Barry Naujoke8b0eba2008-04-22 17:34:31 +100077STATIC int
Christoph Hellwig67fd7182014-05-13 16:34:43 +100078xfs_attr_args_init(
79 struct xfs_da_args *args,
80 struct xfs_inode *dp,
81 const unsigned char *name,
82 int flags)
Barry Naujoke8b0eba2008-04-22 17:34:31 +100083{
Christoph Hellwig67fd7182014-05-13 16:34:43 +100084
85 if (!name)
Dave Chinner24513372014-06-25 14:58:08 +100086 return -EINVAL;
Christoph Hellwig67fd7182014-05-13 16:34:43 +100087
88 memset(args, 0, sizeof(*args));
Dave Chinner0650b552014-06-06 15:01:58 +100089 args->geo = dp->i_mount->m_attr_geo;
Christoph Hellwig67fd7182014-05-13 16:34:43 +100090 args->whichfork = XFS_ATTR_FORK;
91 args->dp = dp;
92 args->flags = flags;
93 args->name = name;
94 args->namelen = strlen((const char *)name);
95 if (args->namelen >= MAXNAMELEN)
Dave Chinner24513372014-06-25 14:58:08 +100096 return -EFAULT; /* match IRIX behaviour */
Barry Naujoke8b0eba2008-04-22 17:34:31 +100097
Christoph Hellwig67fd7182014-05-13 16:34:43 +100098 args->hashval = xfs_da_hashname(args->name, args->namelen);
Barry Naujoke8b0eba2008-04-22 17:34:31 +100099 return 0;
100}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101
Dave Chinnerabec5f22013-08-12 20:49:38 +1000102int
Christoph Hellwigcaf8aab2008-06-23 13:23:41 +1000103xfs_inode_hasattr(
104 struct xfs_inode *ip)
105{
106 if (!XFS_IFORK_Q(ip) ||
107 (ip->i_d.di_aformat == XFS_DINODE_FMT_EXTENTS &&
108 ip->i_d.di_anextents == 0))
109 return 0;
110 return 1;
111}
112
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113/*========================================================================
114 * Overall external interface routines.
115 *========================================================================*/
116
Christoph Hellwigb87d0222014-05-13 16:34:24 +1000117int
118xfs_attr_get(
Christoph Hellwige82fa0c2009-11-14 16:17:20 +0000119 struct xfs_inode *ip,
Christoph Hellwigb87d0222014-05-13 16:34:24 +1000120 const unsigned char *name,
Dave Chinnera9273ca2010-01-20 10:47:48 +1100121 unsigned char *value,
Christoph Hellwige82fa0c2009-11-14 16:17:20 +0000122 int *valuelenp,
123 int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124{
Christoph Hellwigb87d0222014-05-13 16:34:24 +1000125 struct xfs_da_args args;
Christoph Hellwigb87d0222014-05-13 16:34:24 +1000126 uint lock_mode;
127 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128
Bill O'Donnellff6d6af2015-10-12 18:21:22 +1100129 XFS_STATS_INC(ip->i_mount, xs_attr_get);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 if (XFS_FORCED_SHUTDOWN(ip->i_mount))
Dave Chinner24513372014-06-25 14:58:08 +1000132 return -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133
Christoph Hellwig67fd7182014-05-13 16:34:43 +1000134 error = xfs_attr_args_init(&args, ip, name, flags);
Barry Naujoke8b0eba2008-04-22 17:34:31 +1000135 if (error)
136 return error;
137
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 args.value = value;
139 args.valuelen = *valuelenp;
Eric Sandeenc400ee32015-08-19 10:30:48 +1000140 /* Entirely possible to look up a name which doesn't exist */
141 args.op_flags = XFS_DA_OP_OKNOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142
Christoph Hellwig683cb942013-12-06 12:30:15 -0800143 lock_mode = xfs_ilock_attr_map_shared(ip);
Christoph Hellwigb87d0222014-05-13 16:34:24 +1000144 if (!xfs_inode_hasattr(ip))
Dave Chinner24513372014-06-25 14:58:08 +1000145 error = -ENOATTR;
Christoph Hellwigb87d0222014-05-13 16:34:24 +1000146 else if (ip->i_d.di_aformat == XFS_DINODE_FMT_LOCAL)
147 error = xfs_attr_shortform_getvalue(&args);
148 else if (xfs_bmap_one_block(ip, XFS_ATTR_FORK))
149 error = xfs_attr_leaf_get(&args);
150 else
151 error = xfs_attr_node_get(&args);
Christoph Hellwig683cb942013-12-06 12:30:15 -0800152 xfs_iunlock(ip, lock_mode);
Christoph Hellwigb87d0222014-05-13 16:34:24 +1000153
154 *valuelenp = args.valuelen;
Dave Chinner24513372014-06-25 14:58:08 +1000155 return error == -EEXIST ? 0 : error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156}
157
Niv Sardi5e9da7b2008-08-13 16:03:35 +1000158/*
159 * Calculate how many blocks we need for the new attribute,
160 */
Eric Sandeen5d77c0d2009-11-19 15:52:00 +0000161STATIC int
Niv Sardi5e9da7b2008-08-13 16:03:35 +1000162xfs_attr_calc_size(
Christoph Hellwig6c888af2014-05-13 16:40:19 +1000163 struct xfs_da_args *args,
Niv Sardi5e9da7b2008-08-13 16:03:35 +1000164 int *local)
165{
Christoph Hellwig6c888af2014-05-13 16:40:19 +1000166 struct xfs_mount *mp = args->dp->i_mount;
Niv Sardi5e9da7b2008-08-13 16:03:35 +1000167 int size;
168 int nblks;
169
170 /*
171 * Determine space new attribute will use, and if it would be
172 * "local" or "remote" (note: local != inline).
173 */
Dave Chinnerc59f0ad2014-06-06 15:21:27 +1000174 size = xfs_attr_leaf_newentsize(args, local);
Niv Sardi5e9da7b2008-08-13 16:03:35 +1000175 nblks = XFS_DAENTER_SPACE_RES(mp, XFS_ATTR_FORK);
176 if (*local) {
Dave Chinner33a60392014-06-06 15:21:10 +1000177 if (size > (args->geo->blksize / 2)) {
Niv Sardi5e9da7b2008-08-13 16:03:35 +1000178 /* Double split possible */
179 nblks *= 2;
180 }
181 } else {
182 /*
183 * Out of line attribute, cannot double split, but
184 * make room for the attribute value itself.
185 */
Dave Chinner2d6dcc62014-05-15 09:39:28 +1000186 uint dblocks = xfs_attr3_rmt_blocks(mp, args->valuelen);
Niv Sardi5e9da7b2008-08-13 16:03:35 +1000187 nblks += dblocks;
188 nblks += XFS_NEXTENTADD_SPACE_RES(mp, dblocks, XFS_ATTR_FORK);
189 }
190
191 return nblks;
192}
193
Christoph Hellwigc5b4ac32014-05-13 16:34:14 +1000194int
195xfs_attr_set(
196 struct xfs_inode *dp,
197 const unsigned char *name,
198 unsigned char *value,
199 int valuelen,
200 int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201{
Jie Liu3d3c8b52013-08-12 20:49:59 +1000202 struct xfs_mount *mp = dp->i_mount;
Christoph Hellwigc5b4ac32014-05-13 16:34:14 +1000203 struct xfs_da_args args;
Darrick J. Wong2c3234d2016-08-03 11:19:29 +1000204 struct xfs_defer_ops dfops;
Jie Liu3d3c8b52013-08-12 20:49:59 +1000205 struct xfs_trans_res tres;
Christoph Hellwigc5b4ac32014-05-13 16:34:14 +1000206 xfs_fsblock_t firstblock;
Jie Liu3d3c8b52013-08-12 20:49:59 +1000207 int rsvd = (flags & ATTR_ROOT) != 0;
Eric Sandeenf6106ef2016-01-11 11:34:01 +1100208 int error, err2, local;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209
Bill O'Donnellff6d6af2015-10-12 18:21:22 +1100210 XFS_STATS_INC(mp, xs_attr_set);
Christoph Hellwigc5b4ac32014-05-13 16:34:14 +1000211
212 if (XFS_FORCED_SHUTDOWN(dp->i_mount))
Dave Chinner24513372014-06-25 14:58:08 +1000213 return -EIO;
Christoph Hellwigc5b4ac32014-05-13 16:34:14 +1000214
Christoph Hellwig67fd7182014-05-13 16:34:43 +1000215 error = xfs_attr_args_init(&args, dp, name, flags);
Christoph Hellwigc5b4ac32014-05-13 16:34:14 +1000216 if (error)
217 return error;
218
Christoph Hellwig67fd7182014-05-13 16:34:43 +1000219 args.value = value;
220 args.valuelen = valuelen;
221 args.firstblock = &firstblock;
Darrick J. Wong2c3234d2016-08-03 11:19:29 +1000222 args.dfops = &dfops;
Christoph Hellwig67fd7182014-05-13 16:34:43 +1000223 args.op_flags = XFS_DA_OP_ADDNAME | XFS_DA_OP_OKNOENT;
Christoph Hellwig6c888af2014-05-13 16:40:19 +1000224 args.total = xfs_attr_calc_size(&args, &local);
Christoph Hellwig67fd7182014-05-13 16:34:43 +1000225
Christoph Hellwig7d095252009-06-08 15:33:32 +0200226 error = xfs_qm_dqattach(dp, 0);
227 if (error)
228 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229
230 /*
231 * If the inode doesn't have an attribute fork, add one.
232 * (inode must not be locked when we call this routine)
233 */
234 if (XFS_IFORK_Q(dp) == 0) {
Barry Naujoke5889e92007-02-10 18:35:58 +1100235 int sf_size = sizeof(xfs_attr_sf_hdr_t) +
Christoph Hellwig67fd7182014-05-13 16:34:43 +1000236 XFS_ATTR_SF_ENTSIZE_BYNAME(args.namelen, valuelen);
Barry Naujoke5889e92007-02-10 18:35:58 +1100237
Christoph Hellwigc5b4ac32014-05-13 16:34:14 +1000238 error = xfs_bmap_add_attrfork(dp, sf_size, rsvd);
239 if (error)
240 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 }
242
Christoph Hellwig253f4912016-04-06 09:19:55 +1000243 tres.tr_logres = M_RES(mp)->tr_attrsetm.tr_logres +
244 M_RES(mp)->tr_attrsetrt.tr_logres * args.total;
245 tres.tr_logcount = XFS_ATTRSET_LOG_COUNT;
246 tres.tr_logflags = XFS_TRANS_PERM_LOG_RES;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247
248 /*
249 * Root fork attributes can use reserved data blocks for this
250 * operation if necessary
251 */
Christoph Hellwig253f4912016-04-06 09:19:55 +1000252 error = xfs_trans_alloc(mp, &tres, args.total, 0,
253 rsvd ? XFS_TRANS_RESERVE : 0, &args.trans);
254 if (error)
Christoph Hellwigc5b4ac32014-05-13 16:34:14 +1000255 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256
Christoph Hellwig253f4912016-04-06 09:19:55 +1000257 xfs_ilock(dp, XFS_ILOCK_EXCL);
Christoph Hellwig7d095252009-06-08 15:33:32 +0200258 error = xfs_trans_reserve_quota_nblks(args.trans, dp, args.total, 0,
Niv Sardi5e9da7b2008-08-13 16:03:35 +1000259 rsvd ? XFS_QMOPT_RES_REGBLKS | XFS_QMOPT_FORCE_RES :
260 XFS_QMOPT_RES_REGBLKS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 if (error) {
262 xfs_iunlock(dp, XFS_ILOCK_EXCL);
Christoph Hellwig4906e212015-06-04 13:47:56 +1000263 xfs_trans_cancel(args.trans);
Christoph Hellwigc5b4ac32014-05-13 16:34:14 +1000264 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 }
266
Christoph Hellwigddc34152011-09-19 15:00:54 +0000267 xfs_trans_ijoin(args.trans, dp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268
269 /*
Nathan Scottc41564b2006-03-29 08:55:14 +1000270 * If the attribute list is non-existent or a shortform list,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 * upgrade it to a single-leaf-block attribute list.
272 */
Christoph Hellwigc5b4ac32014-05-13 16:34:14 +1000273 if (dp->i_d.di_aformat == XFS_DINODE_FMT_LOCAL ||
274 (dp->i_d.di_aformat == XFS_DINODE_FMT_EXTENTS &&
275 dp->i_d.di_anextents == 0)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276
277 /*
278 * Build initial attribute list (if required).
279 */
280 if (dp->i_d.di_aformat == XFS_DINODE_FMT_EXTENTS)
Nathan Scottd8cc8902005-11-02 10:34:53 +1100281 xfs_attr_shortform_create(&args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282
283 /*
284 * Try to add the attr to the attribute list in
285 * the inode.
286 */
287 error = xfs_attr_shortform_addname(&args);
Dave Chinner24513372014-06-25 14:58:08 +1000288 if (error != -ENOSPC) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 /*
290 * Commit the shortform mods, and we're done.
291 * NOTE: this is also the error path (EEXIST, etc).
292 */
293 ASSERT(args.trans != NULL);
294
295 /*
296 * If this is a synchronous mount, make sure that
297 * the transaction goes to disk before returning
298 * to the user.
299 */
Christoph Hellwigc5b4ac32014-05-13 16:34:14 +1000300 if (mp->m_flags & XFS_MOUNT_WSYNC)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 xfs_trans_set_sync(args.trans);
Dave Chinnerdcd79a12010-09-28 12:27:25 +1000302
303 if (!error && (flags & ATTR_KERNOTIME) == 0) {
304 xfs_trans_ichgtime(args.trans, dp,
305 XFS_ICHGTIME_CHG);
306 }
Christoph Hellwig70393312015-06-04 13:48:08 +1000307 err2 = xfs_trans_commit(args.trans);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 xfs_iunlock(dp, XFS_ILOCK_EXCL);
309
Christoph Hellwigc5b4ac32014-05-13 16:34:14 +1000310 return error ? error : err2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 }
312
313 /*
314 * It won't fit in the shortform, transform to a leaf block.
315 * GROT: another possible req'mt for a double-split btree op.
316 */
Darrick J. Wong2c3234d2016-08-03 11:19:29 +1000317 xfs_defer_init(args.dfops, args.firstblock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 error = xfs_attr_shortform_to_leaf(&args);
Eric Sandeenf6106ef2016-01-11 11:34:01 +1100319 if (!error)
Darrick J. Wong2c3234d2016-08-03 11:19:29 +1000320 error = xfs_defer_finish(&args.trans, args.dfops, dp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 args.trans = NULL;
Darrick J. Wong2c3234d2016-08-03 11:19:29 +1000323 xfs_defer_cancel(&dfops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 goto out;
325 }
326
327 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 * Commit the leaf transformation. We'll need another (linked)
329 * transaction to add the new attribute to the leaf.
330 */
Niv Sardi322ff6b2008-08-13 16:05:49 +1000331
332 error = xfs_trans_roll(&args.trans, dp);
333 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 goto out;
335
336 }
337
Christoph Hellwigc5b4ac32014-05-13 16:34:14 +1000338 if (xfs_bmap_one_block(dp, XFS_ATTR_FORK))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 error = xfs_attr_leaf_addname(&args);
Christoph Hellwigc5b4ac32014-05-13 16:34:14 +1000340 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 error = xfs_attr_node_addname(&args);
Christoph Hellwigc5b4ac32014-05-13 16:34:14 +1000342 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344
345 /*
346 * If this is a synchronous mount, make sure that the
347 * transaction goes to disk before returning to the user.
348 */
Christoph Hellwigc5b4ac32014-05-13 16:34:14 +1000349 if (mp->m_flags & XFS_MOUNT_WSYNC)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 xfs_trans_set_sync(args.trans);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351
Dave Chinnerdcd79a12010-09-28 12:27:25 +1000352 if ((flags & ATTR_KERNOTIME) == 0)
353 xfs_trans_ichgtime(args.trans, dp, XFS_ICHGTIME_CHG);
354
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 /*
356 * Commit the last in the sequence of transactions.
357 */
358 xfs_trans_log_inode(args.trans, dp, XFS_ILOG_CORE);
Christoph Hellwig70393312015-06-04 13:48:08 +1000359 error = xfs_trans_commit(args.trans);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 xfs_iunlock(dp, XFS_ILOCK_EXCL);
361
Christoph Hellwigc5b4ac32014-05-13 16:34:14 +1000362 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363
364out:
Christoph Hellwig4906e212015-06-04 13:47:56 +1000365 if (args.trans)
366 xfs_trans_cancel(args.trans);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 xfs_iunlock(dp, XFS_ILOCK_EXCL);
Christoph Hellwigc5b4ac32014-05-13 16:34:14 +1000368 return error;
Nathan Scottaa82daa2005-11-02 10:33:33 +1100369}
370
371/*
372 * Generic handler routine to remove a name from an attribute list.
373 * Transitions attribute list from Btree to shortform as necessary.
374 */
Christoph Hellwig1bc426a2014-05-13 16:34:33 +1000375int
376xfs_attr_remove(
377 struct xfs_inode *dp,
378 const unsigned char *name,
379 int flags)
Nathan Scottaa82daa2005-11-02 10:33:33 +1100380{
Christoph Hellwig1bc426a2014-05-13 16:34:33 +1000381 struct xfs_mount *mp = dp->i_mount;
382 struct xfs_da_args args;
Darrick J. Wong2c3234d2016-08-03 11:19:29 +1000383 struct xfs_defer_ops dfops;
Christoph Hellwig1bc426a2014-05-13 16:34:33 +1000384 xfs_fsblock_t firstblock;
385 int error;
Nathan Scottaa82daa2005-11-02 10:33:33 +1100386
Bill O'Donnellff6d6af2015-10-12 18:21:22 +1100387 XFS_STATS_INC(mp, xs_attr_remove);
Christoph Hellwig1bc426a2014-05-13 16:34:33 +1000388
389 if (XFS_FORCED_SHUTDOWN(dp->i_mount))
Dave Chinner24513372014-06-25 14:58:08 +1000390 return -EIO;
Christoph Hellwig1bc426a2014-05-13 16:34:33 +1000391
Christoph Hellwig67fd7182014-05-13 16:34:43 +1000392 error = xfs_attr_args_init(&args, dp, name, flags);
Christoph Hellwig1bc426a2014-05-13 16:34:33 +1000393 if (error)
394 return error;
395
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 args.firstblock = &firstblock;
Darrick J. Wong2c3234d2016-08-03 11:19:29 +1000397 args.dfops = &dfops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398
399 /*
Dave Chinner4a338212011-06-23 01:35:01 +0000400 * we have no control over the attribute names that userspace passes us
401 * to remove, so we have to allow the name lookup prior to attribute
402 * removal to fail.
403 */
404 args.op_flags = XFS_DA_OP_OKNOENT;
405
Christoph Hellwig7d095252009-06-08 15:33:32 +0200406 error = xfs_qm_dqattach(dp, 0);
407 if (error)
408 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409
410 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 * Root fork attributes can use reserved data blocks for this
412 * operation if necessary
413 */
Christoph Hellwig253f4912016-04-06 09:19:55 +1000414 error = xfs_trans_alloc(mp, &M_RES(mp)->tr_attrrm,
415 XFS_ATTRRM_SPACE_RES(mp), 0,
416 (flags & ATTR_ROOT) ? XFS_TRANS_RESERVE : 0,
417 &args.trans);
418 if (error)
Christoph Hellwig1bc426a2014-05-13 16:34:33 +1000419 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420
421 xfs_ilock(dp, XFS_ILOCK_EXCL);
422 /*
423 * No need to make quota reservations here. We expect to release some
424 * blocks not allocate in the common case.
425 */
Christoph Hellwigddc34152011-09-19 15:00:54 +0000426 xfs_trans_ijoin(args.trans, dp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427
Christoph Hellwigcaf8aab2008-06-23 13:23:41 +1000428 if (!xfs_inode_hasattr(dp)) {
Dave Chinner24513372014-06-25 14:58:08 +1000429 error = -ENOATTR;
Christoph Hellwig1bc426a2014-05-13 16:34:33 +1000430 } else if (dp->i_d.di_aformat == XFS_DINODE_FMT_LOCAL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 ASSERT(dp->i_afp->if_flags & XFS_IFINLINE);
432 error = xfs_attr_shortform_remove(&args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 } else if (xfs_bmap_one_block(dp, XFS_ATTR_FORK)) {
434 error = xfs_attr_leaf_removename(&args);
435 } else {
436 error = xfs_attr_node_removename(&args);
437 }
Christoph Hellwig1bc426a2014-05-13 16:34:33 +1000438
439 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441
442 /*
443 * If this is a synchronous mount, make sure that the
444 * transaction goes to disk before returning to the user.
445 */
Christoph Hellwig1bc426a2014-05-13 16:34:33 +1000446 if (mp->m_flags & XFS_MOUNT_WSYNC)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 xfs_trans_set_sync(args.trans);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448
Dave Chinnerdcd79a12010-09-28 12:27:25 +1000449 if ((flags & ATTR_KERNOTIME) == 0)
450 xfs_trans_ichgtime(args.trans, dp, XFS_ICHGTIME_CHG);
451
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 /*
453 * Commit the last in the sequence of transactions.
454 */
455 xfs_trans_log_inode(args.trans, dp, XFS_ILOG_CORE);
Christoph Hellwig70393312015-06-04 13:48:08 +1000456 error = xfs_trans_commit(args.trans);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 xfs_iunlock(dp, XFS_ILOCK_EXCL);
458
Christoph Hellwig1bc426a2014-05-13 16:34:33 +1000459 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460
461out:
Christoph Hellwig4906e212015-06-04 13:47:56 +1000462 if (args.trans)
463 xfs_trans_cancel(args.trans);
Christoph Hellwig1bc426a2014-05-13 16:34:33 +1000464 xfs_iunlock(dp, XFS_ILOCK_EXCL);
465 return error;
Nathan Scottaa82daa2005-11-02 10:33:33 +1100466}
467
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468/*========================================================================
469 * External routines when attribute list is inside the inode
470 *========================================================================*/
471
472/*
473 * Add a name to the shortform attribute list structure
474 * This is the external routine.
475 */
476STATIC int
477xfs_attr_shortform_addname(xfs_da_args_t *args)
478{
Nathan Scottd8cc8902005-11-02 10:34:53 +1100479 int newsize, forkoff, retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480
Dave Chinner5a5881c2012-03-22 05:15:13 +0000481 trace_xfs_attr_sf_addname(args);
482
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 retval = xfs_attr_shortform_lookup(args);
Dave Chinner24513372014-06-25 14:58:08 +1000484 if ((args->flags & ATTR_REPLACE) && (retval == -ENOATTR)) {
Eric Sandeend99831f2014-06-22 15:03:54 +1000485 return retval;
Dave Chinner24513372014-06-25 14:58:08 +1000486 } else if (retval == -EEXIST) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 if (args->flags & ATTR_CREATE)
Eric Sandeend99831f2014-06-22 15:03:54 +1000488 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 retval = xfs_attr_shortform_remove(args);
490 ASSERT(retval == 0);
491 }
492
Nathan Scottd8cc8902005-11-02 10:34:53 +1100493 if (args->namelen >= XFS_ATTR_SF_ENTSIZE_MAX ||
494 args->valuelen >= XFS_ATTR_SF_ENTSIZE_MAX)
Dave Chinner24513372014-06-25 14:58:08 +1000495 return -ENOSPC;
Nathan Scottd8cc8902005-11-02 10:34:53 +1100496
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 newsize = XFS_ATTR_SF_TOTSIZE(args->dp);
498 newsize += XFS_ATTR_SF_ENTSIZE_BYNAME(args->namelen, args->valuelen);
Nathan Scottd8cc8902005-11-02 10:34:53 +1100499
500 forkoff = xfs_attr_shortform_bytesfit(args->dp, newsize);
501 if (!forkoff)
Dave Chinner24513372014-06-25 14:58:08 +1000502 return -ENOSPC;
Nathan Scottd8cc8902005-11-02 10:34:53 +1100503
504 xfs_attr_shortform_add(args, forkoff);
Eric Sandeend99831f2014-06-22 15:03:54 +1000505 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506}
507
508
509/*========================================================================
510 * External routines when attribute list is one block
511 *========================================================================*/
512
513/*
514 * Add a name to the leaf attribute list structure
515 *
516 * This leaf block cannot have a "remote" value, we only call this routine
517 * if bmap_one_block() says there is only one block (ie: no remote blks).
518 */
David Chinnera8272ce2007-11-23 16:28:09 +1100519STATIC int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520xfs_attr_leaf_addname(xfs_da_args_t *args)
521{
522 xfs_inode_t *dp;
Dave Chinner1d9025e2012-06-22 18:50:14 +1000523 struct xfs_buf *bp;
Eric Sandeenf6106ef2016-01-11 11:34:01 +1100524 int retval, error, forkoff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525
Dave Chinner5a5881c2012-03-22 05:15:13 +0000526 trace_xfs_attr_leaf_addname(args);
527
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 /*
529 * Read the (only) block in the attribute list in.
530 */
531 dp = args->dp;
532 args->blkno = 0;
Dave Chinner517c2222013-04-24 18:58:55 +1000533 error = xfs_attr3_leaf_read(args->trans, args->dp, args->blkno, -1, &bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 if (error)
Dave Chinnerad14c332012-11-12 22:54:16 +1100535 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536
537 /*
538 * Look up the given attribute in the leaf block. Figure out if
539 * the given flags produce an error or call for an atomic rename.
540 */
Dave Chinner517c2222013-04-24 18:58:55 +1000541 retval = xfs_attr3_leaf_lookup_int(bp, args);
Dave Chinner24513372014-06-25 14:58:08 +1000542 if ((args->flags & ATTR_REPLACE) && (retval == -ENOATTR)) {
Dave Chinner1d9025e2012-06-22 18:50:14 +1000543 xfs_trans_brelse(args->trans, bp);
Dave Chinner517c2222013-04-24 18:58:55 +1000544 return retval;
Dave Chinner24513372014-06-25 14:58:08 +1000545 } else if (retval == -EEXIST) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 if (args->flags & ATTR_CREATE) { /* pure create op */
Dave Chinner1d9025e2012-06-22 18:50:14 +1000547 xfs_trans_brelse(args->trans, bp);
Dave Chinner517c2222013-04-24 18:58:55 +1000548 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 }
Dave Chinner5a5881c2012-03-22 05:15:13 +0000550
551 trace_xfs_attr_leaf_replace(args);
552
Dave Chinner8275cdd2014-05-06 07:37:31 +1000553 /* save the attribute state for later removal*/
Barry Naujok6a178102008-05-21 16:42:05 +1000554 args->op_flags |= XFS_DA_OP_RENAME; /* an atomic rename */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 args->blkno2 = args->blkno; /* set 2nd entry info*/
556 args->index2 = args->index;
557 args->rmtblkno2 = args->rmtblkno;
558 args->rmtblkcnt2 = args->rmtblkcnt;
Dave Chinner8275cdd2014-05-06 07:37:31 +1000559 args->rmtvaluelen2 = args->rmtvaluelen;
560
561 /*
562 * clear the remote attr state now that it is saved so that the
563 * values reflect the state of the attribute we are about to
564 * add, not the attribute we just found and will remove later.
565 */
566 args->rmtblkno = 0;
567 args->rmtblkcnt = 0;
568 args->rmtvaluelen = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 }
570
571 /*
572 * Add the attribute to the leaf block, transitioning to a Btree
573 * if required.
574 */
Dave Chinner517c2222013-04-24 18:58:55 +1000575 retval = xfs_attr3_leaf_add(bp, args);
Dave Chinner24513372014-06-25 14:58:08 +1000576 if (retval == -ENOSPC) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 /*
578 * Promote the attribute list to the Btree format, then
579 * Commit that transaction so that the node_addname() call
580 * can manage its own transactions.
581 */
Darrick J. Wong2c3234d2016-08-03 11:19:29 +1000582 xfs_defer_init(args->dfops, args->firstblock);
Dave Chinner517c2222013-04-24 18:58:55 +1000583 error = xfs_attr3_leaf_to_node(args);
Eric Sandeenf6106ef2016-01-11 11:34:01 +1100584 if (!error)
Darrick J. Wong2c3234d2016-08-03 11:19:29 +1000585 error = xfs_defer_finish(&args->trans, args->dfops, dp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 args->trans = NULL;
Darrick J. Wong2c3234d2016-08-03 11:19:29 +1000588 xfs_defer_cancel(args->dfops);
Eric Sandeend99831f2014-06-22 15:03:54 +1000589 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 }
591
592 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 * Commit the current trans (including the inode) and start
594 * a new one.
595 */
Niv Sardi322ff6b2008-08-13 16:05:49 +1000596 error = xfs_trans_roll(&args->trans, dp);
597 if (error)
Eric Sandeend99831f2014-06-22 15:03:54 +1000598 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599
600 /*
601 * Fob the whole rest of the problem off on the Btree code.
602 */
603 error = xfs_attr_node_addname(args);
Eric Sandeend99831f2014-06-22 15:03:54 +1000604 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 }
606
607 /*
608 * Commit the transaction that added the attr name so that
609 * later routines can manage their own transactions.
610 */
Niv Sardi322ff6b2008-08-13 16:05:49 +1000611 error = xfs_trans_roll(&args->trans, dp);
612 if (error)
Eric Sandeend99831f2014-06-22 15:03:54 +1000613 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614
615 /*
616 * If there was an out-of-line value, allocate the blocks we
617 * identified for its storage and copy the value. This is done
618 * after we create the attribute so that we don't overflow the
619 * maximum size of a transaction and/or hit a deadlock.
620 */
621 if (args->rmtblkno > 0) {
622 error = xfs_attr_rmtval_set(args);
623 if (error)
Eric Sandeend99831f2014-06-22 15:03:54 +1000624 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 }
626
627 /*
628 * If this is an atomic rename operation, we must "flip" the
629 * incomplete flags on the "new" and "old" attribute/value pairs
630 * so that one disappears and one appears atomically. Then we
631 * must remove the "old" attribute/value pair.
632 */
Barry Naujok6a178102008-05-21 16:42:05 +1000633 if (args->op_flags & XFS_DA_OP_RENAME) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 /*
635 * In a separate transaction, set the incomplete flag on the
636 * "old" attr and clear the incomplete flag on the "new" attr.
637 */
Dave Chinner517c2222013-04-24 18:58:55 +1000638 error = xfs_attr3_leaf_flipflags(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 if (error)
Eric Sandeend99831f2014-06-22 15:03:54 +1000640 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641
642 /*
643 * Dismantle the "old" attribute/value pair by removing
644 * a "remote" value (if it exists).
645 */
646 args->index = args->index2;
647 args->blkno = args->blkno2;
648 args->rmtblkno = args->rmtblkno2;
649 args->rmtblkcnt = args->rmtblkcnt2;
Dave Chinner8275cdd2014-05-06 07:37:31 +1000650 args->rmtvaluelen = args->rmtvaluelen2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 if (args->rmtblkno) {
652 error = xfs_attr_rmtval_remove(args);
653 if (error)
Eric Sandeend99831f2014-06-22 15:03:54 +1000654 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 }
656
657 /*
658 * Read in the block containing the "old" attr, then
659 * remove the "old" attr from that block (neat, huh!)
660 */
Dave Chinner517c2222013-04-24 18:58:55 +1000661 error = xfs_attr3_leaf_read(args->trans, args->dp, args->blkno,
Dave Chinnerad14c332012-11-12 22:54:16 +1100662 -1, &bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 if (error)
Dave Chinnerad14c332012-11-12 22:54:16 +1100664 return error;
665
Dave Chinner517c2222013-04-24 18:58:55 +1000666 xfs_attr3_leaf_remove(bp, args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667
668 /*
669 * If the result is small enough, shrink it all into the inode.
670 */
Nathan Scottd8cc8902005-11-02 10:34:53 +1100671 if ((forkoff = xfs_attr_shortform_allfit(bp, dp))) {
Darrick J. Wong2c3234d2016-08-03 11:19:29 +1000672 xfs_defer_init(args->dfops, args->firstblock);
Dave Chinner517c2222013-04-24 18:58:55 +1000673 error = xfs_attr3_leaf_to_shortform(bp, args, forkoff);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 /* bp is gone due to xfs_da_shrink_inode */
Eric Sandeenf6106ef2016-01-11 11:34:01 +1100675 if (!error)
Darrick J. Wong310a75a2016-08-03 11:18:10 +1000676 error = xfs_defer_finish(&args->trans,
Darrick J. Wong2c3234d2016-08-03 11:19:29 +1000677 args->dfops, dp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 args->trans = NULL;
Darrick J. Wong2c3234d2016-08-03 11:19:29 +1000680 xfs_defer_cancel(args->dfops);
Eric Sandeend99831f2014-06-22 15:03:54 +1000681 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 }
Dave Chinner1d9025e2012-06-22 18:50:14 +1000683 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684
685 /*
686 * Commit the remove and start the next trans in series.
687 */
Niv Sardi322ff6b2008-08-13 16:05:49 +1000688 error = xfs_trans_roll(&args->trans, dp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689
690 } else if (args->rmtblkno > 0) {
691 /*
692 * Added a "remote" value, just clear the incomplete flag.
693 */
Dave Chinner517c2222013-04-24 18:58:55 +1000694 error = xfs_attr3_leaf_clearflag(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 }
Dave Chinner517c2222013-04-24 18:58:55 +1000696 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697}
698
699/*
700 * Remove a name from the leaf attribute list structure
701 *
702 * This leaf block cannot have a "remote" value, we only call this routine
703 * if bmap_one_block() says there is only one block (ie: no remote blks).
704 */
705STATIC int
706xfs_attr_leaf_removename(xfs_da_args_t *args)
707{
708 xfs_inode_t *dp;
Dave Chinner1d9025e2012-06-22 18:50:14 +1000709 struct xfs_buf *bp;
Eric Sandeenf6106ef2016-01-11 11:34:01 +1100710 int error, forkoff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711
Dave Chinner5a5881c2012-03-22 05:15:13 +0000712 trace_xfs_attr_leaf_removename(args);
713
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 /*
715 * Remove the attribute.
716 */
717 dp = args->dp;
718 args->blkno = 0;
Dave Chinner517c2222013-04-24 18:58:55 +1000719 error = xfs_attr3_leaf_read(args->trans, args->dp, args->blkno, -1, &bp);
Dave Chinnerad14c332012-11-12 22:54:16 +1100720 if (error)
721 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722
Dave Chinner517c2222013-04-24 18:58:55 +1000723 error = xfs_attr3_leaf_lookup_int(bp, args);
Dave Chinner24513372014-06-25 14:58:08 +1000724 if (error == -ENOATTR) {
Dave Chinner1d9025e2012-06-22 18:50:14 +1000725 xfs_trans_brelse(args->trans, bp);
Dave Chinner517c2222013-04-24 18:58:55 +1000726 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 }
728
Dave Chinner517c2222013-04-24 18:58:55 +1000729 xfs_attr3_leaf_remove(bp, args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730
731 /*
732 * If the result is small enough, shrink it all into the inode.
733 */
Nathan Scottd8cc8902005-11-02 10:34:53 +1100734 if ((forkoff = xfs_attr_shortform_allfit(bp, dp))) {
Darrick J. Wong2c3234d2016-08-03 11:19:29 +1000735 xfs_defer_init(args->dfops, args->firstblock);
Dave Chinner517c2222013-04-24 18:58:55 +1000736 error = xfs_attr3_leaf_to_shortform(bp, args, forkoff);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 /* bp is gone due to xfs_da_shrink_inode */
Eric Sandeenf6106ef2016-01-11 11:34:01 +1100738 if (!error)
Darrick J. Wong2c3234d2016-08-03 11:19:29 +1000739 error = xfs_defer_finish(&args->trans, args->dfops, dp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 args->trans = NULL;
Darrick J. Wong2c3234d2016-08-03 11:19:29 +1000742 xfs_defer_cancel(args->dfops);
Dave Chinner517c2222013-04-24 18:58:55 +1000743 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 }
Dave Chinner1d9025e2012-06-22 18:50:14 +1000745 }
Dave Chinner517c2222013-04-24 18:58:55 +1000746 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747}
748
749/*
750 * Look up a name in a leaf attribute list structure.
751 *
752 * This leaf block cannot have a "remote" value, we only call this routine
753 * if bmap_one_block() says there is only one block (ie: no remote blks).
754 */
Christoph Hellwigba0f32d2005-06-21 15:36:52 +1000755STATIC int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756xfs_attr_leaf_get(xfs_da_args_t *args)
757{
Dave Chinner1d9025e2012-06-22 18:50:14 +1000758 struct xfs_buf *bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 int error;
760
Dave Chinneree732592012-11-12 22:53:53 +1100761 trace_xfs_attr_leaf_get(args);
762
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 args->blkno = 0;
Dave Chinner517c2222013-04-24 18:58:55 +1000764 error = xfs_attr3_leaf_read(args->trans, args->dp, args->blkno, -1, &bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 if (error)
Dave Chinnerad14c332012-11-12 22:54:16 +1100766 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767
Dave Chinner517c2222013-04-24 18:58:55 +1000768 error = xfs_attr3_leaf_lookup_int(bp, args);
Dave Chinner24513372014-06-25 14:58:08 +1000769 if (error != -EEXIST) {
Dave Chinner1d9025e2012-06-22 18:50:14 +1000770 xfs_trans_brelse(args->trans, bp);
Dave Chinner517c2222013-04-24 18:58:55 +1000771 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 }
Dave Chinner517c2222013-04-24 18:58:55 +1000773 error = xfs_attr3_leaf_getvalue(bp, args);
Dave Chinner1d9025e2012-06-22 18:50:14 +1000774 xfs_trans_brelse(args->trans, bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 if (!error && (args->rmtblkno > 0) && !(args->flags & ATTR_KERNOVAL)) {
776 error = xfs_attr_rmtval_get(args);
777 }
Dave Chinner517c2222013-04-24 18:58:55 +1000778 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779}
780
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781/*========================================================================
Dave Chinnerc2c4c472014-06-06 15:21:45 +1000782 * External routines when attribute list size > geo->blksize
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 *========================================================================*/
784
785/*
786 * Add a name to a Btree-format attribute list.
787 *
788 * This will involve walking down the Btree, and may involve splitting
789 * leaf nodes and even splitting intermediate nodes up to and including
790 * the root node (a special case of an intermediate node).
791 *
792 * "Remote" attribute values confuse the issue and atomic rename operations
793 * add a whole extra layer of confusion on top of that.
794 */
795STATIC int
796xfs_attr_node_addname(xfs_da_args_t *args)
797{
798 xfs_da_state_t *state;
799 xfs_da_state_blk_t *blk;
800 xfs_inode_t *dp;
801 xfs_mount_t *mp;
Eric Sandeenf6106ef2016-01-11 11:34:01 +1100802 int retval, error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803
Dave Chinner5a5881c2012-03-22 05:15:13 +0000804 trace_xfs_attr_node_addname(args);
805
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 /*
807 * Fill in bucket of arguments/results/context to carry around.
808 */
809 dp = args->dp;
810 mp = dp->i_mount;
811restart:
812 state = xfs_da_state_alloc();
813 state->args = args;
814 state->mp = mp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815
816 /*
817 * Search to see if name already exists, and get back a pointer
818 * to where it should go.
819 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000820 error = xfs_da3_node_lookup_int(state, &retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 if (error)
822 goto out;
823 blk = &state->path.blk[ state->path.active-1 ];
824 ASSERT(blk->magic == XFS_ATTR_LEAF_MAGIC);
Dave Chinner24513372014-06-25 14:58:08 +1000825 if ((args->flags & ATTR_REPLACE) && (retval == -ENOATTR)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 goto out;
Dave Chinner24513372014-06-25 14:58:08 +1000827 } else if (retval == -EEXIST) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 if (args->flags & ATTR_CREATE)
829 goto out;
Dave Chinner5a5881c2012-03-22 05:15:13 +0000830
831 trace_xfs_attr_node_replace(args);
832
Dave Chinner8275cdd2014-05-06 07:37:31 +1000833 /* save the attribute state for later removal*/
Barry Naujok6a178102008-05-21 16:42:05 +1000834 args->op_flags |= XFS_DA_OP_RENAME; /* atomic rename op */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 args->blkno2 = args->blkno; /* set 2nd entry info*/
836 args->index2 = args->index;
837 args->rmtblkno2 = args->rmtblkno;
838 args->rmtblkcnt2 = args->rmtblkcnt;
Dave Chinner8275cdd2014-05-06 07:37:31 +1000839 args->rmtvaluelen2 = args->rmtvaluelen;
840
841 /*
842 * clear the remote attr state now that it is saved so that the
843 * values reflect the state of the attribute we are about to
844 * add, not the attribute we just found and will remove later.
845 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 args->rmtblkno = 0;
847 args->rmtblkcnt = 0;
Dave Chinner8275cdd2014-05-06 07:37:31 +1000848 args->rmtvaluelen = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 }
850
Dave Chinner517c2222013-04-24 18:58:55 +1000851 retval = xfs_attr3_leaf_add(blk->bp, state->args);
Dave Chinner24513372014-06-25 14:58:08 +1000852 if (retval == -ENOSPC) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 if (state->path.active == 1) {
854 /*
855 * Its really a single leaf node, but it had
856 * out-of-line values so it looked like it *might*
857 * have been a b-tree.
858 */
859 xfs_da_state_free(state);
Eric Sandeen6dd93e92013-07-31 20:18:54 -0500860 state = NULL;
Darrick J. Wong2c3234d2016-08-03 11:19:29 +1000861 xfs_defer_init(args->dfops, args->firstblock);
Dave Chinner517c2222013-04-24 18:58:55 +1000862 error = xfs_attr3_leaf_to_node(args);
Eric Sandeenf6106ef2016-01-11 11:34:01 +1100863 if (!error)
Darrick J. Wong310a75a2016-08-03 11:18:10 +1000864 error = xfs_defer_finish(&args->trans,
Darrick J. Wong2c3234d2016-08-03 11:19:29 +1000865 args->dfops, dp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 args->trans = NULL;
Darrick J. Wong2c3234d2016-08-03 11:19:29 +1000868 xfs_defer_cancel(args->dfops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 goto out;
870 }
871
872 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 * Commit the node conversion and start the next
874 * trans in the chain.
875 */
Niv Sardi322ff6b2008-08-13 16:05:49 +1000876 error = xfs_trans_roll(&args->trans, dp);
877 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878 goto out;
879
880 goto restart;
881 }
882
883 /*
884 * Split as many Btree elements as required.
885 * This code tracks the new and old attr's location
886 * in the index/blkno/rmtblkno/rmtblkcnt fields and
887 * in the index2/blkno2/rmtblkno2/rmtblkcnt2 fields.
888 */
Darrick J. Wong2c3234d2016-08-03 11:19:29 +1000889 xfs_defer_init(args->dfops, args->firstblock);
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000890 error = xfs_da3_split(state);
Eric Sandeenf6106ef2016-01-11 11:34:01 +1100891 if (!error)
Darrick J. Wong2c3234d2016-08-03 11:19:29 +1000892 error = xfs_defer_finish(&args->trans, args->dfops, dp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 args->trans = NULL;
Darrick J. Wong2c3234d2016-08-03 11:19:29 +1000895 xfs_defer_cancel(args->dfops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 goto out;
897 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 } else {
899 /*
900 * Addition succeeded, update Btree hashvals.
901 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000902 xfs_da3_fixhashpath(state, &state->path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 }
904
905 /*
906 * Kill the state structure, we're done with it and need to
907 * allow the buffers to come back later.
908 */
909 xfs_da_state_free(state);
910 state = NULL;
911
912 /*
913 * Commit the leaf addition or btree split and start the next
914 * trans in the chain.
915 */
Niv Sardi322ff6b2008-08-13 16:05:49 +1000916 error = xfs_trans_roll(&args->trans, dp);
917 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918 goto out;
919
920 /*
921 * If there was an out-of-line value, allocate the blocks we
922 * identified for its storage and copy the value. This is done
923 * after we create the attribute so that we don't overflow the
924 * maximum size of a transaction and/or hit a deadlock.
925 */
926 if (args->rmtblkno > 0) {
927 error = xfs_attr_rmtval_set(args);
928 if (error)
Eric Sandeend99831f2014-06-22 15:03:54 +1000929 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 }
931
932 /*
933 * If this is an atomic rename operation, we must "flip" the
934 * incomplete flags on the "new" and "old" attribute/value pairs
935 * so that one disappears and one appears atomically. Then we
936 * must remove the "old" attribute/value pair.
937 */
Barry Naujok6a178102008-05-21 16:42:05 +1000938 if (args->op_flags & XFS_DA_OP_RENAME) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939 /*
940 * In a separate transaction, set the incomplete flag on the
941 * "old" attr and clear the incomplete flag on the "new" attr.
942 */
Dave Chinner517c2222013-04-24 18:58:55 +1000943 error = xfs_attr3_leaf_flipflags(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944 if (error)
945 goto out;
946
947 /*
948 * Dismantle the "old" attribute/value pair by removing
949 * a "remote" value (if it exists).
950 */
951 args->index = args->index2;
952 args->blkno = args->blkno2;
953 args->rmtblkno = args->rmtblkno2;
954 args->rmtblkcnt = args->rmtblkcnt2;
Dave Chinner8275cdd2014-05-06 07:37:31 +1000955 args->rmtvaluelen = args->rmtvaluelen2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956 if (args->rmtblkno) {
957 error = xfs_attr_rmtval_remove(args);
958 if (error)
Eric Sandeend99831f2014-06-22 15:03:54 +1000959 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960 }
961
962 /*
963 * Re-find the "old" attribute entry after any split ops.
964 * The INCOMPLETE flag means that we will find the "old"
965 * attr, not the "new" one.
966 */
967 args->flags |= XFS_ATTR_INCOMPLETE;
968 state = xfs_da_state_alloc();
969 state->args = args;
970 state->mp = mp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971 state->inleaf = 0;
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000972 error = xfs_da3_node_lookup_int(state, &retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973 if (error)
974 goto out;
975
976 /*
977 * Remove the name and update the hashvals in the tree.
978 */
979 blk = &state->path.blk[ state->path.active-1 ];
980 ASSERT(blk->magic == XFS_ATTR_LEAF_MAGIC);
Dave Chinner517c2222013-04-24 18:58:55 +1000981 error = xfs_attr3_leaf_remove(blk->bp, args);
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000982 xfs_da3_fixhashpath(state, &state->path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983
984 /*
985 * Check to see if the tree needs to be collapsed.
986 */
987 if (retval && (state->path.active > 1)) {
Darrick J. Wong2c3234d2016-08-03 11:19:29 +1000988 xfs_defer_init(args->dfops, args->firstblock);
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000989 error = xfs_da3_join(state);
Eric Sandeenf6106ef2016-01-11 11:34:01 +1100990 if (!error)
Darrick J. Wong310a75a2016-08-03 11:18:10 +1000991 error = xfs_defer_finish(&args->trans,
Darrick J. Wong2c3234d2016-08-03 11:19:29 +1000992 args->dfops, dp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 args->trans = NULL;
Darrick J. Wong2c3234d2016-08-03 11:19:29 +1000995 xfs_defer_cancel(args->dfops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996 goto out;
997 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 }
999
1000 /*
1001 * Commit and start the next trans in the chain.
1002 */
Niv Sardi322ff6b2008-08-13 16:05:49 +10001003 error = xfs_trans_roll(&args->trans, dp);
1004 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005 goto out;
1006
1007 } else if (args->rmtblkno > 0) {
1008 /*
1009 * Added a "remote" value, just clear the incomplete flag.
1010 */
Dave Chinner517c2222013-04-24 18:58:55 +10001011 error = xfs_attr3_leaf_clearflag(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012 if (error)
1013 goto out;
1014 }
1015 retval = error = 0;
1016
1017out:
1018 if (state)
1019 xfs_da_state_free(state);
1020 if (error)
Eric Sandeend99831f2014-06-22 15:03:54 +10001021 return error;
1022 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023}
1024
1025/*
1026 * Remove a name from a B-tree attribute list.
1027 *
1028 * This will involve walking down the Btree, and may involve joining
1029 * leaf nodes and even joining intermediate nodes up to and including
1030 * the root node (a special case of an intermediate node).
1031 */
1032STATIC int
1033xfs_attr_node_removename(xfs_da_args_t *args)
1034{
1035 xfs_da_state_t *state;
1036 xfs_da_state_blk_t *blk;
1037 xfs_inode_t *dp;
Dave Chinner1d9025e2012-06-22 18:50:14 +10001038 struct xfs_buf *bp;
Eric Sandeenf6106ef2016-01-11 11:34:01 +11001039 int retval, error, forkoff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040
Dave Chinner5a5881c2012-03-22 05:15:13 +00001041 trace_xfs_attr_node_removename(args);
1042
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043 /*
1044 * Tie a string around our finger to remind us where we are.
1045 */
1046 dp = args->dp;
1047 state = xfs_da_state_alloc();
1048 state->args = args;
1049 state->mp = dp->i_mount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050
1051 /*
1052 * Search to see if name exists, and get back a pointer to it.
1053 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001054 error = xfs_da3_node_lookup_int(state, &retval);
Dave Chinner24513372014-06-25 14:58:08 +10001055 if (error || (retval != -EEXIST)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 if (error == 0)
1057 error = retval;
1058 goto out;
1059 }
1060
1061 /*
1062 * If there is an out-of-line value, de-allocate the blocks.
1063 * This is done before we remove the attribute so that we don't
1064 * overflow the maximum size of a transaction and/or hit a deadlock.
1065 */
1066 blk = &state->path.blk[ state->path.active-1 ];
1067 ASSERT(blk->bp != NULL);
1068 ASSERT(blk->magic == XFS_ATTR_LEAF_MAGIC);
1069 if (args->rmtblkno > 0) {
1070 /*
1071 * Fill in disk block numbers in the state structure
1072 * so that we can get the buffers back after we commit
1073 * several transactions in the following calls.
1074 */
1075 error = xfs_attr_fillstate(state);
1076 if (error)
1077 goto out;
1078
1079 /*
1080 * Mark the attribute as INCOMPLETE, then bunmapi() the
1081 * remote value.
1082 */
Dave Chinner517c2222013-04-24 18:58:55 +10001083 error = xfs_attr3_leaf_setflag(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084 if (error)
1085 goto out;
1086 error = xfs_attr_rmtval_remove(args);
1087 if (error)
1088 goto out;
1089
1090 /*
1091 * Refill the state structure with buffers, the prior calls
1092 * released our buffers.
1093 */
1094 error = xfs_attr_refillstate(state);
1095 if (error)
1096 goto out;
1097 }
1098
1099 /*
1100 * Remove the name and update the hashvals in the tree.
1101 */
1102 blk = &state->path.blk[ state->path.active-1 ];
1103 ASSERT(blk->magic == XFS_ATTR_LEAF_MAGIC);
Dave Chinner517c2222013-04-24 18:58:55 +10001104 retval = xfs_attr3_leaf_remove(blk->bp, args);
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001105 xfs_da3_fixhashpath(state, &state->path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106
1107 /*
1108 * Check to see if the tree needs to be collapsed.
1109 */
1110 if (retval && (state->path.active > 1)) {
Darrick J. Wong2c3234d2016-08-03 11:19:29 +10001111 xfs_defer_init(args->dfops, args->firstblock);
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001112 error = xfs_da3_join(state);
Eric Sandeenf6106ef2016-01-11 11:34:01 +11001113 if (!error)
Darrick J. Wong2c3234d2016-08-03 11:19:29 +10001114 error = xfs_defer_finish(&args->trans, args->dfops, dp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116 args->trans = NULL;
Darrick J. Wong2c3234d2016-08-03 11:19:29 +10001117 xfs_defer_cancel(args->dfops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 goto out;
1119 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120 /*
1121 * Commit the Btree join operation and start a new trans.
1122 */
Niv Sardi322ff6b2008-08-13 16:05:49 +10001123 error = xfs_trans_roll(&args->trans, dp);
1124 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125 goto out;
1126 }
1127
1128 /*
1129 * If the result is small enough, push it all into the inode.
1130 */
1131 if (xfs_bmap_one_block(dp, XFS_ATTR_FORK)) {
1132 /*
1133 * Have to get rid of the copy of this dabuf in the state.
1134 */
1135 ASSERT(state->path.active == 1);
1136 ASSERT(state->path.blk[0].bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137 state->path.blk[0].bp = NULL;
1138
Dave Chinner517c2222013-04-24 18:58:55 +10001139 error = xfs_attr3_leaf_read(args->trans, args->dp, 0, -1, &bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140 if (error)
1141 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142
Nathan Scottd8cc8902005-11-02 10:34:53 +11001143 if ((forkoff = xfs_attr_shortform_allfit(bp, dp))) {
Darrick J. Wong2c3234d2016-08-03 11:19:29 +10001144 xfs_defer_init(args->dfops, args->firstblock);
Dave Chinner517c2222013-04-24 18:58:55 +10001145 error = xfs_attr3_leaf_to_shortform(bp, args, forkoff);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146 /* bp is gone due to xfs_da_shrink_inode */
Eric Sandeenf6106ef2016-01-11 11:34:01 +11001147 if (!error)
Darrick J. Wong310a75a2016-08-03 11:18:10 +10001148 error = xfs_defer_finish(&args->trans,
Darrick J. Wong2c3234d2016-08-03 11:19:29 +10001149 args->dfops, dp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151 args->trans = NULL;
Darrick J. Wong2c3234d2016-08-03 11:19:29 +10001152 xfs_defer_cancel(args->dfops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153 goto out;
1154 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155 } else
Dave Chinner1d9025e2012-06-22 18:50:14 +10001156 xfs_trans_brelse(args->trans, bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157 }
1158 error = 0;
1159
1160out:
1161 xfs_da_state_free(state);
Eric Sandeend99831f2014-06-22 15:03:54 +10001162 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163}
1164
1165/*
1166 * Fill in the disk block numbers in the state structure for the buffers
1167 * that are attached to the state structure.
1168 * This is done so that we can quickly reattach ourselves to those buffers
Nathan Scottc41564b2006-03-29 08:55:14 +10001169 * after some set of transaction commits have released these buffers.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170 */
1171STATIC int
1172xfs_attr_fillstate(xfs_da_state_t *state)
1173{
1174 xfs_da_state_path_t *path;
1175 xfs_da_state_blk_t *blk;
1176 int level;
1177
Dave Chinneree732592012-11-12 22:53:53 +11001178 trace_xfs_attr_fillstate(state->args);
1179
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180 /*
1181 * Roll down the "path" in the state structure, storing the on-disk
1182 * block number for those buffers in the "path".
1183 */
1184 path = &state->path;
1185 ASSERT((path->active >= 0) && (path->active < XFS_DA_NODE_MAXDEPTH));
1186 for (blk = path->blk, level = 0; level < path->active; blk++, level++) {
1187 if (blk->bp) {
Dave Chinner1d9025e2012-06-22 18:50:14 +10001188 blk->disk_blkno = XFS_BUF_ADDR(blk->bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189 blk->bp = NULL;
1190 } else {
1191 blk->disk_blkno = 0;
1192 }
1193 }
1194
1195 /*
1196 * Roll down the "altpath" in the state structure, storing the on-disk
1197 * block number for those buffers in the "altpath".
1198 */
1199 path = &state->altpath;
1200 ASSERT((path->active >= 0) && (path->active < XFS_DA_NODE_MAXDEPTH));
1201 for (blk = path->blk, level = 0; level < path->active; blk++, level++) {
1202 if (blk->bp) {
Dave Chinner1d9025e2012-06-22 18:50:14 +10001203 blk->disk_blkno = XFS_BUF_ADDR(blk->bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204 blk->bp = NULL;
1205 } else {
1206 blk->disk_blkno = 0;
1207 }
1208 }
1209
Eric Sandeend99831f2014-06-22 15:03:54 +10001210 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211}
1212
1213/*
1214 * Reattach the buffers to the state structure based on the disk block
1215 * numbers stored in the state structure.
Nathan Scottc41564b2006-03-29 08:55:14 +10001216 * This is done after some set of transaction commits have released those
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217 * buffers from our grip.
1218 */
1219STATIC int
1220xfs_attr_refillstate(xfs_da_state_t *state)
1221{
1222 xfs_da_state_path_t *path;
1223 xfs_da_state_blk_t *blk;
1224 int level, error;
1225
Dave Chinneree732592012-11-12 22:53:53 +11001226 trace_xfs_attr_refillstate(state->args);
1227
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228 /*
1229 * Roll down the "path" in the state structure, storing the on-disk
1230 * block number for those buffers in the "path".
1231 */
1232 path = &state->path;
1233 ASSERT((path->active >= 0) && (path->active < XFS_DA_NODE_MAXDEPTH));
1234 for (blk = path->blk, level = 0; level < path->active; blk++, level++) {
1235 if (blk->disk_blkno) {
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001236 error = xfs_da3_node_read(state->args->trans,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237 state->args->dp,
1238 blk->blkno, blk->disk_blkno,
Dave Chinnerd9392a42012-11-12 22:54:17 +11001239 &blk->bp, XFS_ATTR_FORK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240 if (error)
Eric Sandeend99831f2014-06-22 15:03:54 +10001241 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242 } else {
1243 blk->bp = NULL;
1244 }
1245 }
1246
1247 /*
1248 * Roll down the "altpath" in the state structure, storing the on-disk
1249 * block number for those buffers in the "altpath".
1250 */
1251 path = &state->altpath;
1252 ASSERT((path->active >= 0) && (path->active < XFS_DA_NODE_MAXDEPTH));
1253 for (blk = path->blk, level = 0; level < path->active; blk++, level++) {
1254 if (blk->disk_blkno) {
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001255 error = xfs_da3_node_read(state->args->trans,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256 state->args->dp,
1257 blk->blkno, blk->disk_blkno,
Dave Chinnerd9392a42012-11-12 22:54:17 +11001258 &blk->bp, XFS_ATTR_FORK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259 if (error)
Eric Sandeend99831f2014-06-22 15:03:54 +10001260 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261 } else {
1262 blk->bp = NULL;
1263 }
1264 }
1265
Eric Sandeend99831f2014-06-22 15:03:54 +10001266 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267}
1268
1269/*
1270 * Look up a filename in a node attribute list.
1271 *
1272 * This routine gets called for any attribute fork that has more than one
1273 * block, ie: both true Btree attr lists and for single-leaf-blocks with
1274 * "remote" values taking up more blocks.
1275 */
Christoph Hellwigba0f32d2005-06-21 15:36:52 +10001276STATIC int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277xfs_attr_node_get(xfs_da_args_t *args)
1278{
1279 xfs_da_state_t *state;
1280 xfs_da_state_blk_t *blk;
1281 int error, retval;
1282 int i;
1283
Dave Chinneree732592012-11-12 22:53:53 +11001284 trace_xfs_attr_node_get(args);
1285
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286 state = xfs_da_state_alloc();
1287 state->args = args;
1288 state->mp = args->dp->i_mount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289
1290 /*
1291 * Search to see if name exists, and get back a pointer to it.
1292 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001293 error = xfs_da3_node_lookup_int(state, &retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294 if (error) {
1295 retval = error;
Dave Chinner24513372014-06-25 14:58:08 +10001296 } else if (retval == -EEXIST) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297 blk = &state->path.blk[ state->path.active-1 ];
1298 ASSERT(blk->bp != NULL);
1299 ASSERT(blk->magic == XFS_ATTR_LEAF_MAGIC);
1300
1301 /*
1302 * Get the value, local or "remote"
1303 */
Dave Chinner517c2222013-04-24 18:58:55 +10001304 retval = xfs_attr3_leaf_getvalue(blk->bp, args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305 if (!retval && (args->rmtblkno > 0)
1306 && !(args->flags & ATTR_KERNOVAL)) {
1307 retval = xfs_attr_rmtval_get(args);
1308 }
1309 }
1310
1311 /*
1312 * If not in a transaction, we have to release all the buffers.
1313 */
1314 for (i = 0; i < state->path.active; i++) {
Dave Chinner1d9025e2012-06-22 18:50:14 +10001315 xfs_trans_brelse(args->trans, state->path.blk[i].bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316 state->path.blk[i].bp = NULL;
1317 }
1318
1319 xfs_da_state_free(state);
Eric Sandeend99831f2014-06-22 15:03:54 +10001320 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321}