USB: serial: ftdi additional IDs
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / fs / xfs / xfs_attr.c
blob1e5d97f86ea819493b9acfd1584696fc7ce5d733
1 /*
2 * Copyright (c) 2000-2005 Silicon Graphics, Inc.
3 * All Rights Reserved.
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
7 * published by the Free Software Foundation.
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.
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
19 #include "xfs.h"
20 #include "xfs_fs.h"
21 #include "xfs_types.h"
22 #include "xfs_bit.h"
23 #include "xfs_log.h"
24 #include "xfs_inum.h"
25 #include "xfs_trans.h"
26 #include "xfs_sb.h"
27 #include "xfs_ag.h"
28 #include "xfs_mount.h"
29 #include "xfs_da_btree.h"
30 #include "xfs_bmap_btree.h"
31 #include "xfs_attr_sf.h"
32 #include "xfs_dinode.h"
33 #include "xfs_inode.h"
34 #include "xfs_alloc.h"
35 #include "xfs_inode_item.h"
36 #include "xfs_bmap.h"
37 #include "xfs_attr.h"
38 #include "xfs_attr_leaf.h"
39 #include "xfs_error.h"
40 #include "xfs_quota.h"
41 #include "xfs_trans_space.h"
42 #include "xfs_rw.h"
43 #include "xfs_vnodeops.h"
44 #include "xfs_trace.h"
47 * xfs_attr.c
49 * Provide the external interfaces to manage attribute lists.
52 /*========================================================================
53 * Function prototypes for the kernel.
54 *========================================================================*/
57 * Internal routines when attribute list fits inside the inode.
59 STATIC int xfs_attr_shortform_addname(xfs_da_args_t *args);
62 * Internal routines when attribute list is one block.
64 STATIC int xfs_attr_leaf_get(xfs_da_args_t *args);
65 STATIC int xfs_attr_leaf_addname(xfs_da_args_t *args);
66 STATIC int xfs_attr_leaf_removename(xfs_da_args_t *args);
67 STATIC int xfs_attr_leaf_list(xfs_attr_list_context_t *context);
70 * Internal routines when attribute list is more than one block.
72 STATIC int xfs_attr_node_get(xfs_da_args_t *args);
73 STATIC int xfs_attr_node_addname(xfs_da_args_t *args);
74 STATIC int xfs_attr_node_removename(xfs_da_args_t *args);
75 STATIC int xfs_attr_node_list(xfs_attr_list_context_t *context);
76 STATIC int xfs_attr_fillstate(xfs_da_state_t *state);
77 STATIC int xfs_attr_refillstate(xfs_da_state_t *state);
80 * Routines to manipulate out-of-line attribute values.
82 STATIC int xfs_attr_rmtval_set(xfs_da_args_t *args);
83 STATIC int xfs_attr_rmtval_remove(xfs_da_args_t *args);
85 #define ATTR_RMTVALUE_MAPSIZE 1 /* # of map entries at once */
87 STATIC int
88 xfs_attr_name_to_xname(
89 struct xfs_name *xname,
90 const unsigned char *aname)
92 if (!aname)
93 return EINVAL;
94 xname->name = aname;
95 xname->len = strlen((char *)aname);
96 if (xname->len >= MAXNAMELEN)
97 return EFAULT; /* match IRIX behaviour */
99 return 0;
102 STATIC int
103 xfs_inode_hasattr(
104 struct xfs_inode *ip)
106 if (!XFS_IFORK_Q(ip) ||
107 (ip->i_d.di_aformat == XFS_DINODE_FMT_EXTENTS &&
108 ip->i_d.di_anextents == 0))
109 return 0;
110 return 1;
113 /*========================================================================
114 * Overall external interface routines.
115 *========================================================================*/
117 STATIC int
118 xfs_attr_get_int(
119 struct xfs_inode *ip,
120 struct xfs_name *name,
121 unsigned char *value,
122 int *valuelenp,
123 int flags)
125 xfs_da_args_t args;
126 int error;
128 if (!xfs_inode_hasattr(ip))
129 return ENOATTR;
132 * Fill in the arg structure for this request.
134 memset((char *)&args, 0, sizeof(args));
135 args.name = name->name;
136 args.namelen = name->len;
137 args.value = value;
138 args.valuelen = *valuelenp;
139 args.flags = flags;
140 args.hashval = xfs_da_hashname(args.name, args.namelen);
141 args.dp = ip;
142 args.whichfork = XFS_ATTR_FORK;
145 * Decide on what work routines to call based on the inode size.
147 if (ip->i_d.di_aformat == XFS_DINODE_FMT_LOCAL) {
148 error = xfs_attr_shortform_getvalue(&args);
149 } else if (xfs_bmap_one_block(ip, XFS_ATTR_FORK)) {
150 error = xfs_attr_leaf_get(&args);
151 } else {
152 error = xfs_attr_node_get(&args);
156 * Return the number of bytes in the value to the caller.
158 *valuelenp = args.valuelen;
160 if (error == EEXIST)
161 error = 0;
162 return(error);
166 xfs_attr_get(
167 xfs_inode_t *ip,
168 const unsigned char *name,
169 unsigned char *value,
170 int *valuelenp,
171 int flags)
173 int error;
174 struct xfs_name xname;
176 XFS_STATS_INC(xs_attr_get);
178 if (XFS_FORCED_SHUTDOWN(ip->i_mount))
179 return(EIO);
181 error = xfs_attr_name_to_xname(&xname, name);
182 if (error)
183 return error;
185 xfs_ilock(ip, XFS_ILOCK_SHARED);
186 error = xfs_attr_get_int(ip, &xname, value, valuelenp, flags);
187 xfs_iunlock(ip, XFS_ILOCK_SHARED);
188 return(error);
192 * Calculate how many blocks we need for the new attribute,
194 STATIC int
195 xfs_attr_calc_size(
196 struct xfs_inode *ip,
197 int namelen,
198 int valuelen,
199 int *local)
201 struct xfs_mount *mp = ip->i_mount;
202 int size;
203 int nblks;
206 * Determine space new attribute will use, and if it would be
207 * "local" or "remote" (note: local != inline).
209 size = xfs_attr_leaf_newentsize(namelen, valuelen,
210 mp->m_sb.sb_blocksize, local);
212 nblks = XFS_DAENTER_SPACE_RES(mp, XFS_ATTR_FORK);
213 if (*local) {
214 if (size > (mp->m_sb.sb_blocksize >> 1)) {
215 /* Double split possible */
216 nblks *= 2;
218 } else {
220 * Out of line attribute, cannot double split, but
221 * make room for the attribute value itself.
223 uint dblocks = XFS_B_TO_FSB(mp, valuelen);
224 nblks += dblocks;
225 nblks += XFS_NEXTENTADD_SPACE_RES(mp, dblocks, XFS_ATTR_FORK);
228 return nblks;
231 STATIC int
232 xfs_attr_set_int(
233 struct xfs_inode *dp,
234 struct xfs_name *name,
235 unsigned char *value,
236 int valuelen,
237 int flags)
239 xfs_da_args_t args;
240 xfs_fsblock_t firstblock;
241 xfs_bmap_free_t flist;
242 int error, err2, committed;
243 xfs_mount_t *mp = dp->i_mount;
244 int rsvd = (flags & ATTR_ROOT) != 0;
245 int local;
248 * Attach the dquots to the inode.
250 error = xfs_qm_dqattach(dp, 0);
251 if (error)
252 return error;
255 * If the inode doesn't have an attribute fork, add one.
256 * (inode must not be locked when we call this routine)
258 if (XFS_IFORK_Q(dp) == 0) {
259 int sf_size = sizeof(xfs_attr_sf_hdr_t) +
260 XFS_ATTR_SF_ENTSIZE_BYNAME(name->len, valuelen);
262 if ((error = xfs_bmap_add_attrfork(dp, sf_size, rsvd)))
263 return(error);
267 * Fill in the arg structure for this request.
269 memset((char *)&args, 0, sizeof(args));
270 args.name = name->name;
271 args.namelen = name->len;
272 args.value = value;
273 args.valuelen = valuelen;
274 args.flags = flags;
275 args.hashval = xfs_da_hashname(args.name, args.namelen);
276 args.dp = dp;
277 args.firstblock = &firstblock;
278 args.flist = &flist;
279 args.whichfork = XFS_ATTR_FORK;
280 args.op_flags = XFS_DA_OP_ADDNAME | XFS_DA_OP_OKNOENT;
282 /* Size is now blocks for attribute data */
283 args.total = xfs_attr_calc_size(dp, name->len, valuelen, &local);
286 * Start our first transaction of the day.
288 * All future transactions during this code must be "chained" off
289 * this one via the trans_dup() call. All transactions will contain
290 * the inode, and the inode will always be marked with trans_ihold().
291 * Since the inode will be locked in all transactions, we must log
292 * the inode in every transaction to let it float upward through
293 * the log.
295 args.trans = xfs_trans_alloc(mp, XFS_TRANS_ATTR_SET);
298 * Root fork attributes can use reserved data blocks for this
299 * operation if necessary
302 if (rsvd)
303 args.trans->t_flags |= XFS_TRANS_RESERVE;
305 if ((error = xfs_trans_reserve(args.trans, args.total,
306 XFS_ATTRSET_LOG_RES(mp, args.total), 0,
307 XFS_TRANS_PERM_LOG_RES, XFS_ATTRSET_LOG_COUNT))) {
308 xfs_trans_cancel(args.trans, 0);
309 return(error);
311 xfs_ilock(dp, XFS_ILOCK_EXCL);
313 error = xfs_trans_reserve_quota_nblks(args.trans, dp, args.total, 0,
314 rsvd ? XFS_QMOPT_RES_REGBLKS | XFS_QMOPT_FORCE_RES :
315 XFS_QMOPT_RES_REGBLKS);
316 if (error) {
317 xfs_iunlock(dp, XFS_ILOCK_EXCL);
318 xfs_trans_cancel(args.trans, XFS_TRANS_RELEASE_LOG_RES);
319 return (error);
322 xfs_trans_ijoin(args.trans, dp, 0);
325 * If the attribute list is non-existent or a shortform list,
326 * upgrade it to a single-leaf-block attribute list.
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))) {
333 * Build initial attribute list (if required).
335 if (dp->i_d.di_aformat == XFS_DINODE_FMT_EXTENTS)
336 xfs_attr_shortform_create(&args);
339 * Try to add the attr to the attribute list in
340 * the inode.
342 error = xfs_attr_shortform_addname(&args);
343 if (error != ENOSPC) {
345 * Commit the shortform mods, and we're done.
346 * NOTE: this is also the error path (EEXIST, etc).
348 ASSERT(args.trans != NULL);
351 * If this is a synchronous mount, make sure that
352 * the transaction goes to disk before returning
353 * to the user.
355 if (mp->m_flags & XFS_MOUNT_WSYNC) {
356 xfs_trans_set_sync(args.trans);
359 if (!error && (flags & ATTR_KERNOTIME) == 0) {
360 xfs_trans_ichgtime(args.trans, dp,
361 XFS_ICHGTIME_CHG);
363 err2 = xfs_trans_commit(args.trans,
364 XFS_TRANS_RELEASE_LOG_RES);
365 xfs_iunlock(dp, XFS_ILOCK_EXCL);
367 return(error == 0 ? err2 : error);
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.
374 xfs_bmap_init(args.flist, args.firstblock);
375 error = xfs_attr_shortform_to_leaf(&args);
376 if (!error) {
377 error = xfs_bmap_finish(&args.trans, args.flist,
378 &committed);
380 if (error) {
381 ASSERT(committed);
382 args.trans = NULL;
383 xfs_bmap_cancel(&flist);
384 goto out;
388 * bmap_finish() may have committed the last trans and started
389 * a new one. We need the inode to be in all transactions.
391 if (committed)
392 xfs_trans_ijoin(args.trans, dp, 0);
395 * Commit the leaf transformation. We'll need another (linked)
396 * transaction to add the new attribute to the leaf.
399 error = xfs_trans_roll(&args.trans, dp);
400 if (error)
401 goto out;
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);
410 if (error) {
411 goto out;
415 * If this is a synchronous mount, make sure that the
416 * transaction goes to disk before returning to the user.
418 if (mp->m_flags & XFS_MOUNT_WSYNC) {
419 xfs_trans_set_sync(args.trans);
422 if ((flags & ATTR_KERNOTIME) == 0)
423 xfs_trans_ichgtime(args.trans, dp, XFS_ICHGTIME_CHG);
426 * Commit the last in the sequence of transactions.
428 xfs_trans_log_inode(args.trans, dp, XFS_ILOG_CORE);
429 error = xfs_trans_commit(args.trans, XFS_TRANS_RELEASE_LOG_RES);
430 xfs_iunlock(dp, XFS_ILOCK_EXCL);
432 return(error);
434 out:
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);
443 xfs_attr_set(
444 xfs_inode_t *dp,
445 const unsigned char *name,
446 unsigned char *value,
447 int valuelen,
448 int flags)
450 int error;
451 struct xfs_name xname;
453 XFS_STATS_INC(xs_attr_set);
455 if (XFS_FORCED_SHUTDOWN(dp->i_mount))
456 return (EIO);
458 error = xfs_attr_name_to_xname(&xname, name);
459 if (error)
460 return error;
462 return xfs_attr_set_int(dp, &xname, value, valuelen, flags);
466 * Generic handler routine to remove a name from an attribute list.
467 * Transitions attribute list from Btree to shortform as necessary.
469 STATIC int
470 xfs_attr_remove_int(xfs_inode_t *dp, struct xfs_name *name, int flags)
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;
479 * Fill in the arg structure for this request.
481 memset((char *)&args, 0, sizeof(args));
482 args.name = name->name;
483 args.namelen = name->len;
484 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;
493 * 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.
497 args.op_flags = XFS_DA_OP_OKNOENT;
500 * Attach the dquots to the inode.
502 error = xfs_qm_dqattach(dp, 0);
503 if (error)
504 return error;
507 * Start our first transaction of the day.
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.
516 args.trans = xfs_trans_alloc(mp, XFS_TRANS_ATTR_RM);
519 * Root fork attributes can use reserved data blocks for this
520 * operation if necessary
523 if (flags & ATTR_ROOT)
524 args.trans->t_flags |= XFS_TRANS_RESERVE;
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);
535 xfs_ilock(dp, XFS_ILOCK_EXCL);
537 * No need to make quota reservations here. We expect to release some
538 * blocks not allocate in the common case.
540 xfs_trans_ijoin(args.trans, dp, 0);
543 * Decide on what work routines to call based on the inode size.
545 if (!xfs_inode_hasattr(dp)) {
546 error = XFS_ERROR(ENOATTR);
547 goto out;
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;
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);
560 if (error) {
561 goto out;
565 * If this is a synchronous mount, make sure that the
566 * transaction goes to disk before returning to the user.
568 if (mp->m_flags & XFS_MOUNT_WSYNC) {
569 xfs_trans_set_sync(args.trans);
572 if ((flags & ATTR_KERNOTIME) == 0)
573 xfs_trans_ichgtime(args.trans, dp, XFS_ICHGTIME_CHG);
576 * Commit the last in the sequence of transactions.
578 xfs_trans_log_inode(args.trans, dp, XFS_ILOG_CORE);
579 error = xfs_trans_commit(args.trans, XFS_TRANS_RELEASE_LOG_RES);
580 xfs_iunlock(dp, XFS_ILOCK_EXCL);
582 return(error);
584 out:
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);
593 xfs_attr_remove(
594 xfs_inode_t *dp,
595 const unsigned char *name,
596 int flags)
598 int error;
599 struct xfs_name xname;
601 XFS_STATS_INC(xs_attr_remove);
603 if (XFS_FORCED_SHUTDOWN(dp->i_mount))
604 return (EIO);
606 error = xfs_attr_name_to_xname(&xname, name);
607 if (error)
608 return error;
610 xfs_ilock(dp, XFS_ILOCK_SHARED);
611 if (!xfs_inode_hasattr(dp)) {
612 xfs_iunlock(dp, XFS_ILOCK_SHARED);
613 return XFS_ERROR(ENOATTR);
615 xfs_iunlock(dp, XFS_ILOCK_SHARED);
617 return xfs_attr_remove_int(dp, &xname, flags);
621 xfs_attr_list_int(xfs_attr_list_context_t *context)
623 int error;
624 xfs_inode_t *dp = context->dp;
626 XFS_STATS_INC(xs_attr_list);
628 if (XFS_FORCED_SHUTDOWN(dp->i_mount))
629 return EIO;
631 xfs_ilock(dp, XFS_ILOCK_SHARED);
634 * Decide on what work routines to call based on the inode size.
636 if (!xfs_inode_hasattr(dp)) {
637 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);
646 xfs_iunlock(dp, XFS_ILOCK_SHARED);
648 return error;
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))
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.
662 /*ARGSUSED*/
663 STATIC int
664 xfs_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)
672 struct attrlist *alist = (struct attrlist *)context->alist;
673 attrlist_ent_t *aep;
674 int arraytop;
676 ASSERT(!(context->flags & ATTR_KERNOVAL));
677 ASSERT(context->count >= 0);
678 ASSERT(context->count < (ATTR_MAX_VALUELEN/8));
679 ASSERT(context->firstu >= sizeof(*alist));
680 ASSERT(context->firstu <= context->bufsize);
683 * Only list entries in the right namespace.
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;
692 arraytop = sizeof(*alist) +
693 context->count * sizeof(alist->al_offset[0]);
694 context->firstu -= ATTR_ENTSIZE(namelen);
695 if (context->firstu < arraytop) {
696 trace_xfs_attr_list_full(context);
697 alist->al_more = 1;
698 context->seen_enough = 1;
699 return 1;
702 aep = (attrlist_ent_t *)&context->alist[context->firstu];
703 aep->a_valuelen = valuelen;
704 memcpy(aep->a_name, name, namelen);
705 aep->a_name[namelen] = 0;
706 alist->al_offset[context->count++] = context->firstu;
707 alist->al_count = context->count;
708 trace_xfs_attr_list_add(context);
709 return 0;
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.
720 xfs_attr_list(
721 xfs_inode_t *dp,
722 char *buffer,
723 int bufsize,
724 int flags,
725 attrlist_cursor_kern_t *cursor)
727 xfs_attr_list_context_t context;
728 struct attrlist *alist;
729 int error;
732 * Validate the cursor.
734 if (cursor->pad1 || cursor->pad2)
735 return(XFS_ERROR(EINVAL));
736 if ((cursor->initted == 0) &&
737 (cursor->hashval || cursor->blkno || cursor->offset))
738 return XFS_ERROR(EINVAL);
741 * Check for a properly aligned buffer.
743 if (((long)buffer) & (sizeof(int)-1))
744 return XFS_ERROR(EFAULT);
745 if (flags & ATTR_KERNOVAL)
746 bufsize = 0;
749 * Initialize the output buffer.
751 memset(&context, 0, sizeof(context));
752 context.dp = dp;
753 context.cursor = cursor;
754 context.resynch = 1;
755 context.flags = flags;
756 context.alist = buffer;
757 context.bufsize = (bufsize & ~(sizeof(int)-1)); /* align */
758 context.firstu = context.bufsize;
759 context.put_listent = xfs_attr_put_listent;
761 alist = (struct attrlist *)context.alist;
762 alist->al_count = 0;
763 alist->al_more = 0;
764 alist->al_offset[0] = context.bufsize;
766 error = xfs_attr_list_int(&context);
767 ASSERT(error >= 0);
768 return error;
771 int /* error */
772 xfs_attr_inactive(xfs_inode_t *dp)
774 xfs_trans_t *trans;
775 xfs_mount_t *mp;
776 int error;
778 mp = dp->i_mount;
779 ASSERT(! XFS_NOT_DQATTACHED(mp, dp));
781 xfs_ilock(dp, XFS_ILOCK_SHARED);
782 if (!xfs_inode_hasattr(dp) ||
783 dp->i_d.di_aformat == XFS_DINODE_FMT_LOCAL) {
784 xfs_iunlock(dp, XFS_ILOCK_SHARED);
785 return 0;
787 xfs_iunlock(dp, XFS_ILOCK_SHARED);
790 * Start our first transaction of the day.
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.
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);
806 xfs_ilock(dp, XFS_ILOCK_EXCL);
809 * No need to make quota reservations here. We expect to release some
810 * blocks, not allocate, in the common case.
812 xfs_trans_ijoin(trans, dp, 0);
815 * Decide on what work routines to call based on the inode size.
817 if (!xfs_inode_hasattr(dp) ||
818 dp->i_d.di_aformat == XFS_DINODE_FMT_LOCAL) {
819 error = 0;
820 goto out;
822 error = xfs_attr_root_inactive(&trans, dp);
823 if (error)
824 goto out;
826 error = xfs_itruncate_extents(&trans, dp, XFS_ATTR_FORK, 0);
827 if (error)
828 goto out;
831 * Commit the last in the sequence of transactions.
833 xfs_trans_log_inode(trans, dp, XFS_ILOG_CORE);
834 error = xfs_trans_commit(trans, XFS_TRANS_RELEASE_LOG_RES);
835 xfs_iunlock(dp, XFS_ILOCK_EXCL);
837 return(error);
839 out:
840 xfs_trans_cancel(trans, XFS_TRANS_RELEASE_LOG_RES|XFS_TRANS_ABORT);
841 xfs_iunlock(dp, XFS_ILOCK_EXCL);
842 return(error);
847 /*========================================================================
848 * External routines when attribute list is inside the inode
849 *========================================================================*/
852 * Add a name to the shortform attribute list structure
853 * This is the external routine.
855 STATIC int
856 xfs_attr_shortform_addname(xfs_da_args_t *args)
858 int newsize, forkoff, retval;
860 retval = xfs_attr_shortform_lookup(args);
861 if ((args->flags & ATTR_REPLACE) && (retval == ENOATTR)) {
862 return(retval);
863 } else if (retval == EEXIST) {
864 if (args->flags & ATTR_CREATE)
865 return(retval);
866 retval = xfs_attr_shortform_remove(args);
867 ASSERT(retval == 0);
870 if (args->namelen >= XFS_ATTR_SF_ENTSIZE_MAX ||
871 args->valuelen >= XFS_ATTR_SF_ENTSIZE_MAX)
872 return(XFS_ERROR(ENOSPC));
874 newsize = XFS_ATTR_SF_TOTSIZE(args->dp);
875 newsize += XFS_ATTR_SF_ENTSIZE_BYNAME(args->namelen, args->valuelen);
877 forkoff = xfs_attr_shortform_bytesfit(args->dp, newsize);
878 if (!forkoff)
879 return(XFS_ERROR(ENOSPC));
881 xfs_attr_shortform_add(args, forkoff);
882 return(0);
886 /*========================================================================
887 * External routines when attribute list is one block
888 *========================================================================*/
891 * Add a name to the leaf attribute list structure
893 * This leaf block cannot have a "remote" value, we only call this routine
894 * if bmap_one_block() says there is only one block (ie: no remote blks).
896 STATIC int
897 xfs_attr_leaf_addname(xfs_da_args_t *args)
899 xfs_inode_t *dp;
900 xfs_dabuf_t *bp;
901 int retval, error, committed, forkoff;
904 * Read the (only) block in the attribute list in.
906 dp = args->dp;
907 args->blkno = 0;
908 error = xfs_da_read_buf(args->trans, args->dp, args->blkno, -1, &bp,
909 XFS_ATTR_FORK);
910 if (error)
911 return(error);
912 ASSERT(bp != NULL);
915 * Look up the given attribute in the leaf block. Figure out if
916 * the given flags produce an error or call for an atomic rename.
918 retval = xfs_attr_leaf_lookup_int(bp, args);
919 if ((args->flags & ATTR_REPLACE) && (retval == ENOATTR)) {
920 xfs_da_brelse(args->trans, bp);
921 return(retval);
922 } else if (retval == EEXIST) {
923 if (args->flags & ATTR_CREATE) { /* pure create op */
924 xfs_da_brelse(args->trans, bp);
925 return(retval);
927 args->op_flags |= XFS_DA_OP_RENAME; /* an atomic rename */
928 args->blkno2 = args->blkno; /* set 2nd entry info*/
929 args->index2 = args->index;
930 args->rmtblkno2 = args->rmtblkno;
931 args->rmtblkcnt2 = args->rmtblkcnt;
935 * Add the attribute to the leaf block, transitioning to a Btree
936 * if required.
938 retval = xfs_attr_leaf_add(bp, args);
939 xfs_da_buf_done(bp);
940 if (retval == ENOSPC) {
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.
946 xfs_bmap_init(args->flist, args->firstblock);
947 error = xfs_attr_leaf_to_node(args);
948 if (!error) {
949 error = xfs_bmap_finish(&args->trans, args->flist,
950 &committed);
952 if (error) {
953 ASSERT(committed);
954 args->trans = NULL;
955 xfs_bmap_cancel(args->flist);
956 return(error);
960 * bmap_finish() may have committed the last trans and started
961 * a new one. We need the inode to be in all transactions.
963 if (committed)
964 xfs_trans_ijoin(args->trans, dp, 0);
967 * Commit the current trans (including the inode) and start
968 * a new one.
970 error = xfs_trans_roll(&args->trans, dp);
971 if (error)
972 return (error);
975 * Fob the whole rest of the problem off on the Btree code.
977 error = xfs_attr_node_addname(args);
978 return(error);
982 * Commit the transaction that added the attr name so that
983 * later routines can manage their own transactions.
985 error = xfs_trans_roll(&args->trans, dp);
986 if (error)
987 return (error);
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.
995 if (args->rmtblkno > 0) {
996 error = xfs_attr_rmtval_set(args);
997 if (error)
998 return(error);
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.
1007 if (args->op_flags & XFS_DA_OP_RENAME) {
1009 * In a separate transaction, set the incomplete flag on the
1010 * "old" attr and clear the incomplete flag on the "new" attr.
1012 error = xfs_attr_leaf_flipflags(args);
1013 if (error)
1014 return(error);
1017 * Dismantle the "old" attribute/value pair by removing
1018 * a "remote" value (if it exists).
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);
1031 * Read in the block containing the "old" attr, then
1032 * remove the "old" attr from that block (neat, huh!)
1034 error = xfs_da_read_buf(args->trans, args->dp, args->blkno, -1,
1035 &bp, XFS_ATTR_FORK);
1036 if (error)
1037 return(error);
1038 ASSERT(bp != NULL);
1039 (void)xfs_attr_leaf_remove(bp, args);
1042 * If the result is small enough, shrink it all into the inode.
1044 if ((forkoff = xfs_attr_shortform_allfit(bp, dp))) {
1045 xfs_bmap_init(args->flist, args->firstblock);
1046 error = xfs_attr_leaf_to_shortform(bp, args, forkoff);
1047 /* bp is gone due to xfs_da_shrink_inode */
1048 if (!error) {
1049 error = xfs_bmap_finish(&args->trans,
1050 args->flist,
1051 &committed);
1053 if (error) {
1054 ASSERT(committed);
1055 args->trans = NULL;
1056 xfs_bmap_cancel(args->flist);
1057 return(error);
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.
1065 if (committed)
1066 xfs_trans_ijoin(args->trans, dp, 0);
1067 } else
1068 xfs_da_buf_done(bp);
1071 * Commit the remove and start the next trans in series.
1073 error = xfs_trans_roll(&args->trans, dp);
1075 } else if (args->rmtblkno > 0) {
1077 * Added a "remote" value, just clear the incomplete flag.
1079 error = xfs_attr_leaf_clearflag(args);
1081 return(error);
1085 * Remove a name from the leaf attribute list structure
1087 * This leaf block cannot have a "remote" value, we only call this routine
1088 * if bmap_one_block() says there is only one block (ie: no remote blks).
1090 STATIC int
1091 xfs_attr_leaf_removename(xfs_da_args_t *args)
1093 xfs_inode_t *dp;
1094 xfs_dabuf_t *bp;
1095 int error, committed, forkoff;
1098 * Remove the attribute.
1100 dp = args->dp;
1101 args->blkno = 0;
1102 error = xfs_da_read_buf(args->trans, args->dp, args->blkno, -1, &bp,
1103 XFS_ATTR_FORK);
1104 if (error) {
1105 return(error);
1108 ASSERT(bp != NULL);
1109 error = xfs_attr_leaf_lookup_int(bp, args);
1110 if (error == ENOATTR) {
1111 xfs_da_brelse(args->trans, bp);
1112 return(error);
1115 (void)xfs_attr_leaf_remove(bp, args);
1118 * If the result is small enough, shrink it all into the inode.
1120 if ((forkoff = xfs_attr_shortform_allfit(bp, dp))) {
1121 xfs_bmap_init(args->flist, args->firstblock);
1122 error = xfs_attr_leaf_to_shortform(bp, args, forkoff);
1123 /* bp is gone due to xfs_da_shrink_inode */
1124 if (!error) {
1125 error = xfs_bmap_finish(&args->trans, args->flist,
1126 &committed);
1128 if (error) {
1129 ASSERT(committed);
1130 args->trans = NULL;
1131 xfs_bmap_cancel(args->flist);
1132 return(error);
1136 * bmap_finish() may have committed the last trans and started
1137 * a new one. We need the inode to be in all transactions.
1139 if (committed)
1140 xfs_trans_ijoin(args->trans, dp, 0);
1141 } else
1142 xfs_da_buf_done(bp);
1143 return(0);
1147 * Look up a name in a leaf attribute list structure.
1149 * This leaf block cannot have a "remote" value, we only call this routine
1150 * if bmap_one_block() says there is only one block (ie: no remote blks).
1152 STATIC int
1153 xfs_attr_leaf_get(xfs_da_args_t *args)
1155 xfs_dabuf_t *bp;
1156 int error;
1158 args->blkno = 0;
1159 error = xfs_da_read_buf(args->trans, args->dp, args->blkno, -1, &bp,
1160 XFS_ATTR_FORK);
1161 if (error)
1162 return(error);
1163 ASSERT(bp != NULL);
1165 error = xfs_attr_leaf_lookup_int(bp, args);
1166 if (error != EEXIST) {
1167 xfs_da_brelse(args->trans, bp);
1168 return(error);
1170 error = xfs_attr_leaf_getvalue(bp, args);
1171 xfs_da_brelse(args->trans, bp);
1172 if (!error && (args->rmtblkno > 0) && !(args->flags & ATTR_KERNOVAL)) {
1173 error = xfs_attr_rmtval_get(args);
1175 return(error);
1179 * Copy out attribute entries for attr_list(), for leaf attribute lists.
1181 STATIC int
1182 xfs_attr_leaf_list(xfs_attr_list_context_t *context)
1184 xfs_attr_leafblock_t *leaf;
1185 int error;
1186 xfs_dabuf_t *bp;
1188 context->cursor->blkno = 0;
1189 error = xfs_da_read_buf(NULL, context->dp, 0, -1, &bp, XFS_ATTR_FORK);
1190 if (error)
1191 return XFS_ERROR(error);
1192 ASSERT(bp != NULL);
1193 leaf = bp->data;
1194 if (unlikely(leaf->hdr.info.magic != cpu_to_be16(XFS_ATTR_LEAF_MAGIC))) {
1195 XFS_CORRUPTION_ERROR("xfs_attr_leaf_list", XFS_ERRLEVEL_LOW,
1196 context->dp->i_mount, leaf);
1197 xfs_da_brelse(NULL, bp);
1198 return XFS_ERROR(EFSCORRUPTED);
1201 error = xfs_attr_leaf_list_int(bp, context);
1202 xfs_da_brelse(NULL, bp);
1203 return XFS_ERROR(error);
1207 /*========================================================================
1208 * External routines when attribute list size > XFS_LBSIZE(mp).
1209 *========================================================================*/
1212 * Add a name to a Btree-format attribute list.
1214 * This will involve walking down the Btree, and may involve splitting
1215 * leaf nodes and even splitting intermediate nodes up to and including
1216 * the root node (a special case of an intermediate node).
1218 * "Remote" attribute values confuse the issue and atomic rename operations
1219 * add a whole extra layer of confusion on top of that.
1221 STATIC int
1222 xfs_attr_node_addname(xfs_da_args_t *args)
1224 xfs_da_state_t *state;
1225 xfs_da_state_blk_t *blk;
1226 xfs_inode_t *dp;
1227 xfs_mount_t *mp;
1228 int committed, retval, error;
1231 * Fill in bucket of arguments/results/context to carry around.
1233 dp = args->dp;
1234 mp = dp->i_mount;
1235 restart:
1236 state = xfs_da_state_alloc();
1237 state->args = args;
1238 state->mp = mp;
1239 state->blocksize = state->mp->m_sb.sb_blocksize;
1240 state->node_ents = state->mp->m_attr_node_ents;
1243 * Search to see if name already exists, and get back a pointer
1244 * to where it should go.
1246 error = xfs_da_node_lookup_int(state, &retval);
1247 if (error)
1248 goto out;
1249 blk = &state->path.blk[ state->path.active-1 ];
1250 ASSERT(blk->magic == XFS_ATTR_LEAF_MAGIC);
1251 if ((args->flags & ATTR_REPLACE) && (retval == ENOATTR)) {
1252 goto out;
1253 } else if (retval == EEXIST) {
1254 if (args->flags & ATTR_CREATE)
1255 goto out;
1256 args->op_flags |= XFS_DA_OP_RENAME; /* atomic rename op */
1257 args->blkno2 = args->blkno; /* set 2nd entry info*/
1258 args->index2 = args->index;
1259 args->rmtblkno2 = args->rmtblkno;
1260 args->rmtblkcnt2 = args->rmtblkcnt;
1261 args->rmtblkno = 0;
1262 args->rmtblkcnt = 0;
1265 retval = xfs_attr_leaf_add(blk->bp, state->args);
1266 if (retval == ENOSPC) {
1267 if (state->path.active == 1) {
1269 * Its really a single leaf node, but it had
1270 * out-of-line values so it looked like it *might*
1271 * have been a b-tree.
1273 xfs_da_state_free(state);
1274 xfs_bmap_init(args->flist, args->firstblock);
1275 error = xfs_attr_leaf_to_node(args);
1276 if (!error) {
1277 error = xfs_bmap_finish(&args->trans,
1278 args->flist,
1279 &committed);
1281 if (error) {
1282 ASSERT(committed);
1283 args->trans = NULL;
1284 xfs_bmap_cancel(args->flist);
1285 goto out;
1289 * bmap_finish() may have committed the last trans
1290 * and started a new one. We need the inode to be
1291 * in all transactions.
1293 if (committed)
1294 xfs_trans_ijoin(args->trans, dp, 0);
1297 * Commit the node conversion and start the next
1298 * trans in the chain.
1300 error = xfs_trans_roll(&args->trans, dp);
1301 if (error)
1302 goto out;
1304 goto restart;
1308 * Split as many Btree elements as required.
1309 * This code tracks the new and old attr's location
1310 * in the index/blkno/rmtblkno/rmtblkcnt fields and
1311 * in the index2/blkno2/rmtblkno2/rmtblkcnt2 fields.
1313 xfs_bmap_init(args->flist, args->firstblock);
1314 error = xfs_da_split(state);
1315 if (!error) {
1316 error = xfs_bmap_finish(&args->trans, args->flist,
1317 &committed);
1319 if (error) {
1320 ASSERT(committed);
1321 args->trans = NULL;
1322 xfs_bmap_cancel(args->flist);
1323 goto out;
1327 * bmap_finish() may have committed the last trans and started
1328 * a new one. We need the inode to be in all transactions.
1330 if (committed)
1331 xfs_trans_ijoin(args->trans, dp, 0);
1332 } else {
1334 * Addition succeeded, update Btree hashvals.
1336 xfs_da_fixhashpath(state, &state->path);
1340 * Kill the state structure, we're done with it and need to
1341 * allow the buffers to come back later.
1343 xfs_da_state_free(state);
1344 state = NULL;
1347 * Commit the leaf addition or btree split and start the next
1348 * trans in the chain.
1350 error = xfs_trans_roll(&args->trans, dp);
1351 if (error)
1352 goto out;
1355 * If there was an out-of-line value, allocate the blocks we
1356 * identified for its storage and copy the value. This is done
1357 * after we create the attribute so that we don't overflow the
1358 * maximum size of a transaction and/or hit a deadlock.
1360 if (args->rmtblkno > 0) {
1361 error = xfs_attr_rmtval_set(args);
1362 if (error)
1363 return(error);
1367 * If this is an atomic rename operation, we must "flip" the
1368 * incomplete flags on the "new" and "old" attribute/value pairs
1369 * so that one disappears and one appears atomically. Then we
1370 * must remove the "old" attribute/value pair.
1372 if (args->op_flags & XFS_DA_OP_RENAME) {
1374 * In a separate transaction, set the incomplete flag on the
1375 * "old" attr and clear the incomplete flag on the "new" attr.
1377 error = xfs_attr_leaf_flipflags(args);
1378 if (error)
1379 goto out;
1382 * Dismantle the "old" attribute/value pair by removing
1383 * a "remote" value (if it exists).
1385 args->index = args->index2;
1386 args->blkno = args->blkno2;
1387 args->rmtblkno = args->rmtblkno2;
1388 args->rmtblkcnt = args->rmtblkcnt2;
1389 if (args->rmtblkno) {
1390 error = xfs_attr_rmtval_remove(args);
1391 if (error)
1392 return(error);
1396 * Re-find the "old" attribute entry after any split ops.
1397 * The INCOMPLETE flag means that we will find the "old"
1398 * attr, not the "new" one.
1400 args->flags |= XFS_ATTR_INCOMPLETE;
1401 state = xfs_da_state_alloc();
1402 state->args = args;
1403 state->mp = mp;
1404 state->blocksize = state->mp->m_sb.sb_blocksize;
1405 state->node_ents = state->mp->m_attr_node_ents;
1406 state->inleaf = 0;
1407 error = xfs_da_node_lookup_int(state, &retval);
1408 if (error)
1409 goto out;
1412 * Remove the name and update the hashvals in the tree.
1414 blk = &state->path.blk[ state->path.active-1 ];
1415 ASSERT(blk->magic == XFS_ATTR_LEAF_MAGIC);
1416 error = xfs_attr_leaf_remove(blk->bp, args);
1417 xfs_da_fixhashpath(state, &state->path);
1420 * Check to see if the tree needs to be collapsed.
1422 if (retval && (state->path.active > 1)) {
1423 xfs_bmap_init(args->flist, args->firstblock);
1424 error = xfs_da_join(state);
1425 if (!error) {
1426 error = xfs_bmap_finish(&args->trans,
1427 args->flist,
1428 &committed);
1430 if (error) {
1431 ASSERT(committed);
1432 args->trans = NULL;
1433 xfs_bmap_cancel(args->flist);
1434 goto out;
1438 * bmap_finish() may have committed the last trans
1439 * and started a new one. We need the inode to be
1440 * in all transactions.
1442 if (committed)
1443 xfs_trans_ijoin(args->trans, dp, 0);
1447 * Commit and start the next trans in the chain.
1449 error = xfs_trans_roll(&args->trans, dp);
1450 if (error)
1451 goto out;
1453 } else if (args->rmtblkno > 0) {
1455 * Added a "remote" value, just clear the incomplete flag.
1457 error = xfs_attr_leaf_clearflag(args);
1458 if (error)
1459 goto out;
1461 retval = error = 0;
1463 out:
1464 if (state)
1465 xfs_da_state_free(state);
1466 if (error)
1467 return(error);
1468 return(retval);
1472 * Remove a name from a B-tree attribute list.
1474 * This will involve walking down the Btree, and may involve joining
1475 * leaf nodes and even joining intermediate nodes up to and including
1476 * the root node (a special case of an intermediate node).
1478 STATIC int
1479 xfs_attr_node_removename(xfs_da_args_t *args)
1481 xfs_da_state_t *state;
1482 xfs_da_state_blk_t *blk;
1483 xfs_inode_t *dp;
1484 xfs_dabuf_t *bp;
1485 int retval, error, committed, forkoff;
1488 * Tie a string around our finger to remind us where we are.
1490 dp = args->dp;
1491 state = xfs_da_state_alloc();
1492 state->args = args;
1493 state->mp = dp->i_mount;
1494 state->blocksize = state->mp->m_sb.sb_blocksize;
1495 state->node_ents = state->mp->m_attr_node_ents;
1498 * Search to see if name exists, and get back a pointer to it.
1500 error = xfs_da_node_lookup_int(state, &retval);
1501 if (error || (retval != EEXIST)) {
1502 if (error == 0)
1503 error = retval;
1504 goto out;
1508 * If there is an out-of-line value, de-allocate the blocks.
1509 * This is done before we remove the attribute so that we don't
1510 * overflow the maximum size of a transaction and/or hit a deadlock.
1512 blk = &state->path.blk[ state->path.active-1 ];
1513 ASSERT(blk->bp != NULL);
1514 ASSERT(blk->magic == XFS_ATTR_LEAF_MAGIC);
1515 if (args->rmtblkno > 0) {
1517 * Fill in disk block numbers in the state structure
1518 * so that we can get the buffers back after we commit
1519 * several transactions in the following calls.
1521 error = xfs_attr_fillstate(state);
1522 if (error)
1523 goto out;
1526 * Mark the attribute as INCOMPLETE, then bunmapi() the
1527 * remote value.
1529 error = xfs_attr_leaf_setflag(args);
1530 if (error)
1531 goto out;
1532 error = xfs_attr_rmtval_remove(args);
1533 if (error)
1534 goto out;
1537 * Refill the state structure with buffers, the prior calls
1538 * released our buffers.
1540 error = xfs_attr_refillstate(state);
1541 if (error)
1542 goto out;
1546 * Remove the name and update the hashvals in the tree.
1548 blk = &state->path.blk[ state->path.active-1 ];
1549 ASSERT(blk->magic == XFS_ATTR_LEAF_MAGIC);
1550 retval = xfs_attr_leaf_remove(blk->bp, args);
1551 xfs_da_fixhashpath(state, &state->path);
1554 * Check to see if the tree needs to be collapsed.
1556 if (retval && (state->path.active > 1)) {
1557 xfs_bmap_init(args->flist, args->firstblock);
1558 error = xfs_da_join(state);
1559 if (!error) {
1560 error = xfs_bmap_finish(&args->trans, args->flist,
1561 &committed);
1563 if (error) {
1564 ASSERT(committed);
1565 args->trans = NULL;
1566 xfs_bmap_cancel(args->flist);
1567 goto out;
1571 * bmap_finish() may have committed the last trans and started
1572 * a new one. We need the inode to be in all transactions.
1574 if (committed)
1575 xfs_trans_ijoin(args->trans, dp, 0);
1578 * Commit the Btree join operation and start a new trans.
1580 error = xfs_trans_roll(&args->trans, dp);
1581 if (error)
1582 goto out;
1586 * If the result is small enough, push it all into the inode.
1588 if (xfs_bmap_one_block(dp, XFS_ATTR_FORK)) {
1590 * Have to get rid of the copy of this dabuf in the state.
1592 ASSERT(state->path.active == 1);
1593 ASSERT(state->path.blk[0].bp);
1594 xfs_da_buf_done(state->path.blk[0].bp);
1595 state->path.blk[0].bp = NULL;
1597 error = xfs_da_read_buf(args->trans, args->dp, 0, -1, &bp,
1598 XFS_ATTR_FORK);
1599 if (error)
1600 goto out;
1601 ASSERT((((xfs_attr_leafblock_t *)bp->data)->hdr.info.magic) ==
1602 cpu_to_be16(XFS_ATTR_LEAF_MAGIC));
1604 if ((forkoff = xfs_attr_shortform_allfit(bp, dp))) {
1605 xfs_bmap_init(args->flist, args->firstblock);
1606 error = xfs_attr_leaf_to_shortform(bp, args, forkoff);
1607 /* bp is gone due to xfs_da_shrink_inode */
1608 if (!error) {
1609 error = xfs_bmap_finish(&args->trans,
1610 args->flist,
1611 &committed);
1613 if (error) {
1614 ASSERT(committed);
1615 args->trans = NULL;
1616 xfs_bmap_cancel(args->flist);
1617 goto out;
1621 * bmap_finish() may have committed the last trans
1622 * and started a new one. We need the inode to be
1623 * in all transactions.
1625 if (committed)
1626 xfs_trans_ijoin(args->trans, dp, 0);
1627 } else
1628 xfs_da_brelse(args->trans, bp);
1630 error = 0;
1632 out:
1633 xfs_da_state_free(state);
1634 return(error);
1638 * Fill in the disk block numbers in the state structure for the buffers
1639 * that are attached to the state structure.
1640 * This is done so that we can quickly reattach ourselves to those buffers
1641 * after some set of transaction commits have released these buffers.
1643 STATIC int
1644 xfs_attr_fillstate(xfs_da_state_t *state)
1646 xfs_da_state_path_t *path;
1647 xfs_da_state_blk_t *blk;
1648 int level;
1651 * Roll down the "path" in the state structure, storing the on-disk
1652 * block number for those buffers in the "path".
1654 path = &state->path;
1655 ASSERT((path->active >= 0) && (path->active < XFS_DA_NODE_MAXDEPTH));
1656 for (blk = path->blk, level = 0; level < path->active; blk++, level++) {
1657 if (blk->bp) {
1658 blk->disk_blkno = xfs_da_blkno(blk->bp);
1659 xfs_da_buf_done(blk->bp);
1660 blk->bp = NULL;
1661 } else {
1662 blk->disk_blkno = 0;
1667 * Roll down the "altpath" in the state structure, storing the on-disk
1668 * block number for those buffers in the "altpath".
1670 path = &state->altpath;
1671 ASSERT((path->active >= 0) && (path->active < XFS_DA_NODE_MAXDEPTH));
1672 for (blk = path->blk, level = 0; level < path->active; blk++, level++) {
1673 if (blk->bp) {
1674 blk->disk_blkno = xfs_da_blkno(blk->bp);
1675 xfs_da_buf_done(blk->bp);
1676 blk->bp = NULL;
1677 } else {
1678 blk->disk_blkno = 0;
1682 return(0);
1686 * Reattach the buffers to the state structure based on the disk block
1687 * numbers stored in the state structure.
1688 * This is done after some set of transaction commits have released those
1689 * buffers from our grip.
1691 STATIC int
1692 xfs_attr_refillstate(xfs_da_state_t *state)
1694 xfs_da_state_path_t *path;
1695 xfs_da_state_blk_t *blk;
1696 int level, error;
1699 * Roll down the "path" in the state structure, storing the on-disk
1700 * block number for those buffers in the "path".
1702 path = &state->path;
1703 ASSERT((path->active >= 0) && (path->active < XFS_DA_NODE_MAXDEPTH));
1704 for (blk = path->blk, level = 0; level < path->active; blk++, level++) {
1705 if (blk->disk_blkno) {
1706 error = xfs_da_read_buf(state->args->trans,
1707 state->args->dp,
1708 blk->blkno, blk->disk_blkno,
1709 &blk->bp, XFS_ATTR_FORK);
1710 if (error)
1711 return(error);
1712 } else {
1713 blk->bp = NULL;
1718 * Roll down the "altpath" in the state structure, storing the on-disk
1719 * block number for those buffers in the "altpath".
1721 path = &state->altpath;
1722 ASSERT((path->active >= 0) && (path->active < XFS_DA_NODE_MAXDEPTH));
1723 for (blk = path->blk, level = 0; level < path->active; blk++, level++) {
1724 if (blk->disk_blkno) {
1725 error = xfs_da_read_buf(state->args->trans,
1726 state->args->dp,
1727 blk->blkno, blk->disk_blkno,
1728 &blk->bp, XFS_ATTR_FORK);
1729 if (error)
1730 return(error);
1731 } else {
1732 blk->bp = NULL;
1736 return(0);
1740 * Look up a filename in a node attribute list.
1742 * This routine gets called for any attribute fork that has more than one
1743 * block, ie: both true Btree attr lists and for single-leaf-blocks with
1744 * "remote" values taking up more blocks.
1746 STATIC int
1747 xfs_attr_node_get(xfs_da_args_t *args)
1749 xfs_da_state_t *state;
1750 xfs_da_state_blk_t *blk;
1751 int error, retval;
1752 int i;
1754 state = xfs_da_state_alloc();
1755 state->args = args;
1756 state->mp = args->dp->i_mount;
1757 state->blocksize = state->mp->m_sb.sb_blocksize;
1758 state->node_ents = state->mp->m_attr_node_ents;
1761 * Search to see if name exists, and get back a pointer to it.
1763 error = xfs_da_node_lookup_int(state, &retval);
1764 if (error) {
1765 retval = error;
1766 } else if (retval == EEXIST) {
1767 blk = &state->path.blk[ state->path.active-1 ];
1768 ASSERT(blk->bp != NULL);
1769 ASSERT(blk->magic == XFS_ATTR_LEAF_MAGIC);
1772 * Get the value, local or "remote"
1774 retval = xfs_attr_leaf_getvalue(blk->bp, args);
1775 if (!retval && (args->rmtblkno > 0)
1776 && !(args->flags & ATTR_KERNOVAL)) {
1777 retval = xfs_attr_rmtval_get(args);
1782 * If not in a transaction, we have to release all the buffers.
1784 for (i = 0; i < state->path.active; i++) {
1785 xfs_da_brelse(args->trans, state->path.blk[i].bp);
1786 state->path.blk[i].bp = NULL;
1789 xfs_da_state_free(state);
1790 return(retval);
1793 STATIC int /* error */
1794 xfs_attr_node_list(xfs_attr_list_context_t *context)
1796 attrlist_cursor_kern_t *cursor;
1797 xfs_attr_leafblock_t *leaf;
1798 xfs_da_intnode_t *node;
1799 xfs_da_node_entry_t *btree;
1800 int error, i;
1801 xfs_dabuf_t *bp;
1803 cursor = context->cursor;
1804 cursor->initted = 1;
1807 * Do all sorts of validation on the passed-in cursor structure.
1808 * If anything is amiss, ignore the cursor and look up the hashval
1809 * starting from the btree root.
1811 bp = NULL;
1812 if (cursor->blkno > 0) {
1813 error = xfs_da_read_buf(NULL, context->dp, cursor->blkno, -1,
1814 &bp, XFS_ATTR_FORK);
1815 if ((error != 0) && (error != EFSCORRUPTED))
1816 return(error);
1817 if (bp) {
1818 node = bp->data;
1819 switch (be16_to_cpu(node->hdr.info.magic)) {
1820 case XFS_DA_NODE_MAGIC:
1821 trace_xfs_attr_list_wrong_blk(context);
1822 xfs_da_brelse(NULL, bp);
1823 bp = NULL;
1824 break;
1825 case XFS_ATTR_LEAF_MAGIC:
1826 leaf = bp->data;
1827 if (cursor->hashval > be32_to_cpu(leaf->entries[
1828 be16_to_cpu(leaf->hdr.count)-1].hashval)) {
1829 trace_xfs_attr_list_wrong_blk(context);
1830 xfs_da_brelse(NULL, bp);
1831 bp = NULL;
1832 } else if (cursor->hashval <=
1833 be32_to_cpu(leaf->entries[0].hashval)) {
1834 trace_xfs_attr_list_wrong_blk(context);
1835 xfs_da_brelse(NULL, bp);
1836 bp = NULL;
1838 break;
1839 default:
1840 trace_xfs_attr_list_wrong_blk(context);
1841 xfs_da_brelse(NULL, bp);
1842 bp = NULL;
1848 * We did not find what we expected given the cursor's contents,
1849 * so we start from the top and work down based on the hash value.
1850 * Note that start of node block is same as start of leaf block.
1852 if (bp == NULL) {
1853 cursor->blkno = 0;
1854 for (;;) {
1855 error = xfs_da_read_buf(NULL, context->dp,
1856 cursor->blkno, -1, &bp,
1857 XFS_ATTR_FORK);
1858 if (error)
1859 return(error);
1860 if (unlikely(bp == NULL)) {
1861 XFS_ERROR_REPORT("xfs_attr_node_list(2)",
1862 XFS_ERRLEVEL_LOW,
1863 context->dp->i_mount);
1864 return(XFS_ERROR(EFSCORRUPTED));
1866 node = bp->data;
1867 if (node->hdr.info.magic ==
1868 cpu_to_be16(XFS_ATTR_LEAF_MAGIC))
1869 break;
1870 if (unlikely(node->hdr.info.magic !=
1871 cpu_to_be16(XFS_DA_NODE_MAGIC))) {
1872 XFS_CORRUPTION_ERROR("xfs_attr_node_list(3)",
1873 XFS_ERRLEVEL_LOW,
1874 context->dp->i_mount,
1875 node);
1876 xfs_da_brelse(NULL, bp);
1877 return(XFS_ERROR(EFSCORRUPTED));
1879 btree = node->btree;
1880 for (i = 0; i < be16_to_cpu(node->hdr.count);
1881 btree++, i++) {
1882 if (cursor->hashval
1883 <= be32_to_cpu(btree->hashval)) {
1884 cursor->blkno = be32_to_cpu(btree->before);
1885 trace_xfs_attr_list_node_descend(context,
1886 btree);
1887 break;
1890 if (i == be16_to_cpu(node->hdr.count)) {
1891 xfs_da_brelse(NULL, bp);
1892 return(0);
1894 xfs_da_brelse(NULL, bp);
1897 ASSERT(bp != NULL);
1900 * Roll upward through the blocks, processing each leaf block in
1901 * order. As long as there is space in the result buffer, keep
1902 * adding the information.
1904 for (;;) {
1905 leaf = bp->data;
1906 if (unlikely(leaf->hdr.info.magic !=
1907 cpu_to_be16(XFS_ATTR_LEAF_MAGIC))) {
1908 XFS_CORRUPTION_ERROR("xfs_attr_node_list(4)",
1909 XFS_ERRLEVEL_LOW,
1910 context->dp->i_mount, leaf);
1911 xfs_da_brelse(NULL, bp);
1912 return(XFS_ERROR(EFSCORRUPTED));
1914 error = xfs_attr_leaf_list_int(bp, context);
1915 if (error) {
1916 xfs_da_brelse(NULL, bp);
1917 return error;
1919 if (context->seen_enough || leaf->hdr.info.forw == 0)
1920 break;
1921 cursor->blkno = be32_to_cpu(leaf->hdr.info.forw);
1922 xfs_da_brelse(NULL, bp);
1923 error = xfs_da_read_buf(NULL, context->dp, cursor->blkno, -1,
1924 &bp, XFS_ATTR_FORK);
1925 if (error)
1926 return(error);
1927 if (unlikely((bp == NULL))) {
1928 XFS_ERROR_REPORT("xfs_attr_node_list(5)",
1929 XFS_ERRLEVEL_LOW,
1930 context->dp->i_mount);
1931 return(XFS_ERROR(EFSCORRUPTED));
1934 xfs_da_brelse(NULL, bp);
1935 return(0);
1939 /*========================================================================
1940 * External routines for manipulating out-of-line attribute values.
1941 *========================================================================*/
1944 * Read the value associated with an attribute from the out-of-line buffer
1945 * that we stored it in.
1948 xfs_attr_rmtval_get(xfs_da_args_t *args)
1950 xfs_bmbt_irec_t map[ATTR_RMTVALUE_MAPSIZE];
1951 xfs_mount_t *mp;
1952 xfs_daddr_t dblkno;
1953 void *dst;
1954 xfs_buf_t *bp;
1955 int nmap, error, tmp, valuelen, blkcnt, i;
1956 xfs_dablk_t lblkno;
1958 ASSERT(!(args->flags & ATTR_KERNOVAL));
1960 mp = args->dp->i_mount;
1961 dst = args->value;
1962 valuelen = args->valuelen;
1963 lblkno = args->rmtblkno;
1964 while (valuelen > 0) {
1965 nmap = ATTR_RMTVALUE_MAPSIZE;
1966 error = xfs_bmapi_read(args->dp, (xfs_fileoff_t)lblkno,
1967 args->rmtblkcnt, map, &nmap,
1968 XFS_BMAPI_ATTRFORK);
1969 if (error)
1970 return(error);
1971 ASSERT(nmap >= 1);
1973 for (i = 0; (i < nmap) && (valuelen > 0); i++) {
1974 ASSERT((map[i].br_startblock != DELAYSTARTBLOCK) &&
1975 (map[i].br_startblock != HOLESTARTBLOCK));
1976 dblkno = XFS_FSB_TO_DADDR(mp, map[i].br_startblock);
1977 blkcnt = XFS_FSB_TO_BB(mp, map[i].br_blockcount);
1978 error = xfs_read_buf(mp, mp->m_ddev_targp, dblkno,
1979 blkcnt, XBF_LOCK | XBF_DONT_BLOCK,
1980 &bp);
1981 if (error)
1982 return(error);
1984 tmp = (valuelen < XFS_BUF_SIZE(bp))
1985 ? valuelen : XFS_BUF_SIZE(bp);
1986 xfs_buf_iomove(bp, 0, tmp, dst, XBRW_READ);
1987 xfs_buf_relse(bp);
1988 dst += tmp;
1989 valuelen -= tmp;
1991 lblkno += map[i].br_blockcount;
1994 ASSERT(valuelen == 0);
1995 return(0);
1999 * Write the value associated with an attribute into the out-of-line buffer
2000 * that we have defined for it.
2002 STATIC int
2003 xfs_attr_rmtval_set(xfs_da_args_t *args)
2005 xfs_mount_t *mp;
2006 xfs_fileoff_t lfileoff;
2007 xfs_inode_t *dp;
2008 xfs_bmbt_irec_t map;
2009 xfs_daddr_t dblkno;
2010 void *src;
2011 xfs_buf_t *bp;
2012 xfs_dablk_t lblkno;
2013 int blkcnt, valuelen, nmap, error, tmp, committed;
2015 dp = args->dp;
2016 mp = dp->i_mount;
2017 src = args->value;
2020 * Find a "hole" in the attribute address space large enough for
2021 * us to drop the new attribute's value into.
2023 blkcnt = XFS_B_TO_FSB(mp, args->valuelen);
2024 lfileoff = 0;
2025 error = xfs_bmap_first_unused(args->trans, args->dp, blkcnt, &lfileoff,
2026 XFS_ATTR_FORK);
2027 if (error) {
2028 return(error);
2030 args->rmtblkno = lblkno = (xfs_dablk_t)lfileoff;
2031 args->rmtblkcnt = blkcnt;
2034 * Roll through the "value", allocating blocks on disk as required.
2036 while (blkcnt > 0) {
2038 * Allocate a single extent, up to the size of the value.
2040 xfs_bmap_init(args->flist, args->firstblock);
2041 nmap = 1;
2042 error = xfs_bmapi_write(args->trans, dp, (xfs_fileoff_t)lblkno,
2043 blkcnt,
2044 XFS_BMAPI_ATTRFORK | XFS_BMAPI_METADATA,
2045 args->firstblock, args->total, &map, &nmap,
2046 args->flist);
2047 if (!error) {
2048 error = xfs_bmap_finish(&args->trans, args->flist,
2049 &committed);
2051 if (error) {
2052 ASSERT(committed);
2053 args->trans = NULL;
2054 xfs_bmap_cancel(args->flist);
2055 return(error);
2059 * bmap_finish() may have committed the last trans and started
2060 * a new one. We need the inode to be in all transactions.
2062 if (committed)
2063 xfs_trans_ijoin(args->trans, dp, 0);
2065 ASSERT(nmap == 1);
2066 ASSERT((map.br_startblock != DELAYSTARTBLOCK) &&
2067 (map.br_startblock != HOLESTARTBLOCK));
2068 lblkno += map.br_blockcount;
2069 blkcnt -= map.br_blockcount;
2072 * Start the next trans in the chain.
2074 error = xfs_trans_roll(&args->trans, dp);
2075 if (error)
2076 return (error);
2080 * Roll through the "value", copying the attribute value to the
2081 * already-allocated blocks. Blocks are written synchronously
2082 * so that we can know they are all on disk before we turn off
2083 * the INCOMPLETE flag.
2085 lblkno = args->rmtblkno;
2086 valuelen = args->valuelen;
2087 while (valuelen > 0) {
2089 * Try to remember where we decided to put the value.
2091 xfs_bmap_init(args->flist, args->firstblock);
2092 nmap = 1;
2093 error = xfs_bmapi_read(dp, (xfs_fileoff_t)lblkno,
2094 args->rmtblkcnt, &map, &nmap,
2095 XFS_BMAPI_ATTRFORK);
2096 if (error)
2097 return(error);
2098 ASSERT(nmap == 1);
2099 ASSERT((map.br_startblock != DELAYSTARTBLOCK) &&
2100 (map.br_startblock != HOLESTARTBLOCK));
2102 dblkno = XFS_FSB_TO_DADDR(mp, map.br_startblock),
2103 blkcnt = XFS_FSB_TO_BB(mp, map.br_blockcount);
2105 bp = xfs_buf_get(mp->m_ddev_targp, dblkno, blkcnt,
2106 XBF_LOCK | XBF_DONT_BLOCK);
2107 if (!bp)
2108 return ENOMEM;
2109 tmp = (valuelen < XFS_BUF_SIZE(bp)) ? valuelen :
2110 XFS_BUF_SIZE(bp);
2111 xfs_buf_iomove(bp, 0, tmp, src, XBRW_WRITE);
2112 if (tmp < XFS_BUF_SIZE(bp))
2113 xfs_buf_zero(bp, tmp, XFS_BUF_SIZE(bp) - tmp);
2114 error = xfs_bwrite(bp); /* GROT: NOTE: synchronous write */
2115 xfs_buf_relse(bp);
2116 if (error)
2117 return error;
2118 src += tmp;
2119 valuelen -= tmp;
2121 lblkno += map.br_blockcount;
2123 ASSERT(valuelen == 0);
2124 return(0);
2128 * Remove the value associated with an attribute by deleting the
2129 * out-of-line buffer that it is stored on.
2131 STATIC int
2132 xfs_attr_rmtval_remove(xfs_da_args_t *args)
2134 xfs_mount_t *mp;
2135 xfs_bmbt_irec_t map;
2136 xfs_buf_t *bp;
2137 xfs_daddr_t dblkno;
2138 xfs_dablk_t lblkno;
2139 int valuelen, blkcnt, nmap, error, done, committed;
2141 mp = args->dp->i_mount;
2144 * Roll through the "value", invalidating the attribute value's
2145 * blocks.
2147 lblkno = args->rmtblkno;
2148 valuelen = args->rmtblkcnt;
2149 while (valuelen > 0) {
2151 * Try to remember where we decided to put the value.
2153 nmap = 1;
2154 error = xfs_bmapi_read(args->dp, (xfs_fileoff_t)lblkno,
2155 args->rmtblkcnt, &map, &nmap,
2156 XFS_BMAPI_ATTRFORK);
2157 if (error)
2158 return(error);
2159 ASSERT(nmap == 1);
2160 ASSERT((map.br_startblock != DELAYSTARTBLOCK) &&
2161 (map.br_startblock != HOLESTARTBLOCK));
2163 dblkno = XFS_FSB_TO_DADDR(mp, map.br_startblock),
2164 blkcnt = XFS_FSB_TO_BB(mp, map.br_blockcount);
2167 * If the "remote" value is in the cache, remove it.
2169 bp = xfs_incore(mp->m_ddev_targp, dblkno, blkcnt, XBF_TRYLOCK);
2170 if (bp) {
2171 xfs_buf_stale(bp);
2172 xfs_buf_relse(bp);
2173 bp = NULL;
2176 valuelen -= map.br_blockcount;
2178 lblkno += map.br_blockcount;
2182 * Keep de-allocating extents until the remote-value region is gone.
2184 lblkno = args->rmtblkno;
2185 blkcnt = args->rmtblkcnt;
2186 done = 0;
2187 while (!done) {
2188 xfs_bmap_init(args->flist, args->firstblock);
2189 error = xfs_bunmapi(args->trans, args->dp, lblkno, blkcnt,
2190 XFS_BMAPI_ATTRFORK | XFS_BMAPI_METADATA,
2191 1, args->firstblock, args->flist,
2192 &done);
2193 if (!error) {
2194 error = xfs_bmap_finish(&args->trans, args->flist,
2195 &committed);
2197 if (error) {
2198 ASSERT(committed);
2199 args->trans = NULL;
2200 xfs_bmap_cancel(args->flist);
2201 return(error);
2205 * bmap_finish() may have committed the last trans and started
2206 * a new one. We need the inode to be in all transactions.
2208 if (committed)
2209 xfs_trans_ijoin(args->trans, args->dp, 0);
2212 * Close out trans and start the next one in the chain.
2214 error = xfs_trans_roll(&args->trans, args->dp);
2215 if (error)
2216 return (error);
2218 return(0);