]> git.ipfire.org Git - thirdparty/xfsprogs-dev.git/blame - libxfs/xfs_alloc.c
xfs: streamline defer op type handling
[thirdparty/xfsprogs-dev.git] / libxfs / xfs_alloc.c
CommitLineData
37b3b4d6 1// SPDX-License-Identifier: GPL-2.0
2bd0ea18 2/*
5e656dbb 3 * Copyright (c) 2000-2002,2005 Silicon Graphics, Inc.
da23017d 4 * All Rights Reserved.
2bd0ea18 5 */
9c799827 6#include "libxfs_priv.h"
b626fb59
DC
7#include "xfs_fs.h"
8#include "xfs_format.h"
9#include "xfs_log_format.h"
10#include "xfs_shared.h"
11#include "xfs_trans_resv.h"
12#include "xfs_bit.h"
13#include "xfs_sb.h"
14#include "xfs_mount.h"
f944d3d0 15#include "xfs_defer.h"
b626fb59
DC
16#include "xfs_inode.h"
17#include "xfs_btree.h"
631ac87a 18#include "xfs_rmap.h"
b626fb59
DC
19#include "xfs_alloc_btree.h"
20#include "xfs_alloc.h"
56d3fc2b 21#include "xfs_errortag.h"
b626fb59
DC
22#include "xfs_cksum.h"
23#include "xfs_trace.h"
24#include "xfs_trans.h"
cf8ce220 25#include "xfs_ag_resv.h"
d5c1b462
BF
26#include "xfs_bmap.h"
27
28extern kmem_zone_t *xfs_bmap_free_item_zone;
2bd0ea18 29
ff105f75
DC
30struct workqueue_struct *xfs_alloc_wq;
31
2bd0ea18 32#define XFS_ABSDIFF(a,b) (((a) <= (b)) ? ((b) - (a)) : ((a) - (b)))
5e656dbb
BN
33
34#define XFSA_FIXUP_BNO_OK 1
35#define XFSA_FIXUP_CNT_OK 2
36
5e656dbb
BN
37STATIC int xfs_alloc_ag_vextent_exact(xfs_alloc_arg_t *);
38STATIC int xfs_alloc_ag_vextent_near(xfs_alloc_arg_t *);
39STATIC int xfs_alloc_ag_vextent_size(xfs_alloc_arg_t *);
40STATIC int xfs_alloc_ag_vextent_small(xfs_alloc_arg_t *,
a2ceac1f 41 xfs_btree_cur_t *, xfs_agblock_t *, xfs_extlen_t *, int *);
2bd0ea18 42
b8165508
DC
43/*
44 * Size of the AGFL. For CRC-enabled filesystes we steal a couple of slots in
45 * the beginning of the block for a proper header with the location information
46 * and CRC.
47 */
48unsigned int
49xfs_agfl_size(
50 struct xfs_mount *mp)
51{
52 unsigned int size = mp->m_sb.sb_sectsize;
53
54 if (xfs_sb_version_hascrc(&mp->m_sb))
55 size -= sizeof(struct xfs_agfl);
56
57 return size / sizeof(xfs_agblock_t);
58}
59
2a96beb9
DW
60unsigned int
61xfs_refc_block(
62 struct xfs_mount *mp)
63{
64 if (xfs_sb_version_hasrmapbt(&mp->m_sb))
65 return XFS_RMAP_BLOCK(mp) + 1;
66 if (xfs_sb_version_hasfinobt(&mp->m_sb))
67 return XFS_FIBT_BLOCK(mp) + 1;
68 return XFS_IBT_BLOCK(mp) + 1;
69}
70
ef5340cd
DW
71xfs_extlen_t
72xfs_prealloc_blocks(
73 struct xfs_mount *mp)
74{
2a96beb9
DW
75 if (xfs_sb_version_hasreflink(&mp->m_sb))
76 return xfs_refc_block(mp) + 1;
ef5340cd
DW
77 if (xfs_sb_version_hasrmapbt(&mp->m_sb))
78 return XFS_RMAP_BLOCK(mp) + 1;
79 if (xfs_sb_version_hasfinobt(&mp->m_sb))
80 return XFS_FIBT_BLOCK(mp) + 1;
81 return XFS_IBT_BLOCK(mp) + 1;
82}
83
b8a8d6e5
DW
84/*
85 * In order to avoid ENOSPC-related deadlock caused by out-of-order locking of
86 * AGF buffer (PV 947395), we place constraints on the relationship among
87 * actual allocations for data blocks, freelist blocks, and potential file data
88 * bmap btree blocks. However, these restrictions may result in no actual space
89 * allocated for a delayed extent, for example, a data block in a certain AG is
90 * allocated but there is no additional block for the additional bmap btree
91 * block due to a split of the bmap btree of the file. The result of this may
92 * lead to an infinite loop when the file gets flushed to disk and all delayed
93 * extents need to be actually allocated. To get around this, we explicitly set
94 * aside a few blocks which will not be reserved in delayed allocation.
95 *
cf8ce220
DW
96 * We need to reserve 4 fsbs _per AG_ for the freelist and 4 more to handle a
97 * potential split of the file's bmap btree.
b8a8d6e5
DW
98 */
99unsigned int
100xfs_alloc_set_aside(
101 struct xfs_mount *mp)
102{
8eeb15ea 103 return mp->m_sb.sb_agcount * (XFS_ALLOC_AGFL_RESERVE + 4);
b8a8d6e5
DW
104}
105
106/*
107 * When deciding how much space to allocate out of an AG, we limit the
108 * allocation maximum size to the size the AG. However, we cannot use all the
109 * blocks in the AG - some are permanently used by metadata. These
110 * blocks are generally:
111 * - the AG superblock, AGF, AGI and AGFL
112 * - the AGF (bno and cnt) and AGI btree root blocks, and optionally
113 * the AGI free inode and rmap btree root blocks.
114 * - blocks on the AGFL according to xfs_alloc_set_aside() limits
115 * - the rmapbt root block
116 *
117 * The AG headers are sector sized, so the amount of space they take up is
118 * dependent on filesystem geometry. The others are all single blocks.
119 */
120unsigned int
121xfs_alloc_ag_max_usable(
122 struct xfs_mount *mp)
123{
124 unsigned int blocks;
125
126 blocks = XFS_BB_TO_FSB(mp, XFS_FSS_TO_BB(mp, 4)); /* ag headers */
127 blocks += XFS_ALLOC_AGFL_RESERVE;
128 blocks += 3; /* AGF, AGI btree root blocks */
129 if (xfs_sb_version_hasfinobt(&mp->m_sb))
130 blocks++; /* finobt root block */
131 if (xfs_sb_version_hasrmapbt(&mp->m_sb))
132 blocks++; /* rmap root block */
868c70e3
DW
133 if (xfs_sb_version_hasreflink(&mp->m_sb))
134 blocks++; /* refcount root block */
b8a8d6e5
DW
135
136 return mp->m_sb.sb_agblocks - blocks;
137}
138
b194c7d8
BN
139/*
140 * Lookup the record equal to [bno, len] in the btree given by cur.
141 */
142STATIC int /* error */
143xfs_alloc_lookup_eq(
144 struct xfs_btree_cur *cur, /* btree cursor */
145 xfs_agblock_t bno, /* starting block of extent */
146 xfs_extlen_t len, /* length of extent */
147 int *stat) /* success/failure */
148{
149 cur->bc_rec.a.ar_startblock = bno;
150 cur->bc_rec.a.ar_blockcount = len;
151 return xfs_btree_lookup(cur, XFS_LOOKUP_EQ, stat);
152}
153
154/*
155 * Lookup the first record greater than or equal to [bno, len]
156 * in the btree given by cur.
157 */
a2ceac1f 158int /* error */
b194c7d8
BN
159xfs_alloc_lookup_ge(
160 struct xfs_btree_cur *cur, /* btree cursor */
161 xfs_agblock_t bno, /* starting block of extent */
162 xfs_extlen_t len, /* length of extent */
163 int *stat) /* success/failure */
164{
165 cur->bc_rec.a.ar_startblock = bno;
166 cur->bc_rec.a.ar_blockcount = len;
167 return xfs_btree_lookup(cur, XFS_LOOKUP_GE, stat);
168}
169
170/*
171 * Lookup the first record less than or equal to [bno, len]
172 * in the btree given by cur.
173 */
1fe41a73 174int /* error */
b194c7d8
BN
175xfs_alloc_lookup_le(
176 struct xfs_btree_cur *cur, /* btree cursor */
177 xfs_agblock_t bno, /* starting block of extent */
178 xfs_extlen_t len, /* length of extent */
179 int *stat) /* success/failure */
180{
181 cur->bc_rec.a.ar_startblock = bno;
182 cur->bc_rec.a.ar_blockcount = len;
183 return xfs_btree_lookup(cur, XFS_LOOKUP_LE, stat);
184}
185
186/*
187 * Update the record referred to by cur to the value given
188 * by [bno, len].
189 * This either works (return 0) or gets an EFSCORRUPTED error.
190 */
191STATIC int /* error */
192xfs_alloc_update(
193 struct xfs_btree_cur *cur, /* btree cursor */
194 xfs_agblock_t bno, /* starting block of extent */
195 xfs_extlen_t len) /* length of extent */
196{
197 union xfs_btree_rec rec;
198
199 rec.alloc.ar_startblock = cpu_to_be32(bno);
200 rec.alloc.ar_blockcount = cpu_to_be32(len);
201 return xfs_btree_update(cur, &rec);
202}
203
204/*
205 * Get the data from the pointed-to record.
206 */
a2ceac1f 207int /* error */
b194c7d8
BN
208xfs_alloc_get_rec(
209 struct xfs_btree_cur *cur, /* btree cursor */
210 xfs_agblock_t *bno, /* output: starting block of extent */
211 xfs_extlen_t *len, /* output: length of extent */
212 int *stat) /* output: success/failure */
213{
ec291989
DC
214 struct xfs_mount *mp = cur->bc_mp;
215 xfs_agnumber_t agno = cur->bc_private.a.agno;
b194c7d8
BN
216 union xfs_btree_rec *rec;
217 int error;
218
219 error = xfs_btree_get_rec(cur, &rec, stat);
3741f971
DW
220 if (error || !(*stat))
221 return error;
3741f971
DW
222
223 *bno = be32_to_cpu(rec->alloc.ar_startblock);
224 *len = be32_to_cpu(rec->alloc.ar_blockcount);
225
c25e4305
CM
226 if (*len == 0)
227 goto out_bad_rec;
228
ec291989
DC
229 /* check for valid extent range, including overflow */
230 if (!xfs_verify_agbno(mp, agno, *bno))
231 goto out_bad_rec;
232 if (*bno > *bno + *len)
233 goto out_bad_rec;
234 if (!xfs_verify_agbno(mp, agno, *bno + *len - 1))
235 goto out_bad_rec;
236
237 return 0;
238
239out_bad_rec:
240 xfs_warn(mp,
241 "%s Freespace BTree record corruption in AG %d detected!",
242 cur->bc_btnum == XFS_BTNUM_BNO ? "Block" : "Size", agno);
243 xfs_warn(mp,
244 "start block 0x%x block count 0x%x", *bno, *len);
245 return -EFSCORRUPTED;
b194c7d8
BN
246}
247
2bd0ea18
NS
248/*
249 * Compute aligned version of the found extent.
250 * Takes alignment and min length into account.
251 */
cd80de04 252STATIC bool
2bd0ea18 253xfs_alloc_compute_aligned(
a2ceac1f 254 xfs_alloc_arg_t *args, /* allocation argument structure */
2bd0ea18
NS
255 xfs_agblock_t foundbno, /* starting block in found extent */
256 xfs_extlen_t foundlen, /* length in found extent */
2bd0ea18 257 xfs_agblock_t *resbno, /* result block number */
cd80de04
CH
258 xfs_extlen_t *reslen, /* result length */
259 unsigned *busy_gen)
2bd0ea18 260{
cd80de04
CH
261 xfs_agblock_t bno = foundbno;
262 xfs_extlen_t len = foundlen;
ff3263dd 263 xfs_extlen_t diff;
cd80de04 264 bool busy;
2bd0ea18 265
a2ceac1f 266 /* Trim busy sections out of found extent */
cd80de04 267 busy = xfs_extent_busy_trim(args, &bno, &len, busy_gen);
a2ceac1f 268
ff3263dd
BF
269 /*
270 * If we have a largish extent that happens to start before min_agbno,
271 * see if we can shift it into range...
272 */
273 if (bno < args->min_agbno && bno + len > args->min_agbno) {
274 diff = args->min_agbno - bno;
275 if (len > diff) {
276 bno += diff;
277 len -= diff;
278 }
279 }
280
a2ceac1f
DC
281 if (args->alignment > 1 && len >= args->minlen) {
282 xfs_agblock_t aligned_bno = roundup(bno, args->alignment);
ff3263dd
BF
283
284 diff = aligned_bno - bno;
a2ceac1f
DC
285
286 *resbno = aligned_bno;
287 *reslen = diff >= len ? 0 : len - diff;
2bd0ea18 288 } else {
a2ceac1f
DC
289 *resbno = bno;
290 *reslen = len;
2bd0ea18 291 }
cd80de04
CH
292
293 return busy;
2bd0ea18
NS
294}
295
296/*
297 * Compute best start block and diff for "near" allocations.
298 * freelen >= wantlen already checked by caller.
299 */
300STATIC xfs_extlen_t /* difference value (absolute) */
301xfs_alloc_compute_diff(
302 xfs_agblock_t wantbno, /* target starting block */
303 xfs_extlen_t wantlen, /* target length */
304 xfs_extlen_t alignment, /* target alignment */
1fccd5c8 305 int datatype, /* are we allocating data? */
2bd0ea18
NS
306 xfs_agblock_t freebno, /* freespace's starting block */
307 xfs_extlen_t freelen, /* freespace's length */
308 xfs_agblock_t *newbnop) /* result: best start block from free */
309{
310 xfs_agblock_t freeend; /* end of freespace extent */
311 xfs_agblock_t newbno1; /* return block number */
312 xfs_agblock_t newbno2; /* other new block number */
0e266570
NS
313 xfs_extlen_t newlen1=0; /* length with newbno1 */
314 xfs_extlen_t newlen2=0; /* length with newbno2 */
2bd0ea18 315 xfs_agblock_t wantend; /* end of target extent */
1fccd5c8 316 bool userdata = xfs_alloc_is_userdata(datatype);
2bd0ea18
NS
317
318 ASSERT(freelen >= wantlen);
319 freeend = freebno + freelen;
320 wantend = wantbno + wantlen;
84a62eea
DC
321 /*
322 * We want to allocate from the start of a free extent if it is past
323 * the desired block or if we are allocating user data and the free
324 * extent is before desired block. The second case is there to allow
325 * for contiguous allocation from the remaining free space if the file
326 * grows in the short term.
327 */
328 if (freebno >= wantbno || (userdata && freeend < wantend)) {
2bd0ea18
NS
329 if ((newbno1 = roundup(freebno, alignment)) >= freeend)
330 newbno1 = NULLAGBLOCK;
331 } else if (freeend >= wantend && alignment > 1) {
332 newbno1 = roundup(wantbno, alignment);
333 newbno2 = newbno1 - alignment;
334 if (newbno1 >= freeend)
335 newbno1 = NULLAGBLOCK;
336 else
337 newlen1 = XFS_EXTLEN_MIN(wantlen, freeend - newbno1);
338 if (newbno2 < freebno)
339 newbno2 = NULLAGBLOCK;
340 else
341 newlen2 = XFS_EXTLEN_MIN(wantlen, freeend - newbno2);
342 if (newbno1 != NULLAGBLOCK && newbno2 != NULLAGBLOCK) {
343 if (newlen1 < newlen2 ||
344 (newlen1 == newlen2 &&
345 XFS_ABSDIFF(newbno1, wantbno) >
346 XFS_ABSDIFF(newbno2, wantbno)))
347 newbno1 = newbno2;
348 } else if (newbno2 != NULLAGBLOCK)
349 newbno1 = newbno2;
350 } else if (freeend >= wantend) {
351 newbno1 = wantbno;
352 } else if (alignment > 1) {
353 newbno1 = roundup(freeend - wantlen, alignment);
354 if (newbno1 > freeend - wantlen &&
355 newbno1 - alignment >= freebno)
356 newbno1 -= alignment;
357 else if (newbno1 >= freeend)
358 newbno1 = NULLAGBLOCK;
359 } else
360 newbno1 = freeend - wantlen;
361 *newbnop = newbno1;
362 return newbno1 == NULLAGBLOCK ? 0 : XFS_ABSDIFF(newbno1, wantbno);
363}
364
365/*
366 * Fix up the length, based on mod and prod.
367 * len should be k * prod + mod for some k.
368 * If len is too small it is returned unchanged.
369 * If len hits maxlen it is left alone.
370 */
371STATIC void
372xfs_alloc_fix_len(
dfc130f3 373 xfs_alloc_arg_t *args) /* allocation argument structure */
2bd0ea18
NS
374{
375 xfs_extlen_t k;
376 xfs_extlen_t rlen;
377
378 ASSERT(args->mod < args->prod);
379 rlen = args->len;
380 ASSERT(rlen >= args->minlen);
381 ASSERT(rlen <= args->maxlen);
382 if (args->prod <= 1 || rlen < args->mod || rlen == args->maxlen ||
383 (args->mod == 0 && rlen < args->prod))
384 return;
385 k = rlen % args->prod;
386 if (k == args->mod)
387 return;
ff105f75
DC
388 if (k > args->mod)
389 rlen = rlen - (k - args->mod);
390 else
391 rlen = rlen - args->prod + (args->mod - k);
19ebedcf 392 /* casts to (int) catch length underflows */
ff105f75
DC
393 if ((int)rlen < (int)args->minlen)
394 return;
395 ASSERT(rlen >= args->minlen && rlen <= args->maxlen);
396 ASSERT(rlen % args->prod == args->mod);
2c003dc2
CH
397 ASSERT(args->pag->pagf_freeblks + args->pag->pagf_flcount >=
398 rlen + args->minleft);
2bd0ea18
NS
399 args->len = rlen;
400}
401
2bd0ea18
NS
402/*
403 * Update the two btrees, logically removing from freespace the extent
404 * starting at rbno, rlen blocks. The extent is contained within the
405 * actual (current) free extent fbno for flen blocks.
406 * Flags are passed in indicating whether the cursors are set to the
407 * relevant records.
408 */
409STATIC int /* error code */
410xfs_alloc_fixup_trees(
dfc130f3
RC
411 xfs_btree_cur_t *cnt_cur, /* cursor for by-size btree */
412 xfs_btree_cur_t *bno_cur, /* cursor for by-block btree */
2bd0ea18
NS
413 xfs_agblock_t fbno, /* starting block of free extent */
414 xfs_extlen_t flen, /* length of free extent */
415 xfs_agblock_t rbno, /* starting block of returned extent */
416 xfs_extlen_t rlen, /* length of returned extent */
417 int flags) /* flags, XFSA_FIXUP_... */
418{
419 int error; /* error code */
420 int i; /* operation results */
421 xfs_agblock_t nfbno1; /* first new free startblock */
422 xfs_agblock_t nfbno2; /* second new free startblock */
0e266570
NS
423 xfs_extlen_t nflen1=0; /* first new free length */
424 xfs_extlen_t nflen2=0; /* second new free length */
19ebedcf
DC
425 struct xfs_mount *mp;
426
427 mp = cnt_cur->bc_mp;
2bd0ea18
NS
428
429 /*
430 * Look up the record in the by-size tree if necessary.
431 */
432 if (flags & XFSA_FIXUP_CNT_OK) {
433#ifdef DEBUG
0e266570 434 if ((error = xfs_alloc_get_rec(cnt_cur, &nfbno1, &nflen1, &i)))
2bd0ea18 435 return error;
19ebedcf 436 XFS_WANT_CORRUPTED_RETURN(mp,
2bd0ea18
NS
437 i == 1 && nfbno1 == fbno && nflen1 == flen);
438#endif
439 } else {
0e266570 440 if ((error = xfs_alloc_lookup_eq(cnt_cur, fbno, flen, &i)))
2bd0ea18 441 return error;
19ebedcf 442 XFS_WANT_CORRUPTED_RETURN(mp, i == 1);
2bd0ea18
NS
443 }
444 /*
445 * Look up the record in the by-block tree if necessary.
446 */
447 if (flags & XFSA_FIXUP_BNO_OK) {
448#ifdef DEBUG
0e266570 449 if ((error = xfs_alloc_get_rec(bno_cur, &nfbno1, &nflen1, &i)))
2bd0ea18 450 return error;
19ebedcf 451 XFS_WANT_CORRUPTED_RETURN(mp,
2bd0ea18
NS
452 i == 1 && nfbno1 == fbno && nflen1 == flen);
453#endif
454 } else {
0e266570 455 if ((error = xfs_alloc_lookup_eq(bno_cur, fbno, flen, &i)))
2bd0ea18 456 return error;
19ebedcf 457 XFS_WANT_CORRUPTED_RETURN(mp, i == 1);
2bd0ea18 458 }
b3563c19 459
2bd0ea18 460#ifdef DEBUG
b3563c19
BN
461 if (bno_cur->bc_nlevels == 1 && cnt_cur->bc_nlevels == 1) {
462 struct xfs_btree_block *bnoblock;
463 struct xfs_btree_block *cntblock;
464
465 bnoblock = XFS_BUF_TO_BLOCK(bno_cur->bc_bufs[0]);
466 cntblock = XFS_BUF_TO_BLOCK(cnt_cur->bc_bufs[0]);
2bd0ea18 467
19ebedcf 468 XFS_WANT_CORRUPTED_RETURN(mp,
b3563c19 469 bnoblock->bb_numrecs == cntblock->bb_numrecs);
2bd0ea18
NS
470 }
471#endif
b3563c19 472
2bd0ea18
NS
473 /*
474 * Deal with all four cases: the allocated record is contained
475 * within the freespace record, so we can have new freespace
476 * at either (or both) end, or no freespace remaining.
477 */
478 if (rbno == fbno && rlen == flen)
479 nfbno1 = nfbno2 = NULLAGBLOCK;
480 else if (rbno == fbno) {
481 nfbno1 = rbno + rlen;
482 nflen1 = flen - rlen;
483 nfbno2 = NULLAGBLOCK;
484 } else if (rbno + rlen == fbno + flen) {
485 nfbno1 = fbno;
486 nflen1 = flen - rlen;
487 nfbno2 = NULLAGBLOCK;
488 } else {
489 nfbno1 = fbno;
490 nflen1 = rbno - fbno;
491 nfbno2 = rbno + rlen;
492 nflen2 = (fbno + flen) - nfbno2;
493 }
494 /*
495 * Delete the entry from the by-size btree.
496 */
b194c7d8 497 if ((error = xfs_btree_delete(cnt_cur, &i)))
2bd0ea18 498 return error;
19ebedcf 499 XFS_WANT_CORRUPTED_RETURN(mp, i == 1);
2bd0ea18
NS
500 /*
501 * Add new by-size btree entry(s).
502 */
503 if (nfbno1 != NULLAGBLOCK) {
0e266570 504 if ((error = xfs_alloc_lookup_eq(cnt_cur, nfbno1, nflen1, &i)))
2bd0ea18 505 return error;
19ebedcf 506 XFS_WANT_CORRUPTED_RETURN(mp, i == 0);
b194c7d8 507 if ((error = xfs_btree_insert(cnt_cur, &i)))
2bd0ea18 508 return error;
19ebedcf 509 XFS_WANT_CORRUPTED_RETURN(mp, i == 1);
2bd0ea18
NS
510 }
511 if (nfbno2 != NULLAGBLOCK) {
0e266570 512 if ((error = xfs_alloc_lookup_eq(cnt_cur, nfbno2, nflen2, &i)))
2bd0ea18 513 return error;
19ebedcf 514 XFS_WANT_CORRUPTED_RETURN(mp, i == 0);
b194c7d8 515 if ((error = xfs_btree_insert(cnt_cur, &i)))
2bd0ea18 516 return error;
19ebedcf 517 XFS_WANT_CORRUPTED_RETURN(mp, i == 1);
2bd0ea18
NS
518 }
519 /*
520 * Fix up the by-block btree entry(s).
521 */
522 if (nfbno1 == NULLAGBLOCK) {
523 /*
524 * No remaining freespace, just delete the by-block tree entry.
525 */
b194c7d8 526 if ((error = xfs_btree_delete(bno_cur, &i)))
2bd0ea18 527 return error;
19ebedcf 528 XFS_WANT_CORRUPTED_RETURN(mp, i == 1);
2bd0ea18
NS
529 } else {
530 /*
531 * Update the by-block entry to start later|be shorter.
532 */
0e266570 533 if ((error = xfs_alloc_update(bno_cur, nfbno1, nflen1)))
2bd0ea18
NS
534 return error;
535 }
536 if (nfbno2 != NULLAGBLOCK) {
537 /*
538 * 2 resulting free entries, need to add one.
539 */
0e266570 540 if ((error = xfs_alloc_lookup_eq(bno_cur, nfbno2, nflen2, &i)))
2bd0ea18 541 return error;
19ebedcf 542 XFS_WANT_CORRUPTED_RETURN(mp, i == 0);
b194c7d8 543 if ((error = xfs_btree_insert(bno_cur, &i)))
2bd0ea18 544 return error;
19ebedcf 545 XFS_WANT_CORRUPTED_RETURN(mp, i == 1);
2bd0ea18
NS
546 }
547 return 0;
548}
549
bc01119d 550static xfs_failaddr_t
a2ceac1f
DC
551xfs_agfl_verify(
552 struct xfs_buf *bp)
553{
a2ceac1f
DC
554 struct xfs_mount *mp = bp->b_target->bt_mount;
555 struct xfs_agfl *agfl = XFS_BUF_TO_AGFL(bp);
a2ceac1f
DC
556 int i;
557
95d9582b
DW
558 /*
559 * There is no verification of non-crc AGFLs because mkfs does not
560 * initialise the AGFL to zero or NULL. Hence the only valid part of the
561 * AGFL is what the AGF says is active. We can't get to the AGF, so we
562 * can't verify just those entries are valid.
563 */
564 if (!xfs_sb_version_hascrc(&mp->m_sb))
565 return NULL;
566
9c4e12fb 567 if (!uuid_equal(&agfl->agfl_uuid, &mp->m_sb.sb_meta_uuid))
bc01119d 568 return __this_address;
dd5b876e 569 if (be32_to_cpu(agfl->agfl_magicnum) != XFS_AGFL_MAGIC)
bc01119d 570 return __this_address;
dd5b876e
DC
571 /*
572 * during growfs operations, the perag is not fully initialised,
573 * so we can't use it for any useful checking. growfs ensures we can't
574 * use it by using uncached buffers that don't have the perag attached
575 * so we can detect and avoid this problem.
576 */
577 if (bp->b_pag && be32_to_cpu(agfl->agfl_seqno) != bp->b_pag->pag_agno)
bc01119d 578 return __this_address;
dd5b876e 579
b8165508 580 for (i = 0; i < xfs_agfl_size(mp); i++) {
dd5b876e 581 if (be32_to_cpu(agfl->agfl_bno[i]) != NULLAGBLOCK &&
a2ceac1f 582 be32_to_cpu(agfl->agfl_bno[i]) >= mp->m_sb.sb_agblocks)
bc01119d 583 return __this_address;
a2ceac1f 584 }
a65d8d29 585
bc01119d
DW
586 if (!xfs_log_check_lsn(mp, be64_to_cpu(XFS_BUF_TO_AGFL(bp)->agfl_lsn)))
587 return __this_address;
588 return NULL;
dd5b876e
DC
589}
590
591static void
592xfs_agfl_read_verify(
593 struct xfs_buf *bp)
594{
595 struct xfs_mount *mp = bp->b_target->bt_mount;
1e697959 596 xfs_failaddr_t fa;
dd5b876e
DC
597
598 /*
599 * There is no verification of non-crc AGFLs because mkfs does not
600 * initialise the AGFL to zero or NULL. Hence the only valid part of the
601 * AGFL is what the AGF says is active. We can't get to the AGF, so we
602 * can't verify just those entries are valid.
603 */
604 if (!xfs_sb_version_hascrc(&mp->m_sb))
605 return;
606
45922933 607 if (!xfs_buf_verify_cksum(bp, XFS_AGFL_CRC_OFF))
1e697959
DW
608 xfs_verifier_error(bp, -EFSBADCRC, __this_address);
609 else {
610 fa = xfs_agfl_verify(bp);
611 if (fa)
612 xfs_verifier_error(bp, -EFSCORRUPTED, fa);
613 }
a2ceac1f
DC
614}
615
616static void
617xfs_agfl_write_verify(
618 struct xfs_buf *bp)
619{
37d086ca
CM
620 struct xfs_mount *mp = bp->b_target->bt_mount;
621 struct xfs_buf_log_item *bip = bp->b_log_item;
1e697959 622 xfs_failaddr_t fa;
a2ceac1f 623
dd5b876e
DC
624 /* no verification of non-crc AGFLs */
625 if (!xfs_sb_version_hascrc(&mp->m_sb))
626 return;
627
1e697959
DW
628 fa = xfs_agfl_verify(bp);
629 if (fa) {
630 xfs_verifier_error(bp, -EFSCORRUPTED, fa);
dd5b876e
DC
631 return;
632 }
633
634 if (bip)
635 XFS_BUF_TO_AGFL(bp)->agfl_lsn = cpu_to_be64(bip->bli_item.li_lsn);
636
43b5aeed 637 xfs_buf_update_cksum(bp, XFS_AGFL_CRC_OFF);
a2ceac1f
DC
638}
639
640const struct xfs_buf_ops xfs_agfl_buf_ops = {
a3fac935 641 .name = "xfs_agfl",
a2ceac1f
DC
642 .verify_read = xfs_agfl_read_verify,
643 .verify_write = xfs_agfl_write_verify,
95d9582b 644 .verify_struct = xfs_agfl_verify,
a2ceac1f
DC
645};
646
2bd0ea18
NS
647/*
648 * Read in the allocation group free block array.
649 */
50bb67d6 650int /* error */
2bd0ea18
NS
651xfs_alloc_read_agfl(
652 xfs_mount_t *mp, /* mount point structure */
653 xfs_trans_t *tp, /* transaction pointer */
654 xfs_agnumber_t agno, /* allocation group number */
655 xfs_buf_t **bpp) /* buffer for the ag free block array */
656{
657 xfs_buf_t *bp; /* return value */
2bd0ea18
NS
658 int error;
659
660 ASSERT(agno != NULLAGNUMBER);
9440d84d
NS
661 error = xfs_trans_read_buf(
662 mp, tp, mp->m_ddev_targp,
663 XFS_AG_DADDR(mp, agno, XFS_AGFL_DADDR(mp)),
a2ceac1f 664 XFS_FSS_TO_BB(mp, 1), 0, &bp, &xfs_agfl_buf_ops);
9440d84d 665 if (error)
2bd0ea18 666 return error;
a2ceac1f 667 xfs_buf_set_ref(bp, XFS_AGFL_REF);
2bd0ea18
NS
668 *bpp = bp;
669 return 0;
670}
671
a2ceac1f
DC
672STATIC int
673xfs_alloc_update_counters(
674 struct xfs_trans *tp,
675 struct xfs_perag *pag,
676 struct xfs_buf *agbp,
677 long len)
678{
679 struct xfs_agf *agf = XFS_BUF_TO_AGF(agbp);
680
681 pag->pagf_freeblks += len;
682 be32_add_cpu(&agf->agf_freeblks, len);
683
684 xfs_trans_agblocks_delta(tp, len);
685 if (unlikely(be32_to_cpu(agf->agf_freeblks) >
686 be32_to_cpu(agf->agf_length)))
12b53197 687 return -EFSCORRUPTED;
a2ceac1f
DC
688
689 xfs_alloc_log_agf(tp, agbp, XFS_AGF_FREEBLKS);
690 return 0;
691}
692
2bd0ea18
NS
693/*
694 * Allocation group level functions.
695 */
696
697/*
698 * Allocate a variable extent in the allocation group agno.
699 * Type and bno are used to determine where in the allocation group the
700 * extent will start.
701 * Extent's length (returned in *len) will be between minlen and maxlen,
702 * and of the form k * prod + mod unless there's nothing that large.
703 * Return the starting a.g. block, or NULLAGBLOCK if we can't do it.
704 */
705STATIC int /* error */
706xfs_alloc_ag_vextent(
dfc130f3 707 xfs_alloc_arg_t *args) /* argument structure for allocation */
2bd0ea18 708{
0e266570 709 int error=0;
2bd0ea18
NS
710
711 ASSERT(args->minlen > 0);
712 ASSERT(args->maxlen > 0);
713 ASSERT(args->minlen <= args->maxlen);
714 ASSERT(args->mod < args->prod);
715 ASSERT(args->alignment > 0);
cf8ce220 716
2bd0ea18
NS
717 /*
718 * Branch to correct routine based on the type.
719 */
720 args->wasfromfl = 0;
721 switch (args->type) {
722 case XFS_ALLOCTYPE_THIS_AG:
723 error = xfs_alloc_ag_vextent_size(args);
724 break;
725 case XFS_ALLOCTYPE_NEAR_BNO:
726 error = xfs_alloc_ag_vextent_near(args);
727 break;
728 case XFS_ALLOCTYPE_THIS_BNO:
729 error = xfs_alloc_ag_vextent_exact(args);
730 break;
731 default:
732 ASSERT(0);
733 /* NOTREACHED */
734 }
a2ceac1f
DC
735
736 if (error || args->agbno == NULLAGBLOCK)
2bd0ea18 737 return error;
2bd0ea18 738
a2ceac1f
DC
739 ASSERT(args->len >= args->minlen);
740 ASSERT(args->len <= args->maxlen);
9760cac2 741 ASSERT(!args->wasfromfl || args->resv != XFS_AG_RESV_AGFL);
a2ceac1f
DC
742 ASSERT(args->agbno % args->alignment == 0);
743
631ac87a 744 /* if not file data, insert new block into the reverse map btree */
3ee858aa 745 if (!xfs_rmap_should_skip_owner_update(&args->oinfo)) {
631ac87a
DW
746 error = xfs_rmap_alloc(args->tp, args->agbp, args->agno,
747 args->agbno, args->len, &args->oinfo);
748 if (error)
749 return error;
750 }
751
a2ceac1f
DC
752 if (!args->wasfromfl) {
753 error = xfs_alloc_update_counters(args->tp, args->pag,
754 args->agbp,
755 -((long)(args->len)));
756 if (error)
757 return error;
758
759 ASSERT(!xfs_extent_busy_search(args->mp, args->agno,
760 args->agbno, args->len));
2bd0ea18 761 }
a2ceac1f 762
cf8ce220 763 xfs_ag_resv_alloc_extent(args->pag, args->resv, args);
a2ceac1f 764
79896434
BD
765 XFS_STATS_INC(args->mp, xs_allocx);
766 XFS_STATS_ADD(args->mp, xs_allocb, args->len);
a2ceac1f 767 return error;
2bd0ea18
NS
768}
769
770/*
771 * Allocate a variable extent at exactly agno/bno.
772 * Extent's length (returned in *len) will be between minlen and maxlen,
773 * and of the form k * prod + mod unless there's nothing that large.
774 * Return the starting a.g. block (bno), or NULLAGBLOCK if we can't do it.
775 */
776STATIC int /* error */
777xfs_alloc_ag_vextent_exact(
dfc130f3 778 xfs_alloc_arg_t *args) /* allocation argument structure */
2bd0ea18 779{
dfc130f3
RC
780 xfs_btree_cur_t *bno_cur;/* by block-number btree cursor */
781 xfs_btree_cur_t *cnt_cur;/* by count btree cursor */
2bd0ea18
NS
782 int error;
783 xfs_agblock_t fbno; /* start block of found extent */
2bd0ea18 784 xfs_extlen_t flen; /* length of found extent */
cd80de04
CH
785 xfs_agblock_t tbno; /* start block of busy extent */
786 xfs_extlen_t tlen; /* length of busy extent */
787 xfs_agblock_t tend; /* end block of busy extent */
2bd0ea18 788 int i; /* success/failure of operation */
cd80de04 789 unsigned busy_gen;
2bd0ea18
NS
790
791 ASSERT(args->alignment == 1);
a2ceac1f 792
2bd0ea18
NS
793 /*
794 * Allocate/initialize a cursor for the by-number freespace btree.
795 */
b194c7d8 796 bno_cur = xfs_allocbt_init_cursor(args->mp, args->tp, args->agbp,
56b2de80
DC
797 args->agno, XFS_BTNUM_BNO);
798
2bd0ea18
NS
799 /*
800 * Lookup bno and minlen in the btree (minlen is irrelevant, really).
801 * Look for the closest free block <= bno, it must contain bno
802 * if any free block does.
803 */
56b2de80
DC
804 error = xfs_alloc_lookup_le(bno_cur, args->agbno, args->minlen, &i);
805 if (error)
2bd0ea18 806 goto error0;
56b2de80
DC
807 if (!i)
808 goto not_found;
809
2bd0ea18
NS
810 /*
811 * Grab the freespace record.
812 */
56b2de80
DC
813 error = xfs_alloc_get_rec(bno_cur, &fbno, &flen, &i);
814 if (error)
2bd0ea18 815 goto error0;
19ebedcf 816 XFS_WANT_CORRUPTED_GOTO(args->mp, i == 1, error0);
2bd0ea18 817 ASSERT(fbno <= args->agbno);
56b2de80 818
5000d01d 819 /*
a2ceac1f
DC
820 * Check for overlapping busy extents.
821 */
cd80de04
CH
822 tbno = fbno;
823 tlen = flen;
824 xfs_extent_busy_trim(args, &tbno, &tlen, &busy_gen);
a2ceac1f
DC
825
826 /*
827 * Give up if the start of the extent is busy, or the freespace isn't
828 * long enough for the minimum request.
2bd0ea18 829 */
a2ceac1f
DC
830 if (tbno > args->agbno)
831 goto not_found;
832 if (tlen < args->minlen)
833 goto not_found;
834 tend = tbno + tlen;
835 if (tend < args->agbno + args->minlen)
56b2de80
DC
836 goto not_found;
837
2bd0ea18
NS
838 /*
839 * End of extent will be smaller of the freespace end and the
840 * maximal requested end.
56b2de80 841 *
2bd0ea18
NS
842 * Fix the length according to mod and prod if given.
843 */
a2ceac1f
DC
844 args->len = XFS_AGBLOCK_MIN(tend, args->agbno + args->maxlen)
845 - args->agbno;
2bd0ea18 846 xfs_alloc_fix_len(args);
a2ceac1f 847 ASSERT(args->agbno + args->len <= tend);
56b2de80 848
2bd0ea18 849 /*
a2ceac1f 850 * We are allocating agbno for args->len
2bd0ea18
NS
851 * Allocate/initialize a cursor for the by-size btree.
852 */
b194c7d8
BN
853 cnt_cur = xfs_allocbt_init_cursor(args->mp, args->tp, args->agbp,
854 args->agno, XFS_BTNUM_CNT);
2bd0ea18 855 ASSERT(args->agbno + args->len <=
6e3140c7 856 be32_to_cpu(XFS_BUF_TO_AGF(args->agbp)->agf_length));
56b2de80
DC
857 error = xfs_alloc_fixup_trees(cnt_cur, bno_cur, fbno, flen, args->agbno,
858 args->len, XFSA_FIXUP_BNO_OK);
859 if (error) {
2bd0ea18
NS
860 xfs_btree_del_cursor(cnt_cur, XFS_BTREE_ERROR);
861 goto error0;
862 }
a2ceac1f 863
2bd0ea18
NS
864 xfs_btree_del_cursor(bno_cur, XFS_BTREE_NOERROR);
865 xfs_btree_del_cursor(cnt_cur, XFS_BTREE_NOERROR);
a2ceac1f 866
2bd0ea18 867 args->wasfromfl = 0;
56b2de80
DC
868 trace_xfs_alloc_exact_done(args);
869 return 0;
870
871not_found:
872 /* Didn't find it, return null. */
873 xfs_btree_del_cursor(bno_cur, XFS_BTREE_NOERROR);
874 args->agbno = NULLAGBLOCK;
875 trace_xfs_alloc_exact_notfound(args);
2bd0ea18
NS
876 return 0;
877
878error0:
879 xfs_btree_del_cursor(bno_cur, XFS_BTREE_ERROR);
56b2de80
DC
880 trace_xfs_alloc_exact_error(args);
881 return error;
882}
883
884/*
885 * Search the btree in a given direction via the search cursor and compare
886 * the records found against the good extent we've already found.
887 */
888STATIC int
889xfs_alloc_find_best_extent(
890 struct xfs_alloc_arg *args, /* allocation argument structure */
891 struct xfs_btree_cur **gcur, /* good cursor */
892 struct xfs_btree_cur **scur, /* searching cursor */
893 xfs_agblock_t gdiff, /* difference for search comparison */
894 xfs_agblock_t *sbno, /* extent found by search */
a2ceac1f
DC
895 xfs_extlen_t *slen, /* extent length */
896 xfs_agblock_t *sbnoa, /* aligned extent found by search */
897 xfs_extlen_t *slena, /* aligned extent length */
56b2de80
DC
898 int dir) /* 0 = search right, 1 = search left */
899{
56b2de80
DC
900 xfs_agblock_t new;
901 xfs_agblock_t sdiff;
902 int error;
903 int i;
cd80de04 904 unsigned busy_gen;
56b2de80
DC
905
906 /* The good extent is perfect, no need to search. */
907 if (!gdiff)
908 goto out_use_good;
909
910 /*
911 * Look until we find a better one, run out of space or run off the end.
912 */
913 do {
914 error = xfs_alloc_get_rec(*scur, sbno, slen, &i);
915 if (error)
916 goto error0;
19ebedcf 917 XFS_WANT_CORRUPTED_GOTO(args->mp, i == 1, error0);
cd80de04
CH
918 xfs_alloc_compute_aligned(args, *sbno, *slen,
919 sbnoa, slena, &busy_gen);
56b2de80
DC
920
921 /*
922 * The good extent is closer than this one.
923 */
924 if (!dir) {
ff3263dd
BF
925 if (*sbnoa > args->max_agbno)
926 goto out_use_good;
a2ceac1f 927 if (*sbnoa >= args->agbno + gdiff)
56b2de80
DC
928 goto out_use_good;
929 } else {
ff3263dd
BF
930 if (*sbnoa < args->min_agbno)
931 goto out_use_good;
a2ceac1f 932 if (*sbnoa <= args->agbno - gdiff)
56b2de80
DC
933 goto out_use_good;
934 }
935
936 /*
937 * Same distance, compare length and pick the best.
938 */
939 if (*slena >= args->minlen) {
940 args->len = XFS_EXTLEN_MIN(*slena, args->maxlen);
941 xfs_alloc_fix_len(args);
942
943 sdiff = xfs_alloc_compute_diff(args->agbno, args->len,
84a62eea 944 args->alignment,
1fccd5c8 945 args->datatype, *sbnoa,
a2ceac1f 946 *slena, &new);
56b2de80
DC
947
948 /*
949 * Choose closer size and invalidate other cursor.
950 */
951 if (sdiff < gdiff)
952 goto out_use_search;
953 goto out_use_good;
954 }
955
956 if (!dir)
957 error = xfs_btree_increment(*scur, 0, &i);
958 else
959 error = xfs_btree_decrement(*scur, 0, &i);
960 if (error)
961 goto error0;
962 } while (i);
963
964out_use_good:
965 xfs_btree_del_cursor(*scur, XFS_BTREE_NOERROR);
966 *scur = NULL;
967 return 0;
968
969out_use_search:
970 xfs_btree_del_cursor(*gcur, XFS_BTREE_NOERROR);
971 *gcur = NULL;
972 return 0;
973
974error0:
975 /* caller invalidates cursors */
2bd0ea18
NS
976 return error;
977}
978
979/*
980 * Allocate a variable extent near bno in the allocation group agno.
981 * Extent's length (returned in len) will be between minlen and maxlen,
982 * and of the form k * prod + mod unless there's nothing that large.
983 * Return the starting a.g. block, or NULLAGBLOCK if we can't do it.
984 */
985STATIC int /* error */
986xfs_alloc_ag_vextent_near(
dfc130f3 987 xfs_alloc_arg_t *args) /* allocation argument structure */
2bd0ea18 988{
dfc130f3
RC
989 xfs_btree_cur_t *bno_cur_gt; /* cursor for bno btree, right side */
990 xfs_btree_cur_t *bno_cur_lt; /* cursor for bno btree, left side */
991 xfs_btree_cur_t *cnt_cur; /* cursor for count btree */
2bd0ea18
NS
992 xfs_agblock_t gtbno; /* start bno of right side entry */
993 xfs_agblock_t gtbnoa; /* aligned ... */
994 xfs_extlen_t gtdiff; /* difference to right side entry */
995 xfs_extlen_t gtlen; /* length of right side entry */
a2ceac1f 996 xfs_extlen_t gtlena; /* aligned ... */
2bd0ea18
NS
997 xfs_agblock_t gtnew; /* useful start bno of right side */
998 int error; /* error code */
999 int i; /* result code, temporary */
1000 int j; /* result code, temporary */
1001 xfs_agblock_t ltbno; /* start bno of left side entry */
1002 xfs_agblock_t ltbnoa; /* aligned ... */
1003 xfs_extlen_t ltdiff; /* difference to left side entry */
2bd0ea18 1004 xfs_extlen_t ltlen; /* length of left side entry */
a2ceac1f 1005 xfs_extlen_t ltlena; /* aligned ... */
2bd0ea18
NS
1006 xfs_agblock_t ltnew; /* useful start bno of left side */
1007 xfs_extlen_t rlen; /* length of returned extent */
cd80de04
CH
1008 bool busy;
1009 unsigned busy_gen;
6beba453 1010#ifdef DEBUG
2bd0ea18
NS
1011 /*
1012 * Randomly don't execute the first algorithm.
1013 */
2bd0ea18 1014 int dofirst; /* set to do first algorithm */
2bd0ea18 1015
49f693fa 1016 dofirst = prandom_u32() & 1;
2bd0ea18 1017#endif
a2ceac1f 1018
ff3263dd
BF
1019 /* handle unitialized agbno range so caller doesn't have to */
1020 if (!args->min_agbno && !args->max_agbno)
1021 args->max_agbno = args->mp->m_sb.sb_agblocks - 1;
1022 ASSERT(args->min_agbno <= args->max_agbno);
1023
1024 /* clamp agbno to the range if it's outside */
1025 if (args->agbno < args->min_agbno)
1026 args->agbno = args->min_agbno;
1027 if (args->agbno > args->max_agbno)
1028 args->agbno = args->max_agbno;
1029
a2ceac1f
DC
1030restart:
1031 bno_cur_lt = NULL;
1032 bno_cur_gt = NULL;
1033 ltlen = 0;
1034 gtlena = 0;
1035 ltlena = 0;
cd80de04 1036 busy = false;
a2ceac1f 1037
2bd0ea18
NS
1038 /*
1039 * Get a cursor for the by-size btree.
1040 */
b194c7d8
BN
1041 cnt_cur = xfs_allocbt_init_cursor(args->mp, args->tp, args->agbp,
1042 args->agno, XFS_BTNUM_CNT);
a2ceac1f 1043
2bd0ea18
NS
1044 /*
1045 * See if there are any free extents as big as maxlen.
1046 */
0e266570 1047 if ((error = xfs_alloc_lookup_ge(cnt_cur, 0, args->maxlen, &i)))
2bd0ea18
NS
1048 goto error0;
1049 /*
1050 * If none, then pick up the last entry in the tree unless the
1051 * tree is empty.
5000d01d 1052 */
2bd0ea18 1053 if (!i) {
0e266570
NS
1054 if ((error = xfs_alloc_ag_vextent_small(args, cnt_cur, &ltbno,
1055 &ltlen, &i)))
2bd0ea18
NS
1056 goto error0;
1057 if (i == 0 || ltlen == 0) {
1058 xfs_btree_del_cursor(cnt_cur, XFS_BTREE_NOERROR);
a2ceac1f 1059 trace_xfs_alloc_near_noentry(args);
2bd0ea18
NS
1060 return 0;
1061 }
1062 ASSERT(i == 1);
1063 }
1064 args->wasfromfl = 0;
a2ceac1f 1065
5000d01d 1066 /*
2bd0ea18
NS
1067 * First algorithm.
1068 * If the requested extent is large wrt the freespaces available
1069 * in this a.g., then the cursor will be pointing to a btree entry
1070 * near the right edge of the tree. If it's in the last btree leaf
1071 * block, then we just examine all the entries in that block
1072 * that are big enough, and pick the best one.
1073 * This is written as a while loop so we can break out of it,
1074 * but we never loop back to the top.
1075 */
1076 while (xfs_btree_islastblock(cnt_cur, 0)) {
1077 xfs_extlen_t bdiff;
0e266570
NS
1078 int besti=0;
1079 xfs_extlen_t blen=0;
1080 xfs_agblock_t bnew=0;
2bd0ea18 1081
6beba453
DC
1082#ifdef DEBUG
1083 if (dofirst)
2bd0ea18
NS
1084 break;
1085#endif
1086 /*
1087 * Start from the entry that lookup found, sequence through
1088 * all larger free blocks. If we're actually pointing at a
1089 * record smaller than maxlen, go to the start of this block,
1090 * and skip all those smaller than minlen.
1091 */
1092 if (ltlen || args->alignment > 1) {
1093 cnt_cur->bc_ptrs[0] = 1;
1094 do {
0e266570
NS
1095 if ((error = xfs_alloc_get_rec(cnt_cur, &ltbno,
1096 &ltlen, &i)))
2bd0ea18 1097 goto error0;
19ebedcf 1098 XFS_WANT_CORRUPTED_GOTO(args->mp, i == 1, error0);
2bd0ea18
NS
1099 if (ltlen >= args->minlen)
1100 break;
b194c7d8 1101 if ((error = xfs_btree_increment(cnt_cur, 0, &i)))
2bd0ea18
NS
1102 goto error0;
1103 } while (i);
1104 ASSERT(ltlen >= args->minlen);
1105 if (!i)
1106 break;
1107 }
1108 i = cnt_cur->bc_ptrs[0];
1109 for (j = 1, blen = 0, bdiff = 0;
1110 !error && j && (blen < args->maxlen || bdiff > 0);
b194c7d8 1111 error = xfs_btree_increment(cnt_cur, 0, &j)) {
2bd0ea18
NS
1112 /*
1113 * For each entry, decide if it's better than
1114 * the previous best entry.
1115 */
0e266570 1116 if ((error = xfs_alloc_get_rec(cnt_cur, &ltbno, &ltlen, &i)))
2bd0ea18 1117 goto error0;
19ebedcf 1118 XFS_WANT_CORRUPTED_GOTO(args->mp, i == 1, error0);
cd80de04
CH
1119 busy = xfs_alloc_compute_aligned(args, ltbno, ltlen,
1120 &ltbnoa, &ltlena, &busy_gen);
5e656dbb 1121 if (ltlena < args->minlen)
2bd0ea18 1122 continue;
ff3263dd
BF
1123 if (ltbnoa < args->min_agbno || ltbnoa > args->max_agbno)
1124 continue;
2bd0ea18
NS
1125 args->len = XFS_EXTLEN_MIN(ltlena, args->maxlen);
1126 xfs_alloc_fix_len(args);
1127 ASSERT(args->len >= args->minlen);
1128 if (args->len < blen)
1129 continue;
1130 ltdiff = xfs_alloc_compute_diff(args->agbno, args->len,
1fccd5c8 1131 args->alignment, args->datatype, ltbnoa,
84a62eea 1132 ltlena, &ltnew);
2bd0ea18
NS
1133 if (ltnew != NULLAGBLOCK &&
1134 (args->len > blen || ltdiff < bdiff)) {
1135 bdiff = ltdiff;
1136 bnew = ltnew;
1137 blen = args->len;
1138 besti = cnt_cur->bc_ptrs[0];
1139 }
1140 }
1141 /*
1142 * It didn't work. We COULD be in a case where
1143 * there's a good record somewhere, so try again.
1144 */
1145 if (blen == 0)
1146 break;
1147 /*
1148 * Point at the best entry, and retrieve it again.
1149 */
1150 cnt_cur->bc_ptrs[0] = besti;
0e266570 1151 if ((error = xfs_alloc_get_rec(cnt_cur, &ltbno, &ltlen, &i)))
2bd0ea18 1152 goto error0;
19ebedcf 1153 XFS_WANT_CORRUPTED_GOTO(args->mp, i == 1, error0);
56b2de80 1154 ASSERT(ltbno + ltlen <= be32_to_cpu(XFS_BUF_TO_AGF(args->agbp)->agf_length));
2bd0ea18 1155 args->len = blen;
2c003dc2 1156
2bd0ea18
NS
1157 /*
1158 * We are allocating starting at bnew for blen blocks.
1159 */
1160 args->agbno = bnew;
1161 ASSERT(bnew >= ltbno);
56b2de80 1162 ASSERT(bnew + blen <= ltbno + ltlen);
2bd0ea18
NS
1163 /*
1164 * Set up a cursor for the by-bno tree.
1165 */
b194c7d8
BN
1166 bno_cur_lt = xfs_allocbt_init_cursor(args->mp, args->tp,
1167 args->agbp, args->agno, XFS_BTNUM_BNO);
2bd0ea18
NS
1168 /*
1169 * Fix up the btree entries.
1170 */
0e266570
NS
1171 if ((error = xfs_alloc_fixup_trees(cnt_cur, bno_cur_lt, ltbno,
1172 ltlen, bnew, blen, XFSA_FIXUP_CNT_OK)))
2bd0ea18
NS
1173 goto error0;
1174 xfs_btree_del_cursor(cnt_cur, XFS_BTREE_NOERROR);
1175 xfs_btree_del_cursor(bno_cur_lt, XFS_BTREE_NOERROR);
56b2de80
DC
1176
1177 trace_xfs_alloc_near_first(args);
2bd0ea18
NS
1178 return 0;
1179 }
1180 /*
1181 * Second algorithm.
1182 * Search in the by-bno tree to the left and to the right
1183 * simultaneously, until in each case we find a space big enough,
1184 * or run into the edge of the tree. When we run into the edge,
1185 * we deallocate that cursor.
1186 * If both searches succeed, we compare the two spaces and pick
1187 * the better one.
1188 * With alignment, it's possible for both to fail; the upper
1189 * level algorithm that picks allocation groups for allocations
1190 * is not supposed to do this.
1191 */
1192 /*
1193 * Allocate and initialize the cursor for the leftward search.
1194 */
b194c7d8
BN
1195 bno_cur_lt = xfs_allocbt_init_cursor(args->mp, args->tp, args->agbp,
1196 args->agno, XFS_BTNUM_BNO);
2bd0ea18
NS
1197 /*
1198 * Lookup <= bno to find the leftward search's starting point.
1199 */
0e266570 1200 if ((error = xfs_alloc_lookup_le(bno_cur_lt, args->agbno, args->maxlen, &i)))
2bd0ea18
NS
1201 goto error0;
1202 if (!i) {
1203 /*
1204 * Didn't find anything; use this cursor for the rightward
1205 * search.
1206 */
1207 bno_cur_gt = bno_cur_lt;
062998e3 1208 bno_cur_lt = NULL;
2bd0ea18
NS
1209 }
1210 /*
1211 * Found something. Duplicate the cursor for the rightward search.
1212 */
0e266570 1213 else if ((error = xfs_btree_dup_cursor(bno_cur_lt, &bno_cur_gt)))
2bd0ea18
NS
1214 goto error0;
1215 /*
1216 * Increment the cursor, so we will point at the entry just right
1217 * of the leftward entry if any, or to the leftmost entry.
1218 */
b194c7d8 1219 if ((error = xfs_btree_increment(bno_cur_gt, 0, &i)))
2bd0ea18
NS
1220 goto error0;
1221 if (!i) {
1222 /*
1223 * It failed, there are no rightward entries.
1224 */
1225 xfs_btree_del_cursor(bno_cur_gt, XFS_BTREE_NOERROR);
1226 bno_cur_gt = NULL;
1227 }
1228 /*
1229 * Loop going left with the leftward cursor, right with the
1230 * rightward cursor, until either both directions give up or
1231 * we find an entry at least as big as minlen.
1232 */
1233 do {
1234 if (bno_cur_lt) {
0e266570 1235 if ((error = xfs_alloc_get_rec(bno_cur_lt, &ltbno, &ltlen, &i)))
2bd0ea18 1236 goto error0;
19ebedcf 1237 XFS_WANT_CORRUPTED_GOTO(args->mp, i == 1, error0);
cd80de04
CH
1238 busy |= xfs_alloc_compute_aligned(args, ltbno, ltlen,
1239 &ltbnoa, &ltlena, &busy_gen);
ff3263dd 1240 if (ltlena >= args->minlen && ltbnoa >= args->min_agbno)
2bd0ea18 1241 break;
b194c7d8 1242 if ((error = xfs_btree_decrement(bno_cur_lt, 0, &i)))
2bd0ea18 1243 goto error0;
ff3263dd 1244 if (!i || ltbnoa < args->min_agbno) {
2bd0ea18
NS
1245 xfs_btree_del_cursor(bno_cur_lt,
1246 XFS_BTREE_NOERROR);
1247 bno_cur_lt = NULL;
1248 }
1249 }
1250 if (bno_cur_gt) {
0e266570 1251 if ((error = xfs_alloc_get_rec(bno_cur_gt, &gtbno, &gtlen, &i)))
2bd0ea18 1252 goto error0;
19ebedcf 1253 XFS_WANT_CORRUPTED_GOTO(args->mp, i == 1, error0);
cd80de04
CH
1254 busy |= xfs_alloc_compute_aligned(args, gtbno, gtlen,
1255 &gtbnoa, &gtlena, &busy_gen);
ff3263dd 1256 if (gtlena >= args->minlen && gtbnoa <= args->max_agbno)
2bd0ea18 1257 break;
b194c7d8 1258 if ((error = xfs_btree_increment(bno_cur_gt, 0, &i)))
2bd0ea18 1259 goto error0;
ff3263dd 1260 if (!i || gtbnoa > args->max_agbno) {
2bd0ea18
NS
1261 xfs_btree_del_cursor(bno_cur_gt,
1262 XFS_BTREE_NOERROR);
1263 bno_cur_gt = NULL;
1264 }
1265 }
1266 } while (bno_cur_lt || bno_cur_gt);
56b2de80 1267
2bd0ea18
NS
1268 /*
1269 * Got both cursors still active, need to find better entry.
1270 */
1271 if (bno_cur_lt && bno_cur_gt) {
2bd0ea18
NS
1272 if (ltlena >= args->minlen) {
1273 /*
56b2de80 1274 * Left side is good, look for a right side entry.
2bd0ea18
NS
1275 */
1276 args->len = XFS_EXTLEN_MIN(ltlena, args->maxlen);
1277 xfs_alloc_fix_len(args);
56b2de80 1278 ltdiff = xfs_alloc_compute_diff(args->agbno, args->len,
1fccd5c8 1279 args->alignment, args->datatype, ltbnoa,
84a62eea 1280 ltlena, &ltnew);
56b2de80
DC
1281
1282 error = xfs_alloc_find_best_extent(args,
1283 &bno_cur_lt, &bno_cur_gt,
a2ceac1f
DC
1284 ltdiff, &gtbno, &gtlen,
1285 &gtbnoa, &gtlena,
56b2de80
DC
1286 0 /* search right */);
1287 } else {
1288 ASSERT(gtlena >= args->minlen);
1289
2bd0ea18 1290 /*
56b2de80 1291 * Right side is good, look for a left side entry.
2bd0ea18
NS
1292 */
1293 args->len = XFS_EXTLEN_MIN(gtlena, args->maxlen);
1294 xfs_alloc_fix_len(args);
56b2de80 1295 gtdiff = xfs_alloc_compute_diff(args->agbno, args->len,
1fccd5c8 1296 args->alignment, args->datatype, gtbnoa,
84a62eea 1297 gtlena, &gtnew);
56b2de80
DC
1298
1299 error = xfs_alloc_find_best_extent(args,
1300 &bno_cur_gt, &bno_cur_lt,
a2ceac1f
DC
1301 gtdiff, &ltbno, &ltlen,
1302 &ltbnoa, &ltlena,
56b2de80 1303 1 /* search left */);
2bd0ea18 1304 }
56b2de80
DC
1305
1306 if (error)
1307 goto error0;
2bd0ea18 1308 }
56b2de80 1309
2bd0ea18
NS
1310 /*
1311 * If we couldn't get anything, give up.
1312 */
1313 if (bno_cur_lt == NULL && bno_cur_gt == NULL) {
a2ceac1f
DC
1314 xfs_btree_del_cursor(cnt_cur, XFS_BTREE_NOERROR);
1315
cd80de04 1316 if (busy) {
a2ceac1f 1317 trace_xfs_alloc_near_busy(args);
cd80de04 1318 xfs_extent_busy_flush(args->mp, args->pag, busy_gen);
a2ceac1f
DC
1319 goto restart;
1320 }
56b2de80 1321 trace_xfs_alloc_size_neither(args);
2bd0ea18
NS
1322 args->agbno = NULLAGBLOCK;
1323 return 0;
1324 }
56b2de80 1325
2bd0ea18
NS
1326 /*
1327 * At this point we have selected a freespace entry, either to the
1328 * left or to the right. If it's on the right, copy all the
1329 * useful variables to the "left" set so we only have one
1330 * copy of this code.
1331 */
1332 if (bno_cur_gt) {
1333 bno_cur_lt = bno_cur_gt;
1334 bno_cur_gt = NULL;
1335 ltbno = gtbno;
1336 ltbnoa = gtbnoa;
1337 ltlen = gtlen;
1338 ltlena = gtlena;
1339 j = 1;
1340 } else
1341 j = 0;
56b2de80 1342
2bd0ea18
NS
1343 /*
1344 * Fix up the length and compute the useful address.
1345 */
2bd0ea18
NS
1346 args->len = XFS_EXTLEN_MIN(ltlena, args->maxlen);
1347 xfs_alloc_fix_len(args);
2bd0ea18 1348 rlen = args->len;
a2ceac1f 1349 (void)xfs_alloc_compute_diff(args->agbno, rlen, args->alignment,
1fccd5c8 1350 args->datatype, ltbnoa, ltlena, &ltnew);
2bd0ea18 1351 ASSERT(ltnew >= ltbno);
a2ceac1f 1352 ASSERT(ltnew + rlen <= ltbnoa + ltlena);
6e3140c7 1353 ASSERT(ltnew + rlen <= be32_to_cpu(XFS_BUF_TO_AGF(args->agbp)->agf_length));
ff3263dd 1354 ASSERT(ltnew >= args->min_agbno && ltnew <= args->max_agbno);
2bd0ea18 1355 args->agbno = ltnew;
a2ceac1f 1356
0e266570
NS
1357 if ((error = xfs_alloc_fixup_trees(cnt_cur, bno_cur_lt, ltbno, ltlen,
1358 ltnew, rlen, XFSA_FIXUP_BNO_OK)))
2bd0ea18 1359 goto error0;
56b2de80
DC
1360
1361 if (j)
1362 trace_xfs_alloc_near_greater(args);
1363 else
1364 trace_xfs_alloc_near_lesser(args);
1365
2bd0ea18
NS
1366 xfs_btree_del_cursor(cnt_cur, XFS_BTREE_NOERROR);
1367 xfs_btree_del_cursor(bno_cur_lt, XFS_BTREE_NOERROR);
1368 return 0;
1369
1370 error0:
56b2de80 1371 trace_xfs_alloc_near_error(args);
2bd0ea18
NS
1372 if (cnt_cur != NULL)
1373 xfs_btree_del_cursor(cnt_cur, XFS_BTREE_ERROR);
1374 if (bno_cur_lt != NULL)
1375 xfs_btree_del_cursor(bno_cur_lt, XFS_BTREE_ERROR);
1376 if (bno_cur_gt != NULL)
1377 xfs_btree_del_cursor(bno_cur_gt, XFS_BTREE_ERROR);
1378 return error;
1379}
1380
1381/*
1382 * Allocate a variable extent anywhere in the allocation group agno.
1383 * Extent's length (returned in len) will be between minlen and maxlen,
1384 * and of the form k * prod + mod unless there's nothing that large.
1385 * Return the starting a.g. block, or NULLAGBLOCK if we can't do it.
1386 */
1387STATIC int /* error */
1388xfs_alloc_ag_vextent_size(
dfc130f3 1389 xfs_alloc_arg_t *args) /* allocation argument structure */
2bd0ea18 1390{
dfc130f3
RC
1391 xfs_btree_cur_t *bno_cur; /* cursor for bno btree */
1392 xfs_btree_cur_t *cnt_cur; /* cursor for cnt btree */
2bd0ea18
NS
1393 int error; /* error result */
1394 xfs_agblock_t fbno; /* start of found freespace */
1395 xfs_extlen_t flen; /* length of found freespace */
2bd0ea18
NS
1396 int i; /* temp status variable */
1397 xfs_agblock_t rbno; /* returned block number */
1398 xfs_extlen_t rlen; /* length of returned extent */
cd80de04
CH
1399 bool busy;
1400 unsigned busy_gen;
2bd0ea18 1401
a2ceac1f 1402restart:
2bd0ea18
NS
1403 /*
1404 * Allocate and initialize a cursor for the by-size btree.
1405 */
b194c7d8
BN
1406 cnt_cur = xfs_allocbt_init_cursor(args->mp, args->tp, args->agbp,
1407 args->agno, XFS_BTNUM_CNT);
2bd0ea18 1408 bno_cur = NULL;
cd80de04 1409 busy = false;
a2ceac1f 1410
2bd0ea18
NS
1411 /*
1412 * Look for an entry >= maxlen+alignment-1 blocks.
1413 */
0e266570
NS
1414 if ((error = xfs_alloc_lookup_ge(cnt_cur, 0,
1415 args->maxlen + args->alignment - 1, &i)))
2bd0ea18 1416 goto error0;
a2ceac1f 1417
2bd0ea18 1418 /*
cd80de04
CH
1419 * If none then we have to settle for a smaller extent. In the case that
1420 * there are no large extents, this will return the last entry in the
1421 * tree unless the tree is empty. In the case that there are only busy
1422 * large extents, this will return the largest small extent unless there
a2ceac1f 1423 * are no smaller extents available.
5000d01d 1424 */
cd80de04 1425 if (!i) {
a2ceac1f
DC
1426 error = xfs_alloc_ag_vextent_small(args, cnt_cur,
1427 &fbno, &flen, &i);
1428 if (error)
2bd0ea18
NS
1429 goto error0;
1430 if (i == 0 || flen == 0) {
1431 xfs_btree_del_cursor(cnt_cur, XFS_BTREE_NOERROR);
56b2de80 1432 trace_xfs_alloc_size_noentry(args);
2bd0ea18
NS
1433 return 0;
1434 }
1435 ASSERT(i == 1);
cd80de04
CH
1436 busy = xfs_alloc_compute_aligned(args, fbno, flen, &rbno,
1437 &rlen, &busy_gen);
a2ceac1f
DC
1438 } else {
1439 /*
1440 * Search for a non-busy extent that is large enough.
a2ceac1f
DC
1441 */
1442 for (;;) {
1443 error = xfs_alloc_get_rec(cnt_cur, &fbno, &flen, &i);
1444 if (error)
1445 goto error0;
19ebedcf 1446 XFS_WANT_CORRUPTED_GOTO(args->mp, i == 1, error0);
a2ceac1f 1447
cd80de04
CH
1448 busy = xfs_alloc_compute_aligned(args, fbno, flen,
1449 &rbno, &rlen, &busy_gen);
a2ceac1f
DC
1450
1451 if (rlen >= args->maxlen)
1452 break;
1453
1454 error = xfs_btree_increment(cnt_cur, 0, &i);
1455 if (error)
1456 goto error0;
1457 if (i == 0) {
1458 /*
1459 * Our only valid extents must have been busy.
1460 * Make it unbusy by forcing the log out and
cd80de04 1461 * retrying.
a2ceac1f
DC
1462 */
1463 xfs_btree_del_cursor(cnt_cur,
1464 XFS_BTREE_NOERROR);
1465 trace_xfs_alloc_size_busy(args);
cd80de04
CH
1466 xfs_extent_busy_flush(args->mp,
1467 args->pag, busy_gen);
a2ceac1f
DC
1468 goto restart;
1469 }
1470 }
2bd0ea18 1471 }
a2ceac1f 1472
2bd0ea18
NS
1473 /*
1474 * In the first case above, we got the last entry in the
1475 * by-size btree. Now we check to see if the space hits maxlen
1476 * once aligned; if not, we search left for something better.
1477 * This can't happen in the second case above.
1478 */
2bd0ea18 1479 rlen = XFS_EXTLEN_MIN(args->maxlen, rlen);
19ebedcf 1480 XFS_WANT_CORRUPTED_GOTO(args->mp, rlen == 0 ||
2bd0ea18
NS
1481 (rlen <= flen && rbno + rlen <= fbno + flen), error0);
1482 if (rlen < args->maxlen) {
1483 xfs_agblock_t bestfbno;
1484 xfs_extlen_t bestflen;
1485 xfs_agblock_t bestrbno;
1486 xfs_extlen_t bestrlen;
1487
1488 bestrlen = rlen;
1489 bestrbno = rbno;
1490 bestflen = flen;
1491 bestfbno = fbno;
1492 for (;;) {
b194c7d8 1493 if ((error = xfs_btree_decrement(cnt_cur, 0, &i)))
2bd0ea18
NS
1494 goto error0;
1495 if (i == 0)
1496 break;
0e266570
NS
1497 if ((error = xfs_alloc_get_rec(cnt_cur, &fbno, &flen,
1498 &i)))
2bd0ea18 1499 goto error0;
19ebedcf 1500 XFS_WANT_CORRUPTED_GOTO(args->mp, i == 1, error0);
2bd0ea18
NS
1501 if (flen < bestrlen)
1502 break;
cd80de04
CH
1503 busy = xfs_alloc_compute_aligned(args, fbno, flen,
1504 &rbno, &rlen, &busy_gen);
2bd0ea18 1505 rlen = XFS_EXTLEN_MIN(args->maxlen, rlen);
19ebedcf 1506 XFS_WANT_CORRUPTED_GOTO(args->mp, rlen == 0 ||
2bd0ea18
NS
1507 (rlen <= flen && rbno + rlen <= fbno + flen),
1508 error0);
1509 if (rlen > bestrlen) {
1510 bestrlen = rlen;
1511 bestrbno = rbno;
1512 bestflen = flen;
1513 bestfbno = fbno;
1514 if (rlen == args->maxlen)
1515 break;
1516 }
5000d01d 1517 }
0e266570
NS
1518 if ((error = xfs_alloc_lookup_eq(cnt_cur, bestfbno, bestflen,
1519 &i)))
2bd0ea18 1520 goto error0;
19ebedcf 1521 XFS_WANT_CORRUPTED_GOTO(args->mp, i == 1, error0);
2bd0ea18
NS
1522 rlen = bestrlen;
1523 rbno = bestrbno;
1524 flen = bestflen;
1525 fbno = bestfbno;
1526 }
1527 args->wasfromfl = 0;
1528 /*
1529 * Fix up the length.
1530 */
1531 args->len = rlen;
a2ceac1f 1532 if (rlen < args->minlen) {
cd80de04 1533 if (busy) {
a2ceac1f
DC
1534 xfs_btree_del_cursor(cnt_cur, XFS_BTREE_NOERROR);
1535 trace_xfs_alloc_size_busy(args);
cd80de04 1536 xfs_extent_busy_flush(args->mp, args->pag, busy_gen);
a2ceac1f
DC
1537 goto restart;
1538 }
1539 goto out_nominleft;
2bd0ea18 1540 }
a2ceac1f
DC
1541 xfs_alloc_fix_len(args);
1542
2bd0ea18 1543 rlen = args->len;
19ebedcf 1544 XFS_WANT_CORRUPTED_GOTO(args->mp, rlen <= flen, error0);
2bd0ea18
NS
1545 /*
1546 * Allocate and initialize a cursor for the by-block tree.
1547 */
b194c7d8
BN
1548 bno_cur = xfs_allocbt_init_cursor(args->mp, args->tp, args->agbp,
1549 args->agno, XFS_BTNUM_BNO);
0e266570
NS
1550 if ((error = xfs_alloc_fixup_trees(cnt_cur, bno_cur, fbno, flen,
1551 rbno, rlen, XFSA_FIXUP_CNT_OK)))
2bd0ea18
NS
1552 goto error0;
1553 xfs_btree_del_cursor(cnt_cur, XFS_BTREE_NOERROR);
1554 xfs_btree_del_cursor(bno_cur, XFS_BTREE_NOERROR);
1555 cnt_cur = bno_cur = NULL;
1556 args->len = rlen;
1557 args->agbno = rbno;
19ebedcf 1558 XFS_WANT_CORRUPTED_GOTO(args->mp,
2bd0ea18 1559 args->agbno + args->len <=
6e3140c7 1560 be32_to_cpu(XFS_BUF_TO_AGF(args->agbp)->agf_length),
2bd0ea18 1561 error0);
56b2de80 1562 trace_xfs_alloc_size_done(args);
2bd0ea18
NS
1563 return 0;
1564
1565error0:
56b2de80 1566 trace_xfs_alloc_size_error(args);
2bd0ea18
NS
1567 if (cnt_cur)
1568 xfs_btree_del_cursor(cnt_cur, XFS_BTREE_ERROR);
1569 if (bno_cur)
1570 xfs_btree_del_cursor(bno_cur, XFS_BTREE_ERROR);
1571 return error;
a2ceac1f
DC
1572
1573out_nominleft:
1574 xfs_btree_del_cursor(cnt_cur, XFS_BTREE_NOERROR);
1575 trace_xfs_alloc_size_nominleft(args);
1576 args->agbno = NULLAGBLOCK;
1577 return 0;
2bd0ea18
NS
1578}
1579
1580/*
1581 * Deal with the case where only small freespaces remain.
1582 * Either return the contents of the last freespace record,
1583 * or allocate space from the freelist if there is nothing in the tree.
1584 */
1585STATIC int /* error */
1586xfs_alloc_ag_vextent_small(
dfc130f3
RC
1587 xfs_alloc_arg_t *args, /* allocation argument structure */
1588 xfs_btree_cur_t *ccur, /* by-size cursor */
1589 xfs_agblock_t *fbnop, /* result block number */
1590 xfs_extlen_t *flenp, /* result length */
2bd0ea18
NS
1591 int *stat) /* status: 0-freelist, 1-normal/none */
1592{
59b86360 1593 struct xfs_owner_info oinfo;
2bd0ea18
NS
1594 int error;
1595 xfs_agblock_t fbno;
1596 xfs_extlen_t flen;
2bd0ea18
NS
1597 int i;
1598
b194c7d8 1599 if ((error = xfs_btree_decrement(ccur, 0, &i)))
2bd0ea18
NS
1600 goto error0;
1601 if (i) {
0e266570 1602 if ((error = xfs_alloc_get_rec(ccur, &fbno, &flen, &i)))
2bd0ea18 1603 goto error0;
19ebedcf 1604 XFS_WANT_CORRUPTED_GOTO(args->mp, i == 1, error0);
2bd0ea18
NS
1605 }
1606 /*
1607 * Nothing in the btree, try the freelist. Make sure
1608 * to respect minleft even when pulling from the
1609 * freelist.
1610 */
cf8ce220 1611 else if (args->minlen == 1 && args->alignment == 1 &&
9760cac2 1612 args->resv != XFS_AG_RESV_AGFL &&
6e3140c7
NS
1613 (be32_to_cpu(XFS_BUF_TO_AGF(args->agbp)->agf_flcount)
1614 > args->minleft)) {
cdded3d8
DC
1615 error = xfs_alloc_get_freelist(args->tp, args->agbp, &fbno, 0);
1616 if (error)
2bd0ea18
NS
1617 goto error0;
1618 if (fbno != NULLAGBLOCK) {
a2ceac1f 1619 xfs_extent_busy_reuse(args->mp, args->agno, fbno, 1,
1fccd5c8 1620 xfs_alloc_allow_busy_reuse(args->datatype));
a2ceac1f 1621
1fccd5c8 1622 if (xfs_alloc_is_userdata(args->datatype)) {
2bd0ea18
NS
1623 xfs_buf_t *bp;
1624
1625 bp = xfs_btree_get_bufs(args->mp, args->tp,
1626 args->agno, fbno, 0);
b2284d05
ES
1627 if (!bp) {
1628 error = -EFSCORRUPTED;
1629 goto error0;
1630 }
2bd0ea18 1631 xfs_trans_binval(args->tp, bp);
2bd0ea18
NS
1632 }
1633 args->len = 1;
1634 args->agbno = fbno;
19ebedcf 1635 XFS_WANT_CORRUPTED_GOTO(args->mp,
2bd0ea18 1636 args->agbno + args->len <=
6e3140c7 1637 be32_to_cpu(XFS_BUF_TO_AGF(args->agbp)->agf_length),
2bd0ea18
NS
1638 error0);
1639 args->wasfromfl = 1;
56b2de80 1640 trace_xfs_alloc_small_freelist(args);
59b86360
DW
1641
1642 /*
1643 * If we're feeding an AGFL block to something that
1644 * doesn't live in the free space, we need to clear
9760cac2 1645 * out the OWN_AG rmap.
59b86360
DW
1646 */
1647 xfs_rmap_ag_owner(&oinfo, XFS_RMAP_OWN_AG);
1648 error = xfs_rmap_free(args->tp, args->agbp, args->agno,
1649 fbno, 1, &oinfo);
1650 if (error)
1651 goto error0;
59b86360 1652
2bd0ea18
NS
1653 *stat = 0;
1654 return 0;
1655 }
1656 /*
1657 * Nothing in the freelist.
1658 */
1659 else
1660 flen = 0;
1661 }
1662 /*
1663 * Can't allocate from the freelist for some reason.
1664 */
5e656dbb
BN
1665 else {
1666 fbno = NULLAGBLOCK;
2bd0ea18 1667 flen = 0;
5e656dbb 1668 }
2bd0ea18
NS
1669 /*
1670 * Can't do the allocation, give up.
1671 */
1672 if (flen < args->minlen) {
1673 args->agbno = NULLAGBLOCK;
56b2de80 1674 trace_xfs_alloc_small_notenough(args);
2bd0ea18
NS
1675 flen = 0;
1676 }
1677 *fbnop = fbno;
1678 *flenp = flen;
1679 *stat = 1;
56b2de80 1680 trace_xfs_alloc_small_done(args);
2bd0ea18
NS
1681 return 0;
1682
1683error0:
56b2de80 1684 trace_xfs_alloc_small_error(args);
2bd0ea18
NS
1685 return error;
1686}
1687
1688/*
1689 * Free the extent starting at agno/bno for length.
1690 */
85aec44f 1691STATIC int
2bd0ea18 1692xfs_free_ag_extent(
85aec44f
DW
1693 xfs_trans_t *tp,
1694 xfs_buf_t *agbp,
1695 xfs_agnumber_t agno,
1696 xfs_agblock_t bno,
1697 xfs_extlen_t len,
1698 struct xfs_owner_info *oinfo,
cf8ce220 1699 enum xfs_ag_resv_type type)
2bd0ea18 1700{
dfc130f3
RC
1701 xfs_btree_cur_t *bno_cur; /* cursor for by-block btree */
1702 xfs_btree_cur_t *cnt_cur; /* cursor for by-size btree */
2bd0ea18 1703 int error; /* error return value */
2bd0ea18
NS
1704 xfs_agblock_t gtbno; /* start of right neighbor block */
1705 xfs_extlen_t gtlen; /* length of right neighbor block */
1706 int haveleft; /* have a left neighbor block */
1707 int haveright; /* have a right neighbor block */
1708 int i; /* temp, result code */
1709 xfs_agblock_t ltbno; /* start of left neighbor block */
1710 xfs_extlen_t ltlen; /* length of left neighbor block */
1711 xfs_mount_t *mp; /* mount point struct for filesystem */
1712 xfs_agblock_t nbno; /* new starting block of freespace */
1713 xfs_extlen_t nlen; /* new length of freespace */
a2ceac1f 1714 xfs_perag_t *pag; /* per allocation group data */
2bd0ea18 1715
631ac87a 1716 bno_cur = cnt_cur = NULL;
2bd0ea18 1717 mp = tp->t_mountp;
631ac87a 1718
3ee858aa 1719 if (!xfs_rmap_should_skip_owner_update(oinfo)) {
631ac87a
DW
1720 error = xfs_rmap_free(tp, agbp, agno, bno, len, oinfo);
1721 if (error)
1722 goto error0;
1723 }
1724
5000d01d 1725 /*
2bd0ea18
NS
1726 * Allocate and initialize a cursor for the by-block btree.
1727 */
b194c7d8 1728 bno_cur = xfs_allocbt_init_cursor(mp, tp, agbp, agno, XFS_BTNUM_BNO);
5000d01d 1729 /*
2bd0ea18
NS
1730 * Look for a neighboring block on the left (lower block numbers)
1731 * that is contiguous with this space.
1732 */
0e266570 1733 if ((error = xfs_alloc_lookup_le(bno_cur, bno, len, &haveleft)))
2bd0ea18
NS
1734 goto error0;
1735 if (haveleft) {
1736 /*
1737 * There is a block to our left.
1738 */
0e266570 1739 if ((error = xfs_alloc_get_rec(bno_cur, &ltbno, &ltlen, &i)))
2bd0ea18 1740 goto error0;
19ebedcf 1741 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, error0);
2bd0ea18
NS
1742 /*
1743 * It's not contiguous, though.
1744 */
1745 if (ltbno + ltlen < bno)
1746 haveleft = 0;
1747 else {
1748 /*
1749 * If this failure happens the request to free this
1750 * space was invalid, it's (partly) already free.
1751 * Very bad.
1752 */
19ebedcf
DC
1753 XFS_WANT_CORRUPTED_GOTO(mp,
1754 ltbno + ltlen <= bno, error0);
2bd0ea18
NS
1755 }
1756 }
5000d01d 1757 /*
2bd0ea18
NS
1758 * Look for a neighboring block on the right (higher block numbers)
1759 * that is contiguous with this space.
1760 */
b194c7d8 1761 if ((error = xfs_btree_increment(bno_cur, 0, &haveright)))
2bd0ea18
NS
1762 goto error0;
1763 if (haveright) {
1764 /*
1765 * There is a block to our right.
1766 */
0e266570 1767 if ((error = xfs_alloc_get_rec(bno_cur, &gtbno, &gtlen, &i)))
2bd0ea18 1768 goto error0;
19ebedcf 1769 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, error0);
2bd0ea18
NS
1770 /*
1771 * It's not contiguous, though.
1772 */
1773 if (bno + len < gtbno)
1774 haveright = 0;
1775 else {
1776 /*
1777 * If this failure happens the request to free this
1778 * space was invalid, it's (partly) already free.
1779 * Very bad.
1780 */
19ebedcf 1781 XFS_WANT_CORRUPTED_GOTO(mp, gtbno >= bno + len, error0);
2bd0ea18
NS
1782 }
1783 }
1784 /*
1785 * Now allocate and initialize a cursor for the by-size tree.
1786 */
b194c7d8 1787 cnt_cur = xfs_allocbt_init_cursor(mp, tp, agbp, agno, XFS_BTNUM_CNT);
2bd0ea18
NS
1788 /*
1789 * Have both left and right contiguous neighbors.
1790 * Merge all three into a single free block.
1791 */
1792 if (haveleft && haveright) {
1793 /*
1794 * Delete the old by-size entry on the left.
1795 */
0e266570 1796 if ((error = xfs_alloc_lookup_eq(cnt_cur, ltbno, ltlen, &i)))
2bd0ea18 1797 goto error0;
19ebedcf 1798 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, error0);
b194c7d8 1799 if ((error = xfs_btree_delete(cnt_cur, &i)))
2bd0ea18 1800 goto error0;
19ebedcf 1801 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, error0);
2bd0ea18
NS
1802 /*
1803 * Delete the old by-size entry on the right.
1804 */
0e266570 1805 if ((error = xfs_alloc_lookup_eq(cnt_cur, gtbno, gtlen, &i)))
2bd0ea18 1806 goto error0;
19ebedcf 1807 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, error0);
b194c7d8 1808 if ((error = xfs_btree_delete(cnt_cur, &i)))
2bd0ea18 1809 goto error0;
19ebedcf 1810 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, error0);
2bd0ea18
NS
1811 /*
1812 * Delete the old by-block entry for the right block.
1813 */
b194c7d8 1814 if ((error = xfs_btree_delete(bno_cur, &i)))
2bd0ea18 1815 goto error0;
19ebedcf 1816 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, error0);
2bd0ea18
NS
1817 /*
1818 * Move the by-block cursor back to the left neighbor.
1819 */
b194c7d8 1820 if ((error = xfs_btree_decrement(bno_cur, 0, &i)))
2bd0ea18 1821 goto error0;
19ebedcf 1822 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, error0);
2bd0ea18
NS
1823#ifdef DEBUG
1824 /*
1825 * Check that this is the right record: delete didn't
1826 * mangle the cursor.
1827 */
1828 {
1829 xfs_agblock_t xxbno;
1830 xfs_extlen_t xxlen;
1831
0e266570
NS
1832 if ((error = xfs_alloc_get_rec(bno_cur, &xxbno, &xxlen,
1833 &i)))
2bd0ea18 1834 goto error0;
19ebedcf 1835 XFS_WANT_CORRUPTED_GOTO(mp,
2bd0ea18
NS
1836 i == 1 && xxbno == ltbno && xxlen == ltlen,
1837 error0);
1838 }
1839#endif
1840 /*
1841 * Update remaining by-block entry to the new, joined block.
1842 */
1843 nbno = ltbno;
1844 nlen = len + ltlen + gtlen;
0e266570 1845 if ((error = xfs_alloc_update(bno_cur, nbno, nlen)))
2bd0ea18
NS
1846 goto error0;
1847 }
1848 /*
1849 * Have only a left contiguous neighbor.
1850 * Merge it together with the new freespace.
1851 */
1852 else if (haveleft) {
1853 /*
1854 * Delete the old by-size entry on the left.
1855 */
0e266570 1856 if ((error = xfs_alloc_lookup_eq(cnt_cur, ltbno, ltlen, &i)))
2bd0ea18 1857 goto error0;
19ebedcf 1858 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, error0);
b194c7d8 1859 if ((error = xfs_btree_delete(cnt_cur, &i)))
2bd0ea18 1860 goto error0;
19ebedcf 1861 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, error0);
2bd0ea18
NS
1862 /*
1863 * Back up the by-block cursor to the left neighbor, and
1864 * update its length.
1865 */
b194c7d8 1866 if ((error = xfs_btree_decrement(bno_cur, 0, &i)))
2bd0ea18 1867 goto error0;
19ebedcf 1868 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, error0);
2bd0ea18
NS
1869 nbno = ltbno;
1870 nlen = len + ltlen;
0e266570 1871 if ((error = xfs_alloc_update(bno_cur, nbno, nlen)))
2bd0ea18
NS
1872 goto error0;
1873 }
1874 /*
1875 * Have only a right contiguous neighbor.
1876 * Merge it together with the new freespace.
1877 */
1878 else if (haveright) {
1879 /*
1880 * Delete the old by-size entry on the right.
1881 */
0e266570 1882 if ((error = xfs_alloc_lookup_eq(cnt_cur, gtbno, gtlen, &i)))
2bd0ea18 1883 goto error0;
19ebedcf 1884 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, error0);
b194c7d8 1885 if ((error = xfs_btree_delete(cnt_cur, &i)))
2bd0ea18 1886 goto error0;
19ebedcf 1887 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, error0);
2bd0ea18 1888 /*
5000d01d 1889 * Update the starting block and length of the right
2bd0ea18
NS
1890 * neighbor in the by-block tree.
1891 */
1892 nbno = bno;
1893 nlen = len + gtlen;
0e266570 1894 if ((error = xfs_alloc_update(bno_cur, nbno, nlen)))
2bd0ea18
NS
1895 goto error0;
1896 }
1897 /*
1898 * No contiguous neighbors.
1899 * Insert the new freespace into the by-block tree.
1900 */
1901 else {
1902 nbno = bno;
1903 nlen = len;
b194c7d8 1904 if ((error = xfs_btree_insert(bno_cur, &i)))
2bd0ea18 1905 goto error0;
19ebedcf 1906 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, error0);
2bd0ea18
NS
1907 }
1908 xfs_btree_del_cursor(bno_cur, XFS_BTREE_NOERROR);
1909 bno_cur = NULL;
1910 /*
1911 * In all cases we need to insert the new freespace in the by-size tree.
1912 */
0e266570 1913 if ((error = xfs_alloc_lookup_eq(cnt_cur, nbno, nlen, &i)))
2bd0ea18 1914 goto error0;
19ebedcf 1915 XFS_WANT_CORRUPTED_GOTO(mp, i == 0, error0);
b194c7d8 1916 if ((error = xfs_btree_insert(cnt_cur, &i)))
2bd0ea18 1917 goto error0;
19ebedcf 1918 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, error0);
2bd0ea18
NS
1919 xfs_btree_del_cursor(cnt_cur, XFS_BTREE_NOERROR);
1920 cnt_cur = NULL;
a2ceac1f 1921
2bd0ea18
NS
1922 /*
1923 * Update the freespace totals in the ag and superblock.
1924 */
a2ceac1f
DC
1925 pag = xfs_perag_get(mp, agno);
1926 error = xfs_alloc_update_counters(tp, pag, agbp, len);
cf8ce220 1927 xfs_ag_resv_free_extent(pag, type, tp, len);
a2ceac1f
DC
1928 xfs_perag_put(pag);
1929 if (error)
1930 goto error0;
1931
79896434
BD
1932 XFS_STATS_INC(mp, xs_freex);
1933 XFS_STATS_ADD(mp, xs_freeb, len);
56b2de80 1934
65a15e06 1935 trace_xfs_free_extent(mp, agno, bno, len, type, haveleft, haveright);
3e535bba 1936
2bd0ea18
NS
1937 return 0;
1938
1939 error0:
65a15e06 1940 trace_xfs_free_extent(mp, agno, bno, len, type, -1, -1);
2bd0ea18
NS
1941 if (bno_cur)
1942 xfs_btree_del_cursor(bno_cur, XFS_BTREE_ERROR);
1943 if (cnt_cur)
1944 xfs_btree_del_cursor(cnt_cur, XFS_BTREE_ERROR);
1945 return error;
1946}
1947
5000d01d 1948/*
2bd0ea18
NS
1949 * Visible (exported) allocation/free functions.
1950 * Some of these are used just by xfs_alloc_btree.c and this file.
1951 */
1952
1953/*
1954 * Compute and fill in value of m_ag_maxlevels.
1955 */
1956void
1957xfs_alloc_compute_maxlevels(
1958 xfs_mount_t *mp) /* file system mount structure */
1959{
1421de38 1960 mp->m_ag_maxlevels = xfs_btree_compute_maxlevels(mp->m_alloc_mnr,
730e2a19 1961 (mp->m_sb.sb_agblocks + 1) / 2);
2bd0ea18
NS
1962}
1963
56b2de80 1964/*
cf8ce220
DW
1965 * Find the length of the longest extent in an AG. The 'need' parameter
1966 * specifies how much space we're going to need for the AGFL and the
1967 * 'reserved' parameter tells us how many blocks in this AG are reserved for
1968 * other callers.
56b2de80
DC
1969 */
1970xfs_extlen_t
1971xfs_alloc_longest_free_extent(
72bda06d 1972 struct xfs_perag *pag,
cf8ce220
DW
1973 xfs_extlen_t need,
1974 xfs_extlen_t reserved)
56b2de80 1975{
72bda06d 1976 xfs_extlen_t delta = 0;
56b2de80 1977
cf8ce220
DW
1978 /*
1979 * If the AGFL needs a recharge, we'll have to subtract that from the
1980 * longest extent.
1981 */
56b2de80
DC
1982 if (need > pag->pagf_flcount)
1983 delta = need - pag->pagf_flcount;
1984
cf8ce220
DW
1985 /*
1986 * If we cannot maintain others' reservations with space from the
1987 * not-longest freesp extents, we'll have to subtract /that/ from
1988 * the longest extent too.
1989 */
1990 if (pag->pagf_freeblks - pag->pagf_longest < reserved)
1991 delta += reserved - (pag->pagf_freeblks - pag->pagf_longest);
1992
1993 /*
1994 * If the longest extent is long enough to satisfy all the
1995 * reservations and AGFL rules in place, we can return this extent.
1996 */
56b2de80
DC
1997 if (pag->pagf_longest > delta)
1998 return pag->pagf_longest - delta;
cf8ce220
DW
1999
2000 /* Otherwise, let the caller try for 1 block if there's space. */
56b2de80
DC
2001 return pag->pagf_flcount > 0 || pag->pagf_longest > 0;
2002}
2003
de046644
DC
2004unsigned int
2005xfs_alloc_min_freelist(
2006 struct xfs_mount *mp,
2007 struct xfs_perag *pag)
2008{
2009 unsigned int min_free;
2010
2011 /* space needed by-bno freespace btree */
2012 min_free = min_t(unsigned int, pag->pagf_levels[XFS_BTNUM_BNOi] + 1,
2013 mp->m_ag_maxlevels);
2014 /* space needed by-size freespace btree */
2015 min_free += min_t(unsigned int, pag->pagf_levels[XFS_BTNUM_CNTi] + 1,
2016 mp->m_ag_maxlevels);
b8a8d6e5
DW
2017 /* space needed reverse mapping used space btree */
2018 if (xfs_sb_version_hasrmapbt(&mp->m_sb))
2019 min_free += min_t(unsigned int,
2020 pag->pagf_levels[XFS_BTNUM_RMAPi] + 1,
2021 mp->m_rmap_maxlevels);
de046644
DC
2022
2023 return min_free;
2024}
2025
5515b7c1
DC
2026/*
2027 * Check if the operation we are fixing up the freelist for should go ahead or
2028 * not. If we are freeing blocks, we always allow it, otherwise the allocation
2029 * is dependent on whether the size and shape of free space available will
2030 * permit the requested allocation to take place.
2031 */
2032static bool
2033xfs_alloc_space_available(
2034 struct xfs_alloc_arg *args,
2035 xfs_extlen_t min_free,
2036 int flags)
2037{
2038 struct xfs_perag *pag = args->pag;
3fe4a6dd 2039 xfs_extlen_t alloc_len, longest;
cf8ce220 2040 xfs_extlen_t reservation; /* blocks that are still reserved */
5515b7c1
DC
2041 int available;
2042
2043 if (flags & XFS_ALLOC_FLAG_FREEING)
2044 return true;
2045
cf8ce220
DW
2046 reservation = xfs_ag_resv_needed(pag, args->resv);
2047
5515b7c1 2048 /* do we have enough contiguous free space for the allocation? */
3fe4a6dd 2049 alloc_len = args->minlen + (args->alignment - 1) + args->minalignslop;
1421de38 2050 longest = xfs_alloc_longest_free_extent(pag, min_free, reservation);
3fe4a6dd 2051 if (longest < alloc_len)
5515b7c1
DC
2052 return false;
2053
cf8ce220 2054 /* do we have enough free space remaining for the allocation? */
5515b7c1 2055 available = (int)(pag->pagf_freeblks + pag->pagf_flcount -
2c003dc2 2056 reservation - min_free - args->minleft);
3fe4a6dd 2057 if (available < (int)max(args->total, alloc_len))
5515b7c1
DC
2058 return false;
2059
2c003dc2
CH
2060 /*
2061 * Clamp maxlen to the amount of free space available for the actual
2062 * extent allocation.
2063 */
2064 if (available < (int)args->maxlen && !(flags & XFS_ALLOC_FLAG_CHECK)) {
2065 args->maxlen = available;
2066 ASSERT(args->maxlen > 0);
2067 ASSERT(args->maxlen >= args->minlen);
2068 }
2069
5515b7c1
DC
2070 return true;
2071}
2072
30c8be8a
BF
2073int
2074xfs_free_agfl_block(
2075 struct xfs_trans *tp,
2076 xfs_agnumber_t agno,
2077 xfs_agblock_t agbno,
2078 struct xfs_buf *agbp,
2079 struct xfs_owner_info *oinfo)
2080{
2081 int error;
2082 struct xfs_buf *bp;
2083
2084 error = xfs_free_ag_extent(tp, agbp, agno, agbno, 1, oinfo,
2085 XFS_AG_RESV_AGFL);
2086 if (error)
2087 return error;
2088
2089 bp = xfs_btree_get_bufs(tp->t_mountp, tp, agno, agbno, 0);
2090 if (!bp)
2091 return -EFSCORRUPTED;
2092 xfs_trans_binval(tp, bp);
2093
2094 return 0;
2095}
2096
8dbee8f5
BF
2097/*
2098 * Check the agfl fields of the agf for inconsistency or corruption. The purpose
2099 * is to detect an agfl header padding mismatch between current and early v5
2100 * kernels. This problem manifests as a 1-slot size difference between the
2101 * on-disk flcount and the active [first, last] range of a wrapped agfl. This
2102 * may also catch variants of agfl count corruption unrelated to padding. Either
2103 * way, we'll reset the agfl and warn the user.
2104 *
2105 * Return true if a reset is required before the agfl can be used, false
2106 * otherwise.
2107 */
2108static bool
2109xfs_agfl_needs_reset(
2110 struct xfs_mount *mp,
2111 struct xfs_agf *agf)
2112{
2113 uint32_t f = be32_to_cpu(agf->agf_flfirst);
2114 uint32_t l = be32_to_cpu(agf->agf_fllast);
2115 uint32_t c = be32_to_cpu(agf->agf_flcount);
2116 int agfl_size = xfs_agfl_size(mp);
2117 int active;
2118
2119 /* no agfl header on v4 supers */
2120 if (!xfs_sb_version_hascrc(&mp->m_sb))
2121 return false;
2122
2123 /*
2124 * The agf read verifier catches severe corruption of these fields.
2125 * Repeat some sanity checks to cover a packed -> unpacked mismatch if
2126 * the verifier allows it.
2127 */
2128 if (f >= agfl_size || l >= agfl_size)
2129 return true;
2130 if (c > agfl_size)
2131 return true;
2132
2133 /*
2134 * Check consistency between the on-disk count and the active range. An
2135 * agfl padding mismatch manifests as an inconsistent flcount.
2136 */
2137 if (c && l >= f)
2138 active = l - f + 1;
2139 else if (c)
2140 active = agfl_size - f + l + 1;
2141 else
2142 active = 0;
2143
2144 return active != c;
2145}
2146
2147/*
2148 * Reset the agfl to an empty state. Ignore/drop any existing blocks since the
2149 * agfl content cannot be trusted. Warn the user that a repair is required to
2150 * recover leaked blocks.
2151 *
2152 * The purpose of this mechanism is to handle filesystems affected by the agfl
2153 * header padding mismatch problem. A reset keeps the filesystem online with a
2154 * relatively minor free space accounting inconsistency rather than suffer the
2155 * inevitable crash from use of an invalid agfl block.
2156 */
2157static void
2158xfs_agfl_reset(
2159 struct xfs_trans *tp,
2160 struct xfs_buf *agbp,
2161 struct xfs_perag *pag)
2162{
2163 struct xfs_mount *mp = tp->t_mountp;
2164 struct xfs_agf *agf = XFS_BUF_TO_AGF(agbp);
2165
2166 ASSERT(pag->pagf_agflreset);
2167 trace_xfs_agfl_reset(mp, agf, 0, _RET_IP_);
2168
2169 xfs_warn(mp,
2170 "WARNING: Reset corrupted AGFL on AG %u. %d blocks leaked. "
2171 "Please unmount and run xfs_repair.",
2172 pag->pag_agno, pag->pagf_flcount);
2173
2174 agf->agf_flfirst = 0;
2175 agf->agf_fllast = cpu_to_be32(xfs_agfl_size(mp) - 1);
2176 agf->agf_flcount = 0;
2177 xfs_alloc_log_agf(tp, agbp, XFS_AGF_FLFIRST | XFS_AGF_FLLAST |
2178 XFS_AGF_FLCOUNT);
2179
2180 pag->pagf_flcount = 0;
2181 pag->pagf_agflreset = false;
2182}
2183
d5c1b462
BF
2184/*
2185 * Defer an AGFL block free. This is effectively equivalent to
2186 * xfs_bmap_add_free() with some special handling particular to AGFL blocks.
2187 *
2188 * Deferring AGFL frees helps prevent log reservation overruns due to too many
2189 * allocation operations in a transaction. AGFL frees are prone to this problem
2190 * because for one they are always freed one at a time. Further, an immediate
2191 * AGFL block free can cause a btree join and require another block free before
2192 * the real allocation can proceed. Deferring the free disconnects freeing up
2193 * the AGFL slot from freeing the block.
2194 */
2195STATIC void
2196xfs_defer_agfl_block(
21375e5d 2197 struct xfs_trans *tp,
d5c1b462
BF
2198 xfs_agnumber_t agno,
2199 xfs_fsblock_t agbno,
2200 struct xfs_owner_info *oinfo)
2201{
21375e5d 2202 struct xfs_mount *mp = tp->t_mountp;
d5c1b462
BF
2203 struct xfs_extent_free_item *new; /* new element */
2204
2205 ASSERT(xfs_bmap_free_item_zone != NULL);
2206 ASSERT(oinfo != NULL);
2207
2208 new = kmem_zone_alloc(xfs_bmap_free_item_zone, KM_SLEEP);
2209 new->xefi_startblock = XFS_AGB_TO_FSB(mp, agno, agbno);
2210 new->xefi_blockcount = 1;
2211 new->xefi_oinfo = *oinfo;
2212
2213 trace_xfs_agfl_free_defer(mp, agno, 0, agbno, 1);
2214
21375e5d 2215 xfs_defer_add(tp, XFS_DEFER_OPS_TYPE_AGFL_FREE, &new->xefi_list);
d5c1b462
BF
2216}
2217
2bd0ea18
NS
2218/*
2219 * Decide whether to use this allocation group for this allocation.
2220 * If so, fix up the btree freelist's size.
2bd0ea18 2221 */
ff105f75 2222int /* error */
2bd0ea18 2223xfs_alloc_fix_freelist(
c98e644e
DC
2224 struct xfs_alloc_arg *args, /* allocation argument structure */
2225 int flags) /* XFS_ALLOC_FLAG_... */
2bd0ea18 2226{
c98e644e
DC
2227 struct xfs_mount *mp = args->mp;
2228 struct xfs_perag *pag = args->pag;
2229 struct xfs_trans *tp = args->tp;
2230 struct xfs_buf *agbp = NULL;
2231 struct xfs_buf *agflbp = NULL;
2232 struct xfs_alloc_arg targs; /* local allocation arguments */
2233 xfs_agblock_t bno; /* freelist block */
2234 xfs_extlen_t need; /* total blocks needed in freelist */
fcdd428c 2235 int error = 0;
c98e644e 2236
2bd0ea18 2237 if (!pag->pagf_init) {
c98e644e
DC
2238 error = xfs_alloc_read_agf(mp, tp, args->agno, flags, &agbp);
2239 if (error)
2240 goto out_no_agbp;
2bd0ea18 2241 if (!pag->pagf_init) {
5e656dbb
BN
2242 ASSERT(flags & XFS_ALLOC_FLAG_TRYLOCK);
2243 ASSERT(!(flags & XFS_ALLOC_FLAG_FREEING));
c98e644e 2244 goto out_agbp_relse;
2bd0ea18 2245 }
c98e644e 2246 }
34317449 2247
5e656dbb 2248 /*
c98e644e
DC
2249 * If this is a metadata preferred pag and we are user data then try
2250 * somewhere else if we are not being asked to try harder at this
2251 * point
34317449 2252 */
1fccd5c8 2253 if (pag->pagf_metadata && xfs_alloc_is_userdata(args->datatype) &&
5e656dbb
BN
2254 (flags & XFS_ALLOC_FLAG_TRYLOCK)) {
2255 ASSERT(!(flags & XFS_ALLOC_FLAG_FREEING));
c98e644e 2256 goto out_agbp_relse;
34317449
NS
2257 }
2258
de046644 2259 need = xfs_alloc_min_freelist(mp, pag);
2c003dc2
CH
2260 if (!xfs_alloc_space_available(args, need, flags |
2261 XFS_ALLOC_FLAG_CHECK))
c98e644e 2262 goto out_agbp_relse;
5e656dbb 2263
2bd0ea18
NS
2264 /*
2265 * Get the a.g. freespace buffer.
2266 * Can fail if we're not blocking on locks, and it's held.
2267 */
c98e644e
DC
2268 if (!agbp) {
2269 error = xfs_alloc_read_agf(mp, tp, args->agno, flags, &agbp);
2270 if (error)
2271 goto out_no_agbp;
2272 if (!agbp) {
5e656dbb
BN
2273 ASSERT(flags & XFS_ALLOC_FLAG_TRYLOCK);
2274 ASSERT(!(flags & XFS_ALLOC_FLAG_FREEING));
c98e644e 2275 goto out_no_agbp;
2bd0ea18
NS
2276 }
2277 }
72bda06d 2278
8dbee8f5
BF
2279 /* reset a padding mismatched agfl before final free space check */
2280 if (pag->pagf_agflreset)
2281 xfs_agfl_reset(tp, agbp, pag);
2282
72bda06d 2283 /* If there isn't enough total space or single-extent, reject it. */
de046644 2284 need = xfs_alloc_min_freelist(mp, pag);
c98e644e
DC
2285 if (!xfs_alloc_space_available(args, need, flags))
2286 goto out_agbp_relse;
5515b7c1 2287
2bd0ea18
NS
2288 /*
2289 * Make the freelist shorter if it's too long.
72bda06d 2290 *
c98e644e
DC
2291 * Note that from this point onwards, we will always release the agf and
2292 * agfl buffers on error. This handles the case where we error out and
2293 * the buffers are clean or may not have been joined to the transaction
2294 * and hence need to be released manually. If they have been joined to
2295 * the transaction, then xfs_trans_brelse() will handle them
2296 * appropriately based on the recursion count and dirty state of the
2297 * buffer.
2298 *
72bda06d
DC
2299 * XXX (dgc): When we have lots of free space, does this buy us
2300 * anything other than extra overhead when we need to put more blocks
2301 * back on the free list? Maybe we should only do this when space is
2302 * getting low or the AGFL is more than half full?
e365af6f
DW
2303 *
2304 * The NOSHRINK flag prevents the AGFL from being shrunk if it's too
2305 * big; the NORMAP flag prevents AGFL expand/shrink operations from
2306 * updating the rmapbt. Both flags are used in xfs_repair while we're
2307 * rebuilding the rmapbt, and neither are used by the kernel. They're
2308 * both required to ensure that rmaps are correctly recorded for the
2309 * regenerated AGFL, bnobt, and cntbt. See repair/phase5.c and
2310 * repair/rmap.c in xfsprogs for details.
2bd0ea18 2311 */
e365af6f
DW
2312 memset(&targs, 0, sizeof(targs));
2313 if (flags & XFS_ALLOC_FLAG_NORMAP)
2314 xfs_rmap_skip_owner_update(&targs.oinfo);
2315 else
2316 xfs_rmap_ag_owner(&targs.oinfo, XFS_RMAP_OWN_AG);
2317 while (!(flags & XFS_ALLOC_FLAG_NOSHRINK) && pag->pagf_flcount > need) {
5e656dbb
BN
2318 error = xfs_alloc_get_freelist(tp, agbp, &bno, 0);
2319 if (error)
c98e644e 2320 goto out_agbp_relse;
30c8be8a 2321
6dc24128
BF
2322 /* defer agfl frees */
2323 xfs_defer_agfl_block(tp, args->agno, bno, &targs.oinfo);
2bd0ea18 2324 }
72bda06d 2325
2bd0ea18
NS
2326 targs.tp = tp;
2327 targs.mp = mp;
2328 targs.agbp = agbp;
2329 targs.agno = args->agno;
cf8ce220 2330 targs.alignment = targs.minlen = targs.prod = 1;
2bd0ea18
NS
2331 targs.type = XFS_ALLOCTYPE_THIS_AG;
2332 targs.pag = pag;
72bda06d
DC
2333 error = xfs_alloc_read_agfl(mp, tp, targs.agno, &agflbp);
2334 if (error)
c98e644e 2335 goto out_agbp_relse;
72bda06d
DC
2336
2337 /* Make the freelist longer if it's too short. */
2338 while (pag->pagf_flcount < need) {
2bd0ea18 2339 targs.agbno = 0;
72bda06d 2340 targs.maxlen = need - pag->pagf_flcount;
9760cac2 2341 targs.resv = XFS_AG_RESV_AGFL;
72bda06d
DC
2342
2343 /* Allocate as many blocks as possible at once. */
2344 error = xfs_alloc_ag_vextent(&targs);
c98e644e
DC
2345 if (error)
2346 goto out_agflbp_relse;
2347
2bd0ea18 2348 /*
dfc130f3
RC
2349 * Stop if we run out. Won't happen if callers are obeying
2350 * the restrictions correctly. Can happen for free calls
2bd0ea18
NS
2351 * on a completely full ag.
2352 */
5e656dbb
BN
2353 if (targs.agbno == NULLAGBLOCK) {
2354 if (flags & XFS_ALLOC_FLAG_FREEING)
2355 break;
c98e644e 2356 goto out_agflbp_relse;
5e656dbb 2357 }
2bd0ea18
NS
2358 /*
2359 * Put each allocated block on the list.
2360 */
2361 for (bno = targs.agbno; bno < targs.agbno + targs.len; bno++) {
5e656dbb
BN
2362 error = xfs_alloc_put_freelist(tp, agbp,
2363 agflbp, bno, 0);
2364 if (error)
c98e644e 2365 goto out_agflbp_relse;
2bd0ea18
NS
2366 }
2367 }
cb4deb22 2368 xfs_trans_brelse(tp, agflbp);
2bd0ea18
NS
2369 args->agbp = agbp;
2370 return 0;
c98e644e
DC
2371
2372out_agflbp_relse:
2373 xfs_trans_brelse(tp, agflbp);
2374out_agbp_relse:
2375 if (agbp)
2376 xfs_trans_brelse(tp, agbp);
2377out_no_agbp:
2378 args->agbp = NULL;
2379 return error;
2bd0ea18
NS
2380}
2381
2382/*
2383 * Get a block from the freelist.
2384 * Returns with the buffer for the block gotten.
2385 */
2386int /* error */
2387xfs_alloc_get_freelist(
2388 xfs_trans_t *tp, /* transaction pointer */
2389 xfs_buf_t *agbp, /* buffer containing the agf structure */
cdded3d8
DC
2390 xfs_agblock_t *bnop, /* block address retrieved from freelist */
2391 int btreeblk) /* destination is a AGF btree */
2bd0ea18
NS
2392{
2393 xfs_agf_t *agf; /* a.g. freespace structure */
2bd0ea18
NS
2394 xfs_buf_t *agflbp;/* buffer for a.g. freelist structure */
2395 xfs_agblock_t bno; /* block number returned */
dd5b876e 2396 __be32 *agfl_bno;
2bd0ea18 2397 int error;
cdded3d8 2398 int logflags;
dd5b876e 2399 xfs_mount_t *mp = tp->t_mountp;
2bd0ea18
NS
2400 xfs_perag_t *pag; /* per allocation group data */
2401
2bd0ea18
NS
2402 /*
2403 * Freelist is empty, give up.
2404 */
dd5b876e 2405 agf = XFS_BUF_TO_AGF(agbp);
46eca962 2406 if (!agf->agf_flcount) {
2bd0ea18
NS
2407 *bnop = NULLAGBLOCK;
2408 return 0;
2409 }
2410 /*
2411 * Read the array of free blocks.
2412 */
dd5b876e
DC
2413 error = xfs_alloc_read_agfl(mp, tp, be32_to_cpu(agf->agf_seqno),
2414 &agflbp);
2415 if (error)
2bd0ea18 2416 return error;
dd5b876e
DC
2417
2418
2bd0ea18
NS
2419 /*
2420 * Get the block number and update the data structures.
2421 */
dd5b876e
DC
2422 agfl_bno = XFS_BUF_TO_AGFL_BNO(mp, agflbp);
2423 bno = be32_to_cpu(agfl_bno[be32_to_cpu(agf->agf_flfirst)]);
5e656dbb 2424 be32_add_cpu(&agf->agf_flfirst, 1);
2bd0ea18 2425 xfs_trans_brelse(tp, agflbp);
b8165508 2426 if (be32_to_cpu(agf->agf_flfirst) == xfs_agfl_size(mp))
46eca962 2427 agf->agf_flfirst = 0;
56b2de80
DC
2428
2429 pag = xfs_perag_get(mp, be32_to_cpu(agf->agf_seqno));
8dbee8f5 2430 ASSERT(!pag->pagf_agflreset);
5e656dbb 2431 be32_add_cpu(&agf->agf_flcount, -1);
2bd0ea18
NS
2432 xfs_trans_agflist_delta(tp, -1);
2433 pag->pagf_flcount--;
cdded3d8
DC
2434
2435 logflags = XFS_AGF_FLFIRST | XFS_AGF_FLCOUNT;
2436 if (btreeblk) {
5e656dbb 2437 be32_add_cpu(&agf->agf_btreeblks, 1);
cdded3d8
DC
2438 pag->pagf_btreeblks++;
2439 logflags |= XFS_AGF_BTREEBLKS;
2440 }
8648192f 2441 xfs_perag_put(pag);
cdded3d8 2442
cdded3d8 2443 xfs_alloc_log_agf(tp, agbp, logflags);
2bd0ea18 2444 *bnop = bno;
3e535bba 2445
2bd0ea18
NS
2446 return 0;
2447}
2448
2449/*
2450 * Log the given fields from the agf structure.
2451 */
2452void
2453xfs_alloc_log_agf(
2454 xfs_trans_t *tp, /* transaction pointer */
2455 xfs_buf_t *bp, /* buffer for a.g. freelist header */
dfc130f3 2456 int fields) /* mask of fields to be logged (XFS_AGF_...) */
2bd0ea18
NS
2457{
2458 int first; /* first byte offset */
2459 int last; /* last byte offset */
2460 static const short offsets[] = {
2461 offsetof(xfs_agf_t, agf_magicnum),
2462 offsetof(xfs_agf_t, agf_versionnum),
2463 offsetof(xfs_agf_t, agf_seqno),
2464 offsetof(xfs_agf_t, agf_length),
2465 offsetof(xfs_agf_t, agf_roots[0]),
2466 offsetof(xfs_agf_t, agf_levels[0]),
2467 offsetof(xfs_agf_t, agf_flfirst),
2468 offsetof(xfs_agf_t, agf_fllast),
2469 offsetof(xfs_agf_t, agf_flcount),
2470 offsetof(xfs_agf_t, agf_freeblks),
2471 offsetof(xfs_agf_t, agf_longest),
cdded3d8 2472 offsetof(xfs_agf_t, agf_btreeblks),
dd5b876e 2473 offsetof(xfs_agf_t, agf_uuid),
8511b71a 2474 offsetof(xfs_agf_t, agf_rmap_blocks),
bc859611
DW
2475 offsetof(xfs_agf_t, agf_refcount_blocks),
2476 offsetof(xfs_agf_t, agf_refcount_root),
2477 offsetof(xfs_agf_t, agf_refcount_level),
8511b71a
DW
2478 /* needed so that we don't log the whole rest of the structure: */
2479 offsetof(xfs_agf_t, agf_spare64),
2bd0ea18
NS
2480 sizeof(xfs_agf_t)
2481 };
2482
56b2de80
DC
2483 trace_xfs_agf(tp->t_mountp, XFS_BUF_TO_AGF(bp), fields, _RET_IP_);
2484
bdc16ee5 2485 xfs_trans_buf_set_type(tp, bp, XFS_BLFT_AGF_BUF);
dd5b876e 2486
2bd0ea18
NS
2487 xfs_btree_offsets(fields, offsets, XFS_AGF_NUM_BITS, &first, &last);
2488 xfs_trans_log_buf(tp, bp, (uint)first, (uint)last);
2489}
2490
2491/*
2492 * Interface for inode allocation to force the pag data to be initialized.
2493 */
2494int /* error */
2495xfs_alloc_pagf_init(
2496 xfs_mount_t *mp, /* file system mount structure */
2497 xfs_trans_t *tp, /* transaction pointer */
2498 xfs_agnumber_t agno, /* allocation group number */
2499 int flags) /* XFS_ALLOC_FLAGS_... */
2500{
7a3bffe4 2501 xfs_buf_t *bp;
2bd0ea18
NS
2502 int error;
2503
0e266570 2504 if ((error = xfs_alloc_read_agf(mp, tp, agno, flags, &bp)))
2bd0ea18
NS
2505 return error;
2506 if (bp)
2507 xfs_trans_brelse(tp, bp);
2508 return 0;
2509}
2510
2511/*
2512 * Put the block on the freelist for the allocation group.
2513 */
2514int /* error */
2515xfs_alloc_put_freelist(
2516 xfs_trans_t *tp, /* transaction pointer */
2517 xfs_buf_t *agbp, /* buffer for a.g. freelist header */
2518 xfs_buf_t *agflbp,/* buffer for a.g. free block array */
cdded3d8
DC
2519 xfs_agblock_t bno, /* block being freed */
2520 int btreeblk) /* block came from a AGF btree */
2bd0ea18
NS
2521{
2522 xfs_agf_t *agf; /* a.g. freespace structure */
5e656dbb 2523 __be32 *blockp;/* pointer to array entry */
2bd0ea18 2524 int error;
cdded3d8 2525 int logflags;
2bd0ea18
NS
2526 xfs_mount_t *mp; /* mount structure */
2527 xfs_perag_t *pag; /* per allocation group data */
dd5b876e
DC
2528 __be32 *agfl_bno;
2529 int startoff;
2bd0ea18
NS
2530
2531 agf = XFS_BUF_TO_AGF(agbp);
2532 mp = tp->t_mountp;
2533
2534 if (!agflbp && (error = xfs_alloc_read_agfl(mp, tp,
6e3140c7 2535 be32_to_cpu(agf->agf_seqno), &agflbp)))
2bd0ea18 2536 return error;
5e656dbb 2537 be32_add_cpu(&agf->agf_fllast, 1);
b8165508 2538 if (be32_to_cpu(agf->agf_fllast) == xfs_agfl_size(mp))
46eca962 2539 agf->agf_fllast = 0;
56b2de80
DC
2540
2541 pag = xfs_perag_get(mp, be32_to_cpu(agf->agf_seqno));
8dbee8f5 2542 ASSERT(!pag->pagf_agflreset);
5e656dbb 2543 be32_add_cpu(&agf->agf_flcount, 1);
2bd0ea18
NS
2544 xfs_trans_agflist_delta(tp, 1);
2545 pag->pagf_flcount++;
cdded3d8
DC
2546
2547 logflags = XFS_AGF_FLLAST | XFS_AGF_FLCOUNT;
2548 if (btreeblk) {
5e656dbb 2549 be32_add_cpu(&agf->agf_btreeblks, -1);
cdded3d8
DC
2550 pag->pagf_btreeblks--;
2551 logflags |= XFS_AGF_BTREEBLKS;
2552 }
56b2de80 2553 xfs_perag_put(pag);
cdded3d8 2554
5e656dbb
BN
2555 xfs_alloc_log_agf(tp, agbp, logflags);
2556
b8165508 2557 ASSERT(be32_to_cpu(agf->agf_flcount) <= xfs_agfl_size(mp));
dd5b876e
DC
2558
2559 agfl_bno = XFS_BUF_TO_AGFL_BNO(mp, agflbp);
2560 blockp = &agfl_bno[be32_to_cpu(agf->agf_fllast)];
5e656dbb 2561 *blockp = cpu_to_be32(bno);
dd5b876e
DC
2562 startoff = (char *)blockp - (char *)agflbp->b_addr;
2563
cdded3d8 2564 xfs_alloc_log_agf(tp, agbp, logflags);
dd5b876e 2565
bdc16ee5 2566 xfs_trans_buf_set_type(tp, agflbp, XFS_BLFT_AGFL_BUF);
dd5b876e
DC
2567 xfs_trans_log_buf(tp, agflbp, startoff,
2568 startoff + sizeof(xfs_agblock_t) - 1);
2bd0ea18
NS
2569 return 0;
2570}
2571
bc01119d 2572static xfs_failaddr_t
a2ceac1f 2573xfs_agf_verify(
95d9582b
DW
2574 struct xfs_buf *bp)
2575{
2576 struct xfs_mount *mp = bp->b_target->bt_mount;
2577 struct xfs_agf *agf = XFS_BUF_TO_AGF(bp);
a2ceac1f 2578
a65d8d29
BF
2579 if (xfs_sb_version_hascrc(&mp->m_sb)) {
2580 if (!uuid_equal(&agf->agf_uuid, &mp->m_sb.sb_meta_uuid))
bc01119d 2581 return __this_address;
a65d8d29
BF
2582 if (!xfs_log_check_lsn(mp,
2583 be64_to_cpu(XFS_BUF_TO_AGF(bp)->agf_lsn)))
bc01119d 2584 return __this_address;
a65d8d29 2585 }
a2ceac1f 2586
dd5b876e
DC
2587 if (!(agf->agf_magicnum == cpu_to_be32(XFS_AGF_MAGIC) &&
2588 XFS_AGF_GOOD_VERSION(be32_to_cpu(agf->agf_versionnum)) &&
2589 be32_to_cpu(agf->agf_freeblks) <= be32_to_cpu(agf->agf_length) &&
b8165508
DC
2590 be32_to_cpu(agf->agf_flfirst) < xfs_agfl_size(mp) &&
2591 be32_to_cpu(agf->agf_fllast) < xfs_agfl_size(mp) &&
2592 be32_to_cpu(agf->agf_flcount) <= xfs_agfl_size(mp)))
bc01119d 2593 return __this_address;
a2ceac1f 2594
00795aae
DW
2595 if (be32_to_cpu(agf->agf_levels[XFS_BTNUM_BNO]) < 1 ||
2596 be32_to_cpu(agf->agf_levels[XFS_BTNUM_CNT]) < 1 ||
2597 be32_to_cpu(agf->agf_levels[XFS_BTNUM_BNO]) > XFS_BTREE_MAXLEVELS ||
5a35bf2c 2598 be32_to_cpu(agf->agf_levels[XFS_BTNUM_CNT]) > XFS_BTREE_MAXLEVELS)
bc01119d 2599 return __this_address;
5a35bf2c 2600
e37838e5 2601 if (xfs_sb_version_hasrmapbt(&mp->m_sb) &&
00795aae
DW
2602 (be32_to_cpu(agf->agf_levels[XFS_BTNUM_RMAP]) < 1 ||
2603 be32_to_cpu(agf->agf_levels[XFS_BTNUM_RMAP]) > XFS_BTREE_MAXLEVELS))
bc01119d 2604 return __this_address;
e37838e5 2605
a2ceac1f
DC
2606 /*
2607 * during growfs operations, the perag is not fully initialised,
2608 * so we can't use it for any useful checking. growfs ensures we can't
2609 * use it by using uncached buffers that don't have the perag attached
2610 * so we can detect and avoid this problem.
2611 */
dd5b876e 2612 if (bp->b_pag && be32_to_cpu(agf->agf_seqno) != bp->b_pag->pag_agno)
bc01119d 2613 return __this_address;
a2ceac1f 2614
dd5b876e
DC
2615 if (xfs_sb_version_haslazysbcount(&mp->m_sb) &&
2616 be32_to_cpu(agf->agf_btreeblks) > be32_to_cpu(agf->agf_length))
bc01119d 2617 return __this_address;
dd5b876e 2618
88ce0792 2619 if (xfs_sb_version_hasreflink(&mp->m_sb) &&
00795aae
DW
2620 (be32_to_cpu(agf->agf_refcount_level) < 1 ||
2621 be32_to_cpu(agf->agf_refcount_level) > XFS_BTREE_MAXLEVELS))
bc01119d 2622 return __this_address;
88ce0792 2623
bc01119d 2624 return NULL;
a2ceac1f 2625
a2ceac1f
DC
2626}
2627
2628static void
2629xfs_agf_read_verify(
2630 struct xfs_buf *bp)
2631{
dd5b876e 2632 struct xfs_mount *mp = bp->b_target->bt_mount;
1e697959 2633 xfs_failaddr_t fa;
dd5b876e 2634
45922933
DC
2635 if (xfs_sb_version_hascrc(&mp->m_sb) &&
2636 !xfs_buf_verify_cksum(bp, XFS_AGF_CRC_OFF))
1e697959
DW
2637 xfs_verifier_error(bp, -EFSBADCRC, __this_address);
2638 else {
95d9582b 2639 fa = xfs_agf_verify(bp);
1e697959
DW
2640 if (XFS_TEST_ERROR(fa, mp, XFS_ERRTAG_ALLOC_READ_AGF))
2641 xfs_verifier_error(bp, -EFSCORRUPTED, fa);
2642 }
a2ceac1f
DC
2643}
2644
2645static void
2646xfs_agf_write_verify(
2647 struct xfs_buf *bp)
2648{
37d086ca
CM
2649 struct xfs_mount *mp = bp->b_target->bt_mount;
2650 struct xfs_buf_log_item *bip = bp->b_log_item;
1e697959 2651 xfs_failaddr_t fa;
dd5b876e 2652
95d9582b 2653 fa = xfs_agf_verify(bp);
1e697959
DW
2654 if (fa) {
2655 xfs_verifier_error(bp, -EFSCORRUPTED, fa);
dd5b876e
DC
2656 return;
2657 }
2658
2659 if (!xfs_sb_version_hascrc(&mp->m_sb))
2660 return;
2661
2662 if (bip)
2663 XFS_BUF_TO_AGF(bp)->agf_lsn = cpu_to_be64(bip->bli_item.li_lsn);
2664
43b5aeed 2665 xfs_buf_update_cksum(bp, XFS_AGF_CRC_OFF);
a2ceac1f
DC
2666}
2667
2668const struct xfs_buf_ops xfs_agf_buf_ops = {
a3fac935 2669 .name = "xfs_agf",
a2ceac1f
DC
2670 .verify_read = xfs_agf_read_verify,
2671 .verify_write = xfs_agf_write_verify,
95d9582b 2672 .verify_struct = xfs_agf_verify,
a2ceac1f
DC
2673};
2674
2bd0ea18
NS
2675/*
2676 * Read in the allocation group header (free/alloc section).
2677 */
2678int /* error */
56b2de80
DC
2679xfs_read_agf(
2680 struct xfs_mount *mp, /* mount point structure */
2681 struct xfs_trans *tp, /* transaction pointer */
2682 xfs_agnumber_t agno, /* allocation group number */
2683 int flags, /* XFS_BUF_ */
2684 struct xfs_buf **bpp) /* buffer for the ag freelist header */
2bd0ea18 2685{
9440d84d 2686 int error;
2bd0ea18 2687
ff105f75
DC
2688 trace_xfs_read_agf(mp, agno);
2689
2bd0ea18 2690 ASSERT(agno != NULLAGNUMBER);
9440d84d
NS
2691 error = xfs_trans_read_buf(
2692 mp, tp, mp->m_ddev_targp,
2693 XFS_AG_DADDR(mp, agno, XFS_AGF_DADDR(mp)),
a2ceac1f 2694 XFS_FSS_TO_BB(mp, 1), flags, bpp, &xfs_agf_buf_ops);
9440d84d 2695 if (error)
2bd0ea18 2696 return error;
56b2de80 2697 if (!*bpp)
2bd0ea18 2698 return 0;
56b2de80 2699
a2ceac1f
DC
2700 ASSERT(!(*bpp)->b_error);
2701 xfs_buf_set_ref(*bpp, XFS_AGF_REF);
56b2de80
DC
2702 return 0;
2703}
2704
2705/*
2706 * Read in the allocation group header (free/alloc section).
2707 */
2708int /* error */
2709xfs_alloc_read_agf(
2710 struct xfs_mount *mp, /* mount point structure */
2711 struct xfs_trans *tp, /* transaction pointer */
2712 xfs_agnumber_t agno, /* allocation group number */
2713 int flags, /* XFS_ALLOC_FLAG_... */
2714 struct xfs_buf **bpp) /* buffer for the ag freelist header */
2715{
2716 struct xfs_agf *agf; /* ag freelist header */
2717 struct xfs_perag *pag; /* per allocation group data */
2718 int error;
2719
ff105f75 2720 trace_xfs_alloc_read_agf(mp, agno);
56b2de80 2721
ff105f75 2722 ASSERT(agno != NULLAGNUMBER);
56b2de80
DC
2723 error = xfs_read_agf(mp, tp, agno,
2724 (flags & XFS_ALLOC_FLAG_TRYLOCK) ? XBF_TRYLOCK : 0,
2725 bpp);
2726 if (error)
2727 return error;
2728 if (!*bpp)
2729 return 0;
a2ceac1f 2730 ASSERT(!(*bpp)->b_error);
56b2de80
DC
2731
2732 agf = XFS_BUF_TO_AGF(*bpp);
2733 pag = xfs_perag_get(mp, agno);
2bd0ea18 2734 if (!pag->pagf_init) {
6e3140c7 2735 pag->pagf_freeblks = be32_to_cpu(agf->agf_freeblks);
cdded3d8 2736 pag->pagf_btreeblks = be32_to_cpu(agf->agf_btreeblks);
6e3140c7
NS
2737 pag->pagf_flcount = be32_to_cpu(agf->agf_flcount);
2738 pag->pagf_longest = be32_to_cpu(agf->agf_longest);
2bd0ea18 2739 pag->pagf_levels[XFS_BTNUM_BNOi] =
6e3140c7 2740 be32_to_cpu(agf->agf_levels[XFS_BTNUM_BNOi]);
2bd0ea18 2741 pag->pagf_levels[XFS_BTNUM_CNTi] =
6e3140c7 2742 be32_to_cpu(agf->agf_levels[XFS_BTNUM_CNTi]);
e37838e5
DW
2743 pag->pagf_levels[XFS_BTNUM_RMAPi] =
2744 be32_to_cpu(agf->agf_levels[XFS_BTNUM_RMAPi]);
88ce0792 2745 pag->pagf_refcount_level = be32_to_cpu(agf->agf_refcount_level);
2bd0ea18 2746 pag->pagf_init = 1;
8dbee8f5 2747 pag->pagf_agflreset = xfs_agfl_needs_reset(mp, agf);
2bd0ea18
NS
2748 }
2749#ifdef DEBUG
2750 else if (!XFS_FORCED_SHUTDOWN(mp)) {
6e3140c7 2751 ASSERT(pag->pagf_freeblks == be32_to_cpu(agf->agf_freeblks));
cdded3d8 2752 ASSERT(pag->pagf_btreeblks == be32_to_cpu(agf->agf_btreeblks));
6e3140c7
NS
2753 ASSERT(pag->pagf_flcount == be32_to_cpu(agf->agf_flcount));
2754 ASSERT(pag->pagf_longest == be32_to_cpu(agf->agf_longest));
2bd0ea18 2755 ASSERT(pag->pagf_levels[XFS_BTNUM_BNOi] ==
6e3140c7 2756 be32_to_cpu(agf->agf_levels[XFS_BTNUM_BNOi]));
2bd0ea18 2757 ASSERT(pag->pagf_levels[XFS_BTNUM_CNTi] ==
6e3140c7 2758 be32_to_cpu(agf->agf_levels[XFS_BTNUM_CNTi]));
2bd0ea18
NS
2759 }
2760#endif
56b2de80 2761 xfs_perag_put(pag);
2bd0ea18
NS
2762 return 0;
2763}
2764
2765/*
2766 * Allocate an extent (variable-size).
2767 * Depending on the allocation type, we either look in a single allocation
2768 * group or loop over the allocation groups to find the result.
2769 */
2770int /* error */
2771xfs_alloc_vextent(
03aeb29d 2772 struct xfs_alloc_arg *args) /* allocation argument structure */
2bd0ea18 2773{
03aeb29d
BF
2774 xfs_agblock_t agsize; /* allocation group size */
2775 int error;
2776 int flags; /* XFS_ALLOC_FLAG_... locking flags */
2777 struct xfs_mount *mp; /* mount structure pointer */
2778 xfs_agnumber_t sagno; /* starting allocation group number */
2779 xfs_alloctype_t type; /* input allocation type */
2780 int bump_rotor = 0;
2781 xfs_agnumber_t rotorstep = xfs_rotorstep; /* inode32 agf stepper */
2bd0ea18
NS
2782
2783 mp = args->mp;
2784 type = args->otype = args->type;
2785 args->agbno = NULLAGBLOCK;
2786 /*
2787 * Just fix this up, for the case where the last a.g. is shorter
2788 * (or there's only one a.g.) and the caller couldn't easily figure
2789 * that out (xfs_bmap_alloc).
2790 */
2791 agsize = mp->m_sb.sb_agblocks;
2792 if (args->maxlen > agsize)
2793 args->maxlen = agsize;
2794 if (args->alignment == 0)
2795 args->alignment = 1;
2796 ASSERT(XFS_FSB_TO_AGNO(mp, args->fsbno) < mp->m_sb.sb_agcount);
2797 ASSERT(XFS_FSB_TO_AGBNO(mp, args->fsbno) < agsize);
2798 ASSERT(args->minlen <= args->maxlen);
2799 ASSERT(args->minlen <= agsize);
2800 ASSERT(args->mod < args->prod);
2801 if (XFS_FSB_TO_AGNO(mp, args->fsbno) >= mp->m_sb.sb_agcount ||
2802 XFS_FSB_TO_AGBNO(mp, args->fsbno) >= agsize ||
2803 args->minlen > args->maxlen || args->minlen > agsize ||
2804 args->mod >= args->prod) {
2805 args->fsbno = NULLFSBLOCK;
56b2de80 2806 trace_xfs_alloc_vextent_badargs(args);
2bd0ea18
NS
2807 return 0;
2808 }
9baa549b 2809
2bd0ea18
NS
2810 switch (type) {
2811 case XFS_ALLOCTYPE_THIS_AG:
2812 case XFS_ALLOCTYPE_NEAR_BNO:
2813 case XFS_ALLOCTYPE_THIS_BNO:
2814 /*
2815 * These three force us into a single a.g.
2816 */
2817 args->agno = XFS_FSB_TO_AGNO(mp, args->fsbno);
56b2de80 2818 args->pag = xfs_perag_get(mp, args->agno);
2bd0ea18 2819 error = xfs_alloc_fix_freelist(args, 0);
2bd0ea18 2820 if (error) {
56b2de80 2821 trace_xfs_alloc_vextent_nofix(args);
2bd0ea18
NS
2822 goto error0;
2823 }
2824 if (!args->agbp) {
56b2de80 2825 trace_xfs_alloc_vextent_noagbp(args);
2bd0ea18
NS
2826 break;
2827 }
2828 args->agbno = XFS_FSB_TO_AGBNO(mp, args->fsbno);
0e266570 2829 if ((error = xfs_alloc_ag_vextent(args)))
2bd0ea18 2830 goto error0;
2bd0ea18
NS
2831 break;
2832 case XFS_ALLOCTYPE_START_BNO:
2833 /*
2834 * Try near allocation first, then anywhere-in-ag after
2835 * the first a.g. fails.
2836 */
1fccd5c8 2837 if ((args->datatype & XFS_ALLOC_INITIAL_USER_DATA) &&
34317449 2838 (mp->m_flags & XFS_MOUNT_32BITINODES)) {
46eca962
NS
2839 args->fsbno = XFS_AGB_TO_FSB(mp,
2840 ((mp->m_agfrotor / rotorstep) %
2841 mp->m_sb.sb_agcount), 0);
34317449
NS
2842 bump_rotor = 1;
2843 }
2bd0ea18
NS
2844 args->agbno = XFS_FSB_TO_AGBNO(mp, args->fsbno);
2845 args->type = XFS_ALLOCTYPE_NEAR_BNO;
2846 /* FALLTHROUGH */
2bd0ea18
NS
2847 case XFS_ALLOCTYPE_FIRST_AG:
2848 /*
2849 * Rotate through the allocation groups looking for a winner.
2850 */
f3eda3a5 2851 if (type == XFS_ALLOCTYPE_FIRST_AG) {
2bd0ea18
NS
2852 /*
2853 * Start with allocation group given by bno.
2854 */
2855 args->agno = XFS_FSB_TO_AGNO(mp, args->fsbno);
2856 args->type = XFS_ALLOCTYPE_THIS_AG;
2857 sagno = 0;
2858 flags = 0;
2859 } else {
2bd0ea18
NS
2860 /*
2861 * Start with the given allocation group.
2862 */
2863 args->agno = sagno = XFS_FSB_TO_AGNO(mp, args->fsbno);
2864 flags = XFS_ALLOC_FLAG_TRYLOCK;
2865 }
2866 /*
2867 * Loop over allocation groups twice; first time with
2868 * trylock set, second time without.
2869 */
2870 for (;;) {
56b2de80 2871 args->pag = xfs_perag_get(mp, args->agno);
9baa549b 2872 error = xfs_alloc_fix_freelist(args, flags);
9baa549b 2873 if (error) {
56b2de80 2874 trace_xfs_alloc_vextent_nofix(args);
2bd0ea18
NS
2875 goto error0;
2876 }
2877 /*
2878 * If we get a buffer back then the allocation will fly.
2879 */
2880 if (args->agbp) {
0e266570 2881 if ((error = xfs_alloc_ag_vextent(args)))
2bd0ea18 2882 goto error0;
2bd0ea18
NS
2883 break;
2884 }
56b2de80
DC
2885
2886 trace_xfs_alloc_vextent_loopfailed(args);
2887
2bd0ea18
NS
2888 /*
2889 * Didn't work, figure out the next iteration.
2890 */
2891 if (args->agno == sagno &&
2892 type == XFS_ALLOCTYPE_START_BNO)
2893 args->type = XFS_ALLOCTYPE_THIS_AG;
5e656dbb
BN
2894 /*
2895 * For the first allocation, we can try any AG to get
2896 * space. However, if we already have allocated a
2897 * block, we don't want to try AGs whose number is below
2898 * sagno. Otherwise, we may end up with out-of-order
2899 * locking of AGF, which might cause deadlock.
2900 */
2901 if (++(args->agno) == mp->m_sb.sb_agcount) {
03aeb29d 2902 if (args->tp->t_firstblock != NULLFSBLOCK)
5e656dbb
BN
2903 args->agno = sagno;
2904 else
2905 args->agno = 0;
2906 }
5000d01d 2907 /*
2bd0ea18
NS
2908 * Reached the starting a.g., must either be done
2909 * or switch to non-trylock mode.
2910 */
2911 if (args->agno == sagno) {
a3b4a951 2912 if (flags == 0) {
2bd0ea18 2913 args->agbno = NULLAGBLOCK;
56b2de80 2914 trace_xfs_alloc_vextent_allfailed(args);
2bd0ea18
NS
2915 break;
2916 }
a3b4a951
CH
2917
2918 flags = 0;
2919 if (type == XFS_ALLOCTYPE_START_BNO) {
2920 args->agbno = XFS_FSB_TO_AGBNO(mp,
2921 args->fsbno);
2922 args->type = XFS_ALLOCTYPE_NEAR_BNO;
2bd0ea18
NS
2923 }
2924 }
56b2de80 2925 xfs_perag_put(args->pag);
2bd0ea18 2926 }
f3eda3a5 2927 if (bump_rotor) {
46eca962
NS
2928 if (args->agno == sagno)
2929 mp->m_agfrotor = (mp->m_agfrotor + 1) %
2930 (mp->m_sb.sb_agcount * rotorstep);
2931 else
2932 mp->m_agfrotor = (args->agno * rotorstep + 1) %
2933 (mp->m_sb.sb_agcount * rotorstep);
2934 }
2bd0ea18
NS
2935 break;
2936 default:
2937 ASSERT(0);
2938 /* NOTREACHED */
2939 }
2940 if (args->agbno == NULLAGBLOCK)
2941 args->fsbno = NULLFSBLOCK;
2942 else {
2943 args->fsbno = XFS_AGB_TO_FSB(mp, args->agno, args->agbno);
2944#ifdef DEBUG
2945 ASSERT(args->len >= args->minlen);
2946 ASSERT(args->len <= args->maxlen);
2947 ASSERT(args->agbno % args->alignment == 0);
2948 XFS_AG_CHECK_DADDR(mp, XFS_FSB_TO_DADDR(mp, args->fsbno),
2949 args->len);
2950#endif
9542ae13
DC
2951
2952 /* Zero the extent if we were asked to do so */
1fccd5c8 2953 if (args->datatype & XFS_ALLOC_USERDATA_ZERO) {
9542ae13
DC
2954 error = xfs_zero_extent(args->ip, args->fsbno, args->len);
2955 if (error)
2956 goto error0;
2957 }
2958
2bd0ea18 2959 }
56b2de80 2960 xfs_perag_put(args->pag);
2bd0ea18
NS
2961 return 0;
2962error0:
56b2de80 2963 xfs_perag_put(args->pag);
2bd0ea18
NS
2964 return error;
2965}
2966
2a6da3b8
DC
2967/* Ensure that the freelist is at full capacity. */
2968int
2969xfs_free_extent_fix_freelist(
2970 struct xfs_trans *tp,
2971 xfs_agnumber_t agno,
2972 struct xfs_buf **agbp)
2bd0ea18 2973{
2a6da3b8
DC
2974 struct xfs_alloc_arg args;
2975 int error;
2bd0ea18 2976
2a6da3b8 2977 memset(&args, 0, sizeof(struct xfs_alloc_arg));
2bd0ea18
NS
2978 args.tp = tp;
2979 args.mp = tp->t_mountp;
2a6da3b8 2980 args.agno = agno;
a2ceac1f
DC
2981
2982 /*
2983 * validate that the block number is legal - the enables us to detect
2984 * and handle a silent filesystem corruption rather than crashing.
2985 */
a2ceac1f 2986 if (args.agno >= args.mp->m_sb.sb_agcount)
12b53197 2987 return -EFSCORRUPTED;
a2ceac1f 2988
56b2de80 2989 args.pag = xfs_perag_get(args.mp, args.agno);
a2ceac1f
DC
2990 ASSERT(args.pag);
2991
2992 error = xfs_alloc_fix_freelist(&args, XFS_ALLOC_FLAG_FREEING);
2993 if (error)
2a6da3b8
DC
2994 goto out;
2995
2996 *agbp = args.agbp;
2997out:
2998 xfs_perag_put(args.pag);
2999 return error;
3000}
3001
3002/*
3003 * Free an extent.
3004 * Just break up the extent address and hand off to xfs_free_ag_extent
3005 * after fixing up the freelist.
3006 */
3007int /* error */
3a13f959 3008__xfs_free_extent(
2a6da3b8
DC
3009 struct xfs_trans *tp, /* transaction pointer */
3010 xfs_fsblock_t bno, /* starting block number of extent */
85aec44f 3011 xfs_extlen_t len, /* length of extent */
cf8ce220 3012 struct xfs_owner_info *oinfo, /* extent owner */
3a13f959
BF
3013 enum xfs_ag_resv_type type, /* block reservation type */
3014 bool skip_discard)
2a6da3b8
DC
3015{
3016 struct xfs_mount *mp = tp->t_mountp;
3017 struct xfs_buf *agbp;
3018 xfs_agnumber_t agno = XFS_FSB_TO_AGNO(mp, bno);
3019 xfs_agblock_t agbno = XFS_FSB_TO_AGBNO(mp, bno);
3020 int error;
3a13f959 3021 unsigned int busy_flags = 0;
2a6da3b8
DC
3022
3023 ASSERT(len != 0);
9760cac2 3024 ASSERT(type != XFS_AG_RESV_AGFL);
2a6da3b8 3025
a9da40de 3026 if (XFS_TEST_ERROR(false, mp,
e2a190dd 3027 XFS_ERRTAG_FREE_EXTENT))
a9da40de
DW
3028 return -EIO;
3029
2a6da3b8
DC
3030 error = xfs_free_extent_fix_freelist(tp, agno, &agbp);
3031 if (error)
3032 return error;
3033
3034 XFS_WANT_CORRUPTED_GOTO(mp, agbno < mp->m_sb.sb_agblocks, err);
a2ceac1f
DC
3035
3036 /* validate the extent size is legal now we have the agf locked */
2a6da3b8
DC
3037 XFS_WANT_CORRUPTED_GOTO(mp,
3038 agbno + len <= be32_to_cpu(XFS_BUF_TO_AGF(agbp)->agf_length),
3039 err);
a2ceac1f 3040
cf8ce220 3041 error = xfs_free_ag_extent(tp, agbp, agno, agbno, len, oinfo, type);
2a6da3b8
DC
3042 if (error)
3043 goto err;
3044
3a13f959
BF
3045 if (skip_discard)
3046 busy_flags |= XFS_EXTENT_BUSY_SKIP_DISCARD;
3047 xfs_extent_busy_insert(tp, agno, agbno, len, busy_flags);
2a6da3b8
DC
3048 return 0;
3049
3050err:
3051 xfs_trans_brelse(tp, agbp);
2bd0ea18
NS
3052 return error;
3053}
b3d83fa6
DW
3054
3055struct xfs_alloc_query_range_info {
3056 xfs_alloc_query_range_fn fn;
3057 void *priv;
3058};
3059
3060/* Format btree record and pass to our callback. */
3061STATIC int
3062xfs_alloc_query_range_helper(
3063 struct xfs_btree_cur *cur,
3064 union xfs_btree_rec *rec,
3065 void *priv)
3066{
3067 struct xfs_alloc_query_range_info *query = priv;
3068 struct xfs_alloc_rec_incore irec;
3069
3070 irec.ar_startblock = be32_to_cpu(rec->alloc.ar_startblock);
3071 irec.ar_blockcount = be32_to_cpu(rec->alloc.ar_blockcount);
3072 return query->fn(cur, &irec, query->priv);
3073}
3074
3075/* Find all free space within a given range of blocks. */
3076int
3077xfs_alloc_query_range(
3078 struct xfs_btree_cur *cur,
3079 struct xfs_alloc_rec_incore *low_rec,
3080 struct xfs_alloc_rec_incore *high_rec,
3081 xfs_alloc_query_range_fn fn,
3082 void *priv)
3083{
3084 union xfs_btree_irec low_brec;
3085 union xfs_btree_irec high_brec;
3086 struct xfs_alloc_query_range_info query;
3087
3088 ASSERT(cur->bc_btnum == XFS_BTNUM_BNO);
3089 low_brec.a = *low_rec;
3090 high_brec.a = *high_rec;
3091 query.priv = priv;
3092 query.fn = fn;
3093 return xfs_btree_query_range(cur, &low_brec, &high_brec,
3094 xfs_alloc_query_range_helper, &query);
3095}
7e05e856
DW
3096
3097/* Find all free space records. */
3098int
3099xfs_alloc_query_all(
3100 struct xfs_btree_cur *cur,
3101 xfs_alloc_query_range_fn fn,
3102 void *priv)
3103{
3104 struct xfs_alloc_query_range_info query;
3105
3106 ASSERT(cur->bc_btnum == XFS_BTNUM_BNO);
3107 query.priv = priv;
3108 query.fn = fn;
3109 return xfs_btree_query_all(cur, xfs_alloc_query_range_helper, &query);
3110}
9bef6258 3111
1fe41a73
DW
3112/* Is there a record covering a given extent? */
3113int
3114xfs_alloc_has_record(
3115 struct xfs_btree_cur *cur,
3116 xfs_agblock_t bno,
3117 xfs_extlen_t len,
3118 bool *exists)
3119{
3120 union xfs_btree_irec low;
3121 union xfs_btree_irec high;
3122
3123 memset(&low, 0, sizeof(low));
3124 low.a.ar_startblock = bno;
3125 memset(&high, 0xFF, sizeof(high));
3126 high.a.ar_startblock = bno + len - 1;
3127
3128 return xfs_btree_has_record(cur, &low, &high, exists);
3129}
71a98c66
DW
3130
3131/*
3132 * Walk all the blocks in the AGFL. The @walk_fn can return any negative
3133 * error code or XFS_BTREE_QUERY_RANGE_ABORT.
3134 */
3135int
3136xfs_agfl_walk(
3137 struct xfs_mount *mp,
3138 struct xfs_agf *agf,
3139 struct xfs_buf *agflbp,
3140 xfs_agfl_walk_fn walk_fn,
3141 void *priv)
3142{
3143 __be32 *agfl_bno;
3144 unsigned int i;
3145 int error;
3146
3147 agfl_bno = XFS_BUF_TO_AGFL_BNO(mp, agflbp);
3148 i = be32_to_cpu(agf->agf_flfirst);
3149
3150 /* Nothing to walk in an empty AGFL. */
3151 if (agf->agf_flcount == cpu_to_be32(0))
3152 return 0;
3153
3154 /* Otherwise, walk from first to last, wrapping as needed. */
3155 for (;;) {
3156 error = walk_fn(mp, be32_to_cpu(agfl_bno[i]), priv);
3157 if (error)
3158 return error;
3159 if (i == be32_to_cpu(agf->agf_fllast))
3160 break;
3161 if (++i == xfs_agfl_size(mp))
3162 i = 0;
3163 }
3164
3165 return 0;
3166}