xfs: introduce xfs_sb.c for sharing with libxfs
[deliverable/linux.git] / fs / xfs / xfs_attr.c
CommitLineData
1da177e4 1/*
7b718769
NS
2 * Copyright (c) 2000-2005 Silicon Graphics, Inc.
3 * All Rights Reserved.
1da177e4 4 *
7b718769
NS
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License as
1da177e4
LT
7 * published by the Free Software Foundation.
8 *
7b718769
NS
9 * 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.
1da177e4 13 *
7b718769
NS
14 * 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
1da177e4 17 */
1da177e4 18#include "xfs.h"
a844f451 19#include "xfs_fs.h"
6ca1c906 20#include "xfs_format.h"
a844f451 21#include "xfs_bit.h"
1da177e4
LT
22#include "xfs_log.h"
23#include "xfs_trans.h"
d386b32b 24#include "xfs_trans_priv.h"
1da177e4
LT
25#include "xfs_sb.h"
26#include "xfs_ag.h"
1da177e4 27#include "xfs_mount.h"
a844f451 28#include "xfs_da_btree.h"
1da177e4 29#include "xfs_bmap_btree.h"
a844f451 30#include "xfs_attr_sf.h"
1da177e4 31#include "xfs_dinode.h"
1da177e4 32#include "xfs_inode.h"
a844f451 33#include "xfs_alloc.h"
a844f451 34#include "xfs_inode_item.h"
1da177e4 35#include "xfs_bmap.h"
1da177e4
LT
36#include "xfs_attr.h"
37#include "xfs_attr_leaf.h"
95920cd6 38#include "xfs_attr_remote.h"
1da177e4 39#include "xfs_error.h"
1da177e4 40#include "xfs_quota.h"
1da177e4 41#include "xfs_trans_space.h"
739bfb2a 42#include "xfs_vnodeops.h"
0b1b213f 43#include "xfs_trace.h"
1da177e4
LT
44
45/*
46 * xfs_attr.c
47 *
48 * Provide the external interfaces to manage attribute lists.
49 */
50
51/*========================================================================
52 * Function prototypes for the kernel.
53 *========================================================================*/
54
55/*
56 * Internal routines when attribute list fits inside the inode.
57 */
58STATIC int xfs_attr_shortform_addname(xfs_da_args_t *args);
59
60/*
61 * Internal routines when attribute list is one block.
62 */
ba0f32d4 63STATIC int xfs_attr_leaf_get(xfs_da_args_t *args);
1da177e4
LT
64STATIC int xfs_attr_leaf_addname(xfs_da_args_t *args);
65STATIC int xfs_attr_leaf_removename(xfs_da_args_t *args);
1da177e4
LT
66
67/*
68 * Internal routines when attribute list is more than one block.
69 */
ba0f32d4 70STATIC int xfs_attr_node_get(xfs_da_args_t *args);
1da177e4
LT
71STATIC int xfs_attr_node_addname(xfs_da_args_t *args);
72STATIC int xfs_attr_node_removename(xfs_da_args_t *args);
1da177e4
LT
73STATIC int xfs_attr_fillstate(xfs_da_state_t *state);
74STATIC int xfs_attr_refillstate(xfs_da_state_t *state);
75
1da177e4 76
e8b0ebaa
BN
77STATIC int
78xfs_attr_name_to_xname(
79 struct xfs_name *xname,
a9273ca5 80 const unsigned char *aname)
e8b0ebaa
BN
81{
82 if (!aname)
83 return EINVAL;
84 xname->name = aname;
a9273ca5 85 xname->len = strlen((char *)aname);
e8b0ebaa
BN
86 if (xname->len >= MAXNAMELEN)
87 return EFAULT; /* match IRIX behaviour */
88
89 return 0;
90}
1da177e4 91
abec5f2b 92int
caf8aabd
CH
93xfs_inode_hasattr(
94 struct xfs_inode *ip)
95{
96 if (!XFS_IFORK_Q(ip) ||
97 (ip->i_d.di_aformat == XFS_DINODE_FMT_EXTENTS &&
98 ip->i_d.di_anextents == 0))
99 return 0;
100 return 1;
101}
102
1da177e4
LT
103/*========================================================================
104 * Overall external interface routines.
105 *========================================================================*/
106
e82fa0c7
CH
107STATIC int
108xfs_attr_get_int(
109 struct xfs_inode *ip,
110 struct xfs_name *name,
a9273ca5 111 unsigned char *value,
e82fa0c7
CH
112 int *valuelenp,
113 int flags)
1da177e4
LT
114{
115 xfs_da_args_t args;
116 int error;
117
caf8aabd
CH
118 if (!xfs_inode_hasattr(ip))
119 return ENOATTR;
1da177e4 120
1da177e4
LT
121 /*
122 * Fill in the arg structure for this request.
123 */
124 memset((char *)&args, 0, sizeof(args));
e8b0ebaa
BN
125 args.name = name->name;
126 args.namelen = name->len;
1da177e4
LT
127 args.value = value;
128 args.valuelen = *valuelenp;
129 args.flags = flags;
130 args.hashval = xfs_da_hashname(args.name, args.namelen);
131 args.dp = ip;
132 args.whichfork = XFS_ATTR_FORK;
133
134 /*
135 * Decide on what work routines to call based on the inode size.
136 */
caf8aabd 137 if (ip->i_d.di_aformat == XFS_DINODE_FMT_LOCAL) {
1da177e4
LT
138 error = xfs_attr_shortform_getvalue(&args);
139 } else if (xfs_bmap_one_block(ip, XFS_ATTR_FORK)) {
140 error = xfs_attr_leaf_get(&args);
141 } else {
142 error = xfs_attr_node_get(&args);
143 }
144
145 /*
146 * Return the number of bytes in the value to the caller.
147 */
148 *valuelenp = args.valuelen;
149
150 if (error == EEXIST)
151 error = 0;
152 return(error);
153}
154
155int
993386c1
CH
156xfs_attr_get(
157 xfs_inode_t *ip,
a9273ca5
DC
158 const unsigned char *name,
159 unsigned char *value,
993386c1 160 int *valuelenp,
e8b0ebaa 161 int flags)
1da177e4 162{
e8b0ebaa
BN
163 int error;
164 struct xfs_name xname;
1da177e4
LT
165
166 XFS_STATS_INC(xs_attr_get);
167
1da177e4
LT
168 if (XFS_FORCED_SHUTDOWN(ip->i_mount))
169 return(EIO);
170
e8b0ebaa
BN
171 error = xfs_attr_name_to_xname(&xname, name);
172 if (error)
173 return error;
174
1da177e4 175 xfs_ilock(ip, XFS_ILOCK_SHARED);
e82fa0c7 176 error = xfs_attr_get_int(ip, &xname, value, valuelenp, flags);
1da177e4
LT
177 xfs_iunlock(ip, XFS_ILOCK_SHARED);
178 return(error);
179}
180
5e9da7b7
NS
181/*
182 * Calculate how many blocks we need for the new attribute,
183 */
5d77c0dc 184STATIC int
5e9da7b7
NS
185xfs_attr_calc_size(
186 struct xfs_inode *ip,
187 int namelen,
188 int valuelen,
189 int *local)
190{
191 struct xfs_mount *mp = ip->i_mount;
192 int size;
193 int nblks;
194
195 /*
196 * Determine space new attribute will use, and if it would be
197 * "local" or "remote" (note: local != inline).
198 */
199 size = xfs_attr_leaf_newentsize(namelen, valuelen,
200 mp->m_sb.sb_blocksize, local);
201
202 nblks = XFS_DAENTER_SPACE_RES(mp, XFS_ATTR_FORK);
203 if (*local) {
204 if (size > (mp->m_sb.sb_blocksize >> 1)) {
205 /* Double split possible */
206 nblks *= 2;
207 }
208 } else {
209 /*
210 * Out of line attribute, cannot double split, but
211 * make room for the attribute value itself.
212 */
213 uint dblocks = XFS_B_TO_FSB(mp, valuelen);
214 nblks += dblocks;
215 nblks += XFS_NEXTENTADD_SPACE_RES(mp, dblocks, XFS_ATTR_FORK);
216 }
217
218 return nblks;
219}
220
e8b0ebaa 221STATIC int
a9273ca5
DC
222xfs_attr_set_int(
223 struct xfs_inode *dp,
224 struct xfs_name *name,
225 unsigned char *value,
226 int valuelen,
227 int flags)
1da177e4
LT
228{
229 xfs_da_args_t args;
1da177e4
LT
230 xfs_fsblock_t firstblock;
231 xfs_bmap_free_t flist;
232 int error, err2, committed;
aa82daa0 233 xfs_mount_t *mp = dp->i_mount;
1da177e4 234 int rsvd = (flags & ATTR_ROOT) != 0;
5e9da7b7 235 int local;
1da177e4
LT
236
237 /*
238 * Attach the dquots to the inode.
239 */
7d095257
CH
240 error = xfs_qm_dqattach(dp, 0);
241 if (error)
242 return error;
1da177e4
LT
243
244 /*
245 * If the inode doesn't have an attribute fork, add one.
246 * (inode must not be locked when we call this routine)
247 */
248 if (XFS_IFORK_Q(dp) == 0) {
e5889e90 249 int sf_size = sizeof(xfs_attr_sf_hdr_t) +
e8b0ebaa 250 XFS_ATTR_SF_ENTSIZE_BYNAME(name->len, valuelen);
e5889e90
BN
251
252 if ((error = xfs_bmap_add_attrfork(dp, sf_size, rsvd)))
1da177e4
LT
253 return(error);
254 }
255
256 /*
257 * Fill in the arg structure for this request.
258 */
259 memset((char *)&args, 0, sizeof(args));
e8b0ebaa
BN
260 args.name = name->name;
261 args.namelen = name->len;
1da177e4
LT
262 args.value = value;
263 args.valuelen = valuelen;
264 args.flags = flags;
265 args.hashval = xfs_da_hashname(args.name, args.namelen);
266 args.dp = dp;
267 args.firstblock = &firstblock;
268 args.flist = &flist;
269 args.whichfork = XFS_ATTR_FORK;
6a178100 270 args.op_flags = XFS_DA_OP_ADDNAME | XFS_DA_OP_OKNOENT;
1da177e4 271
1da177e4 272 /* Size is now blocks for attribute data */
5e9da7b7 273 args.total = xfs_attr_calc_size(dp, name->len, valuelen, &local);
1da177e4
LT
274
275 /*
276 * Start our first transaction of the day.
277 *
278 * All future transactions during this code must be "chained" off
279 * this one via the trans_dup() call. All transactions will contain
280 * the inode, and the inode will always be marked with trans_ihold().
281 * Since the inode will be locked in all transactions, we must log
282 * the inode in every transaction to let it float upward through
283 * the log.
284 */
285 args.trans = xfs_trans_alloc(mp, XFS_TRANS_ATTR_SET);
286
287 /*
288 * Root fork attributes can use reserved data blocks for this
289 * operation if necessary
290 */
291
292 if (rsvd)
293 args.trans->t_flags |= XFS_TRANS_RESERVE;
294
a21cd503
JL
295 error = xfs_trans_reserve(args.trans, args.total,
296 XFS_ATTRSETM_LOG_RES(mp) +
297 XFS_ATTRSETRT_LOG_RES(mp) * args.total,
298 0, XFS_TRANS_PERM_LOG_RES,
299 XFS_ATTRSET_LOG_COUNT);
300 if (error) {
1da177e4
LT
301 xfs_trans_cancel(args.trans, 0);
302 return(error);
303 }
304 xfs_ilock(dp, XFS_ILOCK_EXCL);
305
7d095257 306 error = xfs_trans_reserve_quota_nblks(args.trans, dp, args.total, 0,
5e9da7b7
NS
307 rsvd ? XFS_QMOPT_RES_REGBLKS | XFS_QMOPT_FORCE_RES :
308 XFS_QMOPT_RES_REGBLKS);
1da177e4
LT
309 if (error) {
310 xfs_iunlock(dp, XFS_ILOCK_EXCL);
311 xfs_trans_cancel(args.trans, XFS_TRANS_RELEASE_LOG_RES);
312 return (error);
313 }
314
ddc3415a 315 xfs_trans_ijoin(args.trans, dp, 0);
1da177e4
LT
316
317 /*
c41564b5 318 * If the attribute list is non-existent or a shortform list,
1da177e4
LT
319 * upgrade it to a single-leaf-block attribute list.
320 */
321 if ((dp->i_d.di_aformat == XFS_DINODE_FMT_LOCAL) ||
322 ((dp->i_d.di_aformat == XFS_DINODE_FMT_EXTENTS) &&
323 (dp->i_d.di_anextents == 0))) {
324
325 /*
326 * Build initial attribute list (if required).
327 */
328 if (dp->i_d.di_aformat == XFS_DINODE_FMT_EXTENTS)
d8cc890d 329 xfs_attr_shortform_create(&args);
1da177e4
LT
330
331 /*
332 * Try to add the attr to the attribute list in
333 * the inode.
334 */
335 error = xfs_attr_shortform_addname(&args);
336 if (error != ENOSPC) {
337 /*
338 * Commit the shortform mods, and we're done.
339 * NOTE: this is also the error path (EEXIST, etc).
340 */
341 ASSERT(args.trans != NULL);
342
343 /*
344 * If this is a synchronous mount, make sure that
345 * the transaction goes to disk before returning
346 * to the user.
347 */
348 if (mp->m_flags & XFS_MOUNT_WSYNC) {
349 xfs_trans_set_sync(args.trans);
350 }
dcd79a14
DC
351
352 if (!error && (flags & ATTR_KERNOTIME) == 0) {
353 xfs_trans_ichgtime(args.trans, dp,
354 XFS_ICHGTIME_CHG);
355 }
1da177e4 356 err2 = xfs_trans_commit(args.trans,
1c72bf90 357 XFS_TRANS_RELEASE_LOG_RES);
1da177e4
LT
358 xfs_iunlock(dp, XFS_ILOCK_EXCL);
359
1da177e4
LT
360 return(error == 0 ? err2 : error);
361 }
362
363 /*
364 * It won't fit in the shortform, transform to a leaf block.
365 * GROT: another possible req'mt for a double-split btree op.
366 */
9d87c319 367 xfs_bmap_init(args.flist, args.firstblock);
1da177e4
LT
368 error = xfs_attr_shortform_to_leaf(&args);
369 if (!error) {
370 error = xfs_bmap_finish(&args.trans, args.flist,
f7c99b6f 371 &committed);
1da177e4
LT
372 }
373 if (error) {
374 ASSERT(committed);
375 args.trans = NULL;
376 xfs_bmap_cancel(&flist);
377 goto out;
378 }
379
380 /*
381 * bmap_finish() may have committed the last trans and started
382 * a new one. We need the inode to be in all transactions.
383 */
898621d5 384 if (committed)
ddc3415a 385 xfs_trans_ijoin(args.trans, dp, 0);
1da177e4
LT
386
387 /*
388 * Commit the leaf transformation. We'll need another (linked)
389 * transaction to add the new attribute to the leaf.
390 */
322ff6b8
NS
391
392 error = xfs_trans_roll(&args.trans, dp);
393 if (error)
1da177e4
LT
394 goto out;
395
396 }
397
398 if (xfs_bmap_one_block(dp, XFS_ATTR_FORK)) {
399 error = xfs_attr_leaf_addname(&args);
400 } else {
401 error = xfs_attr_node_addname(&args);
402 }
403 if (error) {
404 goto out;
405 }
406
407 /*
408 * If this is a synchronous mount, make sure that the
409 * transaction goes to disk before returning to the user.
410 */
411 if (mp->m_flags & XFS_MOUNT_WSYNC) {
412 xfs_trans_set_sync(args.trans);
413 }
414
dcd79a14
DC
415 if ((flags & ATTR_KERNOTIME) == 0)
416 xfs_trans_ichgtime(args.trans, dp, XFS_ICHGTIME_CHG);
417
1da177e4
LT
418 /*
419 * Commit the last in the sequence of transactions.
420 */
421 xfs_trans_log_inode(args.trans, dp, XFS_ILOG_CORE);
1c72bf90 422 error = xfs_trans_commit(args.trans, XFS_TRANS_RELEASE_LOG_RES);
1da177e4
LT
423 xfs_iunlock(dp, XFS_ILOCK_EXCL);
424
1da177e4
LT
425 return(error);
426
427out:
428 if (args.trans)
429 xfs_trans_cancel(args.trans,
430 XFS_TRANS_RELEASE_LOG_RES|XFS_TRANS_ABORT);
431 xfs_iunlock(dp, XFS_ILOCK_EXCL);
432 return(error);
433}
434
aa82daa0 435int
993386c1
CH
436xfs_attr_set(
437 xfs_inode_t *dp,
a9273ca5
DC
438 const unsigned char *name,
439 unsigned char *value,
993386c1
CH
440 int valuelen,
441 int flags)
1da177e4 442{
e8b0ebaa
BN
443 int error;
444 struct xfs_name xname;
1da177e4 445
aa82daa0 446 XFS_STATS_INC(xs_attr_set);
1da177e4 447
aa82daa0 448 if (XFS_FORCED_SHUTDOWN(dp->i_mount))
1da177e4
LT
449 return (EIO);
450
e8b0ebaa
BN
451 error = xfs_attr_name_to_xname(&xname, name);
452 if (error)
453 return error;
454
455 return xfs_attr_set_int(dp, &xname, value, valuelen, flags);
aa82daa0
NS
456}
457
458/*
459 * Generic handler routine to remove a name from an attribute list.
460 * Transitions attribute list from Btree to shortform as necessary.
461 */
e8b0ebaa
BN
462STATIC int
463xfs_attr_remove_int(xfs_inode_t *dp, struct xfs_name *name, int flags)
aa82daa0
NS
464{
465 xfs_da_args_t args;
466 xfs_fsblock_t firstblock;
467 xfs_bmap_free_t flist;
468 int error;
469 xfs_mount_t *mp = dp->i_mount;
470
1da177e4
LT
471 /*
472 * Fill in the arg structure for this request.
473 */
474 memset((char *)&args, 0, sizeof(args));
e8b0ebaa
BN
475 args.name = name->name;
476 args.namelen = name->len;
1da177e4
LT
477 args.flags = flags;
478 args.hashval = xfs_da_hashname(args.name, args.namelen);
479 args.dp = dp;
480 args.firstblock = &firstblock;
481 args.flist = &flist;
482 args.total = 0;
483 args.whichfork = XFS_ATTR_FORK;
484
4a338212
DC
485 /*
486 * we have no control over the attribute names that userspace passes us
487 * to remove, so we have to allow the name lookup prior to attribute
488 * removal to fail.
489 */
490 args.op_flags = XFS_DA_OP_OKNOENT;
491
1da177e4
LT
492 /*
493 * Attach the dquots to the inode.
494 */
7d095257
CH
495 error = xfs_qm_dqattach(dp, 0);
496 if (error)
497 return error;
1da177e4
LT
498
499 /*
500 * Start our first transaction of the day.
501 *
502 * All future transactions during this code must be "chained" off
503 * this one via the trans_dup() call. All transactions will contain
504 * the inode, and the inode will always be marked with trans_ihold().
505 * Since the inode will be locked in all transactions, we must log
506 * the inode in every transaction to let it float upward through
507 * the log.
508 */
509 args.trans = xfs_trans_alloc(mp, XFS_TRANS_ATTR_RM);
510
511 /*
512 * Root fork attributes can use reserved data blocks for this
513 * operation if necessary
514 */
515
516 if (flags & ATTR_ROOT)
517 args.trans->t_flags |= XFS_TRANS_RESERVE;
518
519 if ((error = xfs_trans_reserve(args.trans,
520 XFS_ATTRRM_SPACE_RES(mp),
521 XFS_ATTRRM_LOG_RES(mp),
522 0, XFS_TRANS_PERM_LOG_RES,
523 XFS_ATTRRM_LOG_COUNT))) {
524 xfs_trans_cancel(args.trans, 0);
525 return(error);
1da177e4
LT
526 }
527
528 xfs_ilock(dp, XFS_ILOCK_EXCL);
529 /*
530 * No need to make quota reservations here. We expect to release some
531 * blocks not allocate in the common case.
532 */
ddc3415a 533 xfs_trans_ijoin(args.trans, dp, 0);
1da177e4
LT
534
535 /*
536 * Decide on what work routines to call based on the inode size.
537 */
caf8aabd 538 if (!xfs_inode_hasattr(dp)) {
1da177e4
LT
539 error = XFS_ERROR(ENOATTR);
540 goto out;
541 }
542 if (dp->i_d.di_aformat == XFS_DINODE_FMT_LOCAL) {
543 ASSERT(dp->i_afp->if_flags & XFS_IFINLINE);
544 error = xfs_attr_shortform_remove(&args);
545 if (error) {
546 goto out;
547 }
548 } else if (xfs_bmap_one_block(dp, XFS_ATTR_FORK)) {
549 error = xfs_attr_leaf_removename(&args);
550 } else {
551 error = xfs_attr_node_removename(&args);
552 }
553 if (error) {
554 goto out;
555 }
556
557 /*
558 * If this is a synchronous mount, make sure that the
559 * transaction goes to disk before returning to the user.
560 */
561 if (mp->m_flags & XFS_MOUNT_WSYNC) {
562 xfs_trans_set_sync(args.trans);
563 }
564
dcd79a14
DC
565 if ((flags & ATTR_KERNOTIME) == 0)
566 xfs_trans_ichgtime(args.trans, dp, XFS_ICHGTIME_CHG);
567
1da177e4
LT
568 /*
569 * Commit the last in the sequence of transactions.
570 */
571 xfs_trans_log_inode(args.trans, dp, XFS_ILOG_CORE);
1c72bf90 572 error = xfs_trans_commit(args.trans, XFS_TRANS_RELEASE_LOG_RES);
1da177e4
LT
573 xfs_iunlock(dp, XFS_ILOCK_EXCL);
574
1da177e4
LT
575 return(error);
576
577out:
578 if (args.trans)
579 xfs_trans_cancel(args.trans,
580 XFS_TRANS_RELEASE_LOG_RES|XFS_TRANS_ABORT);
581 xfs_iunlock(dp, XFS_ILOCK_EXCL);
582 return(error);
583}
584
aa82daa0 585int
993386c1
CH
586xfs_attr_remove(
587 xfs_inode_t *dp,
a9273ca5 588 const unsigned char *name,
993386c1 589 int flags)
aa82daa0 590{
e8b0ebaa
BN
591 int error;
592 struct xfs_name xname;
aa82daa0
NS
593
594 XFS_STATS_INC(xs_attr_remove);
595
aa82daa0
NS
596 if (XFS_FORCED_SHUTDOWN(dp->i_mount))
597 return (EIO);
598
e8b0ebaa
BN
599 error = xfs_attr_name_to_xname(&xname, name);
600 if (error)
601 return error;
602
aa82daa0 603 xfs_ilock(dp, XFS_ILOCK_SHARED);
caf8aabd 604 if (!xfs_inode_hasattr(dp)) {
aa82daa0 605 xfs_iunlock(dp, XFS_ILOCK_SHARED);
caf8aabd 606 return XFS_ERROR(ENOATTR);
aa82daa0
NS
607 }
608 xfs_iunlock(dp, XFS_ILOCK_SHARED);
609
e8b0ebaa 610 return xfs_attr_remove_int(dp, &xname, flags);
aa82daa0
NS
611}
612
1da177e4
LT
613
614/*========================================================================
615 * External routines when attribute list is inside the inode
616 *========================================================================*/
617
618/*
619 * Add a name to the shortform attribute list structure
620 * This is the external routine.
621 */
622STATIC int
623xfs_attr_shortform_addname(xfs_da_args_t *args)
624{
d8cc890d 625 int newsize, forkoff, retval;
1da177e4 626
5a5881cd
DC
627 trace_xfs_attr_sf_addname(args);
628
1da177e4
LT
629 retval = xfs_attr_shortform_lookup(args);
630 if ((args->flags & ATTR_REPLACE) && (retval == ENOATTR)) {
631 return(retval);
632 } else if (retval == EEXIST) {
633 if (args->flags & ATTR_CREATE)
634 return(retval);
635 retval = xfs_attr_shortform_remove(args);
636 ASSERT(retval == 0);
637 }
638
d8cc890d
NS
639 if (args->namelen >= XFS_ATTR_SF_ENTSIZE_MAX ||
640 args->valuelen >= XFS_ATTR_SF_ENTSIZE_MAX)
641 return(XFS_ERROR(ENOSPC));
642
1da177e4
LT
643 newsize = XFS_ATTR_SF_TOTSIZE(args->dp);
644 newsize += XFS_ATTR_SF_ENTSIZE_BYNAME(args->namelen, args->valuelen);
d8cc890d
NS
645
646 forkoff = xfs_attr_shortform_bytesfit(args->dp, newsize);
647 if (!forkoff)
1da177e4 648 return(XFS_ERROR(ENOSPC));
d8cc890d
NS
649
650 xfs_attr_shortform_add(args, forkoff);
1da177e4
LT
651 return(0);
652}
653
654
655/*========================================================================
656 * External routines when attribute list is one block
657 *========================================================================*/
658
659/*
660 * Add a name to the leaf attribute list structure
661 *
662 * This leaf block cannot have a "remote" value, we only call this routine
663 * if bmap_one_block() says there is only one block (ie: no remote blks).
664 */
a8272ce0 665STATIC int
1da177e4
LT
666xfs_attr_leaf_addname(xfs_da_args_t *args)
667{
668 xfs_inode_t *dp;
1d9025e5 669 struct xfs_buf *bp;
d8cc890d 670 int retval, error, committed, forkoff;
1da177e4 671
5a5881cd
DC
672 trace_xfs_attr_leaf_addname(args);
673
1da177e4
LT
674 /*
675 * Read the (only) block in the attribute list in.
676 */
677 dp = args->dp;
678 args->blkno = 0;
517c2220 679 error = xfs_attr3_leaf_read(args->trans, args->dp, args->blkno, -1, &bp);
1da177e4 680 if (error)
ad14c33a 681 return error;
1da177e4
LT
682
683 /*
684 * Look up the given attribute in the leaf block. Figure out if
685 * the given flags produce an error or call for an atomic rename.
686 */
517c2220 687 retval = xfs_attr3_leaf_lookup_int(bp, args);
1da177e4 688 if ((args->flags & ATTR_REPLACE) && (retval == ENOATTR)) {
1d9025e5 689 xfs_trans_brelse(args->trans, bp);
517c2220 690 return retval;
1da177e4
LT
691 } else if (retval == EEXIST) {
692 if (args->flags & ATTR_CREATE) { /* pure create op */
1d9025e5 693 xfs_trans_brelse(args->trans, bp);
517c2220 694 return retval;
1da177e4 695 }
5a5881cd
DC
696
697 trace_xfs_attr_leaf_replace(args);
698
6a178100 699 args->op_flags |= XFS_DA_OP_RENAME; /* an atomic rename */
1da177e4
LT
700 args->blkno2 = args->blkno; /* set 2nd entry info*/
701 args->index2 = args->index;
702 args->rmtblkno2 = args->rmtblkno;
703 args->rmtblkcnt2 = args->rmtblkcnt;
704 }
705
706 /*
707 * Add the attribute to the leaf block, transitioning to a Btree
708 * if required.
709 */
517c2220 710 retval = xfs_attr3_leaf_add(bp, args);
1da177e4
LT
711 if (retval == ENOSPC) {
712 /*
713 * Promote the attribute list to the Btree format, then
714 * Commit that transaction so that the node_addname() call
715 * can manage its own transactions.
716 */
9d87c319 717 xfs_bmap_init(args->flist, args->firstblock);
517c2220 718 error = xfs_attr3_leaf_to_node(args);
1da177e4
LT
719 if (!error) {
720 error = xfs_bmap_finish(&args->trans, args->flist,
f7c99b6f 721 &committed);
1da177e4
LT
722 }
723 if (error) {
724 ASSERT(committed);
725 args->trans = NULL;
726 xfs_bmap_cancel(args->flist);
727 return(error);
728 }
729
730 /*
731 * bmap_finish() may have committed the last trans and started
732 * a new one. We need the inode to be in all transactions.
733 */
898621d5 734 if (committed)
ddc3415a 735 xfs_trans_ijoin(args->trans, dp, 0);
1da177e4
LT
736
737 /*
738 * Commit the current trans (including the inode) and start
739 * a new one.
740 */
322ff6b8
NS
741 error = xfs_trans_roll(&args->trans, dp);
742 if (error)
1da177e4
LT
743 return (error);
744
745 /*
746 * Fob the whole rest of the problem off on the Btree code.
747 */
748 error = xfs_attr_node_addname(args);
749 return(error);
750 }
751
752 /*
753 * Commit the transaction that added the attr name so that
754 * later routines can manage their own transactions.
755 */
322ff6b8
NS
756 error = xfs_trans_roll(&args->trans, dp);
757 if (error)
1da177e4
LT
758 return (error);
759
760 /*
761 * If there was an out-of-line value, allocate the blocks we
762 * identified for its storage and copy the value. This is done
763 * after we create the attribute so that we don't overflow the
764 * maximum size of a transaction and/or hit a deadlock.
765 */
766 if (args->rmtblkno > 0) {
767 error = xfs_attr_rmtval_set(args);
768 if (error)
769 return(error);
770 }
771
772 /*
773 * If this is an atomic rename operation, we must "flip" the
774 * incomplete flags on the "new" and "old" attribute/value pairs
775 * so that one disappears and one appears atomically. Then we
776 * must remove the "old" attribute/value pair.
777 */
6a178100 778 if (args->op_flags & XFS_DA_OP_RENAME) {
1da177e4
LT
779 /*
780 * In a separate transaction, set the incomplete flag on the
781 * "old" attr and clear the incomplete flag on the "new" attr.
782 */
517c2220 783 error = xfs_attr3_leaf_flipflags(args);
1da177e4
LT
784 if (error)
785 return(error);
786
787 /*
788 * Dismantle the "old" attribute/value pair by removing
789 * a "remote" value (if it exists).
790 */
791 args->index = args->index2;
792 args->blkno = args->blkno2;
793 args->rmtblkno = args->rmtblkno2;
794 args->rmtblkcnt = args->rmtblkcnt2;
795 if (args->rmtblkno) {
796 error = xfs_attr_rmtval_remove(args);
797 if (error)
798 return(error);
799 }
800
801 /*
802 * Read in the block containing the "old" attr, then
803 * remove the "old" attr from that block (neat, huh!)
804 */
517c2220 805 error = xfs_attr3_leaf_read(args->trans, args->dp, args->blkno,
ad14c33a 806 -1, &bp);
1da177e4 807 if (error)
ad14c33a
DC
808 return error;
809
517c2220 810 xfs_attr3_leaf_remove(bp, args);
1da177e4
LT
811
812 /*
813 * If the result is small enough, shrink it all into the inode.
814 */
d8cc890d 815 if ((forkoff = xfs_attr_shortform_allfit(bp, dp))) {
9d87c319 816 xfs_bmap_init(args->flist, args->firstblock);
517c2220 817 error = xfs_attr3_leaf_to_shortform(bp, args, forkoff);
1da177e4
LT
818 /* bp is gone due to xfs_da_shrink_inode */
819 if (!error) {
820 error = xfs_bmap_finish(&args->trans,
821 args->flist,
1da177e4
LT
822 &committed);
823 }
824 if (error) {
825 ASSERT(committed);
826 args->trans = NULL;
827 xfs_bmap_cancel(args->flist);
828 return(error);
829 }
830
831 /*
832 * bmap_finish() may have committed the last trans
833 * and started a new one. We need the inode to be
834 * in all transactions.
835 */
898621d5 836 if (committed)
ddc3415a 837 xfs_trans_ijoin(args->trans, dp, 0);
1d9025e5 838 }
1da177e4
LT
839
840 /*
841 * Commit the remove and start the next trans in series.
842 */
322ff6b8 843 error = xfs_trans_roll(&args->trans, dp);
1da177e4
LT
844
845 } else if (args->rmtblkno > 0) {
846 /*
847 * Added a "remote" value, just clear the incomplete flag.
848 */
517c2220 849 error = xfs_attr3_leaf_clearflag(args);
1da177e4 850 }
517c2220 851 return error;
1da177e4
LT
852}
853
854/*
855 * Remove a name from the leaf attribute list structure
856 *
857 * This leaf block cannot have a "remote" value, we only call this routine
858 * if bmap_one_block() says there is only one block (ie: no remote blks).
859 */
860STATIC int
861xfs_attr_leaf_removename(xfs_da_args_t *args)
862{
863 xfs_inode_t *dp;
1d9025e5 864 struct xfs_buf *bp;
d8cc890d 865 int error, committed, forkoff;
1da177e4 866
5a5881cd
DC
867 trace_xfs_attr_leaf_removename(args);
868
1da177e4
LT
869 /*
870 * Remove the attribute.
871 */
872 dp = args->dp;
873 args->blkno = 0;
517c2220 874 error = xfs_attr3_leaf_read(args->trans, args->dp, args->blkno, -1, &bp);
ad14c33a
DC
875 if (error)
876 return error;
1da177e4 877
517c2220 878 error = xfs_attr3_leaf_lookup_int(bp, args);
1da177e4 879 if (error == ENOATTR) {
1d9025e5 880 xfs_trans_brelse(args->trans, bp);
517c2220 881 return error;
1da177e4
LT
882 }
883
517c2220 884 xfs_attr3_leaf_remove(bp, args);
1da177e4
LT
885
886 /*
887 * If the result is small enough, shrink it all into the inode.
888 */
d8cc890d 889 if ((forkoff = xfs_attr_shortform_allfit(bp, dp))) {
9d87c319 890 xfs_bmap_init(args->flist, args->firstblock);
517c2220 891 error = xfs_attr3_leaf_to_shortform(bp, args, forkoff);
1da177e4
LT
892 /* bp is gone due to xfs_da_shrink_inode */
893 if (!error) {
894 error = xfs_bmap_finish(&args->trans, args->flist,
f7c99b6f 895 &committed);
1da177e4
LT
896 }
897 if (error) {
898 ASSERT(committed);
899 args->trans = NULL;
900 xfs_bmap_cancel(args->flist);
517c2220 901 return error;
1da177e4
LT
902 }
903
904 /*
905 * bmap_finish() may have committed the last trans and started
906 * a new one. We need the inode to be in all transactions.
907 */
898621d5 908 if (committed)
ddc3415a 909 xfs_trans_ijoin(args->trans, dp, 0);
1d9025e5 910 }
517c2220 911 return 0;
1da177e4
LT
912}
913
914/*
915 * Look up a name in a leaf attribute list structure.
916 *
917 * This leaf block cannot have a "remote" value, we only call this routine
918 * if bmap_one_block() says there is only one block (ie: no remote blks).
919 */
ba0f32d4 920STATIC int
1da177e4
LT
921xfs_attr_leaf_get(xfs_da_args_t *args)
922{
1d9025e5 923 struct xfs_buf *bp;
1da177e4
LT
924 int error;
925
ee73259b
DC
926 trace_xfs_attr_leaf_get(args);
927
1da177e4 928 args->blkno = 0;
517c2220 929 error = xfs_attr3_leaf_read(args->trans, args->dp, args->blkno, -1, &bp);
1da177e4 930 if (error)
ad14c33a 931 return error;
1da177e4 932
517c2220 933 error = xfs_attr3_leaf_lookup_int(bp, args);
1da177e4 934 if (error != EEXIST) {
1d9025e5 935 xfs_trans_brelse(args->trans, bp);
517c2220 936 return error;
1da177e4 937 }
517c2220 938 error = xfs_attr3_leaf_getvalue(bp, args);
1d9025e5 939 xfs_trans_brelse(args->trans, bp);
1da177e4
LT
940 if (!error && (args->rmtblkno > 0) && !(args->flags & ATTR_KERNOVAL)) {
941 error = xfs_attr_rmtval_get(args);
942 }
517c2220 943 return error;
1da177e4
LT
944}
945
1da177e4
LT
946/*========================================================================
947 * External routines when attribute list size > XFS_LBSIZE(mp).
948 *========================================================================*/
949
950/*
951 * Add a name to a Btree-format attribute list.
952 *
953 * This will involve walking down the Btree, and may involve splitting
954 * leaf nodes and even splitting intermediate nodes up to and including
955 * the root node (a special case of an intermediate node).
956 *
957 * "Remote" attribute values confuse the issue and atomic rename operations
958 * add a whole extra layer of confusion on top of that.
959 */
960STATIC int
961xfs_attr_node_addname(xfs_da_args_t *args)
962{
963 xfs_da_state_t *state;
964 xfs_da_state_blk_t *blk;
965 xfs_inode_t *dp;
966 xfs_mount_t *mp;
967 int committed, retval, error;
968
5a5881cd
DC
969 trace_xfs_attr_node_addname(args);
970
1da177e4
LT
971 /*
972 * Fill in bucket of arguments/results/context to carry around.
973 */
974 dp = args->dp;
975 mp = dp->i_mount;
976restart:
977 state = xfs_da_state_alloc();
978 state->args = args;
979 state->mp = mp;
980 state->blocksize = state->mp->m_sb.sb_blocksize;
981 state->node_ents = state->mp->m_attr_node_ents;
982
983 /*
984 * Search to see if name already exists, and get back a pointer
985 * to where it should go.
986 */
f5ea1100 987 error = xfs_da3_node_lookup_int(state, &retval);
1da177e4
LT
988 if (error)
989 goto out;
990 blk = &state->path.blk[ state->path.active-1 ];
991 ASSERT(blk->magic == XFS_ATTR_LEAF_MAGIC);
992 if ((args->flags & ATTR_REPLACE) && (retval == ENOATTR)) {
993 goto out;
994 } else if (retval == EEXIST) {
995 if (args->flags & ATTR_CREATE)
996 goto out;
5a5881cd
DC
997
998 trace_xfs_attr_node_replace(args);
999
6a178100 1000 args->op_flags |= XFS_DA_OP_RENAME; /* atomic rename op */
1da177e4
LT
1001 args->blkno2 = args->blkno; /* set 2nd entry info*/
1002 args->index2 = args->index;
1003 args->rmtblkno2 = args->rmtblkno;
1004 args->rmtblkcnt2 = args->rmtblkcnt;
1005 args->rmtblkno = 0;
1006 args->rmtblkcnt = 0;
1007 }
1008
517c2220 1009 retval = xfs_attr3_leaf_add(blk->bp, state->args);
1da177e4
LT
1010 if (retval == ENOSPC) {
1011 if (state->path.active == 1) {
1012 /*
1013 * Its really a single leaf node, but it had
1014 * out-of-line values so it looked like it *might*
1015 * have been a b-tree.
1016 */
1017 xfs_da_state_free(state);
9d87c319 1018 xfs_bmap_init(args->flist, args->firstblock);
517c2220 1019 error = xfs_attr3_leaf_to_node(args);
1da177e4
LT
1020 if (!error) {
1021 error = xfs_bmap_finish(&args->trans,
1022 args->flist,
1da177e4
LT
1023 &committed);
1024 }
1025 if (error) {
1026 ASSERT(committed);
1027 args->trans = NULL;
1028 xfs_bmap_cancel(args->flist);
1029 goto out;
1030 }
1031
1032 /*
1033 * bmap_finish() may have committed the last trans
1034 * and started a new one. We need the inode to be
1035 * in all transactions.
1036 */
898621d5 1037 if (committed)
ddc3415a 1038 xfs_trans_ijoin(args->trans, dp, 0);
1da177e4
LT
1039
1040 /*
1041 * Commit the node conversion and start the next
1042 * trans in the chain.
1043 */
322ff6b8
NS
1044 error = xfs_trans_roll(&args->trans, dp);
1045 if (error)
1da177e4
LT
1046 goto out;
1047
1048 goto restart;
1049 }
1050
1051 /*
1052 * Split as many Btree elements as required.
1053 * This code tracks the new and old attr's location
1054 * in the index/blkno/rmtblkno/rmtblkcnt fields and
1055 * in the index2/blkno2/rmtblkno2/rmtblkcnt2 fields.
1056 */
9d87c319 1057 xfs_bmap_init(args->flist, args->firstblock);
f5ea1100 1058 error = xfs_da3_split(state);
1da177e4
LT
1059 if (!error) {
1060 error = xfs_bmap_finish(&args->trans, args->flist,
f7c99b6f 1061 &committed);
1da177e4
LT
1062 }
1063 if (error) {
1064 ASSERT(committed);
1065 args->trans = NULL;
1066 xfs_bmap_cancel(args->flist);
1067 goto out;
1068 }
1069
1070 /*
1071 * bmap_finish() may have committed the last trans and started
1072 * a new one. We need the inode to be in all transactions.
1073 */
898621d5 1074 if (committed)
ddc3415a 1075 xfs_trans_ijoin(args->trans, dp, 0);
1da177e4
LT
1076 } else {
1077 /*
1078 * Addition succeeded, update Btree hashvals.
1079 */
f5ea1100 1080 xfs_da3_fixhashpath(state, &state->path);
1da177e4
LT
1081 }
1082
1083 /*
1084 * Kill the state structure, we're done with it and need to
1085 * allow the buffers to come back later.
1086 */
1087 xfs_da_state_free(state);
1088 state = NULL;
1089
1090 /*
1091 * Commit the leaf addition or btree split and start the next
1092 * trans in the chain.
1093 */
322ff6b8
NS
1094 error = xfs_trans_roll(&args->trans, dp);
1095 if (error)
1da177e4
LT
1096 goto out;
1097
1098 /*
1099 * If there was an out-of-line value, allocate the blocks we
1100 * identified for its storage and copy the value. This is done
1101 * after we create the attribute so that we don't overflow the
1102 * maximum size of a transaction and/or hit a deadlock.
1103 */
1104 if (args->rmtblkno > 0) {
1105 error = xfs_attr_rmtval_set(args);
1106 if (error)
1107 return(error);
1108 }
1109
1110 /*
1111 * If this is an atomic rename operation, we must "flip" the
1112 * incomplete flags on the "new" and "old" attribute/value pairs
1113 * so that one disappears and one appears atomically. Then we
1114 * must remove the "old" attribute/value pair.
1115 */
6a178100 1116 if (args->op_flags & XFS_DA_OP_RENAME) {
1da177e4
LT
1117 /*
1118 * In a separate transaction, set the incomplete flag on the
1119 * "old" attr and clear the incomplete flag on the "new" attr.
1120 */
517c2220 1121 error = xfs_attr3_leaf_flipflags(args);
1da177e4
LT
1122 if (error)
1123 goto out;
1124
1125 /*
1126 * Dismantle the "old" attribute/value pair by removing
1127 * a "remote" value (if it exists).
1128 */
1129 args->index = args->index2;
1130 args->blkno = args->blkno2;
1131 args->rmtblkno = args->rmtblkno2;
1132 args->rmtblkcnt = args->rmtblkcnt2;
1133 if (args->rmtblkno) {
1134 error = xfs_attr_rmtval_remove(args);
1135 if (error)
1136 return(error);
1137 }
1138
1139 /*
1140 * Re-find the "old" attribute entry after any split ops.
1141 * The INCOMPLETE flag means that we will find the "old"
1142 * attr, not the "new" one.
1143 */
1144 args->flags |= XFS_ATTR_INCOMPLETE;
1145 state = xfs_da_state_alloc();
1146 state->args = args;
1147 state->mp = mp;
1148 state->blocksize = state->mp->m_sb.sb_blocksize;
1149 state->node_ents = state->mp->m_attr_node_ents;
1150 state->inleaf = 0;
f5ea1100 1151 error = xfs_da3_node_lookup_int(state, &retval);
1da177e4
LT
1152 if (error)
1153 goto out;
1154
1155 /*
1156 * Remove the name and update the hashvals in the tree.
1157 */
1158 blk = &state->path.blk[ state->path.active-1 ];
1159 ASSERT(blk->magic == XFS_ATTR_LEAF_MAGIC);
517c2220 1160 error = xfs_attr3_leaf_remove(blk->bp, args);
f5ea1100 1161 xfs_da3_fixhashpath(state, &state->path);
1da177e4
LT
1162
1163 /*
1164 * Check to see if the tree needs to be collapsed.
1165 */
1166 if (retval && (state->path.active > 1)) {
9d87c319 1167 xfs_bmap_init(args->flist, args->firstblock);
f5ea1100 1168 error = xfs_da3_join(state);
1da177e4
LT
1169 if (!error) {
1170 error = xfs_bmap_finish(&args->trans,
1171 args->flist,
1da177e4
LT
1172 &committed);
1173 }
1174 if (error) {
1175 ASSERT(committed);
1176 args->trans = NULL;
1177 xfs_bmap_cancel(args->flist);
1178 goto out;
1179 }
1180
1181 /*
1182 * bmap_finish() may have committed the last trans
1183 * and started a new one. We need the inode to be
1184 * in all transactions.
1185 */
898621d5 1186 if (committed)
ddc3415a 1187 xfs_trans_ijoin(args->trans, dp, 0);
1da177e4
LT
1188 }
1189
1190 /*
1191 * Commit and start the next trans in the chain.
1192 */
322ff6b8
NS
1193 error = xfs_trans_roll(&args->trans, dp);
1194 if (error)
1da177e4
LT
1195 goto out;
1196
1197 } else if (args->rmtblkno > 0) {
1198 /*
1199 * Added a "remote" value, just clear the incomplete flag.
1200 */
517c2220 1201 error = xfs_attr3_leaf_clearflag(args);
1da177e4
LT
1202 if (error)
1203 goto out;
1204 }
1205 retval = error = 0;
1206
1207out:
1208 if (state)
1209 xfs_da_state_free(state);
1210 if (error)
1211 return(error);
1212 return(retval);
1213}
1214
1215/*
1216 * Remove a name from a B-tree attribute list.
1217 *
1218 * This will involve walking down the Btree, and may involve joining
1219 * leaf nodes and even joining intermediate nodes up to and including
1220 * the root node (a special case of an intermediate node).
1221 */
1222STATIC int
1223xfs_attr_node_removename(xfs_da_args_t *args)
1224{
1225 xfs_da_state_t *state;
1226 xfs_da_state_blk_t *blk;
1227 xfs_inode_t *dp;
1d9025e5 1228 struct xfs_buf *bp;
d8cc890d 1229 int retval, error, committed, forkoff;
1da177e4 1230
5a5881cd
DC
1231 trace_xfs_attr_node_removename(args);
1232
1da177e4
LT
1233 /*
1234 * Tie a string around our finger to remind us where we are.
1235 */
1236 dp = args->dp;
1237 state = xfs_da_state_alloc();
1238 state->args = args;
1239 state->mp = dp->i_mount;
1240 state->blocksize = state->mp->m_sb.sb_blocksize;
1241 state->node_ents = state->mp->m_attr_node_ents;
1242
1243 /*
1244 * Search to see if name exists, and get back a pointer to it.
1245 */
f5ea1100 1246 error = xfs_da3_node_lookup_int(state, &retval);
1da177e4
LT
1247 if (error || (retval != EEXIST)) {
1248 if (error == 0)
1249 error = retval;
1250 goto out;
1251 }
1252
1253 /*
1254 * If there is an out-of-line value, de-allocate the blocks.
1255 * This is done before we remove the attribute so that we don't
1256 * overflow the maximum size of a transaction and/or hit a deadlock.
1257 */
1258 blk = &state->path.blk[ state->path.active-1 ];
1259 ASSERT(blk->bp != NULL);
1260 ASSERT(blk->magic == XFS_ATTR_LEAF_MAGIC);
1261 if (args->rmtblkno > 0) {
1262 /*
1263 * Fill in disk block numbers in the state structure
1264 * so that we can get the buffers back after we commit
1265 * several transactions in the following calls.
1266 */
1267 error = xfs_attr_fillstate(state);
1268 if (error)
1269 goto out;
1270
1271 /*
1272 * Mark the attribute as INCOMPLETE, then bunmapi() the
1273 * remote value.
1274 */
517c2220 1275 error = xfs_attr3_leaf_setflag(args);
1da177e4
LT
1276 if (error)
1277 goto out;
1278 error = xfs_attr_rmtval_remove(args);
1279 if (error)
1280 goto out;
1281
1282 /*
1283 * Refill the state structure with buffers, the prior calls
1284 * released our buffers.
1285 */
1286 error = xfs_attr_refillstate(state);
1287 if (error)
1288 goto out;
1289 }
1290
1291 /*
1292 * Remove the name and update the hashvals in the tree.
1293 */
1294 blk = &state->path.blk[ state->path.active-1 ];
1295 ASSERT(blk->magic == XFS_ATTR_LEAF_MAGIC);
517c2220 1296 retval = xfs_attr3_leaf_remove(blk->bp, args);
f5ea1100 1297 xfs_da3_fixhashpath(state, &state->path);
1da177e4
LT
1298
1299 /*
1300 * Check to see if the tree needs to be collapsed.
1301 */
1302 if (retval && (state->path.active > 1)) {
9d87c319 1303 xfs_bmap_init(args->flist, args->firstblock);
f5ea1100 1304 error = xfs_da3_join(state);
1da177e4
LT
1305 if (!error) {
1306 error = xfs_bmap_finish(&args->trans, args->flist,
f7c99b6f 1307 &committed);
1da177e4
LT
1308 }
1309 if (error) {
1310 ASSERT(committed);
1311 args->trans = NULL;
1312 xfs_bmap_cancel(args->flist);
1313 goto out;
1314 }
1315
1316 /*
1317 * bmap_finish() may have committed the last trans and started
1318 * a new one. We need the inode to be in all transactions.
1319 */
898621d5 1320 if (committed)
ddc3415a 1321 xfs_trans_ijoin(args->trans, dp, 0);
1da177e4
LT
1322
1323 /*
1324 * Commit the Btree join operation and start a new trans.
1325 */
322ff6b8
NS
1326 error = xfs_trans_roll(&args->trans, dp);
1327 if (error)
1da177e4
LT
1328 goto out;
1329 }
1330
1331 /*
1332 * If the result is small enough, push it all into the inode.
1333 */
1334 if (xfs_bmap_one_block(dp, XFS_ATTR_FORK)) {
1335 /*
1336 * Have to get rid of the copy of this dabuf in the state.
1337 */
1338 ASSERT(state->path.active == 1);
1339 ASSERT(state->path.blk[0].bp);
1da177e4
LT
1340 state->path.blk[0].bp = NULL;
1341
517c2220 1342 error = xfs_attr3_leaf_read(args->trans, args->dp, 0, -1, &bp);
1da177e4
LT
1343 if (error)
1344 goto out;
1da177e4 1345
d8cc890d 1346 if ((forkoff = xfs_attr_shortform_allfit(bp, dp))) {
9d87c319 1347 xfs_bmap_init(args->flist, args->firstblock);
517c2220 1348 error = xfs_attr3_leaf_to_shortform(bp, args, forkoff);
1da177e4
LT
1349 /* bp is gone due to xfs_da_shrink_inode */
1350 if (!error) {
1351 error = xfs_bmap_finish(&args->trans,
1352 args->flist,
1da177e4
LT
1353 &committed);
1354 }
1355 if (error) {
1356 ASSERT(committed);
1357 args->trans = NULL;
1358 xfs_bmap_cancel(args->flist);
1359 goto out;
1360 }
1361
1362 /*
1363 * bmap_finish() may have committed the last trans
1364 * and started a new one. We need the inode to be
1365 * in all transactions.
1366 */
898621d5 1367 if (committed)
ddc3415a 1368 xfs_trans_ijoin(args->trans, dp, 0);
1da177e4 1369 } else
1d9025e5 1370 xfs_trans_brelse(args->trans, bp);
1da177e4
LT
1371 }
1372 error = 0;
1373
1374out:
1375 xfs_da_state_free(state);
1376 return(error);
1377}
1378
1379/*
1380 * Fill in the disk block numbers in the state structure for the buffers
1381 * that are attached to the state structure.
1382 * This is done so that we can quickly reattach ourselves to those buffers
c41564b5 1383 * after some set of transaction commits have released these buffers.
1da177e4
LT
1384 */
1385STATIC int
1386xfs_attr_fillstate(xfs_da_state_t *state)
1387{
1388 xfs_da_state_path_t *path;
1389 xfs_da_state_blk_t *blk;
1390 int level;
1391
ee73259b
DC
1392 trace_xfs_attr_fillstate(state->args);
1393
1da177e4
LT
1394 /*
1395 * Roll down the "path" in the state structure, storing the on-disk
1396 * block number for those buffers in the "path".
1397 */
1398 path = &state->path;
1399 ASSERT((path->active >= 0) && (path->active < XFS_DA_NODE_MAXDEPTH));
1400 for (blk = path->blk, level = 0; level < path->active; blk++, level++) {
1401 if (blk->bp) {
1d9025e5 1402 blk->disk_blkno = XFS_BUF_ADDR(blk->bp);
1da177e4
LT
1403 blk->bp = NULL;
1404 } else {
1405 blk->disk_blkno = 0;
1406 }
1407 }
1408
1409 /*
1410 * Roll down the "altpath" in the state structure, storing the on-disk
1411 * block number for those buffers in the "altpath".
1412 */
1413 path = &state->altpath;
1414 ASSERT((path->active >= 0) && (path->active < XFS_DA_NODE_MAXDEPTH));
1415 for (blk = path->blk, level = 0; level < path->active; blk++, level++) {
1416 if (blk->bp) {
1d9025e5 1417 blk->disk_blkno = XFS_BUF_ADDR(blk->bp);
1da177e4
LT
1418 blk->bp = NULL;
1419 } else {
1420 blk->disk_blkno = 0;
1421 }
1422 }
1423
1424 return(0);
1425}
1426
1427/*
1428 * Reattach the buffers to the state structure based on the disk block
1429 * numbers stored in the state structure.
c41564b5 1430 * This is done after some set of transaction commits have released those
1da177e4
LT
1431 * buffers from our grip.
1432 */
1433STATIC int
1434xfs_attr_refillstate(xfs_da_state_t *state)
1435{
1436 xfs_da_state_path_t *path;
1437 xfs_da_state_blk_t *blk;
1438 int level, error;
1439
ee73259b
DC
1440 trace_xfs_attr_refillstate(state->args);
1441
1da177e4
LT
1442 /*
1443 * Roll down the "path" in the state structure, storing the on-disk
1444 * block number for those buffers in the "path".
1445 */
1446 path = &state->path;
1447 ASSERT((path->active >= 0) && (path->active < XFS_DA_NODE_MAXDEPTH));
1448 for (blk = path->blk, level = 0; level < path->active; blk++, level++) {
1449 if (blk->disk_blkno) {
f5ea1100 1450 error = xfs_da3_node_read(state->args->trans,
1da177e4
LT
1451 state->args->dp,
1452 blk->blkno, blk->disk_blkno,
d9392a4b 1453 &blk->bp, XFS_ATTR_FORK);
1da177e4
LT
1454 if (error)
1455 return(error);
1456 } else {
1457 blk->bp = NULL;
1458 }
1459 }
1460
1461 /*
1462 * Roll down the "altpath" in the state structure, storing the on-disk
1463 * block number for those buffers in the "altpath".
1464 */
1465 path = &state->altpath;
1466 ASSERT((path->active >= 0) && (path->active < XFS_DA_NODE_MAXDEPTH));
1467 for (blk = path->blk, level = 0; level < path->active; blk++, level++) {
1468 if (blk->disk_blkno) {
f5ea1100 1469 error = xfs_da3_node_read(state->args->trans,
1da177e4
LT
1470 state->args->dp,
1471 blk->blkno, blk->disk_blkno,
d9392a4b 1472 &blk->bp, XFS_ATTR_FORK);
1da177e4
LT
1473 if (error)
1474 return(error);
1475 } else {
1476 blk->bp = NULL;
1477 }
1478 }
1479
1480 return(0);
1481}
1482
1483/*
1484 * Look up a filename in a node attribute list.
1485 *
1486 * This routine gets called for any attribute fork that has more than one
1487 * block, ie: both true Btree attr lists and for single-leaf-blocks with
1488 * "remote" values taking up more blocks.
1489 */
ba0f32d4 1490STATIC int
1da177e4
LT
1491xfs_attr_node_get(xfs_da_args_t *args)
1492{
1493 xfs_da_state_t *state;
1494 xfs_da_state_blk_t *blk;
1495 int error, retval;
1496 int i;
1497
ee73259b
DC
1498 trace_xfs_attr_node_get(args);
1499
1da177e4
LT
1500 state = xfs_da_state_alloc();
1501 state->args = args;
1502 state->mp = args->dp->i_mount;
1503 state->blocksize = state->mp->m_sb.sb_blocksize;
1504 state->node_ents = state->mp->m_attr_node_ents;
1505
1506 /*
1507 * Search to see if name exists, and get back a pointer to it.
1508 */
f5ea1100 1509 error = xfs_da3_node_lookup_int(state, &retval);
1da177e4
LT
1510 if (error) {
1511 retval = error;
1512 } else if (retval == EEXIST) {
1513 blk = &state->path.blk[ state->path.active-1 ];
1514 ASSERT(blk->bp != NULL);
1515 ASSERT(blk->magic == XFS_ATTR_LEAF_MAGIC);
1516
1517 /*
1518 * Get the value, local or "remote"
1519 */
517c2220 1520 retval = xfs_attr3_leaf_getvalue(blk->bp, args);
1da177e4
LT
1521 if (!retval && (args->rmtblkno > 0)
1522 && !(args->flags & ATTR_KERNOVAL)) {
1523 retval = xfs_attr_rmtval_get(args);
1524 }
1525 }
1526
1527 /*
1528 * If not in a transaction, we have to release all the buffers.
1529 */
1530 for (i = 0; i < state->path.active; i++) {
1d9025e5 1531 xfs_trans_brelse(args->trans, state->path.blk[i].bp);
1da177e4
LT
1532 state->path.blk[i].bp = NULL;
1533 }
1534
1535 xfs_da_state_free(state);
1536 return(retval);
1537}
This page took 0.663428 seconds and 5 git commands to generate.