blob: 069537c845e5cc424ce02bf3cec7838250357a32 [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_format.h"
Dave Chinner2b9ab5a2013-08-12 20:49:37 +100031#include "xfs_dir2.h"
Christoph Hellwig57926642011-07-13 13:43:48 +020032#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;
Dave Chinner836a94a2013-08-12 20:49:44 +1000402 int action = 0;
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000403 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;
Dave Chinner0a4edc82013-09-02 10:32:01 +1000638 xfs_trans_buf_copy_type(bp, blk1->bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 blk1->bp = bp;
640 blk1->blkno = blkno;
641
642 /*
643 * Set up the new root node.
644 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000645 error = xfs_da3_node_create(args,
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000646 (args->whichfork == XFS_DATA_FORK) ? mp->m_dirleafblk : 0,
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000647 level + 1, &bp, args->whichfork);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 if (error)
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000649 return error;
650
Dave Chinner1d9025e2012-06-22 18:50:14 +1000651 node = bp->b_addr;
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000652 xfs_da3_node_hdr_from_disk(&nodehdr, node);
653 btree = xfs_da3_node_tree_p(node);
654 btree[0].hashval = cpu_to_be32(blk1->hashval);
655 btree[0].before = cpu_to_be32(blk1->blkno);
656 btree[1].hashval = cpu_to_be32(blk2->hashval);
657 btree[1].before = cpu_to_be32(blk2->blkno);
658 nodehdr.count = 2;
659 xfs_da3_node_hdr_to_disk(node, &nodehdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660
661#ifdef DEBUG
Dave Chinner24df33b2013-04-12 07:30:21 +1000662 if (oldroot->hdr.info.magic == cpu_to_be16(XFS_DIR2_LEAFN_MAGIC) ||
663 oldroot->hdr.info.magic == cpu_to_be16(XFS_DIR3_LEAFN_MAGIC)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 ASSERT(blk1->blkno >= mp->m_dirleafblk &&
665 blk1->blkno < mp->m_dirfreeblk);
666 ASSERT(blk2->blkno >= mp->m_dirleafblk &&
667 blk2->blkno < mp->m_dirfreeblk);
668 }
669#endif
670
671 /* Header is already logged by xfs_da_node_create */
Dave Chinner1d9025e2012-06-22 18:50:14 +1000672 xfs_trans_log_buf(tp, bp,
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000673 XFS_DA_LOGRANGE(node, btree, sizeof(xfs_da_node_entry_t) * 2));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000675 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676}
677
678/*
679 * Split the node, rebalance, then add the new entry.
680 */
681STATIC int /* error */
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000682xfs_da3_node_split(
683 struct xfs_da_state *state,
684 struct xfs_da_state_blk *oldblk,
685 struct xfs_da_state_blk *newblk,
686 struct xfs_da_state_blk *addblk,
687 int treelevel,
688 int *result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689{
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000690 struct xfs_da_intnode *node;
691 struct xfs_da3_icnode_hdr nodehdr;
692 xfs_dablk_t blkno;
693 int newcount;
694 int error;
695 int useextra;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696
Dave Chinner5a5881c2012-03-22 05:15:13 +0000697 trace_xfs_da_node_split(state->args);
698
Dave Chinner1d9025e2012-06-22 18:50:14 +1000699 node = oldblk->bp->b_addr;
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000700 xfs_da3_node_hdr_from_disk(&nodehdr, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701
702 /*
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000703 * With V2 dirs the extra block is data or freespace.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 */
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000705 useextra = state->extravalid && state->args->whichfork == XFS_ATTR_FORK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 newcount = 1 + useextra;
707 /*
708 * Do we have to split the node?
709 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000710 if (nodehdr.count + newcount > state->node_ents) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 /*
712 * Allocate a new node, add to the doubly linked chain of
713 * nodes, then move some of our excess entries into it.
714 */
715 error = xfs_da_grow_inode(state->args, &blkno);
716 if (error)
717 return(error); /* GROT: dir is inconsistent */
718
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000719 error = xfs_da3_node_create(state->args, blkno, treelevel,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 &newblk->bp, state->args->whichfork);
721 if (error)
722 return(error); /* GROT: dir is inconsistent */
723 newblk->blkno = blkno;
724 newblk->magic = XFS_DA_NODE_MAGIC;
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000725 xfs_da3_node_rebalance(state, oldblk, newblk);
726 error = xfs_da3_blk_link(state, oldblk, newblk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 if (error)
728 return(error);
729 *result = 1;
730 } else {
731 *result = 0;
732 }
733
734 /*
735 * Insert the new entry(s) into the correct block
736 * (updating last hashval in the process).
737 *
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000738 * xfs_da3_node_add() inserts BEFORE the given index,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 * and as a result of using node_lookup_int() we always
740 * point to a valid entry (not after one), but a split
741 * operation always results in a new block whose hashvals
742 * FOLLOW the current block.
743 *
744 * If we had double-split op below us, then add the extra block too.
745 */
Dave Chinner1d9025e2012-06-22 18:50:14 +1000746 node = oldblk->bp->b_addr;
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000747 xfs_da3_node_hdr_from_disk(&nodehdr, node);
748 if (oldblk->index <= nodehdr.count) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 oldblk->index++;
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000750 xfs_da3_node_add(state, oldblk, addblk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 if (useextra) {
752 if (state->extraafter)
753 oldblk->index++;
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000754 xfs_da3_node_add(state, oldblk, &state->extrablk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 state->extravalid = 0;
756 }
757 } else {
758 newblk->index++;
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000759 xfs_da3_node_add(state, newblk, addblk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 if (useextra) {
761 if (state->extraafter)
762 newblk->index++;
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000763 xfs_da3_node_add(state, newblk, &state->extrablk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 state->extravalid = 0;
765 }
766 }
767
768 return(0);
769}
770
771/*
772 * Balance the btree elements between two intermediate nodes,
773 * usually one full and one empty.
774 *
775 * NOTE: if blk2 is empty, then it will get the upper half of blk1.
776 */
777STATIC void
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000778xfs_da3_node_rebalance(
779 struct xfs_da_state *state,
780 struct xfs_da_state_blk *blk1,
781 struct xfs_da_state_blk *blk2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782{
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000783 struct xfs_da_intnode *node1;
784 struct xfs_da_intnode *node2;
785 struct xfs_da_intnode *tmpnode;
786 struct xfs_da_node_entry *btree1;
787 struct xfs_da_node_entry *btree2;
788 struct xfs_da_node_entry *btree_s;
789 struct xfs_da_node_entry *btree_d;
790 struct xfs_da3_icnode_hdr nodehdr1;
791 struct xfs_da3_icnode_hdr nodehdr2;
792 struct xfs_trans *tp;
793 int count;
794 int tmp;
795 int swap = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796
Dave Chinner5a5881c2012-03-22 05:15:13 +0000797 trace_xfs_da_node_rebalance(state->args);
798
Dave Chinner1d9025e2012-06-22 18:50:14 +1000799 node1 = blk1->bp->b_addr;
800 node2 = blk2->bp->b_addr;
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000801 xfs_da3_node_hdr_from_disk(&nodehdr1, node1);
802 xfs_da3_node_hdr_from_disk(&nodehdr2, node2);
803 btree1 = xfs_da3_node_tree_p(node1);
804 btree2 = xfs_da3_node_tree_p(node2);
805
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 /*
807 * Figure out how many entries need to move, and in which direction.
808 * Swap the nodes around if that makes it simpler.
809 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000810 if (nodehdr1.count > 0 && nodehdr2.count > 0 &&
811 ((be32_to_cpu(btree2[0].hashval) < be32_to_cpu(btree1[0].hashval)) ||
812 (be32_to_cpu(btree2[nodehdr2.count - 1].hashval) <
813 be32_to_cpu(btree1[nodehdr1.count - 1].hashval)))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 tmpnode = node1;
815 node1 = node2;
816 node2 = tmpnode;
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000817 xfs_da3_node_hdr_from_disk(&nodehdr1, node1);
818 xfs_da3_node_hdr_from_disk(&nodehdr2, node2);
819 btree1 = xfs_da3_node_tree_p(node1);
820 btree2 = xfs_da3_node_tree_p(node2);
821 swap = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 }
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000823
824 count = (nodehdr1.count - nodehdr2.count) / 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 if (count == 0)
826 return;
827 tp = state->args->trans;
828 /*
829 * Two cases: high-to-low and low-to-high.
830 */
831 if (count > 0) {
832 /*
833 * Move elements in node2 up to make a hole.
834 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000835 tmp = nodehdr2.count;
836 if (tmp > 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 tmp *= (uint)sizeof(xfs_da_node_entry_t);
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000838 btree_s = &btree2[0];
839 btree_d = &btree2[count];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 memmove(btree_d, btree_s, tmp);
841 }
842
843 /*
844 * Move the req'd B-tree elements from high in node1 to
845 * low in node2.
846 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000847 nodehdr2.count += count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 tmp = count * (uint)sizeof(xfs_da_node_entry_t);
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000849 btree_s = &btree1[nodehdr1.count - count];
850 btree_d = &btree2[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 memcpy(btree_d, btree_s, tmp);
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000852 nodehdr1.count -= count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 } else {
854 /*
855 * Move the req'd B-tree elements from low in node2 to
856 * high in node1.
857 */
858 count = -count;
859 tmp = count * (uint)sizeof(xfs_da_node_entry_t);
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000860 btree_s = &btree2[0];
861 btree_d = &btree1[nodehdr1.count];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 memcpy(btree_d, btree_s, tmp);
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000863 nodehdr1.count += count;
864
Dave Chinner1d9025e2012-06-22 18:50:14 +1000865 xfs_trans_log_buf(tp, blk1->bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 XFS_DA_LOGRANGE(node1, btree_d, tmp));
867
868 /*
869 * Move elements in node2 down to fill the hole.
870 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000871 tmp = nodehdr2.count - count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872 tmp *= (uint)sizeof(xfs_da_node_entry_t);
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000873 btree_s = &btree2[count];
874 btree_d = &btree2[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 memmove(btree_d, btree_s, tmp);
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000876 nodehdr2.count -= count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 }
878
879 /*
880 * Log header of node 1 and all current bits of node 2.
881 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000882 xfs_da3_node_hdr_to_disk(node1, &nodehdr1);
Dave Chinner1d9025e2012-06-22 18:50:14 +1000883 xfs_trans_log_buf(tp, blk1->bp,
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000884 XFS_DA_LOGRANGE(node1, &node1->hdr,
885 xfs_da3_node_hdr_size(node1)));
886
887 xfs_da3_node_hdr_to_disk(node2, &nodehdr2);
Dave Chinner1d9025e2012-06-22 18:50:14 +1000888 xfs_trans_log_buf(tp, blk2->bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 XFS_DA_LOGRANGE(node2, &node2->hdr,
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000890 xfs_da3_node_hdr_size(node2) +
891 (sizeof(btree2[0]) * nodehdr2.count)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892
893 /*
894 * Record the last hashval from each block for upward propagation.
895 * (note: don't use the swapped node pointers)
896 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000897 if (swap) {
898 node1 = blk1->bp->b_addr;
899 node2 = blk2->bp->b_addr;
900 xfs_da3_node_hdr_from_disk(&nodehdr1, node1);
901 xfs_da3_node_hdr_from_disk(&nodehdr2, node2);
902 btree1 = xfs_da3_node_tree_p(node1);
903 btree2 = xfs_da3_node_tree_p(node2);
904 }
905 blk1->hashval = be32_to_cpu(btree1[nodehdr1.count - 1].hashval);
906 blk2->hashval = be32_to_cpu(btree2[nodehdr2.count - 1].hashval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907
908 /*
909 * Adjust the expected index for insertion.
910 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000911 if (blk1->index >= nodehdr1.count) {
912 blk2->index = blk1->index - nodehdr1.count;
913 blk1->index = nodehdr1.count + 1; /* make it invalid */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914 }
915}
916
917/*
918 * Add a new entry to an intermediate node.
919 */
920STATIC void
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000921xfs_da3_node_add(
922 struct xfs_da_state *state,
923 struct xfs_da_state_blk *oldblk,
924 struct xfs_da_state_blk *newblk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925{
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000926 struct xfs_da_intnode *node;
927 struct xfs_da3_icnode_hdr nodehdr;
928 struct xfs_da_node_entry *btree;
929 int tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930
Dave Chinner5a5881c2012-03-22 05:15:13 +0000931 trace_xfs_da_node_add(state->args);
932
Dave Chinner1d9025e2012-06-22 18:50:14 +1000933 node = oldblk->bp->b_addr;
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000934 xfs_da3_node_hdr_from_disk(&nodehdr, node);
935 btree = xfs_da3_node_tree_p(node);
936
937 ASSERT(oldblk->index >= 0 && oldblk->index <= nodehdr.count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 ASSERT(newblk->blkno != 0);
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000939 if (state->args->whichfork == XFS_DATA_FORK)
Christoph Hellwig73523a22010-07-20 17:54:45 +1000940 ASSERT(newblk->blkno >= state->mp->m_dirleafblk &&
941 newblk->blkno < state->mp->m_dirfreeblk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942
943 /*
944 * We may need to make some room before we insert the new node.
945 */
946 tmp = 0;
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000947 if (oldblk->index < nodehdr.count) {
948 tmp = (nodehdr.count - oldblk->index) * (uint)sizeof(*btree);
949 memmove(&btree[oldblk->index + 1], &btree[oldblk->index], tmp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950 }
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000951 btree[oldblk->index].hashval = cpu_to_be32(newblk->hashval);
952 btree[oldblk->index].before = cpu_to_be32(newblk->blkno);
Dave Chinner1d9025e2012-06-22 18:50:14 +1000953 xfs_trans_log_buf(state->args->trans, oldblk->bp,
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000954 XFS_DA_LOGRANGE(node, &btree[oldblk->index],
955 tmp + sizeof(*btree)));
956
957 nodehdr.count += 1;
958 xfs_da3_node_hdr_to_disk(node, &nodehdr);
Dave Chinner1d9025e2012-06-22 18:50:14 +1000959 xfs_trans_log_buf(state->args->trans, oldblk->bp,
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000960 XFS_DA_LOGRANGE(node, &node->hdr, xfs_da3_node_hdr_size(node)));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961
962 /*
963 * Copy the last hash value from the oldblk to propagate upwards.
964 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000965 oldblk->hashval = be32_to_cpu(btree[nodehdr.count - 1].hashval);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966}
967
968/*========================================================================
969 * Routines used for shrinking the Btree.
970 *========================================================================*/
971
972/*
973 * Deallocate an empty leaf node, remove it from its parent,
974 * possibly deallocating that block, etc...
975 */
976int
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000977xfs_da3_join(
978 struct xfs_da_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979{
Dave Chinnerf5ea1102013-04-24 18:58:02 +1000980 struct xfs_da_state_blk *drop_blk;
981 struct xfs_da_state_blk *save_blk;
982 int action = 0;
983 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984
Dave Chinner5a5881c2012-03-22 05:15:13 +0000985 trace_xfs_da_join(state->args);
986
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 drop_blk = &state->path.blk[ state->path.active-1 ];
988 save_blk = &state->altpath.blk[ state->path.active-1 ];
989 ASSERT(state->path.blk[0].magic == XFS_DA_NODE_MAGIC);
990 ASSERT(drop_blk->magic == XFS_ATTR_LEAF_MAGIC ||
Nathan Scottf6c2d1f2006-06-20 13:04:51 +1000991 drop_blk->magic == XFS_DIR2_LEAFN_MAGIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992
993 /*
994 * Walk back up the tree joining/deallocating as necessary.
995 * When we stop dropping blocks, break out.
996 */
997 for ( ; state->path.active >= 2; drop_blk--, save_blk--,
998 state->path.active--) {
999 /*
1000 * See if we can combine the block with a neighbor.
1001 * (action == 0) => no options, just leave
1002 * (action == 1) => coalesce, then unlink
1003 * (action == 2) => block empty, unlink it
1004 */
1005 switch (drop_blk->magic) {
1006 case XFS_ATTR_LEAF_MAGIC:
Dave Chinner517c2222013-04-24 18:58:55 +10001007 error = xfs_attr3_leaf_toosmall(state, &action);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008 if (error)
1009 return(error);
1010 if (action == 0)
1011 return(0);
Dave Chinner517c2222013-04-24 18:58:55 +10001012 xfs_attr3_leaf_unbalance(state, drop_blk, save_blk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 case XFS_DIR2_LEAFN_MAGIC:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 error = xfs_dir2_leafn_toosmall(state, &action);
1016 if (error)
1017 return error;
1018 if (action == 0)
1019 return 0;
1020 xfs_dir2_leafn_unbalance(state, drop_blk, save_blk);
1021 break;
1022 case XFS_DA_NODE_MAGIC:
1023 /*
1024 * Remove the offending node, fixup hashvals,
1025 * check for a toosmall neighbor.
1026 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001027 xfs_da3_node_remove(state, drop_blk);
1028 xfs_da3_fixhashpath(state, &state->path);
1029 error = xfs_da3_node_toosmall(state, &action);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 if (error)
1031 return(error);
1032 if (action == 0)
1033 return 0;
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001034 xfs_da3_node_unbalance(state, drop_blk, save_blk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035 break;
1036 }
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001037 xfs_da3_fixhashpath(state, &state->altpath);
1038 error = xfs_da3_blk_unlink(state, drop_blk, save_blk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039 xfs_da_state_kill_altpath(state);
1040 if (error)
1041 return(error);
1042 error = xfs_da_shrink_inode(state->args, drop_blk->blkno,
1043 drop_blk->bp);
1044 drop_blk->bp = NULL;
1045 if (error)
1046 return(error);
1047 }
1048 /*
1049 * We joined all the way to the top. If it turns out that
1050 * we only have one entry in the root, make the child block
1051 * the new root.
1052 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001053 xfs_da3_node_remove(state, drop_blk);
1054 xfs_da3_fixhashpath(state, &state->path);
1055 error = xfs_da3_root_join(state, &state->path.blk[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 return(error);
1057}
1058
Alex Elder1c4f3322011-07-18 18:14:09 +00001059#ifdef DEBUG
1060static void
1061xfs_da_blkinfo_onlychild_validate(struct xfs_da_blkinfo *blkinfo, __u16 level)
1062{
1063 __be16 magic = blkinfo->magic;
1064
1065 if (level == 1) {
1066 ASSERT(magic == cpu_to_be16(XFS_DIR2_LEAFN_MAGIC) ||
Dave Chinner24df33b2013-04-12 07:30:21 +10001067 magic == cpu_to_be16(XFS_DIR3_LEAFN_MAGIC) ||
Dave Chinner517c2222013-04-24 18:58:55 +10001068 magic == cpu_to_be16(XFS_ATTR_LEAF_MAGIC) ||
1069 magic == cpu_to_be16(XFS_ATTR3_LEAF_MAGIC));
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001070 } else {
1071 ASSERT(magic == cpu_to_be16(XFS_DA_NODE_MAGIC) ||
1072 magic == cpu_to_be16(XFS_DA3_NODE_MAGIC));
1073 }
Alex Elder1c4f3322011-07-18 18:14:09 +00001074 ASSERT(!blkinfo->forw);
1075 ASSERT(!blkinfo->back);
1076}
1077#else /* !DEBUG */
1078#define xfs_da_blkinfo_onlychild_validate(blkinfo, level)
1079#endif /* !DEBUG */
1080
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081/*
1082 * We have only one entry in the root. Copy the only remaining child of
1083 * the old root to block 0 as the new root node.
1084 */
1085STATIC int
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001086xfs_da3_root_join(
1087 struct xfs_da_state *state,
1088 struct xfs_da_state_blk *root_blk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089{
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001090 struct xfs_da_intnode *oldroot;
1091 struct xfs_da_args *args;
1092 xfs_dablk_t child;
1093 struct xfs_buf *bp;
1094 struct xfs_da3_icnode_hdr oldroothdr;
1095 struct xfs_da_node_entry *btree;
1096 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097
Dave Chinner5a5881c2012-03-22 05:15:13 +00001098 trace_xfs_da_root_join(state->args);
1099
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 ASSERT(root_blk->magic == XFS_DA_NODE_MAGIC);
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001101
1102 args = state->args;
Dave Chinner1d9025e2012-06-22 18:50:14 +10001103 oldroot = root_blk->bp->b_addr;
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001104 xfs_da3_node_hdr_from_disk(&oldroothdr, oldroot);
1105 ASSERT(oldroothdr.forw == 0);
1106 ASSERT(oldroothdr.back == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107
1108 /*
1109 * If the root has more than one child, then don't do anything.
1110 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001111 if (oldroothdr.count > 1)
1112 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113
1114 /*
1115 * Read in the (only) child block, then copy those bytes into
1116 * the root block's buffer and free the original child block.
1117 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001118 btree = xfs_da3_node_tree_p(oldroot);
1119 child = be32_to_cpu(btree[0].before);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120 ASSERT(child != 0);
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001121 error = xfs_da3_node_read(args->trans, args->dp, child, -1, &bp,
Dave Chinnerd9392a42012-11-12 22:54:17 +11001122 args->whichfork);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123 if (error)
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001124 return error;
1125 xfs_da_blkinfo_onlychild_validate(bp->b_addr, oldroothdr.level);
Alex Elder1c4f3322011-07-18 18:14:09 +00001126
Dave Chinner612cfbf2012-11-14 17:52:32 +11001127 /*
1128 * This could be copying a leaf back into the root block in the case of
1129 * there only being a single leaf block left in the tree. Hence we have
Dave Chinner1813dd62012-11-14 17:54:40 +11001130 * to update the b_ops pointer as well to match the buffer type change
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001131 * that could occur. For dir3 blocks we also need to update the block
1132 * number in the buffer header.
Dave Chinner612cfbf2012-11-14 17:52:32 +11001133 */
Dave Chinner1d9025e2012-06-22 18:50:14 +10001134 memcpy(root_blk->bp->b_addr, bp->b_addr, state->blocksize);
Dave Chinner1813dd62012-11-14 17:54:40 +11001135 root_blk->bp->b_ops = bp->b_ops;
Dave Chinnerd75afeb2013-04-03 16:11:29 +11001136 xfs_trans_buf_copy_type(root_blk->bp, bp);
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001137 if (oldroothdr.magic == XFS_DA3_NODE_MAGIC) {
1138 struct xfs_da3_blkinfo *da3 = root_blk->bp->b_addr;
1139 da3->blkno = cpu_to_be64(root_blk->bp->b_bn);
1140 }
Dave Chinner1d9025e2012-06-22 18:50:14 +10001141 xfs_trans_log_buf(args->trans, root_blk->bp, 0, state->blocksize - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142 error = xfs_da_shrink_inode(args, child, bp);
1143 return(error);
1144}
1145
1146/*
1147 * Check a node block and its neighbors to see if the block should be
1148 * collapsed into one or the other neighbor. Always keep the block
1149 * with the smaller block number.
1150 * If the current block is over 50% full, don't try to join it, return 0.
1151 * If the block is empty, fill in the state structure and return 2.
1152 * If it can be collapsed, fill in the state structure and return 1.
1153 * If nothing can be done, return 0.
1154 */
1155STATIC int
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001156xfs_da3_node_toosmall(
1157 struct xfs_da_state *state,
1158 int *action)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159{
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001160 struct xfs_da_intnode *node;
1161 struct xfs_da_state_blk *blk;
1162 struct xfs_da_blkinfo *info;
1163 xfs_dablk_t blkno;
1164 struct xfs_buf *bp;
1165 struct xfs_da3_icnode_hdr nodehdr;
1166 int count;
1167 int forward;
1168 int error;
1169 int retval;
1170 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171
Dave Chinneree732592012-11-12 22:53:53 +11001172 trace_xfs_da_node_toosmall(state->args);
1173
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174 /*
1175 * Check for the degenerate case of the block being over 50% full.
1176 * If so, it's not worth even looking to see if we might be able
1177 * to coalesce with a sibling.
1178 */
1179 blk = &state->path.blk[ state->path.active-1 ];
Dave Chinner1d9025e2012-06-22 18:50:14 +10001180 info = blk->bp->b_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181 node = (xfs_da_intnode_t *)info;
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001182 xfs_da3_node_hdr_from_disk(&nodehdr, node);
1183 if (nodehdr.count > (state->node_ents >> 1)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184 *action = 0; /* blk over 50%, don't try to join */
1185 return(0); /* blk over 50%, don't try to join */
1186 }
1187
1188 /*
1189 * Check for the degenerate case of the block being empty.
1190 * If the block is empty, we'll simply delete it, no need to
Nathan Scottc41564b2006-03-29 08:55:14 +10001191 * coalesce it with a sibling block. We choose (arbitrarily)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192 * to merge with the forward block unless it is NULL.
1193 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001194 if (nodehdr.count == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195 /*
1196 * Make altpath point to the block we want to keep and
1197 * path point to the block we want to drop (this one).
1198 */
Nathan Scott89da0542006-03-17 17:28:40 +11001199 forward = (info->forw != 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200 memcpy(&state->altpath, &state->path, sizeof(state->path));
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001201 error = xfs_da3_path_shift(state, &state->altpath, forward,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202 0, &retval);
1203 if (error)
1204 return(error);
1205 if (retval) {
1206 *action = 0;
1207 } else {
1208 *action = 2;
1209 }
1210 return(0);
1211 }
1212
1213 /*
1214 * Examine each sibling block to see if we can coalesce with
1215 * at least 25% free space to spare. We need to figure out
1216 * whether to merge with the forward or the backward block.
1217 * We prefer coalescing with the lower numbered sibling so as
1218 * to shrink a directory over time.
1219 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001220 count = state->node_ents;
1221 count -= state->node_ents >> 2;
1222 count -= nodehdr.count;
1223
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224 /* start with smaller blk num */
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001225 forward = nodehdr.forw < nodehdr.back;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226 for (i = 0; i < 2; forward = !forward, i++) {
1227 if (forward)
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001228 blkno = nodehdr.forw;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229 else
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001230 blkno = nodehdr.back;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231 if (blkno == 0)
1232 continue;
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001233 error = xfs_da3_node_read(state->args->trans, state->args->dp,
Dave Chinnerd9392a42012-11-12 22:54:17 +11001234 blkno, -1, &bp, state->args->whichfork);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235 if (error)
1236 return(error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237
Dave Chinner1d9025e2012-06-22 18:50:14 +10001238 node = bp->b_addr;
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001239 xfs_da3_node_hdr_from_disk(&nodehdr, node);
Dave Chinner1d9025e2012-06-22 18:50:14 +10001240 xfs_trans_brelse(state->args->trans, bp);
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001241
1242 if (count - nodehdr.count >= 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243 break; /* fits with at least 25% to spare */
1244 }
1245 if (i >= 2) {
1246 *action = 0;
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001247 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248 }
1249
1250 /*
1251 * Make altpath point to the block we want to keep (the lower
1252 * numbered block) and path point to the block we want to drop.
1253 */
1254 memcpy(&state->altpath, &state->path, sizeof(state->path));
1255 if (blkno < blk->blkno) {
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001256 error = xfs_da3_path_shift(state, &state->altpath, forward,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257 0, &retval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258 } else {
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001259 error = xfs_da3_path_shift(state, &state->path, forward,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260 0, &retval);
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001261 }
1262 if (error)
1263 return error;
1264 if (retval) {
1265 *action = 0;
1266 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267 }
1268 *action = 1;
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001269 return 0;
1270}
1271
1272/*
1273 * Pick up the last hashvalue from an intermediate node.
1274 */
1275STATIC uint
1276xfs_da3_node_lasthash(
1277 struct xfs_buf *bp,
1278 int *count)
1279{
1280 struct xfs_da_intnode *node;
1281 struct xfs_da_node_entry *btree;
1282 struct xfs_da3_icnode_hdr nodehdr;
1283
1284 node = bp->b_addr;
1285 xfs_da3_node_hdr_from_disk(&nodehdr, node);
1286 if (count)
1287 *count = nodehdr.count;
1288 if (!nodehdr.count)
1289 return 0;
1290 btree = xfs_da3_node_tree_p(node);
1291 return be32_to_cpu(btree[nodehdr.count - 1].hashval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292}
1293
1294/*
1295 * Walk back up the tree adjusting hash values as necessary,
1296 * when we stop making changes, return.
1297 */
1298void
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001299xfs_da3_fixhashpath(
1300 struct xfs_da_state *state,
1301 struct xfs_da_state_path *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302{
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001303 struct xfs_da_state_blk *blk;
1304 struct xfs_da_intnode *node;
1305 struct xfs_da_node_entry *btree;
1306 xfs_dahash_t lasthash=0;
1307 int level;
1308 int count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309
Dave Chinneree732592012-11-12 22:53:53 +11001310 trace_xfs_da_fixhashpath(state->args);
1311
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312 level = path->active-1;
1313 blk = &path->blk[ level ];
1314 switch (blk->magic) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315 case XFS_ATTR_LEAF_MAGIC:
1316 lasthash = xfs_attr_leaf_lasthash(blk->bp, &count);
1317 if (count == 0)
1318 return;
1319 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320 case XFS_DIR2_LEAFN_MAGIC:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321 lasthash = xfs_dir2_leafn_lasthash(blk->bp, &count);
1322 if (count == 0)
1323 return;
1324 break;
1325 case XFS_DA_NODE_MAGIC:
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001326 lasthash = xfs_da3_node_lasthash(blk->bp, &count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327 if (count == 0)
1328 return;
1329 break;
1330 }
1331 for (blk--, level--; level >= 0; blk--, level--) {
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001332 struct xfs_da3_icnode_hdr nodehdr;
1333
Dave Chinner1d9025e2012-06-22 18:50:14 +10001334 node = blk->bp->b_addr;
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001335 xfs_da3_node_hdr_from_disk(&nodehdr, node);
1336 btree = xfs_da3_node_tree_p(node);
Nathan Scott403432d2006-03-17 17:29:46 +11001337 if (be32_to_cpu(btree->hashval) == lasthash)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338 break;
1339 blk->hashval = lasthash;
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001340 btree[blk->index].hashval = cpu_to_be32(lasthash);
Dave Chinner1d9025e2012-06-22 18:50:14 +10001341 xfs_trans_log_buf(state->args->trans, blk->bp,
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001342 XFS_DA_LOGRANGE(node, &btree[blk->index],
1343 sizeof(*btree)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001345 lasthash = be32_to_cpu(btree[nodehdr.count - 1].hashval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346 }
1347}
1348
1349/*
1350 * Remove an entry from an intermediate node.
1351 */
1352STATIC void
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001353xfs_da3_node_remove(
1354 struct xfs_da_state *state,
1355 struct xfs_da_state_blk *drop_blk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356{
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001357 struct xfs_da_intnode *node;
1358 struct xfs_da3_icnode_hdr nodehdr;
1359 struct xfs_da_node_entry *btree;
1360 int index;
1361 int tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362
Dave Chinner5a5881c2012-03-22 05:15:13 +00001363 trace_xfs_da_node_remove(state->args);
1364
Dave Chinner1d9025e2012-06-22 18:50:14 +10001365 node = drop_blk->bp->b_addr;
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001366 xfs_da3_node_hdr_from_disk(&nodehdr, node);
1367 ASSERT(drop_blk->index < nodehdr.count);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368 ASSERT(drop_blk->index >= 0);
1369
1370 /*
1371 * Copy over the offending entry, or just zero it out.
1372 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001373 index = drop_blk->index;
1374 btree = xfs_da3_node_tree_p(node);
1375 if (index < nodehdr.count - 1) {
1376 tmp = nodehdr.count - index - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377 tmp *= (uint)sizeof(xfs_da_node_entry_t);
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001378 memmove(&btree[index], &btree[index + 1], tmp);
Dave Chinner1d9025e2012-06-22 18:50:14 +10001379 xfs_trans_log_buf(state->args->trans, drop_blk->bp,
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001380 XFS_DA_LOGRANGE(node, &btree[index], tmp));
1381 index = nodehdr.count - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382 }
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001383 memset(&btree[index], 0, sizeof(xfs_da_node_entry_t));
Dave Chinner1d9025e2012-06-22 18:50:14 +10001384 xfs_trans_log_buf(state->args->trans, drop_blk->bp,
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001385 XFS_DA_LOGRANGE(node, &btree[index], sizeof(btree[index])));
1386 nodehdr.count -= 1;
1387 xfs_da3_node_hdr_to_disk(node, &nodehdr);
Dave Chinner1d9025e2012-06-22 18:50:14 +10001388 xfs_trans_log_buf(state->args->trans, drop_blk->bp,
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001389 XFS_DA_LOGRANGE(node, &node->hdr, xfs_da3_node_hdr_size(node)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390
1391 /*
1392 * Copy the last hash value from the block to propagate upwards.
1393 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001394 drop_blk->hashval = be32_to_cpu(btree[index - 1].hashval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395}
1396
1397/*
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001398 * Unbalance the elements between two intermediate nodes,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399 * move all Btree elements from one node into another.
1400 */
1401STATIC void
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001402xfs_da3_node_unbalance(
1403 struct xfs_da_state *state,
1404 struct xfs_da_state_blk *drop_blk,
1405 struct xfs_da_state_blk *save_blk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406{
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001407 struct xfs_da_intnode *drop_node;
1408 struct xfs_da_intnode *save_node;
1409 struct xfs_da_node_entry *drop_btree;
1410 struct xfs_da_node_entry *save_btree;
1411 struct xfs_da3_icnode_hdr drop_hdr;
1412 struct xfs_da3_icnode_hdr save_hdr;
1413 struct xfs_trans *tp;
1414 int sindex;
1415 int tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416
Dave Chinner5a5881c2012-03-22 05:15:13 +00001417 trace_xfs_da_node_unbalance(state->args);
1418
Dave Chinner1d9025e2012-06-22 18:50:14 +10001419 drop_node = drop_blk->bp->b_addr;
1420 save_node = save_blk->bp->b_addr;
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001421 xfs_da3_node_hdr_from_disk(&drop_hdr, drop_node);
1422 xfs_da3_node_hdr_from_disk(&save_hdr, save_node);
1423 drop_btree = xfs_da3_node_tree_p(drop_node);
1424 save_btree = xfs_da3_node_tree_p(save_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425 tp = state->args->trans;
1426
1427 /*
1428 * If the dying block has lower hashvals, then move all the
1429 * elements in the remaining block up to make a hole.
1430 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001431 if ((be32_to_cpu(drop_btree[0].hashval) <
1432 be32_to_cpu(save_btree[0].hashval)) ||
1433 (be32_to_cpu(drop_btree[drop_hdr.count - 1].hashval) <
1434 be32_to_cpu(save_btree[save_hdr.count - 1].hashval))) {
1435 /* XXX: check this - is memmove dst correct? */
1436 tmp = save_hdr.count * sizeof(xfs_da_node_entry_t);
1437 memmove(&save_btree[drop_hdr.count], &save_btree[0], tmp);
1438
1439 sindex = 0;
Dave Chinner1d9025e2012-06-22 18:50:14 +10001440 xfs_trans_log_buf(tp, save_blk->bp,
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001441 XFS_DA_LOGRANGE(save_node, &save_btree[0],
1442 (save_hdr.count + drop_hdr.count) *
1443 sizeof(xfs_da_node_entry_t)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444 } else {
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001445 sindex = save_hdr.count;
Dave Chinner1d9025e2012-06-22 18:50:14 +10001446 xfs_trans_log_buf(tp, save_blk->bp,
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001447 XFS_DA_LOGRANGE(save_node, &save_btree[sindex],
1448 drop_hdr.count * sizeof(xfs_da_node_entry_t)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449 }
1450
1451 /*
1452 * Move all the B-tree elements from drop_blk to save_blk.
1453 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001454 tmp = drop_hdr.count * (uint)sizeof(xfs_da_node_entry_t);
1455 memcpy(&save_btree[sindex], &drop_btree[0], tmp);
1456 save_hdr.count += drop_hdr.count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001458 xfs_da3_node_hdr_to_disk(save_node, &save_hdr);
Dave Chinner1d9025e2012-06-22 18:50:14 +10001459 xfs_trans_log_buf(tp, save_blk->bp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460 XFS_DA_LOGRANGE(save_node, &save_node->hdr,
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001461 xfs_da3_node_hdr_size(save_node)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462
1463 /*
1464 * Save the last hashval in the remaining block for upward propagation.
1465 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001466 save_blk->hashval = be32_to_cpu(save_btree[save_hdr.count - 1].hashval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467}
1468
1469/*========================================================================
1470 * Routines used for finding things in the Btree.
1471 *========================================================================*/
1472
1473/*
1474 * Walk down the Btree looking for a particular filename, filling
1475 * in the state structure as we go.
1476 *
1477 * We will set the state structure to point to each of the elements
1478 * in each of the nodes where either the hashval is or should be.
1479 *
1480 * We support duplicate hashval's so for each entry in the current
1481 * node that could contain the desired hashval, descend. This is a
1482 * pruned depth-first tree search.
1483 */
1484int /* error */
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001485xfs_da3_node_lookup_int(
1486 struct xfs_da_state *state,
1487 int *result)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488{
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001489 struct xfs_da_state_blk *blk;
1490 struct xfs_da_blkinfo *curr;
1491 struct xfs_da_intnode *node;
1492 struct xfs_da_node_entry *btree;
1493 struct xfs_da3_icnode_hdr nodehdr;
1494 struct xfs_da_args *args;
1495 xfs_dablk_t blkno;
1496 xfs_dahash_t hashval;
1497 xfs_dahash_t btreehashval;
1498 int probe;
1499 int span;
1500 int max;
1501 int error;
1502 int retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503
1504 args = state->args;
1505
1506 /*
1507 * Descend thru the B-tree searching each level for the right
1508 * node to use, until the right hashval is found.
1509 */
Nathan Scottf6c2d1f2006-06-20 13:04:51 +10001510 blkno = (args->whichfork == XFS_DATA_FORK)? state->mp->m_dirleafblk : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511 for (blk = &state->path.blk[0], state->path.active = 1;
1512 state->path.active <= XFS_DA_NODE_MAXDEPTH;
1513 blk++, state->path.active++) {
1514 /*
1515 * Read the next node down in the tree.
1516 */
1517 blk->blkno = blkno;
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001518 error = xfs_da3_node_read(args->trans, args->dp, blkno,
Dave Chinnerd9392a42012-11-12 22:54:17 +11001519 -1, &blk->bp, args->whichfork);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520 if (error) {
1521 blk->blkno = 0;
1522 state->path.active--;
1523 return(error);
1524 }
Dave Chinner1d9025e2012-06-22 18:50:14 +10001525 curr = blk->bp->b_addr;
Nathan Scottd432c802006-09-28 11:03:44 +10001526 blk->magic = be16_to_cpu(curr->magic);
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001527
Dave Chinner517c2222013-04-24 18:58:55 +10001528 if (blk->magic == XFS_ATTR_LEAF_MAGIC ||
1529 blk->magic == XFS_ATTR3_LEAF_MAGIC) {
1530 blk->magic = XFS_ATTR_LEAF_MAGIC;
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001531 blk->hashval = xfs_attr_leaf_lasthash(blk->bp, NULL);
1532 break;
1533 }
1534
1535 if (blk->magic == XFS_DIR2_LEAFN_MAGIC ||
1536 blk->magic == XFS_DIR3_LEAFN_MAGIC) {
1537 blk->magic = XFS_DIR2_LEAFN_MAGIC;
1538 blk->hashval = xfs_dir2_leafn_lasthash(blk->bp, NULL);
1539 break;
1540 }
1541
1542 blk->magic = XFS_DA_NODE_MAGIC;
1543
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544
1545 /*
1546 * Search an intermediate node for a match.
1547 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001548 node = blk->bp->b_addr;
1549 xfs_da3_node_hdr_from_disk(&nodehdr, node);
1550 btree = xfs_da3_node_tree_p(node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001552 max = nodehdr.count;
1553 blk->hashval = be32_to_cpu(btree[max - 1].hashval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001555 /*
1556 * Binary search. (note: small blocks will skip loop)
1557 */
1558 probe = span = max / 2;
1559 hashval = args->hashval;
1560 while (span > 4) {
1561 span /= 2;
1562 btreehashval = be32_to_cpu(btree[probe].hashval);
1563 if (btreehashval < hashval)
1564 probe += span;
1565 else if (btreehashval > hashval)
1566 probe -= span;
1567 else
1568 break;
1569 }
1570 ASSERT((probe >= 0) && (probe < max));
1571 ASSERT((span <= 4) ||
1572 (be32_to_cpu(btree[probe].hashval) == hashval));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001574 /*
1575 * Since we may have duplicate hashval's, find the first
1576 * matching hashval in the node.
1577 */
1578 while (probe > 0 &&
1579 be32_to_cpu(btree[probe].hashval) >= hashval) {
1580 probe--;
1581 }
1582 while (probe < max &&
1583 be32_to_cpu(btree[probe].hashval) < hashval) {
1584 probe++;
1585 }
1586
1587 /*
1588 * Pick the right block to descend on.
1589 */
1590 if (probe == max) {
1591 blk->index = max - 1;
1592 blkno = be32_to_cpu(btree[max - 1].before);
1593 } else {
1594 blk->index = probe;
1595 blkno = be32_to_cpu(btree[probe].before);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596 }
1597 }
1598
1599 /*
1600 * A leaf block that ends in the hashval that we are interested in
1601 * (final hashval == search hashval) means that the next block may
1602 * contain more entries with the same hashval, shift upward to the
1603 * next leaf and keep searching.
1604 */
1605 for (;;) {
Nathan Scottf6c2d1f2006-06-20 13:04:51 +10001606 if (blk->magic == XFS_DIR2_LEAFN_MAGIC) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607 retval = xfs_dir2_leafn_lookup_int(blk->bp, args,
1608 &blk->index, state);
Nathan Scottd432c802006-09-28 11:03:44 +10001609 } else if (blk->magic == XFS_ATTR_LEAF_MAGIC) {
Dave Chinner517c2222013-04-24 18:58:55 +10001610 retval = xfs_attr3_leaf_lookup_int(blk->bp, args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611 blk->index = args->index;
1612 args->blkno = blk->blkno;
Nathan Scottd432c802006-09-28 11:03:44 +10001613 } else {
1614 ASSERT(0);
1615 return XFS_ERROR(EFSCORRUPTED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617 if (((retval == ENOENT) || (retval == ENOATTR)) &&
1618 (blk->hashval == args->hashval)) {
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001619 error = xfs_da3_path_shift(state, &state->path, 1, 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620 &retval);
1621 if (error)
1622 return(error);
1623 if (retval == 0) {
1624 continue;
Nathan Scottd432c802006-09-28 11:03:44 +10001625 } else if (blk->magic == XFS_ATTR_LEAF_MAGIC) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626 /* path_shift() gives ENOENT */
1627 retval = XFS_ERROR(ENOATTR);
1628 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629 }
1630 break;
1631 }
1632 *result = retval;
1633 return(0);
1634}
1635
1636/*========================================================================
1637 * Utility routines.
1638 *========================================================================*/
1639
1640/*
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001641 * Compare two intermediate nodes for "order".
1642 */
1643STATIC int
1644xfs_da3_node_order(
1645 struct xfs_buf *node1_bp,
1646 struct xfs_buf *node2_bp)
1647{
1648 struct xfs_da_intnode *node1;
1649 struct xfs_da_intnode *node2;
1650 struct xfs_da_node_entry *btree1;
1651 struct xfs_da_node_entry *btree2;
1652 struct xfs_da3_icnode_hdr node1hdr;
1653 struct xfs_da3_icnode_hdr node2hdr;
1654
1655 node1 = node1_bp->b_addr;
1656 node2 = node2_bp->b_addr;
1657 xfs_da3_node_hdr_from_disk(&node1hdr, node1);
1658 xfs_da3_node_hdr_from_disk(&node2hdr, node2);
1659 btree1 = xfs_da3_node_tree_p(node1);
1660 btree2 = xfs_da3_node_tree_p(node2);
1661
1662 if (node1hdr.count > 0 && node2hdr.count > 0 &&
1663 ((be32_to_cpu(btree2[0].hashval) < be32_to_cpu(btree1[0].hashval)) ||
1664 (be32_to_cpu(btree2[node2hdr.count - 1].hashval) <
1665 be32_to_cpu(btree1[node1hdr.count - 1].hashval)))) {
1666 return 1;
1667 }
1668 return 0;
1669}
1670
1671/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672 * Link a new block into a doubly linked list of blocks (of whatever type).
1673 */
1674int /* error */
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001675xfs_da3_blk_link(
1676 struct xfs_da_state *state,
1677 struct xfs_da_state_blk *old_blk,
1678 struct xfs_da_state_blk *new_blk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679{
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001680 struct xfs_da_blkinfo *old_info;
1681 struct xfs_da_blkinfo *new_info;
1682 struct xfs_da_blkinfo *tmp_info;
1683 struct xfs_da_args *args;
1684 struct xfs_buf *bp;
1685 int before = 0;
1686 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687
1688 /*
1689 * Set up environment.
1690 */
1691 args = state->args;
1692 ASSERT(args != NULL);
Dave Chinner1d9025e2012-06-22 18:50:14 +10001693 old_info = old_blk->bp->b_addr;
1694 new_info = new_blk->bp->b_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695 ASSERT(old_blk->magic == XFS_DA_NODE_MAGIC ||
Nathan Scottf6c2d1f2006-06-20 13:04:51 +10001696 old_blk->magic == XFS_DIR2_LEAFN_MAGIC ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697 old_blk->magic == XFS_ATTR_LEAF_MAGIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698
1699 switch (old_blk->magic) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700 case XFS_ATTR_LEAF_MAGIC:
1701 before = xfs_attr_leaf_order(old_blk->bp, new_blk->bp);
1702 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703 case XFS_DIR2_LEAFN_MAGIC:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704 before = xfs_dir2_leafn_order(old_blk->bp, new_blk->bp);
1705 break;
1706 case XFS_DA_NODE_MAGIC:
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001707 before = xfs_da3_node_order(old_blk->bp, new_blk->bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708 break;
1709 }
1710
1711 /*
1712 * Link blocks in appropriate order.
1713 */
1714 if (before) {
1715 /*
1716 * Link new block in before existing block.
1717 */
Dave Chinner5a5881c2012-03-22 05:15:13 +00001718 trace_xfs_da_link_before(args);
Nathan Scott89da0542006-03-17 17:28:40 +11001719 new_info->forw = cpu_to_be32(old_blk->blkno);
1720 new_info->back = old_info->back;
1721 if (old_info->back) {
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001722 error = xfs_da3_node_read(args->trans, args->dp,
Nathan Scott89da0542006-03-17 17:28:40 +11001723 be32_to_cpu(old_info->back),
Dave Chinnerd9392a42012-11-12 22:54:17 +11001724 -1, &bp, args->whichfork);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725 if (error)
1726 return(error);
1727 ASSERT(bp != NULL);
Dave Chinner1d9025e2012-06-22 18:50:14 +10001728 tmp_info = bp->b_addr;
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001729 ASSERT(tmp_info->magic == old_info->magic);
Nathan Scott89da0542006-03-17 17:28:40 +11001730 ASSERT(be32_to_cpu(tmp_info->forw) == old_blk->blkno);
1731 tmp_info->forw = cpu_to_be32(new_blk->blkno);
Dave Chinner1d9025e2012-06-22 18:50:14 +10001732 xfs_trans_log_buf(args->trans, bp, 0, sizeof(*tmp_info)-1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733 }
Nathan Scott89da0542006-03-17 17:28:40 +11001734 old_info->back = cpu_to_be32(new_blk->blkno);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735 } else {
1736 /*
1737 * Link new block in after existing block.
1738 */
Dave Chinner5a5881c2012-03-22 05:15:13 +00001739 trace_xfs_da_link_after(args);
Nathan Scott89da0542006-03-17 17:28:40 +11001740 new_info->forw = old_info->forw;
1741 new_info->back = cpu_to_be32(old_blk->blkno);
1742 if (old_info->forw) {
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001743 error = xfs_da3_node_read(args->trans, args->dp,
Nathan Scott89da0542006-03-17 17:28:40 +11001744 be32_to_cpu(old_info->forw),
Dave Chinnerd9392a42012-11-12 22:54:17 +11001745 -1, &bp, args->whichfork);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746 if (error)
1747 return(error);
1748 ASSERT(bp != NULL);
Dave Chinner1d9025e2012-06-22 18:50:14 +10001749 tmp_info = bp->b_addr;
Nathan Scott89da0542006-03-17 17:28:40 +11001750 ASSERT(tmp_info->magic == old_info->magic);
1751 ASSERT(be32_to_cpu(tmp_info->back) == old_blk->blkno);
1752 tmp_info->back = cpu_to_be32(new_blk->blkno);
Dave Chinner1d9025e2012-06-22 18:50:14 +10001753 xfs_trans_log_buf(args->trans, bp, 0, sizeof(*tmp_info)-1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754 }
Nathan Scott89da0542006-03-17 17:28:40 +11001755 old_info->forw = cpu_to_be32(new_blk->blkno);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756 }
1757
Dave Chinner1d9025e2012-06-22 18:50:14 +10001758 xfs_trans_log_buf(args->trans, old_blk->bp, 0, sizeof(*tmp_info) - 1);
1759 xfs_trans_log_buf(args->trans, new_blk->bp, 0, sizeof(*tmp_info) - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760 return(0);
1761}
1762
1763/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764 * Unlink a block from a doubly linked list of blocks.
1765 */
Christoph Hellwigba0f32d2005-06-21 15:36:52 +10001766STATIC int /* error */
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001767xfs_da3_blk_unlink(
1768 struct xfs_da_state *state,
1769 struct xfs_da_state_blk *drop_blk,
1770 struct xfs_da_state_blk *save_blk)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771{
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001772 struct xfs_da_blkinfo *drop_info;
1773 struct xfs_da_blkinfo *save_info;
1774 struct xfs_da_blkinfo *tmp_info;
1775 struct xfs_da_args *args;
1776 struct xfs_buf *bp;
1777 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778
1779 /*
1780 * Set up environment.
1781 */
1782 args = state->args;
1783 ASSERT(args != NULL);
Dave Chinner1d9025e2012-06-22 18:50:14 +10001784 save_info = save_blk->bp->b_addr;
1785 drop_info = drop_blk->bp->b_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786 ASSERT(save_blk->magic == XFS_DA_NODE_MAGIC ||
Nathan Scottf6c2d1f2006-06-20 13:04:51 +10001787 save_blk->magic == XFS_DIR2_LEAFN_MAGIC ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788 save_blk->magic == XFS_ATTR_LEAF_MAGIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789 ASSERT(save_blk->magic == drop_blk->magic);
Nathan Scott89da0542006-03-17 17:28:40 +11001790 ASSERT((be32_to_cpu(save_info->forw) == drop_blk->blkno) ||
1791 (be32_to_cpu(save_info->back) == drop_blk->blkno));
1792 ASSERT((be32_to_cpu(drop_info->forw) == save_blk->blkno) ||
1793 (be32_to_cpu(drop_info->back) == save_blk->blkno));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794
1795 /*
1796 * Unlink the leaf block from the doubly linked chain of leaves.
1797 */
Nathan Scott89da0542006-03-17 17:28:40 +11001798 if (be32_to_cpu(save_info->back) == drop_blk->blkno) {
Dave Chinner5a5881c2012-03-22 05:15:13 +00001799 trace_xfs_da_unlink_back(args);
Nathan Scott89da0542006-03-17 17:28:40 +11001800 save_info->back = drop_info->back;
1801 if (drop_info->back) {
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001802 error = xfs_da3_node_read(args->trans, args->dp,
Nathan Scott89da0542006-03-17 17:28:40 +11001803 be32_to_cpu(drop_info->back),
Dave Chinnerd9392a42012-11-12 22:54:17 +11001804 -1, &bp, args->whichfork);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805 if (error)
1806 return(error);
1807 ASSERT(bp != NULL);
Dave Chinner1d9025e2012-06-22 18:50:14 +10001808 tmp_info = bp->b_addr;
Nathan Scott89da0542006-03-17 17:28:40 +11001809 ASSERT(tmp_info->magic == save_info->magic);
1810 ASSERT(be32_to_cpu(tmp_info->forw) == drop_blk->blkno);
1811 tmp_info->forw = cpu_to_be32(save_blk->blkno);
Dave Chinner1d9025e2012-06-22 18:50:14 +10001812 xfs_trans_log_buf(args->trans, bp, 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813 sizeof(*tmp_info) - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814 }
1815 } else {
Dave Chinner5a5881c2012-03-22 05:15:13 +00001816 trace_xfs_da_unlink_forward(args);
Nathan Scott89da0542006-03-17 17:28:40 +11001817 save_info->forw = drop_info->forw;
1818 if (drop_info->forw) {
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001819 error = xfs_da3_node_read(args->trans, args->dp,
Nathan Scott89da0542006-03-17 17:28:40 +11001820 be32_to_cpu(drop_info->forw),
Dave Chinnerd9392a42012-11-12 22:54:17 +11001821 -1, &bp, args->whichfork);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822 if (error)
1823 return(error);
1824 ASSERT(bp != NULL);
Dave Chinner1d9025e2012-06-22 18:50:14 +10001825 tmp_info = bp->b_addr;
Nathan Scott89da0542006-03-17 17:28:40 +11001826 ASSERT(tmp_info->magic == save_info->magic);
1827 ASSERT(be32_to_cpu(tmp_info->back) == drop_blk->blkno);
1828 tmp_info->back = cpu_to_be32(save_blk->blkno);
Dave Chinner1d9025e2012-06-22 18:50:14 +10001829 xfs_trans_log_buf(args->trans, bp, 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830 sizeof(*tmp_info) - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831 }
1832 }
1833
Dave Chinner1d9025e2012-06-22 18:50:14 +10001834 xfs_trans_log_buf(args->trans, save_blk->bp, 0, sizeof(*save_info) - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835 return(0);
1836}
1837
1838/*
1839 * Move a path "forward" or "!forward" one block at the current level.
1840 *
1841 * This routine will adjust a "path" to point to the next block
1842 * "forward" (higher hashvalues) or "!forward" (lower hashvals) in the
1843 * Btree, including updating pointers to the intermediate nodes between
1844 * the new bottom and the root.
1845 */
1846int /* error */
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001847xfs_da3_path_shift(
1848 struct xfs_da_state *state,
1849 struct xfs_da_state_path *path,
1850 int forward,
1851 int release,
1852 int *result)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853{
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001854 struct xfs_da_state_blk *blk;
1855 struct xfs_da_blkinfo *info;
1856 struct xfs_da_intnode *node;
1857 struct xfs_da_args *args;
1858 struct xfs_da_node_entry *btree;
1859 struct xfs_da3_icnode_hdr nodehdr;
1860 xfs_dablk_t blkno = 0;
1861 int level;
1862 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863
Dave Chinneree732592012-11-12 22:53:53 +11001864 trace_xfs_da_path_shift(state->args);
1865
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866 /*
1867 * Roll up the Btree looking for the first block where our
1868 * current index is not at the edge of the block. Note that
1869 * we skip the bottom layer because we want the sibling block.
1870 */
1871 args = state->args;
1872 ASSERT(args != NULL);
1873 ASSERT(path != NULL);
1874 ASSERT((path->active > 0) && (path->active < XFS_DA_NODE_MAXDEPTH));
1875 level = (path->active-1) - 1; /* skip bottom layer in path */
1876 for (blk = &path->blk[level]; level >= 0; blk--, level--) {
Dave Chinner1d9025e2012-06-22 18:50:14 +10001877 node = blk->bp->b_addr;
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001878 xfs_da3_node_hdr_from_disk(&nodehdr, node);
1879 btree = xfs_da3_node_tree_p(node);
1880
1881 if (forward && (blk->index < nodehdr.count - 1)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882 blk->index++;
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001883 blkno = be32_to_cpu(btree[blk->index].before);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884 break;
1885 } else if (!forward && (blk->index > 0)) {
1886 blk->index--;
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001887 blkno = be32_to_cpu(btree[blk->index].before);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888 break;
1889 }
1890 }
1891 if (level < 0) {
1892 *result = XFS_ERROR(ENOENT); /* we're out of our tree */
Barry Naujok6a178102008-05-21 16:42:05 +10001893 ASSERT(args->op_flags & XFS_DA_OP_OKNOENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001894 return(0);
1895 }
1896
1897 /*
1898 * Roll down the edge of the subtree until we reach the
1899 * same depth we were at originally.
1900 */
1901 for (blk++, level++; level < path->active; blk++, level++) {
1902 /*
1903 * Release the old block.
1904 * (if it's dirty, trans won't actually let go)
1905 */
1906 if (release)
Dave Chinner1d9025e2012-06-22 18:50:14 +10001907 xfs_trans_brelse(args->trans, blk->bp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908
1909 /*
1910 * Read the next child block.
1911 */
1912 blk->blkno = blkno;
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001913 error = xfs_da3_node_read(args->trans, args->dp, blkno, -1,
Dave Chinnerd9392a42012-11-12 22:54:17 +11001914 &blk->bp, args->whichfork);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915 if (error)
1916 return(error);
Dave Chinner1d9025e2012-06-22 18:50:14 +10001917 info = blk->bp->b_addr;
Christoph Hellwig69ef9212011-07-08 14:36:05 +02001918 ASSERT(info->magic == cpu_to_be16(XFS_DA_NODE_MAGIC) ||
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001919 info->magic == cpu_to_be16(XFS_DA3_NODE_MAGIC) ||
Christoph Hellwig69ef9212011-07-08 14:36:05 +02001920 info->magic == cpu_to_be16(XFS_DIR2_LEAFN_MAGIC) ||
Dave Chinner24df33b2013-04-12 07:30:21 +10001921 info->magic == cpu_to_be16(XFS_DIR3_LEAFN_MAGIC) ||
Dave Chinner517c2222013-04-24 18:58:55 +10001922 info->magic == cpu_to_be16(XFS_ATTR_LEAF_MAGIC) ||
1923 info->magic == cpu_to_be16(XFS_ATTR3_LEAF_MAGIC));
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001924
1925
1926 /*
1927 * Note: we flatten the magic number to a single type so we
1928 * don't have to compare against crc/non-crc types elsewhere.
1929 */
1930 switch (be16_to_cpu(info->magic)) {
1931 case XFS_DA_NODE_MAGIC:
1932 case XFS_DA3_NODE_MAGIC:
1933 blk->magic = XFS_DA_NODE_MAGIC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001934 node = (xfs_da_intnode_t *)info;
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001935 xfs_da3_node_hdr_from_disk(&nodehdr, node);
1936 btree = xfs_da3_node_tree_p(node);
1937 blk->hashval = be32_to_cpu(btree[nodehdr.count - 1].hashval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938 if (forward)
1939 blk->index = 0;
1940 else
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001941 blk->index = nodehdr.count - 1;
1942 blkno = be32_to_cpu(btree[blk->index].before);
1943 break;
1944 case XFS_ATTR_LEAF_MAGIC:
Dave Chinner517c2222013-04-24 18:58:55 +10001945 case XFS_ATTR3_LEAF_MAGIC:
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001946 blk->magic = XFS_ATTR_LEAF_MAGIC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947 ASSERT(level == path->active-1);
1948 blk->index = 0;
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001949 blk->hashval = xfs_attr_leaf_lasthash(blk->bp,
1950 NULL);
1951 break;
1952 case XFS_DIR2_LEAFN_MAGIC:
1953 case XFS_DIR3_LEAFN_MAGIC:
1954 blk->magic = XFS_DIR2_LEAFN_MAGIC;
1955 ASSERT(level == path->active-1);
1956 blk->index = 0;
1957 blk->hashval = xfs_dir2_leafn_lasthash(blk->bp,
1958 NULL);
1959 break;
1960 default:
1961 ASSERT(0);
1962 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963 }
1964 }
1965 *result = 0;
Dave Chinnerf5ea1102013-04-24 18:58:02 +10001966 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967}
1968
1969
1970/*========================================================================
1971 * Utility routines.
1972 *========================================================================*/
1973
1974/*
1975 * Implement a simple hash on a character string.
1976 * Rotate the hash value by 7 bits, then XOR each character in.
1977 * This is implemented with some source-level loop unrolling.
1978 */
1979xfs_dahash_t
Christoph Hellwiga5687782009-02-09 08:37:39 +01001980xfs_da_hashname(const __uint8_t *name, int namelen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001981{
1982 xfs_dahash_t hash;
1983
Linus Torvalds1da177e2005-04-16 15:20:36 -07001984 /*
1985 * Do four characters at a time as long as we can.
1986 */
1987 for (hash = 0; namelen >= 4; namelen -= 4, name += 4)
1988 hash = (name[0] << 21) ^ (name[1] << 14) ^ (name[2] << 7) ^
1989 (name[3] << 0) ^ rol32(hash, 7 * 4);
1990
1991 /*
1992 * Now do the rest of the characters.
1993 */
1994 switch (namelen) {
1995 case 3:
1996 return (name[0] << 14) ^ (name[1] << 7) ^ (name[2] << 0) ^
1997 rol32(hash, 7 * 3);
1998 case 2:
1999 return (name[0] << 7) ^ (name[1] << 0) ^ rol32(hash, 7 * 2);
2000 case 1:
2001 return (name[0] << 0) ^ rol32(hash, 7 * 1);
Nathan Scott2b3b6d02005-11-02 15:12:28 +11002002 default: /* case 0: */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003 return hash;
2004 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002005}
2006
Barry Naujok5163f952008-05-21 16:41:01 +10002007enum xfs_dacmp
2008xfs_da_compname(
2009 struct xfs_da_args *args,
Dave Chinner2bc75422010-01-20 10:47:17 +11002010 const unsigned char *name,
2011 int len)
Barry Naujok5163f952008-05-21 16:41:01 +10002012{
2013 return (args->namelen == len && memcmp(args->name, name, len) == 0) ?
2014 XFS_CMP_EXACT : XFS_CMP_DIFFERENT;
2015}
2016
2017static xfs_dahash_t
2018xfs_default_hashname(
2019 struct xfs_name *name)
2020{
2021 return xfs_da_hashname(name->name, name->len);
2022}
2023
2024const struct xfs_nameops xfs_default_nameops = {
2025 .hashname = xfs_default_hashname,
2026 .compname = xfs_da_compname
2027};
2028
Linus Torvalds1da177e2005-04-16 15:20:36 -07002029int
Christoph Hellwig77936d02011-07-13 13:43:49 +02002030xfs_da_grow_inode_int(
2031 struct xfs_da_args *args,
2032 xfs_fileoff_t *bno,
2033 int count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002034{
Christoph Hellwig77936d02011-07-13 13:43:49 +02002035 struct xfs_trans *tp = args->trans;
2036 struct xfs_inode *dp = args->dp;
2037 int w = args->whichfork;
2038 xfs_drfsbno_t nblks = dp->i_d.di_nblocks;
2039 struct xfs_bmbt_irec map, *mapp;
2040 int nmap, error, got, i, mapi;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002041
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042 /*
2043 * Find a spot in the file space to put the new block.
2044 */
Christoph Hellwig77936d02011-07-13 13:43:49 +02002045 error = xfs_bmap_first_unused(tp, dp, count, bno, w);
2046 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002047 return error;
Christoph Hellwig77936d02011-07-13 13:43:49 +02002048
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049 /*
2050 * Try mapping it in one filesystem block.
2051 */
2052 nmap = 1;
2053 ASSERT(args->firstblock != NULL);
Dave Chinnerc0dc7822011-09-18 20:40:52 +00002054 error = xfs_bmapi_write(tp, dp, *bno, count,
2055 xfs_bmapi_aflag(w)|XFS_BMAPI_METADATA|XFS_BMAPI_CONTIG,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002056 args->firstblock, args->total, &map, &nmap,
Christoph Hellwig77936d02011-07-13 13:43:49 +02002057 args->flist);
2058 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059 return error;
Christoph Hellwig77936d02011-07-13 13:43:49 +02002060
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061 ASSERT(nmap <= 1);
2062 if (nmap == 1) {
2063 mapp = &map;
2064 mapi = 1;
Christoph Hellwig77936d02011-07-13 13:43:49 +02002065 } else if (nmap == 0 && count > 1) {
2066 xfs_fileoff_t b;
2067 int c;
2068
2069 /*
2070 * If we didn't get it and the block might work if fragmented,
2071 * try without the CONTIG flag. Loop until we get it all.
2072 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073 mapp = kmem_alloc(sizeof(*mapp) * count, KM_SLEEP);
Christoph Hellwig77936d02011-07-13 13:43:49 +02002074 for (b = *bno, mapi = 0; b < *bno + count; ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075 nmap = MIN(XFS_BMAP_MAX_NMAP, count);
Christoph Hellwig77936d02011-07-13 13:43:49 +02002076 c = (int)(*bno + count - b);
Dave Chinnerc0dc7822011-09-18 20:40:52 +00002077 error = xfs_bmapi_write(tp, dp, b, c,
2078 xfs_bmapi_aflag(w)|XFS_BMAPI_METADATA,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079 args->firstblock, args->total,
Christoph Hellwig77936d02011-07-13 13:43:49 +02002080 &mapp[mapi], &nmap, args->flist);
2081 if (error)
2082 goto out_free_map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002083 if (nmap < 1)
2084 break;
2085 mapi += nmap;
2086 b = mapp[mapi - 1].br_startoff +
2087 mapp[mapi - 1].br_blockcount;
2088 }
2089 } else {
2090 mapi = 0;
2091 mapp = NULL;
2092 }
Christoph Hellwig77936d02011-07-13 13:43:49 +02002093
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094 /*
2095 * Count the blocks we got, make sure it matches the total.
2096 */
2097 for (i = 0, got = 0; i < mapi; i++)
2098 got += mapp[i].br_blockcount;
Christoph Hellwig77936d02011-07-13 13:43:49 +02002099 if (got != count || mapp[0].br_startoff != *bno ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100 mapp[mapi - 1].br_startoff + mapp[mapi - 1].br_blockcount !=
Christoph Hellwig77936d02011-07-13 13:43:49 +02002101 *bno + count) {
2102 error = XFS_ERROR(ENOSPC);
2103 goto out_free_map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104 }
Christoph Hellwig77936d02011-07-13 13:43:49 +02002105
David Chinnera7444052008-10-30 17:38:12 +11002106 /* account for newly allocated blocks in reserved blocks total */
2107 args->total -= dp->i_d.di_nblocks - nblks;
Christoph Hellwig77936d02011-07-13 13:43:49 +02002108
2109out_free_map:
2110 if (mapp != &map)
2111 kmem_free(mapp);
2112 return error;
2113}
2114
2115/*
2116 * Add a block to the btree ahead of the file.
2117 * Return the new block number to the caller.
2118 */
2119int
2120xfs_da_grow_inode(
2121 struct xfs_da_args *args,
2122 xfs_dablk_t *new_blkno)
2123{
2124 xfs_fileoff_t bno;
2125 int count;
2126 int error;
2127
Dave Chinner5a5881c2012-03-22 05:15:13 +00002128 trace_xfs_da_grow_inode(args);
2129
Christoph Hellwig77936d02011-07-13 13:43:49 +02002130 if (args->whichfork == XFS_DATA_FORK) {
2131 bno = args->dp->i_mount->m_dirleafblk;
2132 count = args->dp->i_mount->m_dirblkfsbs;
2133 } else {
2134 bno = 0;
2135 count = 1;
2136 }
2137
2138 error = xfs_da_grow_inode_int(args, &bno, count);
2139 if (!error)
2140 *new_blkno = (xfs_dablk_t)bno;
2141 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142}
2143
2144/*
2145 * Ick. We need to always be able to remove a btree block, even
2146 * if there's no space reservation because the filesystem is full.
2147 * This is called if xfs_bunmapi on a btree block fails due to ENOSPC.
2148 * It swaps the target block with the last block in the file. The
2149 * last block in the file can always be removed since it can't cause
2150 * a bmap btree split to do that.
2151 */
2152STATIC int
Dave Chinnerf5ea1102013-04-24 18:58:02 +10002153xfs_da3_swap_lastblock(
2154 struct xfs_da_args *args,
2155 xfs_dablk_t *dead_blknop,
2156 struct xfs_buf **dead_bufp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002157{
Dave Chinnerf5ea1102013-04-24 18:58:02 +10002158 struct xfs_da_blkinfo *dead_info;
2159 struct xfs_da_blkinfo *sib_info;
2160 struct xfs_da_intnode *par_node;
2161 struct xfs_da_intnode *dead_node;
2162 struct xfs_dir2_leaf *dead_leaf2;
2163 struct xfs_da_node_entry *btree;
2164 struct xfs_da3_icnode_hdr par_hdr;
2165 struct xfs_inode *ip;
2166 struct xfs_trans *tp;
2167 struct xfs_mount *mp;
2168 struct xfs_buf *dead_buf;
2169 struct xfs_buf *last_buf;
2170 struct xfs_buf *sib_buf;
2171 struct xfs_buf *par_buf;
2172 xfs_dahash_t dead_hash;
2173 xfs_fileoff_t lastoff;
2174 xfs_dablk_t dead_blkno;
2175 xfs_dablk_t last_blkno;
2176 xfs_dablk_t sib_blkno;
2177 xfs_dablk_t par_blkno;
2178 int error;
2179 int w;
2180 int entno;
2181 int level;
2182 int dead_level;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002183
Dave Chinner5a5881c2012-03-22 05:15:13 +00002184 trace_xfs_da_swap_lastblock(args);
2185
Linus Torvalds1da177e2005-04-16 15:20:36 -07002186 dead_buf = *dead_bufp;
2187 dead_blkno = *dead_blknop;
2188 tp = args->trans;
2189 ip = args->dp;
2190 w = args->whichfork;
2191 ASSERT(w == XFS_DATA_FORK);
2192 mp = ip->i_mount;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +10002193 lastoff = mp->m_dirfreeblk;
2194 error = xfs_bmap_last_before(tp, ip, &lastoff, w);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002195 if (error)
2196 return error;
2197 if (unlikely(lastoff == 0)) {
2198 XFS_ERROR_REPORT("xfs_da_swap_lastblock(1)", XFS_ERRLEVEL_LOW,
2199 mp);
2200 return XFS_ERROR(EFSCORRUPTED);
2201 }
2202 /*
2203 * Read the last block in the btree space.
2204 */
2205 last_blkno = (xfs_dablk_t)lastoff - mp->m_dirblkfsbs;
Dave Chinnerf5ea1102013-04-24 18:58:02 +10002206 error = xfs_da3_node_read(tp, ip, last_blkno, -1, &last_buf, w);
Dave Chinner4bb20a82012-11-12 22:54:10 +11002207 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208 return error;
2209 /*
2210 * Copy the last block into the dead buffer and log it.
2211 */
Dave Chinner1d9025e2012-06-22 18:50:14 +10002212 memcpy(dead_buf->b_addr, last_buf->b_addr, mp->m_dirblksize);
2213 xfs_trans_log_buf(tp, dead_buf, 0, mp->m_dirblksize - 1);
2214 dead_info = dead_buf->b_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002215 /*
2216 * Get values from the moved block.
2217 */
Dave Chinner24df33b2013-04-12 07:30:21 +10002218 if (dead_info->magic == cpu_to_be16(XFS_DIR2_LEAFN_MAGIC) ||
2219 dead_info->magic == cpu_to_be16(XFS_DIR3_LEAFN_MAGIC)) {
2220 struct xfs_dir3_icleaf_hdr leafhdr;
2221 struct xfs_dir2_leaf_entry *ents;
2222
Linus Torvalds1da177e2005-04-16 15:20:36 -07002223 dead_leaf2 = (xfs_dir2_leaf_t *)dead_info;
Dave Chinner24df33b2013-04-12 07:30:21 +10002224 xfs_dir3_leaf_hdr_from_disk(&leafhdr, dead_leaf2);
2225 ents = xfs_dir3_leaf_ents_p(dead_leaf2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002226 dead_level = 0;
Dave Chinner24df33b2013-04-12 07:30:21 +10002227 dead_hash = be32_to_cpu(ents[leafhdr.count - 1].hashval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002228 } else {
Dave Chinnerf5ea1102013-04-24 18:58:02 +10002229 struct xfs_da3_icnode_hdr deadhdr;
2230
Linus Torvalds1da177e2005-04-16 15:20:36 -07002231 dead_node = (xfs_da_intnode_t *)dead_info;
Dave Chinnerf5ea1102013-04-24 18:58:02 +10002232 xfs_da3_node_hdr_from_disk(&deadhdr, dead_node);
2233 btree = xfs_da3_node_tree_p(dead_node);
2234 dead_level = deadhdr.level;
2235 dead_hash = be32_to_cpu(btree[deadhdr.count - 1].hashval);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002236 }
2237 sib_buf = par_buf = NULL;
2238 /*
2239 * If the moved block has a left sibling, fix up the pointers.
2240 */
Nathan Scott89da0542006-03-17 17:28:40 +11002241 if ((sib_blkno = be32_to_cpu(dead_info->back))) {
Dave Chinnerf5ea1102013-04-24 18:58:02 +10002242 error = xfs_da3_node_read(tp, ip, sib_blkno, -1, &sib_buf, w);
Dave Chinner4bb20a82012-11-12 22:54:10 +11002243 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002244 goto done;
Dave Chinner1d9025e2012-06-22 18:50:14 +10002245 sib_info = sib_buf->b_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002246 if (unlikely(
Nathan Scott89da0542006-03-17 17:28:40 +11002247 be32_to_cpu(sib_info->forw) != last_blkno ||
2248 sib_info->magic != dead_info->magic)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002249 XFS_ERROR_REPORT("xfs_da_swap_lastblock(2)",
2250 XFS_ERRLEVEL_LOW, mp);
2251 error = XFS_ERROR(EFSCORRUPTED);
2252 goto done;
2253 }
Nathan Scott89da0542006-03-17 17:28:40 +11002254 sib_info->forw = cpu_to_be32(dead_blkno);
Dave Chinner1d9025e2012-06-22 18:50:14 +10002255 xfs_trans_log_buf(tp, sib_buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002256 XFS_DA_LOGRANGE(sib_info, &sib_info->forw,
2257 sizeof(sib_info->forw)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002258 sib_buf = NULL;
2259 }
2260 /*
2261 * If the moved block has a right sibling, fix up the pointers.
2262 */
Nathan Scott89da0542006-03-17 17:28:40 +11002263 if ((sib_blkno = be32_to_cpu(dead_info->forw))) {
Dave Chinnerf5ea1102013-04-24 18:58:02 +10002264 error = xfs_da3_node_read(tp, ip, sib_blkno, -1, &sib_buf, w);
Dave Chinner4bb20a82012-11-12 22:54:10 +11002265 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002266 goto done;
Dave Chinner1d9025e2012-06-22 18:50:14 +10002267 sib_info = sib_buf->b_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002268 if (unlikely(
Nathan Scott89da0542006-03-17 17:28:40 +11002269 be32_to_cpu(sib_info->back) != last_blkno ||
2270 sib_info->magic != dead_info->magic)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002271 XFS_ERROR_REPORT("xfs_da_swap_lastblock(3)",
2272 XFS_ERRLEVEL_LOW, mp);
2273 error = XFS_ERROR(EFSCORRUPTED);
2274 goto done;
2275 }
Nathan Scott89da0542006-03-17 17:28:40 +11002276 sib_info->back = cpu_to_be32(dead_blkno);
Dave Chinner1d9025e2012-06-22 18:50:14 +10002277 xfs_trans_log_buf(tp, sib_buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002278 XFS_DA_LOGRANGE(sib_info, &sib_info->back,
2279 sizeof(sib_info->back)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002280 sib_buf = NULL;
2281 }
Nathan Scottf6c2d1f2006-06-20 13:04:51 +10002282 par_blkno = mp->m_dirleafblk;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283 level = -1;
2284 /*
2285 * Walk down the tree looking for the parent of the moved block.
2286 */
2287 for (;;) {
Dave Chinnerf5ea1102013-04-24 18:58:02 +10002288 error = xfs_da3_node_read(tp, ip, par_blkno, -1, &par_buf, w);
Dave Chinner4bb20a82012-11-12 22:54:10 +11002289 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002290 goto done;
Dave Chinner1d9025e2012-06-22 18:50:14 +10002291 par_node = par_buf->b_addr;
Dave Chinnerf5ea1102013-04-24 18:58:02 +10002292 xfs_da3_node_hdr_from_disk(&par_hdr, par_node);
2293 if (level >= 0 && level != par_hdr.level + 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002294 XFS_ERROR_REPORT("xfs_da_swap_lastblock(4)",
2295 XFS_ERRLEVEL_LOW, mp);
2296 error = XFS_ERROR(EFSCORRUPTED);
2297 goto done;
2298 }
Dave Chinnerf5ea1102013-04-24 18:58:02 +10002299 level = par_hdr.level;
2300 btree = xfs_da3_node_tree_p(par_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002301 for (entno = 0;
Dave Chinnerf5ea1102013-04-24 18:58:02 +10002302 entno < par_hdr.count &&
2303 be32_to_cpu(btree[entno].hashval) < dead_hash;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002304 entno++)
2305 continue;
Dave Chinnerf5ea1102013-04-24 18:58:02 +10002306 if (entno == par_hdr.count) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002307 XFS_ERROR_REPORT("xfs_da_swap_lastblock(5)",
2308 XFS_ERRLEVEL_LOW, mp);
2309 error = XFS_ERROR(EFSCORRUPTED);
2310 goto done;
2311 }
Dave Chinnerf5ea1102013-04-24 18:58:02 +10002312 par_blkno = be32_to_cpu(btree[entno].before);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002313 if (level == dead_level + 1)
2314 break;
Dave Chinner1d9025e2012-06-22 18:50:14 +10002315 xfs_trans_brelse(tp, par_buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002316 par_buf = NULL;
2317 }
2318 /*
2319 * We're in the right parent block.
2320 * Look for the right entry.
2321 */
2322 for (;;) {
2323 for (;
Dave Chinnerf5ea1102013-04-24 18:58:02 +10002324 entno < par_hdr.count &&
2325 be32_to_cpu(btree[entno].before) != last_blkno;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002326 entno++)
2327 continue;
Dave Chinnerf5ea1102013-04-24 18:58:02 +10002328 if (entno < par_hdr.count)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002329 break;
Dave Chinnerf5ea1102013-04-24 18:58:02 +10002330 par_blkno = par_hdr.forw;
Dave Chinner1d9025e2012-06-22 18:50:14 +10002331 xfs_trans_brelse(tp, par_buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002332 par_buf = NULL;
2333 if (unlikely(par_blkno == 0)) {
2334 XFS_ERROR_REPORT("xfs_da_swap_lastblock(6)",
2335 XFS_ERRLEVEL_LOW, mp);
2336 error = XFS_ERROR(EFSCORRUPTED);
2337 goto done;
2338 }
Dave Chinnerf5ea1102013-04-24 18:58:02 +10002339 error = xfs_da3_node_read(tp, ip, par_blkno, -1, &par_buf, w);
Dave Chinner4bb20a82012-11-12 22:54:10 +11002340 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002341 goto done;
Dave Chinner1d9025e2012-06-22 18:50:14 +10002342 par_node = par_buf->b_addr;
Dave Chinnerf5ea1102013-04-24 18:58:02 +10002343 xfs_da3_node_hdr_from_disk(&par_hdr, par_node);
2344 if (par_hdr.level != level) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002345 XFS_ERROR_REPORT("xfs_da_swap_lastblock(7)",
2346 XFS_ERRLEVEL_LOW, mp);
2347 error = XFS_ERROR(EFSCORRUPTED);
2348 goto done;
2349 }
Dave Chinnerf5ea1102013-04-24 18:58:02 +10002350 btree = xfs_da3_node_tree_p(par_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002351 entno = 0;
2352 }
2353 /*
2354 * Update the parent entry pointing to the moved block.
2355 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +10002356 btree[entno].before = cpu_to_be32(dead_blkno);
Dave Chinner1d9025e2012-06-22 18:50:14 +10002357 xfs_trans_log_buf(tp, par_buf,
Dave Chinnerf5ea1102013-04-24 18:58:02 +10002358 XFS_DA_LOGRANGE(par_node, &btree[entno].before,
2359 sizeof(btree[entno].before)));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002360 *dead_blknop = last_blkno;
2361 *dead_bufp = last_buf;
2362 return 0;
2363done:
2364 if (par_buf)
Dave Chinner1d9025e2012-06-22 18:50:14 +10002365 xfs_trans_brelse(tp, par_buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002366 if (sib_buf)
Dave Chinner1d9025e2012-06-22 18:50:14 +10002367 xfs_trans_brelse(tp, sib_buf);
2368 xfs_trans_brelse(tp, last_buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002369 return error;
2370}
2371
2372/*
2373 * Remove a btree block from a directory or attribute.
2374 */
2375int
Dave Chinner1d9025e2012-06-22 18:50:14 +10002376xfs_da_shrink_inode(
2377 xfs_da_args_t *args,
2378 xfs_dablk_t dead_blkno,
2379 struct xfs_buf *dead_buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002380{
2381 xfs_inode_t *dp;
2382 int done, error, w, count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002383 xfs_trans_t *tp;
2384 xfs_mount_t *mp;
2385
Dave Chinner5a5881c2012-03-22 05:15:13 +00002386 trace_xfs_da_shrink_inode(args);
2387
Linus Torvalds1da177e2005-04-16 15:20:36 -07002388 dp = args->dp;
2389 w = args->whichfork;
2390 tp = args->trans;
2391 mp = dp->i_mount;
Nathan Scottf6c2d1f2006-06-20 13:04:51 +10002392 if (w == XFS_DATA_FORK)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002393 count = mp->m_dirblkfsbs;
2394 else
2395 count = 1;
2396 for (;;) {
2397 /*
2398 * Remove extents. If we get ENOSPC for a dir we have to move
2399 * the last block to the place we want to kill.
2400 */
Dave Chinnerf5ea1102013-04-24 18:58:02 +10002401 error = xfs_bunmapi(tp, dp, dead_blkno, count,
2402 xfs_bmapi_aflag(w)|XFS_BMAPI_METADATA,
2403 0, args->firstblock, args->flist, &done);
2404 if (error == ENOSPC) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002405 if (w != XFS_DATA_FORK)
Nathan Scottf6c2d1f2006-06-20 13:04:51 +10002406 break;
Dave Chinnerf5ea1102013-04-24 18:58:02 +10002407 error = xfs_da3_swap_lastblock(args, &dead_blkno,
2408 &dead_buf);
2409 if (error)
Nathan Scottf6c2d1f2006-06-20 13:04:51 +10002410 break;
2411 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002412 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002413 }
2414 }
Dave Chinner1d9025e2012-06-22 18:50:14 +10002415 xfs_trans_binval(tp, dead_buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002416 return error;
2417}
2418
2419/*
2420 * See if the mapping(s) for this btree block are valid, i.e.
2421 * don't contain holes, are logically contiguous, and cover the whole range.
2422 */
2423STATIC int
2424xfs_da_map_covers_blocks(
2425 int nmap,
2426 xfs_bmbt_irec_t *mapp,
2427 xfs_dablk_t bno,
2428 int count)
2429{
2430 int i;
2431 xfs_fileoff_t off;
2432
2433 for (i = 0, off = bno; i < nmap; i++) {
2434 if (mapp[i].br_startblock == HOLESTARTBLOCK ||
2435 mapp[i].br_startblock == DELAYSTARTBLOCK) {
2436 return 0;
2437 }
2438 if (off != mapp[i].br_startoff) {
2439 return 0;
2440 }
2441 off += mapp[i].br_blockcount;
2442 }
2443 return off == bno + count;
2444}
2445
2446/*
Dave Chinner36054312012-06-22 18:50:13 +10002447 * Convert a struct xfs_bmbt_irec to a struct xfs_buf_map.
2448 *
2449 * For the single map case, it is assumed that the caller has provided a pointer
2450 * to a valid xfs_buf_map. For the multiple map case, this function will
2451 * allocate the xfs_buf_map to hold all the maps and replace the caller's single
2452 * map pointer with the allocated map.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002453 */
Dave Chinner36054312012-06-22 18:50:13 +10002454static int
2455xfs_buf_map_from_irec(
2456 struct xfs_mount *mp,
2457 struct xfs_buf_map **mapp,
Dave Chinner836a94a2013-08-12 20:49:44 +10002458 int *nmaps,
Dave Chinner36054312012-06-22 18:50:13 +10002459 struct xfs_bmbt_irec *irecs,
Dave Chinner836a94a2013-08-12 20:49:44 +10002460 int nirecs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002461{
Dave Chinner36054312012-06-22 18:50:13 +10002462 struct xfs_buf_map *map;
2463 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002464
Dave Chinner36054312012-06-22 18:50:13 +10002465 ASSERT(*nmaps == 1);
2466 ASSERT(nirecs >= 1);
2467
2468 if (nirecs > 1) {
Dave Chinnerb17cb362013-05-20 09:51:12 +10002469 map = kmem_zalloc(nirecs * sizeof(struct xfs_buf_map),
2470 KM_SLEEP | KM_NOFS);
Dave Chinner36054312012-06-22 18:50:13 +10002471 if (!map)
2472 return ENOMEM;
2473 *mapp = map;
2474 }
2475
2476 *nmaps = nirecs;
2477 map = *mapp;
2478 for (i = 0; i < *nmaps; i++) {
2479 ASSERT(irecs[i].br_startblock != DELAYSTARTBLOCK &&
2480 irecs[i].br_startblock != HOLESTARTBLOCK);
2481 map[i].bm_bn = XFS_FSB_TO_DADDR(mp, irecs[i].br_startblock);
2482 map[i].bm_len = XFS_FSB_TO_BB(mp, irecs[i].br_blockcount);
2483 }
2484 return 0;
2485}
2486
2487/*
2488 * Map the block we are given ready for reading. There are three possible return
2489 * values:
2490 * -1 - will be returned if we land in a hole and mappedbno == -2 so the
2491 * caller knows not to execute a subsequent read.
2492 * 0 - if we mapped the block successfully
2493 * >0 - positive error number if there was an error.
2494 */
2495static int
2496xfs_dabuf_map(
2497 struct xfs_trans *trans,
2498 struct xfs_inode *dp,
2499 xfs_dablk_t bno,
2500 xfs_daddr_t mappedbno,
2501 int whichfork,
2502 struct xfs_buf_map **map,
2503 int *nmaps)
2504{
2505 struct xfs_mount *mp = dp->i_mount;
2506 int nfsb;
2507 int error = 0;
2508 struct xfs_bmbt_irec irec;
2509 struct xfs_bmbt_irec *irecs = &irec;
2510 int nirecs;
2511
2512 ASSERT(map && *map);
2513 ASSERT(*nmaps == 1);
2514
Nathan Scottf6c2d1f2006-06-20 13:04:51 +10002515 nfsb = (whichfork == XFS_DATA_FORK) ? mp->m_dirblkfsbs : 1;
Dave Chinner36054312012-06-22 18:50:13 +10002516
Linus Torvalds1da177e2005-04-16 15:20:36 -07002517 /*
2518 * Caller doesn't have a mapping. -2 means don't complain
2519 * if we land in a hole.
2520 */
2521 if (mappedbno == -1 || mappedbno == -2) {
2522 /*
2523 * Optimize the one-block case.
2524 */
Dave Chinner36054312012-06-22 18:50:13 +10002525 if (nfsb != 1)
Dave Chinnerb17cb362013-05-20 09:51:12 +10002526 irecs = kmem_zalloc(sizeof(irec) * nfsb,
2527 KM_SLEEP | KM_NOFS);
Dave Chinner5b777ad2011-09-18 20:40:46 +00002528
Dave Chinner36054312012-06-22 18:50:13 +10002529 nirecs = nfsb;
2530 error = xfs_bmapi_read(dp, (xfs_fileoff_t)bno, nfsb, irecs,
2531 &nirecs, xfs_bmapi_aflag(whichfork));
Dave Chinner5b777ad2011-09-18 20:40:46 +00002532 if (error)
Dave Chinner36054312012-06-22 18:50:13 +10002533 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002534 } else {
Dave Chinner36054312012-06-22 18:50:13 +10002535 irecs->br_startblock = XFS_DADDR_TO_FSB(mp, mappedbno);
2536 irecs->br_startoff = (xfs_fileoff_t)bno;
2537 irecs->br_blockcount = nfsb;
2538 irecs->br_state = 0;
2539 nirecs = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002540 }
Dave Chinner36054312012-06-22 18:50:13 +10002541
2542 if (!xfs_da_map_covers_blocks(nirecs, irecs, bno, nfsb)) {
2543 error = mappedbno == -2 ? -1 : XFS_ERROR(EFSCORRUPTED);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002544 if (unlikely(error == EFSCORRUPTED)) {
2545 if (xfs_error_level >= XFS_ERRLEVEL_LOW) {
Dave Chinner36054312012-06-22 18:50:13 +10002546 int i;
Dave Chinner0b932cc2011-03-07 10:08:35 +11002547 xfs_alert(mp, "%s: bno %lld dir: inode %lld",
2548 __func__, (long long)bno,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002549 (long long)dp->i_ino);
Dave Chinner36054312012-06-22 18:50:13 +10002550 for (i = 0; i < *nmaps; i++) {
Dave Chinner0b932cc2011-03-07 10:08:35 +11002551 xfs_alert(mp,
2552"[%02d] br_startoff %lld br_startblock %lld br_blockcount %lld br_state %d",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002553 i,
Dave Chinner36054312012-06-22 18:50:13 +10002554 (long long)irecs[i].br_startoff,
2555 (long long)irecs[i].br_startblock,
2556 (long long)irecs[i].br_blockcount,
2557 irecs[i].br_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002558 }
2559 }
2560 XFS_ERROR_REPORT("xfs_da_do_buf(1)",
2561 XFS_ERRLEVEL_LOW, mp);
2562 }
Dave Chinner36054312012-06-22 18:50:13 +10002563 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002564 }
Dave Chinner36054312012-06-22 18:50:13 +10002565 error = xfs_buf_map_from_irec(mp, map, nmaps, irecs, nirecs);
2566out:
2567 if (irecs != &irec)
2568 kmem_free(irecs);
2569 return error;
2570}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002571
Dave Chinner36054312012-06-22 18:50:13 +10002572/*
2573 * Get a buffer for the dir/attr block.
2574 */
2575int
2576xfs_da_get_buf(
2577 struct xfs_trans *trans,
2578 struct xfs_inode *dp,
2579 xfs_dablk_t bno,
2580 xfs_daddr_t mappedbno,
Dave Chinner1d9025e2012-06-22 18:50:14 +10002581 struct xfs_buf **bpp,
Dave Chinner36054312012-06-22 18:50:13 +10002582 int whichfork)
2583{
2584 struct xfs_buf *bp;
2585 struct xfs_buf_map map;
2586 struct xfs_buf_map *mapp;
2587 int nmap;
2588 int error;
2589
2590 *bpp = NULL;
2591 mapp = &map;
2592 nmap = 1;
2593 error = xfs_dabuf_map(trans, dp, bno, mappedbno, whichfork,
2594 &mapp, &nmap);
2595 if (error) {
2596 /* mapping a hole is not an error, but we don't continue */
2597 if (error == -1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002598 error = 0;
Dave Chinner36054312012-06-22 18:50:13 +10002599 goto out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002600 }
Dave Chinner36054312012-06-22 18:50:13 +10002601
2602 bp = xfs_trans_get_buf_map(trans, dp->i_mount->m_ddev_targp,
2603 mapp, nmap, 0);
2604 error = bp ? bp->b_error : XFS_ERROR(EIO);
2605 if (error) {
2606 xfs_trans_brelse(trans, bp);
2607 goto out_free;
2608 }
2609
Dave Chinner1d9025e2012-06-22 18:50:14 +10002610 *bpp = bp;
Dave Chinner36054312012-06-22 18:50:13 +10002611
2612out_free:
2613 if (mapp != &map)
2614 kmem_free(mapp);
2615
2616 return error;
2617}
2618
2619/*
2620 * Get a buffer for the dir/attr block, fill in the contents.
2621 */
2622int
2623xfs_da_read_buf(
2624 struct xfs_trans *trans,
2625 struct xfs_inode *dp,
2626 xfs_dablk_t bno,
2627 xfs_daddr_t mappedbno,
Dave Chinner1d9025e2012-06-22 18:50:14 +10002628 struct xfs_buf **bpp,
Dave Chinner4bb20a82012-11-12 22:54:10 +11002629 int whichfork,
Dave Chinner1813dd62012-11-14 17:54:40 +11002630 const struct xfs_buf_ops *ops)
Dave Chinner36054312012-06-22 18:50:13 +10002631{
2632 struct xfs_buf *bp;
2633 struct xfs_buf_map map;
2634 struct xfs_buf_map *mapp;
2635 int nmap;
2636 int error;
2637
2638 *bpp = NULL;
2639 mapp = &map;
2640 nmap = 1;
2641 error = xfs_dabuf_map(trans, dp, bno, mappedbno, whichfork,
2642 &mapp, &nmap);
2643 if (error) {
2644 /* mapping a hole is not an error, but we don't continue */
2645 if (error == -1)
2646 error = 0;
2647 goto out_free;
2648 }
2649
2650 error = xfs_trans_read_buf_map(dp->i_mount, trans,
2651 dp->i_mount->m_ddev_targp,
Dave Chinner1813dd62012-11-14 17:54:40 +11002652 mapp, nmap, 0, &bp, ops);
Dave Chinner36054312012-06-22 18:50:13 +10002653 if (error)
2654 goto out_free;
2655
2656 if (whichfork == XFS_ATTR_FORK)
2657 xfs_buf_set_ref(bp, XFS_ATTR_BTREE_REF);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002658 else
Dave Chinner36054312012-06-22 18:50:13 +10002659 xfs_buf_set_ref(bp, XFS_DIR_BTREE_REF);
2660
Linus Torvalds1da177e2005-04-16 15:20:36 -07002661 /*
Dave Chinner36054312012-06-22 18:50:13 +10002662 * This verification code will be moved to a CRC verification callback
2663 * function so just leave it here unchanged until then.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002664 */
Dave Chinner36054312012-06-22 18:50:13 +10002665 {
Dave Chinner1d9025e2012-06-22 18:50:14 +10002666 xfs_dir2_data_hdr_t *hdr = bp->b_addr;
2667 xfs_dir2_free_t *free = bp->b_addr;
2668 xfs_da_blkinfo_t *info = bp->b_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002669 uint magic, magic1;
Dave Chinner36054312012-06-22 18:50:13 +10002670 struct xfs_mount *mp = dp->i_mount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002671
Nathan Scott89da0542006-03-17 17:28:40 +11002672 magic = be16_to_cpu(info->magic);
Christoph Hellwigc2066e22011-07-08 14:35:38 +02002673 magic1 = be32_to_cpu(hdr->magic);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002674 if (unlikely(
2675 XFS_TEST_ERROR((magic != XFS_DA_NODE_MAGIC) &&
Dave Chinnerf5ea1102013-04-24 18:58:02 +10002676 (magic != XFS_DA3_NODE_MAGIC) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07002677 (magic != XFS_ATTR_LEAF_MAGIC) &&
Dave Chinner517c2222013-04-24 18:58:55 +10002678 (magic != XFS_ATTR3_LEAF_MAGIC) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07002679 (magic != XFS_DIR2_LEAF1_MAGIC) &&
Dave Chinner24df33b2013-04-12 07:30:21 +10002680 (magic != XFS_DIR3_LEAF1_MAGIC) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07002681 (magic != XFS_DIR2_LEAFN_MAGIC) &&
Dave Chinner24df33b2013-04-12 07:30:21 +10002682 (magic != XFS_DIR3_LEAFN_MAGIC) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07002683 (magic1 != XFS_DIR2_BLOCK_MAGIC) &&
Dave Chinner24df33b2013-04-12 07:30:21 +10002684 (magic1 != XFS_DIR3_BLOCK_MAGIC) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07002685 (magic1 != XFS_DIR2_DATA_MAGIC) &&
Dave Chinner24df33b2013-04-12 07:30:21 +10002686 (magic1 != XFS_DIR3_DATA_MAGIC) &&
2687 (free->hdr.magic !=
2688 cpu_to_be32(XFS_DIR2_FREE_MAGIC)) &&
2689 (free->hdr.magic !=
2690 cpu_to_be32(XFS_DIR3_FREE_MAGIC)),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002691 mp, XFS_ERRTAG_DA_READ_BUF,
2692 XFS_RANDOM_DA_READ_BUF))) {
Dave Chinner36054312012-06-22 18:50:13 +10002693 trace_xfs_da_btree_corrupt(bp, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002694 XFS_CORRUPTION_ERROR("xfs_da_do_buf(2)",
2695 XFS_ERRLEVEL_LOW, mp, info);
2696 error = XFS_ERROR(EFSCORRUPTED);
Dave Chinner1d9025e2012-06-22 18:50:14 +10002697 xfs_trans_brelse(trans, bp);
Dave Chinner36054312012-06-22 18:50:13 +10002698 goto out_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002699 }
2700 }
Dave Chinner1d9025e2012-06-22 18:50:14 +10002701 *bpp = bp;
Dave Chinner36054312012-06-22 18:50:13 +10002702out_free:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002703 if (mapp != &map)
Denys Vlasenkof0e2d932008-05-19 16:31:57 +10002704 kmem_free(mapp);
Dave Chinner36054312012-06-22 18:50:13 +10002705
Linus Torvalds1da177e2005-04-16 15:20:36 -07002706 return error;
2707}
2708
2709/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002710 * Readahead the dir/attr block.
2711 */
2712xfs_daddr_t
2713xfs_da_reada_buf(
Dave Chinner36054312012-06-22 18:50:13 +10002714 struct xfs_trans *trans,
2715 struct xfs_inode *dp,
2716 xfs_dablk_t bno,
Dave Chinnerda6958c2012-11-12 22:54:18 +11002717 xfs_daddr_t mappedbno,
Dave Chinner4bb20a82012-11-12 22:54:10 +11002718 int whichfork,
Dave Chinner1813dd62012-11-14 17:54:40 +11002719 const struct xfs_buf_ops *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002720{
Dave Chinner36054312012-06-22 18:50:13 +10002721 struct xfs_buf_map map;
2722 struct xfs_buf_map *mapp;
2723 int nmap;
2724 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002725
Dave Chinner36054312012-06-22 18:50:13 +10002726 mapp = &map;
2727 nmap = 1;
Dave Chinnerda6958c2012-11-12 22:54:18 +11002728 error = xfs_dabuf_map(trans, dp, bno, mappedbno, whichfork,
Dave Chinner36054312012-06-22 18:50:13 +10002729 &mapp, &nmap);
2730 if (error) {
2731 /* mapping a hole is not an error, but we don't continue */
2732 if (error == -1)
2733 error = 0;
2734 goto out_free;
2735 }
2736
2737 mappedbno = mapp[0].bm_bn;
Dave Chinner1813dd62012-11-14 17:54:40 +11002738 xfs_buf_readahead_map(dp->i_mount->m_ddev_targp, mapp, nmap, ops);
Dave Chinner36054312012-06-22 18:50:13 +10002739
2740out_free:
2741 if (mapp != &map)
2742 kmem_free(mapp);
2743
2744 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002745 return -1;
Dave Chinner36054312012-06-22 18:50:13 +10002746 return mappedbno;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002747}