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