]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blob - fs/xfs/xfs_dir2_leaf.c
xfs: reshuffle dir2 definitions around for userspace
[mirror_ubuntu-bionic-kernel.git] / fs / xfs / xfs_dir2_leaf.c
1 /*
2 * Copyright (c) 2000-2003,2005 Silicon Graphics, Inc.
3 * Copyright (c) 2013 Red Hat, Inc.
4 * All Rights Reserved.
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License as
8 * published by the Free Software Foundation.
9 *
10 * This program is distributed in the hope that it would be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write the Free Software Foundation,
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
18 */
19 #include "xfs.h"
20 #include "xfs_fs.h"
21 #include "xfs_types.h"
22 #include "xfs_bit.h"
23 #include "xfs_log.h"
24 #include "xfs_trans.h"
25 #include "xfs_sb.h"
26 #include "xfs_ag.h"
27 #include "xfs_mount.h"
28 #include "xfs_da_btree.h"
29 #include "xfs_bmap_btree.h"
30 #include "xfs_dinode.h"
31 #include "xfs_inode.h"
32 #include "xfs_bmap.h"
33 #include "xfs_dir2_format.h"
34 #include "xfs_dir2.h"
35 #include "xfs_dir2_priv.h"
36 #include "xfs_error.h"
37 #include "xfs_trace.h"
38 #include "xfs_buf_item.h"
39 #include "xfs_cksum.h"
40
41 /*
42 * Local function declarations.
43 */
44 static int xfs_dir2_leaf_lookup_int(xfs_da_args_t *args, struct xfs_buf **lbpp,
45 int *indexp, struct xfs_buf **dbpp);
46 static void xfs_dir3_leaf_log_bests(struct xfs_trans *tp, struct xfs_buf *bp,
47 int first, int last);
48 static void xfs_dir3_leaf_log_tail(struct xfs_trans *tp, struct xfs_buf *bp);
49
50 /*
51 * Check the internal consistency of a leaf1 block.
52 * Pop an assert if something is wrong.
53 */
54 #ifdef DEBUG
55 #define xfs_dir3_leaf_check(mp, bp) \
56 do { \
57 if (!xfs_dir3_leaf1_check((mp), (bp))) \
58 ASSERT(0); \
59 } while (0);
60
61 STATIC bool
62 xfs_dir3_leaf1_check(
63 struct xfs_mount *mp,
64 struct xfs_buf *bp)
65 {
66 struct xfs_dir2_leaf *leaf = bp->b_addr;
67 struct xfs_dir3_icleaf_hdr leafhdr;
68
69 xfs_dir3_leaf_hdr_from_disk(&leafhdr, leaf);
70
71 if (leafhdr.magic == XFS_DIR3_LEAF1_MAGIC) {
72 struct xfs_dir3_leaf_hdr *leaf3 = bp->b_addr;
73 if (be64_to_cpu(leaf3->info.blkno) != bp->b_bn)
74 return false;
75 } else if (leafhdr.magic != XFS_DIR2_LEAF1_MAGIC)
76 return false;
77
78 return xfs_dir3_leaf_check_int(mp, &leafhdr, leaf);
79 }
80 #else
81 #define xfs_dir3_leaf_check(mp, bp)
82 #endif
83
84 void
85 xfs_dir3_leaf_hdr_from_disk(
86 struct xfs_dir3_icleaf_hdr *to,
87 struct xfs_dir2_leaf *from)
88 {
89 if (from->hdr.info.magic == cpu_to_be16(XFS_DIR2_LEAF1_MAGIC) ||
90 from->hdr.info.magic == cpu_to_be16(XFS_DIR2_LEAFN_MAGIC)) {
91 to->forw = be32_to_cpu(from->hdr.info.forw);
92 to->back = be32_to_cpu(from->hdr.info.back);
93 to->magic = be16_to_cpu(from->hdr.info.magic);
94 to->count = be16_to_cpu(from->hdr.count);
95 to->stale = be16_to_cpu(from->hdr.stale);
96 } else {
97 struct xfs_dir3_leaf_hdr *hdr3 = (struct xfs_dir3_leaf_hdr *)from;
98
99 to->forw = be32_to_cpu(hdr3->info.hdr.forw);
100 to->back = be32_to_cpu(hdr3->info.hdr.back);
101 to->magic = be16_to_cpu(hdr3->info.hdr.magic);
102 to->count = be16_to_cpu(hdr3->count);
103 to->stale = be16_to_cpu(hdr3->stale);
104 }
105
106 ASSERT(to->magic == XFS_DIR2_LEAF1_MAGIC ||
107 to->magic == XFS_DIR3_LEAF1_MAGIC ||
108 to->magic == XFS_DIR2_LEAFN_MAGIC ||
109 to->magic == XFS_DIR3_LEAFN_MAGIC);
110 }
111
112 void
113 xfs_dir3_leaf_hdr_to_disk(
114 struct xfs_dir2_leaf *to,
115 struct xfs_dir3_icleaf_hdr *from)
116 {
117 ASSERT(from->magic == XFS_DIR2_LEAF1_MAGIC ||
118 from->magic == XFS_DIR3_LEAF1_MAGIC ||
119 from->magic == XFS_DIR2_LEAFN_MAGIC ||
120 from->magic == XFS_DIR3_LEAFN_MAGIC);
121
122 if (from->magic == XFS_DIR2_LEAF1_MAGIC ||
123 from->magic == XFS_DIR2_LEAFN_MAGIC) {
124 to->hdr.info.forw = cpu_to_be32(from->forw);
125 to->hdr.info.back = cpu_to_be32(from->back);
126 to->hdr.info.magic = cpu_to_be16(from->magic);
127 to->hdr.count = cpu_to_be16(from->count);
128 to->hdr.stale = cpu_to_be16(from->stale);
129 } else {
130 struct xfs_dir3_leaf_hdr *hdr3 = (struct xfs_dir3_leaf_hdr *)to;
131
132 hdr3->info.hdr.forw = cpu_to_be32(from->forw);
133 hdr3->info.hdr.back = cpu_to_be32(from->back);
134 hdr3->info.hdr.magic = cpu_to_be16(from->magic);
135 hdr3->count = cpu_to_be16(from->count);
136 hdr3->stale = cpu_to_be16(from->stale);
137 }
138 }
139
140 bool
141 xfs_dir3_leaf_check_int(
142 struct xfs_mount *mp,
143 struct xfs_dir3_icleaf_hdr *hdr,
144 struct xfs_dir2_leaf *leaf)
145 {
146 struct xfs_dir2_leaf_entry *ents;
147 xfs_dir2_leaf_tail_t *ltp;
148 int stale;
149 int i;
150
151 ents = xfs_dir3_leaf_ents_p(leaf);
152 ltp = xfs_dir2_leaf_tail_p(mp, leaf);
153
154 /*
155 * XXX (dgc): This value is not restrictive enough.
156 * Should factor in the size of the bests table as well.
157 * We can deduce a value for that from di_size.
158 */
159 if (hdr->count > xfs_dir3_max_leaf_ents(mp, leaf))
160 return false;
161
162 /* Leaves and bests don't overlap in leaf format. */
163 if ((hdr->magic == XFS_DIR2_LEAF1_MAGIC ||
164 hdr->magic == XFS_DIR3_LEAF1_MAGIC) &&
165 (char *)&ents[hdr->count] > (char *)xfs_dir2_leaf_bests_p(ltp))
166 return false;
167
168 /* Check hash value order, count stale entries. */
169 for (i = stale = 0; i < hdr->count; i++) {
170 if (i + 1 < hdr->count) {
171 if (be32_to_cpu(ents[i].hashval) >
172 be32_to_cpu(ents[i + 1].hashval))
173 return false;
174 }
175 if (ents[i].address == cpu_to_be32(XFS_DIR2_NULL_DATAPTR))
176 stale++;
177 }
178 if (hdr->stale != stale)
179 return false;
180 return true;
181 }
182
183 static bool
184 xfs_dir3_leaf_verify(
185 struct xfs_buf *bp,
186 __uint16_t magic)
187 {
188 struct xfs_mount *mp = bp->b_target->bt_mount;
189 struct xfs_dir2_leaf *leaf = bp->b_addr;
190 struct xfs_dir3_icleaf_hdr leafhdr;
191
192 ASSERT(magic == XFS_DIR2_LEAF1_MAGIC || magic == XFS_DIR2_LEAFN_MAGIC);
193
194 xfs_dir3_leaf_hdr_from_disk(&leafhdr, leaf);
195 if (xfs_sb_version_hascrc(&mp->m_sb)) {
196 struct xfs_dir3_leaf_hdr *leaf3 = bp->b_addr;
197
198 if ((magic == XFS_DIR2_LEAF1_MAGIC &&
199 leafhdr.magic != XFS_DIR3_LEAF1_MAGIC) ||
200 (magic == XFS_DIR2_LEAFN_MAGIC &&
201 leafhdr.magic != XFS_DIR3_LEAFN_MAGIC))
202 return false;
203
204 if (!uuid_equal(&leaf3->info.uuid, &mp->m_sb.sb_uuid))
205 return false;
206 if (be64_to_cpu(leaf3->info.blkno) != bp->b_bn)
207 return false;
208 } else {
209 if (leafhdr.magic != magic)
210 return false;
211 }
212 return xfs_dir3_leaf_check_int(mp, &leafhdr, leaf);
213 }
214
215 static void
216 __read_verify(
217 struct xfs_buf *bp,
218 __uint16_t magic)
219 {
220 struct xfs_mount *mp = bp->b_target->bt_mount;
221
222 if ((xfs_sb_version_hascrc(&mp->m_sb) &&
223 !xfs_verify_cksum(bp->b_addr, BBTOB(bp->b_length),
224 XFS_DIR3_LEAF_CRC_OFF)) ||
225 !xfs_dir3_leaf_verify(bp, magic)) {
226 XFS_CORRUPTION_ERROR(__func__, XFS_ERRLEVEL_LOW, mp, bp->b_addr);
227 xfs_buf_ioerror(bp, EFSCORRUPTED);
228 }
229 }
230
231 static void
232 __write_verify(
233 struct xfs_buf *bp,
234 __uint16_t magic)
235 {
236 struct xfs_mount *mp = bp->b_target->bt_mount;
237 struct xfs_buf_log_item *bip = bp->b_fspriv;
238 struct xfs_dir3_leaf_hdr *hdr3 = bp->b_addr;
239
240 if (!xfs_dir3_leaf_verify(bp, magic)) {
241 XFS_CORRUPTION_ERROR(__func__, XFS_ERRLEVEL_LOW, mp, bp->b_addr);
242 xfs_buf_ioerror(bp, EFSCORRUPTED);
243 return;
244 }
245
246 if (!xfs_sb_version_hascrc(&mp->m_sb))
247 return;
248
249 if (bip)
250 hdr3->info.lsn = cpu_to_be64(bip->bli_item.li_lsn);
251
252 xfs_update_cksum(bp->b_addr, BBTOB(bp->b_length), XFS_DIR3_LEAF_CRC_OFF);
253 }
254
255 static void
256 xfs_dir3_leaf1_read_verify(
257 struct xfs_buf *bp)
258 {
259 __read_verify(bp, XFS_DIR2_LEAF1_MAGIC);
260 }
261
262 static void
263 xfs_dir3_leaf1_write_verify(
264 struct xfs_buf *bp)
265 {
266 __write_verify(bp, XFS_DIR2_LEAF1_MAGIC);
267 }
268
269 static void
270 xfs_dir3_leafn_read_verify(
271 struct xfs_buf *bp)
272 {
273 __read_verify(bp, XFS_DIR2_LEAFN_MAGIC);
274 }
275
276 static void
277 xfs_dir3_leafn_write_verify(
278 struct xfs_buf *bp)
279 {
280 __write_verify(bp, XFS_DIR2_LEAFN_MAGIC);
281 }
282
283 const struct xfs_buf_ops xfs_dir3_leaf1_buf_ops = {
284 .verify_read = xfs_dir3_leaf1_read_verify,
285 .verify_write = xfs_dir3_leaf1_write_verify,
286 };
287
288 const struct xfs_buf_ops xfs_dir3_leafn_buf_ops = {
289 .verify_read = xfs_dir3_leafn_read_verify,
290 .verify_write = xfs_dir3_leafn_write_verify,
291 };
292
293 static int
294 xfs_dir3_leaf_read(
295 struct xfs_trans *tp,
296 struct xfs_inode *dp,
297 xfs_dablk_t fbno,
298 xfs_daddr_t mappedbno,
299 struct xfs_buf **bpp)
300 {
301 int err;
302
303 err = xfs_da_read_buf(tp, dp, fbno, mappedbno, bpp,
304 XFS_DATA_FORK, &xfs_dir3_leaf1_buf_ops);
305 if (!err && tp)
306 xfs_trans_buf_set_type(tp, *bpp, XFS_BLFT_DIR_LEAF1_BUF);
307 return err;
308 }
309
310 int
311 xfs_dir3_leafn_read(
312 struct xfs_trans *tp,
313 struct xfs_inode *dp,
314 xfs_dablk_t fbno,
315 xfs_daddr_t mappedbno,
316 struct xfs_buf **bpp)
317 {
318 int err;
319
320 err = xfs_da_read_buf(tp, dp, fbno, mappedbno, bpp,
321 XFS_DATA_FORK, &xfs_dir3_leafn_buf_ops);
322 if (!err && tp)
323 xfs_trans_buf_set_type(tp, *bpp, XFS_BLFT_DIR_LEAFN_BUF);
324 return err;
325 }
326
327 /*
328 * Initialize a new leaf block, leaf1 or leafn magic accepted.
329 */
330 static void
331 xfs_dir3_leaf_init(
332 struct xfs_mount *mp,
333 struct xfs_trans *tp,
334 struct xfs_buf *bp,
335 xfs_ino_t owner,
336 __uint16_t type)
337 {
338 struct xfs_dir2_leaf *leaf = bp->b_addr;
339
340 ASSERT(type == XFS_DIR2_LEAF1_MAGIC || type == XFS_DIR2_LEAFN_MAGIC);
341
342 if (xfs_sb_version_hascrc(&mp->m_sb)) {
343 struct xfs_dir3_leaf_hdr *leaf3 = bp->b_addr;
344
345 memset(leaf3, 0, sizeof(*leaf3));
346
347 leaf3->info.hdr.magic = (type == XFS_DIR2_LEAF1_MAGIC)
348 ? cpu_to_be16(XFS_DIR3_LEAF1_MAGIC)
349 : cpu_to_be16(XFS_DIR3_LEAFN_MAGIC);
350 leaf3->info.blkno = cpu_to_be64(bp->b_bn);
351 leaf3->info.owner = cpu_to_be64(owner);
352 uuid_copy(&leaf3->info.uuid, &mp->m_sb.sb_uuid);
353 } else {
354 memset(leaf, 0, sizeof(*leaf));
355 leaf->hdr.info.magic = cpu_to_be16(type);
356 }
357
358 /*
359 * If it's a leaf-format directory initialize the tail.
360 * Caller is responsible for initialising the bests table.
361 */
362 if (type == XFS_DIR2_LEAF1_MAGIC) {
363 struct xfs_dir2_leaf_tail *ltp;
364
365 ltp = xfs_dir2_leaf_tail_p(mp, leaf);
366 ltp->bestcount = 0;
367 bp->b_ops = &xfs_dir3_leaf1_buf_ops;
368 xfs_trans_buf_set_type(tp, bp, XFS_BLFT_DIR_LEAF1_BUF);
369 } else {
370 bp->b_ops = &xfs_dir3_leafn_buf_ops;
371 xfs_trans_buf_set_type(tp, bp, XFS_BLFT_DIR_LEAFN_BUF);
372 }
373 }
374
375 int
376 xfs_dir3_leaf_get_buf(
377 xfs_da_args_t *args,
378 xfs_dir2_db_t bno,
379 struct xfs_buf **bpp,
380 __uint16_t magic)
381 {
382 struct xfs_inode *dp = args->dp;
383 struct xfs_trans *tp = args->trans;
384 struct xfs_mount *mp = dp->i_mount;
385 struct xfs_buf *bp;
386 int error;
387
388 ASSERT(magic == XFS_DIR2_LEAF1_MAGIC || magic == XFS_DIR2_LEAFN_MAGIC);
389 ASSERT(bno >= XFS_DIR2_LEAF_FIRSTDB(mp) &&
390 bno < XFS_DIR2_FREE_FIRSTDB(mp));
391
392 error = xfs_da_get_buf(tp, dp, xfs_dir2_db_to_da(mp, bno), -1, &bp,
393 XFS_DATA_FORK);
394 if (error)
395 return error;
396
397 xfs_dir3_leaf_init(mp, tp, bp, dp->i_ino, magic);
398 xfs_dir3_leaf_log_header(tp, bp);
399 if (magic == XFS_DIR2_LEAF1_MAGIC)
400 xfs_dir3_leaf_log_tail(tp, bp);
401 *bpp = bp;
402 return 0;
403 }
404
405 /*
406 * Convert a block form directory to a leaf form directory.
407 */
408 int /* error */
409 xfs_dir2_block_to_leaf(
410 xfs_da_args_t *args, /* operation arguments */
411 struct xfs_buf *dbp) /* input block's buffer */
412 {
413 __be16 *bestsp; /* leaf's bestsp entries */
414 xfs_dablk_t blkno; /* leaf block's bno */
415 xfs_dir2_data_hdr_t *hdr; /* block header */
416 xfs_dir2_leaf_entry_t *blp; /* block's leaf entries */
417 xfs_dir2_block_tail_t *btp; /* block's tail */
418 xfs_inode_t *dp; /* incore directory inode */
419 int error; /* error return code */
420 struct xfs_buf *lbp; /* leaf block's buffer */
421 xfs_dir2_db_t ldb; /* leaf block's bno */
422 xfs_dir2_leaf_t *leaf; /* leaf structure */
423 xfs_dir2_leaf_tail_t *ltp; /* leaf's tail */
424 xfs_mount_t *mp; /* filesystem mount point */
425 int needlog; /* need to log block header */
426 int needscan; /* need to rescan bestfree */
427 xfs_trans_t *tp; /* transaction pointer */
428 struct xfs_dir2_data_free *bf;
429 struct xfs_dir2_leaf_entry *ents;
430 struct xfs_dir3_icleaf_hdr leafhdr;
431
432 trace_xfs_dir2_block_to_leaf(args);
433
434 dp = args->dp;
435 mp = dp->i_mount;
436 tp = args->trans;
437 /*
438 * Add the leaf block to the inode.
439 * This interface will only put blocks in the leaf/node range.
440 * Since that's empty now, we'll get the root (block 0 in range).
441 */
442 if ((error = xfs_da_grow_inode(args, &blkno))) {
443 return error;
444 }
445 ldb = xfs_dir2_da_to_db(mp, blkno);
446 ASSERT(ldb == XFS_DIR2_LEAF_FIRSTDB(mp));
447 /*
448 * Initialize the leaf block, get a buffer for it.
449 */
450 error = xfs_dir3_leaf_get_buf(args, ldb, &lbp, XFS_DIR2_LEAF1_MAGIC);
451 if (error)
452 return error;
453
454 leaf = lbp->b_addr;
455 hdr = dbp->b_addr;
456 xfs_dir3_data_check(dp, dbp);
457 btp = xfs_dir2_block_tail_p(mp, hdr);
458 blp = xfs_dir2_block_leaf_p(btp);
459 bf = xfs_dir3_data_bestfree_p(hdr);
460 ents = xfs_dir3_leaf_ents_p(leaf);
461
462 /*
463 * Set the counts in the leaf header.
464 */
465 xfs_dir3_leaf_hdr_from_disk(&leafhdr, leaf);
466 leafhdr.count = be32_to_cpu(btp->count);
467 leafhdr.stale = be32_to_cpu(btp->stale);
468 xfs_dir3_leaf_hdr_to_disk(leaf, &leafhdr);
469 xfs_dir3_leaf_log_header(tp, lbp);
470
471 /*
472 * Could compact these but I think we always do the conversion
473 * after squeezing out stale entries.
474 */
475 memcpy(ents, blp, be32_to_cpu(btp->count) * sizeof(xfs_dir2_leaf_entry_t));
476 xfs_dir3_leaf_log_ents(tp, lbp, 0, leafhdr.count - 1);
477 needscan = 0;
478 needlog = 1;
479 /*
480 * Make the space formerly occupied by the leaf entries and block
481 * tail be free.
482 */
483 xfs_dir2_data_make_free(tp, dbp,
484 (xfs_dir2_data_aoff_t)((char *)blp - (char *)hdr),
485 (xfs_dir2_data_aoff_t)((char *)hdr + mp->m_dirblksize -
486 (char *)blp),
487 &needlog, &needscan);
488 /*
489 * Fix up the block header, make it a data block.
490 */
491 dbp->b_ops = &xfs_dir3_data_buf_ops;
492 xfs_trans_buf_set_type(tp, dbp, XFS_BLFT_DIR_DATA_BUF);
493 if (hdr->magic == cpu_to_be32(XFS_DIR2_BLOCK_MAGIC))
494 hdr->magic = cpu_to_be32(XFS_DIR2_DATA_MAGIC);
495 else
496 hdr->magic = cpu_to_be32(XFS_DIR3_DATA_MAGIC);
497
498 if (needscan)
499 xfs_dir2_data_freescan(mp, hdr, &needlog);
500 /*
501 * Set up leaf tail and bests table.
502 */
503 ltp = xfs_dir2_leaf_tail_p(mp, leaf);
504 ltp->bestcount = cpu_to_be32(1);
505 bestsp = xfs_dir2_leaf_bests_p(ltp);
506 bestsp[0] = bf[0].length;
507 /*
508 * Log the data header and leaf bests table.
509 */
510 if (needlog)
511 xfs_dir2_data_log_header(tp, dbp);
512 xfs_dir3_leaf_check(mp, lbp);
513 xfs_dir3_data_check(dp, dbp);
514 xfs_dir3_leaf_log_bests(tp, lbp, 0, 0);
515 return 0;
516 }
517
518 STATIC void
519 xfs_dir3_leaf_find_stale(
520 struct xfs_dir3_icleaf_hdr *leafhdr,
521 struct xfs_dir2_leaf_entry *ents,
522 int index,
523 int *lowstale,
524 int *highstale)
525 {
526 /*
527 * Find the first stale entry before our index, if any.
528 */
529 for (*lowstale = index - 1; *lowstale >= 0; --*lowstale) {
530 if (ents[*lowstale].address ==
531 cpu_to_be32(XFS_DIR2_NULL_DATAPTR))
532 break;
533 }
534
535 /*
536 * Find the first stale entry at or after our index, if any.
537 * Stop if the result would require moving more entries than using
538 * lowstale.
539 */
540 for (*highstale = index; *highstale < leafhdr->count; ++*highstale) {
541 if (ents[*highstale].address ==
542 cpu_to_be32(XFS_DIR2_NULL_DATAPTR))
543 break;
544 if (*lowstale >= 0 && index - *lowstale <= *highstale - index)
545 break;
546 }
547 }
548
549 struct xfs_dir2_leaf_entry *
550 xfs_dir3_leaf_find_entry(
551 struct xfs_dir3_icleaf_hdr *leafhdr,
552 struct xfs_dir2_leaf_entry *ents,
553 int index, /* leaf table position */
554 int compact, /* need to compact leaves */
555 int lowstale, /* index of prev stale leaf */
556 int highstale, /* index of next stale leaf */
557 int *lfloglow, /* low leaf logging index */
558 int *lfloghigh) /* high leaf logging index */
559 {
560 if (!leafhdr->stale) {
561 xfs_dir2_leaf_entry_t *lep; /* leaf entry table pointer */
562
563 /*
564 * Now we need to make room to insert the leaf entry.
565 *
566 * If there are no stale entries, just insert a hole at index.
567 */
568 lep = &ents[index];
569 if (index < leafhdr->count)
570 memmove(lep + 1, lep,
571 (leafhdr->count - index) * sizeof(*lep));
572
573 /*
574 * Record low and high logging indices for the leaf.
575 */
576 *lfloglow = index;
577 *lfloghigh = leafhdr->count++;
578 return lep;
579 }
580
581 /*
582 * There are stale entries.
583 *
584 * We will use one of them for the new entry. It's probably not at
585 * the right location, so we'll have to shift some up or down first.
586 *
587 * If we didn't compact before, we need to find the nearest stale
588 * entries before and after our insertion point.
589 */
590 if (compact == 0)
591 xfs_dir3_leaf_find_stale(leafhdr, ents, index,
592 &lowstale, &highstale);
593
594 /*
595 * If the low one is better, use it.
596 */
597 if (lowstale >= 0 &&
598 (highstale == leafhdr->count ||
599 index - lowstale - 1 < highstale - index)) {
600 ASSERT(index - lowstale - 1 >= 0);
601 ASSERT(ents[lowstale].address ==
602 cpu_to_be32(XFS_DIR2_NULL_DATAPTR));
603
604 /*
605 * Copy entries up to cover the stale entry and make room
606 * for the new entry.
607 */
608 if (index - lowstale - 1 > 0) {
609 memmove(&ents[lowstale], &ents[lowstale + 1],
610 (index - lowstale - 1) *
611 sizeof(xfs_dir2_leaf_entry_t));
612 }
613 *lfloglow = MIN(lowstale, *lfloglow);
614 *lfloghigh = MAX(index - 1, *lfloghigh);
615 leafhdr->stale--;
616 return &ents[index - 1];
617 }
618
619 /*
620 * The high one is better, so use that one.
621 */
622 ASSERT(highstale - index >= 0);
623 ASSERT(ents[highstale].address == cpu_to_be32(XFS_DIR2_NULL_DATAPTR));
624
625 /*
626 * Copy entries down to cover the stale entry and make room for the
627 * new entry.
628 */
629 if (highstale - index > 0) {
630 memmove(&ents[index + 1], &ents[index],
631 (highstale - index) * sizeof(xfs_dir2_leaf_entry_t));
632 }
633 *lfloglow = MIN(index, *lfloglow);
634 *lfloghigh = MAX(highstale, *lfloghigh);
635 leafhdr->stale--;
636 return &ents[index];
637 }
638
639 /*
640 * Add an entry to a leaf form directory.
641 */
642 int /* error */
643 xfs_dir2_leaf_addname(
644 xfs_da_args_t *args) /* operation arguments */
645 {
646 __be16 *bestsp; /* freespace table in leaf */
647 int compact; /* need to compact leaves */
648 xfs_dir2_data_hdr_t *hdr; /* data block header */
649 struct xfs_buf *dbp; /* data block buffer */
650 xfs_dir2_data_entry_t *dep; /* data block entry */
651 xfs_inode_t *dp; /* incore directory inode */
652 xfs_dir2_data_unused_t *dup; /* data unused entry */
653 int error; /* error return value */
654 int grown; /* allocated new data block */
655 int highstale; /* index of next stale leaf */
656 int i; /* temporary, index */
657 int index; /* leaf table position */
658 struct xfs_buf *lbp; /* leaf's buffer */
659 xfs_dir2_leaf_t *leaf; /* leaf structure */
660 int length; /* length of new entry */
661 xfs_dir2_leaf_entry_t *lep; /* leaf entry table pointer */
662 int lfloglow; /* low leaf logging index */
663 int lfloghigh; /* high leaf logging index */
664 int lowstale; /* index of prev stale leaf */
665 xfs_dir2_leaf_tail_t *ltp; /* leaf tail pointer */
666 xfs_mount_t *mp; /* filesystem mount point */
667 int needbytes; /* leaf block bytes needed */
668 int needlog; /* need to log data header */
669 int needscan; /* need to rescan data free */
670 __be16 *tagp; /* end of data entry */
671 xfs_trans_t *tp; /* transaction pointer */
672 xfs_dir2_db_t use_block; /* data block number */
673 struct xfs_dir2_data_free *bf; /* bestfree table */
674 struct xfs_dir2_leaf_entry *ents;
675 struct xfs_dir3_icleaf_hdr leafhdr;
676
677 trace_xfs_dir2_leaf_addname(args);
678
679 dp = args->dp;
680 tp = args->trans;
681 mp = dp->i_mount;
682
683 error = xfs_dir3_leaf_read(tp, dp, mp->m_dirleafblk, -1, &lbp);
684 if (error)
685 return error;
686
687 /*
688 * Look up the entry by hash value and name.
689 * We know it's not there, our caller has already done a lookup.
690 * So the index is of the entry to insert in front of.
691 * But if there are dup hash values the index is of the first of those.
692 */
693 index = xfs_dir2_leaf_search_hash(args, lbp);
694 leaf = lbp->b_addr;
695 ltp = xfs_dir2_leaf_tail_p(mp, leaf);
696 ents = xfs_dir3_leaf_ents_p(leaf);
697 xfs_dir3_leaf_hdr_from_disk(&leafhdr, leaf);
698 bestsp = xfs_dir2_leaf_bests_p(ltp);
699 length = xfs_dir2_data_entsize(args->namelen);
700
701 /*
702 * See if there are any entries with the same hash value
703 * and space in their block for the new entry.
704 * This is good because it puts multiple same-hash value entries
705 * in a data block, improving the lookup of those entries.
706 */
707 for (use_block = -1, lep = &ents[index];
708 index < leafhdr.count && be32_to_cpu(lep->hashval) == args->hashval;
709 index++, lep++) {
710 if (be32_to_cpu(lep->address) == XFS_DIR2_NULL_DATAPTR)
711 continue;
712 i = xfs_dir2_dataptr_to_db(mp, be32_to_cpu(lep->address));
713 ASSERT(i < be32_to_cpu(ltp->bestcount));
714 ASSERT(bestsp[i] != cpu_to_be16(NULLDATAOFF));
715 if (be16_to_cpu(bestsp[i]) >= length) {
716 use_block = i;
717 break;
718 }
719 }
720 /*
721 * Didn't find a block yet, linear search all the data blocks.
722 */
723 if (use_block == -1) {
724 for (i = 0; i < be32_to_cpu(ltp->bestcount); i++) {
725 /*
726 * Remember a block we see that's missing.
727 */
728 if (bestsp[i] == cpu_to_be16(NULLDATAOFF) &&
729 use_block == -1)
730 use_block = i;
731 else if (be16_to_cpu(bestsp[i]) >= length) {
732 use_block = i;
733 break;
734 }
735 }
736 }
737 /*
738 * How many bytes do we need in the leaf block?
739 */
740 needbytes = 0;
741 if (!leafhdr.stale)
742 needbytes += sizeof(xfs_dir2_leaf_entry_t);
743 if (use_block == -1)
744 needbytes += sizeof(xfs_dir2_data_off_t);
745
746 /*
747 * Now kill use_block if it refers to a missing block, so we
748 * can use it as an indication of allocation needed.
749 */
750 if (use_block != -1 && bestsp[use_block] == cpu_to_be16(NULLDATAOFF))
751 use_block = -1;
752 /*
753 * If we don't have enough free bytes but we can make enough
754 * by compacting out stale entries, we'll do that.
755 */
756 if ((char *)bestsp - (char *)&ents[leafhdr.count] < needbytes &&
757 leafhdr.stale > 1)
758 compact = 1;
759
760 /*
761 * Otherwise if we don't have enough free bytes we need to
762 * convert to node form.
763 */
764 else if ((char *)bestsp - (char *)&ents[leafhdr.count] < needbytes) {
765 /*
766 * Just checking or no space reservation, give up.
767 */
768 if ((args->op_flags & XFS_DA_OP_JUSTCHECK) ||
769 args->total == 0) {
770 xfs_trans_brelse(tp, lbp);
771 return XFS_ERROR(ENOSPC);
772 }
773 /*
774 * Convert to node form.
775 */
776 error = xfs_dir2_leaf_to_node(args, lbp);
777 if (error)
778 return error;
779 /*
780 * Then add the new entry.
781 */
782 return xfs_dir2_node_addname(args);
783 }
784 /*
785 * Otherwise it will fit without compaction.
786 */
787 else
788 compact = 0;
789 /*
790 * If just checking, then it will fit unless we needed to allocate
791 * a new data block.
792 */
793 if (args->op_flags & XFS_DA_OP_JUSTCHECK) {
794 xfs_trans_brelse(tp, lbp);
795 return use_block == -1 ? XFS_ERROR(ENOSPC) : 0;
796 }
797 /*
798 * If no allocations are allowed, return now before we've
799 * changed anything.
800 */
801 if (args->total == 0 && use_block == -1) {
802 xfs_trans_brelse(tp, lbp);
803 return XFS_ERROR(ENOSPC);
804 }
805 /*
806 * Need to compact the leaf entries, removing stale ones.
807 * Leave one stale entry behind - the one closest to our
808 * insertion index - and we'll shift that one to our insertion
809 * point later.
810 */
811 if (compact) {
812 xfs_dir3_leaf_compact_x1(&leafhdr, ents, &index, &lowstale,
813 &highstale, &lfloglow, &lfloghigh);
814 }
815 /*
816 * There are stale entries, so we'll need log-low and log-high
817 * impossibly bad values later.
818 */
819 else if (leafhdr.stale) {
820 lfloglow = leafhdr.count;
821 lfloghigh = -1;
822 }
823 /*
824 * If there was no data block space found, we need to allocate
825 * a new one.
826 */
827 if (use_block == -1) {
828 /*
829 * Add the new data block.
830 */
831 if ((error = xfs_dir2_grow_inode(args, XFS_DIR2_DATA_SPACE,
832 &use_block))) {
833 xfs_trans_brelse(tp, lbp);
834 return error;
835 }
836 /*
837 * Initialize the block.
838 */
839 if ((error = xfs_dir3_data_init(args, use_block, &dbp))) {
840 xfs_trans_brelse(tp, lbp);
841 return error;
842 }
843 /*
844 * If we're adding a new data block on the end we need to
845 * extend the bests table. Copy it up one entry.
846 */
847 if (use_block >= be32_to_cpu(ltp->bestcount)) {
848 bestsp--;
849 memmove(&bestsp[0], &bestsp[1],
850 be32_to_cpu(ltp->bestcount) * sizeof(bestsp[0]));
851 be32_add_cpu(&ltp->bestcount, 1);
852 xfs_dir3_leaf_log_tail(tp, lbp);
853 xfs_dir3_leaf_log_bests(tp, lbp, 0, be32_to_cpu(ltp->bestcount) - 1);
854 }
855 /*
856 * If we're filling in a previously empty block just log it.
857 */
858 else
859 xfs_dir3_leaf_log_bests(tp, lbp, use_block, use_block);
860 hdr = dbp->b_addr;
861 bf = xfs_dir3_data_bestfree_p(hdr);
862 bestsp[use_block] = bf[0].length;
863 grown = 1;
864 } else {
865 /*
866 * Already had space in some data block.
867 * Just read that one in.
868 */
869 error = xfs_dir3_data_read(tp, dp,
870 xfs_dir2_db_to_da(mp, use_block),
871 -1, &dbp);
872 if (error) {
873 xfs_trans_brelse(tp, lbp);
874 return error;
875 }
876 hdr = dbp->b_addr;
877 bf = xfs_dir3_data_bestfree_p(hdr);
878 grown = 0;
879 }
880 /*
881 * Point to the biggest freespace in our data block.
882 */
883 dup = (xfs_dir2_data_unused_t *)
884 ((char *)hdr + be16_to_cpu(bf[0].offset));
885 ASSERT(be16_to_cpu(dup->length) >= length);
886 needscan = needlog = 0;
887 /*
888 * Mark the initial part of our freespace in use for the new entry.
889 */
890 xfs_dir2_data_use_free(tp, dbp, dup,
891 (xfs_dir2_data_aoff_t)((char *)dup - (char *)hdr), length,
892 &needlog, &needscan);
893 /*
894 * Initialize our new entry (at last).
895 */
896 dep = (xfs_dir2_data_entry_t *)dup;
897 dep->inumber = cpu_to_be64(args->inumber);
898 dep->namelen = args->namelen;
899 memcpy(dep->name, args->name, dep->namelen);
900 tagp = xfs_dir2_data_entry_tag_p(dep);
901 *tagp = cpu_to_be16((char *)dep - (char *)hdr);
902 /*
903 * Need to scan fix up the bestfree table.
904 */
905 if (needscan)
906 xfs_dir2_data_freescan(mp, hdr, &needlog);
907 /*
908 * Need to log the data block's header.
909 */
910 if (needlog)
911 xfs_dir2_data_log_header(tp, dbp);
912 xfs_dir2_data_log_entry(tp, dbp, dep);
913 /*
914 * If the bests table needs to be changed, do it.
915 * Log the change unless we've already done that.
916 */
917 if (be16_to_cpu(bestsp[use_block]) != be16_to_cpu(bf[0].length)) {
918 bestsp[use_block] = bf[0].length;
919 if (!grown)
920 xfs_dir3_leaf_log_bests(tp, lbp, use_block, use_block);
921 }
922
923 lep = xfs_dir3_leaf_find_entry(&leafhdr, ents, index, compact, lowstale,
924 highstale, &lfloglow, &lfloghigh);
925
926 /*
927 * Fill in the new leaf entry.
928 */
929 lep->hashval = cpu_to_be32(args->hashval);
930 lep->address = cpu_to_be32(xfs_dir2_db_off_to_dataptr(mp, use_block,
931 be16_to_cpu(*tagp)));
932 /*
933 * Log the leaf fields and give up the buffers.
934 */
935 xfs_dir3_leaf_hdr_to_disk(leaf, &leafhdr);
936 xfs_dir3_leaf_log_header(tp, lbp);
937 xfs_dir3_leaf_log_ents(tp, lbp, lfloglow, lfloghigh);
938 xfs_dir3_leaf_check(mp, lbp);
939 xfs_dir3_data_check(dp, dbp);
940 return 0;
941 }
942
943 /*
944 * Compact out any stale entries in the leaf.
945 * Log the header and changed leaf entries, if any.
946 */
947 void
948 xfs_dir3_leaf_compact(
949 xfs_da_args_t *args, /* operation arguments */
950 struct xfs_dir3_icleaf_hdr *leafhdr,
951 struct xfs_buf *bp) /* leaf buffer */
952 {
953 int from; /* source leaf index */
954 xfs_dir2_leaf_t *leaf; /* leaf structure */
955 int loglow; /* first leaf entry to log */
956 int to; /* target leaf index */
957 struct xfs_dir2_leaf_entry *ents;
958
959 leaf = bp->b_addr;
960 if (!leafhdr->stale)
961 return;
962
963 /*
964 * Compress out the stale entries in place.
965 */
966 ents = xfs_dir3_leaf_ents_p(leaf);
967 for (from = to = 0, loglow = -1; from < leafhdr->count; from++) {
968 if (ents[from].address == cpu_to_be32(XFS_DIR2_NULL_DATAPTR))
969 continue;
970 /*
971 * Only actually copy the entries that are different.
972 */
973 if (from > to) {
974 if (loglow == -1)
975 loglow = to;
976 ents[to] = ents[from];
977 }
978 to++;
979 }
980 /*
981 * Update and log the header, log the leaf entries.
982 */
983 ASSERT(leafhdr->stale == from - to);
984 leafhdr->count -= leafhdr->stale;
985 leafhdr->stale = 0;
986
987 xfs_dir3_leaf_hdr_to_disk(leaf, leafhdr);
988 xfs_dir3_leaf_log_header(args->trans, bp);
989 if (loglow != -1)
990 xfs_dir3_leaf_log_ents(args->trans, bp, loglow, to - 1);
991 }
992
993 /*
994 * Compact the leaf entries, removing stale ones.
995 * Leave one stale entry behind - the one closest to our
996 * insertion index - and the caller will shift that one to our insertion
997 * point later.
998 * Return new insertion index, where the remaining stale entry is,
999 * and leaf logging indices.
1000 */
1001 void
1002 xfs_dir3_leaf_compact_x1(
1003 struct xfs_dir3_icleaf_hdr *leafhdr,
1004 struct xfs_dir2_leaf_entry *ents,
1005 int *indexp, /* insertion index */
1006 int *lowstalep, /* out: stale entry before us */
1007 int *highstalep, /* out: stale entry after us */
1008 int *lowlogp, /* out: low log index */
1009 int *highlogp) /* out: high log index */
1010 {
1011 int from; /* source copy index */
1012 int highstale; /* stale entry at/after index */
1013 int index; /* insertion index */
1014 int keepstale; /* source index of kept stale */
1015 int lowstale; /* stale entry before index */
1016 int newindex=0; /* new insertion index */
1017 int to; /* destination copy index */
1018
1019 ASSERT(leafhdr->stale > 1);
1020 index = *indexp;
1021
1022 xfs_dir3_leaf_find_stale(leafhdr, ents, index, &lowstale, &highstale);
1023
1024 /*
1025 * Pick the better of lowstale and highstale.
1026 */
1027 if (lowstale >= 0 &&
1028 (highstale == leafhdr->count ||
1029 index - lowstale <= highstale - index))
1030 keepstale = lowstale;
1031 else
1032 keepstale = highstale;
1033 /*
1034 * Copy the entries in place, removing all the stale entries
1035 * except keepstale.
1036 */
1037 for (from = to = 0; from < leafhdr->count; from++) {
1038 /*
1039 * Notice the new value of index.
1040 */
1041 if (index == from)
1042 newindex = to;
1043 if (from != keepstale &&
1044 ents[from].address == cpu_to_be32(XFS_DIR2_NULL_DATAPTR)) {
1045 if (from == to)
1046 *lowlogp = to;
1047 continue;
1048 }
1049 /*
1050 * Record the new keepstale value for the insertion.
1051 */
1052 if (from == keepstale)
1053 lowstale = highstale = to;
1054 /*
1055 * Copy only the entries that have moved.
1056 */
1057 if (from > to)
1058 ents[to] = ents[from];
1059 to++;
1060 }
1061 ASSERT(from > to);
1062 /*
1063 * If the insertion point was past the last entry,
1064 * set the new insertion point accordingly.
1065 */
1066 if (index == from)
1067 newindex = to;
1068 *indexp = newindex;
1069 /*
1070 * Adjust the leaf header values.
1071 */
1072 leafhdr->count -= from - to;
1073 leafhdr->stale = 1;
1074 /*
1075 * Remember the low/high stale value only in the "right"
1076 * direction.
1077 */
1078 if (lowstale >= newindex)
1079 lowstale = -1;
1080 else
1081 highstale = leafhdr->count;
1082 *highlogp = leafhdr->count - 1;
1083 *lowstalep = lowstale;
1084 *highstalep = highstale;
1085 }
1086
1087 /*
1088 * Log the bests entries indicated from a leaf1 block.
1089 */
1090 static void
1091 xfs_dir3_leaf_log_bests(
1092 xfs_trans_t *tp, /* transaction pointer */
1093 struct xfs_buf *bp, /* leaf buffer */
1094 int first, /* first entry to log */
1095 int last) /* last entry to log */
1096 {
1097 __be16 *firstb; /* pointer to first entry */
1098 __be16 *lastb; /* pointer to last entry */
1099 struct xfs_dir2_leaf *leaf = bp->b_addr;
1100 xfs_dir2_leaf_tail_t *ltp; /* leaf tail structure */
1101
1102 ASSERT(leaf->hdr.info.magic == cpu_to_be16(XFS_DIR2_LEAF1_MAGIC) ||
1103 leaf->hdr.info.magic == cpu_to_be16(XFS_DIR3_LEAF1_MAGIC));
1104
1105 ltp = xfs_dir2_leaf_tail_p(tp->t_mountp, leaf);
1106 firstb = xfs_dir2_leaf_bests_p(ltp) + first;
1107 lastb = xfs_dir2_leaf_bests_p(ltp) + last;
1108 xfs_trans_log_buf(tp, bp, (uint)((char *)firstb - (char *)leaf),
1109 (uint)((char *)lastb - (char *)leaf + sizeof(*lastb) - 1));
1110 }
1111
1112 /*
1113 * Log the leaf entries indicated from a leaf1 or leafn block.
1114 */
1115 void
1116 xfs_dir3_leaf_log_ents(
1117 xfs_trans_t *tp, /* transaction pointer */
1118 struct xfs_buf *bp, /* leaf buffer */
1119 int first, /* first entry to log */
1120 int last) /* last entry to log */
1121 {
1122 xfs_dir2_leaf_entry_t *firstlep; /* pointer to first entry */
1123 xfs_dir2_leaf_entry_t *lastlep; /* pointer to last entry */
1124 struct xfs_dir2_leaf *leaf = bp->b_addr;
1125 struct xfs_dir2_leaf_entry *ents;
1126
1127 ASSERT(leaf->hdr.info.magic == cpu_to_be16(XFS_DIR2_LEAF1_MAGIC) ||
1128 leaf->hdr.info.magic == cpu_to_be16(XFS_DIR3_LEAF1_MAGIC) ||
1129 leaf->hdr.info.magic == cpu_to_be16(XFS_DIR2_LEAFN_MAGIC) ||
1130 leaf->hdr.info.magic == cpu_to_be16(XFS_DIR3_LEAFN_MAGIC));
1131
1132 ents = xfs_dir3_leaf_ents_p(leaf);
1133 firstlep = &ents[first];
1134 lastlep = &ents[last];
1135 xfs_trans_log_buf(tp, bp, (uint)((char *)firstlep - (char *)leaf),
1136 (uint)((char *)lastlep - (char *)leaf + sizeof(*lastlep) - 1));
1137 }
1138
1139 /*
1140 * Log the header of the leaf1 or leafn block.
1141 */
1142 void
1143 xfs_dir3_leaf_log_header(
1144 struct xfs_trans *tp,
1145 struct xfs_buf *bp)
1146 {
1147 struct xfs_dir2_leaf *leaf = bp->b_addr;
1148
1149 ASSERT(leaf->hdr.info.magic == cpu_to_be16(XFS_DIR2_LEAF1_MAGIC) ||
1150 leaf->hdr.info.magic == cpu_to_be16(XFS_DIR3_LEAF1_MAGIC) ||
1151 leaf->hdr.info.magic == cpu_to_be16(XFS_DIR2_LEAFN_MAGIC) ||
1152 leaf->hdr.info.magic == cpu_to_be16(XFS_DIR3_LEAFN_MAGIC));
1153
1154 xfs_trans_log_buf(tp, bp, (uint)((char *)&leaf->hdr - (char *)leaf),
1155 xfs_dir3_leaf_hdr_size(leaf) - 1);
1156 }
1157
1158 /*
1159 * Log the tail of the leaf1 block.
1160 */
1161 STATIC void
1162 xfs_dir3_leaf_log_tail(
1163 struct xfs_trans *tp,
1164 struct xfs_buf *bp)
1165 {
1166 struct xfs_dir2_leaf *leaf = bp->b_addr;
1167 xfs_dir2_leaf_tail_t *ltp; /* leaf tail structure */
1168 struct xfs_mount *mp = tp->t_mountp;
1169
1170 ASSERT(leaf->hdr.info.magic == cpu_to_be16(XFS_DIR2_LEAF1_MAGIC) ||
1171 leaf->hdr.info.magic == cpu_to_be16(XFS_DIR3_LEAF1_MAGIC) ||
1172 leaf->hdr.info.magic == cpu_to_be16(XFS_DIR2_LEAFN_MAGIC) ||
1173 leaf->hdr.info.magic == cpu_to_be16(XFS_DIR3_LEAFN_MAGIC));
1174
1175 ltp = xfs_dir2_leaf_tail_p(mp, leaf);
1176 xfs_trans_log_buf(tp, bp, (uint)((char *)ltp - (char *)leaf),
1177 (uint)(mp->m_dirblksize - 1));
1178 }
1179
1180 /*
1181 * Look up the entry referred to by args in the leaf format directory.
1182 * Most of the work is done by the xfs_dir2_leaf_lookup_int routine which
1183 * is also used by the node-format code.
1184 */
1185 int
1186 xfs_dir2_leaf_lookup(
1187 xfs_da_args_t *args) /* operation arguments */
1188 {
1189 struct xfs_buf *dbp; /* data block buffer */
1190 xfs_dir2_data_entry_t *dep; /* data block entry */
1191 xfs_inode_t *dp; /* incore directory inode */
1192 int error; /* error return code */
1193 int index; /* found entry index */
1194 struct xfs_buf *lbp; /* leaf buffer */
1195 xfs_dir2_leaf_t *leaf; /* leaf structure */
1196 xfs_dir2_leaf_entry_t *lep; /* leaf entry */
1197 xfs_trans_t *tp; /* transaction pointer */
1198 struct xfs_dir2_leaf_entry *ents;
1199
1200 trace_xfs_dir2_leaf_lookup(args);
1201
1202 /*
1203 * Look up name in the leaf block, returning both buffers and index.
1204 */
1205 if ((error = xfs_dir2_leaf_lookup_int(args, &lbp, &index, &dbp))) {
1206 return error;
1207 }
1208 tp = args->trans;
1209 dp = args->dp;
1210 xfs_dir3_leaf_check(dp->i_mount, lbp);
1211 leaf = lbp->b_addr;
1212 ents = xfs_dir3_leaf_ents_p(leaf);
1213 /*
1214 * Get to the leaf entry and contained data entry address.
1215 */
1216 lep = &ents[index];
1217
1218 /*
1219 * Point to the data entry.
1220 */
1221 dep = (xfs_dir2_data_entry_t *)
1222 ((char *)dbp->b_addr +
1223 xfs_dir2_dataptr_to_off(dp->i_mount, be32_to_cpu(lep->address)));
1224 /*
1225 * Return the found inode number & CI name if appropriate
1226 */
1227 args->inumber = be64_to_cpu(dep->inumber);
1228 error = xfs_dir_cilookup_result(args, dep->name, dep->namelen);
1229 xfs_trans_brelse(tp, dbp);
1230 xfs_trans_brelse(tp, lbp);
1231 return XFS_ERROR(error);
1232 }
1233
1234 /*
1235 * Look up name/hash in the leaf block.
1236 * Fill in indexp with the found index, and dbpp with the data buffer.
1237 * If not found dbpp will be NULL, and ENOENT comes back.
1238 * lbpp will always be filled in with the leaf buffer unless there's an error.
1239 */
1240 static int /* error */
1241 xfs_dir2_leaf_lookup_int(
1242 xfs_da_args_t *args, /* operation arguments */
1243 struct xfs_buf **lbpp, /* out: leaf buffer */
1244 int *indexp, /* out: index in leaf block */
1245 struct xfs_buf **dbpp) /* out: data buffer */
1246 {
1247 xfs_dir2_db_t curdb = -1; /* current data block number */
1248 struct xfs_buf *dbp = NULL; /* data buffer */
1249 xfs_dir2_data_entry_t *dep; /* data entry */
1250 xfs_inode_t *dp; /* incore directory inode */
1251 int error; /* error return code */
1252 int index; /* index in leaf block */
1253 struct xfs_buf *lbp; /* leaf buffer */
1254 xfs_dir2_leaf_entry_t *lep; /* leaf entry */
1255 xfs_dir2_leaf_t *leaf; /* leaf structure */
1256 xfs_mount_t *mp; /* filesystem mount point */
1257 xfs_dir2_db_t newdb; /* new data block number */
1258 xfs_trans_t *tp; /* transaction pointer */
1259 xfs_dir2_db_t cidb = -1; /* case match data block no. */
1260 enum xfs_dacmp cmp; /* name compare result */
1261 struct xfs_dir2_leaf_entry *ents;
1262 struct xfs_dir3_icleaf_hdr leafhdr;
1263
1264 dp = args->dp;
1265 tp = args->trans;
1266 mp = dp->i_mount;
1267
1268 error = xfs_dir3_leaf_read(tp, dp, mp->m_dirleafblk, -1, &lbp);
1269 if (error)
1270 return error;
1271
1272 *lbpp = lbp;
1273 leaf = lbp->b_addr;
1274 xfs_dir3_leaf_check(mp, lbp);
1275 ents = xfs_dir3_leaf_ents_p(leaf);
1276 xfs_dir3_leaf_hdr_from_disk(&leafhdr, leaf);
1277
1278 /*
1279 * Look for the first leaf entry with our hash value.
1280 */
1281 index = xfs_dir2_leaf_search_hash(args, lbp);
1282 /*
1283 * Loop over all the entries with the right hash value
1284 * looking to match the name.
1285 */
1286 for (lep = &ents[index];
1287 index < leafhdr.count && be32_to_cpu(lep->hashval) == args->hashval;
1288 lep++, index++) {
1289 /*
1290 * Skip over stale leaf entries.
1291 */
1292 if (be32_to_cpu(lep->address) == XFS_DIR2_NULL_DATAPTR)
1293 continue;
1294 /*
1295 * Get the new data block number.
1296 */
1297 newdb = xfs_dir2_dataptr_to_db(mp, be32_to_cpu(lep->address));
1298 /*
1299 * If it's not the same as the old data block number,
1300 * need to pitch the old one and read the new one.
1301 */
1302 if (newdb != curdb) {
1303 if (dbp)
1304 xfs_trans_brelse(tp, dbp);
1305 error = xfs_dir3_data_read(tp, dp,
1306 xfs_dir2_db_to_da(mp, newdb),
1307 -1, &dbp);
1308 if (error) {
1309 xfs_trans_brelse(tp, lbp);
1310 return error;
1311 }
1312 curdb = newdb;
1313 }
1314 /*
1315 * Point to the data entry.
1316 */
1317 dep = (xfs_dir2_data_entry_t *)((char *)dbp->b_addr +
1318 xfs_dir2_dataptr_to_off(mp, be32_to_cpu(lep->address)));
1319 /*
1320 * Compare name and if it's an exact match, return the index
1321 * and buffer. If it's the first case-insensitive match, store
1322 * the index and buffer and continue looking for an exact match.
1323 */
1324 cmp = mp->m_dirnameops->compname(args, dep->name, dep->namelen);
1325 if (cmp != XFS_CMP_DIFFERENT && cmp != args->cmpresult) {
1326 args->cmpresult = cmp;
1327 *indexp = index;
1328 /* case exact match: return the current buffer. */
1329 if (cmp == XFS_CMP_EXACT) {
1330 *dbpp = dbp;
1331 return 0;
1332 }
1333 cidb = curdb;
1334 }
1335 }
1336 ASSERT(args->op_flags & XFS_DA_OP_OKNOENT);
1337 /*
1338 * Here, we can only be doing a lookup (not a rename or remove).
1339 * If a case-insensitive match was found earlier, re-read the
1340 * appropriate data block if required and return it.
1341 */
1342 if (args->cmpresult == XFS_CMP_CASE) {
1343 ASSERT(cidb != -1);
1344 if (cidb != curdb) {
1345 xfs_trans_brelse(tp, dbp);
1346 error = xfs_dir3_data_read(tp, dp,
1347 xfs_dir2_db_to_da(mp, cidb),
1348 -1, &dbp);
1349 if (error) {
1350 xfs_trans_brelse(tp, lbp);
1351 return error;
1352 }
1353 }
1354 *dbpp = dbp;
1355 return 0;
1356 }
1357 /*
1358 * No match found, return ENOENT.
1359 */
1360 ASSERT(cidb == -1);
1361 if (dbp)
1362 xfs_trans_brelse(tp, dbp);
1363 xfs_trans_brelse(tp, lbp);
1364 return XFS_ERROR(ENOENT);
1365 }
1366
1367 /*
1368 * Remove an entry from a leaf format directory.
1369 */
1370 int /* error */
1371 xfs_dir2_leaf_removename(
1372 xfs_da_args_t *args) /* operation arguments */
1373 {
1374 __be16 *bestsp; /* leaf block best freespace */
1375 xfs_dir2_data_hdr_t *hdr; /* data block header */
1376 xfs_dir2_db_t db; /* data block number */
1377 struct xfs_buf *dbp; /* data block buffer */
1378 xfs_dir2_data_entry_t *dep; /* data entry structure */
1379 xfs_inode_t *dp; /* incore directory inode */
1380 int error; /* error return code */
1381 xfs_dir2_db_t i; /* temporary data block # */
1382 int index; /* index into leaf entries */
1383 struct xfs_buf *lbp; /* leaf buffer */
1384 xfs_dir2_leaf_t *leaf; /* leaf structure */
1385 xfs_dir2_leaf_entry_t *lep; /* leaf entry */
1386 xfs_dir2_leaf_tail_t *ltp; /* leaf tail structure */
1387 xfs_mount_t *mp; /* filesystem mount point */
1388 int needlog; /* need to log data header */
1389 int needscan; /* need to rescan data frees */
1390 xfs_dir2_data_off_t oldbest; /* old value of best free */
1391 xfs_trans_t *tp; /* transaction pointer */
1392 struct xfs_dir2_data_free *bf; /* bestfree table */
1393 struct xfs_dir2_leaf_entry *ents;
1394 struct xfs_dir3_icleaf_hdr leafhdr;
1395
1396 trace_xfs_dir2_leaf_removename(args);
1397
1398 /*
1399 * Lookup the leaf entry, get the leaf and data blocks read in.
1400 */
1401 if ((error = xfs_dir2_leaf_lookup_int(args, &lbp, &index, &dbp))) {
1402 return error;
1403 }
1404 dp = args->dp;
1405 tp = args->trans;
1406 mp = dp->i_mount;
1407 leaf = lbp->b_addr;
1408 hdr = dbp->b_addr;
1409 xfs_dir3_data_check(dp, dbp);
1410 bf = xfs_dir3_data_bestfree_p(hdr);
1411 xfs_dir3_leaf_hdr_from_disk(&leafhdr, leaf);
1412 ents = xfs_dir3_leaf_ents_p(leaf);
1413 /*
1414 * Point to the leaf entry, use that to point to the data entry.
1415 */
1416 lep = &ents[index];
1417 db = xfs_dir2_dataptr_to_db(mp, be32_to_cpu(lep->address));
1418 dep = (xfs_dir2_data_entry_t *)
1419 ((char *)hdr + xfs_dir2_dataptr_to_off(mp, be32_to_cpu(lep->address)));
1420 needscan = needlog = 0;
1421 oldbest = be16_to_cpu(bf[0].length);
1422 ltp = xfs_dir2_leaf_tail_p(mp, leaf);
1423 bestsp = xfs_dir2_leaf_bests_p(ltp);
1424 ASSERT(be16_to_cpu(bestsp[db]) == oldbest);
1425 /*
1426 * Mark the former data entry unused.
1427 */
1428 xfs_dir2_data_make_free(tp, dbp,
1429 (xfs_dir2_data_aoff_t)((char *)dep - (char *)hdr),
1430 xfs_dir2_data_entsize(dep->namelen), &needlog, &needscan);
1431 /*
1432 * We just mark the leaf entry stale by putting a null in it.
1433 */
1434 leafhdr.stale++;
1435 xfs_dir3_leaf_hdr_to_disk(leaf, &leafhdr);
1436 xfs_dir3_leaf_log_header(tp, lbp);
1437
1438 lep->address = cpu_to_be32(XFS_DIR2_NULL_DATAPTR);
1439 xfs_dir3_leaf_log_ents(tp, lbp, index, index);
1440
1441 /*
1442 * Scan the freespace in the data block again if necessary,
1443 * log the data block header if necessary.
1444 */
1445 if (needscan)
1446 xfs_dir2_data_freescan(mp, hdr, &needlog);
1447 if (needlog)
1448 xfs_dir2_data_log_header(tp, dbp);
1449 /*
1450 * If the longest freespace in the data block has changed,
1451 * put the new value in the bests table and log that.
1452 */
1453 if (be16_to_cpu(bf[0].length) != oldbest) {
1454 bestsp[db] = bf[0].length;
1455 xfs_dir3_leaf_log_bests(tp, lbp, db, db);
1456 }
1457 xfs_dir3_data_check(dp, dbp);
1458 /*
1459 * If the data block is now empty then get rid of the data block.
1460 */
1461 if (be16_to_cpu(bf[0].length) ==
1462 mp->m_dirblksize - xfs_dir3_data_entry_offset(hdr)) {
1463 ASSERT(db != mp->m_dirdatablk);
1464 if ((error = xfs_dir2_shrink_inode(args, db, dbp))) {
1465 /*
1466 * Nope, can't get rid of it because it caused
1467 * allocation of a bmap btree block to do so.
1468 * Just go on, returning success, leaving the
1469 * empty block in place.
1470 */
1471 if (error == ENOSPC && args->total == 0)
1472 error = 0;
1473 xfs_dir3_leaf_check(mp, lbp);
1474 return error;
1475 }
1476 dbp = NULL;
1477 /*
1478 * If this is the last data block then compact the
1479 * bests table by getting rid of entries.
1480 */
1481 if (db == be32_to_cpu(ltp->bestcount) - 1) {
1482 /*
1483 * Look for the last active entry (i).
1484 */
1485 for (i = db - 1; i > 0; i--) {
1486 if (bestsp[i] != cpu_to_be16(NULLDATAOFF))
1487 break;
1488 }
1489 /*
1490 * Copy the table down so inactive entries at the
1491 * end are removed.
1492 */
1493 memmove(&bestsp[db - i], bestsp,
1494 (be32_to_cpu(ltp->bestcount) - (db - i)) * sizeof(*bestsp));
1495 be32_add_cpu(&ltp->bestcount, -(db - i));
1496 xfs_dir3_leaf_log_tail(tp, lbp);
1497 xfs_dir3_leaf_log_bests(tp, lbp, 0, be32_to_cpu(ltp->bestcount) - 1);
1498 } else
1499 bestsp[db] = cpu_to_be16(NULLDATAOFF);
1500 }
1501 /*
1502 * If the data block was not the first one, drop it.
1503 */
1504 else if (db != mp->m_dirdatablk)
1505 dbp = NULL;
1506
1507 xfs_dir3_leaf_check(mp, lbp);
1508 /*
1509 * See if we can convert to block form.
1510 */
1511 return xfs_dir2_leaf_to_block(args, lbp, dbp);
1512 }
1513
1514 /*
1515 * Replace the inode number in a leaf format directory entry.
1516 */
1517 int /* error */
1518 xfs_dir2_leaf_replace(
1519 xfs_da_args_t *args) /* operation arguments */
1520 {
1521 struct xfs_buf *dbp; /* data block buffer */
1522 xfs_dir2_data_entry_t *dep; /* data block entry */
1523 xfs_inode_t *dp; /* incore directory inode */
1524 int error; /* error return code */
1525 int index; /* index of leaf entry */
1526 struct xfs_buf *lbp; /* leaf buffer */
1527 xfs_dir2_leaf_t *leaf; /* leaf structure */
1528 xfs_dir2_leaf_entry_t *lep; /* leaf entry */
1529 xfs_trans_t *tp; /* transaction pointer */
1530 struct xfs_dir2_leaf_entry *ents;
1531
1532 trace_xfs_dir2_leaf_replace(args);
1533
1534 /*
1535 * Look up the entry.
1536 */
1537 if ((error = xfs_dir2_leaf_lookup_int(args, &lbp, &index, &dbp))) {
1538 return error;
1539 }
1540 dp = args->dp;
1541 leaf = lbp->b_addr;
1542 ents = xfs_dir3_leaf_ents_p(leaf);
1543 /*
1544 * Point to the leaf entry, get data address from it.
1545 */
1546 lep = &ents[index];
1547 /*
1548 * Point to the data entry.
1549 */
1550 dep = (xfs_dir2_data_entry_t *)
1551 ((char *)dbp->b_addr +
1552 xfs_dir2_dataptr_to_off(dp->i_mount, be32_to_cpu(lep->address)));
1553 ASSERT(args->inumber != be64_to_cpu(dep->inumber));
1554 /*
1555 * Put the new inode number in, log it.
1556 */
1557 dep->inumber = cpu_to_be64(args->inumber);
1558 tp = args->trans;
1559 xfs_dir2_data_log_entry(tp, dbp, dep);
1560 xfs_dir3_leaf_check(dp->i_mount, lbp);
1561 xfs_trans_brelse(tp, lbp);
1562 return 0;
1563 }
1564
1565 /*
1566 * Return index in the leaf block (lbp) which is either the first
1567 * one with this hash value, or if there are none, the insert point
1568 * for that hash value.
1569 */
1570 int /* index value */
1571 xfs_dir2_leaf_search_hash(
1572 xfs_da_args_t *args, /* operation arguments */
1573 struct xfs_buf *lbp) /* leaf buffer */
1574 {
1575 xfs_dahash_t hash=0; /* hash from this entry */
1576 xfs_dahash_t hashwant; /* hash value looking for */
1577 int high; /* high leaf index */
1578 int low; /* low leaf index */
1579 xfs_dir2_leaf_t *leaf; /* leaf structure */
1580 xfs_dir2_leaf_entry_t *lep; /* leaf entry */
1581 int mid=0; /* current leaf index */
1582 struct xfs_dir2_leaf_entry *ents;
1583 struct xfs_dir3_icleaf_hdr leafhdr;
1584
1585 leaf = lbp->b_addr;
1586 ents = xfs_dir3_leaf_ents_p(leaf);
1587 xfs_dir3_leaf_hdr_from_disk(&leafhdr, leaf);
1588
1589 #ifndef __KERNEL__
1590 if (!leafhdr.count)
1591 return 0;
1592 #endif
1593 /*
1594 * Note, the table cannot be empty, so we have to go through the loop.
1595 * Binary search the leaf entries looking for our hash value.
1596 */
1597 for (lep = ents, low = 0, high = leafhdr.count - 1,
1598 hashwant = args->hashval;
1599 low <= high; ) {
1600 mid = (low + high) >> 1;
1601 if ((hash = be32_to_cpu(lep[mid].hashval)) == hashwant)
1602 break;
1603 if (hash < hashwant)
1604 low = mid + 1;
1605 else
1606 high = mid - 1;
1607 }
1608 /*
1609 * Found one, back up through all the equal hash values.
1610 */
1611 if (hash == hashwant) {
1612 while (mid > 0 && be32_to_cpu(lep[mid - 1].hashval) == hashwant) {
1613 mid--;
1614 }
1615 }
1616 /*
1617 * Need to point to an entry higher than ours.
1618 */
1619 else if (hash < hashwant)
1620 mid++;
1621 return mid;
1622 }
1623
1624 /*
1625 * Trim off a trailing data block. We know it's empty since the leaf
1626 * freespace table says so.
1627 */
1628 int /* error */
1629 xfs_dir2_leaf_trim_data(
1630 xfs_da_args_t *args, /* operation arguments */
1631 struct xfs_buf *lbp, /* leaf buffer */
1632 xfs_dir2_db_t db) /* data block number */
1633 {
1634 __be16 *bestsp; /* leaf bests table */
1635 struct xfs_buf *dbp; /* data block buffer */
1636 xfs_inode_t *dp; /* incore directory inode */
1637 int error; /* error return value */
1638 xfs_dir2_leaf_t *leaf; /* leaf structure */
1639 xfs_dir2_leaf_tail_t *ltp; /* leaf tail structure */
1640 xfs_mount_t *mp; /* filesystem mount point */
1641 xfs_trans_t *tp; /* transaction pointer */
1642
1643 dp = args->dp;
1644 mp = dp->i_mount;
1645 tp = args->trans;
1646 /*
1647 * Read the offending data block. We need its buffer.
1648 */
1649 error = xfs_dir3_data_read(tp, dp, xfs_dir2_db_to_da(mp, db), -1, &dbp);
1650 if (error)
1651 return error;
1652
1653 leaf = lbp->b_addr;
1654 ltp = xfs_dir2_leaf_tail_p(mp, leaf);
1655
1656 #ifdef DEBUG
1657 {
1658 struct xfs_dir2_data_hdr *hdr = dbp->b_addr;
1659 struct xfs_dir2_data_free *bf = xfs_dir3_data_bestfree_p(hdr);
1660
1661 ASSERT(hdr->magic == cpu_to_be32(XFS_DIR2_DATA_MAGIC) ||
1662 hdr->magic == cpu_to_be32(XFS_DIR3_DATA_MAGIC));
1663 ASSERT(be16_to_cpu(bf[0].length) ==
1664 mp->m_dirblksize - xfs_dir3_data_entry_offset(hdr));
1665 ASSERT(db == be32_to_cpu(ltp->bestcount) - 1);
1666 }
1667 #endif
1668
1669 /*
1670 * Get rid of the data block.
1671 */
1672 if ((error = xfs_dir2_shrink_inode(args, db, dbp))) {
1673 ASSERT(error != ENOSPC);
1674 xfs_trans_brelse(tp, dbp);
1675 return error;
1676 }
1677 /*
1678 * Eliminate the last bests entry from the table.
1679 */
1680 bestsp = xfs_dir2_leaf_bests_p(ltp);
1681 be32_add_cpu(&ltp->bestcount, -1);
1682 memmove(&bestsp[1], &bestsp[0], be32_to_cpu(ltp->bestcount) * sizeof(*bestsp));
1683 xfs_dir3_leaf_log_tail(tp, lbp);
1684 xfs_dir3_leaf_log_bests(tp, lbp, 0, be32_to_cpu(ltp->bestcount) - 1);
1685 return 0;
1686 }
1687
1688 static inline size_t
1689 xfs_dir3_leaf_size(
1690 struct xfs_dir3_icleaf_hdr *hdr,
1691 int counts)
1692 {
1693 int entries;
1694 int hdrsize;
1695
1696 entries = hdr->count - hdr->stale;
1697 if (hdr->magic == XFS_DIR2_LEAF1_MAGIC ||
1698 hdr->magic == XFS_DIR2_LEAFN_MAGIC)
1699 hdrsize = sizeof(struct xfs_dir2_leaf_hdr);
1700 else
1701 hdrsize = sizeof(struct xfs_dir3_leaf_hdr);
1702
1703 return hdrsize + entries * sizeof(xfs_dir2_leaf_entry_t)
1704 + counts * sizeof(xfs_dir2_data_off_t)
1705 + sizeof(xfs_dir2_leaf_tail_t);
1706 }
1707
1708 /*
1709 * Convert node form directory to leaf form directory.
1710 * The root of the node form dir needs to already be a LEAFN block.
1711 * Just return if we can't do anything.
1712 */
1713 int /* error */
1714 xfs_dir2_node_to_leaf(
1715 xfs_da_state_t *state) /* directory operation state */
1716 {
1717 xfs_da_args_t *args; /* operation arguments */
1718 xfs_inode_t *dp; /* incore directory inode */
1719 int error; /* error return code */
1720 struct xfs_buf *fbp; /* buffer for freespace block */
1721 xfs_fileoff_t fo; /* freespace file offset */
1722 xfs_dir2_free_t *free; /* freespace structure */
1723 struct xfs_buf *lbp; /* buffer for leaf block */
1724 xfs_dir2_leaf_tail_t *ltp; /* tail of leaf structure */
1725 xfs_dir2_leaf_t *leaf; /* leaf structure */
1726 xfs_mount_t *mp; /* filesystem mount point */
1727 int rval; /* successful free trim? */
1728 xfs_trans_t *tp; /* transaction pointer */
1729 struct xfs_dir3_icleaf_hdr leafhdr;
1730 struct xfs_dir3_icfree_hdr freehdr;
1731
1732 /*
1733 * There's more than a leaf level in the btree, so there must
1734 * be multiple leafn blocks. Give up.
1735 */
1736 if (state->path.active > 1)
1737 return 0;
1738 args = state->args;
1739
1740 trace_xfs_dir2_node_to_leaf(args);
1741
1742 mp = state->mp;
1743 dp = args->dp;
1744 tp = args->trans;
1745 /*
1746 * Get the last offset in the file.
1747 */
1748 if ((error = xfs_bmap_last_offset(tp, dp, &fo, XFS_DATA_FORK))) {
1749 return error;
1750 }
1751 fo -= mp->m_dirblkfsbs;
1752 /*
1753 * If there are freespace blocks other than the first one,
1754 * take this opportunity to remove trailing empty freespace blocks
1755 * that may have been left behind during no-space-reservation
1756 * operations.
1757 */
1758 while (fo > mp->m_dirfreeblk) {
1759 if ((error = xfs_dir2_node_trim_free(args, fo, &rval))) {
1760 return error;
1761 }
1762 if (rval)
1763 fo -= mp->m_dirblkfsbs;
1764 else
1765 return 0;
1766 }
1767 /*
1768 * Now find the block just before the freespace block.
1769 */
1770 if ((error = xfs_bmap_last_before(tp, dp, &fo, XFS_DATA_FORK))) {
1771 return error;
1772 }
1773 /*
1774 * If it's not the single leaf block, give up.
1775 */
1776 if (XFS_FSB_TO_B(mp, fo) > XFS_DIR2_LEAF_OFFSET + mp->m_dirblksize)
1777 return 0;
1778 lbp = state->path.blk[0].bp;
1779 leaf = lbp->b_addr;
1780 xfs_dir3_leaf_hdr_from_disk(&leafhdr, leaf);
1781
1782 ASSERT(leafhdr.magic == XFS_DIR2_LEAFN_MAGIC ||
1783 leafhdr.magic == XFS_DIR3_LEAFN_MAGIC);
1784
1785 /*
1786 * Read the freespace block.
1787 */
1788 error = xfs_dir2_free_read(tp, dp, mp->m_dirfreeblk, &fbp);
1789 if (error)
1790 return error;
1791 free = fbp->b_addr;
1792 xfs_dir3_free_hdr_from_disk(&freehdr, free);
1793
1794 ASSERT(!freehdr.firstdb);
1795
1796 /*
1797 * Now see if the leafn and free data will fit in a leaf1.
1798 * If not, release the buffer and give up.
1799 */
1800 if (xfs_dir3_leaf_size(&leafhdr, freehdr.nvalid) > mp->m_dirblksize) {
1801 xfs_trans_brelse(tp, fbp);
1802 return 0;
1803 }
1804
1805 /*
1806 * If the leaf has any stale entries in it, compress them out.
1807 */
1808 if (leafhdr.stale)
1809 xfs_dir3_leaf_compact(args, &leafhdr, lbp);
1810
1811 lbp->b_ops = &xfs_dir3_leaf1_buf_ops;
1812 xfs_trans_buf_set_type(tp, lbp, XFS_BLFT_DIR_LEAF1_BUF);
1813 leafhdr.magic = (leafhdr.magic == XFS_DIR2_LEAFN_MAGIC)
1814 ? XFS_DIR2_LEAF1_MAGIC
1815 : XFS_DIR3_LEAF1_MAGIC;
1816
1817 /*
1818 * Set up the leaf tail from the freespace block.
1819 */
1820 ltp = xfs_dir2_leaf_tail_p(mp, leaf);
1821 ltp->bestcount = cpu_to_be32(freehdr.nvalid);
1822
1823 /*
1824 * Set up the leaf bests table.
1825 */
1826 memcpy(xfs_dir2_leaf_bests_p(ltp), xfs_dir3_free_bests_p(mp, free),
1827 freehdr.nvalid * sizeof(xfs_dir2_data_off_t));
1828
1829 xfs_dir3_leaf_hdr_to_disk(leaf, &leafhdr);
1830 xfs_dir3_leaf_log_header(tp, lbp);
1831 xfs_dir3_leaf_log_bests(tp, lbp, 0, be32_to_cpu(ltp->bestcount) - 1);
1832 xfs_dir3_leaf_log_tail(tp, lbp);
1833 xfs_dir3_leaf_check(mp, lbp);
1834
1835 /*
1836 * Get rid of the freespace block.
1837 */
1838 error = xfs_dir2_shrink_inode(args, XFS_DIR2_FREE_FIRSTDB(mp), fbp);
1839 if (error) {
1840 /*
1841 * This can't fail here because it can only happen when
1842 * punching out the middle of an extent, and this is an
1843 * isolated block.
1844 */
1845 ASSERT(error != ENOSPC);
1846 return error;
1847 }
1848 fbp = NULL;
1849 /*
1850 * Now see if we can convert the single-leaf directory
1851 * down to a block form directory.
1852 * This routine always kills the dabuf for the leaf, so
1853 * eliminate it from the path.
1854 */
1855 error = xfs_dir2_leaf_to_block(args, lbp, NULL);
1856 state->path.blk[0].bp = NULL;
1857 return error;
1858 }