2 * Copyright (c) 2000-2003 Silicon Graphics, Inc. All Rights Reserved.
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms of version 2 of the GNU General Public License as
6 * published by the Free Software Foundation.
8 * This program is distributed in the hope that it would be useful, but
9 * WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
12 * Further, this software is distributed without any warranty that it is
13 * free of the rightful claim of any third person regarding infringement
14 * or the like. Any license provided herein, whether implied or
15 * otherwise, applies only to this software file. Patent licenses, if
16 * any, provided herein do not apply to combinations of this program with
17 * other software, or any other product whatsoever.
19 * You should have received a copy of the GNU General Public License along
20 * with this program; if not, write the Free Software Foundation, Inc., 59
21 * Temple Place - Suite 330, Boston MA 02111-1307, USA.
23 * Contact information: Silicon Graphics, Inc., 1600 Amphitheatre Pkwy,
24 * Mountain View, CA 94043, or:
28 * For further information regarding this notice, see:
30 * http://oss.sgi.com/projects/GenInfo/SGIGPLNoticeExplan/
35 * XFS directory version 2 implementation - single leaf form
36 * see xfs_dir2_leaf.h for data structures.
37 * These directories have multiple XFS_DIR2_DATA blocks and one
38 * XFS_DIR2_LEAF1 block containing the hash table and freespace map.
43 #include "xfs_macros.h"
44 #include "xfs_types.h"
47 #include "xfs_trans.h"
52 #include "xfs_dmapi.h"
53 #include "xfs_mount.h"
54 #include "xfs_bmap_btree.h"
55 #include "xfs_attr_sf.h"
56 #include "xfs_dir_sf.h"
57 #include "xfs_dir2_sf.h"
58 #include "xfs_dinode.h"
59 #include "xfs_inode.h"
61 #include "xfs_da_btree.h"
62 #include "xfs_dir2_data.h"
63 #include "xfs_dir2_leaf.h"
64 #include "xfs_dir2_block.h"
65 #include "xfs_dir2_node.h"
66 #include "xfs_dir2_trace.h"
67 #include "xfs_error.h"
71 * Local function declarations.
74 static void xfs_dir2_leaf_check(xfs_inode_t
*dp
, xfs_dabuf_t
*bp
);
76 #define xfs_dir2_leaf_check(dp, bp)
78 static int xfs_dir2_leaf_lookup_int(xfs_da_args_t
*args
, xfs_dabuf_t
**lbpp
,
79 int *indexp
, xfs_dabuf_t
**dbpp
);
82 * Convert a block form directory to a leaf form directory.
85 xfs_dir2_block_to_leaf(
86 xfs_da_args_t
*args
, /* operation arguments */
87 xfs_dabuf_t
*dbp
) /* input block's buffer */
89 xfs_dir2_data_off_t
*bestsp
; /* leaf's bestsp entries */
90 xfs_dablk_t blkno
; /* leaf block's bno */
91 xfs_dir2_block_t
*block
; /* block structure */
92 xfs_dir2_leaf_entry_t
*blp
; /* block's leaf entries */
93 xfs_dir2_block_tail_t
*btp
; /* block's tail */
94 xfs_inode_t
*dp
; /* incore directory inode */
95 int error
; /* error return code */
96 xfs_dabuf_t
*lbp
; /* leaf block's buffer */
97 xfs_dir2_db_t ldb
; /* leaf block's bno */
98 xfs_dir2_leaf_t
*leaf
; /* leaf structure */
99 xfs_dir2_leaf_tail_t
*ltp
; /* leaf's tail */
100 xfs_mount_t
*mp
; /* filesystem mount point */
101 int needlog
; /* need to log block header */
102 int needscan
; /* need to rescan bestfree */
103 xfs_trans_t
*tp
; /* transaction pointer */
105 xfs_dir2_trace_args_b("block_to_leaf", args
, dbp
);
110 * Add the leaf block to the inode.
111 * This interface will only put blocks in the leaf/node range.
112 * Since that's empty now, we'll get the root (block 0 in range).
114 if ((error
= xfs_da_grow_inode(args
, &blkno
))) {
117 ldb
= XFS_DIR2_DA_TO_DB(mp
, blkno
);
118 ASSERT(ldb
== XFS_DIR2_LEAF_FIRSTDB(mp
));
120 * Initialize the leaf block, get a buffer for it.
122 if ((error
= xfs_dir2_leaf_init(args
, ldb
, &lbp
, XFS_DIR2_LEAF1_MAGIC
))) {
128 xfs_dir2_data_check(dp
, dbp
);
129 btp
= XFS_DIR2_BLOCK_TAIL_P(mp
, block
);
130 blp
= XFS_DIR2_BLOCK_LEAF_P_ARCH(btp
, ARCH_CONVERT
);
132 * Set the counts in the leaf header.
134 INT_COPY(leaf
->hdr
.count
, btp
->count
, ARCH_CONVERT
); /* INT_: type change */
135 INT_COPY(leaf
->hdr
.stale
, btp
->stale
, ARCH_CONVERT
); /* INT_: type change */
137 * Could compact these but I think we always do the conversion
138 * after squeezing out stale entries.
140 memcpy(leaf
->ents
, blp
, INT_GET(btp
->count
, ARCH_CONVERT
) * sizeof(xfs_dir2_leaf_entry_t
));
141 xfs_dir2_leaf_log_ents(tp
, lbp
, 0, INT_GET(leaf
->hdr
.count
, ARCH_CONVERT
) - 1);
145 * Make the space formerly occupied by the leaf entries and block
148 xfs_dir2_data_make_free(tp
, dbp
,
149 (xfs_dir2_data_aoff_t
)((char *)blp
- (char *)block
),
150 (xfs_dir2_data_aoff_t
)((char *)block
+ mp
->m_dirblksize
-
152 &needlog
, &needscan
);
154 * Fix up the block header, make it a data block.
156 INT_SET(block
->hdr
.magic
, ARCH_CONVERT
, XFS_DIR2_DATA_MAGIC
);
158 xfs_dir2_data_freescan(mp
, (xfs_dir2_data_t
*)block
, &needlog
,
161 * Set up leaf tail and bests table.
163 ltp
= XFS_DIR2_LEAF_TAIL_P(mp
, leaf
);
164 INT_SET(ltp
->bestcount
, ARCH_CONVERT
, 1);
165 bestsp
= XFS_DIR2_LEAF_BESTS_P_ARCH(ltp
, ARCH_CONVERT
);
166 INT_COPY(bestsp
[0], block
->hdr
.bestfree
[0].length
, ARCH_CONVERT
);
168 * Log the data header and leaf bests table.
171 xfs_dir2_data_log_header(tp
, dbp
);
172 xfs_dir2_leaf_check(dp
, lbp
);
173 xfs_dir2_data_check(dp
, dbp
);
174 xfs_dir2_leaf_log_bests(tp
, lbp
, 0, 0);
175 xfs_da_buf_done(lbp
);
180 * Add an entry to a leaf form directory.
183 xfs_dir2_leaf_addname(
184 xfs_da_args_t
*args
) /* operation arguments */
186 xfs_dir2_data_off_t
*bestsp
; /* freespace table in leaf */
187 int compact
; /* need to compact leaves */
188 xfs_dir2_data_t
*data
; /* data block structure */
189 xfs_dabuf_t
*dbp
; /* data block buffer */
190 xfs_dir2_data_entry_t
*dep
; /* data block entry */
191 xfs_inode_t
*dp
; /* incore directory inode */
192 xfs_dir2_data_unused_t
*dup
; /* data unused entry */
193 int error
; /* error return value */
194 int grown
; /* allocated new data block */
195 int highstale
; /* index of next stale leaf */
196 int i
; /* temporary, index */
197 int index
; /* leaf table position */
198 xfs_dabuf_t
*lbp
; /* leaf's buffer */
199 xfs_dir2_leaf_t
*leaf
; /* leaf structure */
200 int length
; /* length of new entry */
201 xfs_dir2_leaf_entry_t
*lep
; /* leaf entry table pointer */
202 int lfloglow
; /* low leaf logging index */
203 int lfloghigh
; /* high leaf logging index */
204 int lowstale
; /* index of prev stale leaf */
205 xfs_dir2_leaf_tail_t
*ltp
; /* leaf tail pointer */
206 xfs_mount_t
*mp
; /* filesystem mount point */
207 int needbytes
; /* leaf block bytes needed */
208 int needlog
; /* need to log data header */
209 int needscan
; /* need to rescan data free */
210 xfs_dir2_data_off_t
*tagp
; /* end of data entry */
211 xfs_trans_t
*tp
; /* transaction pointer */
212 xfs_dir2_db_t use_block
; /* data block number */
214 xfs_dir2_trace_args("leaf_addname", args
);
219 * Read the leaf block.
221 error
= xfs_da_read_buf(tp
, dp
, mp
->m_dirleafblk
, -1, &lbp
,
228 * Look up the entry by hash value and name.
229 * We know it's not there, our caller has already done a lookup.
230 * So the index is of the entry to insert in front of.
231 * But if there are dup hash values the index is of the first of those.
233 index
= xfs_dir2_leaf_search_hash(args
, lbp
);
235 ltp
= XFS_DIR2_LEAF_TAIL_P(mp
, leaf
);
236 bestsp
= XFS_DIR2_LEAF_BESTS_P_ARCH(ltp
, ARCH_CONVERT
);
237 length
= XFS_DIR2_DATA_ENTSIZE(args
->namelen
);
239 * See if there are any entries with the same hash value
240 * and space in their block for the new entry.
241 * This is good because it puts multiple same-hash value entries
242 * in a data block, improving the lookup of those entries.
244 for (use_block
= -1, lep
= &leaf
->ents
[index
];
245 index
< INT_GET(leaf
->hdr
.count
, ARCH_CONVERT
) && INT_GET(lep
->hashval
, ARCH_CONVERT
) == args
->hashval
;
247 if (INT_GET(lep
->address
, ARCH_CONVERT
) == XFS_DIR2_NULL_DATAPTR
)
249 i
= XFS_DIR2_DATAPTR_TO_DB(mp
, INT_GET(lep
->address
, ARCH_CONVERT
));
250 ASSERT(i
< INT_GET(ltp
->bestcount
, ARCH_CONVERT
));
251 ASSERT(INT_GET(bestsp
[i
], ARCH_CONVERT
) != NULLDATAOFF
);
252 if (INT_GET(bestsp
[i
], ARCH_CONVERT
) >= length
) {
258 * Didn't find a block yet, linear search all the data blocks.
260 if (use_block
== -1) {
261 for (i
= 0; i
< INT_GET(ltp
->bestcount
, ARCH_CONVERT
); i
++) {
263 * Remember a block we see that's missing.
265 if (INT_GET(bestsp
[i
], ARCH_CONVERT
) == NULLDATAOFF
&& use_block
== -1)
267 else if (INT_GET(bestsp
[i
], ARCH_CONVERT
) >= length
) {
274 * How many bytes do we need in the leaf block?
277 (!INT_ISZERO(leaf
->hdr
.stale
, ARCH_CONVERT
) ? 0 : (uint
)sizeof(leaf
->ents
[0])) +
278 (use_block
!= -1 ? 0 : (uint
)sizeof(leaf
->bests
[0]));
280 * Now kill use_block if it refers to a missing block, so we
281 * can use it as an indication of allocation needed.
283 if (use_block
!= -1 && INT_GET(bestsp
[use_block
], ARCH_CONVERT
) == NULLDATAOFF
)
286 * If we don't have enough free bytes but we can make enough
287 * by compacting out stale entries, we'll do that.
289 if ((char *)bestsp
- (char *)&leaf
->ents
[INT_GET(leaf
->hdr
.count
, ARCH_CONVERT
)] < needbytes
&&
290 INT_GET(leaf
->hdr
.stale
, ARCH_CONVERT
) > 1) {
294 * Otherwise if we don't have enough free bytes we need to
295 * convert to node form.
297 else if ((char *)bestsp
- (char *)&leaf
->ents
[INT_GET(leaf
->hdr
.count
, ARCH_CONVERT
)] <
300 * Just checking or no space reservation, give up.
302 if (args
->justcheck
|| args
->total
== 0) {
303 xfs_da_brelse(tp
, lbp
);
304 return XFS_ERROR(ENOSPC
);
307 * Convert to node form.
309 error
= xfs_dir2_leaf_to_node(args
, lbp
);
310 xfs_da_buf_done(lbp
);
314 * Then add the new entry.
316 return xfs_dir2_node_addname(args
);
319 * Otherwise it will fit without compaction.
324 * If just checking, then it will fit unless we needed to allocate
327 if (args
->justcheck
) {
328 xfs_da_brelse(tp
, lbp
);
329 return use_block
== -1 ? XFS_ERROR(ENOSPC
) : 0;
332 * If no allocations are allowed, return now before we've
335 if (args
->total
== 0 && use_block
== -1) {
336 xfs_da_brelse(tp
, lbp
);
337 return XFS_ERROR(ENOSPC
);
340 * Need to compact the leaf entries, removing stale ones.
341 * Leave one stale entry behind - the one closest to our
342 * insertion index - and we'll shift that one to our insertion
346 xfs_dir2_leaf_compact_x1(lbp
, &index
, &lowstale
, &highstale
,
347 &lfloglow
, &lfloghigh
);
350 * There are stale entries, so we'll need log-low and log-high
351 * impossibly bad values later.
353 else if (INT_GET(leaf
->hdr
.stale
, ARCH_CONVERT
)) {
354 lfloglow
= INT_GET(leaf
->hdr
.count
, ARCH_CONVERT
);
358 * If there was no data block space found, we need to allocate
361 if (use_block
== -1) {
363 * Add the new data block.
365 if ((error
= xfs_dir2_grow_inode(args
, XFS_DIR2_DATA_SPACE
,
367 xfs_da_brelse(tp
, lbp
);
371 * Initialize the block.
373 if ((error
= xfs_dir2_data_init(args
, use_block
, &dbp
))) {
374 xfs_da_brelse(tp
, lbp
);
378 * If we're adding a new data block on the end we need to
379 * extend the bests table. Copy it up one entry.
381 if (use_block
>= INT_GET(ltp
->bestcount
, ARCH_CONVERT
)) {
383 memmove(&bestsp
[0], &bestsp
[1],
384 INT_GET(ltp
->bestcount
, ARCH_CONVERT
) * sizeof(bestsp
[0]));
385 INT_MOD(ltp
->bestcount
, ARCH_CONVERT
, +1);
386 xfs_dir2_leaf_log_tail(tp
, lbp
);
387 xfs_dir2_leaf_log_bests(tp
, lbp
, 0, INT_GET(ltp
->bestcount
, ARCH_CONVERT
) - 1);
390 * If we're filling in a previously empty block just log it.
393 xfs_dir2_leaf_log_bests(tp
, lbp
, use_block
, use_block
);
395 INT_COPY(bestsp
[use_block
], data
->hdr
.bestfree
[0].length
, ARCH_CONVERT
);
399 * Already had space in some data block.
400 * Just read that one in.
404 xfs_da_read_buf(tp
, dp
, XFS_DIR2_DB_TO_DA(mp
, use_block
),
405 -1, &dbp
, XFS_DATA_FORK
))) {
406 xfs_da_brelse(tp
, lbp
);
412 xfs_dir2_data_check(dp
, dbp
);
414 * Point to the biggest freespace in our data block.
416 dup
= (xfs_dir2_data_unused_t
*)
417 ((char *)data
+ INT_GET(data
->hdr
.bestfree
[0].offset
, ARCH_CONVERT
));
418 ASSERT(INT_GET(dup
->length
, ARCH_CONVERT
) >= length
);
419 needscan
= needlog
= 0;
421 * Mark the initial part of our freespace in use for the new entry.
423 xfs_dir2_data_use_free(tp
, dbp
, dup
,
424 (xfs_dir2_data_aoff_t
)((char *)dup
- (char *)data
), length
,
425 &needlog
, &needscan
);
427 * Initialize our new entry (at last).
429 dep
= (xfs_dir2_data_entry_t
*)dup
;
430 INT_SET(dep
->inumber
, ARCH_CONVERT
, args
->inumber
);
431 dep
->namelen
= args
->namelen
;
432 memcpy(dep
->name
, args
->name
, dep
->namelen
);
433 tagp
= XFS_DIR2_DATA_ENTRY_TAG_P(dep
);
434 INT_SET(*tagp
, ARCH_CONVERT
, (xfs_dir2_data_off_t
)((char *)dep
- (char *)data
));
436 * Need to scan fix up the bestfree table.
439 xfs_dir2_data_freescan(mp
, data
, &needlog
, NULL
);
441 * Need to log the data block's header.
444 xfs_dir2_data_log_header(tp
, dbp
);
445 xfs_dir2_data_log_entry(tp
, dbp
, dep
);
447 * If the bests table needs to be changed, do it.
448 * Log the change unless we've already done that.
450 if (INT_GET(bestsp
[use_block
], ARCH_CONVERT
) != INT_GET(data
->hdr
.bestfree
[0].length
, ARCH_CONVERT
)) {
451 INT_COPY(bestsp
[use_block
], data
->hdr
.bestfree
[0].length
, ARCH_CONVERT
);
453 xfs_dir2_leaf_log_bests(tp
, lbp
, use_block
, use_block
);
456 * Now we need to make room to insert the leaf entry.
457 * If there are no stale entries, we just insert a hole at index.
459 if (INT_ISZERO(leaf
->hdr
.stale
, ARCH_CONVERT
)) {
461 * lep is still good as the index leaf entry.
463 if (index
< INT_GET(leaf
->hdr
.count
, ARCH_CONVERT
))
464 memmove(lep
+ 1, lep
,
465 (INT_GET(leaf
->hdr
.count
, ARCH_CONVERT
) - index
) * sizeof(*lep
));
467 * Record low and high logging indices for the leaf.
470 lfloghigh
= INT_GET(leaf
->hdr
.count
, ARCH_CONVERT
);
471 INT_MOD(leaf
->hdr
.count
, ARCH_CONVERT
, +1);
474 * There are stale entries.
475 * We will use one of them for the new entry.
476 * It's probably not at the right location, so we'll have to
477 * shift some up or down first.
481 * If we didn't compact before, we need to find the nearest
482 * stale entries before and after our insertion point.
486 * Find the first stale entry before the insertion
489 for (lowstale
= index
- 1;
491 INT_GET(leaf
->ents
[lowstale
].address
, ARCH_CONVERT
) !=
492 XFS_DIR2_NULL_DATAPTR
;
496 * Find the next stale entry at or after the insertion
497 * point, if any. Stop if we go so far that the
498 * lowstale entry would be better.
500 for (highstale
= index
;
501 highstale
< INT_GET(leaf
->hdr
.count
, ARCH_CONVERT
) &&
502 INT_GET(leaf
->ents
[highstale
].address
, ARCH_CONVERT
) !=
503 XFS_DIR2_NULL_DATAPTR
&&
505 index
- lowstale
- 1 >= highstale
- index
);
510 * If the low one is better, use it.
513 (highstale
== INT_GET(leaf
->hdr
.count
, ARCH_CONVERT
) ||
514 index
- lowstale
- 1 < highstale
- index
)) {
515 ASSERT(index
- lowstale
- 1 >= 0);
516 ASSERT(INT_GET(leaf
->ents
[lowstale
].address
, ARCH_CONVERT
) ==
517 XFS_DIR2_NULL_DATAPTR
);
519 * Copy entries up to cover the stale entry
520 * and make room for the new entry.
522 if (index
- lowstale
- 1 > 0)
523 memmove(&leaf
->ents
[lowstale
],
524 &leaf
->ents
[lowstale
+ 1],
525 (index
- lowstale
- 1) * sizeof(*lep
));
526 lep
= &leaf
->ents
[index
- 1];
527 lfloglow
= MIN(lowstale
, lfloglow
);
528 lfloghigh
= MAX(index
- 1, lfloghigh
);
531 * The high one is better, so use that one.
534 ASSERT(highstale
- index
>= 0);
535 ASSERT(INT_GET(leaf
->ents
[highstale
].address
, ARCH_CONVERT
) ==
536 XFS_DIR2_NULL_DATAPTR
);
538 * Copy entries down to copver the stale entry
539 * and make room for the new entry.
541 if (highstale
- index
> 0)
542 memmove(&leaf
->ents
[index
+ 1],
544 (highstale
- index
) * sizeof(*lep
));
545 lep
= &leaf
->ents
[index
];
546 lfloglow
= MIN(index
, lfloglow
);
547 lfloghigh
= MAX(highstale
, lfloghigh
);
549 INT_MOD(leaf
->hdr
.stale
, ARCH_CONVERT
, -1);
552 * Fill in the new leaf entry.
554 INT_SET(lep
->hashval
, ARCH_CONVERT
, args
->hashval
);
555 INT_SET(lep
->address
, ARCH_CONVERT
, XFS_DIR2_DB_OFF_TO_DATAPTR(mp
, use_block
, INT_GET(*tagp
, ARCH_CONVERT
)));
557 * Log the leaf fields and give up the buffers.
559 xfs_dir2_leaf_log_header(tp
, lbp
);
560 xfs_dir2_leaf_log_ents(tp
, lbp
, lfloglow
, lfloghigh
);
561 xfs_dir2_leaf_check(dp
, lbp
);
562 xfs_da_buf_done(lbp
);
563 xfs_dir2_data_check(dp
, dbp
);
564 xfs_da_buf_done(dbp
);
570 * Check the internal consistency of a leaf1 block.
571 * Pop an assert if something is wrong.
575 xfs_inode_t
*dp
, /* incore directory inode */
576 xfs_dabuf_t
*bp
) /* leaf's buffer */
578 int i
; /* leaf index */
579 xfs_dir2_leaf_t
*leaf
; /* leaf structure */
580 xfs_dir2_leaf_tail_t
*ltp
; /* leaf tail pointer */
581 xfs_mount_t
*mp
; /* filesystem mount point */
582 int stale
; /* count of stale leaves */
586 ASSERT(INT_GET(leaf
->hdr
.info
.magic
, ARCH_CONVERT
) == XFS_DIR2_LEAF1_MAGIC
);
588 * This value is not restrictive enough.
589 * Should factor in the size of the bests table as well.
590 * We can deduce a value for that from di_size.
592 ASSERT(INT_GET(leaf
->hdr
.count
, ARCH_CONVERT
) <= XFS_DIR2_MAX_LEAF_ENTS(mp
));
593 ltp
= XFS_DIR2_LEAF_TAIL_P(mp
, leaf
);
595 * Leaves and bests don't overlap.
597 ASSERT((char *)&leaf
->ents
[INT_GET(leaf
->hdr
.count
, ARCH_CONVERT
)] <=
598 (char *)XFS_DIR2_LEAF_BESTS_P_ARCH(ltp
, ARCH_CONVERT
));
600 * Check hash value order, count stale entries.
602 for (i
= stale
= 0; i
< INT_GET(leaf
->hdr
.count
, ARCH_CONVERT
); i
++) {
603 if (i
+ 1 < INT_GET(leaf
->hdr
.count
, ARCH_CONVERT
))
604 ASSERT(INT_GET(leaf
->ents
[i
].hashval
, ARCH_CONVERT
) <=
605 INT_GET(leaf
->ents
[i
+ 1].hashval
, ARCH_CONVERT
));
606 if (INT_GET(leaf
->ents
[i
].address
, ARCH_CONVERT
) == XFS_DIR2_NULL_DATAPTR
)
609 ASSERT(INT_GET(leaf
->hdr
.stale
, ARCH_CONVERT
) == stale
);
614 * Compact out any stale entries in the leaf.
615 * Log the header and changed leaf entries, if any.
618 xfs_dir2_leaf_compact(
619 xfs_da_args_t
*args
, /* operation arguments */
620 xfs_dabuf_t
*bp
) /* leaf buffer */
622 int from
; /* source leaf index */
623 xfs_dir2_leaf_t
*leaf
; /* leaf structure */
624 int loglow
; /* first leaf entry to log */
625 int to
; /* target leaf index */
628 if (INT_ISZERO(leaf
->hdr
.stale
, ARCH_CONVERT
)) {
632 * Compress out the stale entries in place.
634 for (from
= to
= 0, loglow
= -1; from
< INT_GET(leaf
->hdr
.count
, ARCH_CONVERT
); from
++) {
635 if (INT_GET(leaf
->ents
[from
].address
, ARCH_CONVERT
) == XFS_DIR2_NULL_DATAPTR
)
638 * Only actually copy the entries that are different.
643 leaf
->ents
[to
] = leaf
->ents
[from
];
648 * Update and log the header, log the leaf entries.
650 ASSERT(INT_GET(leaf
->hdr
.stale
, ARCH_CONVERT
) == from
- to
);
651 INT_MOD(leaf
->hdr
.count
, ARCH_CONVERT
, -(INT_GET(leaf
->hdr
.stale
, ARCH_CONVERT
)));
652 INT_ZERO(leaf
->hdr
.stale
, ARCH_CONVERT
);
653 xfs_dir2_leaf_log_header(args
->trans
, bp
);
655 xfs_dir2_leaf_log_ents(args
->trans
, bp
, loglow
, to
- 1);
659 * Compact the leaf entries, removing stale ones.
660 * Leave one stale entry behind - the one closest to our
661 * insertion index - and the caller will shift that one to our insertion
663 * Return new insertion index, where the remaining stale entry is,
664 * and leaf logging indices.
667 xfs_dir2_leaf_compact_x1(
668 xfs_dabuf_t
*bp
, /* leaf buffer */
669 int *indexp
, /* insertion index */
670 int *lowstalep
, /* out: stale entry before us */
671 int *highstalep
, /* out: stale entry after us */
672 int *lowlogp
, /* out: low log index */
673 int *highlogp
) /* out: high log index */
675 int from
; /* source copy index */
676 int highstale
; /* stale entry at/after index */
677 int index
; /* insertion index */
678 int keepstale
; /* source index of kept stale */
679 xfs_dir2_leaf_t
*leaf
; /* leaf structure */
680 int lowstale
; /* stale entry before index */
681 int newindex
=0; /* new insertion index */
682 int to
; /* destination copy index */
685 ASSERT(INT_GET(leaf
->hdr
.stale
, ARCH_CONVERT
) > 1);
688 * Find the first stale entry before our index, if any.
690 for (lowstale
= index
- 1;
692 INT_GET(leaf
->ents
[lowstale
].address
, ARCH_CONVERT
) != XFS_DIR2_NULL_DATAPTR
;
696 * Find the first stale entry at or after our index, if any.
697 * Stop if the answer would be worse than lowstale.
699 for (highstale
= index
;
700 highstale
< INT_GET(leaf
->hdr
.count
, ARCH_CONVERT
) &&
701 INT_GET(leaf
->ents
[highstale
].address
, ARCH_CONVERT
) != XFS_DIR2_NULL_DATAPTR
&&
702 (lowstale
< 0 || index
- lowstale
> highstale
- index
);
706 * Pick the better of lowstale and highstale.
709 (highstale
== INT_GET(leaf
->hdr
.count
, ARCH_CONVERT
) ||
710 index
- lowstale
<= highstale
- index
))
711 keepstale
= lowstale
;
713 keepstale
= highstale
;
715 * Copy the entries in place, removing all the stale entries
718 for (from
= to
= 0; from
< INT_GET(leaf
->hdr
.count
, ARCH_CONVERT
); from
++) {
720 * Notice the new value of index.
724 if (from
!= keepstale
&&
725 INT_GET(leaf
->ents
[from
].address
, ARCH_CONVERT
) == XFS_DIR2_NULL_DATAPTR
) {
731 * Record the new keepstale value for the insertion.
733 if (from
== keepstale
)
734 lowstale
= highstale
= to
;
736 * Copy only the entries that have moved.
739 leaf
->ents
[to
] = leaf
->ents
[from
];
744 * If the insertion point was past the last entry,
745 * set the new insertion point accordingly.
751 * Adjust the leaf header values.
753 INT_MOD(leaf
->hdr
.count
, ARCH_CONVERT
, -(from
- to
));
754 INT_SET(leaf
->hdr
.stale
, ARCH_CONVERT
, 1);
756 * Remember the low/high stale value only in the "right"
759 if (lowstale
>= newindex
)
762 highstale
= INT_GET(leaf
->hdr
.count
, ARCH_CONVERT
);
763 *highlogp
= INT_GET(leaf
->hdr
.count
, ARCH_CONVERT
) - 1;
764 *lowstalep
= lowstale
;
765 *highstalep
= highstale
;
769 * Getdents (readdir) for leaf and node directories.
770 * This reads the data blocks only, so is the same for both forms.
773 xfs_dir2_leaf_getdents(
774 xfs_trans_t
*tp
, /* transaction pointer */
775 xfs_inode_t
*dp
, /* incore directory inode */
776 uio_t
*uio
, /* I/O control & vectors */
777 int *eofp
, /* out: reached end of dir */
778 xfs_dirent_t
*dbp
, /* caller's buffer */
779 xfs_dir2_put_t put
) /* ABI formatting routine */
781 xfs_dabuf_t
*bp
; /* data block buffer */
782 int byteoff
; /* offset in current block */
783 xfs_dir2_db_t curdb
; /* db for current block */
784 xfs_dir2_off_t curoff
; /* current overall offset */
785 xfs_dir2_data_t
*data
; /* data block structure */
786 xfs_dir2_data_entry_t
*dep
; /* data entry */
787 xfs_dir2_data_unused_t
*dup
; /* unused entry */
788 int eof
; /* reached end of directory */
789 int error
=0; /* error return value */
790 int i
; /* temporary loop index */
791 int j
; /* temporary loop index */
792 int length
; /* temporary length value */
793 xfs_bmbt_irec_t
*map
; /* map vector for blocks */
794 xfs_extlen_t map_blocks
; /* number of fsbs in map */
795 xfs_dablk_t map_off
; /* last mapped file offset */
796 int map_size
; /* total entries in *map */
797 int map_valid
; /* valid entries in *map */
798 xfs_mount_t
*mp
; /* filesystem mount point */
799 xfs_dir2_off_t newoff
; /* new curoff after new blk */
800 int nmap
; /* mappings to ask xfs_bmapi */
801 xfs_dir2_put_args_t p
; /* formatting arg bundle */
802 char *ptr
=NULL
; /* pointer to current data */
803 int ra_current
; /* number of read-ahead blks */
804 int ra_index
; /* *map index for read-ahead */
805 int ra_offset
; /* map entry offset for ra */
806 int ra_want
; /* readahead count wanted */
809 * If the offset is at or past the largest allowed value,
810 * give up right away, return eof.
812 if (uio
->uio_offset
>= XFS_DIR2_MAX_DATAPTR
) {
818 * Setup formatting arguments.
824 * Set up to bmap a number of blocks based on the caller's
825 * buffer size, the directory block size, and the filesystem
829 howmany(uio
->uio_resid
+ mp
->m_dirblksize
,
830 mp
->m_sb
.sb_blocksize
);
831 map
= kmem_alloc(map_size
* sizeof(*map
), KM_SLEEP
);
832 map_valid
= ra_index
= ra_offset
= ra_current
= map_blocks
= 0;
836 * Inside the loop we keep the main offset value as a byte offset
837 * in the directory file.
839 curoff
= XFS_DIR2_DATAPTR_TO_BYTE(mp
, uio
->uio_offset
);
841 * Force this conversion through db so we truncate the offset
842 * down to get the start of the data block.
844 map_off
= XFS_DIR2_DB_TO_DA(mp
, XFS_DIR2_BYTE_TO_DB(mp
, curoff
));
846 * Loop over directory entries until we reach the end offset.
847 * Get more blocks and readahead as necessary.
849 while (curoff
< XFS_DIR2_LEAF_OFFSET
) {
851 * If we have no buffer, or we're off the end of the
852 * current buffer, need to get another one.
854 if (!bp
|| ptr
>= (char *)bp
->data
+ mp
->m_dirblksize
) {
856 * If we have a buffer, we need to release it and
857 * take it out of the mapping.
860 xfs_da_brelse(tp
, bp
);
862 map_blocks
-= mp
->m_dirblkfsbs
;
864 * Loop to get rid of the extents for the
867 for (i
= mp
->m_dirblkfsbs
; i
> 0; ) {
868 j
= MIN((int)map
->br_blockcount
, i
);
869 map
->br_blockcount
-= j
;
870 map
->br_startblock
+= j
;
871 map
->br_startoff
+= j
;
873 * If mapping is done, pitch it from
876 if (!map
->br_blockcount
&& --map_valid
)
877 memmove(&map
[0], &map
[1],
884 * Recalculate the readahead blocks wanted.
886 ra_want
= howmany(uio
->uio_resid
+ mp
->m_dirblksize
,
887 mp
->m_sb
.sb_blocksize
) - 1;
889 * If we don't have as many as we want, and we haven't
890 * run out of data blocks, get some more mappings.
892 if (1 + ra_want
> map_blocks
&&
894 XFS_DIR2_BYTE_TO_DA(mp
, XFS_DIR2_LEAF_OFFSET
)) {
896 * Get more bmaps, fill in after the ones
897 * we already have in the table.
899 nmap
= map_size
- map_valid
;
900 error
= xfs_bmapi(tp
, dp
,
902 XFS_DIR2_BYTE_TO_DA(mp
,
903 XFS_DIR2_LEAF_OFFSET
) - map_off
,
904 XFS_BMAPI_METADATA
, NULL
, 0,
905 &map
[map_valid
], &nmap
, NULL
);
907 * Don't know if we should ignore this or
908 * try to return an error.
909 * The trouble with returning errors
910 * is that readdir will just stop without
911 * actually passing the error through.
916 * If we got all the mappings we asked for,
917 * set the final map offset based on the
918 * last bmap value received.
919 * Otherwise, we've reached the end.
921 if (nmap
== map_size
- map_valid
)
923 map
[map_valid
+ nmap
- 1].br_startoff
+
924 map
[map_valid
+ nmap
- 1].br_blockcount
;
927 XFS_DIR2_BYTE_TO_DA(mp
,
928 XFS_DIR2_LEAF_OFFSET
);
930 * Look for holes in the mapping, and
931 * eliminate them. Count up the valid blocks.
933 for (i
= map_valid
; i
< map_valid
+ nmap
; ) {
934 if (map
[i
].br_startblock
==
937 length
= map_valid
+ nmap
- i
;
945 map
[i
].br_blockcount
;
952 * No valid mappings, so no more data blocks.
955 curoff
= XFS_DIR2_DA_TO_BYTE(mp
, map_off
);
959 * Read the directory block starting at the first
962 curdb
= XFS_DIR2_DA_TO_DB(mp
, map
->br_startoff
);
963 error
= xfs_da_read_buf(tp
, dp
, map
->br_startoff
,
964 map
->br_blockcount
>= mp
->m_dirblkfsbs
?
965 XFS_FSB_TO_DADDR(mp
, map
->br_startblock
) :
969 * Should just skip over the data block instead
975 * Adjust the current amount of read-ahead: we just
976 * read a block that was previously ra.
979 ra_current
-= mp
->m_dirblkfsbs
;
981 * Do we need more readahead?
983 for (ra_index
= ra_offset
= i
= 0;
984 ra_want
> ra_current
&& i
< map_blocks
;
985 i
+= mp
->m_dirblkfsbs
) {
986 ASSERT(ra_index
< map_valid
);
988 * Read-ahead a contiguous directory block.
990 if (i
> ra_current
&&
991 map
[ra_index
].br_blockcount
>=
993 xfs_baread(mp
->m_ddev_targp
,
995 map
[ra_index
].br_startblock
+
997 (int)BTOBB(mp
->m_dirblksize
));
1001 * Read-ahead a non-contiguous directory block.
1002 * This doesn't use our mapping, but this
1003 * is a very rare case.
1005 else if (i
> ra_current
) {
1006 (void)xfs_da_reada_buf(tp
, dp
,
1007 map
[ra_index
].br_startoff
+
1008 ra_offset
, XFS_DATA_FORK
);
1012 * Advance offset through the mapping table.
1014 for (j
= 0; j
< mp
->m_dirblkfsbs
; j
++) {
1016 * The rest of this extent but not
1017 * more than a dir block.
1019 length
= MIN(mp
->m_dirblkfsbs
,
1020 (int)(map
[ra_index
].br_blockcount
-
1023 ra_offset
+= length
;
1025 * Advance to the next mapping if
1026 * this one is used up.
1029 map
[ra_index
].br_blockcount
) {
1036 * Having done a read, we need to set a new offset.
1038 newoff
= XFS_DIR2_DB_OFF_TO_BYTE(mp
, curdb
, 0);
1040 * Start of the current block.
1042 if (curoff
< newoff
)
1045 * Make sure we're in the right block.
1047 else if (curoff
> newoff
)
1048 ASSERT(XFS_DIR2_BYTE_TO_DB(mp
, curoff
) ==
1051 xfs_dir2_data_check(dp
, bp
);
1053 * Find our position in the block.
1055 ptr
= (char *)&data
->u
;
1056 byteoff
= XFS_DIR2_BYTE_TO_OFF(mp
, curoff
);
1058 * Skip past the header.
1061 curoff
+= (uint
)sizeof(data
->hdr
);
1063 * Skip past entries until we reach our offset.
1066 while ((char *)ptr
- (char *)data
< byteoff
) {
1067 dup
= (xfs_dir2_data_unused_t
*)ptr
;
1069 if (INT_GET(dup
->freetag
, ARCH_CONVERT
)
1070 == XFS_DIR2_DATA_FREE_TAG
) {
1072 length
= INT_GET(dup
->length
,
1077 dep
= (xfs_dir2_data_entry_t
*)ptr
;
1079 XFS_DIR2_DATA_ENTSIZE(dep
->namelen
);
1083 * Now set our real offset.
1086 XFS_DIR2_DB_OFF_TO_BYTE(mp
,
1087 XFS_DIR2_BYTE_TO_DB(mp
, curoff
),
1088 (char *)ptr
- (char *)data
);
1089 if (ptr
>= (char *)data
+ mp
->m_dirblksize
) {
1095 * We have a pointer to an entry.
1098 dup
= (xfs_dir2_data_unused_t
*)ptr
;
1100 * No, it's unused, skip over it.
1102 if (INT_GET(dup
->freetag
, ARCH_CONVERT
)
1103 == XFS_DIR2_DATA_FREE_TAG
) {
1104 length
= INT_GET(dup
->length
, ARCH_CONVERT
);
1111 * Copy the entry into the putargs, and try formatting it.
1113 dep
= (xfs_dir2_data_entry_t
*)ptr
;
1115 p
.namelen
= dep
->namelen
;
1117 length
= XFS_DIR2_DATA_ENTSIZE(p
.namelen
);
1119 p
.cook
= XFS_DIR2_BYTE_TO_DATAPTR(mp
, curoff
+ length
);
1121 p
.ino
= INT_GET(dep
->inumber
, ARCH_CONVERT
);
1123 p
.ino
+= mp
->m_inoadd
;
1125 p
.name
= (char *)dep
->name
;
1130 * Won't fit. Return to caller.
1137 * Advance to next entry in the block.
1144 * All done. Set output offset value to current offset.
1147 if (curoff
> XFS_DIR2_DATAPTR_TO_BYTE(mp
, XFS_DIR2_MAX_DATAPTR
))
1148 uio
->uio_offset
= XFS_DIR2_MAX_DATAPTR
;
1150 uio
->uio_offset
= XFS_DIR2_BYTE_TO_DATAPTR(mp
, curoff
);
1151 kmem_free(map
, map_size
* sizeof(*map
));
1153 xfs_da_brelse(tp
, bp
);
1158 * Initialize a new leaf block, leaf1 or leafn magic accepted.
1162 xfs_da_args_t
*args
, /* operation arguments */
1163 xfs_dir2_db_t bno
, /* directory block number */
1164 xfs_dabuf_t
**bpp
, /* out: leaf buffer */
1165 int magic
) /* magic number for block */
1167 xfs_dabuf_t
*bp
; /* leaf buffer */
1168 xfs_inode_t
*dp
; /* incore directory inode */
1169 int error
; /* error return code */
1170 xfs_dir2_leaf_t
*leaf
; /* leaf structure */
1171 xfs_dir2_leaf_tail_t
*ltp
; /* leaf tail structure */
1172 xfs_mount_t
*mp
; /* filesystem mount point */
1173 xfs_trans_t
*tp
; /* transaction pointer */
1179 ASSERT(bno
>= XFS_DIR2_LEAF_FIRSTDB(mp
) &&
1180 bno
< XFS_DIR2_FREE_FIRSTDB(mp
));
1182 * Get the buffer for the block.
1184 error
= xfs_da_get_buf(tp
, dp
, XFS_DIR2_DB_TO_DA(mp
, bno
), -1, &bp
,
1192 * Initialize the header.
1194 INT_SET(leaf
->hdr
.info
.magic
, ARCH_CONVERT
, magic
);
1195 INT_ZERO(leaf
->hdr
.info
.forw
, ARCH_CONVERT
);
1196 INT_ZERO(leaf
->hdr
.info
.back
, ARCH_CONVERT
);
1197 INT_ZERO(leaf
->hdr
.count
, ARCH_CONVERT
);
1198 INT_ZERO(leaf
->hdr
.stale
, ARCH_CONVERT
);
1199 xfs_dir2_leaf_log_header(tp
, bp
);
1201 * If it's a leaf-format directory initialize the tail.
1202 * In this case our caller has the real bests table to copy into
1205 if (magic
== XFS_DIR2_LEAF1_MAGIC
) {
1206 ltp
= XFS_DIR2_LEAF_TAIL_P(mp
, leaf
);
1207 INT_ZERO(ltp
->bestcount
, ARCH_CONVERT
);
1208 xfs_dir2_leaf_log_tail(tp
, bp
);
1215 * Log the bests entries indicated from a leaf1 block.
1218 xfs_dir2_leaf_log_bests(
1219 xfs_trans_t
*tp
, /* transaction pointer */
1220 xfs_dabuf_t
*bp
, /* leaf buffer */
1221 int first
, /* first entry to log */
1222 int last
) /* last entry to log */
1224 xfs_dir2_data_off_t
*firstb
; /* pointer to first entry */
1225 xfs_dir2_data_off_t
*lastb
; /* pointer to last entry */
1226 xfs_dir2_leaf_t
*leaf
; /* leaf structure */
1227 xfs_dir2_leaf_tail_t
*ltp
; /* leaf tail structure */
1230 ASSERT(INT_GET(leaf
->hdr
.info
.magic
, ARCH_CONVERT
) == XFS_DIR2_LEAF1_MAGIC
);
1231 ltp
= XFS_DIR2_LEAF_TAIL_P(tp
->t_mountp
, leaf
);
1232 firstb
= XFS_DIR2_LEAF_BESTS_P_ARCH(ltp
, ARCH_CONVERT
) + first
;
1233 lastb
= XFS_DIR2_LEAF_BESTS_P_ARCH(ltp
, ARCH_CONVERT
) + last
;
1234 xfs_da_log_buf(tp
, bp
, (uint
)((char *)firstb
- (char *)leaf
),
1235 (uint
)((char *)lastb
- (char *)leaf
+ sizeof(*lastb
) - 1));
1239 * Log the leaf entries indicated from a leaf1 or leafn block.
1242 xfs_dir2_leaf_log_ents(
1243 xfs_trans_t
*tp
, /* transaction pointer */
1244 xfs_dabuf_t
*bp
, /* leaf buffer */
1245 int first
, /* first entry to log */
1246 int last
) /* last entry to log */
1248 xfs_dir2_leaf_entry_t
*firstlep
; /* pointer to first entry */
1249 xfs_dir2_leaf_entry_t
*lastlep
; /* pointer to last entry */
1250 xfs_dir2_leaf_t
*leaf
; /* leaf structure */
1253 ASSERT(INT_GET(leaf
->hdr
.info
.magic
, ARCH_CONVERT
) == XFS_DIR2_LEAF1_MAGIC
||
1254 INT_GET(leaf
->hdr
.info
.magic
, ARCH_CONVERT
) == XFS_DIR2_LEAFN_MAGIC
);
1255 firstlep
= &leaf
->ents
[first
];
1256 lastlep
= &leaf
->ents
[last
];
1257 xfs_da_log_buf(tp
, bp
, (uint
)((char *)firstlep
- (char *)leaf
),
1258 (uint
)((char *)lastlep
- (char *)leaf
+ sizeof(*lastlep
) - 1));
1262 * Log the header of the leaf1 or leafn block.
1265 xfs_dir2_leaf_log_header(
1266 xfs_trans_t
*tp
, /* transaction pointer */
1267 xfs_dabuf_t
*bp
) /* leaf buffer */
1269 xfs_dir2_leaf_t
*leaf
; /* leaf structure */
1272 ASSERT(INT_GET(leaf
->hdr
.info
.magic
, ARCH_CONVERT
) == XFS_DIR2_LEAF1_MAGIC
||
1273 INT_GET(leaf
->hdr
.info
.magic
, ARCH_CONVERT
) == XFS_DIR2_LEAFN_MAGIC
);
1274 xfs_da_log_buf(tp
, bp
, (uint
)((char *)&leaf
->hdr
- (char *)leaf
),
1275 (uint
)(sizeof(leaf
->hdr
) - 1));
1279 * Log the tail of the leaf1 block.
1282 xfs_dir2_leaf_log_tail(
1283 xfs_trans_t
*tp
, /* transaction pointer */
1284 xfs_dabuf_t
*bp
) /* leaf buffer */
1286 xfs_dir2_leaf_t
*leaf
; /* leaf structure */
1287 xfs_dir2_leaf_tail_t
*ltp
; /* leaf tail structure */
1288 xfs_mount_t
*mp
; /* filesystem mount point */
1292 ASSERT(INT_GET(leaf
->hdr
.info
.magic
, ARCH_CONVERT
) == XFS_DIR2_LEAF1_MAGIC
);
1293 ltp
= XFS_DIR2_LEAF_TAIL_P(mp
, leaf
);
1294 xfs_da_log_buf(tp
, bp
, (uint
)((char *)ltp
- (char *)leaf
),
1295 (uint
)(mp
->m_dirblksize
- 1));
1299 * Look up the entry referred to by args in the leaf format directory.
1300 * Most of the work is done by the xfs_dir2_leaf_lookup_int routine which
1301 * is also used by the node-format code.
1304 xfs_dir2_leaf_lookup(
1305 xfs_da_args_t
*args
) /* operation arguments */
1307 xfs_dabuf_t
*dbp
; /* data block buffer */
1308 xfs_dir2_data_entry_t
*dep
; /* data block entry */
1309 xfs_inode_t
*dp
; /* incore directory inode */
1310 int error
; /* error return code */
1311 int index
; /* found entry index */
1312 xfs_dabuf_t
*lbp
; /* leaf buffer */
1313 xfs_dir2_leaf_t
*leaf
; /* leaf structure */
1314 xfs_dir2_leaf_entry_t
*lep
; /* leaf entry */
1315 xfs_trans_t
*tp
; /* transaction pointer */
1317 xfs_dir2_trace_args("leaf_lookup", args
);
1319 * Look up name in the leaf block, returning both buffers and index.
1321 if ((error
= xfs_dir2_leaf_lookup_int(args
, &lbp
, &index
, &dbp
))) {
1326 xfs_dir2_leaf_check(dp
, lbp
);
1329 * Get to the leaf entry and contained data entry address.
1331 lep
= &leaf
->ents
[index
];
1333 * Point to the data entry.
1335 dep
= (xfs_dir2_data_entry_t
*)
1336 ((char *)dbp
->data
+
1337 XFS_DIR2_DATAPTR_TO_OFF(dp
->i_mount
, INT_GET(lep
->address
, ARCH_CONVERT
)));
1339 * Return the found inode number.
1341 args
->inumber
= INT_GET(dep
->inumber
, ARCH_CONVERT
);
1342 xfs_da_brelse(tp
, dbp
);
1343 xfs_da_brelse(tp
, lbp
);
1344 return XFS_ERROR(EEXIST
);
1348 * Look up name/hash in the leaf block.
1349 * Fill in indexp with the found index, and dbpp with the data buffer.
1350 * If not found dbpp will be NULL, and ENOENT comes back.
1351 * lbpp will always be filled in with the leaf buffer unless there's an error.
1353 static int /* error */
1354 xfs_dir2_leaf_lookup_int(
1355 xfs_da_args_t
*args
, /* operation arguments */
1356 xfs_dabuf_t
**lbpp
, /* out: leaf buffer */
1357 int *indexp
, /* out: index in leaf block */
1358 xfs_dabuf_t
**dbpp
) /* out: data buffer */
1360 xfs_dir2_db_t curdb
; /* current data block number */
1361 xfs_dabuf_t
*dbp
; /* data buffer */
1362 xfs_dir2_data_entry_t
*dep
; /* data entry */
1363 xfs_inode_t
*dp
; /* incore directory inode */
1364 int error
; /* error return code */
1365 int index
; /* index in leaf block */
1366 xfs_dabuf_t
*lbp
; /* leaf buffer */
1367 xfs_dir2_leaf_entry_t
*lep
; /* leaf entry */
1368 xfs_dir2_leaf_t
*leaf
; /* leaf structure */
1369 xfs_mount_t
*mp
; /* filesystem mount point */
1370 xfs_dir2_db_t newdb
; /* new data block number */
1371 xfs_trans_t
*tp
; /* transaction pointer */
1377 * Read the leaf block into the buffer.
1380 xfs_da_read_buf(tp
, dp
, mp
->m_dirleafblk
, -1, &lbp
,
1386 xfs_dir2_leaf_check(dp
, lbp
);
1388 * Look for the first leaf entry with our hash value.
1390 index
= xfs_dir2_leaf_search_hash(args
, lbp
);
1392 * Loop over all the entries with the right hash value
1393 * looking to match the name.
1395 for (lep
= &leaf
->ents
[index
], dbp
= NULL
, curdb
= -1;
1396 index
< INT_GET(leaf
->hdr
.count
, ARCH_CONVERT
) && INT_GET(lep
->hashval
, ARCH_CONVERT
) == args
->hashval
;
1399 * Skip over stale leaf entries.
1401 if (INT_GET(lep
->address
, ARCH_CONVERT
) == XFS_DIR2_NULL_DATAPTR
)
1404 * Get the new data block number.
1406 newdb
= XFS_DIR2_DATAPTR_TO_DB(mp
, INT_GET(lep
->address
, ARCH_CONVERT
));
1408 * If it's not the same as the old data block number,
1409 * need to pitch the old one and read the new one.
1411 if (newdb
!= curdb
) {
1413 xfs_da_brelse(tp
, dbp
);
1415 xfs_da_read_buf(tp
, dp
,
1416 XFS_DIR2_DB_TO_DA(mp
, newdb
), -1, &dbp
,
1418 xfs_da_brelse(tp
, lbp
);
1421 xfs_dir2_data_check(dp
, dbp
);
1425 * Point to the data entry.
1427 dep
= (xfs_dir2_data_entry_t
*)
1428 ((char *)dbp
->data
+
1429 XFS_DIR2_DATAPTR_TO_OFF(mp
, INT_GET(lep
->address
, ARCH_CONVERT
)));
1431 * If it matches then return it.
1433 if (dep
->namelen
== args
->namelen
&&
1434 dep
->name
[0] == args
->name
[0] &&
1435 memcmp(dep
->name
, args
->name
, args
->namelen
) == 0) {
1442 * No match found, return ENOENT.
1444 ASSERT(args
->oknoent
);
1446 xfs_da_brelse(tp
, dbp
);
1447 xfs_da_brelse(tp
, lbp
);
1448 return XFS_ERROR(ENOENT
);
1452 * Remove an entry from a leaf format directory.
1455 xfs_dir2_leaf_removename(
1456 xfs_da_args_t
*args
) /* operation arguments */
1458 xfs_dir2_data_off_t
*bestsp
; /* leaf block best freespace */
1459 xfs_dir2_data_t
*data
; /* data block structure */
1460 xfs_dir2_db_t db
; /* data block number */
1461 xfs_dabuf_t
*dbp
; /* data block buffer */
1462 xfs_dir2_data_entry_t
*dep
; /* data entry structure */
1463 xfs_inode_t
*dp
; /* incore directory inode */
1464 int error
; /* error return code */
1465 xfs_dir2_db_t i
; /* temporary data block # */
1466 int index
; /* index into leaf entries */
1467 xfs_dabuf_t
*lbp
; /* leaf buffer */
1468 xfs_dir2_leaf_t
*leaf
; /* leaf structure */
1469 xfs_dir2_leaf_entry_t
*lep
; /* leaf entry */
1470 xfs_dir2_leaf_tail_t
*ltp
; /* leaf tail structure */
1471 xfs_mount_t
*mp
; /* filesystem mount point */
1472 int needlog
; /* need to log data header */
1473 int needscan
; /* need to rescan data frees */
1474 xfs_dir2_data_off_t oldbest
; /* old value of best free */
1475 xfs_trans_t
*tp
; /* transaction pointer */
1477 xfs_dir2_trace_args("leaf_removename", args
);
1479 * Lookup the leaf entry, get the leaf and data blocks read in.
1481 if ((error
= xfs_dir2_leaf_lookup_int(args
, &lbp
, &index
, &dbp
))) {
1489 xfs_dir2_data_check(dp
, dbp
);
1491 * Point to the leaf entry, use that to point to the data entry.
1493 lep
= &leaf
->ents
[index
];
1494 db
= XFS_DIR2_DATAPTR_TO_DB(mp
, INT_GET(lep
->address
, ARCH_CONVERT
));
1495 dep
= (xfs_dir2_data_entry_t
*)
1496 ((char *)data
+ XFS_DIR2_DATAPTR_TO_OFF(mp
, INT_GET(lep
->address
, ARCH_CONVERT
)));
1497 needscan
= needlog
= 0;
1498 oldbest
= INT_GET(data
->hdr
.bestfree
[0].length
, ARCH_CONVERT
);
1499 ltp
= XFS_DIR2_LEAF_TAIL_P(mp
, leaf
);
1500 bestsp
= XFS_DIR2_LEAF_BESTS_P_ARCH(ltp
, ARCH_CONVERT
);
1501 ASSERT(INT_GET(bestsp
[db
], ARCH_CONVERT
) == oldbest
);
1503 * Mark the former data entry unused.
1505 xfs_dir2_data_make_free(tp
, dbp
,
1506 (xfs_dir2_data_aoff_t
)((char *)dep
- (char *)data
),
1507 XFS_DIR2_DATA_ENTSIZE(dep
->namelen
), &needlog
, &needscan
);
1509 * We just mark the leaf entry stale by putting a null in it.
1511 INT_MOD(leaf
->hdr
.stale
, ARCH_CONVERT
, +1);
1512 xfs_dir2_leaf_log_header(tp
, lbp
);
1513 INT_SET(lep
->address
, ARCH_CONVERT
, XFS_DIR2_NULL_DATAPTR
);
1514 xfs_dir2_leaf_log_ents(tp
, lbp
, index
, index
);
1516 * Scan the freespace in the data block again if necessary,
1517 * log the data block header if necessary.
1520 xfs_dir2_data_freescan(mp
, data
, &needlog
, NULL
);
1522 xfs_dir2_data_log_header(tp
, dbp
);
1524 * If the longest freespace in the data block has changed,
1525 * put the new value in the bests table and log that.
1527 if (INT_GET(data
->hdr
.bestfree
[0].length
, ARCH_CONVERT
) != oldbest
) {
1528 INT_COPY(bestsp
[db
], data
->hdr
.bestfree
[0].length
, ARCH_CONVERT
);
1529 xfs_dir2_leaf_log_bests(tp
, lbp
, db
, db
);
1531 xfs_dir2_data_check(dp
, dbp
);
1533 * If the data block is now empty then get rid of the data block.
1535 if (INT_GET(data
->hdr
.bestfree
[0].length
, ARCH_CONVERT
) ==
1536 mp
->m_dirblksize
- (uint
)sizeof(data
->hdr
)) {
1537 ASSERT(db
!= mp
->m_dirdatablk
);
1538 if ((error
= xfs_dir2_shrink_inode(args
, db
, dbp
))) {
1540 * Nope, can't get rid of it because it caused
1541 * allocation of a bmap btree block to do so.
1542 * Just go on, returning success, leaving the
1543 * empty block in place.
1545 if (error
== ENOSPC
&& args
->total
== 0) {
1546 xfs_da_buf_done(dbp
);
1549 xfs_dir2_leaf_check(dp
, lbp
);
1550 xfs_da_buf_done(lbp
);
1555 * If this is the last data block then compact the
1556 * bests table by getting rid of entries.
1558 if (db
== INT_GET(ltp
->bestcount
, ARCH_CONVERT
) - 1) {
1560 * Look for the last active entry (i).
1562 for (i
= db
- 1; i
> 0; i
--) {
1563 if (INT_GET(bestsp
[i
], ARCH_CONVERT
) != NULLDATAOFF
)
1567 * Copy the table down so inactive entries at the
1570 memmove(&bestsp
[db
- i
], bestsp
,
1571 (INT_GET(ltp
->bestcount
, ARCH_CONVERT
) - (db
- i
)) * sizeof(*bestsp
));
1572 INT_MOD(ltp
->bestcount
, ARCH_CONVERT
, -(db
- i
));
1573 xfs_dir2_leaf_log_tail(tp
, lbp
);
1574 xfs_dir2_leaf_log_bests(tp
, lbp
, 0, INT_GET(ltp
->bestcount
, ARCH_CONVERT
) - 1);
1576 INT_SET(bestsp
[db
], ARCH_CONVERT
, NULLDATAOFF
);
1579 * If the data block was not the first one, drop it.
1581 else if (db
!= mp
->m_dirdatablk
&& dbp
!= NULL
) {
1582 xfs_da_buf_done(dbp
);
1585 xfs_dir2_leaf_check(dp
, lbp
);
1587 * See if we can convert to block form.
1589 return xfs_dir2_leaf_to_block(args
, lbp
, dbp
);
1593 * Replace the inode number in a leaf format directory entry.
1596 xfs_dir2_leaf_replace(
1597 xfs_da_args_t
*args
) /* operation arguments */
1599 xfs_dabuf_t
*dbp
; /* data block buffer */
1600 xfs_dir2_data_entry_t
*dep
; /* data block entry */
1601 xfs_inode_t
*dp
; /* incore directory inode */
1602 int error
; /* error return code */
1603 int index
; /* index of leaf entry */
1604 xfs_dabuf_t
*lbp
; /* leaf buffer */
1605 xfs_dir2_leaf_t
*leaf
; /* leaf structure */
1606 xfs_dir2_leaf_entry_t
*lep
; /* leaf entry */
1607 xfs_trans_t
*tp
; /* transaction pointer */
1609 xfs_dir2_trace_args("leaf_replace", args
);
1611 * Look up the entry.
1613 if ((error
= xfs_dir2_leaf_lookup_int(args
, &lbp
, &index
, &dbp
))) {
1619 * Point to the leaf entry, get data address from it.
1621 lep
= &leaf
->ents
[index
];
1623 * Point to the data entry.
1625 dep
= (xfs_dir2_data_entry_t
*)
1626 ((char *)dbp
->data
+
1627 XFS_DIR2_DATAPTR_TO_OFF(dp
->i_mount
, INT_GET(lep
->address
, ARCH_CONVERT
)));
1628 ASSERT(args
->inumber
!= INT_GET(dep
->inumber
, ARCH_CONVERT
));
1630 * Put the new inode number in, log it.
1632 INT_SET(dep
->inumber
, ARCH_CONVERT
, args
->inumber
);
1634 xfs_dir2_data_log_entry(tp
, dbp
, dep
);
1635 xfs_da_buf_done(dbp
);
1636 xfs_dir2_leaf_check(dp
, lbp
);
1637 xfs_da_brelse(tp
, lbp
);
1642 * Return index in the leaf block (lbp) which is either the first
1643 * one with this hash value, or if there are none, the insert point
1644 * for that hash value.
1646 int /* index value */
1647 xfs_dir2_leaf_search_hash(
1648 xfs_da_args_t
*args
, /* operation arguments */
1649 xfs_dabuf_t
*lbp
) /* leaf buffer */
1651 xfs_dahash_t hash
=0; /* hash from this entry */
1652 xfs_dahash_t hashwant
; /* hash value looking for */
1653 int high
; /* high leaf index */
1654 int low
; /* low leaf index */
1655 xfs_dir2_leaf_t
*leaf
; /* leaf structure */
1656 xfs_dir2_leaf_entry_t
*lep
; /* leaf entry */
1657 int mid
=0; /* current leaf index */
1661 if (INT_ISZERO(leaf
->hdr
.count
, ARCH_CONVERT
))
1665 * Note, the table cannot be empty, so we have to go through the loop.
1666 * Binary search the leaf entries looking for our hash value.
1668 for (lep
= leaf
->ents
, low
= 0, high
= INT_GET(leaf
->hdr
.count
, ARCH_CONVERT
) - 1,
1669 hashwant
= args
->hashval
;
1671 mid
= (low
+ high
) >> 1;
1672 if ((hash
= INT_GET(lep
[mid
].hashval
, ARCH_CONVERT
)) == hashwant
)
1674 if (hash
< hashwant
)
1680 * Found one, back up through all the equal hash values.
1682 if (hash
== hashwant
) {
1683 while (mid
> 0 && INT_GET(lep
[mid
- 1].hashval
, ARCH_CONVERT
) == hashwant
) {
1688 * Need to point to an entry higher than ours.
1690 else if (hash
< hashwant
)
1696 * Trim off a trailing data block. We know it's empty since the leaf
1697 * freespace table says so.
1700 xfs_dir2_leaf_trim_data(
1701 xfs_da_args_t
*args
, /* operation arguments */
1702 xfs_dabuf_t
*lbp
, /* leaf buffer */
1703 xfs_dir2_db_t db
) /* data block number */
1705 xfs_dir2_data_off_t
*bestsp
; /* leaf bests table */
1707 xfs_dir2_data_t
*data
; /* data block structure */
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 ASSERT(INT_GET(data
->hdr
.magic
, ARCH_CONVERT
) == XFS_DIR2_DATA_MAGIC
);
1731 /* this seems to be an error
1732 * data is only valid if DEBUG is defined?
1737 ltp
= XFS_DIR2_LEAF_TAIL_P(mp
, leaf
);
1738 ASSERT(INT_GET(data
->hdr
.bestfree
[0].length
, ARCH_CONVERT
) ==
1739 mp
->m_dirblksize
- (uint
)sizeof(data
->hdr
));
1740 ASSERT(db
== INT_GET(ltp
->bestcount
, ARCH_CONVERT
) - 1);
1742 * Get rid of the data block.
1744 if ((error
= xfs_dir2_shrink_inode(args
, db
, dbp
))) {
1745 ASSERT(error
!= ENOSPC
);
1746 xfs_da_brelse(tp
, dbp
);
1750 * Eliminate the last bests entry from the table.
1752 bestsp
= XFS_DIR2_LEAF_BESTS_P_ARCH(ltp
, ARCH_CONVERT
);
1753 INT_MOD(ltp
->bestcount
, ARCH_CONVERT
, -1);
1754 memmove(&bestsp
[1], &bestsp
[0], INT_GET(ltp
->bestcount
, ARCH_CONVERT
) * sizeof(*bestsp
));
1755 xfs_dir2_leaf_log_tail(tp
, lbp
);
1756 xfs_dir2_leaf_log_bests(tp
, lbp
, 0, INT_GET(ltp
->bestcount
, ARCH_CONVERT
) - 1);
1761 * Convert node form directory to leaf form directory.
1762 * The root of the node form dir needs to already be a LEAFN block.
1763 * Just return if we can't do anything.
1766 xfs_dir2_node_to_leaf(
1767 xfs_da_state_t
*state
) /* directory operation state */
1769 xfs_da_args_t
*args
; /* operation arguments */
1770 xfs_inode_t
*dp
; /* incore directory inode */
1771 int error
; /* error return code */
1772 xfs_dabuf_t
*fbp
; /* buffer for freespace block */
1773 xfs_fileoff_t fo
; /* freespace file offset */
1774 xfs_dir2_free_t
*free
; /* freespace structure */
1775 xfs_dabuf_t
*lbp
; /* buffer for leaf block */
1776 xfs_dir2_leaf_tail_t
*ltp
; /* tail of leaf structure */
1777 xfs_dir2_leaf_t
*leaf
; /* leaf structure */
1778 xfs_mount_t
*mp
; /* filesystem mount point */
1779 int rval
; /* successful free trim? */
1780 xfs_trans_t
*tp
; /* transaction pointer */
1783 * There's more than a leaf level in the btree, so there must
1784 * be multiple leafn blocks. Give up.
1786 if (state
->path
.active
> 1)
1789 xfs_dir2_trace_args("node_to_leaf", args
);
1794 * Get the last offset in the file.
1796 if ((error
= xfs_bmap_last_offset(tp
, dp
, &fo
, XFS_DATA_FORK
))) {
1799 fo
-= mp
->m_dirblkfsbs
;
1801 * If there are freespace blocks other than the first one,
1802 * take this opportunity to remove trailing empty freespace blocks
1803 * that may have been left behind during no-space-reservation
1806 while (fo
> mp
->m_dirfreeblk
) {
1807 if ((error
= xfs_dir2_node_trim_free(args
, fo
, &rval
))) {
1811 fo
-= mp
->m_dirblkfsbs
;
1816 * Now find the block just before the freespace block.
1818 if ((error
= xfs_bmap_last_before(tp
, dp
, &fo
, XFS_DATA_FORK
))) {
1822 * If it's not the single leaf block, give up.
1824 if (XFS_FSB_TO_B(mp
, fo
) > XFS_DIR2_LEAF_OFFSET
+ mp
->m_dirblksize
)
1826 lbp
= state
->path
.blk
[0].bp
;
1828 ASSERT(INT_GET(leaf
->hdr
.info
.magic
, ARCH_CONVERT
) == XFS_DIR2_LEAFN_MAGIC
);
1830 * Read the freespace block.
1832 if ((error
= xfs_da_read_buf(tp
, dp
, mp
->m_dirfreeblk
, -1, &fbp
,
1837 ASSERT(INT_GET(free
->hdr
.magic
, ARCH_CONVERT
) == XFS_DIR2_FREE_MAGIC
);
1838 ASSERT(INT_ISZERO(free
->hdr
.firstdb
, ARCH_CONVERT
));
1840 * Now see if the leafn and free data will fit in a leaf1.
1841 * If not, release the buffer and give up.
1843 if ((uint
)sizeof(leaf
->hdr
) +
1844 (INT_GET(leaf
->hdr
.count
, ARCH_CONVERT
) - INT_GET(leaf
->hdr
.stale
, ARCH_CONVERT
)) * (uint
)sizeof(leaf
->ents
[0]) +
1845 INT_GET(free
->hdr
.nvalid
, ARCH_CONVERT
) * (uint
)sizeof(leaf
->bests
[0]) +
1846 (uint
)sizeof(leaf
->tail
) >
1848 xfs_da_brelse(tp
, fbp
);
1852 * If the leaf has any stale entries in it, compress them out.
1853 * The compact routine will log the header.
1855 if (INT_GET(leaf
->hdr
.stale
, ARCH_CONVERT
))
1856 xfs_dir2_leaf_compact(args
, lbp
);
1858 xfs_dir2_leaf_log_header(tp
, lbp
);
1859 INT_SET(leaf
->hdr
.info
.magic
, ARCH_CONVERT
, XFS_DIR2_LEAF1_MAGIC
);
1861 * Set up the leaf tail from the freespace block.
1863 ltp
= XFS_DIR2_LEAF_TAIL_P(mp
, leaf
);
1864 INT_COPY(ltp
->bestcount
, free
->hdr
.nvalid
, ARCH_CONVERT
);
1866 * Set up the leaf bests table.
1868 memcpy(XFS_DIR2_LEAF_BESTS_P_ARCH(ltp
, ARCH_CONVERT
), free
->bests
,
1869 INT_GET(ltp
->bestcount
, ARCH_CONVERT
) * sizeof(leaf
->bests
[0]));
1870 xfs_dir2_leaf_log_bests(tp
, lbp
, 0, INT_GET(ltp
->bestcount
, ARCH_CONVERT
) - 1);
1871 xfs_dir2_leaf_log_tail(tp
, lbp
);
1872 xfs_dir2_leaf_check(dp
, lbp
);
1874 * Get rid of the freespace block.
1876 error
= xfs_dir2_shrink_inode(args
, XFS_DIR2_FREE_FIRSTDB(mp
), fbp
);
1879 * This can't fail here because it can only happen when
1880 * punching out the middle of an extent, and this is an
1883 ASSERT(error
!= ENOSPC
);
1888 * Now see if we can convert the single-leaf directory
1889 * down to a block form directory.
1890 * This routine always kills the dabuf for the leaf, so
1891 * eliminate it from the path.
1893 error
= xfs_dir2_leaf_to_block(args
, lbp
, NULL
);
1894 state
->path
.blk
[0].bp
= NULL
;