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