blob: eb3ae8fcaf74ebc4979e7fc8d8cde5ba673c97d0 [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_sb.h"
26#include "xfs_ag.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include "xfs_mount.h"
Dave Chinner57062782013-10-15 09:17:51 +110028#include "xfs_da_format.h"
Nathan Scotta844f452005-11-02 14:38:42 +110029#include "xfs_da_btree.h"
Nathan Scotta844f452005-11-02 14:38:42 +110030#include "xfs_attr_sf.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include "xfs_inode.h"
Nathan Scotta844f452005-11-02 14:38:42 +110032#include "xfs_alloc.h"
Dave Chinner239880e2013-10-23 10:50:10 +110033#include "xfs_trans.h"
Nathan Scotta844f452005-11-02 14:38:42 +110034#include "xfs_inode_item.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include "xfs_bmap.h"
Dave Chinner68988112013-08-12 20:49:42 +100036#include "xfs_bmap_util.h"
Dave Chinnera4fbe6a2013-10-23 10:51:50 +110037#include "xfs_bmap_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#include "xfs_attr.h"
39#include "xfs_attr_leaf.h"
Dave Chinner95920cd2013-04-03 16:11:27 +110040#include "xfs_attr_remote.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#include "xfs_error.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#include "xfs_quota.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#include "xfs_trans_space.h"
Christoph Hellwig0b1b2132009-12-14 23:14:59 +000044#include "xfs_trace.h"
Dave Chinnera4fbe6a2013-10-23 10:51:50 +110045#include "xfs_dinode.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
47/*
48 * xfs_attr.c
49 *
50 * Provide the external interfaces to manage attribute lists.
51 */
52
53/*========================================================================
54 * Function prototypes for the kernel.
55 *========================================================================*/
56
57/*
58 * Internal routines when attribute list fits inside the inode.
59 */
60STATIC int xfs_attr_shortform_addname(xfs_da_args_t *args);
61
62/*
63 * Internal routines when attribute list is one block.
64 */
Christoph Hellwigba0f32d2005-06-21 15:36:52 +100065STATIC int xfs_attr_leaf_get(xfs_da_args_t *args);
Linus Torvalds1da177e2005-04-16 15:20:36 -070066STATIC int xfs_attr_leaf_addname(xfs_da_args_t *args);
67STATIC int xfs_attr_leaf_removename(xfs_da_args_t *args);
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
69/*
70 * Internal routines when attribute list is more than one block.
71 */
Christoph Hellwigba0f32d2005-06-21 15:36:52 +100072STATIC int xfs_attr_node_get(xfs_da_args_t *args);
Linus Torvalds1da177e2005-04-16 15:20:36 -070073STATIC int xfs_attr_node_addname(xfs_da_args_t *args);
74STATIC int xfs_attr_node_removename(xfs_da_args_t *args);
Linus Torvalds1da177e2005-04-16 15:20:36 -070075STATIC int xfs_attr_fillstate(xfs_da_state_t *state);
76STATIC int xfs_attr_refillstate(xfs_da_state_t *state);
77
Linus Torvalds1da177e2005-04-16 15:20:36 -070078
Barry Naujoke8b0eba2008-04-22 17:34:31 +100079STATIC int
80xfs_attr_name_to_xname(
81 struct xfs_name *xname,
Dave Chinnera9273ca2010-01-20 10:47:48 +110082 const unsigned char *aname)
Barry Naujoke8b0eba2008-04-22 17:34:31 +100083{
84 if (!aname)
85 return EINVAL;
86 xname->name = aname;
Dave Chinnera9273ca2010-01-20 10:47:48 +110087 xname->len = strlen((char *)aname);
Barry Naujoke8b0eba2008-04-22 17:34:31 +100088 if (xname->len >= MAXNAMELEN)
89 return EFAULT; /* match IRIX behaviour */
90
91 return 0;
92}
Linus Torvalds1da177e2005-04-16 15:20:36 -070093
Dave Chinnerabec5f22013-08-12 20:49:38 +100094int
Christoph Hellwigcaf8aab2008-06-23 13:23:41 +100095xfs_inode_hasattr(
96 struct xfs_inode *ip)
97{
98 if (!XFS_IFORK_Q(ip) ||
99 (ip->i_d.di_aformat == XFS_DINODE_FMT_EXTENTS &&
100 ip->i_d.di_anextents == 0))
101 return 0;
102 return 1;
103}
104
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105/*========================================================================
106 * Overall external interface routines.
107 *========================================================================*/
108
Christoph Hellwige82fa0c2009-11-14 16:17:20 +0000109STATIC int
110xfs_attr_get_int(
111 struct xfs_inode *ip,
112 struct xfs_name *name,
Dave Chinnera9273ca2010-01-20 10:47:48 +1100113 unsigned char *value,
Christoph Hellwige82fa0c2009-11-14 16:17:20 +0000114 int *valuelenp,
115 int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116{
117 xfs_da_args_t args;
118 int error;
119
Christoph Hellwigcaf8aab2008-06-23 13:23:41 +1000120 if (!xfs_inode_hasattr(ip))
121 return ENOATTR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 /*
124 * Fill in the arg structure for this request.
125 */
126 memset((char *)&args, 0, sizeof(args));
Barry Naujoke8b0eba2008-04-22 17:34:31 +1000127 args.name = name->name;
128 args.namelen = name->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 args.value = value;
130 args.valuelen = *valuelenp;
131 args.flags = flags;
132 args.hashval = xfs_da_hashname(args.name, args.namelen);
133 args.dp = ip;
134 args.whichfork = XFS_ATTR_FORK;
135
136 /*
137 * Decide on what work routines to call based on the inode size.
138 */
Christoph Hellwigcaf8aab2008-06-23 13:23:41 +1000139 if (ip->i_d.di_aformat == XFS_DINODE_FMT_LOCAL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 error = xfs_attr_shortform_getvalue(&args);
141 } else if (xfs_bmap_one_block(ip, XFS_ATTR_FORK)) {
142 error = xfs_attr_leaf_get(&args);
143 } else {
144 error = xfs_attr_node_get(&args);
145 }
146
147 /*
148 * Return the number of bytes in the value to the caller.
149 */
150 *valuelenp = args.valuelen;
151
152 if (error == EEXIST)
153 error = 0;
154 return(error);
155}
156
157int
Christoph Hellwig993386c2007-08-28 16:12:30 +1000158xfs_attr_get(
159 xfs_inode_t *ip,
Dave Chinnera9273ca2010-01-20 10:47:48 +1100160 const unsigned char *name,
161 unsigned char *value,
Christoph Hellwig993386c2007-08-28 16:12:30 +1000162 int *valuelenp,
Barry Naujoke8b0eba2008-04-22 17:34:31 +1000163 int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164{
Barry Naujoke8b0eba2008-04-22 17:34:31 +1000165 int error;
166 struct xfs_name xname;
Christoph Hellwig683cb942013-12-06 12:30:15 -0800167 uint lock_mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168
169 XFS_STATS_INC(xs_attr_get);
170
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 if (XFS_FORCED_SHUTDOWN(ip->i_mount))
172 return(EIO);
173
Barry Naujoke8b0eba2008-04-22 17:34:31 +1000174 error = xfs_attr_name_to_xname(&xname, name);
175 if (error)
176 return error;
177
Christoph Hellwig683cb942013-12-06 12:30:15 -0800178 lock_mode = xfs_ilock_attr_map_shared(ip);
Christoph Hellwige82fa0c2009-11-14 16:17:20 +0000179 error = xfs_attr_get_int(ip, &xname, value, valuelenp, flags);
Christoph Hellwig683cb942013-12-06 12:30:15 -0800180 xfs_iunlock(ip, lock_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 return(error);
182}
183
Niv Sardi5e9da7b2008-08-13 16:03:35 +1000184/*
185 * Calculate how many blocks we need for the new attribute,
186 */
Eric Sandeen5d77c0d2009-11-19 15:52:00 +0000187STATIC int
Niv Sardi5e9da7b2008-08-13 16:03:35 +1000188xfs_attr_calc_size(
189 struct xfs_inode *ip,
190 int namelen,
191 int valuelen,
192 int *local)
193{
194 struct xfs_mount *mp = ip->i_mount;
195 int size;
196 int nblks;
197
198 /*
199 * Determine space new attribute will use, and if it would be
200 * "local" or "remote" (note: local != inline).
201 */
202 size = xfs_attr_leaf_newentsize(namelen, valuelen,
203 mp->m_sb.sb_blocksize, local);
204
205 nblks = XFS_DAENTER_SPACE_RES(mp, XFS_ATTR_FORK);
206 if (*local) {
207 if (size > (mp->m_sb.sb_blocksize >> 1)) {
208 /* Double split possible */
209 nblks *= 2;
210 }
211 } else {
212 /*
213 * Out of line attribute, cannot double split, but
214 * make room for the attribute value itself.
215 */
216 uint dblocks = XFS_B_TO_FSB(mp, valuelen);
217 nblks += dblocks;
218 nblks += XFS_NEXTENTADD_SPACE_RES(mp, dblocks, XFS_ATTR_FORK);
219 }
220
221 return nblks;
222}
223
Christoph Hellwigc5b4ac32014-05-13 16:34:14 +1000224int
225xfs_attr_set(
226 struct xfs_inode *dp,
227 const unsigned char *name,
228 unsigned char *value,
229 int valuelen,
230 int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231{
Jie Liu3d3c8b52013-08-12 20:49:59 +1000232 struct xfs_mount *mp = dp->i_mount;
Christoph Hellwigc5b4ac32014-05-13 16:34:14 +1000233 struct xfs_da_args args;
234 struct xfs_bmap_free flist;
Jie Liu3d3c8b52013-08-12 20:49:59 +1000235 struct xfs_trans_res tres;
Christoph Hellwigc5b4ac32014-05-13 16:34:14 +1000236 struct xfs_name xname;
237 xfs_fsblock_t firstblock;
Jie Liu3d3c8b52013-08-12 20:49:59 +1000238 int rsvd = (flags & ATTR_ROOT) != 0;
Christoph Hellwigc5b4ac32014-05-13 16:34:14 +1000239 int error, err2, committed, local;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240
Christoph Hellwigc5b4ac32014-05-13 16:34:14 +1000241 XFS_STATS_INC(xs_attr_set);
242
243 if (XFS_FORCED_SHUTDOWN(dp->i_mount))
244 return EIO;
245
246 error = xfs_attr_name_to_xname(&xname, name);
247 if (error)
248 return error;
249
Christoph Hellwig7d095252009-06-08 15:33:32 +0200250 error = xfs_qm_dqattach(dp, 0);
251 if (error)
252 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253
254 /*
255 * If the inode doesn't have an attribute fork, add one.
256 * (inode must not be locked when we call this routine)
257 */
258 if (XFS_IFORK_Q(dp) == 0) {
Barry Naujoke5889e92007-02-10 18:35:58 +1100259 int sf_size = sizeof(xfs_attr_sf_hdr_t) +
Christoph Hellwigc5b4ac32014-05-13 16:34:14 +1000260 XFS_ATTR_SF_ENTSIZE_BYNAME(xname.len, valuelen);
Barry Naujoke5889e92007-02-10 18:35:58 +1100261
Christoph Hellwigc5b4ac32014-05-13 16:34:14 +1000262 error = xfs_bmap_add_attrfork(dp, sf_size, rsvd);
263 if (error)
264 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 }
266
Christoph Hellwigc5b4ac32014-05-13 16:34:14 +1000267 memset(&args, 0, sizeof(args));
268 args.name = xname.name;
269 args.namelen = xname.len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 args.value = value;
271 args.valuelen = valuelen;
272 args.flags = flags;
273 args.hashval = xfs_da_hashname(args.name, args.namelen);
274 args.dp = dp;
275 args.firstblock = &firstblock;
276 args.flist = &flist;
277 args.whichfork = XFS_ATTR_FORK;
Barry Naujok6a178102008-05-21 16:42:05 +1000278 args.op_flags = XFS_DA_OP_ADDNAME | XFS_DA_OP_OKNOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 /* Size is now blocks for attribute data */
Christoph Hellwigc5b4ac32014-05-13 16:34:14 +1000281 args.total = xfs_attr_calc_size(dp, xname.len, valuelen, &local);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282
283 /*
284 * Start our first transaction of the day.
285 *
286 * All future transactions during this code must be "chained" off
287 * this one via the trans_dup() call. All transactions will contain
288 * the inode, and the inode will always be marked with trans_ihold().
289 * Since the inode will be locked in all transactions, we must log
290 * the inode in every transaction to let it float upward through
291 * the log.
292 */
293 args.trans = xfs_trans_alloc(mp, XFS_TRANS_ATTR_SET);
294
295 /*
296 * Root fork attributes can use reserved data blocks for this
297 * operation if necessary
298 */
299
300 if (rsvd)
301 args.trans->t_flags |= XFS_TRANS_RESERVE;
302
Jie Liu3d3c8b52013-08-12 20:49:59 +1000303 tres.tr_logres = M_RES(mp)->tr_attrsetm.tr_logres +
304 M_RES(mp)->tr_attrsetrt.tr_logres * args.total;
305 tres.tr_logcount = XFS_ATTRSET_LOG_COUNT;
306 tres.tr_logflags = XFS_TRANS_PERM_LOG_RES;
307 error = xfs_trans_reserve(args.trans, &tres, args.total, 0);
Jeff Liua21cd502013-01-28 21:27:53 +0800308 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 xfs_trans_cancel(args.trans, 0);
Christoph Hellwigc5b4ac32014-05-13 16:34:14 +1000310 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 }
312 xfs_ilock(dp, XFS_ILOCK_EXCL);
313
Christoph Hellwig7d095252009-06-08 15:33:32 +0200314 error = xfs_trans_reserve_quota_nblks(args.trans, dp, args.total, 0,
Niv Sardi5e9da7b2008-08-13 16:03:35 +1000315 rsvd ? XFS_QMOPT_RES_REGBLKS | XFS_QMOPT_FORCE_RES :
316 XFS_QMOPT_RES_REGBLKS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 if (error) {
318 xfs_iunlock(dp, XFS_ILOCK_EXCL);
319 xfs_trans_cancel(args.trans, XFS_TRANS_RELEASE_LOG_RES);
Christoph Hellwigc5b4ac32014-05-13 16:34:14 +1000320 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 }
322
Christoph Hellwigddc34152011-09-19 15:00:54 +0000323 xfs_trans_ijoin(args.trans, dp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324
325 /*
Nathan Scottc41564b2006-03-29 08:55:14 +1000326 * If the attribute list is non-existent or a shortform list,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 * upgrade it to a single-leaf-block attribute list.
328 */
Christoph Hellwigc5b4ac32014-05-13 16:34:14 +1000329 if (dp->i_d.di_aformat == XFS_DINODE_FMT_LOCAL ||
330 (dp->i_d.di_aformat == XFS_DINODE_FMT_EXTENTS &&
331 dp->i_d.di_anextents == 0)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332
333 /*
334 * Build initial attribute list (if required).
335 */
336 if (dp->i_d.di_aformat == XFS_DINODE_FMT_EXTENTS)
Nathan Scottd8cc8902005-11-02 10:34:53 +1100337 xfs_attr_shortform_create(&args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338
339 /*
340 * Try to add the attr to the attribute list in
341 * the inode.
342 */
343 error = xfs_attr_shortform_addname(&args);
344 if (error != ENOSPC) {
345 /*
346 * Commit the shortform mods, and we're done.
347 * NOTE: this is also the error path (EEXIST, etc).
348 */
349 ASSERT(args.trans != NULL);
350
351 /*
352 * If this is a synchronous mount, make sure that
353 * the transaction goes to disk before returning
354 * to the user.
355 */
Christoph Hellwigc5b4ac32014-05-13 16:34:14 +1000356 if (mp->m_flags & XFS_MOUNT_WSYNC)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 xfs_trans_set_sync(args.trans);
Dave Chinnerdcd79a12010-09-28 12:27:25 +1000358
359 if (!error && (flags & ATTR_KERNOTIME) == 0) {
360 xfs_trans_ichgtime(args.trans, dp,
361 XFS_ICHGTIME_CHG);
362 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 err2 = xfs_trans_commit(args.trans,
Eric Sandeen1c72bf92007-05-08 13:48:42 +1000364 XFS_TRANS_RELEASE_LOG_RES);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 xfs_iunlock(dp, XFS_ILOCK_EXCL);
366
Christoph Hellwigc5b4ac32014-05-13 16:34:14 +1000367 return error ? error : err2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 }
369
370 /*
371 * It won't fit in the shortform, transform to a leaf block.
372 * GROT: another possible req'mt for a double-split btree op.
373 */
Eric Sandeen9d87c312009-01-14 23:22:07 -0600374 xfs_bmap_init(args.flist, args.firstblock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 error = xfs_attr_shortform_to_leaf(&args);
376 if (!error) {
377 error = xfs_bmap_finish(&args.trans, args.flist,
Eric Sandeenf7c99b62007-02-10 18:37:16 +1100378 &committed);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 }
380 if (error) {
381 ASSERT(committed);
382 args.trans = NULL;
383 xfs_bmap_cancel(&flist);
384 goto out;
385 }
386
387 /*
388 * bmap_finish() may have committed the last trans and started
389 * a new one. We need the inode to be in all transactions.
390 */
Christoph Hellwig898621d2010-06-24 11:36:58 +1000391 if (committed)
Christoph Hellwigddc34152011-09-19 15:00:54 +0000392 xfs_trans_ijoin(args.trans, dp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393
394 /*
395 * Commit the leaf transformation. We'll need another (linked)
396 * transaction to add the new attribute to the leaf.
397 */
Niv Sardi322ff6b2008-08-13 16:05:49 +1000398
399 error = xfs_trans_roll(&args.trans, dp);
400 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 goto out;
402
403 }
404
Christoph Hellwigc5b4ac32014-05-13 16:34:14 +1000405 if (xfs_bmap_one_block(dp, XFS_ATTR_FORK))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 error = xfs_attr_leaf_addname(&args);
Christoph Hellwigc5b4ac32014-05-13 16:34:14 +1000407 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 error = xfs_attr_node_addname(&args);
Christoph Hellwigc5b4ac32014-05-13 16:34:14 +1000409 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411
412 /*
413 * If this is a synchronous mount, make sure that the
414 * transaction goes to disk before returning to the user.
415 */
Christoph Hellwigc5b4ac32014-05-13 16:34:14 +1000416 if (mp->m_flags & XFS_MOUNT_WSYNC)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 xfs_trans_set_sync(args.trans);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418
Dave Chinnerdcd79a12010-09-28 12:27:25 +1000419 if ((flags & ATTR_KERNOTIME) == 0)
420 xfs_trans_ichgtime(args.trans, dp, XFS_ICHGTIME_CHG);
421
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 /*
423 * Commit the last in the sequence of transactions.
424 */
425 xfs_trans_log_inode(args.trans, dp, XFS_ILOG_CORE);
Eric Sandeen1c72bf92007-05-08 13:48:42 +1000426 error = xfs_trans_commit(args.trans, XFS_TRANS_RELEASE_LOG_RES);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 xfs_iunlock(dp, XFS_ILOCK_EXCL);
428
Christoph Hellwigc5b4ac32014-05-13 16:34:14 +1000429 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430
431out:
Christoph Hellwigc5b4ac32014-05-13 16:34:14 +1000432 if (args.trans) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 xfs_trans_cancel(args.trans,
434 XFS_TRANS_RELEASE_LOG_RES|XFS_TRANS_ABORT);
Christoph Hellwigc5b4ac32014-05-13 16:34:14 +1000435 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 xfs_iunlock(dp, XFS_ILOCK_EXCL);
Christoph Hellwigc5b4ac32014-05-13 16:34:14 +1000437 return error;
Nathan Scottaa82daa2005-11-02 10:33:33 +1100438}
439
440/*
441 * Generic handler routine to remove a name from an attribute list.
442 * Transitions attribute list from Btree to shortform as necessary.
443 */
Barry Naujoke8b0eba2008-04-22 17:34:31 +1000444STATIC int
445xfs_attr_remove_int(xfs_inode_t *dp, struct xfs_name *name, int flags)
Nathan Scottaa82daa2005-11-02 10:33:33 +1100446{
447 xfs_da_args_t args;
448 xfs_fsblock_t firstblock;
449 xfs_bmap_free_t flist;
450 int error;
451 xfs_mount_t *mp = dp->i_mount;
452
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 /*
454 * Fill in the arg structure for this request.
455 */
456 memset((char *)&args, 0, sizeof(args));
Barry Naujoke8b0eba2008-04-22 17:34:31 +1000457 args.name = name->name;
458 args.namelen = name->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 args.flags = flags;
460 args.hashval = xfs_da_hashname(args.name, args.namelen);
461 args.dp = dp;
462 args.firstblock = &firstblock;
463 args.flist = &flist;
464 args.total = 0;
465 args.whichfork = XFS_ATTR_FORK;
466
467 /*
Dave Chinner4a338212011-06-23 01:35:01 +0000468 * we have no control over the attribute names that userspace passes us
469 * to remove, so we have to allow the name lookup prior to attribute
470 * removal to fail.
471 */
472 args.op_flags = XFS_DA_OP_OKNOENT;
473
474 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 * Attach the dquots to the inode.
476 */
Christoph Hellwig7d095252009-06-08 15:33:32 +0200477 error = xfs_qm_dqattach(dp, 0);
478 if (error)
479 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480
481 /*
482 * Start our first transaction of the day.
483 *
484 * All future transactions during this code must be "chained" off
485 * this one via the trans_dup() call. All transactions will contain
486 * the inode, and the inode will always be marked with trans_ihold().
487 * Since the inode will be locked in all transactions, we must log
488 * the inode in every transaction to let it float upward through
489 * the log.
490 */
491 args.trans = xfs_trans_alloc(mp, XFS_TRANS_ATTR_RM);
492
493 /*
494 * Root fork attributes can use reserved data blocks for this
495 * operation if necessary
496 */
497
498 if (flags & ATTR_ROOT)
499 args.trans->t_flags |= XFS_TRANS_RESERVE;
500
Jie Liu3d3c8b52013-08-12 20:49:59 +1000501 error = xfs_trans_reserve(args.trans, &M_RES(mp)->tr_attrrm,
502 XFS_ATTRRM_SPACE_RES(mp), 0);
503 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 xfs_trans_cancel(args.trans, 0);
505 return(error);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 }
507
508 xfs_ilock(dp, XFS_ILOCK_EXCL);
509 /*
510 * No need to make quota reservations here. We expect to release some
511 * blocks not allocate in the common case.
512 */
Christoph Hellwigddc34152011-09-19 15:00:54 +0000513 xfs_trans_ijoin(args.trans, dp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514
515 /*
516 * Decide on what work routines to call based on the inode size.
517 */
Christoph Hellwigcaf8aab2008-06-23 13:23:41 +1000518 if (!xfs_inode_hasattr(dp)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 error = XFS_ERROR(ENOATTR);
520 goto out;
521 }
522 if (dp->i_d.di_aformat == XFS_DINODE_FMT_LOCAL) {
523 ASSERT(dp->i_afp->if_flags & XFS_IFINLINE);
524 error = xfs_attr_shortform_remove(&args);
525 if (error) {
526 goto out;
527 }
528 } else if (xfs_bmap_one_block(dp, XFS_ATTR_FORK)) {
529 error = xfs_attr_leaf_removename(&args);
530 } else {
531 error = xfs_attr_node_removename(&args);
532 }
533 if (error) {
534 goto out;
535 }
536
537 /*
538 * If this is a synchronous mount, make sure that the
539 * transaction goes to disk before returning to the user.
540 */
541 if (mp->m_flags & XFS_MOUNT_WSYNC) {
542 xfs_trans_set_sync(args.trans);
543 }
544
Dave Chinnerdcd79a12010-09-28 12:27:25 +1000545 if ((flags & ATTR_KERNOTIME) == 0)
546 xfs_trans_ichgtime(args.trans, dp, XFS_ICHGTIME_CHG);
547
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 /*
549 * Commit the last in the sequence of transactions.
550 */
551 xfs_trans_log_inode(args.trans, dp, XFS_ILOG_CORE);
Eric Sandeen1c72bf92007-05-08 13:48:42 +1000552 error = xfs_trans_commit(args.trans, XFS_TRANS_RELEASE_LOG_RES);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 xfs_iunlock(dp, XFS_ILOCK_EXCL);
554
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 return(error);
556
557out:
558 if (args.trans)
559 xfs_trans_cancel(args.trans,
560 XFS_TRANS_RELEASE_LOG_RES|XFS_TRANS_ABORT);
561 xfs_iunlock(dp, XFS_ILOCK_EXCL);
562 return(error);
563}
564
Nathan Scottaa82daa2005-11-02 10:33:33 +1100565int
Christoph Hellwig993386c2007-08-28 16:12:30 +1000566xfs_attr_remove(
567 xfs_inode_t *dp,
Dave Chinnera9273ca2010-01-20 10:47:48 +1100568 const unsigned char *name,
Christoph Hellwig993386c2007-08-28 16:12:30 +1000569 int flags)
Nathan Scottaa82daa2005-11-02 10:33:33 +1100570{
Barry Naujoke8b0eba2008-04-22 17:34:31 +1000571 int error;
572 struct xfs_name xname;
Nathan Scottaa82daa2005-11-02 10:33:33 +1100573
574 XFS_STATS_INC(xs_attr_remove);
575
Nathan Scottaa82daa2005-11-02 10:33:33 +1100576 if (XFS_FORCED_SHUTDOWN(dp->i_mount))
577 return (EIO);
578
Barry Naujoke8b0eba2008-04-22 17:34:31 +1000579 error = xfs_attr_name_to_xname(&xname, name);
580 if (error)
581 return error;
582
Nathan Scottaa82daa2005-11-02 10:33:33 +1100583 xfs_ilock(dp, XFS_ILOCK_SHARED);
Christoph Hellwigcaf8aab2008-06-23 13:23:41 +1000584 if (!xfs_inode_hasattr(dp)) {
Nathan Scottaa82daa2005-11-02 10:33:33 +1100585 xfs_iunlock(dp, XFS_ILOCK_SHARED);
Christoph Hellwigcaf8aab2008-06-23 13:23:41 +1000586 return XFS_ERROR(ENOATTR);
Nathan Scottaa82daa2005-11-02 10:33:33 +1100587 }
588 xfs_iunlock(dp, XFS_ILOCK_SHARED);
589
Barry Naujoke8b0eba2008-04-22 17:34:31 +1000590 return xfs_attr_remove_int(dp, &xname, flags);
Nathan Scottaa82daa2005-11-02 10:33:33 +1100591}
592
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593
594/*========================================================================
595 * External routines when attribute list is inside the inode
596 *========================================================================*/
597
598/*
599 * Add a name to the shortform attribute list structure
600 * This is the external routine.
601 */
602STATIC int
603xfs_attr_shortform_addname(xfs_da_args_t *args)
604{
Nathan Scottd8cc8902005-11-02 10:34:53 +1100605 int newsize, forkoff, retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606
Dave Chinner5a5881c2012-03-22 05:15:13 +0000607 trace_xfs_attr_sf_addname(args);
608
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 retval = xfs_attr_shortform_lookup(args);
610 if ((args->flags & ATTR_REPLACE) && (retval == ENOATTR)) {
611 return(retval);
612 } else if (retval == EEXIST) {
613 if (args->flags & ATTR_CREATE)
614 return(retval);
615 retval = xfs_attr_shortform_remove(args);
616 ASSERT(retval == 0);
617 }
618
Nathan Scottd8cc8902005-11-02 10:34:53 +1100619 if (args->namelen >= XFS_ATTR_SF_ENTSIZE_MAX ||
620 args->valuelen >= XFS_ATTR_SF_ENTSIZE_MAX)
621 return(XFS_ERROR(ENOSPC));
622
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 newsize = XFS_ATTR_SF_TOTSIZE(args->dp);
624 newsize += XFS_ATTR_SF_ENTSIZE_BYNAME(args->namelen, args->valuelen);
Nathan Scottd8cc8902005-11-02 10:34:53 +1100625
626 forkoff = xfs_attr_shortform_bytesfit(args->dp, newsize);
627 if (!forkoff)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 return(XFS_ERROR(ENOSPC));
Nathan Scottd8cc8902005-11-02 10:34:53 +1100629
630 xfs_attr_shortform_add(args, forkoff);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 return(0);
632}
633
634
635/*========================================================================
636 * External routines when attribute list is one block
637 *========================================================================*/
638
639/*
640 * Add a name to the leaf attribute list structure
641 *
642 * This leaf block cannot have a "remote" value, we only call this routine
643 * if bmap_one_block() says there is only one block (ie: no remote blks).
644 */
David Chinnera8272ce2007-11-23 16:28:09 +1100645STATIC int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646xfs_attr_leaf_addname(xfs_da_args_t *args)
647{
648 xfs_inode_t *dp;
Dave Chinner1d9025e2012-06-22 18:50:14 +1000649 struct xfs_buf *bp;
Nathan Scottd8cc8902005-11-02 10:34:53 +1100650 int retval, error, committed, forkoff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651
Dave Chinner5a5881c2012-03-22 05:15:13 +0000652 trace_xfs_attr_leaf_addname(args);
653
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 /*
655 * Read the (only) block in the attribute list in.
656 */
657 dp = args->dp;
658 args->blkno = 0;
Dave Chinner517c2222013-04-24 18:58:55 +1000659 error = xfs_attr3_leaf_read(args->trans, args->dp, args->blkno, -1, &bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 if (error)
Dave Chinnerad14c332012-11-12 22:54:16 +1100661 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662
663 /*
664 * Look up the given attribute in the leaf block. Figure out if
665 * the given flags produce an error or call for an atomic rename.
666 */
Dave Chinner517c2222013-04-24 18:58:55 +1000667 retval = xfs_attr3_leaf_lookup_int(bp, args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 if ((args->flags & ATTR_REPLACE) && (retval == ENOATTR)) {
Dave Chinner1d9025e2012-06-22 18:50:14 +1000669 xfs_trans_brelse(args->trans, bp);
Dave Chinner517c2222013-04-24 18:58:55 +1000670 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 } else if (retval == EEXIST) {
672 if (args->flags & ATTR_CREATE) { /* pure create op */
Dave Chinner1d9025e2012-06-22 18:50:14 +1000673 xfs_trans_brelse(args->trans, bp);
Dave Chinner517c2222013-04-24 18:58:55 +1000674 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 }
Dave Chinner5a5881c2012-03-22 05:15:13 +0000676
677 trace_xfs_attr_leaf_replace(args);
678
Barry Naujok6a178102008-05-21 16:42:05 +1000679 args->op_flags |= XFS_DA_OP_RENAME; /* an atomic rename */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 args->blkno2 = args->blkno; /* set 2nd entry info*/
681 args->index2 = args->index;
682 args->rmtblkno2 = args->rmtblkno;
683 args->rmtblkcnt2 = args->rmtblkcnt;
684 }
685
686 /*
687 * Add the attribute to the leaf block, transitioning to a Btree
688 * if required.
689 */
Dave Chinner517c2222013-04-24 18:58:55 +1000690 retval = xfs_attr3_leaf_add(bp, args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 if (retval == ENOSPC) {
692 /*
693 * Promote the attribute list to the Btree format, then
694 * Commit that transaction so that the node_addname() call
695 * can manage its own transactions.
696 */
Eric Sandeen9d87c312009-01-14 23:22:07 -0600697 xfs_bmap_init(args->flist, args->firstblock);
Dave Chinner517c2222013-04-24 18:58:55 +1000698 error = xfs_attr3_leaf_to_node(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 if (!error) {
700 error = xfs_bmap_finish(&args->trans, args->flist,
Eric Sandeenf7c99b62007-02-10 18:37:16 +1100701 &committed);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 }
703 if (error) {
704 ASSERT(committed);
705 args->trans = NULL;
706 xfs_bmap_cancel(args->flist);
707 return(error);
708 }
709
710 /*
711 * bmap_finish() may have committed the last trans and started
712 * a new one. We need the inode to be in all transactions.
713 */
Christoph Hellwig898621d2010-06-24 11:36:58 +1000714 if (committed)
Christoph Hellwigddc34152011-09-19 15:00:54 +0000715 xfs_trans_ijoin(args->trans, dp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716
717 /*
718 * Commit the current trans (including the inode) and start
719 * a new one.
720 */
Niv Sardi322ff6b2008-08-13 16:05:49 +1000721 error = xfs_trans_roll(&args->trans, dp);
722 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 return (error);
724
725 /*
726 * Fob the whole rest of the problem off on the Btree code.
727 */
728 error = xfs_attr_node_addname(args);
729 return(error);
730 }
731
732 /*
733 * Commit the transaction that added the attr name so that
734 * later routines can manage their own transactions.
735 */
Niv Sardi322ff6b2008-08-13 16:05:49 +1000736 error = xfs_trans_roll(&args->trans, dp);
737 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 return (error);
739
740 /*
741 * If there was an out-of-line value, allocate the blocks we
742 * identified for its storage and copy the value. This is done
743 * after we create the attribute so that we don't overflow the
744 * maximum size of a transaction and/or hit a deadlock.
745 */
746 if (args->rmtblkno > 0) {
747 error = xfs_attr_rmtval_set(args);
748 if (error)
749 return(error);
750 }
751
752 /*
753 * If this is an atomic rename operation, we must "flip" the
754 * incomplete flags on the "new" and "old" attribute/value pairs
755 * so that one disappears and one appears atomically. Then we
756 * must remove the "old" attribute/value pair.
757 */
Barry Naujok6a178102008-05-21 16:42:05 +1000758 if (args->op_flags & XFS_DA_OP_RENAME) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 /*
760 * In a separate transaction, set the incomplete flag on the
761 * "old" attr and clear the incomplete flag on the "new" attr.
762 */
Dave Chinner517c2222013-04-24 18:58:55 +1000763 error = xfs_attr3_leaf_flipflags(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 if (error)
765 return(error);
766
767 /*
768 * Dismantle the "old" attribute/value pair by removing
769 * a "remote" value (if it exists).
770 */
771 args->index = args->index2;
772 args->blkno = args->blkno2;
773 args->rmtblkno = args->rmtblkno2;
774 args->rmtblkcnt = args->rmtblkcnt2;
775 if (args->rmtblkno) {
776 error = xfs_attr_rmtval_remove(args);
777 if (error)
778 return(error);
779 }
780
781 /*
782 * Read in the block containing the "old" attr, then
783 * remove the "old" attr from that block (neat, huh!)
784 */
Dave Chinner517c2222013-04-24 18:58:55 +1000785 error = xfs_attr3_leaf_read(args->trans, args->dp, args->blkno,
Dave Chinnerad14c332012-11-12 22:54:16 +1100786 -1, &bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 if (error)
Dave Chinnerad14c332012-11-12 22:54:16 +1100788 return error;
789
Dave Chinner517c2222013-04-24 18:58:55 +1000790 xfs_attr3_leaf_remove(bp, args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791
792 /*
793 * If the result is small enough, shrink it all into the inode.
794 */
Nathan Scottd8cc8902005-11-02 10:34:53 +1100795 if ((forkoff = xfs_attr_shortform_allfit(bp, dp))) {
Eric Sandeen9d87c312009-01-14 23:22:07 -0600796 xfs_bmap_init(args->flist, args->firstblock);
Dave Chinner517c2222013-04-24 18:58:55 +1000797 error = xfs_attr3_leaf_to_shortform(bp, args, forkoff);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 /* bp is gone due to xfs_da_shrink_inode */
799 if (!error) {
800 error = xfs_bmap_finish(&args->trans,
801 args->flist,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 &committed);
803 }
804 if (error) {
805 ASSERT(committed);
806 args->trans = NULL;
807 xfs_bmap_cancel(args->flist);
808 return(error);
809 }
810
811 /*
812 * bmap_finish() may have committed the last trans
813 * and started a new one. We need the inode to be
814 * in all transactions.
815 */
Christoph Hellwig898621d2010-06-24 11:36:58 +1000816 if (committed)
Christoph Hellwigddc34152011-09-19 15:00:54 +0000817 xfs_trans_ijoin(args->trans, dp, 0);
Dave Chinner1d9025e2012-06-22 18:50:14 +1000818 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819
820 /*
821 * Commit the remove and start the next trans in series.
822 */
Niv Sardi322ff6b2008-08-13 16:05:49 +1000823 error = xfs_trans_roll(&args->trans, dp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824
825 } else if (args->rmtblkno > 0) {
826 /*
827 * Added a "remote" value, just clear the incomplete flag.
828 */
Dave Chinner517c2222013-04-24 18:58:55 +1000829 error = xfs_attr3_leaf_clearflag(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 }
Dave Chinner517c2222013-04-24 18:58:55 +1000831 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832}
833
834/*
835 * Remove a name from the leaf attribute list structure
836 *
837 * This leaf block cannot have a "remote" value, we only call this routine
838 * if bmap_one_block() says there is only one block (ie: no remote blks).
839 */
840STATIC int
841xfs_attr_leaf_removename(xfs_da_args_t *args)
842{
843 xfs_inode_t *dp;
Dave Chinner1d9025e2012-06-22 18:50:14 +1000844 struct xfs_buf *bp;
Nathan Scottd8cc8902005-11-02 10:34:53 +1100845 int error, committed, forkoff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846
Dave Chinner5a5881c2012-03-22 05:15:13 +0000847 trace_xfs_attr_leaf_removename(args);
848
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 /*
850 * Remove the attribute.
851 */
852 dp = args->dp;
853 args->blkno = 0;
Dave Chinner517c2222013-04-24 18:58:55 +1000854 error = xfs_attr3_leaf_read(args->trans, args->dp, args->blkno, -1, &bp);
Dave Chinnerad14c332012-11-12 22:54:16 +1100855 if (error)
856 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857
Dave Chinner517c2222013-04-24 18:58:55 +1000858 error = xfs_attr3_leaf_lookup_int(bp, args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 if (error == ENOATTR) {
Dave Chinner1d9025e2012-06-22 18:50:14 +1000860 xfs_trans_brelse(args->trans, bp);
Dave Chinner517c2222013-04-24 18:58:55 +1000861 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 }
863
Dave Chinner517c2222013-04-24 18:58:55 +1000864 xfs_attr3_leaf_remove(bp, args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865
866 /*
867 * If the result is small enough, shrink it all into the inode.
868 */
Nathan Scottd8cc8902005-11-02 10:34:53 +1100869 if ((forkoff = xfs_attr_shortform_allfit(bp, dp))) {
Eric Sandeen9d87c312009-01-14 23:22:07 -0600870 xfs_bmap_init(args->flist, args->firstblock);
Dave Chinner517c2222013-04-24 18:58:55 +1000871 error = xfs_attr3_leaf_to_shortform(bp, args, forkoff);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872 /* bp is gone due to xfs_da_shrink_inode */
873 if (!error) {
874 error = xfs_bmap_finish(&args->trans, args->flist,
Eric Sandeenf7c99b62007-02-10 18:37:16 +1100875 &committed);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 }
877 if (error) {
878 ASSERT(committed);
879 args->trans = NULL;
880 xfs_bmap_cancel(args->flist);
Dave Chinner517c2222013-04-24 18:58:55 +1000881 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882 }
883
884 /*
885 * bmap_finish() may have committed the last trans and started
886 * a new one. We need the inode to be in all transactions.
887 */
Christoph Hellwig898621d2010-06-24 11:36:58 +1000888 if (committed)
Christoph Hellwigddc34152011-09-19 15:00:54 +0000889 xfs_trans_ijoin(args->trans, dp, 0);
Dave Chinner1d9025e2012-06-22 18:50:14 +1000890 }
Dave Chinner517c2222013-04-24 18:58:55 +1000891 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892}
893
894/*
895 * Look up a name in a leaf attribute list structure.
896 *
897 * This leaf block cannot have a "remote" value, we only call this routine
898 * if bmap_one_block() says there is only one block (ie: no remote blks).
899 */
Christoph Hellwigba0f32d2005-06-21 15:36:52 +1000900STATIC int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901xfs_attr_leaf_get(xfs_da_args_t *args)
902{
Dave Chinner1d9025e2012-06-22 18:50:14 +1000903 struct xfs_buf *bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904 int error;
905
Dave Chinneree732592012-11-12 22:53:53 +1100906 trace_xfs_attr_leaf_get(args);
907
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908 args->blkno = 0;
Dave Chinner517c2222013-04-24 18:58:55 +1000909 error = xfs_attr3_leaf_read(args->trans, args->dp, args->blkno, -1, &bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 if (error)
Dave Chinnerad14c332012-11-12 22:54:16 +1100911 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912
Dave Chinner517c2222013-04-24 18:58:55 +1000913 error = xfs_attr3_leaf_lookup_int(bp, args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914 if (error != EEXIST) {
Dave Chinner1d9025e2012-06-22 18:50:14 +1000915 xfs_trans_brelse(args->trans, bp);
Dave Chinner517c2222013-04-24 18:58:55 +1000916 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917 }
Dave Chinner517c2222013-04-24 18:58:55 +1000918 error = xfs_attr3_leaf_getvalue(bp, args);
Dave Chinner1d9025e2012-06-22 18:50:14 +1000919 xfs_trans_brelse(args->trans, bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920 if (!error && (args->rmtblkno > 0) && !(args->flags & ATTR_KERNOVAL)) {
921 error = xfs_attr_rmtval_get(args);
922 }
Dave Chinner517c2222013-04-24 18:58:55 +1000923 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924}
925
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926/*========================================================================
927 * External routines when attribute list size > XFS_LBSIZE(mp).
928 *========================================================================*/
929
930/*
931 * Add a name to a Btree-format attribute list.
932 *
933 * This will involve walking down the Btree, and may involve splitting
934 * leaf nodes and even splitting intermediate nodes up to and including
935 * the root node (a special case of an intermediate node).
936 *
937 * "Remote" attribute values confuse the issue and atomic rename operations
938 * add a whole extra layer of confusion on top of that.
939 */
940STATIC int
941xfs_attr_node_addname(xfs_da_args_t *args)
942{
943 xfs_da_state_t *state;
944 xfs_da_state_blk_t *blk;
945 xfs_inode_t *dp;
946 xfs_mount_t *mp;
947 int committed, retval, error;
948
Dave Chinner5a5881c2012-03-22 05:15:13 +0000949 trace_xfs_attr_node_addname(args);
950
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 /*
952 * Fill in bucket of arguments/results/context to carry around.
953 */
954 dp = args->dp;
955 mp = dp->i_mount;
956restart:
957 state = xfs_da_state_alloc();
958 state->args = args;
959 state->mp = mp;
960 state->blocksize = state->mp->m_sb.sb_blocksize;
961 state->node_ents = state->mp->m_attr_node_ents;
962
963 /*
964 * Search to see if name already exists, and get back a pointer
965 * to where it should go.
966 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000967 error = xfs_da3_node_lookup_int(state, &retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 if (error)
969 goto out;
970 blk = &state->path.blk[ state->path.active-1 ];
971 ASSERT(blk->magic == XFS_ATTR_LEAF_MAGIC);
972 if ((args->flags & ATTR_REPLACE) && (retval == ENOATTR)) {
973 goto out;
974 } else if (retval == EEXIST) {
975 if (args->flags & ATTR_CREATE)
976 goto out;
Dave Chinner5a5881c2012-03-22 05:15:13 +0000977
978 trace_xfs_attr_node_replace(args);
979
Barry Naujok6a178102008-05-21 16:42:05 +1000980 args->op_flags |= XFS_DA_OP_RENAME; /* atomic rename op */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981 args->blkno2 = args->blkno; /* set 2nd entry info*/
982 args->index2 = args->index;
983 args->rmtblkno2 = args->rmtblkno;
984 args->rmtblkcnt2 = args->rmtblkcnt;
985 args->rmtblkno = 0;
986 args->rmtblkcnt = 0;
987 }
988
Dave Chinner517c2222013-04-24 18:58:55 +1000989 retval = xfs_attr3_leaf_add(blk->bp, state->args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990 if (retval == ENOSPC) {
991 if (state->path.active == 1) {
992 /*
993 * Its really a single leaf node, but it had
994 * out-of-line values so it looked like it *might*
995 * have been a b-tree.
996 */
997 xfs_da_state_free(state);
Eric Sandeen6dd93e92013-07-31 20:18:54 -0500998 state = NULL;
Eric Sandeen9d87c312009-01-14 23:22:07 -0600999 xfs_bmap_init(args->flist, args->firstblock);
Dave Chinner517c2222013-04-24 18:58:55 +10001000 error = xfs_attr3_leaf_to_node(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001 if (!error) {
1002 error = xfs_bmap_finish(&args->trans,
1003 args->flist,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 &committed);
1005 }
1006 if (error) {
1007 ASSERT(committed);
1008 args->trans = NULL;
1009 xfs_bmap_cancel(args->flist);
1010 goto out;
1011 }
1012
1013 /*
1014 * bmap_finish() may have committed the last trans
1015 * and started a new one. We need the inode to be
1016 * in all transactions.
1017 */
Christoph Hellwig898621d2010-06-24 11:36:58 +10001018 if (committed)
Christoph Hellwigddc34152011-09-19 15:00:54 +00001019 xfs_trans_ijoin(args->trans, dp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020
1021 /*
1022 * Commit the node conversion and start the next
1023 * trans in the chain.
1024 */
Niv Sardi322ff6b2008-08-13 16:05:49 +10001025 error = xfs_trans_roll(&args->trans, dp);
1026 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027 goto out;
1028
1029 goto restart;
1030 }
1031
1032 /*
1033 * Split as many Btree elements as required.
1034 * This code tracks the new and old attr's location
1035 * in the index/blkno/rmtblkno/rmtblkcnt fields and
1036 * in the index2/blkno2/rmtblkno2/rmtblkcnt2 fields.
1037 */
Eric Sandeen9d87c312009-01-14 23:22:07 -06001038 xfs_bmap_init(args->flist, args->firstblock);
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001039 error = xfs_da3_split(state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040 if (!error) {
1041 error = xfs_bmap_finish(&args->trans, args->flist,
Eric Sandeenf7c99b62007-02-10 18:37:16 +11001042 &committed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043 }
1044 if (error) {
1045 ASSERT(committed);
1046 args->trans = NULL;
1047 xfs_bmap_cancel(args->flist);
1048 goto out;
1049 }
1050
1051 /*
1052 * bmap_finish() may have committed the last trans and started
1053 * a new one. We need the inode to be in all transactions.
1054 */
Christoph Hellwig898621d2010-06-24 11:36:58 +10001055 if (committed)
Christoph Hellwigddc34152011-09-19 15:00:54 +00001056 xfs_trans_ijoin(args->trans, dp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 } else {
1058 /*
1059 * Addition succeeded, update Btree hashvals.
1060 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001061 xfs_da3_fixhashpath(state, &state->path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 }
1063
1064 /*
1065 * Kill the state structure, we're done with it and need to
1066 * allow the buffers to come back later.
1067 */
1068 xfs_da_state_free(state);
1069 state = NULL;
1070
1071 /*
1072 * Commit the leaf addition or btree split and start the next
1073 * trans in the chain.
1074 */
Niv Sardi322ff6b2008-08-13 16:05:49 +10001075 error = xfs_trans_roll(&args->trans, dp);
1076 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077 goto out;
1078
1079 /*
1080 * If there was an out-of-line value, allocate the blocks we
1081 * identified for its storage and copy the value. This is done
1082 * after we create the attribute so that we don't overflow the
1083 * maximum size of a transaction and/or hit a deadlock.
1084 */
1085 if (args->rmtblkno > 0) {
1086 error = xfs_attr_rmtval_set(args);
1087 if (error)
1088 return(error);
1089 }
1090
1091 /*
1092 * If this is an atomic rename operation, we must "flip" the
1093 * incomplete flags on the "new" and "old" attribute/value pairs
1094 * so that one disappears and one appears atomically. Then we
1095 * must remove the "old" attribute/value pair.
1096 */
Barry Naujok6a178102008-05-21 16:42:05 +10001097 if (args->op_flags & XFS_DA_OP_RENAME) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098 /*
1099 * In a separate transaction, set the incomplete flag on the
1100 * "old" attr and clear the incomplete flag on the "new" attr.
1101 */
Dave Chinner517c2222013-04-24 18:58:55 +10001102 error = xfs_attr3_leaf_flipflags(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103 if (error)
1104 goto out;
1105
1106 /*
1107 * Dismantle the "old" attribute/value pair by removing
1108 * a "remote" value (if it exists).
1109 */
1110 args->index = args->index2;
1111 args->blkno = args->blkno2;
1112 args->rmtblkno = args->rmtblkno2;
1113 args->rmtblkcnt = args->rmtblkcnt2;
1114 if (args->rmtblkno) {
1115 error = xfs_attr_rmtval_remove(args);
1116 if (error)
1117 return(error);
1118 }
1119
1120 /*
1121 * Re-find the "old" attribute entry after any split ops.
1122 * The INCOMPLETE flag means that we will find the "old"
1123 * attr, not the "new" one.
1124 */
1125 args->flags |= XFS_ATTR_INCOMPLETE;
1126 state = xfs_da_state_alloc();
1127 state->args = args;
1128 state->mp = mp;
1129 state->blocksize = state->mp->m_sb.sb_blocksize;
1130 state->node_ents = state->mp->m_attr_node_ents;
1131 state->inleaf = 0;
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001132 error = xfs_da3_node_lookup_int(state, &retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 if (error)
1134 goto out;
1135
1136 /*
1137 * Remove the name and update the hashvals in the tree.
1138 */
1139 blk = &state->path.blk[ state->path.active-1 ];
1140 ASSERT(blk->magic == XFS_ATTR_LEAF_MAGIC);
Dave Chinner517c2222013-04-24 18:58:55 +10001141 error = xfs_attr3_leaf_remove(blk->bp, args);
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001142 xfs_da3_fixhashpath(state, &state->path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143
1144 /*
1145 * Check to see if the tree needs to be collapsed.
1146 */
1147 if (retval && (state->path.active > 1)) {
Eric Sandeen9d87c312009-01-14 23:22:07 -06001148 xfs_bmap_init(args->flist, args->firstblock);
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001149 error = xfs_da3_join(state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150 if (!error) {
1151 error = xfs_bmap_finish(&args->trans,
1152 args->flist,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153 &committed);
1154 }
1155 if (error) {
1156 ASSERT(committed);
1157 args->trans = NULL;
1158 xfs_bmap_cancel(args->flist);
1159 goto out;
1160 }
1161
1162 /*
1163 * bmap_finish() may have committed the last trans
1164 * and started a new one. We need the inode to be
1165 * in all transactions.
1166 */
Christoph Hellwig898621d2010-06-24 11:36:58 +10001167 if (committed)
Christoph Hellwigddc34152011-09-19 15:00:54 +00001168 xfs_trans_ijoin(args->trans, dp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169 }
1170
1171 /*
1172 * Commit and start the next trans in the chain.
1173 */
Niv Sardi322ff6b2008-08-13 16:05:49 +10001174 error = xfs_trans_roll(&args->trans, dp);
1175 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176 goto out;
1177
1178 } else if (args->rmtblkno > 0) {
1179 /*
1180 * Added a "remote" value, just clear the incomplete flag.
1181 */
Dave Chinner517c2222013-04-24 18:58:55 +10001182 error = xfs_attr3_leaf_clearflag(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183 if (error)
1184 goto out;
1185 }
1186 retval = error = 0;
1187
1188out:
1189 if (state)
1190 xfs_da_state_free(state);
1191 if (error)
1192 return(error);
1193 return(retval);
1194}
1195
1196/*
1197 * Remove a name from a B-tree attribute list.
1198 *
1199 * This will involve walking down the Btree, and may involve joining
1200 * leaf nodes and even joining intermediate nodes up to and including
1201 * the root node (a special case of an intermediate node).
1202 */
1203STATIC int
1204xfs_attr_node_removename(xfs_da_args_t *args)
1205{
1206 xfs_da_state_t *state;
1207 xfs_da_state_blk_t *blk;
1208 xfs_inode_t *dp;
Dave Chinner1d9025e2012-06-22 18:50:14 +10001209 struct xfs_buf *bp;
Nathan Scottd8cc8902005-11-02 10:34:53 +11001210 int retval, error, committed, forkoff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211
Dave Chinner5a5881c2012-03-22 05:15:13 +00001212 trace_xfs_attr_node_removename(args);
1213
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214 /*
1215 * Tie a string around our finger to remind us where we are.
1216 */
1217 dp = args->dp;
1218 state = xfs_da_state_alloc();
1219 state->args = args;
1220 state->mp = dp->i_mount;
1221 state->blocksize = state->mp->m_sb.sb_blocksize;
1222 state->node_ents = state->mp->m_attr_node_ents;
1223
1224 /*
1225 * Search to see if name exists, and get back a pointer to it.
1226 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001227 error = xfs_da3_node_lookup_int(state, &retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228 if (error || (retval != EEXIST)) {
1229 if (error == 0)
1230 error = retval;
1231 goto out;
1232 }
1233
1234 /*
1235 * If there is an out-of-line value, de-allocate the blocks.
1236 * This is done before we remove the attribute so that we don't
1237 * overflow the maximum size of a transaction and/or hit a deadlock.
1238 */
1239 blk = &state->path.blk[ state->path.active-1 ];
1240 ASSERT(blk->bp != NULL);
1241 ASSERT(blk->magic == XFS_ATTR_LEAF_MAGIC);
1242 if (args->rmtblkno > 0) {
1243 /*
1244 * Fill in disk block numbers in the state structure
1245 * so that we can get the buffers back after we commit
1246 * several transactions in the following calls.
1247 */
1248 error = xfs_attr_fillstate(state);
1249 if (error)
1250 goto out;
1251
1252 /*
1253 * Mark the attribute as INCOMPLETE, then bunmapi() the
1254 * remote value.
1255 */
Dave Chinner517c2222013-04-24 18:58:55 +10001256 error = xfs_attr3_leaf_setflag(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257 if (error)
1258 goto out;
1259 error = xfs_attr_rmtval_remove(args);
1260 if (error)
1261 goto out;
1262
1263 /*
1264 * Refill the state structure with buffers, the prior calls
1265 * released our buffers.
1266 */
1267 error = xfs_attr_refillstate(state);
1268 if (error)
1269 goto out;
1270 }
1271
1272 /*
1273 * Remove the name and update the hashvals in the tree.
1274 */
1275 blk = &state->path.blk[ state->path.active-1 ];
1276 ASSERT(blk->magic == XFS_ATTR_LEAF_MAGIC);
Dave Chinner517c2222013-04-24 18:58:55 +10001277 retval = xfs_attr3_leaf_remove(blk->bp, args);
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001278 xfs_da3_fixhashpath(state, &state->path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279
1280 /*
1281 * Check to see if the tree needs to be collapsed.
1282 */
1283 if (retval && (state->path.active > 1)) {
Eric Sandeen9d87c312009-01-14 23:22:07 -06001284 xfs_bmap_init(args->flist, args->firstblock);
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001285 error = xfs_da3_join(state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286 if (!error) {
1287 error = xfs_bmap_finish(&args->trans, args->flist,
Eric Sandeenf7c99b62007-02-10 18:37:16 +11001288 &committed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289 }
1290 if (error) {
1291 ASSERT(committed);
1292 args->trans = NULL;
1293 xfs_bmap_cancel(args->flist);
1294 goto out;
1295 }
1296
1297 /*
1298 * bmap_finish() may have committed the last trans and started
1299 * a new one. We need the inode to be in all transactions.
1300 */
Christoph Hellwig898621d2010-06-24 11:36:58 +10001301 if (committed)
Christoph Hellwigddc34152011-09-19 15:00:54 +00001302 xfs_trans_ijoin(args->trans, dp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303
1304 /*
1305 * Commit the Btree join operation and start a new trans.
1306 */
Niv Sardi322ff6b2008-08-13 16:05:49 +10001307 error = xfs_trans_roll(&args->trans, dp);
1308 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309 goto out;
1310 }
1311
1312 /*
1313 * If the result is small enough, push it all into the inode.
1314 */
1315 if (xfs_bmap_one_block(dp, XFS_ATTR_FORK)) {
1316 /*
1317 * Have to get rid of the copy of this dabuf in the state.
1318 */
1319 ASSERT(state->path.active == 1);
1320 ASSERT(state->path.blk[0].bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321 state->path.blk[0].bp = NULL;
1322
Dave Chinner517c2222013-04-24 18:58:55 +10001323 error = xfs_attr3_leaf_read(args->trans, args->dp, 0, -1, &bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324 if (error)
1325 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326
Nathan Scottd8cc8902005-11-02 10:34:53 +11001327 if ((forkoff = xfs_attr_shortform_allfit(bp, dp))) {
Eric Sandeen9d87c312009-01-14 23:22:07 -06001328 xfs_bmap_init(args->flist, args->firstblock);
Dave Chinner517c2222013-04-24 18:58:55 +10001329 error = xfs_attr3_leaf_to_shortform(bp, args, forkoff);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330 /* bp is gone due to xfs_da_shrink_inode */
1331 if (!error) {
1332 error = xfs_bmap_finish(&args->trans,
1333 args->flist,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334 &committed);
1335 }
1336 if (error) {
1337 ASSERT(committed);
1338 args->trans = NULL;
1339 xfs_bmap_cancel(args->flist);
1340 goto out;
1341 }
1342
1343 /*
1344 * bmap_finish() may have committed the last trans
1345 * and started a new one. We need the inode to be
1346 * in all transactions.
1347 */
Christoph Hellwig898621d2010-06-24 11:36:58 +10001348 if (committed)
Christoph Hellwigddc34152011-09-19 15:00:54 +00001349 xfs_trans_ijoin(args->trans, dp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350 } else
Dave Chinner1d9025e2012-06-22 18:50:14 +10001351 xfs_trans_brelse(args->trans, bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352 }
1353 error = 0;
1354
1355out:
1356 xfs_da_state_free(state);
1357 return(error);
1358}
1359
1360/*
1361 * Fill in the disk block numbers in the state structure for the buffers
1362 * that are attached to the state structure.
1363 * This is done so that we can quickly reattach ourselves to those buffers
Nathan Scottc41564b2006-03-29 08:55:14 +10001364 * after some set of transaction commits have released these buffers.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365 */
1366STATIC int
1367xfs_attr_fillstate(xfs_da_state_t *state)
1368{
1369 xfs_da_state_path_t *path;
1370 xfs_da_state_blk_t *blk;
1371 int level;
1372
Dave Chinneree732592012-11-12 22:53:53 +11001373 trace_xfs_attr_fillstate(state->args);
1374
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375 /*
1376 * Roll down the "path" in the state structure, storing the on-disk
1377 * block number for those buffers in the "path".
1378 */
1379 path = &state->path;
1380 ASSERT((path->active >= 0) && (path->active < XFS_DA_NODE_MAXDEPTH));
1381 for (blk = path->blk, level = 0; level < path->active; blk++, level++) {
1382 if (blk->bp) {
Dave Chinner1d9025e2012-06-22 18:50:14 +10001383 blk->disk_blkno = XFS_BUF_ADDR(blk->bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384 blk->bp = NULL;
1385 } else {
1386 blk->disk_blkno = 0;
1387 }
1388 }
1389
1390 /*
1391 * Roll down the "altpath" in the state structure, storing the on-disk
1392 * block number for those buffers in the "altpath".
1393 */
1394 path = &state->altpath;
1395 ASSERT((path->active >= 0) && (path->active < XFS_DA_NODE_MAXDEPTH));
1396 for (blk = path->blk, level = 0; level < path->active; blk++, level++) {
1397 if (blk->bp) {
Dave Chinner1d9025e2012-06-22 18:50:14 +10001398 blk->disk_blkno = XFS_BUF_ADDR(blk->bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399 blk->bp = NULL;
1400 } else {
1401 blk->disk_blkno = 0;
1402 }
1403 }
1404
1405 return(0);
1406}
1407
1408/*
1409 * Reattach the buffers to the state structure based on the disk block
1410 * numbers stored in the state structure.
Nathan Scottc41564b2006-03-29 08:55:14 +10001411 * This is done after some set of transaction commits have released those
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412 * buffers from our grip.
1413 */
1414STATIC int
1415xfs_attr_refillstate(xfs_da_state_t *state)
1416{
1417 xfs_da_state_path_t *path;
1418 xfs_da_state_blk_t *blk;
1419 int level, error;
1420
Dave Chinneree732592012-11-12 22:53:53 +11001421 trace_xfs_attr_refillstate(state->args);
1422
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423 /*
1424 * Roll down the "path" in the state structure, storing the on-disk
1425 * block number for those buffers in the "path".
1426 */
1427 path = &state->path;
1428 ASSERT((path->active >= 0) && (path->active < XFS_DA_NODE_MAXDEPTH));
1429 for (blk = path->blk, level = 0; level < path->active; blk++, level++) {
1430 if (blk->disk_blkno) {
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001431 error = xfs_da3_node_read(state->args->trans,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432 state->args->dp,
1433 blk->blkno, blk->disk_blkno,
Dave Chinnerd9392a42012-11-12 22:54:17 +11001434 &blk->bp, XFS_ATTR_FORK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435 if (error)
1436 return(error);
1437 } else {
1438 blk->bp = NULL;
1439 }
1440 }
1441
1442 /*
1443 * Roll down the "altpath" in the state structure, storing the on-disk
1444 * block number for those buffers in the "altpath".
1445 */
1446 path = &state->altpath;
1447 ASSERT((path->active >= 0) && (path->active < XFS_DA_NODE_MAXDEPTH));
1448 for (blk = path->blk, level = 0; level < path->active; blk++, level++) {
1449 if (blk->disk_blkno) {
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001450 error = xfs_da3_node_read(state->args->trans,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451 state->args->dp,
1452 blk->blkno, blk->disk_blkno,
Dave Chinnerd9392a42012-11-12 22:54:17 +11001453 &blk->bp, XFS_ATTR_FORK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454 if (error)
1455 return(error);
1456 } else {
1457 blk->bp = NULL;
1458 }
1459 }
1460
1461 return(0);
1462}
1463
1464/*
1465 * Look up a filename in a node attribute list.
1466 *
1467 * This routine gets called for any attribute fork that has more than one
1468 * block, ie: both true Btree attr lists and for single-leaf-blocks with
1469 * "remote" values taking up more blocks.
1470 */
Christoph Hellwigba0f32d2005-06-21 15:36:52 +10001471STATIC int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472xfs_attr_node_get(xfs_da_args_t *args)
1473{
1474 xfs_da_state_t *state;
1475 xfs_da_state_blk_t *blk;
1476 int error, retval;
1477 int i;
1478
Dave Chinneree732592012-11-12 22:53:53 +11001479 trace_xfs_attr_node_get(args);
1480
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481 state = xfs_da_state_alloc();
1482 state->args = args;
1483 state->mp = args->dp->i_mount;
1484 state->blocksize = state->mp->m_sb.sb_blocksize;
1485 state->node_ents = state->mp->m_attr_node_ents;
1486
1487 /*
1488 * Search to see if name exists, and get back a pointer to it.
1489 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001490 error = xfs_da3_node_lookup_int(state, &retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491 if (error) {
1492 retval = error;
1493 } else if (retval == EEXIST) {
1494 blk = &state->path.blk[ state->path.active-1 ];
1495 ASSERT(blk->bp != NULL);
1496 ASSERT(blk->magic == XFS_ATTR_LEAF_MAGIC);
1497
1498 /*
1499 * Get the value, local or "remote"
1500 */
Dave Chinner517c2222013-04-24 18:58:55 +10001501 retval = xfs_attr3_leaf_getvalue(blk->bp, args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502 if (!retval && (args->rmtblkno > 0)
1503 && !(args->flags & ATTR_KERNOVAL)) {
1504 retval = xfs_attr_rmtval_get(args);
1505 }
1506 }
1507
1508 /*
1509 * If not in a transaction, we have to release all the buffers.
1510 */
1511 for (i = 0; i < state->path.active; i++) {
Dave Chinner1d9025e2012-06-22 18:50:14 +10001512 xfs_trans_brelse(args->trans, state->path.blk[i].bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513 state->path.blk[i].bp = NULL;
1514 }
1515
1516 xfs_da_state_free(state);
1517 return(retval);
1518}