2 * Copyright (c) 2000-2002,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"
23 #include "xfs_trans.h"
27 #include "xfs_dmapi.h"
28 #include "xfs_mount.h"
29 #include "xfs_da_btree.h"
30 #include "xfs_bmap_btree.h"
31 #include "xfs_dir2_sf.h"
32 #include "xfs_attr_sf.h"
33 #include "xfs_dinode.h"
34 #include "xfs_inode.h"
35 #include "xfs_dir2_data.h"
36 #include "xfs_dir2_leaf.h"
37 #include "xfs_dir2_block.h"
38 #include "xfs_error.h"
42 * Check the consistency of the data block.
43 * The input can also be a block-format directory.
44 * Pop an assert if we find anything bad.
48 xfs_inode_t
*dp
, /* incore inode pointer */
49 xfs_dabuf_t
*bp
) /* data block's buffer */
51 xfs_dir2_dataptr_t addr
; /* addr for leaf lookup */
52 xfs_dir2_data_free_t
*bf
; /* bestfree table */
53 xfs_dir2_block_tail_t
*btp
=NULL
; /* block tail */
54 int count
; /* count of entries found */
55 xfs_dir2_data_t
*d
; /* data block pointer */
56 xfs_dir2_data_entry_t
*dep
; /* data entry */
57 xfs_dir2_data_free_t
*dfp
; /* bestfree entry */
58 xfs_dir2_data_unused_t
*dup
; /* unused entry */
59 char *endp
; /* end of useful data */
60 int freeseen
; /* mask of bestfrees seen */
61 xfs_dahash_t hash
; /* hash of current name */
62 int i
; /* leaf index */
63 int lastfree
; /* last entry was unused */
64 xfs_dir2_leaf_entry_t
*lep
=NULL
; /* block leaf entries */
65 xfs_mount_t
*mp
; /* filesystem mount point */
66 char *p
; /* current data position */
67 int stale
; /* count of stale leaves */
71 ASSERT(be32_to_cpu(d
->hdr
.magic
) == XFS_DIR2_DATA_MAGIC
||
72 be32_to_cpu(d
->hdr
.magic
) == XFS_DIR2_BLOCK_MAGIC
);
75 if (be32_to_cpu(d
->hdr
.magic
) == XFS_DIR2_BLOCK_MAGIC
) {
76 btp
= xfs_dir2_block_tail_p(mp
, (xfs_dir2_block_t
*)d
);
77 lep
= xfs_dir2_block_leaf_p(btp
);
80 endp
= (char *)d
+ mp
->m_dirblksize
;
81 count
= lastfree
= freeseen
= 0;
83 * Account for zero bestfree entries.
86 ASSERT(!bf
[0].offset
);
90 ASSERT(!bf
[1].offset
);
94 ASSERT(!bf
[2].offset
);
97 ASSERT(be16_to_cpu(bf
[0].length
) >= be16_to_cpu(bf
[1].length
));
98 ASSERT(be16_to_cpu(bf
[1].length
) >= be16_to_cpu(bf
[2].length
));
100 * Loop over the data/unused entries.
103 dup
= (xfs_dir2_data_unused_t
*)p
;
105 * If it's unused, look for the space in the bestfree table.
106 * If we find it, account for that, else make sure it
107 * doesn't need to be there.
109 if (be16_to_cpu(dup
->freetag
) == XFS_DIR2_DATA_FREE_TAG
) {
110 ASSERT(lastfree
== 0);
111 ASSERT(be16_to_cpu(*xfs_dir2_data_unused_tag_p(dup
)) ==
112 (char *)dup
- (char *)d
);
113 dfp
= xfs_dir2_data_freefind(d
, dup
);
116 ASSERT((freeseen
& (1 << i
)) == 0);
119 ASSERT(be16_to_cpu(dup
->length
) <=
120 be16_to_cpu(bf
[2].length
));
122 p
+= be16_to_cpu(dup
->length
);
127 * It's a real entry. Validate the fields.
128 * If this is a block directory then make sure it's
129 * in the leaf section of the block.
130 * The linear search is crude but this is DEBUG code.
132 dep
= (xfs_dir2_data_entry_t
*)p
;
133 ASSERT(dep
->namelen
!= 0);
134 ASSERT(xfs_dir_ino_validate(mp
, be64_to_cpu(dep
->inumber
)) == 0);
135 ASSERT(be16_to_cpu(*xfs_dir2_data_entry_tag_p(dep
)) ==
136 (char *)dep
- (char *)d
);
139 if (be32_to_cpu(d
->hdr
.magic
) == XFS_DIR2_BLOCK_MAGIC
) {
140 addr
= xfs_dir2_db_off_to_dataptr(mp
, mp
->m_dirdatablk
,
141 (xfs_dir2_data_aoff_t
)
142 ((char *)dep
- (char *)d
));
143 hash
= xfs_da_hashname((char *)dep
->name
, dep
->namelen
);
144 for (i
= 0; i
< be32_to_cpu(btp
->count
); i
++) {
145 if (be32_to_cpu(lep
[i
].address
) == addr
&&
146 be32_to_cpu(lep
[i
].hashval
) == hash
)
149 ASSERT(i
< be32_to_cpu(btp
->count
));
151 p
+= xfs_dir2_data_entsize(dep
->namelen
);
154 * Need to have seen all the entries and all the bestfree slots.
156 ASSERT(freeseen
== 7);
157 if (be32_to_cpu(d
->hdr
.magic
) == XFS_DIR2_BLOCK_MAGIC
) {
158 for (i
= stale
= 0; i
< be32_to_cpu(btp
->count
); i
++) {
159 if (be32_to_cpu(lep
[i
].address
) == XFS_DIR2_NULL_DATAPTR
)
162 ASSERT(be32_to_cpu(lep
[i
].hashval
) >= be32_to_cpu(lep
[i
- 1].hashval
));
164 ASSERT(count
== be32_to_cpu(btp
->count
) - be32_to_cpu(btp
->stale
));
165 ASSERT(stale
== be32_to_cpu(btp
->stale
));
171 * Given a data block and an unused entry from that block,
172 * return the bestfree entry if any that corresponds to it.
174 xfs_dir2_data_free_t
*
175 xfs_dir2_data_freefind(
176 xfs_dir2_data_t
*d
, /* data block */
177 xfs_dir2_data_unused_t
*dup
) /* data unused entry */
179 xfs_dir2_data_free_t
*dfp
; /* bestfree entry */
180 xfs_dir2_data_aoff_t off
; /* offset value needed */
181 #if defined(DEBUG) && defined(__KERNEL__)
182 int matched
; /* matched the value */
183 int seenzero
; /* saw a 0 bestfree entry */
186 off
= (xfs_dir2_data_aoff_t
)((char *)dup
- (char *)d
);
187 #if defined(DEBUG) && defined(__KERNEL__)
189 * Validate some consistency in the bestfree table.
190 * Check order, non-overlapping entries, and if we find the
191 * one we're looking for it has to be exact.
193 ASSERT(be32_to_cpu(d
->hdr
.magic
) == XFS_DIR2_DATA_MAGIC
||
194 be32_to_cpu(d
->hdr
.magic
) == XFS_DIR2_BLOCK_MAGIC
);
195 for (dfp
= &d
->hdr
.bestfree
[0], seenzero
= matched
= 0;
196 dfp
< &d
->hdr
.bestfree
[XFS_DIR2_DATA_FD_COUNT
];
199 ASSERT(!dfp
->length
);
203 ASSERT(seenzero
== 0);
204 if (be16_to_cpu(dfp
->offset
) == off
) {
206 ASSERT(dfp
->length
== dup
->length
);
207 } else if (off
< be16_to_cpu(dfp
->offset
))
208 ASSERT(off
+ be16_to_cpu(dup
->length
) <= be16_to_cpu(dfp
->offset
));
210 ASSERT(be16_to_cpu(dfp
->offset
) + be16_to_cpu(dfp
->length
) <= off
);
211 ASSERT(matched
|| be16_to_cpu(dfp
->length
) >= be16_to_cpu(dup
->length
));
212 if (dfp
> &d
->hdr
.bestfree
[0])
213 ASSERT(be16_to_cpu(dfp
[-1].length
) >= be16_to_cpu(dfp
[0].length
));
217 * If this is smaller than the smallest bestfree entry,
218 * it can't be there since they're sorted.
220 if (be16_to_cpu(dup
->length
) <
221 be16_to_cpu(d
->hdr
.bestfree
[XFS_DIR2_DATA_FD_COUNT
- 1].length
))
224 * Look at the three bestfree entries for our guy.
226 for (dfp
= &d
->hdr
.bestfree
[0];
227 dfp
< &d
->hdr
.bestfree
[XFS_DIR2_DATA_FD_COUNT
];
231 if (be16_to_cpu(dfp
->offset
) == off
)
235 * Didn't find it. This only happens if there are duplicate lengths.
241 * Insert an unused-space entry into the bestfree table.
243 xfs_dir2_data_free_t
* /* entry inserted */
244 xfs_dir2_data_freeinsert(
245 xfs_dir2_data_t
*d
, /* data block pointer */
246 xfs_dir2_data_unused_t
*dup
, /* unused space */
247 int *loghead
) /* log the data header (out) */
249 xfs_dir2_data_free_t
*dfp
; /* bestfree table pointer */
250 xfs_dir2_data_free_t
new; /* new bestfree entry */
253 ASSERT(be32_to_cpu(d
->hdr
.magic
) == XFS_DIR2_DATA_MAGIC
||
254 be32_to_cpu(d
->hdr
.magic
) == XFS_DIR2_BLOCK_MAGIC
);
256 dfp
= d
->hdr
.bestfree
;
257 new.length
= dup
->length
;
258 new.offset
= cpu_to_be16((char *)dup
- (char *)d
);
260 * Insert at position 0, 1, or 2; or not at all.
262 if (be16_to_cpu(new.length
) > be16_to_cpu(dfp
[0].length
)) {
269 if (be16_to_cpu(new.length
) > be16_to_cpu(dfp
[1].length
)) {
275 if (be16_to_cpu(new.length
) > be16_to_cpu(dfp
[2].length
)) {
284 * Remove a bestfree entry from the table.
287 xfs_dir2_data_freeremove(
288 xfs_dir2_data_t
*d
, /* data block pointer */
289 xfs_dir2_data_free_t
*dfp
, /* bestfree entry pointer */
290 int *loghead
) /* out: log data header */
293 ASSERT(be32_to_cpu(d
->hdr
.magic
) == XFS_DIR2_DATA_MAGIC
||
294 be32_to_cpu(d
->hdr
.magic
) == XFS_DIR2_BLOCK_MAGIC
);
297 * It's the first entry, slide the next 2 up.
299 if (dfp
== &d
->hdr
.bestfree
[0]) {
300 d
->hdr
.bestfree
[0] = d
->hdr
.bestfree
[1];
301 d
->hdr
.bestfree
[1] = d
->hdr
.bestfree
[2];
304 * It's the second entry, slide the 3rd entry up.
306 else if (dfp
== &d
->hdr
.bestfree
[1])
307 d
->hdr
.bestfree
[1] = d
->hdr
.bestfree
[2];
309 * Must be the last entry.
312 ASSERT(dfp
== &d
->hdr
.bestfree
[2]);
314 * Clear the 3rd entry, must be zero now.
316 d
->hdr
.bestfree
[2].length
= 0;
317 d
->hdr
.bestfree
[2].offset
= 0;
322 * Given a data block, reconstruct its bestfree map.
325 xfs_dir2_data_freescan(
326 xfs_mount_t
*mp
, /* filesystem mount point */
327 xfs_dir2_data_t
*d
, /* data block pointer */
328 int *loghead
) /* out: log data header */
330 xfs_dir2_block_tail_t
*btp
; /* block tail */
331 xfs_dir2_data_entry_t
*dep
; /* active data entry */
332 xfs_dir2_data_unused_t
*dup
; /* unused data entry */
333 char *endp
; /* end of block's data */
334 char *p
; /* current entry pointer */
337 ASSERT(be32_to_cpu(d
->hdr
.magic
) == XFS_DIR2_DATA_MAGIC
||
338 be32_to_cpu(d
->hdr
.magic
) == XFS_DIR2_BLOCK_MAGIC
);
341 * Start by clearing the table.
343 memset(d
->hdr
.bestfree
, 0, sizeof(d
->hdr
.bestfree
));
349 if (be32_to_cpu(d
->hdr
.magic
) == XFS_DIR2_BLOCK_MAGIC
) {
350 btp
= xfs_dir2_block_tail_p(mp
, (xfs_dir2_block_t
*)d
);
351 endp
= (char *)xfs_dir2_block_leaf_p(btp
);
353 endp
= (char *)d
+ mp
->m_dirblksize
;
355 * Loop over the block's entries.
358 dup
= (xfs_dir2_data_unused_t
*)p
;
360 * If it's a free entry, insert it.
362 if (be16_to_cpu(dup
->freetag
) == XFS_DIR2_DATA_FREE_TAG
) {
363 ASSERT((char *)dup
- (char *)d
==
364 be16_to_cpu(*xfs_dir2_data_unused_tag_p(dup
)));
365 xfs_dir2_data_freeinsert(d
, dup
, loghead
);
366 p
+= be16_to_cpu(dup
->length
);
369 * For active entries, check their tags and skip them.
372 dep
= (xfs_dir2_data_entry_t
*)p
;
373 ASSERT((char *)dep
- (char *)d
==
374 be16_to_cpu(*xfs_dir2_data_entry_tag_p(dep
)));
375 p
+= xfs_dir2_data_entsize(dep
->namelen
);
381 * Initialize a data block at the given block number in the directory.
382 * Give back the buffer for the created block.
386 xfs_da_args_t
*args
, /* directory operation args */
387 xfs_dir2_db_t blkno
, /* logical dir block number */
388 xfs_dabuf_t
**bpp
) /* output block buffer */
390 xfs_dabuf_t
*bp
; /* block buffer */
391 xfs_dir2_data_t
*d
; /* pointer to block */
392 xfs_inode_t
*dp
; /* incore directory inode */
393 xfs_dir2_data_unused_t
*dup
; /* unused entry pointer */
394 int error
; /* error return value */
395 int i
; /* bestfree index */
396 xfs_mount_t
*mp
; /* filesystem mount point */
397 xfs_trans_t
*tp
; /* transaction pointer */
404 * Get the buffer set up for the block.
406 error
= xfs_da_get_buf(tp
, dp
, xfs_dir2_db_to_da(mp
, blkno
), -1, &bp
,
413 * Initialize the header.
416 d
->hdr
.magic
= cpu_to_be32(XFS_DIR2_DATA_MAGIC
);
417 d
->hdr
.bestfree
[0].offset
= cpu_to_be16(sizeof(d
->hdr
));
418 for (i
= 1; i
< XFS_DIR2_DATA_FD_COUNT
; i
++) {
419 d
->hdr
.bestfree
[i
].length
= 0;
420 d
->hdr
.bestfree
[i
].offset
= 0;
423 * Set up an unused entry for the block's body.
425 dup
= &d
->u
[0].unused
;
426 dup
->freetag
= cpu_to_be16(XFS_DIR2_DATA_FREE_TAG
);
428 t
=mp
->m_dirblksize
- (uint
)sizeof(d
->hdr
);
429 d
->hdr
.bestfree
[0].length
= cpu_to_be16(t
);
430 dup
->length
= cpu_to_be16(t
);
431 *xfs_dir2_data_unused_tag_p(dup
) = cpu_to_be16((char *)dup
- (char *)d
);
433 * Log it and return it.
435 xfs_dir2_data_log_header(tp
, bp
);
436 xfs_dir2_data_log_unused(tp
, bp
, dup
);
442 * Log an active data entry from the block.
445 xfs_dir2_data_log_entry(
446 xfs_trans_t
*tp
, /* transaction pointer */
447 xfs_dabuf_t
*bp
, /* block buffer */
448 xfs_dir2_data_entry_t
*dep
) /* data entry pointer */
450 xfs_dir2_data_t
*d
; /* data block pointer */
453 ASSERT(be32_to_cpu(d
->hdr
.magic
) == XFS_DIR2_DATA_MAGIC
||
454 be32_to_cpu(d
->hdr
.magic
) == XFS_DIR2_BLOCK_MAGIC
);
455 xfs_da_log_buf(tp
, bp
, (uint
)((char *)dep
- (char *)d
),
456 (uint
)((char *)(xfs_dir2_data_entry_tag_p(dep
) + 1) -
461 * Log a data block header.
464 xfs_dir2_data_log_header(
465 xfs_trans_t
*tp
, /* transaction pointer */
466 xfs_dabuf_t
*bp
) /* block buffer */
468 xfs_dir2_data_t
*d
; /* data block pointer */
471 ASSERT(be32_to_cpu(d
->hdr
.magic
) == XFS_DIR2_DATA_MAGIC
||
472 be32_to_cpu(d
->hdr
.magic
) == XFS_DIR2_BLOCK_MAGIC
);
473 xfs_da_log_buf(tp
, bp
, (uint
)((char *)&d
->hdr
- (char *)d
),
474 (uint
)(sizeof(d
->hdr
) - 1));
478 * Log a data unused entry.
481 xfs_dir2_data_log_unused(
482 xfs_trans_t
*tp
, /* transaction pointer */
483 xfs_dabuf_t
*bp
, /* block buffer */
484 xfs_dir2_data_unused_t
*dup
) /* data unused pointer */
486 xfs_dir2_data_t
*d
; /* data block pointer */
489 ASSERT(be32_to_cpu(d
->hdr
.magic
) == XFS_DIR2_DATA_MAGIC
||
490 be32_to_cpu(d
->hdr
.magic
) == XFS_DIR2_BLOCK_MAGIC
);
492 * Log the first part of the unused entry.
494 xfs_da_log_buf(tp
, bp
, (uint
)((char *)dup
- (char *)d
),
495 (uint
)((char *)&dup
->length
+ sizeof(dup
->length
) -
498 * Log the end (tag) of the unused entry.
500 xfs_da_log_buf(tp
, bp
,
501 (uint
)((char *)xfs_dir2_data_unused_tag_p(dup
) - (char *)d
),
502 (uint
)((char *)xfs_dir2_data_unused_tag_p(dup
) - (char *)d
+
503 sizeof(xfs_dir2_data_off_t
) - 1));
507 * Make a byte range in the data block unused.
508 * Its current contents are unimportant.
511 xfs_dir2_data_make_free(
512 xfs_trans_t
*tp
, /* transaction pointer */
513 xfs_dabuf_t
*bp
, /* block buffer */
514 xfs_dir2_data_aoff_t offset
, /* starting byte offset */
515 xfs_dir2_data_aoff_t len
, /* length in bytes */
516 int *needlogp
, /* out: log header */
517 int *needscanp
) /* out: regen bestfree */
519 xfs_dir2_data_t
*d
; /* data block pointer */
520 xfs_dir2_data_free_t
*dfp
; /* bestfree pointer */
521 char *endptr
; /* end of data area */
522 xfs_mount_t
*mp
; /* filesystem mount point */
523 int needscan
; /* need to regen bestfree */
524 xfs_dir2_data_unused_t
*newdup
; /* new unused entry */
525 xfs_dir2_data_unused_t
*postdup
; /* unused entry after us */
526 xfs_dir2_data_unused_t
*prevdup
; /* unused entry before us */
531 * Figure out where the end of the data area is.
533 if (be32_to_cpu(d
->hdr
.magic
) == XFS_DIR2_DATA_MAGIC
)
534 endptr
= (char *)d
+ mp
->m_dirblksize
;
536 xfs_dir2_block_tail_t
*btp
; /* block tail */
538 ASSERT(be32_to_cpu(d
->hdr
.magic
) == XFS_DIR2_BLOCK_MAGIC
);
539 btp
= xfs_dir2_block_tail_p(mp
, (xfs_dir2_block_t
*)d
);
540 endptr
= (char *)xfs_dir2_block_leaf_p(btp
);
543 * If this isn't the start of the block, then back up to
544 * the previous entry and see if it's free.
546 if (offset
> sizeof(d
->hdr
)) {
547 __be16
*tagp
; /* tag just before us */
549 tagp
= (__be16
*)((char *)d
+ offset
) - 1;
550 prevdup
= (xfs_dir2_data_unused_t
*)((char *)d
+ be16_to_cpu(*tagp
));
551 if (be16_to_cpu(prevdup
->freetag
) != XFS_DIR2_DATA_FREE_TAG
)
556 * If this isn't the end of the block, see if the entry after
559 if ((char *)d
+ offset
+ len
< endptr
) {
561 (xfs_dir2_data_unused_t
*)((char *)d
+ offset
+ len
);
562 if (be16_to_cpu(postdup
->freetag
) != XFS_DIR2_DATA_FREE_TAG
)
566 ASSERT(*needscanp
== 0);
569 * Previous and following entries are both free,
570 * merge everything into a single free entry.
572 if (prevdup
&& postdup
) {
573 xfs_dir2_data_free_t
*dfp2
; /* another bestfree pointer */
576 * See if prevdup and/or postdup are in bestfree table.
578 dfp
= xfs_dir2_data_freefind(d
, prevdup
);
579 dfp2
= xfs_dir2_data_freefind(d
, postdup
);
581 * We need a rescan unless there are exactly 2 free entries
582 * namely our two. Then we know what's happening, otherwise
583 * since the third bestfree is there, there might be more
586 needscan
= (d
->hdr
.bestfree
[2].length
!= 0);
588 * Fix up the new big freespace.
590 be16_add(&prevdup
->length
, len
+ be16_to_cpu(postdup
->length
));
591 *xfs_dir2_data_unused_tag_p(prevdup
) =
592 cpu_to_be16((char *)prevdup
- (char *)d
);
593 xfs_dir2_data_log_unused(tp
, bp
, prevdup
);
596 * Has to be the case that entries 0 and 1 are
597 * dfp and dfp2 (don't know which is which), and
599 * Remove entry 1 first then entry 0.
602 if (dfp
== &d
->hdr
.bestfree
[1]) {
603 dfp
= &d
->hdr
.bestfree
[0];
605 dfp2
= &d
->hdr
.bestfree
[1];
607 xfs_dir2_data_freeremove(d
, dfp2
, needlogp
);
608 xfs_dir2_data_freeremove(d
, dfp
, needlogp
);
610 * Now insert the new entry.
612 dfp
= xfs_dir2_data_freeinsert(d
, prevdup
, needlogp
);
613 ASSERT(dfp
== &d
->hdr
.bestfree
[0]);
614 ASSERT(dfp
->length
== prevdup
->length
);
615 ASSERT(!dfp
[1].length
);
616 ASSERT(!dfp
[2].length
);
620 * The entry before us is free, merge with it.
623 dfp
= xfs_dir2_data_freefind(d
, prevdup
);
624 be16_add(&prevdup
->length
, len
);
625 *xfs_dir2_data_unused_tag_p(prevdup
) =
626 cpu_to_be16((char *)prevdup
- (char *)d
);
627 xfs_dir2_data_log_unused(tp
, bp
, prevdup
);
629 * If the previous entry was in the table, the new entry
630 * is longer, so it will be in the table too. Remove
631 * the old one and add the new one.
634 xfs_dir2_data_freeremove(d
, dfp
, needlogp
);
635 (void)xfs_dir2_data_freeinsert(d
, prevdup
, needlogp
);
638 * Otherwise we need a scan if the new entry is big enough.
641 needscan
= be16_to_cpu(prevdup
->length
) >
642 be16_to_cpu(d
->hdr
.bestfree
[2].length
);
646 * The following entry is free, merge with it.
649 dfp
= xfs_dir2_data_freefind(d
, postdup
);
650 newdup
= (xfs_dir2_data_unused_t
*)((char *)d
+ offset
);
651 newdup
->freetag
= cpu_to_be16(XFS_DIR2_DATA_FREE_TAG
);
652 newdup
->length
= cpu_to_be16(len
+ be16_to_cpu(postdup
->length
));
653 *xfs_dir2_data_unused_tag_p(newdup
) =
654 cpu_to_be16((char *)newdup
- (char *)d
);
655 xfs_dir2_data_log_unused(tp
, bp
, newdup
);
657 * If the following entry was in the table, the new entry
658 * is longer, so it will be in the table too. Remove
659 * the old one and add the new one.
662 xfs_dir2_data_freeremove(d
, dfp
, needlogp
);
663 (void)xfs_dir2_data_freeinsert(d
, newdup
, needlogp
);
666 * Otherwise we need a scan if the new entry is big enough.
669 needscan
= be16_to_cpu(newdup
->length
) >
670 be16_to_cpu(d
->hdr
.bestfree
[2].length
);
674 * Neither neighbor is free. Make a new entry.
677 newdup
= (xfs_dir2_data_unused_t
*)((char *)d
+ offset
);
678 newdup
->freetag
= cpu_to_be16(XFS_DIR2_DATA_FREE_TAG
);
679 newdup
->length
= cpu_to_be16(len
);
680 *xfs_dir2_data_unused_tag_p(newdup
) =
681 cpu_to_be16((char *)newdup
- (char *)d
);
682 xfs_dir2_data_log_unused(tp
, bp
, newdup
);
683 (void)xfs_dir2_data_freeinsert(d
, newdup
, needlogp
);
685 *needscanp
= needscan
;
689 * Take a byte range out of an existing unused space and make it un-free.
692 xfs_dir2_data_use_free(
693 xfs_trans_t
*tp
, /* transaction pointer */
694 xfs_dabuf_t
*bp
, /* data block buffer */
695 xfs_dir2_data_unused_t
*dup
, /* unused entry */
696 xfs_dir2_data_aoff_t offset
, /* starting offset to use */
697 xfs_dir2_data_aoff_t len
, /* length to use */
698 int *needlogp
, /* out: need to log header */
699 int *needscanp
) /* out: need regen bestfree */
701 xfs_dir2_data_t
*d
; /* data block */
702 xfs_dir2_data_free_t
*dfp
; /* bestfree pointer */
703 int matchback
; /* matches end of freespace */
704 int matchfront
; /* matches start of freespace */
705 int needscan
; /* need to regen bestfree */
706 xfs_dir2_data_unused_t
*newdup
; /* new unused entry */
707 xfs_dir2_data_unused_t
*newdup2
; /* another new unused entry */
708 int oldlen
; /* old unused entry's length */
711 ASSERT(be32_to_cpu(d
->hdr
.magic
) == XFS_DIR2_DATA_MAGIC
||
712 be32_to_cpu(d
->hdr
.magic
) == XFS_DIR2_BLOCK_MAGIC
);
713 ASSERT(be16_to_cpu(dup
->freetag
) == XFS_DIR2_DATA_FREE_TAG
);
714 ASSERT(offset
>= (char *)dup
- (char *)d
);
715 ASSERT(offset
+ len
<= (char *)dup
+ be16_to_cpu(dup
->length
) - (char *)d
);
716 ASSERT((char *)dup
- (char *)d
== be16_to_cpu(*xfs_dir2_data_unused_tag_p(dup
)));
718 * Look up the entry in the bestfree table.
720 dfp
= xfs_dir2_data_freefind(d
, dup
);
721 oldlen
= be16_to_cpu(dup
->length
);
722 ASSERT(dfp
|| oldlen
<= be16_to_cpu(d
->hdr
.bestfree
[2].length
));
724 * Check for alignment with front and back of the entry.
726 matchfront
= (char *)dup
- (char *)d
== offset
;
727 matchback
= (char *)dup
+ oldlen
- (char *)d
== offset
+ len
;
728 ASSERT(*needscanp
== 0);
731 * If we matched it exactly we just need to get rid of it from
732 * the bestfree table.
734 if (matchfront
&& matchback
) {
736 needscan
= (d
->hdr
.bestfree
[2].offset
!= 0);
738 xfs_dir2_data_freeremove(d
, dfp
, needlogp
);
742 * We match the first part of the entry.
743 * Make a new entry with the remaining freespace.
745 else if (matchfront
) {
746 newdup
= (xfs_dir2_data_unused_t
*)((char *)d
+ offset
+ len
);
747 newdup
->freetag
= cpu_to_be16(XFS_DIR2_DATA_FREE_TAG
);
748 newdup
->length
= cpu_to_be16(oldlen
- len
);
749 *xfs_dir2_data_unused_tag_p(newdup
) =
750 cpu_to_be16((char *)newdup
- (char *)d
);
751 xfs_dir2_data_log_unused(tp
, bp
, newdup
);
753 * If it was in the table, remove it and add the new one.
756 xfs_dir2_data_freeremove(d
, dfp
, needlogp
);
757 dfp
= xfs_dir2_data_freeinsert(d
, newdup
, needlogp
);
759 ASSERT(dfp
->length
== newdup
->length
);
760 ASSERT(be16_to_cpu(dfp
->offset
) == (char *)newdup
- (char *)d
);
762 * If we got inserted at the last slot,
763 * that means we don't know if there was a better
764 * choice for the last slot, or not. Rescan.
766 needscan
= dfp
== &d
->hdr
.bestfree
[2];
770 * We match the last part of the entry.
771 * Trim the allocated space off the tail of the entry.
773 else if (matchback
) {
775 newdup
->length
= cpu_to_be16(((char *)d
+ offset
) - (char *)newdup
);
776 *xfs_dir2_data_unused_tag_p(newdup
) =
777 cpu_to_be16((char *)newdup
- (char *)d
);
778 xfs_dir2_data_log_unused(tp
, bp
, newdup
);
780 * If it was in the table, remove it and add the new one.
783 xfs_dir2_data_freeremove(d
, dfp
, needlogp
);
784 dfp
= xfs_dir2_data_freeinsert(d
, newdup
, needlogp
);
786 ASSERT(dfp
->length
== newdup
->length
);
787 ASSERT(be16_to_cpu(dfp
->offset
) == (char *)newdup
- (char *)d
);
789 * If we got inserted at the last slot,
790 * that means we don't know if there was a better
791 * choice for the last slot, or not. Rescan.
793 needscan
= dfp
== &d
->hdr
.bestfree
[2];
797 * Poking out the middle of an entry.
798 * Make two new entries.
802 newdup
->length
= cpu_to_be16(((char *)d
+ offset
) - (char *)newdup
);
803 *xfs_dir2_data_unused_tag_p(newdup
) =
804 cpu_to_be16((char *)newdup
- (char *)d
);
805 xfs_dir2_data_log_unused(tp
, bp
, newdup
);
806 newdup2
= (xfs_dir2_data_unused_t
*)((char *)d
+ offset
+ len
);
807 newdup2
->freetag
= cpu_to_be16(XFS_DIR2_DATA_FREE_TAG
);
808 newdup2
->length
= cpu_to_be16(oldlen
- len
- be16_to_cpu(newdup
->length
));
809 *xfs_dir2_data_unused_tag_p(newdup2
) =
810 cpu_to_be16((char *)newdup2
- (char *)d
);
811 xfs_dir2_data_log_unused(tp
, bp
, newdup2
);
813 * If the old entry was in the table, we need to scan
814 * if the 3rd entry was valid, since these entries
815 * are smaller than the old one.
816 * If we don't need to scan that means there were 1 or 2
817 * entries in the table, and removing the old and adding
818 * the 2 new will work.
821 needscan
= (d
->hdr
.bestfree
[2].length
!= 0);
823 xfs_dir2_data_freeremove(d
, dfp
, needlogp
);
824 (void)xfs_dir2_data_freeinsert(d
, newdup
,
826 (void)xfs_dir2_data_freeinsert(d
, newdup2
,
831 *needscanp
= needscan
;