blob: abda1124a70f66fbd1a79b28f8eaf5bf1916da1e [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 */
Dave Chinner8275cdd2014-05-06 07:37:31 +1000216 uint dblocks = xfs_attr3_rmt_blocks(mp, valuelen);
Niv Sardi5e9da7b2008-08-13 16:03:35 +1000217 nblks += dblocks;
218 nblks += XFS_NEXTENTADD_SPACE_RES(mp, dblocks, XFS_ATTR_FORK);
219 }
220
221 return nblks;
222}
223
Barry Naujoke8b0eba2008-04-22 17:34:31 +1000224STATIC int
Dave Chinnera9273ca2010-01-20 10:47:48 +1100225xfs_attr_set_int(
226 struct xfs_inode *dp,
227 struct xfs_name *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 xfs_da_args_t args;
233 xfs_fsblock_t firstblock;
234 xfs_bmap_free_t flist;
235 int error, err2, committed;
236 struct xfs_mount *mp = dp->i_mount;
237 struct xfs_trans_res tres;
238 int rsvd = (flags & ATTR_ROOT) != 0;
239 int local;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240
241 /*
242 * Attach the dquots to the inode.
243 */
Christoph Hellwig7d095252009-06-08 15:33:32 +0200244 error = xfs_qm_dqattach(dp, 0);
245 if (error)
246 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247
248 /*
249 * If the inode doesn't have an attribute fork, add one.
250 * (inode must not be locked when we call this routine)
251 */
252 if (XFS_IFORK_Q(dp) == 0) {
Barry Naujoke5889e92007-02-10 18:35:58 +1100253 int sf_size = sizeof(xfs_attr_sf_hdr_t) +
Barry Naujoke8b0eba2008-04-22 17:34:31 +1000254 XFS_ATTR_SF_ENTSIZE_BYNAME(name->len, valuelen);
Barry Naujoke5889e92007-02-10 18:35:58 +1100255
256 if ((error = xfs_bmap_add_attrfork(dp, sf_size, rsvd)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 return(error);
258 }
259
260 /*
261 * Fill in the arg structure for this request.
262 */
263 memset((char *)&args, 0, sizeof(args));
Barry Naujoke8b0eba2008-04-22 17:34:31 +1000264 args.name = name->name;
265 args.namelen = name->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 args.value = value;
267 args.valuelen = valuelen;
268 args.flags = flags;
269 args.hashval = xfs_da_hashname(args.name, args.namelen);
270 args.dp = dp;
271 args.firstblock = &firstblock;
272 args.flist = &flist;
273 args.whichfork = XFS_ATTR_FORK;
Barry Naujok6a178102008-05-21 16:42:05 +1000274 args.op_flags = XFS_DA_OP_ADDNAME | XFS_DA_OP_OKNOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 /* Size is now blocks for attribute data */
Niv Sardi5e9da7b2008-08-13 16:03:35 +1000277 args.total = xfs_attr_calc_size(dp, name->len, valuelen, &local);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278
279 /*
280 * Start our first transaction of the day.
281 *
282 * All future transactions during this code must be "chained" off
283 * this one via the trans_dup() call. All transactions will contain
284 * the inode, and the inode will always be marked with trans_ihold().
285 * Since the inode will be locked in all transactions, we must log
286 * the inode in every transaction to let it float upward through
287 * the log.
288 */
289 args.trans = xfs_trans_alloc(mp, XFS_TRANS_ATTR_SET);
290
291 /*
292 * Root fork attributes can use reserved data blocks for this
293 * operation if necessary
294 */
295
296 if (rsvd)
297 args.trans->t_flags |= XFS_TRANS_RESERVE;
298
Jie Liu3d3c8b52013-08-12 20:49:59 +1000299 tres.tr_logres = M_RES(mp)->tr_attrsetm.tr_logres +
300 M_RES(mp)->tr_attrsetrt.tr_logres * args.total;
301 tres.tr_logcount = XFS_ATTRSET_LOG_COUNT;
302 tres.tr_logflags = XFS_TRANS_PERM_LOG_RES;
303 error = xfs_trans_reserve(args.trans, &tres, args.total, 0);
Jeff Liua21cd502013-01-28 21:27:53 +0800304 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 xfs_trans_cancel(args.trans, 0);
306 return(error);
307 }
308 xfs_ilock(dp, XFS_ILOCK_EXCL);
309
Christoph Hellwig7d095252009-06-08 15:33:32 +0200310 error = xfs_trans_reserve_quota_nblks(args.trans, dp, args.total, 0,
Niv Sardi5e9da7b2008-08-13 16:03:35 +1000311 rsvd ? XFS_QMOPT_RES_REGBLKS | XFS_QMOPT_FORCE_RES :
312 XFS_QMOPT_RES_REGBLKS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 if (error) {
314 xfs_iunlock(dp, XFS_ILOCK_EXCL);
315 xfs_trans_cancel(args.trans, XFS_TRANS_RELEASE_LOG_RES);
316 return (error);
317 }
318
Christoph Hellwigddc34152011-09-19 15:00:54 +0000319 xfs_trans_ijoin(args.trans, dp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320
321 /*
Nathan Scottc41564b2006-03-29 08:55:14 +1000322 * If the attribute list is non-existent or a shortform list,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 * upgrade it to a single-leaf-block attribute list.
324 */
325 if ((dp->i_d.di_aformat == XFS_DINODE_FMT_LOCAL) ||
326 ((dp->i_d.di_aformat == XFS_DINODE_FMT_EXTENTS) &&
327 (dp->i_d.di_anextents == 0))) {
328
329 /*
330 * Build initial attribute list (if required).
331 */
332 if (dp->i_d.di_aformat == XFS_DINODE_FMT_EXTENTS)
Nathan Scottd8cc8902005-11-02 10:34:53 +1100333 xfs_attr_shortform_create(&args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334
335 /*
336 * Try to add the attr to the attribute list in
337 * the inode.
338 */
339 error = xfs_attr_shortform_addname(&args);
340 if (error != ENOSPC) {
341 /*
342 * Commit the shortform mods, and we're done.
343 * NOTE: this is also the error path (EEXIST, etc).
344 */
345 ASSERT(args.trans != NULL);
346
347 /*
348 * If this is a synchronous mount, make sure that
349 * the transaction goes to disk before returning
350 * to the user.
351 */
352 if (mp->m_flags & XFS_MOUNT_WSYNC) {
353 xfs_trans_set_sync(args.trans);
354 }
Dave Chinnerdcd79a12010-09-28 12:27:25 +1000355
356 if (!error && (flags & ATTR_KERNOTIME) == 0) {
357 xfs_trans_ichgtime(args.trans, dp,
358 XFS_ICHGTIME_CHG);
359 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 err2 = xfs_trans_commit(args.trans,
Eric Sandeen1c72bf92007-05-08 13:48:42 +1000361 XFS_TRANS_RELEASE_LOG_RES);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 xfs_iunlock(dp, XFS_ILOCK_EXCL);
363
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 return(error == 0 ? err2 : error);
365 }
366
367 /*
368 * It won't fit in the shortform, transform to a leaf block.
369 * GROT: another possible req'mt for a double-split btree op.
370 */
Eric Sandeen9d87c312009-01-14 23:22:07 -0600371 xfs_bmap_init(args.flist, args.firstblock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 error = xfs_attr_shortform_to_leaf(&args);
373 if (!error) {
374 error = xfs_bmap_finish(&args.trans, args.flist,
Eric Sandeenf7c99b62007-02-10 18:37:16 +1100375 &committed);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 }
377 if (error) {
378 ASSERT(committed);
379 args.trans = NULL;
380 xfs_bmap_cancel(&flist);
381 goto out;
382 }
383
384 /*
385 * bmap_finish() may have committed the last trans and started
386 * a new one. We need the inode to be in all transactions.
387 */
Christoph Hellwig898621d2010-06-24 11:36:58 +1000388 if (committed)
Christoph Hellwigddc34152011-09-19 15:00:54 +0000389 xfs_trans_ijoin(args.trans, dp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390
391 /*
392 * Commit the leaf transformation. We'll need another (linked)
393 * transaction to add the new attribute to the leaf.
394 */
Niv Sardi322ff6b2008-08-13 16:05:49 +1000395
396 error = xfs_trans_roll(&args.trans, dp);
397 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 goto out;
399
400 }
401
402 if (xfs_bmap_one_block(dp, XFS_ATTR_FORK)) {
403 error = xfs_attr_leaf_addname(&args);
404 } else {
405 error = xfs_attr_node_addname(&args);
406 }
407 if (error) {
408 goto out;
409 }
410
411 /*
412 * If this is a synchronous mount, make sure that the
413 * transaction goes to disk before returning to the user.
414 */
415 if (mp->m_flags & XFS_MOUNT_WSYNC) {
416 xfs_trans_set_sync(args.trans);
417 }
418
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
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 return(error);
430
431out:
432 if (args.trans)
433 xfs_trans_cancel(args.trans,
434 XFS_TRANS_RELEASE_LOG_RES|XFS_TRANS_ABORT);
435 xfs_iunlock(dp, XFS_ILOCK_EXCL);
436 return(error);
437}
438
Nathan Scottaa82daa2005-11-02 10:33:33 +1100439int
Christoph Hellwig993386c2007-08-28 16:12:30 +1000440xfs_attr_set(
441 xfs_inode_t *dp,
Dave Chinnera9273ca2010-01-20 10:47:48 +1100442 const unsigned char *name,
443 unsigned char *value,
Christoph Hellwig993386c2007-08-28 16:12:30 +1000444 int valuelen,
445 int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446{
Barry Naujoke8b0eba2008-04-22 17:34:31 +1000447 int error;
448 struct xfs_name xname;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449
Nathan Scottaa82daa2005-11-02 10:33:33 +1100450 XFS_STATS_INC(xs_attr_set);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451
Nathan Scottaa82daa2005-11-02 10:33:33 +1100452 if (XFS_FORCED_SHUTDOWN(dp->i_mount))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 return (EIO);
454
Barry Naujoke8b0eba2008-04-22 17:34:31 +1000455 error = xfs_attr_name_to_xname(&xname, name);
456 if (error)
457 return error;
458
459 return xfs_attr_set_int(dp, &xname, value, valuelen, flags);
Nathan Scottaa82daa2005-11-02 10:33:33 +1100460}
461
462/*
463 * Generic handler routine to remove a name from an attribute list.
464 * Transitions attribute list from Btree to shortform as necessary.
465 */
Barry Naujoke8b0eba2008-04-22 17:34:31 +1000466STATIC int
467xfs_attr_remove_int(xfs_inode_t *dp, struct xfs_name *name, int flags)
Nathan Scottaa82daa2005-11-02 10:33:33 +1100468{
469 xfs_da_args_t args;
470 xfs_fsblock_t firstblock;
471 xfs_bmap_free_t flist;
472 int error;
473 xfs_mount_t *mp = dp->i_mount;
474
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 /*
476 * Fill in the arg structure for this request.
477 */
478 memset((char *)&args, 0, sizeof(args));
Barry Naujoke8b0eba2008-04-22 17:34:31 +1000479 args.name = name->name;
480 args.namelen = name->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 args.flags = flags;
482 args.hashval = xfs_da_hashname(args.name, args.namelen);
483 args.dp = dp;
484 args.firstblock = &firstblock;
485 args.flist = &flist;
486 args.total = 0;
487 args.whichfork = XFS_ATTR_FORK;
488
489 /*
Dave Chinner4a338212011-06-23 01:35:01 +0000490 * we have no control over the attribute names that userspace passes us
491 * to remove, so we have to allow the name lookup prior to attribute
492 * removal to fail.
493 */
494 args.op_flags = XFS_DA_OP_OKNOENT;
495
496 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 * Attach the dquots to the inode.
498 */
Christoph Hellwig7d095252009-06-08 15:33:32 +0200499 error = xfs_qm_dqattach(dp, 0);
500 if (error)
501 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502
503 /*
504 * Start our first transaction of the day.
505 *
506 * All future transactions during this code must be "chained" off
507 * this one via the trans_dup() call. All transactions will contain
508 * the inode, and the inode will always be marked with trans_ihold().
509 * Since the inode will be locked in all transactions, we must log
510 * the inode in every transaction to let it float upward through
511 * the log.
512 */
513 args.trans = xfs_trans_alloc(mp, XFS_TRANS_ATTR_RM);
514
515 /*
516 * Root fork attributes can use reserved data blocks for this
517 * operation if necessary
518 */
519
520 if (flags & ATTR_ROOT)
521 args.trans->t_flags |= XFS_TRANS_RESERVE;
522
Jie Liu3d3c8b52013-08-12 20:49:59 +1000523 error = xfs_trans_reserve(args.trans, &M_RES(mp)->tr_attrrm,
524 XFS_ATTRRM_SPACE_RES(mp), 0);
525 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 xfs_trans_cancel(args.trans, 0);
527 return(error);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 }
529
530 xfs_ilock(dp, XFS_ILOCK_EXCL);
531 /*
532 * No need to make quota reservations here. We expect to release some
533 * blocks not allocate in the common case.
534 */
Christoph Hellwigddc34152011-09-19 15:00:54 +0000535 xfs_trans_ijoin(args.trans, dp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536
537 /*
538 * Decide on what work routines to call based on the inode size.
539 */
Christoph Hellwigcaf8aab2008-06-23 13:23:41 +1000540 if (!xfs_inode_hasattr(dp)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 error = XFS_ERROR(ENOATTR);
542 goto out;
543 }
544 if (dp->i_d.di_aformat == XFS_DINODE_FMT_LOCAL) {
545 ASSERT(dp->i_afp->if_flags & XFS_IFINLINE);
546 error = xfs_attr_shortform_remove(&args);
547 if (error) {
548 goto out;
549 }
550 } else if (xfs_bmap_one_block(dp, XFS_ATTR_FORK)) {
551 error = xfs_attr_leaf_removename(&args);
552 } else {
553 error = xfs_attr_node_removename(&args);
554 }
555 if (error) {
556 goto out;
557 }
558
559 /*
560 * If this is a synchronous mount, make sure that the
561 * transaction goes to disk before returning to the user.
562 */
563 if (mp->m_flags & XFS_MOUNT_WSYNC) {
564 xfs_trans_set_sync(args.trans);
565 }
566
Dave Chinnerdcd79a12010-09-28 12:27:25 +1000567 if ((flags & ATTR_KERNOTIME) == 0)
568 xfs_trans_ichgtime(args.trans, dp, XFS_ICHGTIME_CHG);
569
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 /*
571 * Commit the last in the sequence of transactions.
572 */
573 xfs_trans_log_inode(args.trans, dp, XFS_ILOG_CORE);
Eric Sandeen1c72bf92007-05-08 13:48:42 +1000574 error = xfs_trans_commit(args.trans, XFS_TRANS_RELEASE_LOG_RES);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 xfs_iunlock(dp, XFS_ILOCK_EXCL);
576
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 return(error);
578
579out:
580 if (args.trans)
581 xfs_trans_cancel(args.trans,
582 XFS_TRANS_RELEASE_LOG_RES|XFS_TRANS_ABORT);
583 xfs_iunlock(dp, XFS_ILOCK_EXCL);
584 return(error);
585}
586
Nathan Scottaa82daa2005-11-02 10:33:33 +1100587int
Christoph Hellwig993386c2007-08-28 16:12:30 +1000588xfs_attr_remove(
589 xfs_inode_t *dp,
Dave Chinnera9273ca2010-01-20 10:47:48 +1100590 const unsigned char *name,
Christoph Hellwig993386c2007-08-28 16:12:30 +1000591 int flags)
Nathan Scottaa82daa2005-11-02 10:33:33 +1100592{
Barry Naujoke8b0eba2008-04-22 17:34:31 +1000593 int error;
594 struct xfs_name xname;
Nathan Scottaa82daa2005-11-02 10:33:33 +1100595
596 XFS_STATS_INC(xs_attr_remove);
597
Nathan Scottaa82daa2005-11-02 10:33:33 +1100598 if (XFS_FORCED_SHUTDOWN(dp->i_mount))
599 return (EIO);
600
Barry Naujoke8b0eba2008-04-22 17:34:31 +1000601 error = xfs_attr_name_to_xname(&xname, name);
602 if (error)
603 return error;
604
Nathan Scottaa82daa2005-11-02 10:33:33 +1100605 xfs_ilock(dp, XFS_ILOCK_SHARED);
Christoph Hellwigcaf8aab2008-06-23 13:23:41 +1000606 if (!xfs_inode_hasattr(dp)) {
Nathan Scottaa82daa2005-11-02 10:33:33 +1100607 xfs_iunlock(dp, XFS_ILOCK_SHARED);
Christoph Hellwigcaf8aab2008-06-23 13:23:41 +1000608 return XFS_ERROR(ENOATTR);
Nathan Scottaa82daa2005-11-02 10:33:33 +1100609 }
610 xfs_iunlock(dp, XFS_ILOCK_SHARED);
611
Barry Naujoke8b0eba2008-04-22 17:34:31 +1000612 return xfs_attr_remove_int(dp, &xname, flags);
Nathan Scottaa82daa2005-11-02 10:33:33 +1100613}
614
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615
616/*========================================================================
617 * External routines when attribute list is inside the inode
618 *========================================================================*/
619
620/*
621 * Add a name to the shortform attribute list structure
622 * This is the external routine.
623 */
624STATIC int
625xfs_attr_shortform_addname(xfs_da_args_t *args)
626{
Nathan Scottd8cc8902005-11-02 10:34:53 +1100627 int newsize, forkoff, retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628
Dave Chinner5a5881c2012-03-22 05:15:13 +0000629 trace_xfs_attr_sf_addname(args);
630
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 retval = xfs_attr_shortform_lookup(args);
632 if ((args->flags & ATTR_REPLACE) && (retval == ENOATTR)) {
633 return(retval);
634 } else if (retval == EEXIST) {
635 if (args->flags & ATTR_CREATE)
636 return(retval);
637 retval = xfs_attr_shortform_remove(args);
638 ASSERT(retval == 0);
639 }
640
Nathan Scottd8cc8902005-11-02 10:34:53 +1100641 if (args->namelen >= XFS_ATTR_SF_ENTSIZE_MAX ||
642 args->valuelen >= XFS_ATTR_SF_ENTSIZE_MAX)
643 return(XFS_ERROR(ENOSPC));
644
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 newsize = XFS_ATTR_SF_TOTSIZE(args->dp);
646 newsize += XFS_ATTR_SF_ENTSIZE_BYNAME(args->namelen, args->valuelen);
Nathan Scottd8cc8902005-11-02 10:34:53 +1100647
648 forkoff = xfs_attr_shortform_bytesfit(args->dp, newsize);
649 if (!forkoff)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 return(XFS_ERROR(ENOSPC));
Nathan Scottd8cc8902005-11-02 10:34:53 +1100651
652 xfs_attr_shortform_add(args, forkoff);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 return(0);
654}
655
656
657/*========================================================================
658 * External routines when attribute list is one block
659 *========================================================================*/
660
661/*
662 * Add a name to the leaf attribute list structure
663 *
664 * This leaf block cannot have a "remote" value, we only call this routine
665 * if bmap_one_block() says there is only one block (ie: no remote blks).
666 */
David Chinnera8272ce2007-11-23 16:28:09 +1100667STATIC int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668xfs_attr_leaf_addname(xfs_da_args_t *args)
669{
670 xfs_inode_t *dp;
Dave Chinner1d9025e2012-06-22 18:50:14 +1000671 struct xfs_buf *bp;
Nathan Scottd8cc8902005-11-02 10:34:53 +1100672 int retval, error, committed, forkoff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673
Dave Chinner5a5881c2012-03-22 05:15:13 +0000674 trace_xfs_attr_leaf_addname(args);
675
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 /*
677 * Read the (only) block in the attribute list in.
678 */
679 dp = args->dp;
680 args->blkno = 0;
Dave Chinner517c2222013-04-24 18:58:55 +1000681 error = xfs_attr3_leaf_read(args->trans, args->dp, args->blkno, -1, &bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 if (error)
Dave Chinnerad14c332012-11-12 22:54:16 +1100683 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684
685 /*
686 * Look up the given attribute in the leaf block. Figure out if
687 * the given flags produce an error or call for an atomic rename.
688 */
Dave Chinner517c2222013-04-24 18:58:55 +1000689 retval = xfs_attr3_leaf_lookup_int(bp, args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 if ((args->flags & ATTR_REPLACE) && (retval == ENOATTR)) {
Dave Chinner1d9025e2012-06-22 18:50:14 +1000691 xfs_trans_brelse(args->trans, bp);
Dave Chinner517c2222013-04-24 18:58:55 +1000692 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 } else if (retval == EEXIST) {
694 if (args->flags & ATTR_CREATE) { /* pure create op */
Dave Chinner1d9025e2012-06-22 18:50:14 +1000695 xfs_trans_brelse(args->trans, bp);
Dave Chinner517c2222013-04-24 18:58:55 +1000696 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 }
Dave Chinner5a5881c2012-03-22 05:15:13 +0000698
699 trace_xfs_attr_leaf_replace(args);
700
Dave Chinner8275cdd2014-05-06 07:37:31 +1000701 /* save the attribute state for later removal*/
Barry Naujok6a178102008-05-21 16:42:05 +1000702 args->op_flags |= XFS_DA_OP_RENAME; /* an atomic rename */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 args->blkno2 = args->blkno; /* set 2nd entry info*/
704 args->index2 = args->index;
705 args->rmtblkno2 = args->rmtblkno;
706 args->rmtblkcnt2 = args->rmtblkcnt;
Dave Chinner8275cdd2014-05-06 07:37:31 +1000707 args->rmtvaluelen2 = args->rmtvaluelen;
708
709 /*
710 * clear the remote attr state now that it is saved so that the
711 * values reflect the state of the attribute we are about to
712 * add, not the attribute we just found and will remove later.
713 */
714 args->rmtblkno = 0;
715 args->rmtblkcnt = 0;
716 args->rmtvaluelen = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 }
718
719 /*
720 * Add the attribute to the leaf block, transitioning to a Btree
721 * if required.
722 */
Dave Chinner517c2222013-04-24 18:58:55 +1000723 retval = xfs_attr3_leaf_add(bp, args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 if (retval == ENOSPC) {
725 /*
726 * Promote the attribute list to the Btree format, then
727 * Commit that transaction so that the node_addname() call
728 * can manage its own transactions.
729 */
Eric Sandeen9d87c312009-01-14 23:22:07 -0600730 xfs_bmap_init(args->flist, args->firstblock);
Dave Chinner517c2222013-04-24 18:58:55 +1000731 error = xfs_attr3_leaf_to_node(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 if (!error) {
733 error = xfs_bmap_finish(&args->trans, args->flist,
Eric Sandeenf7c99b62007-02-10 18:37:16 +1100734 &committed);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 }
736 if (error) {
737 ASSERT(committed);
738 args->trans = NULL;
739 xfs_bmap_cancel(args->flist);
740 return(error);
741 }
742
743 /*
744 * bmap_finish() may have committed the last trans and started
745 * a new one. We need the inode to be in all transactions.
746 */
Christoph Hellwig898621d2010-06-24 11:36:58 +1000747 if (committed)
Christoph Hellwigddc34152011-09-19 15:00:54 +0000748 xfs_trans_ijoin(args->trans, dp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749
750 /*
751 * Commit the current trans (including the inode) and start
752 * a new one.
753 */
Niv Sardi322ff6b2008-08-13 16:05:49 +1000754 error = xfs_trans_roll(&args->trans, dp);
755 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 return (error);
757
758 /*
759 * Fob the whole rest of the problem off on the Btree code.
760 */
761 error = xfs_attr_node_addname(args);
762 return(error);
763 }
764
765 /*
766 * Commit the transaction that added the attr name so that
767 * later routines can manage their own transactions.
768 */
Niv Sardi322ff6b2008-08-13 16:05:49 +1000769 error = xfs_trans_roll(&args->trans, dp);
770 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 return (error);
772
773 /*
774 * If there was an out-of-line value, allocate the blocks we
775 * identified for its storage and copy the value. This is done
776 * after we create the attribute so that we don't overflow the
777 * maximum size of a transaction and/or hit a deadlock.
778 */
779 if (args->rmtblkno > 0) {
780 error = xfs_attr_rmtval_set(args);
781 if (error)
782 return(error);
783 }
784
785 /*
786 * If this is an atomic rename operation, we must "flip" the
787 * incomplete flags on the "new" and "old" attribute/value pairs
788 * so that one disappears and one appears atomically. Then we
789 * must remove the "old" attribute/value pair.
790 */
Barry Naujok6a178102008-05-21 16:42:05 +1000791 if (args->op_flags & XFS_DA_OP_RENAME) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 /*
793 * In a separate transaction, set the incomplete flag on the
794 * "old" attr and clear the incomplete flag on the "new" attr.
795 */
Dave Chinner517c2222013-04-24 18:58:55 +1000796 error = xfs_attr3_leaf_flipflags(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 if (error)
798 return(error);
799
800 /*
801 * Dismantle the "old" attribute/value pair by removing
802 * a "remote" value (if it exists).
803 */
804 args->index = args->index2;
805 args->blkno = args->blkno2;
806 args->rmtblkno = args->rmtblkno2;
807 args->rmtblkcnt = args->rmtblkcnt2;
Dave Chinner8275cdd2014-05-06 07:37:31 +1000808 args->rmtvaluelen = args->rmtvaluelen2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 if (args->rmtblkno) {
810 error = xfs_attr_rmtval_remove(args);
811 if (error)
812 return(error);
813 }
814
815 /*
816 * Read in the block containing the "old" attr, then
817 * remove the "old" attr from that block (neat, huh!)
818 */
Dave Chinner517c2222013-04-24 18:58:55 +1000819 error = xfs_attr3_leaf_read(args->trans, args->dp, args->blkno,
Dave Chinnerad14c332012-11-12 22:54:16 +1100820 -1, &bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 if (error)
Dave Chinnerad14c332012-11-12 22:54:16 +1100822 return error;
823
Dave Chinner517c2222013-04-24 18:58:55 +1000824 xfs_attr3_leaf_remove(bp, args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825
826 /*
827 * If the result is small enough, shrink it all into the inode.
828 */
Nathan Scottd8cc8902005-11-02 10:34:53 +1100829 if ((forkoff = xfs_attr_shortform_allfit(bp, dp))) {
Eric Sandeen9d87c312009-01-14 23:22:07 -0600830 xfs_bmap_init(args->flist, args->firstblock);
Dave Chinner517c2222013-04-24 18:58:55 +1000831 error = xfs_attr3_leaf_to_shortform(bp, args, forkoff);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 /* bp is gone due to xfs_da_shrink_inode */
833 if (!error) {
834 error = xfs_bmap_finish(&args->trans,
835 args->flist,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 &committed);
837 }
838 if (error) {
839 ASSERT(committed);
840 args->trans = NULL;
841 xfs_bmap_cancel(args->flist);
842 return(error);
843 }
844
845 /*
846 * bmap_finish() may have committed the last trans
847 * and started a new one. We need the inode to be
848 * in all transactions.
849 */
Christoph Hellwig898621d2010-06-24 11:36:58 +1000850 if (committed)
Christoph Hellwigddc34152011-09-19 15:00:54 +0000851 xfs_trans_ijoin(args->trans, dp, 0);
Dave Chinner1d9025e2012-06-22 18:50:14 +1000852 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853
854 /*
855 * Commit the remove and start the next trans in series.
856 */
Niv Sardi322ff6b2008-08-13 16:05:49 +1000857 error = xfs_trans_roll(&args->trans, dp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858
859 } else if (args->rmtblkno > 0) {
860 /*
861 * Added a "remote" value, just clear the incomplete flag.
862 */
Dave Chinner517c2222013-04-24 18:58:55 +1000863 error = xfs_attr3_leaf_clearflag(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 }
Dave Chinner517c2222013-04-24 18:58:55 +1000865 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866}
867
868/*
869 * Remove a name from the leaf attribute list structure
870 *
871 * This leaf block cannot have a "remote" value, we only call this routine
872 * if bmap_one_block() says there is only one block (ie: no remote blks).
873 */
874STATIC int
875xfs_attr_leaf_removename(xfs_da_args_t *args)
876{
877 xfs_inode_t *dp;
Dave Chinner1d9025e2012-06-22 18:50:14 +1000878 struct xfs_buf *bp;
Nathan Scottd8cc8902005-11-02 10:34:53 +1100879 int error, committed, forkoff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880
Dave Chinner5a5881c2012-03-22 05:15:13 +0000881 trace_xfs_attr_leaf_removename(args);
882
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 /*
884 * Remove the attribute.
885 */
886 dp = args->dp;
887 args->blkno = 0;
Dave Chinner517c2222013-04-24 18:58:55 +1000888 error = xfs_attr3_leaf_read(args->trans, args->dp, args->blkno, -1, &bp);
Dave Chinnerad14c332012-11-12 22:54:16 +1100889 if (error)
890 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891
Dave Chinner517c2222013-04-24 18:58:55 +1000892 error = xfs_attr3_leaf_lookup_int(bp, args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 if (error == ENOATTR) {
Dave Chinner1d9025e2012-06-22 18:50:14 +1000894 xfs_trans_brelse(args->trans, bp);
Dave Chinner517c2222013-04-24 18:58:55 +1000895 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 }
897
Dave Chinner517c2222013-04-24 18:58:55 +1000898 xfs_attr3_leaf_remove(bp, args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899
900 /*
901 * If the result is small enough, shrink it all into the inode.
902 */
Nathan Scottd8cc8902005-11-02 10:34:53 +1100903 if ((forkoff = xfs_attr_shortform_allfit(bp, dp))) {
Eric Sandeen9d87c312009-01-14 23:22:07 -0600904 xfs_bmap_init(args->flist, args->firstblock);
Dave Chinner517c2222013-04-24 18:58:55 +1000905 error = xfs_attr3_leaf_to_shortform(bp, args, forkoff);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906 /* bp is gone due to xfs_da_shrink_inode */
907 if (!error) {
908 error = xfs_bmap_finish(&args->trans, args->flist,
Eric Sandeenf7c99b62007-02-10 18:37:16 +1100909 &committed);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 }
911 if (error) {
912 ASSERT(committed);
913 args->trans = NULL;
914 xfs_bmap_cancel(args->flist);
Dave Chinner517c2222013-04-24 18:58:55 +1000915 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 }
917
918 /*
919 * bmap_finish() may have committed the last trans and started
920 * a new one. We need the inode to be in all transactions.
921 */
Christoph Hellwig898621d2010-06-24 11:36:58 +1000922 if (committed)
Christoph Hellwigddc34152011-09-19 15:00:54 +0000923 xfs_trans_ijoin(args->trans, dp, 0);
Dave Chinner1d9025e2012-06-22 18:50:14 +1000924 }
Dave Chinner517c2222013-04-24 18:58:55 +1000925 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926}
927
928/*
929 * Look up a name in a leaf attribute list structure.
930 *
931 * This leaf block cannot have a "remote" value, we only call this routine
932 * if bmap_one_block() says there is only one block (ie: no remote blks).
933 */
Christoph Hellwigba0f32d2005-06-21 15:36:52 +1000934STATIC int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935xfs_attr_leaf_get(xfs_da_args_t *args)
936{
Dave Chinner1d9025e2012-06-22 18:50:14 +1000937 struct xfs_buf *bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 int error;
939
Dave Chinneree732592012-11-12 22:53:53 +1100940 trace_xfs_attr_leaf_get(args);
941
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942 args->blkno = 0;
Dave Chinner517c2222013-04-24 18:58:55 +1000943 error = xfs_attr3_leaf_read(args->trans, args->dp, args->blkno, -1, &bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944 if (error)
Dave Chinnerad14c332012-11-12 22:54:16 +1100945 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946
Dave Chinner517c2222013-04-24 18:58:55 +1000947 error = xfs_attr3_leaf_lookup_int(bp, args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948 if (error != EEXIST) {
Dave Chinner1d9025e2012-06-22 18:50:14 +1000949 xfs_trans_brelse(args->trans, bp);
Dave Chinner517c2222013-04-24 18:58:55 +1000950 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 }
Dave Chinner517c2222013-04-24 18:58:55 +1000952 error = xfs_attr3_leaf_getvalue(bp, args);
Dave Chinner1d9025e2012-06-22 18:50:14 +1000953 xfs_trans_brelse(args->trans, bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954 if (!error && (args->rmtblkno > 0) && !(args->flags & ATTR_KERNOVAL)) {
955 error = xfs_attr_rmtval_get(args);
956 }
Dave Chinner517c2222013-04-24 18:58:55 +1000957 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958}
959
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960/*========================================================================
961 * External routines when attribute list size > XFS_LBSIZE(mp).
962 *========================================================================*/
963
964/*
965 * Add a name to a Btree-format attribute list.
966 *
967 * This will involve walking down the Btree, and may involve splitting
968 * leaf nodes and even splitting intermediate nodes up to and including
969 * the root node (a special case of an intermediate node).
970 *
971 * "Remote" attribute values confuse the issue and atomic rename operations
972 * add a whole extra layer of confusion on top of that.
973 */
974STATIC int
975xfs_attr_node_addname(xfs_da_args_t *args)
976{
977 xfs_da_state_t *state;
978 xfs_da_state_blk_t *blk;
979 xfs_inode_t *dp;
980 xfs_mount_t *mp;
981 int committed, retval, error;
982
Dave Chinner5a5881c2012-03-22 05:15:13 +0000983 trace_xfs_attr_node_addname(args);
984
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 /*
986 * Fill in bucket of arguments/results/context to carry around.
987 */
988 dp = args->dp;
989 mp = dp->i_mount;
990restart:
991 state = xfs_da_state_alloc();
992 state->args = args;
993 state->mp = mp;
994 state->blocksize = state->mp->m_sb.sb_blocksize;
995 state->node_ents = state->mp->m_attr_node_ents;
996
997 /*
998 * Search to see if name already exists, and get back a pointer
999 * to where it should go.
1000 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001001 error = xfs_da3_node_lookup_int(state, &retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002 if (error)
1003 goto out;
1004 blk = &state->path.blk[ state->path.active-1 ];
1005 ASSERT(blk->magic == XFS_ATTR_LEAF_MAGIC);
1006 if ((args->flags & ATTR_REPLACE) && (retval == ENOATTR)) {
1007 goto out;
1008 } else if (retval == EEXIST) {
1009 if (args->flags & ATTR_CREATE)
1010 goto out;
Dave Chinner5a5881c2012-03-22 05:15:13 +00001011
1012 trace_xfs_attr_node_replace(args);
1013
Dave Chinner8275cdd2014-05-06 07:37:31 +10001014 /* save the attribute state for later removal*/
Barry Naujok6a178102008-05-21 16:42:05 +10001015 args->op_flags |= XFS_DA_OP_RENAME; /* atomic rename op */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016 args->blkno2 = args->blkno; /* set 2nd entry info*/
1017 args->index2 = args->index;
1018 args->rmtblkno2 = args->rmtblkno;
1019 args->rmtblkcnt2 = args->rmtblkcnt;
Dave Chinner8275cdd2014-05-06 07:37:31 +10001020 args->rmtvaluelen2 = args->rmtvaluelen;
1021
1022 /*
1023 * clear the remote attr state now that it is saved so that the
1024 * values reflect the state of the attribute we are about to
1025 * add, not the attribute we just found and will remove later.
1026 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027 args->rmtblkno = 0;
1028 args->rmtblkcnt = 0;
Dave Chinner8275cdd2014-05-06 07:37:31 +10001029 args->rmtvaluelen = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 }
1031
Dave Chinner517c2222013-04-24 18:58:55 +10001032 retval = xfs_attr3_leaf_add(blk->bp, state->args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 if (retval == ENOSPC) {
1034 if (state->path.active == 1) {
1035 /*
1036 * Its really a single leaf node, but it had
1037 * out-of-line values so it looked like it *might*
1038 * have been a b-tree.
1039 */
1040 xfs_da_state_free(state);
Eric Sandeen6dd93e92013-07-31 20:18:54 -05001041 state = NULL;
Eric Sandeen9d87c312009-01-14 23:22:07 -06001042 xfs_bmap_init(args->flist, args->firstblock);
Dave Chinner517c2222013-04-24 18:58:55 +10001043 error = xfs_attr3_leaf_to_node(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044 if (!error) {
1045 error = xfs_bmap_finish(&args->trans,
1046 args->flist,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 &committed);
1048 }
1049 if (error) {
1050 ASSERT(committed);
1051 args->trans = NULL;
1052 xfs_bmap_cancel(args->flist);
1053 goto out;
1054 }
1055
1056 /*
1057 * bmap_finish() may have committed the last trans
1058 * and started a new one. We need the inode to be
1059 * in all transactions.
1060 */
Christoph Hellwig898621d2010-06-24 11:36:58 +10001061 if (committed)
Christoph Hellwigddc34152011-09-19 15:00:54 +00001062 xfs_trans_ijoin(args->trans, dp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063
1064 /*
1065 * Commit the node conversion and start the next
1066 * trans in the chain.
1067 */
Niv Sardi322ff6b2008-08-13 16:05:49 +10001068 error = xfs_trans_roll(&args->trans, dp);
1069 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070 goto out;
1071
1072 goto restart;
1073 }
1074
1075 /*
1076 * Split as many Btree elements as required.
1077 * This code tracks the new and old attr's location
1078 * in the index/blkno/rmtblkno/rmtblkcnt fields and
1079 * in the index2/blkno2/rmtblkno2/rmtblkcnt2 fields.
1080 */
Eric Sandeen9d87c312009-01-14 23:22:07 -06001081 xfs_bmap_init(args->flist, args->firstblock);
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001082 error = xfs_da3_split(state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083 if (!error) {
1084 error = xfs_bmap_finish(&args->trans, args->flist,
Eric Sandeenf7c99b62007-02-10 18:37:16 +11001085 &committed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086 }
1087 if (error) {
1088 ASSERT(committed);
1089 args->trans = NULL;
1090 xfs_bmap_cancel(args->flist);
1091 goto out;
1092 }
1093
1094 /*
1095 * bmap_finish() may have committed the last trans and started
1096 * a new one. We need the inode to be in all transactions.
1097 */
Christoph Hellwig898621d2010-06-24 11:36:58 +10001098 if (committed)
Christoph Hellwigddc34152011-09-19 15:00:54 +00001099 xfs_trans_ijoin(args->trans, dp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 } else {
1101 /*
1102 * Addition succeeded, update Btree hashvals.
1103 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001104 xfs_da3_fixhashpath(state, &state->path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105 }
1106
1107 /*
1108 * Kill the state structure, we're done with it and need to
1109 * allow the buffers to come back later.
1110 */
1111 xfs_da_state_free(state);
1112 state = NULL;
1113
1114 /*
1115 * Commit the leaf addition or btree split and start the next
1116 * trans in the chain.
1117 */
Niv Sardi322ff6b2008-08-13 16:05:49 +10001118 error = xfs_trans_roll(&args->trans, dp);
1119 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120 goto out;
1121
1122 /*
1123 * If there was an out-of-line value, allocate the blocks we
1124 * identified for its storage and copy the value. This is done
1125 * after we create the attribute so that we don't overflow the
1126 * maximum size of a transaction and/or hit a deadlock.
1127 */
1128 if (args->rmtblkno > 0) {
1129 error = xfs_attr_rmtval_set(args);
1130 if (error)
1131 return(error);
1132 }
1133
1134 /*
1135 * If this is an atomic rename operation, we must "flip" the
1136 * incomplete flags on the "new" and "old" attribute/value pairs
1137 * so that one disappears and one appears atomically. Then we
1138 * must remove the "old" attribute/value pair.
1139 */
Barry Naujok6a178102008-05-21 16:42:05 +10001140 if (args->op_flags & XFS_DA_OP_RENAME) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141 /*
1142 * In a separate transaction, set the incomplete flag on the
1143 * "old" attr and clear the incomplete flag on the "new" attr.
1144 */
Dave Chinner517c2222013-04-24 18:58:55 +10001145 error = xfs_attr3_leaf_flipflags(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146 if (error)
1147 goto out;
1148
1149 /*
1150 * Dismantle the "old" attribute/value pair by removing
1151 * a "remote" value (if it exists).
1152 */
1153 args->index = args->index2;
1154 args->blkno = args->blkno2;
1155 args->rmtblkno = args->rmtblkno2;
1156 args->rmtblkcnt = args->rmtblkcnt2;
Dave Chinner8275cdd2014-05-06 07:37:31 +10001157 args->rmtvaluelen = args->rmtvaluelen2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158 if (args->rmtblkno) {
1159 error = xfs_attr_rmtval_remove(args);
1160 if (error)
1161 return(error);
1162 }
1163
1164 /*
1165 * Re-find the "old" attribute entry after any split ops.
1166 * The INCOMPLETE flag means that we will find the "old"
1167 * attr, not the "new" one.
1168 */
1169 args->flags |= XFS_ATTR_INCOMPLETE;
1170 state = xfs_da_state_alloc();
1171 state->args = args;
1172 state->mp = mp;
1173 state->blocksize = state->mp->m_sb.sb_blocksize;
1174 state->node_ents = state->mp->m_attr_node_ents;
1175 state->inleaf = 0;
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001176 error = xfs_da3_node_lookup_int(state, &retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177 if (error)
1178 goto out;
1179
1180 /*
1181 * Remove the name and update the hashvals in the tree.
1182 */
1183 blk = &state->path.blk[ state->path.active-1 ];
1184 ASSERT(blk->magic == XFS_ATTR_LEAF_MAGIC);
Dave Chinner517c2222013-04-24 18:58:55 +10001185 error = xfs_attr3_leaf_remove(blk->bp, args);
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001186 xfs_da3_fixhashpath(state, &state->path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187
1188 /*
1189 * Check to see if the tree needs to be collapsed.
1190 */
1191 if (retval && (state->path.active > 1)) {
Eric Sandeen9d87c312009-01-14 23:22:07 -06001192 xfs_bmap_init(args->flist, args->firstblock);
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001193 error = xfs_da3_join(state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194 if (!error) {
1195 error = xfs_bmap_finish(&args->trans,
1196 args->flist,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197 &committed);
1198 }
1199 if (error) {
1200 ASSERT(committed);
1201 args->trans = NULL;
1202 xfs_bmap_cancel(args->flist);
1203 goto out;
1204 }
1205
1206 /*
1207 * bmap_finish() may have committed the last trans
1208 * and started a new one. We need the inode to be
1209 * in all transactions.
1210 */
Christoph Hellwig898621d2010-06-24 11:36:58 +10001211 if (committed)
Christoph Hellwigddc34152011-09-19 15:00:54 +00001212 xfs_trans_ijoin(args->trans, dp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213 }
1214
1215 /*
1216 * Commit and start the next trans in the chain.
1217 */
Niv Sardi322ff6b2008-08-13 16:05:49 +10001218 error = xfs_trans_roll(&args->trans, dp);
1219 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220 goto out;
1221
1222 } else if (args->rmtblkno > 0) {
1223 /*
1224 * Added a "remote" value, just clear the incomplete flag.
1225 */
Dave Chinner517c2222013-04-24 18:58:55 +10001226 error = xfs_attr3_leaf_clearflag(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227 if (error)
1228 goto out;
1229 }
1230 retval = error = 0;
1231
1232out:
1233 if (state)
1234 xfs_da_state_free(state);
1235 if (error)
1236 return(error);
1237 return(retval);
1238}
1239
1240/*
1241 * Remove a name from a B-tree attribute list.
1242 *
1243 * This will involve walking down the Btree, and may involve joining
1244 * leaf nodes and even joining intermediate nodes up to and including
1245 * the root node (a special case of an intermediate node).
1246 */
1247STATIC int
1248xfs_attr_node_removename(xfs_da_args_t *args)
1249{
1250 xfs_da_state_t *state;
1251 xfs_da_state_blk_t *blk;
1252 xfs_inode_t *dp;
Dave Chinner1d9025e2012-06-22 18:50:14 +10001253 struct xfs_buf *bp;
Nathan Scottd8cc8902005-11-02 10:34:53 +11001254 int retval, error, committed, forkoff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255
Dave Chinner5a5881c2012-03-22 05:15:13 +00001256 trace_xfs_attr_node_removename(args);
1257
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258 /*
1259 * Tie a string around our finger to remind us where we are.
1260 */
1261 dp = args->dp;
1262 state = xfs_da_state_alloc();
1263 state->args = args;
1264 state->mp = dp->i_mount;
1265 state->blocksize = state->mp->m_sb.sb_blocksize;
1266 state->node_ents = state->mp->m_attr_node_ents;
1267
1268 /*
1269 * Search to see if name exists, and get back a pointer to it.
1270 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001271 error = xfs_da3_node_lookup_int(state, &retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272 if (error || (retval != EEXIST)) {
1273 if (error == 0)
1274 error = retval;
1275 goto out;
1276 }
1277
1278 /*
1279 * If there is an out-of-line value, de-allocate the blocks.
1280 * This is done before we remove the attribute so that we don't
1281 * overflow the maximum size of a transaction and/or hit a deadlock.
1282 */
1283 blk = &state->path.blk[ state->path.active-1 ];
1284 ASSERT(blk->bp != NULL);
1285 ASSERT(blk->magic == XFS_ATTR_LEAF_MAGIC);
1286 if (args->rmtblkno > 0) {
1287 /*
1288 * Fill in disk block numbers in the state structure
1289 * so that we can get the buffers back after we commit
1290 * several transactions in the following calls.
1291 */
1292 error = xfs_attr_fillstate(state);
1293 if (error)
1294 goto out;
1295
1296 /*
1297 * Mark the attribute as INCOMPLETE, then bunmapi() the
1298 * remote value.
1299 */
Dave Chinner517c2222013-04-24 18:58:55 +10001300 error = xfs_attr3_leaf_setflag(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301 if (error)
1302 goto out;
1303 error = xfs_attr_rmtval_remove(args);
1304 if (error)
1305 goto out;
1306
1307 /*
1308 * Refill the state structure with buffers, the prior calls
1309 * released our buffers.
1310 */
1311 error = xfs_attr_refillstate(state);
1312 if (error)
1313 goto out;
1314 }
1315
1316 /*
1317 * Remove the name and update the hashvals in the tree.
1318 */
1319 blk = &state->path.blk[ state->path.active-1 ];
1320 ASSERT(blk->magic == XFS_ATTR_LEAF_MAGIC);
Dave Chinner517c2222013-04-24 18:58:55 +10001321 retval = xfs_attr3_leaf_remove(blk->bp, args);
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001322 xfs_da3_fixhashpath(state, &state->path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323
1324 /*
1325 * Check to see if the tree needs to be collapsed.
1326 */
1327 if (retval && (state->path.active > 1)) {
Eric Sandeen9d87c312009-01-14 23:22:07 -06001328 xfs_bmap_init(args->flist, args->firstblock);
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001329 error = xfs_da3_join(state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330 if (!error) {
1331 error = xfs_bmap_finish(&args->trans, args->flist,
Eric Sandeenf7c99b62007-02-10 18:37:16 +11001332 &committed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333 }
1334 if (error) {
1335 ASSERT(committed);
1336 args->trans = NULL;
1337 xfs_bmap_cancel(args->flist);
1338 goto out;
1339 }
1340
1341 /*
1342 * bmap_finish() may have committed the last trans and started
1343 * a new one. We need the inode to be in all transactions.
1344 */
Christoph Hellwig898621d2010-06-24 11:36:58 +10001345 if (committed)
Christoph Hellwigddc34152011-09-19 15:00:54 +00001346 xfs_trans_ijoin(args->trans, dp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347
1348 /*
1349 * Commit the Btree join operation and start a new trans.
1350 */
Niv Sardi322ff6b2008-08-13 16:05:49 +10001351 error = xfs_trans_roll(&args->trans, dp);
1352 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353 goto out;
1354 }
1355
1356 /*
1357 * If the result is small enough, push it all into the inode.
1358 */
1359 if (xfs_bmap_one_block(dp, XFS_ATTR_FORK)) {
1360 /*
1361 * Have to get rid of the copy of this dabuf in the state.
1362 */
1363 ASSERT(state->path.active == 1);
1364 ASSERT(state->path.blk[0].bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365 state->path.blk[0].bp = NULL;
1366
Dave Chinner517c2222013-04-24 18:58:55 +10001367 error = xfs_attr3_leaf_read(args->trans, args->dp, 0, -1, &bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368 if (error)
1369 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370
Nathan Scottd8cc8902005-11-02 10:34:53 +11001371 if ((forkoff = xfs_attr_shortform_allfit(bp, dp))) {
Eric Sandeen9d87c312009-01-14 23:22:07 -06001372 xfs_bmap_init(args->flist, args->firstblock);
Dave Chinner517c2222013-04-24 18:58:55 +10001373 error = xfs_attr3_leaf_to_shortform(bp, args, forkoff);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374 /* bp is gone due to xfs_da_shrink_inode */
1375 if (!error) {
1376 error = xfs_bmap_finish(&args->trans,
1377 args->flist,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378 &committed);
1379 }
1380 if (error) {
1381 ASSERT(committed);
1382 args->trans = NULL;
1383 xfs_bmap_cancel(args->flist);
1384 goto out;
1385 }
1386
1387 /*
1388 * bmap_finish() may have committed the last trans
1389 * and started a new one. We need the inode to be
1390 * in all transactions.
1391 */
Christoph Hellwig898621d2010-06-24 11:36:58 +10001392 if (committed)
Christoph Hellwigddc34152011-09-19 15:00:54 +00001393 xfs_trans_ijoin(args->trans, dp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394 } else
Dave Chinner1d9025e2012-06-22 18:50:14 +10001395 xfs_trans_brelse(args->trans, bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396 }
1397 error = 0;
1398
1399out:
1400 xfs_da_state_free(state);
1401 return(error);
1402}
1403
1404/*
1405 * Fill in the disk block numbers in the state structure for the buffers
1406 * that are attached to the state structure.
1407 * This is done so that we can quickly reattach ourselves to those buffers
Nathan Scottc41564b2006-03-29 08:55:14 +10001408 * after some set of transaction commits have released these buffers.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409 */
1410STATIC int
1411xfs_attr_fillstate(xfs_da_state_t *state)
1412{
1413 xfs_da_state_path_t *path;
1414 xfs_da_state_blk_t *blk;
1415 int level;
1416
Dave Chinneree732592012-11-12 22:53:53 +11001417 trace_xfs_attr_fillstate(state->args);
1418
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419 /*
1420 * Roll down the "path" in the state structure, storing the on-disk
1421 * block number for those buffers in the "path".
1422 */
1423 path = &state->path;
1424 ASSERT((path->active >= 0) && (path->active < XFS_DA_NODE_MAXDEPTH));
1425 for (blk = path->blk, level = 0; level < path->active; blk++, level++) {
1426 if (blk->bp) {
Dave Chinner1d9025e2012-06-22 18:50:14 +10001427 blk->disk_blkno = XFS_BUF_ADDR(blk->bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428 blk->bp = NULL;
1429 } else {
1430 blk->disk_blkno = 0;
1431 }
1432 }
1433
1434 /*
1435 * Roll down the "altpath" in the state structure, storing the on-disk
1436 * block number for those buffers in the "altpath".
1437 */
1438 path = &state->altpath;
1439 ASSERT((path->active >= 0) && (path->active < XFS_DA_NODE_MAXDEPTH));
1440 for (blk = path->blk, level = 0; level < path->active; blk++, level++) {
1441 if (blk->bp) {
Dave Chinner1d9025e2012-06-22 18:50:14 +10001442 blk->disk_blkno = XFS_BUF_ADDR(blk->bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443 blk->bp = NULL;
1444 } else {
1445 blk->disk_blkno = 0;
1446 }
1447 }
1448
1449 return(0);
1450}
1451
1452/*
1453 * Reattach the buffers to the state structure based on the disk block
1454 * numbers stored in the state structure.
Nathan Scottc41564b2006-03-29 08:55:14 +10001455 * This is done after some set of transaction commits have released those
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456 * buffers from our grip.
1457 */
1458STATIC int
1459xfs_attr_refillstate(xfs_da_state_t *state)
1460{
1461 xfs_da_state_path_t *path;
1462 xfs_da_state_blk_t *blk;
1463 int level, error;
1464
Dave Chinneree732592012-11-12 22:53:53 +11001465 trace_xfs_attr_refillstate(state->args);
1466
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467 /*
1468 * Roll down the "path" in the state structure, storing the on-disk
1469 * block number for those buffers in the "path".
1470 */
1471 path = &state->path;
1472 ASSERT((path->active >= 0) && (path->active < XFS_DA_NODE_MAXDEPTH));
1473 for (blk = path->blk, level = 0; level < path->active; blk++, level++) {
1474 if (blk->disk_blkno) {
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001475 error = xfs_da3_node_read(state->args->trans,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476 state->args->dp,
1477 blk->blkno, blk->disk_blkno,
Dave Chinnerd9392a42012-11-12 22:54:17 +11001478 &blk->bp, XFS_ATTR_FORK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479 if (error)
1480 return(error);
1481 } else {
1482 blk->bp = NULL;
1483 }
1484 }
1485
1486 /*
1487 * Roll down the "altpath" in the state structure, storing the on-disk
1488 * block number for those buffers in the "altpath".
1489 */
1490 path = &state->altpath;
1491 ASSERT((path->active >= 0) && (path->active < XFS_DA_NODE_MAXDEPTH));
1492 for (blk = path->blk, level = 0; level < path->active; blk++, level++) {
1493 if (blk->disk_blkno) {
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001494 error = xfs_da3_node_read(state->args->trans,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495 state->args->dp,
1496 blk->blkno, blk->disk_blkno,
Dave Chinnerd9392a42012-11-12 22:54:17 +11001497 &blk->bp, XFS_ATTR_FORK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498 if (error)
1499 return(error);
1500 } else {
1501 blk->bp = NULL;
1502 }
1503 }
1504
1505 return(0);
1506}
1507
1508/*
1509 * Look up a filename in a node attribute list.
1510 *
1511 * This routine gets called for any attribute fork that has more than one
1512 * block, ie: both true Btree attr lists and for single-leaf-blocks with
1513 * "remote" values taking up more blocks.
1514 */
Christoph Hellwigba0f32d2005-06-21 15:36:52 +10001515STATIC int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516xfs_attr_node_get(xfs_da_args_t *args)
1517{
1518 xfs_da_state_t *state;
1519 xfs_da_state_blk_t *blk;
1520 int error, retval;
1521 int i;
1522
Dave Chinneree732592012-11-12 22:53:53 +11001523 trace_xfs_attr_node_get(args);
1524
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525 state = xfs_da_state_alloc();
1526 state->args = args;
1527 state->mp = args->dp->i_mount;
1528 state->blocksize = state->mp->m_sb.sb_blocksize;
1529 state->node_ents = state->mp->m_attr_node_ents;
1530
1531 /*
1532 * Search to see if name exists, and get back a pointer to it.
1533 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001534 error = xfs_da3_node_lookup_int(state, &retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535 if (error) {
1536 retval = error;
1537 } else if (retval == EEXIST) {
1538 blk = &state->path.blk[ state->path.active-1 ];
1539 ASSERT(blk->bp != NULL);
1540 ASSERT(blk->magic == XFS_ATTR_LEAF_MAGIC);
1541
1542 /*
1543 * Get the value, local or "remote"
1544 */
Dave Chinner517c2222013-04-24 18:58:55 +10001545 retval = xfs_attr3_leaf_getvalue(blk->bp, args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546 if (!retval && (args->rmtblkno > 0)
1547 && !(args->flags & ATTR_KERNOVAL)) {
1548 retval = xfs_attr_rmtval_get(args);
1549 }
1550 }
1551
1552 /*
1553 * If not in a transaction, we have to release all the buffers.
1554 */
1555 for (i = 0; i < state->path.active; i++) {
Dave Chinner1d9025e2012-06-22 18:50:14 +10001556 xfs_trans_brelse(args->trans, state->path.blk[i].bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557 state->path.blk[i].bp = NULL;
1558 }
1559
1560 xfs_da_state_free(state);
1561 return(retval);
1562}