2 * Copyright (c) 2000-2005 Silicon Graphics, Inc.
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
20 #include "xfs_types.h"
24 #include "xfs_trans.h"
28 #include "xfs_dmapi.h"
29 #include "xfs_mount.h"
30 #include "xfs_da_btree.h"
31 #include "xfs_bmap_btree.h"
32 #include "xfs_alloc_btree.h"
33 #include "xfs_ialloc_btree.h"
34 #include "xfs_alloc.h"
35 #include "xfs_btree.h"
36 #include "xfs_dir2_sf.h"
37 #include "xfs_attr_sf.h"
38 #include "xfs_dinode.h"
39 #include "xfs_inode.h"
40 #include "xfs_inode_item.h"
43 #include "xfs_attr_leaf.h"
44 #include "xfs_error.h"
49 * Routines to implement leaf blocks of attributes as Btrees of hashed names.
52 /*========================================================================
53 * Function prototypes for the kernel.
54 *========================================================================*/
57 * Routines used for growing the Btree.
59 STATIC
int xfs_attr_leaf_create(xfs_da_args_t
*args
, xfs_dablk_t which_block
,
61 STATIC
int xfs_attr_leaf_add_work(xfs_dabuf_t
*leaf_buffer
, xfs_da_args_t
*args
,
63 STATIC
void xfs_attr_leaf_compact(xfs_trans_t
*trans
, xfs_dabuf_t
*leaf_buffer
);
64 STATIC
void xfs_attr_leaf_rebalance(xfs_da_state_t
*state
,
65 xfs_da_state_blk_t
*blk1
,
66 xfs_da_state_blk_t
*blk2
);
67 STATIC
int xfs_attr_leaf_figure_balance(xfs_da_state_t
*state
,
68 xfs_da_state_blk_t
*leaf_blk_1
,
69 xfs_da_state_blk_t
*leaf_blk_2
,
70 int *number_entries_in_blk1
,
71 int *number_usedbytes_in_blk1
);
74 * Routines used for shrinking the Btree.
76 STATIC
int xfs_attr_node_inactive(xfs_trans_t
**trans
, xfs_inode_t
*dp
,
77 xfs_dabuf_t
*bp
, int level
);
78 STATIC
int xfs_attr_leaf_inactive(xfs_trans_t
**trans
, xfs_inode_t
*dp
,
80 STATIC
int xfs_attr_leaf_freextent(xfs_trans_t
**trans
, xfs_inode_t
*dp
,
81 xfs_dablk_t blkno
, int blkcnt
);
86 STATIC
void xfs_attr_leaf_moveents(xfs_attr_leafblock_t
*src_leaf
,
88 xfs_attr_leafblock_t
*dst_leaf
,
89 int dst_start
, int move_count
,
91 STATIC
int xfs_attr_leaf_entsize(xfs_attr_leafblock_t
*leaf
, int index
);
93 /*========================================================================
94 * Namespace helper routines
95 *========================================================================*/
98 * If namespace bits don't match return 0.
99 * If all match then return 1.
102 xfs_attr_namesp_match(int arg_flags
, int ondisk_flags
)
104 return XFS_ATTR_NSP_ONDISK(ondisk_flags
) == XFS_ATTR_NSP_ARGS_TO_ONDISK(arg_flags
);
108 /*========================================================================
109 * External routines when attribute fork size < XFS_LITINO(mp).
110 *========================================================================*/
113 * Query whether the requested number of additional bytes of extended
114 * attribute space will be able to fit inline.
115 * Returns zero if not, else the di_forkoff fork offset to be used in the
116 * literal area for attribute data once the new bytes have been added.
118 * di_forkoff must be 8 byte aligned, hence is stored as a >>3 value;
119 * special case for dev/uuid inodes, they have fixed size data forks.
122 xfs_attr_shortform_bytesfit(xfs_inode_t
*dp
, int bytes
)
125 int minforkoff
; /* lower limit on valid forkoff locations */
126 int maxforkoff
; /* upper limit on valid forkoff locations */
128 xfs_mount_t
*mp
= dp
->i_mount
;
130 offset
= (XFS_LITINO(mp
) - bytes
) >> 3; /* rounded down */
132 switch (dp
->i_d
.di_format
) {
133 case XFS_DINODE_FMT_DEV
:
134 minforkoff
= roundup(sizeof(xfs_dev_t
), 8) >> 3;
135 return (offset
>= minforkoff
) ? minforkoff
: 0;
136 case XFS_DINODE_FMT_UUID
:
137 minforkoff
= roundup(sizeof(uuid_t
), 8) >> 3;
138 return (offset
>= minforkoff
) ? minforkoff
: 0;
141 if (!(mp
->m_flags
& XFS_MOUNT_ATTR2
)) {
142 if (bytes
<= XFS_IFORK_ASIZE(dp
))
143 return dp
->i_d
.di_forkoff
;
147 dsize
= dp
->i_df
.if_bytes
;
149 switch (dp
->i_d
.di_format
) {
150 case XFS_DINODE_FMT_EXTENTS
:
152 * If there is no attr fork and the data fork is extents,
153 * determine if creating the default attr fork will result
154 * in the extents form migrating to btree. If so, the
155 * minimum offset only needs to be the space required for
158 if (!dp
->i_d
.di_forkoff
&& dp
->i_df
.if_bytes
>
159 xfs_default_attroffset(dp
))
160 dsize
= XFS_BMDR_SPACE_CALC(MINDBTPTRS
);
163 case XFS_DINODE_FMT_BTREE
:
165 * If have data btree then keep forkoff if we have one,
166 * otherwise we are adding a new attr, so then we set
167 * minforkoff to where the btree root can finish so we have
168 * plenty of room for attrs
170 if (dp
->i_d
.di_forkoff
) {
171 if (offset
< dp
->i_d
.di_forkoff
)
174 return dp
->i_d
.di_forkoff
;
176 dsize
= XFS_BMAP_BROOT_SPACE(dp
->i_df
.if_broot
);
181 * A data fork btree root must have space for at least
182 * MINDBTPTRS key/ptr pairs if the data fork is small or empty.
184 minforkoff
= MAX(dsize
, XFS_BMDR_SPACE_CALC(MINDBTPTRS
));
185 minforkoff
= roundup(minforkoff
, 8) >> 3;
187 /* attr fork btree root can have at least this many key/ptr pairs */
188 maxforkoff
= XFS_LITINO(mp
) - XFS_BMDR_SPACE_CALC(MINABTPTRS
);
189 maxforkoff
= maxforkoff
>> 3; /* rounded down */
191 if (offset
>= minforkoff
&& offset
< maxforkoff
)
193 if (offset
>= maxforkoff
)
199 * Switch on the ATTR2 superblock bit (implies also FEATURES2)
202 xfs_sbversion_add_attr2(xfs_mount_t
*mp
, xfs_trans_t
*tp
)
204 if ((mp
->m_flags
& XFS_MOUNT_ATTR2
) &&
205 !(xfs_sb_version_hasattr2(&mp
->m_sb
))) {
206 spin_lock(&mp
->m_sb_lock
);
207 if (!xfs_sb_version_hasattr2(&mp
->m_sb
)) {
208 xfs_sb_version_addattr2(&mp
->m_sb
);
209 spin_unlock(&mp
->m_sb_lock
);
210 xfs_mod_sb(tp
, XFS_SB_VERSIONNUM
| XFS_SB_FEATURES2
);
212 spin_unlock(&mp
->m_sb_lock
);
217 * Create the initial contents of a shortform attribute list.
220 xfs_attr_shortform_create(xfs_da_args_t
*args
)
222 xfs_attr_sf_hdr_t
*hdr
;
230 ASSERT(ifp
->if_bytes
== 0);
231 if (dp
->i_d
.di_aformat
== XFS_DINODE_FMT_EXTENTS
) {
232 ifp
->if_flags
&= ~XFS_IFEXTENTS
; /* just in case */
233 dp
->i_d
.di_aformat
= XFS_DINODE_FMT_LOCAL
;
234 ifp
->if_flags
|= XFS_IFINLINE
;
236 ASSERT(ifp
->if_flags
& XFS_IFINLINE
);
238 xfs_idata_realloc(dp
, sizeof(*hdr
), XFS_ATTR_FORK
);
239 hdr
= (xfs_attr_sf_hdr_t
*)ifp
->if_u1
.if_data
;
241 hdr
->totsize
= cpu_to_be16(sizeof(*hdr
));
242 xfs_trans_log_inode(args
->trans
, dp
, XFS_ILOG_CORE
| XFS_ILOG_ADATA
);
246 * Add a name/value pair to the shortform attribute list.
247 * Overflow from the inode has already been checked for.
250 xfs_attr_shortform_add(xfs_da_args_t
*args
, int forkoff
)
252 xfs_attr_shortform_t
*sf
;
253 xfs_attr_sf_entry_t
*sfe
;
261 dp
->i_d
.di_forkoff
= forkoff
;
262 dp
->i_df
.if_ext_max
=
263 XFS_IFORK_DSIZE(dp
) / (uint
)sizeof(xfs_bmbt_rec_t
);
264 dp
->i_afp
->if_ext_max
=
265 XFS_IFORK_ASIZE(dp
) / (uint
)sizeof(xfs_bmbt_rec_t
);
268 ASSERT(ifp
->if_flags
& XFS_IFINLINE
);
269 sf
= (xfs_attr_shortform_t
*)ifp
->if_u1
.if_data
;
271 for (i
= 0; i
< sf
->hdr
.count
; sfe
= XFS_ATTR_SF_NEXTENTRY(sfe
), i
++) {
273 if (sfe
->namelen
!= args
->namelen
)
275 if (memcmp(args
->name
, sfe
->nameval
, args
->namelen
) != 0)
277 if (!xfs_attr_namesp_match(args
->flags
, sfe
->flags
))
283 offset
= (char *)sfe
- (char *)sf
;
284 size
= XFS_ATTR_SF_ENTSIZE_BYNAME(args
->namelen
, args
->valuelen
);
285 xfs_idata_realloc(dp
, size
, XFS_ATTR_FORK
);
286 sf
= (xfs_attr_shortform_t
*)ifp
->if_u1
.if_data
;
287 sfe
= (xfs_attr_sf_entry_t
*)((char *)sf
+ offset
);
289 sfe
->namelen
= args
->namelen
;
290 sfe
->valuelen
= args
->valuelen
;
291 sfe
->flags
= XFS_ATTR_NSP_ARGS_TO_ONDISK(args
->flags
);
292 memcpy(sfe
->nameval
, args
->name
, args
->namelen
);
293 memcpy(&sfe
->nameval
[args
->namelen
], args
->value
, args
->valuelen
);
295 be16_add_cpu(&sf
->hdr
.totsize
, size
);
296 xfs_trans_log_inode(args
->trans
, dp
, XFS_ILOG_CORE
| XFS_ILOG_ADATA
);
298 xfs_sbversion_add_attr2(mp
, args
->trans
);
302 * After the last attribute is removed revert to original inode format,
303 * making all literal area available to the data fork once more.
307 struct xfs_inode
*ip
,
308 struct xfs_trans
*tp
)
310 xfs_idestroy_fork(ip
, XFS_ATTR_FORK
);
311 ip
->i_d
.di_forkoff
= 0;
312 ip
->i_d
.di_aformat
= XFS_DINODE_FMT_EXTENTS
;
314 ASSERT(ip
->i_d
.di_anextents
== 0);
315 ASSERT(ip
->i_afp
== NULL
);
317 ip
->i_df
.if_ext_max
= XFS_IFORK_DSIZE(ip
) / sizeof(xfs_bmbt_rec_t
);
318 xfs_trans_log_inode(tp
, ip
, XFS_ILOG_CORE
);
322 * Remove an attribute from the shortform attribute list structure.
325 xfs_attr_shortform_remove(xfs_da_args_t
*args
)
327 xfs_attr_shortform_t
*sf
;
328 xfs_attr_sf_entry_t
*sfe
;
329 int base
, size
=0, end
, totsize
, i
;
335 base
= sizeof(xfs_attr_sf_hdr_t
);
336 sf
= (xfs_attr_shortform_t
*)dp
->i_afp
->if_u1
.if_data
;
339 for (i
= 0; i
< end
; sfe
= XFS_ATTR_SF_NEXTENTRY(sfe
),
341 size
= XFS_ATTR_SF_ENTSIZE(sfe
);
342 if (sfe
->namelen
!= args
->namelen
)
344 if (memcmp(sfe
->nameval
, args
->name
, args
->namelen
) != 0)
346 if (!xfs_attr_namesp_match(args
->flags
, sfe
->flags
))
351 return(XFS_ERROR(ENOATTR
));
354 * Fix up the attribute fork data, covering the hole
357 totsize
= be16_to_cpu(sf
->hdr
.totsize
);
359 memmove(&((char *)sf
)[base
], &((char *)sf
)[end
], totsize
- end
);
361 be16_add_cpu(&sf
->hdr
.totsize
, -size
);
364 * Fix up the start offset of the attribute fork
367 if (totsize
== sizeof(xfs_attr_sf_hdr_t
) &&
368 (mp
->m_flags
& XFS_MOUNT_ATTR2
) &&
369 (dp
->i_d
.di_format
!= XFS_DINODE_FMT_BTREE
) &&
370 !(args
->op_flags
& XFS_DA_OP_ADDNAME
)) {
371 xfs_attr_fork_reset(dp
, args
->trans
);
373 xfs_idata_realloc(dp
, -size
, XFS_ATTR_FORK
);
374 dp
->i_d
.di_forkoff
= xfs_attr_shortform_bytesfit(dp
, totsize
);
375 ASSERT(dp
->i_d
.di_forkoff
);
376 ASSERT(totsize
> sizeof(xfs_attr_sf_hdr_t
) ||
377 (args
->op_flags
& XFS_DA_OP_ADDNAME
) ||
378 !(mp
->m_flags
& XFS_MOUNT_ATTR2
) ||
379 dp
->i_d
.di_format
== XFS_DINODE_FMT_BTREE
);
380 dp
->i_afp
->if_ext_max
=
381 XFS_IFORK_ASIZE(dp
) / (uint
)sizeof(xfs_bmbt_rec_t
);
382 dp
->i_df
.if_ext_max
=
383 XFS_IFORK_DSIZE(dp
) / (uint
)sizeof(xfs_bmbt_rec_t
);
384 xfs_trans_log_inode(args
->trans
, dp
,
385 XFS_ILOG_CORE
| XFS_ILOG_ADATA
);
388 xfs_sbversion_add_attr2(mp
, args
->trans
);
394 * Look up a name in a shortform attribute list structure.
398 xfs_attr_shortform_lookup(xfs_da_args_t
*args
)
400 xfs_attr_shortform_t
*sf
;
401 xfs_attr_sf_entry_t
*sfe
;
405 ifp
= args
->dp
->i_afp
;
406 ASSERT(ifp
->if_flags
& XFS_IFINLINE
);
407 sf
= (xfs_attr_shortform_t
*)ifp
->if_u1
.if_data
;
409 for (i
= 0; i
< sf
->hdr
.count
;
410 sfe
= XFS_ATTR_SF_NEXTENTRY(sfe
), i
++) {
411 if (sfe
->namelen
!= args
->namelen
)
413 if (memcmp(args
->name
, sfe
->nameval
, args
->namelen
) != 0)
415 if (!xfs_attr_namesp_match(args
->flags
, sfe
->flags
))
417 return(XFS_ERROR(EEXIST
));
419 return(XFS_ERROR(ENOATTR
));
423 * Look up a name in a shortform attribute list structure.
427 xfs_attr_shortform_getvalue(xfs_da_args_t
*args
)
429 xfs_attr_shortform_t
*sf
;
430 xfs_attr_sf_entry_t
*sfe
;
433 ASSERT(args
->dp
->i_d
.di_aformat
== XFS_IFINLINE
);
434 sf
= (xfs_attr_shortform_t
*)args
->dp
->i_afp
->if_u1
.if_data
;
436 for (i
= 0; i
< sf
->hdr
.count
;
437 sfe
= XFS_ATTR_SF_NEXTENTRY(sfe
), i
++) {
438 if (sfe
->namelen
!= args
->namelen
)
440 if (memcmp(args
->name
, sfe
->nameval
, args
->namelen
) != 0)
442 if (!xfs_attr_namesp_match(args
->flags
, sfe
->flags
))
444 if (args
->flags
& ATTR_KERNOVAL
) {
445 args
->valuelen
= sfe
->valuelen
;
446 return(XFS_ERROR(EEXIST
));
448 if (args
->valuelen
< sfe
->valuelen
) {
449 args
->valuelen
= sfe
->valuelen
;
450 return(XFS_ERROR(ERANGE
));
452 args
->valuelen
= sfe
->valuelen
;
453 memcpy(args
->value
, &sfe
->nameval
[args
->namelen
],
455 return(XFS_ERROR(EEXIST
));
457 return(XFS_ERROR(ENOATTR
));
461 * Convert from using the shortform to the leaf.
464 xfs_attr_shortform_to_leaf(xfs_da_args_t
*args
)
467 xfs_attr_shortform_t
*sf
;
468 xfs_attr_sf_entry_t
*sfe
;
478 sf
= (xfs_attr_shortform_t
*)ifp
->if_u1
.if_data
;
479 size
= be16_to_cpu(sf
->hdr
.totsize
);
480 tmpbuffer
= kmem_alloc(size
, KM_SLEEP
);
481 ASSERT(tmpbuffer
!= NULL
);
482 memcpy(tmpbuffer
, ifp
->if_u1
.if_data
, size
);
483 sf
= (xfs_attr_shortform_t
*)tmpbuffer
;
485 xfs_idata_realloc(dp
, -size
, XFS_ATTR_FORK
);
487 error
= xfs_da_grow_inode(args
, &blkno
);
490 * If we hit an IO error middle of the transaction inside
491 * grow_inode(), we may have inconsistent data. Bail out.
495 xfs_idata_realloc(dp
, size
, XFS_ATTR_FORK
); /* try to put */
496 memcpy(ifp
->if_u1
.if_data
, tmpbuffer
, size
); /* it back */
501 error
= xfs_attr_leaf_create(args
, blkno
, &bp
);
503 error
= xfs_da_shrink_inode(args
, 0, bp
);
507 xfs_idata_realloc(dp
, size
, XFS_ATTR_FORK
); /* try to put */
508 memcpy(ifp
->if_u1
.if_data
, tmpbuffer
, size
); /* it back */
512 memset((char *)&nargs
, 0, sizeof(nargs
));
514 nargs
.firstblock
= args
->firstblock
;
515 nargs
.flist
= args
->flist
;
516 nargs
.total
= args
->total
;
517 nargs
.whichfork
= XFS_ATTR_FORK
;
518 nargs
.trans
= args
->trans
;
519 nargs
.op_flags
= XFS_DA_OP_OKNOENT
;
522 for (i
= 0; i
< sf
->hdr
.count
; i
++) {
523 nargs
.name
= (char *)sfe
->nameval
;
524 nargs
.namelen
= sfe
->namelen
;
525 nargs
.value
= (char *)&sfe
->nameval
[nargs
.namelen
];
526 nargs
.valuelen
= sfe
->valuelen
;
527 nargs
.hashval
= xfs_da_hashname((char *)sfe
->nameval
,
529 nargs
.flags
= XFS_ATTR_NSP_ONDISK_TO_ARGS(sfe
->flags
);
530 error
= xfs_attr_leaf_lookup_int(bp
, &nargs
); /* set a->index */
531 ASSERT(error
== ENOATTR
);
532 error
= xfs_attr_leaf_add(bp
, &nargs
);
533 ASSERT(error
!= ENOSPC
);
536 sfe
= XFS_ATTR_SF_NEXTENTRY(sfe
);
543 kmem_free(tmpbuffer
);
548 xfs_attr_shortform_compare(const void *a
, const void *b
)
550 xfs_attr_sf_sort_t
*sa
, *sb
;
552 sa
= (xfs_attr_sf_sort_t
*)a
;
553 sb
= (xfs_attr_sf_sort_t
*)b
;
554 if (sa
->hash
< sb
->hash
) {
556 } else if (sa
->hash
> sb
->hash
) {
559 return(sa
->entno
- sb
->entno
);
564 #define XFS_ISRESET_CURSOR(cursor) \
565 (!((cursor)->initted) && !((cursor)->hashval) && \
566 !((cursor)->blkno) && !((cursor)->offset))
568 * Copy out entries of shortform attribute lists for attr_list().
569 * Shortform attribute lists are not stored in hashval sorted order.
570 * If the output buffer is not large enough to hold them all, then we
571 * we have to calculate each entries' hashvalue and sort them before
572 * we can begin returning them to the user.
576 xfs_attr_shortform_list(xfs_attr_list_context_t
*context
)
578 attrlist_cursor_kern_t
*cursor
;
579 xfs_attr_sf_sort_t
*sbuf
, *sbp
;
580 xfs_attr_shortform_t
*sf
;
581 xfs_attr_sf_entry_t
*sfe
;
583 int sbsize
, nsbuf
, count
, i
;
586 ASSERT(context
!= NULL
);
589 ASSERT(dp
->i_afp
!= NULL
);
590 sf
= (xfs_attr_shortform_t
*)dp
->i_afp
->if_u1
.if_data
;
594 cursor
= context
->cursor
;
595 ASSERT(cursor
!= NULL
);
597 xfs_attr_trace_l_c("sf start", context
);
600 * If the buffer is large enough and the cursor is at the start,
601 * do not bother with sorting since we will return everything in
602 * one buffer and another call using the cursor won't need to be
604 * Note the generous fudge factor of 16 overhead bytes per entry.
605 * If bufsize is zero then put_listent must be a search function
606 * and can just scan through what we have.
608 if (context
->bufsize
== 0 ||
609 (XFS_ISRESET_CURSOR(cursor
) &&
610 (dp
->i_afp
->if_bytes
+ sf
->hdr
.count
* 16) < context
->bufsize
)) {
611 for (i
= 0, sfe
= &sf
->list
[0]; i
< sf
->hdr
.count
; i
++) {
612 error
= context
->put_listent(context
,
614 (char *)sfe
->nameval
,
617 (char*)&sfe
->nameval
[sfe
->namelen
]);
620 * Either search callback finished early or
621 * didn't fit it all in the buffer after all.
623 if (context
->seen_enough
)
628 sfe
= XFS_ATTR_SF_NEXTENTRY(sfe
);
630 xfs_attr_trace_l_c("sf big-gulp", context
);
634 /* do no more for a search callback */
635 if (context
->bufsize
== 0)
639 * It didn't all fit, so we have to sort everything on hashval.
641 sbsize
= sf
->hdr
.count
* sizeof(*sbuf
);
642 sbp
= sbuf
= kmem_alloc(sbsize
, KM_SLEEP
);
645 * Scan the attribute list for the rest of the entries, storing
646 * the relevant info from only those that match into a buffer.
649 for (i
= 0, sfe
= &sf
->list
[0]; i
< sf
->hdr
.count
; i
++) {
651 ((char *)sfe
< (char *)sf
) ||
652 ((char *)sfe
>= ((char *)sf
+ dp
->i_afp
->if_bytes
)))) {
653 XFS_CORRUPTION_ERROR("xfs_attr_shortform_list",
655 context
->dp
->i_mount
, sfe
);
656 xfs_attr_trace_l_c("sf corrupted", context
);
658 return XFS_ERROR(EFSCORRUPTED
);
662 sbp
->hash
= xfs_da_hashname((char *)sfe
->nameval
, sfe
->namelen
);
663 sbp
->name
= (char *)sfe
->nameval
;
664 sbp
->namelen
= sfe
->namelen
;
665 /* These are bytes, and both on-disk, don't endian-flip */
666 sbp
->valuelen
= sfe
->valuelen
;
667 sbp
->flags
= sfe
->flags
;
668 sfe
= XFS_ATTR_SF_NEXTENTRY(sfe
);
674 * Sort the entries on hash then entno.
676 xfs_sort(sbuf
, nsbuf
, sizeof(*sbuf
), xfs_attr_shortform_compare
);
679 * Re-find our place IN THE SORTED LIST.
684 for (sbp
= sbuf
, i
= 0; i
< nsbuf
; i
++, sbp
++) {
685 if (sbp
->hash
== cursor
->hashval
) {
686 if (cursor
->offset
== count
) {
690 } else if (sbp
->hash
> cursor
->hashval
) {
696 xfs_attr_trace_l_c("blk end", context
);
701 * Loop putting entries into the user buffer.
703 for ( ; i
< nsbuf
; i
++, sbp
++) {
704 if (cursor
->hashval
!= sbp
->hash
) {
705 cursor
->hashval
= sbp
->hash
;
708 error
= context
->put_listent(context
,
713 &sbp
->name
[sbp
->namelen
]);
716 if (context
->seen_enough
)
722 xfs_attr_trace_l_c("sf E-O-F", context
);
727 * Check a leaf attribute block to see if all the entries would fit into
728 * a shortform attribute list.
731 xfs_attr_shortform_allfit(xfs_dabuf_t
*bp
, xfs_inode_t
*dp
)
733 xfs_attr_leafblock_t
*leaf
;
734 xfs_attr_leaf_entry_t
*entry
;
735 xfs_attr_leaf_name_local_t
*name_loc
;
739 ASSERT(be16_to_cpu(leaf
->hdr
.info
.magic
) == XFS_ATTR_LEAF_MAGIC
);
741 entry
= &leaf
->entries
[0];
742 bytes
= sizeof(struct xfs_attr_sf_hdr
);
743 for (i
= 0; i
< be16_to_cpu(leaf
->hdr
.count
); entry
++, i
++) {
744 if (entry
->flags
& XFS_ATTR_INCOMPLETE
)
745 continue; /* don't copy partial entries */
746 if (!(entry
->flags
& XFS_ATTR_LOCAL
))
748 name_loc
= xfs_attr_leaf_name_local(leaf
, i
);
749 if (name_loc
->namelen
>= XFS_ATTR_SF_ENTSIZE_MAX
)
751 if (be16_to_cpu(name_loc
->valuelen
) >= XFS_ATTR_SF_ENTSIZE_MAX
)
753 bytes
+= sizeof(struct xfs_attr_sf_entry
)-1
755 + be16_to_cpu(name_loc
->valuelen
);
757 if ((dp
->i_mount
->m_flags
& XFS_MOUNT_ATTR2
) &&
758 (dp
->i_d
.di_format
!= XFS_DINODE_FMT_BTREE
) &&
759 (bytes
== sizeof(struct xfs_attr_sf_hdr
)))
761 return(xfs_attr_shortform_bytesfit(dp
, bytes
));
765 * Convert a leaf attribute list to shortform attribute list
768 xfs_attr_leaf_to_shortform(xfs_dabuf_t
*bp
, xfs_da_args_t
*args
, int forkoff
)
770 xfs_attr_leafblock_t
*leaf
;
771 xfs_attr_leaf_entry_t
*entry
;
772 xfs_attr_leaf_name_local_t
*name_loc
;
779 tmpbuffer
= kmem_alloc(XFS_LBSIZE(dp
->i_mount
), KM_SLEEP
);
780 ASSERT(tmpbuffer
!= NULL
);
783 memcpy(tmpbuffer
, bp
->data
, XFS_LBSIZE(dp
->i_mount
));
784 leaf
= (xfs_attr_leafblock_t
*)tmpbuffer
;
785 ASSERT(be16_to_cpu(leaf
->hdr
.info
.magic
) == XFS_ATTR_LEAF_MAGIC
);
786 memset(bp
->data
, 0, XFS_LBSIZE(dp
->i_mount
));
789 * Clean out the prior contents of the attribute list.
791 error
= xfs_da_shrink_inode(args
, 0, bp
);
796 ASSERT(dp
->i_mount
->m_flags
& XFS_MOUNT_ATTR2
);
797 ASSERT(dp
->i_d
.di_format
!= XFS_DINODE_FMT_BTREE
);
798 xfs_attr_fork_reset(dp
, args
->trans
);
802 xfs_attr_shortform_create(args
);
805 * Copy the attributes
807 memset((char *)&nargs
, 0, sizeof(nargs
));
809 nargs
.firstblock
= args
->firstblock
;
810 nargs
.flist
= args
->flist
;
811 nargs
.total
= args
->total
;
812 nargs
.whichfork
= XFS_ATTR_FORK
;
813 nargs
.trans
= args
->trans
;
814 nargs
.op_flags
= XFS_DA_OP_OKNOENT
;
815 entry
= &leaf
->entries
[0];
816 for (i
= 0; i
< be16_to_cpu(leaf
->hdr
.count
); entry
++, i
++) {
817 if (entry
->flags
& XFS_ATTR_INCOMPLETE
)
818 continue; /* don't copy partial entries */
821 ASSERT(entry
->flags
& XFS_ATTR_LOCAL
);
822 name_loc
= xfs_attr_leaf_name_local(leaf
, i
);
823 nargs
.name
= (char *)name_loc
->nameval
;
824 nargs
.namelen
= name_loc
->namelen
;
825 nargs
.value
= (char *)&name_loc
->nameval
[nargs
.namelen
];
826 nargs
.valuelen
= be16_to_cpu(name_loc
->valuelen
);
827 nargs
.hashval
= be32_to_cpu(entry
->hashval
);
828 nargs
.flags
= XFS_ATTR_NSP_ONDISK_TO_ARGS(entry
->flags
);
829 xfs_attr_shortform_add(&nargs
, forkoff
);
834 kmem_free(tmpbuffer
);
839 * Convert from using a single leaf to a root node and a leaf.
842 xfs_attr_leaf_to_node(xfs_da_args_t
*args
)
844 xfs_attr_leafblock_t
*leaf
;
845 xfs_da_intnode_t
*node
;
847 xfs_dabuf_t
*bp1
, *bp2
;
853 error
= xfs_da_grow_inode(args
, &blkno
);
856 error
= xfs_da_read_buf(args
->trans
, args
->dp
, 0, -1, &bp1
,
862 error
= xfs_da_get_buf(args
->trans
, args
->dp
, blkno
, -1, &bp2
,
867 memcpy(bp2
->data
, bp1
->data
, XFS_LBSIZE(dp
->i_mount
));
868 xfs_da_buf_done(bp1
);
870 xfs_da_log_buf(args
->trans
, bp2
, 0, XFS_LBSIZE(dp
->i_mount
) - 1);
873 * Set up the new root node.
875 error
= xfs_da_node_create(args
, 0, 1, &bp1
, XFS_ATTR_FORK
);
880 ASSERT(be16_to_cpu(leaf
->hdr
.info
.magic
) == XFS_ATTR_LEAF_MAGIC
);
881 /* both on-disk, don't endian-flip twice */
882 node
->btree
[0].hashval
=
883 leaf
->entries
[be16_to_cpu(leaf
->hdr
.count
)-1 ].hashval
;
884 node
->btree
[0].before
= cpu_to_be32(blkno
);
885 node
->hdr
.count
= cpu_to_be16(1);
886 xfs_da_log_buf(args
->trans
, bp1
, 0, XFS_LBSIZE(dp
->i_mount
) - 1);
890 xfs_da_buf_done(bp1
);
892 xfs_da_buf_done(bp2
);
897 /*========================================================================
898 * Routines used for growing the Btree.
899 *========================================================================*/
902 * Create the initial contents of a leaf attribute list
903 * or a leaf in a node attribute list.
906 xfs_attr_leaf_create(xfs_da_args_t
*args
, xfs_dablk_t blkno
, xfs_dabuf_t
**bpp
)
908 xfs_attr_leafblock_t
*leaf
;
909 xfs_attr_leaf_hdr_t
*hdr
;
916 error
= xfs_da_get_buf(args
->trans
, args
->dp
, blkno
, -1, &bp
,
922 memset((char *)leaf
, 0, XFS_LBSIZE(dp
->i_mount
));
924 hdr
->info
.magic
= cpu_to_be16(XFS_ATTR_LEAF_MAGIC
);
925 hdr
->firstused
= cpu_to_be16(XFS_LBSIZE(dp
->i_mount
));
926 if (!hdr
->firstused
) {
927 hdr
->firstused
= cpu_to_be16(
928 XFS_LBSIZE(dp
->i_mount
) - XFS_ATTR_LEAF_NAME_ALIGN
);
931 hdr
->freemap
[0].base
= cpu_to_be16(sizeof(xfs_attr_leaf_hdr_t
));
932 hdr
->freemap
[0].size
= cpu_to_be16(be16_to_cpu(hdr
->firstused
) -
933 sizeof(xfs_attr_leaf_hdr_t
));
935 xfs_da_log_buf(args
->trans
, bp
, 0, XFS_LBSIZE(dp
->i_mount
) - 1);
942 * Split the leaf node, rebalance, then add the new entry.
945 xfs_attr_leaf_split(xfs_da_state_t
*state
, xfs_da_state_blk_t
*oldblk
,
946 xfs_da_state_blk_t
*newblk
)
952 * Allocate space for a new leaf node.
954 ASSERT(oldblk
->magic
== XFS_ATTR_LEAF_MAGIC
);
955 error
= xfs_da_grow_inode(state
->args
, &blkno
);
958 error
= xfs_attr_leaf_create(state
->args
, blkno
, &newblk
->bp
);
961 newblk
->blkno
= blkno
;
962 newblk
->magic
= XFS_ATTR_LEAF_MAGIC
;
965 * Rebalance the entries across the two leaves.
966 * NOTE: rebalance() currently depends on the 2nd block being empty.
968 xfs_attr_leaf_rebalance(state
, oldblk
, newblk
);
969 error
= xfs_da_blk_link(state
, oldblk
, newblk
);
974 * Save info on "old" attribute for "atomic rename" ops, leaf_add()
975 * modifies the index/blkno/rmtblk/rmtblkcnt fields to show the
976 * "new" attrs info. Will need the "old" info to remove it later.
978 * Insert the "new" entry in the correct block.
981 error
= xfs_attr_leaf_add(oldblk
->bp
, state
->args
);
983 error
= xfs_attr_leaf_add(newblk
->bp
, state
->args
);
986 * Update last hashval in each block since we added the name.
988 oldblk
->hashval
= xfs_attr_leaf_lasthash(oldblk
->bp
, NULL
);
989 newblk
->hashval
= xfs_attr_leaf_lasthash(newblk
->bp
, NULL
);
994 * Add a name to the leaf attribute list structure.
997 xfs_attr_leaf_add(xfs_dabuf_t
*bp
, xfs_da_args_t
*args
)
999 xfs_attr_leafblock_t
*leaf
;
1000 xfs_attr_leaf_hdr_t
*hdr
;
1001 xfs_attr_leaf_map_t
*map
;
1002 int tablesize
, entsize
, sum
, tmp
, i
;
1005 ASSERT(be16_to_cpu(leaf
->hdr
.info
.magic
) == XFS_ATTR_LEAF_MAGIC
);
1006 ASSERT((args
->index
>= 0)
1007 && (args
->index
<= be16_to_cpu(leaf
->hdr
.count
)));
1009 entsize
= xfs_attr_leaf_newentsize(args
->namelen
, args
->valuelen
,
1010 args
->trans
->t_mountp
->m_sb
.sb_blocksize
, NULL
);
1013 * Search through freemap for first-fit on new name length.
1014 * (may need to figure in size of entry struct too)
1016 tablesize
= (be16_to_cpu(hdr
->count
) + 1)
1017 * sizeof(xfs_attr_leaf_entry_t
)
1018 + sizeof(xfs_attr_leaf_hdr_t
);
1019 map
= &hdr
->freemap
[XFS_ATTR_LEAF_MAPSIZE
-1];
1020 for (sum
= 0, i
= XFS_ATTR_LEAF_MAPSIZE
-1; i
>= 0; map
--, i
--) {
1021 if (tablesize
> be16_to_cpu(hdr
->firstused
)) {
1022 sum
+= be16_to_cpu(map
->size
);
1026 continue; /* no space in this map */
1028 if (be16_to_cpu(map
->base
) < be16_to_cpu(hdr
->firstused
))
1029 tmp
+= sizeof(xfs_attr_leaf_entry_t
);
1030 if (be16_to_cpu(map
->size
) >= tmp
) {
1031 tmp
= xfs_attr_leaf_add_work(bp
, args
, i
);
1034 sum
+= be16_to_cpu(map
->size
);
1038 * If there are no holes in the address space of the block,
1039 * and we don't have enough freespace, then compaction will do us
1040 * no good and we should just give up.
1042 if (!hdr
->holes
&& (sum
< entsize
))
1043 return(XFS_ERROR(ENOSPC
));
1046 * Compact the entries to coalesce free space.
1047 * This may change the hdr->count via dropping INCOMPLETE entries.
1049 xfs_attr_leaf_compact(args
->trans
, bp
);
1052 * After compaction, the block is guaranteed to have only one
1053 * free region, in freemap[0]. If it is not big enough, give up.
1055 if (be16_to_cpu(hdr
->freemap
[0].size
)
1056 < (entsize
+ sizeof(xfs_attr_leaf_entry_t
)))
1057 return(XFS_ERROR(ENOSPC
));
1059 return(xfs_attr_leaf_add_work(bp
, args
, 0));
1063 * Add a name to a leaf attribute list structure.
1066 xfs_attr_leaf_add_work(xfs_dabuf_t
*bp
, xfs_da_args_t
*args
, int mapindex
)
1068 xfs_attr_leafblock_t
*leaf
;
1069 xfs_attr_leaf_hdr_t
*hdr
;
1070 xfs_attr_leaf_entry_t
*entry
;
1071 xfs_attr_leaf_name_local_t
*name_loc
;
1072 xfs_attr_leaf_name_remote_t
*name_rmt
;
1073 xfs_attr_leaf_map_t
*map
;
1078 ASSERT(be16_to_cpu(leaf
->hdr
.info
.magic
) == XFS_ATTR_LEAF_MAGIC
);
1080 ASSERT((mapindex
>= 0) && (mapindex
< XFS_ATTR_LEAF_MAPSIZE
));
1081 ASSERT((args
->index
>= 0) && (args
->index
<= be16_to_cpu(hdr
->count
)));
1084 * Force open some space in the entry array and fill it in.
1086 entry
= &leaf
->entries
[args
->index
];
1087 if (args
->index
< be16_to_cpu(hdr
->count
)) {
1088 tmp
= be16_to_cpu(hdr
->count
) - args
->index
;
1089 tmp
*= sizeof(xfs_attr_leaf_entry_t
);
1090 memmove((char *)(entry
+1), (char *)entry
, tmp
);
1091 xfs_da_log_buf(args
->trans
, bp
,
1092 XFS_DA_LOGRANGE(leaf
, entry
, tmp
+ sizeof(*entry
)));
1094 be16_add_cpu(&hdr
->count
, 1);
1097 * Allocate space for the new string (at the end of the run).
1099 map
= &hdr
->freemap
[mapindex
];
1100 mp
= args
->trans
->t_mountp
;
1101 ASSERT(be16_to_cpu(map
->base
) < XFS_LBSIZE(mp
));
1102 ASSERT((be16_to_cpu(map
->base
) & 0x3) == 0);
1103 ASSERT(be16_to_cpu(map
->size
) >=
1104 xfs_attr_leaf_newentsize(args
->namelen
, args
->valuelen
,
1105 mp
->m_sb
.sb_blocksize
, NULL
));
1106 ASSERT(be16_to_cpu(map
->size
) < XFS_LBSIZE(mp
));
1107 ASSERT((be16_to_cpu(map
->size
) & 0x3) == 0);
1108 be16_add_cpu(&map
->size
,
1109 -xfs_attr_leaf_newentsize(args
->namelen
, args
->valuelen
,
1110 mp
->m_sb
.sb_blocksize
, &tmp
));
1111 entry
->nameidx
= cpu_to_be16(be16_to_cpu(map
->base
) +
1112 be16_to_cpu(map
->size
));
1113 entry
->hashval
= cpu_to_be32(args
->hashval
);
1114 entry
->flags
= tmp
? XFS_ATTR_LOCAL
: 0;
1115 entry
->flags
|= XFS_ATTR_NSP_ARGS_TO_ONDISK(args
->flags
);
1116 if (args
->op_flags
& XFS_DA_OP_RENAME
) {
1117 entry
->flags
|= XFS_ATTR_INCOMPLETE
;
1118 if ((args
->blkno2
== args
->blkno
) &&
1119 (args
->index2
<= args
->index
)) {
1123 xfs_da_log_buf(args
->trans
, bp
,
1124 XFS_DA_LOGRANGE(leaf
, entry
, sizeof(*entry
)));
1125 ASSERT((args
->index
== 0) ||
1126 (be32_to_cpu(entry
->hashval
) >= be32_to_cpu((entry
-1)->hashval
)));
1127 ASSERT((args
->index
== be16_to_cpu(hdr
->count
)-1) ||
1128 (be32_to_cpu(entry
->hashval
) <= be32_to_cpu((entry
+1)->hashval
)));
1131 * Copy the attribute name and value into the new space.
1133 * For "remote" attribute values, simply note that we need to
1134 * allocate space for the "remote" value. We can't actually
1135 * allocate the extents in this transaction, and we can't decide
1136 * which blocks they should be as we might allocate more blocks
1137 * as part of this transaction (a split operation for example).
1139 if (entry
->flags
& XFS_ATTR_LOCAL
) {
1140 name_loc
= xfs_attr_leaf_name_local(leaf
, args
->index
);
1141 name_loc
->namelen
= args
->namelen
;
1142 name_loc
->valuelen
= cpu_to_be16(args
->valuelen
);
1143 memcpy((char *)name_loc
->nameval
, args
->name
, args
->namelen
);
1144 memcpy((char *)&name_loc
->nameval
[args
->namelen
], args
->value
,
1145 be16_to_cpu(name_loc
->valuelen
));
1147 name_rmt
= xfs_attr_leaf_name_remote(leaf
, args
->index
);
1148 name_rmt
->namelen
= args
->namelen
;
1149 memcpy((char *)name_rmt
->name
, args
->name
, args
->namelen
);
1150 entry
->flags
|= XFS_ATTR_INCOMPLETE
;
1152 name_rmt
->valuelen
= 0;
1153 name_rmt
->valueblk
= 0;
1155 args
->rmtblkcnt
= XFS_B_TO_FSB(mp
, args
->valuelen
);
1157 xfs_da_log_buf(args
->trans
, bp
,
1158 XFS_DA_LOGRANGE(leaf
, xfs_attr_leaf_name(leaf
, args
->index
),
1159 xfs_attr_leaf_entsize(leaf
, args
->index
)));
1162 * Update the control info for this leaf node
1164 if (be16_to_cpu(entry
->nameidx
) < be16_to_cpu(hdr
->firstused
)) {
1165 /* both on-disk, don't endian-flip twice */
1166 hdr
->firstused
= entry
->nameidx
;
1168 ASSERT(be16_to_cpu(hdr
->firstused
) >=
1169 ((be16_to_cpu(hdr
->count
) * sizeof(*entry
)) + sizeof(*hdr
)));
1170 tmp
= (be16_to_cpu(hdr
->count
)-1) * sizeof(xfs_attr_leaf_entry_t
)
1171 + sizeof(xfs_attr_leaf_hdr_t
);
1172 map
= &hdr
->freemap
[0];
1173 for (i
= 0; i
< XFS_ATTR_LEAF_MAPSIZE
; map
++, i
++) {
1174 if (be16_to_cpu(map
->base
) == tmp
) {
1175 be16_add_cpu(&map
->base
, sizeof(xfs_attr_leaf_entry_t
));
1176 be16_add_cpu(&map
->size
,
1177 -((int)sizeof(xfs_attr_leaf_entry_t
)));
1180 be16_add_cpu(&hdr
->usedbytes
, xfs_attr_leaf_entsize(leaf
, args
->index
));
1181 xfs_da_log_buf(args
->trans
, bp
,
1182 XFS_DA_LOGRANGE(leaf
, hdr
, sizeof(*hdr
)));
1187 * Garbage collect a leaf attribute list block by copying it to a new buffer.
1190 xfs_attr_leaf_compact(xfs_trans_t
*trans
, xfs_dabuf_t
*bp
)
1192 xfs_attr_leafblock_t
*leaf_s
, *leaf_d
;
1193 xfs_attr_leaf_hdr_t
*hdr_s
, *hdr_d
;
1197 mp
= trans
->t_mountp
;
1198 tmpbuffer
= kmem_alloc(XFS_LBSIZE(mp
), KM_SLEEP
);
1199 ASSERT(tmpbuffer
!= NULL
);
1200 memcpy(tmpbuffer
, bp
->data
, XFS_LBSIZE(mp
));
1201 memset(bp
->data
, 0, XFS_LBSIZE(mp
));
1204 * Copy basic information
1206 leaf_s
= (xfs_attr_leafblock_t
*)tmpbuffer
;
1208 hdr_s
= &leaf_s
->hdr
;
1209 hdr_d
= &leaf_d
->hdr
;
1210 hdr_d
->info
= hdr_s
->info
; /* struct copy */
1211 hdr_d
->firstused
= cpu_to_be16(XFS_LBSIZE(mp
));
1212 /* handle truncation gracefully */
1213 if (!hdr_d
->firstused
) {
1214 hdr_d
->firstused
= cpu_to_be16(
1215 XFS_LBSIZE(mp
) - XFS_ATTR_LEAF_NAME_ALIGN
);
1217 hdr_d
->usedbytes
= 0;
1220 hdr_d
->freemap
[0].base
= cpu_to_be16(sizeof(xfs_attr_leaf_hdr_t
));
1221 hdr_d
->freemap
[0].size
= cpu_to_be16(be16_to_cpu(hdr_d
->firstused
) -
1222 sizeof(xfs_attr_leaf_hdr_t
));
1225 * Copy all entry's in the same (sorted) order,
1226 * but allocate name/value pairs packed and in sequence.
1228 xfs_attr_leaf_moveents(leaf_s
, 0, leaf_d
, 0,
1229 be16_to_cpu(hdr_s
->count
), mp
);
1230 xfs_da_log_buf(trans
, bp
, 0, XFS_LBSIZE(mp
) - 1);
1232 kmem_free(tmpbuffer
);
1236 * Redistribute the attribute list entries between two leaf nodes,
1237 * taking into account the size of the new entry.
1239 * NOTE: if new block is empty, then it will get the upper half of the
1240 * old block. At present, all (one) callers pass in an empty second block.
1242 * This code adjusts the args->index/blkno and args->index2/blkno2 fields
1243 * to match what it is doing in splitting the attribute leaf block. Those
1244 * values are used in "atomic rename" operations on attributes. Note that
1245 * the "new" and "old" values can end up in different blocks.
1248 xfs_attr_leaf_rebalance(xfs_da_state_t
*state
, xfs_da_state_blk_t
*blk1
,
1249 xfs_da_state_blk_t
*blk2
)
1251 xfs_da_args_t
*args
;
1252 xfs_da_state_blk_t
*tmp_blk
;
1253 xfs_attr_leafblock_t
*leaf1
, *leaf2
;
1254 xfs_attr_leaf_hdr_t
*hdr1
, *hdr2
;
1255 int count
, totallen
, max
, space
, swap
;
1258 * Set up environment.
1260 ASSERT(blk1
->magic
== XFS_ATTR_LEAF_MAGIC
);
1261 ASSERT(blk2
->magic
== XFS_ATTR_LEAF_MAGIC
);
1262 leaf1
= blk1
->bp
->data
;
1263 leaf2
= blk2
->bp
->data
;
1264 ASSERT(be16_to_cpu(leaf1
->hdr
.info
.magic
) == XFS_ATTR_LEAF_MAGIC
);
1265 ASSERT(be16_to_cpu(leaf2
->hdr
.info
.magic
) == XFS_ATTR_LEAF_MAGIC
);
1269 * Check ordering of blocks, reverse if it makes things simpler.
1271 * NOTE: Given that all (current) callers pass in an empty
1272 * second block, this code should never set "swap".
1275 if (xfs_attr_leaf_order(blk1
->bp
, blk2
->bp
)) {
1279 leaf1
= blk1
->bp
->data
;
1280 leaf2
= blk2
->bp
->data
;
1287 * Examine entries until we reduce the absolute difference in
1288 * byte usage between the two blocks to a minimum. Then get
1289 * the direction to copy and the number of elements to move.
1291 * "inleaf" is true if the new entry should be inserted into blk1.
1292 * If "swap" is also true, then reverse the sense of "inleaf".
1294 state
->inleaf
= xfs_attr_leaf_figure_balance(state
, blk1
, blk2
,
1297 state
->inleaf
= !state
->inleaf
;
1300 * Move any entries required from leaf to leaf:
1302 if (count
< be16_to_cpu(hdr1
->count
)) {
1304 * Figure the total bytes to be added to the destination leaf.
1306 /* number entries being moved */
1307 count
= be16_to_cpu(hdr1
->count
) - count
;
1308 space
= be16_to_cpu(hdr1
->usedbytes
) - totallen
;
1309 space
+= count
* sizeof(xfs_attr_leaf_entry_t
);
1312 * leaf2 is the destination, compact it if it looks tight.
1314 max
= be16_to_cpu(hdr2
->firstused
)
1315 - sizeof(xfs_attr_leaf_hdr_t
);
1316 max
-= be16_to_cpu(hdr2
->count
) * sizeof(xfs_attr_leaf_entry_t
);
1318 xfs_attr_leaf_compact(args
->trans
, blk2
->bp
);
1322 * Move high entries from leaf1 to low end of leaf2.
1324 xfs_attr_leaf_moveents(leaf1
, be16_to_cpu(hdr1
->count
) - count
,
1325 leaf2
, 0, count
, state
->mp
);
1327 xfs_da_log_buf(args
->trans
, blk1
->bp
, 0, state
->blocksize
-1);
1328 xfs_da_log_buf(args
->trans
, blk2
->bp
, 0, state
->blocksize
-1);
1329 } else if (count
> be16_to_cpu(hdr1
->count
)) {
1331 * I assert that since all callers pass in an empty
1332 * second buffer, this code should never execute.
1336 * Figure the total bytes to be added to the destination leaf.
1338 /* number entries being moved */
1339 count
-= be16_to_cpu(hdr1
->count
);
1340 space
= totallen
- be16_to_cpu(hdr1
->usedbytes
);
1341 space
+= count
* sizeof(xfs_attr_leaf_entry_t
);
1344 * leaf1 is the destination, compact it if it looks tight.
1346 max
= be16_to_cpu(hdr1
->firstused
)
1347 - sizeof(xfs_attr_leaf_hdr_t
);
1348 max
-= be16_to_cpu(hdr1
->count
) * sizeof(xfs_attr_leaf_entry_t
);
1350 xfs_attr_leaf_compact(args
->trans
, blk1
->bp
);
1354 * Move low entries from leaf2 to high end of leaf1.
1356 xfs_attr_leaf_moveents(leaf2
, 0, leaf1
,
1357 be16_to_cpu(hdr1
->count
), count
, state
->mp
);
1359 xfs_da_log_buf(args
->trans
, blk1
->bp
, 0, state
->blocksize
-1);
1360 xfs_da_log_buf(args
->trans
, blk2
->bp
, 0, state
->blocksize
-1);
1364 * Copy out last hashval in each block for B-tree code.
1366 blk1
->hashval
= be32_to_cpu(
1367 leaf1
->entries
[be16_to_cpu(leaf1
->hdr
.count
)-1].hashval
);
1368 blk2
->hashval
= be32_to_cpu(
1369 leaf2
->entries
[be16_to_cpu(leaf2
->hdr
.count
)-1].hashval
);
1372 * Adjust the expected index for insertion.
1373 * NOTE: this code depends on the (current) situation that the
1374 * second block was originally empty.
1376 * If the insertion point moved to the 2nd block, we must adjust
1377 * the index. We must also track the entry just following the
1378 * new entry for use in an "atomic rename" operation, that entry
1379 * is always the "old" entry and the "new" entry is what we are
1380 * inserting. The index/blkno fields refer to the "old" entry,
1381 * while the index2/blkno2 fields refer to the "new" entry.
1383 if (blk1
->index
> be16_to_cpu(leaf1
->hdr
.count
)) {
1384 ASSERT(state
->inleaf
== 0);
1385 blk2
->index
= blk1
->index
- be16_to_cpu(leaf1
->hdr
.count
);
1386 args
->index
= args
->index2
= blk2
->index
;
1387 args
->blkno
= args
->blkno2
= blk2
->blkno
;
1388 } else if (blk1
->index
== be16_to_cpu(leaf1
->hdr
.count
)) {
1389 if (state
->inleaf
) {
1390 args
->index
= blk1
->index
;
1391 args
->blkno
= blk1
->blkno
;
1393 args
->blkno2
= blk2
->blkno
;
1395 blk2
->index
= blk1
->index
1396 - be16_to_cpu(leaf1
->hdr
.count
);
1397 args
->index
= args
->index2
= blk2
->index
;
1398 args
->blkno
= args
->blkno2
= blk2
->blkno
;
1401 ASSERT(state
->inleaf
== 1);
1402 args
->index
= args
->index2
= blk1
->index
;
1403 args
->blkno
= args
->blkno2
= blk1
->blkno
;
1408 * Examine entries until we reduce the absolute difference in
1409 * byte usage between the two blocks to a minimum.
1410 * GROT: Is this really necessary? With other than a 512 byte blocksize,
1411 * GROT: there will always be enough room in either block for a new entry.
1412 * GROT: Do a double-split for this case?
1415 xfs_attr_leaf_figure_balance(xfs_da_state_t
*state
,
1416 xfs_da_state_blk_t
*blk1
,
1417 xfs_da_state_blk_t
*blk2
,
1418 int *countarg
, int *usedbytesarg
)
1420 xfs_attr_leafblock_t
*leaf1
, *leaf2
;
1421 xfs_attr_leaf_hdr_t
*hdr1
, *hdr2
;
1422 xfs_attr_leaf_entry_t
*entry
;
1423 int count
, max
, index
, totallen
, half
;
1424 int lastdelta
, foundit
, tmp
;
1427 * Set up environment.
1429 leaf1
= blk1
->bp
->data
;
1430 leaf2
= blk2
->bp
->data
;
1437 * Examine entries until we reduce the absolute difference in
1438 * byte usage between the two blocks to a minimum.
1440 max
= be16_to_cpu(hdr1
->count
) + be16_to_cpu(hdr2
->count
);
1441 half
= (max
+1) * sizeof(*entry
);
1442 half
+= be16_to_cpu(hdr1
->usedbytes
) +
1443 be16_to_cpu(hdr2
->usedbytes
) +
1444 xfs_attr_leaf_newentsize(
1445 state
->args
->namelen
,
1446 state
->args
->valuelen
,
1447 state
->blocksize
, NULL
);
1449 lastdelta
= state
->blocksize
;
1450 entry
= &leaf1
->entries
[0];
1451 for (count
= index
= 0; count
< max
; entry
++, index
++, count
++) {
1453 #define XFS_ATTR_ABS(A) (((A) < 0) ? -(A) : (A))
1455 * The new entry is in the first block, account for it.
1457 if (count
== blk1
->index
) {
1458 tmp
= totallen
+ sizeof(*entry
) +
1459 xfs_attr_leaf_newentsize(
1460 state
->args
->namelen
,
1461 state
->args
->valuelen
,
1462 state
->blocksize
, NULL
);
1463 if (XFS_ATTR_ABS(half
- tmp
) > lastdelta
)
1465 lastdelta
= XFS_ATTR_ABS(half
- tmp
);
1471 * Wrap around into the second block if necessary.
1473 if (count
== be16_to_cpu(hdr1
->count
)) {
1475 entry
= &leaf1
->entries
[0];
1480 * Figure out if next leaf entry would be too much.
1482 tmp
= totallen
+ sizeof(*entry
) + xfs_attr_leaf_entsize(leaf1
,
1484 if (XFS_ATTR_ABS(half
- tmp
) > lastdelta
)
1486 lastdelta
= XFS_ATTR_ABS(half
- tmp
);
1492 * Calculate the number of usedbytes that will end up in lower block.
1493 * If new entry not in lower block, fix up the count.
1495 totallen
-= count
* sizeof(*entry
);
1497 totallen
-= sizeof(*entry
) +
1498 xfs_attr_leaf_newentsize(
1499 state
->args
->namelen
,
1500 state
->args
->valuelen
,
1501 state
->blocksize
, NULL
);
1505 *usedbytesarg
= totallen
;
1509 /*========================================================================
1510 * Routines used for shrinking the Btree.
1511 *========================================================================*/
1514 * Check a leaf block and its neighbors to see if the block should be
1515 * collapsed into one or the other neighbor. Always keep the block
1516 * with the smaller block number.
1517 * If the current block is over 50% full, don't try to join it, return 0.
1518 * If the block is empty, fill in the state structure and return 2.
1519 * If it can be collapsed, fill in the state structure and return 1.
1520 * If nothing can be done, return 0.
1522 * GROT: allow for INCOMPLETE entries in calculation.
1525 xfs_attr_leaf_toosmall(xfs_da_state_t
*state
, int *action
)
1527 xfs_attr_leafblock_t
*leaf
;
1528 xfs_da_state_blk_t
*blk
;
1529 xfs_da_blkinfo_t
*info
;
1530 int count
, bytes
, forward
, error
, retval
, i
;
1535 * Check for the degenerate case of the block being over 50% full.
1536 * If so, it's not worth even looking to see if we might be able
1537 * to coalesce with a sibling.
1539 blk
= &state
->path
.blk
[ state
->path
.active
-1 ];
1540 info
= blk
->bp
->data
;
1541 ASSERT(be16_to_cpu(info
->magic
) == XFS_ATTR_LEAF_MAGIC
);
1542 leaf
= (xfs_attr_leafblock_t
*)info
;
1543 count
= be16_to_cpu(leaf
->hdr
.count
);
1544 bytes
= sizeof(xfs_attr_leaf_hdr_t
) +
1545 count
* sizeof(xfs_attr_leaf_entry_t
) +
1546 be16_to_cpu(leaf
->hdr
.usedbytes
);
1547 if (bytes
> (state
->blocksize
>> 1)) {
1548 *action
= 0; /* blk over 50%, don't try to join */
1553 * Check for the degenerate case of the block being empty.
1554 * If the block is empty, we'll simply delete it, no need to
1555 * coalesce it with a sibling block. We choose (arbitrarily)
1556 * to merge with the forward block unless it is NULL.
1560 * Make altpath point to the block we want to keep and
1561 * path point to the block we want to drop (this one).
1563 forward
= (info
->forw
!= 0);
1564 memcpy(&state
->altpath
, &state
->path
, sizeof(state
->path
));
1565 error
= xfs_da_path_shift(state
, &state
->altpath
, forward
,
1578 * Examine each sibling block to see if we can coalesce with
1579 * at least 25% free space to spare. We need to figure out
1580 * whether to merge with the forward or the backward block.
1581 * We prefer coalescing with the lower numbered sibling so as
1582 * to shrink an attribute list over time.
1584 /* start with smaller blk num */
1585 forward
= (be32_to_cpu(info
->forw
) < be32_to_cpu(info
->back
));
1586 for (i
= 0; i
< 2; forward
= !forward
, i
++) {
1588 blkno
= be32_to_cpu(info
->forw
);
1590 blkno
= be32_to_cpu(info
->back
);
1593 error
= xfs_da_read_buf(state
->args
->trans
, state
->args
->dp
,
1594 blkno
, -1, &bp
, XFS_ATTR_FORK
);
1599 leaf
= (xfs_attr_leafblock_t
*)info
;
1600 count
= be16_to_cpu(leaf
->hdr
.count
);
1601 bytes
= state
->blocksize
- (state
->blocksize
>>2);
1602 bytes
-= be16_to_cpu(leaf
->hdr
.usedbytes
);
1604 ASSERT(be16_to_cpu(leaf
->hdr
.info
.magic
) == XFS_ATTR_LEAF_MAGIC
);
1605 count
+= be16_to_cpu(leaf
->hdr
.count
);
1606 bytes
-= be16_to_cpu(leaf
->hdr
.usedbytes
);
1607 bytes
-= count
* sizeof(xfs_attr_leaf_entry_t
);
1608 bytes
-= sizeof(xfs_attr_leaf_hdr_t
);
1609 xfs_da_brelse(state
->args
->trans
, bp
);
1611 break; /* fits with at least 25% to spare */
1619 * Make altpath point to the block we want to keep (the lower
1620 * numbered block) and path point to the block we want to drop.
1622 memcpy(&state
->altpath
, &state
->path
, sizeof(state
->path
));
1623 if (blkno
< blk
->blkno
) {
1624 error
= xfs_da_path_shift(state
, &state
->altpath
, forward
,
1627 error
= xfs_da_path_shift(state
, &state
->path
, forward
,
1641 * Remove a name from the leaf attribute list structure.
1643 * Return 1 if leaf is less than 37% full, 0 if >= 37% full.
1644 * If two leaves are 37% full, when combined they will leave 25% free.
1647 xfs_attr_leaf_remove(xfs_dabuf_t
*bp
, xfs_da_args_t
*args
)
1649 xfs_attr_leafblock_t
*leaf
;
1650 xfs_attr_leaf_hdr_t
*hdr
;
1651 xfs_attr_leaf_map_t
*map
;
1652 xfs_attr_leaf_entry_t
*entry
;
1653 int before
, after
, smallest
, entsize
;
1654 int tablesize
, tmp
, i
;
1658 ASSERT(be16_to_cpu(leaf
->hdr
.info
.magic
) == XFS_ATTR_LEAF_MAGIC
);
1660 mp
= args
->trans
->t_mountp
;
1661 ASSERT((be16_to_cpu(hdr
->count
) > 0)
1662 && (be16_to_cpu(hdr
->count
) < (XFS_LBSIZE(mp
)/8)));
1663 ASSERT((args
->index
>= 0)
1664 && (args
->index
< be16_to_cpu(hdr
->count
)));
1665 ASSERT(be16_to_cpu(hdr
->firstused
) >=
1666 ((be16_to_cpu(hdr
->count
) * sizeof(*entry
)) + sizeof(*hdr
)));
1667 entry
= &leaf
->entries
[args
->index
];
1668 ASSERT(be16_to_cpu(entry
->nameidx
) >= be16_to_cpu(hdr
->firstused
));
1669 ASSERT(be16_to_cpu(entry
->nameidx
) < XFS_LBSIZE(mp
));
1672 * Scan through free region table:
1673 * check for adjacency of free'd entry with an existing one,
1674 * find smallest free region in case we need to replace it,
1675 * adjust any map that borders the entry table,
1677 tablesize
= be16_to_cpu(hdr
->count
) * sizeof(xfs_attr_leaf_entry_t
)
1678 + sizeof(xfs_attr_leaf_hdr_t
);
1679 map
= &hdr
->freemap
[0];
1680 tmp
= be16_to_cpu(map
->size
);
1681 before
= after
= -1;
1682 smallest
= XFS_ATTR_LEAF_MAPSIZE
- 1;
1683 entsize
= xfs_attr_leaf_entsize(leaf
, args
->index
);
1684 for (i
= 0; i
< XFS_ATTR_LEAF_MAPSIZE
; map
++, i
++) {
1685 ASSERT(be16_to_cpu(map
->base
) < XFS_LBSIZE(mp
));
1686 ASSERT(be16_to_cpu(map
->size
) < XFS_LBSIZE(mp
));
1687 if (be16_to_cpu(map
->base
) == tablesize
) {
1688 be16_add_cpu(&map
->base
,
1689 -((int)sizeof(xfs_attr_leaf_entry_t
)));
1690 be16_add_cpu(&map
->size
, sizeof(xfs_attr_leaf_entry_t
));
1693 if ((be16_to_cpu(map
->base
) + be16_to_cpu(map
->size
))
1694 == be16_to_cpu(entry
->nameidx
)) {
1696 } else if (be16_to_cpu(map
->base
)
1697 == (be16_to_cpu(entry
->nameidx
) + entsize
)) {
1699 } else if (be16_to_cpu(map
->size
) < tmp
) {
1700 tmp
= be16_to_cpu(map
->size
);
1706 * Coalesce adjacent freemap regions,
1707 * or replace the smallest region.
1709 if ((before
>= 0) || (after
>= 0)) {
1710 if ((before
>= 0) && (after
>= 0)) {
1711 map
= &hdr
->freemap
[before
];
1712 be16_add_cpu(&map
->size
, entsize
);
1713 be16_add_cpu(&map
->size
,
1714 be16_to_cpu(hdr
->freemap
[after
].size
));
1715 hdr
->freemap
[after
].base
= 0;
1716 hdr
->freemap
[after
].size
= 0;
1717 } else if (before
>= 0) {
1718 map
= &hdr
->freemap
[before
];
1719 be16_add_cpu(&map
->size
, entsize
);
1721 map
= &hdr
->freemap
[after
];
1722 /* both on-disk, don't endian flip twice */
1723 map
->base
= entry
->nameidx
;
1724 be16_add_cpu(&map
->size
, entsize
);
1728 * Replace smallest region (if it is smaller than free'd entry)
1730 map
= &hdr
->freemap
[smallest
];
1731 if (be16_to_cpu(map
->size
) < entsize
) {
1732 map
->base
= cpu_to_be16(be16_to_cpu(entry
->nameidx
));
1733 map
->size
= cpu_to_be16(entsize
);
1738 * Did we remove the first entry?
1740 if (be16_to_cpu(entry
->nameidx
) == be16_to_cpu(hdr
->firstused
))
1746 * Compress the remaining entries and zero out the removed stuff.
1748 memset(xfs_attr_leaf_name(leaf
, args
->index
), 0, entsize
);
1749 be16_add_cpu(&hdr
->usedbytes
, -entsize
);
1750 xfs_da_log_buf(args
->trans
, bp
,
1751 XFS_DA_LOGRANGE(leaf
, xfs_attr_leaf_name(leaf
, args
->index
),
1754 tmp
= (be16_to_cpu(hdr
->count
) - args
->index
)
1755 * sizeof(xfs_attr_leaf_entry_t
);
1756 memmove((char *)entry
, (char *)(entry
+1), tmp
);
1757 be16_add_cpu(&hdr
->count
, -1);
1758 xfs_da_log_buf(args
->trans
, bp
,
1759 XFS_DA_LOGRANGE(leaf
, entry
, tmp
+ sizeof(*entry
)));
1760 entry
= &leaf
->entries
[be16_to_cpu(hdr
->count
)];
1761 memset((char *)entry
, 0, sizeof(xfs_attr_leaf_entry_t
));
1764 * If we removed the first entry, re-find the first used byte
1765 * in the name area. Note that if the entry was the "firstused",
1766 * then we don't have a "hole" in our block resulting from
1767 * removing the name.
1770 tmp
= XFS_LBSIZE(mp
);
1771 entry
= &leaf
->entries
[0];
1772 for (i
= be16_to_cpu(hdr
->count
)-1; i
>= 0; entry
++, i
--) {
1773 ASSERT(be16_to_cpu(entry
->nameidx
) >=
1774 be16_to_cpu(hdr
->firstused
));
1775 ASSERT(be16_to_cpu(entry
->nameidx
) < XFS_LBSIZE(mp
));
1777 if (be16_to_cpu(entry
->nameidx
) < tmp
)
1778 tmp
= be16_to_cpu(entry
->nameidx
);
1780 hdr
->firstused
= cpu_to_be16(tmp
);
1781 if (!hdr
->firstused
) {
1782 hdr
->firstused
= cpu_to_be16(
1783 tmp
- XFS_ATTR_LEAF_NAME_ALIGN
);
1786 hdr
->holes
= 1; /* mark as needing compaction */
1788 xfs_da_log_buf(args
->trans
, bp
,
1789 XFS_DA_LOGRANGE(leaf
, hdr
, sizeof(*hdr
)));
1792 * Check if leaf is less than 50% full, caller may want to
1793 * "join" the leaf with a sibling if so.
1795 tmp
= sizeof(xfs_attr_leaf_hdr_t
);
1796 tmp
+= be16_to_cpu(leaf
->hdr
.count
) * sizeof(xfs_attr_leaf_entry_t
);
1797 tmp
+= be16_to_cpu(leaf
->hdr
.usedbytes
);
1798 return(tmp
< mp
->m_attr_magicpct
); /* leaf is < 37% full */
1802 * Move all the attribute list entries from drop_leaf into save_leaf.
1805 xfs_attr_leaf_unbalance(xfs_da_state_t
*state
, xfs_da_state_blk_t
*drop_blk
,
1806 xfs_da_state_blk_t
*save_blk
)
1808 xfs_attr_leafblock_t
*drop_leaf
, *save_leaf
, *tmp_leaf
;
1809 xfs_attr_leaf_hdr_t
*drop_hdr
, *save_hdr
, *tmp_hdr
;
1814 * Set up environment.
1817 ASSERT(drop_blk
->magic
== XFS_ATTR_LEAF_MAGIC
);
1818 ASSERT(save_blk
->magic
== XFS_ATTR_LEAF_MAGIC
);
1819 drop_leaf
= drop_blk
->bp
->data
;
1820 save_leaf
= save_blk
->bp
->data
;
1821 ASSERT(be16_to_cpu(drop_leaf
->hdr
.info
.magic
) == XFS_ATTR_LEAF_MAGIC
);
1822 ASSERT(be16_to_cpu(save_leaf
->hdr
.info
.magic
) == XFS_ATTR_LEAF_MAGIC
);
1823 drop_hdr
= &drop_leaf
->hdr
;
1824 save_hdr
= &save_leaf
->hdr
;
1827 * Save last hashval from dying block for later Btree fixup.
1829 drop_blk
->hashval
= be32_to_cpu(
1830 drop_leaf
->entries
[be16_to_cpu(drop_leaf
->hdr
.count
)-1].hashval
);
1833 * Check if we need a temp buffer, or can we do it in place.
1834 * Note that we don't check "leaf" for holes because we will
1835 * always be dropping it, toosmall() decided that for us already.
1837 if (save_hdr
->holes
== 0) {
1839 * dest leaf has no holes, so we add there. May need
1840 * to make some room in the entry array.
1842 if (xfs_attr_leaf_order(save_blk
->bp
, drop_blk
->bp
)) {
1843 xfs_attr_leaf_moveents(drop_leaf
, 0, save_leaf
, 0,
1844 be16_to_cpu(drop_hdr
->count
), mp
);
1846 xfs_attr_leaf_moveents(drop_leaf
, 0, save_leaf
,
1847 be16_to_cpu(save_hdr
->count
),
1848 be16_to_cpu(drop_hdr
->count
), mp
);
1852 * Destination has holes, so we make a temporary copy
1853 * of the leaf and add them both to that.
1855 tmpbuffer
= kmem_alloc(state
->blocksize
, KM_SLEEP
);
1856 ASSERT(tmpbuffer
!= NULL
);
1857 memset(tmpbuffer
, 0, state
->blocksize
);
1858 tmp_leaf
= (xfs_attr_leafblock_t
*)tmpbuffer
;
1859 tmp_hdr
= &tmp_leaf
->hdr
;
1860 tmp_hdr
->info
= save_hdr
->info
; /* struct copy */
1862 tmp_hdr
->firstused
= cpu_to_be16(state
->blocksize
);
1863 if (!tmp_hdr
->firstused
) {
1864 tmp_hdr
->firstused
= cpu_to_be16(
1865 state
->blocksize
- XFS_ATTR_LEAF_NAME_ALIGN
);
1867 tmp_hdr
->usedbytes
= 0;
1868 if (xfs_attr_leaf_order(save_blk
->bp
, drop_blk
->bp
)) {
1869 xfs_attr_leaf_moveents(drop_leaf
, 0, tmp_leaf
, 0,
1870 be16_to_cpu(drop_hdr
->count
), mp
);
1871 xfs_attr_leaf_moveents(save_leaf
, 0, tmp_leaf
,
1872 be16_to_cpu(tmp_leaf
->hdr
.count
),
1873 be16_to_cpu(save_hdr
->count
), mp
);
1875 xfs_attr_leaf_moveents(save_leaf
, 0, tmp_leaf
, 0,
1876 be16_to_cpu(save_hdr
->count
), mp
);
1877 xfs_attr_leaf_moveents(drop_leaf
, 0, tmp_leaf
,
1878 be16_to_cpu(tmp_leaf
->hdr
.count
),
1879 be16_to_cpu(drop_hdr
->count
), mp
);
1881 memcpy((char *)save_leaf
, (char *)tmp_leaf
, state
->blocksize
);
1882 kmem_free(tmpbuffer
);
1885 xfs_da_log_buf(state
->args
->trans
, save_blk
->bp
, 0,
1886 state
->blocksize
- 1);
1889 * Copy out last hashval in each block for B-tree code.
1891 save_blk
->hashval
= be32_to_cpu(
1892 save_leaf
->entries
[be16_to_cpu(save_leaf
->hdr
.count
)-1].hashval
);
1895 /*========================================================================
1896 * Routines used for finding things in the Btree.
1897 *========================================================================*/
1900 * Look up a name in a leaf attribute list structure.
1901 * This is the internal routine, it uses the caller's buffer.
1903 * Note that duplicate keys are allowed, but only check within the
1904 * current leaf node. The Btree code must check in adjacent leaf nodes.
1906 * Return in args->index the index into the entry[] array of either
1907 * the found entry, or where the entry should have been (insert before
1910 * Don't change the args->value unless we find the attribute.
1913 xfs_attr_leaf_lookup_int(xfs_dabuf_t
*bp
, xfs_da_args_t
*args
)
1915 xfs_attr_leafblock_t
*leaf
;
1916 xfs_attr_leaf_entry_t
*entry
;
1917 xfs_attr_leaf_name_local_t
*name_loc
;
1918 xfs_attr_leaf_name_remote_t
*name_rmt
;
1920 xfs_dahash_t hashval
;
1923 ASSERT(be16_to_cpu(leaf
->hdr
.info
.magic
) == XFS_ATTR_LEAF_MAGIC
);
1924 ASSERT(be16_to_cpu(leaf
->hdr
.count
)
1925 < (XFS_LBSIZE(args
->dp
->i_mount
)/8));
1928 * Binary search. (note: small blocks will skip this loop)
1930 hashval
= args
->hashval
;
1931 probe
= span
= be16_to_cpu(leaf
->hdr
.count
) / 2;
1932 for (entry
= &leaf
->entries
[probe
]; span
> 4;
1933 entry
= &leaf
->entries
[probe
]) {
1935 if (be32_to_cpu(entry
->hashval
) < hashval
)
1937 else if (be32_to_cpu(entry
->hashval
) > hashval
)
1942 ASSERT((probe
>= 0) &&
1944 || (probe
< be16_to_cpu(leaf
->hdr
.count
))));
1945 ASSERT((span
<= 4) || (be32_to_cpu(entry
->hashval
) == hashval
));
1948 * Since we may have duplicate hashval's, find the first matching
1949 * hashval in the leaf.
1951 while ((probe
> 0) && (be32_to_cpu(entry
->hashval
) >= hashval
)) {
1955 while ((probe
< be16_to_cpu(leaf
->hdr
.count
)) &&
1956 (be32_to_cpu(entry
->hashval
) < hashval
)) {
1960 if ((probe
== be16_to_cpu(leaf
->hdr
.count
)) ||
1961 (be32_to_cpu(entry
->hashval
) != hashval
)) {
1962 args
->index
= probe
;
1963 return(XFS_ERROR(ENOATTR
));
1967 * Duplicate keys may be present, so search all of them for a match.
1969 for ( ; (probe
< be16_to_cpu(leaf
->hdr
.count
)) &&
1970 (be32_to_cpu(entry
->hashval
) == hashval
);
1973 * GROT: Add code to remove incomplete entries.
1976 * If we are looking for INCOMPLETE entries, show only those.
1977 * If we are looking for complete entries, show only those.
1979 if ((args
->flags
& XFS_ATTR_INCOMPLETE
) !=
1980 (entry
->flags
& XFS_ATTR_INCOMPLETE
)) {
1983 if (entry
->flags
& XFS_ATTR_LOCAL
) {
1984 name_loc
= xfs_attr_leaf_name_local(leaf
, probe
);
1985 if (name_loc
->namelen
!= args
->namelen
)
1987 if (memcmp(args
->name
, (char *)name_loc
->nameval
, args
->namelen
) != 0)
1989 if (!xfs_attr_namesp_match(args
->flags
, entry
->flags
))
1991 args
->index
= probe
;
1992 return(XFS_ERROR(EEXIST
));
1994 name_rmt
= xfs_attr_leaf_name_remote(leaf
, probe
);
1995 if (name_rmt
->namelen
!= args
->namelen
)
1997 if (memcmp(args
->name
, (char *)name_rmt
->name
,
1998 args
->namelen
) != 0)
2000 if (!xfs_attr_namesp_match(args
->flags
, entry
->flags
))
2002 args
->index
= probe
;
2003 args
->rmtblkno
= be32_to_cpu(name_rmt
->valueblk
);
2004 args
->rmtblkcnt
= XFS_B_TO_FSB(args
->dp
->i_mount
,
2005 be32_to_cpu(name_rmt
->valuelen
));
2006 return(XFS_ERROR(EEXIST
));
2009 args
->index
= probe
;
2010 return(XFS_ERROR(ENOATTR
));
2014 * Get the value associated with an attribute name from a leaf attribute
2018 xfs_attr_leaf_getvalue(xfs_dabuf_t
*bp
, xfs_da_args_t
*args
)
2021 xfs_attr_leafblock_t
*leaf
;
2022 xfs_attr_leaf_entry_t
*entry
;
2023 xfs_attr_leaf_name_local_t
*name_loc
;
2024 xfs_attr_leaf_name_remote_t
*name_rmt
;
2027 ASSERT(be16_to_cpu(leaf
->hdr
.info
.magic
) == XFS_ATTR_LEAF_MAGIC
);
2028 ASSERT(be16_to_cpu(leaf
->hdr
.count
)
2029 < (XFS_LBSIZE(args
->dp
->i_mount
)/8));
2030 ASSERT(args
->index
< be16_to_cpu(leaf
->hdr
.count
));
2032 entry
= &leaf
->entries
[args
->index
];
2033 if (entry
->flags
& XFS_ATTR_LOCAL
) {
2034 name_loc
= xfs_attr_leaf_name_local(leaf
, args
->index
);
2035 ASSERT(name_loc
->namelen
== args
->namelen
);
2036 ASSERT(memcmp(args
->name
, name_loc
->nameval
, args
->namelen
) == 0);
2037 valuelen
= be16_to_cpu(name_loc
->valuelen
);
2038 if (args
->flags
& ATTR_KERNOVAL
) {
2039 args
->valuelen
= valuelen
;
2042 if (args
->valuelen
< valuelen
) {
2043 args
->valuelen
= valuelen
;
2044 return(XFS_ERROR(ERANGE
));
2046 args
->valuelen
= valuelen
;
2047 memcpy(args
->value
, &name_loc
->nameval
[args
->namelen
], valuelen
);
2049 name_rmt
= xfs_attr_leaf_name_remote(leaf
, args
->index
);
2050 ASSERT(name_rmt
->namelen
== args
->namelen
);
2051 ASSERT(memcmp(args
->name
, name_rmt
->name
, args
->namelen
) == 0);
2052 valuelen
= be32_to_cpu(name_rmt
->valuelen
);
2053 args
->rmtblkno
= be32_to_cpu(name_rmt
->valueblk
);
2054 args
->rmtblkcnt
= XFS_B_TO_FSB(args
->dp
->i_mount
, valuelen
);
2055 if (args
->flags
& ATTR_KERNOVAL
) {
2056 args
->valuelen
= valuelen
;
2059 if (args
->valuelen
< valuelen
) {
2060 args
->valuelen
= valuelen
;
2061 return(XFS_ERROR(ERANGE
));
2063 args
->valuelen
= valuelen
;
2068 /*========================================================================
2070 *========================================================================*/
2073 * Move the indicated entries from one leaf to another.
2074 * NOTE: this routine modifies both source and destination leaves.
2078 xfs_attr_leaf_moveents(xfs_attr_leafblock_t
*leaf_s
, int start_s
,
2079 xfs_attr_leafblock_t
*leaf_d
, int start_d
,
2080 int count
, xfs_mount_t
*mp
)
2082 xfs_attr_leaf_hdr_t
*hdr_s
, *hdr_d
;
2083 xfs_attr_leaf_entry_t
*entry_s
, *entry_d
;
2087 * Check for nothing to do.
2093 * Set up environment.
2095 ASSERT(be16_to_cpu(leaf_s
->hdr
.info
.magic
) == XFS_ATTR_LEAF_MAGIC
);
2096 ASSERT(be16_to_cpu(leaf_d
->hdr
.info
.magic
) == XFS_ATTR_LEAF_MAGIC
);
2097 hdr_s
= &leaf_s
->hdr
;
2098 hdr_d
= &leaf_d
->hdr
;
2099 ASSERT((be16_to_cpu(hdr_s
->count
) > 0) &&
2100 (be16_to_cpu(hdr_s
->count
) < (XFS_LBSIZE(mp
)/8)));
2101 ASSERT(be16_to_cpu(hdr_s
->firstused
) >=
2102 ((be16_to_cpu(hdr_s
->count
)
2103 * sizeof(*entry_s
))+sizeof(*hdr_s
)));
2104 ASSERT(be16_to_cpu(hdr_d
->count
) < (XFS_LBSIZE(mp
)/8));
2105 ASSERT(be16_to_cpu(hdr_d
->firstused
) >=
2106 ((be16_to_cpu(hdr_d
->count
)
2107 * sizeof(*entry_d
))+sizeof(*hdr_d
)));
2109 ASSERT(start_s
< be16_to_cpu(hdr_s
->count
));
2110 ASSERT(start_d
<= be16_to_cpu(hdr_d
->count
));
2111 ASSERT(count
<= be16_to_cpu(hdr_s
->count
));
2114 * Move the entries in the destination leaf up to make a hole?
2116 if (start_d
< be16_to_cpu(hdr_d
->count
)) {
2117 tmp
= be16_to_cpu(hdr_d
->count
) - start_d
;
2118 tmp
*= sizeof(xfs_attr_leaf_entry_t
);
2119 entry_s
= &leaf_d
->entries
[start_d
];
2120 entry_d
= &leaf_d
->entries
[start_d
+ count
];
2121 memmove((char *)entry_d
, (char *)entry_s
, tmp
);
2125 * Copy all entry's in the same (sorted) order,
2126 * but allocate attribute info packed and in sequence.
2128 entry_s
= &leaf_s
->entries
[start_s
];
2129 entry_d
= &leaf_d
->entries
[start_d
];
2131 for (i
= 0; i
< count
; entry_s
++, entry_d
++, desti
++, i
++) {
2132 ASSERT(be16_to_cpu(entry_s
->nameidx
)
2133 >= be16_to_cpu(hdr_s
->firstused
));
2134 tmp
= xfs_attr_leaf_entsize(leaf_s
, start_s
+ i
);
2137 * Code to drop INCOMPLETE entries. Difficult to use as we
2138 * may also need to change the insertion index. Code turned
2139 * off for 6.2, should be revisited later.
2141 if (entry_s
->flags
& XFS_ATTR_INCOMPLETE
) { /* skip partials? */
2142 memset(xfs_attr_leaf_name(leaf_s
, start_s
+ i
), 0, tmp
);
2143 be16_add_cpu(&hdr_s
->usedbytes
, -tmp
);
2144 be16_add_cpu(&hdr_s
->count
, -1);
2145 entry_d
--; /* to compensate for ++ in loop hdr */
2147 if ((start_s
+ i
) < offset
)
2148 result
++; /* insertion index adjustment */
2151 be16_add_cpu(&hdr_d
->firstused
, -tmp
);
2152 /* both on-disk, don't endian flip twice */
2153 entry_d
->hashval
= entry_s
->hashval
;
2154 /* both on-disk, don't endian flip twice */
2155 entry_d
->nameidx
= hdr_d
->firstused
;
2156 entry_d
->flags
= entry_s
->flags
;
2157 ASSERT(be16_to_cpu(entry_d
->nameidx
) + tmp
2159 memmove(xfs_attr_leaf_name(leaf_d
, desti
),
2160 xfs_attr_leaf_name(leaf_s
, start_s
+ i
), tmp
);
2161 ASSERT(be16_to_cpu(entry_s
->nameidx
) + tmp
2163 memset(xfs_attr_leaf_name(leaf_s
, start_s
+ i
), 0, tmp
);
2164 be16_add_cpu(&hdr_s
->usedbytes
, -tmp
);
2165 be16_add_cpu(&hdr_d
->usedbytes
, tmp
);
2166 be16_add_cpu(&hdr_s
->count
, -1);
2167 be16_add_cpu(&hdr_d
->count
, 1);
2168 tmp
= be16_to_cpu(hdr_d
->count
)
2169 * sizeof(xfs_attr_leaf_entry_t
)
2170 + sizeof(xfs_attr_leaf_hdr_t
);
2171 ASSERT(be16_to_cpu(hdr_d
->firstused
) >= tmp
);
2178 * Zero out the entries we just copied.
2180 if (start_s
== be16_to_cpu(hdr_s
->count
)) {
2181 tmp
= count
* sizeof(xfs_attr_leaf_entry_t
);
2182 entry_s
= &leaf_s
->entries
[start_s
];
2183 ASSERT(((char *)entry_s
+ tmp
) <=
2184 ((char *)leaf_s
+ XFS_LBSIZE(mp
)));
2185 memset((char *)entry_s
, 0, tmp
);
2188 * Move the remaining entries down to fill the hole,
2189 * then zero the entries at the top.
2191 tmp
= be16_to_cpu(hdr_s
->count
) - count
;
2192 tmp
*= sizeof(xfs_attr_leaf_entry_t
);
2193 entry_s
= &leaf_s
->entries
[start_s
+ count
];
2194 entry_d
= &leaf_s
->entries
[start_s
];
2195 memmove((char *)entry_d
, (char *)entry_s
, tmp
);
2197 tmp
= count
* sizeof(xfs_attr_leaf_entry_t
);
2198 entry_s
= &leaf_s
->entries
[be16_to_cpu(hdr_s
->count
)];
2199 ASSERT(((char *)entry_s
+ tmp
) <=
2200 ((char *)leaf_s
+ XFS_LBSIZE(mp
)));
2201 memset((char *)entry_s
, 0, tmp
);
2205 * Fill in the freemap information
2207 hdr_d
->freemap
[0].base
= cpu_to_be16(sizeof(xfs_attr_leaf_hdr_t
));
2208 be16_add_cpu(&hdr_d
->freemap
[0].base
, be16_to_cpu(hdr_d
->count
) *
2209 sizeof(xfs_attr_leaf_entry_t
));
2210 hdr_d
->freemap
[0].size
= cpu_to_be16(be16_to_cpu(hdr_d
->firstused
)
2211 - be16_to_cpu(hdr_d
->freemap
[0].base
));
2212 hdr_d
->freemap
[1].base
= 0;
2213 hdr_d
->freemap
[2].base
= 0;
2214 hdr_d
->freemap
[1].size
= 0;
2215 hdr_d
->freemap
[2].size
= 0;
2216 hdr_s
->holes
= 1; /* leaf may not be compact */
2220 * Compare two leaf blocks "order".
2221 * Return 0 unless leaf2 should go before leaf1.
2224 xfs_attr_leaf_order(xfs_dabuf_t
*leaf1_bp
, xfs_dabuf_t
*leaf2_bp
)
2226 xfs_attr_leafblock_t
*leaf1
, *leaf2
;
2228 leaf1
= leaf1_bp
->data
;
2229 leaf2
= leaf2_bp
->data
;
2230 ASSERT((be16_to_cpu(leaf1
->hdr
.info
.magic
) == XFS_ATTR_LEAF_MAGIC
) &&
2231 (be16_to_cpu(leaf2
->hdr
.info
.magic
) == XFS_ATTR_LEAF_MAGIC
));
2232 if ((be16_to_cpu(leaf1
->hdr
.count
) > 0) &&
2233 (be16_to_cpu(leaf2
->hdr
.count
) > 0) &&
2234 ((be32_to_cpu(leaf2
->entries
[0].hashval
) <
2235 be32_to_cpu(leaf1
->entries
[0].hashval
)) ||
2236 (be32_to_cpu(leaf2
->entries
[
2237 be16_to_cpu(leaf2
->hdr
.count
)-1].hashval
) <
2238 be32_to_cpu(leaf1
->entries
[
2239 be16_to_cpu(leaf1
->hdr
.count
)-1].hashval
)))) {
2246 * Pick up the last hashvalue from a leaf block.
2249 xfs_attr_leaf_lasthash(xfs_dabuf_t
*bp
, int *count
)
2251 xfs_attr_leafblock_t
*leaf
;
2254 ASSERT(be16_to_cpu(leaf
->hdr
.info
.magic
) == XFS_ATTR_LEAF_MAGIC
);
2256 *count
= be16_to_cpu(leaf
->hdr
.count
);
2257 if (!leaf
->hdr
.count
)
2259 return be32_to_cpu(leaf
->entries
[be16_to_cpu(leaf
->hdr
.count
)-1].hashval
);
2263 * Calculate the number of bytes used to store the indicated attribute
2264 * (whether local or remote only calculate bytes in this block).
2267 xfs_attr_leaf_entsize(xfs_attr_leafblock_t
*leaf
, int index
)
2269 xfs_attr_leaf_name_local_t
*name_loc
;
2270 xfs_attr_leaf_name_remote_t
*name_rmt
;
2273 ASSERT(be16_to_cpu(leaf
->hdr
.info
.magic
) == XFS_ATTR_LEAF_MAGIC
);
2274 if (leaf
->entries
[index
].flags
& XFS_ATTR_LOCAL
) {
2275 name_loc
= xfs_attr_leaf_name_local(leaf
, index
);
2276 size
= xfs_attr_leaf_entsize_local(name_loc
->namelen
,
2277 be16_to_cpu(name_loc
->valuelen
));
2279 name_rmt
= xfs_attr_leaf_name_remote(leaf
, index
);
2280 size
= xfs_attr_leaf_entsize_remote(name_rmt
->namelen
);
2286 * Calculate the number of bytes that would be required to store the new
2287 * attribute (whether local or remote only calculate bytes in this block).
2288 * This routine decides as a side effect whether the attribute will be
2289 * a "local" or a "remote" attribute.
2292 xfs_attr_leaf_newentsize(int namelen
, int valuelen
, int blocksize
, int *local
)
2296 size
= xfs_attr_leaf_entsize_local(namelen
, valuelen
);
2297 if (size
< xfs_attr_leaf_entsize_local_max(blocksize
)) {
2302 size
= xfs_attr_leaf_entsize_remote(namelen
);
2311 * Copy out attribute list entries for attr_list(), for leaf attribute lists.
2314 xfs_attr_leaf_list_int(xfs_dabuf_t
*bp
, xfs_attr_list_context_t
*context
)
2316 attrlist_cursor_kern_t
*cursor
;
2317 xfs_attr_leafblock_t
*leaf
;
2318 xfs_attr_leaf_entry_t
*entry
;
2323 cursor
= context
->cursor
;
2324 cursor
->initted
= 1;
2326 xfs_attr_trace_l_cl("blk start", context
, leaf
);
2329 * Re-find our place in the leaf block if this is a new syscall.
2331 if (context
->resynch
) {
2332 entry
= &leaf
->entries
[0];
2333 for (i
= 0; i
< be16_to_cpu(leaf
->hdr
.count
); entry
++, i
++) {
2334 if (be32_to_cpu(entry
->hashval
) == cursor
->hashval
) {
2335 if (cursor
->offset
== context
->dupcnt
) {
2336 context
->dupcnt
= 0;
2340 } else if (be32_to_cpu(entry
->hashval
) >
2342 context
->dupcnt
= 0;
2346 if (i
== be16_to_cpu(leaf
->hdr
.count
)) {
2347 xfs_attr_trace_l_c("not found", context
);
2351 entry
= &leaf
->entries
[0];
2354 context
->resynch
= 0;
2357 * We have found our place, start copying out the new attributes.
2360 for ( ; (i
< be16_to_cpu(leaf
->hdr
.count
)); entry
++, i
++) {
2361 if (be32_to_cpu(entry
->hashval
) != cursor
->hashval
) {
2362 cursor
->hashval
= be32_to_cpu(entry
->hashval
);
2366 if (entry
->flags
& XFS_ATTR_INCOMPLETE
)
2367 continue; /* skip incomplete entries */
2369 if (entry
->flags
& XFS_ATTR_LOCAL
) {
2370 xfs_attr_leaf_name_local_t
*name_loc
=
2371 xfs_attr_leaf_name_local(leaf
, i
);
2373 retval
= context
->put_listent(context
,
2375 (char *)name_loc
->nameval
,
2376 (int)name_loc
->namelen
,
2377 be16_to_cpu(name_loc
->valuelen
),
2378 (char *)&name_loc
->nameval
[name_loc
->namelen
]);
2382 xfs_attr_leaf_name_remote_t
*name_rmt
=
2383 xfs_attr_leaf_name_remote(leaf
, i
);
2385 int valuelen
= be32_to_cpu(name_rmt
->valuelen
);
2387 if (context
->put_value
) {
2390 memset((char *)&args
, 0, sizeof(args
));
2391 args
.dp
= context
->dp
;
2392 args
.whichfork
= XFS_ATTR_FORK
;
2393 args
.valuelen
= valuelen
;
2394 args
.value
= kmem_alloc(valuelen
, KM_SLEEP
);
2395 args
.rmtblkno
= be32_to_cpu(name_rmt
->valueblk
);
2396 args
.rmtblkcnt
= XFS_B_TO_FSB(args
.dp
->i_mount
, valuelen
);
2397 retval
= xfs_attr_rmtval_get(&args
);
2400 retval
= context
->put_listent(context
,
2402 (char *)name_rmt
->name
,
2403 (int)name_rmt
->namelen
,
2406 kmem_free(args
.value
);
2408 retval
= context
->put_listent(context
,
2410 (char *)name_rmt
->name
,
2411 (int)name_rmt
->namelen
,
2418 if (context
->seen_enough
)
2422 xfs_attr_trace_l_cl("blk end", context
, leaf
);
2427 /*========================================================================
2428 * Manage the INCOMPLETE flag in a leaf entry
2429 *========================================================================*/
2432 * Clear the INCOMPLETE flag on an entry in a leaf block.
2435 xfs_attr_leaf_clearflag(xfs_da_args_t
*args
)
2437 xfs_attr_leafblock_t
*leaf
;
2438 xfs_attr_leaf_entry_t
*entry
;
2439 xfs_attr_leaf_name_remote_t
*name_rmt
;
2443 xfs_attr_leaf_name_local_t
*name_loc
;
2449 * Set up the operation.
2451 error
= xfs_da_read_buf(args
->trans
, args
->dp
, args
->blkno
, -1, &bp
,
2459 ASSERT(be16_to_cpu(leaf
->hdr
.info
.magic
) == XFS_ATTR_LEAF_MAGIC
);
2460 ASSERT(args
->index
< be16_to_cpu(leaf
->hdr
.count
));
2461 ASSERT(args
->index
>= 0);
2462 entry
= &leaf
->entries
[ args
->index
];
2463 ASSERT(entry
->flags
& XFS_ATTR_INCOMPLETE
);
2466 if (entry
->flags
& XFS_ATTR_LOCAL
) {
2467 name_loc
= xfs_attr_leaf_name_local(leaf
, args
->index
);
2468 namelen
= name_loc
->namelen
;
2469 name
= (char *)name_loc
->nameval
;
2471 name_rmt
= xfs_attr_leaf_name_remote(leaf
, args
->index
);
2472 namelen
= name_rmt
->namelen
;
2473 name
= (char *)name_rmt
->name
;
2475 ASSERT(be32_to_cpu(entry
->hashval
) == args
->hashval
);
2476 ASSERT(namelen
== args
->namelen
);
2477 ASSERT(memcmp(name
, args
->name
, namelen
) == 0);
2480 entry
->flags
&= ~XFS_ATTR_INCOMPLETE
;
2481 xfs_da_log_buf(args
->trans
, bp
,
2482 XFS_DA_LOGRANGE(leaf
, entry
, sizeof(*entry
)));
2484 if (args
->rmtblkno
) {
2485 ASSERT((entry
->flags
& XFS_ATTR_LOCAL
) == 0);
2486 name_rmt
= xfs_attr_leaf_name_remote(leaf
, args
->index
);
2487 name_rmt
->valueblk
= cpu_to_be32(args
->rmtblkno
);
2488 name_rmt
->valuelen
= cpu_to_be32(args
->valuelen
);
2489 xfs_da_log_buf(args
->trans
, bp
,
2490 XFS_DA_LOGRANGE(leaf
, name_rmt
, sizeof(*name_rmt
)));
2492 xfs_da_buf_done(bp
);
2495 * Commit the flag value change and start the next trans in series.
2497 return xfs_trans_roll(&args
->trans
, args
->dp
);
2501 * Set the INCOMPLETE flag on an entry in a leaf block.
2504 xfs_attr_leaf_setflag(xfs_da_args_t
*args
)
2506 xfs_attr_leafblock_t
*leaf
;
2507 xfs_attr_leaf_entry_t
*entry
;
2508 xfs_attr_leaf_name_remote_t
*name_rmt
;
2513 * Set up the operation.
2515 error
= xfs_da_read_buf(args
->trans
, args
->dp
, args
->blkno
, -1, &bp
,
2523 ASSERT(be16_to_cpu(leaf
->hdr
.info
.magic
) == XFS_ATTR_LEAF_MAGIC
);
2524 ASSERT(args
->index
< be16_to_cpu(leaf
->hdr
.count
));
2525 ASSERT(args
->index
>= 0);
2526 entry
= &leaf
->entries
[ args
->index
];
2528 ASSERT((entry
->flags
& XFS_ATTR_INCOMPLETE
) == 0);
2529 entry
->flags
|= XFS_ATTR_INCOMPLETE
;
2530 xfs_da_log_buf(args
->trans
, bp
,
2531 XFS_DA_LOGRANGE(leaf
, entry
, sizeof(*entry
)));
2532 if ((entry
->flags
& XFS_ATTR_LOCAL
) == 0) {
2533 name_rmt
= xfs_attr_leaf_name_remote(leaf
, args
->index
);
2534 name_rmt
->valueblk
= 0;
2535 name_rmt
->valuelen
= 0;
2536 xfs_da_log_buf(args
->trans
, bp
,
2537 XFS_DA_LOGRANGE(leaf
, name_rmt
, sizeof(*name_rmt
)));
2539 xfs_da_buf_done(bp
);
2542 * Commit the flag value change and start the next trans in series.
2544 return xfs_trans_roll(&args
->trans
, args
->dp
);
2548 * In a single transaction, clear the INCOMPLETE flag on the leaf entry
2549 * given by args->blkno/index and set the INCOMPLETE flag on the leaf
2550 * entry given by args->blkno2/index2.
2552 * Note that they could be in different blocks, or in the same block.
2555 xfs_attr_leaf_flipflags(xfs_da_args_t
*args
)
2557 xfs_attr_leafblock_t
*leaf1
, *leaf2
;
2558 xfs_attr_leaf_entry_t
*entry1
, *entry2
;
2559 xfs_attr_leaf_name_remote_t
*name_rmt
;
2560 xfs_dabuf_t
*bp1
, *bp2
;
2563 xfs_attr_leaf_name_local_t
*name_loc
;
2564 int namelen1
, namelen2
;
2565 char *name1
, *name2
;
2569 * Read the block containing the "old" attr
2571 error
= xfs_da_read_buf(args
->trans
, args
->dp
, args
->blkno
, -1, &bp1
,
2576 ASSERT(bp1
!= NULL
);
2579 * Read the block containing the "new" attr, if it is different
2581 if (args
->blkno2
!= args
->blkno
) {
2582 error
= xfs_da_read_buf(args
->trans
, args
->dp
, args
->blkno2
,
2583 -1, &bp2
, XFS_ATTR_FORK
);
2587 ASSERT(bp2
!= NULL
);
2593 ASSERT(be16_to_cpu(leaf1
->hdr
.info
.magic
) == XFS_ATTR_LEAF_MAGIC
);
2594 ASSERT(args
->index
< be16_to_cpu(leaf1
->hdr
.count
));
2595 ASSERT(args
->index
>= 0);
2596 entry1
= &leaf1
->entries
[ args
->index
];
2599 ASSERT(be16_to_cpu(leaf2
->hdr
.info
.magic
) == XFS_ATTR_LEAF_MAGIC
);
2600 ASSERT(args
->index2
< be16_to_cpu(leaf2
->hdr
.count
));
2601 ASSERT(args
->index2
>= 0);
2602 entry2
= &leaf2
->entries
[ args
->index2
];
2605 if (entry1
->flags
& XFS_ATTR_LOCAL
) {
2606 name_loc
= xfs_attr_leaf_name_local(leaf1
, args
->index
);
2607 namelen1
= name_loc
->namelen
;
2608 name1
= (char *)name_loc
->nameval
;
2610 name_rmt
= xfs_attr_leaf_name_remote(leaf1
, args
->index
);
2611 namelen1
= name_rmt
->namelen
;
2612 name1
= (char *)name_rmt
->name
;
2614 if (entry2
->flags
& XFS_ATTR_LOCAL
) {
2615 name_loc
= xfs_attr_leaf_name_local(leaf2
, args
->index2
);
2616 namelen2
= name_loc
->namelen
;
2617 name2
= (char *)name_loc
->nameval
;
2619 name_rmt
= xfs_attr_leaf_name_remote(leaf2
, args
->index2
);
2620 namelen2
= name_rmt
->namelen
;
2621 name2
= (char *)name_rmt
->name
;
2623 ASSERT(be32_to_cpu(entry1
->hashval
) == be32_to_cpu(entry2
->hashval
));
2624 ASSERT(namelen1
== namelen2
);
2625 ASSERT(memcmp(name1
, name2
, namelen1
) == 0);
2628 ASSERT(entry1
->flags
& XFS_ATTR_INCOMPLETE
);
2629 ASSERT((entry2
->flags
& XFS_ATTR_INCOMPLETE
) == 0);
2631 entry1
->flags
&= ~XFS_ATTR_INCOMPLETE
;
2632 xfs_da_log_buf(args
->trans
, bp1
,
2633 XFS_DA_LOGRANGE(leaf1
, entry1
, sizeof(*entry1
)));
2634 if (args
->rmtblkno
) {
2635 ASSERT((entry1
->flags
& XFS_ATTR_LOCAL
) == 0);
2636 name_rmt
= xfs_attr_leaf_name_remote(leaf1
, args
->index
);
2637 name_rmt
->valueblk
= cpu_to_be32(args
->rmtblkno
);
2638 name_rmt
->valuelen
= cpu_to_be32(args
->valuelen
);
2639 xfs_da_log_buf(args
->trans
, bp1
,
2640 XFS_DA_LOGRANGE(leaf1
, name_rmt
, sizeof(*name_rmt
)));
2643 entry2
->flags
|= XFS_ATTR_INCOMPLETE
;
2644 xfs_da_log_buf(args
->trans
, bp2
,
2645 XFS_DA_LOGRANGE(leaf2
, entry2
, sizeof(*entry2
)));
2646 if ((entry2
->flags
& XFS_ATTR_LOCAL
) == 0) {
2647 name_rmt
= xfs_attr_leaf_name_remote(leaf2
, args
->index2
);
2648 name_rmt
->valueblk
= 0;
2649 name_rmt
->valuelen
= 0;
2650 xfs_da_log_buf(args
->trans
, bp2
,
2651 XFS_DA_LOGRANGE(leaf2
, name_rmt
, sizeof(*name_rmt
)));
2653 xfs_da_buf_done(bp1
);
2655 xfs_da_buf_done(bp2
);
2658 * Commit the flag value change and start the next trans in series.
2660 error
= xfs_trans_roll(&args
->trans
, args
->dp
);
2665 /*========================================================================
2666 * Indiscriminately delete the entire attribute fork
2667 *========================================================================*/
2670 * Recurse (gasp!) through the attribute nodes until we find leaves.
2671 * We're doing a depth-first traversal in order to invalidate everything.
2674 xfs_attr_root_inactive(xfs_trans_t
**trans
, xfs_inode_t
*dp
)
2676 xfs_da_blkinfo_t
*info
;
2682 * Read block 0 to see what we have to work with.
2683 * We only get here if we have extents, since we remove
2684 * the extents in reverse order the extent containing
2685 * block 0 must still be there.
2687 error
= xfs_da_read_buf(*trans
, dp
, 0, -1, &bp
, XFS_ATTR_FORK
);
2690 blkno
= xfs_da_blkno(bp
);
2693 * Invalidate the tree, even if the "tree" is only a single leaf block.
2694 * This is a depth-first traversal!
2697 if (be16_to_cpu(info
->magic
) == XFS_DA_NODE_MAGIC
) {
2698 error
= xfs_attr_node_inactive(trans
, dp
, bp
, 1);
2699 } else if (be16_to_cpu(info
->magic
) == XFS_ATTR_LEAF_MAGIC
) {
2700 error
= xfs_attr_leaf_inactive(trans
, dp
, bp
);
2702 error
= XFS_ERROR(EIO
);
2703 xfs_da_brelse(*trans
, bp
);
2709 * Invalidate the incore copy of the root block.
2711 error
= xfs_da_get_buf(*trans
, dp
, 0, blkno
, &bp
, XFS_ATTR_FORK
);
2714 xfs_da_binval(*trans
, bp
); /* remove from cache */
2716 * Commit the invalidate and start the next transaction.
2718 error
= xfs_trans_roll(trans
, dp
);
2724 * Recurse (gasp!) through the attribute nodes until we find leaves.
2725 * We're doing a depth-first traversal in order to invalidate everything.
2728 xfs_attr_node_inactive(xfs_trans_t
**trans
, xfs_inode_t
*dp
, xfs_dabuf_t
*bp
,
2731 xfs_da_blkinfo_t
*info
;
2732 xfs_da_intnode_t
*node
;
2733 xfs_dablk_t child_fsb
;
2734 xfs_daddr_t parent_blkno
, child_blkno
;
2735 int error
, count
, i
;
2736 xfs_dabuf_t
*child_bp
;
2739 * Since this code is recursive (gasp!) we must protect ourselves.
2741 if (level
> XFS_DA_NODE_MAXDEPTH
) {
2742 xfs_da_brelse(*trans
, bp
); /* no locks for later trans */
2743 return(XFS_ERROR(EIO
));
2747 ASSERT(be16_to_cpu(node
->hdr
.info
.magic
) == XFS_DA_NODE_MAGIC
);
2748 parent_blkno
= xfs_da_blkno(bp
); /* save for re-read later */
2749 count
= be16_to_cpu(node
->hdr
.count
);
2751 xfs_da_brelse(*trans
, bp
);
2754 child_fsb
= be32_to_cpu(node
->btree
[0].before
);
2755 xfs_da_brelse(*trans
, bp
); /* no locks for later trans */
2758 * If this is the node level just above the leaves, simply loop
2759 * over the leaves removing all of them. If this is higher up
2760 * in the tree, recurse downward.
2762 for (i
= 0; i
< count
; i
++) {
2764 * Read the subsidiary block to see what we have to work with.
2765 * Don't do this in a transaction. This is a depth-first
2766 * traversal of the tree so we may deal with many blocks
2767 * before we come back to this one.
2769 error
= xfs_da_read_buf(*trans
, dp
, child_fsb
, -2, &child_bp
,
2774 /* save for re-read later */
2775 child_blkno
= xfs_da_blkno(child_bp
);
2778 * Invalidate the subtree, however we have to.
2780 info
= child_bp
->data
;
2781 if (be16_to_cpu(info
->magic
) == XFS_DA_NODE_MAGIC
) {
2782 error
= xfs_attr_node_inactive(trans
, dp
,
2784 } else if (be16_to_cpu(info
->magic
) == XFS_ATTR_LEAF_MAGIC
) {
2785 error
= xfs_attr_leaf_inactive(trans
, dp
,
2788 error
= XFS_ERROR(EIO
);
2789 xfs_da_brelse(*trans
, child_bp
);
2795 * Remove the subsidiary block from the cache
2798 error
= xfs_da_get_buf(*trans
, dp
, 0, child_blkno
,
2799 &child_bp
, XFS_ATTR_FORK
);
2802 xfs_da_binval(*trans
, child_bp
);
2806 * If we're not done, re-read the parent to get the next
2807 * child block number.
2809 if ((i
+1) < count
) {
2810 error
= xfs_da_read_buf(*trans
, dp
, 0, parent_blkno
,
2811 &bp
, XFS_ATTR_FORK
);
2814 child_fsb
= be32_to_cpu(node
->btree
[i
+1].before
);
2815 xfs_da_brelse(*trans
, bp
);
2818 * Atomically commit the whole invalidate stuff.
2820 error
= xfs_trans_roll(trans
, dp
);
2829 * Invalidate all of the "remote" value regions pointed to by a particular
2831 * Note that we must release the lock on the buffer so that we are not
2832 * caught holding something that the logging code wants to flush to disk.
2835 xfs_attr_leaf_inactive(xfs_trans_t
**trans
, xfs_inode_t
*dp
, xfs_dabuf_t
*bp
)
2837 xfs_attr_leafblock_t
*leaf
;
2838 xfs_attr_leaf_entry_t
*entry
;
2839 xfs_attr_leaf_name_remote_t
*name_rmt
;
2840 xfs_attr_inactive_list_t
*list
, *lp
;
2841 int error
, count
, size
, tmp
, i
;
2844 ASSERT(be16_to_cpu(leaf
->hdr
.info
.magic
) == XFS_ATTR_LEAF_MAGIC
);
2847 * Count the number of "remote" value extents.
2850 entry
= &leaf
->entries
[0];
2851 for (i
= 0; i
< be16_to_cpu(leaf
->hdr
.count
); entry
++, i
++) {
2852 if (be16_to_cpu(entry
->nameidx
) &&
2853 ((entry
->flags
& XFS_ATTR_LOCAL
) == 0)) {
2854 name_rmt
= xfs_attr_leaf_name_remote(leaf
, i
);
2855 if (name_rmt
->valueblk
)
2861 * If there are no "remote" values, we're done.
2864 xfs_da_brelse(*trans
, bp
);
2869 * Allocate storage for a list of all the "remote" value extents.
2871 size
= count
* sizeof(xfs_attr_inactive_list_t
);
2872 list
= (xfs_attr_inactive_list_t
*)kmem_alloc(size
, KM_SLEEP
);
2875 * Identify each of the "remote" value extents.
2878 entry
= &leaf
->entries
[0];
2879 for (i
= 0; i
< be16_to_cpu(leaf
->hdr
.count
); entry
++, i
++) {
2880 if (be16_to_cpu(entry
->nameidx
) &&
2881 ((entry
->flags
& XFS_ATTR_LOCAL
) == 0)) {
2882 name_rmt
= xfs_attr_leaf_name_remote(leaf
, i
);
2883 if (name_rmt
->valueblk
) {
2884 lp
->valueblk
= be32_to_cpu(name_rmt
->valueblk
);
2885 lp
->valuelen
= XFS_B_TO_FSB(dp
->i_mount
,
2886 be32_to_cpu(name_rmt
->valuelen
));
2891 xfs_da_brelse(*trans
, bp
); /* unlock for trans. in freextent() */
2894 * Invalidate each of the "remote" value extents.
2897 for (lp
= list
, i
= 0; i
< count
; i
++, lp
++) {
2898 tmp
= xfs_attr_leaf_freextent(trans
, dp
,
2899 lp
->valueblk
, lp
->valuelen
);
2902 error
= tmp
; /* save only the 1st errno */
2905 kmem_free((xfs_caddr_t
)list
);
2910 * Look at all the extents for this logical region,
2911 * invalidate any buffers that are incore/in transactions.
2914 xfs_attr_leaf_freextent(xfs_trans_t
**trans
, xfs_inode_t
*dp
,
2915 xfs_dablk_t blkno
, int blkcnt
)
2917 xfs_bmbt_irec_t map
;
2919 int tblkcnt
, dblkcnt
, nmap
, error
;
2924 * Roll through the "value", invalidating the attribute value's
2929 while (tblkcnt
> 0) {
2931 * Try to remember where we decided to put the value.
2934 error
= xfs_bmapi(*trans
, dp
, (xfs_fileoff_t
)tblkno
, tblkcnt
,
2935 XFS_BMAPI_ATTRFORK
| XFS_BMAPI_METADATA
,
2936 NULL
, 0, &map
, &nmap
, NULL
, NULL
);
2941 ASSERT(map
.br_startblock
!= DELAYSTARTBLOCK
);
2944 * If it's a hole, these are already unmapped
2945 * so there's nothing to invalidate.
2947 if (map
.br_startblock
!= HOLESTARTBLOCK
) {
2949 dblkno
= XFS_FSB_TO_DADDR(dp
->i_mount
,
2951 dblkcnt
= XFS_FSB_TO_BB(dp
->i_mount
,
2953 bp
= xfs_trans_get_buf(*trans
,
2954 dp
->i_mount
->m_ddev_targp
,
2955 dblkno
, dblkcnt
, XFS_BUF_LOCK
);
2956 xfs_trans_binval(*trans
, bp
);
2958 * Roll to next transaction.
2960 error
= xfs_trans_roll(trans
, dp
);
2965 tblkno
+= map
.br_blockcount
;
2966 tblkcnt
-= map
.br_blockcount
;