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