blob: 79d3a309b50f53c982808cee6de933443b98a777 [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 Chinner70a9883c2013-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
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 if (!xfs_inode_hasattr(ip))
Dave Chinner24513372014-06-25 14:58:08 +1000135 return -ENOATTR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136
Christoph Hellwig67fd7182014-05-13 16:34:43 +1000137 error = xfs_attr_args_init(&args, ip, name, flags);
Barry Naujoke8b0eba2008-04-22 17:34:31 +1000138 if (error)
139 return error;
140
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 args.value = value;
142 args.valuelen = *valuelenp;
Eric Sandeenc400ee32015-08-19 10:30:48 +1000143 /* Entirely possible to look up a name which doesn't exist */
144 args.op_flags = XFS_DA_OP_OKNOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145
Christoph Hellwig683cb942013-12-06 12:30:15 -0800146 lock_mode = xfs_ilock_attr_map_shared(ip);
Christoph Hellwigb87d0222014-05-13 16:34:24 +1000147 if (!xfs_inode_hasattr(ip))
Dave Chinner24513372014-06-25 14:58:08 +1000148 error = -ENOATTR;
Christoph Hellwigb87d0222014-05-13 16:34:24 +1000149 else if (ip->i_d.di_aformat == XFS_DINODE_FMT_LOCAL)
150 error = xfs_attr_shortform_getvalue(&args);
151 else if (xfs_bmap_one_block(ip, XFS_ATTR_FORK))
152 error = xfs_attr_leaf_get(&args);
153 else
154 error = xfs_attr_node_get(&args);
Christoph Hellwig683cb942013-12-06 12:30:15 -0800155 xfs_iunlock(ip, lock_mode);
Christoph Hellwigb87d0222014-05-13 16:34:24 +1000156
157 *valuelenp = args.valuelen;
Dave Chinner24513372014-06-25 14:58:08 +1000158 return error == -EEXIST ? 0 : error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159}
160
Niv Sardi5e9da7b2008-08-13 16:03:35 +1000161/*
162 * Calculate how many blocks we need for the new attribute,
163 */
Eric Sandeen5d77c0d2009-11-19 15:52:00 +0000164STATIC int
Niv Sardi5e9da7b2008-08-13 16:03:35 +1000165xfs_attr_calc_size(
Christoph Hellwig6c888af2014-05-13 16:40:19 +1000166 struct xfs_da_args *args,
Niv Sardi5e9da7b2008-08-13 16:03:35 +1000167 int *local)
168{
Christoph Hellwig6c888af2014-05-13 16:40:19 +1000169 struct xfs_mount *mp = args->dp->i_mount;
Niv Sardi5e9da7b2008-08-13 16:03:35 +1000170 int size;
171 int nblks;
172
173 /*
174 * Determine space new attribute will use, and if it would be
175 * "local" or "remote" (note: local != inline).
176 */
Dave Chinnerc59f0ad2014-06-06 15:21:27 +1000177 size = xfs_attr_leaf_newentsize(args, local);
Niv Sardi5e9da7b2008-08-13 16:03:35 +1000178 nblks = XFS_DAENTER_SPACE_RES(mp, XFS_ATTR_FORK);
179 if (*local) {
Dave Chinner33a60392014-06-06 15:21:10 +1000180 if (size > (args->geo->blksize / 2)) {
Niv Sardi5e9da7b2008-08-13 16:03:35 +1000181 /* Double split possible */
182 nblks *= 2;
183 }
184 } else {
185 /*
186 * Out of line attribute, cannot double split, but
187 * make room for the attribute value itself.
188 */
Dave Chinner2d6dcc62014-05-15 09:39:28 +1000189 uint dblocks = xfs_attr3_rmt_blocks(mp, args->valuelen);
Niv Sardi5e9da7b2008-08-13 16:03:35 +1000190 nblks += dblocks;
191 nblks += XFS_NEXTENTADD_SPACE_RES(mp, dblocks, XFS_ATTR_FORK);
192 }
193
194 return nblks;
195}
196
Christoph Hellwigc5b4ac32014-05-13 16:34:14 +1000197int
198xfs_attr_set(
199 struct xfs_inode *dp,
200 const unsigned char *name,
201 unsigned char *value,
202 int valuelen,
203 int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204{
Jie Liu3d3c8b52013-08-12 20:49:59 +1000205 struct xfs_mount *mp = dp->i_mount;
Christoph Hellwigc5b4ac32014-05-13 16:34:14 +1000206 struct xfs_da_args args;
207 struct xfs_bmap_free flist;
Jie Liu3d3c8b52013-08-12 20:49:59 +1000208 struct xfs_trans_res tres;
Christoph Hellwigc5b4ac32014-05-13 16:34:14 +1000209 xfs_fsblock_t firstblock;
Jie Liu3d3c8b52013-08-12 20:49:59 +1000210 int rsvd = (flags & ATTR_ROOT) != 0;
Eric Sandeenf6106ef2016-01-11 11:34:01 +1100211 int error, err2, local;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212
Bill O'Donnellff6d6af2015-10-12 18:21:22 +1100213 XFS_STATS_INC(mp, xs_attr_set);
Christoph Hellwigc5b4ac32014-05-13 16:34:14 +1000214
215 if (XFS_FORCED_SHUTDOWN(dp->i_mount))
Dave Chinner24513372014-06-25 14:58:08 +1000216 return -EIO;
Christoph Hellwigc5b4ac32014-05-13 16:34:14 +1000217
Christoph Hellwig67fd7182014-05-13 16:34:43 +1000218 error = xfs_attr_args_init(&args, dp, name, flags);
Christoph Hellwigc5b4ac32014-05-13 16:34:14 +1000219 if (error)
220 return error;
221
Christoph Hellwig67fd7182014-05-13 16:34:43 +1000222 args.value = value;
223 args.valuelen = valuelen;
224 args.firstblock = &firstblock;
225 args.flist = &flist;
226 args.op_flags = XFS_DA_OP_ADDNAME | XFS_DA_OP_OKNOENT;
Christoph Hellwig6c888af2014-05-13 16:40:19 +1000227 args.total = xfs_attr_calc_size(&args, &local);
Christoph Hellwig67fd7182014-05-13 16:34:43 +1000228
Christoph Hellwig7d095252009-06-08 15:33:32 +0200229 error = xfs_qm_dqattach(dp, 0);
230 if (error)
231 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232
233 /*
234 * If the inode doesn't have an attribute fork, add one.
235 * (inode must not be locked when we call this routine)
236 */
237 if (XFS_IFORK_Q(dp) == 0) {
Barry Naujoke5889e92007-02-10 18:35:58 +1100238 int sf_size = sizeof(xfs_attr_sf_hdr_t) +
Christoph Hellwig67fd7182014-05-13 16:34:43 +1000239 XFS_ATTR_SF_ENTSIZE_BYNAME(args.namelen, valuelen);
Barry Naujoke5889e92007-02-10 18:35:58 +1100240
Christoph Hellwigc5b4ac32014-05-13 16:34:14 +1000241 error = xfs_bmap_add_attrfork(dp, sf_size, rsvd);
242 if (error)
243 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 }
245
Christoph Hellwig253f4912016-04-06 09:19:55 +1000246 tres.tr_logres = M_RES(mp)->tr_attrsetm.tr_logres +
247 M_RES(mp)->tr_attrsetrt.tr_logres * args.total;
248 tres.tr_logcount = XFS_ATTRSET_LOG_COUNT;
249 tres.tr_logflags = XFS_TRANS_PERM_LOG_RES;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250
251 /*
252 * Root fork attributes can use reserved data blocks for this
253 * operation if necessary
254 */
Christoph Hellwig253f4912016-04-06 09:19:55 +1000255 error = xfs_trans_alloc(mp, &tres, args.total, 0,
256 rsvd ? XFS_TRANS_RESERVE : 0, &args.trans);
257 if (error)
Christoph Hellwigc5b4ac32014-05-13 16:34:14 +1000258 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259
Christoph Hellwig253f4912016-04-06 09:19:55 +1000260 xfs_ilock(dp, XFS_ILOCK_EXCL);
Christoph Hellwig7d095252009-06-08 15:33:32 +0200261 error = xfs_trans_reserve_quota_nblks(args.trans, dp, args.total, 0,
Niv Sardi5e9da7b2008-08-13 16:03:35 +1000262 rsvd ? XFS_QMOPT_RES_REGBLKS | XFS_QMOPT_FORCE_RES :
263 XFS_QMOPT_RES_REGBLKS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 if (error) {
265 xfs_iunlock(dp, XFS_ILOCK_EXCL);
Christoph Hellwig4906e212015-06-04 13:47:56 +1000266 xfs_trans_cancel(args.trans);
Christoph Hellwigc5b4ac32014-05-13 16:34:14 +1000267 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 }
269
Christoph Hellwigddc34152011-09-19 15:00:54 +0000270 xfs_trans_ijoin(args.trans, dp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271
272 /*
Nathan Scottc41564b2006-03-29 08:55:14 +1000273 * If the attribute list is non-existent or a shortform list,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 * upgrade it to a single-leaf-block attribute list.
275 */
Christoph Hellwigc5b4ac32014-05-13 16:34:14 +1000276 if (dp->i_d.di_aformat == XFS_DINODE_FMT_LOCAL ||
277 (dp->i_d.di_aformat == XFS_DINODE_FMT_EXTENTS &&
278 dp->i_d.di_anextents == 0)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279
280 /*
281 * Build initial attribute list (if required).
282 */
283 if (dp->i_d.di_aformat == XFS_DINODE_FMT_EXTENTS)
Nathan Scottd8cc8902005-11-02 10:34:53 +1100284 xfs_attr_shortform_create(&args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285
286 /*
287 * Try to add the attr to the attribute list in
288 * the inode.
289 */
290 error = xfs_attr_shortform_addname(&args);
Dave Chinner24513372014-06-25 14:58:08 +1000291 if (error != -ENOSPC) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 /*
293 * Commit the shortform mods, and we're done.
294 * NOTE: this is also the error path (EEXIST, etc).
295 */
296 ASSERT(args.trans != NULL);
297
298 /*
299 * If this is a synchronous mount, make sure that
300 * the transaction goes to disk before returning
301 * to the user.
302 */
Christoph Hellwigc5b4ac32014-05-13 16:34:14 +1000303 if (mp->m_flags & XFS_MOUNT_WSYNC)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 xfs_trans_set_sync(args.trans);
Dave Chinnerdcd79a12010-09-28 12:27:25 +1000305
306 if (!error && (flags & ATTR_KERNOTIME) == 0) {
307 xfs_trans_ichgtime(args.trans, dp,
308 XFS_ICHGTIME_CHG);
309 }
Christoph Hellwig70393312015-06-04 13:48:08 +1000310 err2 = xfs_trans_commit(args.trans);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 xfs_iunlock(dp, XFS_ILOCK_EXCL);
312
Christoph Hellwigc5b4ac32014-05-13 16:34:14 +1000313 return error ? error : err2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 }
315
316 /*
317 * It won't fit in the shortform, transform to a leaf block.
318 * GROT: another possible req'mt for a double-split btree op.
319 */
Eric Sandeen9d87c312009-01-14 23:22:07 -0600320 xfs_bmap_init(args.flist, args.firstblock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 error = xfs_attr_shortform_to_leaf(&args);
Eric Sandeenf6106ef2016-01-11 11:34:01 +1100322 if (!error)
323 error = xfs_bmap_finish(&args.trans, args.flist, dp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 args.trans = NULL;
326 xfs_bmap_cancel(&flist);
327 goto out;
328 }
329
330 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 * Commit the leaf transformation. We'll need another (linked)
332 * transaction to add the new attribute to the leaf.
333 */
Niv Sardi322ff6b2008-08-13 16:05:49 +1000334
335 error = xfs_trans_roll(&args.trans, dp);
336 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 goto out;
338
339 }
340
Christoph Hellwigc5b4ac32014-05-13 16:34:14 +1000341 if (xfs_bmap_one_block(dp, XFS_ATTR_FORK))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 error = xfs_attr_leaf_addname(&args);
Christoph Hellwigc5b4ac32014-05-13 16:34:14 +1000343 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 error = xfs_attr_node_addname(&args);
Christoph Hellwigc5b4ac32014-05-13 16:34:14 +1000345 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347
348 /*
349 * If this is a synchronous mount, make sure that the
350 * transaction goes to disk before returning to the user.
351 */
Christoph Hellwigc5b4ac32014-05-13 16:34:14 +1000352 if (mp->m_flags & XFS_MOUNT_WSYNC)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 xfs_trans_set_sync(args.trans);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354
Dave Chinnerdcd79a12010-09-28 12:27:25 +1000355 if ((flags & ATTR_KERNOTIME) == 0)
356 xfs_trans_ichgtime(args.trans, dp, XFS_ICHGTIME_CHG);
357
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 /*
359 * Commit the last in the sequence of transactions.
360 */
361 xfs_trans_log_inode(args.trans, dp, XFS_ILOG_CORE);
Christoph Hellwig70393312015-06-04 13:48:08 +1000362 error = xfs_trans_commit(args.trans);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 xfs_iunlock(dp, XFS_ILOCK_EXCL);
364
Christoph Hellwigc5b4ac32014-05-13 16:34:14 +1000365 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366
367out:
Christoph Hellwig4906e212015-06-04 13:47:56 +1000368 if (args.trans)
369 xfs_trans_cancel(args.trans);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 xfs_iunlock(dp, XFS_ILOCK_EXCL);
Christoph Hellwigc5b4ac32014-05-13 16:34:14 +1000371 return error;
Nathan Scottaa82daa2005-11-02 10:33:33 +1100372}
373
374/*
375 * Generic handler routine to remove a name from an attribute list.
376 * Transitions attribute list from Btree to shortform as necessary.
377 */
Christoph Hellwig1bc426a2014-05-13 16:34:33 +1000378int
379xfs_attr_remove(
380 struct xfs_inode *dp,
381 const unsigned char *name,
382 int flags)
Nathan Scottaa82daa2005-11-02 10:33:33 +1100383{
Christoph Hellwig1bc426a2014-05-13 16:34:33 +1000384 struct xfs_mount *mp = dp->i_mount;
385 struct xfs_da_args args;
386 struct xfs_bmap_free flist;
Christoph Hellwig1bc426a2014-05-13 16:34:33 +1000387 xfs_fsblock_t firstblock;
388 int error;
Nathan Scottaa82daa2005-11-02 10:33:33 +1100389
Bill O'Donnellff6d6af2015-10-12 18:21:22 +1100390 XFS_STATS_INC(mp, xs_attr_remove);
Christoph Hellwig1bc426a2014-05-13 16:34:33 +1000391
392 if (XFS_FORCED_SHUTDOWN(dp->i_mount))
Dave Chinner24513372014-06-25 14:58:08 +1000393 return -EIO;
Christoph Hellwig1bc426a2014-05-13 16:34:33 +1000394
395 if (!xfs_inode_hasattr(dp))
Dave Chinner24513372014-06-25 14:58:08 +1000396 return -ENOATTR;
Christoph Hellwig1bc426a2014-05-13 16:34:33 +1000397
Christoph Hellwig67fd7182014-05-13 16:34:43 +1000398 error = xfs_attr_args_init(&args, dp, name, flags);
Christoph Hellwig1bc426a2014-05-13 16:34:33 +1000399 if (error)
400 return error;
401
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 args.firstblock = &firstblock;
403 args.flist = &flist;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404
405 /*
Dave Chinner4a338212011-06-23 01:35:01 +0000406 * we have no control over the attribute names that userspace passes us
407 * to remove, so we have to allow the name lookup prior to attribute
408 * removal to fail.
409 */
410 args.op_flags = XFS_DA_OP_OKNOENT;
411
Christoph Hellwig7d095252009-06-08 15:33:32 +0200412 error = xfs_qm_dqattach(dp, 0);
413 if (error)
414 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415
416 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 * Root fork attributes can use reserved data blocks for this
418 * operation if necessary
419 */
Christoph Hellwig253f4912016-04-06 09:19:55 +1000420 error = xfs_trans_alloc(mp, &M_RES(mp)->tr_attrrm,
421 XFS_ATTRRM_SPACE_RES(mp), 0,
422 (flags & ATTR_ROOT) ? XFS_TRANS_RESERVE : 0,
423 &args.trans);
424 if (error)
Christoph Hellwig1bc426a2014-05-13 16:34:33 +1000425 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426
427 xfs_ilock(dp, XFS_ILOCK_EXCL);
428 /*
429 * No need to make quota reservations here. We expect to release some
430 * blocks not allocate in the common case.
431 */
Christoph Hellwigddc34152011-09-19 15:00:54 +0000432 xfs_trans_ijoin(args.trans, dp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433
Christoph Hellwigcaf8aab2008-06-23 13:23:41 +1000434 if (!xfs_inode_hasattr(dp)) {
Dave Chinner24513372014-06-25 14:58:08 +1000435 error = -ENOATTR;
Christoph Hellwig1bc426a2014-05-13 16:34:33 +1000436 } else if (dp->i_d.di_aformat == XFS_DINODE_FMT_LOCAL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 ASSERT(dp->i_afp->if_flags & XFS_IFINLINE);
438 error = xfs_attr_shortform_remove(&args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 } else if (xfs_bmap_one_block(dp, XFS_ATTR_FORK)) {
440 error = xfs_attr_leaf_removename(&args);
441 } else {
442 error = xfs_attr_node_removename(&args);
443 }
Christoph Hellwig1bc426a2014-05-13 16:34:33 +1000444
445 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447
448 /*
449 * If this is a synchronous mount, make sure that the
450 * transaction goes to disk before returning to the user.
451 */
Christoph Hellwig1bc426a2014-05-13 16:34:33 +1000452 if (mp->m_flags & XFS_MOUNT_WSYNC)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 xfs_trans_set_sync(args.trans);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454
Dave Chinnerdcd79a12010-09-28 12:27:25 +1000455 if ((flags & ATTR_KERNOTIME) == 0)
456 xfs_trans_ichgtime(args.trans, dp, XFS_ICHGTIME_CHG);
457
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 /*
459 * Commit the last in the sequence of transactions.
460 */
461 xfs_trans_log_inode(args.trans, dp, XFS_ILOG_CORE);
Christoph Hellwig70393312015-06-04 13:48:08 +1000462 error = xfs_trans_commit(args.trans);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 xfs_iunlock(dp, XFS_ILOCK_EXCL);
464
Christoph Hellwig1bc426a2014-05-13 16:34:33 +1000465 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466
467out:
Christoph Hellwig4906e212015-06-04 13:47:56 +1000468 if (args.trans)
469 xfs_trans_cancel(args.trans);
Christoph Hellwig1bc426a2014-05-13 16:34:33 +1000470 xfs_iunlock(dp, XFS_ILOCK_EXCL);
471 return error;
Nathan Scottaa82daa2005-11-02 10:33:33 +1100472}
473
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474/*========================================================================
475 * External routines when attribute list is inside the inode
476 *========================================================================*/
477
478/*
479 * Add a name to the shortform attribute list structure
480 * This is the external routine.
481 */
482STATIC int
483xfs_attr_shortform_addname(xfs_da_args_t *args)
484{
Nathan Scottd8cc8902005-11-02 10:34:53 +1100485 int newsize, forkoff, retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486
Dave Chinner5a5881c2012-03-22 05:15:13 +0000487 trace_xfs_attr_sf_addname(args);
488
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 retval = xfs_attr_shortform_lookup(args);
Dave Chinner24513372014-06-25 14:58:08 +1000490 if ((args->flags & ATTR_REPLACE) && (retval == -ENOATTR)) {
Eric Sandeend99831f2014-06-22 15:03:54 +1000491 return retval;
Dave Chinner24513372014-06-25 14:58:08 +1000492 } else if (retval == -EEXIST) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 if (args->flags & ATTR_CREATE)
Eric Sandeend99831f2014-06-22 15:03:54 +1000494 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 retval = xfs_attr_shortform_remove(args);
496 ASSERT(retval == 0);
497 }
498
Nathan Scottd8cc8902005-11-02 10:34:53 +1100499 if (args->namelen >= XFS_ATTR_SF_ENTSIZE_MAX ||
500 args->valuelen >= XFS_ATTR_SF_ENTSIZE_MAX)
Dave Chinner24513372014-06-25 14:58:08 +1000501 return -ENOSPC;
Nathan Scottd8cc8902005-11-02 10:34:53 +1100502
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 newsize = XFS_ATTR_SF_TOTSIZE(args->dp);
504 newsize += XFS_ATTR_SF_ENTSIZE_BYNAME(args->namelen, args->valuelen);
Nathan Scottd8cc8902005-11-02 10:34:53 +1100505
506 forkoff = xfs_attr_shortform_bytesfit(args->dp, newsize);
507 if (!forkoff)
Dave Chinner24513372014-06-25 14:58:08 +1000508 return -ENOSPC;
Nathan Scottd8cc8902005-11-02 10:34:53 +1100509
510 xfs_attr_shortform_add(args, forkoff);
Eric Sandeend99831f2014-06-22 15:03:54 +1000511 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512}
513
514
515/*========================================================================
516 * External routines when attribute list is one block
517 *========================================================================*/
518
519/*
520 * Add a name to the leaf attribute list structure
521 *
522 * This leaf block cannot have a "remote" value, we only call this routine
523 * if bmap_one_block() says there is only one block (ie: no remote blks).
524 */
David Chinnera8272ce2007-11-23 16:28:09 +1100525STATIC int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526xfs_attr_leaf_addname(xfs_da_args_t *args)
527{
528 xfs_inode_t *dp;
Dave Chinner1d9025e2012-06-22 18:50:14 +1000529 struct xfs_buf *bp;
Eric Sandeenf6106ef2016-01-11 11:34:01 +1100530 int retval, error, forkoff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531
Dave Chinner5a5881c2012-03-22 05:15:13 +0000532 trace_xfs_attr_leaf_addname(args);
533
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 /*
535 * Read the (only) block in the attribute list in.
536 */
537 dp = args->dp;
538 args->blkno = 0;
Dave Chinner517c2222013-04-24 18:58:55 +1000539 error = xfs_attr3_leaf_read(args->trans, args->dp, args->blkno, -1, &bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 if (error)
Dave Chinnerad14c332012-11-12 22:54:16 +1100541 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542
543 /*
544 * Look up the given attribute in the leaf block. Figure out if
545 * the given flags produce an error or call for an atomic rename.
546 */
Dave Chinner517c2222013-04-24 18:58:55 +1000547 retval = xfs_attr3_leaf_lookup_int(bp, args);
Dave Chinner24513372014-06-25 14:58:08 +1000548 if ((args->flags & ATTR_REPLACE) && (retval == -ENOATTR)) {
Dave Chinner1d9025e2012-06-22 18:50:14 +1000549 xfs_trans_brelse(args->trans, bp);
Dave Chinner517c2222013-04-24 18:58:55 +1000550 return retval;
Dave Chinner24513372014-06-25 14:58:08 +1000551 } else if (retval == -EEXIST) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 if (args->flags & ATTR_CREATE) { /* pure create op */
Dave Chinner1d9025e2012-06-22 18:50:14 +1000553 xfs_trans_brelse(args->trans, bp);
Dave Chinner517c2222013-04-24 18:58:55 +1000554 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 }
Dave Chinner5a5881c2012-03-22 05:15:13 +0000556
557 trace_xfs_attr_leaf_replace(args);
558
Dave Chinner8275cdd2014-05-06 07:37:31 +1000559 /* save the attribute state for later removal*/
Barry Naujok6a178102008-05-21 16:42:05 +1000560 args->op_flags |= XFS_DA_OP_RENAME; /* an atomic rename */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 args->blkno2 = args->blkno; /* set 2nd entry info*/
562 args->index2 = args->index;
563 args->rmtblkno2 = args->rmtblkno;
564 args->rmtblkcnt2 = args->rmtblkcnt;
Dave Chinner8275cdd2014-05-06 07:37:31 +1000565 args->rmtvaluelen2 = args->rmtvaluelen;
566
567 /*
568 * clear the remote attr state now that it is saved so that the
569 * values reflect the state of the attribute we are about to
570 * add, not the attribute we just found and will remove later.
571 */
572 args->rmtblkno = 0;
573 args->rmtblkcnt = 0;
574 args->rmtvaluelen = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 }
576
577 /*
578 * Add the attribute to the leaf block, transitioning to a Btree
579 * if required.
580 */
Dave Chinner517c2222013-04-24 18:58:55 +1000581 retval = xfs_attr3_leaf_add(bp, args);
Dave Chinner24513372014-06-25 14:58:08 +1000582 if (retval == -ENOSPC) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 /*
584 * Promote the attribute list to the Btree format, then
585 * Commit that transaction so that the node_addname() call
586 * can manage its own transactions.
587 */
Eric Sandeen9d87c312009-01-14 23:22:07 -0600588 xfs_bmap_init(args->flist, args->firstblock);
Dave Chinner517c2222013-04-24 18:58:55 +1000589 error = xfs_attr3_leaf_to_node(args);
Eric Sandeenf6106ef2016-01-11 11:34:01 +1100590 if (!error)
591 error = xfs_bmap_finish(&args->trans, args->flist, dp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 args->trans = NULL;
594 xfs_bmap_cancel(args->flist);
Eric Sandeend99831f2014-06-22 15:03:54 +1000595 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 }
597
598 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 * Commit the current trans (including the inode) and start
600 * a new one.
601 */
Niv Sardi322ff6b2008-08-13 16:05:49 +1000602 error = xfs_trans_roll(&args->trans, dp);
603 if (error)
Eric Sandeend99831f2014-06-22 15:03:54 +1000604 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605
606 /*
607 * Fob the whole rest of the problem off on the Btree code.
608 */
609 error = xfs_attr_node_addname(args);
Eric Sandeend99831f2014-06-22 15:03:54 +1000610 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 }
612
613 /*
614 * Commit the transaction that added the attr name so that
615 * later routines can manage their own transactions.
616 */
Niv Sardi322ff6b2008-08-13 16:05:49 +1000617 error = xfs_trans_roll(&args->trans, dp);
618 if (error)
Eric Sandeend99831f2014-06-22 15:03:54 +1000619 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620
621 /*
622 * If there was an out-of-line value, allocate the blocks we
623 * identified for its storage and copy the value. This is done
624 * after we create the attribute so that we don't overflow the
625 * maximum size of a transaction and/or hit a deadlock.
626 */
627 if (args->rmtblkno > 0) {
628 error = xfs_attr_rmtval_set(args);
629 if (error)
Eric Sandeend99831f2014-06-22 15:03:54 +1000630 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 }
632
633 /*
634 * If this is an atomic rename operation, we must "flip" the
635 * incomplete flags on the "new" and "old" attribute/value pairs
636 * so that one disappears and one appears atomically. Then we
637 * must remove the "old" attribute/value pair.
638 */
Barry Naujok6a178102008-05-21 16:42:05 +1000639 if (args->op_flags & XFS_DA_OP_RENAME) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 /*
641 * In a separate transaction, set the incomplete flag on the
642 * "old" attr and clear the incomplete flag on the "new" attr.
643 */
Dave Chinner517c2222013-04-24 18:58:55 +1000644 error = xfs_attr3_leaf_flipflags(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 if (error)
Eric Sandeend99831f2014-06-22 15:03:54 +1000646 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647
648 /*
649 * Dismantle the "old" attribute/value pair by removing
650 * a "remote" value (if it exists).
651 */
652 args->index = args->index2;
653 args->blkno = args->blkno2;
654 args->rmtblkno = args->rmtblkno2;
655 args->rmtblkcnt = args->rmtblkcnt2;
Dave Chinner8275cdd2014-05-06 07:37:31 +1000656 args->rmtvaluelen = args->rmtvaluelen2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 if (args->rmtblkno) {
658 error = xfs_attr_rmtval_remove(args);
659 if (error)
Eric Sandeend99831f2014-06-22 15:03:54 +1000660 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 }
662
663 /*
664 * Read in the block containing the "old" attr, then
665 * remove the "old" attr from that block (neat, huh!)
666 */
Dave Chinner517c2222013-04-24 18:58:55 +1000667 error = xfs_attr3_leaf_read(args->trans, args->dp, args->blkno,
Dave Chinnerad14c332012-11-12 22:54:16 +1100668 -1, &bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 if (error)
Dave Chinnerad14c332012-11-12 22:54:16 +1100670 return error;
671
Dave Chinner517c2222013-04-24 18:58:55 +1000672 xfs_attr3_leaf_remove(bp, args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673
674 /*
675 * If the result is small enough, shrink it all into the inode.
676 */
Nathan Scottd8cc8902005-11-02 10:34:53 +1100677 if ((forkoff = xfs_attr_shortform_allfit(bp, dp))) {
Eric Sandeen9d87c312009-01-14 23:22:07 -0600678 xfs_bmap_init(args->flist, args->firstblock);
Dave Chinner517c2222013-04-24 18:58:55 +1000679 error = xfs_attr3_leaf_to_shortform(bp, args, forkoff);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 /* bp is gone due to xfs_da_shrink_inode */
Eric Sandeenf6106ef2016-01-11 11:34:01 +1100681 if (!error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 error = xfs_bmap_finish(&args->trans,
Eric Sandeenf6106ef2016-01-11 11:34:01 +1100683 args->flist, dp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 args->trans = NULL;
686 xfs_bmap_cancel(args->flist);
Eric Sandeend99831f2014-06-22 15:03:54 +1000687 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 }
Dave Chinner1d9025e2012-06-22 18:50:14 +1000689 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690
691 /*
692 * Commit the remove and start the next trans in series.
693 */
Niv Sardi322ff6b2008-08-13 16:05:49 +1000694 error = xfs_trans_roll(&args->trans, dp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695
696 } else if (args->rmtblkno > 0) {
697 /*
698 * Added a "remote" value, just clear the incomplete flag.
699 */
Dave Chinner517c2222013-04-24 18:58:55 +1000700 error = xfs_attr3_leaf_clearflag(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 }
Dave Chinner517c2222013-04-24 18:58:55 +1000702 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703}
704
705/*
706 * Remove a name from the leaf attribute list structure
707 *
708 * This leaf block cannot have a "remote" value, we only call this routine
709 * if bmap_one_block() says there is only one block (ie: no remote blks).
710 */
711STATIC int
712xfs_attr_leaf_removename(xfs_da_args_t *args)
713{
714 xfs_inode_t *dp;
Dave Chinner1d9025e2012-06-22 18:50:14 +1000715 struct xfs_buf *bp;
Eric Sandeenf6106ef2016-01-11 11:34:01 +1100716 int error, forkoff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717
Dave Chinner5a5881c2012-03-22 05:15:13 +0000718 trace_xfs_attr_leaf_removename(args);
719
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 /*
721 * Remove the attribute.
722 */
723 dp = args->dp;
724 args->blkno = 0;
Dave Chinner517c2222013-04-24 18:58:55 +1000725 error = xfs_attr3_leaf_read(args->trans, args->dp, args->blkno, -1, &bp);
Dave Chinnerad14c332012-11-12 22:54:16 +1100726 if (error)
727 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728
Dave Chinner517c2222013-04-24 18:58:55 +1000729 error = xfs_attr3_leaf_lookup_int(bp, args);
Dave Chinner24513372014-06-25 14:58:08 +1000730 if (error == -ENOATTR) {
Dave Chinner1d9025e2012-06-22 18:50:14 +1000731 xfs_trans_brelse(args->trans, bp);
Dave Chinner517c2222013-04-24 18:58:55 +1000732 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 }
734
Dave Chinner517c2222013-04-24 18:58:55 +1000735 xfs_attr3_leaf_remove(bp, args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736
737 /*
738 * If the result is small enough, shrink it all into the inode.
739 */
Nathan Scottd8cc8902005-11-02 10:34:53 +1100740 if ((forkoff = xfs_attr_shortform_allfit(bp, dp))) {
Eric Sandeen9d87c312009-01-14 23:22:07 -0600741 xfs_bmap_init(args->flist, args->firstblock);
Dave Chinner517c2222013-04-24 18:58:55 +1000742 error = xfs_attr3_leaf_to_shortform(bp, args, forkoff);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 /* bp is gone due to xfs_da_shrink_inode */
Eric Sandeenf6106ef2016-01-11 11:34:01 +1100744 if (!error)
745 error = xfs_bmap_finish(&args->trans, args->flist, dp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 args->trans = NULL;
748 xfs_bmap_cancel(args->flist);
Dave Chinner517c2222013-04-24 18:58:55 +1000749 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 }
Dave Chinner1d9025e2012-06-22 18:50:14 +1000751 }
Dave Chinner517c2222013-04-24 18:58:55 +1000752 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753}
754
755/*
756 * Look up a name in a leaf attribute list structure.
757 *
758 * This leaf block cannot have a "remote" value, we only call this routine
759 * if bmap_one_block() says there is only one block (ie: no remote blks).
760 */
Christoph Hellwigba0f32d2005-06-21 15:36:52 +1000761STATIC int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762xfs_attr_leaf_get(xfs_da_args_t *args)
763{
Dave Chinner1d9025e2012-06-22 18:50:14 +1000764 struct xfs_buf *bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 int error;
766
Dave Chinneree732592012-11-12 22:53:53 +1100767 trace_xfs_attr_leaf_get(args);
768
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 args->blkno = 0;
Dave Chinner517c2222013-04-24 18:58:55 +1000770 error = xfs_attr3_leaf_read(args->trans, args->dp, args->blkno, -1, &bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 if (error)
Dave Chinnerad14c332012-11-12 22:54:16 +1100772 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773
Dave Chinner517c2222013-04-24 18:58:55 +1000774 error = xfs_attr3_leaf_lookup_int(bp, args);
Dave Chinner24513372014-06-25 14:58:08 +1000775 if (error != -EEXIST) {
Dave Chinner1d9025e2012-06-22 18:50:14 +1000776 xfs_trans_brelse(args->trans, bp);
Dave Chinner517c2222013-04-24 18:58:55 +1000777 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 }
Dave Chinner517c2222013-04-24 18:58:55 +1000779 error = xfs_attr3_leaf_getvalue(bp, args);
Dave Chinner1d9025e2012-06-22 18:50:14 +1000780 xfs_trans_brelse(args->trans, bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 if (!error && (args->rmtblkno > 0) && !(args->flags & ATTR_KERNOVAL)) {
782 error = xfs_attr_rmtval_get(args);
783 }
Dave Chinner517c2222013-04-24 18:58:55 +1000784 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785}
786
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787/*========================================================================
Dave Chinnerc2c4c472014-06-06 15:21:45 +1000788 * External routines when attribute list size > geo->blksize
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 *========================================================================*/
790
791/*
792 * Add a name to a Btree-format attribute list.
793 *
794 * This will involve walking down the Btree, and may involve splitting
795 * leaf nodes and even splitting intermediate nodes up to and including
796 * the root node (a special case of an intermediate node).
797 *
798 * "Remote" attribute values confuse the issue and atomic rename operations
799 * add a whole extra layer of confusion on top of that.
800 */
801STATIC int
802xfs_attr_node_addname(xfs_da_args_t *args)
803{
804 xfs_da_state_t *state;
805 xfs_da_state_blk_t *blk;
806 xfs_inode_t *dp;
807 xfs_mount_t *mp;
Eric Sandeenf6106ef2016-01-11 11:34:01 +1100808 int retval, error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809
Dave Chinner5a5881c2012-03-22 05:15:13 +0000810 trace_xfs_attr_node_addname(args);
811
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 /*
813 * Fill in bucket of arguments/results/context to carry around.
814 */
815 dp = args->dp;
816 mp = dp->i_mount;
817restart:
818 state = xfs_da_state_alloc();
819 state->args = args;
820 state->mp = mp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821
822 /*
823 * Search to see if name already exists, and get back a pointer
824 * to where it should go.
825 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000826 error = xfs_da3_node_lookup_int(state, &retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 if (error)
828 goto out;
829 blk = &state->path.blk[ state->path.active-1 ];
830 ASSERT(blk->magic == XFS_ATTR_LEAF_MAGIC);
Dave Chinner24513372014-06-25 14:58:08 +1000831 if ((args->flags & ATTR_REPLACE) && (retval == -ENOATTR)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 goto out;
Dave Chinner24513372014-06-25 14:58:08 +1000833 } else if (retval == -EEXIST) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 if (args->flags & ATTR_CREATE)
835 goto out;
Dave Chinner5a5881c2012-03-22 05:15:13 +0000836
837 trace_xfs_attr_node_replace(args);
838
Dave Chinner8275cdd2014-05-06 07:37:31 +1000839 /* save the attribute state for later removal*/
Barry Naujok6a178102008-05-21 16:42:05 +1000840 args->op_flags |= XFS_DA_OP_RENAME; /* atomic rename op */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 args->blkno2 = args->blkno; /* set 2nd entry info*/
842 args->index2 = args->index;
843 args->rmtblkno2 = args->rmtblkno;
844 args->rmtblkcnt2 = args->rmtblkcnt;
Dave Chinner8275cdd2014-05-06 07:37:31 +1000845 args->rmtvaluelen2 = args->rmtvaluelen;
846
847 /*
848 * clear the remote attr state now that it is saved so that the
849 * values reflect the state of the attribute we are about to
850 * add, not the attribute we just found and will remove later.
851 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 args->rmtblkno = 0;
853 args->rmtblkcnt = 0;
Dave Chinner8275cdd2014-05-06 07:37:31 +1000854 args->rmtvaluelen = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 }
856
Dave Chinner517c2222013-04-24 18:58:55 +1000857 retval = xfs_attr3_leaf_add(blk->bp, state->args);
Dave Chinner24513372014-06-25 14:58:08 +1000858 if (retval == -ENOSPC) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 if (state->path.active == 1) {
860 /*
861 * Its really a single leaf node, but it had
862 * out-of-line values so it looked like it *might*
863 * have been a b-tree.
864 */
865 xfs_da_state_free(state);
Eric Sandeen6dd93e92013-07-31 20:18:54 -0500866 state = NULL;
Eric Sandeen9d87c312009-01-14 23:22:07 -0600867 xfs_bmap_init(args->flist, args->firstblock);
Dave Chinner517c2222013-04-24 18:58:55 +1000868 error = xfs_attr3_leaf_to_node(args);
Eric Sandeenf6106ef2016-01-11 11:34:01 +1100869 if (!error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 error = xfs_bmap_finish(&args->trans,
Eric Sandeenf6106ef2016-01-11 11:34:01 +1100871 args->flist, dp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 args->trans = NULL;
874 xfs_bmap_cancel(args->flist);
875 goto out;
876 }
877
878 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 * Commit the node conversion and start the next
880 * trans in the chain.
881 */
Niv Sardi322ff6b2008-08-13 16:05:49 +1000882 error = xfs_trans_roll(&args->trans, dp);
883 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884 goto out;
885
886 goto restart;
887 }
888
889 /*
890 * Split as many Btree elements as required.
891 * This code tracks the new and old attr's location
892 * in the index/blkno/rmtblkno/rmtblkcnt fields and
893 * in the index2/blkno2/rmtblkno2/rmtblkcnt2 fields.
894 */
Eric Sandeen9d87c312009-01-14 23:22:07 -0600895 xfs_bmap_init(args->flist, args->firstblock);
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000896 error = xfs_da3_split(state);
Eric Sandeenf6106ef2016-01-11 11:34:01 +1100897 if (!error)
898 error = xfs_bmap_finish(&args->trans, args->flist, dp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 args->trans = NULL;
901 xfs_bmap_cancel(args->flist);
902 goto out;
903 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904 } else {
905 /*
906 * Addition succeeded, update Btree hashvals.
907 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000908 xfs_da3_fixhashpath(state, &state->path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 }
910
911 /*
912 * Kill the state structure, we're done with it and need to
913 * allow the buffers to come back later.
914 */
915 xfs_da_state_free(state);
916 state = NULL;
917
918 /*
919 * Commit the leaf addition or btree split and start the next
920 * trans in the chain.
921 */
Niv Sardi322ff6b2008-08-13 16:05:49 +1000922 error = xfs_trans_roll(&args->trans, dp);
923 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 goto out;
925
926 /*
927 * If there was an out-of-line value, allocate the blocks we
928 * identified for its storage and copy the value. This is done
929 * after we create the attribute so that we don't overflow the
930 * maximum size of a transaction and/or hit a deadlock.
931 */
932 if (args->rmtblkno > 0) {
933 error = xfs_attr_rmtval_set(args);
934 if (error)
Eric Sandeend99831f2014-06-22 15:03:54 +1000935 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 }
937
938 /*
939 * If this is an atomic rename operation, we must "flip" the
940 * incomplete flags on the "new" and "old" attribute/value pairs
941 * so that one disappears and one appears atomically. Then we
942 * must remove the "old" attribute/value pair.
943 */
Barry Naujok6a178102008-05-21 16:42:05 +1000944 if (args->op_flags & XFS_DA_OP_RENAME) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 /*
946 * In a separate transaction, set the incomplete flag on the
947 * "old" attr and clear the incomplete flag on the "new" attr.
948 */
Dave Chinner517c2222013-04-24 18:58:55 +1000949 error = xfs_attr3_leaf_flipflags(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950 if (error)
951 goto out;
952
953 /*
954 * Dismantle the "old" attribute/value pair by removing
955 * a "remote" value (if it exists).
956 */
957 args->index = args->index2;
958 args->blkno = args->blkno2;
959 args->rmtblkno = args->rmtblkno2;
960 args->rmtblkcnt = args->rmtblkcnt2;
Dave Chinner8275cdd2014-05-06 07:37:31 +1000961 args->rmtvaluelen = args->rmtvaluelen2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962 if (args->rmtblkno) {
963 error = xfs_attr_rmtval_remove(args);
964 if (error)
Eric Sandeend99831f2014-06-22 15:03:54 +1000965 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966 }
967
968 /*
969 * Re-find the "old" attribute entry after any split ops.
970 * The INCOMPLETE flag means that we will find the "old"
971 * attr, not the "new" one.
972 */
973 args->flags |= XFS_ATTR_INCOMPLETE;
974 state = xfs_da_state_alloc();
975 state->args = args;
976 state->mp = mp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977 state->inleaf = 0;
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000978 error = xfs_da3_node_lookup_int(state, &retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 if (error)
980 goto out;
981
982 /*
983 * Remove the name and update the hashvals in the tree.
984 */
985 blk = &state->path.blk[ state->path.active-1 ];
986 ASSERT(blk->magic == XFS_ATTR_LEAF_MAGIC);
Dave Chinner517c2222013-04-24 18:58:55 +1000987 error = xfs_attr3_leaf_remove(blk->bp, args);
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000988 xfs_da3_fixhashpath(state, &state->path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989
990 /*
991 * Check to see if the tree needs to be collapsed.
992 */
993 if (retval && (state->path.active > 1)) {
Eric Sandeen9d87c312009-01-14 23:22:07 -0600994 xfs_bmap_init(args->flist, args->firstblock);
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000995 error = xfs_da3_join(state);
Eric Sandeenf6106ef2016-01-11 11:34:01 +1100996 if (!error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 error = xfs_bmap_finish(&args->trans,
Eric Sandeenf6106ef2016-01-11 11:34:01 +1100998 args->flist, dp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000 args->trans = NULL;
1001 xfs_bmap_cancel(args->flist);
1002 goto out;
1003 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 }
1005
1006 /*
1007 * Commit and start the next trans in the chain.
1008 */
Niv Sardi322ff6b2008-08-13 16:05:49 +10001009 error = xfs_trans_roll(&args->trans, dp);
1010 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011 goto out;
1012
1013 } else if (args->rmtblkno > 0) {
1014 /*
1015 * Added a "remote" value, just clear the incomplete flag.
1016 */
Dave Chinner517c2222013-04-24 18:58:55 +10001017 error = xfs_attr3_leaf_clearflag(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018 if (error)
1019 goto out;
1020 }
1021 retval = error = 0;
1022
1023out:
1024 if (state)
1025 xfs_da_state_free(state);
1026 if (error)
Eric Sandeend99831f2014-06-22 15:03:54 +10001027 return error;
1028 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029}
1030
1031/*
1032 * Remove a name from a B-tree attribute list.
1033 *
1034 * This will involve walking down the Btree, and may involve joining
1035 * leaf nodes and even joining intermediate nodes up to and including
1036 * the root node (a special case of an intermediate node).
1037 */
1038STATIC int
1039xfs_attr_node_removename(xfs_da_args_t *args)
1040{
1041 xfs_da_state_t *state;
1042 xfs_da_state_blk_t *blk;
1043 xfs_inode_t *dp;
Dave Chinner1d9025e2012-06-22 18:50:14 +10001044 struct xfs_buf *bp;
Eric Sandeenf6106ef2016-01-11 11:34:01 +11001045 int retval, error, forkoff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046
Dave Chinner5a5881c2012-03-22 05:15:13 +00001047 trace_xfs_attr_node_removename(args);
1048
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 /*
1050 * Tie a string around our finger to remind us where we are.
1051 */
1052 dp = args->dp;
1053 state = xfs_da_state_alloc();
1054 state->args = args;
1055 state->mp = dp->i_mount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056
1057 /*
1058 * Search to see if name exists, and get back a pointer to it.
1059 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001060 error = xfs_da3_node_lookup_int(state, &retval);
Dave Chinner24513372014-06-25 14:58:08 +10001061 if (error || (retval != -EEXIST)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 if (error == 0)
1063 error = retval;
1064 goto out;
1065 }
1066
1067 /*
1068 * If there is an out-of-line value, de-allocate the blocks.
1069 * This is done before we remove the attribute so that we don't
1070 * overflow the maximum size of a transaction and/or hit a deadlock.
1071 */
1072 blk = &state->path.blk[ state->path.active-1 ];
1073 ASSERT(blk->bp != NULL);
1074 ASSERT(blk->magic == XFS_ATTR_LEAF_MAGIC);
1075 if (args->rmtblkno > 0) {
1076 /*
1077 * Fill in disk block numbers in the state structure
1078 * so that we can get the buffers back after we commit
1079 * several transactions in the following calls.
1080 */
1081 error = xfs_attr_fillstate(state);
1082 if (error)
1083 goto out;
1084
1085 /*
1086 * Mark the attribute as INCOMPLETE, then bunmapi() the
1087 * remote value.
1088 */
Dave Chinner517c2222013-04-24 18:58:55 +10001089 error = xfs_attr3_leaf_setflag(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090 if (error)
1091 goto out;
1092 error = xfs_attr_rmtval_remove(args);
1093 if (error)
1094 goto out;
1095
1096 /*
1097 * Refill the state structure with buffers, the prior calls
1098 * released our buffers.
1099 */
1100 error = xfs_attr_refillstate(state);
1101 if (error)
1102 goto out;
1103 }
1104
1105 /*
1106 * Remove the name and update the hashvals in the tree.
1107 */
1108 blk = &state->path.blk[ state->path.active-1 ];
1109 ASSERT(blk->magic == XFS_ATTR_LEAF_MAGIC);
Dave Chinner517c2222013-04-24 18:58:55 +10001110 retval = xfs_attr3_leaf_remove(blk->bp, args);
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001111 xfs_da3_fixhashpath(state, &state->path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112
1113 /*
1114 * Check to see if the tree needs to be collapsed.
1115 */
1116 if (retval && (state->path.active > 1)) {
Eric Sandeen9d87c312009-01-14 23:22:07 -06001117 xfs_bmap_init(args->flist, args->firstblock);
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001118 error = xfs_da3_join(state);
Eric Sandeenf6106ef2016-01-11 11:34:01 +11001119 if (!error)
1120 error = xfs_bmap_finish(&args->trans, args->flist, dp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122 args->trans = NULL;
1123 xfs_bmap_cancel(args->flist);
1124 goto out;
1125 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126 /*
1127 * Commit the Btree join operation and start a new trans.
1128 */
Niv Sardi322ff6b2008-08-13 16:05:49 +10001129 error = xfs_trans_roll(&args->trans, dp);
1130 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131 goto out;
1132 }
1133
1134 /*
1135 * If the result is small enough, push it all into the inode.
1136 */
1137 if (xfs_bmap_one_block(dp, XFS_ATTR_FORK)) {
1138 /*
1139 * Have to get rid of the copy of this dabuf in the state.
1140 */
1141 ASSERT(state->path.active == 1);
1142 ASSERT(state->path.blk[0].bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143 state->path.blk[0].bp = NULL;
1144
Dave Chinner517c2222013-04-24 18:58:55 +10001145 error = xfs_attr3_leaf_read(args->trans, args->dp, 0, -1, &bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146 if (error)
1147 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148
Nathan Scottd8cc8902005-11-02 10:34:53 +11001149 if ((forkoff = xfs_attr_shortform_allfit(bp, dp))) {
Eric Sandeen9d87c312009-01-14 23:22:07 -06001150 xfs_bmap_init(args->flist, args->firstblock);
Dave Chinner517c2222013-04-24 18:58:55 +10001151 error = xfs_attr3_leaf_to_shortform(bp, args, forkoff);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152 /* bp is gone due to xfs_da_shrink_inode */
Eric Sandeenf6106ef2016-01-11 11:34:01 +11001153 if (!error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154 error = xfs_bmap_finish(&args->trans,
Eric Sandeenf6106ef2016-01-11 11:34:01 +11001155 args->flist, dp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157 args->trans = NULL;
1158 xfs_bmap_cancel(args->flist);
1159 goto out;
1160 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161 } else
Dave Chinner1d9025e2012-06-22 18:50:14 +10001162 xfs_trans_brelse(args->trans, bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163 }
1164 error = 0;
1165
1166out:
1167 xfs_da_state_free(state);
Eric Sandeend99831f2014-06-22 15:03:54 +10001168 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169}
1170
1171/*
1172 * Fill in the disk block numbers in the state structure for the buffers
1173 * that are attached to the state structure.
1174 * This is done so that we can quickly reattach ourselves to those buffers
Nathan Scottc41564b2006-03-29 08:55:14 +10001175 * after some set of transaction commits have released these buffers.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176 */
1177STATIC int
1178xfs_attr_fillstate(xfs_da_state_t *state)
1179{
1180 xfs_da_state_path_t *path;
1181 xfs_da_state_blk_t *blk;
1182 int level;
1183
Dave Chinneree732592012-11-12 22:53:53 +11001184 trace_xfs_attr_fillstate(state->args);
1185
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186 /*
1187 * Roll down the "path" in the state structure, storing the on-disk
1188 * block number for those buffers in the "path".
1189 */
1190 path = &state->path;
1191 ASSERT((path->active >= 0) && (path->active < XFS_DA_NODE_MAXDEPTH));
1192 for (blk = path->blk, level = 0; level < path->active; blk++, level++) {
1193 if (blk->bp) {
Dave Chinner1d9025e2012-06-22 18:50:14 +10001194 blk->disk_blkno = XFS_BUF_ADDR(blk->bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195 blk->bp = NULL;
1196 } else {
1197 blk->disk_blkno = 0;
1198 }
1199 }
1200
1201 /*
1202 * Roll down the "altpath" in the state structure, storing the on-disk
1203 * block number for those buffers in the "altpath".
1204 */
1205 path = &state->altpath;
1206 ASSERT((path->active >= 0) && (path->active < XFS_DA_NODE_MAXDEPTH));
1207 for (blk = path->blk, level = 0; level < path->active; blk++, level++) {
1208 if (blk->bp) {
Dave Chinner1d9025e2012-06-22 18:50:14 +10001209 blk->disk_blkno = XFS_BUF_ADDR(blk->bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210 blk->bp = NULL;
1211 } else {
1212 blk->disk_blkno = 0;
1213 }
1214 }
1215
Eric Sandeend99831f2014-06-22 15:03:54 +10001216 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217}
1218
1219/*
1220 * Reattach the buffers to the state structure based on the disk block
1221 * numbers stored in the state structure.
Nathan Scottc41564b2006-03-29 08:55:14 +10001222 * This is done after some set of transaction commits have released those
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223 * buffers from our grip.
1224 */
1225STATIC int
1226xfs_attr_refillstate(xfs_da_state_t *state)
1227{
1228 xfs_da_state_path_t *path;
1229 xfs_da_state_blk_t *blk;
1230 int level, error;
1231
Dave Chinneree732592012-11-12 22:53:53 +11001232 trace_xfs_attr_refillstate(state->args);
1233
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234 /*
1235 * Roll down the "path" in the state structure, storing the on-disk
1236 * block number for those buffers in the "path".
1237 */
1238 path = &state->path;
1239 ASSERT((path->active >= 0) && (path->active < XFS_DA_NODE_MAXDEPTH));
1240 for (blk = path->blk, level = 0; level < path->active; blk++, level++) {
1241 if (blk->disk_blkno) {
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001242 error = xfs_da3_node_read(state->args->trans,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243 state->args->dp,
1244 blk->blkno, blk->disk_blkno,
Dave Chinnerd9392a42012-11-12 22:54:17 +11001245 &blk->bp, XFS_ATTR_FORK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246 if (error)
Eric Sandeend99831f2014-06-22 15:03:54 +10001247 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248 } else {
1249 blk->bp = NULL;
1250 }
1251 }
1252
1253 /*
1254 * Roll down the "altpath" in the state structure, storing the on-disk
1255 * block number for those buffers in the "altpath".
1256 */
1257 path = &state->altpath;
1258 ASSERT((path->active >= 0) && (path->active < XFS_DA_NODE_MAXDEPTH));
1259 for (blk = path->blk, level = 0; level < path->active; blk++, level++) {
1260 if (blk->disk_blkno) {
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001261 error = xfs_da3_node_read(state->args->trans,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262 state->args->dp,
1263 blk->blkno, blk->disk_blkno,
Dave Chinnerd9392a42012-11-12 22:54:17 +11001264 &blk->bp, XFS_ATTR_FORK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265 if (error)
Eric Sandeend99831f2014-06-22 15:03:54 +10001266 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267 } else {
1268 blk->bp = NULL;
1269 }
1270 }
1271
Eric Sandeend99831f2014-06-22 15:03:54 +10001272 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273}
1274
1275/*
1276 * Look up a filename in a node attribute list.
1277 *
1278 * This routine gets called for any attribute fork that has more than one
1279 * block, ie: both true Btree attr lists and for single-leaf-blocks with
1280 * "remote" values taking up more blocks.
1281 */
Christoph Hellwigba0f32d2005-06-21 15:36:52 +10001282STATIC int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283xfs_attr_node_get(xfs_da_args_t *args)
1284{
1285 xfs_da_state_t *state;
1286 xfs_da_state_blk_t *blk;
1287 int error, retval;
1288 int i;
1289
Dave Chinneree732592012-11-12 22:53:53 +11001290 trace_xfs_attr_node_get(args);
1291
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292 state = xfs_da_state_alloc();
1293 state->args = args;
1294 state->mp = args->dp->i_mount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295
1296 /*
1297 * Search to see if name exists, and get back a pointer to it.
1298 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001299 error = xfs_da3_node_lookup_int(state, &retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300 if (error) {
1301 retval = error;
Dave Chinner24513372014-06-25 14:58:08 +10001302 } else if (retval == -EEXIST) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303 blk = &state->path.blk[ state->path.active-1 ];
1304 ASSERT(blk->bp != NULL);
1305 ASSERT(blk->magic == XFS_ATTR_LEAF_MAGIC);
1306
1307 /*
1308 * Get the value, local or "remote"
1309 */
Dave Chinner517c2222013-04-24 18:58:55 +10001310 retval = xfs_attr3_leaf_getvalue(blk->bp, args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311 if (!retval && (args->rmtblkno > 0)
1312 && !(args->flags & ATTR_KERNOVAL)) {
1313 retval = xfs_attr_rmtval_get(args);
1314 }
1315 }
1316
1317 /*
1318 * If not in a transaction, we have to release all the buffers.
1319 */
1320 for (i = 0; i < state->path.active; i++) {
Dave Chinner1d9025e2012-06-22 18:50:14 +10001321 xfs_trans_brelse(args->trans, state->path.blk[i].bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322 state->path.blk[i].bp = NULL;
1323 }
1324
1325 xfs_da_state_free(state);
Eric Sandeend99831f2014-06-22 15:03:54 +10001326 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327}