fs: no games with DCACHE_UNHASHED
[linux-2.6-block.git] / fs / xfs / xfs_bmap_btree.c
CommitLineData
1da177e4 1/*
7b718769
NS
2 * Copyright (c) 2000-2003,2005 Silicon Graphics, Inc.
3 * All Rights Reserved.
1da177e4 4 *
7b718769
NS
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License as
1da177e4
LT
7 * published by the Free Software Foundation.
8 *
7b718769
NS
9 * This program is distributed in the hope that it would be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
1da177e4 13 *
7b718769
NS
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write the Free Software Foundation,
16 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
1da177e4 17 */
1da177e4 18#include "xfs.h"
a844f451 19#include "xfs_fs.h"
1da177e4 20#include "xfs_types.h"
a844f451 21#include "xfs_bit.h"
1da177e4 22#include "xfs_log.h"
a844f451 23#include "xfs_inum.h"
1da177e4
LT
24#include "xfs_trans.h"
25#include "xfs_sb.h"
26#include "xfs_ag.h"
1da177e4
LT
27#include "xfs_dir2.h"
28#include "xfs_dmapi.h"
29#include "xfs_mount.h"
1da177e4 30#include "xfs_bmap_btree.h"
a844f451 31#include "xfs_alloc_btree.h"
1da177e4 32#include "xfs_ialloc_btree.h"
1da177e4 33#include "xfs_dir2_sf.h"
a844f451 34#include "xfs_attr_sf.h"
1da177e4 35#include "xfs_dinode.h"
1da177e4 36#include "xfs_inode.h"
a844f451 37#include "xfs_inode_item.h"
1da177e4 38#include "xfs_alloc.h"
a844f451 39#include "xfs_btree.h"
8c4ed633 40#include "xfs_btree_trace.h"
a844f451
NS
41#include "xfs_ialloc.h"
42#include "xfs_itable.h"
1da177e4
LT
43#include "xfs_bmap.h"
44#include "xfs_error.h"
45#include "xfs_quota.h"
46
1da177e4
LT
47/*
48 * Determine the extent state.
49 */
50/* ARGSUSED */
51STATIC xfs_exntst_t
52xfs_extent_state(
53 xfs_filblks_t blks,
54 int extent_flag)
55{
56 if (extent_flag) {
57 ASSERT(blks != 0); /* saved for DMIG */
58 return XFS_EXT_UNWRITTEN;
59 }
60 return XFS_EXT_NORM;
61}
62
1da177e4
LT
63/*
64 * Convert on-disk form of btree root to in-memory form.
65 */
66void
67xfs_bmdr_to_bmbt(
60197e8d 68 struct xfs_mount *mp,
1da177e4
LT
69 xfs_bmdr_block_t *dblock,
70 int dblocklen,
7cc95a82 71 struct xfs_btree_block *rblock,
1da177e4
LT
72 int rblocklen)
73{
74 int dmxr;
75 xfs_bmbt_key_t *fkp;
576039cf 76 __be64 *fpp;
1da177e4 77 xfs_bmbt_key_t *tkp;
576039cf 78 __be64 *tpp;
1da177e4 79
16259e7d
CH
80 rblock->bb_magic = cpu_to_be32(XFS_BMAP_MAGIC);
81 rblock->bb_level = dblock->bb_level;
82 ASSERT(be16_to_cpu(rblock->bb_level) > 0);
83 rblock->bb_numrecs = dblock->bb_numrecs;
7cc95a82
CH
84 rblock->bb_u.l.bb_leftsib = cpu_to_be64(NULLDFSBNO);
85 rblock->bb_u.l.bb_rightsib = cpu_to_be64(NULLDFSBNO);
60197e8d 86 dmxr = xfs_bmdr_maxrecs(mp, dblocklen, 0);
136341b4
CH
87 fkp = XFS_BMDR_KEY_ADDR(dblock, 1);
88 tkp = XFS_BMBT_KEY_ADDR(mp, rblock, 1);
89 fpp = XFS_BMDR_PTR_ADDR(dblock, 1, dmxr);
60197e8d 90 tpp = XFS_BMAP_BROOT_PTR_ADDR(mp, rblock, 1, rblocklen);
16259e7d 91 dmxr = be16_to_cpu(dblock->bb_numrecs);
1da177e4 92 memcpy(tkp, fkp, sizeof(*fkp) * dmxr);
576039cf 93 memcpy(tpp, fpp, sizeof(*fpp) * dmxr);
1da177e4
LT
94}
95
1da177e4
LT
96/*
97 * Convert a compressed bmap extent record to an uncompressed form.
98 * This code must be in sync with the routines xfs_bmbt_get_startoff,
99 * xfs_bmbt_get_startblock, xfs_bmbt_get_blockcount and xfs_bmbt_get_state.
100 */
b8f82a4a 101STATIC void
1da177e4
LT
102__xfs_bmbt_get_all(
103 __uint64_t l0,
104 __uint64_t l1,
105 xfs_bmbt_irec_t *s)
106{
107 int ext_flag;
108 xfs_exntst_t st;
109
110 ext_flag = (int)(l0 >> (64 - BMBT_EXNTFLAG_BITLEN));
111 s->br_startoff = ((xfs_fileoff_t)l0 &
fb82557f 112 xfs_mask64lo(64 - BMBT_EXNTFLAG_BITLEN)) >> 9;
1da177e4 113#if XFS_BIG_BLKNOS
fb82557f 114 s->br_startblock = (((xfs_fsblock_t)l0 & xfs_mask64lo(9)) << 43) |
1da177e4
LT
115 (((xfs_fsblock_t)l1) >> 21);
116#else
117#ifdef DEBUG
118 {
119 xfs_dfsbno_t b;
120
fb82557f 121 b = (((xfs_dfsbno_t)l0 & xfs_mask64lo(9)) << 43) |
1da177e4 122 (((xfs_dfsbno_t)l1) >> 21);
9d87c319 123 ASSERT((b >> 32) == 0 || isnulldstartblock(b));
1da177e4
LT
124 s->br_startblock = (xfs_fsblock_t)b;
125 }
126#else /* !DEBUG */
127 s->br_startblock = (xfs_fsblock_t)(((xfs_dfsbno_t)l1) >> 21);
128#endif /* DEBUG */
129#endif /* XFS_BIG_BLKNOS */
fb82557f 130 s->br_blockcount = (xfs_filblks_t)(l1 & xfs_mask64lo(21));
1da177e4
LT
131 /* This is xfs_extent_state() in-line */
132 if (ext_flag) {
133 ASSERT(s->br_blockcount != 0); /* saved for DMIG */
134 st = XFS_EXT_UNWRITTEN;
135 } else
136 st = XFS_EXT_NORM;
137 s->br_state = st;
138}
139
140void
141xfs_bmbt_get_all(
a6f64d4a 142 xfs_bmbt_rec_host_t *r,
1da177e4
LT
143 xfs_bmbt_irec_t *s)
144{
145 __xfs_bmbt_get_all(r->l0, r->l1, s);
146}
147
1da177e4
LT
148/*
149 * Extract the blockcount field from an in memory bmap extent record.
150 */
151xfs_filblks_t
152xfs_bmbt_get_blockcount(
a6f64d4a 153 xfs_bmbt_rec_host_t *r)
1da177e4 154{
fb82557f 155 return (xfs_filblks_t)(r->l1 & xfs_mask64lo(21));
1da177e4
LT
156}
157
158/*
159 * Extract the startblock field from an in memory bmap extent record.
160 */
161xfs_fsblock_t
162xfs_bmbt_get_startblock(
a6f64d4a 163 xfs_bmbt_rec_host_t *r)
1da177e4
LT
164{
165#if XFS_BIG_BLKNOS
fb82557f 166 return (((xfs_fsblock_t)r->l0 & xfs_mask64lo(9)) << 43) |
1da177e4
LT
167 (((xfs_fsblock_t)r->l1) >> 21);
168#else
169#ifdef DEBUG
170 xfs_dfsbno_t b;
171
fb82557f 172 b = (((xfs_dfsbno_t)r->l0 & xfs_mask64lo(9)) << 43) |
1da177e4 173 (((xfs_dfsbno_t)r->l1) >> 21);
9d87c319 174 ASSERT((b >> 32) == 0 || isnulldstartblock(b));
1da177e4
LT
175 return (xfs_fsblock_t)b;
176#else /* !DEBUG */
177 return (xfs_fsblock_t)(((xfs_dfsbno_t)r->l1) >> 21);
178#endif /* DEBUG */
179#endif /* XFS_BIG_BLKNOS */
180}
181
182/*
183 * Extract the startoff field from an in memory bmap extent record.
184 */
185xfs_fileoff_t
186xfs_bmbt_get_startoff(
a6f64d4a 187 xfs_bmbt_rec_host_t *r)
1da177e4
LT
188{
189 return ((xfs_fileoff_t)r->l0 &
fb82557f 190 xfs_mask64lo(64 - BMBT_EXNTFLAG_BITLEN)) >> 9;
1da177e4
LT
191}
192
193xfs_exntst_t
194xfs_bmbt_get_state(
a6f64d4a 195 xfs_bmbt_rec_host_t *r)
1da177e4
LT
196{
197 int ext_flag;
198
199 ext_flag = (int)((r->l0) >> (64 - BMBT_EXNTFLAG_BITLEN));
200 return xfs_extent_state(xfs_bmbt_get_blockcount(r),
201 ext_flag);
202}
203
1da177e4
LT
204/*
205 * Extract the blockcount field from an on disk bmap extent record.
206 */
207xfs_filblks_t
208xfs_bmbt_disk_get_blockcount(
209 xfs_bmbt_rec_t *r)
210{
fb82557f 211 return (xfs_filblks_t)(be64_to_cpu(r->l1) & xfs_mask64lo(21));
1da177e4
LT
212}
213
1da177e4
LT
214/*
215 * Extract the startoff field from a disk format bmap extent record.
216 */
217xfs_fileoff_t
218xfs_bmbt_disk_get_startoff(
219 xfs_bmbt_rec_t *r)
220{
cd8b0a97 221 return ((xfs_fileoff_t)be64_to_cpu(r->l0) &
fb82557f 222 xfs_mask64lo(64 - BMBT_EXNTFLAG_BITLEN)) >> 9;
1da177e4 223}
1da177e4 224
1da177e4 225
1da177e4
LT
226/*
227 * Set all the fields in a bmap extent record from the arguments.
228 */
229void
230xfs_bmbt_set_allf(
8cba4344
CH
231 xfs_bmbt_rec_host_t *r,
232 xfs_fileoff_t startoff,
233 xfs_fsblock_t startblock,
234 xfs_filblks_t blockcount,
235 xfs_exntst_t state)
1da177e4 236{
8cba4344
CH
237 int extent_flag = (state == XFS_EXT_NORM) ? 0 : 1;
238
239 ASSERT(state == XFS_EXT_NORM || state == XFS_EXT_UNWRITTEN);
fb82557f
ES
240 ASSERT((startoff & xfs_mask64hi(64-BMBT_STARTOFF_BITLEN)) == 0);
241 ASSERT((blockcount & xfs_mask64hi(64-BMBT_BLOCKCOUNT_BITLEN)) == 0);
1da177e4 242
1da177e4 243#if XFS_BIG_BLKNOS
fb82557f 244 ASSERT((startblock & xfs_mask64hi(64-BMBT_STARTBLOCK_BITLEN)) == 0);
8cba4344 245
1da177e4 246 r->l0 = ((xfs_bmbt_rec_base_t)extent_flag << 63) |
8cba4344
CH
247 ((xfs_bmbt_rec_base_t)startoff << 9) |
248 ((xfs_bmbt_rec_base_t)startblock >> 43);
249 r->l1 = ((xfs_bmbt_rec_base_t)startblock << 21) |
250 ((xfs_bmbt_rec_base_t)blockcount &
fb82557f 251 (xfs_bmbt_rec_base_t)xfs_mask64lo(21));
1da177e4 252#else /* !XFS_BIG_BLKNOS */
9d87c319 253 if (isnullstartblock(startblock)) {
1da177e4 254 r->l0 = ((xfs_bmbt_rec_base_t)extent_flag << 63) |
8cba4344 255 ((xfs_bmbt_rec_base_t)startoff << 9) |
fb82557f
ES
256 (xfs_bmbt_rec_base_t)xfs_mask64lo(9);
257 r->l1 = xfs_mask64hi(11) |
8cba4344
CH
258 ((xfs_bmbt_rec_base_t)startblock << 21) |
259 ((xfs_bmbt_rec_base_t)blockcount &
fb82557f 260 (xfs_bmbt_rec_base_t)xfs_mask64lo(21));
1da177e4
LT
261 } else {
262 r->l0 = ((xfs_bmbt_rec_base_t)extent_flag << 63) |
8cba4344
CH
263 ((xfs_bmbt_rec_base_t)startoff << 9);
264 r->l1 = ((xfs_bmbt_rec_base_t)startblock << 21) |
265 ((xfs_bmbt_rec_base_t)blockcount &
fb82557f 266 (xfs_bmbt_rec_base_t)xfs_mask64lo(21));
1da177e4
LT
267 }
268#endif /* XFS_BIG_BLKNOS */
269}
270
1da177e4
LT
271/*
272 * Set all the fields in a bmap extent record from the uncompressed form.
273 */
274void
8cba4344
CH
275xfs_bmbt_set_all(
276 xfs_bmbt_rec_host_t *r,
277 xfs_bmbt_irec_t *s)
1da177e4 278{
8cba4344
CH
279 xfs_bmbt_set_allf(r, s->br_startoff, s->br_startblock,
280 s->br_blockcount, s->br_state);
1da177e4
LT
281}
282
8cba4344 283
1da177e4
LT
284/*
285 * Set all the fields in a disk format bmap extent record from the arguments.
286 */
287void
288xfs_bmbt_disk_set_allf(
8cba4344
CH
289 xfs_bmbt_rec_t *r,
290 xfs_fileoff_t startoff,
291 xfs_fsblock_t startblock,
292 xfs_filblks_t blockcount,
293 xfs_exntst_t state)
1da177e4 294{
8cba4344
CH
295 int extent_flag = (state == XFS_EXT_NORM) ? 0 : 1;
296
297 ASSERT(state == XFS_EXT_NORM || state == XFS_EXT_UNWRITTEN);
fb82557f
ES
298 ASSERT((startoff & xfs_mask64hi(64-BMBT_STARTOFF_BITLEN)) == 0);
299 ASSERT((blockcount & xfs_mask64hi(64-BMBT_BLOCKCOUNT_BITLEN)) == 0);
1da177e4 300
1da177e4 301#if XFS_BIG_BLKNOS
fb82557f 302 ASSERT((startblock & xfs_mask64hi(64-BMBT_STARTBLOCK_BITLEN)) == 0);
8cba4344 303
cd8b0a97 304 r->l0 = cpu_to_be64(
8cba4344
CH
305 ((xfs_bmbt_rec_base_t)extent_flag << 63) |
306 ((xfs_bmbt_rec_base_t)startoff << 9) |
307 ((xfs_bmbt_rec_base_t)startblock >> 43));
cd8b0a97 308 r->l1 = cpu_to_be64(
8cba4344
CH
309 ((xfs_bmbt_rec_base_t)startblock << 21) |
310 ((xfs_bmbt_rec_base_t)blockcount &
fb82557f 311 (xfs_bmbt_rec_base_t)xfs_mask64lo(21)));
1da177e4 312#else /* !XFS_BIG_BLKNOS */
9d87c319 313 if (isnullstartblock(startblock)) {
cd8b0a97 314 r->l0 = cpu_to_be64(
8cba4344
CH
315 ((xfs_bmbt_rec_base_t)extent_flag << 63) |
316 ((xfs_bmbt_rec_base_t)startoff << 9) |
fb82557f
ES
317 (xfs_bmbt_rec_base_t)xfs_mask64lo(9));
318 r->l1 = cpu_to_be64(xfs_mask64hi(11) |
8cba4344
CH
319 ((xfs_bmbt_rec_base_t)startblock << 21) |
320 ((xfs_bmbt_rec_base_t)blockcount &
fb82557f 321 (xfs_bmbt_rec_base_t)xfs_mask64lo(21)));
1da177e4 322 } else {
cd8b0a97 323 r->l0 = cpu_to_be64(
8cba4344
CH
324 ((xfs_bmbt_rec_base_t)extent_flag << 63) |
325 ((xfs_bmbt_rec_base_t)startoff << 9));
cd8b0a97 326 r->l1 = cpu_to_be64(
8cba4344
CH
327 ((xfs_bmbt_rec_base_t)startblock << 21) |
328 ((xfs_bmbt_rec_base_t)blockcount &
fb82557f 329 (xfs_bmbt_rec_base_t)xfs_mask64lo(21)));
1da177e4
LT
330 }
331#endif /* XFS_BIG_BLKNOS */
332}
8cba4344
CH
333
334/*
335 * Set all the fields in a bmap extent record from the uncompressed form.
336 */
337void
338xfs_bmbt_disk_set_all(
339 xfs_bmbt_rec_t *r,
340 xfs_bmbt_irec_t *s)
341{
342 xfs_bmbt_disk_set_allf(r, s->br_startoff, s->br_startblock,
343 s->br_blockcount, s->br_state);
344}
1da177e4
LT
345
346/*
347 * Set the blockcount field in a bmap extent record.
348 */
349void
350xfs_bmbt_set_blockcount(
a6f64d4a 351 xfs_bmbt_rec_host_t *r,
1da177e4
LT
352 xfs_filblks_t v)
353{
fb82557f
ES
354 ASSERT((v & xfs_mask64hi(43)) == 0);
355 r->l1 = (r->l1 & (xfs_bmbt_rec_base_t)xfs_mask64hi(43)) |
356 (xfs_bmbt_rec_base_t)(v & xfs_mask64lo(21));
1da177e4
LT
357}
358
359/*
360 * Set the startblock field in a bmap extent record.
361 */
362void
363xfs_bmbt_set_startblock(
a6f64d4a 364 xfs_bmbt_rec_host_t *r,
1da177e4
LT
365 xfs_fsblock_t v)
366{
367#if XFS_BIG_BLKNOS
fb82557f
ES
368 ASSERT((v & xfs_mask64hi(12)) == 0);
369 r->l0 = (r->l0 & (xfs_bmbt_rec_base_t)xfs_mask64hi(55)) |
1da177e4 370 (xfs_bmbt_rec_base_t)(v >> 43);
fb82557f 371 r->l1 = (r->l1 & (xfs_bmbt_rec_base_t)xfs_mask64lo(21)) |
1da177e4
LT
372 (xfs_bmbt_rec_base_t)(v << 21);
373#else /* !XFS_BIG_BLKNOS */
9d87c319 374 if (isnullstartblock(v)) {
fb82557f
ES
375 r->l0 |= (xfs_bmbt_rec_base_t)xfs_mask64lo(9);
376 r->l1 = (xfs_bmbt_rec_base_t)xfs_mask64hi(11) |
1da177e4 377 ((xfs_bmbt_rec_base_t)v << 21) |
fb82557f 378 (r->l1 & (xfs_bmbt_rec_base_t)xfs_mask64lo(21));
1da177e4 379 } else {
fb82557f 380 r->l0 &= ~(xfs_bmbt_rec_base_t)xfs_mask64lo(9);
1da177e4 381 r->l1 = ((xfs_bmbt_rec_base_t)v << 21) |
fb82557f 382 (r->l1 & (xfs_bmbt_rec_base_t)xfs_mask64lo(21));
1da177e4
LT
383 }
384#endif /* XFS_BIG_BLKNOS */
385}
386
387/*
388 * Set the startoff field in a bmap extent record.
389 */
390void
391xfs_bmbt_set_startoff(
a6f64d4a 392 xfs_bmbt_rec_host_t *r,
1da177e4
LT
393 xfs_fileoff_t v)
394{
fb82557f
ES
395 ASSERT((v & xfs_mask64hi(9)) == 0);
396 r->l0 = (r->l0 & (xfs_bmbt_rec_base_t) xfs_mask64hi(1)) |
1da177e4 397 ((xfs_bmbt_rec_base_t)v << 9) |
fb82557f 398 (r->l0 & (xfs_bmbt_rec_base_t)xfs_mask64lo(9));
1da177e4
LT
399}
400
401/*
402 * Set the extent state field in a bmap extent record.
403 */
404void
405xfs_bmbt_set_state(
a6f64d4a 406 xfs_bmbt_rec_host_t *r,
1da177e4
LT
407 xfs_exntst_t v)
408{
409 ASSERT(v == XFS_EXT_NORM || v == XFS_EXT_UNWRITTEN);
410 if (v == XFS_EXT_NORM)
fb82557f 411 r->l0 &= xfs_mask64lo(64 - BMBT_EXNTFLAG_BITLEN);
1da177e4 412 else
fb82557f 413 r->l0 |= xfs_mask64hi(BMBT_EXNTFLAG_BITLEN);
1da177e4
LT
414}
415
416/*
417 * Convert in-memory form of btree root to on-disk form.
418 */
419void
420xfs_bmbt_to_bmdr(
60197e8d 421 struct xfs_mount *mp,
7cc95a82 422 struct xfs_btree_block *rblock,
1da177e4
LT
423 int rblocklen,
424 xfs_bmdr_block_t *dblock,
425 int dblocklen)
426{
427 int dmxr;
428 xfs_bmbt_key_t *fkp;
576039cf 429 __be64 *fpp;
1da177e4 430 xfs_bmbt_key_t *tkp;
576039cf 431 __be64 *tpp;
1da177e4 432
16259e7d 433 ASSERT(be32_to_cpu(rblock->bb_magic) == XFS_BMAP_MAGIC);
7cc95a82
CH
434 ASSERT(be64_to_cpu(rblock->bb_u.l.bb_leftsib) == NULLDFSBNO);
435 ASSERT(be64_to_cpu(rblock->bb_u.l.bb_rightsib) == NULLDFSBNO);
16259e7d
CH
436 ASSERT(be16_to_cpu(rblock->bb_level) > 0);
437 dblock->bb_level = rblock->bb_level;
438 dblock->bb_numrecs = rblock->bb_numrecs;
60197e8d 439 dmxr = xfs_bmdr_maxrecs(mp, dblocklen, 0);
136341b4
CH
440 fkp = XFS_BMBT_KEY_ADDR(mp, rblock, 1);
441 tkp = XFS_BMDR_KEY_ADDR(dblock, 1);
60197e8d 442 fpp = XFS_BMAP_BROOT_PTR_ADDR(mp, rblock, 1, rblocklen);
136341b4 443 tpp = XFS_BMDR_PTR_ADDR(dblock, 1, dmxr);
16259e7d 444 dmxr = be16_to_cpu(dblock->bb_numrecs);
1da177e4 445 memcpy(tkp, fkp, sizeof(*fkp) * dmxr);
576039cf 446 memcpy(tpp, fpp, sizeof(*fpp) * dmxr);
1da177e4
LT
447}
448
1da177e4 449/*
4eea22f0 450 * Check extent records, which have just been read, for
1da177e4
LT
451 * any bit in the extent flag field. ASSERT on debug
452 * kernels, as this condition should not occur.
453 * Return an error condition (1) if any flags found,
454 * otherwise return 0.
455 */
456
457int
458xfs_check_nostate_extents(
4eea22f0
MK
459 xfs_ifork_t *ifp,
460 xfs_extnum_t idx,
1da177e4
LT
461 xfs_extnum_t num)
462{
4eea22f0 463 for (; num > 0; num--, idx++) {
a6f64d4a 464 xfs_bmbt_rec_host_t *ep = xfs_iext_get_ext(ifp, idx);
1da177e4
LT
465 if ((ep->l0 >>
466 (64 - BMBT_EXNTFLAG_BITLEN)) != 0) {
467 ASSERT(0);
468 return 1;
469 }
470 }
471 return 0;
472}
561f7d17
CH
473
474
475STATIC struct xfs_btree_cur *
476xfs_bmbt_dup_cursor(
477 struct xfs_btree_cur *cur)
478{
479 struct xfs_btree_cur *new;
480
481 new = xfs_bmbt_init_cursor(cur->bc_mp, cur->bc_tp,
482 cur->bc_private.b.ip, cur->bc_private.b.whichfork);
483
484 /*
485 * Copy the firstblock, flist, and flags values,
486 * since init cursor doesn't get them.
487 */
488 new->bc_private.b.firstblock = cur->bc_private.b.firstblock;
489 new->bc_private.b.flist = cur->bc_private.b.flist;
490 new->bc_private.b.flags = cur->bc_private.b.flags;
491
492 return new;
493}
494
4b22a571
CH
495STATIC void
496xfs_bmbt_update_cursor(
497 struct xfs_btree_cur *src,
498 struct xfs_btree_cur *dst)
499{
500 ASSERT((dst->bc_private.b.firstblock != NULLFSBLOCK) ||
501 (dst->bc_private.b.ip->i_d.di_flags & XFS_DIFLAG_REALTIME));
502 ASSERT(dst->bc_private.b.flist == src->bc_private.b.flist);
503
504 dst->bc_private.b.allocated += src->bc_private.b.allocated;
505 dst->bc_private.b.firstblock = src->bc_private.b.firstblock;
506
507 src->bc_private.b.allocated = 0;
508}
509
f5eb8e7c
CH
510STATIC int
511xfs_bmbt_alloc_block(
512 struct xfs_btree_cur *cur,
513 union xfs_btree_ptr *start,
514 union xfs_btree_ptr *new,
515 int length,
516 int *stat)
517{
518 xfs_alloc_arg_t args; /* block allocation args */
519 int error; /* error return value */
520
521 memset(&args, 0, sizeof(args));
522 args.tp = cur->bc_tp;
523 args.mp = cur->bc_mp;
524 args.fsbno = cur->bc_private.b.firstblock;
525 args.firstblock = args.fsbno;
526
527 if (args.fsbno == NULLFSBLOCK) {
528 args.fsbno = be64_to_cpu(start->l);
529 args.type = XFS_ALLOCTYPE_START_BNO;
530 /*
531 * Make sure there is sufficient room left in the AG to
532 * complete a full tree split for an extent insert. If
533 * we are converting the middle part of an extent then
534 * we may need space for two tree splits.
535 *
536 * We are relying on the caller to make the correct block
537 * reservation for this operation to succeed. If the
538 * reservation amount is insufficient then we may fail a
539 * block allocation here and corrupt the filesystem.
540 */
541 args.minleft = xfs_trans_get_block_res(args.tp);
542 } else if (cur->bc_private.b.flist->xbf_low) {
543 args.type = XFS_ALLOCTYPE_START_BNO;
544 } else {
545 args.type = XFS_ALLOCTYPE_NEAR_BNO;
546 }
547
548 args.minlen = args.maxlen = args.prod = 1;
549 args.wasdel = cur->bc_private.b.flags & XFS_BTCUR_BPRV_WASDEL;
550 if (!args.wasdel && xfs_trans_get_block_res(args.tp) == 0) {
551 error = XFS_ERROR(ENOSPC);
552 goto error0;
553 }
554 error = xfs_alloc_vextent(&args);
555 if (error)
556 goto error0;
557
558 if (args.fsbno == NULLFSBLOCK && args.minleft) {
559 /*
560 * Could not find an AG with enough free space to satisfy
561 * a full btree split. Try again without minleft and if
562 * successful activate the lowspace algorithm.
563 */
564 args.fsbno = 0;
565 args.type = XFS_ALLOCTYPE_FIRST_AG;
566 args.minleft = 0;
567 error = xfs_alloc_vextent(&args);
568 if (error)
569 goto error0;
570 cur->bc_private.b.flist->xbf_low = 1;
571 }
572 if (args.fsbno == NULLFSBLOCK) {
573 XFS_BTREE_TRACE_CURSOR(cur, XBT_EXIT);
574 *stat = 0;
575 return 0;
576 }
577 ASSERT(args.len == 1);
578 cur->bc_private.b.firstblock = args.fsbno;
579 cur->bc_private.b.allocated++;
580 cur->bc_private.b.ip->i_d.di_nblocks++;
581 xfs_trans_log_inode(args.tp, cur->bc_private.b.ip, XFS_ILOG_CORE);
7d095257 582 xfs_trans_mod_dquot_byino(args.tp, cur->bc_private.b.ip,
f5eb8e7c
CH
583 XFS_TRANS_DQ_BCOUNT, 1L);
584
585 new->l = cpu_to_be64(args.fsbno);
586
587 XFS_BTREE_TRACE_CURSOR(cur, XBT_EXIT);
588 *stat = 1;
589 return 0;
590
591 error0:
592 XFS_BTREE_TRACE_CURSOR(cur, XBT_ERROR);
593 return error;
594}
595
d4b3a4b7
CH
596STATIC int
597xfs_bmbt_free_block(
598 struct xfs_btree_cur *cur,
599 struct xfs_buf *bp)
600{
601 struct xfs_mount *mp = cur->bc_mp;
602 struct xfs_inode *ip = cur->bc_private.b.ip;
603 struct xfs_trans *tp = cur->bc_tp;
604 xfs_fsblock_t fsbno = XFS_DADDR_TO_FSB(mp, XFS_BUF_ADDR(bp));
605
606 xfs_bmap_add_free(fsbno, 1, cur->bc_private.b.flist, mp);
607 ip->i_d.di_nblocks--;
608
609 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
7d095257 610 xfs_trans_mod_dquot_byino(tp, ip, XFS_TRANS_DQ_BCOUNT, -1L);
d4b3a4b7
CH
611 xfs_trans_binval(tp, bp);
612 return 0;
613}
614
91cca5df
CH
615STATIC int
616xfs_bmbt_get_minrecs(
617 struct xfs_btree_cur *cur,
618 int level)
619{
60197e8d
CH
620 if (level == cur->bc_nlevels - 1) {
621 struct xfs_ifork *ifp;
622
623 ifp = XFS_IFORK_PTR(cur->bc_private.b.ip,
624 cur->bc_private.b.whichfork);
625
626 return xfs_bmbt_maxrecs(cur->bc_mp,
627 ifp->if_broot_bytes, level == 0) / 2;
628 }
629
630 return cur->bc_mp->m_bmap_dmnr[level != 0];
91cca5df
CH
631}
632
60197e8d 633int
ce5e42db
CH
634xfs_bmbt_get_maxrecs(
635 struct xfs_btree_cur *cur,
636 int level)
637{
60197e8d
CH
638 if (level == cur->bc_nlevels - 1) {
639 struct xfs_ifork *ifp;
640
641 ifp = XFS_IFORK_PTR(cur->bc_private.b.ip,
642 cur->bc_private.b.whichfork);
643
644 return xfs_bmbt_maxrecs(cur->bc_mp,
645 ifp->if_broot_bytes, level == 0);
646 }
647
648 return cur->bc_mp->m_bmap_dmxr[level != 0];
649
ce5e42db
CH
650}
651
4b22a571
CH
652/*
653 * Get the maximum records we could store in the on-disk format.
654 *
655 * For non-root nodes this is equivalent to xfs_bmbt_get_maxrecs, but
656 * for the root node this checks the available space in the dinode fork
657 * so that we can resize the in-memory buffer to match it. After a
658 * resize to the maximum size this function returns the same value
659 * as xfs_bmbt_get_maxrecs for the root node, too.
660 */
661STATIC int
662xfs_bmbt_get_dmaxrecs(
663 struct xfs_btree_cur *cur,
664 int level)
665{
60197e8d
CH
666 if (level != cur->bc_nlevels - 1)
667 return cur->bc_mp->m_bmap_dmxr[level != 0];
668 return xfs_bmdr_maxrecs(cur->bc_mp, cur->bc_private.b.forksize,
669 level == 0);
4b22a571
CH
670}
671
fe033cc8
CH
672STATIC void
673xfs_bmbt_init_key_from_rec(
674 union xfs_btree_key *key,
675 union xfs_btree_rec *rec)
676{
677 key->bmbt.br_startoff =
678 cpu_to_be64(xfs_bmbt_disk_get_startoff(&rec->bmbt));
679}
680
4b22a571
CH
681STATIC void
682xfs_bmbt_init_rec_from_key(
683 union xfs_btree_key *key,
684 union xfs_btree_rec *rec)
685{
686 ASSERT(key->bmbt.br_startoff != 0);
687
688 xfs_bmbt_disk_set_allf(&rec->bmbt, be64_to_cpu(key->bmbt.br_startoff),
689 0, 0, XFS_EXT_NORM);
690}
691
692STATIC void
693xfs_bmbt_init_rec_from_cur(
694 struct xfs_btree_cur *cur,
695 union xfs_btree_rec *rec)
696{
697 xfs_bmbt_disk_set_all(&rec->bmbt, &cur->bc_rec.b);
698}
699
fe033cc8
CH
700STATIC void
701xfs_bmbt_init_ptr_from_cur(
702 struct xfs_btree_cur *cur,
703 union xfs_btree_ptr *ptr)
704{
705 ptr->l = 0;
706}
707
708STATIC __int64_t
709xfs_bmbt_key_diff(
710 struct xfs_btree_cur *cur,
711 union xfs_btree_key *key)
712{
713 return (__int64_t)be64_to_cpu(key->bmbt.br_startoff) -
714 cur->bc_rec.b.br_startoff;
715}
716
4a26e66e
CH
717#ifdef DEBUG
718STATIC int
719xfs_bmbt_keys_inorder(
720 struct xfs_btree_cur *cur,
721 union xfs_btree_key *k1,
722 union xfs_btree_key *k2)
723{
724 return be64_to_cpu(k1->bmbt.br_startoff) <
725 be64_to_cpu(k2->bmbt.br_startoff);
726}
727
728STATIC int
729xfs_bmbt_recs_inorder(
730 struct xfs_btree_cur *cur,
731 union xfs_btree_rec *r1,
732 union xfs_btree_rec *r2)
733{
734 return xfs_bmbt_disk_get_startoff(&r1->bmbt) +
735 xfs_bmbt_disk_get_blockcount(&r1->bmbt) <=
736 xfs_bmbt_disk_get_startoff(&r2->bmbt);
737}
738#endif /* DEBUG */
739
8c4ed633
CH
740#ifdef XFS_BTREE_TRACE
741ktrace_t *xfs_bmbt_trace_buf;
742
743STATIC void
744xfs_bmbt_trace_enter(
745 struct xfs_btree_cur *cur,
746 const char *func,
747 char *s,
748 int type,
749 int line,
750 __psunsigned_t a0,
751 __psunsigned_t a1,
752 __psunsigned_t a2,
753 __psunsigned_t a3,
754 __psunsigned_t a4,
755 __psunsigned_t a5,
756 __psunsigned_t a6,
757 __psunsigned_t a7,
758 __psunsigned_t a8,
759 __psunsigned_t a9,
760 __psunsigned_t a10)
761{
762 struct xfs_inode *ip = cur->bc_private.b.ip;
763 int whichfork = cur->bc_private.b.whichfork;
764
765 ktrace_enter(xfs_bmbt_trace_buf,
766 (void *)((__psint_t)type | (whichfork << 8) | (line << 16)),
767 (void *)func, (void *)s, (void *)ip, (void *)cur,
768 (void *)a0, (void *)a1, (void *)a2, (void *)a3,
769 (void *)a4, (void *)a5, (void *)a6, (void *)a7,
770 (void *)a8, (void *)a9, (void *)a10);
8c4ed633
CH
771}
772
773STATIC void
774xfs_bmbt_trace_cursor(
775 struct xfs_btree_cur *cur,
776 __uint32_t *s0,
777 __uint64_t *l0,
778 __uint64_t *l1)
779{
780 struct xfs_bmbt_rec_host r;
781
782 xfs_bmbt_set_all(&r, &cur->bc_rec.b);
783
784 *s0 = (cur->bc_nlevels << 24) |
785 (cur->bc_private.b.flags << 16) |
786 cur->bc_private.b.allocated;
787 *l0 = r.l0;
788 *l1 = r.l1;
789}
790
791STATIC void
792xfs_bmbt_trace_key(
793 struct xfs_btree_cur *cur,
794 union xfs_btree_key *key,
795 __uint64_t *l0,
796 __uint64_t *l1)
797{
798 *l0 = be64_to_cpu(key->bmbt.br_startoff);
799 *l1 = 0;
800}
801
d96f8f89
ES
802/* Endian flipping versions of the bmbt extraction functions */
803STATIC void
804xfs_bmbt_disk_get_all(
805 xfs_bmbt_rec_t *r,
806 xfs_bmbt_irec_t *s)
807{
808 __xfs_bmbt_get_all(get_unaligned_be64(&r->l0),
809 get_unaligned_be64(&r->l1), s);
810}
811
8c4ed633
CH
812STATIC void
813xfs_bmbt_trace_record(
814 struct xfs_btree_cur *cur,
815 union xfs_btree_rec *rec,
816 __uint64_t *l0,
817 __uint64_t *l1,
818 __uint64_t *l2)
819{
820 struct xfs_bmbt_irec irec;
821
822 xfs_bmbt_disk_get_all(&rec->bmbt, &irec);
823 *l0 = irec.br_startoff;
824 *l1 = irec.br_startblock;
825 *l2 = irec.br_blockcount;
826}
827#endif /* XFS_BTREE_TRACE */
828
561f7d17 829static const struct xfs_btree_ops xfs_bmbt_ops = {
65f1eaea
CH
830 .rec_len = sizeof(xfs_bmbt_rec_t),
831 .key_len = sizeof(xfs_bmbt_key_t),
832
561f7d17 833 .dup_cursor = xfs_bmbt_dup_cursor,
4b22a571 834 .update_cursor = xfs_bmbt_update_cursor,
f5eb8e7c 835 .alloc_block = xfs_bmbt_alloc_block,
d4b3a4b7 836 .free_block = xfs_bmbt_free_block,
ce5e42db 837 .get_maxrecs = xfs_bmbt_get_maxrecs,
91cca5df 838 .get_minrecs = xfs_bmbt_get_minrecs,
4b22a571 839 .get_dmaxrecs = xfs_bmbt_get_dmaxrecs,
fe033cc8 840 .init_key_from_rec = xfs_bmbt_init_key_from_rec,
4b22a571
CH
841 .init_rec_from_key = xfs_bmbt_init_rec_from_key,
842 .init_rec_from_cur = xfs_bmbt_init_rec_from_cur,
fe033cc8
CH
843 .init_ptr_from_cur = xfs_bmbt_init_ptr_from_cur,
844 .key_diff = xfs_bmbt_key_diff,
8c4ed633 845
4a26e66e
CH
846#ifdef DEBUG
847 .keys_inorder = xfs_bmbt_keys_inorder,
848 .recs_inorder = xfs_bmbt_recs_inorder,
849#endif
850
8c4ed633
CH
851#ifdef XFS_BTREE_TRACE
852 .trace_enter = xfs_bmbt_trace_enter,
853 .trace_cursor = xfs_bmbt_trace_cursor,
854 .trace_key = xfs_bmbt_trace_key,
855 .trace_record = xfs_bmbt_trace_record,
856#endif
561f7d17
CH
857};
858
859/*
860 * Allocate a new bmap btree cursor.
861 */
862struct xfs_btree_cur * /* new bmap btree cursor */
863xfs_bmbt_init_cursor(
864 struct xfs_mount *mp, /* file system mount point */
865 struct xfs_trans *tp, /* transaction pointer */
866 struct xfs_inode *ip, /* inode owning the btree */
867 int whichfork) /* data or attr fork */
868{
869 struct xfs_ifork *ifp = XFS_IFORK_PTR(ip, whichfork);
870 struct xfs_btree_cur *cur;
871
872 cur = kmem_zone_zalloc(xfs_btree_cur_zone, KM_SLEEP);
873
874 cur->bc_tp = tp;
875 cur->bc_mp = mp;
876 cur->bc_nlevels = be16_to_cpu(ifp->if_broot->bb_level) + 1;
877 cur->bc_btnum = XFS_BTNUM_BMAP;
878 cur->bc_blocklog = mp->m_sb.sb_blocklog;
879
880 cur->bc_ops = &xfs_bmbt_ops;
e99ab90d 881 cur->bc_flags = XFS_BTREE_LONG_PTRS | XFS_BTREE_ROOT_IN_INODE;
561f7d17
CH
882
883 cur->bc_private.b.forksize = XFS_IFORK_SIZE(ip, whichfork);
884 cur->bc_private.b.ip = ip;
885 cur->bc_private.b.firstblock = NULLFSBLOCK;
886 cur->bc_private.b.flist = NULL;
887 cur->bc_private.b.allocated = 0;
888 cur->bc_private.b.flags = 0;
889 cur->bc_private.b.whichfork = whichfork;
890
891 return cur;
892}
60197e8d
CH
893
894/*
895 * Calculate number of records in a bmap btree block.
896 */
897int
898xfs_bmbt_maxrecs(
899 struct xfs_mount *mp,
900 int blocklen,
901 int leaf)
902{
7cc95a82 903 blocklen -= XFS_BMBT_BLOCK_LEN(mp);
60197e8d
CH
904
905 if (leaf)
906 return blocklen / sizeof(xfs_bmbt_rec_t);
907 return blocklen / (sizeof(xfs_bmbt_key_t) + sizeof(xfs_bmbt_ptr_t));
908}
909
910/*
911 * Calculate number of records in a bmap btree inode root.
912 */
913int
914xfs_bmdr_maxrecs(
915 struct xfs_mount *mp,
916 int blocklen,
917 int leaf)
918{
919 blocklen -= sizeof(xfs_bmdr_block_t);
920
921 if (leaf)
922 return blocklen / sizeof(xfs_bmdr_rec_t);
923 return blocklen / (sizeof(xfs_bmdr_key_t) + sizeof(xfs_bmdr_ptr_t));
924}