blob: e706875415922c03be70ad682951285079828196 [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"
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include "xfs_types.h"
Nathan Scotta844f452005-11-02 14:38:42 +110021#include "xfs_bit.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include "xfs_log.h"
23#include "xfs_trans.h"
24#include "xfs_sb.h"
25#include "xfs_ag.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include "xfs_mount.h"
Nathan Scotta844f452005-11-02 14:38:42 +110027#include "xfs_da_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include "xfs_bmap_btree.h"
Nathan Scotta844f452005-11-02 14:38:42 +110029#include "xfs_attr_sf.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include "xfs_dinode.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"
Nathan Scotta844f452005-11-02 14:38:42 +110033#include "xfs_inode_item.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include "xfs_bmap.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include "xfs_attr.h"
36#include "xfs_attr_leaf.h"
37#include "xfs_error.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#include "xfs_quota.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include "xfs_trans_space.h"
Christoph Hellwig739bfb22007-08-29 10:58:01 +100040#include "xfs_vnodeops.h"
Christoph Hellwig0b1b2132009-12-14 23:14:59 +000041#include "xfs_trace.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
43/*
44 * xfs_attr.c
45 *
46 * Provide the external interfaces to manage attribute lists.
47 */
48
49/*========================================================================
50 * Function prototypes for the kernel.
51 *========================================================================*/
52
53/*
54 * Internal routines when attribute list fits inside the inode.
55 */
56STATIC int xfs_attr_shortform_addname(xfs_da_args_t *args);
57
58/*
59 * Internal routines when attribute list is one block.
60 */
Christoph Hellwigba0f32d2005-06-21 15:36:52 +100061STATIC int xfs_attr_leaf_get(xfs_da_args_t *args);
Linus Torvalds1da177e2005-04-16 15:20:36 -070062STATIC int xfs_attr_leaf_addname(xfs_da_args_t *args);
63STATIC int xfs_attr_leaf_removename(xfs_da_args_t *args);
64STATIC int xfs_attr_leaf_list(xfs_attr_list_context_t *context);
65
66/*
67 * Internal routines when attribute list is more than one block.
68 */
Christoph Hellwigba0f32d2005-06-21 15:36:52 +100069STATIC int xfs_attr_node_get(xfs_da_args_t *args);
Linus Torvalds1da177e2005-04-16 15:20:36 -070070STATIC int xfs_attr_node_addname(xfs_da_args_t *args);
71STATIC int xfs_attr_node_removename(xfs_da_args_t *args);
72STATIC int xfs_attr_node_list(xfs_attr_list_context_t *context);
73STATIC int xfs_attr_fillstate(xfs_da_state_t *state);
74STATIC int xfs_attr_refillstate(xfs_da_state_t *state);
75
76/*
77 * Routines to manipulate out-of-line attribute values.
78 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070079STATIC int xfs_attr_rmtval_set(xfs_da_args_t *args);
80STATIC int xfs_attr_rmtval_remove(xfs_da_args_t *args);
81
82#define ATTR_RMTVALUE_MAPSIZE 1 /* # of map entries at once */
83
Barry Naujoke8b0eba2008-04-22 17:34:31 +100084STATIC int
85xfs_attr_name_to_xname(
86 struct xfs_name *xname,
Dave Chinnera9273ca2010-01-20 10:47:48 +110087 const unsigned char *aname)
Barry Naujoke8b0eba2008-04-22 17:34:31 +100088{
89 if (!aname)
90 return EINVAL;
91 xname->name = aname;
Dave Chinnera9273ca2010-01-20 10:47:48 +110092 xname->len = strlen((char *)aname);
Barry Naujoke8b0eba2008-04-22 17:34:31 +100093 if (xname->len >= MAXNAMELEN)
94 return EFAULT; /* match IRIX behaviour */
95
96 return 0;
97}
Linus Torvalds1da177e2005-04-16 15:20:36 -070098
Christoph Hellwigcaf8aab2008-06-23 13:23:41 +100099STATIC int
100xfs_inode_hasattr(
101 struct xfs_inode *ip)
102{
103 if (!XFS_IFORK_Q(ip) ||
104 (ip->i_d.di_aformat == XFS_DINODE_FMT_EXTENTS &&
105 ip->i_d.di_anextents == 0))
106 return 0;
107 return 1;
108}
109
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110/*========================================================================
111 * Overall external interface routines.
112 *========================================================================*/
113
Christoph Hellwige82fa0c2009-11-14 16:17:20 +0000114STATIC int
115xfs_attr_get_int(
116 struct xfs_inode *ip,
117 struct xfs_name *name,
Dave Chinnera9273ca2010-01-20 10:47:48 +1100118 unsigned char *value,
Christoph Hellwige82fa0c2009-11-14 16:17:20 +0000119 int *valuelenp,
120 int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121{
122 xfs_da_args_t args;
123 int error;
124
Christoph Hellwigcaf8aab2008-06-23 13:23:41 +1000125 if (!xfs_inode_hasattr(ip))
126 return ENOATTR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 /*
129 * Fill in the arg structure for this request.
130 */
131 memset((char *)&args, 0, sizeof(args));
Barry Naujoke8b0eba2008-04-22 17:34:31 +1000132 args.name = name->name;
133 args.namelen = name->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 args.value = value;
135 args.valuelen = *valuelenp;
136 args.flags = flags;
137 args.hashval = xfs_da_hashname(args.name, args.namelen);
138 args.dp = ip;
139 args.whichfork = XFS_ATTR_FORK;
140
141 /*
142 * Decide on what work routines to call based on the inode size.
143 */
Christoph Hellwigcaf8aab2008-06-23 13:23:41 +1000144 if (ip->i_d.di_aformat == XFS_DINODE_FMT_LOCAL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 error = xfs_attr_shortform_getvalue(&args);
146 } else if (xfs_bmap_one_block(ip, XFS_ATTR_FORK)) {
147 error = xfs_attr_leaf_get(&args);
148 } else {
149 error = xfs_attr_node_get(&args);
150 }
151
152 /*
153 * Return the number of bytes in the value to the caller.
154 */
155 *valuelenp = args.valuelen;
156
157 if (error == EEXIST)
158 error = 0;
159 return(error);
160}
161
162int
Christoph Hellwig993386c2007-08-28 16:12:30 +1000163xfs_attr_get(
164 xfs_inode_t *ip,
Dave Chinnera9273ca2010-01-20 10:47:48 +1100165 const unsigned char *name,
166 unsigned char *value,
Christoph Hellwig993386c2007-08-28 16:12:30 +1000167 int *valuelenp,
Barry Naujoke8b0eba2008-04-22 17:34:31 +1000168 int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169{
Barry Naujoke8b0eba2008-04-22 17:34:31 +1000170 int error;
171 struct xfs_name xname;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172
173 XFS_STATS_INC(xs_attr_get);
174
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 if (XFS_FORCED_SHUTDOWN(ip->i_mount))
176 return(EIO);
177
Barry Naujoke8b0eba2008-04-22 17:34:31 +1000178 error = xfs_attr_name_to_xname(&xname, name);
179 if (error)
180 return error;
181
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 xfs_ilock(ip, XFS_ILOCK_SHARED);
Christoph Hellwige82fa0c2009-11-14 16:17:20 +0000183 error = xfs_attr_get_int(ip, &xname, value, valuelenp, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 xfs_iunlock(ip, XFS_ILOCK_SHARED);
185 return(error);
186}
187
Niv Sardi5e9da7b2008-08-13 16:03:35 +1000188/*
189 * Calculate how many blocks we need for the new attribute,
190 */
Eric Sandeen5d77c0d2009-11-19 15:52:00 +0000191STATIC int
Niv Sardi5e9da7b2008-08-13 16:03:35 +1000192xfs_attr_calc_size(
193 struct xfs_inode *ip,
194 int namelen,
195 int valuelen,
196 int *local)
197{
198 struct xfs_mount *mp = ip->i_mount;
199 int size;
200 int nblks;
201
202 /*
203 * Determine space new attribute will use, and if it would be
204 * "local" or "remote" (note: local != inline).
205 */
206 size = xfs_attr_leaf_newentsize(namelen, valuelen,
207 mp->m_sb.sb_blocksize, local);
208
209 nblks = XFS_DAENTER_SPACE_RES(mp, XFS_ATTR_FORK);
210 if (*local) {
211 if (size > (mp->m_sb.sb_blocksize >> 1)) {
212 /* Double split possible */
213 nblks *= 2;
214 }
215 } else {
216 /*
217 * Out of line attribute, cannot double split, but
218 * make room for the attribute value itself.
219 */
220 uint dblocks = XFS_B_TO_FSB(mp, valuelen);
221 nblks += dblocks;
222 nblks += XFS_NEXTENTADD_SPACE_RES(mp, dblocks, XFS_ATTR_FORK);
223 }
224
225 return nblks;
226}
227
Barry Naujoke8b0eba2008-04-22 17:34:31 +1000228STATIC int
Dave Chinnera9273ca2010-01-20 10:47:48 +1100229xfs_attr_set_int(
230 struct xfs_inode *dp,
231 struct xfs_name *name,
232 unsigned char *value,
233 int valuelen,
234 int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235{
236 xfs_da_args_t args;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 xfs_fsblock_t firstblock;
238 xfs_bmap_free_t flist;
239 int error, err2, committed;
Nathan Scottaa82daa2005-11-02 10:33:33 +1100240 xfs_mount_t *mp = dp->i_mount;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 int rsvd = (flags & ATTR_ROOT) != 0;
Niv Sardi5e9da7b2008-08-13 16:03:35 +1000242 int local;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243
244 /*
245 * Attach the dquots to the inode.
246 */
Christoph Hellwig7d095252009-06-08 15:33:32 +0200247 error = xfs_qm_dqattach(dp, 0);
248 if (error)
249 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250
251 /*
252 * If the inode doesn't have an attribute fork, add one.
253 * (inode must not be locked when we call this routine)
254 */
255 if (XFS_IFORK_Q(dp) == 0) {
Barry Naujoke5889e92007-02-10 18:35:58 +1100256 int sf_size = sizeof(xfs_attr_sf_hdr_t) +
Barry Naujoke8b0eba2008-04-22 17:34:31 +1000257 XFS_ATTR_SF_ENTSIZE_BYNAME(name->len, valuelen);
Barry Naujoke5889e92007-02-10 18:35:58 +1100258
259 if ((error = xfs_bmap_add_attrfork(dp, sf_size, rsvd)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 return(error);
261 }
262
263 /*
264 * Fill in the arg structure for this request.
265 */
266 memset((char *)&args, 0, sizeof(args));
Barry Naujoke8b0eba2008-04-22 17:34:31 +1000267 args.name = name->name;
268 args.namelen = name->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 args.value = value;
270 args.valuelen = valuelen;
271 args.flags = flags;
272 args.hashval = xfs_da_hashname(args.name, args.namelen);
273 args.dp = dp;
274 args.firstblock = &firstblock;
275 args.flist = &flist;
276 args.whichfork = XFS_ATTR_FORK;
Barry Naujok6a178102008-05-21 16:42:05 +1000277 args.op_flags = XFS_DA_OP_ADDNAME | XFS_DA_OP_OKNOENT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 /* Size is now blocks for attribute data */
Niv Sardi5e9da7b2008-08-13 16:03:35 +1000280 args.total = xfs_attr_calc_size(dp, name->len, valuelen, &local);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281
282 /*
283 * Start our first transaction of the day.
284 *
285 * All future transactions during this code must be "chained" off
286 * this one via the trans_dup() call. All transactions will contain
287 * the inode, and the inode will always be marked with trans_ihold().
288 * Since the inode will be locked in all transactions, we must log
289 * the inode in every transaction to let it float upward through
290 * the log.
291 */
292 args.trans = xfs_trans_alloc(mp, XFS_TRANS_ATTR_SET);
293
294 /*
295 * Root fork attributes can use reserved data blocks for this
296 * operation if necessary
297 */
298
299 if (rsvd)
300 args.trans->t_flags |= XFS_TRANS_RESERVE;
301
Jeff Liua21cd502013-01-28 21:27:53 +0800302 error = xfs_trans_reserve(args.trans, args.total,
303 XFS_ATTRSETM_LOG_RES(mp) +
304 XFS_ATTRSETRT_LOG_RES(mp) * args.total,
305 0, XFS_TRANS_PERM_LOG_RES,
306 XFS_ATTRSET_LOG_COUNT);
307 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 xfs_trans_cancel(args.trans, 0);
309 return(error);
310 }
311 xfs_ilock(dp, XFS_ILOCK_EXCL);
312
Christoph Hellwig7d095252009-06-08 15:33:32 +0200313 error = xfs_trans_reserve_quota_nblks(args.trans, dp, args.total, 0,
Niv Sardi5e9da7b2008-08-13 16:03:35 +1000314 rsvd ? XFS_QMOPT_RES_REGBLKS | XFS_QMOPT_FORCE_RES :
315 XFS_QMOPT_RES_REGBLKS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 if (error) {
317 xfs_iunlock(dp, XFS_ILOCK_EXCL);
318 xfs_trans_cancel(args.trans, XFS_TRANS_RELEASE_LOG_RES);
319 return (error);
320 }
321
Christoph Hellwigddc34152011-09-19 15:00:54 +0000322 xfs_trans_ijoin(args.trans, dp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323
324 /*
Nathan Scottc41564b2006-03-29 08:55:14 +1000325 * If the attribute list is non-existent or a shortform list,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 * upgrade it to a single-leaf-block attribute list.
327 */
328 if ((dp->i_d.di_aformat == XFS_DINODE_FMT_LOCAL) ||
329 ((dp->i_d.di_aformat == XFS_DINODE_FMT_EXTENTS) &&
330 (dp->i_d.di_anextents == 0))) {
331
332 /*
333 * Build initial attribute list (if required).
334 */
335 if (dp->i_d.di_aformat == XFS_DINODE_FMT_EXTENTS)
Nathan Scottd8cc8902005-11-02 10:34:53 +1100336 xfs_attr_shortform_create(&args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337
338 /*
339 * Try to add the attr to the attribute list in
340 * the inode.
341 */
342 error = xfs_attr_shortform_addname(&args);
343 if (error != ENOSPC) {
344 /*
345 * Commit the shortform mods, and we're done.
346 * NOTE: this is also the error path (EEXIST, etc).
347 */
348 ASSERT(args.trans != NULL);
349
350 /*
351 * If this is a synchronous mount, make sure that
352 * the transaction goes to disk before returning
353 * to the user.
354 */
355 if (mp->m_flags & XFS_MOUNT_WSYNC) {
356 xfs_trans_set_sync(args.trans);
357 }
Dave Chinnerdcd79a12010-09-28 12:27:25 +1000358
359 if (!error && (flags & ATTR_KERNOTIME) == 0) {
360 xfs_trans_ichgtime(args.trans, dp,
361 XFS_ICHGTIME_CHG);
362 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 err2 = xfs_trans_commit(args.trans,
Eric Sandeen1c72bf92007-05-08 13:48:42 +1000364 XFS_TRANS_RELEASE_LOG_RES);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 xfs_iunlock(dp, XFS_ILOCK_EXCL);
366
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 return(error == 0 ? err2 : error);
368 }
369
370 /*
371 * It won't fit in the shortform, transform to a leaf block.
372 * GROT: another possible req'mt for a double-split btree op.
373 */
Eric Sandeen9d87c312009-01-14 23:22:07 -0600374 xfs_bmap_init(args.flist, args.firstblock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 error = xfs_attr_shortform_to_leaf(&args);
376 if (!error) {
377 error = xfs_bmap_finish(&args.trans, args.flist,
Eric Sandeenf7c99b62007-02-10 18:37:16 +1100378 &committed);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 }
380 if (error) {
381 ASSERT(committed);
382 args.trans = NULL;
383 xfs_bmap_cancel(&flist);
384 goto out;
385 }
386
387 /*
388 * bmap_finish() may have committed the last trans and started
389 * a new one. We need the inode to be in all transactions.
390 */
Christoph Hellwig898621d2010-06-24 11:36:58 +1000391 if (committed)
Christoph Hellwigddc34152011-09-19 15:00:54 +0000392 xfs_trans_ijoin(args.trans, dp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393
394 /*
395 * Commit the leaf transformation. We'll need another (linked)
396 * transaction to add the new attribute to the leaf.
397 */
Niv Sardi322ff6b2008-08-13 16:05:49 +1000398
399 error = xfs_trans_roll(&args.trans, dp);
400 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 goto out;
402
403 }
404
405 if (xfs_bmap_one_block(dp, XFS_ATTR_FORK)) {
406 error = xfs_attr_leaf_addname(&args);
407 } else {
408 error = xfs_attr_node_addname(&args);
409 }
410 if (error) {
411 goto out;
412 }
413
414 /*
415 * If this is a synchronous mount, make sure that the
416 * transaction goes to disk before returning to the user.
417 */
418 if (mp->m_flags & XFS_MOUNT_WSYNC) {
419 xfs_trans_set_sync(args.trans);
420 }
421
Dave Chinnerdcd79a12010-09-28 12:27:25 +1000422 if ((flags & ATTR_KERNOTIME) == 0)
423 xfs_trans_ichgtime(args.trans, dp, XFS_ICHGTIME_CHG);
424
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 /*
426 * Commit the last in the sequence of transactions.
427 */
428 xfs_trans_log_inode(args.trans, dp, XFS_ILOG_CORE);
Eric Sandeen1c72bf92007-05-08 13:48:42 +1000429 error = xfs_trans_commit(args.trans, XFS_TRANS_RELEASE_LOG_RES);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 xfs_iunlock(dp, XFS_ILOCK_EXCL);
431
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 return(error);
433
434out:
435 if (args.trans)
436 xfs_trans_cancel(args.trans,
437 XFS_TRANS_RELEASE_LOG_RES|XFS_TRANS_ABORT);
438 xfs_iunlock(dp, XFS_ILOCK_EXCL);
439 return(error);
440}
441
Nathan Scottaa82daa2005-11-02 10:33:33 +1100442int
Christoph Hellwig993386c2007-08-28 16:12:30 +1000443xfs_attr_set(
444 xfs_inode_t *dp,
Dave Chinnera9273ca2010-01-20 10:47:48 +1100445 const unsigned char *name,
446 unsigned char *value,
Christoph Hellwig993386c2007-08-28 16:12:30 +1000447 int valuelen,
448 int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449{
Barry Naujoke8b0eba2008-04-22 17:34:31 +1000450 int error;
451 struct xfs_name xname;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452
Nathan Scottaa82daa2005-11-02 10:33:33 +1100453 XFS_STATS_INC(xs_attr_set);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454
Nathan Scottaa82daa2005-11-02 10:33:33 +1100455 if (XFS_FORCED_SHUTDOWN(dp->i_mount))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 return (EIO);
457
Barry Naujoke8b0eba2008-04-22 17:34:31 +1000458 error = xfs_attr_name_to_xname(&xname, name);
459 if (error)
460 return error;
461
462 return xfs_attr_set_int(dp, &xname, value, valuelen, flags);
Nathan Scottaa82daa2005-11-02 10:33:33 +1100463}
464
465/*
466 * Generic handler routine to remove a name from an attribute list.
467 * Transitions attribute list from Btree to shortform as necessary.
468 */
Barry Naujoke8b0eba2008-04-22 17:34:31 +1000469STATIC int
470xfs_attr_remove_int(xfs_inode_t *dp, struct xfs_name *name, int flags)
Nathan Scottaa82daa2005-11-02 10:33:33 +1100471{
472 xfs_da_args_t args;
473 xfs_fsblock_t firstblock;
474 xfs_bmap_free_t flist;
475 int error;
476 xfs_mount_t *mp = dp->i_mount;
477
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 /*
479 * Fill in the arg structure for this request.
480 */
481 memset((char *)&args, 0, sizeof(args));
Barry Naujoke8b0eba2008-04-22 17:34:31 +1000482 args.name = name->name;
483 args.namelen = name->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 args.flags = flags;
485 args.hashval = xfs_da_hashname(args.name, args.namelen);
486 args.dp = dp;
487 args.firstblock = &firstblock;
488 args.flist = &flist;
489 args.total = 0;
490 args.whichfork = XFS_ATTR_FORK;
491
492 /*
Dave Chinner4a338212011-06-23 01:35:01 +0000493 * we have no control over the attribute names that userspace passes us
494 * to remove, so we have to allow the name lookup prior to attribute
495 * removal to fail.
496 */
497 args.op_flags = XFS_DA_OP_OKNOENT;
498
499 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 * Attach the dquots to the inode.
501 */
Christoph Hellwig7d095252009-06-08 15:33:32 +0200502 error = xfs_qm_dqattach(dp, 0);
503 if (error)
504 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505
506 /*
507 * Start our first transaction of the day.
508 *
509 * All future transactions during this code must be "chained" off
510 * this one via the trans_dup() call. All transactions will contain
511 * the inode, and the inode will always be marked with trans_ihold().
512 * Since the inode will be locked in all transactions, we must log
513 * the inode in every transaction to let it float upward through
514 * the log.
515 */
516 args.trans = xfs_trans_alloc(mp, XFS_TRANS_ATTR_RM);
517
518 /*
519 * Root fork attributes can use reserved data blocks for this
520 * operation if necessary
521 */
522
523 if (flags & ATTR_ROOT)
524 args.trans->t_flags |= XFS_TRANS_RESERVE;
525
526 if ((error = xfs_trans_reserve(args.trans,
527 XFS_ATTRRM_SPACE_RES(mp),
528 XFS_ATTRRM_LOG_RES(mp),
529 0, XFS_TRANS_PERM_LOG_RES,
530 XFS_ATTRRM_LOG_COUNT))) {
531 xfs_trans_cancel(args.trans, 0);
532 return(error);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 }
534
535 xfs_ilock(dp, XFS_ILOCK_EXCL);
536 /*
537 * No need to make quota reservations here. We expect to release some
538 * blocks not allocate in the common case.
539 */
Christoph Hellwigddc34152011-09-19 15:00:54 +0000540 xfs_trans_ijoin(args.trans, dp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541
542 /*
543 * Decide on what work routines to call based on the inode size.
544 */
Christoph Hellwigcaf8aab2008-06-23 13:23:41 +1000545 if (!xfs_inode_hasattr(dp)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 error = XFS_ERROR(ENOATTR);
547 goto out;
548 }
549 if (dp->i_d.di_aformat == XFS_DINODE_FMT_LOCAL) {
550 ASSERT(dp->i_afp->if_flags & XFS_IFINLINE);
551 error = xfs_attr_shortform_remove(&args);
552 if (error) {
553 goto out;
554 }
555 } else if (xfs_bmap_one_block(dp, XFS_ATTR_FORK)) {
556 error = xfs_attr_leaf_removename(&args);
557 } else {
558 error = xfs_attr_node_removename(&args);
559 }
560 if (error) {
561 goto out;
562 }
563
564 /*
565 * If this is a synchronous mount, make sure that the
566 * transaction goes to disk before returning to the user.
567 */
568 if (mp->m_flags & XFS_MOUNT_WSYNC) {
569 xfs_trans_set_sync(args.trans);
570 }
571
Dave Chinnerdcd79a12010-09-28 12:27:25 +1000572 if ((flags & ATTR_KERNOTIME) == 0)
573 xfs_trans_ichgtime(args.trans, dp, XFS_ICHGTIME_CHG);
574
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 /*
576 * Commit the last in the sequence of transactions.
577 */
578 xfs_trans_log_inode(args.trans, dp, XFS_ILOG_CORE);
Eric Sandeen1c72bf92007-05-08 13:48:42 +1000579 error = xfs_trans_commit(args.trans, XFS_TRANS_RELEASE_LOG_RES);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 xfs_iunlock(dp, XFS_ILOCK_EXCL);
581
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 return(error);
583
584out:
585 if (args.trans)
586 xfs_trans_cancel(args.trans,
587 XFS_TRANS_RELEASE_LOG_RES|XFS_TRANS_ABORT);
588 xfs_iunlock(dp, XFS_ILOCK_EXCL);
589 return(error);
590}
591
Nathan Scottaa82daa2005-11-02 10:33:33 +1100592int
Christoph Hellwig993386c2007-08-28 16:12:30 +1000593xfs_attr_remove(
594 xfs_inode_t *dp,
Dave Chinnera9273ca2010-01-20 10:47:48 +1100595 const unsigned char *name,
Christoph Hellwig993386c2007-08-28 16:12:30 +1000596 int flags)
Nathan Scottaa82daa2005-11-02 10:33:33 +1100597{
Barry Naujoke8b0eba2008-04-22 17:34:31 +1000598 int error;
599 struct xfs_name xname;
Nathan Scottaa82daa2005-11-02 10:33:33 +1100600
601 XFS_STATS_INC(xs_attr_remove);
602
Nathan Scottaa82daa2005-11-02 10:33:33 +1100603 if (XFS_FORCED_SHUTDOWN(dp->i_mount))
604 return (EIO);
605
Barry Naujoke8b0eba2008-04-22 17:34:31 +1000606 error = xfs_attr_name_to_xname(&xname, name);
607 if (error)
608 return error;
609
Nathan Scottaa82daa2005-11-02 10:33:33 +1100610 xfs_ilock(dp, XFS_ILOCK_SHARED);
Christoph Hellwigcaf8aab2008-06-23 13:23:41 +1000611 if (!xfs_inode_hasattr(dp)) {
Nathan Scottaa82daa2005-11-02 10:33:33 +1100612 xfs_iunlock(dp, XFS_ILOCK_SHARED);
Christoph Hellwigcaf8aab2008-06-23 13:23:41 +1000613 return XFS_ERROR(ENOATTR);
Nathan Scottaa82daa2005-11-02 10:33:33 +1100614 }
615 xfs_iunlock(dp, XFS_ILOCK_SHARED);
616
Barry Naujoke8b0eba2008-04-22 17:34:31 +1000617 return xfs_attr_remove_int(dp, &xname, flags);
Nathan Scottaa82daa2005-11-02 10:33:33 +1100618}
619
Christoph Hellwigad9b4632008-06-23 13:23:48 +1000620int
Tim Shimmin726801b2006-09-28 11:01:37 +1000621xfs_attr_list_int(xfs_attr_list_context_t *context)
622{
623 int error;
624 xfs_inode_t *dp = context->dp;
625
Christoph Hellwigad9b4632008-06-23 13:23:48 +1000626 XFS_STATS_INC(xs_attr_list);
627
628 if (XFS_FORCED_SHUTDOWN(dp->i_mount))
629 return EIO;
630
631 xfs_ilock(dp, XFS_ILOCK_SHARED);
Christoph Hellwigad9b4632008-06-23 13:23:48 +1000632
Tim Shimmin726801b2006-09-28 11:01:37 +1000633 /*
634 * Decide on what work routines to call based on the inode size.
635 */
Christoph Hellwigcaf8aab2008-06-23 13:23:41 +1000636 if (!xfs_inode_hasattr(dp)) {
Tim Shimmin726801b2006-09-28 11:01:37 +1000637 error = 0;
638 } else if (dp->i_d.di_aformat == XFS_DINODE_FMT_LOCAL) {
639 error = xfs_attr_shortform_list(context);
640 } else if (xfs_bmap_one_block(dp, XFS_ATTR_FORK)) {
641 error = xfs_attr_leaf_list(context);
642 } else {
643 error = xfs_attr_node_list(context);
644 }
Christoph Hellwigad9b4632008-06-23 13:23:48 +1000645
646 xfs_iunlock(dp, XFS_ILOCK_SHARED);
Christoph Hellwigad9b4632008-06-23 13:23:48 +1000647
Tim Shimmin726801b2006-09-28 11:01:37 +1000648 return error;
649}
650
651#define ATTR_ENTBASESIZE /* minimum bytes used by an attr */ \
652 (((struct attrlist_ent *) 0)->a_name - (char *) 0)
653#define ATTR_ENTSIZE(namelen) /* actual bytes used by an attr */ \
654 ((ATTR_ENTBASESIZE + (namelen) + 1 + sizeof(u_int32_t)-1) \
655 & ~(sizeof(u_int32_t)-1))
656
657/*
658 * Format an attribute and copy it out to the user's buffer.
659 * Take care to check values and protect against them changing later,
660 * we may be reading them directly out of a user buffer.
661 */
662/*ARGSUSED*/
663STATIC int
Dave Chinnera9273ca2010-01-20 10:47:48 +1100664xfs_attr_put_listent(
665 xfs_attr_list_context_t *context,
666 int flags,
667 unsigned char *name,
668 int namelen,
669 int valuelen,
670 unsigned char *value)
Tim Shimmin726801b2006-09-28 11:01:37 +1000671{
Christoph Hellwigad9b4632008-06-23 13:23:48 +1000672 struct attrlist *alist = (struct attrlist *)context->alist;
Tim Shimmin726801b2006-09-28 11:01:37 +1000673 attrlist_ent_t *aep;
674 int arraytop;
675
676 ASSERT(!(context->flags & ATTR_KERNOVAL));
677 ASSERT(context->count >= 0);
678 ASSERT(context->count < (ATTR_MAX_VALUELEN/8));
Christoph Hellwigad9b4632008-06-23 13:23:48 +1000679 ASSERT(context->firstu >= sizeof(*alist));
Tim Shimmin726801b2006-09-28 11:01:37 +1000680 ASSERT(context->firstu <= context->bufsize);
681
Christoph Hellwigad9b4632008-06-23 13:23:48 +1000682 /*
683 * Only list entries in the right namespace.
684 */
685 if (((context->flags & ATTR_SECURE) == 0) !=
686 ((flags & XFS_ATTR_SECURE) == 0))
687 return 0;
688 if (((context->flags & ATTR_ROOT) == 0) !=
689 ((flags & XFS_ATTR_ROOT) == 0))
690 return 0;
691
692 arraytop = sizeof(*alist) +
693 context->count * sizeof(alist->al_offset[0]);
Tim Shimmin726801b2006-09-28 11:01:37 +1000694 context->firstu -= ATTR_ENTSIZE(namelen);
695 if (context->firstu < arraytop) {
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000696 trace_xfs_attr_list_full(context);
Christoph Hellwigad9b4632008-06-23 13:23:48 +1000697 alist->al_more = 1;
Tim Shimmin726801b2006-09-28 11:01:37 +1000698 context->seen_enough = 1;
699 return 1;
700 }
701
Christoph Hellwigad9b4632008-06-23 13:23:48 +1000702 aep = (attrlist_ent_t *)&context->alist[context->firstu];
Tim Shimmin726801b2006-09-28 11:01:37 +1000703 aep->a_valuelen = valuelen;
704 memcpy(aep->a_name, name, namelen);
Christoph Hellwigad9b4632008-06-23 13:23:48 +1000705 aep->a_name[namelen] = 0;
706 alist->al_offset[context->count++] = context->firstu;
707 alist->al_count = context->count;
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000708 trace_xfs_attr_list_add(context);
Tim Shimmin726801b2006-09-28 11:01:37 +1000709 return 0;
710}
711
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712/*
713 * Generate a list of extended attribute names and optionally
714 * also value lengths. Positive return value follows the XFS
715 * convention of being an error, zero or negative return code
716 * is the length of the buffer returned (negated), indicating
717 * success.
718 */
719int
Christoph Hellwig993386c2007-08-28 16:12:30 +1000720xfs_attr_list(
721 xfs_inode_t *dp,
722 char *buffer,
723 int bufsize,
724 int flags,
725 attrlist_cursor_kern_t *cursor)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726{
727 xfs_attr_list_context_t context;
Christoph Hellwigad9b4632008-06-23 13:23:48 +1000728 struct attrlist *alist;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 int error;
730
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 /*
732 * Validate the cursor.
733 */
734 if (cursor->pad1 || cursor->pad2)
735 return(XFS_ERROR(EINVAL));
736 if ((cursor->initted == 0) &&
737 (cursor->hashval || cursor->blkno || cursor->offset))
Tim Shimmin726801b2006-09-28 11:01:37 +1000738 return XFS_ERROR(EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739
740 /*
741 * Check for a properly aligned buffer.
742 */
743 if (((long)buffer) & (sizeof(int)-1))
Tim Shimmin726801b2006-09-28 11:01:37 +1000744 return XFS_ERROR(EFAULT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 if (flags & ATTR_KERNOVAL)
746 bufsize = 0;
747
748 /*
749 * Initialize the output buffer.
750 */
Christoph Hellwigad9b4632008-06-23 13:23:48 +1000751 memset(&context, 0, sizeof(context));
Christoph Hellwig993386c2007-08-28 16:12:30 +1000752 context.dp = dp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 context.cursor = cursor;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 context.resynch = 1;
755 context.flags = flags;
Christoph Hellwigad9b4632008-06-23 13:23:48 +1000756 context.alist = buffer;
757 context.bufsize = (bufsize & ~(sizeof(int)-1)); /* align */
758 context.firstu = context.bufsize;
759 context.put_listent = xfs_attr_put_listent;
Tim Shimmin726801b2006-09-28 11:01:37 +1000760
Christoph Hellwigad9b4632008-06-23 13:23:48 +1000761 alist = (struct attrlist *)context.alist;
762 alist->al_count = 0;
763 alist->al_more = 0;
764 alist->al_offset[0] = context.bufsize;
Tim Shimmin726801b2006-09-28 11:01:37 +1000765
766 error = xfs_attr_list_int(&context);
Christoph Hellwigad9b4632008-06-23 13:23:48 +1000767 ASSERT(error >= 0);
Tim Shimmin726801b2006-09-28 11:01:37 +1000768 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769}
770
771int /* error */
772xfs_attr_inactive(xfs_inode_t *dp)
773{
774 xfs_trans_t *trans;
775 xfs_mount_t *mp;
776 int error;
777
778 mp = dp->i_mount;
779 ASSERT(! XFS_NOT_DQATTACHED(mp, dp));
780
781 xfs_ilock(dp, XFS_ILOCK_SHARED);
Christoph Hellwigcaf8aab2008-06-23 13:23:41 +1000782 if (!xfs_inode_hasattr(dp) ||
783 dp->i_d.di_aformat == XFS_DINODE_FMT_LOCAL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 xfs_iunlock(dp, XFS_ILOCK_SHARED);
Christoph Hellwigcaf8aab2008-06-23 13:23:41 +1000785 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 }
787 xfs_iunlock(dp, XFS_ILOCK_SHARED);
788
789 /*
790 * Start our first transaction of the day.
791 *
792 * All future transactions during this code must be "chained" off
793 * this one via the trans_dup() call. All transactions will contain
794 * the inode, and the inode will always be marked with trans_ihold().
795 * Since the inode will be locked in all transactions, we must log
796 * the inode in every transaction to let it float upward through
797 * the log.
798 */
799 trans = xfs_trans_alloc(mp, XFS_TRANS_ATTRINVAL);
800 if ((error = xfs_trans_reserve(trans, 0, XFS_ATTRINVAL_LOG_RES(mp), 0,
801 XFS_TRANS_PERM_LOG_RES,
802 XFS_ATTRINVAL_LOG_COUNT))) {
803 xfs_trans_cancel(trans, 0);
804 return(error);
805 }
806 xfs_ilock(dp, XFS_ILOCK_EXCL);
807
808 /*
809 * No need to make quota reservations here. We expect to release some
810 * blocks, not allocate, in the common case.
811 */
Christoph Hellwigddc34152011-09-19 15:00:54 +0000812 xfs_trans_ijoin(trans, dp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813
814 /*
815 * Decide on what work routines to call based on the inode size.
816 */
Christoph Hellwigcaf8aab2008-06-23 13:23:41 +1000817 if (!xfs_inode_hasattr(dp) ||
818 dp->i_d.di_aformat == XFS_DINODE_FMT_LOCAL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 error = 0;
820 goto out;
821 }
Dave Chinner517c2222013-04-24 18:58:55 +1000822 error = xfs_attr3_root_inactive(&trans, dp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 if (error)
824 goto out;
Christoph Hellwig8f04c472011-07-08 14:34:34 +0200825
Christoph Hellwig8f04c472011-07-08 14:34:34 +0200826 error = xfs_itruncate_extents(&trans, dp, XFS_ATTR_FORK, 0);
827 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 goto out;
829
Eric Sandeen1c72bf92007-05-08 13:48:42 +1000830 error = xfs_trans_commit(trans, XFS_TRANS_RELEASE_LOG_RES);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 xfs_iunlock(dp, XFS_ILOCK_EXCL);
832
833 return(error);
834
835out:
836 xfs_trans_cancel(trans, XFS_TRANS_RELEASE_LOG_RES|XFS_TRANS_ABORT);
837 xfs_iunlock(dp, XFS_ILOCK_EXCL);
838 return(error);
839}
840
841
842
843/*========================================================================
844 * External routines when attribute list is inside the inode
845 *========================================================================*/
846
847/*
848 * Add a name to the shortform attribute list structure
849 * This is the external routine.
850 */
851STATIC int
852xfs_attr_shortform_addname(xfs_da_args_t *args)
853{
Nathan Scottd8cc8902005-11-02 10:34:53 +1100854 int newsize, forkoff, retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855
Dave Chinner5a5881c2012-03-22 05:15:13 +0000856 trace_xfs_attr_sf_addname(args);
857
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 retval = xfs_attr_shortform_lookup(args);
859 if ((args->flags & ATTR_REPLACE) && (retval == ENOATTR)) {
860 return(retval);
861 } else if (retval == EEXIST) {
862 if (args->flags & ATTR_CREATE)
863 return(retval);
864 retval = xfs_attr_shortform_remove(args);
865 ASSERT(retval == 0);
866 }
867
Nathan Scottd8cc8902005-11-02 10:34:53 +1100868 if (args->namelen >= XFS_ATTR_SF_ENTSIZE_MAX ||
869 args->valuelen >= XFS_ATTR_SF_ENTSIZE_MAX)
870 return(XFS_ERROR(ENOSPC));
871
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872 newsize = XFS_ATTR_SF_TOTSIZE(args->dp);
873 newsize += XFS_ATTR_SF_ENTSIZE_BYNAME(args->namelen, args->valuelen);
Nathan Scottd8cc8902005-11-02 10:34:53 +1100874
875 forkoff = xfs_attr_shortform_bytesfit(args->dp, newsize);
876 if (!forkoff)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 return(XFS_ERROR(ENOSPC));
Nathan Scottd8cc8902005-11-02 10:34:53 +1100878
879 xfs_attr_shortform_add(args, forkoff);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 return(0);
881}
882
883
884/*========================================================================
885 * External routines when attribute list is one block
886 *========================================================================*/
887
888/*
889 * Add a name to the leaf attribute list structure
890 *
891 * This leaf block cannot have a "remote" value, we only call this routine
892 * if bmap_one_block() says there is only one block (ie: no remote blks).
893 */
David Chinnera8272ce2007-11-23 16:28:09 +1100894STATIC int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895xfs_attr_leaf_addname(xfs_da_args_t *args)
896{
897 xfs_inode_t *dp;
Dave Chinner1d9025e2012-06-22 18:50:14 +1000898 struct xfs_buf *bp;
Nathan Scottd8cc8902005-11-02 10:34:53 +1100899 int retval, error, committed, forkoff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900
Dave Chinner5a5881c2012-03-22 05:15:13 +0000901 trace_xfs_attr_leaf_addname(args);
902
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 /*
904 * Read the (only) block in the attribute list in.
905 */
906 dp = args->dp;
907 args->blkno = 0;
Dave Chinner517c2222013-04-24 18:58:55 +1000908 error = xfs_attr3_leaf_read(args->trans, args->dp, args->blkno, -1, &bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 if (error)
Dave Chinnerad14c332012-11-12 22:54:16 +1100910 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911
912 /*
913 * Look up the given attribute in the leaf block. Figure out if
914 * the given flags produce an error or call for an atomic rename.
915 */
Dave Chinner517c2222013-04-24 18:58:55 +1000916 retval = xfs_attr3_leaf_lookup_int(bp, args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917 if ((args->flags & ATTR_REPLACE) && (retval == ENOATTR)) {
Dave Chinner1d9025e2012-06-22 18:50:14 +1000918 xfs_trans_brelse(args->trans, bp);
Dave Chinner517c2222013-04-24 18:58:55 +1000919 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920 } else if (retval == EEXIST) {
921 if (args->flags & ATTR_CREATE) { /* pure create op */
Dave Chinner1d9025e2012-06-22 18:50:14 +1000922 xfs_trans_brelse(args->trans, bp);
Dave Chinner517c2222013-04-24 18:58:55 +1000923 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 }
Dave Chinner5a5881c2012-03-22 05:15:13 +0000925
926 trace_xfs_attr_leaf_replace(args);
927
Barry Naujok6a178102008-05-21 16:42:05 +1000928 args->op_flags |= XFS_DA_OP_RENAME; /* an atomic rename */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 args->blkno2 = args->blkno; /* set 2nd entry info*/
930 args->index2 = args->index;
931 args->rmtblkno2 = args->rmtblkno;
932 args->rmtblkcnt2 = args->rmtblkcnt;
933 }
934
935 /*
936 * Add the attribute to the leaf block, transitioning to a Btree
937 * if required.
938 */
Dave Chinner517c2222013-04-24 18:58:55 +1000939 retval = xfs_attr3_leaf_add(bp, args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940 if (retval == ENOSPC) {
941 /*
942 * Promote the attribute list to the Btree format, then
943 * Commit that transaction so that the node_addname() call
944 * can manage its own transactions.
945 */
Eric Sandeen9d87c312009-01-14 23:22:07 -0600946 xfs_bmap_init(args->flist, args->firstblock);
Dave Chinner517c2222013-04-24 18:58:55 +1000947 error = xfs_attr3_leaf_to_node(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948 if (!error) {
949 error = xfs_bmap_finish(&args->trans, args->flist,
Eric Sandeenf7c99b62007-02-10 18:37:16 +1100950 &committed);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 }
952 if (error) {
953 ASSERT(committed);
954 args->trans = NULL;
955 xfs_bmap_cancel(args->flist);
956 return(error);
957 }
958
959 /*
960 * bmap_finish() may have committed the last trans and started
961 * a new one. We need the inode to be in all transactions.
962 */
Christoph Hellwig898621d2010-06-24 11:36:58 +1000963 if (committed)
Christoph Hellwigddc34152011-09-19 15:00:54 +0000964 xfs_trans_ijoin(args->trans, dp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965
966 /*
967 * Commit the current trans (including the inode) and start
968 * a new one.
969 */
Niv Sardi322ff6b2008-08-13 16:05:49 +1000970 error = xfs_trans_roll(&args->trans, dp);
971 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 return (error);
973
974 /*
975 * Fob the whole rest of the problem off on the Btree code.
976 */
977 error = xfs_attr_node_addname(args);
978 return(error);
979 }
980
981 /*
982 * Commit the transaction that added the attr name so that
983 * later routines can manage their own transactions.
984 */
Niv Sardi322ff6b2008-08-13 16:05:49 +1000985 error = xfs_trans_roll(&args->trans, dp);
986 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 return (error);
988
989 /*
990 * If there was an out-of-line value, allocate the blocks we
991 * identified for its storage and copy the value. This is done
992 * after we create the attribute so that we don't overflow the
993 * maximum size of a transaction and/or hit a deadlock.
994 */
995 if (args->rmtblkno > 0) {
996 error = xfs_attr_rmtval_set(args);
997 if (error)
998 return(error);
999 }
1000
1001 /*
1002 * If this is an atomic rename operation, we must "flip" the
1003 * incomplete flags on the "new" and "old" attribute/value pairs
1004 * so that one disappears and one appears atomically. Then we
1005 * must remove the "old" attribute/value pair.
1006 */
Barry Naujok6a178102008-05-21 16:42:05 +10001007 if (args->op_flags & XFS_DA_OP_RENAME) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008 /*
1009 * In a separate transaction, set the incomplete flag on the
1010 * "old" attr and clear the incomplete flag on the "new" attr.
1011 */
Dave Chinner517c2222013-04-24 18:58:55 +10001012 error = xfs_attr3_leaf_flipflags(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013 if (error)
1014 return(error);
1015
1016 /*
1017 * Dismantle the "old" attribute/value pair by removing
1018 * a "remote" value (if it exists).
1019 */
1020 args->index = args->index2;
1021 args->blkno = args->blkno2;
1022 args->rmtblkno = args->rmtblkno2;
1023 args->rmtblkcnt = args->rmtblkcnt2;
1024 if (args->rmtblkno) {
1025 error = xfs_attr_rmtval_remove(args);
1026 if (error)
1027 return(error);
1028 }
1029
1030 /*
1031 * Read in the block containing the "old" attr, then
1032 * remove the "old" attr from that block (neat, huh!)
1033 */
Dave Chinner517c2222013-04-24 18:58:55 +10001034 error = xfs_attr3_leaf_read(args->trans, args->dp, args->blkno,
Dave Chinnerad14c332012-11-12 22:54:16 +11001035 -1, &bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 if (error)
Dave Chinnerad14c332012-11-12 22:54:16 +11001037 return error;
1038
Dave Chinner517c2222013-04-24 18:58:55 +10001039 xfs_attr3_leaf_remove(bp, args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040
1041 /*
1042 * If the result is small enough, shrink it all into the inode.
1043 */
Nathan Scottd8cc8902005-11-02 10:34:53 +11001044 if ((forkoff = xfs_attr_shortform_allfit(bp, dp))) {
Eric Sandeen9d87c312009-01-14 23:22:07 -06001045 xfs_bmap_init(args->flist, args->firstblock);
Dave Chinner517c2222013-04-24 18:58:55 +10001046 error = xfs_attr3_leaf_to_shortform(bp, args, forkoff);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 /* bp is gone due to xfs_da_shrink_inode */
1048 if (!error) {
1049 error = xfs_bmap_finish(&args->trans,
1050 args->flist,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051 &committed);
1052 }
1053 if (error) {
1054 ASSERT(committed);
1055 args->trans = NULL;
1056 xfs_bmap_cancel(args->flist);
1057 return(error);
1058 }
1059
1060 /*
1061 * bmap_finish() may have committed the last trans
1062 * and started a new one. We need the inode to be
1063 * in all transactions.
1064 */
Christoph Hellwig898621d2010-06-24 11:36:58 +10001065 if (committed)
Christoph Hellwigddc34152011-09-19 15:00:54 +00001066 xfs_trans_ijoin(args->trans, dp, 0);
Dave Chinner1d9025e2012-06-22 18:50:14 +10001067 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068
1069 /*
1070 * Commit the remove and start the next trans in series.
1071 */
Niv Sardi322ff6b2008-08-13 16:05:49 +10001072 error = xfs_trans_roll(&args->trans, dp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073
1074 } else if (args->rmtblkno > 0) {
1075 /*
1076 * Added a "remote" value, just clear the incomplete flag.
1077 */
Dave Chinner517c2222013-04-24 18:58:55 +10001078 error = xfs_attr3_leaf_clearflag(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079 }
Dave Chinner517c2222013-04-24 18:58:55 +10001080 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081}
1082
1083/*
1084 * Remove a name from the leaf attribute list structure
1085 *
1086 * This leaf block cannot have a "remote" value, we only call this routine
1087 * if bmap_one_block() says there is only one block (ie: no remote blks).
1088 */
1089STATIC int
1090xfs_attr_leaf_removename(xfs_da_args_t *args)
1091{
1092 xfs_inode_t *dp;
Dave Chinner1d9025e2012-06-22 18:50:14 +10001093 struct xfs_buf *bp;
Nathan Scottd8cc8902005-11-02 10:34:53 +11001094 int error, committed, forkoff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095
Dave Chinner5a5881c2012-03-22 05:15:13 +00001096 trace_xfs_attr_leaf_removename(args);
1097
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098 /*
1099 * Remove the attribute.
1100 */
1101 dp = args->dp;
1102 args->blkno = 0;
Dave Chinner517c2222013-04-24 18:58:55 +10001103 error = xfs_attr3_leaf_read(args->trans, args->dp, args->blkno, -1, &bp);
Dave Chinnerad14c332012-11-12 22:54:16 +11001104 if (error)
1105 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106
Dave Chinner517c2222013-04-24 18:58:55 +10001107 error = xfs_attr3_leaf_lookup_int(bp, args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108 if (error == ENOATTR) {
Dave Chinner1d9025e2012-06-22 18:50:14 +10001109 xfs_trans_brelse(args->trans, bp);
Dave Chinner517c2222013-04-24 18:58:55 +10001110 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111 }
1112
Dave Chinner517c2222013-04-24 18:58:55 +10001113 xfs_attr3_leaf_remove(bp, args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114
1115 /*
1116 * If the result is small enough, shrink it all into the inode.
1117 */
Nathan Scottd8cc8902005-11-02 10:34:53 +11001118 if ((forkoff = xfs_attr_shortform_allfit(bp, dp))) {
Eric Sandeen9d87c312009-01-14 23:22:07 -06001119 xfs_bmap_init(args->flist, args->firstblock);
Dave Chinner517c2222013-04-24 18:58:55 +10001120 error = xfs_attr3_leaf_to_shortform(bp, args, forkoff);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121 /* bp is gone due to xfs_da_shrink_inode */
1122 if (!error) {
1123 error = xfs_bmap_finish(&args->trans, args->flist,
Eric Sandeenf7c99b62007-02-10 18:37:16 +11001124 &committed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125 }
1126 if (error) {
1127 ASSERT(committed);
1128 args->trans = NULL;
1129 xfs_bmap_cancel(args->flist);
Dave Chinner517c2222013-04-24 18:58:55 +10001130 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131 }
1132
1133 /*
1134 * bmap_finish() may have committed the last trans and started
1135 * a new one. We need the inode to be in all transactions.
1136 */
Christoph Hellwig898621d2010-06-24 11:36:58 +10001137 if (committed)
Christoph Hellwigddc34152011-09-19 15:00:54 +00001138 xfs_trans_ijoin(args->trans, dp, 0);
Dave Chinner1d9025e2012-06-22 18:50:14 +10001139 }
Dave Chinner517c2222013-04-24 18:58:55 +10001140 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141}
1142
1143/*
1144 * Look up a name in a leaf attribute list structure.
1145 *
1146 * This leaf block cannot have a "remote" value, we only call this routine
1147 * if bmap_one_block() says there is only one block (ie: no remote blks).
1148 */
Christoph Hellwigba0f32d2005-06-21 15:36:52 +10001149STATIC int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150xfs_attr_leaf_get(xfs_da_args_t *args)
1151{
Dave Chinner1d9025e2012-06-22 18:50:14 +10001152 struct xfs_buf *bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153 int error;
1154
Dave Chinneree732592012-11-12 22:53:53 +11001155 trace_xfs_attr_leaf_get(args);
1156
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157 args->blkno = 0;
Dave Chinner517c2222013-04-24 18:58:55 +10001158 error = xfs_attr3_leaf_read(args->trans, args->dp, args->blkno, -1, &bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159 if (error)
Dave Chinnerad14c332012-11-12 22:54:16 +11001160 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161
Dave Chinner517c2222013-04-24 18:58:55 +10001162 error = xfs_attr3_leaf_lookup_int(bp, args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163 if (error != EEXIST) {
Dave Chinner1d9025e2012-06-22 18:50:14 +10001164 xfs_trans_brelse(args->trans, bp);
Dave Chinner517c2222013-04-24 18:58:55 +10001165 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166 }
Dave Chinner517c2222013-04-24 18:58:55 +10001167 error = xfs_attr3_leaf_getvalue(bp, args);
Dave Chinner1d9025e2012-06-22 18:50:14 +10001168 xfs_trans_brelse(args->trans, bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169 if (!error && (args->rmtblkno > 0) && !(args->flags & ATTR_KERNOVAL)) {
1170 error = xfs_attr_rmtval_get(args);
1171 }
Dave Chinner517c2222013-04-24 18:58:55 +10001172 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173}
1174
1175/*
1176 * Copy out attribute entries for attr_list(), for leaf attribute lists.
1177 */
1178STATIC int
1179xfs_attr_leaf_list(xfs_attr_list_context_t *context)
1180{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181 int error;
Dave Chinner1d9025e2012-06-22 18:50:14 +10001182 struct xfs_buf *bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183
Dave Chinneree732592012-11-12 22:53:53 +11001184 trace_xfs_attr_leaf_list(context);
1185
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186 context->cursor->blkno = 0;
Dave Chinner517c2222013-04-24 18:58:55 +10001187 error = xfs_attr3_leaf_read(NULL, context->dp, 0, -1, &bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188 if (error)
Tim Shimmin726801b2006-09-28 11:01:37 +10001189 return XFS_ERROR(error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190
Dave Chinner517c2222013-04-24 18:58:55 +10001191 error = xfs_attr3_leaf_list_int(bp, context);
Dave Chinner1d9025e2012-06-22 18:50:14 +10001192 xfs_trans_brelse(NULL, bp);
Tim Shimmin726801b2006-09-28 11:01:37 +10001193 return XFS_ERROR(error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194}
1195
1196
1197/*========================================================================
1198 * External routines when attribute list size > XFS_LBSIZE(mp).
1199 *========================================================================*/
1200
1201/*
1202 * Add a name to a Btree-format attribute list.
1203 *
1204 * This will involve walking down the Btree, and may involve splitting
1205 * leaf nodes and even splitting intermediate nodes up to and including
1206 * the root node (a special case of an intermediate node).
1207 *
1208 * "Remote" attribute values confuse the issue and atomic rename operations
1209 * add a whole extra layer of confusion on top of that.
1210 */
1211STATIC int
1212xfs_attr_node_addname(xfs_da_args_t *args)
1213{
1214 xfs_da_state_t *state;
1215 xfs_da_state_blk_t *blk;
1216 xfs_inode_t *dp;
1217 xfs_mount_t *mp;
1218 int committed, retval, error;
1219
Dave Chinner5a5881c2012-03-22 05:15:13 +00001220 trace_xfs_attr_node_addname(args);
1221
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222 /*
1223 * Fill in bucket of arguments/results/context to carry around.
1224 */
1225 dp = args->dp;
1226 mp = dp->i_mount;
1227restart:
1228 state = xfs_da_state_alloc();
1229 state->args = args;
1230 state->mp = mp;
1231 state->blocksize = state->mp->m_sb.sb_blocksize;
1232 state->node_ents = state->mp->m_attr_node_ents;
1233
1234 /*
1235 * Search to see if name already exists, and get back a pointer
1236 * to where it should go.
1237 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001238 error = xfs_da3_node_lookup_int(state, &retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239 if (error)
1240 goto out;
1241 blk = &state->path.blk[ state->path.active-1 ];
1242 ASSERT(blk->magic == XFS_ATTR_LEAF_MAGIC);
1243 if ((args->flags & ATTR_REPLACE) && (retval == ENOATTR)) {
1244 goto out;
1245 } else if (retval == EEXIST) {
1246 if (args->flags & ATTR_CREATE)
1247 goto out;
Dave Chinner5a5881c2012-03-22 05:15:13 +00001248
1249 trace_xfs_attr_node_replace(args);
1250
Barry Naujok6a178102008-05-21 16:42:05 +10001251 args->op_flags |= XFS_DA_OP_RENAME; /* atomic rename op */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252 args->blkno2 = args->blkno; /* set 2nd entry info*/
1253 args->index2 = args->index;
1254 args->rmtblkno2 = args->rmtblkno;
1255 args->rmtblkcnt2 = args->rmtblkcnt;
1256 args->rmtblkno = 0;
1257 args->rmtblkcnt = 0;
1258 }
1259
Dave Chinner517c2222013-04-24 18:58:55 +10001260 retval = xfs_attr3_leaf_add(blk->bp, state->args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261 if (retval == ENOSPC) {
1262 if (state->path.active == 1) {
1263 /*
1264 * Its really a single leaf node, but it had
1265 * out-of-line values so it looked like it *might*
1266 * have been a b-tree.
1267 */
1268 xfs_da_state_free(state);
Eric Sandeen9d87c312009-01-14 23:22:07 -06001269 xfs_bmap_init(args->flist, args->firstblock);
Dave Chinner517c2222013-04-24 18:58:55 +10001270 error = xfs_attr3_leaf_to_node(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271 if (!error) {
1272 error = xfs_bmap_finish(&args->trans,
1273 args->flist,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274 &committed);
1275 }
1276 if (error) {
1277 ASSERT(committed);
1278 args->trans = NULL;
1279 xfs_bmap_cancel(args->flist);
1280 goto out;
1281 }
1282
1283 /*
1284 * bmap_finish() may have committed the last trans
1285 * and started a new one. We need the inode to be
1286 * in all transactions.
1287 */
Christoph Hellwig898621d2010-06-24 11:36:58 +10001288 if (committed)
Christoph Hellwigddc34152011-09-19 15:00:54 +00001289 xfs_trans_ijoin(args->trans, dp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290
1291 /*
1292 * Commit the node conversion and start the next
1293 * trans in the chain.
1294 */
Niv Sardi322ff6b2008-08-13 16:05:49 +10001295 error = xfs_trans_roll(&args->trans, dp);
1296 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297 goto out;
1298
1299 goto restart;
1300 }
1301
1302 /*
1303 * Split as many Btree elements as required.
1304 * This code tracks the new and old attr's location
1305 * in the index/blkno/rmtblkno/rmtblkcnt fields and
1306 * in the index2/blkno2/rmtblkno2/rmtblkcnt2 fields.
1307 */
Eric Sandeen9d87c312009-01-14 23:22:07 -06001308 xfs_bmap_init(args->flist, args->firstblock);
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001309 error = xfs_da3_split(state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310 if (!error) {
1311 error = xfs_bmap_finish(&args->trans, args->flist,
Eric Sandeenf7c99b62007-02-10 18:37:16 +11001312 &committed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313 }
1314 if (error) {
1315 ASSERT(committed);
1316 args->trans = NULL;
1317 xfs_bmap_cancel(args->flist);
1318 goto out;
1319 }
1320
1321 /*
1322 * bmap_finish() may have committed the last trans and started
1323 * a new one. We need the inode to be in all transactions.
1324 */
Christoph Hellwig898621d2010-06-24 11:36:58 +10001325 if (committed)
Christoph Hellwigddc34152011-09-19 15:00:54 +00001326 xfs_trans_ijoin(args->trans, dp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327 } else {
1328 /*
1329 * Addition succeeded, update Btree hashvals.
1330 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001331 xfs_da3_fixhashpath(state, &state->path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332 }
1333
1334 /*
1335 * Kill the state structure, we're done with it and need to
1336 * allow the buffers to come back later.
1337 */
1338 xfs_da_state_free(state);
1339 state = NULL;
1340
1341 /*
1342 * Commit the leaf addition or btree split and start the next
1343 * trans in the chain.
1344 */
Niv Sardi322ff6b2008-08-13 16:05:49 +10001345 error = xfs_trans_roll(&args->trans, dp);
1346 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347 goto out;
1348
1349 /*
1350 * If there was an out-of-line value, allocate the blocks we
1351 * identified for its storage and copy the value. This is done
1352 * after we create the attribute so that we don't overflow the
1353 * maximum size of a transaction and/or hit a deadlock.
1354 */
1355 if (args->rmtblkno > 0) {
1356 error = xfs_attr_rmtval_set(args);
1357 if (error)
1358 return(error);
1359 }
1360
1361 /*
1362 * If this is an atomic rename operation, we must "flip" the
1363 * incomplete flags on the "new" and "old" attribute/value pairs
1364 * so that one disappears and one appears atomically. Then we
1365 * must remove the "old" attribute/value pair.
1366 */
Barry Naujok6a178102008-05-21 16:42:05 +10001367 if (args->op_flags & XFS_DA_OP_RENAME) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368 /*
1369 * In a separate transaction, set the incomplete flag on the
1370 * "old" attr and clear the incomplete flag on the "new" attr.
1371 */
Dave Chinner517c2222013-04-24 18:58:55 +10001372 error = xfs_attr3_leaf_flipflags(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373 if (error)
1374 goto out;
1375
1376 /*
1377 * Dismantle the "old" attribute/value pair by removing
1378 * a "remote" value (if it exists).
1379 */
1380 args->index = args->index2;
1381 args->blkno = args->blkno2;
1382 args->rmtblkno = args->rmtblkno2;
1383 args->rmtblkcnt = args->rmtblkcnt2;
1384 if (args->rmtblkno) {
1385 error = xfs_attr_rmtval_remove(args);
1386 if (error)
1387 return(error);
1388 }
1389
1390 /*
1391 * Re-find the "old" attribute entry after any split ops.
1392 * The INCOMPLETE flag means that we will find the "old"
1393 * attr, not the "new" one.
1394 */
1395 args->flags |= XFS_ATTR_INCOMPLETE;
1396 state = xfs_da_state_alloc();
1397 state->args = args;
1398 state->mp = mp;
1399 state->blocksize = state->mp->m_sb.sb_blocksize;
1400 state->node_ents = state->mp->m_attr_node_ents;
1401 state->inleaf = 0;
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001402 error = xfs_da3_node_lookup_int(state, &retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403 if (error)
1404 goto out;
1405
1406 /*
1407 * Remove the name and update the hashvals in the tree.
1408 */
1409 blk = &state->path.blk[ state->path.active-1 ];
1410 ASSERT(blk->magic == XFS_ATTR_LEAF_MAGIC);
Dave Chinner517c2222013-04-24 18:58:55 +10001411 error = xfs_attr3_leaf_remove(blk->bp, args);
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001412 xfs_da3_fixhashpath(state, &state->path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413
1414 /*
1415 * Check to see if the tree needs to be collapsed.
1416 */
1417 if (retval && (state->path.active > 1)) {
Eric Sandeen9d87c312009-01-14 23:22:07 -06001418 xfs_bmap_init(args->flist, args->firstblock);
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001419 error = xfs_da3_join(state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420 if (!error) {
1421 error = xfs_bmap_finish(&args->trans,
1422 args->flist,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423 &committed);
1424 }
1425 if (error) {
1426 ASSERT(committed);
1427 args->trans = NULL;
1428 xfs_bmap_cancel(args->flist);
1429 goto out;
1430 }
1431
1432 /*
1433 * bmap_finish() may have committed the last trans
1434 * and started a new one. We need the inode to be
1435 * in all transactions.
1436 */
Christoph Hellwig898621d2010-06-24 11:36:58 +10001437 if (committed)
Christoph Hellwigddc34152011-09-19 15:00:54 +00001438 xfs_trans_ijoin(args->trans, dp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439 }
1440
1441 /*
1442 * Commit and start the next trans in the chain.
1443 */
Niv Sardi322ff6b2008-08-13 16:05:49 +10001444 error = xfs_trans_roll(&args->trans, dp);
1445 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446 goto out;
1447
1448 } else if (args->rmtblkno > 0) {
1449 /*
1450 * Added a "remote" value, just clear the incomplete flag.
1451 */
Dave Chinner517c2222013-04-24 18:58:55 +10001452 error = xfs_attr3_leaf_clearflag(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453 if (error)
1454 goto out;
1455 }
1456 retval = error = 0;
1457
1458out:
1459 if (state)
1460 xfs_da_state_free(state);
1461 if (error)
1462 return(error);
1463 return(retval);
1464}
1465
1466/*
1467 * Remove a name from a B-tree attribute list.
1468 *
1469 * This will involve walking down the Btree, and may involve joining
1470 * leaf nodes and even joining intermediate nodes up to and including
1471 * the root node (a special case of an intermediate node).
1472 */
1473STATIC int
1474xfs_attr_node_removename(xfs_da_args_t *args)
1475{
1476 xfs_da_state_t *state;
1477 xfs_da_state_blk_t *blk;
1478 xfs_inode_t *dp;
Dave Chinner1d9025e2012-06-22 18:50:14 +10001479 struct xfs_buf *bp;
Nathan Scottd8cc8902005-11-02 10:34:53 +11001480 int retval, error, committed, forkoff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481
Dave Chinner5a5881c2012-03-22 05:15:13 +00001482 trace_xfs_attr_node_removename(args);
1483
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484 /*
1485 * Tie a string around our finger to remind us where we are.
1486 */
1487 dp = args->dp;
1488 state = xfs_da_state_alloc();
1489 state->args = args;
1490 state->mp = dp->i_mount;
1491 state->blocksize = state->mp->m_sb.sb_blocksize;
1492 state->node_ents = state->mp->m_attr_node_ents;
1493
1494 /*
1495 * Search to see if name exists, and get back a pointer to it.
1496 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001497 error = xfs_da3_node_lookup_int(state, &retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498 if (error || (retval != EEXIST)) {
1499 if (error == 0)
1500 error = retval;
1501 goto out;
1502 }
1503
1504 /*
1505 * If there is an out-of-line value, de-allocate the blocks.
1506 * This is done before we remove the attribute so that we don't
1507 * overflow the maximum size of a transaction and/or hit a deadlock.
1508 */
1509 blk = &state->path.blk[ state->path.active-1 ];
1510 ASSERT(blk->bp != NULL);
1511 ASSERT(blk->magic == XFS_ATTR_LEAF_MAGIC);
1512 if (args->rmtblkno > 0) {
1513 /*
1514 * Fill in disk block numbers in the state structure
1515 * so that we can get the buffers back after we commit
1516 * several transactions in the following calls.
1517 */
1518 error = xfs_attr_fillstate(state);
1519 if (error)
1520 goto out;
1521
1522 /*
1523 * Mark the attribute as INCOMPLETE, then bunmapi() the
1524 * remote value.
1525 */
Dave Chinner517c2222013-04-24 18:58:55 +10001526 error = xfs_attr3_leaf_setflag(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527 if (error)
1528 goto out;
1529 error = xfs_attr_rmtval_remove(args);
1530 if (error)
1531 goto out;
1532
1533 /*
1534 * Refill the state structure with buffers, the prior calls
1535 * released our buffers.
1536 */
1537 error = xfs_attr_refillstate(state);
1538 if (error)
1539 goto out;
1540 }
1541
1542 /*
1543 * Remove the name and update the hashvals in the tree.
1544 */
1545 blk = &state->path.blk[ state->path.active-1 ];
1546 ASSERT(blk->magic == XFS_ATTR_LEAF_MAGIC);
Dave Chinner517c2222013-04-24 18:58:55 +10001547 retval = xfs_attr3_leaf_remove(blk->bp, args);
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001548 xfs_da3_fixhashpath(state, &state->path);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549
1550 /*
1551 * Check to see if the tree needs to be collapsed.
1552 */
1553 if (retval && (state->path.active > 1)) {
Eric Sandeen9d87c312009-01-14 23:22:07 -06001554 xfs_bmap_init(args->flist, args->firstblock);
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001555 error = xfs_da3_join(state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556 if (!error) {
1557 error = xfs_bmap_finish(&args->trans, args->flist,
Eric Sandeenf7c99b62007-02-10 18:37:16 +11001558 &committed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559 }
1560 if (error) {
1561 ASSERT(committed);
1562 args->trans = NULL;
1563 xfs_bmap_cancel(args->flist);
1564 goto out;
1565 }
1566
1567 /*
1568 * bmap_finish() may have committed the last trans and started
1569 * a new one. We need the inode to be in all transactions.
1570 */
Christoph Hellwig898621d2010-06-24 11:36:58 +10001571 if (committed)
Christoph Hellwigddc34152011-09-19 15:00:54 +00001572 xfs_trans_ijoin(args->trans, dp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573
1574 /*
1575 * Commit the Btree join operation and start a new trans.
1576 */
Niv Sardi322ff6b2008-08-13 16:05:49 +10001577 error = xfs_trans_roll(&args->trans, dp);
1578 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579 goto out;
1580 }
1581
1582 /*
1583 * If the result is small enough, push it all into the inode.
1584 */
1585 if (xfs_bmap_one_block(dp, XFS_ATTR_FORK)) {
1586 /*
1587 * Have to get rid of the copy of this dabuf in the state.
1588 */
1589 ASSERT(state->path.active == 1);
1590 ASSERT(state->path.blk[0].bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591 state->path.blk[0].bp = NULL;
1592
Dave Chinner517c2222013-04-24 18:58:55 +10001593 error = xfs_attr3_leaf_read(args->trans, args->dp, 0, -1, &bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594 if (error)
1595 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596
Nathan Scottd8cc8902005-11-02 10:34:53 +11001597 if ((forkoff = xfs_attr_shortform_allfit(bp, dp))) {
Eric Sandeen9d87c312009-01-14 23:22:07 -06001598 xfs_bmap_init(args->flist, args->firstblock);
Dave Chinner517c2222013-04-24 18:58:55 +10001599 error = xfs_attr3_leaf_to_shortform(bp, args, forkoff);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600 /* bp is gone due to xfs_da_shrink_inode */
1601 if (!error) {
1602 error = xfs_bmap_finish(&args->trans,
1603 args->flist,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604 &committed);
1605 }
1606 if (error) {
1607 ASSERT(committed);
1608 args->trans = NULL;
1609 xfs_bmap_cancel(args->flist);
1610 goto out;
1611 }
1612
1613 /*
1614 * bmap_finish() may have committed the last trans
1615 * and started a new one. We need the inode to be
1616 * in all transactions.
1617 */
Christoph Hellwig898621d2010-06-24 11:36:58 +10001618 if (committed)
Christoph Hellwigddc34152011-09-19 15:00:54 +00001619 xfs_trans_ijoin(args->trans, dp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620 } else
Dave Chinner1d9025e2012-06-22 18:50:14 +10001621 xfs_trans_brelse(args->trans, bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622 }
1623 error = 0;
1624
1625out:
1626 xfs_da_state_free(state);
1627 return(error);
1628}
1629
1630/*
1631 * Fill in the disk block numbers in the state structure for the buffers
1632 * that are attached to the state structure.
1633 * This is done so that we can quickly reattach ourselves to those buffers
Nathan Scottc41564b2006-03-29 08:55:14 +10001634 * after some set of transaction commits have released these buffers.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635 */
1636STATIC int
1637xfs_attr_fillstate(xfs_da_state_t *state)
1638{
1639 xfs_da_state_path_t *path;
1640 xfs_da_state_blk_t *blk;
1641 int level;
1642
Dave Chinneree732592012-11-12 22:53:53 +11001643 trace_xfs_attr_fillstate(state->args);
1644
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645 /*
1646 * Roll down the "path" in the state structure, storing the on-disk
1647 * block number for those buffers in the "path".
1648 */
1649 path = &state->path;
1650 ASSERT((path->active >= 0) && (path->active < XFS_DA_NODE_MAXDEPTH));
1651 for (blk = path->blk, level = 0; level < path->active; blk++, level++) {
1652 if (blk->bp) {
Dave Chinner1d9025e2012-06-22 18:50:14 +10001653 blk->disk_blkno = XFS_BUF_ADDR(blk->bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654 blk->bp = NULL;
1655 } else {
1656 blk->disk_blkno = 0;
1657 }
1658 }
1659
1660 /*
1661 * Roll down the "altpath" in the state structure, storing the on-disk
1662 * block number for those buffers in the "altpath".
1663 */
1664 path = &state->altpath;
1665 ASSERT((path->active >= 0) && (path->active < XFS_DA_NODE_MAXDEPTH));
1666 for (blk = path->blk, level = 0; level < path->active; blk++, level++) {
1667 if (blk->bp) {
Dave Chinner1d9025e2012-06-22 18:50:14 +10001668 blk->disk_blkno = XFS_BUF_ADDR(blk->bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669 blk->bp = NULL;
1670 } else {
1671 blk->disk_blkno = 0;
1672 }
1673 }
1674
1675 return(0);
1676}
1677
1678/*
1679 * Reattach the buffers to the state structure based on the disk block
1680 * numbers stored in the state structure.
Nathan Scottc41564b2006-03-29 08:55:14 +10001681 * This is done after some set of transaction commits have released those
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682 * buffers from our grip.
1683 */
1684STATIC int
1685xfs_attr_refillstate(xfs_da_state_t *state)
1686{
1687 xfs_da_state_path_t *path;
1688 xfs_da_state_blk_t *blk;
1689 int level, error;
1690
Dave Chinneree732592012-11-12 22:53:53 +11001691 trace_xfs_attr_refillstate(state->args);
1692
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693 /*
1694 * Roll down the "path" in the state structure, storing the on-disk
1695 * block number for those buffers in the "path".
1696 */
1697 path = &state->path;
1698 ASSERT((path->active >= 0) && (path->active < XFS_DA_NODE_MAXDEPTH));
1699 for (blk = path->blk, level = 0; level < path->active; blk++, level++) {
1700 if (blk->disk_blkno) {
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001701 error = xfs_da3_node_read(state->args->trans,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702 state->args->dp,
1703 blk->blkno, blk->disk_blkno,
Dave Chinnerd9392a42012-11-12 22:54:17 +11001704 &blk->bp, XFS_ATTR_FORK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705 if (error)
1706 return(error);
1707 } else {
1708 blk->bp = NULL;
1709 }
1710 }
1711
1712 /*
1713 * Roll down the "altpath" in the state structure, storing the on-disk
1714 * block number for those buffers in the "altpath".
1715 */
1716 path = &state->altpath;
1717 ASSERT((path->active >= 0) && (path->active < XFS_DA_NODE_MAXDEPTH));
1718 for (blk = path->blk, level = 0; level < path->active; blk++, level++) {
1719 if (blk->disk_blkno) {
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001720 error = xfs_da3_node_read(state->args->trans,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721 state->args->dp,
1722 blk->blkno, blk->disk_blkno,
Dave Chinnerd9392a42012-11-12 22:54:17 +11001723 &blk->bp, XFS_ATTR_FORK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724 if (error)
1725 return(error);
1726 } else {
1727 blk->bp = NULL;
1728 }
1729 }
1730
1731 return(0);
1732}
1733
1734/*
1735 * Look up a filename in a node attribute list.
1736 *
1737 * This routine gets called for any attribute fork that has more than one
1738 * block, ie: both true Btree attr lists and for single-leaf-blocks with
1739 * "remote" values taking up more blocks.
1740 */
Christoph Hellwigba0f32d2005-06-21 15:36:52 +10001741STATIC int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742xfs_attr_node_get(xfs_da_args_t *args)
1743{
1744 xfs_da_state_t *state;
1745 xfs_da_state_blk_t *blk;
1746 int error, retval;
1747 int i;
1748
Dave Chinneree732592012-11-12 22:53:53 +11001749 trace_xfs_attr_node_get(args);
1750
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751 state = xfs_da_state_alloc();
1752 state->args = args;
1753 state->mp = args->dp->i_mount;
1754 state->blocksize = state->mp->m_sb.sb_blocksize;
1755 state->node_ents = state->mp->m_attr_node_ents;
1756
1757 /*
1758 * Search to see if name exists, and get back a pointer to it.
1759 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001760 error = xfs_da3_node_lookup_int(state, &retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761 if (error) {
1762 retval = error;
1763 } else if (retval == EEXIST) {
1764 blk = &state->path.blk[ state->path.active-1 ];
1765 ASSERT(blk->bp != NULL);
1766 ASSERT(blk->magic == XFS_ATTR_LEAF_MAGIC);
1767
1768 /*
1769 * Get the value, local or "remote"
1770 */
Dave Chinner517c2222013-04-24 18:58:55 +10001771 retval = xfs_attr3_leaf_getvalue(blk->bp, args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772 if (!retval && (args->rmtblkno > 0)
1773 && !(args->flags & ATTR_KERNOVAL)) {
1774 retval = xfs_attr_rmtval_get(args);
1775 }
1776 }
1777
1778 /*
1779 * If not in a transaction, we have to release all the buffers.
1780 */
1781 for (i = 0; i < state->path.active; i++) {
Dave Chinner1d9025e2012-06-22 18:50:14 +10001782 xfs_trans_brelse(args->trans, state->path.blk[i].bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783 state->path.blk[i].bp = NULL;
1784 }
1785
1786 xfs_da_state_free(state);
1787 return(retval);
1788}
1789
1790STATIC int /* error */
1791xfs_attr_node_list(xfs_attr_list_context_t *context)
1792{
1793 attrlist_cursor_kern_t *cursor;
1794 xfs_attr_leafblock_t *leaf;
1795 xfs_da_intnode_t *node;
Dave Chinner517c2222013-04-24 18:58:55 +10001796 struct xfs_attr3_icleaf_hdr leafhdr;
1797 struct xfs_da3_icnode_hdr nodehdr;
1798 struct xfs_da_node_entry *btree;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799 int error, i;
Dave Chinner1d9025e2012-06-22 18:50:14 +10001800 struct xfs_buf *bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801
Dave Chinneree732592012-11-12 22:53:53 +11001802 trace_xfs_attr_node_list(context);
1803
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804 cursor = context->cursor;
1805 cursor->initted = 1;
1806
1807 /*
1808 * Do all sorts of validation on the passed-in cursor structure.
1809 * If anything is amiss, ignore the cursor and look up the hashval
1810 * starting from the btree root.
1811 */
1812 bp = NULL;
1813 if (cursor->blkno > 0) {
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001814 error = xfs_da3_node_read(NULL, context->dp, cursor->blkno, -1,
Dave Chinnerd9392a42012-11-12 22:54:17 +11001815 &bp, XFS_ATTR_FORK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816 if ((error != 0) && (error != EFSCORRUPTED))
1817 return(error);
1818 if (bp) {
Dave Chinner517c2222013-04-24 18:58:55 +10001819 struct xfs_attr_leaf_entry *entries;
1820
Dave Chinner1d9025e2012-06-22 18:50:14 +10001821 node = bp->b_addr;
Nathan Scott89da0542006-03-17 17:28:40 +11001822 switch (be16_to_cpu(node->hdr.info.magic)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823 case XFS_DA_NODE_MAGIC:
Dave Chinner517c2222013-04-24 18:58:55 +10001824 case XFS_DA3_NODE_MAGIC:
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001825 trace_xfs_attr_list_wrong_blk(context);
Dave Chinner1d9025e2012-06-22 18:50:14 +10001826 xfs_trans_brelse(NULL, bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827 bp = NULL;
1828 break;
1829 case XFS_ATTR_LEAF_MAGIC:
Dave Chinner517c2222013-04-24 18:58:55 +10001830 case XFS_ATTR3_LEAF_MAGIC:
Dave Chinner1d9025e2012-06-22 18:50:14 +10001831 leaf = bp->b_addr;
Dave Chinner517c2222013-04-24 18:58:55 +10001832 xfs_attr3_leaf_hdr_from_disk(&leafhdr, leaf);
1833 entries = xfs_attr3_leaf_entryp(leaf);
1834 if (cursor->hashval > be32_to_cpu(
1835 entries[leafhdr.count - 1].hashval)) {
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001836 trace_xfs_attr_list_wrong_blk(context);
Dave Chinner1d9025e2012-06-22 18:50:14 +10001837 xfs_trans_brelse(NULL, bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838 bp = NULL;
Dave Chinner517c2222013-04-24 18:58:55 +10001839 } else if (cursor->hashval <= be32_to_cpu(
1840 entries[0].hashval)) {
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001841 trace_xfs_attr_list_wrong_blk(context);
Dave Chinner1d9025e2012-06-22 18:50:14 +10001842 xfs_trans_brelse(NULL, bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843 bp = NULL;
1844 }
1845 break;
1846 default:
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001847 trace_xfs_attr_list_wrong_blk(context);
Dave Chinner1d9025e2012-06-22 18:50:14 +10001848 xfs_trans_brelse(NULL, bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849 bp = NULL;
1850 }
1851 }
1852 }
1853
1854 /*
1855 * We did not find what we expected given the cursor's contents,
1856 * so we start from the top and work down based on the hash value.
1857 * Note that start of node block is same as start of leaf block.
1858 */
1859 if (bp == NULL) {
1860 cursor->blkno = 0;
1861 for (;;) {
Dave Chinner517c2222013-04-24 18:58:55 +10001862 __uint16_t magic;
1863
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001864 error = xfs_da3_node_read(NULL, context->dp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865 cursor->blkno, -1, &bp,
Dave Chinnerd9392a42012-11-12 22:54:17 +11001866 XFS_ATTR_FORK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867 if (error)
1868 return(error);
Dave Chinner1d9025e2012-06-22 18:50:14 +10001869 node = bp->b_addr;
Dave Chinner517c2222013-04-24 18:58:55 +10001870 magic = be16_to_cpu(node->hdr.info.magic);
1871 if (magic == XFS_ATTR_LEAF_MAGIC ||
1872 magic == XFS_ATTR3_LEAF_MAGIC)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873 break;
Dave Chinner517c2222013-04-24 18:58:55 +10001874 if (magic != XFS_DA_NODE_MAGIC &&
1875 magic != XFS_DA3_NODE_MAGIC) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876 XFS_CORRUPTION_ERROR("xfs_attr_node_list(3)",
1877 XFS_ERRLEVEL_LOW,
1878 context->dp->i_mount,
1879 node);
Dave Chinner1d9025e2012-06-22 18:50:14 +10001880 xfs_trans_brelse(NULL, bp);
Dave Chinner517c2222013-04-24 18:58:55 +10001881 return XFS_ERROR(EFSCORRUPTED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882 }
Dave Chinner517c2222013-04-24 18:58:55 +10001883
1884 xfs_da3_node_hdr_from_disk(&nodehdr, node);
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001885 btree = xfs_da3_node_tree_p(node);
Dave Chinner517c2222013-04-24 18:58:55 +10001886 for (i = 0; i < nodehdr.count; btree++, i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887 if (cursor->hashval
Nathan Scott403432d2006-03-17 17:29:46 +11001888 <= be32_to_cpu(btree->hashval)) {
1889 cursor->blkno = be32_to_cpu(btree->before);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001890 trace_xfs_attr_list_node_descend(context,
1891 btree);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892 break;
1893 }
1894 }
Dave Chinner517c2222013-04-24 18:58:55 +10001895 if (i == nodehdr.count) {
Dave Chinner1d9025e2012-06-22 18:50:14 +10001896 xfs_trans_brelse(NULL, bp);
Dave Chinner517c2222013-04-24 18:58:55 +10001897 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898 }
Dave Chinner1d9025e2012-06-22 18:50:14 +10001899 xfs_trans_brelse(NULL, bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900 }
1901 }
1902 ASSERT(bp != NULL);
1903
1904 /*
1905 * Roll upward through the blocks, processing each leaf block in
1906 * order. As long as there is space in the result buffer, keep
1907 * adding the information.
1908 */
1909 for (;;) {
Dave Chinner1d9025e2012-06-22 18:50:14 +10001910 leaf = bp->b_addr;
Dave Chinner517c2222013-04-24 18:58:55 +10001911 error = xfs_attr3_leaf_list_int(bp, context);
Tim Shimmin726801b2006-09-28 11:01:37 +10001912 if (error) {
Dave Chinner1d9025e2012-06-22 18:50:14 +10001913 xfs_trans_brelse(NULL, bp);
Tim Shimmin726801b2006-09-28 11:01:37 +10001914 return error;
1915 }
Dave Chinner517c2222013-04-24 18:58:55 +10001916 xfs_attr3_leaf_hdr_from_disk(&leafhdr, leaf);
1917 if (context->seen_enough || leafhdr.forw == 0)
Tim Shimmin726801b2006-09-28 11:01:37 +10001918 break;
Dave Chinner517c2222013-04-24 18:58:55 +10001919 cursor->blkno = leafhdr.forw;
Dave Chinner1d9025e2012-06-22 18:50:14 +10001920 xfs_trans_brelse(NULL, bp);
Dave Chinner517c2222013-04-24 18:58:55 +10001921 error = xfs_attr3_leaf_read(NULL, context->dp, cursor->blkno, -1,
Dave Chinnerad14c332012-11-12 22:54:16 +11001922 &bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923 if (error)
Dave Chinnerad14c332012-11-12 22:54:16 +11001924 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001925 }
Dave Chinner1d9025e2012-06-22 18:50:14 +10001926 xfs_trans_brelse(NULL, bp);
Dave Chinner517c2222013-04-24 18:58:55 +10001927 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928}
1929
1930
1931/*========================================================================
1932 * External routines for manipulating out-of-line attribute values.
1933 *========================================================================*/
1934
1935/*
1936 * Read the value associated with an attribute from the out-of-line buffer
1937 * that we stored it in.
1938 */
Tim Shimmin726801b2006-09-28 11:01:37 +10001939int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001940xfs_attr_rmtval_get(xfs_da_args_t *args)
1941{
1942 xfs_bmbt_irec_t map[ATTR_RMTVALUE_MAPSIZE];
1943 xfs_mount_t *mp;
1944 xfs_daddr_t dblkno;
Dave Chinnera9273ca2010-01-20 10:47:48 +11001945 void *dst;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946 xfs_buf_t *bp;
1947 int nmap, error, tmp, valuelen, blkcnt, i;
1948 xfs_dablk_t lblkno;
1949
Dave Chinneree732592012-11-12 22:53:53 +11001950 trace_xfs_attr_rmtval_get(args);
1951
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952 ASSERT(!(args->flags & ATTR_KERNOVAL));
1953
1954 mp = args->dp->i_mount;
1955 dst = args->value;
1956 valuelen = args->valuelen;
1957 lblkno = args->rmtblkno;
1958 while (valuelen > 0) {
1959 nmap = ATTR_RMTVALUE_MAPSIZE;
Dave Chinner5c8ed202011-09-18 20:40:45 +00001960 error = xfs_bmapi_read(args->dp, (xfs_fileoff_t)lblkno,
1961 args->rmtblkcnt, map, &nmap,
1962 XFS_BMAPI_ATTRFORK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963 if (error)
1964 return(error);
1965 ASSERT(nmap >= 1);
1966
1967 for (i = 0; (i < nmap) && (valuelen > 0); i++) {
1968 ASSERT((map[i].br_startblock != DELAYSTARTBLOCK) &&
1969 (map[i].br_startblock != HOLESTARTBLOCK));
1970 dblkno = XFS_FSB_TO_DADDR(mp, map[i].br_startblock);
1971 blkcnt = XFS_FSB_TO_BB(mp, map[i].br_blockcount);
Dave Chinner7ca790a2012-04-23 15:58:55 +10001972 error = xfs_trans_read_buf(mp, NULL, mp->m_ddev_targp,
Dave Chinnerc3f8fc72012-11-12 22:54:01 +11001973 dblkno, blkcnt, 0, &bp, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974 if (error)
1975 return(error);
1976
Dave Chinner4e94b712012-04-23 15:58:51 +10001977 tmp = min_t(int, valuelen, BBTOB(bp->b_length));
Christoph Hellwig1a1a3e92010-10-06 18:41:18 +00001978 xfs_buf_iomove(bp, 0, tmp, dst, XBRW_READ);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001979 xfs_buf_relse(bp);
1980 dst += tmp;
1981 valuelen -= tmp;
1982
1983 lblkno += map[i].br_blockcount;
1984 }
1985 }
1986 ASSERT(valuelen == 0);
1987 return(0);
1988}
1989
1990/*
1991 * Write the value associated with an attribute into the out-of-line buffer
1992 * that we have defined for it.
1993 */
1994STATIC int
1995xfs_attr_rmtval_set(xfs_da_args_t *args)
1996{
1997 xfs_mount_t *mp;
1998 xfs_fileoff_t lfileoff;
1999 xfs_inode_t *dp;
2000 xfs_bmbt_irec_t map;
2001 xfs_daddr_t dblkno;
Dave Chinnera9273ca2010-01-20 10:47:48 +11002002 void *src;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003 xfs_buf_t *bp;
2004 xfs_dablk_t lblkno;
2005 int blkcnt, valuelen, nmap, error, tmp, committed;
2006
Dave Chinneree732592012-11-12 22:53:53 +11002007 trace_xfs_attr_rmtval_set(args);
2008
Linus Torvalds1da177e2005-04-16 15:20:36 -07002009 dp = args->dp;
2010 mp = dp->i_mount;
2011 src = args->value;
2012
2013 /*
2014 * Find a "hole" in the attribute address space large enough for
2015 * us to drop the new attribute's value into.
2016 */
2017 blkcnt = XFS_B_TO_FSB(mp, args->valuelen);
2018 lfileoff = 0;
2019 error = xfs_bmap_first_unused(args->trans, args->dp, blkcnt, &lfileoff,
2020 XFS_ATTR_FORK);
2021 if (error) {
2022 return(error);
2023 }
2024 args->rmtblkno = lblkno = (xfs_dablk_t)lfileoff;
2025 args->rmtblkcnt = blkcnt;
2026
2027 /*
2028 * Roll through the "value", allocating blocks on disk as required.
2029 */
2030 while (blkcnt > 0) {
2031 /*
2032 * Allocate a single extent, up to the size of the value.
2033 */
Eric Sandeen9d87c312009-01-14 23:22:07 -06002034 xfs_bmap_init(args->flist, args->firstblock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035 nmap = 1;
Dave Chinnerc0dc7822011-09-18 20:40:52 +00002036 error = xfs_bmapi_write(args->trans, dp, (xfs_fileoff_t)lblkno,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037 blkcnt,
Dave Chinnerc0dc7822011-09-18 20:40:52 +00002038 XFS_BMAPI_ATTRFORK | XFS_BMAPI_METADATA,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002039 args->firstblock, args->total, &map, &nmap,
Christoph Hellwigb4e91812010-06-23 18:11:15 +10002040 args->flist);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002041 if (!error) {
2042 error = xfs_bmap_finish(&args->trans, args->flist,
Eric Sandeenf7c99b62007-02-10 18:37:16 +11002043 &committed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044 }
2045 if (error) {
2046 ASSERT(committed);
2047 args->trans = NULL;
2048 xfs_bmap_cancel(args->flist);
2049 return(error);
2050 }
2051
2052 /*
2053 * bmap_finish() may have committed the last trans and started
2054 * a new one. We need the inode to be in all transactions.
2055 */
Christoph Hellwig898621d2010-06-24 11:36:58 +10002056 if (committed)
Christoph Hellwigddc34152011-09-19 15:00:54 +00002057 xfs_trans_ijoin(args->trans, dp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058
2059 ASSERT(nmap == 1);
2060 ASSERT((map.br_startblock != DELAYSTARTBLOCK) &&
2061 (map.br_startblock != HOLESTARTBLOCK));
2062 lblkno += map.br_blockcount;
2063 blkcnt -= map.br_blockcount;
2064
2065 /*
2066 * Start the next trans in the chain.
2067 */
Niv Sardi322ff6b2008-08-13 16:05:49 +10002068 error = xfs_trans_roll(&args->trans, dp);
2069 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070 return (error);
2071 }
2072
2073 /*
2074 * Roll through the "value", copying the attribute value to the
2075 * already-allocated blocks. Blocks are written synchronously
2076 * so that we can know they are all on disk before we turn off
2077 * the INCOMPLETE flag.
2078 */
2079 lblkno = args->rmtblkno;
2080 valuelen = args->valuelen;
2081 while (valuelen > 0) {
Dave Chinner4e94b712012-04-23 15:58:51 +10002082 int buflen;
2083
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084 /*
2085 * Try to remember where we decided to put the value.
2086 */
Eric Sandeen9d87c312009-01-14 23:22:07 -06002087 xfs_bmap_init(args->flist, args->firstblock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088 nmap = 1;
Dave Chinner5c8ed202011-09-18 20:40:45 +00002089 error = xfs_bmapi_read(dp, (xfs_fileoff_t)lblkno,
2090 args->rmtblkcnt, &map, &nmap,
2091 XFS_BMAPI_ATTRFORK);
2092 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093 return(error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094 ASSERT(nmap == 1);
2095 ASSERT((map.br_startblock != DELAYSTARTBLOCK) &&
2096 (map.br_startblock != HOLESTARTBLOCK));
2097
2098 dblkno = XFS_FSB_TO_DADDR(mp, map.br_startblock),
2099 blkcnt = XFS_FSB_TO_BB(mp, map.br_blockcount);
2100
Dave Chinneraa5c1582012-04-23 15:58:56 +10002101 bp = xfs_buf_get(mp->m_ddev_targp, dblkno, blkcnt, 0);
Chandra Seetharamanb5229502011-09-07 19:37:54 +00002102 if (!bp)
2103 return ENOMEM;
Dave Chinner4e94b712012-04-23 15:58:51 +10002104
2105 buflen = BBTOB(bp->b_length);
2106 tmp = min_t(int, valuelen, buflen);
Christoph Hellwig1a1a3e92010-10-06 18:41:18 +00002107 xfs_buf_iomove(bp, 0, tmp, src, XBRW_WRITE);
Dave Chinner4e94b712012-04-23 15:58:51 +10002108 if (tmp < buflen)
2109 xfs_buf_zero(bp, tmp, buflen - tmp);
2110
Christoph Hellwigc2b006c2011-08-23 08:28:07 +00002111 error = xfs_bwrite(bp); /* GROT: NOTE: synchronous write */
2112 xfs_buf_relse(bp);
2113 if (error)
2114 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002115 src += tmp;
2116 valuelen -= tmp;
2117
2118 lblkno += map.br_blockcount;
2119 }
2120 ASSERT(valuelen == 0);
2121 return(0);
2122}
2123
2124/*
2125 * Remove the value associated with an attribute by deleting the
2126 * out-of-line buffer that it is stored on.
2127 */
2128STATIC int
2129xfs_attr_rmtval_remove(xfs_da_args_t *args)
2130{
2131 xfs_mount_t *mp;
2132 xfs_bmbt_irec_t map;
2133 xfs_buf_t *bp;
2134 xfs_daddr_t dblkno;
2135 xfs_dablk_t lblkno;
2136 int valuelen, blkcnt, nmap, error, done, committed;
2137
Dave Chinneree732592012-11-12 22:53:53 +11002138 trace_xfs_attr_rmtval_remove(args);
2139
Linus Torvalds1da177e2005-04-16 15:20:36 -07002140 mp = args->dp->i_mount;
2141
2142 /*
2143 * Roll through the "value", invalidating the attribute value's
2144 * blocks.
2145 */
2146 lblkno = args->rmtblkno;
2147 valuelen = args->rmtblkcnt;
2148 while (valuelen > 0) {
2149 /*
2150 * Try to remember where we decided to put the value.
2151 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002152 nmap = 1;
Dave Chinner5c8ed202011-09-18 20:40:45 +00002153 error = xfs_bmapi_read(args->dp, (xfs_fileoff_t)lblkno,
2154 args->rmtblkcnt, &map, &nmap,
2155 XFS_BMAPI_ATTRFORK);
2156 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002157 return(error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002158 ASSERT(nmap == 1);
2159 ASSERT((map.br_startblock != DELAYSTARTBLOCK) &&
2160 (map.br_startblock != HOLESTARTBLOCK));
2161
2162 dblkno = XFS_FSB_TO_DADDR(mp, map.br_startblock),
2163 blkcnt = XFS_FSB_TO_BB(mp, map.br_blockcount);
2164
2165 /*
2166 * If the "remote" value is in the cache, remove it.
2167 */
Christoph Hellwig0cadda12010-01-19 09:56:44 +00002168 bp = xfs_incore(mp->m_ddev_targp, dblkno, blkcnt, XBF_TRYLOCK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002169 if (bp) {
Christoph Hellwigc867cb62011-10-10 16:52:46 +00002170 xfs_buf_stale(bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002171 xfs_buf_relse(bp);
2172 bp = NULL;
2173 }
2174
2175 valuelen -= map.br_blockcount;
2176
2177 lblkno += map.br_blockcount;
2178 }
2179
2180 /*
2181 * Keep de-allocating extents until the remote-value region is gone.
2182 */
2183 lblkno = args->rmtblkno;
2184 blkcnt = args->rmtblkcnt;
2185 done = 0;
2186 while (!done) {
Eric Sandeen9d87c312009-01-14 23:22:07 -06002187 xfs_bmap_init(args->flist, args->firstblock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002188 error = xfs_bunmapi(args->trans, args->dp, lblkno, blkcnt,
2189 XFS_BMAPI_ATTRFORK | XFS_BMAPI_METADATA,
Olaf Weber3e57ecf2006-06-09 14:48:12 +10002190 1, args->firstblock, args->flist,
Christoph Hellwigb4e91812010-06-23 18:11:15 +10002191 &done);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002192 if (!error) {
2193 error = xfs_bmap_finish(&args->trans, args->flist,
Eric Sandeenf7c99b62007-02-10 18:37:16 +11002194 &committed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002195 }
2196 if (error) {
2197 ASSERT(committed);
2198 args->trans = NULL;
2199 xfs_bmap_cancel(args->flist);
2200 return(error);
2201 }
2202
2203 /*
2204 * bmap_finish() may have committed the last trans and started
2205 * a new one. We need the inode to be in all transactions.
2206 */
Christoph Hellwig898621d2010-06-24 11:36:58 +10002207 if (committed)
Christoph Hellwigddc34152011-09-19 15:00:54 +00002208 xfs_trans_ijoin(args->trans, args->dp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002209
2210 /*
2211 * Close out trans and start the next one in the chain.
2212 */
Niv Sardi322ff6b2008-08-13 16:05:49 +10002213 error = xfs_trans_roll(&args->trans, args->dp);
2214 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002215 return (error);
2216 }
2217 return(0);
2218}