blob: 01f226710079b6b4dd1d3ccc8438f01dd561628f [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 Hellwigb87d0222014-05-13 16:34:24 +1000109int
110xfs_attr_get(
Christoph Hellwige82fa0c2009-11-14 16:17:20 +0000111 struct xfs_inode *ip,
Christoph Hellwigb87d0222014-05-13 16:34:24 +1000112 const unsigned char *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{
Christoph Hellwigb87d0222014-05-13 16:34:24 +1000117 struct xfs_da_args args;
118 struct xfs_name xname;
119 uint lock_mode;
120 int error;
121
122 XFS_STATS_INC(xs_attr_get);
123
124 if (XFS_FORCED_SHUTDOWN(ip->i_mount))
125 return EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126
Christoph Hellwigcaf8aab2008-06-23 13:23:41 +1000127 if (!xfs_inode_hasattr(ip))
128 return ENOATTR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129
Christoph Hellwigb87d0222014-05-13 16:34:24 +1000130 error = xfs_attr_name_to_xname(&xname, name);
131 if (error)
132 return error;
133
134 memset(&args, 0, sizeof(args));
135 args.name = xname.name;
136 args.namelen = xname.len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 args.value = value;
138 args.valuelen = *valuelenp;
139 args.flags = flags;
140 args.hashval = xfs_da_hashname(args.name, args.namelen);
141 args.dp = ip;
142 args.whichfork = XFS_ATTR_FORK;
143
Christoph Hellwig683cb942013-12-06 12:30:15 -0800144 lock_mode = xfs_ilock_attr_map_shared(ip);
Christoph Hellwigb87d0222014-05-13 16:34:24 +1000145 if (!xfs_inode_hasattr(ip))
146 error = ENOATTR;
147 else if (ip->i_d.di_aformat == XFS_DINODE_FMT_LOCAL)
148 error = xfs_attr_shortform_getvalue(&args);
149 else if (xfs_bmap_one_block(ip, XFS_ATTR_FORK))
150 error = xfs_attr_leaf_get(&args);
151 else
152 error = xfs_attr_node_get(&args);
Christoph Hellwig683cb942013-12-06 12:30:15 -0800153 xfs_iunlock(ip, lock_mode);
Christoph Hellwigb87d0222014-05-13 16:34:24 +1000154
155 *valuelenp = args.valuelen;
156 return error == EEXIST ? 0 : error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157}
158
Niv Sardi5e9da7b2008-08-13 16:03:35 +1000159/*
160 * Calculate how many blocks we need for the new attribute,
161 */
Eric Sandeen5d77c0d2009-11-19 15:52:00 +0000162STATIC int
Niv Sardi5e9da7b2008-08-13 16:03:35 +1000163xfs_attr_calc_size(
164 struct xfs_inode *ip,
165 int namelen,
166 int valuelen,
167 int *local)
168{
169 struct xfs_mount *mp = ip->i_mount;
170 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 */
177 size = xfs_attr_leaf_newentsize(namelen, valuelen,
178 mp->m_sb.sb_blocksize, local);
179
180 nblks = XFS_DAENTER_SPACE_RES(mp, XFS_ATTR_FORK);
181 if (*local) {
182 if (size > (mp->m_sb.sb_blocksize >> 1)) {
183 /* Double split possible */
184 nblks *= 2;
185 }
186 } else {
187 /*
188 * Out of line attribute, cannot double split, but
189 * make room for the attribute value itself.
190 */
191 uint dblocks = XFS_B_TO_FSB(mp, valuelen);
192 nblks += dblocks;
193 nblks += XFS_NEXTENTADD_SPACE_RES(mp, dblocks, XFS_ATTR_FORK);
194 }
195
196 return nblks;
197}
198
Christoph Hellwigc5b4ac32014-05-13 16:34:14 +1000199int
200xfs_attr_set(
201 struct xfs_inode *dp,
202 const unsigned char *name,
203 unsigned char *value,
204 int valuelen,
205 int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206{
Jie Liu3d3c8b52013-08-12 20:49:59 +1000207 struct xfs_mount *mp = dp->i_mount;
Christoph Hellwigc5b4ac32014-05-13 16:34:14 +1000208 struct xfs_da_args args;
209 struct xfs_bmap_free flist;
Jie Liu3d3c8b52013-08-12 20:49:59 +1000210 struct xfs_trans_res tres;
Christoph Hellwigc5b4ac32014-05-13 16:34:14 +1000211 struct xfs_name xname;
212 xfs_fsblock_t firstblock;
Jie Liu3d3c8b52013-08-12 20:49:59 +1000213 int rsvd = (flags & ATTR_ROOT) != 0;
Christoph Hellwigc5b4ac32014-05-13 16:34:14 +1000214 int error, err2, committed, local;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215
Christoph Hellwigc5b4ac32014-05-13 16:34:14 +1000216 XFS_STATS_INC(xs_attr_set);
217
218 if (XFS_FORCED_SHUTDOWN(dp->i_mount))
219 return EIO;
220
221 error = xfs_attr_name_to_xname(&xname, name);
222 if (error)
223 return error;
224
Christoph Hellwig7d095252009-06-08 15:33:32 +0200225 error = xfs_qm_dqattach(dp, 0);
226 if (error)
227 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228
229 /*
230 * If the inode doesn't have an attribute fork, add one.
231 * (inode must not be locked when we call this routine)
232 */
233 if (XFS_IFORK_Q(dp) == 0) {
Barry Naujoke5889e92007-02-10 18:35:58 +1100234 int sf_size = sizeof(xfs_attr_sf_hdr_t) +
Christoph Hellwigc5b4ac32014-05-13 16:34:14 +1000235 XFS_ATTR_SF_ENTSIZE_BYNAME(xname.len, valuelen);
Barry Naujoke5889e92007-02-10 18:35:58 +1100236
Christoph Hellwigc5b4ac32014-05-13 16:34:14 +1000237 error = xfs_bmap_add_attrfork(dp, sf_size, rsvd);
238 if (error)
239 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 }
241
Christoph Hellwigc5b4ac32014-05-13 16:34:14 +1000242 memset(&args, 0, sizeof(args));
243 args.name = xname.name;
244 args.namelen = xname.len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 args.value = value;
246 args.valuelen = valuelen;
247 args.flags = flags;
248 args.hashval = xfs_da_hashname(args.name, args.namelen);
249 args.dp = dp;
250 args.firstblock = &firstblock;
251 args.flist = &flist;
252 args.whichfork = XFS_ATTR_FORK;
Barry Naujok6a178102008-05-21 16:42:05 +1000253 args.op_flags = XFS_DA_OP_ADDNAME | XFS_DA_OP_OKNOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 /* Size is now blocks for attribute data */
Christoph Hellwigc5b4ac32014-05-13 16:34:14 +1000256 args.total = xfs_attr_calc_size(dp, xname.len, valuelen, &local);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257
258 /*
259 * Start our first transaction of the day.
260 *
261 * All future transactions during this code must be "chained" off
262 * this one via the trans_dup() call. All transactions will contain
263 * the inode, and the inode will always be marked with trans_ihold().
264 * Since the inode will be locked in all transactions, we must log
265 * the inode in every transaction to let it float upward through
266 * the log.
267 */
268 args.trans = xfs_trans_alloc(mp, XFS_TRANS_ATTR_SET);
269
270 /*
271 * Root fork attributes can use reserved data blocks for this
272 * operation if necessary
273 */
274
275 if (rsvd)
276 args.trans->t_flags |= XFS_TRANS_RESERVE;
277
Jie Liu3d3c8b52013-08-12 20:49:59 +1000278 tres.tr_logres = M_RES(mp)->tr_attrsetm.tr_logres +
279 M_RES(mp)->tr_attrsetrt.tr_logres * args.total;
280 tres.tr_logcount = XFS_ATTRSET_LOG_COUNT;
281 tres.tr_logflags = XFS_TRANS_PERM_LOG_RES;
282 error = xfs_trans_reserve(args.trans, &tres, args.total, 0);
Jeff Liua21cd502013-01-28 21:27:53 +0800283 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284 xfs_trans_cancel(args.trans, 0);
Christoph Hellwigc5b4ac32014-05-13 16:34:14 +1000285 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 }
287 xfs_ilock(dp, XFS_ILOCK_EXCL);
288
Christoph Hellwig7d095252009-06-08 15:33:32 +0200289 error = xfs_trans_reserve_quota_nblks(args.trans, dp, args.total, 0,
Niv Sardi5e9da7b2008-08-13 16:03:35 +1000290 rsvd ? XFS_QMOPT_RES_REGBLKS | XFS_QMOPT_FORCE_RES :
291 XFS_QMOPT_RES_REGBLKS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 if (error) {
293 xfs_iunlock(dp, XFS_ILOCK_EXCL);
294 xfs_trans_cancel(args.trans, XFS_TRANS_RELEASE_LOG_RES);
Christoph Hellwigc5b4ac32014-05-13 16:34:14 +1000295 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 }
297
Christoph Hellwigddc34152011-09-19 15:00:54 +0000298 xfs_trans_ijoin(args.trans, dp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299
300 /*
Nathan Scottc41564b2006-03-29 08:55:14 +1000301 * If the attribute list is non-existent or a shortform list,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 * upgrade it to a single-leaf-block attribute list.
303 */
Christoph Hellwigc5b4ac32014-05-13 16:34:14 +1000304 if (dp->i_d.di_aformat == XFS_DINODE_FMT_LOCAL ||
305 (dp->i_d.di_aformat == XFS_DINODE_FMT_EXTENTS &&
306 dp->i_d.di_anextents == 0)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307
308 /*
309 * Build initial attribute list (if required).
310 */
311 if (dp->i_d.di_aformat == XFS_DINODE_FMT_EXTENTS)
Nathan Scottd8cc8902005-11-02 10:34:53 +1100312 xfs_attr_shortform_create(&args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313
314 /*
315 * Try to add the attr to the attribute list in
316 * the inode.
317 */
318 error = xfs_attr_shortform_addname(&args);
319 if (error != ENOSPC) {
320 /*
321 * Commit the shortform mods, and we're done.
322 * NOTE: this is also the error path (EEXIST, etc).
323 */
324 ASSERT(args.trans != NULL);
325
326 /*
327 * If this is a synchronous mount, make sure that
328 * the transaction goes to disk before returning
329 * to the user.
330 */
Christoph Hellwigc5b4ac32014-05-13 16:34:14 +1000331 if (mp->m_flags & XFS_MOUNT_WSYNC)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 xfs_trans_set_sync(args.trans);
Dave Chinnerdcd79a12010-09-28 12:27:25 +1000333
334 if (!error && (flags & ATTR_KERNOTIME) == 0) {
335 xfs_trans_ichgtime(args.trans, dp,
336 XFS_ICHGTIME_CHG);
337 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 err2 = xfs_trans_commit(args.trans,
Eric Sandeen1c72bf92007-05-08 13:48:42 +1000339 XFS_TRANS_RELEASE_LOG_RES);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 xfs_iunlock(dp, XFS_ILOCK_EXCL);
341
Christoph Hellwigc5b4ac32014-05-13 16:34:14 +1000342 return error ? error : err2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 }
344
345 /*
346 * It won't fit in the shortform, transform to a leaf block.
347 * GROT: another possible req'mt for a double-split btree op.
348 */
Eric Sandeen9d87c312009-01-14 23:22:07 -0600349 xfs_bmap_init(args.flist, args.firstblock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 error = xfs_attr_shortform_to_leaf(&args);
351 if (!error) {
352 error = xfs_bmap_finish(&args.trans, args.flist,
Eric Sandeenf7c99b62007-02-10 18:37:16 +1100353 &committed);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 }
355 if (error) {
356 ASSERT(committed);
357 args.trans = NULL;
358 xfs_bmap_cancel(&flist);
359 goto out;
360 }
361
362 /*
363 * bmap_finish() may have committed the last trans and started
364 * a new one. We need the inode to be in all transactions.
365 */
Christoph Hellwig898621d2010-06-24 11:36:58 +1000366 if (committed)
Christoph Hellwigddc34152011-09-19 15:00:54 +0000367 xfs_trans_ijoin(args.trans, dp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368
369 /*
370 * Commit the leaf transformation. We'll need another (linked)
371 * transaction to add the new attribute to the leaf.
372 */
Niv Sardi322ff6b2008-08-13 16:05:49 +1000373
374 error = xfs_trans_roll(&args.trans, dp);
375 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 goto out;
377
378 }
379
Christoph Hellwigc5b4ac32014-05-13 16:34:14 +1000380 if (xfs_bmap_one_block(dp, XFS_ATTR_FORK))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 error = xfs_attr_leaf_addname(&args);
Christoph Hellwigc5b4ac32014-05-13 16:34:14 +1000382 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 error = xfs_attr_node_addname(&args);
Christoph Hellwigc5b4ac32014-05-13 16:34:14 +1000384 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386
387 /*
388 * If this is a synchronous mount, make sure that the
389 * transaction goes to disk before returning to the user.
390 */
Christoph Hellwigc5b4ac32014-05-13 16:34:14 +1000391 if (mp->m_flags & XFS_MOUNT_WSYNC)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 xfs_trans_set_sync(args.trans);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393
Dave Chinnerdcd79a12010-09-28 12:27:25 +1000394 if ((flags & ATTR_KERNOTIME) == 0)
395 xfs_trans_ichgtime(args.trans, dp, XFS_ICHGTIME_CHG);
396
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 /*
398 * Commit the last in the sequence of transactions.
399 */
400 xfs_trans_log_inode(args.trans, dp, XFS_ILOG_CORE);
Eric Sandeen1c72bf92007-05-08 13:48:42 +1000401 error = xfs_trans_commit(args.trans, XFS_TRANS_RELEASE_LOG_RES);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 xfs_iunlock(dp, XFS_ILOCK_EXCL);
403
Christoph Hellwigc5b4ac32014-05-13 16:34:14 +1000404 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405
406out:
Christoph Hellwigc5b4ac32014-05-13 16:34:14 +1000407 if (args.trans) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 xfs_trans_cancel(args.trans,
409 XFS_TRANS_RELEASE_LOG_RES|XFS_TRANS_ABORT);
Christoph Hellwigc5b4ac32014-05-13 16:34:14 +1000410 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 xfs_iunlock(dp, XFS_ILOCK_EXCL);
Christoph Hellwigc5b4ac32014-05-13 16:34:14 +1000412 return error;
Nathan Scottaa82daa2005-11-02 10:33:33 +1100413}
414
415/*
416 * Generic handler routine to remove a name from an attribute list.
417 * Transitions attribute list from Btree to shortform as necessary.
418 */
Barry Naujoke8b0eba2008-04-22 17:34:31 +1000419STATIC int
420xfs_attr_remove_int(xfs_inode_t *dp, struct xfs_name *name, int flags)
Nathan Scottaa82daa2005-11-02 10:33:33 +1100421{
422 xfs_da_args_t args;
423 xfs_fsblock_t firstblock;
424 xfs_bmap_free_t flist;
425 int error;
426 xfs_mount_t *mp = dp->i_mount;
427
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 /*
429 * Fill in the arg structure for this request.
430 */
431 memset((char *)&args, 0, sizeof(args));
Barry Naujoke8b0eba2008-04-22 17:34:31 +1000432 args.name = name->name;
433 args.namelen = name->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 args.flags = flags;
435 args.hashval = xfs_da_hashname(args.name, args.namelen);
436 args.dp = dp;
437 args.firstblock = &firstblock;
438 args.flist = &flist;
439 args.total = 0;
440 args.whichfork = XFS_ATTR_FORK;
441
442 /*
Dave Chinner4a338212011-06-23 01:35:01 +0000443 * we have no control over the attribute names that userspace passes us
444 * to remove, so we have to allow the name lookup prior to attribute
445 * removal to fail.
446 */
447 args.op_flags = XFS_DA_OP_OKNOENT;
448
449 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 * Attach the dquots to the inode.
451 */
Christoph Hellwig7d095252009-06-08 15:33:32 +0200452 error = xfs_qm_dqattach(dp, 0);
453 if (error)
454 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455
456 /*
457 * Start our first transaction of the day.
458 *
459 * All future transactions during this code must be "chained" off
460 * this one via the trans_dup() call. All transactions will contain
461 * the inode, and the inode will always be marked with trans_ihold().
462 * Since the inode will be locked in all transactions, we must log
463 * the inode in every transaction to let it float upward through
464 * the log.
465 */
466 args.trans = xfs_trans_alloc(mp, XFS_TRANS_ATTR_RM);
467
468 /*
469 * Root fork attributes can use reserved data blocks for this
470 * operation if necessary
471 */
472
473 if (flags & ATTR_ROOT)
474 args.trans->t_flags |= XFS_TRANS_RESERVE;
475
Jie Liu3d3c8b52013-08-12 20:49:59 +1000476 error = xfs_trans_reserve(args.trans, &M_RES(mp)->tr_attrrm,
477 XFS_ATTRRM_SPACE_RES(mp), 0);
478 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 xfs_trans_cancel(args.trans, 0);
480 return(error);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 }
482
483 xfs_ilock(dp, XFS_ILOCK_EXCL);
484 /*
485 * No need to make quota reservations here. We expect to release some
486 * blocks not allocate in the common case.
487 */
Christoph Hellwigddc34152011-09-19 15:00:54 +0000488 xfs_trans_ijoin(args.trans, dp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489
490 /*
491 * Decide on what work routines to call based on the inode size.
492 */
Christoph Hellwigcaf8aab2008-06-23 13:23:41 +1000493 if (!xfs_inode_hasattr(dp)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 error = XFS_ERROR(ENOATTR);
495 goto out;
496 }
497 if (dp->i_d.di_aformat == XFS_DINODE_FMT_LOCAL) {
498 ASSERT(dp->i_afp->if_flags & XFS_IFINLINE);
499 error = xfs_attr_shortform_remove(&args);
500 if (error) {
501 goto out;
502 }
503 } else if (xfs_bmap_one_block(dp, XFS_ATTR_FORK)) {
504 error = xfs_attr_leaf_removename(&args);
505 } else {
506 error = xfs_attr_node_removename(&args);
507 }
508 if (error) {
509 goto out;
510 }
511
512 /*
513 * If this is a synchronous mount, make sure that the
514 * transaction goes to disk before returning to the user.
515 */
516 if (mp->m_flags & XFS_MOUNT_WSYNC) {
517 xfs_trans_set_sync(args.trans);
518 }
519
Dave Chinnerdcd79a12010-09-28 12:27:25 +1000520 if ((flags & ATTR_KERNOTIME) == 0)
521 xfs_trans_ichgtime(args.trans, dp, XFS_ICHGTIME_CHG);
522
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 /*
524 * Commit the last in the sequence of transactions.
525 */
526 xfs_trans_log_inode(args.trans, dp, XFS_ILOG_CORE);
Eric Sandeen1c72bf92007-05-08 13:48:42 +1000527 error = xfs_trans_commit(args.trans, XFS_TRANS_RELEASE_LOG_RES);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 xfs_iunlock(dp, XFS_ILOCK_EXCL);
529
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 return(error);
531
532out:
533 if (args.trans)
534 xfs_trans_cancel(args.trans,
535 XFS_TRANS_RELEASE_LOG_RES|XFS_TRANS_ABORT);
536 xfs_iunlock(dp, XFS_ILOCK_EXCL);
537 return(error);
538}
539
Nathan Scottaa82daa2005-11-02 10:33:33 +1100540int
Christoph Hellwig993386c2007-08-28 16:12:30 +1000541xfs_attr_remove(
542 xfs_inode_t *dp,
Dave Chinnera9273ca2010-01-20 10:47:48 +1100543 const unsigned char *name,
Christoph Hellwig993386c2007-08-28 16:12:30 +1000544 int flags)
Nathan Scottaa82daa2005-11-02 10:33:33 +1100545{
Barry Naujoke8b0eba2008-04-22 17:34:31 +1000546 int error;
547 struct xfs_name xname;
Nathan Scottaa82daa2005-11-02 10:33:33 +1100548
549 XFS_STATS_INC(xs_attr_remove);
550
Nathan Scottaa82daa2005-11-02 10:33:33 +1100551 if (XFS_FORCED_SHUTDOWN(dp->i_mount))
552 return (EIO);
553
Barry Naujoke8b0eba2008-04-22 17:34:31 +1000554 error = xfs_attr_name_to_xname(&xname, name);
555 if (error)
556 return error;
557
Nathan Scottaa82daa2005-11-02 10:33:33 +1100558 xfs_ilock(dp, XFS_ILOCK_SHARED);
Christoph Hellwigcaf8aab2008-06-23 13:23:41 +1000559 if (!xfs_inode_hasattr(dp)) {
Nathan Scottaa82daa2005-11-02 10:33:33 +1100560 xfs_iunlock(dp, XFS_ILOCK_SHARED);
Christoph Hellwigcaf8aab2008-06-23 13:23:41 +1000561 return XFS_ERROR(ENOATTR);
Nathan Scottaa82daa2005-11-02 10:33:33 +1100562 }
563 xfs_iunlock(dp, XFS_ILOCK_SHARED);
564
Barry Naujoke8b0eba2008-04-22 17:34:31 +1000565 return xfs_attr_remove_int(dp, &xname, flags);
Nathan Scottaa82daa2005-11-02 10:33:33 +1100566}
567
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568
569/*========================================================================
570 * External routines when attribute list is inside the inode
571 *========================================================================*/
572
573/*
574 * Add a name to the shortform attribute list structure
575 * This is the external routine.
576 */
577STATIC int
578xfs_attr_shortform_addname(xfs_da_args_t *args)
579{
Nathan Scottd8cc8902005-11-02 10:34:53 +1100580 int newsize, forkoff, retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581
Dave Chinner5a5881c2012-03-22 05:15:13 +0000582 trace_xfs_attr_sf_addname(args);
583
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 retval = xfs_attr_shortform_lookup(args);
585 if ((args->flags & ATTR_REPLACE) && (retval == ENOATTR)) {
586 return(retval);
587 } else if (retval == EEXIST) {
588 if (args->flags & ATTR_CREATE)
589 return(retval);
590 retval = xfs_attr_shortform_remove(args);
591 ASSERT(retval == 0);
592 }
593
Nathan Scottd8cc8902005-11-02 10:34:53 +1100594 if (args->namelen >= XFS_ATTR_SF_ENTSIZE_MAX ||
595 args->valuelen >= XFS_ATTR_SF_ENTSIZE_MAX)
596 return(XFS_ERROR(ENOSPC));
597
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 newsize = XFS_ATTR_SF_TOTSIZE(args->dp);
599 newsize += XFS_ATTR_SF_ENTSIZE_BYNAME(args->namelen, args->valuelen);
Nathan Scottd8cc8902005-11-02 10:34:53 +1100600
601 forkoff = xfs_attr_shortform_bytesfit(args->dp, newsize);
602 if (!forkoff)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 return(XFS_ERROR(ENOSPC));
Nathan Scottd8cc8902005-11-02 10:34:53 +1100604
605 xfs_attr_shortform_add(args, forkoff);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 return(0);
607}
608
609
610/*========================================================================
611 * External routines when attribute list is one block
612 *========================================================================*/
613
614/*
615 * Add a name to the leaf attribute list structure
616 *
617 * This leaf block cannot have a "remote" value, we only call this routine
618 * if bmap_one_block() says there is only one block (ie: no remote blks).
619 */
David Chinnera8272ce2007-11-23 16:28:09 +1100620STATIC int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621xfs_attr_leaf_addname(xfs_da_args_t *args)
622{
623 xfs_inode_t *dp;
Dave Chinner1d9025e2012-06-22 18:50:14 +1000624 struct xfs_buf *bp;
Nathan Scottd8cc8902005-11-02 10:34:53 +1100625 int retval, error, committed, forkoff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626
Dave Chinner5a5881c2012-03-22 05:15:13 +0000627 trace_xfs_attr_leaf_addname(args);
628
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 /*
630 * Read the (only) block in the attribute list in.
631 */
632 dp = args->dp;
633 args->blkno = 0;
Dave Chinner517c2222013-04-24 18:58:55 +1000634 error = xfs_attr3_leaf_read(args->trans, args->dp, args->blkno, -1, &bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 if (error)
Dave Chinnerad14c332012-11-12 22:54:16 +1100636 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637
638 /*
639 * Look up the given attribute in the leaf block. Figure out if
640 * the given flags produce an error or call for an atomic rename.
641 */
Dave Chinner517c2222013-04-24 18:58:55 +1000642 retval = xfs_attr3_leaf_lookup_int(bp, args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 if ((args->flags & ATTR_REPLACE) && (retval == ENOATTR)) {
Dave Chinner1d9025e2012-06-22 18:50:14 +1000644 xfs_trans_brelse(args->trans, bp);
Dave Chinner517c2222013-04-24 18:58:55 +1000645 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 } else if (retval == EEXIST) {
647 if (args->flags & ATTR_CREATE) { /* pure create op */
Dave Chinner1d9025e2012-06-22 18:50:14 +1000648 xfs_trans_brelse(args->trans, bp);
Dave Chinner517c2222013-04-24 18:58:55 +1000649 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 }
Dave Chinner5a5881c2012-03-22 05:15:13 +0000651
652 trace_xfs_attr_leaf_replace(args);
653
Barry Naujok6a178102008-05-21 16:42:05 +1000654 args->op_flags |= XFS_DA_OP_RENAME; /* an atomic rename */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 args->blkno2 = args->blkno; /* set 2nd entry info*/
656 args->index2 = args->index;
657 args->rmtblkno2 = args->rmtblkno;
658 args->rmtblkcnt2 = args->rmtblkcnt;
659 }
660
661 /*
662 * Add the attribute to the leaf block, transitioning to a Btree
663 * if required.
664 */
Dave Chinner517c2222013-04-24 18:58:55 +1000665 retval = xfs_attr3_leaf_add(bp, args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 if (retval == ENOSPC) {
667 /*
668 * Promote the attribute list to the Btree format, then
669 * Commit that transaction so that the node_addname() call
670 * can manage its own transactions.
671 */
Eric Sandeen9d87c312009-01-14 23:22:07 -0600672 xfs_bmap_init(args->flist, args->firstblock);
Dave Chinner517c2222013-04-24 18:58:55 +1000673 error = xfs_attr3_leaf_to_node(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 if (!error) {
675 error = xfs_bmap_finish(&args->trans, args->flist,
Eric Sandeenf7c99b62007-02-10 18:37:16 +1100676 &committed);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 }
678 if (error) {
679 ASSERT(committed);
680 args->trans = NULL;
681 xfs_bmap_cancel(args->flist);
682 return(error);
683 }
684
685 /*
686 * bmap_finish() may have committed the last trans and started
687 * a new one. We need the inode to be in all transactions.
688 */
Christoph Hellwig898621d2010-06-24 11:36:58 +1000689 if (committed)
Christoph Hellwigddc34152011-09-19 15:00:54 +0000690 xfs_trans_ijoin(args->trans, dp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691
692 /*
693 * Commit the current trans (including the inode) and start
694 * a new one.
695 */
Niv Sardi322ff6b2008-08-13 16:05:49 +1000696 error = xfs_trans_roll(&args->trans, dp);
697 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 return (error);
699
700 /*
701 * Fob the whole rest of the problem off on the Btree code.
702 */
703 error = xfs_attr_node_addname(args);
704 return(error);
705 }
706
707 /*
708 * Commit the transaction that added the attr name so that
709 * later routines can manage their own transactions.
710 */
Niv Sardi322ff6b2008-08-13 16:05:49 +1000711 error = xfs_trans_roll(&args->trans, dp);
712 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 return (error);
714
715 /*
716 * If there was an out-of-line value, allocate the blocks we
717 * identified for its storage and copy the value. This is done
718 * after we create the attribute so that we don't overflow the
719 * maximum size of a transaction and/or hit a deadlock.
720 */
721 if (args->rmtblkno > 0) {
722 error = xfs_attr_rmtval_set(args);
723 if (error)
724 return(error);
725 }
726
727 /*
728 * If this is an atomic rename operation, we must "flip" the
729 * incomplete flags on the "new" and "old" attribute/value pairs
730 * so that one disappears and one appears atomically. Then we
731 * must remove the "old" attribute/value pair.
732 */
Barry Naujok6a178102008-05-21 16:42:05 +1000733 if (args->op_flags & XFS_DA_OP_RENAME) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 /*
735 * In a separate transaction, set the incomplete flag on the
736 * "old" attr and clear the incomplete flag on the "new" attr.
737 */
Dave Chinner517c2222013-04-24 18:58:55 +1000738 error = xfs_attr3_leaf_flipflags(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 if (error)
740 return(error);
741
742 /*
743 * Dismantle the "old" attribute/value pair by removing
744 * a "remote" value (if it exists).
745 */
746 args->index = args->index2;
747 args->blkno = args->blkno2;
748 args->rmtblkno = args->rmtblkno2;
749 args->rmtblkcnt = args->rmtblkcnt2;
750 if (args->rmtblkno) {
751 error = xfs_attr_rmtval_remove(args);
752 if (error)
753 return(error);
754 }
755
756 /*
757 * Read in the block containing the "old" attr, then
758 * remove the "old" attr from that block (neat, huh!)
759 */
Dave Chinner517c2222013-04-24 18:58:55 +1000760 error = xfs_attr3_leaf_read(args->trans, args->dp, args->blkno,
Dave Chinnerad14c332012-11-12 22:54:16 +1100761 -1, &bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 if (error)
Dave Chinnerad14c332012-11-12 22:54:16 +1100763 return error;
764
Dave Chinner517c2222013-04-24 18:58:55 +1000765 xfs_attr3_leaf_remove(bp, args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766
767 /*
768 * If the result is small enough, shrink it all into the inode.
769 */
Nathan Scottd8cc8902005-11-02 10:34:53 +1100770 if ((forkoff = xfs_attr_shortform_allfit(bp, dp))) {
Eric Sandeen9d87c312009-01-14 23:22:07 -0600771 xfs_bmap_init(args->flist, args->firstblock);
Dave Chinner517c2222013-04-24 18:58:55 +1000772 error = xfs_attr3_leaf_to_shortform(bp, args, forkoff);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 /* bp is gone due to xfs_da_shrink_inode */
774 if (!error) {
775 error = xfs_bmap_finish(&args->trans,
776 args->flist,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 &committed);
778 }
779 if (error) {
780 ASSERT(committed);
781 args->trans = NULL;
782 xfs_bmap_cancel(args->flist);
783 return(error);
784 }
785
786 /*
787 * bmap_finish() may have committed the last trans
788 * and started a new one. We need the inode to be
789 * in all transactions.
790 */
Christoph Hellwig898621d2010-06-24 11:36:58 +1000791 if (committed)
Christoph Hellwigddc34152011-09-19 15:00:54 +0000792 xfs_trans_ijoin(args->trans, dp, 0);
Dave Chinner1d9025e2012-06-22 18:50:14 +1000793 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794
795 /*
796 * Commit the remove and start the next trans in series.
797 */
Niv Sardi322ff6b2008-08-13 16:05:49 +1000798 error = xfs_trans_roll(&args->trans, dp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799
800 } else if (args->rmtblkno > 0) {
801 /*
802 * Added a "remote" value, just clear the incomplete flag.
803 */
Dave Chinner517c2222013-04-24 18:58:55 +1000804 error = xfs_attr3_leaf_clearflag(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 }
Dave Chinner517c2222013-04-24 18:58:55 +1000806 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807}
808
809/*
810 * Remove a name from the leaf attribute list structure
811 *
812 * This leaf block cannot have a "remote" value, we only call this routine
813 * if bmap_one_block() says there is only one block (ie: no remote blks).
814 */
815STATIC int
816xfs_attr_leaf_removename(xfs_da_args_t *args)
817{
818 xfs_inode_t *dp;
Dave Chinner1d9025e2012-06-22 18:50:14 +1000819 struct xfs_buf *bp;
Nathan Scottd8cc8902005-11-02 10:34:53 +1100820 int error, committed, forkoff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821
Dave Chinner5a5881c2012-03-22 05:15:13 +0000822 trace_xfs_attr_leaf_removename(args);
823
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 /*
825 * Remove the attribute.
826 */
827 dp = args->dp;
828 args->blkno = 0;
Dave Chinner517c2222013-04-24 18:58:55 +1000829 error = xfs_attr3_leaf_read(args->trans, args->dp, args->blkno, -1, &bp);
Dave Chinnerad14c332012-11-12 22:54:16 +1100830 if (error)
831 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832
Dave Chinner517c2222013-04-24 18:58:55 +1000833 error = xfs_attr3_leaf_lookup_int(bp, args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 if (error == ENOATTR) {
Dave Chinner1d9025e2012-06-22 18:50:14 +1000835 xfs_trans_brelse(args->trans, bp);
Dave Chinner517c2222013-04-24 18:58:55 +1000836 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 }
838
Dave Chinner517c2222013-04-24 18:58:55 +1000839 xfs_attr3_leaf_remove(bp, args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840
841 /*
842 * If the result is small enough, shrink it all into the inode.
843 */
Nathan Scottd8cc8902005-11-02 10:34:53 +1100844 if ((forkoff = xfs_attr_shortform_allfit(bp, dp))) {
Eric Sandeen9d87c312009-01-14 23:22:07 -0600845 xfs_bmap_init(args->flist, args->firstblock);
Dave Chinner517c2222013-04-24 18:58:55 +1000846 error = xfs_attr3_leaf_to_shortform(bp, args, forkoff);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 /* bp is gone due to xfs_da_shrink_inode */
848 if (!error) {
849 error = xfs_bmap_finish(&args->trans, args->flist,
Eric Sandeenf7c99b62007-02-10 18:37:16 +1100850 &committed);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 }
852 if (error) {
853 ASSERT(committed);
854 args->trans = NULL;
855 xfs_bmap_cancel(args->flist);
Dave Chinner517c2222013-04-24 18:58:55 +1000856 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 }
858
859 /*
860 * bmap_finish() may have committed the last trans and started
861 * a new one. We need the inode to be in all transactions.
862 */
Christoph Hellwig898621d2010-06-24 11:36:58 +1000863 if (committed)
Christoph Hellwigddc34152011-09-19 15:00:54 +0000864 xfs_trans_ijoin(args->trans, dp, 0);
Dave Chinner1d9025e2012-06-22 18:50:14 +1000865 }
Dave Chinner517c2222013-04-24 18:58:55 +1000866 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867}
868
869/*
870 * Look up a name in a leaf attribute list structure.
871 *
872 * This leaf block cannot have a "remote" value, we only call this routine
873 * if bmap_one_block() says there is only one block (ie: no remote blks).
874 */
Christoph Hellwigba0f32d2005-06-21 15:36:52 +1000875STATIC int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876xfs_attr_leaf_get(xfs_da_args_t *args)
877{
Dave Chinner1d9025e2012-06-22 18:50:14 +1000878 struct xfs_buf *bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 int error;
880
Dave Chinneree732592012-11-12 22:53:53 +1100881 trace_xfs_attr_leaf_get(args);
882
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 args->blkno = 0;
Dave Chinner517c2222013-04-24 18:58:55 +1000884 error = xfs_attr3_leaf_read(args->trans, args->dp, args->blkno, -1, &bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 if (error)
Dave Chinnerad14c332012-11-12 22:54:16 +1100886 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887
Dave Chinner517c2222013-04-24 18:58:55 +1000888 error = xfs_attr3_leaf_lookup_int(bp, args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 if (error != EEXIST) {
Dave Chinner1d9025e2012-06-22 18:50:14 +1000890 xfs_trans_brelse(args->trans, bp);
Dave Chinner517c2222013-04-24 18:58:55 +1000891 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892 }
Dave Chinner517c2222013-04-24 18:58:55 +1000893 error = xfs_attr3_leaf_getvalue(bp, args);
Dave Chinner1d9025e2012-06-22 18:50:14 +1000894 xfs_trans_brelse(args->trans, bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895 if (!error && (args->rmtblkno > 0) && !(args->flags & ATTR_KERNOVAL)) {
896 error = xfs_attr_rmtval_get(args);
897 }
Dave Chinner517c2222013-04-24 18:58:55 +1000898 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899}
900
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901/*========================================================================
902 * External routines when attribute list size > XFS_LBSIZE(mp).
903 *========================================================================*/
904
905/*
906 * Add a name to a Btree-format attribute list.
907 *
908 * This will involve walking down the Btree, and may involve splitting
909 * leaf nodes and even splitting intermediate nodes up to and including
910 * the root node (a special case of an intermediate node).
911 *
912 * "Remote" attribute values confuse the issue and atomic rename operations
913 * add a whole extra layer of confusion on top of that.
914 */
915STATIC int
916xfs_attr_node_addname(xfs_da_args_t *args)
917{
918 xfs_da_state_t *state;
919 xfs_da_state_blk_t *blk;
920 xfs_inode_t *dp;
921 xfs_mount_t *mp;
922 int committed, retval, error;
923
Dave Chinner5a5881c2012-03-22 05:15:13 +0000924 trace_xfs_attr_node_addname(args);
925
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926 /*
927 * Fill in bucket of arguments/results/context to carry around.
928 */
929 dp = args->dp;
930 mp = dp->i_mount;
931restart:
932 state = xfs_da_state_alloc();
933 state->args = args;
934 state->mp = mp;
935 state->blocksize = state->mp->m_sb.sb_blocksize;
936 state->node_ents = state->mp->m_attr_node_ents;
937
938 /*
939 * Search to see if name already exists, and get back a pointer
940 * to where it should go.
941 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000942 error = xfs_da3_node_lookup_int(state, &retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943 if (error)
944 goto out;
945 blk = &state->path.blk[ state->path.active-1 ];
946 ASSERT(blk->magic == XFS_ATTR_LEAF_MAGIC);
947 if ((args->flags & ATTR_REPLACE) && (retval == ENOATTR)) {
948 goto out;
949 } else if (retval == EEXIST) {
950 if (args->flags & ATTR_CREATE)
951 goto out;
Dave Chinner5a5881c2012-03-22 05:15:13 +0000952
953 trace_xfs_attr_node_replace(args);
954
Barry Naujok6a178102008-05-21 16:42:05 +1000955 args->op_flags |= XFS_DA_OP_RENAME; /* atomic rename op */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956 args->blkno2 = args->blkno; /* set 2nd entry info*/
957 args->index2 = args->index;
958 args->rmtblkno2 = args->rmtblkno;
959 args->rmtblkcnt2 = args->rmtblkcnt;
960 args->rmtblkno = 0;
961 args->rmtblkcnt = 0;
962 }
963
Dave Chinner517c2222013-04-24 18:58:55 +1000964 retval = xfs_attr3_leaf_add(blk->bp, state->args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 if (retval == ENOSPC) {
966 if (state->path.active == 1) {
967 /*
968 * Its really a single leaf node, but it had
969 * out-of-line values so it looked like it *might*
970 * have been a b-tree.
971 */
972 xfs_da_state_free(state);
Eric Sandeen6dd93e92013-07-31 20:18:54 -0500973 state = NULL;
Eric Sandeen9d87c312009-01-14 23:22:07 -0600974 xfs_bmap_init(args->flist, args->firstblock);
Dave Chinner517c2222013-04-24 18:58:55 +1000975 error = xfs_attr3_leaf_to_node(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 if (!error) {
977 error = xfs_bmap_finish(&args->trans,
978 args->flist,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 &committed);
980 }
981 if (error) {
982 ASSERT(committed);
983 args->trans = NULL;
984 xfs_bmap_cancel(args->flist);
985 goto out;
986 }
987
988 /*
989 * bmap_finish() may have committed the last trans
990 * and started a new one. We need the inode to be
991 * in all transactions.
992 */
Christoph Hellwig898621d2010-06-24 11:36:58 +1000993 if (committed)
Christoph Hellwigddc34152011-09-19 15:00:54 +0000994 xfs_trans_ijoin(args->trans, dp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995
996 /*
997 * Commit the node conversion and start the next
998 * trans in the chain.
999 */
Niv Sardi322ff6b2008-08-13 16:05:49 +10001000 error = xfs_trans_roll(&args->trans, dp);
1001 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002 goto out;
1003
1004 goto restart;
1005 }
1006
1007 /*
1008 * Split as many Btree elements as required.
1009 * This code tracks the new and old attr's location
1010 * in the index/blkno/rmtblkno/rmtblkcnt fields and
1011 * in the index2/blkno2/rmtblkno2/rmtblkcnt2 fields.
1012 */
Eric Sandeen9d87c312009-01-14 23:22:07 -06001013 xfs_bmap_init(args->flist, args->firstblock);
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001014 error = xfs_da3_split(state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 if (!error) {
1016 error = xfs_bmap_finish(&args->trans, args->flist,
Eric Sandeenf7c99b62007-02-10 18:37:16 +11001017 &committed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018 }
1019 if (error) {
1020 ASSERT(committed);
1021 args->trans = NULL;
1022 xfs_bmap_cancel(args->flist);
1023 goto out;
1024 }
1025
1026 /*
1027 * bmap_finish() may have committed the last trans and started
1028 * a new one. We need the inode to be in all transactions.
1029 */
Christoph Hellwig898621d2010-06-24 11:36:58 +10001030 if (committed)
Christoph Hellwigddc34152011-09-19 15:00:54 +00001031 xfs_trans_ijoin(args->trans, dp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032 } else {
1033 /*
1034 * Addition succeeded, update Btree hashvals.
1035 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001036 xfs_da3_fixhashpath(state, &state->path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037 }
1038
1039 /*
1040 * Kill the state structure, we're done with it and need to
1041 * allow the buffers to come back later.
1042 */
1043 xfs_da_state_free(state);
1044 state = NULL;
1045
1046 /*
1047 * Commit the leaf addition or btree split and start the next
1048 * trans in the chain.
1049 */
Niv Sardi322ff6b2008-08-13 16:05:49 +10001050 error = xfs_trans_roll(&args->trans, dp);
1051 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052 goto out;
1053
1054 /*
1055 * If there was an out-of-line value, allocate the blocks we
1056 * identified for its storage and copy the value. This is done
1057 * after we create the attribute so that we don't overflow the
1058 * maximum size of a transaction and/or hit a deadlock.
1059 */
1060 if (args->rmtblkno > 0) {
1061 error = xfs_attr_rmtval_set(args);
1062 if (error)
1063 return(error);
1064 }
1065
1066 /*
1067 * If this is an atomic rename operation, we must "flip" the
1068 * incomplete flags on the "new" and "old" attribute/value pairs
1069 * so that one disappears and one appears atomically. Then we
1070 * must remove the "old" attribute/value pair.
1071 */
Barry Naujok6a178102008-05-21 16:42:05 +10001072 if (args->op_flags & XFS_DA_OP_RENAME) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073 /*
1074 * In a separate transaction, set the incomplete flag on the
1075 * "old" attr and clear the incomplete flag on the "new" attr.
1076 */
Dave Chinner517c2222013-04-24 18:58:55 +10001077 error = xfs_attr3_leaf_flipflags(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078 if (error)
1079 goto out;
1080
1081 /*
1082 * Dismantle the "old" attribute/value pair by removing
1083 * a "remote" value (if it exists).
1084 */
1085 args->index = args->index2;
1086 args->blkno = args->blkno2;
1087 args->rmtblkno = args->rmtblkno2;
1088 args->rmtblkcnt = args->rmtblkcnt2;
1089 if (args->rmtblkno) {
1090 error = xfs_attr_rmtval_remove(args);
1091 if (error)
1092 return(error);
1093 }
1094
1095 /*
1096 * Re-find the "old" attribute entry after any split ops.
1097 * The INCOMPLETE flag means that we will find the "old"
1098 * attr, not the "new" one.
1099 */
1100 args->flags |= XFS_ATTR_INCOMPLETE;
1101 state = xfs_da_state_alloc();
1102 state->args = args;
1103 state->mp = mp;
1104 state->blocksize = state->mp->m_sb.sb_blocksize;
1105 state->node_ents = state->mp->m_attr_node_ents;
1106 state->inleaf = 0;
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001107 error = xfs_da3_node_lookup_int(state, &retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108 if (error)
1109 goto out;
1110
1111 /*
1112 * Remove the name and update the hashvals in the tree.
1113 */
1114 blk = &state->path.blk[ state->path.active-1 ];
1115 ASSERT(blk->magic == XFS_ATTR_LEAF_MAGIC);
Dave Chinner517c2222013-04-24 18:58:55 +10001116 error = xfs_attr3_leaf_remove(blk->bp, args);
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001117 xfs_da3_fixhashpath(state, &state->path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118
1119 /*
1120 * Check to see if the tree needs to be collapsed.
1121 */
1122 if (retval && (state->path.active > 1)) {
Eric Sandeen9d87c312009-01-14 23:22:07 -06001123 xfs_bmap_init(args->flist, args->firstblock);
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001124 error = xfs_da3_join(state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125 if (!error) {
1126 error = xfs_bmap_finish(&args->trans,
1127 args->flist,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128 &committed);
1129 }
1130 if (error) {
1131 ASSERT(committed);
1132 args->trans = NULL;
1133 xfs_bmap_cancel(args->flist);
1134 goto out;
1135 }
1136
1137 /*
1138 * bmap_finish() may have committed the last trans
1139 * and started a new one. We need the inode to be
1140 * in all transactions.
1141 */
Christoph Hellwig898621d2010-06-24 11:36:58 +10001142 if (committed)
Christoph Hellwigddc34152011-09-19 15:00:54 +00001143 xfs_trans_ijoin(args->trans, dp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144 }
1145
1146 /*
1147 * Commit and start the next trans in the chain.
1148 */
Niv Sardi322ff6b2008-08-13 16:05:49 +10001149 error = xfs_trans_roll(&args->trans, dp);
1150 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151 goto out;
1152
1153 } else if (args->rmtblkno > 0) {
1154 /*
1155 * Added a "remote" value, just clear the incomplete flag.
1156 */
Dave Chinner517c2222013-04-24 18:58:55 +10001157 error = xfs_attr3_leaf_clearflag(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158 if (error)
1159 goto out;
1160 }
1161 retval = error = 0;
1162
1163out:
1164 if (state)
1165 xfs_da_state_free(state);
1166 if (error)
1167 return(error);
1168 return(retval);
1169}
1170
1171/*
1172 * Remove a name from a B-tree attribute list.
1173 *
1174 * This will involve walking down the Btree, and may involve joining
1175 * leaf nodes and even joining intermediate nodes up to and including
1176 * the root node (a special case of an intermediate node).
1177 */
1178STATIC int
1179xfs_attr_node_removename(xfs_da_args_t *args)
1180{
1181 xfs_da_state_t *state;
1182 xfs_da_state_blk_t *blk;
1183 xfs_inode_t *dp;
Dave Chinner1d9025e2012-06-22 18:50:14 +10001184 struct xfs_buf *bp;
Nathan Scottd8cc8902005-11-02 10:34:53 +11001185 int retval, error, committed, forkoff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186
Dave Chinner5a5881c2012-03-22 05:15:13 +00001187 trace_xfs_attr_node_removename(args);
1188
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189 /*
1190 * Tie a string around our finger to remind us where we are.
1191 */
1192 dp = args->dp;
1193 state = xfs_da_state_alloc();
1194 state->args = args;
1195 state->mp = dp->i_mount;
1196 state->blocksize = state->mp->m_sb.sb_blocksize;
1197 state->node_ents = state->mp->m_attr_node_ents;
1198
1199 /*
1200 * Search to see if name exists, and get back a pointer to it.
1201 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001202 error = xfs_da3_node_lookup_int(state, &retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203 if (error || (retval != EEXIST)) {
1204 if (error == 0)
1205 error = retval;
1206 goto out;
1207 }
1208
1209 /*
1210 * If there is an out-of-line value, de-allocate the blocks.
1211 * This is done before we remove the attribute so that we don't
1212 * overflow the maximum size of a transaction and/or hit a deadlock.
1213 */
1214 blk = &state->path.blk[ state->path.active-1 ];
1215 ASSERT(blk->bp != NULL);
1216 ASSERT(blk->magic == XFS_ATTR_LEAF_MAGIC);
1217 if (args->rmtblkno > 0) {
1218 /*
1219 * Fill in disk block numbers in the state structure
1220 * so that we can get the buffers back after we commit
1221 * several transactions in the following calls.
1222 */
1223 error = xfs_attr_fillstate(state);
1224 if (error)
1225 goto out;
1226
1227 /*
1228 * Mark the attribute as INCOMPLETE, then bunmapi() the
1229 * remote value.
1230 */
Dave Chinner517c2222013-04-24 18:58:55 +10001231 error = xfs_attr3_leaf_setflag(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232 if (error)
1233 goto out;
1234 error = xfs_attr_rmtval_remove(args);
1235 if (error)
1236 goto out;
1237
1238 /*
1239 * Refill the state structure with buffers, the prior calls
1240 * released our buffers.
1241 */
1242 error = xfs_attr_refillstate(state);
1243 if (error)
1244 goto out;
1245 }
1246
1247 /*
1248 * Remove the name and update the hashvals in the tree.
1249 */
1250 blk = &state->path.blk[ state->path.active-1 ];
1251 ASSERT(blk->magic == XFS_ATTR_LEAF_MAGIC);
Dave Chinner517c2222013-04-24 18:58:55 +10001252 retval = xfs_attr3_leaf_remove(blk->bp, args);
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001253 xfs_da3_fixhashpath(state, &state->path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254
1255 /*
1256 * Check to see if the tree needs to be collapsed.
1257 */
1258 if (retval && (state->path.active > 1)) {
Eric Sandeen9d87c312009-01-14 23:22:07 -06001259 xfs_bmap_init(args->flist, args->firstblock);
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001260 error = xfs_da3_join(state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261 if (!error) {
1262 error = xfs_bmap_finish(&args->trans, args->flist,
Eric Sandeenf7c99b62007-02-10 18:37:16 +11001263 &committed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264 }
1265 if (error) {
1266 ASSERT(committed);
1267 args->trans = NULL;
1268 xfs_bmap_cancel(args->flist);
1269 goto out;
1270 }
1271
1272 /*
1273 * bmap_finish() may have committed the last trans and started
1274 * a new one. We need the inode to be in all transactions.
1275 */
Christoph Hellwig898621d2010-06-24 11:36:58 +10001276 if (committed)
Christoph Hellwigddc34152011-09-19 15:00:54 +00001277 xfs_trans_ijoin(args->trans, dp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278
1279 /*
1280 * Commit the Btree join operation and start a new trans.
1281 */
Niv Sardi322ff6b2008-08-13 16:05:49 +10001282 error = xfs_trans_roll(&args->trans, dp);
1283 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284 goto out;
1285 }
1286
1287 /*
1288 * If the result is small enough, push it all into the inode.
1289 */
1290 if (xfs_bmap_one_block(dp, XFS_ATTR_FORK)) {
1291 /*
1292 * Have to get rid of the copy of this dabuf in the state.
1293 */
1294 ASSERT(state->path.active == 1);
1295 ASSERT(state->path.blk[0].bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296 state->path.blk[0].bp = NULL;
1297
Dave Chinner517c2222013-04-24 18:58:55 +10001298 error = xfs_attr3_leaf_read(args->trans, args->dp, 0, -1, &bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299 if (error)
1300 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301
Nathan Scottd8cc8902005-11-02 10:34:53 +11001302 if ((forkoff = xfs_attr_shortform_allfit(bp, dp))) {
Eric Sandeen9d87c312009-01-14 23:22:07 -06001303 xfs_bmap_init(args->flist, args->firstblock);
Dave Chinner517c2222013-04-24 18:58:55 +10001304 error = xfs_attr3_leaf_to_shortform(bp, args, forkoff);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305 /* bp is gone due to xfs_da_shrink_inode */
1306 if (!error) {
1307 error = xfs_bmap_finish(&args->trans,
1308 args->flist,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309 &committed);
1310 }
1311 if (error) {
1312 ASSERT(committed);
1313 args->trans = NULL;
1314 xfs_bmap_cancel(args->flist);
1315 goto out;
1316 }
1317
1318 /*
1319 * bmap_finish() may have committed the last trans
1320 * and started a new one. We need the inode to be
1321 * in all transactions.
1322 */
Christoph Hellwig898621d2010-06-24 11:36:58 +10001323 if (committed)
Christoph Hellwigddc34152011-09-19 15:00:54 +00001324 xfs_trans_ijoin(args->trans, dp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325 } else
Dave Chinner1d9025e2012-06-22 18:50:14 +10001326 xfs_trans_brelse(args->trans, bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327 }
1328 error = 0;
1329
1330out:
1331 xfs_da_state_free(state);
1332 return(error);
1333}
1334
1335/*
1336 * Fill in the disk block numbers in the state structure for the buffers
1337 * that are attached to the state structure.
1338 * This is done so that we can quickly reattach ourselves to those buffers
Nathan Scottc41564b2006-03-29 08:55:14 +10001339 * after some set of transaction commits have released these buffers.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340 */
1341STATIC int
1342xfs_attr_fillstate(xfs_da_state_t *state)
1343{
1344 xfs_da_state_path_t *path;
1345 xfs_da_state_blk_t *blk;
1346 int level;
1347
Dave Chinneree732592012-11-12 22:53:53 +11001348 trace_xfs_attr_fillstate(state->args);
1349
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350 /*
1351 * Roll down the "path" in the state structure, storing the on-disk
1352 * block number for those buffers in the "path".
1353 */
1354 path = &state->path;
1355 ASSERT((path->active >= 0) && (path->active < XFS_DA_NODE_MAXDEPTH));
1356 for (blk = path->blk, level = 0; level < path->active; blk++, level++) {
1357 if (blk->bp) {
Dave Chinner1d9025e2012-06-22 18:50:14 +10001358 blk->disk_blkno = XFS_BUF_ADDR(blk->bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359 blk->bp = NULL;
1360 } else {
1361 blk->disk_blkno = 0;
1362 }
1363 }
1364
1365 /*
1366 * Roll down the "altpath" in the state structure, storing the on-disk
1367 * block number for those buffers in the "altpath".
1368 */
1369 path = &state->altpath;
1370 ASSERT((path->active >= 0) && (path->active < XFS_DA_NODE_MAXDEPTH));
1371 for (blk = path->blk, level = 0; level < path->active; blk++, level++) {
1372 if (blk->bp) {
Dave Chinner1d9025e2012-06-22 18:50:14 +10001373 blk->disk_blkno = XFS_BUF_ADDR(blk->bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374 blk->bp = NULL;
1375 } else {
1376 blk->disk_blkno = 0;
1377 }
1378 }
1379
1380 return(0);
1381}
1382
1383/*
1384 * Reattach the buffers to the state structure based on the disk block
1385 * numbers stored in the state structure.
Nathan Scottc41564b2006-03-29 08:55:14 +10001386 * This is done after some set of transaction commits have released those
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387 * buffers from our grip.
1388 */
1389STATIC int
1390xfs_attr_refillstate(xfs_da_state_t *state)
1391{
1392 xfs_da_state_path_t *path;
1393 xfs_da_state_blk_t *blk;
1394 int level, error;
1395
Dave Chinneree732592012-11-12 22:53:53 +11001396 trace_xfs_attr_refillstate(state->args);
1397
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398 /*
1399 * Roll down the "path" in the state structure, storing the on-disk
1400 * block number for those buffers in the "path".
1401 */
1402 path = &state->path;
1403 ASSERT((path->active >= 0) && (path->active < XFS_DA_NODE_MAXDEPTH));
1404 for (blk = path->blk, level = 0; level < path->active; blk++, level++) {
1405 if (blk->disk_blkno) {
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001406 error = xfs_da3_node_read(state->args->trans,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407 state->args->dp,
1408 blk->blkno, blk->disk_blkno,
Dave Chinnerd9392a42012-11-12 22:54:17 +11001409 &blk->bp, XFS_ATTR_FORK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410 if (error)
1411 return(error);
1412 } else {
1413 blk->bp = NULL;
1414 }
1415 }
1416
1417 /*
1418 * Roll down the "altpath" in the state structure, storing the on-disk
1419 * block number for those buffers in the "altpath".
1420 */
1421 path = &state->altpath;
1422 ASSERT((path->active >= 0) && (path->active < XFS_DA_NODE_MAXDEPTH));
1423 for (blk = path->blk, level = 0; level < path->active; blk++, level++) {
1424 if (blk->disk_blkno) {
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001425 error = xfs_da3_node_read(state->args->trans,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426 state->args->dp,
1427 blk->blkno, blk->disk_blkno,
Dave Chinnerd9392a42012-11-12 22:54:17 +11001428 &blk->bp, XFS_ATTR_FORK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429 if (error)
1430 return(error);
1431 } else {
1432 blk->bp = NULL;
1433 }
1434 }
1435
1436 return(0);
1437}
1438
1439/*
1440 * Look up a filename in a node attribute list.
1441 *
1442 * This routine gets called for any attribute fork that has more than one
1443 * block, ie: both true Btree attr lists and for single-leaf-blocks with
1444 * "remote" values taking up more blocks.
1445 */
Christoph Hellwigba0f32d2005-06-21 15:36:52 +10001446STATIC int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447xfs_attr_node_get(xfs_da_args_t *args)
1448{
1449 xfs_da_state_t *state;
1450 xfs_da_state_blk_t *blk;
1451 int error, retval;
1452 int i;
1453
Dave Chinneree732592012-11-12 22:53:53 +11001454 trace_xfs_attr_node_get(args);
1455
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456 state = xfs_da_state_alloc();
1457 state->args = args;
1458 state->mp = args->dp->i_mount;
1459 state->blocksize = state->mp->m_sb.sb_blocksize;
1460 state->node_ents = state->mp->m_attr_node_ents;
1461
1462 /*
1463 * Search to see if name exists, and get back a pointer to it.
1464 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001465 error = xfs_da3_node_lookup_int(state, &retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466 if (error) {
1467 retval = error;
1468 } else if (retval == EEXIST) {
1469 blk = &state->path.blk[ state->path.active-1 ];
1470 ASSERT(blk->bp != NULL);
1471 ASSERT(blk->magic == XFS_ATTR_LEAF_MAGIC);
1472
1473 /*
1474 * Get the value, local or "remote"
1475 */
Dave Chinner517c2222013-04-24 18:58:55 +10001476 retval = xfs_attr3_leaf_getvalue(blk->bp, args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477 if (!retval && (args->rmtblkno > 0)
1478 && !(args->flags & ATTR_KERNOVAL)) {
1479 retval = xfs_attr_rmtval_get(args);
1480 }
1481 }
1482
1483 /*
1484 * If not in a transaction, we have to release all the buffers.
1485 */
1486 for (i = 0; i < state->path.active; i++) {
Dave Chinner1d9025e2012-06-22 18:50:14 +10001487 xfs_trans_brelse(args->trans, state->path.blk[i].bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488 state->path.blk[i].bp = NULL;
1489 }
1490
1491 xfs_da_state_free(state);
1492 return(retval);
1493}