2 * Copyright (c) 2000-2005 Silicon Graphics, Inc.
3 * Copyright (c) 2013 Red Hat, Inc.
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License as
8 * published by the Free Software Foundation.
10 * This program is distributed in the hope that it would be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write the Free Software Foundation,
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
21 #include "xfs_types.h"
24 #include "xfs_trans.h"
27 #include "xfs_mount.h"
28 #include "xfs_da_btree.h"
29 #include "xfs_bmap_btree.h"
31 #include "xfs_dir2_format.h"
32 #include "xfs_dir2_priv.h"
33 #include "xfs_dinode.h"
34 #include "xfs_inode.h"
35 #include "xfs_inode_item.h"
36 #include "xfs_alloc.h"
39 #include "xfs_attr_leaf.h"
40 #include "xfs_error.h"
41 #include "xfs_trace.h"
42 #include "xfs_cksum.h"
43 #include "xfs_buf_item.h"
48 * Routines to implement directories as Btrees of hashed names.
51 /*========================================================================
52 * Function prototypes for the kernel.
53 *========================================================================*/
56 * Routines used for growing the Btree.
58 STATIC
int xfs_da3_root_split(xfs_da_state_t
*state
,
59 xfs_da_state_blk_t
*existing_root
,
60 xfs_da_state_blk_t
*new_child
);
61 STATIC
int xfs_da3_node_split(xfs_da_state_t
*state
,
62 xfs_da_state_blk_t
*existing_blk
,
63 xfs_da_state_blk_t
*split_blk
,
64 xfs_da_state_blk_t
*blk_to_add
,
67 STATIC
void xfs_da3_node_rebalance(xfs_da_state_t
*state
,
68 xfs_da_state_blk_t
*node_blk_1
,
69 xfs_da_state_blk_t
*node_blk_2
);
70 STATIC
void xfs_da3_node_add(xfs_da_state_t
*state
,
71 xfs_da_state_blk_t
*old_node_blk
,
72 xfs_da_state_blk_t
*new_node_blk
);
75 * Routines used for shrinking the Btree.
77 STATIC
int xfs_da3_root_join(xfs_da_state_t
*state
,
78 xfs_da_state_blk_t
*root_blk
);
79 STATIC
int xfs_da3_node_toosmall(xfs_da_state_t
*state
, int *retval
);
80 STATIC
void xfs_da3_node_remove(xfs_da_state_t
*state
,
81 xfs_da_state_blk_t
*drop_blk
);
82 STATIC
void xfs_da3_node_unbalance(xfs_da_state_t
*state
,
83 xfs_da_state_blk_t
*src_node_blk
,
84 xfs_da_state_blk_t
*dst_node_blk
);
89 STATIC
int xfs_da3_blk_unlink(xfs_da_state_t
*state
,
90 xfs_da_state_blk_t
*drop_blk
,
91 xfs_da_state_blk_t
*save_blk
);
94 kmem_zone_t
*xfs_da_state_zone
; /* anchor for state struct zone */
97 * Allocate a dir-state structure.
98 * We don't put them on the stack since they're large.
101 xfs_da_state_alloc(void)
103 return kmem_zone_zalloc(xfs_da_state_zone
, KM_NOFS
);
107 * Kill the altpath contents of a da-state structure.
110 xfs_da_state_kill_altpath(xfs_da_state_t
*state
)
114 for (i
= 0; i
< state
->altpath
.active
; i
++)
115 state
->altpath
.blk
[i
].bp
= NULL
;
116 state
->altpath
.active
= 0;
120 * Free a da-state structure.
123 xfs_da_state_free(xfs_da_state_t
*state
)
125 xfs_da_state_kill_altpath(state
);
127 memset((char *)state
, 0, sizeof(*state
));
129 kmem_zone_free(xfs_da_state_zone
, state
);
133 xfs_da3_node_hdr_from_disk(
134 struct xfs_da3_icnode_hdr
*to
,
135 struct xfs_da_intnode
*from
)
137 ASSERT(from
->hdr
.info
.magic
== cpu_to_be16(XFS_DA_NODE_MAGIC
) ||
138 from
->hdr
.info
.magic
== cpu_to_be16(XFS_DA3_NODE_MAGIC
));
140 if (from
->hdr
.info
.magic
== cpu_to_be16(XFS_DA3_NODE_MAGIC
)) {
141 struct xfs_da3_node_hdr
*hdr3
= (struct xfs_da3_node_hdr
*)from
;
143 to
->forw
= be32_to_cpu(hdr3
->info
.hdr
.forw
);
144 to
->back
= be32_to_cpu(hdr3
->info
.hdr
.back
);
145 to
->magic
= be16_to_cpu(hdr3
->info
.hdr
.magic
);
146 to
->count
= be16_to_cpu(hdr3
->__count
);
147 to
->level
= be16_to_cpu(hdr3
->__level
);
150 to
->forw
= be32_to_cpu(from
->hdr
.info
.forw
);
151 to
->back
= be32_to_cpu(from
->hdr
.info
.back
);
152 to
->magic
= be16_to_cpu(from
->hdr
.info
.magic
);
153 to
->count
= be16_to_cpu(from
->hdr
.__count
);
154 to
->level
= be16_to_cpu(from
->hdr
.__level
);
158 xfs_da3_node_hdr_to_disk(
159 struct xfs_da_intnode
*to
,
160 struct xfs_da3_icnode_hdr
*from
)
162 ASSERT(from
->magic
== XFS_DA_NODE_MAGIC
||
163 from
->magic
== XFS_DA3_NODE_MAGIC
);
165 if (from
->magic
== XFS_DA3_NODE_MAGIC
) {
166 struct xfs_da3_node_hdr
*hdr3
= (struct xfs_da3_node_hdr
*)to
;
168 hdr3
->info
.hdr
.forw
= cpu_to_be32(from
->forw
);
169 hdr3
->info
.hdr
.back
= cpu_to_be32(from
->back
);
170 hdr3
->info
.hdr
.magic
= cpu_to_be16(from
->magic
);
171 hdr3
->__count
= cpu_to_be16(from
->count
);
172 hdr3
->__level
= cpu_to_be16(from
->level
);
175 to
->hdr
.info
.forw
= cpu_to_be32(from
->forw
);
176 to
->hdr
.info
.back
= cpu_to_be32(from
->back
);
177 to
->hdr
.info
.magic
= cpu_to_be16(from
->magic
);
178 to
->hdr
.__count
= cpu_to_be16(from
->count
);
179 to
->hdr
.__level
= cpu_to_be16(from
->level
);
186 struct xfs_mount
*mp
= bp
->b_target
->bt_mount
;
187 struct xfs_da_intnode
*hdr
= bp
->b_addr
;
188 struct xfs_da3_icnode_hdr ichdr
;
190 xfs_da3_node_hdr_from_disk(&ichdr
, hdr
);
192 if (xfs_sb_version_hascrc(&mp
->m_sb
)) {
193 struct xfs_da3_node_hdr
*hdr3
= bp
->b_addr
;
195 if (ichdr
.magic
!= XFS_DA3_NODE_MAGIC
)
198 if (!uuid_equal(&hdr3
->info
.uuid
, &mp
->m_sb
.sb_uuid
))
200 if (be64_to_cpu(hdr3
->info
.blkno
) != bp
->b_bn
)
203 if (ichdr
.magic
!= XFS_DA_NODE_MAGIC
)
206 if (ichdr
.level
== 0)
208 if (ichdr
.level
> XFS_DA_NODE_MAXDEPTH
)
210 if (ichdr
.count
== 0)
214 * we don't know if the node is for and attribute or directory tree,
215 * so only fail if the count is outside both bounds
217 if (ichdr
.count
> mp
->m_dir_node_ents
&&
218 ichdr
.count
> mp
->m_attr_node_ents
)
221 /* XXX: hash order check? */
227 xfs_da3_node_write_verify(
230 struct xfs_mount
*mp
= bp
->b_target
->bt_mount
;
231 struct xfs_buf_log_item
*bip
= bp
->b_fspriv
;
232 struct xfs_da3_node_hdr
*hdr3
= bp
->b_addr
;
234 if (!xfs_da3_node_verify(bp
)) {
235 XFS_CORRUPTION_ERROR(__func__
, XFS_ERRLEVEL_LOW
, mp
, bp
->b_addr
);
236 xfs_buf_ioerror(bp
, EFSCORRUPTED
);
240 if (!xfs_sb_version_hascrc(&mp
->m_sb
))
244 hdr3
->info
.lsn
= cpu_to_be64(bip
->bli_item
.li_lsn
);
246 xfs_update_cksum(bp
->b_addr
, BBTOB(bp
->b_length
), XFS_DA3_NODE_CRC_OFF
);
250 * leaf/node format detection on trees is sketchy, so a node read can be done on
251 * leaf level blocks when detection identifies the tree as a node format tree
252 * incorrectly. In this case, we need to swap the verifier to match the correct
253 * format of the block being read.
256 xfs_da3_node_read_verify(
259 struct xfs_mount
*mp
= bp
->b_target
->bt_mount
;
260 struct xfs_da_blkinfo
*info
= bp
->b_addr
;
262 switch (be16_to_cpu(info
->magic
)) {
263 case XFS_DA3_NODE_MAGIC
:
264 if (!xfs_verify_cksum(bp
->b_addr
, BBTOB(bp
->b_length
),
265 XFS_DA3_NODE_CRC_OFF
))
268 case XFS_DA_NODE_MAGIC
:
269 if (!xfs_da3_node_verify(bp
))
272 case XFS_ATTR_LEAF_MAGIC
:
273 case XFS_ATTR3_LEAF_MAGIC
:
274 bp
->b_ops
= &xfs_attr3_leaf_buf_ops
;
275 bp
->b_ops
->verify_read(bp
);
277 case XFS_DIR2_LEAFN_MAGIC
:
278 case XFS_DIR3_LEAFN_MAGIC
:
279 bp
->b_ops
= &xfs_dir3_leafn_buf_ops
;
280 bp
->b_ops
->verify_read(bp
);
287 XFS_CORRUPTION_ERROR(__func__
, XFS_ERRLEVEL_LOW
, mp
, bp
->b_addr
);
288 xfs_buf_ioerror(bp
, EFSCORRUPTED
);
291 const struct xfs_buf_ops xfs_da3_node_buf_ops
= {
292 .verify_read
= xfs_da3_node_read_verify
,
293 .verify_write
= xfs_da3_node_write_verify
,
298 struct xfs_trans
*tp
,
299 struct xfs_inode
*dp
,
301 xfs_daddr_t mappedbno
,
302 struct xfs_buf
**bpp
,
307 err
= xfs_da_read_buf(tp
, dp
, bno
, mappedbno
, bpp
,
308 which_fork
, &xfs_da3_node_buf_ops
);
310 struct xfs_da_blkinfo
*info
= (*bpp
)->b_addr
;
313 switch (be16_to_cpu(info
->magic
)) {
314 case XFS_DA_NODE_MAGIC
:
315 case XFS_DA3_NODE_MAGIC
:
316 type
= XFS_BLFT_DA_NODE_BUF
;
318 case XFS_ATTR_LEAF_MAGIC
:
319 case XFS_ATTR3_LEAF_MAGIC
:
320 type
= XFS_BLFT_ATTR_LEAF_BUF
;
322 case XFS_DIR2_LEAFN_MAGIC
:
323 case XFS_DIR3_LEAFN_MAGIC
:
324 type
= XFS_BLFT_DIR_LEAFN_BUF
;
331 xfs_trans_buf_set_type(tp
, *bpp
, type
);
336 /*========================================================================
337 * Routines used for growing the Btree.
338 *========================================================================*/
341 * Create the initial contents of an intermediate node.
345 struct xfs_da_args
*args
,
348 struct xfs_buf
**bpp
,
351 struct xfs_da_intnode
*node
;
352 struct xfs_trans
*tp
= args
->trans
;
353 struct xfs_mount
*mp
= tp
->t_mountp
;
354 struct xfs_da3_icnode_hdr ichdr
= {0};
358 trace_xfs_da_node_create(args
);
359 ASSERT(level
<= XFS_DA_NODE_MAXDEPTH
);
361 error
= xfs_da_get_buf(tp
, args
->dp
, blkno
, -1, &bp
, whichfork
);
364 bp
->b_ops
= &xfs_da3_node_buf_ops
;
365 xfs_trans_buf_set_type(tp
, bp
, XFS_BLFT_DA_NODE_BUF
);
368 if (xfs_sb_version_hascrc(&mp
->m_sb
)) {
369 struct xfs_da3_node_hdr
*hdr3
= bp
->b_addr
;
371 ichdr
.magic
= XFS_DA3_NODE_MAGIC
;
372 hdr3
->info
.blkno
= cpu_to_be64(bp
->b_bn
);
373 hdr3
->info
.owner
= cpu_to_be64(args
->dp
->i_ino
);
374 uuid_copy(&hdr3
->info
.uuid
, &mp
->m_sb
.sb_uuid
);
376 ichdr
.magic
= XFS_DA_NODE_MAGIC
;
380 xfs_da3_node_hdr_to_disk(node
, &ichdr
);
381 xfs_trans_log_buf(tp
, bp
,
382 XFS_DA_LOGRANGE(node
, &node
->hdr
, xfs_da3_node_hdr_size(node
)));
389 * Split a leaf node, rebalance, then possibly split
390 * intermediate nodes, rebalance, etc.
394 struct xfs_da_state
*state
)
396 struct xfs_da_state_blk
*oldblk
;
397 struct xfs_da_state_blk
*newblk
;
398 struct xfs_da_state_blk
*addblk
;
399 struct xfs_da_intnode
*node
;
406 trace_xfs_da_split(state
->args
);
409 * Walk back up the tree splitting/inserting/adjusting as necessary.
410 * If we need to insert and there isn't room, split the node, then
411 * decide which fragment to insert the new block from below into.
412 * Note that we may split the root this way, but we need more fixup.
414 max
= state
->path
.active
- 1;
415 ASSERT((max
>= 0) && (max
< XFS_DA_NODE_MAXDEPTH
));
416 ASSERT(state
->path
.blk
[max
].magic
== XFS_ATTR_LEAF_MAGIC
||
417 state
->path
.blk
[max
].magic
== XFS_DIR2_LEAFN_MAGIC
);
419 addblk
= &state
->path
.blk
[max
]; /* initial dummy value */
420 for (i
= max
; (i
>= 0) && addblk
; state
->path
.active
--, i
--) {
421 oldblk
= &state
->path
.blk
[i
];
422 newblk
= &state
->altpath
.blk
[i
];
425 * If a leaf node then
426 * Allocate a new leaf node, then rebalance across them.
427 * else if an intermediate node then
428 * We split on the last layer, must we split the node?
430 switch (oldblk
->magic
) {
431 case XFS_ATTR_LEAF_MAGIC
:
432 error
= xfs_attr3_leaf_split(state
, oldblk
, newblk
);
433 if ((error
!= 0) && (error
!= ENOSPC
)) {
434 return(error
); /* GROT: attr is inconsistent */
441 * Entry wouldn't fit, split the leaf again.
443 state
->extravalid
= 1;
445 state
->extraafter
= 0; /* before newblk */
446 trace_xfs_attr_leaf_split_before(state
->args
);
447 error
= xfs_attr3_leaf_split(state
, oldblk
,
450 state
->extraafter
= 1; /* after newblk */
451 trace_xfs_attr_leaf_split_after(state
->args
);
452 error
= xfs_attr3_leaf_split(state
, newblk
,
456 return(error
); /* GROT: attr inconsistent */
459 case XFS_DIR2_LEAFN_MAGIC
:
460 error
= xfs_dir2_leafn_split(state
, oldblk
, newblk
);
465 case XFS_DA_NODE_MAGIC
:
466 error
= xfs_da3_node_split(state
, oldblk
, newblk
, addblk
,
470 return(error
); /* GROT: dir is inconsistent */
472 * Record the newly split block for the next time thru?
482 * Update the btree to show the new hashval for this child.
484 xfs_da3_fixhashpath(state
, &state
->path
);
490 * Split the root node.
492 ASSERT(state
->path
.active
== 0);
493 oldblk
= &state
->path
.blk
[0];
494 error
= xfs_da3_root_split(state
, oldblk
, addblk
);
497 return(error
); /* GROT: dir is inconsistent */
501 * Update pointers to the node which used to be block 0 and
502 * just got bumped because of the addition of a new root node.
503 * There might be three blocks involved if a double split occurred,
504 * and the original block 0 could be at any position in the list.
506 * Note: the magic numbers and sibling pointers are in the same
507 * physical place for both v2 and v3 headers (by design). Hence it
508 * doesn't matter which version of the xfs_da_intnode structure we use
509 * here as the result will be the same using either structure.
511 node
= oldblk
->bp
->b_addr
;
512 if (node
->hdr
.info
.forw
) {
513 if (be32_to_cpu(node
->hdr
.info
.forw
) == addblk
->blkno
) {
516 ASSERT(state
->extravalid
);
517 bp
= state
->extrablk
.bp
;
520 node
->hdr
.info
.back
= cpu_to_be32(oldblk
->blkno
);
521 xfs_trans_log_buf(state
->args
->trans
, bp
,
522 XFS_DA_LOGRANGE(node
, &node
->hdr
.info
,
523 sizeof(node
->hdr
.info
)));
525 node
= oldblk
->bp
->b_addr
;
526 if (node
->hdr
.info
.back
) {
527 if (be32_to_cpu(node
->hdr
.info
.back
) == addblk
->blkno
) {
530 ASSERT(state
->extravalid
);
531 bp
= state
->extrablk
.bp
;
534 node
->hdr
.info
.forw
= cpu_to_be32(oldblk
->blkno
);
535 xfs_trans_log_buf(state
->args
->trans
, bp
,
536 XFS_DA_LOGRANGE(node
, &node
->hdr
.info
,
537 sizeof(node
->hdr
.info
)));
544 * Split the root. We have to create a new root and point to the two
545 * parts (the split old root) that we just created. Copy block zero to
546 * the EOF, extending the inode in process.
548 STATIC
int /* error */
550 struct xfs_da_state
*state
,
551 struct xfs_da_state_blk
*blk1
,
552 struct xfs_da_state_blk
*blk2
)
554 struct xfs_da_intnode
*node
;
555 struct xfs_da_intnode
*oldroot
;
556 struct xfs_da_node_entry
*btree
;
557 struct xfs_da3_icnode_hdr nodehdr
;
558 struct xfs_da_args
*args
;
560 struct xfs_inode
*dp
;
561 struct xfs_trans
*tp
;
562 struct xfs_mount
*mp
;
563 struct xfs_dir2_leaf
*leaf
;
569 trace_xfs_da_root_split(state
->args
);
572 * Copy the existing (incorrect) block from the root node position
573 * to a free space somewhere.
576 error
= xfs_da_grow_inode(args
, &blkno
);
583 error
= xfs_da_get_buf(tp
, dp
, blkno
, -1, &bp
, args
->whichfork
);
587 oldroot
= blk1
->bp
->b_addr
;
588 if (oldroot
->hdr
.info
.magic
== cpu_to_be16(XFS_DA_NODE_MAGIC
) ||
589 oldroot
->hdr
.info
.magic
== cpu_to_be16(XFS_DA3_NODE_MAGIC
)) {
590 struct xfs_da3_icnode_hdr nodehdr
;
592 xfs_da3_node_hdr_from_disk(&nodehdr
, oldroot
);
593 btree
= xfs_da3_node_tree_p(oldroot
);
594 size
= (int)((char *)&btree
[nodehdr
.count
] - (char *)oldroot
);
595 level
= nodehdr
.level
;
598 * we are about to copy oldroot to bp, so set up the type
599 * of bp while we know exactly what it will be.
601 xfs_trans_buf_set_type(tp
, bp
, XFS_BLFT_DA_NODE_BUF
);
603 struct xfs_dir3_icleaf_hdr leafhdr
;
604 struct xfs_dir2_leaf_entry
*ents
;
606 leaf
= (xfs_dir2_leaf_t
*)oldroot
;
607 xfs_dir3_leaf_hdr_from_disk(&leafhdr
, leaf
);
608 ents
= xfs_dir3_leaf_ents_p(leaf
);
610 ASSERT(leafhdr
.magic
== XFS_DIR2_LEAFN_MAGIC
||
611 leafhdr
.magic
== XFS_DIR3_LEAFN_MAGIC
);
612 size
= (int)((char *)&ents
[leafhdr
.count
] - (char *)leaf
);
616 * we are about to copy oldroot to bp, so set up the type
617 * of bp while we know exactly what it will be.
619 xfs_trans_buf_set_type(tp
, bp
, XFS_BLFT_DIR_LEAFN_BUF
);
623 * we can copy most of the information in the node from one block to
624 * another, but for CRC enabled headers we have to make sure that the
625 * block specific identifiers are kept intact. We update the buffer
628 memcpy(node
, oldroot
, size
);
629 if (oldroot
->hdr
.info
.magic
== cpu_to_be16(XFS_DA3_NODE_MAGIC
) ||
630 oldroot
->hdr
.info
.magic
== cpu_to_be16(XFS_DIR3_LEAFN_MAGIC
)) {
631 struct xfs_da3_intnode
*node3
= (struct xfs_da3_intnode
*)node
;
633 node3
->hdr
.info
.blkno
= cpu_to_be64(bp
->b_bn
);
635 xfs_trans_log_buf(tp
, bp
, 0, size
- 1);
637 bp
->b_ops
= blk1
->bp
->b_ops
;
642 * Set up the new root node.
644 error
= xfs_da3_node_create(args
,
645 (args
->whichfork
== XFS_DATA_FORK
) ? mp
->m_dirleafblk
: 0,
646 level
+ 1, &bp
, args
->whichfork
);
651 xfs_da3_node_hdr_from_disk(&nodehdr
, node
);
652 btree
= xfs_da3_node_tree_p(node
);
653 btree
[0].hashval
= cpu_to_be32(blk1
->hashval
);
654 btree
[0].before
= cpu_to_be32(blk1
->blkno
);
655 btree
[1].hashval
= cpu_to_be32(blk2
->hashval
);
656 btree
[1].before
= cpu_to_be32(blk2
->blkno
);
658 xfs_da3_node_hdr_to_disk(node
, &nodehdr
);
661 if (oldroot
->hdr
.info
.magic
== cpu_to_be16(XFS_DIR2_LEAFN_MAGIC
) ||
662 oldroot
->hdr
.info
.magic
== cpu_to_be16(XFS_DIR3_LEAFN_MAGIC
)) {
663 ASSERT(blk1
->blkno
>= mp
->m_dirleafblk
&&
664 blk1
->blkno
< mp
->m_dirfreeblk
);
665 ASSERT(blk2
->blkno
>= mp
->m_dirleafblk
&&
666 blk2
->blkno
< mp
->m_dirfreeblk
);
670 /* Header is already logged by xfs_da_node_create */
671 xfs_trans_log_buf(tp
, bp
,
672 XFS_DA_LOGRANGE(node
, btree
, sizeof(xfs_da_node_entry_t
) * 2));
678 * Split the node, rebalance, then add the new entry.
680 STATIC
int /* error */
682 struct xfs_da_state
*state
,
683 struct xfs_da_state_blk
*oldblk
,
684 struct xfs_da_state_blk
*newblk
,
685 struct xfs_da_state_blk
*addblk
,
689 struct xfs_da_intnode
*node
;
690 struct xfs_da3_icnode_hdr nodehdr
;
696 trace_xfs_da_node_split(state
->args
);
698 node
= oldblk
->bp
->b_addr
;
699 xfs_da3_node_hdr_from_disk(&nodehdr
, node
);
702 * With V2 dirs the extra block is data or freespace.
704 useextra
= state
->extravalid
&& state
->args
->whichfork
== XFS_ATTR_FORK
;
705 newcount
= 1 + useextra
;
707 * Do we have to split the node?
709 if (nodehdr
.count
+ newcount
> state
->node_ents
) {
711 * Allocate a new node, add to the doubly linked chain of
712 * nodes, then move some of our excess entries into it.
714 error
= xfs_da_grow_inode(state
->args
, &blkno
);
716 return(error
); /* GROT: dir is inconsistent */
718 error
= xfs_da3_node_create(state
->args
, blkno
, treelevel
,
719 &newblk
->bp
, state
->args
->whichfork
);
721 return(error
); /* GROT: dir is inconsistent */
722 newblk
->blkno
= blkno
;
723 newblk
->magic
= XFS_DA_NODE_MAGIC
;
724 xfs_da3_node_rebalance(state
, oldblk
, newblk
);
725 error
= xfs_da3_blk_link(state
, oldblk
, newblk
);
734 * Insert the new entry(s) into the correct block
735 * (updating last hashval in the process).
737 * xfs_da3_node_add() inserts BEFORE the given index,
738 * and as a result of using node_lookup_int() we always
739 * point to a valid entry (not after one), but a split
740 * operation always results in a new block whose hashvals
741 * FOLLOW the current block.
743 * If we had double-split op below us, then add the extra block too.
745 node
= oldblk
->bp
->b_addr
;
746 xfs_da3_node_hdr_from_disk(&nodehdr
, node
);
747 if (oldblk
->index
<= nodehdr
.count
) {
749 xfs_da3_node_add(state
, oldblk
, addblk
);
751 if (state
->extraafter
)
753 xfs_da3_node_add(state
, oldblk
, &state
->extrablk
);
754 state
->extravalid
= 0;
758 xfs_da3_node_add(state
, newblk
, addblk
);
760 if (state
->extraafter
)
762 xfs_da3_node_add(state
, newblk
, &state
->extrablk
);
763 state
->extravalid
= 0;
771 * Balance the btree elements between two intermediate nodes,
772 * usually one full and one empty.
774 * NOTE: if blk2 is empty, then it will get the upper half of blk1.
777 xfs_da3_node_rebalance(
778 struct xfs_da_state
*state
,
779 struct xfs_da_state_blk
*blk1
,
780 struct xfs_da_state_blk
*blk2
)
782 struct xfs_da_intnode
*node1
;
783 struct xfs_da_intnode
*node2
;
784 struct xfs_da_intnode
*tmpnode
;
785 struct xfs_da_node_entry
*btree1
;
786 struct xfs_da_node_entry
*btree2
;
787 struct xfs_da_node_entry
*btree_s
;
788 struct xfs_da_node_entry
*btree_d
;
789 struct xfs_da3_icnode_hdr nodehdr1
;
790 struct xfs_da3_icnode_hdr nodehdr2
;
791 struct xfs_trans
*tp
;
796 trace_xfs_da_node_rebalance(state
->args
);
798 node1
= blk1
->bp
->b_addr
;
799 node2
= blk2
->bp
->b_addr
;
800 xfs_da3_node_hdr_from_disk(&nodehdr1
, node1
);
801 xfs_da3_node_hdr_from_disk(&nodehdr2
, node2
);
802 btree1
= xfs_da3_node_tree_p(node1
);
803 btree2
= xfs_da3_node_tree_p(node2
);
806 * Figure out how many entries need to move, and in which direction.
807 * Swap the nodes around if that makes it simpler.
809 if (nodehdr1
.count
> 0 && nodehdr2
.count
> 0 &&
810 ((be32_to_cpu(btree2
[0].hashval
) < be32_to_cpu(btree1
[0].hashval
)) ||
811 (be32_to_cpu(btree2
[nodehdr2
.count
- 1].hashval
) <
812 be32_to_cpu(btree1
[nodehdr1
.count
- 1].hashval
)))) {
816 xfs_da3_node_hdr_from_disk(&nodehdr1
, node1
);
817 xfs_da3_node_hdr_from_disk(&nodehdr2
, node2
);
818 btree1
= xfs_da3_node_tree_p(node1
);
819 btree2
= xfs_da3_node_tree_p(node2
);
823 count
= (nodehdr1
.count
- nodehdr2
.count
) / 2;
826 tp
= state
->args
->trans
;
828 * Two cases: high-to-low and low-to-high.
832 * Move elements in node2 up to make a hole.
834 tmp
= nodehdr2
.count
;
836 tmp
*= (uint
)sizeof(xfs_da_node_entry_t
);
837 btree_s
= &btree2
[0];
838 btree_d
= &btree2
[count
];
839 memmove(btree_d
, btree_s
, tmp
);
843 * Move the req'd B-tree elements from high in node1 to
846 nodehdr2
.count
+= count
;
847 tmp
= count
* (uint
)sizeof(xfs_da_node_entry_t
);
848 btree_s
= &btree1
[nodehdr1
.count
- count
];
849 btree_d
= &btree2
[0];
850 memcpy(btree_d
, btree_s
, tmp
);
851 nodehdr1
.count
-= count
;
854 * Move the req'd B-tree elements from low in node2 to
858 tmp
= count
* (uint
)sizeof(xfs_da_node_entry_t
);
859 btree_s
= &btree2
[0];
860 btree_d
= &btree1
[nodehdr1
.count
];
861 memcpy(btree_d
, btree_s
, tmp
);
862 nodehdr1
.count
+= count
;
864 xfs_trans_log_buf(tp
, blk1
->bp
,
865 XFS_DA_LOGRANGE(node1
, btree_d
, tmp
));
868 * Move elements in node2 down to fill the hole.
870 tmp
= nodehdr2
.count
- count
;
871 tmp
*= (uint
)sizeof(xfs_da_node_entry_t
);
872 btree_s
= &btree2
[count
];
873 btree_d
= &btree2
[0];
874 memmove(btree_d
, btree_s
, tmp
);
875 nodehdr2
.count
-= count
;
879 * Log header of node 1 and all current bits of node 2.
881 xfs_da3_node_hdr_to_disk(node1
, &nodehdr1
);
882 xfs_trans_log_buf(tp
, blk1
->bp
,
883 XFS_DA_LOGRANGE(node1
, &node1
->hdr
,
884 xfs_da3_node_hdr_size(node1
)));
886 xfs_da3_node_hdr_to_disk(node2
, &nodehdr2
);
887 xfs_trans_log_buf(tp
, blk2
->bp
,
888 XFS_DA_LOGRANGE(node2
, &node2
->hdr
,
889 xfs_da3_node_hdr_size(node2
) +
890 (sizeof(btree2
[0]) * nodehdr2
.count
)));
893 * Record the last hashval from each block for upward propagation.
894 * (note: don't use the swapped node pointers)
897 node1
= blk1
->bp
->b_addr
;
898 node2
= blk2
->bp
->b_addr
;
899 xfs_da3_node_hdr_from_disk(&nodehdr1
, node1
);
900 xfs_da3_node_hdr_from_disk(&nodehdr2
, node2
);
901 btree1
= xfs_da3_node_tree_p(node1
);
902 btree2
= xfs_da3_node_tree_p(node2
);
904 blk1
->hashval
= be32_to_cpu(btree1
[nodehdr1
.count
- 1].hashval
);
905 blk2
->hashval
= be32_to_cpu(btree2
[nodehdr2
.count
- 1].hashval
);
908 * Adjust the expected index for insertion.
910 if (blk1
->index
>= nodehdr1
.count
) {
911 blk2
->index
= blk1
->index
- nodehdr1
.count
;
912 blk1
->index
= nodehdr1
.count
+ 1; /* make it invalid */
917 * Add a new entry to an intermediate node.
921 struct xfs_da_state
*state
,
922 struct xfs_da_state_blk
*oldblk
,
923 struct xfs_da_state_blk
*newblk
)
925 struct xfs_da_intnode
*node
;
926 struct xfs_da3_icnode_hdr nodehdr
;
927 struct xfs_da_node_entry
*btree
;
930 trace_xfs_da_node_add(state
->args
);
932 node
= oldblk
->bp
->b_addr
;
933 xfs_da3_node_hdr_from_disk(&nodehdr
, node
);
934 btree
= xfs_da3_node_tree_p(node
);
936 ASSERT(oldblk
->index
>= 0 && oldblk
->index
<= nodehdr
.count
);
937 ASSERT(newblk
->blkno
!= 0);
938 if (state
->args
->whichfork
== XFS_DATA_FORK
)
939 ASSERT(newblk
->blkno
>= state
->mp
->m_dirleafblk
&&
940 newblk
->blkno
< state
->mp
->m_dirfreeblk
);
943 * We may need to make some room before we insert the new node.
946 if (oldblk
->index
< nodehdr
.count
) {
947 tmp
= (nodehdr
.count
- oldblk
->index
) * (uint
)sizeof(*btree
);
948 memmove(&btree
[oldblk
->index
+ 1], &btree
[oldblk
->index
], tmp
);
950 btree
[oldblk
->index
].hashval
= cpu_to_be32(newblk
->hashval
);
951 btree
[oldblk
->index
].before
= cpu_to_be32(newblk
->blkno
);
952 xfs_trans_log_buf(state
->args
->trans
, oldblk
->bp
,
953 XFS_DA_LOGRANGE(node
, &btree
[oldblk
->index
],
954 tmp
+ sizeof(*btree
)));
957 xfs_da3_node_hdr_to_disk(node
, &nodehdr
);
958 xfs_trans_log_buf(state
->args
->trans
, oldblk
->bp
,
959 XFS_DA_LOGRANGE(node
, &node
->hdr
, xfs_da3_node_hdr_size(node
)));
962 * Copy the last hash value from the oldblk to propagate upwards.
964 oldblk
->hashval
= be32_to_cpu(btree
[nodehdr
.count
- 1].hashval
);
967 /*========================================================================
968 * Routines used for shrinking the Btree.
969 *========================================================================*/
972 * Deallocate an empty leaf node, remove it from its parent,
973 * possibly deallocating that block, etc...
977 struct xfs_da_state
*state
)
979 struct xfs_da_state_blk
*drop_blk
;
980 struct xfs_da_state_blk
*save_blk
;
984 trace_xfs_da_join(state
->args
);
986 drop_blk
= &state
->path
.blk
[ state
->path
.active
-1 ];
987 save_blk
= &state
->altpath
.blk
[ state
->path
.active
-1 ];
988 ASSERT(state
->path
.blk
[0].magic
== XFS_DA_NODE_MAGIC
);
989 ASSERT(drop_blk
->magic
== XFS_ATTR_LEAF_MAGIC
||
990 drop_blk
->magic
== XFS_DIR2_LEAFN_MAGIC
);
993 * Walk back up the tree joining/deallocating as necessary.
994 * When we stop dropping blocks, break out.
996 for ( ; state
->path
.active
>= 2; drop_blk
--, save_blk
--,
997 state
->path
.active
--) {
999 * See if we can combine the block with a neighbor.
1000 * (action == 0) => no options, just leave
1001 * (action == 1) => coalesce, then unlink
1002 * (action == 2) => block empty, unlink it
1004 switch (drop_blk
->magic
) {
1005 case XFS_ATTR_LEAF_MAGIC
:
1006 error
= xfs_attr3_leaf_toosmall(state
, &action
);
1011 xfs_attr3_leaf_unbalance(state
, drop_blk
, save_blk
);
1013 case XFS_DIR2_LEAFN_MAGIC
:
1014 error
= xfs_dir2_leafn_toosmall(state
, &action
);
1019 xfs_dir2_leafn_unbalance(state
, drop_blk
, save_blk
);
1021 case XFS_DA_NODE_MAGIC
:
1023 * Remove the offending node, fixup hashvals,
1024 * check for a toosmall neighbor.
1026 xfs_da3_node_remove(state
, drop_blk
);
1027 xfs_da3_fixhashpath(state
, &state
->path
);
1028 error
= xfs_da3_node_toosmall(state
, &action
);
1033 xfs_da3_node_unbalance(state
, drop_blk
, save_blk
);
1036 xfs_da3_fixhashpath(state
, &state
->altpath
);
1037 error
= xfs_da3_blk_unlink(state
, drop_blk
, save_blk
);
1038 xfs_da_state_kill_altpath(state
);
1041 error
= xfs_da_shrink_inode(state
->args
, drop_blk
->blkno
,
1043 drop_blk
->bp
= NULL
;
1048 * We joined all the way to the top. If it turns out that
1049 * we only have one entry in the root, make the child block
1052 xfs_da3_node_remove(state
, drop_blk
);
1053 xfs_da3_fixhashpath(state
, &state
->path
);
1054 error
= xfs_da3_root_join(state
, &state
->path
.blk
[0]);
1060 xfs_da_blkinfo_onlychild_validate(struct xfs_da_blkinfo
*blkinfo
, __u16 level
)
1062 __be16 magic
= blkinfo
->magic
;
1065 ASSERT(magic
== cpu_to_be16(XFS_DIR2_LEAFN_MAGIC
) ||
1066 magic
== cpu_to_be16(XFS_DIR3_LEAFN_MAGIC
) ||
1067 magic
== cpu_to_be16(XFS_ATTR_LEAF_MAGIC
) ||
1068 magic
== cpu_to_be16(XFS_ATTR3_LEAF_MAGIC
));
1070 ASSERT(magic
== cpu_to_be16(XFS_DA_NODE_MAGIC
) ||
1071 magic
== cpu_to_be16(XFS_DA3_NODE_MAGIC
));
1073 ASSERT(!blkinfo
->forw
);
1074 ASSERT(!blkinfo
->back
);
1077 #define xfs_da_blkinfo_onlychild_validate(blkinfo, level)
1081 * We have only one entry in the root. Copy the only remaining child of
1082 * the old root to block 0 as the new root node.
1086 struct xfs_da_state
*state
,
1087 struct xfs_da_state_blk
*root_blk
)
1089 struct xfs_da_intnode
*oldroot
;
1090 struct xfs_da_args
*args
;
1093 struct xfs_da3_icnode_hdr oldroothdr
;
1094 struct xfs_da_node_entry
*btree
;
1097 trace_xfs_da_root_join(state
->args
);
1099 ASSERT(root_blk
->magic
== XFS_DA_NODE_MAGIC
);
1102 oldroot
= root_blk
->bp
->b_addr
;
1103 xfs_da3_node_hdr_from_disk(&oldroothdr
, oldroot
);
1104 ASSERT(oldroothdr
.forw
== 0);
1105 ASSERT(oldroothdr
.back
== 0);
1108 * If the root has more than one child, then don't do anything.
1110 if (oldroothdr
.count
> 1)
1114 * Read in the (only) child block, then copy those bytes into
1115 * the root block's buffer and free the original child block.
1117 btree
= xfs_da3_node_tree_p(oldroot
);
1118 child
= be32_to_cpu(btree
[0].before
);
1120 error
= xfs_da3_node_read(args
->trans
, args
->dp
, child
, -1, &bp
,
1124 xfs_da_blkinfo_onlychild_validate(bp
->b_addr
, oldroothdr
.level
);
1127 * This could be copying a leaf back into the root block in the case of
1128 * there only being a single leaf block left in the tree. Hence we have
1129 * to update the b_ops pointer as well to match the buffer type change
1130 * that could occur. For dir3 blocks we also need to update the block
1131 * number in the buffer header.
1133 memcpy(root_blk
->bp
->b_addr
, bp
->b_addr
, state
->blocksize
);
1134 root_blk
->bp
->b_ops
= bp
->b_ops
;
1135 xfs_trans_buf_copy_type(root_blk
->bp
, bp
);
1136 if (oldroothdr
.magic
== XFS_DA3_NODE_MAGIC
) {
1137 struct xfs_da3_blkinfo
*da3
= root_blk
->bp
->b_addr
;
1138 da3
->blkno
= cpu_to_be64(root_blk
->bp
->b_bn
);
1140 xfs_trans_log_buf(args
->trans
, root_blk
->bp
, 0, state
->blocksize
- 1);
1141 error
= xfs_da_shrink_inode(args
, child
, bp
);
1146 * Check a node block and its neighbors to see if the block should be
1147 * collapsed into one or the other neighbor. Always keep the block
1148 * with the smaller block number.
1149 * If the current block is over 50% full, don't try to join it, return 0.
1150 * If the block is empty, fill in the state structure and return 2.
1151 * If it can be collapsed, fill in the state structure and return 1.
1152 * If nothing can be done, return 0.
1155 xfs_da3_node_toosmall(
1156 struct xfs_da_state
*state
,
1159 struct xfs_da_intnode
*node
;
1160 struct xfs_da_state_blk
*blk
;
1161 struct xfs_da_blkinfo
*info
;
1164 struct xfs_da3_icnode_hdr nodehdr
;
1171 trace_xfs_da_node_toosmall(state
->args
);
1174 * Check for the degenerate case of the block being over 50% full.
1175 * If so, it's not worth even looking to see if we might be able
1176 * to coalesce with a sibling.
1178 blk
= &state
->path
.blk
[ state
->path
.active
-1 ];
1179 info
= blk
->bp
->b_addr
;
1180 node
= (xfs_da_intnode_t
*)info
;
1181 xfs_da3_node_hdr_from_disk(&nodehdr
, node
);
1182 if (nodehdr
.count
> (state
->node_ents
>> 1)) {
1183 *action
= 0; /* blk over 50%, don't try to join */
1184 return(0); /* blk over 50%, don't try to join */
1188 * Check for the degenerate case of the block being empty.
1189 * If the block is empty, we'll simply delete it, no need to
1190 * coalesce it with a sibling block. We choose (arbitrarily)
1191 * to merge with the forward block unless it is NULL.
1193 if (nodehdr
.count
== 0) {
1195 * Make altpath point to the block we want to keep and
1196 * path point to the block we want to drop (this one).
1198 forward
= (info
->forw
!= 0);
1199 memcpy(&state
->altpath
, &state
->path
, sizeof(state
->path
));
1200 error
= xfs_da3_path_shift(state
, &state
->altpath
, forward
,
1213 * Examine each sibling block to see if we can coalesce with
1214 * at least 25% free space to spare. We need to figure out
1215 * whether to merge with the forward or the backward block.
1216 * We prefer coalescing with the lower numbered sibling so as
1217 * to shrink a directory over time.
1219 count
= state
->node_ents
;
1220 count
-= state
->node_ents
>> 2;
1221 count
-= nodehdr
.count
;
1223 /* start with smaller blk num */
1224 forward
= nodehdr
.forw
< nodehdr
.back
;
1225 for (i
= 0; i
< 2; forward
= !forward
, i
++) {
1226 struct xfs_da3_icnode_hdr thdr
;
1228 blkno
= nodehdr
.forw
;
1230 blkno
= nodehdr
.back
;
1233 error
= xfs_da3_node_read(state
->args
->trans
, state
->args
->dp
,
1234 blkno
, -1, &bp
, state
->args
->whichfork
);
1239 xfs_da3_node_hdr_from_disk(&thdr
, node
);
1240 xfs_trans_brelse(state
->args
->trans
, bp
);
1242 if (count
- thdr
.count
>= 0)
1243 break; /* fits with at least 25% to spare */
1251 * Make altpath point to the block we want to keep (the lower
1252 * numbered block) and path point to the block we want to drop.
1254 memcpy(&state
->altpath
, &state
->path
, sizeof(state
->path
));
1255 if (blkno
< blk
->blkno
) {
1256 error
= xfs_da3_path_shift(state
, &state
->altpath
, forward
,
1259 error
= xfs_da3_path_shift(state
, &state
->path
, forward
,
1273 * Pick up the last hashvalue from an intermediate node.
1276 xfs_da3_node_lasthash(
1280 struct xfs_da_intnode
*node
;
1281 struct xfs_da_node_entry
*btree
;
1282 struct xfs_da3_icnode_hdr nodehdr
;
1285 xfs_da3_node_hdr_from_disk(&nodehdr
, node
);
1287 *count
= nodehdr
.count
;
1290 btree
= xfs_da3_node_tree_p(node
);
1291 return be32_to_cpu(btree
[nodehdr
.count
- 1].hashval
);
1295 * Walk back up the tree adjusting hash values as necessary,
1296 * when we stop making changes, return.
1299 xfs_da3_fixhashpath(
1300 struct xfs_da_state
*state
,
1301 struct xfs_da_state_path
*path
)
1303 struct xfs_da_state_blk
*blk
;
1304 struct xfs_da_intnode
*node
;
1305 struct xfs_da_node_entry
*btree
;
1306 xfs_dahash_t lasthash
=0;
1310 trace_xfs_da_fixhashpath(state
->args
);
1312 level
= path
->active
-1;
1313 blk
= &path
->blk
[ level
];
1314 switch (blk
->magic
) {
1315 case XFS_ATTR_LEAF_MAGIC
:
1316 lasthash
= xfs_attr_leaf_lasthash(blk
->bp
, &count
);
1320 case XFS_DIR2_LEAFN_MAGIC
:
1321 lasthash
= xfs_dir2_leafn_lasthash(blk
->bp
, &count
);
1325 case XFS_DA_NODE_MAGIC
:
1326 lasthash
= xfs_da3_node_lasthash(blk
->bp
, &count
);
1331 for (blk
--, level
--; level
>= 0; blk
--, level
--) {
1332 struct xfs_da3_icnode_hdr nodehdr
;
1334 node
= blk
->bp
->b_addr
;
1335 xfs_da3_node_hdr_from_disk(&nodehdr
, node
);
1336 btree
= xfs_da3_node_tree_p(node
);
1337 if (be32_to_cpu(btree
[blk
->index
].hashval
) == lasthash
)
1339 blk
->hashval
= lasthash
;
1340 btree
[blk
->index
].hashval
= cpu_to_be32(lasthash
);
1341 xfs_trans_log_buf(state
->args
->trans
, blk
->bp
,
1342 XFS_DA_LOGRANGE(node
, &btree
[blk
->index
],
1345 lasthash
= be32_to_cpu(btree
[nodehdr
.count
- 1].hashval
);
1350 * Remove an entry from an intermediate node.
1353 xfs_da3_node_remove(
1354 struct xfs_da_state
*state
,
1355 struct xfs_da_state_blk
*drop_blk
)
1357 struct xfs_da_intnode
*node
;
1358 struct xfs_da3_icnode_hdr nodehdr
;
1359 struct xfs_da_node_entry
*btree
;
1363 trace_xfs_da_node_remove(state
->args
);
1365 node
= drop_blk
->bp
->b_addr
;
1366 xfs_da3_node_hdr_from_disk(&nodehdr
, node
);
1367 ASSERT(drop_blk
->index
< nodehdr
.count
);
1368 ASSERT(drop_blk
->index
>= 0);
1371 * Copy over the offending entry, or just zero it out.
1373 index
= drop_blk
->index
;
1374 btree
= xfs_da3_node_tree_p(node
);
1375 if (index
< nodehdr
.count
- 1) {
1376 tmp
= nodehdr
.count
- index
- 1;
1377 tmp
*= (uint
)sizeof(xfs_da_node_entry_t
);
1378 memmove(&btree
[index
], &btree
[index
+ 1], tmp
);
1379 xfs_trans_log_buf(state
->args
->trans
, drop_blk
->bp
,
1380 XFS_DA_LOGRANGE(node
, &btree
[index
], tmp
));
1381 index
= nodehdr
.count
- 1;
1383 memset(&btree
[index
], 0, sizeof(xfs_da_node_entry_t
));
1384 xfs_trans_log_buf(state
->args
->trans
, drop_blk
->bp
,
1385 XFS_DA_LOGRANGE(node
, &btree
[index
], sizeof(btree
[index
])));
1387 xfs_da3_node_hdr_to_disk(node
, &nodehdr
);
1388 xfs_trans_log_buf(state
->args
->trans
, drop_blk
->bp
,
1389 XFS_DA_LOGRANGE(node
, &node
->hdr
, xfs_da3_node_hdr_size(node
)));
1392 * Copy the last hash value from the block to propagate upwards.
1394 drop_blk
->hashval
= be32_to_cpu(btree
[index
- 1].hashval
);
1398 * Unbalance the elements between two intermediate nodes,
1399 * move all Btree elements from one node into another.
1402 xfs_da3_node_unbalance(
1403 struct xfs_da_state
*state
,
1404 struct xfs_da_state_blk
*drop_blk
,
1405 struct xfs_da_state_blk
*save_blk
)
1407 struct xfs_da_intnode
*drop_node
;
1408 struct xfs_da_intnode
*save_node
;
1409 struct xfs_da_node_entry
*drop_btree
;
1410 struct xfs_da_node_entry
*save_btree
;
1411 struct xfs_da3_icnode_hdr drop_hdr
;
1412 struct xfs_da3_icnode_hdr save_hdr
;
1413 struct xfs_trans
*tp
;
1417 trace_xfs_da_node_unbalance(state
->args
);
1419 drop_node
= drop_blk
->bp
->b_addr
;
1420 save_node
= save_blk
->bp
->b_addr
;
1421 xfs_da3_node_hdr_from_disk(&drop_hdr
, drop_node
);
1422 xfs_da3_node_hdr_from_disk(&save_hdr
, save_node
);
1423 drop_btree
= xfs_da3_node_tree_p(drop_node
);
1424 save_btree
= xfs_da3_node_tree_p(save_node
);
1425 tp
= state
->args
->trans
;
1428 * If the dying block has lower hashvals, then move all the
1429 * elements in the remaining block up to make a hole.
1431 if ((be32_to_cpu(drop_btree
[0].hashval
) <
1432 be32_to_cpu(save_btree
[0].hashval
)) ||
1433 (be32_to_cpu(drop_btree
[drop_hdr
.count
- 1].hashval
) <
1434 be32_to_cpu(save_btree
[save_hdr
.count
- 1].hashval
))) {
1435 /* XXX: check this - is memmove dst correct? */
1436 tmp
= save_hdr
.count
* sizeof(xfs_da_node_entry_t
);
1437 memmove(&save_btree
[drop_hdr
.count
], &save_btree
[0], tmp
);
1440 xfs_trans_log_buf(tp
, save_blk
->bp
,
1441 XFS_DA_LOGRANGE(save_node
, &save_btree
[0],
1442 (save_hdr
.count
+ drop_hdr
.count
) *
1443 sizeof(xfs_da_node_entry_t
)));
1445 sindex
= save_hdr
.count
;
1446 xfs_trans_log_buf(tp
, save_blk
->bp
,
1447 XFS_DA_LOGRANGE(save_node
, &save_btree
[sindex
],
1448 drop_hdr
.count
* sizeof(xfs_da_node_entry_t
)));
1452 * Move all the B-tree elements from drop_blk to save_blk.
1454 tmp
= drop_hdr
.count
* (uint
)sizeof(xfs_da_node_entry_t
);
1455 memcpy(&save_btree
[sindex
], &drop_btree
[0], tmp
);
1456 save_hdr
.count
+= drop_hdr
.count
;
1458 xfs_da3_node_hdr_to_disk(save_node
, &save_hdr
);
1459 xfs_trans_log_buf(tp
, save_blk
->bp
,
1460 XFS_DA_LOGRANGE(save_node
, &save_node
->hdr
,
1461 xfs_da3_node_hdr_size(save_node
)));
1464 * Save the last hashval in the remaining block for upward propagation.
1466 save_blk
->hashval
= be32_to_cpu(save_btree
[save_hdr
.count
- 1].hashval
);
1469 /*========================================================================
1470 * Routines used for finding things in the Btree.
1471 *========================================================================*/
1474 * Walk down the Btree looking for a particular filename, filling
1475 * in the state structure as we go.
1477 * We will set the state structure to point to each of the elements
1478 * in each of the nodes where either the hashval is or should be.
1480 * We support duplicate hashval's so for each entry in the current
1481 * node that could contain the desired hashval, descend. This is a
1482 * pruned depth-first tree search.
1485 xfs_da3_node_lookup_int(
1486 struct xfs_da_state
*state
,
1489 struct xfs_da_state_blk
*blk
;
1490 struct xfs_da_blkinfo
*curr
;
1491 struct xfs_da_intnode
*node
;
1492 struct xfs_da_node_entry
*btree
;
1493 struct xfs_da3_icnode_hdr nodehdr
;
1494 struct xfs_da_args
*args
;
1496 xfs_dahash_t hashval
;
1497 xfs_dahash_t btreehashval
;
1507 * Descend thru the B-tree searching each level for the right
1508 * node to use, until the right hashval is found.
1510 blkno
= (args
->whichfork
== XFS_DATA_FORK
)? state
->mp
->m_dirleafblk
: 0;
1511 for (blk
= &state
->path
.blk
[0], state
->path
.active
= 1;
1512 state
->path
.active
<= XFS_DA_NODE_MAXDEPTH
;
1513 blk
++, state
->path
.active
++) {
1515 * Read the next node down in the tree.
1518 error
= xfs_da3_node_read(args
->trans
, args
->dp
, blkno
,
1519 -1, &blk
->bp
, args
->whichfork
);
1522 state
->path
.active
--;
1525 curr
= blk
->bp
->b_addr
;
1526 blk
->magic
= be16_to_cpu(curr
->magic
);
1528 if (blk
->magic
== XFS_ATTR_LEAF_MAGIC
||
1529 blk
->magic
== XFS_ATTR3_LEAF_MAGIC
) {
1530 blk
->magic
= XFS_ATTR_LEAF_MAGIC
;
1531 blk
->hashval
= xfs_attr_leaf_lasthash(blk
->bp
, NULL
);
1535 if (blk
->magic
== XFS_DIR2_LEAFN_MAGIC
||
1536 blk
->magic
== XFS_DIR3_LEAFN_MAGIC
) {
1537 blk
->magic
= XFS_DIR2_LEAFN_MAGIC
;
1538 blk
->hashval
= xfs_dir2_leafn_lasthash(blk
->bp
, NULL
);
1542 blk
->magic
= XFS_DA_NODE_MAGIC
;
1546 * Search an intermediate node for a match.
1548 node
= blk
->bp
->b_addr
;
1549 xfs_da3_node_hdr_from_disk(&nodehdr
, node
);
1550 btree
= xfs_da3_node_tree_p(node
);
1552 max
= nodehdr
.count
;
1553 blk
->hashval
= be32_to_cpu(btree
[max
- 1].hashval
);
1556 * Binary search. (note: small blocks will skip loop)
1558 probe
= span
= max
/ 2;
1559 hashval
= args
->hashval
;
1562 btreehashval
= be32_to_cpu(btree
[probe
].hashval
);
1563 if (btreehashval
< hashval
)
1565 else if (btreehashval
> hashval
)
1570 ASSERT((probe
>= 0) && (probe
< max
));
1571 ASSERT((span
<= 4) ||
1572 (be32_to_cpu(btree
[probe
].hashval
) == hashval
));
1575 * Since we may have duplicate hashval's, find the first
1576 * matching hashval in the node.
1579 be32_to_cpu(btree
[probe
].hashval
) >= hashval
) {
1582 while (probe
< max
&&
1583 be32_to_cpu(btree
[probe
].hashval
) < hashval
) {
1588 * Pick the right block to descend on.
1591 blk
->index
= max
- 1;
1592 blkno
= be32_to_cpu(btree
[max
- 1].before
);
1595 blkno
= be32_to_cpu(btree
[probe
].before
);
1600 * A leaf block that ends in the hashval that we are interested in
1601 * (final hashval == search hashval) means that the next block may
1602 * contain more entries with the same hashval, shift upward to the
1603 * next leaf and keep searching.
1606 if (blk
->magic
== XFS_DIR2_LEAFN_MAGIC
) {
1607 retval
= xfs_dir2_leafn_lookup_int(blk
->bp
, args
,
1608 &blk
->index
, state
);
1609 } else if (blk
->magic
== XFS_ATTR_LEAF_MAGIC
) {
1610 retval
= xfs_attr3_leaf_lookup_int(blk
->bp
, args
);
1611 blk
->index
= args
->index
;
1612 args
->blkno
= blk
->blkno
;
1615 return XFS_ERROR(EFSCORRUPTED
);
1617 if (((retval
== ENOENT
) || (retval
== ENOATTR
)) &&
1618 (blk
->hashval
== args
->hashval
)) {
1619 error
= xfs_da3_path_shift(state
, &state
->path
, 1, 1,
1625 } else if (blk
->magic
== XFS_ATTR_LEAF_MAGIC
) {
1626 /* path_shift() gives ENOENT */
1627 retval
= XFS_ERROR(ENOATTR
);
1636 /*========================================================================
1638 *========================================================================*/
1641 * Compare two intermediate nodes for "order".
1645 struct xfs_buf
*node1_bp
,
1646 struct xfs_buf
*node2_bp
)
1648 struct xfs_da_intnode
*node1
;
1649 struct xfs_da_intnode
*node2
;
1650 struct xfs_da_node_entry
*btree1
;
1651 struct xfs_da_node_entry
*btree2
;
1652 struct xfs_da3_icnode_hdr node1hdr
;
1653 struct xfs_da3_icnode_hdr node2hdr
;
1655 node1
= node1_bp
->b_addr
;
1656 node2
= node2_bp
->b_addr
;
1657 xfs_da3_node_hdr_from_disk(&node1hdr
, node1
);
1658 xfs_da3_node_hdr_from_disk(&node2hdr
, node2
);
1659 btree1
= xfs_da3_node_tree_p(node1
);
1660 btree2
= xfs_da3_node_tree_p(node2
);
1662 if (node1hdr
.count
> 0 && node2hdr
.count
> 0 &&
1663 ((be32_to_cpu(btree2
[0].hashval
) < be32_to_cpu(btree1
[0].hashval
)) ||
1664 (be32_to_cpu(btree2
[node2hdr
.count
- 1].hashval
) <
1665 be32_to_cpu(btree1
[node1hdr
.count
- 1].hashval
)))) {
1672 * Link a new block into a doubly linked list of blocks (of whatever type).
1676 struct xfs_da_state
*state
,
1677 struct xfs_da_state_blk
*old_blk
,
1678 struct xfs_da_state_blk
*new_blk
)
1680 struct xfs_da_blkinfo
*old_info
;
1681 struct xfs_da_blkinfo
*new_info
;
1682 struct xfs_da_blkinfo
*tmp_info
;
1683 struct xfs_da_args
*args
;
1689 * Set up environment.
1692 ASSERT(args
!= NULL
);
1693 old_info
= old_blk
->bp
->b_addr
;
1694 new_info
= new_blk
->bp
->b_addr
;
1695 ASSERT(old_blk
->magic
== XFS_DA_NODE_MAGIC
||
1696 old_blk
->magic
== XFS_DIR2_LEAFN_MAGIC
||
1697 old_blk
->magic
== XFS_ATTR_LEAF_MAGIC
);
1699 switch (old_blk
->magic
) {
1700 case XFS_ATTR_LEAF_MAGIC
:
1701 before
= xfs_attr_leaf_order(old_blk
->bp
, new_blk
->bp
);
1703 case XFS_DIR2_LEAFN_MAGIC
:
1704 before
= xfs_dir2_leafn_order(old_blk
->bp
, new_blk
->bp
);
1706 case XFS_DA_NODE_MAGIC
:
1707 before
= xfs_da3_node_order(old_blk
->bp
, new_blk
->bp
);
1712 * Link blocks in appropriate order.
1716 * Link new block in before existing block.
1718 trace_xfs_da_link_before(args
);
1719 new_info
->forw
= cpu_to_be32(old_blk
->blkno
);
1720 new_info
->back
= old_info
->back
;
1721 if (old_info
->back
) {
1722 error
= xfs_da3_node_read(args
->trans
, args
->dp
,
1723 be32_to_cpu(old_info
->back
),
1724 -1, &bp
, args
->whichfork
);
1728 tmp_info
= bp
->b_addr
;
1729 ASSERT(tmp_info
->magic
== old_info
->magic
);
1730 ASSERT(be32_to_cpu(tmp_info
->forw
) == old_blk
->blkno
);
1731 tmp_info
->forw
= cpu_to_be32(new_blk
->blkno
);
1732 xfs_trans_log_buf(args
->trans
, bp
, 0, sizeof(*tmp_info
)-1);
1734 old_info
->back
= cpu_to_be32(new_blk
->blkno
);
1737 * Link new block in after existing block.
1739 trace_xfs_da_link_after(args
);
1740 new_info
->forw
= old_info
->forw
;
1741 new_info
->back
= cpu_to_be32(old_blk
->blkno
);
1742 if (old_info
->forw
) {
1743 error
= xfs_da3_node_read(args
->trans
, args
->dp
,
1744 be32_to_cpu(old_info
->forw
),
1745 -1, &bp
, args
->whichfork
);
1749 tmp_info
= bp
->b_addr
;
1750 ASSERT(tmp_info
->magic
== old_info
->magic
);
1751 ASSERT(be32_to_cpu(tmp_info
->back
) == old_blk
->blkno
);
1752 tmp_info
->back
= cpu_to_be32(new_blk
->blkno
);
1753 xfs_trans_log_buf(args
->trans
, bp
, 0, sizeof(*tmp_info
)-1);
1755 old_info
->forw
= cpu_to_be32(new_blk
->blkno
);
1758 xfs_trans_log_buf(args
->trans
, old_blk
->bp
, 0, sizeof(*tmp_info
) - 1);
1759 xfs_trans_log_buf(args
->trans
, new_blk
->bp
, 0, sizeof(*tmp_info
) - 1);
1764 * Unlink a block from a doubly linked list of blocks.
1766 STATIC
int /* error */
1768 struct xfs_da_state
*state
,
1769 struct xfs_da_state_blk
*drop_blk
,
1770 struct xfs_da_state_blk
*save_blk
)
1772 struct xfs_da_blkinfo
*drop_info
;
1773 struct xfs_da_blkinfo
*save_info
;
1774 struct xfs_da_blkinfo
*tmp_info
;
1775 struct xfs_da_args
*args
;
1780 * Set up environment.
1783 ASSERT(args
!= NULL
);
1784 save_info
= save_blk
->bp
->b_addr
;
1785 drop_info
= drop_blk
->bp
->b_addr
;
1786 ASSERT(save_blk
->magic
== XFS_DA_NODE_MAGIC
||
1787 save_blk
->magic
== XFS_DIR2_LEAFN_MAGIC
||
1788 save_blk
->magic
== XFS_ATTR_LEAF_MAGIC
);
1789 ASSERT(save_blk
->magic
== drop_blk
->magic
);
1790 ASSERT((be32_to_cpu(save_info
->forw
) == drop_blk
->blkno
) ||
1791 (be32_to_cpu(save_info
->back
) == drop_blk
->blkno
));
1792 ASSERT((be32_to_cpu(drop_info
->forw
) == save_blk
->blkno
) ||
1793 (be32_to_cpu(drop_info
->back
) == save_blk
->blkno
));
1796 * Unlink the leaf block from the doubly linked chain of leaves.
1798 if (be32_to_cpu(save_info
->back
) == drop_blk
->blkno
) {
1799 trace_xfs_da_unlink_back(args
);
1800 save_info
->back
= drop_info
->back
;
1801 if (drop_info
->back
) {
1802 error
= xfs_da3_node_read(args
->trans
, args
->dp
,
1803 be32_to_cpu(drop_info
->back
),
1804 -1, &bp
, args
->whichfork
);
1808 tmp_info
= bp
->b_addr
;
1809 ASSERT(tmp_info
->magic
== save_info
->magic
);
1810 ASSERT(be32_to_cpu(tmp_info
->forw
) == drop_blk
->blkno
);
1811 tmp_info
->forw
= cpu_to_be32(save_blk
->blkno
);
1812 xfs_trans_log_buf(args
->trans
, bp
, 0,
1813 sizeof(*tmp_info
) - 1);
1816 trace_xfs_da_unlink_forward(args
);
1817 save_info
->forw
= drop_info
->forw
;
1818 if (drop_info
->forw
) {
1819 error
= xfs_da3_node_read(args
->trans
, args
->dp
,
1820 be32_to_cpu(drop_info
->forw
),
1821 -1, &bp
, args
->whichfork
);
1825 tmp_info
= bp
->b_addr
;
1826 ASSERT(tmp_info
->magic
== save_info
->magic
);
1827 ASSERT(be32_to_cpu(tmp_info
->back
) == drop_blk
->blkno
);
1828 tmp_info
->back
= cpu_to_be32(save_blk
->blkno
);
1829 xfs_trans_log_buf(args
->trans
, bp
, 0,
1830 sizeof(*tmp_info
) - 1);
1834 xfs_trans_log_buf(args
->trans
, save_blk
->bp
, 0, sizeof(*save_info
) - 1);
1839 * Move a path "forward" or "!forward" one block at the current level.
1841 * This routine will adjust a "path" to point to the next block
1842 * "forward" (higher hashvalues) or "!forward" (lower hashvals) in the
1843 * Btree, including updating pointers to the intermediate nodes between
1844 * the new bottom and the root.
1848 struct xfs_da_state
*state
,
1849 struct xfs_da_state_path
*path
,
1854 struct xfs_da_state_blk
*blk
;
1855 struct xfs_da_blkinfo
*info
;
1856 struct xfs_da_intnode
*node
;
1857 struct xfs_da_args
*args
;
1858 struct xfs_da_node_entry
*btree
;
1859 struct xfs_da3_icnode_hdr nodehdr
;
1860 xfs_dablk_t blkno
= 0;
1864 trace_xfs_da_path_shift(state
->args
);
1867 * Roll up the Btree looking for the first block where our
1868 * current index is not at the edge of the block. Note that
1869 * we skip the bottom layer because we want the sibling block.
1872 ASSERT(args
!= NULL
);
1873 ASSERT(path
!= NULL
);
1874 ASSERT((path
->active
> 0) && (path
->active
< XFS_DA_NODE_MAXDEPTH
));
1875 level
= (path
->active
-1) - 1; /* skip bottom layer in path */
1876 for (blk
= &path
->blk
[level
]; level
>= 0; blk
--, level
--) {
1877 node
= blk
->bp
->b_addr
;
1878 xfs_da3_node_hdr_from_disk(&nodehdr
, node
);
1879 btree
= xfs_da3_node_tree_p(node
);
1881 if (forward
&& (blk
->index
< nodehdr
.count
- 1)) {
1883 blkno
= be32_to_cpu(btree
[blk
->index
].before
);
1885 } else if (!forward
&& (blk
->index
> 0)) {
1887 blkno
= be32_to_cpu(btree
[blk
->index
].before
);
1892 *result
= XFS_ERROR(ENOENT
); /* we're out of our tree */
1893 ASSERT(args
->op_flags
& XFS_DA_OP_OKNOENT
);
1898 * Roll down the edge of the subtree until we reach the
1899 * same depth we were at originally.
1901 for (blk
++, level
++; level
< path
->active
; blk
++, level
++) {
1903 * Release the old block.
1904 * (if it's dirty, trans won't actually let go)
1907 xfs_trans_brelse(args
->trans
, blk
->bp
);
1910 * Read the next child block.
1913 error
= xfs_da3_node_read(args
->trans
, args
->dp
, blkno
, -1,
1914 &blk
->bp
, args
->whichfork
);
1917 info
= blk
->bp
->b_addr
;
1918 ASSERT(info
->magic
== cpu_to_be16(XFS_DA_NODE_MAGIC
) ||
1919 info
->magic
== cpu_to_be16(XFS_DA3_NODE_MAGIC
) ||
1920 info
->magic
== cpu_to_be16(XFS_DIR2_LEAFN_MAGIC
) ||
1921 info
->magic
== cpu_to_be16(XFS_DIR3_LEAFN_MAGIC
) ||
1922 info
->magic
== cpu_to_be16(XFS_ATTR_LEAF_MAGIC
) ||
1923 info
->magic
== cpu_to_be16(XFS_ATTR3_LEAF_MAGIC
));
1927 * Note: we flatten the magic number to a single type so we
1928 * don't have to compare against crc/non-crc types elsewhere.
1930 switch (be16_to_cpu(info
->magic
)) {
1931 case XFS_DA_NODE_MAGIC
:
1932 case XFS_DA3_NODE_MAGIC
:
1933 blk
->magic
= XFS_DA_NODE_MAGIC
;
1934 node
= (xfs_da_intnode_t
*)info
;
1935 xfs_da3_node_hdr_from_disk(&nodehdr
, node
);
1936 btree
= xfs_da3_node_tree_p(node
);
1937 blk
->hashval
= be32_to_cpu(btree
[nodehdr
.count
- 1].hashval
);
1941 blk
->index
= nodehdr
.count
- 1;
1942 blkno
= be32_to_cpu(btree
[blk
->index
].before
);
1944 case XFS_ATTR_LEAF_MAGIC
:
1945 case XFS_ATTR3_LEAF_MAGIC
:
1946 blk
->magic
= XFS_ATTR_LEAF_MAGIC
;
1947 ASSERT(level
== path
->active
-1);
1949 blk
->hashval
= xfs_attr_leaf_lasthash(blk
->bp
,
1952 case XFS_DIR2_LEAFN_MAGIC
:
1953 case XFS_DIR3_LEAFN_MAGIC
:
1954 blk
->magic
= XFS_DIR2_LEAFN_MAGIC
;
1955 ASSERT(level
== path
->active
-1);
1957 blk
->hashval
= xfs_dir2_leafn_lasthash(blk
->bp
,
1970 /*========================================================================
1972 *========================================================================*/
1975 * Implement a simple hash on a character string.
1976 * Rotate the hash value by 7 bits, then XOR each character in.
1977 * This is implemented with some source-level loop unrolling.
1980 xfs_da_hashname(const __uint8_t
*name
, int namelen
)
1985 * Do four characters at a time as long as we can.
1987 for (hash
= 0; namelen
>= 4; namelen
-= 4, name
+= 4)
1988 hash
= (name
[0] << 21) ^ (name
[1] << 14) ^ (name
[2] << 7) ^
1989 (name
[3] << 0) ^ rol32(hash
, 7 * 4);
1992 * Now do the rest of the characters.
1996 return (name
[0] << 14) ^ (name
[1] << 7) ^ (name
[2] << 0) ^
1999 return (name
[0] << 7) ^ (name
[1] << 0) ^ rol32(hash
, 7 * 2);
2001 return (name
[0] << 0) ^ rol32(hash
, 7 * 1);
2002 default: /* case 0: */
2009 struct xfs_da_args
*args
,
2010 const unsigned char *name
,
2013 return (args
->namelen
== len
&& memcmp(args
->name
, name
, len
) == 0) ?
2014 XFS_CMP_EXACT
: XFS_CMP_DIFFERENT
;
2018 xfs_default_hashname(
2019 struct xfs_name
*name
)
2021 return xfs_da_hashname(name
->name
, name
->len
);
2024 const struct xfs_nameops xfs_default_nameops
= {
2025 .hashname
= xfs_default_hashname
,
2026 .compname
= xfs_da_compname
2030 xfs_da_grow_inode_int(
2031 struct xfs_da_args
*args
,
2035 struct xfs_trans
*tp
= args
->trans
;
2036 struct xfs_inode
*dp
= args
->dp
;
2037 int w
= args
->whichfork
;
2038 xfs_drfsbno_t nblks
= dp
->i_d
.di_nblocks
;
2039 struct xfs_bmbt_irec map
, *mapp
;
2040 int nmap
, error
, got
, i
, mapi
;
2043 * Find a spot in the file space to put the new block.
2045 error
= xfs_bmap_first_unused(tp
, dp
, count
, bno
, w
);
2050 * Try mapping it in one filesystem block.
2053 ASSERT(args
->firstblock
!= NULL
);
2054 error
= xfs_bmapi_write(tp
, dp
, *bno
, count
,
2055 xfs_bmapi_aflag(w
)|XFS_BMAPI_METADATA
|XFS_BMAPI_CONTIG
,
2056 args
->firstblock
, args
->total
, &map
, &nmap
,
2065 } else if (nmap
== 0 && count
> 1) {
2070 * If we didn't get it and the block might work if fragmented,
2071 * try without the CONTIG flag. Loop until we get it all.
2073 mapp
= kmem_alloc(sizeof(*mapp
) * count
, KM_SLEEP
);
2074 for (b
= *bno
, mapi
= 0; b
< *bno
+ count
; ) {
2075 nmap
= MIN(XFS_BMAP_MAX_NMAP
, count
);
2076 c
= (int)(*bno
+ count
- b
);
2077 error
= xfs_bmapi_write(tp
, dp
, b
, c
,
2078 xfs_bmapi_aflag(w
)|XFS_BMAPI_METADATA
,
2079 args
->firstblock
, args
->total
,
2080 &mapp
[mapi
], &nmap
, args
->flist
);
2086 b
= mapp
[mapi
- 1].br_startoff
+
2087 mapp
[mapi
- 1].br_blockcount
;
2095 * Count the blocks we got, make sure it matches the total.
2097 for (i
= 0, got
= 0; i
< mapi
; i
++)
2098 got
+= mapp
[i
].br_blockcount
;
2099 if (got
!= count
|| mapp
[0].br_startoff
!= *bno
||
2100 mapp
[mapi
- 1].br_startoff
+ mapp
[mapi
- 1].br_blockcount
!=
2102 error
= XFS_ERROR(ENOSPC
);
2106 /* account for newly allocated blocks in reserved blocks total */
2107 args
->total
-= dp
->i_d
.di_nblocks
- nblks
;
2116 * Add a block to the btree ahead of the file.
2117 * Return the new block number to the caller.
2121 struct xfs_da_args
*args
,
2122 xfs_dablk_t
*new_blkno
)
2128 trace_xfs_da_grow_inode(args
);
2130 if (args
->whichfork
== XFS_DATA_FORK
) {
2131 bno
= args
->dp
->i_mount
->m_dirleafblk
;
2132 count
= args
->dp
->i_mount
->m_dirblkfsbs
;
2138 error
= xfs_da_grow_inode_int(args
, &bno
, count
);
2140 *new_blkno
= (xfs_dablk_t
)bno
;
2145 * Ick. We need to always be able to remove a btree block, even
2146 * if there's no space reservation because the filesystem is full.
2147 * This is called if xfs_bunmapi on a btree block fails due to ENOSPC.
2148 * It swaps the target block with the last block in the file. The
2149 * last block in the file can always be removed since it can't cause
2150 * a bmap btree split to do that.
2153 xfs_da3_swap_lastblock(
2154 struct xfs_da_args
*args
,
2155 xfs_dablk_t
*dead_blknop
,
2156 struct xfs_buf
**dead_bufp
)
2158 struct xfs_da_blkinfo
*dead_info
;
2159 struct xfs_da_blkinfo
*sib_info
;
2160 struct xfs_da_intnode
*par_node
;
2161 struct xfs_da_intnode
*dead_node
;
2162 struct xfs_dir2_leaf
*dead_leaf2
;
2163 struct xfs_da_node_entry
*btree
;
2164 struct xfs_da3_icnode_hdr par_hdr
;
2165 struct xfs_inode
*ip
;
2166 struct xfs_trans
*tp
;
2167 struct xfs_mount
*mp
;
2168 struct xfs_buf
*dead_buf
;
2169 struct xfs_buf
*last_buf
;
2170 struct xfs_buf
*sib_buf
;
2171 struct xfs_buf
*par_buf
;
2172 xfs_dahash_t dead_hash
;
2173 xfs_fileoff_t lastoff
;
2174 xfs_dablk_t dead_blkno
;
2175 xfs_dablk_t last_blkno
;
2176 xfs_dablk_t sib_blkno
;
2177 xfs_dablk_t par_blkno
;
2184 trace_xfs_da_swap_lastblock(args
);
2186 dead_buf
= *dead_bufp
;
2187 dead_blkno
= *dead_blknop
;
2190 w
= args
->whichfork
;
2191 ASSERT(w
== XFS_DATA_FORK
);
2193 lastoff
= mp
->m_dirfreeblk
;
2194 error
= xfs_bmap_last_before(tp
, ip
, &lastoff
, w
);
2197 if (unlikely(lastoff
== 0)) {
2198 XFS_ERROR_REPORT("xfs_da_swap_lastblock(1)", XFS_ERRLEVEL_LOW
,
2200 return XFS_ERROR(EFSCORRUPTED
);
2203 * Read the last block in the btree space.
2205 last_blkno
= (xfs_dablk_t
)lastoff
- mp
->m_dirblkfsbs
;
2206 error
= xfs_da3_node_read(tp
, ip
, last_blkno
, -1, &last_buf
, w
);
2210 * Copy the last block into the dead buffer and log it.
2212 memcpy(dead_buf
->b_addr
, last_buf
->b_addr
, mp
->m_dirblksize
);
2213 xfs_trans_log_buf(tp
, dead_buf
, 0, mp
->m_dirblksize
- 1);
2214 dead_info
= dead_buf
->b_addr
;
2216 * Get values from the moved block.
2218 if (dead_info
->magic
== cpu_to_be16(XFS_DIR2_LEAFN_MAGIC
) ||
2219 dead_info
->magic
== cpu_to_be16(XFS_DIR3_LEAFN_MAGIC
)) {
2220 struct xfs_dir3_icleaf_hdr leafhdr
;
2221 struct xfs_dir2_leaf_entry
*ents
;
2223 dead_leaf2
= (xfs_dir2_leaf_t
*)dead_info
;
2224 xfs_dir3_leaf_hdr_from_disk(&leafhdr
, dead_leaf2
);
2225 ents
= xfs_dir3_leaf_ents_p(dead_leaf2
);
2227 dead_hash
= be32_to_cpu(ents
[leafhdr
.count
- 1].hashval
);
2229 struct xfs_da3_icnode_hdr deadhdr
;
2231 dead_node
= (xfs_da_intnode_t
*)dead_info
;
2232 xfs_da3_node_hdr_from_disk(&deadhdr
, dead_node
);
2233 btree
= xfs_da3_node_tree_p(dead_node
);
2234 dead_level
= deadhdr
.level
;
2235 dead_hash
= be32_to_cpu(btree
[deadhdr
.count
- 1].hashval
);
2237 sib_buf
= par_buf
= NULL
;
2239 * If the moved block has a left sibling, fix up the pointers.
2241 if ((sib_blkno
= be32_to_cpu(dead_info
->back
))) {
2242 error
= xfs_da3_node_read(tp
, ip
, sib_blkno
, -1, &sib_buf
, w
);
2245 sib_info
= sib_buf
->b_addr
;
2247 be32_to_cpu(sib_info
->forw
) != last_blkno
||
2248 sib_info
->magic
!= dead_info
->magic
)) {
2249 XFS_ERROR_REPORT("xfs_da_swap_lastblock(2)",
2250 XFS_ERRLEVEL_LOW
, mp
);
2251 error
= XFS_ERROR(EFSCORRUPTED
);
2254 sib_info
->forw
= cpu_to_be32(dead_blkno
);
2255 xfs_trans_log_buf(tp
, sib_buf
,
2256 XFS_DA_LOGRANGE(sib_info
, &sib_info
->forw
,
2257 sizeof(sib_info
->forw
)));
2261 * If the moved block has a right sibling, fix up the pointers.
2263 if ((sib_blkno
= be32_to_cpu(dead_info
->forw
))) {
2264 error
= xfs_da3_node_read(tp
, ip
, sib_blkno
, -1, &sib_buf
, w
);
2267 sib_info
= sib_buf
->b_addr
;
2269 be32_to_cpu(sib_info
->back
) != last_blkno
||
2270 sib_info
->magic
!= dead_info
->magic
)) {
2271 XFS_ERROR_REPORT("xfs_da_swap_lastblock(3)",
2272 XFS_ERRLEVEL_LOW
, mp
);
2273 error
= XFS_ERROR(EFSCORRUPTED
);
2276 sib_info
->back
= cpu_to_be32(dead_blkno
);
2277 xfs_trans_log_buf(tp
, sib_buf
,
2278 XFS_DA_LOGRANGE(sib_info
, &sib_info
->back
,
2279 sizeof(sib_info
->back
)));
2282 par_blkno
= mp
->m_dirleafblk
;
2285 * Walk down the tree looking for the parent of the moved block.
2288 error
= xfs_da3_node_read(tp
, ip
, par_blkno
, -1, &par_buf
, w
);
2291 par_node
= par_buf
->b_addr
;
2292 xfs_da3_node_hdr_from_disk(&par_hdr
, par_node
);
2293 if (level
>= 0 && level
!= par_hdr
.level
+ 1) {
2294 XFS_ERROR_REPORT("xfs_da_swap_lastblock(4)",
2295 XFS_ERRLEVEL_LOW
, mp
);
2296 error
= XFS_ERROR(EFSCORRUPTED
);
2299 level
= par_hdr
.level
;
2300 btree
= xfs_da3_node_tree_p(par_node
);
2302 entno
< par_hdr
.count
&&
2303 be32_to_cpu(btree
[entno
].hashval
) < dead_hash
;
2306 if (entno
== par_hdr
.count
) {
2307 XFS_ERROR_REPORT("xfs_da_swap_lastblock(5)",
2308 XFS_ERRLEVEL_LOW
, mp
);
2309 error
= XFS_ERROR(EFSCORRUPTED
);
2312 par_blkno
= be32_to_cpu(btree
[entno
].before
);
2313 if (level
== dead_level
+ 1)
2315 xfs_trans_brelse(tp
, par_buf
);
2319 * We're in the right parent block.
2320 * Look for the right entry.
2324 entno
< par_hdr
.count
&&
2325 be32_to_cpu(btree
[entno
].before
) != last_blkno
;
2328 if (entno
< par_hdr
.count
)
2330 par_blkno
= par_hdr
.forw
;
2331 xfs_trans_brelse(tp
, par_buf
);
2333 if (unlikely(par_blkno
== 0)) {
2334 XFS_ERROR_REPORT("xfs_da_swap_lastblock(6)",
2335 XFS_ERRLEVEL_LOW
, mp
);
2336 error
= XFS_ERROR(EFSCORRUPTED
);
2339 error
= xfs_da3_node_read(tp
, ip
, par_blkno
, -1, &par_buf
, w
);
2342 par_node
= par_buf
->b_addr
;
2343 xfs_da3_node_hdr_from_disk(&par_hdr
, par_node
);
2344 if (par_hdr
.level
!= level
) {
2345 XFS_ERROR_REPORT("xfs_da_swap_lastblock(7)",
2346 XFS_ERRLEVEL_LOW
, mp
);
2347 error
= XFS_ERROR(EFSCORRUPTED
);
2350 btree
= xfs_da3_node_tree_p(par_node
);
2354 * Update the parent entry pointing to the moved block.
2356 btree
[entno
].before
= cpu_to_be32(dead_blkno
);
2357 xfs_trans_log_buf(tp
, par_buf
,
2358 XFS_DA_LOGRANGE(par_node
, &btree
[entno
].before
,
2359 sizeof(btree
[entno
].before
)));
2360 *dead_blknop
= last_blkno
;
2361 *dead_bufp
= last_buf
;
2365 xfs_trans_brelse(tp
, par_buf
);
2367 xfs_trans_brelse(tp
, sib_buf
);
2368 xfs_trans_brelse(tp
, last_buf
);
2373 * Remove a btree block from a directory or attribute.
2376 xfs_da_shrink_inode(
2377 xfs_da_args_t
*args
,
2378 xfs_dablk_t dead_blkno
,
2379 struct xfs_buf
*dead_buf
)
2382 int done
, error
, w
, count
;
2386 trace_xfs_da_shrink_inode(args
);
2389 w
= args
->whichfork
;
2392 if (w
== XFS_DATA_FORK
)
2393 count
= mp
->m_dirblkfsbs
;
2398 * Remove extents. If we get ENOSPC for a dir we have to move
2399 * the last block to the place we want to kill.
2401 error
= xfs_bunmapi(tp
, dp
, dead_blkno
, count
,
2402 xfs_bmapi_aflag(w
)|XFS_BMAPI_METADATA
,
2403 0, args
->firstblock
, args
->flist
, &done
);
2404 if (error
== ENOSPC
) {
2405 if (w
!= XFS_DATA_FORK
)
2407 error
= xfs_da3_swap_lastblock(args
, &dead_blkno
,
2415 xfs_trans_binval(tp
, dead_buf
);
2420 * See if the mapping(s) for this btree block are valid, i.e.
2421 * don't contain holes, are logically contiguous, and cover the whole range.
2424 xfs_da_map_covers_blocks(
2426 xfs_bmbt_irec_t
*mapp
,
2433 for (i
= 0, off
= bno
; i
< nmap
; i
++) {
2434 if (mapp
[i
].br_startblock
== HOLESTARTBLOCK
||
2435 mapp
[i
].br_startblock
== DELAYSTARTBLOCK
) {
2438 if (off
!= mapp
[i
].br_startoff
) {
2441 off
+= mapp
[i
].br_blockcount
;
2443 return off
== bno
+ count
;
2447 * Convert a struct xfs_bmbt_irec to a struct xfs_buf_map.
2449 * For the single map case, it is assumed that the caller has provided a pointer
2450 * to a valid xfs_buf_map. For the multiple map case, this function will
2451 * allocate the xfs_buf_map to hold all the maps and replace the caller's single
2452 * map pointer with the allocated map.
2455 xfs_buf_map_from_irec(
2456 struct xfs_mount
*mp
,
2457 struct xfs_buf_map
**mapp
,
2458 unsigned int *nmaps
,
2459 struct xfs_bmbt_irec
*irecs
,
2460 unsigned int nirecs
)
2462 struct xfs_buf_map
*map
;
2465 ASSERT(*nmaps
== 1);
2466 ASSERT(nirecs
>= 1);
2469 map
= kmem_zalloc(nirecs
* sizeof(struct xfs_buf_map
),
2470 KM_SLEEP
| KM_NOFS
);
2478 for (i
= 0; i
< *nmaps
; i
++) {
2479 ASSERT(irecs
[i
].br_startblock
!= DELAYSTARTBLOCK
&&
2480 irecs
[i
].br_startblock
!= HOLESTARTBLOCK
);
2481 map
[i
].bm_bn
= XFS_FSB_TO_DADDR(mp
, irecs
[i
].br_startblock
);
2482 map
[i
].bm_len
= XFS_FSB_TO_BB(mp
, irecs
[i
].br_blockcount
);
2488 * Map the block we are given ready for reading. There are three possible return
2490 * -1 - will be returned if we land in a hole and mappedbno == -2 so the
2491 * caller knows not to execute a subsequent read.
2492 * 0 - if we mapped the block successfully
2493 * >0 - positive error number if there was an error.
2497 struct xfs_trans
*trans
,
2498 struct xfs_inode
*dp
,
2500 xfs_daddr_t mappedbno
,
2502 struct xfs_buf_map
**map
,
2505 struct xfs_mount
*mp
= dp
->i_mount
;
2508 struct xfs_bmbt_irec irec
;
2509 struct xfs_bmbt_irec
*irecs
= &irec
;
2512 ASSERT(map
&& *map
);
2513 ASSERT(*nmaps
== 1);
2515 nfsb
= (whichfork
== XFS_DATA_FORK
) ? mp
->m_dirblkfsbs
: 1;
2518 * Caller doesn't have a mapping. -2 means don't complain
2519 * if we land in a hole.
2521 if (mappedbno
== -1 || mappedbno
== -2) {
2523 * Optimize the one-block case.
2526 irecs
= kmem_zalloc(sizeof(irec
) * nfsb
,
2527 KM_SLEEP
| KM_NOFS
);
2530 error
= xfs_bmapi_read(dp
, (xfs_fileoff_t
)bno
, nfsb
, irecs
,
2531 &nirecs
, xfs_bmapi_aflag(whichfork
));
2535 irecs
->br_startblock
= XFS_DADDR_TO_FSB(mp
, mappedbno
);
2536 irecs
->br_startoff
= (xfs_fileoff_t
)bno
;
2537 irecs
->br_blockcount
= nfsb
;
2538 irecs
->br_state
= 0;
2542 if (!xfs_da_map_covers_blocks(nirecs
, irecs
, bno
, nfsb
)) {
2543 error
= mappedbno
== -2 ? -1 : XFS_ERROR(EFSCORRUPTED
);
2544 if (unlikely(error
== EFSCORRUPTED
)) {
2545 if (xfs_error_level
>= XFS_ERRLEVEL_LOW
) {
2547 xfs_alert(mp
, "%s: bno %lld dir: inode %lld",
2548 __func__
, (long long)bno
,
2549 (long long)dp
->i_ino
);
2550 for (i
= 0; i
< *nmaps
; i
++) {
2552 "[%02d] br_startoff %lld br_startblock %lld br_blockcount %lld br_state %d",
2554 (long long)irecs
[i
].br_startoff
,
2555 (long long)irecs
[i
].br_startblock
,
2556 (long long)irecs
[i
].br_blockcount
,
2560 XFS_ERROR_REPORT("xfs_da_do_buf(1)",
2561 XFS_ERRLEVEL_LOW
, mp
);
2565 error
= xfs_buf_map_from_irec(mp
, map
, nmaps
, irecs
, nirecs
);
2573 * Get a buffer for the dir/attr block.
2577 struct xfs_trans
*trans
,
2578 struct xfs_inode
*dp
,
2580 xfs_daddr_t mappedbno
,
2581 struct xfs_buf
**bpp
,
2585 struct xfs_buf_map map
;
2586 struct xfs_buf_map
*mapp
;
2593 error
= xfs_dabuf_map(trans
, dp
, bno
, mappedbno
, whichfork
,
2596 /* mapping a hole is not an error, but we don't continue */
2602 bp
= xfs_trans_get_buf_map(trans
, dp
->i_mount
->m_ddev_targp
,
2604 error
= bp
? bp
->b_error
: XFS_ERROR(EIO
);
2606 xfs_trans_brelse(trans
, bp
);
2620 * Get a buffer for the dir/attr block, fill in the contents.
2624 struct xfs_trans
*trans
,
2625 struct xfs_inode
*dp
,
2627 xfs_daddr_t mappedbno
,
2628 struct xfs_buf
**bpp
,
2630 const struct xfs_buf_ops
*ops
)
2633 struct xfs_buf_map map
;
2634 struct xfs_buf_map
*mapp
;
2641 error
= xfs_dabuf_map(trans
, dp
, bno
, mappedbno
, whichfork
,
2644 /* mapping a hole is not an error, but we don't continue */
2650 error
= xfs_trans_read_buf_map(dp
->i_mount
, trans
,
2651 dp
->i_mount
->m_ddev_targp
,
2652 mapp
, nmap
, 0, &bp
, ops
);
2656 if (whichfork
== XFS_ATTR_FORK
)
2657 xfs_buf_set_ref(bp
, XFS_ATTR_BTREE_REF
);
2659 xfs_buf_set_ref(bp
, XFS_DIR_BTREE_REF
);
2662 * This verification code will be moved to a CRC verification callback
2663 * function so just leave it here unchanged until then.
2666 xfs_dir2_data_hdr_t
*hdr
= bp
->b_addr
;
2667 xfs_dir2_free_t
*free
= bp
->b_addr
;
2668 xfs_da_blkinfo_t
*info
= bp
->b_addr
;
2670 struct xfs_mount
*mp
= dp
->i_mount
;
2672 magic
= be16_to_cpu(info
->magic
);
2673 magic1
= be32_to_cpu(hdr
->magic
);
2675 XFS_TEST_ERROR((magic
!= XFS_DA_NODE_MAGIC
) &&
2676 (magic
!= XFS_DA3_NODE_MAGIC
) &&
2677 (magic
!= XFS_ATTR_LEAF_MAGIC
) &&
2678 (magic
!= XFS_ATTR3_LEAF_MAGIC
) &&
2679 (magic
!= XFS_DIR2_LEAF1_MAGIC
) &&
2680 (magic
!= XFS_DIR3_LEAF1_MAGIC
) &&
2681 (magic
!= XFS_DIR2_LEAFN_MAGIC
) &&
2682 (magic
!= XFS_DIR3_LEAFN_MAGIC
) &&
2683 (magic1
!= XFS_DIR2_BLOCK_MAGIC
) &&
2684 (magic1
!= XFS_DIR3_BLOCK_MAGIC
) &&
2685 (magic1
!= XFS_DIR2_DATA_MAGIC
) &&
2686 (magic1
!= XFS_DIR3_DATA_MAGIC
) &&
2688 cpu_to_be32(XFS_DIR2_FREE_MAGIC
)) &&
2690 cpu_to_be32(XFS_DIR3_FREE_MAGIC
)),
2691 mp
, XFS_ERRTAG_DA_READ_BUF
,
2692 XFS_RANDOM_DA_READ_BUF
))) {
2693 trace_xfs_da_btree_corrupt(bp
, _RET_IP_
);
2694 XFS_CORRUPTION_ERROR("xfs_da_do_buf(2)",
2695 XFS_ERRLEVEL_LOW
, mp
, info
);
2696 error
= XFS_ERROR(EFSCORRUPTED
);
2697 xfs_trans_brelse(trans
, bp
);
2710 * Readahead the dir/attr block.
2714 struct xfs_trans
*trans
,
2715 struct xfs_inode
*dp
,
2717 xfs_daddr_t mappedbno
,
2719 const struct xfs_buf_ops
*ops
)
2721 struct xfs_buf_map map
;
2722 struct xfs_buf_map
*mapp
;
2728 error
= xfs_dabuf_map(trans
, dp
, bno
, mappedbno
, whichfork
,
2731 /* mapping a hole is not an error, but we don't continue */
2737 mappedbno
= mapp
[0].bm_bn
;
2738 xfs_buf_readahead_map(dp
->i_mount
->m_ddev_targp
, mapp
, nmap
, ops
);