blob: 6a1eb752af035c968b4b8e9b1335e1032ee13777 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Nathan Scott7b718762005-11-02 14:58:39 +11002 * Copyright (c) 2000-2005 Silicon Graphics, Inc.
Dave Chinnerf5ea1102013-04-24 18:58:02 +10003 * Copyright (c) 2013 Red Hat, Inc.
Nathan Scott7b718762005-11-02 14:58:39 +11004 * All Rights Reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 *
Nathan Scott7b718762005-11-02 14:58:39 +11006 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License as
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 * published by the Free Software Foundation.
9 *
Nathan Scott7b718762005-11-02 14:58:39 +110010 * 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.
Linus Torvalds1da177e2005-04-16 15:20:36 -070014 *
Nathan Scott7b718762005-11-02 14:58:39 +110015 * 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
Linus Torvalds1da177e2005-04-16 15:20:36 -070018 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include "xfs.h"
Nathan Scotta844f452005-11-02 14:38:42 +110020#include "xfs_fs.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include "xfs_types.h"
Nathan Scotta844f452005-11-02 14:38:42 +110022#include "xfs_bit.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include "xfs_log.h"
24#include "xfs_trans.h"
25#include "xfs_sb.h"
26#include "xfs_ag.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include "xfs_mount.h"
Nathan Scotta844f452005-11-02 14:38:42 +110028#include "xfs_da_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include "xfs_bmap_btree.h"
Christoph Hellwig57926642011-07-13 13:43:48 +020030#include "xfs_dir2.h"
31#include "xfs_dir2_format.h"
32#include "xfs_dir2_priv.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include "xfs_dinode.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include "xfs_inode.h"
Nathan Scotta844f452005-11-02 14:38:42 +110035#include "xfs_inode_item.h"
36#include "xfs_alloc.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include "xfs_bmap.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#include "xfs_attr.h"
39#include "xfs_attr_leaf.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#include "xfs_error.h"
Christoph Hellwig0b1b2132009-12-14 23:14:59 +000041#include "xfs_trace.h"
Dave Chinnerf5ea1102013-04-24 18:58:02 +100042#include "xfs_cksum.h"
43#include "xfs_buf_item.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
45/*
46 * xfs_da_btree.c
47 *
48 * Routines to implement directories as Btrees of hashed names.
49 */
50
51/*========================================================================
52 * Function prototypes for the kernel.
53 *========================================================================*/
54
55/*
56 * Routines used for growing the Btree.
57 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +100058STATIC int xfs_da3_root_split(xfs_da_state_t *state,
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 xfs_da_state_blk_t *existing_root,
60 xfs_da_state_blk_t *new_child);
Dave Chinnerf5ea1102013-04-24 18:58:02 +100061STATIC int xfs_da3_node_split(xfs_da_state_t *state,
Linus Torvalds1da177e2005-04-16 15:20:36 -070062 xfs_da_state_blk_t *existing_blk,
63 xfs_da_state_blk_t *split_blk,
64 xfs_da_state_blk_t *blk_to_add,
65 int treelevel,
66 int *result);
Dave Chinnerf5ea1102013-04-24 18:58:02 +100067STATIC void xfs_da3_node_rebalance(xfs_da_state_t *state,
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 xfs_da_state_blk_t *node_blk_1,
69 xfs_da_state_blk_t *node_blk_2);
Dave Chinnerf5ea1102013-04-24 18:58:02 +100070STATIC void xfs_da3_node_add(xfs_da_state_t *state,
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 xfs_da_state_blk_t *old_node_blk,
72 xfs_da_state_blk_t *new_node_blk);
73
74/*
75 * Routines used for shrinking the Btree.
76 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +100077STATIC int xfs_da3_root_join(xfs_da_state_t *state,
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 xfs_da_state_blk_t *root_blk);
Dave Chinnerf5ea1102013-04-24 18:58:02 +100079STATIC int xfs_da3_node_toosmall(xfs_da_state_t *state, int *retval);
80STATIC void xfs_da3_node_remove(xfs_da_state_t *state,
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 xfs_da_state_blk_t *drop_blk);
Dave Chinnerf5ea1102013-04-24 18:58:02 +100082STATIC void xfs_da3_node_unbalance(xfs_da_state_t *state,
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 xfs_da_state_blk_t *src_node_blk,
84 xfs_da_state_blk_t *dst_node_blk);
85
86/*
87 * Utility routines.
88 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +100089STATIC int xfs_da3_blk_unlink(xfs_da_state_t *state,
Christoph Hellwigba0f32d2005-06-21 15:36:52 +100090 xfs_da_state_blk_t *drop_blk,
91 xfs_da_state_blk_t *save_blk);
Linus Torvalds1da177e2005-04-16 15:20:36 -070092
Dave Chinnerf5ea1102013-04-24 18:58:02 +100093
94kmem_zone_t *xfs_da_state_zone; /* anchor for state struct zone */
95
96/*
97 * Allocate a dir-state structure.
98 * We don't put them on the stack since they're large.
99 */
100xfs_da_state_t *
101xfs_da_state_alloc(void)
102{
103 return kmem_zone_zalloc(xfs_da_state_zone, KM_NOFS);
104}
105
106/*
107 * Kill the altpath contents of a da-state structure.
108 */
109STATIC void
110xfs_da_state_kill_altpath(xfs_da_state_t *state)
111{
112 int i;
113
114 for (i = 0; i < state->altpath.active; i++)
115 state->altpath.blk[i].bp = NULL;
116 state->altpath.active = 0;
117}
118
119/*
120 * Free a da-state structure.
121 */
122void
123xfs_da_state_free(xfs_da_state_t *state)
124{
125 xfs_da_state_kill_altpath(state);
126#ifdef DEBUG
127 memset((char *)state, 0, sizeof(*state));
128#endif /* DEBUG */
129 kmem_zone_free(xfs_da_state_zone, state);
130}
131
132void
133xfs_da3_node_hdr_from_disk(
134 struct xfs_da3_icnode_hdr *to,
135 struct xfs_da_intnode *from)
136{
137 ASSERT(from->hdr.info.magic == cpu_to_be16(XFS_DA_NODE_MAGIC) ||
138 from->hdr.info.magic == cpu_to_be16(XFS_DA3_NODE_MAGIC));
139
140 if (from->hdr.info.magic == cpu_to_be16(XFS_DA3_NODE_MAGIC)) {
141 struct xfs_da3_node_hdr *hdr3 = (struct xfs_da3_node_hdr *)from;
142
143 to->forw = be32_to_cpu(hdr3->info.hdr.forw);
144 to->back = be32_to_cpu(hdr3->info.hdr.back);
145 to->magic = be16_to_cpu(hdr3->info.hdr.magic);
146 to->count = be16_to_cpu(hdr3->count);
147 to->level = be16_to_cpu(hdr3->__level);
148 return;
149 }
150 to->forw = be32_to_cpu(from->hdr.info.forw);
151 to->back = be32_to_cpu(from->hdr.info.back);
152 to->magic = be16_to_cpu(from->hdr.info.magic);
153 to->count = be16_to_cpu(from->hdr.count);
154 to->level = be16_to_cpu(from->hdr.__level);
155}
156
157void
158xfs_da3_node_hdr_to_disk(
159 struct xfs_da_intnode *to,
160 struct xfs_da3_icnode_hdr *from)
161{
162 ASSERT(from->magic == XFS_DA_NODE_MAGIC ||
163 from->magic == XFS_DA3_NODE_MAGIC);
164
165 if (from->magic == XFS_DA3_NODE_MAGIC) {
166 struct xfs_da3_node_hdr *hdr3 = (struct xfs_da3_node_hdr *)to;
167
168 hdr3->info.hdr.forw = cpu_to_be32(from->forw);
169 hdr3->info.hdr.back = cpu_to_be32(from->back);
170 hdr3->info.hdr.magic = cpu_to_be16(from->magic);
171 hdr3->count = cpu_to_be16(from->count);
172 hdr3->__level = cpu_to_be16(from->level);
173 return;
174 }
175 to->hdr.info.forw = cpu_to_be32(from->forw);
176 to->hdr.info.back = cpu_to_be32(from->back);
177 to->hdr.info.magic = cpu_to_be16(from->magic);
178 to->hdr.count = cpu_to_be16(from->count);
179 to->hdr.__level = cpu_to_be16(from->level);
180}
181
182static bool
183xfs_da3_node_verify(
Dave Chinnerd9392a42012-11-12 22:54:17 +1100184 struct xfs_buf *bp)
185{
186 struct xfs_mount *mp = bp->b_target->bt_mount;
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000187 struct xfs_da_intnode *hdr = bp->b_addr;
188 struct xfs_da3_icnode_hdr ichdr;
Dave Chinnerd9392a42012-11-12 22:54:17 +1100189
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000190 xfs_da3_node_hdr_from_disk(&ichdr, hdr);
191
192 if (xfs_sb_version_hascrc(&mp->m_sb)) {
193 struct xfs_da3_node_hdr *hdr3 = bp->b_addr;
194
195 if (ichdr.magic != XFS_DA3_NODE_MAGIC)
196 return false;
197
198 if (!uuid_equal(&hdr3->info.uuid, &mp->m_sb.sb_uuid))
199 return false;
200 if (be64_to_cpu(hdr3->info.blkno) != bp->b_bn)
201 return false;
202 } else {
203 if (ichdr.magic != XFS_DA_NODE_MAGIC)
204 return false;
Dave Chinnerd9392a42012-11-12 22:54:17 +1100205 }
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000206 if (ichdr.level == 0)
207 return false;
208 if (ichdr.level > XFS_DA_NODE_MAXDEPTH)
209 return false;
210 if (ichdr.count == 0)
211 return false;
Dave Chinnerd9392a42012-11-12 22:54:17 +1100212
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000213 /*
214 * we don't know if the node is for and attribute or directory tree,
215 * so only fail if the count is outside both bounds
216 */
217 if (ichdr.count > mp->m_dir_node_ents &&
218 ichdr.count > mp->m_attr_node_ents)
219 return false;
220
221 /* XXX: hash order check? */
222
223 return true;
Dave Chinnerd9392a42012-11-12 22:54:17 +1100224}
225
226static void
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000227xfs_da3_node_write_verify(
Dave Chinner612cfbf2012-11-14 17:52:32 +1100228 struct xfs_buf *bp)
229{
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000230 struct xfs_mount *mp = bp->b_target->bt_mount;
231 struct xfs_buf_log_item *bip = bp->b_fspriv;
232 struct xfs_da3_node_hdr *hdr3 = bp->b_addr;
233
234 if (!xfs_da3_node_verify(bp)) {
235 XFS_CORRUPTION_ERROR(__func__, XFS_ERRLEVEL_LOW, mp, bp->b_addr);
236 xfs_buf_ioerror(bp, EFSCORRUPTED);
237 return;
238 }
239
240 if (!xfs_sb_version_hascrc(&mp->m_sb))
241 return;
242
243 if (bip)
244 hdr3->info.lsn = cpu_to_be64(bip->bli_item.li_lsn);
245
246 xfs_update_cksum(bp->b_addr, BBTOB(bp->b_length), XFS_DA3_NODE_CRC_OFF);
Dave Chinner612cfbf2012-11-14 17:52:32 +1100247}
248
Dave Chinner1813dd62012-11-14 17:54:40 +1100249/*
250 * leaf/node format detection on trees is sketchy, so a node read can be done on
251 * leaf level blocks when detection identifies the tree as a node format tree
252 * incorrectly. In this case, we need to swap the verifier to match the correct
253 * format of the block being read.
254 */
Dave Chinner612cfbf2012-11-14 17:52:32 +1100255static void
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000256xfs_da3_node_read_verify(
Dave Chinnerd9392a42012-11-12 22:54:17 +1100257 struct xfs_buf *bp)
258{
259 struct xfs_mount *mp = bp->b_target->bt_mount;
260 struct xfs_da_blkinfo *info = bp->b_addr;
261
262 switch (be16_to_cpu(info->magic)) {
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000263 case XFS_DA3_NODE_MAGIC:
264 if (!xfs_verify_cksum(bp->b_addr, BBTOB(bp->b_length),
265 XFS_DA3_NODE_CRC_OFF))
266 break;
267 /* fall through */
Dave Chinnerd9392a42012-11-12 22:54:17 +1100268 case XFS_DA_NODE_MAGIC:
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000269 if (!xfs_da3_node_verify(bp))
270 break;
271 return;
Dave Chinnerd9392a42012-11-12 22:54:17 +1100272 case XFS_ATTR_LEAF_MAGIC:
Dave Chinner1813dd62012-11-14 17:54:40 +1100273 bp->b_ops = &xfs_attr_leaf_buf_ops;
274 bp->b_ops->verify_read(bp);
Dave Chinnerd9392a42012-11-12 22:54:17 +1100275 return;
276 case XFS_DIR2_LEAFN_MAGIC:
Dave Chinner24df33b2013-04-12 07:30:21 +1000277 case XFS_DIR3_LEAFN_MAGIC:
278 bp->b_ops = &xfs_dir3_leafn_buf_ops;
Dave Chinner1813dd62012-11-14 17:54:40 +1100279 bp->b_ops->verify_read(bp);
Dave Chinnerd9392a42012-11-12 22:54:17 +1100280 return;
281 default:
282 break;
283 }
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000284
285 /* corrupt block */
286 XFS_CORRUPTION_ERROR(__func__, XFS_ERRLEVEL_LOW, mp, bp->b_addr);
287 xfs_buf_ioerror(bp, EFSCORRUPTED);
Dave Chinnerd9392a42012-11-12 22:54:17 +1100288}
289
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000290const struct xfs_buf_ops xfs_da3_node_buf_ops = {
291 .verify_read = xfs_da3_node_read_verify,
292 .verify_write = xfs_da3_node_write_verify,
Dave Chinner1813dd62012-11-14 17:54:40 +1100293};
294
295
Dave Chinnerd9392a42012-11-12 22:54:17 +1100296int
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000297xfs_da3_node_read(
Dave Chinnerd9392a42012-11-12 22:54:17 +1100298 struct xfs_trans *tp,
299 struct xfs_inode *dp,
300 xfs_dablk_t bno,
301 xfs_daddr_t mappedbno,
302 struct xfs_buf **bpp,
303 int which_fork)
304{
305 return xfs_da_read_buf(tp, dp, bno, mappedbno, bpp,
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000306 which_fork, &xfs_da3_node_buf_ops);
Dave Chinnerd9392a42012-11-12 22:54:17 +1100307}
308
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309/*========================================================================
310 * Routines used for growing the Btree.
311 *========================================================================*/
312
313/*
314 * Create the initial contents of an intermediate node.
315 */
316int
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000317xfs_da3_node_create(
318 struct xfs_da_args *args,
319 xfs_dablk_t blkno,
320 int level,
321 struct xfs_buf **bpp,
322 int whichfork)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323{
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000324 struct xfs_da_intnode *node;
325 struct xfs_trans *tp = args->trans;
326 struct xfs_mount *mp = tp->t_mountp;
327 struct xfs_da3_icnode_hdr ichdr = {0};
328 struct xfs_buf *bp;
329 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330
Dave Chinner5a5881c2012-03-22 05:15:13 +0000331 trace_xfs_da_node_create(args);
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000332 ASSERT(level <= XFS_DA_NODE_MAXDEPTH);
Dave Chinner5a5881c2012-03-22 05:15:13 +0000333
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 error = xfs_da_get_buf(tp, args->dp, blkno, -1, &bp, whichfork);
335 if (error)
336 return(error);
Dave Chinner1d9025e2012-06-22 18:50:14 +1000337 node = bp->b_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000339 if (xfs_sb_version_hascrc(&mp->m_sb)) {
340 struct xfs_da3_node_hdr *hdr3 = bp->b_addr;
341
342 ichdr.magic = XFS_DA3_NODE_MAGIC;
343 hdr3->info.blkno = cpu_to_be64(bp->b_bn);
344 hdr3->info.owner = cpu_to_be64(args->dp->i_ino);
345 uuid_copy(&hdr3->info.uuid, &mp->m_sb.sb_uuid);
346 } else {
347 ichdr.magic = XFS_DA_NODE_MAGIC;
348 }
349 ichdr.level = level;
350
351 xfs_da3_node_hdr_to_disk(node, &ichdr);
Dave Chinner1d9025e2012-06-22 18:50:14 +1000352 xfs_trans_log_buf(tp, bp,
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000353 XFS_DA_LOGRANGE(node, &node->hdr, xfs_da3_node_hdr_size(node)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000355 bp->b_ops = &xfs_da3_node_buf_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 *bpp = bp;
357 return(0);
358}
359
360/*
361 * Split a leaf node, rebalance, then possibly split
362 * intermediate nodes, rebalance, etc.
363 */
364int /* error */
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000365xfs_da3_split(
366 struct xfs_da_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367{
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000368 struct xfs_da_state_blk *oldblk;
369 struct xfs_da_state_blk *newblk;
370 struct xfs_da_state_blk *addblk;
371 struct xfs_da_intnode *node;
372 struct xfs_buf *bp;
373 int max;
374 int action;
375 int error;
376 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377
Dave Chinner5a5881c2012-03-22 05:15:13 +0000378 trace_xfs_da_split(state->args);
379
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 /*
381 * Walk back up the tree splitting/inserting/adjusting as necessary.
382 * If we need to insert and there isn't room, split the node, then
383 * decide which fragment to insert the new block from below into.
384 * Note that we may split the root this way, but we need more fixup.
385 */
386 max = state->path.active - 1;
387 ASSERT((max >= 0) && (max < XFS_DA_NODE_MAXDEPTH));
388 ASSERT(state->path.blk[max].magic == XFS_ATTR_LEAF_MAGIC ||
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000389 state->path.blk[max].magic == XFS_DIR2_LEAFN_MAGIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390
391 addblk = &state->path.blk[max]; /* initial dummy value */
392 for (i = max; (i >= 0) && addblk; state->path.active--, i--) {
393 oldblk = &state->path.blk[i];
394 newblk = &state->altpath.blk[i];
395
396 /*
397 * If a leaf node then
398 * Allocate a new leaf node, then rebalance across them.
399 * else if an intermediate node then
400 * We split on the last layer, must we split the node?
401 */
402 switch (oldblk->magic) {
403 case XFS_ATTR_LEAF_MAGIC:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 error = xfs_attr_leaf_split(state, oldblk, newblk);
405 if ((error != 0) && (error != ENOSPC)) {
406 return(error); /* GROT: attr is inconsistent */
407 }
408 if (!error) {
409 addblk = newblk;
410 break;
411 }
412 /*
413 * Entry wouldn't fit, split the leaf again.
414 */
415 state->extravalid = 1;
416 if (state->inleaf) {
417 state->extraafter = 0; /* before newblk */
Dave Chinner5a5881c2012-03-22 05:15:13 +0000418 trace_xfs_attr_leaf_split_before(state->args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 error = xfs_attr_leaf_split(state, oldblk,
420 &state->extrablk);
421 } else {
422 state->extraafter = 1; /* after newblk */
Dave Chinner5a5881c2012-03-22 05:15:13 +0000423 trace_xfs_attr_leaf_split_after(state->args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 error = xfs_attr_leaf_split(state, newblk,
425 &state->extrablk);
426 }
427 if (error)
428 return(error); /* GROT: attr inconsistent */
429 addblk = newblk;
430 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 case XFS_DIR2_LEAFN_MAGIC:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 error = xfs_dir2_leafn_split(state, oldblk, newblk);
433 if (error)
434 return error;
435 addblk = newblk;
436 break;
437 case XFS_DA_NODE_MAGIC:
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000438 error = xfs_da3_node_split(state, oldblk, newblk, addblk,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 max - i, &action);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 addblk->bp = NULL;
441 if (error)
442 return(error); /* GROT: dir is inconsistent */
443 /*
444 * Record the newly split block for the next time thru?
445 */
446 if (action)
447 addblk = newblk;
448 else
449 addblk = NULL;
450 break;
451 }
452
453 /*
454 * Update the btree to show the new hashval for this child.
455 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000456 xfs_da3_fixhashpath(state, &state->path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 }
458 if (!addblk)
459 return(0);
460
461 /*
462 * Split the root node.
463 */
464 ASSERT(state->path.active == 0);
465 oldblk = &state->path.blk[0];
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000466 error = xfs_da3_root_split(state, oldblk, addblk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 addblk->bp = NULL;
469 return(error); /* GROT: dir is inconsistent */
470 }
471
472 /*
473 * Update pointers to the node which used to be block 0 and
474 * just got bumped because of the addition of a new root node.
475 * There might be three blocks involved if a double split occurred,
476 * and the original block 0 could be at any position in the list.
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000477 *
478 * Note: the magic numbers and sibling pointers are in the same
479 * physical place for both v2 and v3 headers (by design). Hence it
480 * doesn't matter which version of the xfs_da_intnode structure we use
481 * here as the result will be the same using either structure.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 */
Dave Chinner1d9025e2012-06-22 18:50:14 +1000483 node = oldblk->bp->b_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 if (node->hdr.info.forw) {
Nathan Scott89da0542006-03-17 17:28:40 +1100485 if (be32_to_cpu(node->hdr.info.forw) == addblk->blkno) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 bp = addblk->bp;
487 } else {
488 ASSERT(state->extravalid);
489 bp = state->extrablk.bp;
490 }
Dave Chinner1d9025e2012-06-22 18:50:14 +1000491 node = bp->b_addr;
Nathan Scott89da0542006-03-17 17:28:40 +1100492 node->hdr.info.back = cpu_to_be32(oldblk->blkno);
Dave Chinner1d9025e2012-06-22 18:50:14 +1000493 xfs_trans_log_buf(state->args->trans, bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 XFS_DA_LOGRANGE(node, &node->hdr.info,
495 sizeof(node->hdr.info)));
496 }
Dave Chinner1d9025e2012-06-22 18:50:14 +1000497 node = oldblk->bp->b_addr;
Nathan Scott89da0542006-03-17 17:28:40 +1100498 if (node->hdr.info.back) {
499 if (be32_to_cpu(node->hdr.info.back) == addblk->blkno) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 bp = addblk->bp;
501 } else {
502 ASSERT(state->extravalid);
503 bp = state->extrablk.bp;
504 }
Dave Chinner1d9025e2012-06-22 18:50:14 +1000505 node = bp->b_addr;
Nathan Scott89da0542006-03-17 17:28:40 +1100506 node->hdr.info.forw = cpu_to_be32(oldblk->blkno);
Dave Chinner1d9025e2012-06-22 18:50:14 +1000507 xfs_trans_log_buf(state->args->trans, bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 XFS_DA_LOGRANGE(node, &node->hdr.info,
509 sizeof(node->hdr.info)));
510 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 addblk->bp = NULL;
512 return(0);
513}
514
515/*
516 * Split the root. We have to create a new root and point to the two
517 * parts (the split old root) that we just created. Copy block zero to
518 * the EOF, extending the inode in process.
519 */
520STATIC int /* error */
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000521xfs_da3_root_split(
522 struct xfs_da_state *state,
523 struct xfs_da_state_blk *blk1,
524 struct xfs_da_state_blk *blk2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525{
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000526 struct xfs_da_intnode *node;
527 struct xfs_da_intnode *oldroot;
528 struct xfs_da_node_entry *btree;
529 struct xfs_da3_icnode_hdr nodehdr;
530 struct xfs_da_args *args;
531 struct xfs_buf *bp;
532 struct xfs_inode *dp;
533 struct xfs_trans *tp;
534 struct xfs_mount *mp;
535 struct xfs_dir2_leaf *leaf;
536 xfs_dablk_t blkno;
537 int level;
538 int error;
539 int size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540
Dave Chinner5a5881c2012-03-22 05:15:13 +0000541 trace_xfs_da_root_split(state->args);
542
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 /*
544 * Copy the existing (incorrect) block from the root node position
545 * to a free space somewhere.
546 */
547 args = state->args;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 error = xfs_da_grow_inode(args, &blkno);
549 if (error)
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000550 return error;
551
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 dp = args->dp;
553 tp = args->trans;
554 mp = state->mp;
555 error = xfs_da_get_buf(tp, dp, blkno, -1, &bp, args->whichfork);
556 if (error)
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000557 return error;
Dave Chinner1d9025e2012-06-22 18:50:14 +1000558 node = bp->b_addr;
559 oldroot = blk1->bp->b_addr;
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000560 if (oldroot->hdr.info.magic == cpu_to_be16(XFS_DA_NODE_MAGIC) ||
561 oldroot->hdr.info.magic == cpu_to_be16(XFS_DA3_NODE_MAGIC)) {
562 struct xfs_da3_icnode_hdr nodehdr;
563
564 xfs_da3_node_hdr_from_disk(&nodehdr, oldroot);
565 btree = xfs_da3_node_tree_p(oldroot);
566 size = (int)((char *)&btree[nodehdr.count] - (char *)oldroot);
567 level = nodehdr.level;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 } else {
Dave Chinner24df33b2013-04-12 07:30:21 +1000569 struct xfs_dir3_icleaf_hdr leafhdr;
570 struct xfs_dir2_leaf_entry *ents;
571
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 leaf = (xfs_dir2_leaf_t *)oldroot;
Dave Chinner24df33b2013-04-12 07:30:21 +1000573 xfs_dir3_leaf_hdr_from_disk(&leafhdr, leaf);
574 ents = xfs_dir3_leaf_ents_p(leaf);
575
576 ASSERT(leafhdr.magic == XFS_DIR2_LEAFN_MAGIC ||
577 leafhdr.magic == XFS_DIR3_LEAFN_MAGIC);
578 size = (int)((char *)&ents[leafhdr.count] - (char *)leaf);
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000579 level = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 }
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000581
582 /*
583 * we can copy most of the information in the node from one block to
584 * another, but for CRC enabled headers we have to make sure that the
585 * block specific identifiers are kept intact. We update the buffer
586 * directly for this.
587 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 memcpy(node, oldroot, size);
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000589 if (oldroot->hdr.info.magic == cpu_to_be16(XFS_DA3_NODE_MAGIC) ||
590 oldroot->hdr.info.magic == cpu_to_be16(XFS_DIR3_LEAFN_MAGIC)) {
591 struct xfs_da3_intnode *node3 = (struct xfs_da3_intnode *)node;
592
593 node3->hdr.info.blkno = cpu_to_be64(bp->b_bn);
594 }
Dave Chinner1d9025e2012-06-22 18:50:14 +1000595 xfs_trans_log_buf(tp, bp, 0, size - 1);
Dave Chinnerb0f539d2012-11-14 17:53:49 +1100596
Dave Chinner1813dd62012-11-14 17:54:40 +1100597 bp->b_ops = blk1->bp->b_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 blk1->bp = bp;
599 blk1->blkno = blkno;
600
601 /*
602 * Set up the new root node.
603 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000604 error = xfs_da3_node_create(args,
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000605 (args->whichfork == XFS_DATA_FORK) ? mp->m_dirleafblk : 0,
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000606 level + 1, &bp, args->whichfork);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 if (error)
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000608 return error;
609
Dave Chinner1d9025e2012-06-22 18:50:14 +1000610 node = bp->b_addr;
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000611 xfs_da3_node_hdr_from_disk(&nodehdr, node);
612 btree = xfs_da3_node_tree_p(node);
613 btree[0].hashval = cpu_to_be32(blk1->hashval);
614 btree[0].before = cpu_to_be32(blk1->blkno);
615 btree[1].hashval = cpu_to_be32(blk2->hashval);
616 btree[1].before = cpu_to_be32(blk2->blkno);
617 nodehdr.count = 2;
618 xfs_da3_node_hdr_to_disk(node, &nodehdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619
620#ifdef DEBUG
Dave Chinner24df33b2013-04-12 07:30:21 +1000621 if (oldroot->hdr.info.magic == cpu_to_be16(XFS_DIR2_LEAFN_MAGIC) ||
622 oldroot->hdr.info.magic == cpu_to_be16(XFS_DIR3_LEAFN_MAGIC)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 ASSERT(blk1->blkno >= mp->m_dirleafblk &&
624 blk1->blkno < mp->m_dirfreeblk);
625 ASSERT(blk2->blkno >= mp->m_dirleafblk &&
626 blk2->blkno < mp->m_dirfreeblk);
627 }
628#endif
629
630 /* Header is already logged by xfs_da_node_create */
Dave Chinner1d9025e2012-06-22 18:50:14 +1000631 xfs_trans_log_buf(tp, bp,
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000632 XFS_DA_LOGRANGE(node, btree, sizeof(xfs_da_node_entry_t) * 2));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000634 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635}
636
637/*
638 * Split the node, rebalance, then add the new entry.
639 */
640STATIC int /* error */
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000641xfs_da3_node_split(
642 struct xfs_da_state *state,
643 struct xfs_da_state_blk *oldblk,
644 struct xfs_da_state_blk *newblk,
645 struct xfs_da_state_blk *addblk,
646 int treelevel,
647 int *result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648{
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000649 struct xfs_da_intnode *node;
650 struct xfs_da3_icnode_hdr nodehdr;
651 xfs_dablk_t blkno;
652 int newcount;
653 int error;
654 int useextra;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655
Dave Chinner5a5881c2012-03-22 05:15:13 +0000656 trace_xfs_da_node_split(state->args);
657
Dave Chinner1d9025e2012-06-22 18:50:14 +1000658 node = oldblk->bp->b_addr;
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000659 xfs_da3_node_hdr_from_disk(&nodehdr, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660
661 /*
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000662 * With V2 dirs the extra block is data or freespace.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 */
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000664 useextra = state->extravalid && state->args->whichfork == XFS_ATTR_FORK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 newcount = 1 + useextra;
666 /*
667 * Do we have to split the node?
668 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000669 if (nodehdr.count + newcount > state->node_ents) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 /*
671 * Allocate a new node, add to the doubly linked chain of
672 * nodes, then move some of our excess entries into it.
673 */
674 error = xfs_da_grow_inode(state->args, &blkno);
675 if (error)
676 return(error); /* GROT: dir is inconsistent */
677
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000678 error = xfs_da3_node_create(state->args, blkno, treelevel,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 &newblk->bp, state->args->whichfork);
680 if (error)
681 return(error); /* GROT: dir is inconsistent */
682 newblk->blkno = blkno;
683 newblk->magic = XFS_DA_NODE_MAGIC;
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000684 xfs_da3_node_rebalance(state, oldblk, newblk);
685 error = xfs_da3_blk_link(state, oldblk, newblk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 if (error)
687 return(error);
688 *result = 1;
689 } else {
690 *result = 0;
691 }
692
693 /*
694 * Insert the new entry(s) into the correct block
695 * (updating last hashval in the process).
696 *
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000697 * xfs_da3_node_add() inserts BEFORE the given index,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 * and as a result of using node_lookup_int() we always
699 * point to a valid entry (not after one), but a split
700 * operation always results in a new block whose hashvals
701 * FOLLOW the current block.
702 *
703 * If we had double-split op below us, then add the extra block too.
704 */
Dave Chinner1d9025e2012-06-22 18:50:14 +1000705 node = oldblk->bp->b_addr;
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000706 xfs_da3_node_hdr_from_disk(&nodehdr, node);
707 if (oldblk->index <= nodehdr.count) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 oldblk->index++;
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000709 xfs_da3_node_add(state, oldblk, addblk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 if (useextra) {
711 if (state->extraafter)
712 oldblk->index++;
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000713 xfs_da3_node_add(state, oldblk, &state->extrablk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 state->extravalid = 0;
715 }
716 } else {
717 newblk->index++;
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000718 xfs_da3_node_add(state, newblk, addblk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 if (useextra) {
720 if (state->extraafter)
721 newblk->index++;
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000722 xfs_da3_node_add(state, newblk, &state->extrablk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 state->extravalid = 0;
724 }
725 }
726
727 return(0);
728}
729
730/*
731 * Balance the btree elements between two intermediate nodes,
732 * usually one full and one empty.
733 *
734 * NOTE: if blk2 is empty, then it will get the upper half of blk1.
735 */
736STATIC void
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000737xfs_da3_node_rebalance(
738 struct xfs_da_state *state,
739 struct xfs_da_state_blk *blk1,
740 struct xfs_da_state_blk *blk2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741{
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000742 struct xfs_da_intnode *node1;
743 struct xfs_da_intnode *node2;
744 struct xfs_da_intnode *tmpnode;
745 struct xfs_da_node_entry *btree1;
746 struct xfs_da_node_entry *btree2;
747 struct xfs_da_node_entry *btree_s;
748 struct xfs_da_node_entry *btree_d;
749 struct xfs_da3_icnode_hdr nodehdr1;
750 struct xfs_da3_icnode_hdr nodehdr2;
751 struct xfs_trans *tp;
752 int count;
753 int tmp;
754 int swap = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755
Dave Chinner5a5881c2012-03-22 05:15:13 +0000756 trace_xfs_da_node_rebalance(state->args);
757
Dave Chinner1d9025e2012-06-22 18:50:14 +1000758 node1 = blk1->bp->b_addr;
759 node2 = blk2->bp->b_addr;
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000760 xfs_da3_node_hdr_from_disk(&nodehdr1, node1);
761 xfs_da3_node_hdr_from_disk(&nodehdr2, node2);
762 btree1 = xfs_da3_node_tree_p(node1);
763 btree2 = xfs_da3_node_tree_p(node2);
764
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 /*
766 * Figure out how many entries need to move, and in which direction.
767 * Swap the nodes around if that makes it simpler.
768 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000769 if (nodehdr1.count > 0 && nodehdr2.count > 0 &&
770 ((be32_to_cpu(btree2[0].hashval) < be32_to_cpu(btree1[0].hashval)) ||
771 (be32_to_cpu(btree2[nodehdr2.count - 1].hashval) <
772 be32_to_cpu(btree1[nodehdr1.count - 1].hashval)))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 tmpnode = node1;
774 node1 = node2;
775 node2 = tmpnode;
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000776 xfs_da3_node_hdr_from_disk(&nodehdr1, node1);
777 xfs_da3_node_hdr_from_disk(&nodehdr2, node2);
778 btree1 = xfs_da3_node_tree_p(node1);
779 btree2 = xfs_da3_node_tree_p(node2);
780 swap = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 }
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000782
783 count = (nodehdr1.count - nodehdr2.count) / 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 if (count == 0)
785 return;
786 tp = state->args->trans;
787 /*
788 * Two cases: high-to-low and low-to-high.
789 */
790 if (count > 0) {
791 /*
792 * Move elements in node2 up to make a hole.
793 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000794 tmp = nodehdr2.count;
795 if (tmp > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 tmp *= (uint)sizeof(xfs_da_node_entry_t);
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000797 btree_s = &btree2[0];
798 btree_d = &btree2[count];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 memmove(btree_d, btree_s, tmp);
800 }
801
802 /*
803 * Move the req'd B-tree elements from high in node1 to
804 * low in node2.
805 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000806 nodehdr2.count += count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 tmp = count * (uint)sizeof(xfs_da_node_entry_t);
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000808 btree_s = &btree1[nodehdr1.count - count];
809 btree_d = &btree2[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 memcpy(btree_d, btree_s, tmp);
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000811 nodehdr1.count -= count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 } else {
813 /*
814 * Move the req'd B-tree elements from low in node2 to
815 * high in node1.
816 */
817 count = -count;
818 tmp = count * (uint)sizeof(xfs_da_node_entry_t);
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000819 btree_s = &btree2[0];
820 btree_d = &btree1[nodehdr1.count];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 memcpy(btree_d, btree_s, tmp);
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000822 nodehdr1.count += count;
823
Dave Chinner1d9025e2012-06-22 18:50:14 +1000824 xfs_trans_log_buf(tp, blk1->bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 XFS_DA_LOGRANGE(node1, btree_d, tmp));
826
827 /*
828 * Move elements in node2 down to fill the hole.
829 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000830 tmp = nodehdr2.count - count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 tmp *= (uint)sizeof(xfs_da_node_entry_t);
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000832 btree_s = &btree2[count];
833 btree_d = &btree2[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 memmove(btree_d, btree_s, tmp);
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000835 nodehdr2.count -= count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 }
837
838 /*
839 * Log header of node 1 and all current bits of node 2.
840 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000841 xfs_da3_node_hdr_to_disk(node1, &nodehdr1);
Dave Chinner1d9025e2012-06-22 18:50:14 +1000842 xfs_trans_log_buf(tp, blk1->bp,
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000843 XFS_DA_LOGRANGE(node1, &node1->hdr,
844 xfs_da3_node_hdr_size(node1)));
845
846 xfs_da3_node_hdr_to_disk(node2, &nodehdr2);
Dave Chinner1d9025e2012-06-22 18:50:14 +1000847 xfs_trans_log_buf(tp, blk2->bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 XFS_DA_LOGRANGE(node2, &node2->hdr,
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000849 xfs_da3_node_hdr_size(node2) +
850 (sizeof(btree2[0]) * nodehdr2.count)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851
852 /*
853 * Record the last hashval from each block for upward propagation.
854 * (note: don't use the swapped node pointers)
855 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000856 if (swap) {
857 node1 = blk1->bp->b_addr;
858 node2 = blk2->bp->b_addr;
859 xfs_da3_node_hdr_from_disk(&nodehdr1, node1);
860 xfs_da3_node_hdr_from_disk(&nodehdr2, node2);
861 btree1 = xfs_da3_node_tree_p(node1);
862 btree2 = xfs_da3_node_tree_p(node2);
863 }
864 blk1->hashval = be32_to_cpu(btree1[nodehdr1.count - 1].hashval);
865 blk2->hashval = be32_to_cpu(btree2[nodehdr2.count - 1].hashval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866
867 /*
868 * Adjust the expected index for insertion.
869 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000870 if (blk1->index >= nodehdr1.count) {
871 blk2->index = blk1->index - nodehdr1.count;
872 blk1->index = nodehdr1.count + 1; /* make it invalid */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 }
874}
875
876/*
877 * Add a new entry to an intermediate node.
878 */
879STATIC void
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000880xfs_da3_node_add(
881 struct xfs_da_state *state,
882 struct xfs_da_state_blk *oldblk,
883 struct xfs_da_state_blk *newblk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884{
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000885 struct xfs_da_intnode *node;
886 struct xfs_da3_icnode_hdr nodehdr;
887 struct xfs_da_node_entry *btree;
888 int tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889
Dave Chinner5a5881c2012-03-22 05:15:13 +0000890 trace_xfs_da_node_add(state->args);
891
Dave Chinner1d9025e2012-06-22 18:50:14 +1000892 node = oldblk->bp->b_addr;
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000893 xfs_da3_node_hdr_from_disk(&nodehdr, node);
894 btree = xfs_da3_node_tree_p(node);
895
896 ASSERT(oldblk->index >= 0 && oldblk->index <= nodehdr.count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897 ASSERT(newblk->blkno != 0);
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000898 if (state->args->whichfork == XFS_DATA_FORK)
Christoph Hellwig73523a22010-07-20 17:54:45 +1000899 ASSERT(newblk->blkno >= state->mp->m_dirleafblk &&
900 newblk->blkno < state->mp->m_dirfreeblk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901
902 /*
903 * We may need to make some room before we insert the new node.
904 */
905 tmp = 0;
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000906 if (oldblk->index < nodehdr.count) {
907 tmp = (nodehdr.count - oldblk->index) * (uint)sizeof(*btree);
908 memmove(&btree[oldblk->index + 1], &btree[oldblk->index], tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 }
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000910 btree[oldblk->index].hashval = cpu_to_be32(newblk->hashval);
911 btree[oldblk->index].before = cpu_to_be32(newblk->blkno);
Dave Chinner1d9025e2012-06-22 18:50:14 +1000912 xfs_trans_log_buf(state->args->trans, oldblk->bp,
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000913 XFS_DA_LOGRANGE(node, &btree[oldblk->index],
914 tmp + sizeof(*btree)));
915
916 nodehdr.count += 1;
917 xfs_da3_node_hdr_to_disk(node, &nodehdr);
Dave Chinner1d9025e2012-06-22 18:50:14 +1000918 xfs_trans_log_buf(state->args->trans, oldblk->bp,
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000919 XFS_DA_LOGRANGE(node, &node->hdr, xfs_da3_node_hdr_size(node)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920
921 /*
922 * Copy the last hash value from the oldblk to propagate upwards.
923 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000924 oldblk->hashval = be32_to_cpu(btree[nodehdr.count - 1].hashval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925}
926
927/*========================================================================
928 * Routines used for shrinking the Btree.
929 *========================================================================*/
930
931/*
932 * Deallocate an empty leaf node, remove it from its parent,
933 * possibly deallocating that block, etc...
934 */
935int
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000936xfs_da3_join(
937 struct xfs_da_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938{
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000939 struct xfs_da_state_blk *drop_blk;
940 struct xfs_da_state_blk *save_blk;
941 int action = 0;
942 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943
Dave Chinner5a5881c2012-03-22 05:15:13 +0000944 trace_xfs_da_join(state->args);
945
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946 drop_blk = &state->path.blk[ state->path.active-1 ];
947 save_blk = &state->altpath.blk[ state->path.active-1 ];
948 ASSERT(state->path.blk[0].magic == XFS_DA_NODE_MAGIC);
949 ASSERT(drop_blk->magic == XFS_ATTR_LEAF_MAGIC ||
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000950 drop_blk->magic == XFS_DIR2_LEAFN_MAGIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951
952 /*
953 * Walk back up the tree joining/deallocating as necessary.
954 * When we stop dropping blocks, break out.
955 */
956 for ( ; state->path.active >= 2; drop_blk--, save_blk--,
957 state->path.active--) {
958 /*
959 * See if we can combine the block with a neighbor.
960 * (action == 0) => no options, just leave
961 * (action == 1) => coalesce, then unlink
962 * (action == 2) => block empty, unlink it
963 */
964 switch (drop_blk->magic) {
965 case XFS_ATTR_LEAF_MAGIC:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966 error = xfs_attr_leaf_toosmall(state, &action);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967 if (error)
968 return(error);
969 if (action == 0)
970 return(0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971 xfs_attr_leaf_unbalance(state, drop_blk, save_blk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973 case XFS_DIR2_LEAFN_MAGIC:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974 error = xfs_dir2_leafn_toosmall(state, &action);
975 if (error)
976 return error;
977 if (action == 0)
978 return 0;
979 xfs_dir2_leafn_unbalance(state, drop_blk, save_blk);
980 break;
981 case XFS_DA_NODE_MAGIC:
982 /*
983 * Remove the offending node, fixup hashvals,
984 * check for a toosmall neighbor.
985 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000986 xfs_da3_node_remove(state, drop_blk);
987 xfs_da3_fixhashpath(state, &state->path);
988 error = xfs_da3_node_toosmall(state, &action);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989 if (error)
990 return(error);
991 if (action == 0)
992 return 0;
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000993 xfs_da3_node_unbalance(state, drop_blk, save_blk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 break;
995 }
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000996 xfs_da3_fixhashpath(state, &state->altpath);
997 error = xfs_da3_blk_unlink(state, drop_blk, save_blk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 xfs_da_state_kill_altpath(state);
999 if (error)
1000 return(error);
1001 error = xfs_da_shrink_inode(state->args, drop_blk->blkno,
1002 drop_blk->bp);
1003 drop_blk->bp = NULL;
1004 if (error)
1005 return(error);
1006 }
1007 /*
1008 * We joined all the way to the top. If it turns out that
1009 * we only have one entry in the root, make the child block
1010 * the new root.
1011 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001012 xfs_da3_node_remove(state, drop_blk);
1013 xfs_da3_fixhashpath(state, &state->path);
1014 error = xfs_da3_root_join(state, &state->path.blk[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 return(error);
1016}
1017
Alex Elder1c4f3322011-07-18 18:14:09 +00001018#ifdef DEBUG
1019static void
1020xfs_da_blkinfo_onlychild_validate(struct xfs_da_blkinfo *blkinfo, __u16 level)
1021{
1022 __be16 magic = blkinfo->magic;
1023
1024 if (level == 1) {
1025 ASSERT(magic == cpu_to_be16(XFS_DIR2_LEAFN_MAGIC) ||
Dave Chinner24df33b2013-04-12 07:30:21 +10001026 magic == cpu_to_be16(XFS_DIR3_LEAFN_MAGIC) ||
Alex Elder1c4f3322011-07-18 18:14:09 +00001027 magic == cpu_to_be16(XFS_ATTR_LEAF_MAGIC));
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001028 } else {
1029 ASSERT(magic == cpu_to_be16(XFS_DA_NODE_MAGIC) ||
1030 magic == cpu_to_be16(XFS_DA3_NODE_MAGIC));
1031 }
Alex Elder1c4f3322011-07-18 18:14:09 +00001032 ASSERT(!blkinfo->forw);
1033 ASSERT(!blkinfo->back);
1034}
1035#else /* !DEBUG */
1036#define xfs_da_blkinfo_onlychild_validate(blkinfo, level)
1037#endif /* !DEBUG */
1038
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039/*
1040 * We have only one entry in the root. Copy the only remaining child of
1041 * the old root to block 0 as the new root node.
1042 */
1043STATIC int
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001044xfs_da3_root_join(
1045 struct xfs_da_state *state,
1046 struct xfs_da_state_blk *root_blk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047{
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001048 struct xfs_da_intnode *oldroot;
1049 struct xfs_da_args *args;
1050 xfs_dablk_t child;
1051 struct xfs_buf *bp;
1052 struct xfs_da3_icnode_hdr oldroothdr;
1053 struct xfs_da_node_entry *btree;
1054 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055
Dave Chinner5a5881c2012-03-22 05:15:13 +00001056 trace_xfs_da_root_join(state->args);
1057
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058 ASSERT(root_blk->magic == XFS_DA_NODE_MAGIC);
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001059
1060 args = state->args;
Dave Chinner1d9025e2012-06-22 18:50:14 +10001061 oldroot = root_blk->bp->b_addr;
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001062 xfs_da3_node_hdr_from_disk(&oldroothdr, oldroot);
1063 ASSERT(oldroothdr.forw == 0);
1064 ASSERT(oldroothdr.back == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065
1066 /*
1067 * If the root has more than one child, then don't do anything.
1068 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001069 if (oldroothdr.count > 1)
1070 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071
1072 /*
1073 * Read in the (only) child block, then copy those bytes into
1074 * the root block's buffer and free the original child block.
1075 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001076 btree = xfs_da3_node_tree_p(oldroot);
1077 child = be32_to_cpu(btree[0].before);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078 ASSERT(child != 0);
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001079 error = xfs_da3_node_read(args->trans, args->dp, child, -1, &bp,
Dave Chinnerd9392a42012-11-12 22:54:17 +11001080 args->whichfork);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081 if (error)
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001082 return error;
1083 xfs_da_blkinfo_onlychild_validate(bp->b_addr, oldroothdr.level);
Alex Elder1c4f3322011-07-18 18:14:09 +00001084
Dave Chinner612cfbf2012-11-14 17:52:32 +11001085 /*
1086 * This could be copying a leaf back into the root block in the case of
1087 * there only being a single leaf block left in the tree. Hence we have
Dave Chinner1813dd62012-11-14 17:54:40 +11001088 * to update the b_ops pointer as well to match the buffer type change
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001089 * that could occur. For dir3 blocks we also need to update the block
1090 * number in the buffer header.
Dave Chinner612cfbf2012-11-14 17:52:32 +11001091 */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001092 memcpy(root_blk->bp->b_addr, bp->b_addr, state->blocksize);
Dave Chinner1813dd62012-11-14 17:54:40 +11001093 root_blk->bp->b_ops = bp->b_ops;
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001094 if (oldroothdr.magic == XFS_DA3_NODE_MAGIC) {
1095 struct xfs_da3_blkinfo *da3 = root_blk->bp->b_addr;
1096 da3->blkno = cpu_to_be64(root_blk->bp->b_bn);
1097 }
Dave Chinner1d9025e2012-06-22 18:50:14 +10001098 xfs_trans_log_buf(args->trans, root_blk->bp, 0, state->blocksize - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099 error = xfs_da_shrink_inode(args, child, bp);
1100 return(error);
1101}
1102
1103/*
1104 * Check a node block and its neighbors to see if the block should be
1105 * collapsed into one or the other neighbor. Always keep the block
1106 * with the smaller block number.
1107 * If the current block is over 50% full, don't try to join it, return 0.
1108 * If the block is empty, fill in the state structure and return 2.
1109 * If it can be collapsed, fill in the state structure and return 1.
1110 * If nothing can be done, return 0.
1111 */
1112STATIC int
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001113xfs_da3_node_toosmall(
1114 struct xfs_da_state *state,
1115 int *action)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116{
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001117 struct xfs_da_intnode *node;
1118 struct xfs_da_state_blk *blk;
1119 struct xfs_da_blkinfo *info;
1120 xfs_dablk_t blkno;
1121 struct xfs_buf *bp;
1122 struct xfs_da3_icnode_hdr nodehdr;
1123 int count;
1124 int forward;
1125 int error;
1126 int retval;
1127 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128
Dave Chinneree732592012-11-12 22:53:53 +11001129 trace_xfs_da_node_toosmall(state->args);
1130
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131 /*
1132 * Check for the degenerate case of the block being over 50% full.
1133 * If so, it's not worth even looking to see if we might be able
1134 * to coalesce with a sibling.
1135 */
1136 blk = &state->path.blk[ state->path.active-1 ];
Dave Chinner1d9025e2012-06-22 18:50:14 +10001137 info = blk->bp->b_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138 node = (xfs_da_intnode_t *)info;
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001139 xfs_da3_node_hdr_from_disk(&nodehdr, node);
1140 if (nodehdr.count > (state->node_ents >> 1)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141 *action = 0; /* blk over 50%, don't try to join */
1142 return(0); /* blk over 50%, don't try to join */
1143 }
1144
1145 /*
1146 * Check for the degenerate case of the block being empty.
1147 * If the block is empty, we'll simply delete it, no need to
Nathan Scottc41564b2006-03-29 08:55:14 +10001148 * coalesce it with a sibling block. We choose (arbitrarily)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149 * to merge with the forward block unless it is NULL.
1150 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001151 if (nodehdr.count == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152 /*
1153 * Make altpath point to the block we want to keep and
1154 * path point to the block we want to drop (this one).
1155 */
Nathan Scott89da0542006-03-17 17:28:40 +11001156 forward = (info->forw != 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157 memcpy(&state->altpath, &state->path, sizeof(state->path));
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001158 error = xfs_da3_path_shift(state, &state->altpath, forward,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159 0, &retval);
1160 if (error)
1161 return(error);
1162 if (retval) {
1163 *action = 0;
1164 } else {
1165 *action = 2;
1166 }
1167 return(0);
1168 }
1169
1170 /*
1171 * Examine each sibling block to see if we can coalesce with
1172 * at least 25% free space to spare. We need to figure out
1173 * whether to merge with the forward or the backward block.
1174 * We prefer coalescing with the lower numbered sibling so as
1175 * to shrink a directory over time.
1176 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001177 count = state->node_ents;
1178 count -= state->node_ents >> 2;
1179 count -= nodehdr.count;
1180
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181 /* start with smaller blk num */
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001182 forward = nodehdr.forw < nodehdr.back;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183 for (i = 0; i < 2; forward = !forward, i++) {
1184 if (forward)
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001185 blkno = nodehdr.forw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186 else
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001187 blkno = nodehdr.back;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188 if (blkno == 0)
1189 continue;
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001190 error = xfs_da3_node_read(state->args->trans, state->args->dp,
Dave Chinnerd9392a42012-11-12 22:54:17 +11001191 blkno, -1, &bp, state->args->whichfork);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192 if (error)
1193 return(error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194
Dave Chinner1d9025e2012-06-22 18:50:14 +10001195 node = bp->b_addr;
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001196 xfs_da3_node_hdr_from_disk(&nodehdr, node);
Dave Chinner1d9025e2012-06-22 18:50:14 +10001197 xfs_trans_brelse(state->args->trans, bp);
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001198
1199 if (count - nodehdr.count >= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200 break; /* fits with at least 25% to spare */
1201 }
1202 if (i >= 2) {
1203 *action = 0;
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001204 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205 }
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) {
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001213 error = xfs_da3_path_shift(state, &state->altpath, forward,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214 0, &retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215 } else {
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001216 error = xfs_da3_path_shift(state, &state->path, forward,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217 0, &retval);
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001218 }
1219 if (error)
1220 return error;
1221 if (retval) {
1222 *action = 0;
1223 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224 }
1225 *action = 1;
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001226 return 0;
1227}
1228
1229/*
1230 * Pick up the last hashvalue from an intermediate node.
1231 */
1232STATIC uint
1233xfs_da3_node_lasthash(
1234 struct xfs_buf *bp,
1235 int *count)
1236{
1237 struct xfs_da_intnode *node;
1238 struct xfs_da_node_entry *btree;
1239 struct xfs_da3_icnode_hdr nodehdr;
1240
1241 node = bp->b_addr;
1242 xfs_da3_node_hdr_from_disk(&nodehdr, node);
1243 if (count)
1244 *count = nodehdr.count;
1245 if (!nodehdr.count)
1246 return 0;
1247 btree = xfs_da3_node_tree_p(node);
1248 return be32_to_cpu(btree[nodehdr.count - 1].hashval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249}
1250
1251/*
1252 * Walk back up the tree adjusting hash values as necessary,
1253 * when we stop making changes, return.
1254 */
1255void
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001256xfs_da3_fixhashpath(
1257 struct xfs_da_state *state,
1258 struct xfs_da_state_path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259{
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001260 struct xfs_da_state_blk *blk;
1261 struct xfs_da_intnode *node;
1262 struct xfs_da_node_entry *btree;
1263 xfs_dahash_t lasthash=0;
1264 int level;
1265 int count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266
Dave Chinneree732592012-11-12 22:53:53 +11001267 trace_xfs_da_fixhashpath(state->args);
1268
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269 level = path->active-1;
1270 blk = &path->blk[ level ];
1271 switch (blk->magic) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272 case XFS_ATTR_LEAF_MAGIC:
1273 lasthash = xfs_attr_leaf_lasthash(blk->bp, &count);
1274 if (count == 0)
1275 return;
1276 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277 case XFS_DIR2_LEAFN_MAGIC:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278 lasthash = xfs_dir2_leafn_lasthash(blk->bp, &count);
1279 if (count == 0)
1280 return;
1281 break;
1282 case XFS_DA_NODE_MAGIC:
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001283 lasthash = xfs_da3_node_lasthash(blk->bp, &count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284 if (count == 0)
1285 return;
1286 break;
1287 }
1288 for (blk--, level--; level >= 0; blk--, level--) {
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001289 struct xfs_da3_icnode_hdr nodehdr;
1290
Dave Chinner1d9025e2012-06-22 18:50:14 +10001291 node = blk->bp->b_addr;
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001292 xfs_da3_node_hdr_from_disk(&nodehdr, node);
1293 btree = xfs_da3_node_tree_p(node);
Nathan Scott403432d2006-03-17 17:29:46 +11001294 if (be32_to_cpu(btree->hashval) == lasthash)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295 break;
1296 blk->hashval = lasthash;
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001297 btree[blk->index].hashval = cpu_to_be32(lasthash);
Dave Chinner1d9025e2012-06-22 18:50:14 +10001298 xfs_trans_log_buf(state->args->trans, blk->bp,
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001299 XFS_DA_LOGRANGE(node, &btree[blk->index],
1300 sizeof(*btree)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001302 lasthash = be32_to_cpu(btree[nodehdr.count - 1].hashval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303 }
1304}
1305
1306/*
1307 * Remove an entry from an intermediate node.
1308 */
1309STATIC void
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001310xfs_da3_node_remove(
1311 struct xfs_da_state *state,
1312 struct xfs_da_state_blk *drop_blk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313{
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001314 struct xfs_da_intnode *node;
1315 struct xfs_da3_icnode_hdr nodehdr;
1316 struct xfs_da_node_entry *btree;
1317 int index;
1318 int tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319
Dave Chinner5a5881c2012-03-22 05:15:13 +00001320 trace_xfs_da_node_remove(state->args);
1321
Dave Chinner1d9025e2012-06-22 18:50:14 +10001322 node = drop_blk->bp->b_addr;
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001323 xfs_da3_node_hdr_from_disk(&nodehdr, node);
1324 ASSERT(drop_blk->index < nodehdr.count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325 ASSERT(drop_blk->index >= 0);
1326
1327 /*
1328 * Copy over the offending entry, or just zero it out.
1329 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001330 index = drop_blk->index;
1331 btree = xfs_da3_node_tree_p(node);
1332 if (index < nodehdr.count - 1) {
1333 tmp = nodehdr.count - index - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334 tmp *= (uint)sizeof(xfs_da_node_entry_t);
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001335 memmove(&btree[index], &btree[index + 1], tmp);
Dave Chinner1d9025e2012-06-22 18:50:14 +10001336 xfs_trans_log_buf(state->args->trans, drop_blk->bp,
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001337 XFS_DA_LOGRANGE(node, &btree[index], tmp));
1338 index = nodehdr.count - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339 }
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001340 memset(&btree[index], 0, sizeof(xfs_da_node_entry_t));
Dave Chinner1d9025e2012-06-22 18:50:14 +10001341 xfs_trans_log_buf(state->args->trans, drop_blk->bp,
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001342 XFS_DA_LOGRANGE(node, &btree[index], sizeof(btree[index])));
1343 nodehdr.count -= 1;
1344 xfs_da3_node_hdr_to_disk(node, &nodehdr);
Dave Chinner1d9025e2012-06-22 18:50:14 +10001345 xfs_trans_log_buf(state->args->trans, drop_blk->bp,
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001346 XFS_DA_LOGRANGE(node, &node->hdr, xfs_da3_node_hdr_size(node)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347
1348 /*
1349 * Copy the last hash value from the block to propagate upwards.
1350 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001351 drop_blk->hashval = be32_to_cpu(btree[index - 1].hashval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352}
1353
1354/*
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001355 * Unbalance the elements between two intermediate nodes,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356 * move all Btree elements from one node into another.
1357 */
1358STATIC void
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001359xfs_da3_node_unbalance(
1360 struct xfs_da_state *state,
1361 struct xfs_da_state_blk *drop_blk,
1362 struct xfs_da_state_blk *save_blk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363{
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001364 struct xfs_da_intnode *drop_node;
1365 struct xfs_da_intnode *save_node;
1366 struct xfs_da_node_entry *drop_btree;
1367 struct xfs_da_node_entry *save_btree;
1368 struct xfs_da3_icnode_hdr drop_hdr;
1369 struct xfs_da3_icnode_hdr save_hdr;
1370 struct xfs_trans *tp;
1371 int sindex;
1372 int tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373
Dave Chinner5a5881c2012-03-22 05:15:13 +00001374 trace_xfs_da_node_unbalance(state->args);
1375
Dave Chinner1d9025e2012-06-22 18:50:14 +10001376 drop_node = drop_blk->bp->b_addr;
1377 save_node = save_blk->bp->b_addr;
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001378 xfs_da3_node_hdr_from_disk(&drop_hdr, drop_node);
1379 xfs_da3_node_hdr_from_disk(&save_hdr, save_node);
1380 drop_btree = xfs_da3_node_tree_p(drop_node);
1381 save_btree = xfs_da3_node_tree_p(save_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382 tp = state->args->trans;
1383
1384 /*
1385 * If the dying block has lower hashvals, then move all the
1386 * elements in the remaining block up to make a hole.
1387 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001388 if ((be32_to_cpu(drop_btree[0].hashval) <
1389 be32_to_cpu(save_btree[0].hashval)) ||
1390 (be32_to_cpu(drop_btree[drop_hdr.count - 1].hashval) <
1391 be32_to_cpu(save_btree[save_hdr.count - 1].hashval))) {
1392 /* XXX: check this - is memmove dst correct? */
1393 tmp = save_hdr.count * sizeof(xfs_da_node_entry_t);
1394 memmove(&save_btree[drop_hdr.count], &save_btree[0], tmp);
1395
1396 sindex = 0;
Dave Chinner1d9025e2012-06-22 18:50:14 +10001397 xfs_trans_log_buf(tp, save_blk->bp,
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001398 XFS_DA_LOGRANGE(save_node, &save_btree[0],
1399 (save_hdr.count + drop_hdr.count) *
1400 sizeof(xfs_da_node_entry_t)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401 } else {
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001402 sindex = save_hdr.count;
Dave Chinner1d9025e2012-06-22 18:50:14 +10001403 xfs_trans_log_buf(tp, save_blk->bp,
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001404 XFS_DA_LOGRANGE(save_node, &save_btree[sindex],
1405 drop_hdr.count * sizeof(xfs_da_node_entry_t)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406 }
1407
1408 /*
1409 * Move all the B-tree elements from drop_blk to save_blk.
1410 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001411 tmp = drop_hdr.count * (uint)sizeof(xfs_da_node_entry_t);
1412 memcpy(&save_btree[sindex], &drop_btree[0], tmp);
1413 save_hdr.count += drop_hdr.count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001415 xfs_da3_node_hdr_to_disk(save_node, &save_hdr);
Dave Chinner1d9025e2012-06-22 18:50:14 +10001416 xfs_trans_log_buf(tp, save_blk->bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417 XFS_DA_LOGRANGE(save_node, &save_node->hdr,
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001418 xfs_da3_node_hdr_size(save_node)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419
1420 /*
1421 * Save the last hashval in the remaining block for upward propagation.
1422 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001423 save_blk->hashval = be32_to_cpu(save_btree[save_hdr.count - 1].hashval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424}
1425
1426/*========================================================================
1427 * Routines used for finding things in the Btree.
1428 *========================================================================*/
1429
1430/*
1431 * Walk down the Btree looking for a particular filename, filling
1432 * in the state structure as we go.
1433 *
1434 * We will set the state structure to point to each of the elements
1435 * in each of the nodes where either the hashval is or should be.
1436 *
1437 * We support duplicate hashval's so for each entry in the current
1438 * node that could contain the desired hashval, descend. This is a
1439 * pruned depth-first tree search.
1440 */
1441int /* error */
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001442xfs_da3_node_lookup_int(
1443 struct xfs_da_state *state,
1444 int *result)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445{
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001446 struct xfs_da_state_blk *blk;
1447 struct xfs_da_blkinfo *curr;
1448 struct xfs_da_intnode *node;
1449 struct xfs_da_node_entry *btree;
1450 struct xfs_da3_icnode_hdr nodehdr;
1451 struct xfs_da_args *args;
1452 xfs_dablk_t blkno;
1453 xfs_dahash_t hashval;
1454 xfs_dahash_t btreehashval;
1455 int probe;
1456 int span;
1457 int max;
1458 int error;
1459 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460
1461 args = state->args;
1462
1463 /*
1464 * Descend thru the B-tree searching each level for the right
1465 * node to use, until the right hashval is found.
1466 */
Nathan Scottf6c2d1f2006-06-20 13:04:51 +10001467 blkno = (args->whichfork == XFS_DATA_FORK)? state->mp->m_dirleafblk : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468 for (blk = &state->path.blk[0], state->path.active = 1;
1469 state->path.active <= XFS_DA_NODE_MAXDEPTH;
1470 blk++, state->path.active++) {
1471 /*
1472 * Read the next node down in the tree.
1473 */
1474 blk->blkno = blkno;
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001475 error = xfs_da3_node_read(args->trans, args->dp, blkno,
Dave Chinnerd9392a42012-11-12 22:54:17 +11001476 -1, &blk->bp, args->whichfork);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477 if (error) {
1478 blk->blkno = 0;
1479 state->path.active--;
1480 return(error);
1481 }
Dave Chinner1d9025e2012-06-22 18:50:14 +10001482 curr = blk->bp->b_addr;
Nathan Scottd432c802006-09-28 11:03:44 +10001483 blk->magic = be16_to_cpu(curr->magic);
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001484
1485 if (blk->magic == XFS_ATTR_LEAF_MAGIC) {
1486 blk->hashval = xfs_attr_leaf_lasthash(blk->bp, NULL);
1487 break;
1488 }
1489
1490 if (blk->magic == XFS_DIR2_LEAFN_MAGIC ||
1491 blk->magic == XFS_DIR3_LEAFN_MAGIC) {
1492 blk->magic = XFS_DIR2_LEAFN_MAGIC;
1493 blk->hashval = xfs_dir2_leafn_lasthash(blk->bp, NULL);
1494 break;
1495 }
1496
1497 blk->magic = XFS_DA_NODE_MAGIC;
1498
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499
1500 /*
1501 * Search an intermediate node for a match.
1502 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001503 node = blk->bp->b_addr;
1504 xfs_da3_node_hdr_from_disk(&nodehdr, node);
1505 btree = xfs_da3_node_tree_p(node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001507 max = nodehdr.count;
1508 blk->hashval = be32_to_cpu(btree[max - 1].hashval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001510 /*
1511 * Binary search. (note: small blocks will skip loop)
1512 */
1513 probe = span = max / 2;
1514 hashval = args->hashval;
1515 while (span > 4) {
1516 span /= 2;
1517 btreehashval = be32_to_cpu(btree[probe].hashval);
1518 if (btreehashval < hashval)
1519 probe += span;
1520 else if (btreehashval > hashval)
1521 probe -= span;
1522 else
1523 break;
1524 }
1525 ASSERT((probe >= 0) && (probe < max));
1526 ASSERT((span <= 4) ||
1527 (be32_to_cpu(btree[probe].hashval) == hashval));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001529 /*
1530 * Since we may have duplicate hashval's, find the first
1531 * matching hashval in the node.
1532 */
1533 while (probe > 0 &&
1534 be32_to_cpu(btree[probe].hashval) >= hashval) {
1535 probe--;
1536 }
1537 while (probe < max &&
1538 be32_to_cpu(btree[probe].hashval) < hashval) {
1539 probe++;
1540 }
1541
1542 /*
1543 * Pick the right block to descend on.
1544 */
1545 if (probe == max) {
1546 blk->index = max - 1;
1547 blkno = be32_to_cpu(btree[max - 1].before);
1548 } else {
1549 blk->index = probe;
1550 blkno = be32_to_cpu(btree[probe].before);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551 }
1552 }
1553
1554 /*
1555 * A leaf block that ends in the hashval that we are interested in
1556 * (final hashval == search hashval) means that the next block may
1557 * contain more entries with the same hashval, shift upward to the
1558 * next leaf and keep searching.
1559 */
1560 for (;;) {
Nathan Scottf6c2d1f2006-06-20 13:04:51 +10001561 if (blk->magic == XFS_DIR2_LEAFN_MAGIC) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562 retval = xfs_dir2_leafn_lookup_int(blk->bp, args,
1563 &blk->index, state);
Nathan Scottd432c802006-09-28 11:03:44 +10001564 } else if (blk->magic == XFS_ATTR_LEAF_MAGIC) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565 retval = xfs_attr_leaf_lookup_int(blk->bp, args);
1566 blk->index = args->index;
1567 args->blkno = blk->blkno;
Nathan Scottd432c802006-09-28 11:03:44 +10001568 } else {
1569 ASSERT(0);
1570 return XFS_ERROR(EFSCORRUPTED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572 if (((retval == ENOENT) || (retval == ENOATTR)) &&
1573 (blk->hashval == args->hashval)) {
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001574 error = xfs_da3_path_shift(state, &state->path, 1, 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575 &retval);
1576 if (error)
1577 return(error);
1578 if (retval == 0) {
1579 continue;
Nathan Scottd432c802006-09-28 11:03:44 +10001580 } else if (blk->magic == XFS_ATTR_LEAF_MAGIC) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581 /* path_shift() gives ENOENT */
1582 retval = XFS_ERROR(ENOATTR);
1583 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584 }
1585 break;
1586 }
1587 *result = retval;
1588 return(0);
1589}
1590
1591/*========================================================================
1592 * Utility routines.
1593 *========================================================================*/
1594
1595/*
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001596 * Compare two intermediate nodes for "order".
1597 */
1598STATIC int
1599xfs_da3_node_order(
1600 struct xfs_buf *node1_bp,
1601 struct xfs_buf *node2_bp)
1602{
1603 struct xfs_da_intnode *node1;
1604 struct xfs_da_intnode *node2;
1605 struct xfs_da_node_entry *btree1;
1606 struct xfs_da_node_entry *btree2;
1607 struct xfs_da3_icnode_hdr node1hdr;
1608 struct xfs_da3_icnode_hdr node2hdr;
1609
1610 node1 = node1_bp->b_addr;
1611 node2 = node2_bp->b_addr;
1612 xfs_da3_node_hdr_from_disk(&node1hdr, node1);
1613 xfs_da3_node_hdr_from_disk(&node2hdr, node2);
1614 btree1 = xfs_da3_node_tree_p(node1);
1615 btree2 = xfs_da3_node_tree_p(node2);
1616
1617 if (node1hdr.count > 0 && node2hdr.count > 0 &&
1618 ((be32_to_cpu(btree2[0].hashval) < be32_to_cpu(btree1[0].hashval)) ||
1619 (be32_to_cpu(btree2[node2hdr.count - 1].hashval) <
1620 be32_to_cpu(btree1[node1hdr.count - 1].hashval)))) {
1621 return 1;
1622 }
1623 return 0;
1624}
1625
1626/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627 * Link a new block into a doubly linked list of blocks (of whatever type).
1628 */
1629int /* error */
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001630xfs_da3_blk_link(
1631 struct xfs_da_state *state,
1632 struct xfs_da_state_blk *old_blk,
1633 struct xfs_da_state_blk *new_blk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634{
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001635 struct xfs_da_blkinfo *old_info;
1636 struct xfs_da_blkinfo *new_info;
1637 struct xfs_da_blkinfo *tmp_info;
1638 struct xfs_da_args *args;
1639 struct xfs_buf *bp;
1640 int before = 0;
1641 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642
1643 /*
1644 * Set up environment.
1645 */
1646 args = state->args;
1647 ASSERT(args != NULL);
Dave Chinner1d9025e2012-06-22 18:50:14 +10001648 old_info = old_blk->bp->b_addr;
1649 new_info = new_blk->bp->b_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650 ASSERT(old_blk->magic == XFS_DA_NODE_MAGIC ||
Nathan Scottf6c2d1f2006-06-20 13:04:51 +10001651 old_blk->magic == XFS_DIR2_LEAFN_MAGIC ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652 old_blk->magic == XFS_ATTR_LEAF_MAGIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653
1654 switch (old_blk->magic) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655 case XFS_ATTR_LEAF_MAGIC:
1656 before = xfs_attr_leaf_order(old_blk->bp, new_blk->bp);
1657 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658 case XFS_DIR2_LEAFN_MAGIC:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659 before = xfs_dir2_leafn_order(old_blk->bp, new_blk->bp);
1660 break;
1661 case XFS_DA_NODE_MAGIC:
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001662 before = xfs_da3_node_order(old_blk->bp, new_blk->bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663 break;
1664 }
1665
1666 /*
1667 * Link blocks in appropriate order.
1668 */
1669 if (before) {
1670 /*
1671 * Link new block in before existing block.
1672 */
Dave Chinner5a5881c2012-03-22 05:15:13 +00001673 trace_xfs_da_link_before(args);
Nathan Scott89da0542006-03-17 17:28:40 +11001674 new_info->forw = cpu_to_be32(old_blk->blkno);
1675 new_info->back = old_info->back;
1676 if (old_info->back) {
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001677 error = xfs_da3_node_read(args->trans, args->dp,
Nathan Scott89da0542006-03-17 17:28:40 +11001678 be32_to_cpu(old_info->back),
Dave Chinnerd9392a42012-11-12 22:54:17 +11001679 -1, &bp, args->whichfork);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680 if (error)
1681 return(error);
1682 ASSERT(bp != NULL);
Dave Chinner1d9025e2012-06-22 18:50:14 +10001683 tmp_info = bp->b_addr;
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001684 ASSERT(tmp_info->magic == old_info->magic);
Nathan Scott89da0542006-03-17 17:28:40 +11001685 ASSERT(be32_to_cpu(tmp_info->forw) == old_blk->blkno);
1686 tmp_info->forw = cpu_to_be32(new_blk->blkno);
Dave Chinner1d9025e2012-06-22 18:50:14 +10001687 xfs_trans_log_buf(args->trans, bp, 0, sizeof(*tmp_info)-1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688 }
Nathan Scott89da0542006-03-17 17:28:40 +11001689 old_info->back = cpu_to_be32(new_blk->blkno);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690 } else {
1691 /*
1692 * Link new block in after existing block.
1693 */
Dave Chinner5a5881c2012-03-22 05:15:13 +00001694 trace_xfs_da_link_after(args);
Nathan Scott89da0542006-03-17 17:28:40 +11001695 new_info->forw = old_info->forw;
1696 new_info->back = cpu_to_be32(old_blk->blkno);
1697 if (old_info->forw) {
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001698 error = xfs_da3_node_read(args->trans, args->dp,
Nathan Scott89da0542006-03-17 17:28:40 +11001699 be32_to_cpu(old_info->forw),
Dave Chinnerd9392a42012-11-12 22:54:17 +11001700 -1, &bp, args->whichfork);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701 if (error)
1702 return(error);
1703 ASSERT(bp != NULL);
Dave Chinner1d9025e2012-06-22 18:50:14 +10001704 tmp_info = bp->b_addr;
Nathan Scott89da0542006-03-17 17:28:40 +11001705 ASSERT(tmp_info->magic == old_info->magic);
1706 ASSERT(be32_to_cpu(tmp_info->back) == old_blk->blkno);
1707 tmp_info->back = cpu_to_be32(new_blk->blkno);
Dave Chinner1d9025e2012-06-22 18:50:14 +10001708 xfs_trans_log_buf(args->trans, bp, 0, sizeof(*tmp_info)-1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709 }
Nathan Scott89da0542006-03-17 17:28:40 +11001710 old_info->forw = cpu_to_be32(new_blk->blkno);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711 }
1712
Dave Chinner1d9025e2012-06-22 18:50:14 +10001713 xfs_trans_log_buf(args->trans, old_blk->bp, 0, sizeof(*tmp_info) - 1);
1714 xfs_trans_log_buf(args->trans, new_blk->bp, 0, sizeof(*tmp_info) - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715 return(0);
1716}
1717
1718/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719 * Unlink a block from a doubly linked list of blocks.
1720 */
Christoph Hellwigba0f32d2005-06-21 15:36:52 +10001721STATIC int /* error */
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001722xfs_da3_blk_unlink(
1723 struct xfs_da_state *state,
1724 struct xfs_da_state_blk *drop_blk,
1725 struct xfs_da_state_blk *save_blk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726{
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001727 struct xfs_da_blkinfo *drop_info;
1728 struct xfs_da_blkinfo *save_info;
1729 struct xfs_da_blkinfo *tmp_info;
1730 struct xfs_da_args *args;
1731 struct xfs_buf *bp;
1732 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733
1734 /*
1735 * Set up environment.
1736 */
1737 args = state->args;
1738 ASSERT(args != NULL);
Dave Chinner1d9025e2012-06-22 18:50:14 +10001739 save_info = save_blk->bp->b_addr;
1740 drop_info = drop_blk->bp->b_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741 ASSERT(save_blk->magic == XFS_DA_NODE_MAGIC ||
Nathan Scottf6c2d1f2006-06-20 13:04:51 +10001742 save_blk->magic == XFS_DIR2_LEAFN_MAGIC ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743 save_blk->magic == XFS_ATTR_LEAF_MAGIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744 ASSERT(save_blk->magic == drop_blk->magic);
Nathan Scott89da0542006-03-17 17:28:40 +11001745 ASSERT((be32_to_cpu(save_info->forw) == drop_blk->blkno) ||
1746 (be32_to_cpu(save_info->back) == drop_blk->blkno));
1747 ASSERT((be32_to_cpu(drop_info->forw) == save_blk->blkno) ||
1748 (be32_to_cpu(drop_info->back) == save_blk->blkno));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749
1750 /*
1751 * Unlink the leaf block from the doubly linked chain of leaves.
1752 */
Nathan Scott89da0542006-03-17 17:28:40 +11001753 if (be32_to_cpu(save_info->back) == drop_blk->blkno) {
Dave Chinner5a5881c2012-03-22 05:15:13 +00001754 trace_xfs_da_unlink_back(args);
Nathan Scott89da0542006-03-17 17:28:40 +11001755 save_info->back = drop_info->back;
1756 if (drop_info->back) {
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001757 error = xfs_da3_node_read(args->trans, args->dp,
Nathan Scott89da0542006-03-17 17:28:40 +11001758 be32_to_cpu(drop_info->back),
Dave Chinnerd9392a42012-11-12 22:54:17 +11001759 -1, &bp, args->whichfork);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760 if (error)
1761 return(error);
1762 ASSERT(bp != NULL);
Dave Chinner1d9025e2012-06-22 18:50:14 +10001763 tmp_info = bp->b_addr;
Nathan Scott89da0542006-03-17 17:28:40 +11001764 ASSERT(tmp_info->magic == save_info->magic);
1765 ASSERT(be32_to_cpu(tmp_info->forw) == drop_blk->blkno);
1766 tmp_info->forw = cpu_to_be32(save_blk->blkno);
Dave Chinner1d9025e2012-06-22 18:50:14 +10001767 xfs_trans_log_buf(args->trans, bp, 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768 sizeof(*tmp_info) - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769 }
1770 } else {
Dave Chinner5a5881c2012-03-22 05:15:13 +00001771 trace_xfs_da_unlink_forward(args);
Nathan Scott89da0542006-03-17 17:28:40 +11001772 save_info->forw = drop_info->forw;
1773 if (drop_info->forw) {
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001774 error = xfs_da3_node_read(args->trans, args->dp,
Nathan Scott89da0542006-03-17 17:28:40 +11001775 be32_to_cpu(drop_info->forw),
Dave Chinnerd9392a42012-11-12 22:54:17 +11001776 -1, &bp, args->whichfork);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777 if (error)
1778 return(error);
1779 ASSERT(bp != NULL);
Dave Chinner1d9025e2012-06-22 18:50:14 +10001780 tmp_info = bp->b_addr;
Nathan Scott89da0542006-03-17 17:28:40 +11001781 ASSERT(tmp_info->magic == save_info->magic);
1782 ASSERT(be32_to_cpu(tmp_info->back) == drop_blk->blkno);
1783 tmp_info->back = cpu_to_be32(save_blk->blkno);
Dave Chinner1d9025e2012-06-22 18:50:14 +10001784 xfs_trans_log_buf(args->trans, bp, 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785 sizeof(*tmp_info) - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786 }
1787 }
1788
Dave Chinner1d9025e2012-06-22 18:50:14 +10001789 xfs_trans_log_buf(args->trans, save_blk->bp, 0, sizeof(*save_info) - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790 return(0);
1791}
1792
1793/*
1794 * Move a path "forward" or "!forward" one block at the current level.
1795 *
1796 * This routine will adjust a "path" to point to the next block
1797 * "forward" (higher hashvalues) or "!forward" (lower hashvals) in the
1798 * Btree, including updating pointers to the intermediate nodes between
1799 * the new bottom and the root.
1800 */
1801int /* error */
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001802xfs_da3_path_shift(
1803 struct xfs_da_state *state,
1804 struct xfs_da_state_path *path,
1805 int forward,
1806 int release,
1807 int *result)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808{
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001809 struct xfs_da_state_blk *blk;
1810 struct xfs_da_blkinfo *info;
1811 struct xfs_da_intnode *node;
1812 struct xfs_da_args *args;
1813 struct xfs_da_node_entry *btree;
1814 struct xfs_da3_icnode_hdr nodehdr;
1815 xfs_dablk_t blkno = 0;
1816 int level;
1817 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818
Dave Chinneree732592012-11-12 22:53:53 +11001819 trace_xfs_da_path_shift(state->args);
1820
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821 /*
1822 * Roll up the Btree looking for the first block where our
1823 * current index is not at the edge of the block. Note that
1824 * we skip the bottom layer because we want the sibling block.
1825 */
1826 args = state->args;
1827 ASSERT(args != NULL);
1828 ASSERT(path != NULL);
1829 ASSERT((path->active > 0) && (path->active < XFS_DA_NODE_MAXDEPTH));
1830 level = (path->active-1) - 1; /* skip bottom layer in path */
1831 for (blk = &path->blk[level]; level >= 0; blk--, level--) {
Dave Chinner1d9025e2012-06-22 18:50:14 +10001832 node = blk->bp->b_addr;
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001833 xfs_da3_node_hdr_from_disk(&nodehdr, node);
1834 btree = xfs_da3_node_tree_p(node);
1835
1836 if (forward && (blk->index < nodehdr.count - 1)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837 blk->index++;
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001838 blkno = be32_to_cpu(btree[blk->index].before);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839 break;
1840 } else if (!forward && (blk->index > 0)) {
1841 blk->index--;
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001842 blkno = be32_to_cpu(btree[blk->index].before);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843 break;
1844 }
1845 }
1846 if (level < 0) {
1847 *result = XFS_ERROR(ENOENT); /* we're out of our tree */
Barry Naujok6a178102008-05-21 16:42:05 +10001848 ASSERT(args->op_flags & XFS_DA_OP_OKNOENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849 return(0);
1850 }
1851
1852 /*
1853 * Roll down the edge of the subtree until we reach the
1854 * same depth we were at originally.
1855 */
1856 for (blk++, level++; level < path->active; blk++, level++) {
1857 /*
1858 * Release the old block.
1859 * (if it's dirty, trans won't actually let go)
1860 */
1861 if (release)
Dave Chinner1d9025e2012-06-22 18:50:14 +10001862 xfs_trans_brelse(args->trans, blk->bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863
1864 /*
1865 * Read the next child block.
1866 */
1867 blk->blkno = blkno;
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001868 error = xfs_da3_node_read(args->trans, args->dp, blkno, -1,
Dave Chinnerd9392a42012-11-12 22:54:17 +11001869 &blk->bp, args->whichfork);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001870 if (error)
1871 return(error);
Dave Chinner1d9025e2012-06-22 18:50:14 +10001872 info = blk->bp->b_addr;
Christoph Hellwig69ef9212011-07-08 14:36:05 +02001873 ASSERT(info->magic == cpu_to_be16(XFS_DA_NODE_MAGIC) ||
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001874 info->magic == cpu_to_be16(XFS_DA3_NODE_MAGIC) ||
Christoph Hellwig69ef9212011-07-08 14:36:05 +02001875 info->magic == cpu_to_be16(XFS_DIR2_LEAFN_MAGIC) ||
Dave Chinner24df33b2013-04-12 07:30:21 +10001876 info->magic == cpu_to_be16(XFS_DIR3_LEAFN_MAGIC) ||
Christoph Hellwig69ef9212011-07-08 14:36:05 +02001877 info->magic == cpu_to_be16(XFS_ATTR_LEAF_MAGIC));
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001878
1879
1880 /*
1881 * Note: we flatten the magic number to a single type so we
1882 * don't have to compare against crc/non-crc types elsewhere.
1883 */
1884 switch (be16_to_cpu(info->magic)) {
1885 case XFS_DA_NODE_MAGIC:
1886 case XFS_DA3_NODE_MAGIC:
1887 blk->magic = XFS_DA_NODE_MAGIC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888 node = (xfs_da_intnode_t *)info;
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001889 xfs_da3_node_hdr_from_disk(&nodehdr, node);
1890 btree = xfs_da3_node_tree_p(node);
1891 blk->hashval = be32_to_cpu(btree[nodehdr.count - 1].hashval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892 if (forward)
1893 blk->index = 0;
1894 else
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001895 blk->index = nodehdr.count - 1;
1896 blkno = be32_to_cpu(btree[blk->index].before);
1897 break;
1898 case XFS_ATTR_LEAF_MAGIC:
1899 blk->magic = XFS_ATTR_LEAF_MAGIC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900 ASSERT(level == path->active-1);
1901 blk->index = 0;
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001902 blk->hashval = xfs_attr_leaf_lasthash(blk->bp,
1903 NULL);
1904 break;
1905 case XFS_DIR2_LEAFN_MAGIC:
1906 case XFS_DIR3_LEAFN_MAGIC:
1907 blk->magic = XFS_DIR2_LEAFN_MAGIC;
1908 ASSERT(level == path->active-1);
1909 blk->index = 0;
1910 blk->hashval = xfs_dir2_leafn_lasthash(blk->bp,
1911 NULL);
1912 break;
1913 default:
1914 ASSERT(0);
1915 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001916 }
1917 }
1918 *result = 0;
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001919 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920}
1921
1922
1923/*========================================================================
1924 * Utility routines.
1925 *========================================================================*/
1926
1927/*
1928 * Implement a simple hash on a character string.
1929 * Rotate the hash value by 7 bits, then XOR each character in.
1930 * This is implemented with some source-level loop unrolling.
1931 */
1932xfs_dahash_t
Christoph Hellwiga5687782009-02-09 08:37:39 +01001933xfs_da_hashname(const __uint8_t *name, int namelen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001934{
1935 xfs_dahash_t hash;
1936
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937 /*
1938 * Do four characters at a time as long as we can.
1939 */
1940 for (hash = 0; namelen >= 4; namelen -= 4, name += 4)
1941 hash = (name[0] << 21) ^ (name[1] << 14) ^ (name[2] << 7) ^
1942 (name[3] << 0) ^ rol32(hash, 7 * 4);
1943
1944 /*
1945 * Now do the rest of the characters.
1946 */
1947 switch (namelen) {
1948 case 3:
1949 return (name[0] << 14) ^ (name[1] << 7) ^ (name[2] << 0) ^
1950 rol32(hash, 7 * 3);
1951 case 2:
1952 return (name[0] << 7) ^ (name[1] << 0) ^ rol32(hash, 7 * 2);
1953 case 1:
1954 return (name[0] << 0) ^ rol32(hash, 7 * 1);
Nathan Scott2b3b6d02005-11-02 15:12:28 +11001955 default: /* case 0: */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956 return hash;
1957 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001958}
1959
Barry Naujok5163f952008-05-21 16:41:01 +10001960enum xfs_dacmp
1961xfs_da_compname(
1962 struct xfs_da_args *args,
Dave Chinner2bc75422010-01-20 10:47:17 +11001963 const unsigned char *name,
1964 int len)
Barry Naujok5163f952008-05-21 16:41:01 +10001965{
1966 return (args->namelen == len && memcmp(args->name, name, len) == 0) ?
1967 XFS_CMP_EXACT : XFS_CMP_DIFFERENT;
1968}
1969
1970static xfs_dahash_t
1971xfs_default_hashname(
1972 struct xfs_name *name)
1973{
1974 return xfs_da_hashname(name->name, name->len);
1975}
1976
1977const struct xfs_nameops xfs_default_nameops = {
1978 .hashname = xfs_default_hashname,
1979 .compname = xfs_da_compname
1980};
1981
Linus Torvalds1da177e2005-04-16 15:20:36 -07001982int
Christoph Hellwig77936d02011-07-13 13:43:49 +02001983xfs_da_grow_inode_int(
1984 struct xfs_da_args *args,
1985 xfs_fileoff_t *bno,
1986 int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001987{
Christoph Hellwig77936d02011-07-13 13:43:49 +02001988 struct xfs_trans *tp = args->trans;
1989 struct xfs_inode *dp = args->dp;
1990 int w = args->whichfork;
1991 xfs_drfsbno_t nblks = dp->i_d.di_nblocks;
1992 struct xfs_bmbt_irec map, *mapp;
1993 int nmap, error, got, i, mapi;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001994
Linus Torvalds1da177e2005-04-16 15:20:36 -07001995 /*
1996 * Find a spot in the file space to put the new block.
1997 */
Christoph Hellwig77936d02011-07-13 13:43:49 +02001998 error = xfs_bmap_first_unused(tp, dp, count, bno, w);
1999 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000 return error;
Christoph Hellwig77936d02011-07-13 13:43:49 +02002001
Linus Torvalds1da177e2005-04-16 15:20:36 -07002002 /*
2003 * Try mapping it in one filesystem block.
2004 */
2005 nmap = 1;
2006 ASSERT(args->firstblock != NULL);
Dave Chinnerc0dc7822011-09-18 20:40:52 +00002007 error = xfs_bmapi_write(tp, dp, *bno, count,
2008 xfs_bmapi_aflag(w)|XFS_BMAPI_METADATA|XFS_BMAPI_CONTIG,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002009 args->firstblock, args->total, &map, &nmap,
Christoph Hellwig77936d02011-07-13 13:43:49 +02002010 args->flist);
2011 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002012 return error;
Christoph Hellwig77936d02011-07-13 13:43:49 +02002013
Linus Torvalds1da177e2005-04-16 15:20:36 -07002014 ASSERT(nmap <= 1);
2015 if (nmap == 1) {
2016 mapp = &map;
2017 mapi = 1;
Christoph Hellwig77936d02011-07-13 13:43:49 +02002018 } else if (nmap == 0 && count > 1) {
2019 xfs_fileoff_t b;
2020 int c;
2021
2022 /*
2023 * If we didn't get it and the block might work if fragmented,
2024 * try without the CONTIG flag. Loop until we get it all.
2025 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002026 mapp = kmem_alloc(sizeof(*mapp) * count, KM_SLEEP);
Christoph Hellwig77936d02011-07-13 13:43:49 +02002027 for (b = *bno, mapi = 0; b < *bno + count; ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028 nmap = MIN(XFS_BMAP_MAX_NMAP, count);
Christoph Hellwig77936d02011-07-13 13:43:49 +02002029 c = (int)(*bno + count - b);
Dave Chinnerc0dc7822011-09-18 20:40:52 +00002030 error = xfs_bmapi_write(tp, dp, b, c,
2031 xfs_bmapi_aflag(w)|XFS_BMAPI_METADATA,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002032 args->firstblock, args->total,
Christoph Hellwig77936d02011-07-13 13:43:49 +02002033 &mapp[mapi], &nmap, args->flist);
2034 if (error)
2035 goto out_free_map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002036 if (nmap < 1)
2037 break;
2038 mapi += nmap;
2039 b = mapp[mapi - 1].br_startoff +
2040 mapp[mapi - 1].br_blockcount;
2041 }
2042 } else {
2043 mapi = 0;
2044 mapp = NULL;
2045 }
Christoph Hellwig77936d02011-07-13 13:43:49 +02002046
Linus Torvalds1da177e2005-04-16 15:20:36 -07002047 /*
2048 * Count the blocks we got, make sure it matches the total.
2049 */
2050 for (i = 0, got = 0; i < mapi; i++)
2051 got += mapp[i].br_blockcount;
Christoph Hellwig77936d02011-07-13 13:43:49 +02002052 if (got != count || mapp[0].br_startoff != *bno ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07002053 mapp[mapi - 1].br_startoff + mapp[mapi - 1].br_blockcount !=
Christoph Hellwig77936d02011-07-13 13:43:49 +02002054 *bno + count) {
2055 error = XFS_ERROR(ENOSPC);
2056 goto out_free_map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002057 }
Christoph Hellwig77936d02011-07-13 13:43:49 +02002058
David Chinnera7444052008-10-30 17:38:12 +11002059 /* account for newly allocated blocks in reserved blocks total */
2060 args->total -= dp->i_d.di_nblocks - nblks;
Christoph Hellwig77936d02011-07-13 13:43:49 +02002061
2062out_free_map:
2063 if (mapp != &map)
2064 kmem_free(mapp);
2065 return error;
2066}
2067
2068/*
2069 * Add a block to the btree ahead of the file.
2070 * Return the new block number to the caller.
2071 */
2072int
2073xfs_da_grow_inode(
2074 struct xfs_da_args *args,
2075 xfs_dablk_t *new_blkno)
2076{
2077 xfs_fileoff_t bno;
2078 int count;
2079 int error;
2080
Dave Chinner5a5881c2012-03-22 05:15:13 +00002081 trace_xfs_da_grow_inode(args);
2082
Christoph Hellwig77936d02011-07-13 13:43:49 +02002083 if (args->whichfork == XFS_DATA_FORK) {
2084 bno = args->dp->i_mount->m_dirleafblk;
2085 count = args->dp->i_mount->m_dirblkfsbs;
2086 } else {
2087 bno = 0;
2088 count = 1;
2089 }
2090
2091 error = xfs_da_grow_inode_int(args, &bno, count);
2092 if (!error)
2093 *new_blkno = (xfs_dablk_t)bno;
2094 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095}
2096
2097/*
2098 * Ick. We need to always be able to remove a btree block, even
2099 * if there's no space reservation because the filesystem is full.
2100 * This is called if xfs_bunmapi on a btree block fails due to ENOSPC.
2101 * It swaps the target block with the last block in the file. The
2102 * last block in the file can always be removed since it can't cause
2103 * a bmap btree split to do that.
2104 */
2105STATIC int
Dave Chinnerf5ea1102013-04-24 18:58:02 +10002106xfs_da3_swap_lastblock(
2107 struct xfs_da_args *args,
2108 xfs_dablk_t *dead_blknop,
2109 struct xfs_buf **dead_bufp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002110{
Dave Chinnerf5ea1102013-04-24 18:58:02 +10002111 struct xfs_da_blkinfo *dead_info;
2112 struct xfs_da_blkinfo *sib_info;
2113 struct xfs_da_intnode *par_node;
2114 struct xfs_da_intnode *dead_node;
2115 struct xfs_dir2_leaf *dead_leaf2;
2116 struct xfs_da_node_entry *btree;
2117 struct xfs_da3_icnode_hdr par_hdr;
2118 struct xfs_inode *ip;
2119 struct xfs_trans *tp;
2120 struct xfs_mount *mp;
2121 struct xfs_buf *dead_buf;
2122 struct xfs_buf *last_buf;
2123 struct xfs_buf *sib_buf;
2124 struct xfs_buf *par_buf;
2125 xfs_dahash_t dead_hash;
2126 xfs_fileoff_t lastoff;
2127 xfs_dablk_t dead_blkno;
2128 xfs_dablk_t last_blkno;
2129 xfs_dablk_t sib_blkno;
2130 xfs_dablk_t par_blkno;
2131 int error;
2132 int w;
2133 int entno;
2134 int level;
2135 int dead_level;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136
Dave Chinner5a5881c2012-03-22 05:15:13 +00002137 trace_xfs_da_swap_lastblock(args);
2138
Linus Torvalds1da177e2005-04-16 15:20:36 -07002139 dead_buf = *dead_bufp;
2140 dead_blkno = *dead_blknop;
2141 tp = args->trans;
2142 ip = args->dp;
2143 w = args->whichfork;
2144 ASSERT(w == XFS_DATA_FORK);
2145 mp = ip->i_mount;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +10002146 lastoff = mp->m_dirfreeblk;
2147 error = xfs_bmap_last_before(tp, ip, &lastoff, w);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002148 if (error)
2149 return error;
2150 if (unlikely(lastoff == 0)) {
2151 XFS_ERROR_REPORT("xfs_da_swap_lastblock(1)", XFS_ERRLEVEL_LOW,
2152 mp);
2153 return XFS_ERROR(EFSCORRUPTED);
2154 }
2155 /*
2156 * Read the last block in the btree space.
2157 */
2158 last_blkno = (xfs_dablk_t)lastoff - mp->m_dirblkfsbs;
Dave Chinnerf5ea1102013-04-24 18:58:02 +10002159 error = xfs_da3_node_read(tp, ip, last_blkno, -1, &last_buf, w);
Dave Chinner4bb20a82012-11-12 22:54:10 +11002160 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002161 return error;
2162 /*
2163 * Copy the last block into the dead buffer and log it.
2164 */
Dave Chinner1d9025e2012-06-22 18:50:14 +10002165 memcpy(dead_buf->b_addr, last_buf->b_addr, mp->m_dirblksize);
2166 xfs_trans_log_buf(tp, dead_buf, 0, mp->m_dirblksize - 1);
2167 dead_info = dead_buf->b_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002168 /*
2169 * Get values from the moved block.
2170 */
Dave Chinner24df33b2013-04-12 07:30:21 +10002171 if (dead_info->magic == cpu_to_be16(XFS_DIR2_LEAFN_MAGIC) ||
2172 dead_info->magic == cpu_to_be16(XFS_DIR3_LEAFN_MAGIC)) {
2173 struct xfs_dir3_icleaf_hdr leafhdr;
2174 struct xfs_dir2_leaf_entry *ents;
2175
Linus Torvalds1da177e2005-04-16 15:20:36 -07002176 dead_leaf2 = (xfs_dir2_leaf_t *)dead_info;
Dave Chinner24df33b2013-04-12 07:30:21 +10002177 xfs_dir3_leaf_hdr_from_disk(&leafhdr, dead_leaf2);
2178 ents = xfs_dir3_leaf_ents_p(dead_leaf2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002179 dead_level = 0;
Dave Chinner24df33b2013-04-12 07:30:21 +10002180 dead_hash = be32_to_cpu(ents[leafhdr.count - 1].hashval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002181 } else {
Dave Chinnerf5ea1102013-04-24 18:58:02 +10002182 struct xfs_da3_icnode_hdr deadhdr;
2183
Linus Torvalds1da177e2005-04-16 15:20:36 -07002184 dead_node = (xfs_da_intnode_t *)dead_info;
Dave Chinnerf5ea1102013-04-24 18:58:02 +10002185 xfs_da3_node_hdr_from_disk(&deadhdr, dead_node);
2186 btree = xfs_da3_node_tree_p(dead_node);
2187 dead_level = deadhdr.level;
2188 dead_hash = be32_to_cpu(btree[deadhdr.count - 1].hashval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002189 }
2190 sib_buf = par_buf = NULL;
2191 /*
2192 * If the moved block has a left sibling, fix up the pointers.
2193 */
Nathan Scott89da0542006-03-17 17:28:40 +11002194 if ((sib_blkno = be32_to_cpu(dead_info->back))) {
Dave Chinnerf5ea1102013-04-24 18:58:02 +10002195 error = xfs_da3_node_read(tp, ip, sib_blkno, -1, &sib_buf, w);
Dave Chinner4bb20a82012-11-12 22:54:10 +11002196 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002197 goto done;
Dave Chinner1d9025e2012-06-22 18:50:14 +10002198 sib_info = sib_buf->b_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002199 if (unlikely(
Nathan Scott89da0542006-03-17 17:28:40 +11002200 be32_to_cpu(sib_info->forw) != last_blkno ||
2201 sib_info->magic != dead_info->magic)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202 XFS_ERROR_REPORT("xfs_da_swap_lastblock(2)",
2203 XFS_ERRLEVEL_LOW, mp);
2204 error = XFS_ERROR(EFSCORRUPTED);
2205 goto done;
2206 }
Nathan Scott89da0542006-03-17 17:28:40 +11002207 sib_info->forw = cpu_to_be32(dead_blkno);
Dave Chinner1d9025e2012-06-22 18:50:14 +10002208 xfs_trans_log_buf(tp, sib_buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002209 XFS_DA_LOGRANGE(sib_info, &sib_info->forw,
2210 sizeof(sib_info->forw)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002211 sib_buf = NULL;
2212 }
2213 /*
2214 * If the moved block has a right sibling, fix up the pointers.
2215 */
Nathan Scott89da0542006-03-17 17:28:40 +11002216 if ((sib_blkno = be32_to_cpu(dead_info->forw))) {
Dave Chinnerf5ea1102013-04-24 18:58:02 +10002217 error = xfs_da3_node_read(tp, ip, sib_blkno, -1, &sib_buf, w);
Dave Chinner4bb20a82012-11-12 22:54:10 +11002218 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002219 goto done;
Dave Chinner1d9025e2012-06-22 18:50:14 +10002220 sib_info = sib_buf->b_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002221 if (unlikely(
Nathan Scott89da0542006-03-17 17:28:40 +11002222 be32_to_cpu(sib_info->back) != last_blkno ||
2223 sib_info->magic != dead_info->magic)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002224 XFS_ERROR_REPORT("xfs_da_swap_lastblock(3)",
2225 XFS_ERRLEVEL_LOW, mp);
2226 error = XFS_ERROR(EFSCORRUPTED);
2227 goto done;
2228 }
Nathan Scott89da0542006-03-17 17:28:40 +11002229 sib_info->back = cpu_to_be32(dead_blkno);
Dave Chinner1d9025e2012-06-22 18:50:14 +10002230 xfs_trans_log_buf(tp, sib_buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002231 XFS_DA_LOGRANGE(sib_info, &sib_info->back,
2232 sizeof(sib_info->back)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002233 sib_buf = NULL;
2234 }
Nathan Scottf6c2d1f2006-06-20 13:04:51 +10002235 par_blkno = mp->m_dirleafblk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002236 level = -1;
2237 /*
2238 * Walk down the tree looking for the parent of the moved block.
2239 */
2240 for (;;) {
Dave Chinnerf5ea1102013-04-24 18:58:02 +10002241 error = xfs_da3_node_read(tp, ip, par_blkno, -1, &par_buf, w);
Dave Chinner4bb20a82012-11-12 22:54:10 +11002242 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002243 goto done;
Dave Chinner1d9025e2012-06-22 18:50:14 +10002244 par_node = par_buf->b_addr;
Dave Chinnerf5ea1102013-04-24 18:58:02 +10002245 xfs_da3_node_hdr_from_disk(&par_hdr, par_node);
2246 if (level >= 0 && level != par_hdr.level + 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002247 XFS_ERROR_REPORT("xfs_da_swap_lastblock(4)",
2248 XFS_ERRLEVEL_LOW, mp);
2249 error = XFS_ERROR(EFSCORRUPTED);
2250 goto done;
2251 }
Dave Chinnerf5ea1102013-04-24 18:58:02 +10002252 level = par_hdr.level;
2253 btree = xfs_da3_node_tree_p(par_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002254 for (entno = 0;
Dave Chinnerf5ea1102013-04-24 18:58:02 +10002255 entno < par_hdr.count &&
2256 be32_to_cpu(btree[entno].hashval) < dead_hash;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002257 entno++)
2258 continue;
Dave Chinnerf5ea1102013-04-24 18:58:02 +10002259 if (entno == par_hdr.count) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002260 XFS_ERROR_REPORT("xfs_da_swap_lastblock(5)",
2261 XFS_ERRLEVEL_LOW, mp);
2262 error = XFS_ERROR(EFSCORRUPTED);
2263 goto done;
2264 }
Dave Chinnerf5ea1102013-04-24 18:58:02 +10002265 par_blkno = be32_to_cpu(btree[entno].before);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002266 if (level == dead_level + 1)
2267 break;
Dave Chinner1d9025e2012-06-22 18:50:14 +10002268 xfs_trans_brelse(tp, par_buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002269 par_buf = NULL;
2270 }
2271 /*
2272 * We're in the right parent block.
2273 * Look for the right entry.
2274 */
2275 for (;;) {
2276 for (;
Dave Chinnerf5ea1102013-04-24 18:58:02 +10002277 entno < par_hdr.count &&
2278 be32_to_cpu(btree[entno].before) != last_blkno;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002279 entno++)
2280 continue;
Dave Chinnerf5ea1102013-04-24 18:58:02 +10002281 if (entno < par_hdr.count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002282 break;
Dave Chinnerf5ea1102013-04-24 18:58:02 +10002283 par_blkno = par_hdr.forw;
Dave Chinner1d9025e2012-06-22 18:50:14 +10002284 xfs_trans_brelse(tp, par_buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002285 par_buf = NULL;
2286 if (unlikely(par_blkno == 0)) {
2287 XFS_ERROR_REPORT("xfs_da_swap_lastblock(6)",
2288 XFS_ERRLEVEL_LOW, mp);
2289 error = XFS_ERROR(EFSCORRUPTED);
2290 goto done;
2291 }
Dave Chinnerf5ea1102013-04-24 18:58:02 +10002292 error = xfs_da3_node_read(tp, ip, par_blkno, -1, &par_buf, w);
Dave Chinner4bb20a82012-11-12 22:54:10 +11002293 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002294 goto done;
Dave Chinner1d9025e2012-06-22 18:50:14 +10002295 par_node = par_buf->b_addr;
Dave Chinnerf5ea1102013-04-24 18:58:02 +10002296 xfs_da3_node_hdr_from_disk(&par_hdr, par_node);
2297 if (par_hdr.level != level) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002298 XFS_ERROR_REPORT("xfs_da_swap_lastblock(7)",
2299 XFS_ERRLEVEL_LOW, mp);
2300 error = XFS_ERROR(EFSCORRUPTED);
2301 goto done;
2302 }
Dave Chinnerf5ea1102013-04-24 18:58:02 +10002303 btree = xfs_da3_node_tree_p(par_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002304 entno = 0;
2305 }
2306 /*
2307 * Update the parent entry pointing to the moved block.
2308 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +10002309 btree[entno].before = cpu_to_be32(dead_blkno);
Dave Chinner1d9025e2012-06-22 18:50:14 +10002310 xfs_trans_log_buf(tp, par_buf,
Dave Chinnerf5ea1102013-04-24 18:58:02 +10002311 XFS_DA_LOGRANGE(par_node, &btree[entno].before,
2312 sizeof(btree[entno].before)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002313 *dead_blknop = last_blkno;
2314 *dead_bufp = last_buf;
2315 return 0;
2316done:
2317 if (par_buf)
Dave Chinner1d9025e2012-06-22 18:50:14 +10002318 xfs_trans_brelse(tp, par_buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002319 if (sib_buf)
Dave Chinner1d9025e2012-06-22 18:50:14 +10002320 xfs_trans_brelse(tp, sib_buf);
2321 xfs_trans_brelse(tp, last_buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002322 return error;
2323}
2324
2325/*
2326 * Remove a btree block from a directory or attribute.
2327 */
2328int
Dave Chinner1d9025e2012-06-22 18:50:14 +10002329xfs_da_shrink_inode(
2330 xfs_da_args_t *args,
2331 xfs_dablk_t dead_blkno,
2332 struct xfs_buf *dead_buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002333{
2334 xfs_inode_t *dp;
2335 int done, error, w, count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002336 xfs_trans_t *tp;
2337 xfs_mount_t *mp;
2338
Dave Chinner5a5881c2012-03-22 05:15:13 +00002339 trace_xfs_da_shrink_inode(args);
2340
Linus Torvalds1da177e2005-04-16 15:20:36 -07002341 dp = args->dp;
2342 w = args->whichfork;
2343 tp = args->trans;
2344 mp = dp->i_mount;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +10002345 if (w == XFS_DATA_FORK)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002346 count = mp->m_dirblkfsbs;
2347 else
2348 count = 1;
2349 for (;;) {
2350 /*
2351 * Remove extents. If we get ENOSPC for a dir we have to move
2352 * the last block to the place we want to kill.
2353 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +10002354 error = xfs_bunmapi(tp, dp, dead_blkno, count,
2355 xfs_bmapi_aflag(w)|XFS_BMAPI_METADATA,
2356 0, args->firstblock, args->flist, &done);
2357 if (error == ENOSPC) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002358 if (w != XFS_DATA_FORK)
Nathan Scottf6c2d1f2006-06-20 13:04:51 +10002359 break;
Dave Chinnerf5ea1102013-04-24 18:58:02 +10002360 error = xfs_da3_swap_lastblock(args, &dead_blkno,
2361 &dead_buf);
2362 if (error)
Nathan Scottf6c2d1f2006-06-20 13:04:51 +10002363 break;
2364 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002365 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002366 }
2367 }
Dave Chinner1d9025e2012-06-22 18:50:14 +10002368 xfs_trans_binval(tp, dead_buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002369 return error;
2370}
2371
2372/*
2373 * See if the mapping(s) for this btree block are valid, i.e.
2374 * don't contain holes, are logically contiguous, and cover the whole range.
2375 */
2376STATIC int
2377xfs_da_map_covers_blocks(
2378 int nmap,
2379 xfs_bmbt_irec_t *mapp,
2380 xfs_dablk_t bno,
2381 int count)
2382{
2383 int i;
2384 xfs_fileoff_t off;
2385
2386 for (i = 0, off = bno; i < nmap; i++) {
2387 if (mapp[i].br_startblock == HOLESTARTBLOCK ||
2388 mapp[i].br_startblock == DELAYSTARTBLOCK) {
2389 return 0;
2390 }
2391 if (off != mapp[i].br_startoff) {
2392 return 0;
2393 }
2394 off += mapp[i].br_blockcount;
2395 }
2396 return off == bno + count;
2397}
2398
2399/*
Dave Chinner36054312012-06-22 18:50:13 +10002400 * Convert a struct xfs_bmbt_irec to a struct xfs_buf_map.
2401 *
2402 * For the single map case, it is assumed that the caller has provided a pointer
2403 * to a valid xfs_buf_map. For the multiple map case, this function will
2404 * allocate the xfs_buf_map to hold all the maps and replace the caller's single
2405 * map pointer with the allocated map.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002406 */
Dave Chinner36054312012-06-22 18:50:13 +10002407static int
2408xfs_buf_map_from_irec(
2409 struct xfs_mount *mp,
2410 struct xfs_buf_map **mapp,
2411 unsigned int *nmaps,
2412 struct xfs_bmbt_irec *irecs,
2413 unsigned int nirecs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002414{
Dave Chinner36054312012-06-22 18:50:13 +10002415 struct xfs_buf_map *map;
2416 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002417
Dave Chinner36054312012-06-22 18:50:13 +10002418 ASSERT(*nmaps == 1);
2419 ASSERT(nirecs >= 1);
2420
2421 if (nirecs > 1) {
2422 map = kmem_zalloc(nirecs * sizeof(struct xfs_buf_map), KM_SLEEP);
2423 if (!map)
2424 return ENOMEM;
2425 *mapp = map;
2426 }
2427
2428 *nmaps = nirecs;
2429 map = *mapp;
2430 for (i = 0; i < *nmaps; i++) {
2431 ASSERT(irecs[i].br_startblock != DELAYSTARTBLOCK &&
2432 irecs[i].br_startblock != HOLESTARTBLOCK);
2433 map[i].bm_bn = XFS_FSB_TO_DADDR(mp, irecs[i].br_startblock);
2434 map[i].bm_len = XFS_FSB_TO_BB(mp, irecs[i].br_blockcount);
2435 }
2436 return 0;
2437}
2438
2439/*
2440 * Map the block we are given ready for reading. There are three possible return
2441 * values:
2442 * -1 - will be returned if we land in a hole and mappedbno == -2 so the
2443 * caller knows not to execute a subsequent read.
2444 * 0 - if we mapped the block successfully
2445 * >0 - positive error number if there was an error.
2446 */
2447static int
2448xfs_dabuf_map(
2449 struct xfs_trans *trans,
2450 struct xfs_inode *dp,
2451 xfs_dablk_t bno,
2452 xfs_daddr_t mappedbno,
2453 int whichfork,
2454 struct xfs_buf_map **map,
2455 int *nmaps)
2456{
2457 struct xfs_mount *mp = dp->i_mount;
2458 int nfsb;
2459 int error = 0;
2460 struct xfs_bmbt_irec irec;
2461 struct xfs_bmbt_irec *irecs = &irec;
2462 int nirecs;
2463
2464 ASSERT(map && *map);
2465 ASSERT(*nmaps == 1);
2466
Nathan Scottf6c2d1f2006-06-20 13:04:51 +10002467 nfsb = (whichfork == XFS_DATA_FORK) ? mp->m_dirblkfsbs : 1;
Dave Chinner36054312012-06-22 18:50:13 +10002468
Linus Torvalds1da177e2005-04-16 15:20:36 -07002469 /*
2470 * Caller doesn't have a mapping. -2 means don't complain
2471 * if we land in a hole.
2472 */
2473 if (mappedbno == -1 || mappedbno == -2) {
2474 /*
2475 * Optimize the one-block case.
2476 */
Dave Chinner36054312012-06-22 18:50:13 +10002477 if (nfsb != 1)
2478 irecs = kmem_zalloc(sizeof(irec) * nfsb, KM_SLEEP);
Dave Chinner5b777ad2011-09-18 20:40:46 +00002479
Dave Chinner36054312012-06-22 18:50:13 +10002480 nirecs = nfsb;
2481 error = xfs_bmapi_read(dp, (xfs_fileoff_t)bno, nfsb, irecs,
2482 &nirecs, xfs_bmapi_aflag(whichfork));
Dave Chinner5b777ad2011-09-18 20:40:46 +00002483 if (error)
Dave Chinner36054312012-06-22 18:50:13 +10002484 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002485 } else {
Dave Chinner36054312012-06-22 18:50:13 +10002486 irecs->br_startblock = XFS_DADDR_TO_FSB(mp, mappedbno);
2487 irecs->br_startoff = (xfs_fileoff_t)bno;
2488 irecs->br_blockcount = nfsb;
2489 irecs->br_state = 0;
2490 nirecs = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002491 }
Dave Chinner36054312012-06-22 18:50:13 +10002492
2493 if (!xfs_da_map_covers_blocks(nirecs, irecs, bno, nfsb)) {
2494 error = mappedbno == -2 ? -1 : XFS_ERROR(EFSCORRUPTED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002495 if (unlikely(error == EFSCORRUPTED)) {
2496 if (xfs_error_level >= XFS_ERRLEVEL_LOW) {
Dave Chinner36054312012-06-22 18:50:13 +10002497 int i;
Dave Chinner0b932cc2011-03-07 10:08:35 +11002498 xfs_alert(mp, "%s: bno %lld dir: inode %lld",
2499 __func__, (long long)bno,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002500 (long long)dp->i_ino);
Dave Chinner36054312012-06-22 18:50:13 +10002501 for (i = 0; i < *nmaps; i++) {
Dave Chinner0b932cc2011-03-07 10:08:35 +11002502 xfs_alert(mp,
2503"[%02d] br_startoff %lld br_startblock %lld br_blockcount %lld br_state %d",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002504 i,
Dave Chinner36054312012-06-22 18:50:13 +10002505 (long long)irecs[i].br_startoff,
2506 (long long)irecs[i].br_startblock,
2507 (long long)irecs[i].br_blockcount,
2508 irecs[i].br_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002509 }
2510 }
2511 XFS_ERROR_REPORT("xfs_da_do_buf(1)",
2512 XFS_ERRLEVEL_LOW, mp);
2513 }
Dave Chinner36054312012-06-22 18:50:13 +10002514 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002515 }
Dave Chinner36054312012-06-22 18:50:13 +10002516 error = xfs_buf_map_from_irec(mp, map, nmaps, irecs, nirecs);
2517out:
2518 if (irecs != &irec)
2519 kmem_free(irecs);
2520 return error;
2521}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002522
Dave Chinner36054312012-06-22 18:50:13 +10002523/*
2524 * Get a buffer for the dir/attr block.
2525 */
2526int
2527xfs_da_get_buf(
2528 struct xfs_trans *trans,
2529 struct xfs_inode *dp,
2530 xfs_dablk_t bno,
2531 xfs_daddr_t mappedbno,
Dave Chinner1d9025e2012-06-22 18:50:14 +10002532 struct xfs_buf **bpp,
Dave Chinner36054312012-06-22 18:50:13 +10002533 int whichfork)
2534{
2535 struct xfs_buf *bp;
2536 struct xfs_buf_map map;
2537 struct xfs_buf_map *mapp;
2538 int nmap;
2539 int error;
2540
2541 *bpp = NULL;
2542 mapp = &map;
2543 nmap = 1;
2544 error = xfs_dabuf_map(trans, dp, bno, mappedbno, whichfork,
2545 &mapp, &nmap);
2546 if (error) {
2547 /* mapping a hole is not an error, but we don't continue */
2548 if (error == -1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002549 error = 0;
Dave Chinner36054312012-06-22 18:50:13 +10002550 goto out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002551 }
Dave Chinner36054312012-06-22 18:50:13 +10002552
2553 bp = xfs_trans_get_buf_map(trans, dp->i_mount->m_ddev_targp,
2554 mapp, nmap, 0);
2555 error = bp ? bp->b_error : XFS_ERROR(EIO);
2556 if (error) {
2557 xfs_trans_brelse(trans, bp);
2558 goto out_free;
2559 }
2560
Dave Chinner1d9025e2012-06-22 18:50:14 +10002561 *bpp = bp;
Dave Chinner36054312012-06-22 18:50:13 +10002562
2563out_free:
2564 if (mapp != &map)
2565 kmem_free(mapp);
2566
2567 return error;
2568}
2569
2570/*
2571 * Get a buffer for the dir/attr block, fill in the contents.
2572 */
2573int
2574xfs_da_read_buf(
2575 struct xfs_trans *trans,
2576 struct xfs_inode *dp,
2577 xfs_dablk_t bno,
2578 xfs_daddr_t mappedbno,
Dave Chinner1d9025e2012-06-22 18:50:14 +10002579 struct xfs_buf **bpp,
Dave Chinner4bb20a82012-11-12 22:54:10 +11002580 int whichfork,
Dave Chinner1813dd62012-11-14 17:54:40 +11002581 const struct xfs_buf_ops *ops)
Dave Chinner36054312012-06-22 18:50:13 +10002582{
2583 struct xfs_buf *bp;
2584 struct xfs_buf_map map;
2585 struct xfs_buf_map *mapp;
2586 int nmap;
2587 int error;
2588
2589 *bpp = NULL;
2590 mapp = &map;
2591 nmap = 1;
2592 error = xfs_dabuf_map(trans, dp, bno, mappedbno, whichfork,
2593 &mapp, &nmap);
2594 if (error) {
2595 /* mapping a hole is not an error, but we don't continue */
2596 if (error == -1)
2597 error = 0;
2598 goto out_free;
2599 }
2600
2601 error = xfs_trans_read_buf_map(dp->i_mount, trans,
2602 dp->i_mount->m_ddev_targp,
Dave Chinner1813dd62012-11-14 17:54:40 +11002603 mapp, nmap, 0, &bp, ops);
Dave Chinner36054312012-06-22 18:50:13 +10002604 if (error)
2605 goto out_free;
2606
2607 if (whichfork == XFS_ATTR_FORK)
2608 xfs_buf_set_ref(bp, XFS_ATTR_BTREE_REF);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002609 else
Dave Chinner36054312012-06-22 18:50:13 +10002610 xfs_buf_set_ref(bp, XFS_DIR_BTREE_REF);
2611
Linus Torvalds1da177e2005-04-16 15:20:36 -07002612 /*
Dave Chinner36054312012-06-22 18:50:13 +10002613 * This verification code will be moved to a CRC verification callback
2614 * function so just leave it here unchanged until then.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002615 */
Dave Chinner36054312012-06-22 18:50:13 +10002616 {
Dave Chinner1d9025e2012-06-22 18:50:14 +10002617 xfs_dir2_data_hdr_t *hdr = bp->b_addr;
2618 xfs_dir2_free_t *free = bp->b_addr;
2619 xfs_da_blkinfo_t *info = bp->b_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002620 uint magic, magic1;
Dave Chinner36054312012-06-22 18:50:13 +10002621 struct xfs_mount *mp = dp->i_mount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002622
Nathan Scott89da0542006-03-17 17:28:40 +11002623 magic = be16_to_cpu(info->magic);
Christoph Hellwigc2066e22011-07-08 14:35:38 +02002624 magic1 = be32_to_cpu(hdr->magic);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002625 if (unlikely(
2626 XFS_TEST_ERROR((magic != XFS_DA_NODE_MAGIC) &&
Dave Chinnerf5ea1102013-04-24 18:58:02 +10002627 (magic != XFS_DA3_NODE_MAGIC) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07002628 (magic != XFS_ATTR_LEAF_MAGIC) &&
2629 (magic != XFS_DIR2_LEAF1_MAGIC) &&
Dave Chinner24df33b2013-04-12 07:30:21 +10002630 (magic != XFS_DIR3_LEAF1_MAGIC) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07002631 (magic != XFS_DIR2_LEAFN_MAGIC) &&
Dave Chinner24df33b2013-04-12 07:30:21 +10002632 (magic != XFS_DIR3_LEAFN_MAGIC) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07002633 (magic1 != XFS_DIR2_BLOCK_MAGIC) &&
Dave Chinner24df33b2013-04-12 07:30:21 +10002634 (magic1 != XFS_DIR3_BLOCK_MAGIC) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07002635 (magic1 != XFS_DIR2_DATA_MAGIC) &&
Dave Chinner24df33b2013-04-12 07:30:21 +10002636 (magic1 != XFS_DIR3_DATA_MAGIC) &&
2637 (free->hdr.magic !=
2638 cpu_to_be32(XFS_DIR2_FREE_MAGIC)) &&
2639 (free->hdr.magic !=
2640 cpu_to_be32(XFS_DIR3_FREE_MAGIC)),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002641 mp, XFS_ERRTAG_DA_READ_BUF,
2642 XFS_RANDOM_DA_READ_BUF))) {
Dave Chinner36054312012-06-22 18:50:13 +10002643 trace_xfs_da_btree_corrupt(bp, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002644 XFS_CORRUPTION_ERROR("xfs_da_do_buf(2)",
2645 XFS_ERRLEVEL_LOW, mp, info);
2646 error = XFS_ERROR(EFSCORRUPTED);
Dave Chinner1d9025e2012-06-22 18:50:14 +10002647 xfs_trans_brelse(trans, bp);
Dave Chinner36054312012-06-22 18:50:13 +10002648 goto out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002649 }
2650 }
Dave Chinner1d9025e2012-06-22 18:50:14 +10002651 *bpp = bp;
Dave Chinner36054312012-06-22 18:50:13 +10002652out_free:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002653 if (mapp != &map)
Denys Vlasenkof0e2d932008-05-19 16:31:57 +10002654 kmem_free(mapp);
Dave Chinner36054312012-06-22 18:50:13 +10002655
Linus Torvalds1da177e2005-04-16 15:20:36 -07002656 return error;
2657}
2658
2659/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002660 * Readahead the dir/attr block.
2661 */
2662xfs_daddr_t
2663xfs_da_reada_buf(
Dave Chinner36054312012-06-22 18:50:13 +10002664 struct xfs_trans *trans,
2665 struct xfs_inode *dp,
2666 xfs_dablk_t bno,
Dave Chinnerda6958c2012-11-12 22:54:18 +11002667 xfs_daddr_t mappedbno,
Dave Chinner4bb20a82012-11-12 22:54:10 +11002668 int whichfork,
Dave Chinner1813dd62012-11-14 17:54:40 +11002669 const struct xfs_buf_ops *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002670{
Dave Chinner36054312012-06-22 18:50:13 +10002671 struct xfs_buf_map map;
2672 struct xfs_buf_map *mapp;
2673 int nmap;
2674 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002675
Dave Chinner36054312012-06-22 18:50:13 +10002676 mapp = &map;
2677 nmap = 1;
Dave Chinnerda6958c2012-11-12 22:54:18 +11002678 error = xfs_dabuf_map(trans, dp, bno, mappedbno, whichfork,
Dave Chinner36054312012-06-22 18:50:13 +10002679 &mapp, &nmap);
2680 if (error) {
2681 /* mapping a hole is not an error, but we don't continue */
2682 if (error == -1)
2683 error = 0;
2684 goto out_free;
2685 }
2686
2687 mappedbno = mapp[0].bm_bn;
Dave Chinner1813dd62012-11-14 17:54:40 +11002688 xfs_buf_readahead_map(dp->i_mount->m_ddev_targp, mapp, nmap, ops);
Dave Chinner36054312012-06-22 18:50:13 +10002689
2690out_free:
2691 if (mapp != &map)
2692 kmem_free(mapp);
2693
2694 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002695 return -1;
Dave Chinner36054312012-06-22 18:50:13 +10002696 return mappedbno;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002697}