[SUNRPC]: Clean up duplicate includes in net/sunrpc/
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / fs / xfs / xfs_dir2_data.c
blob7ebe295bd6d3bf459836a72a0cca4b1b6fd7ef8b
1 /*
2 * Copyright (c) 2000-2002,2005 Silicon Graphics, Inc.
3 * All Rights Reserved.
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
18 #include "xfs.h"
19 #include "xfs_fs.h"
20 #include "xfs_types.h"
21 #include "xfs_log.h"
22 #include "xfs_inum.h"
23 #include "xfs_trans.h"
24 #include "xfs_sb.h"
25 #include "xfs_dir2.h"
26 #include "xfs_dmapi.h"
27 #include "xfs_mount.h"
28 #include "xfs_da_btree.h"
29 #include "xfs_bmap_btree.h"
30 #include "xfs_dir2_sf.h"
31 #include "xfs_attr_sf.h"
32 #include "xfs_dinode.h"
33 #include "xfs_inode.h"
34 #include "xfs_dir2_data.h"
35 #include "xfs_dir2_leaf.h"
36 #include "xfs_dir2_block.h"
37 #include "xfs_error.h"
39 #ifdef DEBUG
41 * Check the consistency of the data block.
42 * The input can also be a block-format directory.
43 * Pop an assert if we find anything bad.
45 void
46 xfs_dir2_data_check(
47 xfs_inode_t *dp, /* incore inode pointer */
48 xfs_dabuf_t *bp) /* data block's buffer */
50 xfs_dir2_dataptr_t addr; /* addr for leaf lookup */
51 xfs_dir2_data_free_t *bf; /* bestfree table */
52 xfs_dir2_block_tail_t *btp=NULL; /* block tail */
53 int count; /* count of entries found */
54 xfs_dir2_data_t *d; /* data block pointer */
55 xfs_dir2_data_entry_t *dep; /* data entry */
56 xfs_dir2_data_free_t *dfp; /* bestfree entry */
57 xfs_dir2_data_unused_t *dup; /* unused entry */
58 char *endp; /* end of useful data */
59 int freeseen; /* mask of bestfrees seen */
60 xfs_dahash_t hash; /* hash of current name */
61 int i; /* leaf index */
62 int lastfree; /* last entry was unused */
63 xfs_dir2_leaf_entry_t *lep=NULL; /* block leaf entries */
64 xfs_mount_t *mp; /* filesystem mount point */
65 char *p; /* current data position */
66 int stale; /* count of stale leaves */
68 mp = dp->i_mount;
69 d = bp->data;
70 ASSERT(be32_to_cpu(d->hdr.magic) == XFS_DIR2_DATA_MAGIC ||
71 be32_to_cpu(d->hdr.magic) == XFS_DIR2_BLOCK_MAGIC);
72 bf = d->hdr.bestfree;
73 p = (char *)d->u;
74 if (be32_to_cpu(d->hdr.magic) == XFS_DIR2_BLOCK_MAGIC) {
75 btp = xfs_dir2_block_tail_p(mp, (xfs_dir2_block_t *)d);
76 lep = xfs_dir2_block_leaf_p(btp);
77 endp = (char *)lep;
78 } else
79 endp = (char *)d + mp->m_dirblksize;
80 count = lastfree = freeseen = 0;
82 * Account for zero bestfree entries.
84 if (!bf[0].length) {
85 ASSERT(!bf[0].offset);
86 freeseen |= 1 << 0;
88 if (!bf[1].length) {
89 ASSERT(!bf[1].offset);
90 freeseen |= 1 << 1;
92 if (!bf[2].length) {
93 ASSERT(!bf[2].offset);
94 freeseen |= 1 << 2;
96 ASSERT(be16_to_cpu(bf[0].length) >= be16_to_cpu(bf[1].length));
97 ASSERT(be16_to_cpu(bf[1].length) >= be16_to_cpu(bf[2].length));
99 * Loop over the data/unused entries.
101 while (p < endp) {
102 dup = (xfs_dir2_data_unused_t *)p;
104 * If it's unused, look for the space in the bestfree table.
105 * If we find it, account for that, else make sure it
106 * doesn't need to be there.
108 if (be16_to_cpu(dup->freetag) == XFS_DIR2_DATA_FREE_TAG) {
109 ASSERT(lastfree == 0);
110 ASSERT(be16_to_cpu(*xfs_dir2_data_unused_tag_p(dup)) ==
111 (char *)dup - (char *)d);
112 dfp = xfs_dir2_data_freefind(d, dup);
113 if (dfp) {
114 i = (int)(dfp - bf);
115 ASSERT((freeseen & (1 << i)) == 0);
116 freeseen |= 1 << i;
117 } else {
118 ASSERT(be16_to_cpu(dup->length) <=
119 be16_to_cpu(bf[2].length));
121 p += be16_to_cpu(dup->length);
122 lastfree = 1;
123 continue;
126 * It's a real entry. Validate the fields.
127 * If this is a block directory then make sure it's
128 * in the leaf section of the block.
129 * The linear search is crude but this is DEBUG code.
131 dep = (xfs_dir2_data_entry_t *)p;
132 ASSERT(dep->namelen != 0);
133 ASSERT(xfs_dir_ino_validate(mp, be64_to_cpu(dep->inumber)) == 0);
134 ASSERT(be16_to_cpu(*xfs_dir2_data_entry_tag_p(dep)) ==
135 (char *)dep - (char *)d);
136 count++;
137 lastfree = 0;
138 if (be32_to_cpu(d->hdr.magic) == XFS_DIR2_BLOCK_MAGIC) {
139 addr = xfs_dir2_db_off_to_dataptr(mp, mp->m_dirdatablk,
140 (xfs_dir2_data_aoff_t)
141 ((char *)dep - (char *)d));
142 hash = xfs_da_hashname((char *)dep->name, dep->namelen);
143 for (i = 0; i < be32_to_cpu(btp->count); i++) {
144 if (be32_to_cpu(lep[i].address) == addr &&
145 be32_to_cpu(lep[i].hashval) == hash)
146 break;
148 ASSERT(i < be32_to_cpu(btp->count));
150 p += xfs_dir2_data_entsize(dep->namelen);
153 * Need to have seen all the entries and all the bestfree slots.
155 ASSERT(freeseen == 7);
156 if (be32_to_cpu(d->hdr.magic) == XFS_DIR2_BLOCK_MAGIC) {
157 for (i = stale = 0; i < be32_to_cpu(btp->count); i++) {
158 if (be32_to_cpu(lep[i].address) == XFS_DIR2_NULL_DATAPTR)
159 stale++;
160 if (i > 0)
161 ASSERT(be32_to_cpu(lep[i].hashval) >= be32_to_cpu(lep[i - 1].hashval));
163 ASSERT(count == be32_to_cpu(btp->count) - be32_to_cpu(btp->stale));
164 ASSERT(stale == be32_to_cpu(btp->stale));
167 #endif
170 * Given a data block and an unused entry from that block,
171 * return the bestfree entry if any that corresponds to it.
173 xfs_dir2_data_free_t *
174 xfs_dir2_data_freefind(
175 xfs_dir2_data_t *d, /* data block */
176 xfs_dir2_data_unused_t *dup) /* data unused entry */
178 xfs_dir2_data_free_t *dfp; /* bestfree entry */
179 xfs_dir2_data_aoff_t off; /* offset value needed */
180 #if defined(DEBUG) && defined(__KERNEL__)
181 int matched; /* matched the value */
182 int seenzero; /* saw a 0 bestfree entry */
183 #endif
185 off = (xfs_dir2_data_aoff_t)((char *)dup - (char *)d);
186 #if defined(DEBUG) && defined(__KERNEL__)
188 * Validate some consistency in the bestfree table.
189 * Check order, non-overlapping entries, and if we find the
190 * one we're looking for it has to be exact.
192 ASSERT(be32_to_cpu(d->hdr.magic) == XFS_DIR2_DATA_MAGIC ||
193 be32_to_cpu(d->hdr.magic) == XFS_DIR2_BLOCK_MAGIC);
194 for (dfp = &d->hdr.bestfree[0], seenzero = matched = 0;
195 dfp < &d->hdr.bestfree[XFS_DIR2_DATA_FD_COUNT];
196 dfp++) {
197 if (!dfp->offset) {
198 ASSERT(!dfp->length);
199 seenzero = 1;
200 continue;
202 ASSERT(seenzero == 0);
203 if (be16_to_cpu(dfp->offset) == off) {
204 matched = 1;
205 ASSERT(dfp->length == dup->length);
206 } else if (off < be16_to_cpu(dfp->offset))
207 ASSERT(off + be16_to_cpu(dup->length) <= be16_to_cpu(dfp->offset));
208 else
209 ASSERT(be16_to_cpu(dfp->offset) + be16_to_cpu(dfp->length) <= off);
210 ASSERT(matched || be16_to_cpu(dfp->length) >= be16_to_cpu(dup->length));
211 if (dfp > &d->hdr.bestfree[0])
212 ASSERT(be16_to_cpu(dfp[-1].length) >= be16_to_cpu(dfp[0].length));
214 #endif
216 * If this is smaller than the smallest bestfree entry,
217 * it can't be there since they're sorted.
219 if (be16_to_cpu(dup->length) <
220 be16_to_cpu(d->hdr.bestfree[XFS_DIR2_DATA_FD_COUNT - 1].length))
221 return NULL;
223 * Look at the three bestfree entries for our guy.
225 for (dfp = &d->hdr.bestfree[0];
226 dfp < &d->hdr.bestfree[XFS_DIR2_DATA_FD_COUNT];
227 dfp++) {
228 if (!dfp->offset)
229 return NULL;
230 if (be16_to_cpu(dfp->offset) == off)
231 return dfp;
234 * Didn't find it. This only happens if there are duplicate lengths.
236 return NULL;
240 * Insert an unused-space entry into the bestfree table.
242 xfs_dir2_data_free_t * /* entry inserted */
243 xfs_dir2_data_freeinsert(
244 xfs_dir2_data_t *d, /* data block pointer */
245 xfs_dir2_data_unused_t *dup, /* unused space */
246 int *loghead) /* log the data header (out) */
248 xfs_dir2_data_free_t *dfp; /* bestfree table pointer */
249 xfs_dir2_data_free_t new; /* new bestfree entry */
251 #ifdef __KERNEL__
252 ASSERT(be32_to_cpu(d->hdr.magic) == XFS_DIR2_DATA_MAGIC ||
253 be32_to_cpu(d->hdr.magic) == XFS_DIR2_BLOCK_MAGIC);
254 #endif
255 dfp = d->hdr.bestfree;
256 new.length = dup->length;
257 new.offset = cpu_to_be16((char *)dup - (char *)d);
259 * Insert at position 0, 1, or 2; or not at all.
261 if (be16_to_cpu(new.length) > be16_to_cpu(dfp[0].length)) {
262 dfp[2] = dfp[1];
263 dfp[1] = dfp[0];
264 dfp[0] = new;
265 *loghead = 1;
266 return &dfp[0];
268 if (be16_to_cpu(new.length) > be16_to_cpu(dfp[1].length)) {
269 dfp[2] = dfp[1];
270 dfp[1] = new;
271 *loghead = 1;
272 return &dfp[1];
274 if (be16_to_cpu(new.length) > be16_to_cpu(dfp[2].length)) {
275 dfp[2] = new;
276 *loghead = 1;
277 return &dfp[2];
279 return NULL;
283 * Remove a bestfree entry from the table.
285 STATIC void
286 xfs_dir2_data_freeremove(
287 xfs_dir2_data_t *d, /* data block pointer */
288 xfs_dir2_data_free_t *dfp, /* bestfree entry pointer */
289 int *loghead) /* out: log data header */
291 #ifdef __KERNEL__
292 ASSERT(be32_to_cpu(d->hdr.magic) == XFS_DIR2_DATA_MAGIC ||
293 be32_to_cpu(d->hdr.magic) == XFS_DIR2_BLOCK_MAGIC);
294 #endif
296 * It's the first entry, slide the next 2 up.
298 if (dfp == &d->hdr.bestfree[0]) {
299 d->hdr.bestfree[0] = d->hdr.bestfree[1];
300 d->hdr.bestfree[1] = d->hdr.bestfree[2];
303 * It's the second entry, slide the 3rd entry up.
305 else if (dfp == &d->hdr.bestfree[1])
306 d->hdr.bestfree[1] = d->hdr.bestfree[2];
308 * Must be the last entry.
310 else
311 ASSERT(dfp == &d->hdr.bestfree[2]);
313 * Clear the 3rd entry, must be zero now.
315 d->hdr.bestfree[2].length = 0;
316 d->hdr.bestfree[2].offset = 0;
317 *loghead = 1;
321 * Given a data block, reconstruct its bestfree map.
323 void
324 xfs_dir2_data_freescan(
325 xfs_mount_t *mp, /* filesystem mount point */
326 xfs_dir2_data_t *d, /* data block pointer */
327 int *loghead) /* out: log data header */
329 xfs_dir2_block_tail_t *btp; /* block tail */
330 xfs_dir2_data_entry_t *dep; /* active data entry */
331 xfs_dir2_data_unused_t *dup; /* unused data entry */
332 char *endp; /* end of block's data */
333 char *p; /* current entry pointer */
335 #ifdef __KERNEL__
336 ASSERT(be32_to_cpu(d->hdr.magic) == XFS_DIR2_DATA_MAGIC ||
337 be32_to_cpu(d->hdr.magic) == XFS_DIR2_BLOCK_MAGIC);
338 #endif
340 * Start by clearing the table.
342 memset(d->hdr.bestfree, 0, sizeof(d->hdr.bestfree));
343 *loghead = 1;
345 * Set up pointers.
347 p = (char *)d->u;
348 if (be32_to_cpu(d->hdr.magic) == XFS_DIR2_BLOCK_MAGIC) {
349 btp = xfs_dir2_block_tail_p(mp, (xfs_dir2_block_t *)d);
350 endp = (char *)xfs_dir2_block_leaf_p(btp);
351 } else
352 endp = (char *)d + mp->m_dirblksize;
354 * Loop over the block's entries.
356 while (p < endp) {
357 dup = (xfs_dir2_data_unused_t *)p;
359 * If it's a free entry, insert it.
361 if (be16_to_cpu(dup->freetag) == XFS_DIR2_DATA_FREE_TAG) {
362 ASSERT((char *)dup - (char *)d ==
363 be16_to_cpu(*xfs_dir2_data_unused_tag_p(dup)));
364 xfs_dir2_data_freeinsert(d, dup, loghead);
365 p += be16_to_cpu(dup->length);
368 * For active entries, check their tags and skip them.
370 else {
371 dep = (xfs_dir2_data_entry_t *)p;
372 ASSERT((char *)dep - (char *)d ==
373 be16_to_cpu(*xfs_dir2_data_entry_tag_p(dep)));
374 p += xfs_dir2_data_entsize(dep->namelen);
380 * Initialize a data block at the given block number in the directory.
381 * Give back the buffer for the created block.
383 int /* error */
384 xfs_dir2_data_init(
385 xfs_da_args_t *args, /* directory operation args */
386 xfs_dir2_db_t blkno, /* logical dir block number */
387 xfs_dabuf_t **bpp) /* output block buffer */
389 xfs_dabuf_t *bp; /* block buffer */
390 xfs_dir2_data_t *d; /* pointer to block */
391 xfs_inode_t *dp; /* incore directory inode */
392 xfs_dir2_data_unused_t *dup; /* unused entry pointer */
393 int error; /* error return value */
394 int i; /* bestfree index */
395 xfs_mount_t *mp; /* filesystem mount point */
396 xfs_trans_t *tp; /* transaction pointer */
397 int t; /* temp */
399 dp = args->dp;
400 mp = dp->i_mount;
401 tp = args->trans;
403 * Get the buffer set up for the block.
405 error = xfs_da_get_buf(tp, dp, xfs_dir2_db_to_da(mp, blkno), -1, &bp,
406 XFS_DATA_FORK);
407 if (error) {
408 return error;
410 ASSERT(bp != NULL);
412 * Initialize the header.
414 d = bp->data;
415 d->hdr.magic = cpu_to_be32(XFS_DIR2_DATA_MAGIC);
416 d->hdr.bestfree[0].offset = cpu_to_be16(sizeof(d->hdr));
417 for (i = 1; i < XFS_DIR2_DATA_FD_COUNT; i++) {
418 d->hdr.bestfree[i].length = 0;
419 d->hdr.bestfree[i].offset = 0;
422 * Set up an unused entry for the block's body.
424 dup = &d->u[0].unused;
425 dup->freetag = cpu_to_be16(XFS_DIR2_DATA_FREE_TAG);
427 t=mp->m_dirblksize - (uint)sizeof(d->hdr);
428 d->hdr.bestfree[0].length = cpu_to_be16(t);
429 dup->length = cpu_to_be16(t);
430 *xfs_dir2_data_unused_tag_p(dup) = cpu_to_be16((char *)dup - (char *)d);
432 * Log it and return it.
434 xfs_dir2_data_log_header(tp, bp);
435 xfs_dir2_data_log_unused(tp, bp, dup);
436 *bpp = bp;
437 return 0;
441 * Log an active data entry from the block.
443 void
444 xfs_dir2_data_log_entry(
445 xfs_trans_t *tp, /* transaction pointer */
446 xfs_dabuf_t *bp, /* block buffer */
447 xfs_dir2_data_entry_t *dep) /* data entry pointer */
449 xfs_dir2_data_t *d; /* data block pointer */
451 d = bp->data;
452 ASSERT(be32_to_cpu(d->hdr.magic) == XFS_DIR2_DATA_MAGIC ||
453 be32_to_cpu(d->hdr.magic) == XFS_DIR2_BLOCK_MAGIC);
454 xfs_da_log_buf(tp, bp, (uint)((char *)dep - (char *)d),
455 (uint)((char *)(xfs_dir2_data_entry_tag_p(dep) + 1) -
456 (char *)d - 1));
460 * Log a data block header.
462 void
463 xfs_dir2_data_log_header(
464 xfs_trans_t *tp, /* transaction pointer */
465 xfs_dabuf_t *bp) /* block buffer */
467 xfs_dir2_data_t *d; /* data block pointer */
469 d = bp->data;
470 ASSERT(be32_to_cpu(d->hdr.magic) == XFS_DIR2_DATA_MAGIC ||
471 be32_to_cpu(d->hdr.magic) == XFS_DIR2_BLOCK_MAGIC);
472 xfs_da_log_buf(tp, bp, (uint)((char *)&d->hdr - (char *)d),
473 (uint)(sizeof(d->hdr) - 1));
477 * Log a data unused entry.
479 void
480 xfs_dir2_data_log_unused(
481 xfs_trans_t *tp, /* transaction pointer */
482 xfs_dabuf_t *bp, /* block buffer */
483 xfs_dir2_data_unused_t *dup) /* data unused pointer */
485 xfs_dir2_data_t *d; /* data block pointer */
487 d = bp->data;
488 ASSERT(be32_to_cpu(d->hdr.magic) == XFS_DIR2_DATA_MAGIC ||
489 be32_to_cpu(d->hdr.magic) == XFS_DIR2_BLOCK_MAGIC);
491 * Log the first part of the unused entry.
493 xfs_da_log_buf(tp, bp, (uint)((char *)dup - (char *)d),
494 (uint)((char *)&dup->length + sizeof(dup->length) -
495 1 - (char *)d));
497 * Log the end (tag) of the unused entry.
499 xfs_da_log_buf(tp, bp,
500 (uint)((char *)xfs_dir2_data_unused_tag_p(dup) - (char *)d),
501 (uint)((char *)xfs_dir2_data_unused_tag_p(dup) - (char *)d +
502 sizeof(xfs_dir2_data_off_t) - 1));
506 * Make a byte range in the data block unused.
507 * Its current contents are unimportant.
509 void
510 xfs_dir2_data_make_free(
511 xfs_trans_t *tp, /* transaction pointer */
512 xfs_dabuf_t *bp, /* block buffer */
513 xfs_dir2_data_aoff_t offset, /* starting byte offset */
514 xfs_dir2_data_aoff_t len, /* length in bytes */
515 int *needlogp, /* out: log header */
516 int *needscanp) /* out: regen bestfree */
518 xfs_dir2_data_t *d; /* data block pointer */
519 xfs_dir2_data_free_t *dfp; /* bestfree pointer */
520 char *endptr; /* end of data area */
521 xfs_mount_t *mp; /* filesystem mount point */
522 int needscan; /* need to regen bestfree */
523 xfs_dir2_data_unused_t *newdup; /* new unused entry */
524 xfs_dir2_data_unused_t *postdup; /* unused entry after us */
525 xfs_dir2_data_unused_t *prevdup; /* unused entry before us */
527 mp = tp->t_mountp;
528 d = bp->data;
530 * Figure out where the end of the data area is.
532 if (be32_to_cpu(d->hdr.magic) == XFS_DIR2_DATA_MAGIC)
533 endptr = (char *)d + mp->m_dirblksize;
534 else {
535 xfs_dir2_block_tail_t *btp; /* block tail */
537 ASSERT(be32_to_cpu(d->hdr.magic) == XFS_DIR2_BLOCK_MAGIC);
538 btp = xfs_dir2_block_tail_p(mp, (xfs_dir2_block_t *)d);
539 endptr = (char *)xfs_dir2_block_leaf_p(btp);
542 * If this isn't the start of the block, then back up to
543 * the previous entry and see if it's free.
545 if (offset > sizeof(d->hdr)) {
546 __be16 *tagp; /* tag just before us */
548 tagp = (__be16 *)((char *)d + offset) - 1;
549 prevdup = (xfs_dir2_data_unused_t *)((char *)d + be16_to_cpu(*tagp));
550 if (be16_to_cpu(prevdup->freetag) != XFS_DIR2_DATA_FREE_TAG)
551 prevdup = NULL;
552 } else
553 prevdup = NULL;
555 * If this isn't the end of the block, see if the entry after
556 * us is free.
558 if ((char *)d + offset + len < endptr) {
559 postdup =
560 (xfs_dir2_data_unused_t *)((char *)d + offset + len);
561 if (be16_to_cpu(postdup->freetag) != XFS_DIR2_DATA_FREE_TAG)
562 postdup = NULL;
563 } else
564 postdup = NULL;
565 ASSERT(*needscanp == 0);
566 needscan = 0;
568 * Previous and following entries are both free,
569 * merge everything into a single free entry.
571 if (prevdup && postdup) {
572 xfs_dir2_data_free_t *dfp2; /* another bestfree pointer */
575 * See if prevdup and/or postdup are in bestfree table.
577 dfp = xfs_dir2_data_freefind(d, prevdup);
578 dfp2 = xfs_dir2_data_freefind(d, postdup);
580 * We need a rescan unless there are exactly 2 free entries
581 * namely our two. Then we know what's happening, otherwise
582 * since the third bestfree is there, there might be more
583 * entries.
585 needscan = (d->hdr.bestfree[2].length != 0);
587 * Fix up the new big freespace.
589 be16_add(&prevdup->length, len + be16_to_cpu(postdup->length));
590 *xfs_dir2_data_unused_tag_p(prevdup) =
591 cpu_to_be16((char *)prevdup - (char *)d);
592 xfs_dir2_data_log_unused(tp, bp, prevdup);
593 if (!needscan) {
595 * Has to be the case that entries 0 and 1 are
596 * dfp and dfp2 (don't know which is which), and
597 * entry 2 is empty.
598 * Remove entry 1 first then entry 0.
600 ASSERT(dfp && dfp2);
601 if (dfp == &d->hdr.bestfree[1]) {
602 dfp = &d->hdr.bestfree[0];
603 ASSERT(dfp2 == dfp);
604 dfp2 = &d->hdr.bestfree[1];
606 xfs_dir2_data_freeremove(d, dfp2, needlogp);
607 xfs_dir2_data_freeremove(d, dfp, needlogp);
609 * Now insert the new entry.
611 dfp = xfs_dir2_data_freeinsert(d, prevdup, needlogp);
612 ASSERT(dfp == &d->hdr.bestfree[0]);
613 ASSERT(dfp->length == prevdup->length);
614 ASSERT(!dfp[1].length);
615 ASSERT(!dfp[2].length);
619 * The entry before us is free, merge with it.
621 else if (prevdup) {
622 dfp = xfs_dir2_data_freefind(d, prevdup);
623 be16_add(&prevdup->length, len);
624 *xfs_dir2_data_unused_tag_p(prevdup) =
625 cpu_to_be16((char *)prevdup - (char *)d);
626 xfs_dir2_data_log_unused(tp, bp, prevdup);
628 * If the previous entry was in the table, the new entry
629 * is longer, so it will be in the table too. Remove
630 * the old one and add the new one.
632 if (dfp) {
633 xfs_dir2_data_freeremove(d, dfp, needlogp);
634 (void)xfs_dir2_data_freeinsert(d, prevdup, needlogp);
637 * Otherwise we need a scan if the new entry is big enough.
639 else {
640 needscan = be16_to_cpu(prevdup->length) >
641 be16_to_cpu(d->hdr.bestfree[2].length);
645 * The following entry is free, merge with it.
647 else if (postdup) {
648 dfp = xfs_dir2_data_freefind(d, postdup);
649 newdup = (xfs_dir2_data_unused_t *)((char *)d + offset);
650 newdup->freetag = cpu_to_be16(XFS_DIR2_DATA_FREE_TAG);
651 newdup->length = cpu_to_be16(len + be16_to_cpu(postdup->length));
652 *xfs_dir2_data_unused_tag_p(newdup) =
653 cpu_to_be16((char *)newdup - (char *)d);
654 xfs_dir2_data_log_unused(tp, bp, newdup);
656 * If the following entry was in the table, the new entry
657 * is longer, so it will be in the table too. Remove
658 * the old one and add the new one.
660 if (dfp) {
661 xfs_dir2_data_freeremove(d, dfp, needlogp);
662 (void)xfs_dir2_data_freeinsert(d, newdup, needlogp);
665 * Otherwise we need a scan if the new entry is big enough.
667 else {
668 needscan = be16_to_cpu(newdup->length) >
669 be16_to_cpu(d->hdr.bestfree[2].length);
673 * Neither neighbor is free. Make a new entry.
675 else {
676 newdup = (xfs_dir2_data_unused_t *)((char *)d + offset);
677 newdup->freetag = cpu_to_be16(XFS_DIR2_DATA_FREE_TAG);
678 newdup->length = cpu_to_be16(len);
679 *xfs_dir2_data_unused_tag_p(newdup) =
680 cpu_to_be16((char *)newdup - (char *)d);
681 xfs_dir2_data_log_unused(tp, bp, newdup);
682 (void)xfs_dir2_data_freeinsert(d, newdup, needlogp);
684 *needscanp = needscan;
688 * Take a byte range out of an existing unused space and make it un-free.
690 void
691 xfs_dir2_data_use_free(
692 xfs_trans_t *tp, /* transaction pointer */
693 xfs_dabuf_t *bp, /* data block buffer */
694 xfs_dir2_data_unused_t *dup, /* unused entry */
695 xfs_dir2_data_aoff_t offset, /* starting offset to use */
696 xfs_dir2_data_aoff_t len, /* length to use */
697 int *needlogp, /* out: need to log header */
698 int *needscanp) /* out: need regen bestfree */
700 xfs_dir2_data_t *d; /* data block */
701 xfs_dir2_data_free_t *dfp; /* bestfree pointer */
702 int matchback; /* matches end of freespace */
703 int matchfront; /* matches start of freespace */
704 int needscan; /* need to regen bestfree */
705 xfs_dir2_data_unused_t *newdup; /* new unused entry */
706 xfs_dir2_data_unused_t *newdup2; /* another new unused entry */
707 int oldlen; /* old unused entry's length */
709 d = bp->data;
710 ASSERT(be32_to_cpu(d->hdr.magic) == XFS_DIR2_DATA_MAGIC ||
711 be32_to_cpu(d->hdr.magic) == XFS_DIR2_BLOCK_MAGIC);
712 ASSERT(be16_to_cpu(dup->freetag) == XFS_DIR2_DATA_FREE_TAG);
713 ASSERT(offset >= (char *)dup - (char *)d);
714 ASSERT(offset + len <= (char *)dup + be16_to_cpu(dup->length) - (char *)d);
715 ASSERT((char *)dup - (char *)d == be16_to_cpu(*xfs_dir2_data_unused_tag_p(dup)));
717 * Look up the entry in the bestfree table.
719 dfp = xfs_dir2_data_freefind(d, dup);
720 oldlen = be16_to_cpu(dup->length);
721 ASSERT(dfp || oldlen <= be16_to_cpu(d->hdr.bestfree[2].length));
723 * Check for alignment with front and back of the entry.
725 matchfront = (char *)dup - (char *)d == offset;
726 matchback = (char *)dup + oldlen - (char *)d == offset + len;
727 ASSERT(*needscanp == 0);
728 needscan = 0;
730 * If we matched it exactly we just need to get rid of it from
731 * the bestfree table.
733 if (matchfront && matchback) {
734 if (dfp) {
735 needscan = (d->hdr.bestfree[2].offset != 0);
736 if (!needscan)
737 xfs_dir2_data_freeremove(d, dfp, needlogp);
741 * We match the first part of the entry.
742 * Make a new entry with the remaining freespace.
744 else if (matchfront) {
745 newdup = (xfs_dir2_data_unused_t *)((char *)d + offset + len);
746 newdup->freetag = cpu_to_be16(XFS_DIR2_DATA_FREE_TAG);
747 newdup->length = cpu_to_be16(oldlen - len);
748 *xfs_dir2_data_unused_tag_p(newdup) =
749 cpu_to_be16((char *)newdup - (char *)d);
750 xfs_dir2_data_log_unused(tp, bp, newdup);
752 * If it was in the table, remove it and add the new one.
754 if (dfp) {
755 xfs_dir2_data_freeremove(d, dfp, needlogp);
756 dfp = xfs_dir2_data_freeinsert(d, newdup, needlogp);
757 ASSERT(dfp != NULL);
758 ASSERT(dfp->length == newdup->length);
759 ASSERT(be16_to_cpu(dfp->offset) == (char *)newdup - (char *)d);
761 * If we got inserted at the last slot,
762 * that means we don't know if there was a better
763 * choice for the last slot, or not. Rescan.
765 needscan = dfp == &d->hdr.bestfree[2];
769 * We match the last part of the entry.
770 * Trim the allocated space off the tail of the entry.
772 else if (matchback) {
773 newdup = dup;
774 newdup->length = cpu_to_be16(((char *)d + offset) - (char *)newdup);
775 *xfs_dir2_data_unused_tag_p(newdup) =
776 cpu_to_be16((char *)newdup - (char *)d);
777 xfs_dir2_data_log_unused(tp, bp, newdup);
779 * If it was in the table, remove it and add the new one.
781 if (dfp) {
782 xfs_dir2_data_freeremove(d, dfp, needlogp);
783 dfp = xfs_dir2_data_freeinsert(d, newdup, needlogp);
784 ASSERT(dfp != NULL);
785 ASSERT(dfp->length == newdup->length);
786 ASSERT(be16_to_cpu(dfp->offset) == (char *)newdup - (char *)d);
788 * If we got inserted at the last slot,
789 * that means we don't know if there was a better
790 * choice for the last slot, or not. Rescan.
792 needscan = dfp == &d->hdr.bestfree[2];
796 * Poking out the middle of an entry.
797 * Make two new entries.
799 else {
800 newdup = dup;
801 newdup->length = cpu_to_be16(((char *)d + offset) - (char *)newdup);
802 *xfs_dir2_data_unused_tag_p(newdup) =
803 cpu_to_be16((char *)newdup - (char *)d);
804 xfs_dir2_data_log_unused(tp, bp, newdup);
805 newdup2 = (xfs_dir2_data_unused_t *)((char *)d + offset + len);
806 newdup2->freetag = cpu_to_be16(XFS_DIR2_DATA_FREE_TAG);
807 newdup2->length = cpu_to_be16(oldlen - len - be16_to_cpu(newdup->length));
808 *xfs_dir2_data_unused_tag_p(newdup2) =
809 cpu_to_be16((char *)newdup2 - (char *)d);
810 xfs_dir2_data_log_unused(tp, bp, newdup2);
812 * If the old entry was in the table, we need to scan
813 * if the 3rd entry was valid, since these entries
814 * are smaller than the old one.
815 * If we don't need to scan that means there were 1 or 2
816 * entries in the table, and removing the old and adding
817 * the 2 new will work.
819 if (dfp) {
820 needscan = (d->hdr.bestfree[2].length != 0);
821 if (!needscan) {
822 xfs_dir2_data_freeremove(d, dfp, needlogp);
823 (void)xfs_dir2_data_freeinsert(d, newdup,
824 needlogp);
825 (void)xfs_dir2_data_freeinsert(d, newdup2,
826 needlogp);
830 *needscanp = needscan;