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"
23 #include "xfs_trans.h"
26 #include "xfs_mount.h"
27 #include "xfs_da_btree.h"
28 #include "xfs_bmap_btree.h"
29 #include "xfs_dinode.h"
30 #include "xfs_inode.h"
32 #include "xfs_dir2_format.h"
33 #include "xfs_dir2_priv.h"
34 #include "xfs_error.h"
35 #include "xfs_trace.h"
36 #include "xfs_buf_item.h"
37 #include "xfs_cksum.h"
40 * Function declarations.
42 static int xfs_dir2_leafn_add(struct xfs_buf
*bp
, xfs_da_args_t
*args
,
44 static void xfs_dir2_leafn_rebalance(xfs_da_state_t
*state
,
45 xfs_da_state_blk_t
*blk1
,
46 xfs_da_state_blk_t
*blk2
);
47 static int xfs_dir2_leafn_remove(xfs_da_args_t
*args
, struct xfs_buf
*bp
,
48 int index
, xfs_da_state_blk_t
*dblk
,
50 static int xfs_dir2_node_addname_int(xfs_da_args_t
*args
,
51 xfs_da_state_blk_t
*fblk
);
54 * Check internal consistency of a leafn block.
57 #define xfs_dir3_leaf_check(mp, bp) \
59 if (!xfs_dir3_leafn_check((mp), (bp))) \
68 struct xfs_dir2_leaf
*leaf
= bp
->b_addr
;
69 struct xfs_dir3_icleaf_hdr leafhdr
;
71 xfs_dir3_leaf_hdr_from_disk(&leafhdr
, leaf
);
73 if (leafhdr
.magic
== XFS_DIR3_LEAFN_MAGIC
) {
74 struct xfs_dir3_leaf_hdr
*leaf3
= bp
->b_addr
;
75 if (be64_to_cpu(leaf3
->info
.blkno
) != bp
->b_bn
)
77 } else if (leafhdr
.magic
!= XFS_DIR2_LEAFN_MAGIC
)
80 return xfs_dir3_leaf_check_int(mp
, &leafhdr
, leaf
);
83 #define xfs_dir3_leaf_check(mp, bp)
90 struct xfs_mount
*mp
= bp
->b_target
->bt_mount
;
91 struct xfs_dir2_free_hdr
*hdr
= bp
->b_addr
;
93 if (xfs_sb_version_hascrc(&mp
->m_sb
)) {
94 struct xfs_dir3_blk_hdr
*hdr3
= bp
->b_addr
;
96 if (hdr3
->magic
!= cpu_to_be32(XFS_DIR3_FREE_MAGIC
))
98 if (!uuid_equal(&hdr3
->uuid
, &mp
->m_sb
.sb_uuid
))
100 if (be64_to_cpu(hdr3
->blkno
) != bp
->b_bn
)
103 if (hdr
->magic
!= cpu_to_be32(XFS_DIR2_FREE_MAGIC
))
107 /* XXX: should bounds check the xfs_dir3_icfree_hdr here */
113 xfs_dir3_free_read_verify(
116 struct xfs_mount
*mp
= bp
->b_target
->bt_mount
;
118 if ((xfs_sb_version_hascrc(&mp
->m_sb
) &&
119 !xfs_verify_cksum(bp
->b_addr
, BBTOB(bp
->b_length
),
120 XFS_DIR3_FREE_CRC_OFF
)) ||
121 !xfs_dir3_free_verify(bp
)) {
122 XFS_CORRUPTION_ERROR(__func__
, XFS_ERRLEVEL_LOW
, mp
, bp
->b_addr
);
123 xfs_buf_ioerror(bp
, EFSCORRUPTED
);
128 xfs_dir3_free_write_verify(
131 struct xfs_mount
*mp
= bp
->b_target
->bt_mount
;
132 struct xfs_buf_log_item
*bip
= bp
->b_fspriv
;
133 struct xfs_dir3_blk_hdr
*hdr3
= bp
->b_addr
;
135 if (!xfs_dir3_free_verify(bp
)) {
136 XFS_CORRUPTION_ERROR(__func__
, XFS_ERRLEVEL_LOW
, mp
, bp
->b_addr
);
137 xfs_buf_ioerror(bp
, EFSCORRUPTED
);
141 if (!xfs_sb_version_hascrc(&mp
->m_sb
))
145 hdr3
->lsn
= cpu_to_be64(bip
->bli_item
.li_lsn
);
147 xfs_update_cksum(bp
->b_addr
, BBTOB(bp
->b_length
), XFS_DIR3_FREE_CRC_OFF
);
150 const struct xfs_buf_ops xfs_dir3_free_buf_ops
= {
151 .verify_read
= xfs_dir3_free_read_verify
,
152 .verify_write
= xfs_dir3_free_write_verify
,
157 __xfs_dir3_free_read(
158 struct xfs_trans
*tp
,
159 struct xfs_inode
*dp
,
161 xfs_daddr_t mappedbno
,
162 struct xfs_buf
**bpp
)
166 err
= xfs_da_read_buf(tp
, dp
, fbno
, mappedbno
, bpp
,
167 XFS_DATA_FORK
, &xfs_dir3_free_buf_ops
);
169 /* try read returns without an error or *bpp if it lands in a hole */
170 if (!err
&& tp
&& *bpp
)
171 xfs_trans_buf_set_type(tp
, *bpp
, XFS_BLFT_DIR_FREE_BUF
);
177 struct xfs_trans
*tp
,
178 struct xfs_inode
*dp
,
180 struct xfs_buf
**bpp
)
182 return __xfs_dir3_free_read(tp
, dp
, fbno
, -1, bpp
);
186 xfs_dir2_free_try_read(
187 struct xfs_trans
*tp
,
188 struct xfs_inode
*dp
,
190 struct xfs_buf
**bpp
)
192 return __xfs_dir3_free_read(tp
, dp
, fbno
, -2, bpp
);
197 xfs_dir3_free_hdr_from_disk(
198 struct xfs_dir3_icfree_hdr
*to
,
199 struct xfs_dir2_free
*from
)
201 if (from
->hdr
.magic
== cpu_to_be32(XFS_DIR2_FREE_MAGIC
)) {
202 to
->magic
= be32_to_cpu(from
->hdr
.magic
);
203 to
->firstdb
= be32_to_cpu(from
->hdr
.firstdb
);
204 to
->nvalid
= be32_to_cpu(from
->hdr
.nvalid
);
205 to
->nused
= be32_to_cpu(from
->hdr
.nused
);
207 struct xfs_dir3_free_hdr
*hdr3
= (struct xfs_dir3_free_hdr
*)from
;
209 to
->magic
= be32_to_cpu(hdr3
->hdr
.magic
);
210 to
->firstdb
= be32_to_cpu(hdr3
->firstdb
);
211 to
->nvalid
= be32_to_cpu(hdr3
->nvalid
);
212 to
->nused
= be32_to_cpu(hdr3
->nused
);
215 ASSERT(to
->magic
== XFS_DIR2_FREE_MAGIC
||
216 to
->magic
== XFS_DIR3_FREE_MAGIC
);
220 xfs_dir3_free_hdr_to_disk(
221 struct xfs_dir2_free
*to
,
222 struct xfs_dir3_icfree_hdr
*from
)
224 ASSERT(from
->magic
== XFS_DIR2_FREE_MAGIC
||
225 from
->magic
== XFS_DIR3_FREE_MAGIC
);
227 if (from
->magic
== XFS_DIR2_FREE_MAGIC
) {
228 to
->hdr
.magic
= cpu_to_be32(from
->magic
);
229 to
->hdr
.firstdb
= cpu_to_be32(from
->firstdb
);
230 to
->hdr
.nvalid
= cpu_to_be32(from
->nvalid
);
231 to
->hdr
.nused
= cpu_to_be32(from
->nused
);
233 struct xfs_dir3_free_hdr
*hdr3
= (struct xfs_dir3_free_hdr
*)to
;
235 hdr3
->hdr
.magic
= cpu_to_be32(from
->magic
);
236 hdr3
->firstdb
= cpu_to_be32(from
->firstdb
);
237 hdr3
->nvalid
= cpu_to_be32(from
->nvalid
);
238 hdr3
->nused
= cpu_to_be32(from
->nused
);
243 xfs_dir3_free_get_buf(
244 struct xfs_trans
*tp
,
245 struct xfs_inode
*dp
,
247 struct xfs_buf
**bpp
)
249 struct xfs_mount
*mp
= dp
->i_mount
;
252 struct xfs_dir3_icfree_hdr hdr
;
254 error
= xfs_da_get_buf(tp
, dp
, xfs_dir2_db_to_da(mp
, fbno
),
255 -1, &bp
, XFS_DATA_FORK
);
259 xfs_trans_buf_set_type(tp
, bp
, XFS_BLFT_DIR_FREE_BUF
);
260 bp
->b_ops
= &xfs_dir3_free_buf_ops
;
263 * Initialize the new block to be empty, and remember
264 * its first slot as our empty slot.
266 memset(bp
->b_addr
, 0, sizeof(struct xfs_dir3_free_hdr
));
267 memset(&hdr
, 0, sizeof(hdr
));
269 if (xfs_sb_version_hascrc(&mp
->m_sb
)) {
270 struct xfs_dir3_free_hdr
*hdr3
= bp
->b_addr
;
272 hdr
.magic
= XFS_DIR3_FREE_MAGIC
;
274 hdr3
->hdr
.blkno
= cpu_to_be64(bp
->b_bn
);
275 hdr3
->hdr
.owner
= cpu_to_be64(dp
->i_ino
);
276 uuid_copy(&hdr3
->hdr
.uuid
, &mp
->m_sb
.sb_uuid
);
278 hdr
.magic
= XFS_DIR2_FREE_MAGIC
;
279 xfs_dir3_free_hdr_to_disk(bp
->b_addr
, &hdr
);
285 * Log entries from a freespace block.
288 xfs_dir2_free_log_bests(
289 struct xfs_trans
*tp
,
291 int first
, /* first entry to log */
292 int last
) /* last entry to log */
294 xfs_dir2_free_t
*free
; /* freespace structure */
298 bests
= xfs_dir3_free_bests_p(tp
->t_mountp
, free
);
299 ASSERT(free
->hdr
.magic
== cpu_to_be32(XFS_DIR2_FREE_MAGIC
) ||
300 free
->hdr
.magic
== cpu_to_be32(XFS_DIR3_FREE_MAGIC
));
301 xfs_trans_log_buf(tp
, bp
,
302 (uint
)((char *)&bests
[first
] - (char *)free
),
303 (uint
)((char *)&bests
[last
] - (char *)free
+
304 sizeof(bests
[0]) - 1));
308 * Log header from a freespace block.
311 xfs_dir2_free_log_header(
312 struct xfs_trans
*tp
,
315 xfs_dir2_free_t
*free
; /* freespace structure */
318 ASSERT(free
->hdr
.magic
== cpu_to_be32(XFS_DIR2_FREE_MAGIC
) ||
319 free
->hdr
.magic
== cpu_to_be32(XFS_DIR3_FREE_MAGIC
));
320 xfs_trans_log_buf(tp
, bp
, 0, xfs_dir3_free_hdr_size(tp
->t_mountp
) - 1);
324 * Convert a leaf-format directory to a node-format directory.
325 * We need to change the magic number of the leaf block, and copy
326 * the freespace table out of the leaf block into its own block.
329 xfs_dir2_leaf_to_node(
330 xfs_da_args_t
*args
, /* operation arguments */
331 struct xfs_buf
*lbp
) /* leaf buffer */
333 xfs_inode_t
*dp
; /* incore directory inode */
334 int error
; /* error return value */
335 struct xfs_buf
*fbp
; /* freespace buffer */
336 xfs_dir2_db_t fdb
; /* freespace block number */
337 xfs_dir2_free_t
*free
; /* freespace structure */
338 __be16
*from
; /* pointer to freespace entry */
339 int i
; /* leaf freespace index */
340 xfs_dir2_leaf_t
*leaf
; /* leaf structure */
341 xfs_dir2_leaf_tail_t
*ltp
; /* leaf tail structure */
342 xfs_mount_t
*mp
; /* filesystem mount point */
343 int n
; /* count of live freespc ents */
344 xfs_dir2_data_off_t off
; /* freespace entry value */
345 __be16
*to
; /* pointer to freespace entry */
346 xfs_trans_t
*tp
; /* transaction pointer */
347 struct xfs_dir3_icfree_hdr freehdr
;
349 trace_xfs_dir2_leaf_to_node(args
);
355 * Add a freespace block to the directory.
357 if ((error
= xfs_dir2_grow_inode(args
, XFS_DIR2_FREE_SPACE
, &fdb
))) {
360 ASSERT(fdb
== XFS_DIR2_FREE_FIRSTDB(mp
));
362 * Get the buffer for the new freespace block.
364 error
= xfs_dir3_free_get_buf(tp
, dp
, fdb
, &fbp
);
369 xfs_dir3_free_hdr_from_disk(&freehdr
, free
);
371 ltp
= xfs_dir2_leaf_tail_p(mp
, leaf
);
372 ASSERT(be32_to_cpu(ltp
->bestcount
) <=
373 (uint
)dp
->i_d
.di_size
/ mp
->m_dirblksize
);
376 * Copy freespace entries from the leaf block to the new block.
377 * Count active entries.
379 from
= xfs_dir2_leaf_bests_p(ltp
);
380 to
= xfs_dir3_free_bests_p(mp
, free
);
381 for (i
= n
= 0; i
< be32_to_cpu(ltp
->bestcount
); i
++, from
++, to
++) {
382 if ((off
= be16_to_cpu(*from
)) != NULLDATAOFF
)
384 *to
= cpu_to_be16(off
);
388 * Now initialize the freespace block header.
391 freehdr
.nvalid
= be32_to_cpu(ltp
->bestcount
);
393 xfs_dir3_free_hdr_to_disk(fbp
->b_addr
, &freehdr
);
394 xfs_dir2_free_log_bests(tp
, fbp
, 0, freehdr
.nvalid
- 1);
395 xfs_dir2_free_log_header(tp
, fbp
);
398 * Converting the leaf to a leafnode is just a matter of changing the
399 * magic number and the ops. Do the change directly to the buffer as
400 * it's less work (and less code) than decoding the header to host
401 * format and back again.
403 if (leaf
->hdr
.info
.magic
== cpu_to_be16(XFS_DIR2_LEAF1_MAGIC
))
404 leaf
->hdr
.info
.magic
= cpu_to_be16(XFS_DIR2_LEAFN_MAGIC
);
406 leaf
->hdr
.info
.magic
= cpu_to_be16(XFS_DIR3_LEAFN_MAGIC
);
407 lbp
->b_ops
= &xfs_dir3_leafn_buf_ops
;
408 xfs_trans_buf_set_type(tp
, lbp
, XFS_BLFT_DIR_LEAFN_BUF
);
409 xfs_dir3_leaf_log_header(tp
, lbp
);
410 xfs_dir3_leaf_check(mp
, lbp
);
415 * Add a leaf entry to a leaf block in a node-form directory.
416 * The other work necessary is done from the caller.
418 static int /* error */
420 struct xfs_buf
*bp
, /* leaf buffer */
421 xfs_da_args_t
*args
, /* operation arguments */
422 int index
) /* insertion pt for new entry */
424 int compact
; /* compacting stale leaves */
425 xfs_inode_t
*dp
; /* incore directory inode */
426 int highstale
; /* next stale entry */
427 xfs_dir2_leaf_t
*leaf
; /* leaf structure */
428 xfs_dir2_leaf_entry_t
*lep
; /* leaf entry */
429 int lfloghigh
; /* high leaf entry logging */
430 int lfloglow
; /* low leaf entry logging */
431 int lowstale
; /* previous stale entry */
432 xfs_mount_t
*mp
; /* filesystem mount point */
433 xfs_trans_t
*tp
; /* transaction pointer */
434 struct xfs_dir3_icleaf_hdr leafhdr
;
435 struct xfs_dir2_leaf_entry
*ents
;
437 trace_xfs_dir2_leafn_add(args
, index
);
443 xfs_dir3_leaf_hdr_from_disk(&leafhdr
, leaf
);
444 ents
= xfs_dir3_leaf_ents_p(leaf
);
447 * Quick check just to make sure we are not going to index
448 * into other peoples memory
451 return XFS_ERROR(EFSCORRUPTED
);
454 * If there are already the maximum number of leaf entries in
455 * the block, if there are no stale entries it won't fit.
456 * Caller will do a split. If there are stale entries we'll do
460 if (leafhdr
.count
== xfs_dir3_max_leaf_ents(mp
, leaf
)) {
462 return XFS_ERROR(ENOSPC
);
463 compact
= leafhdr
.stale
> 1;
466 ASSERT(index
== 0 || be32_to_cpu(ents
[index
- 1].hashval
) <= args
->hashval
);
467 ASSERT(index
== leafhdr
.count
||
468 be32_to_cpu(ents
[index
].hashval
) >= args
->hashval
);
470 if (args
->op_flags
& XFS_DA_OP_JUSTCHECK
)
474 * Compact out all but one stale leaf entry. Leaves behind
475 * the entry closest to index.
478 xfs_dir3_leaf_compact_x1(&leafhdr
, ents
, &index
, &lowstale
,
479 &highstale
, &lfloglow
, &lfloghigh
);
480 else if (leafhdr
.stale
) {
482 * Set impossible logging indices for this case.
484 lfloglow
= leafhdr
.count
;
489 * Insert the new entry, log everything.
491 lep
= xfs_dir3_leaf_find_entry(&leafhdr
, ents
, index
, compact
, lowstale
,
492 highstale
, &lfloglow
, &lfloghigh
);
494 lep
->hashval
= cpu_to_be32(args
->hashval
);
495 lep
->address
= cpu_to_be32(xfs_dir2_db_off_to_dataptr(mp
,
496 args
->blkno
, args
->index
));
498 xfs_dir3_leaf_hdr_to_disk(leaf
, &leafhdr
);
499 xfs_dir3_leaf_log_header(tp
, bp
);
500 xfs_dir3_leaf_log_ents(tp
, bp
, lfloglow
, lfloghigh
);
501 xfs_dir3_leaf_check(mp
, bp
);
507 xfs_dir2_free_hdr_check(
508 struct xfs_mount
*mp
,
512 struct xfs_dir3_icfree_hdr hdr
;
514 xfs_dir3_free_hdr_from_disk(&hdr
, bp
->b_addr
);
516 ASSERT((hdr
.firstdb
% xfs_dir3_free_max_bests(mp
)) == 0);
517 ASSERT(hdr
.firstdb
<= db
);
518 ASSERT(db
< hdr
.firstdb
+ hdr
.nvalid
);
521 #define xfs_dir2_free_hdr_check(mp, dp, db)
525 * Return the last hash value in the leaf.
526 * Stale entries are ok.
528 xfs_dahash_t
/* hash value */
529 xfs_dir2_leafn_lasthash(
530 struct xfs_buf
*bp
, /* leaf buffer */
531 int *count
) /* count of entries in leaf */
533 struct xfs_dir2_leaf
*leaf
= bp
->b_addr
;
534 struct xfs_dir2_leaf_entry
*ents
;
535 struct xfs_dir3_icleaf_hdr leafhdr
;
537 xfs_dir3_leaf_hdr_from_disk(&leafhdr
, leaf
);
539 ASSERT(leafhdr
.magic
== XFS_DIR2_LEAFN_MAGIC
||
540 leafhdr
.magic
== XFS_DIR3_LEAFN_MAGIC
);
543 *count
= leafhdr
.count
;
547 ents
= xfs_dir3_leaf_ents_p(leaf
);
548 return be32_to_cpu(ents
[leafhdr
.count
- 1].hashval
);
552 * Look up a leaf entry for space to add a name in a node-format leaf block.
553 * The extrablk in state is a freespace block.
556 xfs_dir2_leafn_lookup_for_addname(
557 struct xfs_buf
*bp
, /* leaf buffer */
558 xfs_da_args_t
*args
, /* operation arguments */
559 int *indexp
, /* out: leaf entry index */
560 xfs_da_state_t
*state
) /* state to fill in */
562 struct xfs_buf
*curbp
= NULL
; /* current data/free buffer */
563 xfs_dir2_db_t curdb
= -1; /* current data block number */
564 xfs_dir2_db_t curfdb
= -1; /* current free block number */
565 xfs_inode_t
*dp
; /* incore directory inode */
566 int error
; /* error return value */
567 int fi
; /* free entry index */
568 xfs_dir2_free_t
*free
= NULL
; /* free block structure */
569 int index
; /* leaf entry index */
570 xfs_dir2_leaf_t
*leaf
; /* leaf structure */
571 int length
; /* length of new data entry */
572 xfs_dir2_leaf_entry_t
*lep
; /* leaf entry */
573 xfs_mount_t
*mp
; /* filesystem mount point */
574 xfs_dir2_db_t newdb
; /* new data block number */
575 xfs_dir2_db_t newfdb
; /* new free block number */
576 xfs_trans_t
*tp
; /* transaction pointer */
577 struct xfs_dir2_leaf_entry
*ents
;
578 struct xfs_dir3_icleaf_hdr leafhdr
;
584 xfs_dir3_leaf_hdr_from_disk(&leafhdr
, leaf
);
585 ents
= xfs_dir3_leaf_ents_p(leaf
);
587 xfs_dir3_leaf_check(mp
, bp
);
588 ASSERT(leafhdr
.count
> 0);
591 * Look up the hash value in the leaf entries.
593 index
= xfs_dir2_leaf_search_hash(args
, bp
);
595 * Do we have a buffer coming in?
597 if (state
->extravalid
) {
598 /* If so, it's a free block buffer, get the block number. */
599 curbp
= state
->extrablk
.bp
;
600 curfdb
= state
->extrablk
.blkno
;
601 free
= curbp
->b_addr
;
602 ASSERT(free
->hdr
.magic
== cpu_to_be32(XFS_DIR2_FREE_MAGIC
) ||
603 free
->hdr
.magic
== cpu_to_be32(XFS_DIR3_FREE_MAGIC
));
605 length
= xfs_dir2_data_entsize(args
->namelen
);
607 * Loop over leaf entries with the right hash value.
609 for (lep
= &ents
[index
];
610 index
< leafhdr
.count
&& be32_to_cpu(lep
->hashval
) == args
->hashval
;
613 * Skip stale leaf entries.
615 if (be32_to_cpu(lep
->address
) == XFS_DIR2_NULL_DATAPTR
)
618 * Pull the data block number from the entry.
620 newdb
= xfs_dir2_dataptr_to_db(mp
, be32_to_cpu(lep
->address
));
622 * For addname, we're looking for a place to put the new entry.
623 * We want to use a data block with an entry of equal
624 * hash value to ours if there is one with room.
626 * If this block isn't the data block we already have
627 * in hand, take a look at it.
629 if (newdb
!= curdb
) {
634 * Convert the data block to the free block
635 * holding its freespace information.
637 newfdb
= xfs_dir2_db_to_fdb(mp
, newdb
);
639 * If it's not the one we have in hand, read it in.
641 if (newfdb
!= curfdb
) {
643 * If we had one before, drop it.
646 xfs_trans_brelse(tp
, curbp
);
648 error
= xfs_dir2_free_read(tp
, dp
,
649 xfs_dir2_db_to_da(mp
, newfdb
),
653 free
= curbp
->b_addr
;
655 xfs_dir2_free_hdr_check(mp
, curbp
, curdb
);
658 * Get the index for our entry.
660 fi
= xfs_dir2_db_to_fdindex(mp
, curdb
);
662 * If it has room, return it.
664 bests
= xfs_dir3_free_bests_p(mp
, free
);
665 if (unlikely(bests
[fi
] == cpu_to_be16(NULLDATAOFF
))) {
666 XFS_ERROR_REPORT("xfs_dir2_leafn_lookup_int",
667 XFS_ERRLEVEL_LOW
, mp
);
668 if (curfdb
!= newfdb
)
669 xfs_trans_brelse(tp
, curbp
);
670 return XFS_ERROR(EFSCORRUPTED
);
673 if (be16_to_cpu(bests
[fi
]) >= length
)
677 /* Didn't find any space */
680 ASSERT(args
->op_flags
& XFS_DA_OP_OKNOENT
);
682 /* Giving back a free block. */
683 state
->extravalid
= 1;
684 state
->extrablk
.bp
= curbp
;
685 state
->extrablk
.index
= fi
;
686 state
->extrablk
.blkno
= curfdb
;
689 * Important: this magic number is not in the buffer - it's for
690 * buffer type information and therefore only the free/data type
691 * matters here, not whether CRCs are enabled or not.
693 state
->extrablk
.magic
= XFS_DIR2_FREE_MAGIC
;
695 state
->extravalid
= 0;
698 * Return the index, that will be the insertion point.
701 return XFS_ERROR(ENOENT
);
705 * Look up a leaf entry in a node-format leaf block.
706 * The extrablk in state a data block.
709 xfs_dir2_leafn_lookup_for_entry(
710 struct xfs_buf
*bp
, /* leaf buffer */
711 xfs_da_args_t
*args
, /* operation arguments */
712 int *indexp
, /* out: leaf entry index */
713 xfs_da_state_t
*state
) /* state to fill in */
715 struct xfs_buf
*curbp
= NULL
; /* current data/free buffer */
716 xfs_dir2_db_t curdb
= -1; /* current data block number */
717 xfs_dir2_data_entry_t
*dep
; /* data block entry */
718 xfs_inode_t
*dp
; /* incore directory inode */
719 int error
; /* error return value */
720 int index
; /* leaf entry index */
721 xfs_dir2_leaf_t
*leaf
; /* leaf structure */
722 xfs_dir2_leaf_entry_t
*lep
; /* leaf entry */
723 xfs_mount_t
*mp
; /* filesystem mount point */
724 xfs_dir2_db_t newdb
; /* new data block number */
725 xfs_trans_t
*tp
; /* transaction pointer */
726 enum xfs_dacmp cmp
; /* comparison result */
727 struct xfs_dir2_leaf_entry
*ents
;
728 struct xfs_dir3_icleaf_hdr leafhdr
;
734 xfs_dir3_leaf_hdr_from_disk(&leafhdr
, leaf
);
735 ents
= xfs_dir3_leaf_ents_p(leaf
);
737 xfs_dir3_leaf_check(mp
, bp
);
738 ASSERT(leafhdr
.count
> 0);
741 * Look up the hash value in the leaf entries.
743 index
= xfs_dir2_leaf_search_hash(args
, bp
);
745 * Do we have a buffer coming in?
747 if (state
->extravalid
) {
748 curbp
= state
->extrablk
.bp
;
749 curdb
= state
->extrablk
.blkno
;
752 * Loop over leaf entries with the right hash value.
754 for (lep
= &ents
[index
];
755 index
< leafhdr
.count
&& be32_to_cpu(lep
->hashval
) == args
->hashval
;
758 * Skip stale leaf entries.
760 if (be32_to_cpu(lep
->address
) == XFS_DIR2_NULL_DATAPTR
)
763 * Pull the data block number from the entry.
765 newdb
= xfs_dir2_dataptr_to_db(mp
, be32_to_cpu(lep
->address
));
767 * Not adding a new entry, so we really want to find
768 * the name given to us.
770 * If it's a different data block, go get it.
772 if (newdb
!= curdb
) {
774 * If we had a block before that we aren't saving
775 * for a CI name, drop it
777 if (curbp
&& (args
->cmpresult
== XFS_CMP_DIFFERENT
||
778 curdb
!= state
->extrablk
.blkno
))
779 xfs_trans_brelse(tp
, curbp
);
781 * If needing the block that is saved with a CI match,
782 * use it otherwise read in the new data block.
784 if (args
->cmpresult
!= XFS_CMP_DIFFERENT
&&
785 newdb
== state
->extrablk
.blkno
) {
786 ASSERT(state
->extravalid
);
787 curbp
= state
->extrablk
.bp
;
789 error
= xfs_dir3_data_read(tp
, dp
,
790 xfs_dir2_db_to_da(mp
, newdb
),
795 xfs_dir3_data_check(dp
, curbp
);
799 * Point to the data entry.
801 dep
= (xfs_dir2_data_entry_t
*)((char *)curbp
->b_addr
+
802 xfs_dir2_dataptr_to_off(mp
, be32_to_cpu(lep
->address
)));
804 * Compare the entry and if it's an exact match, return
805 * EEXIST immediately. If it's the first case-insensitive
806 * match, store the block & inode number and continue looking.
808 cmp
= mp
->m_dirnameops
->compname(args
, dep
->name
, dep
->namelen
);
809 if (cmp
!= XFS_CMP_DIFFERENT
&& cmp
!= args
->cmpresult
) {
810 /* If there is a CI match block, drop it */
811 if (args
->cmpresult
!= XFS_CMP_DIFFERENT
&&
812 curdb
!= state
->extrablk
.blkno
)
813 xfs_trans_brelse(tp
, state
->extrablk
.bp
);
814 args
->cmpresult
= cmp
;
815 args
->inumber
= be64_to_cpu(dep
->inumber
);
817 state
->extravalid
= 1;
818 state
->extrablk
.bp
= curbp
;
819 state
->extrablk
.blkno
= curdb
;
820 state
->extrablk
.index
= (int)((char *)dep
-
821 (char *)curbp
->b_addr
);
822 state
->extrablk
.magic
= XFS_DIR2_DATA_MAGIC
;
823 curbp
->b_ops
= &xfs_dir3_data_buf_ops
;
824 xfs_trans_buf_set_type(tp
, curbp
, XFS_BLFT_DIR_DATA_BUF
);
825 if (cmp
== XFS_CMP_EXACT
)
826 return XFS_ERROR(EEXIST
);
829 ASSERT(index
== leafhdr
.count
|| (args
->op_flags
& XFS_DA_OP_OKNOENT
));
831 if (args
->cmpresult
== XFS_CMP_DIFFERENT
) {
832 /* Giving back last used data block. */
833 state
->extravalid
= 1;
834 state
->extrablk
.bp
= curbp
;
835 state
->extrablk
.index
= -1;
836 state
->extrablk
.blkno
= curdb
;
837 state
->extrablk
.magic
= XFS_DIR2_DATA_MAGIC
;
838 curbp
->b_ops
= &xfs_dir3_data_buf_ops
;
839 xfs_trans_buf_set_type(tp
, curbp
, XFS_BLFT_DIR_DATA_BUF
);
841 /* If the curbp is not the CI match block, drop it */
842 if (state
->extrablk
.bp
!= curbp
)
843 xfs_trans_brelse(tp
, curbp
);
846 state
->extravalid
= 0;
849 return XFS_ERROR(ENOENT
);
853 * Look up a leaf entry in a node-format leaf block.
854 * If this is an addname then the extrablk in state is a freespace block,
855 * otherwise it's a data block.
858 xfs_dir2_leafn_lookup_int(
859 struct xfs_buf
*bp
, /* leaf buffer */
860 xfs_da_args_t
*args
, /* operation arguments */
861 int *indexp
, /* out: leaf entry index */
862 xfs_da_state_t
*state
) /* state to fill in */
864 if (args
->op_flags
& XFS_DA_OP_ADDNAME
)
865 return xfs_dir2_leafn_lookup_for_addname(bp
, args
, indexp
,
867 return xfs_dir2_leafn_lookup_for_entry(bp
, args
, indexp
, state
);
871 * Move count leaf entries from source to destination leaf.
872 * Log entries and headers. Stale entries are preserved.
875 xfs_dir3_leafn_moveents(
876 xfs_da_args_t
*args
, /* operation arguments */
877 struct xfs_buf
*bp_s
, /* source */
878 struct xfs_dir3_icleaf_hdr
*shdr
,
879 struct xfs_dir2_leaf_entry
*sents
,
880 int start_s
,/* source leaf index */
881 struct xfs_buf
*bp_d
, /* destination */
882 struct xfs_dir3_icleaf_hdr
*dhdr
,
883 struct xfs_dir2_leaf_entry
*dents
,
884 int start_d
,/* destination leaf index */
885 int count
) /* count of leaves to copy */
887 struct xfs_trans
*tp
= args
->trans
;
888 int stale
; /* count stale leaves copied */
890 trace_xfs_dir2_leafn_moveents(args
, start_s
, start_d
, count
);
893 * Silently return if nothing to do.
899 * If the destination index is not the end of the current
900 * destination leaf entries, open up a hole in the destination
901 * to hold the new entries.
903 if (start_d
< dhdr
->count
) {
904 memmove(&dents
[start_d
+ count
], &dents
[start_d
],
905 (dhdr
->count
- start_d
) * sizeof(xfs_dir2_leaf_entry_t
));
906 xfs_dir3_leaf_log_ents(tp
, bp_d
, start_d
+ count
,
907 count
+ dhdr
->count
- 1);
910 * If the source has stale leaves, count the ones in the copy range
911 * so we can update the header correctly.
914 int i
; /* temp leaf index */
916 for (i
= start_s
, stale
= 0; i
< start_s
+ count
; i
++) {
917 if (sents
[i
].address
==
918 cpu_to_be32(XFS_DIR2_NULL_DATAPTR
))
924 * Copy the leaf entries from source to destination.
926 memcpy(&dents
[start_d
], &sents
[start_s
],
927 count
* sizeof(xfs_dir2_leaf_entry_t
));
928 xfs_dir3_leaf_log_ents(tp
, bp_d
, start_d
, start_d
+ count
- 1);
931 * If there are source entries after the ones we copied,
932 * delete the ones we copied by sliding the next ones down.
934 if (start_s
+ count
< shdr
->count
) {
935 memmove(&sents
[start_s
], &sents
[start_s
+ count
],
936 count
* sizeof(xfs_dir2_leaf_entry_t
));
937 xfs_dir3_leaf_log_ents(tp
, bp_s
, start_s
, start_s
+ count
- 1);
941 * Update the headers and log them.
943 shdr
->count
-= count
;
944 shdr
->stale
-= stale
;
945 dhdr
->count
+= count
;
946 dhdr
->stale
+= stale
;
950 * Determine the sort order of two leaf blocks.
951 * Returns 1 if both are valid and leaf2 should be before leaf1, else 0.
954 xfs_dir2_leafn_order(
955 struct xfs_buf
*leaf1_bp
, /* leaf1 buffer */
956 struct xfs_buf
*leaf2_bp
) /* leaf2 buffer */
958 struct xfs_dir2_leaf
*leaf1
= leaf1_bp
->b_addr
;
959 struct xfs_dir2_leaf
*leaf2
= leaf2_bp
->b_addr
;
960 struct xfs_dir2_leaf_entry
*ents1
;
961 struct xfs_dir2_leaf_entry
*ents2
;
962 struct xfs_dir3_icleaf_hdr hdr1
;
963 struct xfs_dir3_icleaf_hdr hdr2
;
965 xfs_dir3_leaf_hdr_from_disk(&hdr1
, leaf1
);
966 xfs_dir3_leaf_hdr_from_disk(&hdr2
, leaf2
);
967 ents1
= xfs_dir3_leaf_ents_p(leaf1
);
968 ents2
= xfs_dir3_leaf_ents_p(leaf2
);
970 if (hdr1
.count
> 0 && hdr2
.count
> 0 &&
971 (be32_to_cpu(ents2
[0].hashval
) < be32_to_cpu(ents1
[0].hashval
) ||
972 be32_to_cpu(ents2
[hdr2
.count
- 1].hashval
) <
973 be32_to_cpu(ents1
[hdr1
.count
- 1].hashval
)))
979 * Rebalance leaf entries between two leaf blocks.
980 * This is actually only called when the second block is new,
981 * though the code deals with the general case.
982 * A new entry will be inserted in one of the blocks, and that
983 * entry is taken into account when balancing.
986 xfs_dir2_leafn_rebalance(
987 xfs_da_state_t
*state
, /* btree cursor */
988 xfs_da_state_blk_t
*blk1
, /* first btree block */
989 xfs_da_state_blk_t
*blk2
) /* second btree block */
991 xfs_da_args_t
*args
; /* operation arguments */
992 int count
; /* count (& direction) leaves */
993 int isleft
; /* new goes in left leaf */
994 xfs_dir2_leaf_t
*leaf1
; /* first leaf structure */
995 xfs_dir2_leaf_t
*leaf2
; /* second leaf structure */
996 int mid
; /* midpoint leaf index */
997 #if defined(DEBUG) || defined(XFS_WARN)
998 int oldstale
; /* old count of stale leaves */
1000 int oldsum
; /* old total leaf count */
1001 int swap
; /* swapped leaf blocks */
1002 struct xfs_dir2_leaf_entry
*ents1
;
1003 struct xfs_dir2_leaf_entry
*ents2
;
1004 struct xfs_dir3_icleaf_hdr hdr1
;
1005 struct xfs_dir3_icleaf_hdr hdr2
;
1009 * If the block order is wrong, swap the arguments.
1011 if ((swap
= xfs_dir2_leafn_order(blk1
->bp
, blk2
->bp
))) {
1012 xfs_da_state_blk_t
*tmp
; /* temp for block swap */
1018 leaf1
= blk1
->bp
->b_addr
;
1019 leaf2
= blk2
->bp
->b_addr
;
1020 xfs_dir3_leaf_hdr_from_disk(&hdr1
, leaf1
);
1021 xfs_dir3_leaf_hdr_from_disk(&hdr2
, leaf2
);
1022 ents1
= xfs_dir3_leaf_ents_p(leaf1
);
1023 ents2
= xfs_dir3_leaf_ents_p(leaf2
);
1025 oldsum
= hdr1
.count
+ hdr2
.count
;
1026 #if defined(DEBUG) || defined(XFS_WARN)
1027 oldstale
= hdr1
.stale
+ hdr2
.stale
;
1032 * If the old leaf count was odd then the new one will be even,
1033 * so we need to divide the new count evenly.
1036 xfs_dahash_t midhash
; /* middle entry hash value */
1038 if (mid
>= hdr1
.count
)
1039 midhash
= be32_to_cpu(ents2
[mid
- hdr1
.count
].hashval
);
1041 midhash
= be32_to_cpu(ents1
[mid
].hashval
);
1042 isleft
= args
->hashval
<= midhash
;
1045 * If the old count is even then the new count is odd, so there's
1046 * no preferred side for the new entry.
1047 * Pick the left one.
1052 * Calculate moved entry count. Positive means left-to-right,
1053 * negative means right-to-left. Then move the entries.
1055 count
= hdr1
.count
- mid
+ (isleft
== 0);
1057 xfs_dir3_leafn_moveents(args
, blk1
->bp
, &hdr1
, ents1
,
1058 hdr1
.count
- count
, blk2
->bp
,
1059 &hdr2
, ents2
, 0, count
);
1061 xfs_dir3_leafn_moveents(args
, blk2
->bp
, &hdr2
, ents2
, 0,
1062 blk1
->bp
, &hdr1
, ents1
,
1065 ASSERT(hdr1
.count
+ hdr2
.count
== oldsum
);
1066 ASSERT(hdr1
.stale
+ hdr2
.stale
== oldstale
);
1068 /* log the changes made when moving the entries */
1069 xfs_dir3_leaf_hdr_to_disk(leaf1
, &hdr1
);
1070 xfs_dir3_leaf_hdr_to_disk(leaf2
, &hdr2
);
1071 xfs_dir3_leaf_log_header(args
->trans
, blk1
->bp
);
1072 xfs_dir3_leaf_log_header(args
->trans
, blk2
->bp
);
1074 xfs_dir3_leaf_check(args
->dp
->i_mount
, blk1
->bp
);
1075 xfs_dir3_leaf_check(args
->dp
->i_mount
, blk2
->bp
);
1078 * Mark whether we're inserting into the old or new leaf.
1080 if (hdr1
.count
< hdr2
.count
)
1081 state
->inleaf
= swap
;
1082 else if (hdr1
.count
> hdr2
.count
)
1083 state
->inleaf
= !swap
;
1085 state
->inleaf
= swap
^ (blk1
->index
<= hdr1
.count
);
1087 * Adjust the expected index for insertion.
1090 blk2
->index
= blk1
->index
- hdr1
.count
;
1093 * Finally sanity check just to make sure we are not returning a
1096 if(blk2
->index
< 0) {
1099 xfs_alert(args
->dp
->i_mount
,
1100 "%s: picked the wrong leaf? reverting original leaf: blk1->index %d\n",
1101 __func__
, blk1
->index
);
1106 xfs_dir3_data_block_free(
1107 xfs_da_args_t
*args
,
1108 struct xfs_dir2_data_hdr
*hdr
,
1109 struct xfs_dir2_free
*free
,
1112 struct xfs_buf
*fbp
,
1115 struct xfs_trans
*tp
= args
->trans
;
1118 struct xfs_dir3_icfree_hdr freehdr
;
1120 xfs_dir3_free_hdr_from_disk(&freehdr
, free
);
1122 bests
= xfs_dir3_free_bests_p(tp
->t_mountp
, free
);
1125 * Data block is not empty, just set the free entry to the new
1128 bests
[findex
] = cpu_to_be16(longest
);
1129 xfs_dir2_free_log_bests(tp
, fbp
, findex
, findex
);
1133 /* One less used entry in the free table. */
1137 * If this was the last entry in the table, we can trim the table size
1138 * back. There might be other entries at the end referring to
1139 * non-existent data blocks, get those too.
1141 if (findex
== freehdr
.nvalid
- 1) {
1142 int i
; /* free entry index */
1144 for (i
= findex
- 1; i
>= 0; i
--) {
1145 if (bests
[i
] != cpu_to_be16(NULLDATAOFF
))
1148 freehdr
.nvalid
= i
+ 1;
1151 /* Not the last entry, just punch it out. */
1152 bests
[findex
] = cpu_to_be16(NULLDATAOFF
);
1156 xfs_dir3_free_hdr_to_disk(free
, &freehdr
);
1157 xfs_dir2_free_log_header(tp
, fbp
);
1160 * If there are no useful entries left in the block, get rid of the
1163 if (!freehdr
.nused
) {
1166 error
= xfs_dir2_shrink_inode(args
, fdb
, fbp
);
1170 } else if (error
!= ENOSPC
|| args
->total
!= 0)
1173 * It's possible to get ENOSPC if there is no
1174 * space reservation. In this case some one
1175 * else will eventually get rid of this block.
1179 /* Log the free entry that changed, unless we got rid of it. */
1181 xfs_dir2_free_log_bests(tp
, fbp
, findex
, findex
);
1186 * Remove an entry from a node directory.
1187 * This removes the leaf entry and the data entry,
1188 * and updates the free block if necessary.
1190 static int /* error */
1191 xfs_dir2_leafn_remove(
1192 xfs_da_args_t
*args
, /* operation arguments */
1193 struct xfs_buf
*bp
, /* leaf buffer */
1194 int index
, /* leaf entry index */
1195 xfs_da_state_blk_t
*dblk
, /* data block */
1196 int *rval
) /* resulting block needs join */
1198 xfs_dir2_data_hdr_t
*hdr
; /* data block header */
1199 xfs_dir2_db_t db
; /* data block number */
1200 struct xfs_buf
*dbp
; /* data block buffer */
1201 xfs_dir2_data_entry_t
*dep
; /* data block entry */
1202 xfs_inode_t
*dp
; /* incore directory inode */
1203 xfs_dir2_leaf_t
*leaf
; /* leaf structure */
1204 xfs_dir2_leaf_entry_t
*lep
; /* leaf entry */
1205 int longest
; /* longest data free entry */
1206 int off
; /* data block entry offset */
1207 xfs_mount_t
*mp
; /* filesystem mount point */
1208 int needlog
; /* need to log data header */
1209 int needscan
; /* need to rescan data frees */
1210 xfs_trans_t
*tp
; /* transaction pointer */
1211 struct xfs_dir2_data_free
*bf
; /* bestfree table */
1212 struct xfs_dir3_icleaf_hdr leafhdr
;
1213 struct xfs_dir2_leaf_entry
*ents
;
1215 trace_xfs_dir2_leafn_remove(args
, index
);
1221 xfs_dir3_leaf_hdr_from_disk(&leafhdr
, leaf
);
1222 ents
= xfs_dir3_leaf_ents_p(leaf
);
1225 * Point to the entry we're removing.
1230 * Extract the data block and offset from the entry.
1232 db
= xfs_dir2_dataptr_to_db(mp
, be32_to_cpu(lep
->address
));
1233 ASSERT(dblk
->blkno
== db
);
1234 off
= xfs_dir2_dataptr_to_off(mp
, be32_to_cpu(lep
->address
));
1235 ASSERT(dblk
->index
== off
);
1238 * Kill the leaf entry by marking it stale.
1239 * Log the leaf block changes.
1242 xfs_dir3_leaf_hdr_to_disk(leaf
, &leafhdr
);
1243 xfs_dir3_leaf_log_header(tp
, bp
);
1245 lep
->address
= cpu_to_be32(XFS_DIR2_NULL_DATAPTR
);
1246 xfs_dir3_leaf_log_ents(tp
, bp
, index
, index
);
1249 * Make the data entry free. Keep track of the longest freespace
1250 * in the data block in case it changes.
1254 dep
= (xfs_dir2_data_entry_t
*)((char *)hdr
+ off
);
1255 bf
= xfs_dir3_data_bestfree_p(hdr
);
1256 longest
= be16_to_cpu(bf
[0].length
);
1257 needlog
= needscan
= 0;
1258 xfs_dir2_data_make_free(tp
, dbp
, off
,
1259 xfs_dir2_data_entsize(dep
->namelen
), &needlog
, &needscan
);
1261 * Rescan the data block freespaces for bestfree.
1262 * Log the data block header if needed.
1265 xfs_dir2_data_freescan(mp
, hdr
, &needlog
);
1267 xfs_dir2_data_log_header(tp
, dbp
);
1268 xfs_dir3_data_check(dp
, dbp
);
1270 * If the longest data block freespace changes, need to update
1271 * the corresponding freeblock entry.
1273 if (longest
< be16_to_cpu(bf
[0].length
)) {
1274 int error
; /* error return value */
1275 struct xfs_buf
*fbp
; /* freeblock buffer */
1276 xfs_dir2_db_t fdb
; /* freeblock block number */
1277 int findex
; /* index in freeblock entries */
1278 xfs_dir2_free_t
*free
; /* freeblock structure */
1281 * Convert the data block number to a free block,
1282 * read in the free block.
1284 fdb
= xfs_dir2_db_to_fdb(mp
, db
);
1285 error
= xfs_dir2_free_read(tp
, dp
, xfs_dir2_db_to_da(mp
, fdb
),
1292 struct xfs_dir3_icfree_hdr freehdr
;
1293 xfs_dir3_free_hdr_from_disk(&freehdr
, free
);
1294 ASSERT(freehdr
.firstdb
== xfs_dir3_free_max_bests(mp
) *
1295 (fdb
- XFS_DIR2_FREE_FIRSTDB(mp
)));
1299 * Calculate which entry we need to fix.
1301 findex
= xfs_dir2_db_to_fdindex(mp
, db
);
1302 longest
= be16_to_cpu(bf
[0].length
);
1304 * If the data block is now empty we can get rid of it
1307 if (longest
== mp
->m_dirblksize
-
1308 xfs_dir3_data_entry_offset(hdr
)) {
1310 * Try to punch out the data block.
1312 error
= xfs_dir2_shrink_inode(args
, db
, dbp
);
1318 * We can get ENOSPC if there's no space reservation.
1319 * In this case just drop the buffer and some one else
1320 * will eventually get rid of the empty block.
1322 else if (!(error
== ENOSPC
&& args
->total
== 0))
1326 * If we got rid of the data block, we can eliminate that entry
1327 * in the free block.
1329 error
= xfs_dir3_data_block_free(args
, hdr
, free
,
1330 fdb
, findex
, fbp
, longest
);
1335 xfs_dir3_leaf_check(mp
, bp
);
1337 * Return indication of whether this leaf block is empty enough
1338 * to justify trying to join it with a neighbor.
1340 *rval
= (xfs_dir3_leaf_hdr_size(leaf
) +
1341 (uint
)sizeof(ents
[0]) * (leafhdr
.count
- leafhdr
.stale
)) <
1347 * Split the leaf entries in the old block into old and new blocks.
1350 xfs_dir2_leafn_split(
1351 xfs_da_state_t
*state
, /* btree cursor */
1352 xfs_da_state_blk_t
*oldblk
, /* original block */
1353 xfs_da_state_blk_t
*newblk
) /* newly created block */
1355 xfs_da_args_t
*args
; /* operation arguments */
1356 xfs_dablk_t blkno
; /* new leaf block number */
1357 int error
; /* error return value */
1358 xfs_mount_t
*mp
; /* filesystem mount point */
1361 * Allocate space for a new leaf node.
1364 mp
= args
->dp
->i_mount
;
1365 ASSERT(args
!= NULL
);
1366 ASSERT(oldblk
->magic
== XFS_DIR2_LEAFN_MAGIC
);
1367 error
= xfs_da_grow_inode(args
, &blkno
);
1372 * Initialize the new leaf block.
1374 error
= xfs_dir3_leaf_get_buf(args
, xfs_dir2_da_to_db(mp
, blkno
),
1375 &newblk
->bp
, XFS_DIR2_LEAFN_MAGIC
);
1379 newblk
->blkno
= blkno
;
1380 newblk
->magic
= XFS_DIR2_LEAFN_MAGIC
;
1382 * Rebalance the entries across the two leaves, link the new
1383 * block into the leaves.
1385 xfs_dir2_leafn_rebalance(state
, oldblk
, newblk
);
1386 error
= xfs_da3_blk_link(state
, oldblk
, newblk
);
1391 * Insert the new entry in the correct block.
1394 error
= xfs_dir2_leafn_add(oldblk
->bp
, args
, oldblk
->index
);
1396 error
= xfs_dir2_leafn_add(newblk
->bp
, args
, newblk
->index
);
1398 * Update last hashval in each block since we added the name.
1400 oldblk
->hashval
= xfs_dir2_leafn_lasthash(oldblk
->bp
, NULL
);
1401 newblk
->hashval
= xfs_dir2_leafn_lasthash(newblk
->bp
, NULL
);
1402 xfs_dir3_leaf_check(mp
, oldblk
->bp
);
1403 xfs_dir3_leaf_check(mp
, newblk
->bp
);
1408 * Check a leaf block and its neighbors to see if the block should be
1409 * collapsed into one or the other neighbor. Always keep the block
1410 * with the smaller block number.
1411 * If the current block is over 50% full, don't try to join it, return 0.
1412 * If the block is empty, fill in the state structure and return 2.
1413 * If it can be collapsed, fill in the state structure and return 1.
1414 * If nothing can be done, return 0.
1417 xfs_dir2_leafn_toosmall(
1418 xfs_da_state_t
*state
, /* btree cursor */
1419 int *action
) /* resulting action to take */
1421 xfs_da_state_blk_t
*blk
; /* leaf block */
1422 xfs_dablk_t blkno
; /* leaf block number */
1423 struct xfs_buf
*bp
; /* leaf buffer */
1424 int bytes
; /* bytes in use */
1425 int count
; /* leaf live entry count */
1426 int error
; /* error return value */
1427 int forward
; /* sibling block direction */
1428 int i
; /* sibling counter */
1429 xfs_dir2_leaf_t
*leaf
; /* leaf structure */
1430 int rval
; /* result from path_shift */
1431 struct xfs_dir3_icleaf_hdr leafhdr
;
1432 struct xfs_dir2_leaf_entry
*ents
;
1435 * Check for the degenerate case of the block being over 50% full.
1436 * If so, it's not worth even looking to see if we might be able
1437 * to coalesce with a sibling.
1439 blk
= &state
->path
.blk
[state
->path
.active
- 1];
1440 leaf
= blk
->bp
->b_addr
;
1441 xfs_dir3_leaf_hdr_from_disk(&leafhdr
, leaf
);
1442 ents
= xfs_dir3_leaf_ents_p(leaf
);
1443 xfs_dir3_leaf_check(state
->args
->dp
->i_mount
, blk
->bp
);
1445 count
= leafhdr
.count
- leafhdr
.stale
;
1446 bytes
= xfs_dir3_leaf_hdr_size(leaf
) + count
* sizeof(ents
[0]);
1447 if (bytes
> (state
->blocksize
>> 1)) {
1449 * Blk over 50%, don't try to join.
1455 * Check for the degenerate case of the block being empty.
1456 * If the block is empty, we'll simply delete it, no need to
1457 * coalesce it with a sibling block. We choose (arbitrarily)
1458 * to merge with the forward block unless it is NULL.
1462 * Make altpath point to the block we want to keep and
1463 * path point to the block we want to drop (this one).
1465 forward
= (leafhdr
.forw
!= 0);
1466 memcpy(&state
->altpath
, &state
->path
, sizeof(state
->path
));
1467 error
= xfs_da3_path_shift(state
, &state
->altpath
, forward
, 0,
1471 *action
= rval
? 2 : 0;
1475 * Examine each sibling block to see if we can coalesce with
1476 * at least 25% free space to spare. We need to figure out
1477 * whether to merge with the forward or the backward block.
1478 * We prefer coalescing with the lower numbered sibling so as
1479 * to shrink a directory over time.
1481 forward
= leafhdr
.forw
< leafhdr
.back
;
1482 for (i
= 0, bp
= NULL
; i
< 2; forward
= !forward
, i
++) {
1483 struct xfs_dir3_icleaf_hdr hdr2
;
1485 blkno
= forward
? leafhdr
.forw
: leafhdr
.back
;
1489 * Read the sibling leaf block.
1491 error
= xfs_dir3_leafn_read(state
->args
->trans
, state
->args
->dp
,
1497 * Count bytes in the two blocks combined.
1499 count
= leafhdr
.count
- leafhdr
.stale
;
1500 bytes
= state
->blocksize
- (state
->blocksize
>> 2);
1503 xfs_dir3_leaf_hdr_from_disk(&hdr2
, leaf
);
1504 ents
= xfs_dir3_leaf_ents_p(leaf
);
1505 count
+= hdr2
.count
- hdr2
.stale
;
1506 bytes
-= count
* sizeof(ents
[0]);
1509 * Fits with at least 25% to spare.
1513 xfs_trans_brelse(state
->args
->trans
, bp
);
1516 * Didn't like either block, give up.
1524 * Make altpath point to the block we want to keep (the lower
1525 * numbered block) and path point to the block we want to drop.
1527 memcpy(&state
->altpath
, &state
->path
, sizeof(state
->path
));
1528 if (blkno
< blk
->blkno
)
1529 error
= xfs_da3_path_shift(state
, &state
->altpath
, forward
, 0,
1532 error
= xfs_da3_path_shift(state
, &state
->path
, forward
, 0,
1537 *action
= rval
? 0 : 1;
1542 * Move all the leaf entries from drop_blk to save_blk.
1543 * This is done as part of a join operation.
1546 xfs_dir2_leafn_unbalance(
1547 xfs_da_state_t
*state
, /* cursor */
1548 xfs_da_state_blk_t
*drop_blk
, /* dead block */
1549 xfs_da_state_blk_t
*save_blk
) /* surviving block */
1551 xfs_da_args_t
*args
; /* operation arguments */
1552 xfs_dir2_leaf_t
*drop_leaf
; /* dead leaf structure */
1553 xfs_dir2_leaf_t
*save_leaf
; /* surviving leaf structure */
1554 struct xfs_dir3_icleaf_hdr savehdr
;
1555 struct xfs_dir3_icleaf_hdr drophdr
;
1556 struct xfs_dir2_leaf_entry
*sents
;
1557 struct xfs_dir2_leaf_entry
*dents
;
1560 ASSERT(drop_blk
->magic
== XFS_DIR2_LEAFN_MAGIC
);
1561 ASSERT(save_blk
->magic
== XFS_DIR2_LEAFN_MAGIC
);
1562 drop_leaf
= drop_blk
->bp
->b_addr
;
1563 save_leaf
= save_blk
->bp
->b_addr
;
1565 xfs_dir3_leaf_hdr_from_disk(&savehdr
, save_leaf
);
1566 xfs_dir3_leaf_hdr_from_disk(&drophdr
, drop_leaf
);
1567 sents
= xfs_dir3_leaf_ents_p(save_leaf
);
1568 dents
= xfs_dir3_leaf_ents_p(drop_leaf
);
1571 * If there are any stale leaf entries, take this opportunity
1575 xfs_dir3_leaf_compact(args
, &drophdr
, drop_blk
->bp
);
1577 xfs_dir3_leaf_compact(args
, &savehdr
, save_blk
->bp
);
1580 * Move the entries from drop to the appropriate end of save.
1582 drop_blk
->hashval
= be32_to_cpu(dents
[drophdr
.count
- 1].hashval
);
1583 if (xfs_dir2_leafn_order(save_blk
->bp
, drop_blk
->bp
))
1584 xfs_dir3_leafn_moveents(args
, drop_blk
->bp
, &drophdr
, dents
, 0,
1585 save_blk
->bp
, &savehdr
, sents
, 0,
1588 xfs_dir3_leafn_moveents(args
, drop_blk
->bp
, &drophdr
, dents
, 0,
1589 save_blk
->bp
, &savehdr
, sents
,
1590 savehdr
.count
, drophdr
.count
);
1591 save_blk
->hashval
= be32_to_cpu(sents
[savehdr
.count
- 1].hashval
);
1593 /* log the changes made when moving the entries */
1594 xfs_dir3_leaf_hdr_to_disk(save_leaf
, &savehdr
);
1595 xfs_dir3_leaf_hdr_to_disk(drop_leaf
, &drophdr
);
1596 xfs_dir3_leaf_log_header(args
->trans
, save_blk
->bp
);
1597 xfs_dir3_leaf_log_header(args
->trans
, drop_blk
->bp
);
1599 xfs_dir3_leaf_check(args
->dp
->i_mount
, save_blk
->bp
);
1600 xfs_dir3_leaf_check(args
->dp
->i_mount
, drop_blk
->bp
);
1604 * Top-level node form directory addname routine.
1607 xfs_dir2_node_addname(
1608 xfs_da_args_t
*args
) /* operation arguments */
1610 xfs_da_state_blk_t
*blk
; /* leaf block for insert */
1611 int error
; /* error return value */
1612 int rval
; /* sub-return value */
1613 xfs_da_state_t
*state
; /* btree cursor */
1615 trace_xfs_dir2_node_addname(args
);
1618 * Allocate and initialize the state (btree cursor).
1620 state
= xfs_da_state_alloc();
1622 state
->mp
= args
->dp
->i_mount
;
1623 state
->blocksize
= state
->mp
->m_dirblksize
;
1624 state
->node_ents
= state
->mp
->m_dir_node_ents
;
1626 * Look up the name. We're not supposed to find it, but
1627 * this gives us the insertion point.
1629 error
= xfs_da3_node_lookup_int(state
, &rval
);
1632 if (rval
!= ENOENT
) {
1636 * Add the data entry to a data block.
1637 * Extravalid is set to a freeblock found by lookup.
1639 rval
= xfs_dir2_node_addname_int(args
,
1640 state
->extravalid
? &state
->extrablk
: NULL
);
1644 blk
= &state
->path
.blk
[state
->path
.active
- 1];
1645 ASSERT(blk
->magic
== XFS_DIR2_LEAFN_MAGIC
);
1647 * Add the new leaf entry.
1649 rval
= xfs_dir2_leafn_add(blk
->bp
, args
, blk
->index
);
1652 * It worked, fix the hash values up the btree.
1654 if (!(args
->op_flags
& XFS_DA_OP_JUSTCHECK
))
1655 xfs_da3_fixhashpath(state
, &state
->path
);
1658 * It didn't work, we need to split the leaf block.
1660 if (args
->total
== 0) {
1661 ASSERT(rval
== ENOSPC
);
1665 * Split the leaf block and insert the new entry.
1667 rval
= xfs_da3_split(state
);
1670 xfs_da_state_free(state
);
1675 * Add the data entry for a node-format directory name addition.
1676 * The leaf entry is added in xfs_dir2_leafn_add.
1677 * We may enter with a freespace block that the lookup found.
1679 static int /* error */
1680 xfs_dir2_node_addname_int(
1681 xfs_da_args_t
*args
, /* operation arguments */
1682 xfs_da_state_blk_t
*fblk
) /* optional freespace block */
1684 xfs_dir2_data_hdr_t
*hdr
; /* data block header */
1685 xfs_dir2_db_t dbno
; /* data block number */
1686 struct xfs_buf
*dbp
; /* data block buffer */
1687 xfs_dir2_data_entry_t
*dep
; /* data entry pointer */
1688 xfs_inode_t
*dp
; /* incore directory inode */
1689 xfs_dir2_data_unused_t
*dup
; /* data unused entry pointer */
1690 int error
; /* error return value */
1691 xfs_dir2_db_t fbno
; /* freespace block number */
1692 struct xfs_buf
*fbp
; /* freespace buffer */
1693 int findex
; /* freespace entry index */
1694 xfs_dir2_free_t
*free
=NULL
; /* freespace block structure */
1695 xfs_dir2_db_t ifbno
; /* initial freespace block no */
1696 xfs_dir2_db_t lastfbno
=0; /* highest freespace block no */
1697 int length
; /* length of the new entry */
1698 int logfree
; /* need to log free entry */
1699 xfs_mount_t
*mp
; /* filesystem mount point */
1700 int needlog
; /* need to log data header */
1701 int needscan
; /* need to rescan data frees */
1702 __be16
*tagp
; /* data entry tag pointer */
1703 xfs_trans_t
*tp
; /* transaction pointer */
1705 struct xfs_dir3_icfree_hdr freehdr
;
1706 struct xfs_dir2_data_free
*bf
;
1711 length
= xfs_dir2_data_entsize(args
->namelen
);
1713 * If we came in with a freespace block that means that lookup
1714 * found an entry with our hash value. This is the freespace
1715 * block for that data entry.
1720 * Remember initial freespace block number.
1722 ifbno
= fblk
->blkno
;
1724 findex
= fblk
->index
;
1725 bests
= xfs_dir3_free_bests_p(mp
, free
);
1726 xfs_dir3_free_hdr_from_disk(&freehdr
, free
);
1729 * This means the free entry showed that the data block had
1730 * space for our entry, so we remembered it.
1731 * Use that data block.
1734 ASSERT(findex
< freehdr
.nvalid
);
1735 ASSERT(be16_to_cpu(bests
[findex
]) != NULLDATAOFF
);
1736 ASSERT(be16_to_cpu(bests
[findex
]) >= length
);
1737 dbno
= freehdr
.firstdb
+ findex
;
1740 * The data block looked at didn't have enough room.
1741 * We'll start at the beginning of the freespace entries.
1748 * Didn't come in with a freespace block, so no data block.
1756 * If we don't have a data block yet, we're going to scan the
1757 * freespace blocks looking for one. Figure out what the
1758 * highest freespace block number is.
1761 xfs_fileoff_t fo
; /* freespace block number */
1763 if ((error
= xfs_bmap_last_offset(tp
, dp
, &fo
, XFS_DATA_FORK
)))
1765 lastfbno
= xfs_dir2_da_to_db(mp
, (xfs_dablk_t
)fo
);
1769 * While we haven't identified a data block, search the freeblock
1770 * data for a good data block. If we find a null freeblock entry,
1771 * indicating a hole in the data blocks, remember that.
1773 while (dbno
== -1) {
1775 * If we don't have a freeblock in hand, get the next one.
1779 * Happens the first time through unless lookup gave
1780 * us a freespace block to start with.
1783 fbno
= XFS_DIR2_FREE_FIRSTDB(mp
);
1785 * If it's ifbno we already looked at it.
1790 * If it's off the end we're done.
1792 if (fbno
>= lastfbno
)
1795 * Read the block. There can be holes in the
1796 * freespace blocks, so this might not succeed.
1797 * This should be really rare, so there's no reason
1800 error
= xfs_dir2_free_try_read(tp
, dp
,
1801 xfs_dir2_db_to_da(mp
, fbno
),
1811 * Look at the current free entry. Is it good enough?
1813 * The bests initialisation should be where the bufer is read in
1814 * the above branch. But gcc is too stupid to realise that bests
1815 * and the freehdr are actually initialised if they are placed
1816 * there, so we have to do it here to avoid warnings. Blech.
1818 bests
= xfs_dir3_free_bests_p(mp
, free
);
1819 xfs_dir3_free_hdr_from_disk(&freehdr
, free
);
1820 if (be16_to_cpu(bests
[findex
]) != NULLDATAOFF
&&
1821 be16_to_cpu(bests
[findex
]) >= length
)
1822 dbno
= freehdr
.firstdb
+ findex
;
1825 * Are we done with the freeblock?
1827 if (++findex
== freehdr
.nvalid
) {
1831 xfs_trans_brelse(tp
, fbp
);
1833 if (fblk
&& fblk
->bp
)
1839 * If we don't have a data block, we need to allocate one and make
1840 * the freespace entries refer to it.
1842 if (unlikely(dbno
== -1)) {
1844 * Not allowed to allocate, return failure.
1846 if ((args
->op_flags
& XFS_DA_OP_JUSTCHECK
) || args
->total
== 0)
1847 return XFS_ERROR(ENOSPC
);
1850 * Allocate and initialize the new data block.
1852 if (unlikely((error
= xfs_dir2_grow_inode(args
,
1853 XFS_DIR2_DATA_SPACE
,
1855 (error
= xfs_dir3_data_init(args
, dbno
, &dbp
))))
1859 * If (somehow) we have a freespace block, get rid of it.
1862 xfs_trans_brelse(tp
, fbp
);
1863 if (fblk
&& fblk
->bp
)
1867 * Get the freespace block corresponding to the data block
1868 * that was just allocated.
1870 fbno
= xfs_dir2_db_to_fdb(mp
, dbno
);
1871 error
= xfs_dir2_free_try_read(tp
, dp
,
1872 xfs_dir2_db_to_da(mp
, fbno
),
1878 * If there wasn't a freespace block, the read will
1879 * return a NULL fbp. Allocate and initialize a new one.
1882 error
= xfs_dir2_grow_inode(args
, XFS_DIR2_FREE_SPACE
,
1887 if (unlikely(xfs_dir2_db_to_fdb(mp
, dbno
) != fbno
)) {
1889 "%s: dir ino %llu needed freesp block %lld for\n"
1890 " data block %lld, got %lld ifbno %llu lastfbno %d",
1891 __func__
, (unsigned long long)dp
->i_ino
,
1892 (long long)xfs_dir2_db_to_fdb(mp
, dbno
),
1893 (long long)dbno
, (long long)fbno
,
1894 (unsigned long long)ifbno
, lastfbno
);
1897 " fblk 0x%p blkno %llu index %d magic 0x%x",
1899 (unsigned long long)fblk
->blkno
,
1903 xfs_alert(mp
, " ... fblk is NULL");
1905 XFS_ERROR_REPORT("xfs_dir2_node_addname_int",
1906 XFS_ERRLEVEL_LOW
, mp
);
1907 return XFS_ERROR(EFSCORRUPTED
);
1911 * Get a buffer for the new block.
1913 error
= xfs_dir3_free_get_buf(tp
, dp
, fbno
, &fbp
);
1917 bests
= xfs_dir3_free_bests_p(mp
, free
);
1918 xfs_dir3_free_hdr_from_disk(&freehdr
, free
);
1921 * Remember the first slot as our empty slot.
1923 freehdr
.firstdb
= (fbno
- XFS_DIR2_FREE_FIRSTDB(mp
)) *
1924 xfs_dir3_free_max_bests(mp
);
1927 bests
= xfs_dir3_free_bests_p(mp
, free
);
1928 xfs_dir3_free_hdr_from_disk(&freehdr
, free
);
1932 * Set the freespace block index from the data block number.
1934 findex
= xfs_dir2_db_to_fdindex(mp
, dbno
);
1936 * If it's after the end of the current entries in the
1937 * freespace block, extend that table.
1939 if (findex
>= freehdr
.nvalid
) {
1940 ASSERT(findex
< xfs_dir3_free_max_bests(mp
));
1941 freehdr
.nvalid
= findex
+ 1;
1943 * Tag new entry so nused will go up.
1945 bests
[findex
] = cpu_to_be16(NULLDATAOFF
);
1948 * If this entry was for an empty data block
1949 * (this should always be true) then update the header.
1951 if (bests
[findex
] == cpu_to_be16(NULLDATAOFF
)) {
1953 xfs_dir3_free_hdr_to_disk(fbp
->b_addr
, &freehdr
);
1954 xfs_dir2_free_log_header(tp
, fbp
);
1957 * Update the real value in the table.
1958 * We haven't allocated the data entry yet so this will
1962 bf
= xfs_dir3_data_bestfree_p(hdr
);
1963 bests
[findex
] = bf
[0].length
;
1967 * We had a data block so we don't have to make a new one.
1971 * If just checking, we succeeded.
1973 if (args
->op_flags
& XFS_DA_OP_JUSTCHECK
)
1977 * Read the data block in.
1979 error
= xfs_dir3_data_read(tp
, dp
, xfs_dir2_db_to_da(mp
, dbno
),
1984 bf
= xfs_dir3_data_bestfree_p(hdr
);
1987 ASSERT(be16_to_cpu(bf
[0].length
) >= length
);
1989 * Point to the existing unused space.
1991 dup
= (xfs_dir2_data_unused_t
*)
1992 ((char *)hdr
+ be16_to_cpu(bf
[0].offset
));
1993 needscan
= needlog
= 0;
1995 * Mark the first part of the unused space, inuse for us.
1997 xfs_dir2_data_use_free(tp
, dbp
, dup
,
1998 (xfs_dir2_data_aoff_t
)((char *)dup
- (char *)hdr
), length
,
1999 &needlog
, &needscan
);
2001 * Fill in the new entry and log it.
2003 dep
= (xfs_dir2_data_entry_t
*)dup
;
2004 dep
->inumber
= cpu_to_be64(args
->inumber
);
2005 dep
->namelen
= args
->namelen
;
2006 memcpy(dep
->name
, args
->name
, dep
->namelen
);
2007 tagp
= xfs_dir2_data_entry_tag_p(dep
);
2008 *tagp
= cpu_to_be16((char *)dep
- (char *)hdr
);
2009 xfs_dir2_data_log_entry(tp
, dbp
, dep
);
2011 * Rescan the block for bestfree if needed.
2014 xfs_dir2_data_freescan(mp
, hdr
, &needlog
);
2016 * Log the data block header if needed.
2019 xfs_dir2_data_log_header(tp
, dbp
);
2021 * If the freespace entry is now wrong, update it.
2023 bests
= xfs_dir3_free_bests_p(mp
, free
); /* gcc is so stupid */
2024 if (be16_to_cpu(bests
[findex
]) != be16_to_cpu(bf
[0].length
)) {
2025 bests
[findex
] = bf
[0].length
;
2029 * Log the freespace entry if needed.
2032 xfs_dir2_free_log_bests(tp
, fbp
, findex
, findex
);
2034 * Return the data block and offset in args, then drop the data block.
2036 args
->blkno
= (xfs_dablk_t
)dbno
;
2037 args
->index
= be16_to_cpu(*tagp
);
2042 * Lookup an entry in a node-format directory.
2043 * All the real work happens in xfs_da3_node_lookup_int.
2044 * The only real output is the inode number of the entry.
2047 xfs_dir2_node_lookup(
2048 xfs_da_args_t
*args
) /* operation arguments */
2050 int error
; /* error return value */
2051 int i
; /* btree level */
2052 int rval
; /* operation return value */
2053 xfs_da_state_t
*state
; /* btree cursor */
2055 trace_xfs_dir2_node_lookup(args
);
2058 * Allocate and initialize the btree cursor.
2060 state
= xfs_da_state_alloc();
2062 state
->mp
= args
->dp
->i_mount
;
2063 state
->blocksize
= state
->mp
->m_dirblksize
;
2064 state
->node_ents
= state
->mp
->m_dir_node_ents
;
2066 * Fill in the path to the entry in the cursor.
2068 error
= xfs_da3_node_lookup_int(state
, &rval
);
2071 else if (rval
== ENOENT
&& args
->cmpresult
== XFS_CMP_CASE
) {
2072 /* If a CI match, dup the actual name and return EEXIST */
2073 xfs_dir2_data_entry_t
*dep
;
2075 dep
= (xfs_dir2_data_entry_t
*)
2076 ((char *)state
->extrablk
.bp
->b_addr
+
2077 state
->extrablk
.index
);
2078 rval
= xfs_dir_cilookup_result(args
, dep
->name
, dep
->namelen
);
2081 * Release the btree blocks and leaf block.
2083 for (i
= 0; i
< state
->path
.active
; i
++) {
2084 xfs_trans_brelse(args
->trans
, state
->path
.blk
[i
].bp
);
2085 state
->path
.blk
[i
].bp
= NULL
;
2088 * Release the data block if we have it.
2090 if (state
->extravalid
&& state
->extrablk
.bp
) {
2091 xfs_trans_brelse(args
->trans
, state
->extrablk
.bp
);
2092 state
->extrablk
.bp
= NULL
;
2094 xfs_da_state_free(state
);
2099 * Remove an entry from a node-format directory.
2102 xfs_dir2_node_removename(
2103 xfs_da_args_t
*args
) /* operation arguments */
2105 xfs_da_state_blk_t
*blk
; /* leaf block */
2106 int error
; /* error return value */
2107 int rval
; /* operation return value */
2108 xfs_da_state_t
*state
; /* btree cursor */
2110 trace_xfs_dir2_node_removename(args
);
2113 * Allocate and initialize the btree cursor.
2115 state
= xfs_da_state_alloc();
2117 state
->mp
= args
->dp
->i_mount
;
2118 state
->blocksize
= state
->mp
->m_dirblksize
;
2119 state
->node_ents
= state
->mp
->m_dir_node_ents
;
2121 * Look up the entry we're deleting, set up the cursor.
2123 error
= xfs_da3_node_lookup_int(state
, &rval
);
2127 * Didn't find it, upper layer screwed up.
2129 if (rval
!= EEXIST
) {
2130 xfs_da_state_free(state
);
2133 blk
= &state
->path
.blk
[state
->path
.active
- 1];
2134 ASSERT(blk
->magic
== XFS_DIR2_LEAFN_MAGIC
);
2135 ASSERT(state
->extravalid
);
2137 * Remove the leaf and data entries.
2138 * Extrablk refers to the data block.
2140 error
= xfs_dir2_leafn_remove(args
, blk
->bp
, blk
->index
,
2141 &state
->extrablk
, &rval
);
2145 * Fix the hash values up the btree.
2147 xfs_da3_fixhashpath(state
, &state
->path
);
2149 * If we need to join leaf blocks, do it.
2151 if (rval
&& state
->path
.active
> 1)
2152 error
= xfs_da3_join(state
);
2154 * If no errors so far, try conversion to leaf format.
2157 error
= xfs_dir2_node_to_leaf(state
);
2158 xfs_da_state_free(state
);
2163 * Replace an entry's inode number in a node-format directory.
2166 xfs_dir2_node_replace(
2167 xfs_da_args_t
*args
) /* operation arguments */
2169 xfs_da_state_blk_t
*blk
; /* leaf block */
2170 xfs_dir2_data_hdr_t
*hdr
; /* data block header */
2171 xfs_dir2_data_entry_t
*dep
; /* data entry changed */
2172 int error
; /* error return value */
2173 int i
; /* btree level */
2174 xfs_ino_t inum
; /* new inode number */
2175 xfs_dir2_leaf_t
*leaf
; /* leaf structure */
2176 xfs_dir2_leaf_entry_t
*lep
; /* leaf entry being changed */
2177 int rval
; /* internal return value */
2178 xfs_da_state_t
*state
; /* btree cursor */
2180 trace_xfs_dir2_node_replace(args
);
2183 * Allocate and initialize the btree cursor.
2185 state
= xfs_da_state_alloc();
2187 state
->mp
= args
->dp
->i_mount
;
2188 state
->blocksize
= state
->mp
->m_dirblksize
;
2189 state
->node_ents
= state
->mp
->m_dir_node_ents
;
2190 inum
= args
->inumber
;
2192 * Lookup the entry to change in the btree.
2194 error
= xfs_da3_node_lookup_int(state
, &rval
);
2199 * It should be found, since the vnodeops layer has looked it up
2200 * and locked it. But paranoia is good.
2202 if (rval
== EEXIST
) {
2203 struct xfs_dir2_leaf_entry
*ents
;
2205 * Find the leaf entry.
2207 blk
= &state
->path
.blk
[state
->path
.active
- 1];
2208 ASSERT(blk
->magic
== XFS_DIR2_LEAFN_MAGIC
);
2209 leaf
= blk
->bp
->b_addr
;
2210 ents
= xfs_dir3_leaf_ents_p(leaf
);
2211 lep
= &ents
[blk
->index
];
2212 ASSERT(state
->extravalid
);
2214 * Point to the data entry.
2216 hdr
= state
->extrablk
.bp
->b_addr
;
2217 ASSERT(hdr
->magic
== cpu_to_be32(XFS_DIR2_DATA_MAGIC
) ||
2218 hdr
->magic
== cpu_to_be32(XFS_DIR3_DATA_MAGIC
));
2219 dep
= (xfs_dir2_data_entry_t
*)
2221 xfs_dir2_dataptr_to_off(state
->mp
, be32_to_cpu(lep
->address
)));
2222 ASSERT(inum
!= be64_to_cpu(dep
->inumber
));
2224 * Fill in the new inode number and log the entry.
2226 dep
->inumber
= cpu_to_be64(inum
);
2227 xfs_dir2_data_log_entry(args
->trans
, state
->extrablk
.bp
, dep
);
2231 * Didn't find it, and we're holding a data block. Drop it.
2233 else if (state
->extravalid
) {
2234 xfs_trans_brelse(args
->trans
, state
->extrablk
.bp
);
2235 state
->extrablk
.bp
= NULL
;
2238 * Release all the buffers in the cursor.
2240 for (i
= 0; i
< state
->path
.active
; i
++) {
2241 xfs_trans_brelse(args
->trans
, state
->path
.blk
[i
].bp
);
2242 state
->path
.blk
[i
].bp
= NULL
;
2244 xfs_da_state_free(state
);
2249 * Trim off a trailing empty freespace block.
2250 * Return (in rvalp) 1 if we did it, 0 if not.
2253 xfs_dir2_node_trim_free(
2254 xfs_da_args_t
*args
, /* operation arguments */
2255 xfs_fileoff_t fo
, /* free block number */
2256 int *rvalp
) /* out: did something */
2258 struct xfs_buf
*bp
; /* freespace buffer */
2259 xfs_inode_t
*dp
; /* incore directory inode */
2260 int error
; /* error return code */
2261 xfs_dir2_free_t
*free
; /* freespace structure */
2262 xfs_mount_t
*mp
; /* filesystem mount point */
2263 xfs_trans_t
*tp
; /* transaction pointer */
2264 struct xfs_dir3_icfree_hdr freehdr
;
2270 * Read the freespace block.
2272 error
= xfs_dir2_free_try_read(tp
, dp
, fo
, &bp
);
2276 * There can be holes in freespace. If fo is a hole, there's
2282 xfs_dir3_free_hdr_from_disk(&freehdr
, free
);
2285 * If there are used entries, there's nothing to do.
2287 if (freehdr
.nused
> 0) {
2288 xfs_trans_brelse(tp
, bp
);
2293 * Blow the block away.
2296 xfs_dir2_shrink_inode(args
, xfs_dir2_da_to_db(mp
, (xfs_dablk_t
)fo
),
2299 * Can't fail with ENOSPC since that only happens with no
2300 * space reservation, when breaking up an extent into two
2301 * pieces. This is the last block of an extent.
2303 ASSERT(error
!= ENOSPC
);
2304 xfs_trans_brelse(tp
, bp
);
2308 * Return that we succeeded.