xfs: fix da node magic number mismatches
[deliverable/linux.git] / fs / xfs / xfs_dir2_node.c
CommitLineData
1da177e4 1/*
7b718769 2 * Copyright (c) 2000-2005 Silicon Graphics, Inc.
cbc8adf8 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"
1da177e4 21#include "xfs_types.h"
1da177e4
LT
22#include "xfs_log.h"
23#include "xfs_trans.h"
24#include "xfs_sb.h"
da353b0d 25#include "xfs_ag.h"
1da177e4 26#include "xfs_mount.h"
a844f451 27#include "xfs_da_btree.h"
1da177e4 28#include "xfs_bmap_btree.h"
1da177e4
LT
29#include "xfs_dinode.h"
30#include "xfs_inode.h"
31#include "xfs_bmap.h"
57926640
CH
32#include "xfs_dir2_format.h"
33#include "xfs_dir2_priv.h"
1da177e4 34#include "xfs_error.h"
0b1b213f 35#include "xfs_trace.h"
cbc8adf8
DC
36#include "xfs_buf_item.h"
37#include "xfs_cksum.h"
1da177e4
LT
38
39/*
40 * Function declarations.
41 */
1d9025e5
DC
42static int xfs_dir2_leafn_add(struct xfs_buf *bp, xfs_da_args_t *args,
43 int index);
1da177e4
LT
44static void xfs_dir2_leafn_rebalance(xfs_da_state_t *state,
45 xfs_da_state_blk_t *blk1,
46 xfs_da_state_blk_t *blk2);
1d9025e5 47static int xfs_dir2_leafn_remove(xfs_da_args_t *args, struct xfs_buf *bp,
1da177e4
LT
48 int index, xfs_da_state_blk_t *dblk,
49 int *rval);
50static int xfs_dir2_node_addname_int(xfs_da_args_t *args,
51 xfs_da_state_blk_t *fblk);
52
24df33b4
DC
53/*
54 * Check internal consistency of a leafn block.
55 */
56#ifdef DEBUG
57#define xfs_dir3_leaf_check(mp, bp) \
58do { \
59 if (!xfs_dir3_leafn_check((mp), (bp))) \
60 ASSERT(0); \
61} while (0);
62
63static bool
64xfs_dir3_leafn_check(
65 struct xfs_mount *mp,
66 struct xfs_buf *bp)
67{
68 struct xfs_dir2_leaf *leaf = bp->b_addr;
69 struct xfs_dir3_icleaf_hdr leafhdr;
70
71 xfs_dir3_leaf_hdr_from_disk(&leafhdr, leaf);
72
73 if (leafhdr.magic == XFS_DIR3_LEAFN_MAGIC) {
74 struct xfs_dir3_leaf_hdr *leaf3 = bp->b_addr;
75 if (be64_to_cpu(leaf3->info.blkno) != bp->b_bn)
76 return false;
77 } else if (leafhdr.magic != XFS_DIR2_LEAFN_MAGIC)
78 return false;
79
80 return xfs_dir3_leaf_check_int(mp, &leafhdr, leaf);
81}
82#else
83#define xfs_dir3_leaf_check(mp, bp)
84#endif
85
cbc8adf8
DC
86static bool
87xfs_dir3_free_verify(
2025207c
DC
88 struct xfs_buf *bp)
89{
90 struct xfs_mount *mp = bp->b_target->bt_mount;
91 struct xfs_dir2_free_hdr *hdr = bp->b_addr;
2025207c 92
cbc8adf8
DC
93 if (xfs_sb_version_hascrc(&mp->m_sb)) {
94 struct xfs_dir3_blk_hdr *hdr3 = bp->b_addr;
95
96 if (hdr3->magic != cpu_to_be32(XFS_DIR3_FREE_MAGIC))
97 return false;
98 if (!uuid_equal(&hdr3->uuid, &mp->m_sb.sb_uuid))
99 return false;
100 if (be64_to_cpu(hdr3->blkno) != bp->b_bn)
101 return false;
102 } else {
103 if (hdr->magic != cpu_to_be32(XFS_DIR2_FREE_MAGIC))
104 return false;
2025207c 105 }
cbc8adf8
DC
106
107 /* XXX: should bounds check the xfs_dir3_icfree_hdr here */
108
109 return true;
612cfbfe 110}
2025207c 111
612cfbfe 112static void
cbc8adf8 113xfs_dir3_free_read_verify(
612cfbfe
DC
114 struct xfs_buf *bp)
115{
cbc8adf8
DC
116 struct xfs_mount *mp = bp->b_target->bt_mount;
117
118 if ((xfs_sb_version_hascrc(&mp->m_sb) &&
119 !xfs_verify_cksum(bp->b_addr, BBTOB(bp->b_length),
120 XFS_DIR3_FREE_CRC_OFF)) ||
121 !xfs_dir3_free_verify(bp)) {
122 XFS_CORRUPTION_ERROR(__func__, XFS_ERRLEVEL_LOW, mp, bp->b_addr);
123 xfs_buf_ioerror(bp, EFSCORRUPTED);
124 }
612cfbfe
DC
125}
126
1813dd64 127static void
cbc8adf8 128xfs_dir3_free_write_verify(
612cfbfe
DC
129 struct xfs_buf *bp)
130{
cbc8adf8
DC
131 struct xfs_mount *mp = bp->b_target->bt_mount;
132 struct xfs_buf_log_item *bip = bp->b_fspriv;
133 struct xfs_dir3_blk_hdr *hdr3 = bp->b_addr;
134
135 if (!xfs_dir3_free_verify(bp)) {
136 XFS_CORRUPTION_ERROR(__func__, XFS_ERRLEVEL_LOW, mp, bp->b_addr);
137 xfs_buf_ioerror(bp, EFSCORRUPTED);
138 return;
139 }
140
141 if (!xfs_sb_version_hascrc(&mp->m_sb))
142 return;
143
144 if (bip)
145 hdr3->lsn = cpu_to_be64(bip->bli_item.li_lsn);
146
147 xfs_update_cksum(bp->b_addr, BBTOB(bp->b_length), XFS_DIR3_FREE_CRC_OFF);
2025207c
DC
148}
149
d75afeb3 150const struct xfs_buf_ops xfs_dir3_free_buf_ops = {
cbc8adf8
DC
151 .verify_read = xfs_dir3_free_read_verify,
152 .verify_write = xfs_dir3_free_write_verify,
1813dd64
DC
153};
154
612cfbfe 155
2025207c 156static int
cbc8adf8 157__xfs_dir3_free_read(
2025207c
DC
158 struct xfs_trans *tp,
159 struct xfs_inode *dp,
160 xfs_dablk_t fbno,
161 xfs_daddr_t mappedbno,
162 struct xfs_buf **bpp)
163{
d75afeb3
DC
164 int err;
165
166 err = xfs_da_read_buf(tp, dp, fbno, mappedbno, bpp,
cbc8adf8 167 XFS_DATA_FORK, &xfs_dir3_free_buf_ops);
d75afeb3
DC
168
169 /* try read returns without an error or *bpp if it lands in a hole */
170 if (!err && tp && *bpp)
61fe135c 171 xfs_trans_buf_set_type(tp, *bpp, XFS_BLFT_DIR_FREE_BUF);
d75afeb3 172 return err;
2025207c
DC
173}
174
175int
176xfs_dir2_free_read(
177 struct xfs_trans *tp,
178 struct xfs_inode *dp,
179 xfs_dablk_t fbno,
180 struct xfs_buf **bpp)
181{
cbc8adf8 182 return __xfs_dir3_free_read(tp, dp, fbno, -1, bpp);
2025207c
DC
183}
184
185static int
186xfs_dir2_free_try_read(
187 struct xfs_trans *tp,
188 struct xfs_inode *dp,
189 xfs_dablk_t fbno,
190 struct xfs_buf **bpp)
191{
cbc8adf8
DC
192 return __xfs_dir3_free_read(tp, dp, fbno, -2, bpp);
193}
194
195
196void
197xfs_dir3_free_hdr_from_disk(
198 struct xfs_dir3_icfree_hdr *to,
199 struct xfs_dir2_free *from)
200{
201 if (from->hdr.magic == cpu_to_be32(XFS_DIR2_FREE_MAGIC)) {
202 to->magic = be32_to_cpu(from->hdr.magic);
203 to->firstdb = be32_to_cpu(from->hdr.firstdb);
204 to->nvalid = be32_to_cpu(from->hdr.nvalid);
205 to->nused = be32_to_cpu(from->hdr.nused);
206 } else {
207 struct xfs_dir3_free_hdr *hdr3 = (struct xfs_dir3_free_hdr *)from;
208
209 to->magic = be32_to_cpu(hdr3->hdr.magic);
210 to->firstdb = be32_to_cpu(hdr3->firstdb);
211 to->nvalid = be32_to_cpu(hdr3->nvalid);
212 to->nused = be32_to_cpu(hdr3->nused);
213 }
214
215 ASSERT(to->magic == XFS_DIR2_FREE_MAGIC ||
216 to->magic == XFS_DIR3_FREE_MAGIC);
217}
218
219static void
220xfs_dir3_free_hdr_to_disk(
221 struct xfs_dir2_free *to,
222 struct xfs_dir3_icfree_hdr *from)
223{
224 ASSERT(from->magic == XFS_DIR2_FREE_MAGIC ||
225 from->magic == XFS_DIR3_FREE_MAGIC);
226
227 if (from->magic == XFS_DIR2_FREE_MAGIC) {
228 to->hdr.magic = cpu_to_be32(from->magic);
229 to->hdr.firstdb = cpu_to_be32(from->firstdb);
230 to->hdr.nvalid = cpu_to_be32(from->nvalid);
231 to->hdr.nused = cpu_to_be32(from->nused);
232 } else {
233 struct xfs_dir3_free_hdr *hdr3 = (struct xfs_dir3_free_hdr *)to;
234
235 hdr3->hdr.magic = cpu_to_be32(from->magic);
236 hdr3->firstdb = cpu_to_be32(from->firstdb);
237 hdr3->nvalid = cpu_to_be32(from->nvalid);
238 hdr3->nused = cpu_to_be32(from->nused);
239 }
240}
241
242static int
243xfs_dir3_free_get_buf(
244 struct xfs_trans *tp,
245 struct xfs_inode *dp,
246 xfs_dir2_db_t fbno,
247 struct xfs_buf **bpp)
248{
249 struct xfs_mount *mp = dp->i_mount;
250 struct xfs_buf *bp;
251 int error;
252 struct xfs_dir3_icfree_hdr hdr;
253
254 error = xfs_da_get_buf(tp, dp, xfs_dir2_db_to_da(mp, fbno),
255 -1, &bp, XFS_DATA_FORK);
256 if (error)
257 return error;
258
61fe135c 259 xfs_trans_buf_set_type(tp, bp, XFS_BLFT_DIR_FREE_BUF);
cbc8adf8
DC
260 bp->b_ops = &xfs_dir3_free_buf_ops;
261
262 /*
263 * Initialize the new block to be empty, and remember
264 * its first slot as our empty slot.
265 */
266 hdr.magic = XFS_DIR2_FREE_MAGIC;
267 hdr.firstdb = 0;
268 hdr.nused = 0;
269 hdr.nvalid = 0;
270 if (xfs_sb_version_hascrc(&mp->m_sb)) {
271 struct xfs_dir3_free_hdr *hdr3 = bp->b_addr;
272
273 hdr.magic = XFS_DIR3_FREE_MAGIC;
274 hdr3->hdr.blkno = cpu_to_be64(bp->b_bn);
275 hdr3->hdr.owner = cpu_to_be64(dp->i_ino);
276 uuid_copy(&hdr3->hdr.uuid, &mp->m_sb.sb_uuid);
277 }
278 xfs_dir3_free_hdr_to_disk(bp->b_addr, &hdr);
279 *bpp = bp;
280 return 0;
2025207c
DC
281}
282
1da177e4
LT
283/*
284 * Log entries from a freespace block.
285 */
5d77c0dc 286STATIC void
1da177e4 287xfs_dir2_free_log_bests(
1d9025e5
DC
288 struct xfs_trans *tp,
289 struct xfs_buf *bp,
1da177e4
LT
290 int first, /* first entry to log */
291 int last) /* last entry to log */
292{
293 xfs_dir2_free_t *free; /* freespace structure */
cbc8adf8 294 __be16 *bests;
1da177e4 295
1d9025e5 296 free = bp->b_addr;
cbc8adf8
DC
297 bests = xfs_dir3_free_bests_p(tp->t_mountp, free);
298 ASSERT(free->hdr.magic == cpu_to_be32(XFS_DIR2_FREE_MAGIC) ||
299 free->hdr.magic == cpu_to_be32(XFS_DIR3_FREE_MAGIC));
1d9025e5 300 xfs_trans_log_buf(tp, bp,
cbc8adf8
DC
301 (uint)((char *)&bests[first] - (char *)free),
302 (uint)((char *)&bests[last] - (char *)free +
303 sizeof(bests[0]) - 1));
1da177e4
LT
304}
305
306/*
307 * Log header from a freespace block.
308 */
309static void
310xfs_dir2_free_log_header(
1d9025e5
DC
311 struct xfs_trans *tp,
312 struct xfs_buf *bp)
1da177e4
LT
313{
314 xfs_dir2_free_t *free; /* freespace structure */
315
1d9025e5 316 free = bp->b_addr;
cbc8adf8
DC
317 ASSERT(free->hdr.magic == cpu_to_be32(XFS_DIR2_FREE_MAGIC) ||
318 free->hdr.magic == cpu_to_be32(XFS_DIR3_FREE_MAGIC));
319 xfs_trans_log_buf(tp, bp, 0, xfs_dir3_free_hdr_size(tp->t_mountp) - 1);
1da177e4
LT
320}
321
322/*
323 * Convert a leaf-format directory to a node-format directory.
324 * We need to change the magic number of the leaf block, and copy
325 * the freespace table out of the leaf block into its own block.
326 */
327int /* error */
328xfs_dir2_leaf_to_node(
329 xfs_da_args_t *args, /* operation arguments */
1d9025e5 330 struct xfs_buf *lbp) /* leaf buffer */
1da177e4
LT
331{
332 xfs_inode_t *dp; /* incore directory inode */
333 int error; /* error return value */
1d9025e5 334 struct xfs_buf *fbp; /* freespace buffer */
1da177e4
LT
335 xfs_dir2_db_t fdb; /* freespace block number */
336 xfs_dir2_free_t *free; /* freespace structure */
68b3a102 337 __be16 *from; /* pointer to freespace entry */
1da177e4
LT
338 int i; /* leaf freespace index */
339 xfs_dir2_leaf_t *leaf; /* leaf structure */
340 xfs_dir2_leaf_tail_t *ltp; /* leaf tail structure */
341 xfs_mount_t *mp; /* filesystem mount point */
342 int n; /* count of live freespc ents */
343 xfs_dir2_data_off_t off; /* freespace entry value */
0ba962ef 344 __be16 *to; /* pointer to freespace entry */
1da177e4 345 xfs_trans_t *tp; /* transaction pointer */
cbc8adf8 346 struct xfs_dir3_icfree_hdr freehdr;
1da177e4 347
0b1b213f
CH
348 trace_xfs_dir2_leaf_to_node(args);
349
1da177e4
LT
350 dp = args->dp;
351 mp = dp->i_mount;
352 tp = args->trans;
353 /*
354 * Add a freespace block to the directory.
355 */
356 if ((error = xfs_dir2_grow_inode(args, XFS_DIR2_FREE_SPACE, &fdb))) {
357 return error;
358 }
359 ASSERT(fdb == XFS_DIR2_FREE_FIRSTDB(mp));
360 /*
361 * Get the buffer for the new freespace block.
362 */
cbc8adf8 363 error = xfs_dir3_free_get_buf(tp, dp, fdb, &fbp);
b0f539de 364 if (error)
1da177e4 365 return error;
b0f539de 366
1d9025e5 367 free = fbp->b_addr;
cbc8adf8 368 xfs_dir3_free_hdr_from_disk(&freehdr, free);
1d9025e5 369 leaf = lbp->b_addr;
bbaaf538 370 ltp = xfs_dir2_leaf_tail_p(mp, leaf);
cbc8adf8
DC
371 ASSERT(be32_to_cpu(ltp->bestcount) <=
372 (uint)dp->i_d.di_size / mp->m_dirblksize);
373
1da177e4
LT
374 /*
375 * Copy freespace entries from the leaf block to the new block.
376 * Count active entries.
377 */
cbc8adf8
DC
378 from = xfs_dir2_leaf_bests_p(ltp);
379 to = xfs_dir3_free_bests_p(mp, free);
380 for (i = n = 0; i < be32_to_cpu(ltp->bestcount); i++, from++, to++) {
68b3a102 381 if ((off = be16_to_cpu(*from)) != NULLDATAOFF)
1da177e4 382 n++;
0ba962ef 383 *to = cpu_to_be16(off);
1da177e4 384 }
b0f539de 385
1da177e4 386 /*
cbc8adf8 387 * Now initialize the freespace block header.
1da177e4 388 */
cbc8adf8
DC
389 freehdr.nused = n;
390 freehdr.nvalid = be32_to_cpu(ltp->bestcount);
391
392 xfs_dir3_free_hdr_to_disk(fbp->b_addr, &freehdr);
393 xfs_dir2_free_log_bests(tp, fbp, 0, freehdr.nvalid - 1);
1da177e4 394 xfs_dir2_free_log_header(tp, fbp);
cbc8adf8 395
24df33b4
DC
396 /*
397 * Converting the leaf to a leafnode is just a matter of changing the
398 * magic number and the ops. Do the change directly to the buffer as
399 * it's less work (and less code) than decoding the header to host
400 * format and back again.
401 */
402 if (leaf->hdr.info.magic == cpu_to_be16(XFS_DIR2_LEAF1_MAGIC))
403 leaf->hdr.info.magic = cpu_to_be16(XFS_DIR2_LEAFN_MAGIC);
404 else
405 leaf->hdr.info.magic = cpu_to_be16(XFS_DIR3_LEAFN_MAGIC);
406 lbp->b_ops = &xfs_dir3_leafn_buf_ops;
61fe135c 407 xfs_trans_buf_set_type(tp, lbp, XFS_BLFT_DIR_LEAFN_BUF);
24df33b4
DC
408 xfs_dir3_leaf_log_header(tp, lbp);
409 xfs_dir3_leaf_check(mp, lbp);
1da177e4
LT
410 return 0;
411}
412
413/*
414 * Add a leaf entry to a leaf block in a node-form directory.
415 * The other work necessary is done from the caller.
416 */
417static int /* error */
418xfs_dir2_leafn_add(
1d9025e5 419 struct xfs_buf *bp, /* leaf buffer */
1da177e4
LT
420 xfs_da_args_t *args, /* operation arguments */
421 int index) /* insertion pt for new entry */
422{
423 int compact; /* compacting stale leaves */
424 xfs_inode_t *dp; /* incore directory inode */
425 int highstale; /* next stale entry */
426 xfs_dir2_leaf_t *leaf; /* leaf structure */
427 xfs_dir2_leaf_entry_t *lep; /* leaf entry */
428 int lfloghigh; /* high leaf entry logging */
429 int lfloglow; /* low leaf entry logging */
430 int lowstale; /* previous stale entry */
431 xfs_mount_t *mp; /* filesystem mount point */
432 xfs_trans_t *tp; /* transaction pointer */
24df33b4
DC
433 struct xfs_dir3_icleaf_hdr leafhdr;
434 struct xfs_dir2_leaf_entry *ents;
1da177e4 435
0b1b213f
CH
436 trace_xfs_dir2_leafn_add(args, index);
437
1da177e4
LT
438 dp = args->dp;
439 mp = dp->i_mount;
440 tp = args->trans;
1d9025e5 441 leaf = bp->b_addr;
24df33b4
DC
442 xfs_dir3_leaf_hdr_from_disk(&leafhdr, leaf);
443 ents = xfs_dir3_leaf_ents_p(leaf);
1da177e4
LT
444
445 /*
446 * Quick check just to make sure we are not going to index
447 * into other peoples memory
448 */
449 if (index < 0)
450 return XFS_ERROR(EFSCORRUPTED);
451
452 /*
453 * If there are already the maximum number of leaf entries in
454 * the block, if there are no stale entries it won't fit.
455 * Caller will do a split. If there are stale entries we'll do
456 * a compact.
457 */
458
24df33b4
DC
459 if (leafhdr.count == xfs_dir3_max_leaf_ents(mp, leaf)) {
460 if (!leafhdr.stale)
1da177e4 461 return XFS_ERROR(ENOSPC);
24df33b4 462 compact = leafhdr.stale > 1;
1da177e4
LT
463 } else
464 compact = 0;
24df33b4
DC
465 ASSERT(index == 0 || be32_to_cpu(ents[index - 1].hashval) <= args->hashval);
466 ASSERT(index == leafhdr.count ||
467 be32_to_cpu(ents[index].hashval) >= args->hashval);
1da177e4 468
6a178100 469 if (args->op_flags & XFS_DA_OP_JUSTCHECK)
1da177e4
LT
470 return 0;
471
472 /*
473 * Compact out all but one stale leaf entry. Leaves behind
474 * the entry closest to index.
475 */
24df33b4
DC
476 if (compact)
477 xfs_dir3_leaf_compact_x1(&leafhdr, ents, &index, &lowstale,
478 &highstale, &lfloglow, &lfloghigh);
479 else if (leafhdr.stale) {
480 /*
481 * Set impossible logging indices for this case.
482 */
483 lfloglow = leafhdr.count;
1da177e4
LT
484 lfloghigh = -1;
485 }
4fb44c82 486
1da177e4
LT
487 /*
488 * Insert the new entry, log everything.
489 */
24df33b4 490 lep = xfs_dir3_leaf_find_entry(&leafhdr, ents, index, compact, lowstale,
4fb44c82
CH
491 highstale, &lfloglow, &lfloghigh);
492
3c1f9c15 493 lep->hashval = cpu_to_be32(args->hashval);
bbaaf538 494 lep->address = cpu_to_be32(xfs_dir2_db_off_to_dataptr(mp,
3c1f9c15 495 args->blkno, args->index));
24df33b4
DC
496
497 xfs_dir3_leaf_hdr_to_disk(leaf, &leafhdr);
498 xfs_dir3_leaf_log_header(tp, bp);
499 xfs_dir3_leaf_log_ents(tp, bp, lfloglow, lfloghigh);
500 xfs_dir3_leaf_check(mp, bp);
1da177e4
LT
501 return 0;
502}
503
504#ifdef DEBUG
cbc8adf8
DC
505static void
506xfs_dir2_free_hdr_check(
507 struct xfs_mount *mp,
508 struct xfs_buf *bp,
509 xfs_dir2_db_t db)
510{
511 struct xfs_dir3_icfree_hdr hdr;
512
513 xfs_dir3_free_hdr_from_disk(&hdr, bp->b_addr);
514
515 ASSERT((hdr.firstdb % xfs_dir3_free_max_bests(mp)) == 0);
516 ASSERT(hdr.firstdb <= db);
517 ASSERT(db < hdr.firstdb + hdr.nvalid);
518}
519#else
520#define xfs_dir2_free_hdr_check(mp, dp, db)
1da177e4
LT
521#endif /* DEBUG */
522
523/*
524 * Return the last hash value in the leaf.
525 * Stale entries are ok.
526 */
527xfs_dahash_t /* hash value */
528xfs_dir2_leafn_lasthash(
1d9025e5 529 struct xfs_buf *bp, /* leaf buffer */
1da177e4
LT
530 int *count) /* count of entries in leaf */
531{
24df33b4
DC
532 struct xfs_dir2_leaf *leaf = bp->b_addr;
533 struct xfs_dir2_leaf_entry *ents;
534 struct xfs_dir3_icleaf_hdr leafhdr;
535
536 xfs_dir3_leaf_hdr_from_disk(&leafhdr, leaf);
537
538 ASSERT(leafhdr.magic == XFS_DIR2_LEAFN_MAGIC ||
539 leafhdr.magic == XFS_DIR3_LEAFN_MAGIC);
1da177e4 540
1da177e4 541 if (count)
24df33b4
DC
542 *count = leafhdr.count;
543 if (!leafhdr.count)
1da177e4 544 return 0;
24df33b4
DC
545
546 ents = xfs_dir3_leaf_ents_p(leaf);
547 return be32_to_cpu(ents[leafhdr.count - 1].hashval);
1da177e4
LT
548}
549
550/*
f9f6dce0
BN
551 * Look up a leaf entry for space to add a name in a node-format leaf block.
552 * The extrablk in state is a freespace block.
1da177e4 553 */
f9f6dce0
BN
554STATIC int
555xfs_dir2_leafn_lookup_for_addname(
1d9025e5 556 struct xfs_buf *bp, /* leaf buffer */
1da177e4
LT
557 xfs_da_args_t *args, /* operation arguments */
558 int *indexp, /* out: leaf entry index */
559 xfs_da_state_t *state) /* state to fill in */
560{
1d9025e5 561 struct xfs_buf *curbp = NULL; /* current data/free buffer */
f9f6dce0
BN
562 xfs_dir2_db_t curdb = -1; /* current data block number */
563 xfs_dir2_db_t curfdb = -1; /* current free block number */
1da177e4
LT
564 xfs_inode_t *dp; /* incore directory inode */
565 int error; /* error return value */
566 int fi; /* free entry index */
f9f6dce0 567 xfs_dir2_free_t *free = NULL; /* free block structure */
1da177e4
LT
568 int index; /* leaf entry index */
569 xfs_dir2_leaf_t *leaf; /* leaf structure */
f9f6dce0 570 int length; /* length of new data entry */
1da177e4
LT
571 xfs_dir2_leaf_entry_t *lep; /* leaf entry */
572 xfs_mount_t *mp; /* filesystem mount point */
573 xfs_dir2_db_t newdb; /* new data block number */
574 xfs_dir2_db_t newfdb; /* new free block number */
575 xfs_trans_t *tp; /* transaction pointer */
24df33b4
DC
576 struct xfs_dir2_leaf_entry *ents;
577 struct xfs_dir3_icleaf_hdr leafhdr;
1da177e4
LT
578
579 dp = args->dp;
580 tp = args->trans;
581 mp = dp->i_mount;
1d9025e5 582 leaf = bp->b_addr;
24df33b4
DC
583 xfs_dir3_leaf_hdr_from_disk(&leafhdr, leaf);
584 ents = xfs_dir3_leaf_ents_p(leaf);
585
586 xfs_dir3_leaf_check(mp, bp);
587 ASSERT(leafhdr.count > 0);
588
1da177e4
LT
589 /*
590 * Look up the hash value in the leaf entries.
591 */
592 index = xfs_dir2_leaf_search_hash(args, bp);
593 /*
594 * Do we have a buffer coming in?
595 */
f9f6dce0
BN
596 if (state->extravalid) {
597 /* If so, it's a free block buffer, get the block number. */
1da177e4 598 curbp = state->extrablk.bp;
f9f6dce0 599 curfdb = state->extrablk.blkno;
1d9025e5 600 free = curbp->b_addr;
cbc8adf8
DC
601 ASSERT(free->hdr.magic == cpu_to_be32(XFS_DIR2_FREE_MAGIC) ||
602 free->hdr.magic == cpu_to_be32(XFS_DIR3_FREE_MAGIC));
1da177e4 603 }
f9f6dce0 604 length = xfs_dir2_data_entsize(args->namelen);
1da177e4
LT
605 /*
606 * Loop over leaf entries with the right hash value.
607 */
24df33b4
DC
608 for (lep = &ents[index];
609 index < leafhdr.count && be32_to_cpu(lep->hashval) == args->hashval;
610 lep++, index++) {
1da177e4
LT
611 /*
612 * Skip stale leaf entries.
613 */
3c1f9c15 614 if (be32_to_cpu(lep->address) == XFS_DIR2_NULL_DATAPTR)
1da177e4
LT
615 continue;
616 /*
617 * Pull the data block number from the entry.
618 */
bbaaf538 619 newdb = xfs_dir2_dataptr_to_db(mp, be32_to_cpu(lep->address));
1da177e4
LT
620 /*
621 * For addname, we're looking for a place to put the new entry.
622 * We want to use a data block with an entry of equal
623 * hash value to ours if there is one with room.
f9f6dce0
BN
624 *
625 * If this block isn't the data block we already have
626 * in hand, take a look at it.
1da177e4 627 */
f9f6dce0 628 if (newdb != curdb) {
cbc8adf8
DC
629 __be16 *bests;
630
f9f6dce0 631 curdb = newdb;
1da177e4 632 /*
f9f6dce0
BN
633 * Convert the data block to the free block
634 * holding its freespace information.
1da177e4 635 */
f9f6dce0 636 newfdb = xfs_dir2_db_to_fdb(mp, newdb);
1da177e4 637 /*
f9f6dce0 638 * If it's not the one we have in hand, read it in.
1da177e4 639 */
f9f6dce0 640 if (newfdb != curfdb) {
1da177e4 641 /*
f9f6dce0 642 * If we had one before, drop it.
1da177e4
LT
643 */
644 if (curbp)
1d9025e5 645 xfs_trans_brelse(tp, curbp);
2025207c
DC
646
647 error = xfs_dir2_free_read(tp, dp,
f9f6dce0 648 xfs_dir2_db_to_da(mp, newfdb),
2025207c 649 &curbp);
f9f6dce0 650 if (error)
1da177e4 651 return error;
1d9025e5 652 free = curbp->b_addr;
cbc8adf8
DC
653
654 xfs_dir2_free_hdr_check(mp, curbp, curdb);
1da177e4
LT
655 }
656 /*
f9f6dce0 657 * Get the index for our entry.
1da177e4 658 */
f9f6dce0 659 fi = xfs_dir2_db_to_fdindex(mp, curdb);
1da177e4 660 /*
f9f6dce0 661 * If it has room, return it.
1da177e4 662 */
cbc8adf8
DC
663 bests = xfs_dir3_free_bests_p(mp, free);
664 if (unlikely(bests[fi] == cpu_to_be16(NULLDATAOFF))) {
f9f6dce0
BN
665 XFS_ERROR_REPORT("xfs_dir2_leafn_lookup_int",
666 XFS_ERRLEVEL_LOW, mp);
667 if (curfdb != newfdb)
1d9025e5 668 xfs_trans_brelse(tp, curbp);
f9f6dce0 669 return XFS_ERROR(EFSCORRUPTED);
1da177e4 670 }
f9f6dce0 671 curfdb = newfdb;
cbc8adf8 672 if (be16_to_cpu(bests[fi]) >= length)
f9f6dce0 673 goto out;
1da177e4
LT
674 }
675 }
f9f6dce0
BN
676 /* Didn't find any space */
677 fi = -1;
678out:
6a178100 679 ASSERT(args->op_flags & XFS_DA_OP_OKNOENT);
f9f6dce0
BN
680 if (curbp) {
681 /* Giving back a free block. */
682 state->extravalid = 1;
683 state->extrablk.bp = curbp;
684 state->extrablk.index = fi;
685 state->extrablk.blkno = curfdb;
cbc8adf8
DC
686
687 /*
688 * Important: this magic number is not in the buffer - it's for
689 * buffer type information and therefore only the free/data type
690 * matters here, not whether CRCs are enabled or not.
691 */
f9f6dce0
BN
692 state->extrablk.magic = XFS_DIR2_FREE_MAGIC;
693 } else {
694 state->extravalid = 0;
695 }
1da177e4 696 /*
f9f6dce0 697 * Return the index, that will be the insertion point.
1da177e4 698 */
f9f6dce0
BN
699 *indexp = index;
700 return XFS_ERROR(ENOENT);
701}
702
703/*
704 * Look up a leaf entry in a node-format leaf block.
705 * The extrablk in state a data block.
706 */
707STATIC int
708xfs_dir2_leafn_lookup_for_entry(
1d9025e5 709 struct xfs_buf *bp, /* leaf buffer */
f9f6dce0
BN
710 xfs_da_args_t *args, /* operation arguments */
711 int *indexp, /* out: leaf entry index */
712 xfs_da_state_t *state) /* state to fill in */
713{
1d9025e5 714 struct xfs_buf *curbp = NULL; /* current data/free buffer */
f9f6dce0
BN
715 xfs_dir2_db_t curdb = -1; /* current data block number */
716 xfs_dir2_data_entry_t *dep; /* data block entry */
717 xfs_inode_t *dp; /* incore directory inode */
718 int error; /* error return value */
f9f6dce0
BN
719 int index; /* leaf entry index */
720 xfs_dir2_leaf_t *leaf; /* leaf structure */
721 xfs_dir2_leaf_entry_t *lep; /* leaf entry */
722 xfs_mount_t *mp; /* filesystem mount point */
723 xfs_dir2_db_t newdb; /* new data block number */
724 xfs_trans_t *tp; /* transaction pointer */
5163f95a 725 enum xfs_dacmp cmp; /* comparison result */
24df33b4
DC
726 struct xfs_dir2_leaf_entry *ents;
727 struct xfs_dir3_icleaf_hdr leafhdr;
f9f6dce0
BN
728
729 dp = args->dp;
730 tp = args->trans;
731 mp = dp->i_mount;
1d9025e5 732 leaf = bp->b_addr;
24df33b4
DC
733 xfs_dir3_leaf_hdr_from_disk(&leafhdr, leaf);
734 ents = xfs_dir3_leaf_ents_p(leaf);
735
736 xfs_dir3_leaf_check(mp, bp);
737 ASSERT(leafhdr.count > 0);
738
f9f6dce0
BN
739 /*
740 * Look up the hash value in the leaf entries.
741 */
742 index = xfs_dir2_leaf_search_hash(args, bp);
743 /*
744 * Do we have a buffer coming in?
745 */
746 if (state->extravalid) {
747 curbp = state->extrablk.bp;
748 curdb = state->extrablk.blkno;
749 }
750 /*
751 * Loop over leaf entries with the right hash value.
752 */
24df33b4
DC
753 for (lep = &ents[index];
754 index < leafhdr.count && be32_to_cpu(lep->hashval) == args->hashval;
755 lep++, index++) {
f9f6dce0
BN
756 /*
757 * Skip stale leaf entries.
758 */
759 if (be32_to_cpu(lep->address) == XFS_DIR2_NULL_DATAPTR)
760 continue;
1da177e4 761 /*
f9f6dce0
BN
762 * Pull the data block number from the entry.
763 */
764 newdb = xfs_dir2_dataptr_to_db(mp, be32_to_cpu(lep->address));
765 /*
766 * Not adding a new entry, so we really want to find
767 * the name given to us.
768 *
769 * If it's a different data block, go get it.
1da177e4 770 */
f9f6dce0
BN
771 if (newdb != curdb) {
772 /*
90bb7ab0
BN
773 * If we had a block before that we aren't saving
774 * for a CI name, drop it
f9f6dce0 775 */
90bb7ab0
BN
776 if (curbp && (args->cmpresult == XFS_CMP_DIFFERENT ||
777 curdb != state->extrablk.blkno))
1d9025e5 778 xfs_trans_brelse(tp, curbp);
f9f6dce0 779 /*
90bb7ab0
BN
780 * If needing the block that is saved with a CI match,
781 * use it otherwise read in the new data block.
f9f6dce0 782 */
90bb7ab0
BN
783 if (args->cmpresult != XFS_CMP_DIFFERENT &&
784 newdb == state->extrablk.blkno) {
785 ASSERT(state->extravalid);
786 curbp = state->extrablk.bp;
787 } else {
33363fee 788 error = xfs_dir3_data_read(tp, dp,
90bb7ab0 789 xfs_dir2_db_to_da(mp, newdb),
e4813572 790 -1, &curbp);
90bb7ab0
BN
791 if (error)
792 return error;
793 }
33363fee 794 xfs_dir3_data_check(dp, curbp);
f9f6dce0 795 curdb = newdb;
1da177e4
LT
796 }
797 /*
f9f6dce0 798 * Point to the data entry.
1da177e4 799 */
1d9025e5 800 dep = (xfs_dir2_data_entry_t *)((char *)curbp->b_addr +
f9f6dce0
BN
801 xfs_dir2_dataptr_to_off(mp, be32_to_cpu(lep->address)));
802 /*
5163f95a
BN
803 * Compare the entry and if it's an exact match, return
804 * EEXIST immediately. If it's the first case-insensitive
90bb7ab0 805 * match, store the block & inode number and continue looking.
f9f6dce0 806 */
5163f95a
BN
807 cmp = mp->m_dirnameops->compname(args, dep->name, dep->namelen);
808 if (cmp != XFS_CMP_DIFFERENT && cmp != args->cmpresult) {
90bb7ab0
BN
809 /* If there is a CI match block, drop it */
810 if (args->cmpresult != XFS_CMP_DIFFERENT &&
811 curdb != state->extrablk.blkno)
1d9025e5 812 xfs_trans_brelse(tp, state->extrablk.bp);
5163f95a 813 args->cmpresult = cmp;
f9f6dce0 814 args->inumber = be64_to_cpu(dep->inumber);
90bb7ab0
BN
815 *indexp = index;
816 state->extravalid = 1;
817 state->extrablk.bp = curbp;
818 state->extrablk.blkno = curdb;
819 state->extrablk.index = (int)((char *)dep -
1d9025e5 820 (char *)curbp->b_addr);
90bb7ab0 821 state->extrablk.magic = XFS_DIR2_DATA_MAGIC;
33363fee 822 curbp->b_ops = &xfs_dir3_data_buf_ops;
61fe135c 823 xfs_trans_buf_set_type(tp, curbp, XFS_BLFT_DIR_DATA_BUF);
5163f95a 824 if (cmp == XFS_CMP_EXACT)
90bb7ab0 825 return XFS_ERROR(EEXIST);
1da177e4
LT
826 }
827 }
24df33b4 828 ASSERT(index == leafhdr.count || (args->op_flags & XFS_DA_OP_OKNOENT));
f9f6dce0 829 if (curbp) {
90bb7ab0
BN
830 if (args->cmpresult == XFS_CMP_DIFFERENT) {
831 /* Giving back last used data block. */
832 state->extravalid = 1;
833 state->extrablk.bp = curbp;
834 state->extrablk.index = -1;
835 state->extrablk.blkno = curdb;
836 state->extrablk.magic = XFS_DIR2_DATA_MAGIC;
33363fee 837 curbp->b_ops = &xfs_dir3_data_buf_ops;
61fe135c 838 xfs_trans_buf_set_type(tp, curbp, XFS_BLFT_DIR_DATA_BUF);
90bb7ab0
BN
839 } else {
840 /* If the curbp is not the CI match block, drop it */
841 if (state->extrablk.bp != curbp)
1d9025e5 842 xfs_trans_brelse(tp, curbp);
90bb7ab0 843 }
f9f6dce0
BN
844 } else {
845 state->extravalid = 0;
846 }
1da177e4 847 *indexp = index;
90bb7ab0 848 return XFS_ERROR(ENOENT);
f9f6dce0
BN
849}
850
851/*
852 * Look up a leaf entry in a node-format leaf block.
853 * If this is an addname then the extrablk in state is a freespace block,
854 * otherwise it's a data block.
855 */
856int
857xfs_dir2_leafn_lookup_int(
1d9025e5 858 struct xfs_buf *bp, /* leaf buffer */
f9f6dce0
BN
859 xfs_da_args_t *args, /* operation arguments */
860 int *indexp, /* out: leaf entry index */
861 xfs_da_state_t *state) /* state to fill in */
862{
6a178100 863 if (args->op_flags & XFS_DA_OP_ADDNAME)
f9f6dce0
BN
864 return xfs_dir2_leafn_lookup_for_addname(bp, args, indexp,
865 state);
866 return xfs_dir2_leafn_lookup_for_entry(bp, args, indexp, state);
1da177e4
LT
867}
868
869/*
870 * Move count leaf entries from source to destination leaf.
871 * Log entries and headers. Stale entries are preserved.
872 */
873static void
24df33b4
DC
874xfs_dir3_leafn_moveents(
875 xfs_da_args_t *args, /* operation arguments */
876 struct xfs_buf *bp_s, /* source */
877 struct xfs_dir3_icleaf_hdr *shdr,
878 struct xfs_dir2_leaf_entry *sents,
879 int start_s,/* source leaf index */
880 struct xfs_buf *bp_d, /* destination */
881 struct xfs_dir3_icleaf_hdr *dhdr,
882 struct xfs_dir2_leaf_entry *dents,
883 int start_d,/* destination leaf index */
884 int count) /* count of leaves to copy */
1da177e4 885{
24df33b4
DC
886 struct xfs_trans *tp = args->trans;
887 int stale; /* count stale leaves copied */
1da177e4 888
0b1b213f
CH
889 trace_xfs_dir2_leafn_moveents(args, start_s, start_d, count);
890
1da177e4
LT
891 /*
892 * Silently return if nothing to do.
893 */
24df33b4 894 if (count == 0)
1da177e4 895 return;
24df33b4 896
1da177e4
LT
897 /*
898 * If the destination index is not the end of the current
899 * destination leaf entries, open up a hole in the destination
900 * to hold the new entries.
901 */
24df33b4
DC
902 if (start_d < dhdr->count) {
903 memmove(&dents[start_d + count], &dents[start_d],
904 (dhdr->count - start_d) * sizeof(xfs_dir2_leaf_entry_t));
905 xfs_dir3_leaf_log_ents(tp, bp_d, start_d + count,
906 count + dhdr->count - 1);
1da177e4
LT
907 }
908 /*
909 * If the source has stale leaves, count the ones in the copy range
910 * so we can update the header correctly.
911 */
24df33b4 912 if (shdr->stale) {
1da177e4
LT
913 int i; /* temp leaf index */
914
915 for (i = start_s, stale = 0; i < start_s + count; i++) {
24df33b4
DC
916 if (sents[i].address ==
917 cpu_to_be32(XFS_DIR2_NULL_DATAPTR))
1da177e4
LT
918 stale++;
919 }
920 } else
921 stale = 0;
922 /*
923 * Copy the leaf entries from source to destination.
924 */
24df33b4 925 memcpy(&dents[start_d], &sents[start_s],
1da177e4 926 count * sizeof(xfs_dir2_leaf_entry_t));
24df33b4
DC
927 xfs_dir3_leaf_log_ents(tp, bp_d, start_d, start_d + count - 1);
928
1da177e4
LT
929 /*
930 * If there are source entries after the ones we copied,
931 * delete the ones we copied by sliding the next ones down.
932 */
24df33b4
DC
933 if (start_s + count < shdr->count) {
934 memmove(&sents[start_s], &sents[start_s + count],
1da177e4 935 count * sizeof(xfs_dir2_leaf_entry_t));
24df33b4 936 xfs_dir3_leaf_log_ents(tp, bp_s, start_s, start_s + count - 1);
1da177e4 937 }
24df33b4 938
1da177e4
LT
939 /*
940 * Update the headers and log them.
941 */
24df33b4
DC
942 shdr->count -= count;
943 shdr->stale -= stale;
944 dhdr->count += count;
945 dhdr->stale += stale;
1da177e4
LT
946}
947
948/*
949 * Determine the sort order of two leaf blocks.
950 * Returns 1 if both are valid and leaf2 should be before leaf1, else 0.
951 */
952int /* sort order */
953xfs_dir2_leafn_order(
24df33b4
DC
954 struct xfs_buf *leaf1_bp, /* leaf1 buffer */
955 struct xfs_buf *leaf2_bp) /* leaf2 buffer */
1da177e4 956{
24df33b4
DC
957 struct xfs_dir2_leaf *leaf1 = leaf1_bp->b_addr;
958 struct xfs_dir2_leaf *leaf2 = leaf2_bp->b_addr;
959 struct xfs_dir2_leaf_entry *ents1;
960 struct xfs_dir2_leaf_entry *ents2;
961 struct xfs_dir3_icleaf_hdr hdr1;
962 struct xfs_dir3_icleaf_hdr hdr2;
963
964 xfs_dir3_leaf_hdr_from_disk(&hdr1, leaf1);
965 xfs_dir3_leaf_hdr_from_disk(&hdr2, leaf2);
966 ents1 = xfs_dir3_leaf_ents_p(leaf1);
967 ents2 = xfs_dir3_leaf_ents_p(leaf2);
968
969 if (hdr1.count > 0 && hdr2.count > 0 &&
970 (be32_to_cpu(ents2[0].hashval) < be32_to_cpu(ents1[0].hashval) ||
971 be32_to_cpu(ents2[hdr2.count - 1].hashval) <
972 be32_to_cpu(ents1[hdr1.count - 1].hashval)))
1da177e4
LT
973 return 1;
974 return 0;
975}
976
977/*
978 * Rebalance leaf entries between two leaf blocks.
979 * This is actually only called when the second block is new,
980 * though the code deals with the general case.
981 * A new entry will be inserted in one of the blocks, and that
982 * entry is taken into account when balancing.
983 */
984static void
985xfs_dir2_leafn_rebalance(
986 xfs_da_state_t *state, /* btree cursor */
987 xfs_da_state_blk_t *blk1, /* first btree block */
988 xfs_da_state_blk_t *blk2) /* second btree block */
989{
990 xfs_da_args_t *args; /* operation arguments */
991 int count; /* count (& direction) leaves */
992 int isleft; /* new goes in left leaf */
993 xfs_dir2_leaf_t *leaf1; /* first leaf structure */
994 xfs_dir2_leaf_t *leaf2; /* second leaf structure */
995 int mid; /* midpoint leaf index */
996#ifdef DEBUG
997 int oldstale; /* old count of stale leaves */
998#endif
999 int oldsum; /* old total leaf count */
1000 int swap; /* swapped leaf blocks */
24df33b4
DC
1001 struct xfs_dir2_leaf_entry *ents1;
1002 struct xfs_dir2_leaf_entry *ents2;
1003 struct xfs_dir3_icleaf_hdr hdr1;
1004 struct xfs_dir3_icleaf_hdr hdr2;
1da177e4
LT
1005
1006 args = state->args;
1007 /*
1008 * If the block order is wrong, swap the arguments.
1009 */
1010 if ((swap = xfs_dir2_leafn_order(blk1->bp, blk2->bp))) {
1011 xfs_da_state_blk_t *tmp; /* temp for block swap */
1012
1013 tmp = blk1;
1014 blk1 = blk2;
1015 blk2 = tmp;
1016 }
1d9025e5
DC
1017 leaf1 = blk1->bp->b_addr;
1018 leaf2 = blk2->bp->b_addr;
24df33b4
DC
1019 xfs_dir3_leaf_hdr_from_disk(&hdr1, leaf1);
1020 xfs_dir3_leaf_hdr_from_disk(&hdr2, leaf2);
1021 ents1 = xfs_dir3_leaf_ents_p(leaf1);
1022 ents2 = xfs_dir3_leaf_ents_p(leaf2);
1023
1024 oldsum = hdr1.count + hdr2.count;
1da177e4 1025#ifdef DEBUG
24df33b4 1026 oldstale = hdr1.stale + hdr2.stale;
1da177e4
LT
1027#endif
1028 mid = oldsum >> 1;
24df33b4 1029
1da177e4
LT
1030 /*
1031 * If the old leaf count was odd then the new one will be even,
1032 * so we need to divide the new count evenly.
1033 */
1034 if (oldsum & 1) {
1035 xfs_dahash_t midhash; /* middle entry hash value */
1036
24df33b4
DC
1037 if (mid >= hdr1.count)
1038 midhash = be32_to_cpu(ents2[mid - hdr1.count].hashval);
1da177e4 1039 else
24df33b4 1040 midhash = be32_to_cpu(ents1[mid].hashval);
1da177e4
LT
1041 isleft = args->hashval <= midhash;
1042 }
1043 /*
1044 * If the old count is even then the new count is odd, so there's
1045 * no preferred side for the new entry.
1046 * Pick the left one.
1047 */
1048 else
1049 isleft = 1;
1050 /*
1051 * Calculate moved entry count. Positive means left-to-right,
1052 * negative means right-to-left. Then move the entries.
1053 */
24df33b4 1054 count = hdr1.count - mid + (isleft == 0);
1da177e4 1055 if (count > 0)
24df33b4
DC
1056 xfs_dir3_leafn_moveents(args, blk1->bp, &hdr1, ents1,
1057 hdr1.count - count, blk2->bp,
1058 &hdr2, ents2, 0, count);
1da177e4 1059 else if (count < 0)
24df33b4
DC
1060 xfs_dir3_leafn_moveents(args, blk2->bp, &hdr2, ents2, 0,
1061 blk1->bp, &hdr1, ents1,
1062 hdr1.count, count);
1063
1064 ASSERT(hdr1.count + hdr2.count == oldsum);
1065 ASSERT(hdr1.stale + hdr2.stale == oldstale);
1066
1067 /* log the changes made when moving the entries */
1068 xfs_dir3_leaf_hdr_to_disk(leaf1, &hdr1);
1069 xfs_dir3_leaf_hdr_to_disk(leaf2, &hdr2);
1070 xfs_dir3_leaf_log_header(args->trans, blk1->bp);
1071 xfs_dir3_leaf_log_header(args->trans, blk2->bp);
1072
1073 xfs_dir3_leaf_check(args->dp->i_mount, blk1->bp);
1074 xfs_dir3_leaf_check(args->dp->i_mount, blk2->bp);
1075
1da177e4
LT
1076 /*
1077 * Mark whether we're inserting into the old or new leaf.
1078 */
24df33b4 1079 if (hdr1.count < hdr2.count)
1da177e4 1080 state->inleaf = swap;
24df33b4 1081 else if (hdr1.count > hdr2.count)
1da177e4
LT
1082 state->inleaf = !swap;
1083 else
24df33b4 1084 state->inleaf = swap ^ (blk1->index <= hdr1.count);
1da177e4
LT
1085 /*
1086 * Adjust the expected index for insertion.
1087 */
1088 if (!state->inleaf)
24df33b4 1089 blk2->index = blk1->index - hdr1.count;
f9f6dce0
BN
1090
1091 /*
1092 * Finally sanity check just to make sure we are not returning a
1093 * negative index
1da177e4
LT
1094 */
1095 if(blk2->index < 0) {
1096 state->inleaf = 1;
1097 blk2->index = 0;
0b932ccc
DC
1098 xfs_alert(args->dp->i_mount,
1099 "%s: picked the wrong leaf? reverting original leaf: blk1->index %d\n",
1100 __func__, blk1->index);
1da177e4
LT
1101 }
1102}
1103
2025207c 1104static int
cbc8adf8 1105xfs_dir3_data_block_free(
2025207c
DC
1106 xfs_da_args_t *args,
1107 struct xfs_dir2_data_hdr *hdr,
1108 struct xfs_dir2_free *free,
1109 xfs_dir2_db_t fdb,
1110 int findex,
1111 struct xfs_buf *fbp,
1112 int longest)
1113{
1114 struct xfs_trans *tp = args->trans;
1115 int logfree = 0;
cbc8adf8
DC
1116 __be16 *bests;
1117 struct xfs_dir3_icfree_hdr freehdr;
2025207c 1118
cbc8adf8 1119 xfs_dir3_free_hdr_from_disk(&freehdr, free);
2025207c 1120
cbc8adf8
DC
1121 bests = xfs_dir3_free_bests_p(tp->t_mountp, free);
1122 if (hdr) {
2025207c 1123 /*
cbc8adf8
DC
1124 * Data block is not empty, just set the free entry to the new
1125 * value.
2025207c 1126 */
cbc8adf8
DC
1127 bests[findex] = cpu_to_be16(longest);
1128 xfs_dir2_free_log_bests(tp, fbp, findex, findex);
1129 return 0;
1130 }
2025207c 1131
cbc8adf8
DC
1132 /* One less used entry in the free table. */
1133 freehdr.nused--;
2025207c 1134
cbc8adf8
DC
1135 /*
1136 * If this was the last entry in the table, we can trim the table size
1137 * back. There might be other entries at the end referring to
1138 * non-existent data blocks, get those too.
1139 */
1140 if (findex == freehdr.nvalid - 1) {
1141 int i; /* free entry index */
1142
1143 for (i = findex - 1; i >= 0; i--) {
1144 if (bests[i] != cpu_to_be16(NULLDATAOFF))
1145 break;
2025207c 1146 }
cbc8adf8
DC
1147 freehdr.nvalid = i + 1;
1148 logfree = 0;
2025207c 1149 } else {
cbc8adf8
DC
1150 /* Not the last entry, just punch it out. */
1151 bests[findex] = cpu_to_be16(NULLDATAOFF);
1152 logfree = 1;
1153 }
1154
1155 xfs_dir3_free_hdr_to_disk(free, &freehdr);
1156 xfs_dir2_free_log_header(tp, fbp);
1157
1158 /*
1159 * If there are no useful entries left in the block, get rid of the
1160 * block if we can.
1161 */
1162 if (!freehdr.nused) {
1163 int error;
1164
1165 error = xfs_dir2_shrink_inode(args, fdb, fbp);
1166 if (error == 0) {
1167 fbp = NULL;
1168 logfree = 0;
1169 } else if (error != ENOSPC || args->total != 0)
1170 return error;
2025207c 1171 /*
cbc8adf8
DC
1172 * It's possible to get ENOSPC if there is no
1173 * space reservation. In this case some one
1174 * else will eventually get rid of this block.
2025207c 1175 */
2025207c
DC
1176 }
1177
1178 /* Log the free entry that changed, unless we got rid of it. */
1179 if (logfree)
1180 xfs_dir2_free_log_bests(tp, fbp, findex, findex);
1181 return 0;
1182}
1183
1da177e4
LT
1184/*
1185 * Remove an entry from a node directory.
1186 * This removes the leaf entry and the data entry,
1187 * and updates the free block if necessary.
1188 */
1189static int /* error */
1190xfs_dir2_leafn_remove(
1191 xfs_da_args_t *args, /* operation arguments */
1d9025e5 1192 struct xfs_buf *bp, /* leaf buffer */
1da177e4
LT
1193 int index, /* leaf entry index */
1194 xfs_da_state_blk_t *dblk, /* data block */
1195 int *rval) /* resulting block needs join */
1196{
c2066e26 1197 xfs_dir2_data_hdr_t *hdr; /* data block header */
1da177e4 1198 xfs_dir2_db_t db; /* data block number */
1d9025e5 1199 struct xfs_buf *dbp; /* data block buffer */
1da177e4
LT
1200 xfs_dir2_data_entry_t *dep; /* data block entry */
1201 xfs_inode_t *dp; /* incore directory inode */
1202 xfs_dir2_leaf_t *leaf; /* leaf structure */
1203 xfs_dir2_leaf_entry_t *lep; /* leaf entry */
1204 int longest; /* longest data free entry */
1205 int off; /* data block entry offset */
1206 xfs_mount_t *mp; /* filesystem mount point */
1207 int needlog; /* need to log data header */
1208 int needscan; /* need to rescan data frees */
1209 xfs_trans_t *tp; /* transaction pointer */
33363fee 1210 struct xfs_dir2_data_free *bf; /* bestfree table */
24df33b4
DC
1211 struct xfs_dir3_icleaf_hdr leafhdr;
1212 struct xfs_dir2_leaf_entry *ents;
1da177e4 1213
0b1b213f
CH
1214 trace_xfs_dir2_leafn_remove(args, index);
1215
1da177e4
LT
1216 dp = args->dp;
1217 tp = args->trans;
1218 mp = dp->i_mount;
1d9025e5 1219 leaf = bp->b_addr;
24df33b4
DC
1220 xfs_dir3_leaf_hdr_from_disk(&leafhdr, leaf);
1221 ents = xfs_dir3_leaf_ents_p(leaf);
1222
1da177e4
LT
1223 /*
1224 * Point to the entry we're removing.
1225 */
24df33b4
DC
1226 lep = &ents[index];
1227
1da177e4
LT
1228 /*
1229 * Extract the data block and offset from the entry.
1230 */
bbaaf538 1231 db = xfs_dir2_dataptr_to_db(mp, be32_to_cpu(lep->address));
1da177e4 1232 ASSERT(dblk->blkno == db);
bbaaf538 1233 off = xfs_dir2_dataptr_to_off(mp, be32_to_cpu(lep->address));
1da177e4 1234 ASSERT(dblk->index == off);
24df33b4 1235
1da177e4
LT
1236 /*
1237 * Kill the leaf entry by marking it stale.
1238 * Log the leaf block changes.
1239 */
24df33b4
DC
1240 leafhdr.stale++;
1241 xfs_dir3_leaf_hdr_to_disk(leaf, &leafhdr);
1242 xfs_dir3_leaf_log_header(tp, bp);
1243
3c1f9c15 1244 lep->address = cpu_to_be32(XFS_DIR2_NULL_DATAPTR);
24df33b4
DC
1245 xfs_dir3_leaf_log_ents(tp, bp, index, index);
1246
1da177e4
LT
1247 /*
1248 * Make the data entry free. Keep track of the longest freespace
1249 * in the data block in case it changes.
1250 */
1251 dbp = dblk->bp;
1d9025e5 1252 hdr = dbp->b_addr;
c2066e26 1253 dep = (xfs_dir2_data_entry_t *)((char *)hdr + off);
33363fee
DC
1254 bf = xfs_dir3_data_bestfree_p(hdr);
1255 longest = be16_to_cpu(bf[0].length);
1da177e4
LT
1256 needlog = needscan = 0;
1257 xfs_dir2_data_make_free(tp, dbp, off,
bbaaf538 1258 xfs_dir2_data_entsize(dep->namelen), &needlog, &needscan);
1da177e4
LT
1259 /*
1260 * Rescan the data block freespaces for bestfree.
1261 * Log the data block header if needed.
1262 */
1263 if (needscan)
c2066e26 1264 xfs_dir2_data_freescan(mp, hdr, &needlog);
1da177e4
LT
1265 if (needlog)
1266 xfs_dir2_data_log_header(tp, dbp);
33363fee 1267 xfs_dir3_data_check(dp, dbp);
1da177e4
LT
1268 /*
1269 * If the longest data block freespace changes, need to update
1270 * the corresponding freeblock entry.
1271 */
33363fee 1272 if (longest < be16_to_cpu(bf[0].length)) {
1da177e4 1273 int error; /* error return value */
1d9025e5 1274 struct xfs_buf *fbp; /* freeblock buffer */
1da177e4
LT
1275 xfs_dir2_db_t fdb; /* freeblock block number */
1276 int findex; /* index in freeblock entries */
1277 xfs_dir2_free_t *free; /* freeblock structure */
1da177e4
LT
1278
1279 /*
1280 * Convert the data block number to a free block,
1281 * read in the free block.
1282 */
bbaaf538 1283 fdb = xfs_dir2_db_to_fdb(mp, db);
2025207c
DC
1284 error = xfs_dir2_free_read(tp, dp, xfs_dir2_db_to_da(mp, fdb),
1285 &fbp);
4bb20a83 1286 if (error)
1da177e4 1287 return error;
1d9025e5 1288 free = fbp->b_addr;
cbc8adf8
DC
1289#ifdef DEBUG
1290 {
1291 struct xfs_dir3_icfree_hdr freehdr;
1292 xfs_dir3_free_hdr_from_disk(&freehdr, free);
1293 ASSERT(freehdr.firstdb == xfs_dir3_free_max_bests(mp) *
1294 (fdb - XFS_DIR2_FREE_FIRSTDB(mp)));
1295 }
1296#endif
1da177e4
LT
1297 /*
1298 * Calculate which entry we need to fix.
1299 */
bbaaf538 1300 findex = xfs_dir2_db_to_fdindex(mp, db);
33363fee 1301 longest = be16_to_cpu(bf[0].length);
1da177e4
LT
1302 /*
1303 * If the data block is now empty we can get rid of it
1304 * (usually).
1305 */
33363fee
DC
1306 if (longest == mp->m_dirblksize -
1307 xfs_dir3_data_entry_offset(hdr)) {
1da177e4
LT
1308 /*
1309 * Try to punch out the data block.
1310 */
1311 error = xfs_dir2_shrink_inode(args, db, dbp);
1312 if (error == 0) {
1313 dblk->bp = NULL;
c2066e26 1314 hdr = NULL;
1da177e4
LT
1315 }
1316 /*
1317 * We can get ENOSPC if there's no space reservation.
1318 * In this case just drop the buffer and some one else
1319 * will eventually get rid of the empty block.
1320 */
1d9025e5 1321 else if (!(error == ENOSPC && args->total == 0))
1da177e4
LT
1322 return error;
1323 }
1324 /*
1325 * If we got rid of the data block, we can eliminate that entry
1326 * in the free block.
1327 */
cbc8adf8 1328 error = xfs_dir3_data_block_free(args, hdr, free,
2025207c
DC
1329 fdb, findex, fbp, longest);
1330 if (error)
1331 return error;
1da177e4 1332 }
2025207c 1333
24df33b4 1334 xfs_dir3_leaf_check(mp, bp);
1da177e4 1335 /*
9da096fd 1336 * Return indication of whether this leaf block is empty enough
1da177e4
LT
1337 * to justify trying to join it with a neighbor.
1338 */
24df33b4
DC
1339 *rval = (xfs_dir3_leaf_hdr_size(leaf) +
1340 (uint)sizeof(ents[0]) * (leafhdr.count - leafhdr.stale)) <
1da177e4
LT
1341 mp->m_dir_magicpct;
1342 return 0;
1343}
1344
1345/*
1346 * Split the leaf entries in the old block into old and new blocks.
1347 */
1348int /* error */
1349xfs_dir2_leafn_split(
1350 xfs_da_state_t *state, /* btree cursor */
1351 xfs_da_state_blk_t *oldblk, /* original block */
1352 xfs_da_state_blk_t *newblk) /* newly created block */
1353{
1354 xfs_da_args_t *args; /* operation arguments */
1355 xfs_dablk_t blkno; /* new leaf block number */
1356 int error; /* error return value */
1357 xfs_mount_t *mp; /* filesystem mount point */
1358
1359 /*
1360 * Allocate space for a new leaf node.
1361 */
1362 args = state->args;
1363 mp = args->dp->i_mount;
1364 ASSERT(args != NULL);
1365 ASSERT(oldblk->magic == XFS_DIR2_LEAFN_MAGIC);
1366 error = xfs_da_grow_inode(args, &blkno);
1367 if (error) {
1368 return error;
1369 }
1370 /*
1371 * Initialize the new leaf block.
1372 */
24df33b4
DC
1373 error = xfs_dir3_leaf_get_buf(args, xfs_dir2_da_to_db(mp, blkno),
1374 &newblk->bp, XFS_DIR2_LEAFN_MAGIC);
1375 if (error)
1da177e4 1376 return error;
24df33b4 1377
1da177e4
LT
1378 newblk->blkno = blkno;
1379 newblk->magic = XFS_DIR2_LEAFN_MAGIC;
1380 /*
1381 * Rebalance the entries across the two leaves, link the new
1382 * block into the leaves.
1383 */
1384 xfs_dir2_leafn_rebalance(state, oldblk, newblk);
f5ea1100 1385 error = xfs_da3_blk_link(state, oldblk, newblk);
1da177e4
LT
1386 if (error) {
1387 return error;
1388 }
1389 /*
1390 * Insert the new entry in the correct block.
1391 */
1392 if (state->inleaf)
1393 error = xfs_dir2_leafn_add(oldblk->bp, args, oldblk->index);
1394 else
1395 error = xfs_dir2_leafn_add(newblk->bp, args, newblk->index);
1396 /*
1397 * Update last hashval in each block since we added the name.
1398 */
1399 oldblk->hashval = xfs_dir2_leafn_lasthash(oldblk->bp, NULL);
1400 newblk->hashval = xfs_dir2_leafn_lasthash(newblk->bp, NULL);
24df33b4
DC
1401 xfs_dir3_leaf_check(mp, oldblk->bp);
1402 xfs_dir3_leaf_check(mp, newblk->bp);
1da177e4
LT
1403 return error;
1404}
1405
1406/*
1407 * Check a leaf block and its neighbors to see if the block should be
1408 * collapsed into one or the other neighbor. Always keep the block
1409 * with the smaller block number.
1410 * If the current block is over 50% full, don't try to join it, return 0.
1411 * If the block is empty, fill in the state structure and return 2.
1412 * If it can be collapsed, fill in the state structure and return 1.
1413 * If nothing can be done, return 0.
1414 */
1415int /* error */
1416xfs_dir2_leafn_toosmall(
1417 xfs_da_state_t *state, /* btree cursor */
1418 int *action) /* resulting action to take */
1419{
1420 xfs_da_state_blk_t *blk; /* leaf block */
1421 xfs_dablk_t blkno; /* leaf block number */
1d9025e5 1422 struct xfs_buf *bp; /* leaf buffer */
1da177e4
LT
1423 int bytes; /* bytes in use */
1424 int count; /* leaf live entry count */
1425 int error; /* error return value */
1426 int forward; /* sibling block direction */
1427 int i; /* sibling counter */
1da177e4
LT
1428 xfs_dir2_leaf_t *leaf; /* leaf structure */
1429 int rval; /* result from path_shift */
24df33b4
DC
1430 struct xfs_dir3_icleaf_hdr leafhdr;
1431 struct xfs_dir2_leaf_entry *ents;
1da177e4
LT
1432
1433 /*
1434 * Check for the degenerate case of the block being over 50% full.
1435 * If so, it's not worth even looking to see if we might be able
1436 * to coalesce with a sibling.
1437 */
1438 blk = &state->path.blk[state->path.active - 1];
24df33b4
DC
1439 leaf = blk->bp->b_addr;
1440 xfs_dir3_leaf_hdr_from_disk(&leafhdr, leaf);
1441 ents = xfs_dir3_leaf_ents_p(leaf);
1442 xfs_dir3_leaf_check(state->args->dp->i_mount, blk->bp);
1443
1444 count = leafhdr.count - leafhdr.stale;
1445 bytes = xfs_dir3_leaf_hdr_size(leaf) + count * sizeof(ents[0]);
1da177e4
LT
1446 if (bytes > (state->blocksize >> 1)) {
1447 /*
1448 * Blk over 50%, don't try to join.
1449 */
1450 *action = 0;
1451 return 0;
1452 }
1453 /*
1454 * Check for the degenerate case of the block being empty.
1455 * If the block is empty, we'll simply delete it, no need to
1456 * coalesce it with a sibling block. We choose (arbitrarily)
1457 * to merge with the forward block unless it is NULL.
1458 */
1459 if (count == 0) {
1460 /*
1461 * Make altpath point to the block we want to keep and
1462 * path point to the block we want to drop (this one).
1463 */
24df33b4 1464 forward = (leafhdr.forw != 0);
1da177e4 1465 memcpy(&state->altpath, &state->path, sizeof(state->path));
f5ea1100 1466 error = xfs_da3_path_shift(state, &state->altpath, forward, 0,
1da177e4
LT
1467 &rval);
1468 if (error)
1469 return error;
1470 *action = rval ? 2 : 0;
1471 return 0;
1472 }
1473 /*
1474 * Examine each sibling block to see if we can coalesce with
1475 * at least 25% free space to spare. We need to figure out
1476 * whether to merge with the forward or the backward block.
1477 * We prefer coalescing with the lower numbered sibling so as
1478 * to shrink a directory over time.
1479 */
24df33b4 1480 forward = leafhdr.forw < leafhdr.back;
1da177e4 1481 for (i = 0, bp = NULL; i < 2; forward = !forward, i++) {
24df33b4
DC
1482 struct xfs_dir3_icleaf_hdr hdr2;
1483
1484 blkno = forward ? leafhdr.forw : leafhdr.back;
1da177e4
LT
1485 if (blkno == 0)
1486 continue;
1487 /*
1488 * Read the sibling leaf block.
1489 */
24df33b4 1490 error = xfs_dir3_leafn_read(state->args->trans, state->args->dp,
e6f7667c 1491 blkno, -1, &bp);
4bb20a83 1492 if (error)
1da177e4 1493 return error;
e6f7667c 1494
1da177e4
LT
1495 /*
1496 * Count bytes in the two blocks combined.
1497 */
24df33b4 1498 count = leafhdr.count - leafhdr.stale;
1da177e4 1499 bytes = state->blocksize - (state->blocksize >> 2);
24df33b4 1500
1d9025e5 1501 leaf = bp->b_addr;
24df33b4
DC
1502 xfs_dir3_leaf_hdr_from_disk(&hdr2, leaf);
1503 ents = xfs_dir3_leaf_ents_p(leaf);
1504 count += hdr2.count - hdr2.stale;
1505 bytes -= count * sizeof(ents[0]);
1506
1da177e4
LT
1507 /*
1508 * Fits with at least 25% to spare.
1509 */
1510 if (bytes >= 0)
1511 break;
1d9025e5 1512 xfs_trans_brelse(state->args->trans, bp);
1da177e4
LT
1513 }
1514 /*
1515 * Didn't like either block, give up.
1516 */
1517 if (i >= 2) {
1518 *action = 0;
1519 return 0;
1520 }
1d9025e5 1521
1da177e4
LT
1522 /*
1523 * Make altpath point to the block we want to keep (the lower
1524 * numbered block) and path point to the block we want to drop.
1525 */
1526 memcpy(&state->altpath, &state->path, sizeof(state->path));
1527 if (blkno < blk->blkno)
f5ea1100 1528 error = xfs_da3_path_shift(state, &state->altpath, forward, 0,
1da177e4
LT
1529 &rval);
1530 else
f5ea1100 1531 error = xfs_da3_path_shift(state, &state->path, forward, 0,
1da177e4
LT
1532 &rval);
1533 if (error) {
1534 return error;
1535 }
1536 *action = rval ? 0 : 1;
1537 return 0;
1538}
1539
1540/*
1541 * Move all the leaf entries from drop_blk to save_blk.
1542 * This is done as part of a join operation.
1543 */
1544void
1545xfs_dir2_leafn_unbalance(
1546 xfs_da_state_t *state, /* cursor */
1547 xfs_da_state_blk_t *drop_blk, /* dead block */
1548 xfs_da_state_blk_t *save_blk) /* surviving block */
1549{
1550 xfs_da_args_t *args; /* operation arguments */
1551 xfs_dir2_leaf_t *drop_leaf; /* dead leaf structure */
1552 xfs_dir2_leaf_t *save_leaf; /* surviving leaf structure */
24df33b4
DC
1553 struct xfs_dir3_icleaf_hdr savehdr;
1554 struct xfs_dir3_icleaf_hdr drophdr;
1555 struct xfs_dir2_leaf_entry *sents;
1556 struct xfs_dir2_leaf_entry *dents;
1da177e4
LT
1557
1558 args = state->args;
1559 ASSERT(drop_blk->magic == XFS_DIR2_LEAFN_MAGIC);
1560 ASSERT(save_blk->magic == XFS_DIR2_LEAFN_MAGIC);
1d9025e5
DC
1561 drop_leaf = drop_blk->bp->b_addr;
1562 save_leaf = save_blk->bp->b_addr;
24df33b4
DC
1563
1564 xfs_dir3_leaf_hdr_from_disk(&savehdr, save_leaf);
1565 xfs_dir3_leaf_hdr_from_disk(&drophdr, drop_leaf);
1566 sents = xfs_dir3_leaf_ents_p(save_leaf);
1567 dents = xfs_dir3_leaf_ents_p(drop_leaf);
1568
1da177e4
LT
1569 /*
1570 * If there are any stale leaf entries, take this opportunity
1571 * to purge them.
1572 */
24df33b4
DC
1573 if (drophdr.stale)
1574 xfs_dir3_leaf_compact(args, &drophdr, drop_blk->bp);
1575 if (savehdr.stale)
1576 xfs_dir3_leaf_compact(args, &savehdr, save_blk->bp);
1577
1da177e4
LT
1578 /*
1579 * Move the entries from drop to the appropriate end of save.
1580 */
24df33b4 1581 drop_blk->hashval = be32_to_cpu(dents[drophdr.count - 1].hashval);
1da177e4 1582 if (xfs_dir2_leafn_order(save_blk->bp, drop_blk->bp))
24df33b4
DC
1583 xfs_dir3_leafn_moveents(args, drop_blk->bp, &drophdr, dents, 0,
1584 save_blk->bp, &savehdr, sents, 0,
1585 drophdr.count);
1da177e4 1586 else
24df33b4
DC
1587 xfs_dir3_leafn_moveents(args, drop_blk->bp, &drophdr, dents, 0,
1588 save_blk->bp, &savehdr, sents,
1589 savehdr.count, drophdr.count);
1590 save_blk->hashval = be32_to_cpu(sents[savehdr.count - 1].hashval);
1591
1592 /* log the changes made when moving the entries */
1593 xfs_dir3_leaf_hdr_to_disk(save_leaf, &savehdr);
1594 xfs_dir3_leaf_hdr_to_disk(drop_leaf, &drophdr);
1595 xfs_dir3_leaf_log_header(args->trans, save_blk->bp);
1596 xfs_dir3_leaf_log_header(args->trans, drop_blk->bp);
1597
1598 xfs_dir3_leaf_check(args->dp->i_mount, save_blk->bp);
1599 xfs_dir3_leaf_check(args->dp->i_mount, drop_blk->bp);
1da177e4
LT
1600}
1601
1602/*
1603 * Top-level node form directory addname routine.
1604 */
1605int /* error */
1606xfs_dir2_node_addname(
1607 xfs_da_args_t *args) /* operation arguments */
1608{
1609 xfs_da_state_blk_t *blk; /* leaf block for insert */
1610 int error; /* error return value */
1611 int rval; /* sub-return value */
1612 xfs_da_state_t *state; /* btree cursor */
1613
0b1b213f
CH
1614 trace_xfs_dir2_node_addname(args);
1615
1da177e4
LT
1616 /*
1617 * Allocate and initialize the state (btree cursor).
1618 */
1619 state = xfs_da_state_alloc();
1620 state->args = args;
1621 state->mp = args->dp->i_mount;
1622 state->blocksize = state->mp->m_dirblksize;
1623 state->node_ents = state->mp->m_dir_node_ents;
1624 /*
1625 * Look up the name. We're not supposed to find it, but
1626 * this gives us the insertion point.
1627 */
f5ea1100 1628 error = xfs_da3_node_lookup_int(state, &rval);
1da177e4
LT
1629 if (error)
1630 rval = error;
1631 if (rval != ENOENT) {
1632 goto done;
1633 }
1634 /*
1635 * Add the data entry to a data block.
1636 * Extravalid is set to a freeblock found by lookup.
1637 */
1638 rval = xfs_dir2_node_addname_int(args,
1639 state->extravalid ? &state->extrablk : NULL);
1640 if (rval) {
1641 goto done;
1642 }
1643 blk = &state->path.blk[state->path.active - 1];
1644 ASSERT(blk->magic == XFS_DIR2_LEAFN_MAGIC);
1645 /*
1646 * Add the new leaf entry.
1647 */
1648 rval = xfs_dir2_leafn_add(blk->bp, args, blk->index);
1649 if (rval == 0) {
1650 /*
1651 * It worked, fix the hash values up the btree.
1652 */
6a178100 1653 if (!(args->op_flags & XFS_DA_OP_JUSTCHECK))
f5ea1100 1654 xfs_da3_fixhashpath(state, &state->path);
1da177e4
LT
1655 } else {
1656 /*
1657 * It didn't work, we need to split the leaf block.
1658 */
1659 if (args->total == 0) {
1660 ASSERT(rval == ENOSPC);
1661 goto done;
1662 }
1663 /*
1664 * Split the leaf block and insert the new entry.
1665 */
f5ea1100 1666 rval = xfs_da3_split(state);
1da177e4
LT
1667 }
1668done:
1669 xfs_da_state_free(state);
1670 return rval;
1671}
1672
1673/*
1674 * Add the data entry for a node-format directory name addition.
1675 * The leaf entry is added in xfs_dir2_leafn_add.
1676 * We may enter with a freespace block that the lookup found.
1677 */
1678static int /* error */
1679xfs_dir2_node_addname_int(
1680 xfs_da_args_t *args, /* operation arguments */
1681 xfs_da_state_blk_t *fblk) /* optional freespace block */
1682{
c2066e26 1683 xfs_dir2_data_hdr_t *hdr; /* data block header */
1da177e4 1684 xfs_dir2_db_t dbno; /* data block number */
1d9025e5 1685 struct xfs_buf *dbp; /* data block buffer */
1da177e4
LT
1686 xfs_dir2_data_entry_t *dep; /* data entry pointer */
1687 xfs_inode_t *dp; /* incore directory inode */
1688 xfs_dir2_data_unused_t *dup; /* data unused entry pointer */
1689 int error; /* error return value */
1690 xfs_dir2_db_t fbno; /* freespace block number */
1d9025e5 1691 struct xfs_buf *fbp; /* freespace buffer */
1da177e4
LT
1692 int findex; /* freespace entry index */
1693 xfs_dir2_free_t *free=NULL; /* freespace block structure */
1694 xfs_dir2_db_t ifbno; /* initial freespace block no */
1695 xfs_dir2_db_t lastfbno=0; /* highest freespace block no */
1696 int length; /* length of the new entry */
1697 int logfree; /* need to log free entry */
1698 xfs_mount_t *mp; /* filesystem mount point */
1699 int needlog; /* need to log data header */
1700 int needscan; /* need to rescan data frees */
3d693c6e 1701 __be16 *tagp; /* data entry tag pointer */
1da177e4 1702 xfs_trans_t *tp; /* transaction pointer */
cbc8adf8
DC
1703 __be16 *bests;
1704 struct xfs_dir3_icfree_hdr freehdr;
33363fee 1705 struct xfs_dir2_data_free *bf;
1da177e4
LT
1706
1707 dp = args->dp;
1708 mp = dp->i_mount;
1709 tp = args->trans;
bbaaf538 1710 length = xfs_dir2_data_entsize(args->namelen);
1da177e4
LT
1711 /*
1712 * If we came in with a freespace block that means that lookup
1713 * found an entry with our hash value. This is the freespace
1714 * block for that data entry.
1715 */
1716 if (fblk) {
1717 fbp = fblk->bp;
1718 /*
1719 * Remember initial freespace block number.
1720 */
1721 ifbno = fblk->blkno;
1d9025e5 1722 free = fbp->b_addr;
1da177e4 1723 findex = fblk->index;
cbc8adf8
DC
1724 bests = xfs_dir3_free_bests_p(mp, free);
1725 xfs_dir3_free_hdr_from_disk(&freehdr, free);
1726
1da177e4
LT
1727 /*
1728 * This means the free entry showed that the data block had
1729 * space for our entry, so we remembered it.
1730 * Use that data block.
1731 */
1732 if (findex >= 0) {
cbc8adf8
DC
1733 ASSERT(findex < freehdr.nvalid);
1734 ASSERT(be16_to_cpu(bests[findex]) != NULLDATAOFF);
1735 ASSERT(be16_to_cpu(bests[findex]) >= length);
1736 dbno = freehdr.firstdb + findex;
1737 } else {
1738 /*
1739 * The data block looked at didn't have enough room.
1740 * We'll start at the beginning of the freespace entries.
1741 */
1da177e4
LT
1742 dbno = -1;
1743 findex = 0;
1744 }
cbc8adf8
DC
1745 } else {
1746 /*
1747 * Didn't come in with a freespace block, so no data block.
1748 */
1da177e4
LT
1749 ifbno = dbno = -1;
1750 fbp = NULL;
1751 findex = 0;
1752 }
cbc8adf8 1753
1da177e4
LT
1754 /*
1755 * If we don't have a data block yet, we're going to scan the
1756 * freespace blocks looking for one. Figure out what the
1757 * highest freespace block number is.
1758 */
1759 if (dbno == -1) {
1760 xfs_fileoff_t fo; /* freespace block number */
1761
1762 if ((error = xfs_bmap_last_offset(tp, dp, &fo, XFS_DATA_FORK)))
1763 return error;
bbaaf538 1764 lastfbno = xfs_dir2_da_to_db(mp, (xfs_dablk_t)fo);
1da177e4
LT
1765 fbno = ifbno;
1766 }
1767 /*
1768 * While we haven't identified a data block, search the freeblock
1769 * data for a good data block. If we find a null freeblock entry,
1770 * indicating a hole in the data blocks, remember that.
1771 */
1772 while (dbno == -1) {
1773 /*
1774 * If we don't have a freeblock in hand, get the next one.
1775 */
1776 if (fbp == NULL) {
1777 /*
1778 * Happens the first time through unless lookup gave
1779 * us a freespace block to start with.
1780 */
1781 if (++fbno == 0)
1782 fbno = XFS_DIR2_FREE_FIRSTDB(mp);
1783 /*
1784 * If it's ifbno we already looked at it.
1785 */
1786 if (fbno == ifbno)
1787 fbno++;
1788 /*
1789 * If it's off the end we're done.
1790 */
1791 if (fbno >= lastfbno)
1792 break;
1793 /*
1794 * Read the block. There can be holes in the
1795 * freespace blocks, so this might not succeed.
1796 * This should be really rare, so there's no reason
1797 * to avoid it.
1798 */
2025207c
DC
1799 error = xfs_dir2_free_try_read(tp, dp,
1800 xfs_dir2_db_to_da(mp, fbno),
1801 &fbp);
4bb20a83 1802 if (error)
1da177e4 1803 return error;
4bb20a83 1804 if (!fbp)
1da177e4 1805 continue;
1d9025e5 1806 free = fbp->b_addr;
1da177e4
LT
1807 findex = 0;
1808 }
1809 /*
1810 * Look at the current free entry. Is it good enough?
cbc8adf8
DC
1811 *
1812 * The bests initialisation should be where the bufer is read in
1813 * the above branch. But gcc is too stupid to realise that bests
1814 * and the freehdr are actually initialised if they are placed
1815 * there, so we have to do it here to avoid warnings. Blech.
1da177e4 1816 */
cbc8adf8
DC
1817 bests = xfs_dir3_free_bests_p(mp, free);
1818 xfs_dir3_free_hdr_from_disk(&freehdr, free);
1819 if (be16_to_cpu(bests[findex]) != NULLDATAOFF &&
1820 be16_to_cpu(bests[findex]) >= length)
1821 dbno = freehdr.firstdb + findex;
1da177e4
LT
1822 else {
1823 /*
1824 * Are we done with the freeblock?
1825 */
cbc8adf8 1826 if (++findex == freehdr.nvalid) {
1da177e4
LT
1827 /*
1828 * Drop the block.
1829 */
1d9025e5 1830 xfs_trans_brelse(tp, fbp);
1da177e4
LT
1831 fbp = NULL;
1832 if (fblk && fblk->bp)
1833 fblk->bp = NULL;
1834 }
1835 }
1836 }
1837 /*
1838 * If we don't have a data block, we need to allocate one and make
1839 * the freespace entries refer to it.
1840 */
1841 if (unlikely(dbno == -1)) {
1842 /*
1843 * Not allowed to allocate, return failure.
1844 */
1d9025e5 1845 if ((args->op_flags & XFS_DA_OP_JUSTCHECK) || args->total == 0)
1da177e4 1846 return XFS_ERROR(ENOSPC);
1d9025e5 1847
1da177e4
LT
1848 /*
1849 * Allocate and initialize the new data block.
1850 */
1851 if (unlikely((error = xfs_dir2_grow_inode(args,
1852 XFS_DIR2_DATA_SPACE,
1853 &dbno)) ||
f5f3d9b0 1854 (error = xfs_dir3_data_init(args, dbno, &dbp))))
1da177e4 1855 return error;
1d9025e5 1856
1da177e4
LT
1857 /*
1858 * If (somehow) we have a freespace block, get rid of it.
1859 */
1860 if (fbp)
1d9025e5 1861 xfs_trans_brelse(tp, fbp);
1da177e4
LT
1862 if (fblk && fblk->bp)
1863 fblk->bp = NULL;
1864
1865 /*
1866 * Get the freespace block corresponding to the data block
1867 * that was just allocated.
1868 */
bbaaf538 1869 fbno = xfs_dir2_db_to_fdb(mp, dbno);
2025207c
DC
1870 error = xfs_dir2_free_try_read(tp, dp,
1871 xfs_dir2_db_to_da(mp, fbno),
1872 &fbp);
4bb20a83 1873 if (error)
1da177e4 1874 return error;
1d9025e5 1875
1da177e4
LT
1876 /*
1877 * If there wasn't a freespace block, the read will
1878 * return a NULL fbp. Allocate and initialize a new one.
1879 */
cbc8adf8
DC
1880 if (!fbp) {
1881 error = xfs_dir2_grow_inode(args, XFS_DIR2_FREE_SPACE,
1882 &fbno);
1883 if (error)
1da177e4 1884 return error;
1da177e4 1885
bbaaf538 1886 if (unlikely(xfs_dir2_db_to_fdb(mp, dbno) != fbno)) {
0b932ccc 1887 xfs_alert(mp,
df2e301f 1888 "%s: dir ino %llu needed freesp block %lld for\n"
0b932ccc
DC
1889 " data block %lld, got %lld ifbno %llu lastfbno %d",
1890 __func__, (unsigned long long)dp->i_ino,
bbaaf538 1891 (long long)xfs_dir2_db_to_fdb(mp, dbno),
1da177e4
LT
1892 (long long)dbno, (long long)fbno,
1893 (unsigned long long)ifbno, lastfbno);
1894 if (fblk) {
0b932ccc
DC
1895 xfs_alert(mp,
1896 " fblk 0x%p blkno %llu index %d magic 0x%x",
1da177e4
LT
1897 fblk,
1898 (unsigned long long)fblk->blkno,
1899 fblk->index,
1900 fblk->magic);
1901 } else {
0b932ccc 1902 xfs_alert(mp, " ... fblk is NULL");
1da177e4
LT
1903 }
1904 XFS_ERROR_REPORT("xfs_dir2_node_addname_int",
1905 XFS_ERRLEVEL_LOW, mp);
1906 return XFS_ERROR(EFSCORRUPTED);
1907 }
1908
1909 /*
1910 * Get a buffer for the new block.
1911 */
cbc8adf8 1912 error = xfs_dir3_free_get_buf(tp, dp, fbno, &fbp);
b0f539de 1913 if (error)
1da177e4 1914 return error;
cbc8adf8
DC
1915 free = fbp->b_addr;
1916 bests = xfs_dir3_free_bests_p(mp, free);
1917 xfs_dir3_free_hdr_from_disk(&freehdr, free);
1da177e4
LT
1918
1919 /*
cbc8adf8 1920 * Remember the first slot as our empty slot.
1da177e4 1921 */
cbc8adf8
DC
1922 freehdr.firstdb = (fbno - XFS_DIR2_FREE_FIRSTDB(mp)) *
1923 xfs_dir3_free_max_bests(mp);
1da177e4
LT
1924 free->hdr.nvalid = 0;
1925 free->hdr.nused = 0;
1926 } else {
1d9025e5 1927 free = fbp->b_addr;
cbc8adf8
DC
1928 bests = xfs_dir3_free_bests_p(mp, free);
1929 xfs_dir3_free_hdr_from_disk(&freehdr, free);
1da177e4
LT
1930 }
1931
1932 /*
1933 * Set the freespace block index from the data block number.
1934 */
bbaaf538 1935 findex = xfs_dir2_db_to_fdindex(mp, dbno);
1da177e4
LT
1936 /*
1937 * If it's after the end of the current entries in the
1938 * freespace block, extend that table.
1939 */
cbc8adf8
DC
1940 if (findex >= freehdr.nvalid) {
1941 ASSERT(findex < xfs_dir3_free_max_bests(mp));
1942 freehdr.nvalid = findex + 1;
1da177e4
LT
1943 /*
1944 * Tag new entry so nused will go up.
1945 */
cbc8adf8 1946 bests[findex] = cpu_to_be16(NULLDATAOFF);
1da177e4
LT
1947 }
1948 /*
1949 * If this entry was for an empty data block
1950 * (this should always be true) then update the header.
1951 */
cbc8adf8
DC
1952 if (bests[findex] == cpu_to_be16(NULLDATAOFF)) {
1953 freehdr.nused++;
1954 xfs_dir3_free_hdr_to_disk(fbp->b_addr, &freehdr);
1da177e4
LT
1955 xfs_dir2_free_log_header(tp, fbp);
1956 }
1957 /*
1958 * Update the real value in the table.
1959 * We haven't allocated the data entry yet so this will
1960 * change again.
1961 */
1d9025e5 1962 hdr = dbp->b_addr;
33363fee
DC
1963 bf = xfs_dir3_data_bestfree_p(hdr);
1964 bests[findex] = bf[0].length;
1da177e4
LT
1965 logfree = 1;
1966 }
1967 /*
1968 * We had a data block so we don't have to make a new one.
1969 */
1970 else {
1971 /*
1972 * If just checking, we succeeded.
1973 */
1d9025e5 1974 if (args->op_flags & XFS_DA_OP_JUSTCHECK)
1da177e4 1975 return 0;
1d9025e5 1976
1da177e4
LT
1977 /*
1978 * Read the data block in.
1979 */
33363fee 1980 error = xfs_dir3_data_read(tp, dp, xfs_dir2_db_to_da(mp, dbno),
e4813572 1981 -1, &dbp);
1d9025e5 1982 if (error)
1da177e4 1983 return error;
1d9025e5 1984 hdr = dbp->b_addr;
33363fee 1985 bf = xfs_dir3_data_bestfree_p(hdr);
1da177e4
LT
1986 logfree = 0;
1987 }
33363fee 1988 ASSERT(be16_to_cpu(bf[0].length) >= length);
1da177e4
LT
1989 /*
1990 * Point to the existing unused space.
1991 */
1992 dup = (xfs_dir2_data_unused_t *)
33363fee 1993 ((char *)hdr + be16_to_cpu(bf[0].offset));
1da177e4
LT
1994 needscan = needlog = 0;
1995 /*
1996 * Mark the first part of the unused space, inuse for us.
1997 */
1998 xfs_dir2_data_use_free(tp, dbp, dup,
c2066e26 1999 (xfs_dir2_data_aoff_t)((char *)dup - (char *)hdr), length,
1da177e4
LT
2000 &needlog, &needscan);
2001 /*
2002 * Fill in the new entry and log it.
2003 */
2004 dep = (xfs_dir2_data_entry_t *)dup;
ff9901c1 2005 dep->inumber = cpu_to_be64(args->inumber);
1da177e4
LT
2006 dep->namelen = args->namelen;
2007 memcpy(dep->name, args->name, dep->namelen);
bbaaf538 2008 tagp = xfs_dir2_data_entry_tag_p(dep);
c2066e26 2009 *tagp = cpu_to_be16((char *)dep - (char *)hdr);
1da177e4
LT
2010 xfs_dir2_data_log_entry(tp, dbp, dep);
2011 /*
2012 * Rescan the block for bestfree if needed.
2013 */
2014 if (needscan)
c2066e26 2015 xfs_dir2_data_freescan(mp, hdr, &needlog);
1da177e4
LT
2016 /*
2017 * Log the data block header if needed.
2018 */
2019 if (needlog)
2020 xfs_dir2_data_log_header(tp, dbp);
2021 /*
2022 * If the freespace entry is now wrong, update it.
2023 */
cbc8adf8 2024 bests = xfs_dir3_free_bests_p(mp, free); /* gcc is so stupid */
33363fee
DC
2025 if (be16_to_cpu(bests[findex]) != be16_to_cpu(bf[0].length)) {
2026 bests[findex] = bf[0].length;
1da177e4
LT
2027 logfree = 1;
2028 }
2029 /*
2030 * Log the freespace entry if needed.
2031 */
2032 if (logfree)
2033 xfs_dir2_free_log_bests(tp, fbp, findex, findex);
1da177e4
LT
2034 /*
2035 * Return the data block and offset in args, then drop the data block.
2036 */
2037 args->blkno = (xfs_dablk_t)dbno;
3d693c6e 2038 args->index = be16_to_cpu(*tagp);
1da177e4
LT
2039 return 0;
2040}
2041
2042/*
2043 * Lookup an entry in a node-format directory.
f5ea1100 2044 * All the real work happens in xfs_da3_node_lookup_int.
1da177e4
LT
2045 * The only real output is the inode number of the entry.
2046 */
2047int /* error */
2048xfs_dir2_node_lookup(
2049 xfs_da_args_t *args) /* operation arguments */
2050{
2051 int error; /* error return value */
2052 int i; /* btree level */
2053 int rval; /* operation return value */
2054 xfs_da_state_t *state; /* btree cursor */
2055
0b1b213f
CH
2056 trace_xfs_dir2_node_lookup(args);
2057
1da177e4
LT
2058 /*
2059 * Allocate and initialize the btree cursor.
2060 */
2061 state = xfs_da_state_alloc();
2062 state->args = args;
2063 state->mp = args->dp->i_mount;
2064 state->blocksize = state->mp->m_dirblksize;
2065 state->node_ents = state->mp->m_dir_node_ents;
2066 /*
2067 * Fill in the path to the entry in the cursor.
2068 */
f5ea1100 2069 error = xfs_da3_node_lookup_int(state, &rval);
1da177e4
LT
2070 if (error)
2071 rval = error;
384f3ced
BN
2072 else if (rval == ENOENT && args->cmpresult == XFS_CMP_CASE) {
2073 /* If a CI match, dup the actual name and return EEXIST */
2074 xfs_dir2_data_entry_t *dep;
2075
1d9025e5
DC
2076 dep = (xfs_dir2_data_entry_t *)
2077 ((char *)state->extrablk.bp->b_addr +
2078 state->extrablk.index);
384f3ced
BN
2079 rval = xfs_dir_cilookup_result(args, dep->name, dep->namelen);
2080 }
1da177e4
LT
2081 /*
2082 * Release the btree blocks and leaf block.
2083 */
2084 for (i = 0; i < state->path.active; i++) {
1d9025e5 2085 xfs_trans_brelse(args->trans, state->path.blk[i].bp);
1da177e4
LT
2086 state->path.blk[i].bp = NULL;
2087 }
2088 /*
2089 * Release the data block if we have it.
2090 */
2091 if (state->extravalid && state->extrablk.bp) {
1d9025e5 2092 xfs_trans_brelse(args->trans, state->extrablk.bp);
1da177e4
LT
2093 state->extrablk.bp = NULL;
2094 }
2095 xfs_da_state_free(state);
2096 return rval;
2097}
2098
2099/*
2100 * Remove an entry from a node-format directory.
2101 */
2102int /* error */
2103xfs_dir2_node_removename(
2104 xfs_da_args_t *args) /* operation arguments */
2105{
2106 xfs_da_state_blk_t *blk; /* leaf block */
2107 int error; /* error return value */
2108 int rval; /* operation return value */
2109 xfs_da_state_t *state; /* btree cursor */
2110
0b1b213f
CH
2111 trace_xfs_dir2_node_removename(args);
2112
1da177e4
LT
2113 /*
2114 * Allocate and initialize the btree cursor.
2115 */
2116 state = xfs_da_state_alloc();
2117 state->args = args;
2118 state->mp = args->dp->i_mount;
2119 state->blocksize = state->mp->m_dirblksize;
2120 state->node_ents = state->mp->m_dir_node_ents;
2121 /*
2122 * Look up the entry we're deleting, set up the cursor.
2123 */
f5ea1100 2124 error = xfs_da3_node_lookup_int(state, &rval);
5163f95a 2125 if (error)
1da177e4 2126 rval = error;
1da177e4
LT
2127 /*
2128 * Didn't find it, upper layer screwed up.
2129 */
2130 if (rval != EEXIST) {
2131 xfs_da_state_free(state);
2132 return rval;
2133 }
2134 blk = &state->path.blk[state->path.active - 1];
2135 ASSERT(blk->magic == XFS_DIR2_LEAFN_MAGIC);
2136 ASSERT(state->extravalid);
2137 /*
2138 * Remove the leaf and data entries.
2139 * Extrablk refers to the data block.
2140 */
2141 error = xfs_dir2_leafn_remove(args, blk->bp, blk->index,
2142 &state->extrablk, &rval);
5163f95a 2143 if (error)
1da177e4 2144 return error;
1da177e4
LT
2145 /*
2146 * Fix the hash values up the btree.
2147 */
f5ea1100 2148 xfs_da3_fixhashpath(state, &state->path);
1da177e4
LT
2149 /*
2150 * If we need to join leaf blocks, do it.
2151 */
2152 if (rval && state->path.active > 1)
f5ea1100 2153 error = xfs_da3_join(state);
1da177e4
LT
2154 /*
2155 * If no errors so far, try conversion to leaf format.
2156 */
2157 if (!error)
2158 error = xfs_dir2_node_to_leaf(state);
2159 xfs_da_state_free(state);
2160 return error;
2161}
2162
2163/*
2164 * Replace an entry's inode number in a node-format directory.
2165 */
2166int /* error */
2167xfs_dir2_node_replace(
2168 xfs_da_args_t *args) /* operation arguments */
2169{
2170 xfs_da_state_blk_t *blk; /* leaf block */
c2066e26 2171 xfs_dir2_data_hdr_t *hdr; /* data block header */
1da177e4
LT
2172 xfs_dir2_data_entry_t *dep; /* data entry changed */
2173 int error; /* error return value */
2174 int i; /* btree level */
2175 xfs_ino_t inum; /* new inode number */
2176 xfs_dir2_leaf_t *leaf; /* leaf structure */
2177 xfs_dir2_leaf_entry_t *lep; /* leaf entry being changed */
2178 int rval; /* internal return value */
2179 xfs_da_state_t *state; /* btree cursor */
2180
0b1b213f
CH
2181 trace_xfs_dir2_node_replace(args);
2182
1da177e4
LT
2183 /*
2184 * Allocate and initialize the btree cursor.
2185 */
2186 state = xfs_da_state_alloc();
2187 state->args = args;
2188 state->mp = args->dp->i_mount;
2189 state->blocksize = state->mp->m_dirblksize;
2190 state->node_ents = state->mp->m_dir_node_ents;
2191 inum = args->inumber;
2192 /*
2193 * Lookup the entry to change in the btree.
2194 */
f5ea1100 2195 error = xfs_da3_node_lookup_int(state, &rval);
1da177e4
LT
2196 if (error) {
2197 rval = error;
2198 }
2199 /*
2200 * It should be found, since the vnodeops layer has looked it up
2201 * and locked it. But paranoia is good.
2202 */
2203 if (rval == EEXIST) {
24df33b4 2204 struct xfs_dir2_leaf_entry *ents;
1da177e4
LT
2205 /*
2206 * Find the leaf entry.
2207 */
2208 blk = &state->path.blk[state->path.active - 1];
2209 ASSERT(blk->magic == XFS_DIR2_LEAFN_MAGIC);
1d9025e5 2210 leaf = blk->bp->b_addr;
24df33b4
DC
2211 ents = xfs_dir3_leaf_ents_p(leaf);
2212 lep = &ents[blk->index];
1da177e4
LT
2213 ASSERT(state->extravalid);
2214 /*
2215 * Point to the data entry.
2216 */
1d9025e5 2217 hdr = state->extrablk.bp->b_addr;
33363fee
DC
2218 ASSERT(hdr->magic == cpu_to_be32(XFS_DIR2_DATA_MAGIC) ||
2219 hdr->magic == cpu_to_be32(XFS_DIR3_DATA_MAGIC));
1da177e4 2220 dep = (xfs_dir2_data_entry_t *)
c2066e26 2221 ((char *)hdr +
bbaaf538 2222 xfs_dir2_dataptr_to_off(state->mp, be32_to_cpu(lep->address)));
ff9901c1 2223 ASSERT(inum != be64_to_cpu(dep->inumber));
1da177e4
LT
2224 /*
2225 * Fill in the new inode number and log the entry.
2226 */
ff9901c1 2227 dep->inumber = cpu_to_be64(inum);
1da177e4
LT
2228 xfs_dir2_data_log_entry(args->trans, state->extrablk.bp, dep);
2229 rval = 0;
2230 }
2231 /*
2232 * Didn't find it, and we're holding a data block. Drop it.
2233 */
2234 else if (state->extravalid) {
1d9025e5 2235 xfs_trans_brelse(args->trans, state->extrablk.bp);
1da177e4
LT
2236 state->extrablk.bp = NULL;
2237 }
2238 /*
2239 * Release all the buffers in the cursor.
2240 */
2241 for (i = 0; i < state->path.active; i++) {
1d9025e5 2242 xfs_trans_brelse(args->trans, state->path.blk[i].bp);
1da177e4
LT
2243 state->path.blk[i].bp = NULL;
2244 }
2245 xfs_da_state_free(state);
2246 return rval;
2247}
2248
2249/*
2250 * Trim off a trailing empty freespace block.
2251 * Return (in rvalp) 1 if we did it, 0 if not.
2252 */
2253int /* error */
2254xfs_dir2_node_trim_free(
2255 xfs_da_args_t *args, /* operation arguments */
2256 xfs_fileoff_t fo, /* free block number */
2257 int *rvalp) /* out: did something */
2258{
1d9025e5 2259 struct xfs_buf *bp; /* freespace buffer */
1da177e4
LT
2260 xfs_inode_t *dp; /* incore directory inode */
2261 int error; /* error return code */
2262 xfs_dir2_free_t *free; /* freespace structure */
2263 xfs_mount_t *mp; /* filesystem mount point */
2264 xfs_trans_t *tp; /* transaction pointer */
cbc8adf8 2265 struct xfs_dir3_icfree_hdr freehdr;
1da177e4
LT
2266
2267 dp = args->dp;
2268 mp = dp->i_mount;
2269 tp = args->trans;
2270 /*
2271 * Read the freespace block.
2272 */
2025207c 2273 error = xfs_dir2_free_try_read(tp, dp, fo, &bp);
4bb20a83 2274 if (error)
1da177e4 2275 return error;
1da177e4
LT
2276 /*
2277 * There can be holes in freespace. If fo is a hole, there's
2278 * nothing to do.
2279 */
2025207c 2280 if (!bp)
1da177e4 2281 return 0;
1d9025e5 2282 free = bp->b_addr;
cbc8adf8
DC
2283 xfs_dir3_free_hdr_from_disk(&freehdr, free);
2284
1da177e4
LT
2285 /*
2286 * If there are used entries, there's nothing to do.
2287 */
cbc8adf8 2288 if (freehdr.nused > 0) {
1d9025e5 2289 xfs_trans_brelse(tp, bp);
1da177e4
LT
2290 *rvalp = 0;
2291 return 0;
2292 }
2293 /*
2294 * Blow the block away.
2295 */
2296 if ((error =
bbaaf538 2297 xfs_dir2_shrink_inode(args, xfs_dir2_da_to_db(mp, (xfs_dablk_t)fo),
1da177e4
LT
2298 bp))) {
2299 /*
2300 * Can't fail with ENOSPC since that only happens with no
2301 * space reservation, when breaking up an extent into two
2302 * pieces. This is the last block of an extent.
2303 */
2304 ASSERT(error != ENOSPC);
1d9025e5 2305 xfs_trans_brelse(tp, bp);
1da177e4
LT
2306 return error;
2307 }
2308 /*
2309 * Return that we succeeded.
2310 */
2311 *rvalp = 1;
2312 return 0;
2313}
This page took 0.780237 seconds and 5 git commands to generate.