blob: 8f66e2720566fbb3301dd9d4c953e4755eb12b57 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Nathan Scott7b718762005-11-02 14:58:39 +11002 * Copyright (c) 2000-2001,2005 Silicon Graphics, Inc.
3 * All Rights Reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
Nathan Scott7b718762005-11-02 14:58:39 +11005 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License as
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * published by the Free Software Foundation.
8 *
Nathan Scott7b718762005-11-02 14:58:39 +11009 * This program is distributed in the hope that it would be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 *
Nathan Scott7b718762005-11-02 14:58:39 +110014 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write the Free Software Foundation,
16 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Linus Torvalds1da177e2005-04-16 15:20:36 -070017 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include "xfs.h"
Nathan Scotta844f452005-11-02 14:38:42 +110019#include "xfs_fs.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include "xfs_types.h"
Nathan Scotta844f452005-11-02 14:38:42 +110021#include "xfs_bit.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include "xfs_log.h"
Nathan Scotta844f452005-11-02 14:38:42 +110023#include "xfs_inum.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include "xfs_trans.h"
25#include "xfs_sb.h"
26#include "xfs_ag.h"
Nathan Scotta844f452005-11-02 14:38:42 +110027#include "xfs_dir2.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include "xfs_dmapi.h"
29#include "xfs_mount.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include "xfs_bmap_btree.h"
Nathan Scotta844f452005-11-02 14:38:42 +110031#include "xfs_alloc_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include "xfs_ialloc_btree.h"
Nathan Scotta844f452005-11-02 14:38:42 +110033#include "xfs_dir2_sf.h"
34#include "xfs_attr_sf.h"
35#include "xfs_dinode.h"
36#include "xfs_inode.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include "xfs_btree.h"
Christoph Hellwigf5eb8e72008-10-30 16:57:03 +110038#include "xfs_btree_trace.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include "xfs_ialloc.h"
40#include "xfs_alloc.h"
41#include "xfs_error.h"
42
Linus Torvalds1da177e2005-04-16 15:20:36 -070043STATIC void xfs_inobt_log_block(xfs_trans_t *, xfs_buf_t *, int);
44STATIC void xfs_inobt_log_keys(xfs_btree_cur_t *, xfs_buf_t *, int, int);
45STATIC void xfs_inobt_log_ptrs(xfs_btree_cur_t *, xfs_buf_t *, int, int);
46STATIC void xfs_inobt_log_recs(xfs_btree_cur_t *, xfs_buf_t *, int, int);
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
48/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070049 * Single level of the xfs_inobt_delete record deletion routine.
50 * Delete record pointed to by cur/level.
51 * Remove the record from its block then rebalance the tree.
52 * Return 0 for error, 1 for done, 2 to go on to the next level.
53 */
54STATIC int /* error */
55xfs_inobt_delrec(
56 xfs_btree_cur_t *cur, /* btree cursor */
57 int level, /* level removing record from */
58 int *stat) /* fail/done/go-on */
59{
60 xfs_buf_t *agbp; /* buffer for a.g. inode header */
61 xfs_mount_t *mp; /* mount structure */
62 xfs_agi_t *agi; /* allocation group inode header */
63 xfs_inobt_block_t *block; /* btree block record/key lives in */
64 xfs_agblock_t bno; /* btree block number */
65 xfs_buf_t *bp; /* buffer for block */
66 int error; /* error return value */
67 int i; /* loop index */
68 xfs_inobt_key_t key; /* kp points here if block is level 0 */
69 xfs_inobt_key_t *kp = NULL; /* pointer to btree keys */
70 xfs_agblock_t lbno; /* left block's block number */
71 xfs_buf_t *lbp; /* left block's buffer pointer */
72 xfs_inobt_block_t *left; /* left btree block */
73 xfs_inobt_key_t *lkp; /* left block key pointer */
74 xfs_inobt_ptr_t *lpp; /* left block address pointer */
75 int lrecs = 0; /* number of records in left block */
76 xfs_inobt_rec_t *lrp; /* left block record pointer */
77 xfs_inobt_ptr_t *pp = NULL; /* pointer to btree addresses */
78 int ptr; /* index in btree block for this rec */
79 xfs_agblock_t rbno; /* right block's block number */
80 xfs_buf_t *rbp; /* right block's buffer pointer */
81 xfs_inobt_block_t *right; /* right btree block */
82 xfs_inobt_key_t *rkp; /* right block key pointer */
83 xfs_inobt_rec_t *rp; /* pointer to btree records */
84 xfs_inobt_ptr_t *rpp; /* right block address pointer */
85 int rrecs = 0; /* number of records in right block */
86 int numrecs;
87 xfs_inobt_rec_t *rrp; /* right block record pointer */
88 xfs_btree_cur_t *tcur; /* temporary btree cursor */
89
90 mp = cur->bc_mp;
91
92 /*
93 * Get the index of the entry being deleted, check for nothing there.
94 */
95 ptr = cur->bc_ptrs[level];
96 if (ptr == 0) {
97 *stat = 0;
98 return 0;
99 }
100
101 /*
102 * Get the buffer & block containing the record or key/ptr.
103 */
104 bp = cur->bc_bufs[level];
105 block = XFS_BUF_TO_INOBT_BLOCK(bp);
106#ifdef DEBUG
107 if ((error = xfs_btree_check_sblock(cur, block, level, bp)))
108 return error;
109#endif
110 /*
111 * Fail if we're off the end of the block.
112 */
113
Christoph Hellwig16259e72005-11-02 15:11:25 +1100114 numrecs = be16_to_cpu(block->bb_numrecs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 if (ptr > numrecs) {
116 *stat = 0;
117 return 0;
118 }
119 /*
120 * It's a nonleaf. Excise the key and ptr being deleted, by
121 * sliding the entries past them down one.
122 * Log the changed areas of the block.
123 */
124 if (level > 0) {
125 kp = XFS_INOBT_KEY_ADDR(block, 1, cur);
126 pp = XFS_INOBT_PTR_ADDR(block, 1, cur);
127#ifdef DEBUG
128 for (i = ptr; i < numrecs; i++) {
Christoph Hellwig16259e72005-11-02 15:11:25 +1100129 if ((error = xfs_btree_check_sptr(cur, be32_to_cpu(pp[i]), level)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 return error;
131 }
132#endif
133 if (ptr < numrecs) {
134 memmove(&kp[ptr - 1], &kp[ptr],
135 (numrecs - ptr) * sizeof(*kp));
136 memmove(&pp[ptr - 1], &pp[ptr],
137 (numrecs - ptr) * sizeof(*kp));
138 xfs_inobt_log_keys(cur, bp, ptr, numrecs - 1);
139 xfs_inobt_log_ptrs(cur, bp, ptr, numrecs - 1);
140 }
141 }
142 /*
143 * It's a leaf. Excise the record being deleted, by sliding the
144 * entries past it down one. Log the changed areas of the block.
145 */
146 else {
147 rp = XFS_INOBT_REC_ADDR(block, 1, cur);
148 if (ptr < numrecs) {
149 memmove(&rp[ptr - 1], &rp[ptr],
150 (numrecs - ptr) * sizeof(*rp));
151 xfs_inobt_log_recs(cur, bp, ptr, numrecs - 1);
152 }
153 /*
154 * If it's the first record in the block, we'll need a key
155 * structure to pass up to the next level (updkey).
156 */
157 if (ptr == 1) {
158 key.ir_startino = rp->ir_startino;
159 kp = &key;
160 }
161 }
162 /*
163 * Decrement and log the number of entries in the block.
164 */
165 numrecs--;
Christoph Hellwig16259e72005-11-02 15:11:25 +1100166 block->bb_numrecs = cpu_to_be16(numrecs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 xfs_inobt_log_block(cur->bc_tp, bp, XFS_BB_NUMRECS);
168 /*
169 * Is this the root level? If so, we're almost done.
170 */
171 if (level == cur->bc_nlevels - 1) {
172 /*
173 * If this is the root level,
174 * and there's only one entry left,
175 * and it's NOT the leaf level,
176 * then we can get rid of this level.
177 */
178 if (numrecs == 1 && level > 0) {
Christoph Hellwig169d6222008-08-13 16:25:27 +1000179 agbp = cur->bc_private.a.agbp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 agi = XFS_BUF_TO_AGI(agbp);
181 /*
182 * pp is still set to the first pointer in the block.
183 * Make it the new root of the btree.
184 */
Christoph Hellwig16259e72005-11-02 15:11:25 +1100185 bno = be32_to_cpu(agi->agi_root);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 agi->agi_root = *pp;
Marcin Slusarz413d57c2008-02-13 15:03:29 -0800187 be32_add_cpu(&agi->agi_level, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 /*
189 * Free the block.
190 */
191 if ((error = xfs_free_extent(cur->bc_tp,
Christoph Hellwig169d6222008-08-13 16:25:27 +1000192 XFS_AGB_TO_FSB(mp, cur->bc_private.a.agno, bno), 1)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 return error;
194 xfs_trans_binval(cur->bc_tp, bp);
195 xfs_ialloc_log_agi(cur->bc_tp, agbp,
196 XFS_AGI_ROOT | XFS_AGI_LEVEL);
197 /*
198 * Update the cursor so there's one fewer level.
199 */
200 cur->bc_bufs[level] = NULL;
201 cur->bc_nlevels--;
202 } else if (level > 0 &&
Christoph Hellwig8df4da42008-10-30 16:55:58 +1100203 (error = xfs_btree_decrement(cur, level, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 return error;
205 *stat = 1;
206 return 0;
207 }
208 /*
209 * If we deleted the leftmost entry in the block, update the
210 * key values above us in the tree.
211 */
Christoph Hellwig38bb7422008-10-30 16:56:22 +1100212 if (ptr == 1 && (error = xfs_btree_updkey(cur, (union xfs_btree_key *)kp, level + 1)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 return error;
214 /*
215 * If the number of records remaining in the block is at least
216 * the minimum, we're done.
217 */
218 if (numrecs >= XFS_INOBT_BLOCK_MINRECS(level, cur)) {
219 if (level > 0 &&
Christoph Hellwig8df4da42008-10-30 16:55:58 +1100220 (error = xfs_btree_decrement(cur, level, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 return error;
222 *stat = 1;
223 return 0;
224 }
225 /*
226 * Otherwise, we have to move some records around to keep the
227 * tree balanced. Look at the left and right sibling blocks to
228 * see if we can re-balance by moving only one record.
229 */
Christoph Hellwig16259e72005-11-02 15:11:25 +1100230 rbno = be32_to_cpu(block->bb_rightsib);
231 lbno = be32_to_cpu(block->bb_leftsib);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 bno = NULLAGBLOCK;
233 ASSERT(rbno != NULLAGBLOCK || lbno != NULLAGBLOCK);
234 /*
235 * Duplicate the cursor so our btree manipulations here won't
236 * disrupt the next level up.
237 */
238 if ((error = xfs_btree_dup_cursor(cur, &tcur)))
239 return error;
240 /*
241 * If there's a right sibling, see if it's ok to shift an entry
242 * out of it.
243 */
244 if (rbno != NULLAGBLOCK) {
245 /*
246 * Move the temp cursor to the last entry in the next block.
247 * Actually any entry but the first would suffice.
248 */
249 i = xfs_btree_lastrec(tcur, level);
250 XFS_WANT_CORRUPTED_GOTO(i == 1, error0);
Christoph Hellwig637aa502008-10-30 16:55:45 +1100251 if ((error = xfs_btree_increment(tcur, level, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 goto error0;
253 XFS_WANT_CORRUPTED_GOTO(i == 1, error0);
254 i = xfs_btree_lastrec(tcur, level);
255 XFS_WANT_CORRUPTED_GOTO(i == 1, error0);
256 /*
257 * Grab a pointer to the block.
258 */
259 rbp = tcur->bc_bufs[level];
260 right = XFS_BUF_TO_INOBT_BLOCK(rbp);
261#ifdef DEBUG
262 if ((error = xfs_btree_check_sblock(cur, right, level, rbp)))
263 goto error0;
264#endif
265 /*
266 * Grab the current block number, for future use.
267 */
Christoph Hellwig16259e72005-11-02 15:11:25 +1100268 bno = be32_to_cpu(right->bb_leftsib);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 /*
270 * If right block is full enough so that removing one entry
271 * won't make it too empty, and left-shifting an entry out
272 * of right to us works, we're done.
273 */
Christoph Hellwig16259e72005-11-02 15:11:25 +1100274 if (be16_to_cpu(right->bb_numrecs) - 1 >=
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 XFS_INOBT_BLOCK_MINRECS(level, cur)) {
Christoph Hellwig687b8902008-10-30 16:56:53 +1100276 if ((error = xfs_btree_lshift(tcur, level, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 goto error0;
278 if (i) {
Christoph Hellwig16259e72005-11-02 15:11:25 +1100279 ASSERT(be16_to_cpu(block->bb_numrecs) >=
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 XFS_INOBT_BLOCK_MINRECS(level, cur));
281 xfs_btree_del_cursor(tcur,
282 XFS_BTREE_NOERROR);
283 if (level > 0 &&
Christoph Hellwig8df4da42008-10-30 16:55:58 +1100284 (error = xfs_btree_decrement(cur, level,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 &i)))
286 return error;
287 *stat = 1;
288 return 0;
289 }
290 }
291 /*
292 * Otherwise, grab the number of records in right for
293 * future reference, and fix up the temp cursor to point
294 * to our block again (last record).
295 */
Christoph Hellwig16259e72005-11-02 15:11:25 +1100296 rrecs = be16_to_cpu(right->bb_numrecs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 if (lbno != NULLAGBLOCK) {
298 xfs_btree_firstrec(tcur, level);
Christoph Hellwig8df4da42008-10-30 16:55:58 +1100299 if ((error = xfs_btree_decrement(tcur, level, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 goto error0;
301 }
302 }
303 /*
304 * If there's a left sibling, see if it's ok to shift an entry
305 * out of it.
306 */
307 if (lbno != NULLAGBLOCK) {
308 /*
309 * Move the temp cursor to the first entry in the
310 * previous block.
311 */
312 xfs_btree_firstrec(tcur, level);
Christoph Hellwig8df4da42008-10-30 16:55:58 +1100313 if ((error = xfs_btree_decrement(tcur, level, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 goto error0;
315 xfs_btree_firstrec(tcur, level);
316 /*
317 * Grab a pointer to the block.
318 */
319 lbp = tcur->bc_bufs[level];
320 left = XFS_BUF_TO_INOBT_BLOCK(lbp);
321#ifdef DEBUG
322 if ((error = xfs_btree_check_sblock(cur, left, level, lbp)))
323 goto error0;
324#endif
325 /*
326 * Grab the current block number, for future use.
327 */
Christoph Hellwig16259e72005-11-02 15:11:25 +1100328 bno = be32_to_cpu(left->bb_rightsib);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 /*
330 * If left block is full enough so that removing one entry
331 * won't make it too empty, and right-shifting an entry out
332 * of left to us works, we're done.
333 */
Christoph Hellwig16259e72005-11-02 15:11:25 +1100334 if (be16_to_cpu(left->bb_numrecs) - 1 >=
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 XFS_INOBT_BLOCK_MINRECS(level, cur)) {
Christoph Hellwig9eaead52008-10-30 16:56:43 +1100336 if ((error = xfs_btree_rshift(tcur, level, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 goto error0;
338 if (i) {
Christoph Hellwig16259e72005-11-02 15:11:25 +1100339 ASSERT(be16_to_cpu(block->bb_numrecs) >=
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 XFS_INOBT_BLOCK_MINRECS(level, cur));
341 xfs_btree_del_cursor(tcur,
342 XFS_BTREE_NOERROR);
343 if (level == 0)
344 cur->bc_ptrs[0]++;
345 *stat = 1;
346 return 0;
347 }
348 }
349 /*
350 * Otherwise, grab the number of records in right for
351 * future reference.
352 */
Christoph Hellwig16259e72005-11-02 15:11:25 +1100353 lrecs = be16_to_cpu(left->bb_numrecs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 }
355 /*
356 * Delete the temp cursor, we're done with it.
357 */
358 xfs_btree_del_cursor(tcur, XFS_BTREE_NOERROR);
359 /*
360 * If here, we need to do a join to keep the tree balanced.
361 */
362 ASSERT(bno != NULLAGBLOCK);
363 /*
364 * See if we can join with the left neighbor block.
365 */
366 if (lbno != NULLAGBLOCK &&
367 lrecs + numrecs <= XFS_INOBT_BLOCK_MAXRECS(level, cur)) {
368 /*
369 * Set "right" to be the starting block,
370 * "left" to be the left neighbor.
371 */
372 rbno = bno;
373 right = block;
Christoph Hellwig16259e72005-11-02 15:11:25 +1100374 rrecs = be16_to_cpu(right->bb_numrecs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 rbp = bp;
376 if ((error = xfs_btree_read_bufs(mp, cur->bc_tp,
Christoph Hellwig169d6222008-08-13 16:25:27 +1000377 cur->bc_private.a.agno, lbno, 0, &lbp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 XFS_INO_BTREE_REF)))
379 return error;
380 left = XFS_BUF_TO_INOBT_BLOCK(lbp);
Christoph Hellwig16259e72005-11-02 15:11:25 +1100381 lrecs = be16_to_cpu(left->bb_numrecs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 if ((error = xfs_btree_check_sblock(cur, left, level, lbp)))
383 return error;
384 }
385 /*
386 * If that won't work, see if we can join with the right neighbor block.
387 */
388 else if (rbno != NULLAGBLOCK &&
389 rrecs + numrecs <= XFS_INOBT_BLOCK_MAXRECS(level, cur)) {
390 /*
391 * Set "left" to be the starting block,
392 * "right" to be the right neighbor.
393 */
394 lbno = bno;
395 left = block;
Christoph Hellwig16259e72005-11-02 15:11:25 +1100396 lrecs = be16_to_cpu(left->bb_numrecs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 lbp = bp;
398 if ((error = xfs_btree_read_bufs(mp, cur->bc_tp,
Christoph Hellwig169d6222008-08-13 16:25:27 +1000399 cur->bc_private.a.agno, rbno, 0, &rbp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 XFS_INO_BTREE_REF)))
401 return error;
402 right = XFS_BUF_TO_INOBT_BLOCK(rbp);
Christoph Hellwig16259e72005-11-02 15:11:25 +1100403 rrecs = be16_to_cpu(right->bb_numrecs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 if ((error = xfs_btree_check_sblock(cur, right, level, rbp)))
405 return error;
406 }
407 /*
408 * Otherwise, we can't fix the imbalance.
409 * Just return. This is probably a logic error, but it's not fatal.
410 */
411 else {
Christoph Hellwig8df4da42008-10-30 16:55:58 +1100412 if (level > 0 && (error = xfs_btree_decrement(cur, level, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 return error;
414 *stat = 1;
415 return 0;
416 }
417 /*
418 * We're now going to join "left" and "right" by moving all the stuff
419 * in "right" to "left" and deleting "right".
420 */
421 if (level > 0) {
422 /*
423 * It's a non-leaf. Move keys and pointers.
424 */
425 lkp = XFS_INOBT_KEY_ADDR(left, lrecs + 1, cur);
426 lpp = XFS_INOBT_PTR_ADDR(left, lrecs + 1, cur);
427 rkp = XFS_INOBT_KEY_ADDR(right, 1, cur);
428 rpp = XFS_INOBT_PTR_ADDR(right, 1, cur);
429#ifdef DEBUG
430 for (i = 0; i < rrecs; i++) {
Christoph Hellwig16259e72005-11-02 15:11:25 +1100431 if ((error = xfs_btree_check_sptr(cur, be32_to_cpu(rpp[i]), level)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 return error;
433 }
434#endif
435 memcpy(lkp, rkp, rrecs * sizeof(*lkp));
436 memcpy(lpp, rpp, rrecs * sizeof(*lpp));
437 xfs_inobt_log_keys(cur, lbp, lrecs + 1, lrecs + rrecs);
438 xfs_inobt_log_ptrs(cur, lbp, lrecs + 1, lrecs + rrecs);
439 } else {
440 /*
441 * It's a leaf. Move records.
442 */
443 lrp = XFS_INOBT_REC_ADDR(left, lrecs + 1, cur);
444 rrp = XFS_INOBT_REC_ADDR(right, 1, cur);
445 memcpy(lrp, rrp, rrecs * sizeof(*lrp));
446 xfs_inobt_log_recs(cur, lbp, lrecs + 1, lrecs + rrecs);
447 }
448 /*
449 * If we joined with the left neighbor, set the buffer in the
450 * cursor to the left block, and fix up the index.
451 */
452 if (bp != lbp) {
453 xfs_btree_setbuf(cur, level, lbp);
454 cur->bc_ptrs[level] += lrecs;
455 }
456 /*
457 * If we joined with the right neighbor and there's a level above
458 * us, increment the cursor at that level.
459 */
460 else if (level + 1 < cur->bc_nlevels &&
Christoph Hellwig637aa502008-10-30 16:55:45 +1100461 (error = xfs_btree_increment(cur, level + 1, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 return error;
463 /*
464 * Fix up the number of records in the surviving block.
465 */
466 lrecs += rrecs;
Christoph Hellwig16259e72005-11-02 15:11:25 +1100467 left->bb_numrecs = cpu_to_be16(lrecs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 /*
469 * Fix up the right block pointer in the surviving block, and log it.
470 */
471 left->bb_rightsib = right->bb_rightsib;
472 xfs_inobt_log_block(cur->bc_tp, lbp, XFS_BB_NUMRECS | XFS_BB_RIGHTSIB);
473 /*
474 * If there is a right sibling now, make it point to the
475 * remaining block.
476 */
Christoph Hellwig16259e72005-11-02 15:11:25 +1100477 if (be32_to_cpu(left->bb_rightsib) != NULLAGBLOCK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 xfs_inobt_block_t *rrblock;
479 xfs_buf_t *rrbp;
480
481 if ((error = xfs_btree_read_bufs(mp, cur->bc_tp,
Christoph Hellwig169d6222008-08-13 16:25:27 +1000482 cur->bc_private.a.agno, be32_to_cpu(left->bb_rightsib), 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 &rrbp, XFS_INO_BTREE_REF)))
484 return error;
485 rrblock = XFS_BUF_TO_INOBT_BLOCK(rrbp);
486 if ((error = xfs_btree_check_sblock(cur, rrblock, level, rrbp)))
487 return error;
Christoph Hellwig16259e72005-11-02 15:11:25 +1100488 rrblock->bb_leftsib = cpu_to_be32(lbno);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 xfs_inobt_log_block(cur->bc_tp, rrbp, XFS_BB_LEFTSIB);
490 }
491 /*
492 * Free the deleting block.
493 */
494 if ((error = xfs_free_extent(cur->bc_tp, XFS_AGB_TO_FSB(mp,
Christoph Hellwig169d6222008-08-13 16:25:27 +1000495 cur->bc_private.a.agno, rbno), 1)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 return error;
497 xfs_trans_binval(cur->bc_tp, rbp);
498 /*
499 * Readjust the ptr at this level if it's not a leaf, since it's
500 * still pointing at the deletion point, which makes the cursor
501 * inconsistent. If this makes the ptr 0, the caller fixes it up.
502 * We can't use decrement because it would change the next level up.
503 */
504 if (level > 0)
505 cur->bc_ptrs[level]--;
506 /*
507 * Return value means the next level up has something to do.
508 */
509 *stat = 2;
510 return 0;
511
512error0:
513 xfs_btree_del_cursor(tcur, XFS_BTREE_ERROR);
514 return error;
515}
516
517/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 * Log header fields from a btree block.
519 */
520STATIC void
521xfs_inobt_log_block(
522 xfs_trans_t *tp, /* transaction pointer */
523 xfs_buf_t *bp, /* buffer containing btree block */
524 int fields) /* mask of fields: XFS_BB_... */
525{
526 int first; /* first byte offset logged */
527 int last; /* last byte offset logged */
528 static const short offsets[] = { /* table of offsets */
529 offsetof(xfs_inobt_block_t, bb_magic),
530 offsetof(xfs_inobt_block_t, bb_level),
531 offsetof(xfs_inobt_block_t, bb_numrecs),
532 offsetof(xfs_inobt_block_t, bb_leftsib),
533 offsetof(xfs_inobt_block_t, bb_rightsib),
534 sizeof(xfs_inobt_block_t)
535 };
536
537 xfs_btree_offsets(fields, offsets, XFS_BB_NUM_BITS, &first, &last);
538 xfs_trans_log_buf(tp, bp, first, last);
539}
540
541/*
542 * Log keys from a btree block (nonleaf).
543 */
544STATIC void
545xfs_inobt_log_keys(
546 xfs_btree_cur_t *cur, /* btree cursor */
547 xfs_buf_t *bp, /* buffer containing btree block */
548 int kfirst, /* index of first key to log */
549 int klast) /* index of last key to log */
550{
551 xfs_inobt_block_t *block; /* btree block to log from */
552 int first; /* first byte offset logged */
553 xfs_inobt_key_t *kp; /* key pointer in btree block */
554 int last; /* last byte offset logged */
555
556 block = XFS_BUF_TO_INOBT_BLOCK(bp);
557 kp = XFS_INOBT_KEY_ADDR(block, 1, cur);
558 first = (int)((xfs_caddr_t)&kp[kfirst - 1] - (xfs_caddr_t)block);
559 last = (int)(((xfs_caddr_t)&kp[klast] - 1) - (xfs_caddr_t)block);
560 xfs_trans_log_buf(cur->bc_tp, bp, first, last);
561}
562
563/*
564 * Log block pointer fields from a btree block (nonleaf).
565 */
566STATIC void
567xfs_inobt_log_ptrs(
568 xfs_btree_cur_t *cur, /* btree cursor */
569 xfs_buf_t *bp, /* buffer containing btree block */
570 int pfirst, /* index of first pointer to log */
571 int plast) /* index of last pointer to log */
572{
573 xfs_inobt_block_t *block; /* btree block to log from */
574 int first; /* first byte offset logged */
575 int last; /* last byte offset logged */
576 xfs_inobt_ptr_t *pp; /* block-pointer pointer in btree blk */
577
578 block = XFS_BUF_TO_INOBT_BLOCK(bp);
579 pp = XFS_INOBT_PTR_ADDR(block, 1, cur);
580 first = (int)((xfs_caddr_t)&pp[pfirst - 1] - (xfs_caddr_t)block);
581 last = (int)(((xfs_caddr_t)&pp[plast] - 1) - (xfs_caddr_t)block);
582 xfs_trans_log_buf(cur->bc_tp, bp, first, last);
583}
584
585/*
586 * Log records from a btree block (leaf).
587 */
588STATIC void
589xfs_inobt_log_recs(
590 xfs_btree_cur_t *cur, /* btree cursor */
591 xfs_buf_t *bp, /* buffer containing btree block */
592 int rfirst, /* index of first record to log */
593 int rlast) /* index of last record to log */
594{
595 xfs_inobt_block_t *block; /* btree block to log from */
596 int first; /* first byte offset logged */
597 int last; /* last byte offset logged */
598 xfs_inobt_rec_t *rp; /* record pointer for btree block */
599
600 block = XFS_BUF_TO_INOBT_BLOCK(bp);
601 rp = XFS_INOBT_REC_ADDR(block, 1, cur);
602 first = (int)((xfs_caddr_t)&rp[rfirst - 1] - (xfs_caddr_t)block);
603 last = (int)(((xfs_caddr_t)&rp[rlast] - 1) - (xfs_caddr_t)block);
604 xfs_trans_log_buf(cur->bc_tp, bp, first, last);
605}
606
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607
608/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 * Externally visible routines.
610 */
611
612/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 * Delete the record pointed to by cur.
614 * The cursor refers to the place where the record was (could be inserted)
615 * when the operation returns.
616 */
617int /* error */
618xfs_inobt_delete(
619 xfs_btree_cur_t *cur, /* btree cursor */
620 int *stat) /* success/failure */
621{
622 int error;
623 int i; /* result code */
624 int level; /* btree level */
625
626 /*
627 * Go up the tree, starting at leaf level.
628 * If 2 is returned then a join was done; go to the next level.
629 * Otherwise we are done.
630 */
631 for (level = 0, i = 2; i == 2; level++) {
632 if ((error = xfs_inobt_delrec(cur, level, &i)))
633 return error;
634 }
635 if (i == 0) {
636 for (level = 1; level < cur->bc_nlevels; level++) {
637 if (cur->bc_ptrs[level] == 0) {
Christoph Hellwig8df4da42008-10-30 16:55:58 +1100638 if ((error = xfs_btree_decrement(cur, level, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 return error;
640 break;
641 }
642 }
643 }
644 *stat = i;
645 return 0;
646}
647
648
649/*
650 * Get the data from the pointed-to record.
651 */
652int /* error */
653xfs_inobt_get_rec(
654 xfs_btree_cur_t *cur, /* btree cursor */
655 xfs_agino_t *ino, /* output: starting inode of chunk */
656 __int32_t *fcnt, /* output: number of free inodes */
657 xfs_inofree_t *free, /* output: free inode mask */
658 int *stat) /* output: success/failure */
659{
660 xfs_inobt_block_t *block; /* btree block */
661 xfs_buf_t *bp; /* buffer containing btree block */
662#ifdef DEBUG
663 int error; /* error return value */
664#endif
665 int ptr; /* record number */
666 xfs_inobt_rec_t *rec; /* record data */
667
668 bp = cur->bc_bufs[0];
669 ptr = cur->bc_ptrs[0];
670 block = XFS_BUF_TO_INOBT_BLOCK(bp);
671#ifdef DEBUG
672 if ((error = xfs_btree_check_sblock(cur, block, 0, bp)))
673 return error;
674#endif
675 /*
676 * Off the right end or left end, return failure.
677 */
Christoph Hellwig16259e72005-11-02 15:11:25 +1100678 if (ptr > be16_to_cpu(block->bb_numrecs) || ptr <= 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 *stat = 0;
680 return 0;
681 }
682 /*
683 * Point to the record and extract its data.
684 */
685 rec = XFS_INOBT_REC_ADDR(block, ptr, cur);
Christoph Hellwig61a25842006-09-28 10:57:04 +1000686 *ino = be32_to_cpu(rec->ir_startino);
687 *fcnt = be32_to_cpu(rec->ir_freecount);
688 *free = be64_to_cpu(rec->ir_free);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 *stat = 1;
690 return 0;
691}
692
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693
Christoph Hellwig561f7d12008-10-30 16:53:59 +1100694STATIC struct xfs_btree_cur *
695xfs_inobt_dup_cursor(
696 struct xfs_btree_cur *cur)
697{
698 return xfs_inobt_init_cursor(cur->bc_mp, cur->bc_tp,
699 cur->bc_private.a.agbp, cur->bc_private.a.agno);
700}
701
Christoph Hellwig344207c2008-10-30 16:57:16 +1100702STATIC void
703xfs_inobt_set_root(
704 struct xfs_btree_cur *cur,
705 union xfs_btree_ptr *nptr,
706 int inc) /* level change */
707{
708 struct xfs_buf *agbp = cur->bc_private.a.agbp;
709 struct xfs_agi *agi = XFS_BUF_TO_AGI(agbp);
710
711 agi->agi_root = nptr->s;
712 be32_add_cpu(&agi->agi_level, inc);
713 xfs_ialloc_log_agi(cur->bc_tp, agbp, XFS_AGI_ROOT | XFS_AGI_LEVEL);
714}
715
Christoph Hellwigce5e42d2008-10-30 16:55:23 +1100716STATIC int
Christoph Hellwigf5eb8e72008-10-30 16:57:03 +1100717xfs_inobt_alloc_block(
718 struct xfs_btree_cur *cur,
719 union xfs_btree_ptr *start,
720 union xfs_btree_ptr *new,
721 int length,
722 int *stat)
723{
724 xfs_alloc_arg_t args; /* block allocation args */
725 int error; /* error return value */
726 xfs_agblock_t sbno = be32_to_cpu(start->s);
727
728 XFS_BTREE_TRACE_CURSOR(cur, XBT_ENTRY);
729
730 memset(&args, 0, sizeof(args));
731 args.tp = cur->bc_tp;
732 args.mp = cur->bc_mp;
733 args.fsbno = XFS_AGB_TO_FSB(args.mp, cur->bc_private.a.agno, sbno);
734 args.minlen = 1;
735 args.maxlen = 1;
736 args.prod = 1;
737 args.type = XFS_ALLOCTYPE_NEAR_BNO;
738
739 error = xfs_alloc_vextent(&args);
740 if (error) {
741 XFS_BTREE_TRACE_CURSOR(cur, XBT_ERROR);
742 return error;
743 }
744 if (args.fsbno == NULLFSBLOCK) {
745 XFS_BTREE_TRACE_CURSOR(cur, XBT_EXIT);
746 *stat = 0;
747 return 0;
748 }
749 ASSERT(args.len == 1);
750 XFS_BTREE_TRACE_CURSOR(cur, XBT_EXIT);
751
752 new->s = cpu_to_be32(XFS_FSB_TO_AGBNO(args.mp, args.fsbno));
753 *stat = 1;
754 return 0;
755}
756
757
758STATIC int
Christoph Hellwigce5e42d2008-10-30 16:55:23 +1100759xfs_inobt_get_maxrecs(
760 struct xfs_btree_cur *cur,
761 int level)
762{
763 return cur->bc_mp->m_inobt_mxr[level != 0];
764}
765
Christoph Hellwigfe033cc2008-10-30 16:56:09 +1100766STATIC void
767xfs_inobt_init_key_from_rec(
768 union xfs_btree_key *key,
769 union xfs_btree_rec *rec)
770{
771 key->inobt.ir_startino = rec->inobt.ir_startino;
772}
773
Christoph Hellwig4b22a572008-10-30 16:57:40 +1100774STATIC void
775xfs_inobt_init_rec_from_key(
776 union xfs_btree_key *key,
777 union xfs_btree_rec *rec)
778{
779 rec->inobt.ir_startino = key->inobt.ir_startino;
780}
781
782STATIC void
783xfs_inobt_init_rec_from_cur(
784 struct xfs_btree_cur *cur,
785 union xfs_btree_rec *rec)
786{
787 rec->inobt.ir_startino = cpu_to_be32(cur->bc_rec.i.ir_startino);
788 rec->inobt.ir_freecount = cpu_to_be32(cur->bc_rec.i.ir_freecount);
789 rec->inobt.ir_free = cpu_to_be64(cur->bc_rec.i.ir_free);
790}
791
Christoph Hellwigfe033cc2008-10-30 16:56:09 +1100792/*
793 * intial value of ptr for lookup
794 */
795STATIC void
796xfs_inobt_init_ptr_from_cur(
797 struct xfs_btree_cur *cur,
798 union xfs_btree_ptr *ptr)
799{
800 struct xfs_agi *agi = XFS_BUF_TO_AGI(cur->bc_private.a.agbp);
801
802 ASSERT(cur->bc_private.a.agno == be32_to_cpu(agi->agi_seqno));
803
804 ptr->s = agi->agi_root;
805}
806
807STATIC __int64_t
808xfs_inobt_key_diff(
809 struct xfs_btree_cur *cur,
810 union xfs_btree_key *key)
811{
812 return (__int64_t)be32_to_cpu(key->inobt.ir_startino) -
813 cur->bc_rec.i.ir_startino;
814}
815
Christoph Hellwig8c4ed632008-10-30 16:55:13 +1100816#ifdef XFS_BTREE_TRACE
817ktrace_t *xfs_inobt_trace_buf;
818
819STATIC void
820xfs_inobt_trace_enter(
821 struct xfs_btree_cur *cur,
822 const char *func,
823 char *s,
824 int type,
825 int line,
826 __psunsigned_t a0,
827 __psunsigned_t a1,
828 __psunsigned_t a2,
829 __psunsigned_t a3,
830 __psunsigned_t a4,
831 __psunsigned_t a5,
832 __psunsigned_t a6,
833 __psunsigned_t a7,
834 __psunsigned_t a8,
835 __psunsigned_t a9,
836 __psunsigned_t a10)
837{
838 ktrace_enter(xfs_inobt_trace_buf, (void *)(__psint_t)type,
839 (void *)func, (void *)s, NULL, (void *)cur,
840 (void *)a0, (void *)a1, (void *)a2, (void *)a3,
841 (void *)a4, (void *)a5, (void *)a6, (void *)a7,
842 (void *)a8, (void *)a9, (void *)a10);
843}
844
845STATIC void
846xfs_inobt_trace_cursor(
847 struct xfs_btree_cur *cur,
848 __uint32_t *s0,
849 __uint64_t *l0,
850 __uint64_t *l1)
851{
852 *s0 = cur->bc_private.a.agno;
853 *l0 = cur->bc_rec.i.ir_startino;
854 *l1 = cur->bc_rec.i.ir_free;
855}
856
857STATIC void
858xfs_inobt_trace_key(
859 struct xfs_btree_cur *cur,
860 union xfs_btree_key *key,
861 __uint64_t *l0,
862 __uint64_t *l1)
863{
864 *l0 = be32_to_cpu(key->inobt.ir_startino);
865 *l1 = 0;
866}
867
868STATIC void
869xfs_inobt_trace_record(
870 struct xfs_btree_cur *cur,
871 union xfs_btree_rec *rec,
872 __uint64_t *l0,
873 __uint64_t *l1,
874 __uint64_t *l2)
875{
876 *l0 = be32_to_cpu(rec->inobt.ir_startino);
877 *l1 = be32_to_cpu(rec->inobt.ir_freecount);
878 *l2 = be64_to_cpu(rec->inobt.ir_free);
879}
880#endif /* XFS_BTREE_TRACE */
881
Christoph Hellwig561f7d12008-10-30 16:53:59 +1100882static const struct xfs_btree_ops xfs_inobt_ops = {
Christoph Hellwig65f1eae2008-10-30 16:55:34 +1100883 .rec_len = sizeof(xfs_inobt_rec_t),
884 .key_len = sizeof(xfs_inobt_key_t),
885
Christoph Hellwig561f7d12008-10-30 16:53:59 +1100886 .dup_cursor = xfs_inobt_dup_cursor,
Christoph Hellwig344207c2008-10-30 16:57:16 +1100887 .set_root = xfs_inobt_set_root,
Christoph Hellwigf5eb8e72008-10-30 16:57:03 +1100888 .alloc_block = xfs_inobt_alloc_block,
Christoph Hellwigce5e42d2008-10-30 16:55:23 +1100889 .get_maxrecs = xfs_inobt_get_maxrecs,
Christoph Hellwigfe033cc2008-10-30 16:56:09 +1100890 .init_key_from_rec = xfs_inobt_init_key_from_rec,
Christoph Hellwig4b22a572008-10-30 16:57:40 +1100891 .init_rec_from_key = xfs_inobt_init_rec_from_key,
892 .init_rec_from_cur = xfs_inobt_init_rec_from_cur,
Christoph Hellwigfe033cc2008-10-30 16:56:09 +1100893 .init_ptr_from_cur = xfs_inobt_init_ptr_from_cur,
894 .key_diff = xfs_inobt_key_diff,
Christoph Hellwig8c4ed632008-10-30 16:55:13 +1100895
896#ifdef XFS_BTREE_TRACE
897 .trace_enter = xfs_inobt_trace_enter,
898 .trace_cursor = xfs_inobt_trace_cursor,
899 .trace_key = xfs_inobt_trace_key,
900 .trace_record = xfs_inobt_trace_record,
901#endif
Christoph Hellwig561f7d12008-10-30 16:53:59 +1100902};
903
904/*
905 * Allocate a new inode btree cursor.
906 */
907struct xfs_btree_cur * /* new inode btree cursor */
908xfs_inobt_init_cursor(
909 struct xfs_mount *mp, /* file system mount point */
910 struct xfs_trans *tp, /* transaction pointer */
911 struct xfs_buf *agbp, /* buffer for agi structure */
912 xfs_agnumber_t agno) /* allocation group number */
913{
914 struct xfs_agi *agi = XFS_BUF_TO_AGI(agbp);
915 struct xfs_btree_cur *cur;
916
917 cur = kmem_zone_zalloc(xfs_btree_cur_zone, KM_SLEEP);
918
919 cur->bc_tp = tp;
920 cur->bc_mp = mp;
921 cur->bc_nlevels = be32_to_cpu(agi->agi_level);
922 cur->bc_btnum = XFS_BTNUM_INO;
923 cur->bc_blocklog = mp->m_sb.sb_blocklog;
924
925 cur->bc_ops = &xfs_inobt_ops;
926
927 cur->bc_private.a.agbp = agbp;
928 cur->bc_private.a.agno = agno;
929
930 return cur;
931}