]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - fs/xfs/libxfs/xfs_da_btree.c
Merge tag 'linux-kselftest-4.3-rc1' of git://git.kernel.org/pub/scm/linux/kernel...
[mirror_ubuntu-artful-kernel.git] / fs / xfs / libxfs / xfs_da_btree.c
CommitLineData
1da177e4 1/*
7b718769 2 * Copyright (c) 2000-2005 Silicon Graphics, Inc.
f5ea1100 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"
70a9883c 21#include "xfs_shared.h"
239880ef
DC
22#include "xfs_format.h"
23#include "xfs_log_format.h"
24#include "xfs_trans_resv.h"
a844f451 25#include "xfs_bit.h"
1da177e4 26#include "xfs_mount.h"
57062787 27#include "xfs_da_format.h"
a844f451 28#include "xfs_da_btree.h"
2b9ab5ab 29#include "xfs_dir2.h"
57926640 30#include "xfs_dir2_priv.h"
1da177e4 31#include "xfs_inode.h"
239880ef 32#include "xfs_trans.h"
a844f451
NS
33#include "xfs_inode_item.h"
34#include "xfs_alloc.h"
1da177e4 35#include "xfs_bmap.h"
1da177e4
LT
36#include "xfs_attr.h"
37#include "xfs_attr_leaf.h"
1da177e4 38#include "xfs_error.h"
0b1b213f 39#include "xfs_trace.h"
f5ea1100
DC
40#include "xfs_cksum.h"
41#include "xfs_buf_item.h"
1da177e4
LT
42
43/*
44 * xfs_da_btree.c
45 *
46 * Routines to implement directories as Btrees of hashed names.
47 */
48
49/*========================================================================
50 * Function prototypes for the kernel.
51 *========================================================================*/
52
53/*
54 * Routines used for growing the Btree.
55 */
f5ea1100 56STATIC int xfs_da3_root_split(xfs_da_state_t *state,
1da177e4
LT
57 xfs_da_state_blk_t *existing_root,
58 xfs_da_state_blk_t *new_child);
f5ea1100 59STATIC int xfs_da3_node_split(xfs_da_state_t *state,
1da177e4
LT
60 xfs_da_state_blk_t *existing_blk,
61 xfs_da_state_blk_t *split_blk,
62 xfs_da_state_blk_t *blk_to_add,
63 int treelevel,
64 int *result);
f5ea1100 65STATIC void xfs_da3_node_rebalance(xfs_da_state_t *state,
1da177e4
LT
66 xfs_da_state_blk_t *node_blk_1,
67 xfs_da_state_blk_t *node_blk_2);
f5ea1100 68STATIC void xfs_da3_node_add(xfs_da_state_t *state,
1da177e4
LT
69 xfs_da_state_blk_t *old_node_blk,
70 xfs_da_state_blk_t *new_node_blk);
71
72/*
73 * Routines used for shrinking the Btree.
74 */
f5ea1100 75STATIC int xfs_da3_root_join(xfs_da_state_t *state,
1da177e4 76 xfs_da_state_blk_t *root_blk);
f5ea1100
DC
77STATIC int xfs_da3_node_toosmall(xfs_da_state_t *state, int *retval);
78STATIC void xfs_da3_node_remove(xfs_da_state_t *state,
1da177e4 79 xfs_da_state_blk_t *drop_blk);
f5ea1100 80STATIC void xfs_da3_node_unbalance(xfs_da_state_t *state,
1da177e4
LT
81 xfs_da_state_blk_t *src_node_blk,
82 xfs_da_state_blk_t *dst_node_blk);
83
84/*
85 * Utility routines.
86 */
f5ea1100 87STATIC int xfs_da3_blk_unlink(xfs_da_state_t *state,
ba0f32d4
CH
88 xfs_da_state_blk_t *drop_blk,
89 xfs_da_state_blk_t *save_blk);
1da177e4 90
f5ea1100
DC
91
92kmem_zone_t *xfs_da_state_zone; /* anchor for state struct zone */
93
94/*
95 * Allocate a dir-state structure.
96 * We don't put them on the stack since they're large.
97 */
98xfs_da_state_t *
99xfs_da_state_alloc(void)
100{
101 return kmem_zone_zalloc(xfs_da_state_zone, KM_NOFS);
102}
103
104/*
105 * Kill the altpath contents of a da-state structure.
106 */
107STATIC void
108xfs_da_state_kill_altpath(xfs_da_state_t *state)
109{
110 int i;
111
112 for (i = 0; i < state->altpath.active; i++)
113 state->altpath.blk[i].bp = NULL;
114 state->altpath.active = 0;
115}
116
117/*
118 * Free a da-state structure.
119 */
120void
121xfs_da_state_free(xfs_da_state_t *state)
122{
123 xfs_da_state_kill_altpath(state);
124#ifdef DEBUG
125 memset((char *)state, 0, sizeof(*state));
126#endif /* DEBUG */
127 kmem_zone_free(xfs_da_state_zone, state);
128}
129
f5ea1100
DC
130static bool
131xfs_da3_node_verify(
d9392a4b
DC
132 struct xfs_buf *bp)
133{
134 struct xfs_mount *mp = bp->b_target->bt_mount;
f5ea1100
DC
135 struct xfs_da_intnode *hdr = bp->b_addr;
136 struct xfs_da3_icnode_hdr ichdr;
01ba43b8
DC
137 const struct xfs_dir_ops *ops;
138
139 ops = xfs_dir_get_ops(mp, NULL);
f5ea1100 140
01ba43b8 141 ops->node_hdr_from_disk(&ichdr, hdr);
f5ea1100
DC
142
143 if (xfs_sb_version_hascrc(&mp->m_sb)) {
144 struct xfs_da3_node_hdr *hdr3 = bp->b_addr;
145
146 if (ichdr.magic != XFS_DA3_NODE_MAGIC)
147 return false;
148
ce748eaa 149 if (!uuid_equal(&hdr3->info.uuid, &mp->m_sb.sb_meta_uuid))
f5ea1100
DC
150 return false;
151 if (be64_to_cpu(hdr3->info.blkno) != bp->b_bn)
152 return false;
153 } else {
154 if (ichdr.magic != XFS_DA_NODE_MAGIC)
155 return false;
d9392a4b 156 }
f5ea1100
DC
157 if (ichdr.level == 0)
158 return false;
159 if (ichdr.level > XFS_DA_NODE_MAXDEPTH)
160 return false;
161 if (ichdr.count == 0)
162 return false;
163
164 /*
165 * we don't know if the node is for and attribute or directory tree,
166 * so only fail if the count is outside both bounds
167 */
7ab610f9
DC
168 if (ichdr.count > mp->m_dir_geo->node_ents &&
169 ichdr.count > mp->m_attr_geo->node_ents)
f5ea1100
DC
170 return false;
171
172 /* XXX: hash order check? */
d9392a4b 173
f5ea1100 174 return true;
d9392a4b
DC
175}
176
177static void
f5ea1100 178xfs_da3_node_write_verify(
612cfbfe
DC
179 struct xfs_buf *bp)
180{
f5ea1100
DC
181 struct xfs_mount *mp = bp->b_target->bt_mount;
182 struct xfs_buf_log_item *bip = bp->b_fspriv;
183 struct xfs_da3_node_hdr *hdr3 = bp->b_addr;
184
185 if (!xfs_da3_node_verify(bp)) {
2451337d 186 xfs_buf_ioerror(bp, -EFSCORRUPTED);
ce5028cf 187 xfs_verifier_error(bp);
f5ea1100
DC
188 return;
189 }
190
191 if (!xfs_sb_version_hascrc(&mp->m_sb))
192 return;
193
194 if (bip)
195 hdr3->info.lsn = cpu_to_be64(bip->bli_item.li_lsn);
196
f1dbcd7e 197 xfs_buf_update_cksum(bp, XFS_DA3_NODE_CRC_OFF);
612cfbfe
DC
198}
199
1813dd64
DC
200/*
201 * leaf/node format detection on trees is sketchy, so a node read can be done on
202 * leaf level blocks when detection identifies the tree as a node format tree
203 * incorrectly. In this case, we need to swap the verifier to match the correct
204 * format of the block being read.
205 */
612cfbfe 206static void
f5ea1100 207xfs_da3_node_read_verify(
d9392a4b
DC
208 struct xfs_buf *bp)
209{
d9392a4b
DC
210 struct xfs_da_blkinfo *info = bp->b_addr;
211
212 switch (be16_to_cpu(info->magic)) {
f5ea1100 213 case XFS_DA3_NODE_MAGIC:
ce5028cf 214 if (!xfs_buf_verify_cksum(bp, XFS_DA3_NODE_CRC_OFF)) {
2451337d 215 xfs_buf_ioerror(bp, -EFSBADCRC);
f5ea1100 216 break;
ce5028cf 217 }
f5ea1100 218 /* fall through */
d9392a4b 219 case XFS_DA_NODE_MAGIC:
ce5028cf 220 if (!xfs_da3_node_verify(bp)) {
2451337d 221 xfs_buf_ioerror(bp, -EFSCORRUPTED);
f5ea1100 222 break;
ce5028cf 223 }
f5ea1100 224 return;
d9392a4b 225 case XFS_ATTR_LEAF_MAGIC:
7ced60ca 226 case XFS_ATTR3_LEAF_MAGIC:
517c2220 227 bp->b_ops = &xfs_attr3_leaf_buf_ops;
1813dd64 228 bp->b_ops->verify_read(bp);
d9392a4b
DC
229 return;
230 case XFS_DIR2_LEAFN_MAGIC:
24df33b4
DC
231 case XFS_DIR3_LEAFN_MAGIC:
232 bp->b_ops = &xfs_dir3_leafn_buf_ops;
1813dd64 233 bp->b_ops->verify_read(bp);
d9392a4b
DC
234 return;
235 default:
dfdd4ac6 236 xfs_buf_ioerror(bp, -EFSCORRUPTED);
d9392a4b
DC
237 break;
238 }
f5ea1100
DC
239
240 /* corrupt block */
ce5028cf 241 xfs_verifier_error(bp);
d9392a4b
DC
242}
243
f5ea1100
DC
244const struct xfs_buf_ops xfs_da3_node_buf_ops = {
245 .verify_read = xfs_da3_node_read_verify,
246 .verify_write = xfs_da3_node_write_verify,
1813dd64
DC
247};
248
d9392a4b 249int
f5ea1100 250xfs_da3_node_read(
d9392a4b
DC
251 struct xfs_trans *tp,
252 struct xfs_inode *dp,
253 xfs_dablk_t bno,
254 xfs_daddr_t mappedbno,
255 struct xfs_buf **bpp,
256 int which_fork)
257{
d75afeb3
DC
258 int err;
259
260 err = xfs_da_read_buf(tp, dp, bno, mappedbno, bpp,
f5ea1100 261 which_fork, &xfs_da3_node_buf_ops);
d75afeb3
DC
262 if (!err && tp) {
263 struct xfs_da_blkinfo *info = (*bpp)->b_addr;
264 int type;
265
266 switch (be16_to_cpu(info->magic)) {
d75afeb3 267 case XFS_DA_NODE_MAGIC:
cab09a81 268 case XFS_DA3_NODE_MAGIC:
61fe135c 269 type = XFS_BLFT_DA_NODE_BUF;
d75afeb3
DC
270 break;
271 case XFS_ATTR_LEAF_MAGIC:
272 case XFS_ATTR3_LEAF_MAGIC:
61fe135c 273 type = XFS_BLFT_ATTR_LEAF_BUF;
d75afeb3
DC
274 break;
275 case XFS_DIR2_LEAFN_MAGIC:
276 case XFS_DIR3_LEAFN_MAGIC:
61fe135c 277 type = XFS_BLFT_DIR_LEAFN_BUF;
d75afeb3
DC
278 break;
279 default:
280 type = 0;
281 ASSERT(0);
282 break;
283 }
284 xfs_trans_buf_set_type(tp, *bpp, type);
285 }
286 return err;
d9392a4b
DC
287}
288
1da177e4
LT
289/*========================================================================
290 * Routines used for growing the Btree.
291 *========================================================================*/
292
293/*
294 * Create the initial contents of an intermediate node.
295 */
296int
f5ea1100
DC
297xfs_da3_node_create(
298 struct xfs_da_args *args,
299 xfs_dablk_t blkno,
300 int level,
301 struct xfs_buf **bpp,
302 int whichfork)
1da177e4 303{
f5ea1100
DC
304 struct xfs_da_intnode *node;
305 struct xfs_trans *tp = args->trans;
306 struct xfs_mount *mp = tp->t_mountp;
307 struct xfs_da3_icnode_hdr ichdr = {0};
308 struct xfs_buf *bp;
309 int error;
01ba43b8 310 struct xfs_inode *dp = args->dp;
1da177e4 311
5a5881cd 312 trace_xfs_da_node_create(args);
f5ea1100 313 ASSERT(level <= XFS_DA_NODE_MAXDEPTH);
5a5881cd 314
01ba43b8 315 error = xfs_da_get_buf(tp, dp, blkno, -1, &bp, whichfork);
1da177e4 316 if (error)
d99831ff 317 return error;
d75afeb3 318 bp->b_ops = &xfs_da3_node_buf_ops;
61fe135c 319 xfs_trans_buf_set_type(tp, bp, XFS_BLFT_DA_NODE_BUF);
1d9025e5 320 node = bp->b_addr;
1da177e4 321
f5ea1100
DC
322 if (xfs_sb_version_hascrc(&mp->m_sb)) {
323 struct xfs_da3_node_hdr *hdr3 = bp->b_addr;
324
325 ichdr.magic = XFS_DA3_NODE_MAGIC;
326 hdr3->info.blkno = cpu_to_be64(bp->b_bn);
327 hdr3->info.owner = cpu_to_be64(args->dp->i_ino);
ce748eaa 328 uuid_copy(&hdr3->info.uuid, &mp->m_sb.sb_meta_uuid);
f5ea1100
DC
329 } else {
330 ichdr.magic = XFS_DA_NODE_MAGIC;
331 }
332 ichdr.level = level;
333
01ba43b8 334 dp->d_ops->node_hdr_to_disk(node, &ichdr);
1d9025e5 335 xfs_trans_log_buf(tp, bp,
1c9a5b2e 336 XFS_DA_LOGRANGE(node, &node->hdr, dp->d_ops->node_hdr_size));
1da177e4
LT
337
338 *bpp = bp;
d99831ff 339 return 0;
1da177e4
LT
340}
341
342/*
343 * Split a leaf node, rebalance, then possibly split
344 * intermediate nodes, rebalance, etc.
345 */
346int /* error */
f5ea1100
DC
347xfs_da3_split(
348 struct xfs_da_state *state)
1da177e4 349{
f5ea1100
DC
350 struct xfs_da_state_blk *oldblk;
351 struct xfs_da_state_blk *newblk;
352 struct xfs_da_state_blk *addblk;
353 struct xfs_da_intnode *node;
354 struct xfs_buf *bp;
355 int max;
836a94ad 356 int action = 0;
f5ea1100
DC
357 int error;
358 int i;
1da177e4 359
5a5881cd
DC
360 trace_xfs_da_split(state->args);
361
1da177e4
LT
362 /*
363 * Walk back up the tree splitting/inserting/adjusting as necessary.
364 * If we need to insert and there isn't room, split the node, then
365 * decide which fragment to insert the new block from below into.
366 * Note that we may split the root this way, but we need more fixup.
367 */
368 max = state->path.active - 1;
369 ASSERT((max >= 0) && (max < XFS_DA_NODE_MAXDEPTH));
370 ASSERT(state->path.blk[max].magic == XFS_ATTR_LEAF_MAGIC ||
f6c2d1fa 371 state->path.blk[max].magic == XFS_DIR2_LEAFN_MAGIC);
1da177e4
LT
372
373 addblk = &state->path.blk[max]; /* initial dummy value */
374 for (i = max; (i >= 0) && addblk; state->path.active--, i--) {
375 oldblk = &state->path.blk[i];
376 newblk = &state->altpath.blk[i];
377
378 /*
379 * If a leaf node then
380 * Allocate a new leaf node, then rebalance across them.
381 * else if an intermediate node then
382 * We split on the last layer, must we split the node?
383 */
384 switch (oldblk->magic) {
385 case XFS_ATTR_LEAF_MAGIC:
517c2220 386 error = xfs_attr3_leaf_split(state, oldblk, newblk);
2451337d 387 if ((error != 0) && (error != -ENOSPC)) {
d99831ff 388 return error; /* GROT: attr is inconsistent */
1da177e4
LT
389 }
390 if (!error) {
391 addblk = newblk;
392 break;
393 }
394 /*
395 * Entry wouldn't fit, split the leaf again.
396 */
397 state->extravalid = 1;
398 if (state->inleaf) {
399 state->extraafter = 0; /* before newblk */
5a5881cd 400 trace_xfs_attr_leaf_split_before(state->args);
517c2220 401 error = xfs_attr3_leaf_split(state, oldblk,
1da177e4
LT
402 &state->extrablk);
403 } else {
404 state->extraafter = 1; /* after newblk */
5a5881cd 405 trace_xfs_attr_leaf_split_after(state->args);
517c2220 406 error = xfs_attr3_leaf_split(state, newblk,
1da177e4
LT
407 &state->extrablk);
408 }
409 if (error)
d99831ff 410 return error; /* GROT: attr inconsistent */
1da177e4
LT
411 addblk = newblk;
412 break;
1da177e4 413 case XFS_DIR2_LEAFN_MAGIC:
1da177e4
LT
414 error = xfs_dir2_leafn_split(state, oldblk, newblk);
415 if (error)
416 return error;
417 addblk = newblk;
418 break;
419 case XFS_DA_NODE_MAGIC:
f5ea1100 420 error = xfs_da3_node_split(state, oldblk, newblk, addblk,
1da177e4 421 max - i, &action);
1da177e4
LT
422 addblk->bp = NULL;
423 if (error)
d99831ff 424 return error; /* GROT: dir is inconsistent */
1da177e4
LT
425 /*
426 * Record the newly split block for the next time thru?
427 */
428 if (action)
429 addblk = newblk;
430 else
431 addblk = NULL;
432 break;
433 }
434
435 /*
436 * Update the btree to show the new hashval for this child.
437 */
f5ea1100 438 xfs_da3_fixhashpath(state, &state->path);
1da177e4
LT
439 }
440 if (!addblk)
d99831ff 441 return 0;
1da177e4
LT
442
443 /*
444 * Split the root node.
445 */
446 ASSERT(state->path.active == 0);
447 oldblk = &state->path.blk[0];
f5ea1100 448 error = xfs_da3_root_split(state, oldblk, addblk);
1da177e4 449 if (error) {
1da177e4 450 addblk->bp = NULL;
d99831ff 451 return error; /* GROT: dir is inconsistent */
1da177e4
LT
452 }
453
454 /*
455 * Update pointers to the node which used to be block 0 and
456 * just got bumped because of the addition of a new root node.
457 * There might be three blocks involved if a double split occurred,
458 * and the original block 0 could be at any position in the list.
f5ea1100
DC
459 *
460 * Note: the magic numbers and sibling pointers are in the same
461 * physical place for both v2 and v3 headers (by design). Hence it
462 * doesn't matter which version of the xfs_da_intnode structure we use
463 * here as the result will be the same using either structure.
1da177e4 464 */
1d9025e5 465 node = oldblk->bp->b_addr;
1da177e4 466 if (node->hdr.info.forw) {
89da0544 467 if (be32_to_cpu(node->hdr.info.forw) == addblk->blkno) {
1da177e4
LT
468 bp = addblk->bp;
469 } else {
470 ASSERT(state->extravalid);
471 bp = state->extrablk.bp;
472 }
1d9025e5 473 node = bp->b_addr;
89da0544 474 node->hdr.info.back = cpu_to_be32(oldblk->blkno);
1d9025e5 475 xfs_trans_log_buf(state->args->trans, bp,
1da177e4
LT
476 XFS_DA_LOGRANGE(node, &node->hdr.info,
477 sizeof(node->hdr.info)));
478 }
1d9025e5 479 node = oldblk->bp->b_addr;
89da0544
NS
480 if (node->hdr.info.back) {
481 if (be32_to_cpu(node->hdr.info.back) == addblk->blkno) {
1da177e4
LT
482 bp = addblk->bp;
483 } else {
484 ASSERT(state->extravalid);
485 bp = state->extrablk.bp;
486 }
1d9025e5 487 node = bp->b_addr;
89da0544 488 node->hdr.info.forw = cpu_to_be32(oldblk->blkno);
1d9025e5 489 xfs_trans_log_buf(state->args->trans, bp,
1da177e4
LT
490 XFS_DA_LOGRANGE(node, &node->hdr.info,
491 sizeof(node->hdr.info)));
492 }
1da177e4 493 addblk->bp = NULL;
d99831ff 494 return 0;
1da177e4
LT
495}
496
497/*
498 * Split the root. We have to create a new root and point to the two
499 * parts (the split old root) that we just created. Copy block zero to
500 * the EOF, extending the inode in process.
501 */
502STATIC int /* error */
f5ea1100
DC
503xfs_da3_root_split(
504 struct xfs_da_state *state,
505 struct xfs_da_state_blk *blk1,
506 struct xfs_da_state_blk *blk2)
1da177e4 507{
f5ea1100
DC
508 struct xfs_da_intnode *node;
509 struct xfs_da_intnode *oldroot;
510 struct xfs_da_node_entry *btree;
511 struct xfs_da3_icnode_hdr nodehdr;
512 struct xfs_da_args *args;
513 struct xfs_buf *bp;
514 struct xfs_inode *dp;
515 struct xfs_trans *tp;
f5ea1100
DC
516 struct xfs_dir2_leaf *leaf;
517 xfs_dablk_t blkno;
518 int level;
519 int error;
520 int size;
1da177e4 521
5a5881cd
DC
522 trace_xfs_da_root_split(state->args);
523
1da177e4
LT
524 /*
525 * Copy the existing (incorrect) block from the root node position
526 * to a free space somewhere.
527 */
528 args = state->args;
1da177e4
LT
529 error = xfs_da_grow_inode(args, &blkno);
530 if (error)
f5ea1100
DC
531 return error;
532
1da177e4
LT
533 dp = args->dp;
534 tp = args->trans;
1da177e4
LT
535 error = xfs_da_get_buf(tp, dp, blkno, -1, &bp, args->whichfork);
536 if (error)
f5ea1100 537 return error;
1d9025e5
DC
538 node = bp->b_addr;
539 oldroot = blk1->bp->b_addr;
f5ea1100
DC
540 if (oldroot->hdr.info.magic == cpu_to_be16(XFS_DA_NODE_MAGIC) ||
541 oldroot->hdr.info.magic == cpu_to_be16(XFS_DA3_NODE_MAGIC)) {
29916df0 542 struct xfs_da3_icnode_hdr icnodehdr;
f5ea1100 543
29916df0 544 dp->d_ops->node_hdr_from_disk(&icnodehdr, oldroot);
4bceb18f 545 btree = dp->d_ops->node_tree_p(oldroot);
29916df0
FF
546 size = (int)((char *)&btree[icnodehdr.count] - (char *)oldroot);
547 level = icnodehdr.level;
d75afeb3
DC
548
549 /*
550 * we are about to copy oldroot to bp, so set up the type
551 * of bp while we know exactly what it will be.
552 */
61fe135c 553 xfs_trans_buf_set_type(tp, bp, XFS_BLFT_DA_NODE_BUF);
1da177e4 554 } else {
24df33b4
DC
555 struct xfs_dir3_icleaf_hdr leafhdr;
556 struct xfs_dir2_leaf_entry *ents;
557
1da177e4 558 leaf = (xfs_dir2_leaf_t *)oldroot;
01ba43b8 559 dp->d_ops->leaf_hdr_from_disk(&leafhdr, leaf);
4141956a 560 ents = dp->d_ops->leaf_ents_p(leaf);
24df33b4
DC
561
562 ASSERT(leafhdr.magic == XFS_DIR2_LEAFN_MAGIC ||
563 leafhdr.magic == XFS_DIR3_LEAFN_MAGIC);
564 size = (int)((char *)&ents[leafhdr.count] - (char *)leaf);
f5ea1100 565 level = 0;
d75afeb3
DC
566
567 /*
568 * we are about to copy oldroot to bp, so set up the type
569 * of bp while we know exactly what it will be.
570 */
61fe135c 571 xfs_trans_buf_set_type(tp, bp, XFS_BLFT_DIR_LEAFN_BUF);
1da177e4 572 }
f5ea1100
DC
573
574 /*
575 * we can copy most of the information in the node from one block to
576 * another, but for CRC enabled headers we have to make sure that the
577 * block specific identifiers are kept intact. We update the buffer
578 * directly for this.
579 */
1da177e4 580 memcpy(node, oldroot, size);
f5ea1100
DC
581 if (oldroot->hdr.info.magic == cpu_to_be16(XFS_DA3_NODE_MAGIC) ||
582 oldroot->hdr.info.magic == cpu_to_be16(XFS_DIR3_LEAFN_MAGIC)) {
583 struct xfs_da3_intnode *node3 = (struct xfs_da3_intnode *)node;
584
585 node3->hdr.info.blkno = cpu_to_be64(bp->b_bn);
586 }
1d9025e5 587 xfs_trans_log_buf(tp, bp, 0, size - 1);
b0f539de 588
1813dd64 589 bp->b_ops = blk1->bp->b_ops;
0a4edc8f 590 xfs_trans_buf_copy_type(bp, blk1->bp);
1da177e4
LT
591 blk1->bp = bp;
592 blk1->blkno = blkno;
593
594 /*
595 * Set up the new root node.
596 */
f5ea1100 597 error = xfs_da3_node_create(args,
7dda6e86 598 (args->whichfork == XFS_DATA_FORK) ? args->geo->leafblk : 0,
f5ea1100 599 level + 1, &bp, args->whichfork);
1da177e4 600 if (error)
f5ea1100
DC
601 return error;
602
1d9025e5 603 node = bp->b_addr;
01ba43b8 604 dp->d_ops->node_hdr_from_disk(&nodehdr, node);
4bceb18f 605 btree = dp->d_ops->node_tree_p(node);
f5ea1100
DC
606 btree[0].hashval = cpu_to_be32(blk1->hashval);
607 btree[0].before = cpu_to_be32(blk1->blkno);
608 btree[1].hashval = cpu_to_be32(blk2->hashval);
609 btree[1].before = cpu_to_be32(blk2->blkno);
610 nodehdr.count = 2;
01ba43b8 611 dp->d_ops->node_hdr_to_disk(node, &nodehdr);
1da177e4
LT
612
613#ifdef DEBUG
24df33b4
DC
614 if (oldroot->hdr.info.magic == cpu_to_be16(XFS_DIR2_LEAFN_MAGIC) ||
615 oldroot->hdr.info.magic == cpu_to_be16(XFS_DIR3_LEAFN_MAGIC)) {
7dda6e86
DC
616 ASSERT(blk1->blkno >= args->geo->leafblk &&
617 blk1->blkno < args->geo->freeblk);
618 ASSERT(blk2->blkno >= args->geo->leafblk &&
619 blk2->blkno < args->geo->freeblk);
1da177e4
LT
620 }
621#endif
622
623 /* Header is already logged by xfs_da_node_create */
1d9025e5 624 xfs_trans_log_buf(tp, bp,
f5ea1100 625 XFS_DA_LOGRANGE(node, btree, sizeof(xfs_da_node_entry_t) * 2));
1da177e4 626
f5ea1100 627 return 0;
1da177e4
LT
628}
629
630/*
631 * Split the node, rebalance, then add the new entry.
632 */
633STATIC int /* error */
f5ea1100
DC
634xfs_da3_node_split(
635 struct xfs_da_state *state,
636 struct xfs_da_state_blk *oldblk,
637 struct xfs_da_state_blk *newblk,
638 struct xfs_da_state_blk *addblk,
639 int treelevel,
640 int *result)
1da177e4 641{
f5ea1100
DC
642 struct xfs_da_intnode *node;
643 struct xfs_da3_icnode_hdr nodehdr;
644 xfs_dablk_t blkno;
645 int newcount;
646 int error;
647 int useextra;
01ba43b8 648 struct xfs_inode *dp = state->args->dp;
1da177e4 649
5a5881cd
DC
650 trace_xfs_da_node_split(state->args);
651
1d9025e5 652 node = oldblk->bp->b_addr;
01ba43b8 653 dp->d_ops->node_hdr_from_disk(&nodehdr, node);
1da177e4
LT
654
655 /*
f6c2d1fa 656 * With V2 dirs the extra block is data or freespace.
1da177e4 657 */
f6c2d1fa 658 useextra = state->extravalid && state->args->whichfork == XFS_ATTR_FORK;
1da177e4
LT
659 newcount = 1 + useextra;
660 /*
661 * Do we have to split the node?
662 */
b2a21e7a 663 if (nodehdr.count + newcount > state->args->geo->node_ents) {
1da177e4
LT
664 /*
665 * Allocate a new node, add to the doubly linked chain of
666 * nodes, then move some of our excess entries into it.
667 */
668 error = xfs_da_grow_inode(state->args, &blkno);
669 if (error)
d99831ff 670 return error; /* GROT: dir is inconsistent */
1da177e4 671
f5ea1100 672 error = xfs_da3_node_create(state->args, blkno, treelevel,
1da177e4
LT
673 &newblk->bp, state->args->whichfork);
674 if (error)
d99831ff 675 return error; /* GROT: dir is inconsistent */
1da177e4
LT
676 newblk->blkno = blkno;
677 newblk->magic = XFS_DA_NODE_MAGIC;
f5ea1100
DC
678 xfs_da3_node_rebalance(state, oldblk, newblk);
679 error = xfs_da3_blk_link(state, oldblk, newblk);
1da177e4 680 if (error)
d99831ff 681 return error;
1da177e4
LT
682 *result = 1;
683 } else {
684 *result = 0;
685 }
686
687 /*
688 * Insert the new entry(s) into the correct block
689 * (updating last hashval in the process).
690 *
f5ea1100 691 * xfs_da3_node_add() inserts BEFORE the given index,
1da177e4
LT
692 * and as a result of using node_lookup_int() we always
693 * point to a valid entry (not after one), but a split
694 * operation always results in a new block whose hashvals
695 * FOLLOW the current block.
696 *
697 * If we had double-split op below us, then add the extra block too.
698 */
1d9025e5 699 node = oldblk->bp->b_addr;
01ba43b8 700 dp->d_ops->node_hdr_from_disk(&nodehdr, node);
f5ea1100 701 if (oldblk->index <= nodehdr.count) {
1da177e4 702 oldblk->index++;
f5ea1100 703 xfs_da3_node_add(state, oldblk, addblk);
1da177e4
LT
704 if (useextra) {
705 if (state->extraafter)
706 oldblk->index++;
f5ea1100 707 xfs_da3_node_add(state, oldblk, &state->extrablk);
1da177e4
LT
708 state->extravalid = 0;
709 }
710 } else {
711 newblk->index++;
f5ea1100 712 xfs_da3_node_add(state, newblk, addblk);
1da177e4
LT
713 if (useextra) {
714 if (state->extraafter)
715 newblk->index++;
f5ea1100 716 xfs_da3_node_add(state, newblk, &state->extrablk);
1da177e4
LT
717 state->extravalid = 0;
718 }
719 }
720
d99831ff 721 return 0;
1da177e4
LT
722}
723
724/*
725 * Balance the btree elements between two intermediate nodes,
726 * usually one full and one empty.
727 *
728 * NOTE: if blk2 is empty, then it will get the upper half of blk1.
729 */
730STATIC void
f5ea1100
DC
731xfs_da3_node_rebalance(
732 struct xfs_da_state *state,
733 struct xfs_da_state_blk *blk1,
734 struct xfs_da_state_blk *blk2)
1da177e4 735{
f5ea1100
DC
736 struct xfs_da_intnode *node1;
737 struct xfs_da_intnode *node2;
738 struct xfs_da_intnode *tmpnode;
739 struct xfs_da_node_entry *btree1;
740 struct xfs_da_node_entry *btree2;
741 struct xfs_da_node_entry *btree_s;
742 struct xfs_da_node_entry *btree_d;
743 struct xfs_da3_icnode_hdr nodehdr1;
744 struct xfs_da3_icnode_hdr nodehdr2;
745 struct xfs_trans *tp;
746 int count;
747 int tmp;
748 int swap = 0;
4bceb18f 749 struct xfs_inode *dp = state->args->dp;
1da177e4 750
5a5881cd
DC
751 trace_xfs_da_node_rebalance(state->args);
752
1d9025e5
DC
753 node1 = blk1->bp->b_addr;
754 node2 = blk2->bp->b_addr;
01ba43b8
DC
755 dp->d_ops->node_hdr_from_disk(&nodehdr1, node1);
756 dp->d_ops->node_hdr_from_disk(&nodehdr2, node2);
4bceb18f
DC
757 btree1 = dp->d_ops->node_tree_p(node1);
758 btree2 = dp->d_ops->node_tree_p(node2);
f5ea1100 759
1da177e4
LT
760 /*
761 * Figure out how many entries need to move, and in which direction.
762 * Swap the nodes around if that makes it simpler.
763 */
f5ea1100
DC
764 if (nodehdr1.count > 0 && nodehdr2.count > 0 &&
765 ((be32_to_cpu(btree2[0].hashval) < be32_to_cpu(btree1[0].hashval)) ||
766 (be32_to_cpu(btree2[nodehdr2.count - 1].hashval) <
767 be32_to_cpu(btree1[nodehdr1.count - 1].hashval)))) {
1da177e4
LT
768 tmpnode = node1;
769 node1 = node2;
770 node2 = tmpnode;
01ba43b8
DC
771 dp->d_ops->node_hdr_from_disk(&nodehdr1, node1);
772 dp->d_ops->node_hdr_from_disk(&nodehdr2, node2);
4bceb18f
DC
773 btree1 = dp->d_ops->node_tree_p(node1);
774 btree2 = dp->d_ops->node_tree_p(node2);
f5ea1100 775 swap = 1;
1da177e4 776 }
f5ea1100
DC
777
778 count = (nodehdr1.count - nodehdr2.count) / 2;
1da177e4
LT
779 if (count == 0)
780 return;
781 tp = state->args->trans;
782 /*
783 * Two cases: high-to-low and low-to-high.
784 */
785 if (count > 0) {
786 /*
787 * Move elements in node2 up to make a hole.
788 */
f5ea1100
DC
789 tmp = nodehdr2.count;
790 if (tmp > 0) {
1da177e4 791 tmp *= (uint)sizeof(xfs_da_node_entry_t);
f5ea1100
DC
792 btree_s = &btree2[0];
793 btree_d = &btree2[count];
1da177e4
LT
794 memmove(btree_d, btree_s, tmp);
795 }
796
797 /*
798 * Move the req'd B-tree elements from high in node1 to
799 * low in node2.
800 */
f5ea1100 801 nodehdr2.count += count;
1da177e4 802 tmp = count * (uint)sizeof(xfs_da_node_entry_t);
f5ea1100
DC
803 btree_s = &btree1[nodehdr1.count - count];
804 btree_d = &btree2[0];
1da177e4 805 memcpy(btree_d, btree_s, tmp);
f5ea1100 806 nodehdr1.count -= count;
1da177e4
LT
807 } else {
808 /*
809 * Move the req'd B-tree elements from low in node2 to
810 * high in node1.
811 */
812 count = -count;
813 tmp = count * (uint)sizeof(xfs_da_node_entry_t);
f5ea1100
DC
814 btree_s = &btree2[0];
815 btree_d = &btree1[nodehdr1.count];
1da177e4 816 memcpy(btree_d, btree_s, tmp);
f5ea1100
DC
817 nodehdr1.count += count;
818
1d9025e5 819 xfs_trans_log_buf(tp, blk1->bp,
1da177e4
LT
820 XFS_DA_LOGRANGE(node1, btree_d, tmp));
821
822 /*
823 * Move elements in node2 down to fill the hole.
824 */
f5ea1100 825 tmp = nodehdr2.count - count;
1da177e4 826 tmp *= (uint)sizeof(xfs_da_node_entry_t);
f5ea1100
DC
827 btree_s = &btree2[count];
828 btree_d = &btree2[0];
1da177e4 829 memmove(btree_d, btree_s, tmp);
f5ea1100 830 nodehdr2.count -= count;
1da177e4
LT
831 }
832
833 /*
834 * Log header of node 1 and all current bits of node 2.
835 */
01ba43b8 836 dp->d_ops->node_hdr_to_disk(node1, &nodehdr1);
1d9025e5 837 xfs_trans_log_buf(tp, blk1->bp,
1c9a5b2e 838 XFS_DA_LOGRANGE(node1, &node1->hdr, dp->d_ops->node_hdr_size));
f5ea1100 839
01ba43b8 840 dp->d_ops->node_hdr_to_disk(node2, &nodehdr2);
1d9025e5 841 xfs_trans_log_buf(tp, blk2->bp,
1da177e4 842 XFS_DA_LOGRANGE(node2, &node2->hdr,
1c9a5b2e 843 dp->d_ops->node_hdr_size +
f5ea1100 844 (sizeof(btree2[0]) * nodehdr2.count)));
1da177e4
LT
845
846 /*
847 * Record the last hashval from each block for upward propagation.
848 * (note: don't use the swapped node pointers)
849 */
f5ea1100
DC
850 if (swap) {
851 node1 = blk1->bp->b_addr;
852 node2 = blk2->bp->b_addr;
01ba43b8
DC
853 dp->d_ops->node_hdr_from_disk(&nodehdr1, node1);
854 dp->d_ops->node_hdr_from_disk(&nodehdr2, node2);
4bceb18f
DC
855 btree1 = dp->d_ops->node_tree_p(node1);
856 btree2 = dp->d_ops->node_tree_p(node2);
f5ea1100
DC
857 }
858 blk1->hashval = be32_to_cpu(btree1[nodehdr1.count - 1].hashval);
859 blk2->hashval = be32_to_cpu(btree2[nodehdr2.count - 1].hashval);
1da177e4
LT
860
861 /*
862 * Adjust the expected index for insertion.
863 */
f5ea1100
DC
864 if (blk1->index >= nodehdr1.count) {
865 blk2->index = blk1->index - nodehdr1.count;
866 blk1->index = nodehdr1.count + 1; /* make it invalid */
1da177e4
LT
867 }
868}
869
870/*
871 * Add a new entry to an intermediate node.
872 */
873STATIC void
f5ea1100
DC
874xfs_da3_node_add(
875 struct xfs_da_state *state,
876 struct xfs_da_state_blk *oldblk,
877 struct xfs_da_state_blk *newblk)
1da177e4 878{
f5ea1100
DC
879 struct xfs_da_intnode *node;
880 struct xfs_da3_icnode_hdr nodehdr;
881 struct xfs_da_node_entry *btree;
882 int tmp;
4bceb18f 883 struct xfs_inode *dp = state->args->dp;
1da177e4 884
5a5881cd
DC
885 trace_xfs_da_node_add(state->args);
886
1d9025e5 887 node = oldblk->bp->b_addr;
01ba43b8 888 dp->d_ops->node_hdr_from_disk(&nodehdr, node);
4bceb18f 889 btree = dp->d_ops->node_tree_p(node);
f5ea1100
DC
890
891 ASSERT(oldblk->index >= 0 && oldblk->index <= nodehdr.count);
1da177e4 892 ASSERT(newblk->blkno != 0);
f6c2d1fa 893 if (state->args->whichfork == XFS_DATA_FORK)
7dda6e86
DC
894 ASSERT(newblk->blkno >= state->args->geo->leafblk &&
895 newblk->blkno < state->args->geo->freeblk);
1da177e4
LT
896
897 /*
898 * We may need to make some room before we insert the new node.
899 */
900 tmp = 0;
f5ea1100
DC
901 if (oldblk->index < nodehdr.count) {
902 tmp = (nodehdr.count - oldblk->index) * (uint)sizeof(*btree);
903 memmove(&btree[oldblk->index + 1], &btree[oldblk->index], tmp);
1da177e4 904 }
f5ea1100
DC
905 btree[oldblk->index].hashval = cpu_to_be32(newblk->hashval);
906 btree[oldblk->index].before = cpu_to_be32(newblk->blkno);
1d9025e5 907 xfs_trans_log_buf(state->args->trans, oldblk->bp,
f5ea1100
DC
908 XFS_DA_LOGRANGE(node, &btree[oldblk->index],
909 tmp + sizeof(*btree)));
910
911 nodehdr.count += 1;
01ba43b8 912 dp->d_ops->node_hdr_to_disk(node, &nodehdr);
1d9025e5 913 xfs_trans_log_buf(state->args->trans, oldblk->bp,
1c9a5b2e 914 XFS_DA_LOGRANGE(node, &node->hdr, dp->d_ops->node_hdr_size));
1da177e4
LT
915
916 /*
917 * Copy the last hash value from the oldblk to propagate upwards.
918 */
f5ea1100 919 oldblk->hashval = be32_to_cpu(btree[nodehdr.count - 1].hashval);
1da177e4
LT
920}
921
922/*========================================================================
923 * Routines used for shrinking the Btree.
924 *========================================================================*/
925
926/*
927 * Deallocate an empty leaf node, remove it from its parent,
928 * possibly deallocating that block, etc...
929 */
930int
f5ea1100
DC
931xfs_da3_join(
932 struct xfs_da_state *state)
1da177e4 933{
f5ea1100
DC
934 struct xfs_da_state_blk *drop_blk;
935 struct xfs_da_state_blk *save_blk;
936 int action = 0;
937 int error;
1da177e4 938
5a5881cd
DC
939 trace_xfs_da_join(state->args);
940
1da177e4
LT
941 drop_blk = &state->path.blk[ state->path.active-1 ];
942 save_blk = &state->altpath.blk[ state->path.active-1 ];
943 ASSERT(state->path.blk[0].magic == XFS_DA_NODE_MAGIC);
944 ASSERT(drop_blk->magic == XFS_ATTR_LEAF_MAGIC ||
f6c2d1fa 945 drop_blk->magic == XFS_DIR2_LEAFN_MAGIC);
1da177e4
LT
946
947 /*
948 * Walk back up the tree joining/deallocating as necessary.
949 * When we stop dropping blocks, break out.
950 */
951 for ( ; state->path.active >= 2; drop_blk--, save_blk--,
952 state->path.active--) {
953 /*
954 * See if we can combine the block with a neighbor.
955 * (action == 0) => no options, just leave
956 * (action == 1) => coalesce, then unlink
957 * (action == 2) => block empty, unlink it
958 */
959 switch (drop_blk->magic) {
960 case XFS_ATTR_LEAF_MAGIC:
517c2220 961 error = xfs_attr3_leaf_toosmall(state, &action);
1da177e4 962 if (error)
d99831ff 963 return error;
1da177e4 964 if (action == 0)
d99831ff 965 return 0;
517c2220 966 xfs_attr3_leaf_unbalance(state, drop_blk, save_blk);
1da177e4 967 break;
1da177e4 968 case XFS_DIR2_LEAFN_MAGIC:
1da177e4
LT
969 error = xfs_dir2_leafn_toosmall(state, &action);
970 if (error)
971 return error;
972 if (action == 0)
973 return 0;
974 xfs_dir2_leafn_unbalance(state, drop_blk, save_blk);
975 break;
976 case XFS_DA_NODE_MAGIC:
977 /*
978 * Remove the offending node, fixup hashvals,
979 * check for a toosmall neighbor.
980 */
f5ea1100
DC
981 xfs_da3_node_remove(state, drop_blk);
982 xfs_da3_fixhashpath(state, &state->path);
983 error = xfs_da3_node_toosmall(state, &action);
1da177e4 984 if (error)
d99831ff 985 return error;
1da177e4
LT
986 if (action == 0)
987 return 0;
f5ea1100 988 xfs_da3_node_unbalance(state, drop_blk, save_blk);
1da177e4
LT
989 break;
990 }
f5ea1100
DC
991 xfs_da3_fixhashpath(state, &state->altpath);
992 error = xfs_da3_blk_unlink(state, drop_blk, save_blk);
1da177e4
LT
993 xfs_da_state_kill_altpath(state);
994 if (error)
d99831ff 995 return error;
1da177e4
LT
996 error = xfs_da_shrink_inode(state->args, drop_blk->blkno,
997 drop_blk->bp);
998 drop_blk->bp = NULL;
999 if (error)
d99831ff 1000 return error;
1da177e4
LT
1001 }
1002 /*
1003 * We joined all the way to the top. If it turns out that
1004 * we only have one entry in the root, make the child block
1005 * the new root.
1006 */
f5ea1100
DC
1007 xfs_da3_node_remove(state, drop_blk);
1008 xfs_da3_fixhashpath(state, &state->path);
1009 error = xfs_da3_root_join(state, &state->path.blk[0]);
d99831ff 1010 return error;
1da177e4
LT
1011}
1012
1c4f3329
AE
1013#ifdef DEBUG
1014static void
1015xfs_da_blkinfo_onlychild_validate(struct xfs_da_blkinfo *blkinfo, __u16 level)
1016{
1017 __be16 magic = blkinfo->magic;
1018
1019 if (level == 1) {
1020 ASSERT(magic == cpu_to_be16(XFS_DIR2_LEAFN_MAGIC) ||
24df33b4 1021 magic == cpu_to_be16(XFS_DIR3_LEAFN_MAGIC) ||
517c2220
DC
1022 magic == cpu_to_be16(XFS_ATTR_LEAF_MAGIC) ||
1023 magic == cpu_to_be16(XFS_ATTR3_LEAF_MAGIC));
f5ea1100
DC
1024 } else {
1025 ASSERT(magic == cpu_to_be16(XFS_DA_NODE_MAGIC) ||
1026 magic == cpu_to_be16(XFS_DA3_NODE_MAGIC));
1027 }
1c4f3329
AE
1028 ASSERT(!blkinfo->forw);
1029 ASSERT(!blkinfo->back);
1030}
1031#else /* !DEBUG */
1032#define xfs_da_blkinfo_onlychild_validate(blkinfo, level)
1033#endif /* !DEBUG */
1034
1da177e4
LT
1035/*
1036 * We have only one entry in the root. Copy the only remaining child of
1037 * the old root to block 0 as the new root node.
1038 */
1039STATIC int
f5ea1100
DC
1040xfs_da3_root_join(
1041 struct xfs_da_state *state,
1042 struct xfs_da_state_blk *root_blk)
1da177e4 1043{
f5ea1100
DC
1044 struct xfs_da_intnode *oldroot;
1045 struct xfs_da_args *args;
1046 xfs_dablk_t child;
1047 struct xfs_buf *bp;
1048 struct xfs_da3_icnode_hdr oldroothdr;
1049 struct xfs_da_node_entry *btree;
1050 int error;
01ba43b8 1051 struct xfs_inode *dp = state->args->dp;
1da177e4 1052
5a5881cd
DC
1053 trace_xfs_da_root_join(state->args);
1054
1da177e4 1055 ASSERT(root_blk->magic == XFS_DA_NODE_MAGIC);
f5ea1100
DC
1056
1057 args = state->args;
1d9025e5 1058 oldroot = root_blk->bp->b_addr;
01ba43b8 1059 dp->d_ops->node_hdr_from_disk(&oldroothdr, oldroot);
f5ea1100
DC
1060 ASSERT(oldroothdr.forw == 0);
1061 ASSERT(oldroothdr.back == 0);
1da177e4
LT
1062
1063 /*
1064 * If the root has more than one child, then don't do anything.
1065 */
f5ea1100
DC
1066 if (oldroothdr.count > 1)
1067 return 0;
1da177e4
LT
1068
1069 /*
1070 * Read in the (only) child block, then copy those bytes into
1071 * the root block's buffer and free the original child block.
1072 */
01ba43b8 1073 btree = dp->d_ops->node_tree_p(oldroot);
f5ea1100 1074 child = be32_to_cpu(btree[0].before);
1da177e4 1075 ASSERT(child != 0);
01ba43b8 1076 error = xfs_da3_node_read(args->trans, dp, child, -1, &bp,
d9392a4b 1077 args->whichfork);
1da177e4 1078 if (error)
f5ea1100
DC
1079 return error;
1080 xfs_da_blkinfo_onlychild_validate(bp->b_addr, oldroothdr.level);
1c4f3329 1081
612cfbfe
DC
1082 /*
1083 * This could be copying a leaf back into the root block in the case of
1084 * there only being a single leaf block left in the tree. Hence we have
1813dd64 1085 * to update the b_ops pointer as well to match the buffer type change
f5ea1100
DC
1086 * that could occur. For dir3 blocks we also need to update the block
1087 * number in the buffer header.
612cfbfe 1088 */
b2a21e7a 1089 memcpy(root_blk->bp->b_addr, bp->b_addr, args->geo->blksize);
1813dd64 1090 root_blk->bp->b_ops = bp->b_ops;
d75afeb3 1091 xfs_trans_buf_copy_type(root_blk->bp, bp);
f5ea1100
DC
1092 if (oldroothdr.magic == XFS_DA3_NODE_MAGIC) {
1093 struct xfs_da3_blkinfo *da3 = root_blk->bp->b_addr;
1094 da3->blkno = cpu_to_be64(root_blk->bp->b_bn);
1095 }
b2a21e7a
DC
1096 xfs_trans_log_buf(args->trans, root_blk->bp, 0,
1097 args->geo->blksize - 1);
1da177e4 1098 error = xfs_da_shrink_inode(args, child, bp);
d99831ff 1099 return error;
1da177e4
LT
1100}
1101
1102/*
1103 * Check a node block and its neighbors to see if the block should be
1104 * collapsed into one or the other neighbor. Always keep the block
1105 * with the smaller block number.
1106 * If the current block is over 50% full, don't try to join it, return 0.
1107 * If the block is empty, fill in the state structure and return 2.
1108 * If it can be collapsed, fill in the state structure and return 1.
1109 * If nothing can be done, return 0.
1110 */
1111STATIC int
f5ea1100
DC
1112xfs_da3_node_toosmall(
1113 struct xfs_da_state *state,
1114 int *action)
1da177e4 1115{
f5ea1100
DC
1116 struct xfs_da_intnode *node;
1117 struct xfs_da_state_blk *blk;
1118 struct xfs_da_blkinfo *info;
1119 xfs_dablk_t blkno;
1120 struct xfs_buf *bp;
1121 struct xfs_da3_icnode_hdr nodehdr;
1122 int count;
1123 int forward;
1124 int error;
1125 int retval;
1126 int i;
01ba43b8 1127 struct xfs_inode *dp = state->args->dp;
1da177e4 1128
ee73259b
DC
1129 trace_xfs_da_node_toosmall(state->args);
1130
1da177e4
LT
1131 /*
1132 * Check for the degenerate case of the block being over 50% full.
1133 * If so, it's not worth even looking to see if we might be able
1134 * to coalesce with a sibling.
1135 */
1136 blk = &state->path.blk[ state->path.active-1 ];
1d9025e5 1137 info = blk->bp->b_addr;
1da177e4 1138 node = (xfs_da_intnode_t *)info;
01ba43b8 1139 dp->d_ops->node_hdr_from_disk(&nodehdr, node);
b2a21e7a 1140 if (nodehdr.count > (state->args->geo->node_ents >> 1)) {
1da177e4 1141 *action = 0; /* blk over 50%, don't try to join */
d99831ff 1142 return 0; /* blk over 50%, don't try to join */
1da177e4
LT
1143 }
1144
1145 /*
1146 * Check for the degenerate case of the block being empty.
1147 * If the block is empty, we'll simply delete it, no need to
c41564b5 1148 * coalesce it with a sibling block. We choose (arbitrarily)
1da177e4
LT
1149 * to merge with the forward block unless it is NULL.
1150 */
f5ea1100 1151 if (nodehdr.count == 0) {
1da177e4
LT
1152 /*
1153 * Make altpath point to the block we want to keep and
1154 * path point to the block we want to drop (this one).
1155 */
89da0544 1156 forward = (info->forw != 0);
1da177e4 1157 memcpy(&state->altpath, &state->path, sizeof(state->path));
f5ea1100 1158 error = xfs_da3_path_shift(state, &state->altpath, forward,
1da177e4
LT
1159 0, &retval);
1160 if (error)
d99831ff 1161 return error;
1da177e4
LT
1162 if (retval) {
1163 *action = 0;
1164 } else {
1165 *action = 2;
1166 }
d99831ff 1167 return 0;
1da177e4
LT
1168 }
1169
1170 /*
1171 * Examine each sibling block to see if we can coalesce with
1172 * at least 25% free space to spare. We need to figure out
1173 * whether to merge with the forward or the backward block.
1174 * We prefer coalescing with the lower numbered sibling so as
1175 * to shrink a directory over time.
1176 */
b2a21e7a
DC
1177 count = state->args->geo->node_ents;
1178 count -= state->args->geo->node_ents >> 2;
f5ea1100
DC
1179 count -= nodehdr.count;
1180
1da177e4 1181 /* start with smaller blk num */
f5ea1100 1182 forward = nodehdr.forw < nodehdr.back;
1da177e4 1183 for (i = 0; i < 2; forward = !forward, i++) {
997def25 1184 struct xfs_da3_icnode_hdr thdr;
1da177e4 1185 if (forward)
f5ea1100 1186 blkno = nodehdr.forw;
1da177e4 1187 else
f5ea1100 1188 blkno = nodehdr.back;
1da177e4
LT
1189 if (blkno == 0)
1190 continue;
01ba43b8 1191 error = xfs_da3_node_read(state->args->trans, dp,
d9392a4b 1192 blkno, -1, &bp, state->args->whichfork);
1da177e4 1193 if (error)
d99831ff 1194 return error;
1da177e4 1195
1d9025e5 1196 node = bp->b_addr;
01ba43b8 1197 dp->d_ops->node_hdr_from_disk(&thdr, node);
1d9025e5 1198 xfs_trans_brelse(state->args->trans, bp);
f5ea1100 1199
997def25 1200 if (count - thdr.count >= 0)
1da177e4
LT
1201 break; /* fits with at least 25% to spare */
1202 }
1203 if (i >= 2) {
1204 *action = 0;
f5ea1100 1205 return 0;
1da177e4
LT
1206 }
1207
1208 /*
1209 * Make altpath point to the block we want to keep (the lower
1210 * numbered block) and path point to the block we want to drop.
1211 */
1212 memcpy(&state->altpath, &state->path, sizeof(state->path));
1213 if (blkno < blk->blkno) {
f5ea1100 1214 error = xfs_da3_path_shift(state, &state->altpath, forward,
1da177e4 1215 0, &retval);
1da177e4 1216 } else {
f5ea1100 1217 error = xfs_da3_path_shift(state, &state->path, forward,
1da177e4 1218 0, &retval);
f5ea1100
DC
1219 }
1220 if (error)
1221 return error;
1222 if (retval) {
1223 *action = 0;
1224 return 0;
1da177e4
LT
1225 }
1226 *action = 1;
f5ea1100
DC
1227 return 0;
1228}
1229
1230/*
1231 * Pick up the last hashvalue from an intermediate node.
1232 */
1233STATIC uint
1234xfs_da3_node_lasthash(
4bceb18f 1235 struct xfs_inode *dp,
f5ea1100
DC
1236 struct xfs_buf *bp,
1237 int *count)
1238{
1239 struct xfs_da_intnode *node;
1240 struct xfs_da_node_entry *btree;
1241 struct xfs_da3_icnode_hdr nodehdr;
1242
1243 node = bp->b_addr;
01ba43b8 1244 dp->d_ops->node_hdr_from_disk(&nodehdr, node);
f5ea1100
DC
1245 if (count)
1246 *count = nodehdr.count;
1247 if (!nodehdr.count)
1248 return 0;
4bceb18f 1249 btree = dp->d_ops->node_tree_p(node);
f5ea1100 1250 return be32_to_cpu(btree[nodehdr.count - 1].hashval);
1da177e4
LT
1251}
1252
1253/*
1254 * Walk back up the tree adjusting hash values as necessary,
1255 * when we stop making changes, return.
1256 */
1257void
f5ea1100
DC
1258xfs_da3_fixhashpath(
1259 struct xfs_da_state *state,
1260 struct xfs_da_state_path *path)
1da177e4 1261{
f5ea1100
DC
1262 struct xfs_da_state_blk *blk;
1263 struct xfs_da_intnode *node;
1264 struct xfs_da_node_entry *btree;
1265 xfs_dahash_t lasthash=0;
1266 int level;
1267 int count;
4bceb18f 1268 struct xfs_inode *dp = state->args->dp;
1da177e4 1269
ee73259b
DC
1270 trace_xfs_da_fixhashpath(state->args);
1271
1da177e4
LT
1272 level = path->active-1;
1273 blk = &path->blk[ level ];
1274 switch (blk->magic) {
1da177e4
LT
1275 case XFS_ATTR_LEAF_MAGIC:
1276 lasthash = xfs_attr_leaf_lasthash(blk->bp, &count);
1277 if (count == 0)
1278 return;
1279 break;
1da177e4 1280 case XFS_DIR2_LEAFN_MAGIC:
4bceb18f 1281 lasthash = xfs_dir2_leafn_lasthash(dp, blk->bp, &count);
1da177e4
LT
1282 if (count == 0)
1283 return;
1284 break;
1285 case XFS_DA_NODE_MAGIC:
4bceb18f 1286 lasthash = xfs_da3_node_lasthash(dp, blk->bp, &count);
1da177e4
LT
1287 if (count == 0)
1288 return;
1289 break;
1290 }
1291 for (blk--, level--; level >= 0; blk--, level--) {
f5ea1100
DC
1292 struct xfs_da3_icnode_hdr nodehdr;
1293
1d9025e5 1294 node = blk->bp->b_addr;
01ba43b8 1295 dp->d_ops->node_hdr_from_disk(&nodehdr, node);
4bceb18f 1296 btree = dp->d_ops->node_tree_p(node);
c88547a8 1297 if (be32_to_cpu(btree[blk->index].hashval) == lasthash)
1da177e4
LT
1298 break;
1299 blk->hashval = lasthash;
f5ea1100 1300 btree[blk->index].hashval = cpu_to_be32(lasthash);
1d9025e5 1301 xfs_trans_log_buf(state->args->trans, blk->bp,
f5ea1100
DC
1302 XFS_DA_LOGRANGE(node, &btree[blk->index],
1303 sizeof(*btree)));
1da177e4 1304
f5ea1100 1305 lasthash = be32_to_cpu(btree[nodehdr.count - 1].hashval);
1da177e4
LT
1306 }
1307}
1308
1309/*
1310 * Remove an entry from an intermediate node.
1311 */
1312STATIC void
f5ea1100
DC
1313xfs_da3_node_remove(
1314 struct xfs_da_state *state,
1315 struct xfs_da_state_blk *drop_blk)
1da177e4 1316{
f5ea1100
DC
1317 struct xfs_da_intnode *node;
1318 struct xfs_da3_icnode_hdr nodehdr;
1319 struct xfs_da_node_entry *btree;
1320 int index;
1321 int tmp;
4bceb18f 1322 struct xfs_inode *dp = state->args->dp;
1da177e4 1323
5a5881cd
DC
1324 trace_xfs_da_node_remove(state->args);
1325
1d9025e5 1326 node = drop_blk->bp->b_addr;
01ba43b8 1327 dp->d_ops->node_hdr_from_disk(&nodehdr, node);
f5ea1100 1328 ASSERT(drop_blk->index < nodehdr.count);
1da177e4
LT
1329 ASSERT(drop_blk->index >= 0);
1330
1331 /*
1332 * Copy over the offending entry, or just zero it out.
1333 */
f5ea1100 1334 index = drop_blk->index;
4bceb18f 1335 btree = dp->d_ops->node_tree_p(node);
f5ea1100
DC
1336 if (index < nodehdr.count - 1) {
1337 tmp = nodehdr.count - index - 1;
1da177e4 1338 tmp *= (uint)sizeof(xfs_da_node_entry_t);
f5ea1100 1339 memmove(&btree[index], &btree[index + 1], tmp);
1d9025e5 1340 xfs_trans_log_buf(state->args->trans, drop_blk->bp,
f5ea1100
DC
1341 XFS_DA_LOGRANGE(node, &btree[index], tmp));
1342 index = nodehdr.count - 1;
1da177e4 1343 }
f5ea1100 1344 memset(&btree[index], 0, sizeof(xfs_da_node_entry_t));
1d9025e5 1345 xfs_trans_log_buf(state->args->trans, drop_blk->bp,
f5ea1100
DC
1346 XFS_DA_LOGRANGE(node, &btree[index], sizeof(btree[index])));
1347 nodehdr.count -= 1;
01ba43b8 1348 dp->d_ops->node_hdr_to_disk(node, &nodehdr);
1d9025e5 1349 xfs_trans_log_buf(state->args->trans, drop_blk->bp,
1c9a5b2e 1350 XFS_DA_LOGRANGE(node, &node->hdr, dp->d_ops->node_hdr_size));
1da177e4
LT
1351
1352 /*
1353 * Copy the last hash value from the block to propagate upwards.
1354 */
f5ea1100 1355 drop_blk->hashval = be32_to_cpu(btree[index - 1].hashval);
1da177e4
LT
1356}
1357
1358/*
f5ea1100 1359 * Unbalance the elements between two intermediate nodes,
1da177e4
LT
1360 * move all Btree elements from one node into another.
1361 */
1362STATIC void
f5ea1100
DC
1363xfs_da3_node_unbalance(
1364 struct xfs_da_state *state,
1365 struct xfs_da_state_blk *drop_blk,
1366 struct xfs_da_state_blk *save_blk)
1da177e4 1367{
f5ea1100
DC
1368 struct xfs_da_intnode *drop_node;
1369 struct xfs_da_intnode *save_node;
1370 struct xfs_da_node_entry *drop_btree;
1371 struct xfs_da_node_entry *save_btree;
1372 struct xfs_da3_icnode_hdr drop_hdr;
1373 struct xfs_da3_icnode_hdr save_hdr;
1374 struct xfs_trans *tp;
1375 int sindex;
1376 int tmp;
4bceb18f 1377 struct xfs_inode *dp = state->args->dp;
1da177e4 1378
5a5881cd
DC
1379 trace_xfs_da_node_unbalance(state->args);
1380
1d9025e5
DC
1381 drop_node = drop_blk->bp->b_addr;
1382 save_node = save_blk->bp->b_addr;
01ba43b8
DC
1383 dp->d_ops->node_hdr_from_disk(&drop_hdr, drop_node);
1384 dp->d_ops->node_hdr_from_disk(&save_hdr, save_node);
4bceb18f
DC
1385 drop_btree = dp->d_ops->node_tree_p(drop_node);
1386 save_btree = dp->d_ops->node_tree_p(save_node);
1da177e4
LT
1387 tp = state->args->trans;
1388
1389 /*
1390 * If the dying block has lower hashvals, then move all the
1391 * elements in the remaining block up to make a hole.
1392 */
f5ea1100
DC
1393 if ((be32_to_cpu(drop_btree[0].hashval) <
1394 be32_to_cpu(save_btree[0].hashval)) ||
1395 (be32_to_cpu(drop_btree[drop_hdr.count - 1].hashval) <
1396 be32_to_cpu(save_btree[save_hdr.count - 1].hashval))) {
1397 /* XXX: check this - is memmove dst correct? */
1398 tmp = save_hdr.count * sizeof(xfs_da_node_entry_t);
1399 memmove(&save_btree[drop_hdr.count], &save_btree[0], tmp);
1400
1401 sindex = 0;
1d9025e5 1402 xfs_trans_log_buf(tp, save_blk->bp,
f5ea1100
DC
1403 XFS_DA_LOGRANGE(save_node, &save_btree[0],
1404 (save_hdr.count + drop_hdr.count) *
1405 sizeof(xfs_da_node_entry_t)));
1da177e4 1406 } else {
f5ea1100 1407 sindex = save_hdr.count;
1d9025e5 1408 xfs_trans_log_buf(tp, save_blk->bp,
f5ea1100
DC
1409 XFS_DA_LOGRANGE(save_node, &save_btree[sindex],
1410 drop_hdr.count * sizeof(xfs_da_node_entry_t)));
1da177e4
LT
1411 }
1412
1413 /*
1414 * Move all the B-tree elements from drop_blk to save_blk.
1415 */
f5ea1100
DC
1416 tmp = drop_hdr.count * (uint)sizeof(xfs_da_node_entry_t);
1417 memcpy(&save_btree[sindex], &drop_btree[0], tmp);
1418 save_hdr.count += drop_hdr.count;
1da177e4 1419
01ba43b8 1420 dp->d_ops->node_hdr_to_disk(save_node, &save_hdr);
1d9025e5 1421 xfs_trans_log_buf(tp, save_blk->bp,
1da177e4 1422 XFS_DA_LOGRANGE(save_node, &save_node->hdr,
1c9a5b2e 1423 dp->d_ops->node_hdr_size));
1da177e4
LT
1424
1425 /*
1426 * Save the last hashval in the remaining block for upward propagation.
1427 */
f5ea1100 1428 save_blk->hashval = be32_to_cpu(save_btree[save_hdr.count - 1].hashval);
1da177e4
LT
1429}
1430
1431/*========================================================================
1432 * Routines used for finding things in the Btree.
1433 *========================================================================*/
1434
1435/*
1436 * Walk down the Btree looking for a particular filename, filling
1437 * in the state structure as we go.
1438 *
1439 * We will set the state structure to point to each of the elements
1440 * in each of the nodes where either the hashval is or should be.
1441 *
1442 * We support duplicate hashval's so for each entry in the current
1443 * node that could contain the desired hashval, descend. This is a
1444 * pruned depth-first tree search.
1445 */
1446int /* error */
f5ea1100
DC
1447xfs_da3_node_lookup_int(
1448 struct xfs_da_state *state,
1449 int *result)
1da177e4 1450{
f5ea1100
DC
1451 struct xfs_da_state_blk *blk;
1452 struct xfs_da_blkinfo *curr;
1453 struct xfs_da_intnode *node;
1454 struct xfs_da_node_entry *btree;
1455 struct xfs_da3_icnode_hdr nodehdr;
1456 struct xfs_da_args *args;
1457 xfs_dablk_t blkno;
1458 xfs_dahash_t hashval;
1459 xfs_dahash_t btreehashval;
1460 int probe;
1461 int span;
1462 int max;
1463 int error;
1464 int retval;
4bceb18f 1465 struct xfs_inode *dp = state->args->dp;
1da177e4
LT
1466
1467 args = state->args;
1468
1469 /*
1470 * Descend thru the B-tree searching each level for the right
1471 * node to use, until the right hashval is found.
1472 */
7dda6e86 1473 blkno = (args->whichfork == XFS_DATA_FORK)? args->geo->leafblk : 0;
1da177e4
LT
1474 for (blk = &state->path.blk[0], state->path.active = 1;
1475 state->path.active <= XFS_DA_NODE_MAXDEPTH;
1476 blk++, state->path.active++) {
1477 /*
1478 * Read the next node down in the tree.
1479 */
1480 blk->blkno = blkno;
f5ea1100 1481 error = xfs_da3_node_read(args->trans, args->dp, blkno,
d9392a4b 1482 -1, &blk->bp, args->whichfork);
1da177e4
LT
1483 if (error) {
1484 blk->blkno = 0;
1485 state->path.active--;
d99831ff 1486 return error;
1da177e4 1487 }
1d9025e5 1488 curr = blk->bp->b_addr;
d432c80e 1489 blk->magic = be16_to_cpu(curr->magic);
f5ea1100 1490
517c2220
DC
1491 if (blk->magic == XFS_ATTR_LEAF_MAGIC ||
1492 blk->magic == XFS_ATTR3_LEAF_MAGIC) {
1493 blk->magic = XFS_ATTR_LEAF_MAGIC;
f5ea1100
DC
1494 blk->hashval = xfs_attr_leaf_lasthash(blk->bp, NULL);
1495 break;
1496 }
1497
1498 if (blk->magic == XFS_DIR2_LEAFN_MAGIC ||
1499 blk->magic == XFS_DIR3_LEAFN_MAGIC) {
1500 blk->magic = XFS_DIR2_LEAFN_MAGIC;
4141956a
DC
1501 blk->hashval = xfs_dir2_leafn_lasthash(args->dp,
1502 blk->bp, NULL);
f5ea1100
DC
1503 break;
1504 }
1505
1506 blk->magic = XFS_DA_NODE_MAGIC;
1507
1da177e4
LT
1508
1509 /*
1510 * Search an intermediate node for a match.
1511 */
f5ea1100 1512 node = blk->bp->b_addr;
01ba43b8 1513 dp->d_ops->node_hdr_from_disk(&nodehdr, node);
4bceb18f 1514 btree = dp->d_ops->node_tree_p(node);
1da177e4 1515
f5ea1100
DC
1516 max = nodehdr.count;
1517 blk->hashval = be32_to_cpu(btree[max - 1].hashval);
1da177e4 1518
f5ea1100
DC
1519 /*
1520 * Binary search. (note: small blocks will skip loop)
1521 */
1522 probe = span = max / 2;
1523 hashval = args->hashval;
1524 while (span > 4) {
1525 span /= 2;
1526 btreehashval = be32_to_cpu(btree[probe].hashval);
1527 if (btreehashval < hashval)
1528 probe += span;
1529 else if (btreehashval > hashval)
1530 probe -= span;
1531 else
1532 break;
1533 }
1534 ASSERT((probe >= 0) && (probe < max));
1535 ASSERT((span <= 4) ||
1536 (be32_to_cpu(btree[probe].hashval) == hashval));
1da177e4 1537
f5ea1100
DC
1538 /*
1539 * Since we may have duplicate hashval's, find the first
1540 * matching hashval in the node.
1541 */
1542 while (probe > 0 &&
1543 be32_to_cpu(btree[probe].hashval) >= hashval) {
1544 probe--;
1545 }
1546 while (probe < max &&
1547 be32_to_cpu(btree[probe].hashval) < hashval) {
1548 probe++;
1549 }
1550
1551 /*
1552 * Pick the right block to descend on.
1553 */
1554 if (probe == max) {
1555 blk->index = max - 1;
1556 blkno = be32_to_cpu(btree[max - 1].before);
1557 } else {
1558 blk->index = probe;
1559 blkno = be32_to_cpu(btree[probe].before);
1da177e4
LT
1560 }
1561 }
1562
1563 /*
1564 * A leaf block that ends in the hashval that we are interested in
1565 * (final hashval == search hashval) means that the next block may
1566 * contain more entries with the same hashval, shift upward to the
1567 * next leaf and keep searching.
1568 */
1569 for (;;) {
f6c2d1fa 1570 if (blk->magic == XFS_DIR2_LEAFN_MAGIC) {
1da177e4
LT
1571 retval = xfs_dir2_leafn_lookup_int(blk->bp, args,
1572 &blk->index, state);
d432c80e 1573 } else if (blk->magic == XFS_ATTR_LEAF_MAGIC) {
517c2220 1574 retval = xfs_attr3_leaf_lookup_int(blk->bp, args);
1da177e4
LT
1575 blk->index = args->index;
1576 args->blkno = blk->blkno;
d432c80e
NS
1577 } else {
1578 ASSERT(0);
2451337d 1579 return -EFSCORRUPTED;
1da177e4 1580 }
2451337d 1581 if (((retval == -ENOENT) || (retval == -ENOATTR)) &&
1da177e4 1582 (blk->hashval == args->hashval)) {
f5ea1100 1583 error = xfs_da3_path_shift(state, &state->path, 1, 1,
1da177e4
LT
1584 &retval);
1585 if (error)
d99831ff 1586 return error;
1da177e4
LT
1587 if (retval == 0) {
1588 continue;
d432c80e 1589 } else if (blk->magic == XFS_ATTR_LEAF_MAGIC) {
1da177e4 1590 /* path_shift() gives ENOENT */
2451337d 1591 retval = -ENOATTR;
1da177e4 1592 }
1da177e4
LT
1593 }
1594 break;
1595 }
1596 *result = retval;
d99831ff 1597 return 0;
1da177e4
LT
1598}
1599
1600/*========================================================================
1601 * Utility routines.
1602 *========================================================================*/
1603
f5ea1100
DC
1604/*
1605 * Compare two intermediate nodes for "order".
1606 */
1607STATIC int
1608xfs_da3_node_order(
4bceb18f 1609 struct xfs_inode *dp,
f5ea1100
DC
1610 struct xfs_buf *node1_bp,
1611 struct xfs_buf *node2_bp)
1612{
1613 struct xfs_da_intnode *node1;
1614 struct xfs_da_intnode *node2;
1615 struct xfs_da_node_entry *btree1;
1616 struct xfs_da_node_entry *btree2;
1617 struct xfs_da3_icnode_hdr node1hdr;
1618 struct xfs_da3_icnode_hdr node2hdr;
1619
1620 node1 = node1_bp->b_addr;
1621 node2 = node2_bp->b_addr;
01ba43b8
DC
1622 dp->d_ops->node_hdr_from_disk(&node1hdr, node1);
1623 dp->d_ops->node_hdr_from_disk(&node2hdr, node2);
4bceb18f
DC
1624 btree1 = dp->d_ops->node_tree_p(node1);
1625 btree2 = dp->d_ops->node_tree_p(node2);
f5ea1100
DC
1626
1627 if (node1hdr.count > 0 && node2hdr.count > 0 &&
1628 ((be32_to_cpu(btree2[0].hashval) < be32_to_cpu(btree1[0].hashval)) ||
1629 (be32_to_cpu(btree2[node2hdr.count - 1].hashval) <
1630 be32_to_cpu(btree1[node1hdr.count - 1].hashval)))) {
1631 return 1;
1632 }
1633 return 0;
1634}
1635
1da177e4
LT
1636/*
1637 * Link a new block into a doubly linked list of blocks (of whatever type).
1638 */
1639int /* error */
f5ea1100
DC
1640xfs_da3_blk_link(
1641 struct xfs_da_state *state,
1642 struct xfs_da_state_blk *old_blk,
1643 struct xfs_da_state_blk *new_blk)
1da177e4 1644{
f5ea1100
DC
1645 struct xfs_da_blkinfo *old_info;
1646 struct xfs_da_blkinfo *new_info;
1647 struct xfs_da_blkinfo *tmp_info;
1648 struct xfs_da_args *args;
1649 struct xfs_buf *bp;
1650 int before = 0;
1651 int error;
4bceb18f 1652 struct xfs_inode *dp = state->args->dp;
1da177e4
LT
1653
1654 /*
1655 * Set up environment.
1656 */
1657 args = state->args;
1658 ASSERT(args != NULL);
1d9025e5
DC
1659 old_info = old_blk->bp->b_addr;
1660 new_info = new_blk->bp->b_addr;
1da177e4 1661 ASSERT(old_blk->magic == XFS_DA_NODE_MAGIC ||
f6c2d1fa 1662 old_blk->magic == XFS_DIR2_LEAFN_MAGIC ||
1da177e4 1663 old_blk->magic == XFS_ATTR_LEAF_MAGIC);
1da177e4
LT
1664
1665 switch (old_blk->magic) {
1da177e4
LT
1666 case XFS_ATTR_LEAF_MAGIC:
1667 before = xfs_attr_leaf_order(old_blk->bp, new_blk->bp);
1668 break;
1da177e4 1669 case XFS_DIR2_LEAFN_MAGIC:
4bceb18f 1670 before = xfs_dir2_leafn_order(dp, old_blk->bp, new_blk->bp);
1da177e4
LT
1671 break;
1672 case XFS_DA_NODE_MAGIC:
4bceb18f 1673 before = xfs_da3_node_order(dp, old_blk->bp, new_blk->bp);
1da177e4
LT
1674 break;
1675 }
1676
1677 /*
1678 * Link blocks in appropriate order.
1679 */
1680 if (before) {
1681 /*
1682 * Link new block in before existing block.
1683 */
5a5881cd 1684 trace_xfs_da_link_before(args);
89da0544
NS
1685 new_info->forw = cpu_to_be32(old_blk->blkno);
1686 new_info->back = old_info->back;
1687 if (old_info->back) {
4bceb18f 1688 error = xfs_da3_node_read(args->trans, dp,
89da0544 1689 be32_to_cpu(old_info->back),
d9392a4b 1690 -1, &bp, args->whichfork);
1da177e4 1691 if (error)
d99831ff 1692 return error;
1da177e4 1693 ASSERT(bp != NULL);
1d9025e5 1694 tmp_info = bp->b_addr;
f5ea1100 1695 ASSERT(tmp_info->magic == old_info->magic);
89da0544
NS
1696 ASSERT(be32_to_cpu(tmp_info->forw) == old_blk->blkno);
1697 tmp_info->forw = cpu_to_be32(new_blk->blkno);
1d9025e5 1698 xfs_trans_log_buf(args->trans, bp, 0, sizeof(*tmp_info)-1);
1da177e4 1699 }
89da0544 1700 old_info->back = cpu_to_be32(new_blk->blkno);
1da177e4
LT
1701 } else {
1702 /*
1703 * Link new block in after existing block.
1704 */
5a5881cd 1705 trace_xfs_da_link_after(args);
89da0544
NS
1706 new_info->forw = old_info->forw;
1707 new_info->back = cpu_to_be32(old_blk->blkno);
1708 if (old_info->forw) {
4bceb18f 1709 error = xfs_da3_node_read(args->trans, dp,
89da0544 1710 be32_to_cpu(old_info->forw),
d9392a4b 1711 -1, &bp, args->whichfork);
1da177e4 1712 if (error)
d99831ff 1713 return error;
1da177e4 1714 ASSERT(bp != NULL);
1d9025e5 1715 tmp_info = bp->b_addr;
89da0544
NS
1716 ASSERT(tmp_info->magic == old_info->magic);
1717 ASSERT(be32_to_cpu(tmp_info->back) == old_blk->blkno);
1718 tmp_info->back = cpu_to_be32(new_blk->blkno);
1d9025e5 1719 xfs_trans_log_buf(args->trans, bp, 0, sizeof(*tmp_info)-1);
1da177e4 1720 }
89da0544 1721 old_info->forw = cpu_to_be32(new_blk->blkno);
1da177e4
LT
1722 }
1723
1d9025e5
DC
1724 xfs_trans_log_buf(args->trans, old_blk->bp, 0, sizeof(*tmp_info) - 1);
1725 xfs_trans_log_buf(args->trans, new_blk->bp, 0, sizeof(*tmp_info) - 1);
d99831ff 1726 return 0;
1da177e4
LT
1727}
1728
1da177e4
LT
1729/*
1730 * Unlink a block from a doubly linked list of blocks.
1731 */
ba0f32d4 1732STATIC int /* error */
f5ea1100
DC
1733xfs_da3_blk_unlink(
1734 struct xfs_da_state *state,
1735 struct xfs_da_state_blk *drop_blk,
1736 struct xfs_da_state_blk *save_blk)
1da177e4 1737{
f5ea1100
DC
1738 struct xfs_da_blkinfo *drop_info;
1739 struct xfs_da_blkinfo *save_info;
1740 struct xfs_da_blkinfo *tmp_info;
1741 struct xfs_da_args *args;
1742 struct xfs_buf *bp;
1743 int error;
1da177e4
LT
1744
1745 /*
1746 * Set up environment.
1747 */
1748 args = state->args;
1749 ASSERT(args != NULL);
1d9025e5
DC
1750 save_info = save_blk->bp->b_addr;
1751 drop_info = drop_blk->bp->b_addr;
1da177e4 1752 ASSERT(save_blk->magic == XFS_DA_NODE_MAGIC ||
f6c2d1fa 1753 save_blk->magic == XFS_DIR2_LEAFN_MAGIC ||
1da177e4 1754 save_blk->magic == XFS_ATTR_LEAF_MAGIC);
1da177e4 1755 ASSERT(save_blk->magic == drop_blk->magic);
89da0544
NS
1756 ASSERT((be32_to_cpu(save_info->forw) == drop_blk->blkno) ||
1757 (be32_to_cpu(save_info->back) == drop_blk->blkno));
1758 ASSERT((be32_to_cpu(drop_info->forw) == save_blk->blkno) ||
1759 (be32_to_cpu(drop_info->back) == save_blk->blkno));
1da177e4
LT
1760
1761 /*
1762 * Unlink the leaf block from the doubly linked chain of leaves.
1763 */
89da0544 1764 if (be32_to_cpu(save_info->back) == drop_blk->blkno) {
5a5881cd 1765 trace_xfs_da_unlink_back(args);
89da0544
NS
1766 save_info->back = drop_info->back;
1767 if (drop_info->back) {
f5ea1100 1768 error = xfs_da3_node_read(args->trans, args->dp,
89da0544 1769 be32_to_cpu(drop_info->back),
d9392a4b 1770 -1, &bp, args->whichfork);
1da177e4 1771 if (error)
d99831ff 1772 return error;
1da177e4 1773 ASSERT(bp != NULL);
1d9025e5 1774 tmp_info = bp->b_addr;
89da0544
NS
1775 ASSERT(tmp_info->magic == save_info->magic);
1776 ASSERT(be32_to_cpu(tmp_info->forw) == drop_blk->blkno);
1777 tmp_info->forw = cpu_to_be32(save_blk->blkno);
1d9025e5 1778 xfs_trans_log_buf(args->trans, bp, 0,
1da177e4 1779 sizeof(*tmp_info) - 1);
1da177e4
LT
1780 }
1781 } else {
5a5881cd 1782 trace_xfs_da_unlink_forward(args);
89da0544
NS
1783 save_info->forw = drop_info->forw;
1784 if (drop_info->forw) {
f5ea1100 1785 error = xfs_da3_node_read(args->trans, args->dp,
89da0544 1786 be32_to_cpu(drop_info->forw),
d9392a4b 1787 -1, &bp, args->whichfork);
1da177e4 1788 if (error)
d99831ff 1789 return error;
1da177e4 1790 ASSERT(bp != NULL);
1d9025e5 1791 tmp_info = bp->b_addr;
89da0544
NS
1792 ASSERT(tmp_info->magic == save_info->magic);
1793 ASSERT(be32_to_cpu(tmp_info->back) == drop_blk->blkno);
1794 tmp_info->back = cpu_to_be32(save_blk->blkno);
1d9025e5 1795 xfs_trans_log_buf(args->trans, bp, 0,
1da177e4 1796 sizeof(*tmp_info) - 1);
1da177e4
LT
1797 }
1798 }
1799
1d9025e5 1800 xfs_trans_log_buf(args->trans, save_blk->bp, 0, sizeof(*save_info) - 1);
d99831ff 1801 return 0;
1da177e4
LT
1802}
1803
1804/*
1805 * Move a path "forward" or "!forward" one block at the current level.
1806 *
1807 * This routine will adjust a "path" to point to the next block
1808 * "forward" (higher hashvalues) or "!forward" (lower hashvals) in the
1809 * Btree, including updating pointers to the intermediate nodes between
1810 * the new bottom and the root.
1811 */
1812int /* error */
f5ea1100
DC
1813xfs_da3_path_shift(
1814 struct xfs_da_state *state,
1815 struct xfs_da_state_path *path,
1816 int forward,
1817 int release,
1818 int *result)
1da177e4 1819{
f5ea1100
DC
1820 struct xfs_da_state_blk *blk;
1821 struct xfs_da_blkinfo *info;
1822 struct xfs_da_intnode *node;
1823 struct xfs_da_args *args;
1824 struct xfs_da_node_entry *btree;
1825 struct xfs_da3_icnode_hdr nodehdr;
7df1c170 1826 struct xfs_buf *bp;
f5ea1100
DC
1827 xfs_dablk_t blkno = 0;
1828 int level;
1829 int error;
4bceb18f 1830 struct xfs_inode *dp = state->args->dp;
1da177e4 1831
ee73259b
DC
1832 trace_xfs_da_path_shift(state->args);
1833
1da177e4
LT
1834 /*
1835 * Roll up the Btree looking for the first block where our
1836 * current index is not at the edge of the block. Note that
1837 * we skip the bottom layer because we want the sibling block.
1838 */
1839 args = state->args;
1840 ASSERT(args != NULL);
1841 ASSERT(path != NULL);
1842 ASSERT((path->active > 0) && (path->active < XFS_DA_NODE_MAXDEPTH));
1843 level = (path->active-1) - 1; /* skip bottom layer in path */
1844 for (blk = &path->blk[level]; level >= 0; blk--, level--) {
1d9025e5 1845 node = blk->bp->b_addr;
01ba43b8 1846 dp->d_ops->node_hdr_from_disk(&nodehdr, node);
4bceb18f 1847 btree = dp->d_ops->node_tree_p(node);
f5ea1100
DC
1848
1849 if (forward && (blk->index < nodehdr.count - 1)) {
1da177e4 1850 blk->index++;
f5ea1100 1851 blkno = be32_to_cpu(btree[blk->index].before);
1da177e4
LT
1852 break;
1853 } else if (!forward && (blk->index > 0)) {
1854 blk->index--;
f5ea1100 1855 blkno = be32_to_cpu(btree[blk->index].before);
1da177e4
LT
1856 break;
1857 }
1858 }
1859 if (level < 0) {
2451337d 1860 *result = -ENOENT; /* we're out of our tree */
6a178100 1861 ASSERT(args->op_flags & XFS_DA_OP_OKNOENT);
d99831ff 1862 return 0;
1da177e4
LT
1863 }
1864
1865 /*
1866 * Roll down the edge of the subtree until we reach the
1867 * same depth we were at originally.
1868 */
1869 for (blk++, level++; level < path->active; blk++, level++) {
1870 /*
7df1c170 1871 * Read the next child block into a local buffer.
1da177e4 1872 */
7df1c170
BF
1873 error = xfs_da3_node_read(args->trans, dp, blkno, -1, &bp,
1874 args->whichfork);
1875 if (error)
1876 return error;
1da177e4
LT
1877
1878 /*
7df1c170
BF
1879 * Release the old block (if it's dirty, the trans doesn't
1880 * actually let go) and swap the local buffer into the path
1881 * structure. This ensures failure of the above read doesn't set
1882 * a NULL buffer in an active slot in the path.
1da177e4 1883 */
7df1c170
BF
1884 if (release)
1885 xfs_trans_brelse(args->trans, blk->bp);
1da177e4 1886 blk->blkno = blkno;
7df1c170
BF
1887 blk->bp = bp;
1888
1d9025e5 1889 info = blk->bp->b_addr;
69ef921b 1890 ASSERT(info->magic == cpu_to_be16(XFS_DA_NODE_MAGIC) ||
f5ea1100 1891 info->magic == cpu_to_be16(XFS_DA3_NODE_MAGIC) ||
69ef921b 1892 info->magic == cpu_to_be16(XFS_DIR2_LEAFN_MAGIC) ||
24df33b4 1893 info->magic == cpu_to_be16(XFS_DIR3_LEAFN_MAGIC) ||
517c2220
DC
1894 info->magic == cpu_to_be16(XFS_ATTR_LEAF_MAGIC) ||
1895 info->magic == cpu_to_be16(XFS_ATTR3_LEAF_MAGIC));
f5ea1100
DC
1896
1897
1898 /*
1899 * Note: we flatten the magic number to a single type so we
1900 * don't have to compare against crc/non-crc types elsewhere.
1901 */
1902 switch (be16_to_cpu(info->magic)) {
1903 case XFS_DA_NODE_MAGIC:
1904 case XFS_DA3_NODE_MAGIC:
1905 blk->magic = XFS_DA_NODE_MAGIC;
1da177e4 1906 node = (xfs_da_intnode_t *)info;
01ba43b8 1907 dp->d_ops->node_hdr_from_disk(&nodehdr, node);
4bceb18f 1908 btree = dp->d_ops->node_tree_p(node);
f5ea1100 1909 blk->hashval = be32_to_cpu(btree[nodehdr.count - 1].hashval);
1da177e4
LT
1910 if (forward)
1911 blk->index = 0;
1912 else
f5ea1100
DC
1913 blk->index = nodehdr.count - 1;
1914 blkno = be32_to_cpu(btree[blk->index].before);
1915 break;
1916 case XFS_ATTR_LEAF_MAGIC:
517c2220 1917 case XFS_ATTR3_LEAF_MAGIC:
f5ea1100 1918 blk->magic = XFS_ATTR_LEAF_MAGIC;
1da177e4
LT
1919 ASSERT(level == path->active-1);
1920 blk->index = 0;
4141956a 1921 blk->hashval = xfs_attr_leaf_lasthash(blk->bp, NULL);
f5ea1100
DC
1922 break;
1923 case XFS_DIR2_LEAFN_MAGIC:
1924 case XFS_DIR3_LEAFN_MAGIC:
1925 blk->magic = XFS_DIR2_LEAFN_MAGIC;
1926 ASSERT(level == path->active-1);
1927 blk->index = 0;
4141956a
DC
1928 blk->hashval = xfs_dir2_leafn_lasthash(args->dp,
1929 blk->bp, NULL);
f5ea1100
DC
1930 break;
1931 default:
1932 ASSERT(0);
1933 break;
1da177e4
LT
1934 }
1935 }
1936 *result = 0;
f5ea1100 1937 return 0;
1da177e4
LT
1938}
1939
1940
1941/*========================================================================
1942 * Utility routines.
1943 *========================================================================*/
1944
1945/*
1946 * Implement a simple hash on a character string.
1947 * Rotate the hash value by 7 bits, then XOR each character in.
1948 * This is implemented with some source-level loop unrolling.
1949 */
1950xfs_dahash_t
a5687787 1951xfs_da_hashname(const __uint8_t *name, int namelen)
1da177e4
LT
1952{
1953 xfs_dahash_t hash;
1954
1da177e4
LT
1955 /*
1956 * Do four characters at a time as long as we can.
1957 */
1958 for (hash = 0; namelen >= 4; namelen -= 4, name += 4)
1959 hash = (name[0] << 21) ^ (name[1] << 14) ^ (name[2] << 7) ^
1960 (name[3] << 0) ^ rol32(hash, 7 * 4);
1961
1962 /*
1963 * Now do the rest of the characters.
1964 */
1965 switch (namelen) {
1966 case 3:
1967 return (name[0] << 14) ^ (name[1] << 7) ^ (name[2] << 0) ^
1968 rol32(hash, 7 * 3);
1969 case 2:
1970 return (name[0] << 7) ^ (name[1] << 0) ^ rol32(hash, 7 * 2);
1971 case 1:
1972 return (name[0] << 0) ^ rol32(hash, 7 * 1);
2b3b6d07 1973 default: /* case 0: */
1da177e4
LT
1974 return hash;
1975 }
1da177e4
LT
1976}
1977
5163f95a
BN
1978enum xfs_dacmp
1979xfs_da_compname(
1980 struct xfs_da_args *args,
2bc75421
DC
1981 const unsigned char *name,
1982 int len)
5163f95a
BN
1983{
1984 return (args->namelen == len && memcmp(args->name, name, len) == 0) ?
1985 XFS_CMP_EXACT : XFS_CMP_DIFFERENT;
1986}
1987
1988static xfs_dahash_t
1989xfs_default_hashname(
1990 struct xfs_name *name)
1991{
1992 return xfs_da_hashname(name->name, name->len);
1993}
1994
1995const struct xfs_nameops xfs_default_nameops = {
1996 .hashname = xfs_default_hashname,
1997 .compname = xfs_da_compname
1998};
1999
1da177e4 2000int
77936d02
CH
2001xfs_da_grow_inode_int(
2002 struct xfs_da_args *args,
2003 xfs_fileoff_t *bno,
2004 int count)
1da177e4 2005{
77936d02
CH
2006 struct xfs_trans *tp = args->trans;
2007 struct xfs_inode *dp = args->dp;
2008 int w = args->whichfork;
d5cf09ba 2009 xfs_rfsblock_t nblks = dp->i_d.di_nblocks;
77936d02
CH
2010 struct xfs_bmbt_irec map, *mapp;
2011 int nmap, error, got, i, mapi;
1da177e4 2012
1da177e4
LT
2013 /*
2014 * Find a spot in the file space to put the new block.
2015 */
77936d02
CH
2016 error = xfs_bmap_first_unused(tp, dp, count, bno, w);
2017 if (error)
1da177e4 2018 return error;
77936d02 2019
1da177e4
LT
2020 /*
2021 * Try mapping it in one filesystem block.
2022 */
2023 nmap = 1;
2024 ASSERT(args->firstblock != NULL);
c0dc7828
DC
2025 error = xfs_bmapi_write(tp, dp, *bno, count,
2026 xfs_bmapi_aflag(w)|XFS_BMAPI_METADATA|XFS_BMAPI_CONTIG,
1da177e4 2027 args->firstblock, args->total, &map, &nmap,
77936d02
CH
2028 args->flist);
2029 if (error)
1da177e4 2030 return error;
77936d02 2031
1da177e4
LT
2032 ASSERT(nmap <= 1);
2033 if (nmap == 1) {
2034 mapp = &map;
2035 mapi = 1;
77936d02
CH
2036 } else if (nmap == 0 && count > 1) {
2037 xfs_fileoff_t b;
2038 int c;
2039
2040 /*
2041 * If we didn't get it and the block might work if fragmented,
2042 * try without the CONTIG flag. Loop until we get it all.
2043 */
1da177e4 2044 mapp = kmem_alloc(sizeof(*mapp) * count, KM_SLEEP);
77936d02 2045 for (b = *bno, mapi = 0; b < *bno + count; ) {
1da177e4 2046 nmap = MIN(XFS_BMAP_MAX_NMAP, count);
77936d02 2047 c = (int)(*bno + count - b);
c0dc7828
DC
2048 error = xfs_bmapi_write(tp, dp, b, c,
2049 xfs_bmapi_aflag(w)|XFS_BMAPI_METADATA,
1da177e4 2050 args->firstblock, args->total,
77936d02
CH
2051 &mapp[mapi], &nmap, args->flist);
2052 if (error)
2053 goto out_free_map;
1da177e4
LT
2054 if (nmap < 1)
2055 break;
2056 mapi += nmap;
2057 b = mapp[mapi - 1].br_startoff +
2058 mapp[mapi - 1].br_blockcount;
2059 }
2060 } else {
2061 mapi = 0;
2062 mapp = NULL;
2063 }
77936d02 2064
1da177e4
LT
2065 /*
2066 * Count the blocks we got, make sure it matches the total.
2067 */
2068 for (i = 0, got = 0; i < mapi; i++)
2069 got += mapp[i].br_blockcount;
77936d02 2070 if (got != count || mapp[0].br_startoff != *bno ||
1da177e4 2071 mapp[mapi - 1].br_startoff + mapp[mapi - 1].br_blockcount !=
77936d02 2072 *bno + count) {
2451337d 2073 error = -ENOSPC;
77936d02 2074 goto out_free_map;
1da177e4 2075 }
77936d02 2076
a7444053
DC
2077 /* account for newly allocated blocks in reserved blocks total */
2078 args->total -= dp->i_d.di_nblocks - nblks;
77936d02
CH
2079
2080out_free_map:
2081 if (mapp != &map)
2082 kmem_free(mapp);
2083 return error;
2084}
2085
2086/*
2087 * Add a block to the btree ahead of the file.
2088 * Return the new block number to the caller.
2089 */
2090int
2091xfs_da_grow_inode(
2092 struct xfs_da_args *args,
2093 xfs_dablk_t *new_blkno)
2094{
2095 xfs_fileoff_t bno;
77936d02
CH
2096 int error;
2097
5a5881cd
DC
2098 trace_xfs_da_grow_inode(args);
2099
d6cf1305
DC
2100 bno = args->geo->leafblk;
2101 error = xfs_da_grow_inode_int(args, &bno, args->geo->fsbcount);
77936d02
CH
2102 if (!error)
2103 *new_blkno = (xfs_dablk_t)bno;
2104 return error;
1da177e4
LT
2105}
2106
2107/*
2108 * Ick. We need to always be able to remove a btree block, even
2109 * if there's no space reservation because the filesystem is full.
2110 * This is called if xfs_bunmapi on a btree block fails due to ENOSPC.
2111 * It swaps the target block with the last block in the file. The
2112 * last block in the file can always be removed since it can't cause
2113 * a bmap btree split to do that.
2114 */
2115STATIC int
f5ea1100
DC
2116xfs_da3_swap_lastblock(
2117 struct xfs_da_args *args,
2118 xfs_dablk_t *dead_blknop,
2119 struct xfs_buf **dead_bufp)
1da177e4 2120{
f5ea1100
DC
2121 struct xfs_da_blkinfo *dead_info;
2122 struct xfs_da_blkinfo *sib_info;
2123 struct xfs_da_intnode *par_node;
2124 struct xfs_da_intnode *dead_node;
2125 struct xfs_dir2_leaf *dead_leaf2;
2126 struct xfs_da_node_entry *btree;
2127 struct xfs_da3_icnode_hdr par_hdr;
4bceb18f 2128 struct xfs_inode *dp;
f5ea1100
DC
2129 struct xfs_trans *tp;
2130 struct xfs_mount *mp;
2131 struct xfs_buf *dead_buf;
2132 struct xfs_buf *last_buf;
2133 struct xfs_buf *sib_buf;
2134 struct xfs_buf *par_buf;
2135 xfs_dahash_t dead_hash;
2136 xfs_fileoff_t lastoff;
2137 xfs_dablk_t dead_blkno;
2138 xfs_dablk_t last_blkno;
2139 xfs_dablk_t sib_blkno;
2140 xfs_dablk_t par_blkno;
2141 int error;
2142 int w;
2143 int entno;
2144 int level;
2145 int dead_level;
1da177e4 2146
5a5881cd
DC
2147 trace_xfs_da_swap_lastblock(args);
2148
1da177e4
LT
2149 dead_buf = *dead_bufp;
2150 dead_blkno = *dead_blknop;
2151 tp = args->trans;
4bceb18f 2152 dp = args->dp;
1da177e4
LT
2153 w = args->whichfork;
2154 ASSERT(w == XFS_DATA_FORK);
4bceb18f 2155 mp = dp->i_mount;
7dda6e86 2156 lastoff = args->geo->freeblk;
4bceb18f 2157 error = xfs_bmap_last_before(tp, dp, &lastoff, w);
1da177e4
LT
2158 if (error)
2159 return error;
2160 if (unlikely(lastoff == 0)) {
2161 XFS_ERROR_REPORT("xfs_da_swap_lastblock(1)", XFS_ERRLEVEL_LOW,
2162 mp);
2451337d 2163 return -EFSCORRUPTED;
1da177e4
LT
2164 }
2165 /*
2166 * Read the last block in the btree space.
2167 */
d6cf1305 2168 last_blkno = (xfs_dablk_t)lastoff - args->geo->fsbcount;
4bceb18f 2169 error = xfs_da3_node_read(tp, dp, last_blkno, -1, &last_buf, w);
4bb20a83 2170 if (error)
1da177e4
LT
2171 return error;
2172 /*
2173 * Copy the last block into the dead buffer and log it.
2174 */
8f66193c
DC
2175 memcpy(dead_buf->b_addr, last_buf->b_addr, args->geo->blksize);
2176 xfs_trans_log_buf(tp, dead_buf, 0, args->geo->blksize - 1);
1d9025e5 2177 dead_info = dead_buf->b_addr;
1da177e4
LT
2178 /*
2179 * Get values from the moved block.
2180 */
24df33b4
DC
2181 if (dead_info->magic == cpu_to_be16(XFS_DIR2_LEAFN_MAGIC) ||
2182 dead_info->magic == cpu_to_be16(XFS_DIR3_LEAFN_MAGIC)) {
2183 struct xfs_dir3_icleaf_hdr leafhdr;
2184 struct xfs_dir2_leaf_entry *ents;
2185
1da177e4 2186 dead_leaf2 = (xfs_dir2_leaf_t *)dead_info;
01ba43b8 2187 dp->d_ops->leaf_hdr_from_disk(&leafhdr, dead_leaf2);
4bceb18f 2188 ents = dp->d_ops->leaf_ents_p(dead_leaf2);
1da177e4 2189 dead_level = 0;
24df33b4 2190 dead_hash = be32_to_cpu(ents[leafhdr.count - 1].hashval);
1da177e4 2191 } else {
f5ea1100
DC
2192 struct xfs_da3_icnode_hdr deadhdr;
2193
1da177e4 2194 dead_node = (xfs_da_intnode_t *)dead_info;
01ba43b8 2195 dp->d_ops->node_hdr_from_disk(&deadhdr, dead_node);
4bceb18f 2196 btree = dp->d_ops->node_tree_p(dead_node);
f5ea1100
DC
2197 dead_level = deadhdr.level;
2198 dead_hash = be32_to_cpu(btree[deadhdr.count - 1].hashval);
1da177e4
LT
2199 }
2200 sib_buf = par_buf = NULL;
2201 /*
2202 * If the moved block has a left sibling, fix up the pointers.
2203 */
89da0544 2204 if ((sib_blkno = be32_to_cpu(dead_info->back))) {
4bceb18f 2205 error = xfs_da3_node_read(tp, dp, sib_blkno, -1, &sib_buf, w);
4bb20a83 2206 if (error)
1da177e4 2207 goto done;
1d9025e5 2208 sib_info = sib_buf->b_addr;
1da177e4 2209 if (unlikely(
89da0544
NS
2210 be32_to_cpu(sib_info->forw) != last_blkno ||
2211 sib_info->magic != dead_info->magic)) {
1da177e4
LT
2212 XFS_ERROR_REPORT("xfs_da_swap_lastblock(2)",
2213 XFS_ERRLEVEL_LOW, mp);
2451337d 2214 error = -EFSCORRUPTED;
1da177e4
LT
2215 goto done;
2216 }
89da0544 2217 sib_info->forw = cpu_to_be32(dead_blkno);
1d9025e5 2218 xfs_trans_log_buf(tp, sib_buf,
1da177e4
LT
2219 XFS_DA_LOGRANGE(sib_info, &sib_info->forw,
2220 sizeof(sib_info->forw)));
1da177e4
LT
2221 sib_buf = NULL;
2222 }
2223 /*
2224 * If the moved block has a right sibling, fix up the pointers.
2225 */
89da0544 2226 if ((sib_blkno = be32_to_cpu(dead_info->forw))) {
4bceb18f 2227 error = xfs_da3_node_read(tp, dp, sib_blkno, -1, &sib_buf, w);
4bb20a83 2228 if (error)
1da177e4 2229 goto done;
1d9025e5 2230 sib_info = sib_buf->b_addr;
1da177e4 2231 if (unlikely(
89da0544
NS
2232 be32_to_cpu(sib_info->back) != last_blkno ||
2233 sib_info->magic != dead_info->magic)) {
1da177e4
LT
2234 XFS_ERROR_REPORT("xfs_da_swap_lastblock(3)",
2235 XFS_ERRLEVEL_LOW, mp);
2451337d 2236 error = -EFSCORRUPTED;
1da177e4
LT
2237 goto done;
2238 }
89da0544 2239 sib_info->back = cpu_to_be32(dead_blkno);
1d9025e5 2240 xfs_trans_log_buf(tp, sib_buf,
1da177e4
LT
2241 XFS_DA_LOGRANGE(sib_info, &sib_info->back,
2242 sizeof(sib_info->back)));
1da177e4
LT
2243 sib_buf = NULL;
2244 }
7dda6e86 2245 par_blkno = args->geo->leafblk;
1da177e4
LT
2246 level = -1;
2247 /*
2248 * Walk down the tree looking for the parent of the moved block.
2249 */
2250 for (;;) {
4bceb18f 2251 error = xfs_da3_node_read(tp, dp, par_blkno, -1, &par_buf, w);
4bb20a83 2252 if (error)
1da177e4 2253 goto done;
1d9025e5 2254 par_node = par_buf->b_addr;
01ba43b8 2255 dp->d_ops->node_hdr_from_disk(&par_hdr, par_node);
f5ea1100 2256 if (level >= 0 && level != par_hdr.level + 1) {
1da177e4
LT
2257 XFS_ERROR_REPORT("xfs_da_swap_lastblock(4)",
2258 XFS_ERRLEVEL_LOW, mp);
2451337d 2259 error = -EFSCORRUPTED;
1da177e4
LT
2260 goto done;
2261 }
f5ea1100 2262 level = par_hdr.level;
4bceb18f 2263 btree = dp->d_ops->node_tree_p(par_node);
1da177e4 2264 for (entno = 0;
f5ea1100
DC
2265 entno < par_hdr.count &&
2266 be32_to_cpu(btree[entno].hashval) < dead_hash;
1da177e4
LT
2267 entno++)
2268 continue;
f5ea1100 2269 if (entno == par_hdr.count) {
1da177e4
LT
2270 XFS_ERROR_REPORT("xfs_da_swap_lastblock(5)",
2271 XFS_ERRLEVEL_LOW, mp);
2451337d 2272 error = -EFSCORRUPTED;
1da177e4
LT
2273 goto done;
2274 }
f5ea1100 2275 par_blkno = be32_to_cpu(btree[entno].before);
1da177e4
LT
2276 if (level == dead_level + 1)
2277 break;
1d9025e5 2278 xfs_trans_brelse(tp, par_buf);
1da177e4
LT
2279 par_buf = NULL;
2280 }
2281 /*
2282 * We're in the right parent block.
2283 * Look for the right entry.
2284 */
2285 for (;;) {
2286 for (;
f5ea1100
DC
2287 entno < par_hdr.count &&
2288 be32_to_cpu(btree[entno].before) != last_blkno;
1da177e4
LT
2289 entno++)
2290 continue;
f5ea1100 2291 if (entno < par_hdr.count)
1da177e4 2292 break;
f5ea1100 2293 par_blkno = par_hdr.forw;
1d9025e5 2294 xfs_trans_brelse(tp, par_buf);
1da177e4
LT
2295 par_buf = NULL;
2296 if (unlikely(par_blkno == 0)) {
2297 XFS_ERROR_REPORT("xfs_da_swap_lastblock(6)",
2298 XFS_ERRLEVEL_LOW, mp);
2451337d 2299 error = -EFSCORRUPTED;
1da177e4
LT
2300 goto done;
2301 }
4bceb18f 2302 error = xfs_da3_node_read(tp, dp, par_blkno, -1, &par_buf, w);
4bb20a83 2303 if (error)
1da177e4 2304 goto done;
1d9025e5 2305 par_node = par_buf->b_addr;
01ba43b8 2306 dp->d_ops->node_hdr_from_disk(&par_hdr, par_node);
f5ea1100 2307 if (par_hdr.level != level) {
1da177e4
LT
2308 XFS_ERROR_REPORT("xfs_da_swap_lastblock(7)",
2309 XFS_ERRLEVEL_LOW, mp);
2451337d 2310 error = -EFSCORRUPTED;
1da177e4
LT
2311 goto done;
2312 }
4bceb18f 2313 btree = dp->d_ops->node_tree_p(par_node);
1da177e4
LT
2314 entno = 0;
2315 }
2316 /*
2317 * Update the parent entry pointing to the moved block.
2318 */
f5ea1100 2319 btree[entno].before = cpu_to_be32(dead_blkno);
1d9025e5 2320 xfs_trans_log_buf(tp, par_buf,
f5ea1100
DC
2321 XFS_DA_LOGRANGE(par_node, &btree[entno].before,
2322 sizeof(btree[entno].before)));
1da177e4
LT
2323 *dead_blknop = last_blkno;
2324 *dead_bufp = last_buf;
2325 return 0;
2326done:
2327 if (par_buf)
1d9025e5 2328 xfs_trans_brelse(tp, par_buf);
1da177e4 2329 if (sib_buf)
1d9025e5
DC
2330 xfs_trans_brelse(tp, sib_buf);
2331 xfs_trans_brelse(tp, last_buf);
1da177e4
LT
2332 return error;
2333}
2334
2335/*
2336 * Remove a btree block from a directory or attribute.
2337 */
2338int
1d9025e5
DC
2339xfs_da_shrink_inode(
2340 xfs_da_args_t *args,
2341 xfs_dablk_t dead_blkno,
2342 struct xfs_buf *dead_buf)
1da177e4
LT
2343{
2344 xfs_inode_t *dp;
2345 int done, error, w, count;
1da177e4 2346 xfs_trans_t *tp;
1da177e4 2347
5a5881cd
DC
2348 trace_xfs_da_shrink_inode(args);
2349
1da177e4
LT
2350 dp = args->dp;
2351 w = args->whichfork;
2352 tp = args->trans;
d6cf1305 2353 count = args->geo->fsbcount;
1da177e4
LT
2354 for (;;) {
2355 /*
2356 * Remove extents. If we get ENOSPC for a dir we have to move
2357 * the last block to the place we want to kill.
2358 */
f5ea1100 2359 error = xfs_bunmapi(tp, dp, dead_blkno, count,
ab7bb610
DC
2360 xfs_bmapi_aflag(w), 0, args->firstblock,
2361 args->flist, &done);
2451337d 2362 if (error == -ENOSPC) {
1da177e4 2363 if (w != XFS_DATA_FORK)
f6c2d1fa 2364 break;
f5ea1100
DC
2365 error = xfs_da3_swap_lastblock(args, &dead_blkno,
2366 &dead_buf);
2367 if (error)
f6c2d1fa
NS
2368 break;
2369 } else {
1da177e4 2370 break;
1da177e4
LT
2371 }
2372 }
1d9025e5 2373 xfs_trans_binval(tp, dead_buf);
1da177e4
LT
2374 return error;
2375}
2376
2377/*
2378 * See if the mapping(s) for this btree block are valid, i.e.
2379 * don't contain holes, are logically contiguous, and cover the whole range.
2380 */
2381STATIC int
2382xfs_da_map_covers_blocks(
2383 int nmap,
2384 xfs_bmbt_irec_t *mapp,
2385 xfs_dablk_t bno,
2386 int count)
2387{
2388 int i;
2389 xfs_fileoff_t off;
2390
2391 for (i = 0, off = bno; i < nmap; i++) {
2392 if (mapp[i].br_startblock == HOLESTARTBLOCK ||
2393 mapp[i].br_startblock == DELAYSTARTBLOCK) {
2394 return 0;
2395 }
2396 if (off != mapp[i].br_startoff) {
2397 return 0;
2398 }
2399 off += mapp[i].br_blockcount;
2400 }
2401 return off == bno + count;
2402}
2403
2404/*
3605431f
DC
2405 * Convert a struct xfs_bmbt_irec to a struct xfs_buf_map.
2406 *
2407 * For the single map case, it is assumed that the caller has provided a pointer
2408 * to a valid xfs_buf_map. For the multiple map case, this function will
2409 * allocate the xfs_buf_map to hold all the maps and replace the caller's single
2410 * map pointer with the allocated map.
1da177e4 2411 */
3605431f
DC
2412static int
2413xfs_buf_map_from_irec(
2414 struct xfs_mount *mp,
2415 struct xfs_buf_map **mapp,
836a94ad 2416 int *nmaps,
3605431f 2417 struct xfs_bmbt_irec *irecs,
836a94ad 2418 int nirecs)
1da177e4 2419{
3605431f
DC
2420 struct xfs_buf_map *map;
2421 int i;
2422
2423 ASSERT(*nmaps == 1);
2424 ASSERT(nirecs >= 1);
2425
2426 if (nirecs > 1) {
b17cb364
DC
2427 map = kmem_zalloc(nirecs * sizeof(struct xfs_buf_map),
2428 KM_SLEEP | KM_NOFS);
3605431f 2429 if (!map)
2451337d 2430 return -ENOMEM;
3605431f
DC
2431 *mapp = map;
2432 }
2433
2434 *nmaps = nirecs;
2435 map = *mapp;
2436 for (i = 0; i < *nmaps; i++) {
2437 ASSERT(irecs[i].br_startblock != DELAYSTARTBLOCK &&
2438 irecs[i].br_startblock != HOLESTARTBLOCK);
2439 map[i].bm_bn = XFS_FSB_TO_DADDR(mp, irecs[i].br_startblock);
2440 map[i].bm_len = XFS_FSB_TO_BB(mp, irecs[i].br_blockcount);
2441 }
2442 return 0;
2443}
2444
2445/*
2446 * Map the block we are given ready for reading. There are three possible return
2447 * values:
2448 * -1 - will be returned if we land in a hole and mappedbno == -2 so the
2449 * caller knows not to execute a subsequent read.
2450 * 0 - if we mapped the block successfully
2451 * >0 - positive error number if there was an error.
2452 */
2453static int
2454xfs_dabuf_map(
3605431f
DC
2455 struct xfs_inode *dp,
2456 xfs_dablk_t bno,
2457 xfs_daddr_t mappedbno,
2458 int whichfork,
2459 struct xfs_buf_map **map,
2460 int *nmaps)
2461{
2462 struct xfs_mount *mp = dp->i_mount;
2463 int nfsb;
2464 int error = 0;
2465 struct xfs_bmbt_irec irec;
2466 struct xfs_bmbt_irec *irecs = &irec;
2467 int nirecs;
2468
2469 ASSERT(map && *map);
2470 ASSERT(*nmaps == 1);
1da177e4 2471
d6cf1305
DC
2472 if (whichfork == XFS_DATA_FORK)
2473 nfsb = mp->m_dir_geo->fsbcount;
2474 else
2475 nfsb = mp->m_attr_geo->fsbcount;
3605431f 2476
1da177e4
LT
2477 /*
2478 * Caller doesn't have a mapping. -2 means don't complain
2479 * if we land in a hole.
2480 */
2481 if (mappedbno == -1 || mappedbno == -2) {
2482 /*
2483 * Optimize the one-block case.
2484 */
3605431f 2485 if (nfsb != 1)
b17cb364
DC
2486 irecs = kmem_zalloc(sizeof(irec) * nfsb,
2487 KM_SLEEP | KM_NOFS);
5b777ad5 2488
3605431f
DC
2489 nirecs = nfsb;
2490 error = xfs_bmapi_read(dp, (xfs_fileoff_t)bno, nfsb, irecs,
2491 &nirecs, xfs_bmapi_aflag(whichfork));
5b777ad5 2492 if (error)
3605431f 2493 goto out;
1da177e4 2494 } else {
3605431f
DC
2495 irecs->br_startblock = XFS_DADDR_TO_FSB(mp, mappedbno);
2496 irecs->br_startoff = (xfs_fileoff_t)bno;
2497 irecs->br_blockcount = nfsb;
2498 irecs->br_state = 0;
2499 nirecs = 1;
1da177e4 2500 }
3605431f
DC
2501
2502 if (!xfs_da_map_covers_blocks(nirecs, irecs, bno, nfsb)) {
2451337d
DC
2503 error = mappedbno == -2 ? -1 : -EFSCORRUPTED;
2504 if (unlikely(error == -EFSCORRUPTED)) {
1da177e4 2505 if (xfs_error_level >= XFS_ERRLEVEL_LOW) {
3605431f 2506 int i;
0b932ccc
DC
2507 xfs_alert(mp, "%s: bno %lld dir: inode %lld",
2508 __func__, (long long)bno,
1da177e4 2509 (long long)dp->i_ino);
3605431f 2510 for (i = 0; i < *nmaps; i++) {
0b932ccc
DC
2511 xfs_alert(mp,
2512"[%02d] br_startoff %lld br_startblock %lld br_blockcount %lld br_state %d",
1da177e4 2513 i,
3605431f
DC
2514 (long long)irecs[i].br_startoff,
2515 (long long)irecs[i].br_startblock,
2516 (long long)irecs[i].br_blockcount,
2517 irecs[i].br_state);
1da177e4
LT
2518 }
2519 }
2520 XFS_ERROR_REPORT("xfs_da_do_buf(1)",
2521 XFS_ERRLEVEL_LOW, mp);
2522 }
3605431f 2523 goto out;
1da177e4 2524 }
3605431f
DC
2525 error = xfs_buf_map_from_irec(mp, map, nmaps, irecs, nirecs);
2526out:
2527 if (irecs != &irec)
2528 kmem_free(irecs);
2529 return error;
2530}
2531
2532/*
2533 * Get a buffer for the dir/attr block.
2534 */
2535int
2536xfs_da_get_buf(
2537 struct xfs_trans *trans,
2538 struct xfs_inode *dp,
2539 xfs_dablk_t bno,
2540 xfs_daddr_t mappedbno,
1d9025e5 2541 struct xfs_buf **bpp,
3605431f
DC
2542 int whichfork)
2543{
2544 struct xfs_buf *bp;
2545 struct xfs_buf_map map;
2546 struct xfs_buf_map *mapp;
2547 int nmap;
2548 int error;
2549
2550 *bpp = NULL;
2551 mapp = &map;
2552 nmap = 1;
9df2dd0b 2553 error = xfs_dabuf_map(dp, bno, mappedbno, whichfork,
3605431f
DC
2554 &mapp, &nmap);
2555 if (error) {
2556 /* mapping a hole is not an error, but we don't continue */
2557 if (error == -1)
1da177e4 2558 error = 0;
3605431f 2559 goto out_free;
1da177e4 2560 }
3605431f
DC
2561
2562 bp = xfs_trans_get_buf_map(trans, dp->i_mount->m_ddev_targp,
2563 mapp, nmap, 0);
2451337d 2564 error = bp ? bp->b_error : -EIO;
3605431f 2565 if (error) {
6ee49a20
ES
2566 if (bp)
2567 xfs_trans_brelse(trans, bp);
3605431f
DC
2568 goto out_free;
2569 }
2570
1d9025e5 2571 *bpp = bp;
3605431f
DC
2572
2573out_free:
2574 if (mapp != &map)
2575 kmem_free(mapp);
2576
2577 return error;
2578}
2579
2580/*
2581 * Get a buffer for the dir/attr block, fill in the contents.
2582 */
2583int
2584xfs_da_read_buf(
2585 struct xfs_trans *trans,
2586 struct xfs_inode *dp,
2587 xfs_dablk_t bno,
2588 xfs_daddr_t mappedbno,
1d9025e5 2589 struct xfs_buf **bpp,
4bb20a83 2590 int whichfork,
1813dd64 2591 const struct xfs_buf_ops *ops)
3605431f
DC
2592{
2593 struct xfs_buf *bp;
2594 struct xfs_buf_map map;
2595 struct xfs_buf_map *mapp;
2596 int nmap;
2597 int error;
2598
2599 *bpp = NULL;
2600 mapp = &map;
2601 nmap = 1;
9df2dd0b 2602 error = xfs_dabuf_map(dp, bno, mappedbno, whichfork,
3605431f
DC
2603 &mapp, &nmap);
2604 if (error) {
2605 /* mapping a hole is not an error, but we don't continue */
2606 if (error == -1)
2607 error = 0;
2608 goto out_free;
2609 }
2610
2611 error = xfs_trans_read_buf_map(dp->i_mount, trans,
2612 dp->i_mount->m_ddev_targp,
1813dd64 2613 mapp, nmap, 0, &bp, ops);
3605431f
DC
2614 if (error)
2615 goto out_free;
2616
2617 if (whichfork == XFS_ATTR_FORK)
2618 xfs_buf_set_ref(bp, XFS_ATTR_BTREE_REF);
1da177e4 2619 else
3605431f 2620 xfs_buf_set_ref(bp, XFS_DIR_BTREE_REF);
1d9025e5 2621 *bpp = bp;
3605431f 2622out_free:
1da177e4 2623 if (mapp != &map)
f0e2d93c 2624 kmem_free(mapp);
1da177e4 2625
3605431f 2626 return error;
1da177e4
LT
2627}
2628
2629/*
2630 * Readahead the dir/attr block.
2631 */
2632xfs_daddr_t
2633xfs_da_reada_buf(
3605431f
DC
2634 struct xfs_inode *dp,
2635 xfs_dablk_t bno,
da6958c8 2636 xfs_daddr_t mappedbno,
4bb20a83 2637 int whichfork,
1813dd64 2638 const struct xfs_buf_ops *ops)
1da177e4 2639{
3605431f
DC
2640 struct xfs_buf_map map;
2641 struct xfs_buf_map *mapp;
2642 int nmap;
2643 int error;
2644
2645 mapp = &map;
2646 nmap = 1;
9df2dd0b 2647 error = xfs_dabuf_map(dp, bno, mappedbno, whichfork,
3605431f
DC
2648 &mapp, &nmap);
2649 if (error) {
2650 /* mapping a hole is not an error, but we don't continue */
2651 if (error == -1)
2652 error = 0;
2653 goto out_free;
2654 }
1da177e4 2655
3605431f 2656 mappedbno = mapp[0].bm_bn;
1813dd64 2657 xfs_buf_readahead_map(dp->i_mount->m_ddev_targp, mapp, nmap, ops);
3605431f
DC
2658
2659out_free:
2660 if (mapp != &map)
2661 kmem_free(mapp);
2662
2663 if (error)
1da177e4 2664 return -1;
3605431f 2665 return mappedbno;
1da177e4 2666}