blob: 0b8b2a13cd24debe493c8982679a2c565ebae5a1 [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);
Dave Chinner517c2222013-04-24 18:58:55 +1000146 to->count = be16_to_cpu(hdr3->__count);
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000147 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);
Dave Chinner517c2222013-04-24 18:58:55 +1000153 to->count = be16_to_cpu(from->hdr.__count);
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000154 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);
Dave Chinner517c2222013-04-24 18:58:55 +1000171 hdr3->__count = cpu_to_be16(from->count);
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000172 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);
Dave Chinner517c2222013-04-24 18:58:55 +1000178 to->hdr.__count = cpu_to_be16(from->count);
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000179 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 Chinner7ced60c2013-05-20 09:51:13 +1000273 case XFS_ATTR3_LEAF_MAGIC:
Dave Chinner517c2222013-04-24 18:58:55 +1000274 bp->b_ops = &xfs_attr3_leaf_buf_ops;
Dave Chinner1813dd62012-11-14 17:54:40 +1100275 bp->b_ops->verify_read(bp);
Dave Chinnerd9392a42012-11-12 22:54:17 +1100276 return;
277 case XFS_DIR2_LEAFN_MAGIC:
Dave Chinner24df33b2013-04-12 07:30:21 +1000278 case XFS_DIR3_LEAFN_MAGIC:
279 bp->b_ops = &xfs_dir3_leafn_buf_ops;
Dave Chinner1813dd62012-11-14 17:54:40 +1100280 bp->b_ops->verify_read(bp);
Dave Chinnerd9392a42012-11-12 22:54:17 +1100281 return;
282 default:
283 break;
284 }
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000285
286 /* corrupt block */
287 XFS_CORRUPTION_ERROR(__func__, XFS_ERRLEVEL_LOW, mp, bp->b_addr);
288 xfs_buf_ioerror(bp, EFSCORRUPTED);
Dave Chinnerd9392a42012-11-12 22:54:17 +1100289}
290
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000291const struct xfs_buf_ops xfs_da3_node_buf_ops = {
292 .verify_read = xfs_da3_node_read_verify,
293 .verify_write = xfs_da3_node_write_verify,
Dave Chinner1813dd62012-11-14 17:54:40 +1100294};
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{
Dave Chinnerd75afeb2013-04-03 16:11:29 +1100305 int err;
306
307 err = xfs_da_read_buf(tp, dp, bno, mappedbno, bpp,
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000308 which_fork, &xfs_da3_node_buf_ops);
Dave Chinnerd75afeb2013-04-03 16:11:29 +1100309 if (!err && tp) {
310 struct xfs_da_blkinfo *info = (*bpp)->b_addr;
311 int type;
312
313 switch (be16_to_cpu(info->magic)) {
Dave Chinnerd75afeb2013-04-03 16:11:29 +1100314 case XFS_DA_NODE_MAGIC:
Dave Chinnercab09a82013-04-30 21:39:36 +1000315 case XFS_DA3_NODE_MAGIC:
Dave Chinner61fe1352013-04-03 16:11:30 +1100316 type = XFS_BLFT_DA_NODE_BUF;
Dave Chinnerd75afeb2013-04-03 16:11:29 +1100317 break;
318 case XFS_ATTR_LEAF_MAGIC:
319 case XFS_ATTR3_LEAF_MAGIC:
Dave Chinner61fe1352013-04-03 16:11:30 +1100320 type = XFS_BLFT_ATTR_LEAF_BUF;
Dave Chinnerd75afeb2013-04-03 16:11:29 +1100321 break;
322 case XFS_DIR2_LEAFN_MAGIC:
323 case XFS_DIR3_LEAFN_MAGIC:
Dave Chinner61fe1352013-04-03 16:11:30 +1100324 type = XFS_BLFT_DIR_LEAFN_BUF;
Dave Chinnerd75afeb2013-04-03 16:11:29 +1100325 break;
326 default:
327 type = 0;
328 ASSERT(0);
329 break;
330 }
331 xfs_trans_buf_set_type(tp, *bpp, type);
332 }
333 return err;
Dave Chinnerd9392a42012-11-12 22:54:17 +1100334}
335
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336/*========================================================================
337 * Routines used for growing the Btree.
338 *========================================================================*/
339
340/*
341 * Create the initial contents of an intermediate node.
342 */
343int
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000344xfs_da3_node_create(
345 struct xfs_da_args *args,
346 xfs_dablk_t blkno,
347 int level,
348 struct xfs_buf **bpp,
349 int whichfork)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350{
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000351 struct xfs_da_intnode *node;
352 struct xfs_trans *tp = args->trans;
353 struct xfs_mount *mp = tp->t_mountp;
354 struct xfs_da3_icnode_hdr ichdr = {0};
355 struct xfs_buf *bp;
356 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357
Dave Chinner5a5881c2012-03-22 05:15:13 +0000358 trace_xfs_da_node_create(args);
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000359 ASSERT(level <= XFS_DA_NODE_MAXDEPTH);
Dave Chinner5a5881c2012-03-22 05:15:13 +0000360
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 error = xfs_da_get_buf(tp, args->dp, blkno, -1, &bp, whichfork);
362 if (error)
363 return(error);
Dave Chinnerd75afeb2013-04-03 16:11:29 +1100364 bp->b_ops = &xfs_da3_node_buf_ops;
Dave Chinner61fe1352013-04-03 16:11:30 +1100365 xfs_trans_buf_set_type(tp, bp, XFS_BLFT_DA_NODE_BUF);
Dave Chinner1d9025e2012-06-22 18:50:14 +1000366 node = bp->b_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000368 if (xfs_sb_version_hascrc(&mp->m_sb)) {
369 struct xfs_da3_node_hdr *hdr3 = bp->b_addr;
370
371 ichdr.magic = XFS_DA3_NODE_MAGIC;
372 hdr3->info.blkno = cpu_to_be64(bp->b_bn);
373 hdr3->info.owner = cpu_to_be64(args->dp->i_ino);
374 uuid_copy(&hdr3->info.uuid, &mp->m_sb.sb_uuid);
375 } else {
376 ichdr.magic = XFS_DA_NODE_MAGIC;
377 }
378 ichdr.level = level;
379
380 xfs_da3_node_hdr_to_disk(node, &ichdr);
Dave Chinner1d9025e2012-06-22 18:50:14 +1000381 xfs_trans_log_buf(tp, bp,
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000382 XFS_DA_LOGRANGE(node, &node->hdr, xfs_da3_node_hdr_size(node)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383
384 *bpp = bp;
385 return(0);
386}
387
388/*
389 * Split a leaf node, rebalance, then possibly split
390 * intermediate nodes, rebalance, etc.
391 */
392int /* error */
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000393xfs_da3_split(
394 struct xfs_da_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395{
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000396 struct xfs_da_state_blk *oldblk;
397 struct xfs_da_state_blk *newblk;
398 struct xfs_da_state_blk *addblk;
399 struct xfs_da_intnode *node;
400 struct xfs_buf *bp;
401 int max;
402 int action;
403 int error;
404 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405
Dave Chinner5a5881c2012-03-22 05:15:13 +0000406 trace_xfs_da_split(state->args);
407
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 /*
409 * Walk back up the tree splitting/inserting/adjusting as necessary.
410 * If we need to insert and there isn't room, split the node, then
411 * decide which fragment to insert the new block from below into.
412 * Note that we may split the root this way, but we need more fixup.
413 */
414 max = state->path.active - 1;
415 ASSERT((max >= 0) && (max < XFS_DA_NODE_MAXDEPTH));
416 ASSERT(state->path.blk[max].magic == XFS_ATTR_LEAF_MAGIC ||
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000417 state->path.blk[max].magic == XFS_DIR2_LEAFN_MAGIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418
419 addblk = &state->path.blk[max]; /* initial dummy value */
420 for (i = max; (i >= 0) && addblk; state->path.active--, i--) {
421 oldblk = &state->path.blk[i];
422 newblk = &state->altpath.blk[i];
423
424 /*
425 * If a leaf node then
426 * Allocate a new leaf node, then rebalance across them.
427 * else if an intermediate node then
428 * We split on the last layer, must we split the node?
429 */
430 switch (oldblk->magic) {
431 case XFS_ATTR_LEAF_MAGIC:
Dave Chinner517c2222013-04-24 18:58:55 +1000432 error = xfs_attr3_leaf_split(state, oldblk, newblk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 if ((error != 0) && (error != ENOSPC)) {
434 return(error); /* GROT: attr is inconsistent */
435 }
436 if (!error) {
437 addblk = newblk;
438 break;
439 }
440 /*
441 * Entry wouldn't fit, split the leaf again.
442 */
443 state->extravalid = 1;
444 if (state->inleaf) {
445 state->extraafter = 0; /* before newblk */
Dave Chinner5a5881c2012-03-22 05:15:13 +0000446 trace_xfs_attr_leaf_split_before(state->args);
Dave Chinner517c2222013-04-24 18:58:55 +1000447 error = xfs_attr3_leaf_split(state, oldblk,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 &state->extrablk);
449 } else {
450 state->extraafter = 1; /* after newblk */
Dave Chinner5a5881c2012-03-22 05:15:13 +0000451 trace_xfs_attr_leaf_split_after(state->args);
Dave Chinner517c2222013-04-24 18:58:55 +1000452 error = xfs_attr3_leaf_split(state, newblk,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 &state->extrablk);
454 }
455 if (error)
456 return(error); /* GROT: attr inconsistent */
457 addblk = newblk;
458 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 case XFS_DIR2_LEAFN_MAGIC:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 error = xfs_dir2_leafn_split(state, oldblk, newblk);
461 if (error)
462 return error;
463 addblk = newblk;
464 break;
465 case XFS_DA_NODE_MAGIC:
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000466 error = xfs_da3_node_split(state, oldblk, newblk, addblk,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 max - i, &action);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 addblk->bp = NULL;
469 if (error)
470 return(error); /* GROT: dir is inconsistent */
471 /*
472 * Record the newly split block for the next time thru?
473 */
474 if (action)
475 addblk = newblk;
476 else
477 addblk = NULL;
478 break;
479 }
480
481 /*
482 * Update the btree to show the new hashval for this child.
483 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000484 xfs_da3_fixhashpath(state, &state->path);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 }
486 if (!addblk)
487 return(0);
488
489 /*
490 * Split the root node.
491 */
492 ASSERT(state->path.active == 0);
493 oldblk = &state->path.blk[0];
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000494 error = xfs_da3_root_split(state, oldblk, addblk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 addblk->bp = NULL;
497 return(error); /* GROT: dir is inconsistent */
498 }
499
500 /*
501 * Update pointers to the node which used to be block 0 and
502 * just got bumped because of the addition of a new root node.
503 * There might be three blocks involved if a double split occurred,
504 * and the original block 0 could be at any position in the list.
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000505 *
506 * Note: the magic numbers and sibling pointers are in the same
507 * physical place for both v2 and v3 headers (by design). Hence it
508 * doesn't matter which version of the xfs_da_intnode structure we use
509 * here as the result will be the same using either structure.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 */
Dave Chinner1d9025e2012-06-22 18:50:14 +1000511 node = oldblk->bp->b_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 if (node->hdr.info.forw) {
Nathan Scott89da0542006-03-17 17:28:40 +1100513 if (be32_to_cpu(node->hdr.info.forw) == addblk->blkno) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 bp = addblk->bp;
515 } else {
516 ASSERT(state->extravalid);
517 bp = state->extrablk.bp;
518 }
Dave Chinner1d9025e2012-06-22 18:50:14 +1000519 node = bp->b_addr;
Nathan Scott89da0542006-03-17 17:28:40 +1100520 node->hdr.info.back = cpu_to_be32(oldblk->blkno);
Dave Chinner1d9025e2012-06-22 18:50:14 +1000521 xfs_trans_log_buf(state->args->trans, bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 XFS_DA_LOGRANGE(node, &node->hdr.info,
523 sizeof(node->hdr.info)));
524 }
Dave Chinner1d9025e2012-06-22 18:50:14 +1000525 node = oldblk->bp->b_addr;
Nathan Scott89da0542006-03-17 17:28:40 +1100526 if (node->hdr.info.back) {
527 if (be32_to_cpu(node->hdr.info.back) == addblk->blkno) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 bp = addblk->bp;
529 } else {
530 ASSERT(state->extravalid);
531 bp = state->extrablk.bp;
532 }
Dave Chinner1d9025e2012-06-22 18:50:14 +1000533 node = bp->b_addr;
Nathan Scott89da0542006-03-17 17:28:40 +1100534 node->hdr.info.forw = cpu_to_be32(oldblk->blkno);
Dave Chinner1d9025e2012-06-22 18:50:14 +1000535 xfs_trans_log_buf(state->args->trans, bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 XFS_DA_LOGRANGE(node, &node->hdr.info,
537 sizeof(node->hdr.info)));
538 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 addblk->bp = NULL;
540 return(0);
541}
542
543/*
544 * Split the root. We have to create a new root and point to the two
545 * parts (the split old root) that we just created. Copy block zero to
546 * the EOF, extending the inode in process.
547 */
548STATIC int /* error */
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000549xfs_da3_root_split(
550 struct xfs_da_state *state,
551 struct xfs_da_state_blk *blk1,
552 struct xfs_da_state_blk *blk2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553{
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000554 struct xfs_da_intnode *node;
555 struct xfs_da_intnode *oldroot;
556 struct xfs_da_node_entry *btree;
557 struct xfs_da3_icnode_hdr nodehdr;
558 struct xfs_da_args *args;
559 struct xfs_buf *bp;
560 struct xfs_inode *dp;
561 struct xfs_trans *tp;
562 struct xfs_mount *mp;
563 struct xfs_dir2_leaf *leaf;
564 xfs_dablk_t blkno;
565 int level;
566 int error;
567 int size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568
Dave Chinner5a5881c2012-03-22 05:15:13 +0000569 trace_xfs_da_root_split(state->args);
570
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 /*
572 * Copy the existing (incorrect) block from the root node position
573 * to a free space somewhere.
574 */
575 args = state->args;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 error = xfs_da_grow_inode(args, &blkno);
577 if (error)
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000578 return error;
579
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 dp = args->dp;
581 tp = args->trans;
582 mp = state->mp;
583 error = xfs_da_get_buf(tp, dp, blkno, -1, &bp, args->whichfork);
584 if (error)
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000585 return error;
Dave Chinner1d9025e2012-06-22 18:50:14 +1000586 node = bp->b_addr;
587 oldroot = blk1->bp->b_addr;
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000588 if (oldroot->hdr.info.magic == cpu_to_be16(XFS_DA_NODE_MAGIC) ||
589 oldroot->hdr.info.magic == cpu_to_be16(XFS_DA3_NODE_MAGIC)) {
590 struct xfs_da3_icnode_hdr nodehdr;
591
592 xfs_da3_node_hdr_from_disk(&nodehdr, oldroot);
593 btree = xfs_da3_node_tree_p(oldroot);
594 size = (int)((char *)&btree[nodehdr.count] - (char *)oldroot);
595 level = nodehdr.level;
Dave Chinnerd75afeb2013-04-03 16:11:29 +1100596
597 /*
598 * we are about to copy oldroot to bp, so set up the type
599 * of bp while we know exactly what it will be.
600 */
Dave Chinner61fe1352013-04-03 16:11:30 +1100601 xfs_trans_buf_set_type(tp, bp, XFS_BLFT_DA_NODE_BUF);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 } else {
Dave Chinner24df33b2013-04-12 07:30:21 +1000603 struct xfs_dir3_icleaf_hdr leafhdr;
604 struct xfs_dir2_leaf_entry *ents;
605
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 leaf = (xfs_dir2_leaf_t *)oldroot;
Dave Chinner24df33b2013-04-12 07:30:21 +1000607 xfs_dir3_leaf_hdr_from_disk(&leafhdr, leaf);
608 ents = xfs_dir3_leaf_ents_p(leaf);
609
610 ASSERT(leafhdr.magic == XFS_DIR2_LEAFN_MAGIC ||
611 leafhdr.magic == XFS_DIR3_LEAFN_MAGIC);
612 size = (int)((char *)&ents[leafhdr.count] - (char *)leaf);
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000613 level = 0;
Dave Chinnerd75afeb2013-04-03 16:11:29 +1100614
615 /*
616 * we are about to copy oldroot to bp, so set up the type
617 * of bp while we know exactly what it will be.
618 */
Dave Chinner61fe1352013-04-03 16:11:30 +1100619 xfs_trans_buf_set_type(tp, bp, XFS_BLFT_DIR_LEAFN_BUF);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 }
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000621
622 /*
623 * we can copy most of the information in the node from one block to
624 * another, but for CRC enabled headers we have to make sure that the
625 * block specific identifiers are kept intact. We update the buffer
626 * directly for this.
627 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 memcpy(node, oldroot, size);
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000629 if (oldroot->hdr.info.magic == cpu_to_be16(XFS_DA3_NODE_MAGIC) ||
630 oldroot->hdr.info.magic == cpu_to_be16(XFS_DIR3_LEAFN_MAGIC)) {
631 struct xfs_da3_intnode *node3 = (struct xfs_da3_intnode *)node;
632
633 node3->hdr.info.blkno = cpu_to_be64(bp->b_bn);
634 }
Dave Chinner1d9025e2012-06-22 18:50:14 +1000635 xfs_trans_log_buf(tp, bp, 0, size - 1);
Dave Chinnerb0f539d2012-11-14 17:53:49 +1100636
Dave Chinner1813dd62012-11-14 17:54:40 +1100637 bp->b_ops = blk1->bp->b_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 blk1->bp = bp;
639 blk1->blkno = blkno;
640
641 /*
642 * Set up the new root node.
643 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000644 error = xfs_da3_node_create(args,
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000645 (args->whichfork == XFS_DATA_FORK) ? mp->m_dirleafblk : 0,
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000646 level + 1, &bp, args->whichfork);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 if (error)
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000648 return error;
649
Dave Chinner1d9025e2012-06-22 18:50:14 +1000650 node = bp->b_addr;
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000651 xfs_da3_node_hdr_from_disk(&nodehdr, node);
652 btree = xfs_da3_node_tree_p(node);
653 btree[0].hashval = cpu_to_be32(blk1->hashval);
654 btree[0].before = cpu_to_be32(blk1->blkno);
655 btree[1].hashval = cpu_to_be32(blk2->hashval);
656 btree[1].before = cpu_to_be32(blk2->blkno);
657 nodehdr.count = 2;
658 xfs_da3_node_hdr_to_disk(node, &nodehdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659
660#ifdef DEBUG
Dave Chinner24df33b2013-04-12 07:30:21 +1000661 if (oldroot->hdr.info.magic == cpu_to_be16(XFS_DIR2_LEAFN_MAGIC) ||
662 oldroot->hdr.info.magic == cpu_to_be16(XFS_DIR3_LEAFN_MAGIC)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 ASSERT(blk1->blkno >= mp->m_dirleafblk &&
664 blk1->blkno < mp->m_dirfreeblk);
665 ASSERT(blk2->blkno >= mp->m_dirleafblk &&
666 blk2->blkno < mp->m_dirfreeblk);
667 }
668#endif
669
670 /* Header is already logged by xfs_da_node_create */
Dave Chinner1d9025e2012-06-22 18:50:14 +1000671 xfs_trans_log_buf(tp, bp,
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000672 XFS_DA_LOGRANGE(node, btree, sizeof(xfs_da_node_entry_t) * 2));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000674 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675}
676
677/*
678 * Split the node, rebalance, then add the new entry.
679 */
680STATIC int /* error */
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000681xfs_da3_node_split(
682 struct xfs_da_state *state,
683 struct xfs_da_state_blk *oldblk,
684 struct xfs_da_state_blk *newblk,
685 struct xfs_da_state_blk *addblk,
686 int treelevel,
687 int *result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688{
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000689 struct xfs_da_intnode *node;
690 struct xfs_da3_icnode_hdr nodehdr;
691 xfs_dablk_t blkno;
692 int newcount;
693 int error;
694 int useextra;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695
Dave Chinner5a5881c2012-03-22 05:15:13 +0000696 trace_xfs_da_node_split(state->args);
697
Dave Chinner1d9025e2012-06-22 18:50:14 +1000698 node = oldblk->bp->b_addr;
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000699 xfs_da3_node_hdr_from_disk(&nodehdr, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700
701 /*
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000702 * With V2 dirs the extra block is data or freespace.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 */
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000704 useextra = state->extravalid && state->args->whichfork == XFS_ATTR_FORK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 newcount = 1 + useextra;
706 /*
707 * Do we have to split the node?
708 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000709 if (nodehdr.count + newcount > state->node_ents) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 /*
711 * Allocate a new node, add to the doubly linked chain of
712 * nodes, then move some of our excess entries into it.
713 */
714 error = xfs_da_grow_inode(state->args, &blkno);
715 if (error)
716 return(error); /* GROT: dir is inconsistent */
717
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000718 error = xfs_da3_node_create(state->args, blkno, treelevel,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 &newblk->bp, state->args->whichfork);
720 if (error)
721 return(error); /* GROT: dir is inconsistent */
722 newblk->blkno = blkno;
723 newblk->magic = XFS_DA_NODE_MAGIC;
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000724 xfs_da3_node_rebalance(state, oldblk, newblk);
725 error = xfs_da3_blk_link(state, oldblk, newblk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 if (error)
727 return(error);
728 *result = 1;
729 } else {
730 *result = 0;
731 }
732
733 /*
734 * Insert the new entry(s) into the correct block
735 * (updating last hashval in the process).
736 *
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000737 * xfs_da3_node_add() inserts BEFORE the given index,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 * and as a result of using node_lookup_int() we always
739 * point to a valid entry (not after one), but a split
740 * operation always results in a new block whose hashvals
741 * FOLLOW the current block.
742 *
743 * If we had double-split op below us, then add the extra block too.
744 */
Dave Chinner1d9025e2012-06-22 18:50:14 +1000745 node = oldblk->bp->b_addr;
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000746 xfs_da3_node_hdr_from_disk(&nodehdr, node);
747 if (oldblk->index <= nodehdr.count) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 oldblk->index++;
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000749 xfs_da3_node_add(state, oldblk, addblk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 if (useextra) {
751 if (state->extraafter)
752 oldblk->index++;
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000753 xfs_da3_node_add(state, oldblk, &state->extrablk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 state->extravalid = 0;
755 }
756 } else {
757 newblk->index++;
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000758 xfs_da3_node_add(state, newblk, addblk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 if (useextra) {
760 if (state->extraafter)
761 newblk->index++;
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000762 xfs_da3_node_add(state, newblk, &state->extrablk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 state->extravalid = 0;
764 }
765 }
766
767 return(0);
768}
769
770/*
771 * Balance the btree elements between two intermediate nodes,
772 * usually one full and one empty.
773 *
774 * NOTE: if blk2 is empty, then it will get the upper half of blk1.
775 */
776STATIC void
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000777xfs_da3_node_rebalance(
778 struct xfs_da_state *state,
779 struct xfs_da_state_blk *blk1,
780 struct xfs_da_state_blk *blk2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781{
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000782 struct xfs_da_intnode *node1;
783 struct xfs_da_intnode *node2;
784 struct xfs_da_intnode *tmpnode;
785 struct xfs_da_node_entry *btree1;
786 struct xfs_da_node_entry *btree2;
787 struct xfs_da_node_entry *btree_s;
788 struct xfs_da_node_entry *btree_d;
789 struct xfs_da3_icnode_hdr nodehdr1;
790 struct xfs_da3_icnode_hdr nodehdr2;
791 struct xfs_trans *tp;
792 int count;
793 int tmp;
794 int swap = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795
Dave Chinner5a5881c2012-03-22 05:15:13 +0000796 trace_xfs_da_node_rebalance(state->args);
797
Dave Chinner1d9025e2012-06-22 18:50:14 +1000798 node1 = blk1->bp->b_addr;
799 node2 = blk2->bp->b_addr;
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000800 xfs_da3_node_hdr_from_disk(&nodehdr1, node1);
801 xfs_da3_node_hdr_from_disk(&nodehdr2, node2);
802 btree1 = xfs_da3_node_tree_p(node1);
803 btree2 = xfs_da3_node_tree_p(node2);
804
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 /*
806 * Figure out how many entries need to move, and in which direction.
807 * Swap the nodes around if that makes it simpler.
808 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000809 if (nodehdr1.count > 0 && nodehdr2.count > 0 &&
810 ((be32_to_cpu(btree2[0].hashval) < be32_to_cpu(btree1[0].hashval)) ||
811 (be32_to_cpu(btree2[nodehdr2.count - 1].hashval) <
812 be32_to_cpu(btree1[nodehdr1.count - 1].hashval)))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 tmpnode = node1;
814 node1 = node2;
815 node2 = tmpnode;
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000816 xfs_da3_node_hdr_from_disk(&nodehdr1, node1);
817 xfs_da3_node_hdr_from_disk(&nodehdr2, node2);
818 btree1 = xfs_da3_node_tree_p(node1);
819 btree2 = xfs_da3_node_tree_p(node2);
820 swap = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 }
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000822
823 count = (nodehdr1.count - nodehdr2.count) / 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 if (count == 0)
825 return;
826 tp = state->args->trans;
827 /*
828 * Two cases: high-to-low and low-to-high.
829 */
830 if (count > 0) {
831 /*
832 * Move elements in node2 up to make a hole.
833 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000834 tmp = nodehdr2.count;
835 if (tmp > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 tmp *= (uint)sizeof(xfs_da_node_entry_t);
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000837 btree_s = &btree2[0];
838 btree_d = &btree2[count];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 memmove(btree_d, btree_s, tmp);
840 }
841
842 /*
843 * Move the req'd B-tree elements from high in node1 to
844 * low in node2.
845 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000846 nodehdr2.count += count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 tmp = count * (uint)sizeof(xfs_da_node_entry_t);
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000848 btree_s = &btree1[nodehdr1.count - count];
849 btree_d = &btree2[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 memcpy(btree_d, btree_s, tmp);
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000851 nodehdr1.count -= count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 } else {
853 /*
854 * Move the req'd B-tree elements from low in node2 to
855 * high in node1.
856 */
857 count = -count;
858 tmp = count * (uint)sizeof(xfs_da_node_entry_t);
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000859 btree_s = &btree2[0];
860 btree_d = &btree1[nodehdr1.count];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 memcpy(btree_d, btree_s, tmp);
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000862 nodehdr1.count += count;
863
Dave Chinner1d9025e2012-06-22 18:50:14 +1000864 xfs_trans_log_buf(tp, blk1->bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 XFS_DA_LOGRANGE(node1, btree_d, tmp));
866
867 /*
868 * Move elements in node2 down to fill the hole.
869 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000870 tmp = nodehdr2.count - count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871 tmp *= (uint)sizeof(xfs_da_node_entry_t);
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000872 btree_s = &btree2[count];
873 btree_d = &btree2[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 memmove(btree_d, btree_s, tmp);
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000875 nodehdr2.count -= count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 }
877
878 /*
879 * Log header of node 1 and all current bits of node 2.
880 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000881 xfs_da3_node_hdr_to_disk(node1, &nodehdr1);
Dave Chinner1d9025e2012-06-22 18:50:14 +1000882 xfs_trans_log_buf(tp, blk1->bp,
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000883 XFS_DA_LOGRANGE(node1, &node1->hdr,
884 xfs_da3_node_hdr_size(node1)));
885
886 xfs_da3_node_hdr_to_disk(node2, &nodehdr2);
Dave Chinner1d9025e2012-06-22 18:50:14 +1000887 xfs_trans_log_buf(tp, blk2->bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888 XFS_DA_LOGRANGE(node2, &node2->hdr,
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000889 xfs_da3_node_hdr_size(node2) +
890 (sizeof(btree2[0]) * nodehdr2.count)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891
892 /*
893 * Record the last hashval from each block for upward propagation.
894 * (note: don't use the swapped node pointers)
895 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000896 if (swap) {
897 node1 = blk1->bp->b_addr;
898 node2 = blk2->bp->b_addr;
899 xfs_da3_node_hdr_from_disk(&nodehdr1, node1);
900 xfs_da3_node_hdr_from_disk(&nodehdr2, node2);
901 btree1 = xfs_da3_node_tree_p(node1);
902 btree2 = xfs_da3_node_tree_p(node2);
903 }
904 blk1->hashval = be32_to_cpu(btree1[nodehdr1.count - 1].hashval);
905 blk2->hashval = be32_to_cpu(btree2[nodehdr2.count - 1].hashval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906
907 /*
908 * Adjust the expected index for insertion.
909 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000910 if (blk1->index >= nodehdr1.count) {
911 blk2->index = blk1->index - nodehdr1.count;
912 blk1->index = nodehdr1.count + 1; /* make it invalid */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 }
914}
915
916/*
917 * Add a new entry to an intermediate node.
918 */
919STATIC void
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000920xfs_da3_node_add(
921 struct xfs_da_state *state,
922 struct xfs_da_state_blk *oldblk,
923 struct xfs_da_state_blk *newblk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924{
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000925 struct xfs_da_intnode *node;
926 struct xfs_da3_icnode_hdr nodehdr;
927 struct xfs_da_node_entry *btree;
928 int tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929
Dave Chinner5a5881c2012-03-22 05:15:13 +0000930 trace_xfs_da_node_add(state->args);
931
Dave Chinner1d9025e2012-06-22 18:50:14 +1000932 node = oldblk->bp->b_addr;
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000933 xfs_da3_node_hdr_from_disk(&nodehdr, node);
934 btree = xfs_da3_node_tree_p(node);
935
936 ASSERT(oldblk->index >= 0 && oldblk->index <= nodehdr.count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 ASSERT(newblk->blkno != 0);
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000938 if (state->args->whichfork == XFS_DATA_FORK)
Christoph Hellwig73523a22010-07-20 17:54:45 +1000939 ASSERT(newblk->blkno >= state->mp->m_dirleafblk &&
940 newblk->blkno < state->mp->m_dirfreeblk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941
942 /*
943 * We may need to make some room before we insert the new node.
944 */
945 tmp = 0;
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000946 if (oldblk->index < nodehdr.count) {
947 tmp = (nodehdr.count - oldblk->index) * (uint)sizeof(*btree);
948 memmove(&btree[oldblk->index + 1], &btree[oldblk->index], tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 }
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000950 btree[oldblk->index].hashval = cpu_to_be32(newblk->hashval);
951 btree[oldblk->index].before = cpu_to_be32(newblk->blkno);
Dave Chinner1d9025e2012-06-22 18:50:14 +1000952 xfs_trans_log_buf(state->args->trans, oldblk->bp,
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000953 XFS_DA_LOGRANGE(node, &btree[oldblk->index],
954 tmp + sizeof(*btree)));
955
956 nodehdr.count += 1;
957 xfs_da3_node_hdr_to_disk(node, &nodehdr);
Dave Chinner1d9025e2012-06-22 18:50:14 +1000958 xfs_trans_log_buf(state->args->trans, oldblk->bp,
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000959 XFS_DA_LOGRANGE(node, &node->hdr, xfs_da3_node_hdr_size(node)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960
961 /*
962 * Copy the last hash value from the oldblk to propagate upwards.
963 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000964 oldblk->hashval = be32_to_cpu(btree[nodehdr.count - 1].hashval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965}
966
967/*========================================================================
968 * Routines used for shrinking the Btree.
969 *========================================================================*/
970
971/*
972 * Deallocate an empty leaf node, remove it from its parent,
973 * possibly deallocating that block, etc...
974 */
975int
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000976xfs_da3_join(
977 struct xfs_da_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978{
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000979 struct xfs_da_state_blk *drop_blk;
980 struct xfs_da_state_blk *save_blk;
981 int action = 0;
982 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983
Dave Chinner5a5881c2012-03-22 05:15:13 +0000984 trace_xfs_da_join(state->args);
985
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 drop_blk = &state->path.blk[ state->path.active-1 ];
987 save_blk = &state->altpath.blk[ state->path.active-1 ];
988 ASSERT(state->path.blk[0].magic == XFS_DA_NODE_MAGIC);
989 ASSERT(drop_blk->magic == XFS_ATTR_LEAF_MAGIC ||
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000990 drop_blk->magic == XFS_DIR2_LEAFN_MAGIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991
992 /*
993 * Walk back up the tree joining/deallocating as necessary.
994 * When we stop dropping blocks, break out.
995 */
996 for ( ; state->path.active >= 2; drop_blk--, save_blk--,
997 state->path.active--) {
998 /*
999 * See if we can combine the block with a neighbor.
1000 * (action == 0) => no options, just leave
1001 * (action == 1) => coalesce, then unlink
1002 * (action == 2) => block empty, unlink it
1003 */
1004 switch (drop_blk->magic) {
1005 case XFS_ATTR_LEAF_MAGIC:
Dave Chinner517c2222013-04-24 18:58:55 +10001006 error = xfs_attr3_leaf_toosmall(state, &action);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007 if (error)
1008 return(error);
1009 if (action == 0)
1010 return(0);
Dave Chinner517c2222013-04-24 18:58:55 +10001011 xfs_attr3_leaf_unbalance(state, drop_blk, save_blk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013 case XFS_DIR2_LEAFN_MAGIC:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 error = xfs_dir2_leafn_toosmall(state, &action);
1015 if (error)
1016 return error;
1017 if (action == 0)
1018 return 0;
1019 xfs_dir2_leafn_unbalance(state, drop_blk, save_blk);
1020 break;
1021 case XFS_DA_NODE_MAGIC:
1022 /*
1023 * Remove the offending node, fixup hashvals,
1024 * check for a toosmall neighbor.
1025 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001026 xfs_da3_node_remove(state, drop_blk);
1027 xfs_da3_fixhashpath(state, &state->path);
1028 error = xfs_da3_node_toosmall(state, &action);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029 if (error)
1030 return(error);
1031 if (action == 0)
1032 return 0;
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001033 xfs_da3_node_unbalance(state, drop_blk, save_blk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034 break;
1035 }
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001036 xfs_da3_fixhashpath(state, &state->altpath);
1037 error = xfs_da3_blk_unlink(state, drop_blk, save_blk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 xfs_da_state_kill_altpath(state);
1039 if (error)
1040 return(error);
1041 error = xfs_da_shrink_inode(state->args, drop_blk->blkno,
1042 drop_blk->bp);
1043 drop_blk->bp = NULL;
1044 if (error)
1045 return(error);
1046 }
1047 /*
1048 * We joined all the way to the top. If it turns out that
1049 * we only have one entry in the root, make the child block
1050 * the new root.
1051 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001052 xfs_da3_node_remove(state, drop_blk);
1053 xfs_da3_fixhashpath(state, &state->path);
1054 error = xfs_da3_root_join(state, &state->path.blk[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055 return(error);
1056}
1057
Alex Elder1c4f3322011-07-18 18:14:09 +00001058#ifdef DEBUG
1059static void
1060xfs_da_blkinfo_onlychild_validate(struct xfs_da_blkinfo *blkinfo, __u16 level)
1061{
1062 __be16 magic = blkinfo->magic;
1063
1064 if (level == 1) {
1065 ASSERT(magic == cpu_to_be16(XFS_DIR2_LEAFN_MAGIC) ||
Dave Chinner24df33b2013-04-12 07:30:21 +10001066 magic == cpu_to_be16(XFS_DIR3_LEAFN_MAGIC) ||
Dave Chinner517c2222013-04-24 18:58:55 +10001067 magic == cpu_to_be16(XFS_ATTR_LEAF_MAGIC) ||
1068 magic == cpu_to_be16(XFS_ATTR3_LEAF_MAGIC));
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001069 } else {
1070 ASSERT(magic == cpu_to_be16(XFS_DA_NODE_MAGIC) ||
1071 magic == cpu_to_be16(XFS_DA3_NODE_MAGIC));
1072 }
Alex Elder1c4f3322011-07-18 18:14:09 +00001073 ASSERT(!blkinfo->forw);
1074 ASSERT(!blkinfo->back);
1075}
1076#else /* !DEBUG */
1077#define xfs_da_blkinfo_onlychild_validate(blkinfo, level)
1078#endif /* !DEBUG */
1079
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080/*
1081 * We have only one entry in the root. Copy the only remaining child of
1082 * the old root to block 0 as the new root node.
1083 */
1084STATIC int
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001085xfs_da3_root_join(
1086 struct xfs_da_state *state,
1087 struct xfs_da_state_blk *root_blk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088{
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001089 struct xfs_da_intnode *oldroot;
1090 struct xfs_da_args *args;
1091 xfs_dablk_t child;
1092 struct xfs_buf *bp;
1093 struct xfs_da3_icnode_hdr oldroothdr;
1094 struct xfs_da_node_entry *btree;
1095 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096
Dave Chinner5a5881c2012-03-22 05:15:13 +00001097 trace_xfs_da_root_join(state->args);
1098
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099 ASSERT(root_blk->magic == XFS_DA_NODE_MAGIC);
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001100
1101 args = state->args;
Dave Chinner1d9025e2012-06-22 18:50:14 +10001102 oldroot = root_blk->bp->b_addr;
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001103 xfs_da3_node_hdr_from_disk(&oldroothdr, oldroot);
1104 ASSERT(oldroothdr.forw == 0);
1105 ASSERT(oldroothdr.back == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106
1107 /*
1108 * If the root has more than one child, then don't do anything.
1109 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001110 if (oldroothdr.count > 1)
1111 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112
1113 /*
1114 * Read in the (only) child block, then copy those bytes into
1115 * the root block's buffer and free the original child block.
1116 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001117 btree = xfs_da3_node_tree_p(oldroot);
1118 child = be32_to_cpu(btree[0].before);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119 ASSERT(child != 0);
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001120 error = xfs_da3_node_read(args->trans, args->dp, child, -1, &bp,
Dave Chinnerd9392a42012-11-12 22:54:17 +11001121 args->whichfork);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122 if (error)
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001123 return error;
1124 xfs_da_blkinfo_onlychild_validate(bp->b_addr, oldroothdr.level);
Alex Elder1c4f3322011-07-18 18:14:09 +00001125
Dave Chinner612cfbf2012-11-14 17:52:32 +11001126 /*
1127 * This could be copying a leaf back into the root block in the case of
1128 * there only being a single leaf block left in the tree. Hence we have
Dave Chinner1813dd62012-11-14 17:54:40 +11001129 * to update the b_ops pointer as well to match the buffer type change
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001130 * that could occur. For dir3 blocks we also need to update the block
1131 * number in the buffer header.
Dave Chinner612cfbf2012-11-14 17:52:32 +11001132 */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001133 memcpy(root_blk->bp->b_addr, bp->b_addr, state->blocksize);
Dave Chinner1813dd62012-11-14 17:54:40 +11001134 root_blk->bp->b_ops = bp->b_ops;
Dave Chinnerd75afeb2013-04-03 16:11:29 +11001135 xfs_trans_buf_copy_type(root_blk->bp, bp);
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001136 if (oldroothdr.magic == XFS_DA3_NODE_MAGIC) {
1137 struct xfs_da3_blkinfo *da3 = root_blk->bp->b_addr;
1138 da3->blkno = cpu_to_be64(root_blk->bp->b_bn);
1139 }
Dave Chinner1d9025e2012-06-22 18:50:14 +10001140 xfs_trans_log_buf(args->trans, root_blk->bp, 0, state->blocksize - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141 error = xfs_da_shrink_inode(args, child, bp);
1142 return(error);
1143}
1144
1145/*
1146 * Check a node block and its neighbors to see if the block should be
1147 * collapsed into one or the other neighbor. Always keep the block
1148 * with the smaller block number.
1149 * If the current block is over 50% full, don't try to join it, return 0.
1150 * If the block is empty, fill in the state structure and return 2.
1151 * If it can be collapsed, fill in the state structure and return 1.
1152 * If nothing can be done, return 0.
1153 */
1154STATIC int
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001155xfs_da3_node_toosmall(
1156 struct xfs_da_state *state,
1157 int *action)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158{
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001159 struct xfs_da_intnode *node;
1160 struct xfs_da_state_blk *blk;
1161 struct xfs_da_blkinfo *info;
1162 xfs_dablk_t blkno;
1163 struct xfs_buf *bp;
1164 struct xfs_da3_icnode_hdr nodehdr;
1165 int count;
1166 int forward;
1167 int error;
1168 int retval;
1169 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170
Dave Chinneree732592012-11-12 22:53:53 +11001171 trace_xfs_da_node_toosmall(state->args);
1172
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173 /*
1174 * Check for the degenerate case of the block being over 50% full.
1175 * If so, it's not worth even looking to see if we might be able
1176 * to coalesce with a sibling.
1177 */
1178 blk = &state->path.blk[ state->path.active-1 ];
Dave Chinner1d9025e2012-06-22 18:50:14 +10001179 info = blk->bp->b_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180 node = (xfs_da_intnode_t *)info;
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001181 xfs_da3_node_hdr_from_disk(&nodehdr, node);
1182 if (nodehdr.count > (state->node_ents >> 1)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183 *action = 0; /* blk over 50%, don't try to join */
1184 return(0); /* blk over 50%, don't try to join */
1185 }
1186
1187 /*
1188 * Check for the degenerate case of the block being empty.
1189 * If the block is empty, we'll simply delete it, no need to
Nathan Scottc41564b2006-03-29 08:55:14 +10001190 * coalesce it with a sibling block. We choose (arbitrarily)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191 * to merge with the forward block unless it is NULL.
1192 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001193 if (nodehdr.count == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194 /*
1195 * Make altpath point to the block we want to keep and
1196 * path point to the block we want to drop (this one).
1197 */
Nathan Scott89da0542006-03-17 17:28:40 +11001198 forward = (info->forw != 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199 memcpy(&state->altpath, &state->path, sizeof(state->path));
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001200 error = xfs_da3_path_shift(state, &state->altpath, forward,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201 0, &retval);
1202 if (error)
1203 return(error);
1204 if (retval) {
1205 *action = 0;
1206 } else {
1207 *action = 2;
1208 }
1209 return(0);
1210 }
1211
1212 /*
1213 * Examine each sibling block to see if we can coalesce with
1214 * at least 25% free space to spare. We need to figure out
1215 * whether to merge with the forward or the backward block.
1216 * We prefer coalescing with the lower numbered sibling so as
1217 * to shrink a directory over time.
1218 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001219 count = state->node_ents;
1220 count -= state->node_ents >> 2;
1221 count -= nodehdr.count;
1222
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223 /* start with smaller blk num */
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001224 forward = nodehdr.forw < nodehdr.back;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225 for (i = 0; i < 2; forward = !forward, i++) {
1226 if (forward)
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001227 blkno = nodehdr.forw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228 else
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001229 blkno = nodehdr.back;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230 if (blkno == 0)
1231 continue;
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001232 error = xfs_da3_node_read(state->args->trans, state->args->dp,
Dave Chinnerd9392a42012-11-12 22:54:17 +11001233 blkno, -1, &bp, state->args->whichfork);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234 if (error)
1235 return(error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236
Dave Chinner1d9025e2012-06-22 18:50:14 +10001237 node = bp->b_addr;
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001238 xfs_da3_node_hdr_from_disk(&nodehdr, node);
Dave Chinner1d9025e2012-06-22 18:50:14 +10001239 xfs_trans_brelse(state->args->trans, bp);
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001240
1241 if (count - nodehdr.count >= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242 break; /* fits with at least 25% to spare */
1243 }
1244 if (i >= 2) {
1245 *action = 0;
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001246 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247 }
1248
1249 /*
1250 * Make altpath point to the block we want to keep (the lower
1251 * numbered block) and path point to the block we want to drop.
1252 */
1253 memcpy(&state->altpath, &state->path, sizeof(state->path));
1254 if (blkno < blk->blkno) {
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001255 error = xfs_da3_path_shift(state, &state->altpath, forward,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256 0, &retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257 } else {
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001258 error = xfs_da3_path_shift(state, &state->path, forward,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259 0, &retval);
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001260 }
1261 if (error)
1262 return error;
1263 if (retval) {
1264 *action = 0;
1265 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266 }
1267 *action = 1;
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001268 return 0;
1269}
1270
1271/*
1272 * Pick up the last hashvalue from an intermediate node.
1273 */
1274STATIC uint
1275xfs_da3_node_lasthash(
1276 struct xfs_buf *bp,
1277 int *count)
1278{
1279 struct xfs_da_intnode *node;
1280 struct xfs_da_node_entry *btree;
1281 struct xfs_da3_icnode_hdr nodehdr;
1282
1283 node = bp->b_addr;
1284 xfs_da3_node_hdr_from_disk(&nodehdr, node);
1285 if (count)
1286 *count = nodehdr.count;
1287 if (!nodehdr.count)
1288 return 0;
1289 btree = xfs_da3_node_tree_p(node);
1290 return be32_to_cpu(btree[nodehdr.count - 1].hashval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291}
1292
1293/*
1294 * Walk back up the tree adjusting hash values as necessary,
1295 * when we stop making changes, return.
1296 */
1297void
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001298xfs_da3_fixhashpath(
1299 struct xfs_da_state *state,
1300 struct xfs_da_state_path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301{
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001302 struct xfs_da_state_blk *blk;
1303 struct xfs_da_intnode *node;
1304 struct xfs_da_node_entry *btree;
1305 xfs_dahash_t lasthash=0;
1306 int level;
1307 int count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308
Dave Chinneree732592012-11-12 22:53:53 +11001309 trace_xfs_da_fixhashpath(state->args);
1310
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311 level = path->active-1;
1312 blk = &path->blk[ level ];
1313 switch (blk->magic) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314 case XFS_ATTR_LEAF_MAGIC:
1315 lasthash = xfs_attr_leaf_lasthash(blk->bp, &count);
1316 if (count == 0)
1317 return;
1318 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319 case XFS_DIR2_LEAFN_MAGIC:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320 lasthash = xfs_dir2_leafn_lasthash(blk->bp, &count);
1321 if (count == 0)
1322 return;
1323 break;
1324 case XFS_DA_NODE_MAGIC:
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001325 lasthash = xfs_da3_node_lasthash(blk->bp, &count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326 if (count == 0)
1327 return;
1328 break;
1329 }
1330 for (blk--, level--; level >= 0; blk--, level--) {
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001331 struct xfs_da3_icnode_hdr nodehdr;
1332
Dave Chinner1d9025e2012-06-22 18:50:14 +10001333 node = blk->bp->b_addr;
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001334 xfs_da3_node_hdr_from_disk(&nodehdr, node);
1335 btree = xfs_da3_node_tree_p(node);
Nathan Scott403432d2006-03-17 17:29:46 +11001336 if (be32_to_cpu(btree->hashval) == lasthash)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337 break;
1338 blk->hashval = lasthash;
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001339 btree[blk->index].hashval = cpu_to_be32(lasthash);
Dave Chinner1d9025e2012-06-22 18:50:14 +10001340 xfs_trans_log_buf(state->args->trans, blk->bp,
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001341 XFS_DA_LOGRANGE(node, &btree[blk->index],
1342 sizeof(*btree)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001344 lasthash = be32_to_cpu(btree[nodehdr.count - 1].hashval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345 }
1346}
1347
1348/*
1349 * Remove an entry from an intermediate node.
1350 */
1351STATIC void
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001352xfs_da3_node_remove(
1353 struct xfs_da_state *state,
1354 struct xfs_da_state_blk *drop_blk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355{
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001356 struct xfs_da_intnode *node;
1357 struct xfs_da3_icnode_hdr nodehdr;
1358 struct xfs_da_node_entry *btree;
1359 int index;
1360 int tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361
Dave Chinner5a5881c2012-03-22 05:15:13 +00001362 trace_xfs_da_node_remove(state->args);
1363
Dave Chinner1d9025e2012-06-22 18:50:14 +10001364 node = drop_blk->bp->b_addr;
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001365 xfs_da3_node_hdr_from_disk(&nodehdr, node);
1366 ASSERT(drop_blk->index < nodehdr.count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367 ASSERT(drop_blk->index >= 0);
1368
1369 /*
1370 * Copy over the offending entry, or just zero it out.
1371 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001372 index = drop_blk->index;
1373 btree = xfs_da3_node_tree_p(node);
1374 if (index < nodehdr.count - 1) {
1375 tmp = nodehdr.count - index - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376 tmp *= (uint)sizeof(xfs_da_node_entry_t);
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001377 memmove(&btree[index], &btree[index + 1], tmp);
Dave Chinner1d9025e2012-06-22 18:50:14 +10001378 xfs_trans_log_buf(state->args->trans, drop_blk->bp,
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001379 XFS_DA_LOGRANGE(node, &btree[index], tmp));
1380 index = nodehdr.count - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381 }
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001382 memset(&btree[index], 0, sizeof(xfs_da_node_entry_t));
Dave Chinner1d9025e2012-06-22 18:50:14 +10001383 xfs_trans_log_buf(state->args->trans, drop_blk->bp,
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001384 XFS_DA_LOGRANGE(node, &btree[index], sizeof(btree[index])));
1385 nodehdr.count -= 1;
1386 xfs_da3_node_hdr_to_disk(node, &nodehdr);
Dave Chinner1d9025e2012-06-22 18:50:14 +10001387 xfs_trans_log_buf(state->args->trans, drop_blk->bp,
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001388 XFS_DA_LOGRANGE(node, &node->hdr, xfs_da3_node_hdr_size(node)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389
1390 /*
1391 * Copy the last hash value from the block to propagate upwards.
1392 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001393 drop_blk->hashval = be32_to_cpu(btree[index - 1].hashval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394}
1395
1396/*
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001397 * Unbalance the elements between two intermediate nodes,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398 * move all Btree elements from one node into another.
1399 */
1400STATIC void
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001401xfs_da3_node_unbalance(
1402 struct xfs_da_state *state,
1403 struct xfs_da_state_blk *drop_blk,
1404 struct xfs_da_state_blk *save_blk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405{
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001406 struct xfs_da_intnode *drop_node;
1407 struct xfs_da_intnode *save_node;
1408 struct xfs_da_node_entry *drop_btree;
1409 struct xfs_da_node_entry *save_btree;
1410 struct xfs_da3_icnode_hdr drop_hdr;
1411 struct xfs_da3_icnode_hdr save_hdr;
1412 struct xfs_trans *tp;
1413 int sindex;
1414 int tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415
Dave Chinner5a5881c2012-03-22 05:15:13 +00001416 trace_xfs_da_node_unbalance(state->args);
1417
Dave Chinner1d9025e2012-06-22 18:50:14 +10001418 drop_node = drop_blk->bp->b_addr;
1419 save_node = save_blk->bp->b_addr;
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001420 xfs_da3_node_hdr_from_disk(&drop_hdr, drop_node);
1421 xfs_da3_node_hdr_from_disk(&save_hdr, save_node);
1422 drop_btree = xfs_da3_node_tree_p(drop_node);
1423 save_btree = xfs_da3_node_tree_p(save_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424 tp = state->args->trans;
1425
1426 /*
1427 * If the dying block has lower hashvals, then move all the
1428 * elements in the remaining block up to make a hole.
1429 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001430 if ((be32_to_cpu(drop_btree[0].hashval) <
1431 be32_to_cpu(save_btree[0].hashval)) ||
1432 (be32_to_cpu(drop_btree[drop_hdr.count - 1].hashval) <
1433 be32_to_cpu(save_btree[save_hdr.count - 1].hashval))) {
1434 /* XXX: check this - is memmove dst correct? */
1435 tmp = save_hdr.count * sizeof(xfs_da_node_entry_t);
1436 memmove(&save_btree[drop_hdr.count], &save_btree[0], tmp);
1437
1438 sindex = 0;
Dave Chinner1d9025e2012-06-22 18:50:14 +10001439 xfs_trans_log_buf(tp, save_blk->bp,
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001440 XFS_DA_LOGRANGE(save_node, &save_btree[0],
1441 (save_hdr.count + drop_hdr.count) *
1442 sizeof(xfs_da_node_entry_t)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443 } else {
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001444 sindex = save_hdr.count;
Dave Chinner1d9025e2012-06-22 18:50:14 +10001445 xfs_trans_log_buf(tp, save_blk->bp,
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001446 XFS_DA_LOGRANGE(save_node, &save_btree[sindex],
1447 drop_hdr.count * sizeof(xfs_da_node_entry_t)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448 }
1449
1450 /*
1451 * Move all the B-tree elements from drop_blk to save_blk.
1452 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001453 tmp = drop_hdr.count * (uint)sizeof(xfs_da_node_entry_t);
1454 memcpy(&save_btree[sindex], &drop_btree[0], tmp);
1455 save_hdr.count += drop_hdr.count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001457 xfs_da3_node_hdr_to_disk(save_node, &save_hdr);
Dave Chinner1d9025e2012-06-22 18:50:14 +10001458 xfs_trans_log_buf(tp, save_blk->bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459 XFS_DA_LOGRANGE(save_node, &save_node->hdr,
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001460 xfs_da3_node_hdr_size(save_node)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461
1462 /*
1463 * Save the last hashval in the remaining block for upward propagation.
1464 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001465 save_blk->hashval = be32_to_cpu(save_btree[save_hdr.count - 1].hashval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466}
1467
1468/*========================================================================
1469 * Routines used for finding things in the Btree.
1470 *========================================================================*/
1471
1472/*
1473 * Walk down the Btree looking for a particular filename, filling
1474 * in the state structure as we go.
1475 *
1476 * We will set the state structure to point to each of the elements
1477 * in each of the nodes where either the hashval is or should be.
1478 *
1479 * We support duplicate hashval's so for each entry in the current
1480 * node that could contain the desired hashval, descend. This is a
1481 * pruned depth-first tree search.
1482 */
1483int /* error */
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001484xfs_da3_node_lookup_int(
1485 struct xfs_da_state *state,
1486 int *result)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487{
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001488 struct xfs_da_state_blk *blk;
1489 struct xfs_da_blkinfo *curr;
1490 struct xfs_da_intnode *node;
1491 struct xfs_da_node_entry *btree;
1492 struct xfs_da3_icnode_hdr nodehdr;
1493 struct xfs_da_args *args;
1494 xfs_dablk_t blkno;
1495 xfs_dahash_t hashval;
1496 xfs_dahash_t btreehashval;
1497 int probe;
1498 int span;
1499 int max;
1500 int error;
1501 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502
1503 args = state->args;
1504
1505 /*
1506 * Descend thru the B-tree searching each level for the right
1507 * node to use, until the right hashval is found.
1508 */
Nathan Scottf6c2d1f2006-06-20 13:04:51 +10001509 blkno = (args->whichfork == XFS_DATA_FORK)? state->mp->m_dirleafblk : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510 for (blk = &state->path.blk[0], state->path.active = 1;
1511 state->path.active <= XFS_DA_NODE_MAXDEPTH;
1512 blk++, state->path.active++) {
1513 /*
1514 * Read the next node down in the tree.
1515 */
1516 blk->blkno = blkno;
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001517 error = xfs_da3_node_read(args->trans, args->dp, blkno,
Dave Chinnerd9392a42012-11-12 22:54:17 +11001518 -1, &blk->bp, args->whichfork);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519 if (error) {
1520 blk->blkno = 0;
1521 state->path.active--;
1522 return(error);
1523 }
Dave Chinner1d9025e2012-06-22 18:50:14 +10001524 curr = blk->bp->b_addr;
Nathan Scottd432c802006-09-28 11:03:44 +10001525 blk->magic = be16_to_cpu(curr->magic);
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001526
Dave Chinner517c2222013-04-24 18:58:55 +10001527 if (blk->magic == XFS_ATTR_LEAF_MAGIC ||
1528 blk->magic == XFS_ATTR3_LEAF_MAGIC) {
1529 blk->magic = XFS_ATTR_LEAF_MAGIC;
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001530 blk->hashval = xfs_attr_leaf_lasthash(blk->bp, NULL);
1531 break;
1532 }
1533
1534 if (blk->magic == XFS_DIR2_LEAFN_MAGIC ||
1535 blk->magic == XFS_DIR3_LEAFN_MAGIC) {
1536 blk->magic = XFS_DIR2_LEAFN_MAGIC;
1537 blk->hashval = xfs_dir2_leafn_lasthash(blk->bp, NULL);
1538 break;
1539 }
1540
1541 blk->magic = XFS_DA_NODE_MAGIC;
1542
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543
1544 /*
1545 * Search an intermediate node for a match.
1546 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001547 node = blk->bp->b_addr;
1548 xfs_da3_node_hdr_from_disk(&nodehdr, node);
1549 btree = xfs_da3_node_tree_p(node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001551 max = nodehdr.count;
1552 blk->hashval = be32_to_cpu(btree[max - 1].hashval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001554 /*
1555 * Binary search. (note: small blocks will skip loop)
1556 */
1557 probe = span = max / 2;
1558 hashval = args->hashval;
1559 while (span > 4) {
1560 span /= 2;
1561 btreehashval = be32_to_cpu(btree[probe].hashval);
1562 if (btreehashval < hashval)
1563 probe += span;
1564 else if (btreehashval > hashval)
1565 probe -= span;
1566 else
1567 break;
1568 }
1569 ASSERT((probe >= 0) && (probe < max));
1570 ASSERT((span <= 4) ||
1571 (be32_to_cpu(btree[probe].hashval) == hashval));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001573 /*
1574 * Since we may have duplicate hashval's, find the first
1575 * matching hashval in the node.
1576 */
1577 while (probe > 0 &&
1578 be32_to_cpu(btree[probe].hashval) >= hashval) {
1579 probe--;
1580 }
1581 while (probe < max &&
1582 be32_to_cpu(btree[probe].hashval) < hashval) {
1583 probe++;
1584 }
1585
1586 /*
1587 * Pick the right block to descend on.
1588 */
1589 if (probe == max) {
1590 blk->index = max - 1;
1591 blkno = be32_to_cpu(btree[max - 1].before);
1592 } else {
1593 blk->index = probe;
1594 blkno = be32_to_cpu(btree[probe].before);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595 }
1596 }
1597
1598 /*
1599 * A leaf block that ends in the hashval that we are interested in
1600 * (final hashval == search hashval) means that the next block may
1601 * contain more entries with the same hashval, shift upward to the
1602 * next leaf and keep searching.
1603 */
1604 for (;;) {
Nathan Scottf6c2d1f2006-06-20 13:04:51 +10001605 if (blk->magic == XFS_DIR2_LEAFN_MAGIC) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606 retval = xfs_dir2_leafn_lookup_int(blk->bp, args,
1607 &blk->index, state);
Nathan Scottd432c802006-09-28 11:03:44 +10001608 } else if (blk->magic == XFS_ATTR_LEAF_MAGIC) {
Dave Chinner517c2222013-04-24 18:58:55 +10001609 retval = xfs_attr3_leaf_lookup_int(blk->bp, args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610 blk->index = args->index;
1611 args->blkno = blk->blkno;
Nathan Scottd432c802006-09-28 11:03:44 +10001612 } else {
1613 ASSERT(0);
1614 return XFS_ERROR(EFSCORRUPTED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616 if (((retval == ENOENT) || (retval == ENOATTR)) &&
1617 (blk->hashval == args->hashval)) {
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001618 error = xfs_da3_path_shift(state, &state->path, 1, 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619 &retval);
1620 if (error)
1621 return(error);
1622 if (retval == 0) {
1623 continue;
Nathan Scottd432c802006-09-28 11:03:44 +10001624 } else if (blk->magic == XFS_ATTR_LEAF_MAGIC) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625 /* path_shift() gives ENOENT */
1626 retval = XFS_ERROR(ENOATTR);
1627 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628 }
1629 break;
1630 }
1631 *result = retval;
1632 return(0);
1633}
1634
1635/*========================================================================
1636 * Utility routines.
1637 *========================================================================*/
1638
1639/*
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001640 * Compare two intermediate nodes for "order".
1641 */
1642STATIC int
1643xfs_da3_node_order(
1644 struct xfs_buf *node1_bp,
1645 struct xfs_buf *node2_bp)
1646{
1647 struct xfs_da_intnode *node1;
1648 struct xfs_da_intnode *node2;
1649 struct xfs_da_node_entry *btree1;
1650 struct xfs_da_node_entry *btree2;
1651 struct xfs_da3_icnode_hdr node1hdr;
1652 struct xfs_da3_icnode_hdr node2hdr;
1653
1654 node1 = node1_bp->b_addr;
1655 node2 = node2_bp->b_addr;
1656 xfs_da3_node_hdr_from_disk(&node1hdr, node1);
1657 xfs_da3_node_hdr_from_disk(&node2hdr, node2);
1658 btree1 = xfs_da3_node_tree_p(node1);
1659 btree2 = xfs_da3_node_tree_p(node2);
1660
1661 if (node1hdr.count > 0 && node2hdr.count > 0 &&
1662 ((be32_to_cpu(btree2[0].hashval) < be32_to_cpu(btree1[0].hashval)) ||
1663 (be32_to_cpu(btree2[node2hdr.count - 1].hashval) <
1664 be32_to_cpu(btree1[node1hdr.count - 1].hashval)))) {
1665 return 1;
1666 }
1667 return 0;
1668}
1669
1670/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671 * Link a new block into a doubly linked list of blocks (of whatever type).
1672 */
1673int /* error */
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001674xfs_da3_blk_link(
1675 struct xfs_da_state *state,
1676 struct xfs_da_state_blk *old_blk,
1677 struct xfs_da_state_blk *new_blk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678{
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001679 struct xfs_da_blkinfo *old_info;
1680 struct xfs_da_blkinfo *new_info;
1681 struct xfs_da_blkinfo *tmp_info;
1682 struct xfs_da_args *args;
1683 struct xfs_buf *bp;
1684 int before = 0;
1685 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686
1687 /*
1688 * Set up environment.
1689 */
1690 args = state->args;
1691 ASSERT(args != NULL);
Dave Chinner1d9025e2012-06-22 18:50:14 +10001692 old_info = old_blk->bp->b_addr;
1693 new_info = new_blk->bp->b_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694 ASSERT(old_blk->magic == XFS_DA_NODE_MAGIC ||
Nathan Scottf6c2d1f2006-06-20 13:04:51 +10001695 old_blk->magic == XFS_DIR2_LEAFN_MAGIC ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696 old_blk->magic == XFS_ATTR_LEAF_MAGIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697
1698 switch (old_blk->magic) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699 case XFS_ATTR_LEAF_MAGIC:
1700 before = xfs_attr_leaf_order(old_blk->bp, new_blk->bp);
1701 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702 case XFS_DIR2_LEAFN_MAGIC:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703 before = xfs_dir2_leafn_order(old_blk->bp, new_blk->bp);
1704 break;
1705 case XFS_DA_NODE_MAGIC:
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001706 before = xfs_da3_node_order(old_blk->bp, new_blk->bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707 break;
1708 }
1709
1710 /*
1711 * Link blocks in appropriate order.
1712 */
1713 if (before) {
1714 /*
1715 * Link new block in before existing block.
1716 */
Dave Chinner5a5881c2012-03-22 05:15:13 +00001717 trace_xfs_da_link_before(args);
Nathan Scott89da0542006-03-17 17:28:40 +11001718 new_info->forw = cpu_to_be32(old_blk->blkno);
1719 new_info->back = old_info->back;
1720 if (old_info->back) {
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001721 error = xfs_da3_node_read(args->trans, args->dp,
Nathan Scott89da0542006-03-17 17:28:40 +11001722 be32_to_cpu(old_info->back),
Dave Chinnerd9392a42012-11-12 22:54:17 +11001723 -1, &bp, args->whichfork);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724 if (error)
1725 return(error);
1726 ASSERT(bp != NULL);
Dave Chinner1d9025e2012-06-22 18:50:14 +10001727 tmp_info = bp->b_addr;
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001728 ASSERT(tmp_info->magic == old_info->magic);
Nathan Scott89da0542006-03-17 17:28:40 +11001729 ASSERT(be32_to_cpu(tmp_info->forw) == old_blk->blkno);
1730 tmp_info->forw = cpu_to_be32(new_blk->blkno);
Dave Chinner1d9025e2012-06-22 18:50:14 +10001731 xfs_trans_log_buf(args->trans, bp, 0, sizeof(*tmp_info)-1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732 }
Nathan Scott89da0542006-03-17 17:28:40 +11001733 old_info->back = cpu_to_be32(new_blk->blkno);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734 } else {
1735 /*
1736 * Link new block in after existing block.
1737 */
Dave Chinner5a5881c2012-03-22 05:15:13 +00001738 trace_xfs_da_link_after(args);
Nathan Scott89da0542006-03-17 17:28:40 +11001739 new_info->forw = old_info->forw;
1740 new_info->back = cpu_to_be32(old_blk->blkno);
1741 if (old_info->forw) {
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001742 error = xfs_da3_node_read(args->trans, args->dp,
Nathan Scott89da0542006-03-17 17:28:40 +11001743 be32_to_cpu(old_info->forw),
Dave Chinnerd9392a42012-11-12 22:54:17 +11001744 -1, &bp, args->whichfork);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745 if (error)
1746 return(error);
1747 ASSERT(bp != NULL);
Dave Chinner1d9025e2012-06-22 18:50:14 +10001748 tmp_info = bp->b_addr;
Nathan Scott89da0542006-03-17 17:28:40 +11001749 ASSERT(tmp_info->magic == old_info->magic);
1750 ASSERT(be32_to_cpu(tmp_info->back) == old_blk->blkno);
1751 tmp_info->back = cpu_to_be32(new_blk->blkno);
Dave Chinner1d9025e2012-06-22 18:50:14 +10001752 xfs_trans_log_buf(args->trans, bp, 0, sizeof(*tmp_info)-1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753 }
Nathan Scott89da0542006-03-17 17:28:40 +11001754 old_info->forw = cpu_to_be32(new_blk->blkno);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755 }
1756
Dave Chinner1d9025e2012-06-22 18:50:14 +10001757 xfs_trans_log_buf(args->trans, old_blk->bp, 0, sizeof(*tmp_info) - 1);
1758 xfs_trans_log_buf(args->trans, new_blk->bp, 0, sizeof(*tmp_info) - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759 return(0);
1760}
1761
1762/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763 * Unlink a block from a doubly linked list of blocks.
1764 */
Christoph Hellwigba0f32d2005-06-21 15:36:52 +10001765STATIC int /* error */
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001766xfs_da3_blk_unlink(
1767 struct xfs_da_state *state,
1768 struct xfs_da_state_blk *drop_blk,
1769 struct xfs_da_state_blk *save_blk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770{
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001771 struct xfs_da_blkinfo *drop_info;
1772 struct xfs_da_blkinfo *save_info;
1773 struct xfs_da_blkinfo *tmp_info;
1774 struct xfs_da_args *args;
1775 struct xfs_buf *bp;
1776 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777
1778 /*
1779 * Set up environment.
1780 */
1781 args = state->args;
1782 ASSERT(args != NULL);
Dave Chinner1d9025e2012-06-22 18:50:14 +10001783 save_info = save_blk->bp->b_addr;
1784 drop_info = drop_blk->bp->b_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785 ASSERT(save_blk->magic == XFS_DA_NODE_MAGIC ||
Nathan Scottf6c2d1f2006-06-20 13:04:51 +10001786 save_blk->magic == XFS_DIR2_LEAFN_MAGIC ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787 save_blk->magic == XFS_ATTR_LEAF_MAGIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788 ASSERT(save_blk->magic == drop_blk->magic);
Nathan Scott89da0542006-03-17 17:28:40 +11001789 ASSERT((be32_to_cpu(save_info->forw) == drop_blk->blkno) ||
1790 (be32_to_cpu(save_info->back) == drop_blk->blkno));
1791 ASSERT((be32_to_cpu(drop_info->forw) == save_blk->blkno) ||
1792 (be32_to_cpu(drop_info->back) == save_blk->blkno));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793
1794 /*
1795 * Unlink the leaf block from the doubly linked chain of leaves.
1796 */
Nathan Scott89da0542006-03-17 17:28:40 +11001797 if (be32_to_cpu(save_info->back) == drop_blk->blkno) {
Dave Chinner5a5881c2012-03-22 05:15:13 +00001798 trace_xfs_da_unlink_back(args);
Nathan Scott89da0542006-03-17 17:28:40 +11001799 save_info->back = drop_info->back;
1800 if (drop_info->back) {
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001801 error = xfs_da3_node_read(args->trans, args->dp,
Nathan Scott89da0542006-03-17 17:28:40 +11001802 be32_to_cpu(drop_info->back),
Dave Chinnerd9392a42012-11-12 22:54:17 +11001803 -1, &bp, args->whichfork);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804 if (error)
1805 return(error);
1806 ASSERT(bp != NULL);
Dave Chinner1d9025e2012-06-22 18:50:14 +10001807 tmp_info = bp->b_addr;
Nathan Scott89da0542006-03-17 17:28:40 +11001808 ASSERT(tmp_info->magic == save_info->magic);
1809 ASSERT(be32_to_cpu(tmp_info->forw) == drop_blk->blkno);
1810 tmp_info->forw = cpu_to_be32(save_blk->blkno);
Dave Chinner1d9025e2012-06-22 18:50:14 +10001811 xfs_trans_log_buf(args->trans, bp, 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812 sizeof(*tmp_info) - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813 }
1814 } else {
Dave Chinner5a5881c2012-03-22 05:15:13 +00001815 trace_xfs_da_unlink_forward(args);
Nathan Scott89da0542006-03-17 17:28:40 +11001816 save_info->forw = drop_info->forw;
1817 if (drop_info->forw) {
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001818 error = xfs_da3_node_read(args->trans, args->dp,
Nathan Scott89da0542006-03-17 17:28:40 +11001819 be32_to_cpu(drop_info->forw),
Dave Chinnerd9392a42012-11-12 22:54:17 +11001820 -1, &bp, args->whichfork);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821 if (error)
1822 return(error);
1823 ASSERT(bp != NULL);
Dave Chinner1d9025e2012-06-22 18:50:14 +10001824 tmp_info = bp->b_addr;
Nathan Scott89da0542006-03-17 17:28:40 +11001825 ASSERT(tmp_info->magic == save_info->magic);
1826 ASSERT(be32_to_cpu(tmp_info->back) == drop_blk->blkno);
1827 tmp_info->back = cpu_to_be32(save_blk->blkno);
Dave Chinner1d9025e2012-06-22 18:50:14 +10001828 xfs_trans_log_buf(args->trans, bp, 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829 sizeof(*tmp_info) - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830 }
1831 }
1832
Dave Chinner1d9025e2012-06-22 18:50:14 +10001833 xfs_trans_log_buf(args->trans, save_blk->bp, 0, sizeof(*save_info) - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834 return(0);
1835}
1836
1837/*
1838 * Move a path "forward" or "!forward" one block at the current level.
1839 *
1840 * This routine will adjust a "path" to point to the next block
1841 * "forward" (higher hashvalues) or "!forward" (lower hashvals) in the
1842 * Btree, including updating pointers to the intermediate nodes between
1843 * the new bottom and the root.
1844 */
1845int /* error */
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001846xfs_da3_path_shift(
1847 struct xfs_da_state *state,
1848 struct xfs_da_state_path *path,
1849 int forward,
1850 int release,
1851 int *result)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852{
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001853 struct xfs_da_state_blk *blk;
1854 struct xfs_da_blkinfo *info;
1855 struct xfs_da_intnode *node;
1856 struct xfs_da_args *args;
1857 struct xfs_da_node_entry *btree;
1858 struct xfs_da3_icnode_hdr nodehdr;
1859 xfs_dablk_t blkno = 0;
1860 int level;
1861 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862
Dave Chinneree732592012-11-12 22:53:53 +11001863 trace_xfs_da_path_shift(state->args);
1864
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865 /*
1866 * Roll up the Btree looking for the first block where our
1867 * current index is not at the edge of the block. Note that
1868 * we skip the bottom layer because we want the sibling block.
1869 */
1870 args = state->args;
1871 ASSERT(args != NULL);
1872 ASSERT(path != NULL);
1873 ASSERT((path->active > 0) && (path->active < XFS_DA_NODE_MAXDEPTH));
1874 level = (path->active-1) - 1; /* skip bottom layer in path */
1875 for (blk = &path->blk[level]; level >= 0; blk--, level--) {
Dave Chinner1d9025e2012-06-22 18:50:14 +10001876 node = blk->bp->b_addr;
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001877 xfs_da3_node_hdr_from_disk(&nodehdr, node);
1878 btree = xfs_da3_node_tree_p(node);
1879
1880 if (forward && (blk->index < nodehdr.count - 1)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881 blk->index++;
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001882 blkno = be32_to_cpu(btree[blk->index].before);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883 break;
1884 } else if (!forward && (blk->index > 0)) {
1885 blk->index--;
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001886 blkno = be32_to_cpu(btree[blk->index].before);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887 break;
1888 }
1889 }
1890 if (level < 0) {
1891 *result = XFS_ERROR(ENOENT); /* we're out of our tree */
Barry Naujok6a178102008-05-21 16:42:05 +10001892 ASSERT(args->op_flags & XFS_DA_OP_OKNOENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893 return(0);
1894 }
1895
1896 /*
1897 * Roll down the edge of the subtree until we reach the
1898 * same depth we were at originally.
1899 */
1900 for (blk++, level++; level < path->active; blk++, level++) {
1901 /*
1902 * Release the old block.
1903 * (if it's dirty, trans won't actually let go)
1904 */
1905 if (release)
Dave Chinner1d9025e2012-06-22 18:50:14 +10001906 xfs_trans_brelse(args->trans, blk->bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001907
1908 /*
1909 * Read the next child block.
1910 */
1911 blk->blkno = blkno;
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001912 error = xfs_da3_node_read(args->trans, args->dp, blkno, -1,
Dave Chinnerd9392a42012-11-12 22:54:17 +11001913 &blk->bp, args->whichfork);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001914 if (error)
1915 return(error);
Dave Chinner1d9025e2012-06-22 18:50:14 +10001916 info = blk->bp->b_addr;
Christoph Hellwig69ef9212011-07-08 14:36:05 +02001917 ASSERT(info->magic == cpu_to_be16(XFS_DA_NODE_MAGIC) ||
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001918 info->magic == cpu_to_be16(XFS_DA3_NODE_MAGIC) ||
Christoph Hellwig69ef9212011-07-08 14:36:05 +02001919 info->magic == cpu_to_be16(XFS_DIR2_LEAFN_MAGIC) ||
Dave Chinner24df33b2013-04-12 07:30:21 +10001920 info->magic == cpu_to_be16(XFS_DIR3_LEAFN_MAGIC) ||
Dave Chinner517c2222013-04-24 18:58:55 +10001921 info->magic == cpu_to_be16(XFS_ATTR_LEAF_MAGIC) ||
1922 info->magic == cpu_to_be16(XFS_ATTR3_LEAF_MAGIC));
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001923
1924
1925 /*
1926 * Note: we flatten the magic number to a single type so we
1927 * don't have to compare against crc/non-crc types elsewhere.
1928 */
1929 switch (be16_to_cpu(info->magic)) {
1930 case XFS_DA_NODE_MAGIC:
1931 case XFS_DA3_NODE_MAGIC:
1932 blk->magic = XFS_DA_NODE_MAGIC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933 node = (xfs_da_intnode_t *)info;
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001934 xfs_da3_node_hdr_from_disk(&nodehdr, node);
1935 btree = xfs_da3_node_tree_p(node);
1936 blk->hashval = be32_to_cpu(btree[nodehdr.count - 1].hashval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937 if (forward)
1938 blk->index = 0;
1939 else
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001940 blk->index = nodehdr.count - 1;
1941 blkno = be32_to_cpu(btree[blk->index].before);
1942 break;
1943 case XFS_ATTR_LEAF_MAGIC:
Dave Chinner517c2222013-04-24 18:58:55 +10001944 case XFS_ATTR3_LEAF_MAGIC:
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001945 blk->magic = XFS_ATTR_LEAF_MAGIC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946 ASSERT(level == path->active-1);
1947 blk->index = 0;
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001948 blk->hashval = xfs_attr_leaf_lasthash(blk->bp,
1949 NULL);
1950 break;
1951 case XFS_DIR2_LEAFN_MAGIC:
1952 case XFS_DIR3_LEAFN_MAGIC:
1953 blk->magic = XFS_DIR2_LEAFN_MAGIC;
1954 ASSERT(level == path->active-1);
1955 blk->index = 0;
1956 blk->hashval = xfs_dir2_leafn_lasthash(blk->bp,
1957 NULL);
1958 break;
1959 default:
1960 ASSERT(0);
1961 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962 }
1963 }
1964 *result = 0;
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001965 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966}
1967
1968
1969/*========================================================================
1970 * Utility routines.
1971 *========================================================================*/
1972
1973/*
1974 * Implement a simple hash on a character string.
1975 * Rotate the hash value by 7 bits, then XOR each character in.
1976 * This is implemented with some source-level loop unrolling.
1977 */
1978xfs_dahash_t
Christoph Hellwiga5687782009-02-09 08:37:39 +01001979xfs_da_hashname(const __uint8_t *name, int namelen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001980{
1981 xfs_dahash_t hash;
1982
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983 /*
1984 * Do four characters at a time as long as we can.
1985 */
1986 for (hash = 0; namelen >= 4; namelen -= 4, name += 4)
1987 hash = (name[0] << 21) ^ (name[1] << 14) ^ (name[2] << 7) ^
1988 (name[3] << 0) ^ rol32(hash, 7 * 4);
1989
1990 /*
1991 * Now do the rest of the characters.
1992 */
1993 switch (namelen) {
1994 case 3:
1995 return (name[0] << 14) ^ (name[1] << 7) ^ (name[2] << 0) ^
1996 rol32(hash, 7 * 3);
1997 case 2:
1998 return (name[0] << 7) ^ (name[1] << 0) ^ rol32(hash, 7 * 2);
1999 case 1:
2000 return (name[0] << 0) ^ rol32(hash, 7 * 1);
Nathan Scott2b3b6d02005-11-02 15:12:28 +11002001 default: /* case 0: */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002002 return hash;
2003 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002004}
2005
Barry Naujok5163f952008-05-21 16:41:01 +10002006enum xfs_dacmp
2007xfs_da_compname(
2008 struct xfs_da_args *args,
Dave Chinner2bc75422010-01-20 10:47:17 +11002009 const unsigned char *name,
2010 int len)
Barry Naujok5163f952008-05-21 16:41:01 +10002011{
2012 return (args->namelen == len && memcmp(args->name, name, len) == 0) ?
2013 XFS_CMP_EXACT : XFS_CMP_DIFFERENT;
2014}
2015
2016static xfs_dahash_t
2017xfs_default_hashname(
2018 struct xfs_name *name)
2019{
2020 return xfs_da_hashname(name->name, name->len);
2021}
2022
2023const struct xfs_nameops xfs_default_nameops = {
2024 .hashname = xfs_default_hashname,
2025 .compname = xfs_da_compname
2026};
2027
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028int
Christoph Hellwig77936d02011-07-13 13:43:49 +02002029xfs_da_grow_inode_int(
2030 struct xfs_da_args *args,
2031 xfs_fileoff_t *bno,
2032 int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002033{
Christoph Hellwig77936d02011-07-13 13:43:49 +02002034 struct xfs_trans *tp = args->trans;
2035 struct xfs_inode *dp = args->dp;
2036 int w = args->whichfork;
2037 xfs_drfsbno_t nblks = dp->i_d.di_nblocks;
2038 struct xfs_bmbt_irec map, *mapp;
2039 int nmap, error, got, i, mapi;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040
Linus Torvalds1da177e2005-04-16 15:20:36 -07002041 /*
2042 * Find a spot in the file space to put the new block.
2043 */
Christoph Hellwig77936d02011-07-13 13:43:49 +02002044 error = xfs_bmap_first_unused(tp, dp, count, bno, w);
2045 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002046 return error;
Christoph Hellwig77936d02011-07-13 13:43:49 +02002047
Linus Torvalds1da177e2005-04-16 15:20:36 -07002048 /*
2049 * Try mapping it in one filesystem block.
2050 */
2051 nmap = 1;
2052 ASSERT(args->firstblock != NULL);
Dave Chinnerc0dc7822011-09-18 20:40:52 +00002053 error = xfs_bmapi_write(tp, dp, *bno, count,
2054 xfs_bmapi_aflag(w)|XFS_BMAPI_METADATA|XFS_BMAPI_CONTIG,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002055 args->firstblock, args->total, &map, &nmap,
Christoph Hellwig77936d02011-07-13 13:43:49 +02002056 args->flist);
2057 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058 return error;
Christoph Hellwig77936d02011-07-13 13:43:49 +02002059
Linus Torvalds1da177e2005-04-16 15:20:36 -07002060 ASSERT(nmap <= 1);
2061 if (nmap == 1) {
2062 mapp = &map;
2063 mapi = 1;
Christoph Hellwig77936d02011-07-13 13:43:49 +02002064 } else if (nmap == 0 && count > 1) {
2065 xfs_fileoff_t b;
2066 int c;
2067
2068 /*
2069 * If we didn't get it and the block might work if fragmented,
2070 * try without the CONTIG flag. Loop until we get it all.
2071 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002072 mapp = kmem_alloc(sizeof(*mapp) * count, KM_SLEEP);
Christoph Hellwig77936d02011-07-13 13:43:49 +02002073 for (b = *bno, mapi = 0; b < *bno + count; ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002074 nmap = MIN(XFS_BMAP_MAX_NMAP, count);
Christoph Hellwig77936d02011-07-13 13:43:49 +02002075 c = (int)(*bno + count - b);
Dave Chinnerc0dc7822011-09-18 20:40:52 +00002076 error = xfs_bmapi_write(tp, dp, b, c,
2077 xfs_bmapi_aflag(w)|XFS_BMAPI_METADATA,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002078 args->firstblock, args->total,
Christoph Hellwig77936d02011-07-13 13:43:49 +02002079 &mapp[mapi], &nmap, args->flist);
2080 if (error)
2081 goto out_free_map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082 if (nmap < 1)
2083 break;
2084 mapi += nmap;
2085 b = mapp[mapi - 1].br_startoff +
2086 mapp[mapi - 1].br_blockcount;
2087 }
2088 } else {
2089 mapi = 0;
2090 mapp = NULL;
2091 }
Christoph Hellwig77936d02011-07-13 13:43:49 +02002092
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093 /*
2094 * Count the blocks we got, make sure it matches the total.
2095 */
2096 for (i = 0, got = 0; i < mapi; i++)
2097 got += mapp[i].br_blockcount;
Christoph Hellwig77936d02011-07-13 13:43:49 +02002098 if (got != count || mapp[0].br_startoff != *bno ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099 mapp[mapi - 1].br_startoff + mapp[mapi - 1].br_blockcount !=
Christoph Hellwig77936d02011-07-13 13:43:49 +02002100 *bno + count) {
2101 error = XFS_ERROR(ENOSPC);
2102 goto out_free_map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002103 }
Christoph Hellwig77936d02011-07-13 13:43:49 +02002104
David Chinnera7444052008-10-30 17:38:12 +11002105 /* account for newly allocated blocks in reserved blocks total */
2106 args->total -= dp->i_d.di_nblocks - nblks;
Christoph Hellwig77936d02011-07-13 13:43:49 +02002107
2108out_free_map:
2109 if (mapp != &map)
2110 kmem_free(mapp);
2111 return error;
2112}
2113
2114/*
2115 * Add a block to the btree ahead of the file.
2116 * Return the new block number to the caller.
2117 */
2118int
2119xfs_da_grow_inode(
2120 struct xfs_da_args *args,
2121 xfs_dablk_t *new_blkno)
2122{
2123 xfs_fileoff_t bno;
2124 int count;
2125 int error;
2126
Dave Chinner5a5881c2012-03-22 05:15:13 +00002127 trace_xfs_da_grow_inode(args);
2128
Christoph Hellwig77936d02011-07-13 13:43:49 +02002129 if (args->whichfork == XFS_DATA_FORK) {
2130 bno = args->dp->i_mount->m_dirleafblk;
2131 count = args->dp->i_mount->m_dirblkfsbs;
2132 } else {
2133 bno = 0;
2134 count = 1;
2135 }
2136
2137 error = xfs_da_grow_inode_int(args, &bno, count);
2138 if (!error)
2139 *new_blkno = (xfs_dablk_t)bno;
2140 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141}
2142
2143/*
2144 * Ick. We need to always be able to remove a btree block, even
2145 * if there's no space reservation because the filesystem is full.
2146 * This is called if xfs_bunmapi on a btree block fails due to ENOSPC.
2147 * It swaps the target block with the last block in the file. The
2148 * last block in the file can always be removed since it can't cause
2149 * a bmap btree split to do that.
2150 */
2151STATIC int
Dave Chinnerf5ea1102013-04-24 18:58:02 +10002152xfs_da3_swap_lastblock(
2153 struct xfs_da_args *args,
2154 xfs_dablk_t *dead_blknop,
2155 struct xfs_buf **dead_bufp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002156{
Dave Chinnerf5ea1102013-04-24 18:58:02 +10002157 struct xfs_da_blkinfo *dead_info;
2158 struct xfs_da_blkinfo *sib_info;
2159 struct xfs_da_intnode *par_node;
2160 struct xfs_da_intnode *dead_node;
2161 struct xfs_dir2_leaf *dead_leaf2;
2162 struct xfs_da_node_entry *btree;
2163 struct xfs_da3_icnode_hdr par_hdr;
2164 struct xfs_inode *ip;
2165 struct xfs_trans *tp;
2166 struct xfs_mount *mp;
2167 struct xfs_buf *dead_buf;
2168 struct xfs_buf *last_buf;
2169 struct xfs_buf *sib_buf;
2170 struct xfs_buf *par_buf;
2171 xfs_dahash_t dead_hash;
2172 xfs_fileoff_t lastoff;
2173 xfs_dablk_t dead_blkno;
2174 xfs_dablk_t last_blkno;
2175 xfs_dablk_t sib_blkno;
2176 xfs_dablk_t par_blkno;
2177 int error;
2178 int w;
2179 int entno;
2180 int level;
2181 int dead_level;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002182
Dave Chinner5a5881c2012-03-22 05:15:13 +00002183 trace_xfs_da_swap_lastblock(args);
2184
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185 dead_buf = *dead_bufp;
2186 dead_blkno = *dead_blknop;
2187 tp = args->trans;
2188 ip = args->dp;
2189 w = args->whichfork;
2190 ASSERT(w == XFS_DATA_FORK);
2191 mp = ip->i_mount;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +10002192 lastoff = mp->m_dirfreeblk;
2193 error = xfs_bmap_last_before(tp, ip, &lastoff, w);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002194 if (error)
2195 return error;
2196 if (unlikely(lastoff == 0)) {
2197 XFS_ERROR_REPORT("xfs_da_swap_lastblock(1)", XFS_ERRLEVEL_LOW,
2198 mp);
2199 return XFS_ERROR(EFSCORRUPTED);
2200 }
2201 /*
2202 * Read the last block in the btree space.
2203 */
2204 last_blkno = (xfs_dablk_t)lastoff - mp->m_dirblkfsbs;
Dave Chinnerf5ea1102013-04-24 18:58:02 +10002205 error = xfs_da3_node_read(tp, ip, last_blkno, -1, &last_buf, w);
Dave Chinner4bb20a82012-11-12 22:54:10 +11002206 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002207 return error;
2208 /*
2209 * Copy the last block into the dead buffer and log it.
2210 */
Dave Chinner1d9025e2012-06-22 18:50:14 +10002211 memcpy(dead_buf->b_addr, last_buf->b_addr, mp->m_dirblksize);
2212 xfs_trans_log_buf(tp, dead_buf, 0, mp->m_dirblksize - 1);
2213 dead_info = dead_buf->b_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002214 /*
2215 * Get values from the moved block.
2216 */
Dave Chinner24df33b2013-04-12 07:30:21 +10002217 if (dead_info->magic == cpu_to_be16(XFS_DIR2_LEAFN_MAGIC) ||
2218 dead_info->magic == cpu_to_be16(XFS_DIR3_LEAFN_MAGIC)) {
2219 struct xfs_dir3_icleaf_hdr leafhdr;
2220 struct xfs_dir2_leaf_entry *ents;
2221
Linus Torvalds1da177e2005-04-16 15:20:36 -07002222 dead_leaf2 = (xfs_dir2_leaf_t *)dead_info;
Dave Chinner24df33b2013-04-12 07:30:21 +10002223 xfs_dir3_leaf_hdr_from_disk(&leafhdr, dead_leaf2);
2224 ents = xfs_dir3_leaf_ents_p(dead_leaf2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002225 dead_level = 0;
Dave Chinner24df33b2013-04-12 07:30:21 +10002226 dead_hash = be32_to_cpu(ents[leafhdr.count - 1].hashval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002227 } else {
Dave Chinnerf5ea1102013-04-24 18:58:02 +10002228 struct xfs_da3_icnode_hdr deadhdr;
2229
Linus Torvalds1da177e2005-04-16 15:20:36 -07002230 dead_node = (xfs_da_intnode_t *)dead_info;
Dave Chinnerf5ea1102013-04-24 18:58:02 +10002231 xfs_da3_node_hdr_from_disk(&deadhdr, dead_node);
2232 btree = xfs_da3_node_tree_p(dead_node);
2233 dead_level = deadhdr.level;
2234 dead_hash = be32_to_cpu(btree[deadhdr.count - 1].hashval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002235 }
2236 sib_buf = par_buf = NULL;
2237 /*
2238 * If the moved block has a left sibling, fix up the pointers.
2239 */
Nathan Scott89da0542006-03-17 17:28:40 +11002240 if ((sib_blkno = be32_to_cpu(dead_info->back))) {
Dave Chinnerf5ea1102013-04-24 18:58:02 +10002241 error = xfs_da3_node_read(tp, ip, sib_blkno, -1, &sib_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 sib_info = sib_buf->b_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002245 if (unlikely(
Nathan Scott89da0542006-03-17 17:28:40 +11002246 be32_to_cpu(sib_info->forw) != last_blkno ||
2247 sib_info->magic != dead_info->magic)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002248 XFS_ERROR_REPORT("xfs_da_swap_lastblock(2)",
2249 XFS_ERRLEVEL_LOW, mp);
2250 error = XFS_ERROR(EFSCORRUPTED);
2251 goto done;
2252 }
Nathan Scott89da0542006-03-17 17:28:40 +11002253 sib_info->forw = cpu_to_be32(dead_blkno);
Dave Chinner1d9025e2012-06-22 18:50:14 +10002254 xfs_trans_log_buf(tp, sib_buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002255 XFS_DA_LOGRANGE(sib_info, &sib_info->forw,
2256 sizeof(sib_info->forw)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002257 sib_buf = NULL;
2258 }
2259 /*
2260 * If the moved block has a right sibling, fix up the pointers.
2261 */
Nathan Scott89da0542006-03-17 17:28:40 +11002262 if ((sib_blkno = be32_to_cpu(dead_info->forw))) {
Dave Chinnerf5ea1102013-04-24 18:58:02 +10002263 error = xfs_da3_node_read(tp, ip, sib_blkno, -1, &sib_buf, w);
Dave Chinner4bb20a82012-11-12 22:54:10 +11002264 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002265 goto done;
Dave Chinner1d9025e2012-06-22 18:50:14 +10002266 sib_info = sib_buf->b_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002267 if (unlikely(
Nathan Scott89da0542006-03-17 17:28:40 +11002268 be32_to_cpu(sib_info->back) != last_blkno ||
2269 sib_info->magic != dead_info->magic)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002270 XFS_ERROR_REPORT("xfs_da_swap_lastblock(3)",
2271 XFS_ERRLEVEL_LOW, mp);
2272 error = XFS_ERROR(EFSCORRUPTED);
2273 goto done;
2274 }
Nathan Scott89da0542006-03-17 17:28:40 +11002275 sib_info->back = cpu_to_be32(dead_blkno);
Dave Chinner1d9025e2012-06-22 18:50:14 +10002276 xfs_trans_log_buf(tp, sib_buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002277 XFS_DA_LOGRANGE(sib_info, &sib_info->back,
2278 sizeof(sib_info->back)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002279 sib_buf = NULL;
2280 }
Nathan Scottf6c2d1f2006-06-20 13:04:51 +10002281 par_blkno = mp->m_dirleafblk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002282 level = -1;
2283 /*
2284 * Walk down the tree looking for the parent of the moved block.
2285 */
2286 for (;;) {
Dave Chinnerf5ea1102013-04-24 18:58:02 +10002287 error = xfs_da3_node_read(tp, ip, par_blkno, -1, &par_buf, w);
Dave Chinner4bb20a82012-11-12 22:54:10 +11002288 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002289 goto done;
Dave Chinner1d9025e2012-06-22 18:50:14 +10002290 par_node = par_buf->b_addr;
Dave Chinnerf5ea1102013-04-24 18:58:02 +10002291 xfs_da3_node_hdr_from_disk(&par_hdr, par_node);
2292 if (level >= 0 && level != par_hdr.level + 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002293 XFS_ERROR_REPORT("xfs_da_swap_lastblock(4)",
2294 XFS_ERRLEVEL_LOW, mp);
2295 error = XFS_ERROR(EFSCORRUPTED);
2296 goto done;
2297 }
Dave Chinnerf5ea1102013-04-24 18:58:02 +10002298 level = par_hdr.level;
2299 btree = xfs_da3_node_tree_p(par_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002300 for (entno = 0;
Dave Chinnerf5ea1102013-04-24 18:58:02 +10002301 entno < par_hdr.count &&
2302 be32_to_cpu(btree[entno].hashval) < dead_hash;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002303 entno++)
2304 continue;
Dave Chinnerf5ea1102013-04-24 18:58:02 +10002305 if (entno == par_hdr.count) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002306 XFS_ERROR_REPORT("xfs_da_swap_lastblock(5)",
2307 XFS_ERRLEVEL_LOW, mp);
2308 error = XFS_ERROR(EFSCORRUPTED);
2309 goto done;
2310 }
Dave Chinnerf5ea1102013-04-24 18:58:02 +10002311 par_blkno = be32_to_cpu(btree[entno].before);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002312 if (level == dead_level + 1)
2313 break;
Dave Chinner1d9025e2012-06-22 18:50:14 +10002314 xfs_trans_brelse(tp, par_buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002315 par_buf = NULL;
2316 }
2317 /*
2318 * We're in the right parent block.
2319 * Look for the right entry.
2320 */
2321 for (;;) {
2322 for (;
Dave Chinnerf5ea1102013-04-24 18:58:02 +10002323 entno < par_hdr.count &&
2324 be32_to_cpu(btree[entno].before) != last_blkno;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002325 entno++)
2326 continue;
Dave Chinnerf5ea1102013-04-24 18:58:02 +10002327 if (entno < par_hdr.count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002328 break;
Dave Chinnerf5ea1102013-04-24 18:58:02 +10002329 par_blkno = par_hdr.forw;
Dave Chinner1d9025e2012-06-22 18:50:14 +10002330 xfs_trans_brelse(tp, par_buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002331 par_buf = NULL;
2332 if (unlikely(par_blkno == 0)) {
2333 XFS_ERROR_REPORT("xfs_da_swap_lastblock(6)",
2334 XFS_ERRLEVEL_LOW, mp);
2335 error = XFS_ERROR(EFSCORRUPTED);
2336 goto done;
2337 }
Dave Chinnerf5ea1102013-04-24 18:58:02 +10002338 error = xfs_da3_node_read(tp, ip, par_blkno, -1, &par_buf, w);
Dave Chinner4bb20a82012-11-12 22:54:10 +11002339 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002340 goto done;
Dave Chinner1d9025e2012-06-22 18:50:14 +10002341 par_node = par_buf->b_addr;
Dave Chinnerf5ea1102013-04-24 18:58:02 +10002342 xfs_da3_node_hdr_from_disk(&par_hdr, par_node);
2343 if (par_hdr.level != level) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002344 XFS_ERROR_REPORT("xfs_da_swap_lastblock(7)",
2345 XFS_ERRLEVEL_LOW, mp);
2346 error = XFS_ERROR(EFSCORRUPTED);
2347 goto done;
2348 }
Dave Chinnerf5ea1102013-04-24 18:58:02 +10002349 btree = xfs_da3_node_tree_p(par_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002350 entno = 0;
2351 }
2352 /*
2353 * Update the parent entry pointing to the moved block.
2354 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +10002355 btree[entno].before = cpu_to_be32(dead_blkno);
Dave Chinner1d9025e2012-06-22 18:50:14 +10002356 xfs_trans_log_buf(tp, par_buf,
Dave Chinnerf5ea1102013-04-24 18:58:02 +10002357 XFS_DA_LOGRANGE(par_node, &btree[entno].before,
2358 sizeof(btree[entno].before)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002359 *dead_blknop = last_blkno;
2360 *dead_bufp = last_buf;
2361 return 0;
2362done:
2363 if (par_buf)
Dave Chinner1d9025e2012-06-22 18:50:14 +10002364 xfs_trans_brelse(tp, par_buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002365 if (sib_buf)
Dave Chinner1d9025e2012-06-22 18:50:14 +10002366 xfs_trans_brelse(tp, sib_buf);
2367 xfs_trans_brelse(tp, last_buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002368 return error;
2369}
2370
2371/*
2372 * Remove a btree block from a directory or attribute.
2373 */
2374int
Dave Chinner1d9025e2012-06-22 18:50:14 +10002375xfs_da_shrink_inode(
2376 xfs_da_args_t *args,
2377 xfs_dablk_t dead_blkno,
2378 struct xfs_buf *dead_buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002379{
2380 xfs_inode_t *dp;
2381 int done, error, w, count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002382 xfs_trans_t *tp;
2383 xfs_mount_t *mp;
2384
Dave Chinner5a5881c2012-03-22 05:15:13 +00002385 trace_xfs_da_shrink_inode(args);
2386
Linus Torvalds1da177e2005-04-16 15:20:36 -07002387 dp = args->dp;
2388 w = args->whichfork;
2389 tp = args->trans;
2390 mp = dp->i_mount;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +10002391 if (w == XFS_DATA_FORK)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002392 count = mp->m_dirblkfsbs;
2393 else
2394 count = 1;
2395 for (;;) {
2396 /*
2397 * Remove extents. If we get ENOSPC for a dir we have to move
2398 * the last block to the place we want to kill.
2399 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +10002400 error = xfs_bunmapi(tp, dp, dead_blkno, count,
2401 xfs_bmapi_aflag(w)|XFS_BMAPI_METADATA,
2402 0, args->firstblock, args->flist, &done);
2403 if (error == ENOSPC) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002404 if (w != XFS_DATA_FORK)
Nathan Scottf6c2d1f2006-06-20 13:04:51 +10002405 break;
Dave Chinnerf5ea1102013-04-24 18:58:02 +10002406 error = xfs_da3_swap_lastblock(args, &dead_blkno,
2407 &dead_buf);
2408 if (error)
Nathan Scottf6c2d1f2006-06-20 13:04:51 +10002409 break;
2410 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002411 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002412 }
2413 }
Dave Chinner1d9025e2012-06-22 18:50:14 +10002414 xfs_trans_binval(tp, dead_buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002415 return error;
2416}
2417
2418/*
2419 * See if the mapping(s) for this btree block are valid, i.e.
2420 * don't contain holes, are logically contiguous, and cover the whole range.
2421 */
2422STATIC int
2423xfs_da_map_covers_blocks(
2424 int nmap,
2425 xfs_bmbt_irec_t *mapp,
2426 xfs_dablk_t bno,
2427 int count)
2428{
2429 int i;
2430 xfs_fileoff_t off;
2431
2432 for (i = 0, off = bno; i < nmap; i++) {
2433 if (mapp[i].br_startblock == HOLESTARTBLOCK ||
2434 mapp[i].br_startblock == DELAYSTARTBLOCK) {
2435 return 0;
2436 }
2437 if (off != mapp[i].br_startoff) {
2438 return 0;
2439 }
2440 off += mapp[i].br_blockcount;
2441 }
2442 return off == bno + count;
2443}
2444
2445/*
Dave Chinner36054312012-06-22 18:50:13 +10002446 * Convert a struct xfs_bmbt_irec to a struct xfs_buf_map.
2447 *
2448 * For the single map case, it is assumed that the caller has provided a pointer
2449 * to a valid xfs_buf_map. For the multiple map case, this function will
2450 * allocate the xfs_buf_map to hold all the maps and replace the caller's single
2451 * map pointer with the allocated map.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002452 */
Dave Chinner36054312012-06-22 18:50:13 +10002453static int
2454xfs_buf_map_from_irec(
2455 struct xfs_mount *mp,
2456 struct xfs_buf_map **mapp,
2457 unsigned int *nmaps,
2458 struct xfs_bmbt_irec *irecs,
2459 unsigned int nirecs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002460{
Dave Chinner36054312012-06-22 18:50:13 +10002461 struct xfs_buf_map *map;
2462 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002463
Dave Chinner36054312012-06-22 18:50:13 +10002464 ASSERT(*nmaps == 1);
2465 ASSERT(nirecs >= 1);
2466
2467 if (nirecs > 1) {
Dave Chinnerb17cb362013-05-20 09:51:12 +10002468 map = kmem_zalloc(nirecs * sizeof(struct xfs_buf_map),
2469 KM_SLEEP | KM_NOFS);
Dave Chinner36054312012-06-22 18:50:13 +10002470 if (!map)
2471 return ENOMEM;
2472 *mapp = map;
2473 }
2474
2475 *nmaps = nirecs;
2476 map = *mapp;
2477 for (i = 0; i < *nmaps; i++) {
2478 ASSERT(irecs[i].br_startblock != DELAYSTARTBLOCK &&
2479 irecs[i].br_startblock != HOLESTARTBLOCK);
2480 map[i].bm_bn = XFS_FSB_TO_DADDR(mp, irecs[i].br_startblock);
2481 map[i].bm_len = XFS_FSB_TO_BB(mp, irecs[i].br_blockcount);
2482 }
2483 return 0;
2484}
2485
2486/*
2487 * Map the block we are given ready for reading. There are three possible return
2488 * values:
2489 * -1 - will be returned if we land in a hole and mappedbno == -2 so the
2490 * caller knows not to execute a subsequent read.
2491 * 0 - if we mapped the block successfully
2492 * >0 - positive error number if there was an error.
2493 */
2494static int
2495xfs_dabuf_map(
2496 struct xfs_trans *trans,
2497 struct xfs_inode *dp,
2498 xfs_dablk_t bno,
2499 xfs_daddr_t mappedbno,
2500 int whichfork,
2501 struct xfs_buf_map **map,
2502 int *nmaps)
2503{
2504 struct xfs_mount *mp = dp->i_mount;
2505 int nfsb;
2506 int error = 0;
2507 struct xfs_bmbt_irec irec;
2508 struct xfs_bmbt_irec *irecs = &irec;
2509 int nirecs;
2510
2511 ASSERT(map && *map);
2512 ASSERT(*nmaps == 1);
2513
Nathan Scottf6c2d1f2006-06-20 13:04:51 +10002514 nfsb = (whichfork == XFS_DATA_FORK) ? mp->m_dirblkfsbs : 1;
Dave Chinner36054312012-06-22 18:50:13 +10002515
Linus Torvalds1da177e2005-04-16 15:20:36 -07002516 /*
2517 * Caller doesn't have a mapping. -2 means don't complain
2518 * if we land in a hole.
2519 */
2520 if (mappedbno == -1 || mappedbno == -2) {
2521 /*
2522 * Optimize the one-block case.
2523 */
Dave Chinner36054312012-06-22 18:50:13 +10002524 if (nfsb != 1)
Dave Chinnerb17cb362013-05-20 09:51:12 +10002525 irecs = kmem_zalloc(sizeof(irec) * nfsb,
2526 KM_SLEEP | KM_NOFS);
Dave Chinner5b777ad2011-09-18 20:40:46 +00002527
Dave Chinner36054312012-06-22 18:50:13 +10002528 nirecs = nfsb;
2529 error = xfs_bmapi_read(dp, (xfs_fileoff_t)bno, nfsb, irecs,
2530 &nirecs, xfs_bmapi_aflag(whichfork));
Dave Chinner5b777ad2011-09-18 20:40:46 +00002531 if (error)
Dave Chinner36054312012-06-22 18:50:13 +10002532 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002533 } else {
Dave Chinner36054312012-06-22 18:50:13 +10002534 irecs->br_startblock = XFS_DADDR_TO_FSB(mp, mappedbno);
2535 irecs->br_startoff = (xfs_fileoff_t)bno;
2536 irecs->br_blockcount = nfsb;
2537 irecs->br_state = 0;
2538 nirecs = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002539 }
Dave Chinner36054312012-06-22 18:50:13 +10002540
2541 if (!xfs_da_map_covers_blocks(nirecs, irecs, bno, nfsb)) {
2542 error = mappedbno == -2 ? -1 : XFS_ERROR(EFSCORRUPTED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002543 if (unlikely(error == EFSCORRUPTED)) {
2544 if (xfs_error_level >= XFS_ERRLEVEL_LOW) {
Dave Chinner36054312012-06-22 18:50:13 +10002545 int i;
Dave Chinner0b932cc2011-03-07 10:08:35 +11002546 xfs_alert(mp, "%s: bno %lld dir: inode %lld",
2547 __func__, (long long)bno,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002548 (long long)dp->i_ino);
Dave Chinner36054312012-06-22 18:50:13 +10002549 for (i = 0; i < *nmaps; i++) {
Dave Chinner0b932cc2011-03-07 10:08:35 +11002550 xfs_alert(mp,
2551"[%02d] br_startoff %lld br_startblock %lld br_blockcount %lld br_state %d",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002552 i,
Dave Chinner36054312012-06-22 18:50:13 +10002553 (long long)irecs[i].br_startoff,
2554 (long long)irecs[i].br_startblock,
2555 (long long)irecs[i].br_blockcount,
2556 irecs[i].br_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002557 }
2558 }
2559 XFS_ERROR_REPORT("xfs_da_do_buf(1)",
2560 XFS_ERRLEVEL_LOW, mp);
2561 }
Dave Chinner36054312012-06-22 18:50:13 +10002562 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002563 }
Dave Chinner36054312012-06-22 18:50:13 +10002564 error = xfs_buf_map_from_irec(mp, map, nmaps, irecs, nirecs);
2565out:
2566 if (irecs != &irec)
2567 kmem_free(irecs);
2568 return error;
2569}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002570
Dave Chinner36054312012-06-22 18:50:13 +10002571/*
2572 * Get a buffer for the dir/attr block.
2573 */
2574int
2575xfs_da_get_buf(
2576 struct xfs_trans *trans,
2577 struct xfs_inode *dp,
2578 xfs_dablk_t bno,
2579 xfs_daddr_t mappedbno,
Dave Chinner1d9025e2012-06-22 18:50:14 +10002580 struct xfs_buf **bpp,
Dave Chinner36054312012-06-22 18:50:13 +10002581 int whichfork)
2582{
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)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002597 error = 0;
Dave Chinner36054312012-06-22 18:50:13 +10002598 goto out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002599 }
Dave Chinner36054312012-06-22 18:50:13 +10002600
2601 bp = xfs_trans_get_buf_map(trans, dp->i_mount->m_ddev_targp,
2602 mapp, nmap, 0);
2603 error = bp ? bp->b_error : XFS_ERROR(EIO);
2604 if (error) {
2605 xfs_trans_brelse(trans, bp);
2606 goto out_free;
2607 }
2608
Dave Chinner1d9025e2012-06-22 18:50:14 +10002609 *bpp = bp;
Dave Chinner36054312012-06-22 18:50:13 +10002610
2611out_free:
2612 if (mapp != &map)
2613 kmem_free(mapp);
2614
2615 return error;
2616}
2617
2618/*
2619 * Get a buffer for the dir/attr block, fill in the contents.
2620 */
2621int
2622xfs_da_read_buf(
2623 struct xfs_trans *trans,
2624 struct xfs_inode *dp,
2625 xfs_dablk_t bno,
2626 xfs_daddr_t mappedbno,
Dave Chinner1d9025e2012-06-22 18:50:14 +10002627 struct xfs_buf **bpp,
Dave Chinner4bb20a82012-11-12 22:54:10 +11002628 int whichfork,
Dave Chinner1813dd62012-11-14 17:54:40 +11002629 const struct xfs_buf_ops *ops)
Dave Chinner36054312012-06-22 18:50:13 +10002630{
2631 struct xfs_buf *bp;
2632 struct xfs_buf_map map;
2633 struct xfs_buf_map *mapp;
2634 int nmap;
2635 int error;
2636
2637 *bpp = NULL;
2638 mapp = &map;
2639 nmap = 1;
2640 error = xfs_dabuf_map(trans, dp, bno, mappedbno, whichfork,
2641 &mapp, &nmap);
2642 if (error) {
2643 /* mapping a hole is not an error, but we don't continue */
2644 if (error == -1)
2645 error = 0;
2646 goto out_free;
2647 }
2648
2649 error = xfs_trans_read_buf_map(dp->i_mount, trans,
2650 dp->i_mount->m_ddev_targp,
Dave Chinner1813dd62012-11-14 17:54:40 +11002651 mapp, nmap, 0, &bp, ops);
Dave Chinner36054312012-06-22 18:50:13 +10002652 if (error)
2653 goto out_free;
2654
2655 if (whichfork == XFS_ATTR_FORK)
2656 xfs_buf_set_ref(bp, XFS_ATTR_BTREE_REF);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002657 else
Dave Chinner36054312012-06-22 18:50:13 +10002658 xfs_buf_set_ref(bp, XFS_DIR_BTREE_REF);
2659
Linus Torvalds1da177e2005-04-16 15:20:36 -07002660 /*
Dave Chinner36054312012-06-22 18:50:13 +10002661 * This verification code will be moved to a CRC verification callback
2662 * function so just leave it here unchanged until then.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002663 */
Dave Chinner36054312012-06-22 18:50:13 +10002664 {
Dave Chinner1d9025e2012-06-22 18:50:14 +10002665 xfs_dir2_data_hdr_t *hdr = bp->b_addr;
2666 xfs_dir2_free_t *free = bp->b_addr;
2667 xfs_da_blkinfo_t *info = bp->b_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002668 uint magic, magic1;
Dave Chinner36054312012-06-22 18:50:13 +10002669 struct xfs_mount *mp = dp->i_mount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002670
Nathan Scott89da0542006-03-17 17:28:40 +11002671 magic = be16_to_cpu(info->magic);
Christoph Hellwigc2066e22011-07-08 14:35:38 +02002672 magic1 = be32_to_cpu(hdr->magic);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002673 if (unlikely(
2674 XFS_TEST_ERROR((magic != XFS_DA_NODE_MAGIC) &&
Dave Chinnerf5ea1102013-04-24 18:58:02 +10002675 (magic != XFS_DA3_NODE_MAGIC) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07002676 (magic != XFS_ATTR_LEAF_MAGIC) &&
Dave Chinner517c2222013-04-24 18:58:55 +10002677 (magic != XFS_ATTR3_LEAF_MAGIC) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07002678 (magic != XFS_DIR2_LEAF1_MAGIC) &&
Dave Chinner24df33b2013-04-12 07:30:21 +10002679 (magic != XFS_DIR3_LEAF1_MAGIC) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07002680 (magic != XFS_DIR2_LEAFN_MAGIC) &&
Dave Chinner24df33b2013-04-12 07:30:21 +10002681 (magic != XFS_DIR3_LEAFN_MAGIC) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07002682 (magic1 != XFS_DIR2_BLOCK_MAGIC) &&
Dave Chinner24df33b2013-04-12 07:30:21 +10002683 (magic1 != XFS_DIR3_BLOCK_MAGIC) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07002684 (magic1 != XFS_DIR2_DATA_MAGIC) &&
Dave Chinner24df33b2013-04-12 07:30:21 +10002685 (magic1 != XFS_DIR3_DATA_MAGIC) &&
2686 (free->hdr.magic !=
2687 cpu_to_be32(XFS_DIR2_FREE_MAGIC)) &&
2688 (free->hdr.magic !=
2689 cpu_to_be32(XFS_DIR3_FREE_MAGIC)),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002690 mp, XFS_ERRTAG_DA_READ_BUF,
2691 XFS_RANDOM_DA_READ_BUF))) {
Dave Chinner36054312012-06-22 18:50:13 +10002692 trace_xfs_da_btree_corrupt(bp, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002693 XFS_CORRUPTION_ERROR("xfs_da_do_buf(2)",
2694 XFS_ERRLEVEL_LOW, mp, info);
2695 error = XFS_ERROR(EFSCORRUPTED);
Dave Chinner1d9025e2012-06-22 18:50:14 +10002696 xfs_trans_brelse(trans, bp);
Dave Chinner36054312012-06-22 18:50:13 +10002697 goto out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002698 }
2699 }
Dave Chinner1d9025e2012-06-22 18:50:14 +10002700 *bpp = bp;
Dave Chinner36054312012-06-22 18:50:13 +10002701out_free:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002702 if (mapp != &map)
Denys Vlasenkof0e2d932008-05-19 16:31:57 +10002703 kmem_free(mapp);
Dave Chinner36054312012-06-22 18:50:13 +10002704
Linus Torvalds1da177e2005-04-16 15:20:36 -07002705 return error;
2706}
2707
2708/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002709 * Readahead the dir/attr block.
2710 */
2711xfs_daddr_t
2712xfs_da_reada_buf(
Dave Chinner36054312012-06-22 18:50:13 +10002713 struct xfs_trans *trans,
2714 struct xfs_inode *dp,
2715 xfs_dablk_t bno,
Dave Chinnerda6958c2012-11-12 22:54:18 +11002716 xfs_daddr_t mappedbno,
Dave Chinner4bb20a82012-11-12 22:54:10 +11002717 int whichfork,
Dave Chinner1813dd62012-11-14 17:54:40 +11002718 const struct xfs_buf_ops *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002719{
Dave Chinner36054312012-06-22 18:50:13 +10002720 struct xfs_buf_map map;
2721 struct xfs_buf_map *mapp;
2722 int nmap;
2723 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002724
Dave Chinner36054312012-06-22 18:50:13 +10002725 mapp = &map;
2726 nmap = 1;
Dave Chinnerda6958c2012-11-12 22:54:18 +11002727 error = xfs_dabuf_map(trans, dp, bno, mappedbno, whichfork,
Dave Chinner36054312012-06-22 18:50:13 +10002728 &mapp, &nmap);
2729 if (error) {
2730 /* mapping a hole is not an error, but we don't continue */
2731 if (error == -1)
2732 error = 0;
2733 goto out_free;
2734 }
2735
2736 mappedbno = mapp[0].bm_bn;
Dave Chinner1813dd62012-11-14 17:54:40 +11002737 xfs_buf_readahead_map(dp->i_mount->m_ddev_targp, mapp, nmap, ops);
Dave Chinner36054312012-06-22 18:50:13 +10002738
2739out_free:
2740 if (mapp != &map)
2741 kmem_free(mapp);
2742
2743 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002744 return -1;
Dave Chinner36054312012-06-22 18:50:13 +10002745 return mappedbno;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002746}