2 * Copyright (c) 2000-2003,2005 Silicon Graphics, Inc.
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License as
7 * published by the Free Software Foundation.
9 * This program is distributed in the hope that it would be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write the Free Software Foundation,
16 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
20 #include "xfs_types.h"
24 #include "xfs_trans.h"
27 #include "xfs_mount.h"
28 #include "xfs_da_btree.h"
29 #include "xfs_bmap_btree.h"
30 #include "xfs_dinode.h"
31 #include "xfs_inode.h"
33 #include "xfs_dir2_format.h"
34 #include "xfs_dir2_priv.h"
35 #include "xfs_error.h"
36 #include "xfs_trace.h"
39 * Local function declarations.
42 static void xfs_dir2_leaf_check(xfs_inode_t
*dp
, xfs_dabuf_t
*bp
);
44 #define xfs_dir2_leaf_check(dp, bp)
46 static int xfs_dir2_leaf_lookup_int(xfs_da_args_t
*args
, xfs_dabuf_t
**lbpp
,
47 int *indexp
, xfs_dabuf_t
**dbpp
);
48 static void xfs_dir2_leaf_log_bests(struct xfs_trans
*tp
, struct xfs_dabuf
*bp
,
50 static void xfs_dir2_leaf_log_tail(struct xfs_trans
*tp
, struct xfs_dabuf
*bp
);
54 * Convert a block form directory to a leaf form directory.
57 xfs_dir2_block_to_leaf(
58 xfs_da_args_t
*args
, /* operation arguments */
59 xfs_dabuf_t
*dbp
) /* input block's buffer */
61 __be16
*bestsp
; /* leaf's bestsp entries */
62 xfs_dablk_t blkno
; /* leaf block's bno */
63 xfs_dir2_data_hdr_t
*hdr
; /* block header */
64 xfs_dir2_leaf_entry_t
*blp
; /* block's leaf entries */
65 xfs_dir2_block_tail_t
*btp
; /* block's tail */
66 xfs_inode_t
*dp
; /* incore directory inode */
67 int error
; /* error return code */
68 xfs_dabuf_t
*lbp
; /* leaf block's buffer */
69 xfs_dir2_db_t ldb
; /* leaf block's bno */
70 xfs_dir2_leaf_t
*leaf
; /* leaf structure */
71 xfs_dir2_leaf_tail_t
*ltp
; /* leaf's tail */
72 xfs_mount_t
*mp
; /* filesystem mount point */
73 int needlog
; /* need to log block header */
74 int needscan
; /* need to rescan bestfree */
75 xfs_trans_t
*tp
; /* transaction pointer */
77 trace_xfs_dir2_block_to_leaf(args
);
83 * Add the leaf block to the inode.
84 * This interface will only put blocks in the leaf/node range.
85 * Since that's empty now, we'll get the root (block 0 in range).
87 if ((error
= xfs_da_grow_inode(args
, &blkno
))) {
90 ldb
= xfs_dir2_da_to_db(mp
, blkno
);
91 ASSERT(ldb
== XFS_DIR2_LEAF_FIRSTDB(mp
));
93 * Initialize the leaf block, get a buffer for it.
95 if ((error
= xfs_dir2_leaf_init(args
, ldb
, &lbp
, XFS_DIR2_LEAF1_MAGIC
))) {
101 xfs_dir2_data_check(dp
, dbp
);
102 btp
= xfs_dir2_block_tail_p(mp
, hdr
);
103 blp
= xfs_dir2_block_leaf_p(btp
);
105 * Set the counts in the leaf header.
107 leaf
->hdr
.count
= cpu_to_be16(be32_to_cpu(btp
->count
));
108 leaf
->hdr
.stale
= cpu_to_be16(be32_to_cpu(btp
->stale
));
110 * Could compact these but I think we always do the conversion
111 * after squeezing out stale entries.
113 memcpy(leaf
->ents
, blp
, be32_to_cpu(btp
->count
) * sizeof(xfs_dir2_leaf_entry_t
));
114 xfs_dir2_leaf_log_ents(tp
, lbp
, 0, be16_to_cpu(leaf
->hdr
.count
) - 1);
118 * Make the space formerly occupied by the leaf entries and block
121 xfs_dir2_data_make_free(tp
, dbp
,
122 (xfs_dir2_data_aoff_t
)((char *)blp
- (char *)hdr
),
123 (xfs_dir2_data_aoff_t
)((char *)hdr
+ mp
->m_dirblksize
-
125 &needlog
, &needscan
);
127 * Fix up the block header, make it a data block.
129 hdr
->magic
= cpu_to_be32(XFS_DIR2_DATA_MAGIC
);
131 xfs_dir2_data_freescan(mp
, hdr
, &needlog
);
133 * Set up leaf tail and bests table.
135 ltp
= xfs_dir2_leaf_tail_p(mp
, leaf
);
136 ltp
->bestcount
= cpu_to_be32(1);
137 bestsp
= xfs_dir2_leaf_bests_p(ltp
);
138 bestsp
[0] = hdr
->bestfree
[0].length
;
140 * Log the data header and leaf bests table.
143 xfs_dir2_data_log_header(tp
, dbp
);
144 xfs_dir2_leaf_check(dp
, lbp
);
145 xfs_dir2_data_check(dp
, dbp
);
146 xfs_dir2_leaf_log_bests(tp
, lbp
, 0, 0);
147 xfs_da_buf_done(lbp
);
152 xfs_dir2_leaf_find_stale(
153 struct xfs_dir2_leaf
*leaf
,
159 * Find the first stale entry before our index, if any.
161 for (*lowstale
= index
- 1; *lowstale
>= 0; --*lowstale
) {
162 if (leaf
->ents
[*lowstale
].address
==
163 cpu_to_be32(XFS_DIR2_NULL_DATAPTR
))
168 * Find the first stale entry at or after our index, if any.
169 * Stop if the result would require moving more entries than using
172 for (*highstale
= index
;
173 *highstale
< be16_to_cpu(leaf
->hdr
.count
);
175 if (leaf
->ents
[*highstale
].address
==
176 cpu_to_be32(XFS_DIR2_NULL_DATAPTR
))
178 if (*lowstale
>= 0 && index
- *lowstale
<= *highstale
- index
)
183 struct xfs_dir2_leaf_entry
*
184 xfs_dir2_leaf_find_entry(
185 xfs_dir2_leaf_t
*leaf
, /* leaf structure */
186 int index
, /* leaf table position */
187 int compact
, /* need to compact leaves */
188 int lowstale
, /* index of prev stale leaf */
189 int highstale
, /* index of next stale leaf */
190 int *lfloglow
, /* low leaf logging index */
191 int *lfloghigh
) /* high leaf logging index */
193 if (!leaf
->hdr
.stale
) {
194 xfs_dir2_leaf_entry_t
*lep
; /* leaf entry table pointer */
197 * Now we need to make room to insert the leaf entry.
199 * If there are no stale entries, just insert a hole at index.
201 lep
= &leaf
->ents
[index
];
202 if (index
< be16_to_cpu(leaf
->hdr
.count
))
203 memmove(lep
+ 1, lep
,
204 (be16_to_cpu(leaf
->hdr
.count
) - index
) *
208 * Record low and high logging indices for the leaf.
211 *lfloghigh
= be16_to_cpu(leaf
->hdr
.count
);
212 be16_add_cpu(&leaf
->hdr
.count
, 1);
217 * There are stale entries.
219 * We will use one of them for the new entry. It's probably not at
220 * the right location, so we'll have to shift some up or down first.
222 * If we didn't compact before, we need to find the nearest stale
223 * entries before and after our insertion point.
226 xfs_dir2_leaf_find_stale(leaf
, index
, &lowstale
, &highstale
);
229 * If the low one is better, use it.
232 (highstale
== be16_to_cpu(leaf
->hdr
.count
) ||
233 index
- lowstale
- 1 < highstale
- index
)) {
234 ASSERT(index
- lowstale
- 1 >= 0);
235 ASSERT(leaf
->ents
[lowstale
].address
==
236 cpu_to_be32(XFS_DIR2_NULL_DATAPTR
));
239 * Copy entries up to cover the stale entry and make room
242 if (index
- lowstale
- 1 > 0) {
243 memmove(&leaf
->ents
[lowstale
],
244 &leaf
->ents
[lowstale
+ 1],
245 (index
- lowstale
- 1) *
246 sizeof(xfs_dir2_leaf_entry_t
));
248 *lfloglow
= MIN(lowstale
, *lfloglow
);
249 *lfloghigh
= MAX(index
- 1, *lfloghigh
);
250 be16_add_cpu(&leaf
->hdr
.stale
, -1);
251 return &leaf
->ents
[index
- 1];
255 * The high one is better, so use that one.
257 ASSERT(highstale
- index
>= 0);
258 ASSERT(leaf
->ents
[highstale
].address
==
259 cpu_to_be32(XFS_DIR2_NULL_DATAPTR
));
262 * Copy entries down to cover the stale entry and make room for the
265 if (highstale
- index
> 0) {
266 memmove(&leaf
->ents
[index
+ 1],
268 (highstale
- index
) * sizeof(xfs_dir2_leaf_entry_t
));
270 *lfloglow
= MIN(index
, *lfloglow
);
271 *lfloghigh
= MAX(highstale
, *lfloghigh
);
272 be16_add_cpu(&leaf
->hdr
.stale
, -1);
273 return &leaf
->ents
[index
];
277 * Add an entry to a leaf form directory.
280 xfs_dir2_leaf_addname(
281 xfs_da_args_t
*args
) /* operation arguments */
283 __be16
*bestsp
; /* freespace table in leaf */
284 int compact
; /* need to compact leaves */
285 xfs_dir2_data_hdr_t
*hdr
; /* data block header */
286 xfs_dabuf_t
*dbp
; /* data block buffer */
287 xfs_dir2_data_entry_t
*dep
; /* data block entry */
288 xfs_inode_t
*dp
; /* incore directory inode */
289 xfs_dir2_data_unused_t
*dup
; /* data unused entry */
290 int error
; /* error return value */
291 int grown
; /* allocated new data block */
292 int highstale
; /* index of next stale leaf */
293 int i
; /* temporary, index */
294 int index
; /* leaf table position */
295 xfs_dabuf_t
*lbp
; /* leaf's buffer */
296 xfs_dir2_leaf_t
*leaf
; /* leaf structure */
297 int length
; /* length of new entry */
298 xfs_dir2_leaf_entry_t
*lep
; /* leaf entry table pointer */
299 int lfloglow
; /* low leaf logging index */
300 int lfloghigh
; /* high leaf logging index */
301 int lowstale
; /* index of prev stale leaf */
302 xfs_dir2_leaf_tail_t
*ltp
; /* leaf tail pointer */
303 xfs_mount_t
*mp
; /* filesystem mount point */
304 int needbytes
; /* leaf block bytes needed */
305 int needlog
; /* need to log data header */
306 int needscan
; /* need to rescan data free */
307 __be16
*tagp
; /* end of data entry */
308 xfs_trans_t
*tp
; /* transaction pointer */
309 xfs_dir2_db_t use_block
; /* data block number */
311 trace_xfs_dir2_leaf_addname(args
);
317 * Read the leaf block.
319 error
= xfs_da_read_buf(tp
, dp
, mp
->m_dirleafblk
, -1, &lbp
,
326 * Look up the entry by hash value and name.
327 * We know it's not there, our caller has already done a lookup.
328 * So the index is of the entry to insert in front of.
329 * But if there are dup hash values the index is of the first of those.
331 index
= xfs_dir2_leaf_search_hash(args
, lbp
);
333 ltp
= xfs_dir2_leaf_tail_p(mp
, leaf
);
334 bestsp
= xfs_dir2_leaf_bests_p(ltp
);
335 length
= xfs_dir2_data_entsize(args
->namelen
);
337 * See if there are any entries with the same hash value
338 * and space in their block for the new entry.
339 * This is good because it puts multiple same-hash value entries
340 * in a data block, improving the lookup of those entries.
342 for (use_block
= -1, lep
= &leaf
->ents
[index
];
343 index
< be16_to_cpu(leaf
->hdr
.count
) && be32_to_cpu(lep
->hashval
) == args
->hashval
;
345 if (be32_to_cpu(lep
->address
) == XFS_DIR2_NULL_DATAPTR
)
347 i
= xfs_dir2_dataptr_to_db(mp
, be32_to_cpu(lep
->address
));
348 ASSERT(i
< be32_to_cpu(ltp
->bestcount
));
349 ASSERT(bestsp
[i
] != cpu_to_be16(NULLDATAOFF
));
350 if (be16_to_cpu(bestsp
[i
]) >= length
) {
356 * Didn't find a block yet, linear search all the data blocks.
358 if (use_block
== -1) {
359 for (i
= 0; i
< be32_to_cpu(ltp
->bestcount
); i
++) {
361 * Remember a block we see that's missing.
363 if (bestsp
[i
] == cpu_to_be16(NULLDATAOFF
) &&
366 else if (be16_to_cpu(bestsp
[i
]) >= length
) {
373 * How many bytes do we need in the leaf block?
376 if (!leaf
->hdr
.stale
)
377 needbytes
+= sizeof(xfs_dir2_leaf_entry_t
);
379 needbytes
+= sizeof(xfs_dir2_data_off_t
);
382 * Now kill use_block if it refers to a missing block, so we
383 * can use it as an indication of allocation needed.
385 if (use_block
!= -1 && bestsp
[use_block
] == cpu_to_be16(NULLDATAOFF
))
388 * If we don't have enough free bytes but we can make enough
389 * by compacting out stale entries, we'll do that.
391 if ((char *)bestsp
- (char *)&leaf
->ents
[be16_to_cpu(leaf
->hdr
.count
)] <
392 needbytes
&& be16_to_cpu(leaf
->hdr
.stale
) > 1) {
396 * Otherwise if we don't have enough free bytes we need to
397 * convert to node form.
399 else if ((char *)bestsp
- (char *)&leaf
->ents
[be16_to_cpu(
400 leaf
->hdr
.count
)] < needbytes
) {
402 * Just checking or no space reservation, give up.
404 if ((args
->op_flags
& XFS_DA_OP_JUSTCHECK
) ||
406 xfs_da_brelse(tp
, lbp
);
407 return XFS_ERROR(ENOSPC
);
410 * Convert to node form.
412 error
= xfs_dir2_leaf_to_node(args
, lbp
);
413 xfs_da_buf_done(lbp
);
417 * Then add the new entry.
419 return xfs_dir2_node_addname(args
);
422 * Otherwise it will fit without compaction.
427 * If just checking, then it will fit unless we needed to allocate
430 if (args
->op_flags
& XFS_DA_OP_JUSTCHECK
) {
431 xfs_da_brelse(tp
, lbp
);
432 return use_block
== -1 ? XFS_ERROR(ENOSPC
) : 0;
435 * If no allocations are allowed, return now before we've
438 if (args
->total
== 0 && use_block
== -1) {
439 xfs_da_brelse(tp
, lbp
);
440 return XFS_ERROR(ENOSPC
);
443 * Need to compact the leaf entries, removing stale ones.
444 * Leave one stale entry behind - the one closest to our
445 * insertion index - and we'll shift that one to our insertion
449 xfs_dir2_leaf_compact_x1(lbp
, &index
, &lowstale
, &highstale
,
450 &lfloglow
, &lfloghigh
);
453 * There are stale entries, so we'll need log-low and log-high
454 * impossibly bad values later.
456 else if (be16_to_cpu(leaf
->hdr
.stale
)) {
457 lfloglow
= be16_to_cpu(leaf
->hdr
.count
);
461 * If there was no data block space found, we need to allocate
464 if (use_block
== -1) {
466 * Add the new data block.
468 if ((error
= xfs_dir2_grow_inode(args
, XFS_DIR2_DATA_SPACE
,
470 xfs_da_brelse(tp
, lbp
);
474 * Initialize the block.
476 if ((error
= xfs_dir2_data_init(args
, use_block
, &dbp
))) {
477 xfs_da_brelse(tp
, lbp
);
481 * If we're adding a new data block on the end we need to
482 * extend the bests table. Copy it up one entry.
484 if (use_block
>= be32_to_cpu(ltp
->bestcount
)) {
486 memmove(&bestsp
[0], &bestsp
[1],
487 be32_to_cpu(ltp
->bestcount
) * sizeof(bestsp
[0]));
488 be32_add_cpu(<p
->bestcount
, 1);
489 xfs_dir2_leaf_log_tail(tp
, lbp
);
490 xfs_dir2_leaf_log_bests(tp
, lbp
, 0, be32_to_cpu(ltp
->bestcount
) - 1);
493 * If we're filling in a previously empty block just log it.
496 xfs_dir2_leaf_log_bests(tp
, lbp
, use_block
, use_block
);
498 bestsp
[use_block
] = hdr
->bestfree
[0].length
;
502 * Already had space in some data block.
503 * Just read that one in.
507 xfs_da_read_buf(tp
, dp
, xfs_dir2_db_to_da(mp
, use_block
),
508 -1, &dbp
, XFS_DATA_FORK
))) {
509 xfs_da_brelse(tp
, lbp
);
515 xfs_dir2_data_check(dp
, dbp
);
517 * Point to the biggest freespace in our data block.
519 dup
= (xfs_dir2_data_unused_t
*)
520 ((char *)hdr
+ be16_to_cpu(hdr
->bestfree
[0].offset
));
521 ASSERT(be16_to_cpu(dup
->length
) >= length
);
522 needscan
= needlog
= 0;
524 * Mark the initial part of our freespace in use for the new entry.
526 xfs_dir2_data_use_free(tp
, dbp
, dup
,
527 (xfs_dir2_data_aoff_t
)((char *)dup
- (char *)hdr
), length
,
528 &needlog
, &needscan
);
530 * Initialize our new entry (at last).
532 dep
= (xfs_dir2_data_entry_t
*)dup
;
533 dep
->inumber
= cpu_to_be64(args
->inumber
);
534 dep
->namelen
= args
->namelen
;
535 memcpy(dep
->name
, args
->name
, dep
->namelen
);
536 tagp
= xfs_dir2_data_entry_tag_p(dep
);
537 *tagp
= cpu_to_be16((char *)dep
- (char *)hdr
);
539 * Need to scan fix up the bestfree table.
542 xfs_dir2_data_freescan(mp
, hdr
, &needlog
);
544 * Need to log the data block's header.
547 xfs_dir2_data_log_header(tp
, dbp
);
548 xfs_dir2_data_log_entry(tp
, dbp
, dep
);
550 * If the bests table needs to be changed, do it.
551 * Log the change unless we've already done that.
553 if (be16_to_cpu(bestsp
[use_block
]) != be16_to_cpu(hdr
->bestfree
[0].length
)) {
554 bestsp
[use_block
] = hdr
->bestfree
[0].length
;
556 xfs_dir2_leaf_log_bests(tp
, lbp
, use_block
, use_block
);
559 lep
= xfs_dir2_leaf_find_entry(leaf
, index
, compact
, lowstale
,
560 highstale
, &lfloglow
, &lfloghigh
);
563 * Fill in the new leaf entry.
565 lep
->hashval
= cpu_to_be32(args
->hashval
);
566 lep
->address
= cpu_to_be32(xfs_dir2_db_off_to_dataptr(mp
, use_block
,
567 be16_to_cpu(*tagp
)));
569 * Log the leaf fields and give up the buffers.
571 xfs_dir2_leaf_log_header(tp
, lbp
);
572 xfs_dir2_leaf_log_ents(tp
, lbp
, lfloglow
, lfloghigh
);
573 xfs_dir2_leaf_check(dp
, lbp
);
574 xfs_da_buf_done(lbp
);
575 xfs_dir2_data_check(dp
, dbp
);
576 xfs_da_buf_done(dbp
);
582 * Check the internal consistency of a leaf1 block.
583 * Pop an assert if something is wrong.
587 xfs_inode_t
*dp
, /* incore directory inode */
588 xfs_dabuf_t
*bp
) /* leaf's buffer */
590 int i
; /* leaf index */
591 xfs_dir2_leaf_t
*leaf
; /* leaf structure */
592 xfs_dir2_leaf_tail_t
*ltp
; /* leaf tail pointer */
593 xfs_mount_t
*mp
; /* filesystem mount point */
594 int stale
; /* count of stale leaves */
598 ASSERT(leaf
->hdr
.info
.magic
== cpu_to_be16(XFS_DIR2_LEAF1_MAGIC
));
600 * This value is not restrictive enough.
601 * Should factor in the size of the bests table as well.
602 * We can deduce a value for that from di_size.
604 ASSERT(be16_to_cpu(leaf
->hdr
.count
) <= xfs_dir2_max_leaf_ents(mp
));
605 ltp
= xfs_dir2_leaf_tail_p(mp
, leaf
);
607 * Leaves and bests don't overlap.
609 ASSERT((char *)&leaf
->ents
[be16_to_cpu(leaf
->hdr
.count
)] <=
610 (char *)xfs_dir2_leaf_bests_p(ltp
));
612 * Check hash value order, count stale entries.
614 for (i
= stale
= 0; i
< be16_to_cpu(leaf
->hdr
.count
); i
++) {
615 if (i
+ 1 < be16_to_cpu(leaf
->hdr
.count
))
616 ASSERT(be32_to_cpu(leaf
->ents
[i
].hashval
) <=
617 be32_to_cpu(leaf
->ents
[i
+ 1].hashval
));
618 if (leaf
->ents
[i
].address
== cpu_to_be32(XFS_DIR2_NULL_DATAPTR
))
621 ASSERT(be16_to_cpu(leaf
->hdr
.stale
) == stale
);
626 * Compact out any stale entries in the leaf.
627 * Log the header and changed leaf entries, if any.
630 xfs_dir2_leaf_compact(
631 xfs_da_args_t
*args
, /* operation arguments */
632 xfs_dabuf_t
*bp
) /* leaf buffer */
634 int from
; /* source leaf index */
635 xfs_dir2_leaf_t
*leaf
; /* leaf structure */
636 int loglow
; /* first leaf entry to log */
637 int to
; /* target leaf index */
640 if (!leaf
->hdr
.stale
) {
644 * Compress out the stale entries in place.
646 for (from
= to
= 0, loglow
= -1; from
< be16_to_cpu(leaf
->hdr
.count
); from
++) {
647 if (leaf
->ents
[from
].address
==
648 cpu_to_be32(XFS_DIR2_NULL_DATAPTR
))
651 * Only actually copy the entries that are different.
656 leaf
->ents
[to
] = leaf
->ents
[from
];
661 * Update and log the header, log the leaf entries.
663 ASSERT(be16_to_cpu(leaf
->hdr
.stale
) == from
- to
);
664 be16_add_cpu(&leaf
->hdr
.count
, -(be16_to_cpu(leaf
->hdr
.stale
)));
666 xfs_dir2_leaf_log_header(args
->trans
, bp
);
668 xfs_dir2_leaf_log_ents(args
->trans
, bp
, loglow
, to
- 1);
672 * Compact the leaf entries, removing stale ones.
673 * Leave one stale entry behind - the one closest to our
674 * insertion index - and the caller will shift that one to our insertion
676 * Return new insertion index, where the remaining stale entry is,
677 * and leaf logging indices.
680 xfs_dir2_leaf_compact_x1(
681 xfs_dabuf_t
*bp
, /* leaf buffer */
682 int *indexp
, /* insertion index */
683 int *lowstalep
, /* out: stale entry before us */
684 int *highstalep
, /* out: stale entry after us */
685 int *lowlogp
, /* out: low log index */
686 int *highlogp
) /* out: high log index */
688 int from
; /* source copy index */
689 int highstale
; /* stale entry at/after index */
690 int index
; /* insertion index */
691 int keepstale
; /* source index of kept stale */
692 xfs_dir2_leaf_t
*leaf
; /* leaf structure */
693 int lowstale
; /* stale entry before index */
694 int newindex
=0; /* new insertion index */
695 int to
; /* destination copy index */
698 ASSERT(be16_to_cpu(leaf
->hdr
.stale
) > 1);
701 xfs_dir2_leaf_find_stale(leaf
, index
, &lowstale
, &highstale
);
704 * Pick the better of lowstale and highstale.
707 (highstale
== be16_to_cpu(leaf
->hdr
.count
) ||
708 index
- lowstale
<= highstale
- index
))
709 keepstale
= lowstale
;
711 keepstale
= highstale
;
713 * Copy the entries in place, removing all the stale entries
716 for (from
= to
= 0; from
< be16_to_cpu(leaf
->hdr
.count
); from
++) {
718 * Notice the new value of index.
722 if (from
!= keepstale
&&
723 leaf
->ents
[from
].address
==
724 cpu_to_be32(XFS_DIR2_NULL_DATAPTR
)) {
730 * Record the new keepstale value for the insertion.
732 if (from
== keepstale
)
733 lowstale
= highstale
= to
;
735 * Copy only the entries that have moved.
738 leaf
->ents
[to
] = leaf
->ents
[from
];
743 * If the insertion point was past the last entry,
744 * set the new insertion point accordingly.
750 * Adjust the leaf header values.
752 be16_add_cpu(&leaf
->hdr
.count
, -(from
- to
));
753 leaf
->hdr
.stale
= cpu_to_be16(1);
755 * Remember the low/high stale value only in the "right"
758 if (lowstale
>= newindex
)
761 highstale
= be16_to_cpu(leaf
->hdr
.count
);
762 *highlogp
= be16_to_cpu(leaf
->hdr
.count
) - 1;
763 *lowstalep
= lowstale
;
764 *highstalep
= highstale
;
768 * Getdents (readdir) for leaf and node directories.
769 * This reads the data blocks only, so is the same for both forms.
772 xfs_dir2_leaf_getdents(
773 xfs_inode_t
*dp
, /* incore directory inode */
779 xfs_dabuf_t
*bp
; /* data block buffer */
780 int byteoff
; /* offset in current block */
781 xfs_dir2_db_t curdb
; /* db for current block */
782 xfs_dir2_off_t curoff
; /* current overall offset */
783 xfs_dir2_data_hdr_t
*hdr
; /* data block header */
784 xfs_dir2_data_entry_t
*dep
; /* data entry */
785 xfs_dir2_data_unused_t
*dup
; /* unused entry */
786 int error
= 0; /* error return value */
787 int i
; /* temporary loop index */
788 int j
; /* temporary loop index */
789 int length
; /* temporary length value */
790 xfs_bmbt_irec_t
*map
; /* map vector for blocks */
791 xfs_extlen_t map_blocks
; /* number of fsbs in map */
792 xfs_dablk_t map_off
; /* last mapped file offset */
793 int map_size
; /* total entries in *map */
794 int map_valid
; /* valid entries in *map */
795 xfs_mount_t
*mp
; /* filesystem mount point */
796 xfs_dir2_off_t newoff
; /* new curoff after new blk */
797 int nmap
; /* mappings to ask xfs_bmapi */
798 char *ptr
= NULL
; /* pointer to current data */
799 int ra_current
; /* number of read-ahead blks */
800 int ra_index
; /* *map index for read-ahead */
801 int ra_offset
; /* map entry offset for ra */
802 int ra_want
; /* readahead count wanted */
805 * If the offset is at or past the largest allowed value,
806 * give up right away.
808 if (*offset
>= XFS_DIR2_MAX_DATAPTR
)
814 * Set up to bmap a number of blocks based on the caller's
815 * buffer size, the directory block size, and the filesystem
818 map_size
= howmany(bufsize
+ mp
->m_dirblksize
, mp
->m_sb
.sb_blocksize
);
819 map
= kmem_alloc(map_size
* sizeof(*map
), KM_SLEEP
);
820 map_valid
= ra_index
= ra_offset
= ra_current
= map_blocks
= 0;
824 * Inside the loop we keep the main offset value as a byte offset
825 * in the directory file.
827 curoff
= xfs_dir2_dataptr_to_byte(mp
, *offset
);
830 * Force this conversion through db so we truncate the offset
831 * down to get the start of the data block.
833 map_off
= xfs_dir2_db_to_da(mp
, xfs_dir2_byte_to_db(mp
, curoff
));
835 * Loop over directory entries until we reach the end offset.
836 * Get more blocks and readahead as necessary.
838 while (curoff
< XFS_DIR2_LEAF_OFFSET
) {
840 * If we have no buffer, or we're off the end of the
841 * current buffer, need to get another one.
843 if (!bp
|| ptr
>= (char *)bp
->data
+ mp
->m_dirblksize
) {
845 * If we have a buffer, we need to release it and
846 * take it out of the mapping.
849 xfs_da_brelse(NULL
, bp
);
851 map_blocks
-= mp
->m_dirblkfsbs
;
853 * Loop to get rid of the extents for the
856 for (i
= mp
->m_dirblkfsbs
; i
> 0; ) {
857 j
= MIN((int)map
->br_blockcount
, i
);
858 map
->br_blockcount
-= j
;
859 map
->br_startblock
+= j
;
860 map
->br_startoff
+= j
;
862 * If mapping is done, pitch it from
865 if (!map
->br_blockcount
&& --map_valid
)
866 memmove(&map
[0], &map
[1],
873 * Recalculate the readahead blocks wanted.
875 ra_want
= howmany(bufsize
+ mp
->m_dirblksize
,
876 mp
->m_sb
.sb_blocksize
) - 1;
877 ASSERT(ra_want
>= 0);
880 * If we don't have as many as we want, and we haven't
881 * run out of data blocks, get some more mappings.
883 if (1 + ra_want
> map_blocks
&&
885 xfs_dir2_byte_to_da(mp
, XFS_DIR2_LEAF_OFFSET
)) {
887 * Get more bmaps, fill in after the ones
888 * we already have in the table.
890 nmap
= map_size
- map_valid
;
891 error
= xfs_bmapi(NULL
, dp
,
893 xfs_dir2_byte_to_da(mp
,
894 XFS_DIR2_LEAF_OFFSET
) - map_off
,
895 XFS_BMAPI_METADATA
, NULL
, 0,
896 &map
[map_valid
], &nmap
, NULL
);
898 * Don't know if we should ignore this or
899 * try to return an error.
900 * The trouble with returning errors
901 * is that readdir will just stop without
902 * actually passing the error through.
907 * If we got all the mappings we asked for,
908 * set the final map offset based on the
909 * last bmap value received.
910 * Otherwise, we've reached the end.
912 if (nmap
== map_size
- map_valid
)
914 map
[map_valid
+ nmap
- 1].br_startoff
+
915 map
[map_valid
+ nmap
- 1].br_blockcount
;
918 xfs_dir2_byte_to_da(mp
,
919 XFS_DIR2_LEAF_OFFSET
);
921 * Look for holes in the mapping, and
922 * eliminate them. Count up the valid blocks.
924 for (i
= map_valid
; i
< map_valid
+ nmap
; ) {
925 if (map
[i
].br_startblock
==
928 length
= map_valid
+ nmap
- i
;
936 map
[i
].br_blockcount
;
943 * No valid mappings, so no more data blocks.
946 curoff
= xfs_dir2_da_to_byte(mp
, map_off
);
950 * Read the directory block starting at the first
953 curdb
= xfs_dir2_da_to_db(mp
, map
->br_startoff
);
954 error
= xfs_da_read_buf(NULL
, dp
, map
->br_startoff
,
955 map
->br_blockcount
>= mp
->m_dirblkfsbs
?
956 XFS_FSB_TO_DADDR(mp
, map
->br_startblock
) :
960 * Should just skip over the data block instead
966 * Adjust the current amount of read-ahead: we just
967 * read a block that was previously ra.
970 ra_current
-= mp
->m_dirblkfsbs
;
972 * Do we need more readahead?
974 for (ra_index
= ra_offset
= i
= 0;
975 ra_want
> ra_current
&& i
< map_blocks
;
976 i
+= mp
->m_dirblkfsbs
) {
977 ASSERT(ra_index
< map_valid
);
979 * Read-ahead a contiguous directory block.
981 if (i
> ra_current
&&
982 map
[ra_index
].br_blockcount
>=
984 xfs_buf_readahead(mp
->m_ddev_targp
,
986 map
[ra_index
].br_startblock
+
988 (int)BTOBB(mp
->m_dirblksize
));
992 * Read-ahead a non-contiguous directory block.
993 * This doesn't use our mapping, but this
994 * is a very rare case.
996 else if (i
> ra_current
) {
997 (void)xfs_da_reada_buf(NULL
, dp
,
998 map
[ra_index
].br_startoff
+
999 ra_offset
, XFS_DATA_FORK
);
1003 * Advance offset through the mapping table.
1005 for (j
= 0; j
< mp
->m_dirblkfsbs
; j
++) {
1007 * The rest of this extent but not
1008 * more than a dir block.
1010 length
= MIN(mp
->m_dirblkfsbs
,
1011 (int)(map
[ra_index
].br_blockcount
-
1014 ra_offset
+= length
;
1016 * Advance to the next mapping if
1017 * this one is used up.
1020 map
[ra_index
].br_blockcount
) {
1027 * Having done a read, we need to set a new offset.
1029 newoff
= xfs_dir2_db_off_to_byte(mp
, curdb
, 0);
1031 * Start of the current block.
1033 if (curoff
< newoff
)
1036 * Make sure we're in the right block.
1038 else if (curoff
> newoff
)
1039 ASSERT(xfs_dir2_byte_to_db(mp
, curoff
) ==
1042 xfs_dir2_data_check(dp
, bp
);
1044 * Find our position in the block.
1046 ptr
= (char *)(hdr
+ 1);
1047 byteoff
= xfs_dir2_byte_to_off(mp
, curoff
);
1049 * Skip past the header.
1052 curoff
+= (uint
)sizeof(*hdr
);
1054 * Skip past entries until we reach our offset.
1057 while ((char *)ptr
- (char *)hdr
< byteoff
) {
1058 dup
= (xfs_dir2_data_unused_t
*)ptr
;
1060 if (be16_to_cpu(dup
->freetag
)
1061 == XFS_DIR2_DATA_FREE_TAG
) {
1063 length
= be16_to_cpu(dup
->length
);
1067 dep
= (xfs_dir2_data_entry_t
*)ptr
;
1069 xfs_dir2_data_entsize(dep
->namelen
);
1073 * Now set our real offset.
1076 xfs_dir2_db_off_to_byte(mp
,
1077 xfs_dir2_byte_to_db(mp
, curoff
),
1078 (char *)ptr
- (char *)hdr
);
1079 if (ptr
>= (char *)hdr
+ mp
->m_dirblksize
) {
1085 * We have a pointer to an entry.
1088 dup
= (xfs_dir2_data_unused_t
*)ptr
;
1090 * No, it's unused, skip over it.
1092 if (be16_to_cpu(dup
->freetag
) == XFS_DIR2_DATA_FREE_TAG
) {
1093 length
= be16_to_cpu(dup
->length
);
1099 dep
= (xfs_dir2_data_entry_t
*)ptr
;
1100 length
= xfs_dir2_data_entsize(dep
->namelen
);
1102 if (filldir(dirent
, (char *)dep
->name
, dep
->namelen
,
1103 xfs_dir2_byte_to_dataptr(mp
, curoff
) & 0x7fffffff,
1104 be64_to_cpu(dep
->inumber
), DT_UNKNOWN
))
1108 * Advance to next entry in the block.
1112 /* bufsize may have just been a guess; don't go negative */
1113 bufsize
= bufsize
> length
? bufsize
- length
: 0;
1117 * All done. Set output offset value to current offset.
1119 if (curoff
> xfs_dir2_dataptr_to_byte(mp
, XFS_DIR2_MAX_DATAPTR
))
1120 *offset
= XFS_DIR2_MAX_DATAPTR
& 0x7fffffff;
1122 *offset
= xfs_dir2_byte_to_dataptr(mp
, curoff
) & 0x7fffffff;
1125 xfs_da_brelse(NULL
, bp
);
1130 * Initialize a new leaf block, leaf1 or leafn magic accepted.
1134 xfs_da_args_t
*args
, /* operation arguments */
1135 xfs_dir2_db_t bno
, /* directory block number */
1136 xfs_dabuf_t
**bpp
, /* out: leaf buffer */
1137 int magic
) /* magic number for block */
1139 xfs_dabuf_t
*bp
; /* leaf buffer */
1140 xfs_inode_t
*dp
; /* incore directory inode */
1141 int error
; /* error return code */
1142 xfs_dir2_leaf_t
*leaf
; /* leaf structure */
1143 xfs_dir2_leaf_tail_t
*ltp
; /* leaf tail structure */
1144 xfs_mount_t
*mp
; /* filesystem mount point */
1145 xfs_trans_t
*tp
; /* transaction pointer */
1151 ASSERT(bno
>= XFS_DIR2_LEAF_FIRSTDB(mp
) &&
1152 bno
< XFS_DIR2_FREE_FIRSTDB(mp
));
1154 * Get the buffer for the block.
1156 error
= xfs_da_get_buf(tp
, dp
, xfs_dir2_db_to_da(mp
, bno
), -1, &bp
,
1164 * Initialize the header.
1166 leaf
->hdr
.info
.magic
= cpu_to_be16(magic
);
1167 leaf
->hdr
.info
.forw
= 0;
1168 leaf
->hdr
.info
.back
= 0;
1169 leaf
->hdr
.count
= 0;
1170 leaf
->hdr
.stale
= 0;
1171 xfs_dir2_leaf_log_header(tp
, bp
);
1173 * If it's a leaf-format directory initialize the tail.
1174 * In this case our caller has the real bests table to copy into
1177 if (magic
== XFS_DIR2_LEAF1_MAGIC
) {
1178 ltp
= xfs_dir2_leaf_tail_p(mp
, leaf
);
1180 xfs_dir2_leaf_log_tail(tp
, bp
);
1187 * Log the bests entries indicated from a leaf1 block.
1190 xfs_dir2_leaf_log_bests(
1191 xfs_trans_t
*tp
, /* transaction pointer */
1192 xfs_dabuf_t
*bp
, /* leaf buffer */
1193 int first
, /* first entry to log */
1194 int last
) /* last entry to log */
1196 __be16
*firstb
; /* pointer to first entry */
1197 __be16
*lastb
; /* pointer to last entry */
1198 xfs_dir2_leaf_t
*leaf
; /* leaf structure */
1199 xfs_dir2_leaf_tail_t
*ltp
; /* leaf tail structure */
1202 ASSERT(leaf
->hdr
.info
.magic
== cpu_to_be16(XFS_DIR2_LEAF1_MAGIC
));
1203 ltp
= xfs_dir2_leaf_tail_p(tp
->t_mountp
, leaf
);
1204 firstb
= xfs_dir2_leaf_bests_p(ltp
) + first
;
1205 lastb
= xfs_dir2_leaf_bests_p(ltp
) + last
;
1206 xfs_da_log_buf(tp
, bp
, (uint
)((char *)firstb
- (char *)leaf
),
1207 (uint
)((char *)lastb
- (char *)leaf
+ sizeof(*lastb
) - 1));
1211 * Log the leaf entries indicated from a leaf1 or leafn block.
1214 xfs_dir2_leaf_log_ents(
1215 xfs_trans_t
*tp
, /* transaction pointer */
1216 xfs_dabuf_t
*bp
, /* leaf buffer */
1217 int first
, /* first entry to log */
1218 int last
) /* last entry to log */
1220 xfs_dir2_leaf_entry_t
*firstlep
; /* pointer to first entry */
1221 xfs_dir2_leaf_entry_t
*lastlep
; /* pointer to last entry */
1222 xfs_dir2_leaf_t
*leaf
; /* leaf structure */
1225 ASSERT(leaf
->hdr
.info
.magic
== cpu_to_be16(XFS_DIR2_LEAF1_MAGIC
) ||
1226 leaf
->hdr
.info
.magic
== cpu_to_be16(XFS_DIR2_LEAFN_MAGIC
));
1227 firstlep
= &leaf
->ents
[first
];
1228 lastlep
= &leaf
->ents
[last
];
1229 xfs_da_log_buf(tp
, bp
, (uint
)((char *)firstlep
- (char *)leaf
),
1230 (uint
)((char *)lastlep
- (char *)leaf
+ sizeof(*lastlep
) - 1));
1234 * Log the header of the leaf1 or leafn block.
1237 xfs_dir2_leaf_log_header(
1238 xfs_trans_t
*tp
, /* transaction pointer */
1239 xfs_dabuf_t
*bp
) /* leaf buffer */
1241 xfs_dir2_leaf_t
*leaf
; /* leaf structure */
1244 ASSERT(leaf
->hdr
.info
.magic
== cpu_to_be16(XFS_DIR2_LEAF1_MAGIC
) ||
1245 leaf
->hdr
.info
.magic
== cpu_to_be16(XFS_DIR2_LEAFN_MAGIC
));
1246 xfs_da_log_buf(tp
, bp
, (uint
)((char *)&leaf
->hdr
- (char *)leaf
),
1247 (uint
)(sizeof(leaf
->hdr
) - 1));
1251 * Log the tail of the leaf1 block.
1254 xfs_dir2_leaf_log_tail(
1255 xfs_trans_t
*tp
, /* transaction pointer */
1256 xfs_dabuf_t
*bp
) /* leaf buffer */
1258 xfs_dir2_leaf_t
*leaf
; /* leaf structure */
1259 xfs_dir2_leaf_tail_t
*ltp
; /* leaf tail structure */
1260 xfs_mount_t
*mp
; /* filesystem mount point */
1264 ASSERT(leaf
->hdr
.info
.magic
== cpu_to_be16(XFS_DIR2_LEAF1_MAGIC
));
1265 ltp
= xfs_dir2_leaf_tail_p(mp
, leaf
);
1266 xfs_da_log_buf(tp
, bp
, (uint
)((char *)ltp
- (char *)leaf
),
1267 (uint
)(mp
->m_dirblksize
- 1));
1271 * Look up the entry referred to by args in the leaf format directory.
1272 * Most of the work is done by the xfs_dir2_leaf_lookup_int routine which
1273 * is also used by the node-format code.
1276 xfs_dir2_leaf_lookup(
1277 xfs_da_args_t
*args
) /* operation arguments */
1279 xfs_dabuf_t
*dbp
; /* data block buffer */
1280 xfs_dir2_data_entry_t
*dep
; /* data block entry */
1281 xfs_inode_t
*dp
; /* incore directory inode */
1282 int error
; /* error return code */
1283 int index
; /* found entry index */
1284 xfs_dabuf_t
*lbp
; /* leaf buffer */
1285 xfs_dir2_leaf_t
*leaf
; /* leaf structure */
1286 xfs_dir2_leaf_entry_t
*lep
; /* leaf entry */
1287 xfs_trans_t
*tp
; /* transaction pointer */
1289 trace_xfs_dir2_leaf_lookup(args
);
1292 * Look up name in the leaf block, returning both buffers and index.
1294 if ((error
= xfs_dir2_leaf_lookup_int(args
, &lbp
, &index
, &dbp
))) {
1299 xfs_dir2_leaf_check(dp
, lbp
);
1302 * Get to the leaf entry and contained data entry address.
1304 lep
= &leaf
->ents
[index
];
1306 * Point to the data entry.
1308 dep
= (xfs_dir2_data_entry_t
*)
1309 ((char *)dbp
->data
+
1310 xfs_dir2_dataptr_to_off(dp
->i_mount
, be32_to_cpu(lep
->address
)));
1312 * Return the found inode number & CI name if appropriate
1314 args
->inumber
= be64_to_cpu(dep
->inumber
);
1315 error
= xfs_dir_cilookup_result(args
, dep
->name
, dep
->namelen
);
1316 xfs_da_brelse(tp
, dbp
);
1317 xfs_da_brelse(tp
, lbp
);
1318 return XFS_ERROR(error
);
1322 * Look up name/hash in the leaf block.
1323 * Fill in indexp with the found index, and dbpp with the data buffer.
1324 * If not found dbpp will be NULL, and ENOENT comes back.
1325 * lbpp will always be filled in with the leaf buffer unless there's an error.
1327 static int /* error */
1328 xfs_dir2_leaf_lookup_int(
1329 xfs_da_args_t
*args
, /* operation arguments */
1330 xfs_dabuf_t
**lbpp
, /* out: leaf buffer */
1331 int *indexp
, /* out: index in leaf block */
1332 xfs_dabuf_t
**dbpp
) /* out: data buffer */
1334 xfs_dir2_db_t curdb
= -1; /* current data block number */
1335 xfs_dabuf_t
*dbp
= NULL
; /* data buffer */
1336 xfs_dir2_data_entry_t
*dep
; /* data entry */
1337 xfs_inode_t
*dp
; /* incore directory inode */
1338 int error
; /* error return code */
1339 int index
; /* index in leaf block */
1340 xfs_dabuf_t
*lbp
; /* leaf buffer */
1341 xfs_dir2_leaf_entry_t
*lep
; /* leaf entry */
1342 xfs_dir2_leaf_t
*leaf
; /* leaf structure */
1343 xfs_mount_t
*mp
; /* filesystem mount point */
1344 xfs_dir2_db_t newdb
; /* new data block number */
1345 xfs_trans_t
*tp
; /* transaction pointer */
1346 xfs_dir2_db_t cidb
= -1; /* case match data block no. */
1347 enum xfs_dacmp cmp
; /* name compare result */
1353 * Read the leaf block into the buffer.
1355 error
= xfs_da_read_buf(tp
, dp
, mp
->m_dirleafblk
, -1, &lbp
,
1361 xfs_dir2_leaf_check(dp
, lbp
);
1363 * Look for the first leaf entry with our hash value.
1365 index
= xfs_dir2_leaf_search_hash(args
, lbp
);
1367 * Loop over all the entries with the right hash value
1368 * looking to match the name.
1370 for (lep
= &leaf
->ents
[index
]; index
< be16_to_cpu(leaf
->hdr
.count
) &&
1371 be32_to_cpu(lep
->hashval
) == args
->hashval
;
1374 * Skip over stale leaf entries.
1376 if (be32_to_cpu(lep
->address
) == XFS_DIR2_NULL_DATAPTR
)
1379 * Get the new data block number.
1381 newdb
= xfs_dir2_dataptr_to_db(mp
, be32_to_cpu(lep
->address
));
1383 * If it's not the same as the old data block number,
1384 * need to pitch the old one and read the new one.
1386 if (newdb
!= curdb
) {
1388 xfs_da_brelse(tp
, dbp
);
1389 error
= xfs_da_read_buf(tp
, dp
,
1390 xfs_dir2_db_to_da(mp
, newdb
),
1391 -1, &dbp
, XFS_DATA_FORK
);
1393 xfs_da_brelse(tp
, lbp
);
1396 xfs_dir2_data_check(dp
, dbp
);
1400 * Point to the data entry.
1402 dep
= (xfs_dir2_data_entry_t
*)((char *)dbp
->data
+
1403 xfs_dir2_dataptr_to_off(mp
, be32_to_cpu(lep
->address
)));
1405 * Compare name and if it's an exact match, return the index
1406 * and buffer. If it's the first case-insensitive match, store
1407 * the index and buffer and continue looking for an exact match.
1409 cmp
= mp
->m_dirnameops
->compname(args
, dep
->name
, dep
->namelen
);
1410 if (cmp
!= XFS_CMP_DIFFERENT
&& cmp
!= args
->cmpresult
) {
1411 args
->cmpresult
= cmp
;
1413 /* case exact match: return the current buffer. */
1414 if (cmp
== XFS_CMP_EXACT
) {
1421 ASSERT(args
->op_flags
& XFS_DA_OP_OKNOENT
);
1423 * Here, we can only be doing a lookup (not a rename or remove).
1424 * If a case-insensitive match was found earlier, re-read the
1425 * appropriate data block if required and return it.
1427 if (args
->cmpresult
== XFS_CMP_CASE
) {
1429 if (cidb
!= curdb
) {
1430 xfs_da_brelse(tp
, dbp
);
1431 error
= xfs_da_read_buf(tp
, dp
,
1432 xfs_dir2_db_to_da(mp
, cidb
),
1433 -1, &dbp
, XFS_DATA_FORK
);
1435 xfs_da_brelse(tp
, lbp
);
1443 * No match found, return ENOENT.
1447 xfs_da_brelse(tp
, dbp
);
1448 xfs_da_brelse(tp
, lbp
);
1449 return XFS_ERROR(ENOENT
);
1453 * Remove an entry from a leaf format directory.
1456 xfs_dir2_leaf_removename(
1457 xfs_da_args_t
*args
) /* operation arguments */
1459 __be16
*bestsp
; /* leaf block best freespace */
1460 xfs_dir2_data_hdr_t
*hdr
; /* data block header */
1461 xfs_dir2_db_t db
; /* data block number */
1462 xfs_dabuf_t
*dbp
; /* data block buffer */
1463 xfs_dir2_data_entry_t
*dep
; /* data entry structure */
1464 xfs_inode_t
*dp
; /* incore directory inode */
1465 int error
; /* error return code */
1466 xfs_dir2_db_t i
; /* temporary data block # */
1467 int index
; /* index into leaf entries */
1468 xfs_dabuf_t
*lbp
; /* leaf buffer */
1469 xfs_dir2_leaf_t
*leaf
; /* leaf structure */
1470 xfs_dir2_leaf_entry_t
*lep
; /* leaf entry */
1471 xfs_dir2_leaf_tail_t
*ltp
; /* leaf tail structure */
1472 xfs_mount_t
*mp
; /* filesystem mount point */
1473 int needlog
; /* need to log data header */
1474 int needscan
; /* need to rescan data frees */
1475 xfs_dir2_data_off_t oldbest
; /* old value of best free */
1476 xfs_trans_t
*tp
; /* transaction pointer */
1478 trace_xfs_dir2_leaf_removename(args
);
1481 * Lookup the leaf entry, get the leaf and data blocks read in.
1483 if ((error
= xfs_dir2_leaf_lookup_int(args
, &lbp
, &index
, &dbp
))) {
1491 xfs_dir2_data_check(dp
, dbp
);
1493 * Point to the leaf entry, use that to point to the data entry.
1495 lep
= &leaf
->ents
[index
];
1496 db
= xfs_dir2_dataptr_to_db(mp
, be32_to_cpu(lep
->address
));
1497 dep
= (xfs_dir2_data_entry_t
*)
1498 ((char *)hdr
+ xfs_dir2_dataptr_to_off(mp
, be32_to_cpu(lep
->address
)));
1499 needscan
= needlog
= 0;
1500 oldbest
= be16_to_cpu(hdr
->bestfree
[0].length
);
1501 ltp
= xfs_dir2_leaf_tail_p(mp
, leaf
);
1502 bestsp
= xfs_dir2_leaf_bests_p(ltp
);
1503 ASSERT(be16_to_cpu(bestsp
[db
]) == oldbest
);
1505 * Mark the former data entry unused.
1507 xfs_dir2_data_make_free(tp
, dbp
,
1508 (xfs_dir2_data_aoff_t
)((char *)dep
- (char *)hdr
),
1509 xfs_dir2_data_entsize(dep
->namelen
), &needlog
, &needscan
);
1511 * We just mark the leaf entry stale by putting a null in it.
1513 be16_add_cpu(&leaf
->hdr
.stale
, 1);
1514 xfs_dir2_leaf_log_header(tp
, lbp
);
1515 lep
->address
= cpu_to_be32(XFS_DIR2_NULL_DATAPTR
);
1516 xfs_dir2_leaf_log_ents(tp
, lbp
, index
, index
);
1518 * Scan the freespace in the data block again if necessary,
1519 * log the data block header if necessary.
1522 xfs_dir2_data_freescan(mp
, hdr
, &needlog
);
1524 xfs_dir2_data_log_header(tp
, dbp
);
1526 * If the longest freespace in the data block has changed,
1527 * put the new value in the bests table and log that.
1529 if (be16_to_cpu(hdr
->bestfree
[0].length
) != oldbest
) {
1530 bestsp
[db
] = hdr
->bestfree
[0].length
;
1531 xfs_dir2_leaf_log_bests(tp
, lbp
, db
, db
);
1533 xfs_dir2_data_check(dp
, dbp
);
1535 * If the data block is now empty then get rid of the data block.
1537 if (be16_to_cpu(hdr
->bestfree
[0].length
) ==
1538 mp
->m_dirblksize
- (uint
)sizeof(*hdr
)) {
1539 ASSERT(db
!= mp
->m_dirdatablk
);
1540 if ((error
= xfs_dir2_shrink_inode(args
, db
, dbp
))) {
1542 * Nope, can't get rid of it because it caused
1543 * allocation of a bmap btree block to do so.
1544 * Just go on, returning success, leaving the
1545 * empty block in place.
1547 if (error
== ENOSPC
&& args
->total
== 0) {
1548 xfs_da_buf_done(dbp
);
1551 xfs_dir2_leaf_check(dp
, lbp
);
1552 xfs_da_buf_done(lbp
);
1557 * If this is the last data block then compact the
1558 * bests table by getting rid of entries.
1560 if (db
== be32_to_cpu(ltp
->bestcount
) - 1) {
1562 * Look for the last active entry (i).
1564 for (i
= db
- 1; i
> 0; i
--) {
1565 if (bestsp
[i
] != cpu_to_be16(NULLDATAOFF
))
1569 * Copy the table down so inactive entries at the
1572 memmove(&bestsp
[db
- i
], bestsp
,
1573 (be32_to_cpu(ltp
->bestcount
) - (db
- i
)) * sizeof(*bestsp
));
1574 be32_add_cpu(<p
->bestcount
, -(db
- i
));
1575 xfs_dir2_leaf_log_tail(tp
, lbp
);
1576 xfs_dir2_leaf_log_bests(tp
, lbp
, 0, be32_to_cpu(ltp
->bestcount
) - 1);
1578 bestsp
[db
] = cpu_to_be16(NULLDATAOFF
);
1581 * If the data block was not the first one, drop it.
1583 else if (db
!= mp
->m_dirdatablk
&& dbp
!= NULL
) {
1584 xfs_da_buf_done(dbp
);
1587 xfs_dir2_leaf_check(dp
, lbp
);
1589 * See if we can convert to block form.
1591 return xfs_dir2_leaf_to_block(args
, lbp
, dbp
);
1595 * Replace the inode number in a leaf format directory entry.
1598 xfs_dir2_leaf_replace(
1599 xfs_da_args_t
*args
) /* operation arguments */
1601 xfs_dabuf_t
*dbp
; /* data block buffer */
1602 xfs_dir2_data_entry_t
*dep
; /* data block entry */
1603 xfs_inode_t
*dp
; /* incore directory inode */
1604 int error
; /* error return code */
1605 int index
; /* index of leaf entry */
1606 xfs_dabuf_t
*lbp
; /* leaf buffer */
1607 xfs_dir2_leaf_t
*leaf
; /* leaf structure */
1608 xfs_dir2_leaf_entry_t
*lep
; /* leaf entry */
1609 xfs_trans_t
*tp
; /* transaction pointer */
1611 trace_xfs_dir2_leaf_replace(args
);
1614 * Look up the entry.
1616 if ((error
= xfs_dir2_leaf_lookup_int(args
, &lbp
, &index
, &dbp
))) {
1622 * Point to the leaf entry, get data address from it.
1624 lep
= &leaf
->ents
[index
];
1626 * Point to the data entry.
1628 dep
= (xfs_dir2_data_entry_t
*)
1629 ((char *)dbp
->data
+
1630 xfs_dir2_dataptr_to_off(dp
->i_mount
, be32_to_cpu(lep
->address
)));
1631 ASSERT(args
->inumber
!= be64_to_cpu(dep
->inumber
));
1633 * Put the new inode number in, log it.
1635 dep
->inumber
= cpu_to_be64(args
->inumber
);
1637 xfs_dir2_data_log_entry(tp
, dbp
, dep
);
1638 xfs_da_buf_done(dbp
);
1639 xfs_dir2_leaf_check(dp
, lbp
);
1640 xfs_da_brelse(tp
, lbp
);
1645 * Return index in the leaf block (lbp) which is either the first
1646 * one with this hash value, or if there are none, the insert point
1647 * for that hash value.
1649 int /* index value */
1650 xfs_dir2_leaf_search_hash(
1651 xfs_da_args_t
*args
, /* operation arguments */
1652 xfs_dabuf_t
*lbp
) /* leaf buffer */
1654 xfs_dahash_t hash
=0; /* hash from this entry */
1655 xfs_dahash_t hashwant
; /* hash value looking for */
1656 int high
; /* high leaf index */
1657 int low
; /* low leaf index */
1658 xfs_dir2_leaf_t
*leaf
; /* leaf structure */
1659 xfs_dir2_leaf_entry_t
*lep
; /* leaf entry */
1660 int mid
=0; /* current leaf index */
1664 if (!leaf
->hdr
.count
)
1668 * Note, the table cannot be empty, so we have to go through the loop.
1669 * Binary search the leaf entries looking for our hash value.
1671 for (lep
= leaf
->ents
, low
= 0, high
= be16_to_cpu(leaf
->hdr
.count
) - 1,
1672 hashwant
= args
->hashval
;
1674 mid
= (low
+ high
) >> 1;
1675 if ((hash
= be32_to_cpu(lep
[mid
].hashval
)) == hashwant
)
1677 if (hash
< hashwant
)
1683 * Found one, back up through all the equal hash values.
1685 if (hash
== hashwant
) {
1686 while (mid
> 0 && be32_to_cpu(lep
[mid
- 1].hashval
) == hashwant
) {
1691 * Need to point to an entry higher than ours.
1693 else if (hash
< hashwant
)
1699 * Trim off a trailing data block. We know it's empty since the leaf
1700 * freespace table says so.
1703 xfs_dir2_leaf_trim_data(
1704 xfs_da_args_t
*args
, /* operation arguments */
1705 xfs_dabuf_t
*lbp
, /* leaf buffer */
1706 xfs_dir2_db_t db
) /* data block number */
1708 __be16
*bestsp
; /* leaf bests table */
1709 xfs_dabuf_t
*dbp
; /* data block buffer */
1710 xfs_inode_t
*dp
; /* incore directory inode */
1711 int error
; /* error return value */
1712 xfs_dir2_leaf_t
*leaf
; /* leaf structure */
1713 xfs_dir2_leaf_tail_t
*ltp
; /* leaf tail structure */
1714 xfs_mount_t
*mp
; /* filesystem mount point */
1715 xfs_trans_t
*tp
; /* transaction pointer */
1721 * Read the offending data block. We need its buffer.
1723 if ((error
= xfs_da_read_buf(tp
, dp
, xfs_dir2_db_to_da(mp
, db
), -1, &dbp
,
1729 ltp
= xfs_dir2_leaf_tail_p(mp
, leaf
);
1733 struct xfs_dir2_data_hdr
*hdr
= dbp
->data
;
1735 ASSERT(hdr
->magic
== cpu_to_be32(XFS_DIR2_DATA_MAGIC
));
1736 ASSERT(be16_to_cpu(hdr
->bestfree
[0].length
) ==
1737 mp
->m_dirblksize
- (uint
)sizeof(*hdr
));
1738 ASSERT(db
== be32_to_cpu(ltp
->bestcount
) - 1);
1743 * Get rid of the data block.
1745 if ((error
= xfs_dir2_shrink_inode(args
, db
, dbp
))) {
1746 ASSERT(error
!= ENOSPC
);
1747 xfs_da_brelse(tp
, dbp
);
1751 * Eliminate the last bests entry from the table.
1753 bestsp
= xfs_dir2_leaf_bests_p(ltp
);
1754 be32_add_cpu(<p
->bestcount
, -1);
1755 memmove(&bestsp
[1], &bestsp
[0], be32_to_cpu(ltp
->bestcount
) * sizeof(*bestsp
));
1756 xfs_dir2_leaf_log_tail(tp
, lbp
);
1757 xfs_dir2_leaf_log_bests(tp
, lbp
, 0, be32_to_cpu(ltp
->bestcount
) - 1);
1761 static inline size_t
1763 struct xfs_dir2_leaf_hdr
*hdr
,
1768 entries
= be16_to_cpu(hdr
->count
) - be16_to_cpu(hdr
->stale
);
1769 return sizeof(xfs_dir2_leaf_hdr_t
) +
1770 entries
* sizeof(xfs_dir2_leaf_entry_t
) +
1771 counts
* sizeof(xfs_dir2_data_off_t
) +
1772 sizeof(xfs_dir2_leaf_tail_t
);
1776 * Convert node form directory to leaf form directory.
1777 * The root of the node form dir needs to already be a LEAFN block.
1778 * Just return if we can't do anything.
1781 xfs_dir2_node_to_leaf(
1782 xfs_da_state_t
*state
) /* directory operation state */
1784 xfs_da_args_t
*args
; /* operation arguments */
1785 xfs_inode_t
*dp
; /* incore directory inode */
1786 int error
; /* error return code */
1787 xfs_dabuf_t
*fbp
; /* buffer for freespace block */
1788 xfs_fileoff_t fo
; /* freespace file offset */
1789 xfs_dir2_free_t
*free
; /* freespace structure */
1790 xfs_dabuf_t
*lbp
; /* buffer for leaf block */
1791 xfs_dir2_leaf_tail_t
*ltp
; /* tail of leaf structure */
1792 xfs_dir2_leaf_t
*leaf
; /* leaf structure */
1793 xfs_mount_t
*mp
; /* filesystem mount point */
1794 int rval
; /* successful free trim? */
1795 xfs_trans_t
*tp
; /* transaction pointer */
1798 * There's more than a leaf level in the btree, so there must
1799 * be multiple leafn blocks. Give up.
1801 if (state
->path
.active
> 1)
1805 trace_xfs_dir2_node_to_leaf(args
);
1811 * Get the last offset in the file.
1813 if ((error
= xfs_bmap_last_offset(tp
, dp
, &fo
, XFS_DATA_FORK
))) {
1816 fo
-= mp
->m_dirblkfsbs
;
1818 * If there are freespace blocks other than the first one,
1819 * take this opportunity to remove trailing empty freespace blocks
1820 * that may have been left behind during no-space-reservation
1823 while (fo
> mp
->m_dirfreeblk
) {
1824 if ((error
= xfs_dir2_node_trim_free(args
, fo
, &rval
))) {
1828 fo
-= mp
->m_dirblkfsbs
;
1833 * Now find the block just before the freespace block.
1835 if ((error
= xfs_bmap_last_before(tp
, dp
, &fo
, XFS_DATA_FORK
))) {
1839 * If it's not the single leaf block, give up.
1841 if (XFS_FSB_TO_B(mp
, fo
) > XFS_DIR2_LEAF_OFFSET
+ mp
->m_dirblksize
)
1843 lbp
= state
->path
.blk
[0].bp
;
1845 ASSERT(leaf
->hdr
.info
.magic
== cpu_to_be16(XFS_DIR2_LEAFN_MAGIC
));
1847 * Read the freespace block.
1849 if ((error
= xfs_da_read_buf(tp
, dp
, mp
->m_dirfreeblk
, -1, &fbp
,
1854 ASSERT(free
->hdr
.magic
== cpu_to_be32(XFS_DIR2_FREE_MAGIC
));
1855 ASSERT(!free
->hdr
.firstdb
);
1858 * Now see if the leafn and free data will fit in a leaf1.
1859 * If not, release the buffer and give up.
1861 if (xfs_dir2_leaf_size(&leaf
->hdr
, be32_to_cpu(free
->hdr
.nvalid
)) >
1863 xfs_da_brelse(tp
, fbp
);
1868 * If the leaf has any stale entries in it, compress them out.
1869 * The compact routine will log the header.
1871 if (be16_to_cpu(leaf
->hdr
.stale
))
1872 xfs_dir2_leaf_compact(args
, lbp
);
1874 xfs_dir2_leaf_log_header(tp
, lbp
);
1875 leaf
->hdr
.info
.magic
= cpu_to_be16(XFS_DIR2_LEAF1_MAGIC
);
1877 * Set up the leaf tail from the freespace block.
1879 ltp
= xfs_dir2_leaf_tail_p(mp
, leaf
);
1880 ltp
->bestcount
= free
->hdr
.nvalid
;
1882 * Set up the leaf bests table.
1884 memcpy(xfs_dir2_leaf_bests_p(ltp
), free
->bests
,
1885 be32_to_cpu(ltp
->bestcount
) * sizeof(xfs_dir2_data_off_t
));
1886 xfs_dir2_leaf_log_bests(tp
, lbp
, 0, be32_to_cpu(ltp
->bestcount
) - 1);
1887 xfs_dir2_leaf_log_tail(tp
, lbp
);
1888 xfs_dir2_leaf_check(dp
, lbp
);
1890 * Get rid of the freespace block.
1892 error
= xfs_dir2_shrink_inode(args
, XFS_DIR2_FREE_FIRSTDB(mp
), fbp
);
1895 * This can't fail here because it can only happen when
1896 * punching out the middle of an extent, and this is an
1899 ASSERT(error
!= ENOSPC
);
1904 * Now see if we can convert the single-leaf directory
1905 * down to a block form directory.
1906 * This routine always kills the dabuf for the leaf, so
1907 * eliminate it from the path.
1909 error
= xfs_dir2_leaf_to_block(args
, lbp
, NULL
);
1910 state
->path
.blk
[0].bp
= NULL
;