]> git.ipfire.org Git - thirdparty/xfsprogs-dev.git/blame - libxfs/xfs_alloc.c
xfs: fix transaction leak on remote attr set/remove failure
[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(
2197 struct xfs_mount *mp,
2198 struct xfs_defer_ops *dfops,
2199 xfs_agnumber_t agno,
2200 xfs_fsblock_t agbno,
2201 struct xfs_owner_info *oinfo)
2202{
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
2215 xfs_defer_add(dfops, XFS_DEFER_OPS_TYPE_AGFL_FREE, &new->xefi_list);
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
d5c1b462 2322 /* defer agfl frees if dfops is provided */
55fb19bb
BF
2323 if (tp->t_dfops) {
2324 xfs_defer_agfl_block(mp, tp->t_dfops, args->agno,
d5c1b462
BF
2325 bno, &targs.oinfo);
2326 } else {
2327 error = xfs_free_agfl_block(tp, args->agno, bno, agbp,
2328 &targs.oinfo);
2329 if (error)
2330 goto out_agbp_relse;
2331 }
2bd0ea18 2332 }
72bda06d 2333
2bd0ea18
NS
2334 targs.tp = tp;
2335 targs.mp = mp;
2336 targs.agbp = agbp;
2337 targs.agno = args->agno;
cf8ce220 2338 targs.alignment = targs.minlen = targs.prod = 1;
2bd0ea18
NS
2339 targs.type = XFS_ALLOCTYPE_THIS_AG;
2340 targs.pag = pag;
72bda06d
DC
2341 error = xfs_alloc_read_agfl(mp, tp, targs.agno, &agflbp);
2342 if (error)
c98e644e 2343 goto out_agbp_relse;
72bda06d
DC
2344
2345 /* Make the freelist longer if it's too short. */
2346 while (pag->pagf_flcount < need) {
2bd0ea18 2347 targs.agbno = 0;
72bda06d 2348 targs.maxlen = need - pag->pagf_flcount;
9760cac2 2349 targs.resv = XFS_AG_RESV_AGFL;
72bda06d
DC
2350
2351 /* Allocate as many blocks as possible at once. */
2352 error = xfs_alloc_ag_vextent(&targs);
c98e644e
DC
2353 if (error)
2354 goto out_agflbp_relse;
2355
2bd0ea18 2356 /*
dfc130f3
RC
2357 * Stop if we run out. Won't happen if callers are obeying
2358 * the restrictions correctly. Can happen for free calls
2bd0ea18
NS
2359 * on a completely full ag.
2360 */
5e656dbb
BN
2361 if (targs.agbno == NULLAGBLOCK) {
2362 if (flags & XFS_ALLOC_FLAG_FREEING)
2363 break;
c98e644e 2364 goto out_agflbp_relse;
5e656dbb 2365 }
2bd0ea18
NS
2366 /*
2367 * Put each allocated block on the list.
2368 */
2369 for (bno = targs.agbno; bno < targs.agbno + targs.len; bno++) {
5e656dbb
BN
2370 error = xfs_alloc_put_freelist(tp, agbp,
2371 agflbp, bno, 0);
2372 if (error)
c98e644e 2373 goto out_agflbp_relse;
2bd0ea18
NS
2374 }
2375 }
cb4deb22 2376 xfs_trans_brelse(tp, agflbp);
2bd0ea18
NS
2377 args->agbp = agbp;
2378 return 0;
c98e644e
DC
2379
2380out_agflbp_relse:
2381 xfs_trans_brelse(tp, agflbp);
2382out_agbp_relse:
2383 if (agbp)
2384 xfs_trans_brelse(tp, agbp);
2385out_no_agbp:
2386 args->agbp = NULL;
2387 return error;
2bd0ea18
NS
2388}
2389
2390/*
2391 * Get a block from the freelist.
2392 * Returns with the buffer for the block gotten.
2393 */
2394int /* error */
2395xfs_alloc_get_freelist(
2396 xfs_trans_t *tp, /* transaction pointer */
2397 xfs_buf_t *agbp, /* buffer containing the agf structure */
cdded3d8
DC
2398 xfs_agblock_t *bnop, /* block address retrieved from freelist */
2399 int btreeblk) /* destination is a AGF btree */
2bd0ea18
NS
2400{
2401 xfs_agf_t *agf; /* a.g. freespace structure */
2bd0ea18
NS
2402 xfs_buf_t *agflbp;/* buffer for a.g. freelist structure */
2403 xfs_agblock_t bno; /* block number returned */
dd5b876e 2404 __be32 *agfl_bno;
2bd0ea18 2405 int error;
cdded3d8 2406 int logflags;
dd5b876e 2407 xfs_mount_t *mp = tp->t_mountp;
2bd0ea18
NS
2408 xfs_perag_t *pag; /* per allocation group data */
2409
2bd0ea18
NS
2410 /*
2411 * Freelist is empty, give up.
2412 */
dd5b876e 2413 agf = XFS_BUF_TO_AGF(agbp);
46eca962 2414 if (!agf->agf_flcount) {
2bd0ea18
NS
2415 *bnop = NULLAGBLOCK;
2416 return 0;
2417 }
2418 /*
2419 * Read the array of free blocks.
2420 */
dd5b876e
DC
2421 error = xfs_alloc_read_agfl(mp, tp, be32_to_cpu(agf->agf_seqno),
2422 &agflbp);
2423 if (error)
2bd0ea18 2424 return error;
dd5b876e
DC
2425
2426
2bd0ea18
NS
2427 /*
2428 * Get the block number and update the data structures.
2429 */
dd5b876e
DC
2430 agfl_bno = XFS_BUF_TO_AGFL_BNO(mp, agflbp);
2431 bno = be32_to_cpu(agfl_bno[be32_to_cpu(agf->agf_flfirst)]);
5e656dbb 2432 be32_add_cpu(&agf->agf_flfirst, 1);
2bd0ea18 2433 xfs_trans_brelse(tp, agflbp);
b8165508 2434 if (be32_to_cpu(agf->agf_flfirst) == xfs_agfl_size(mp))
46eca962 2435 agf->agf_flfirst = 0;
56b2de80
DC
2436
2437 pag = xfs_perag_get(mp, be32_to_cpu(agf->agf_seqno));
8dbee8f5 2438 ASSERT(!pag->pagf_agflreset);
5e656dbb 2439 be32_add_cpu(&agf->agf_flcount, -1);
2bd0ea18
NS
2440 xfs_trans_agflist_delta(tp, -1);
2441 pag->pagf_flcount--;
56b2de80 2442 xfs_perag_put(pag);
cdded3d8
DC
2443
2444 logflags = XFS_AGF_FLFIRST | XFS_AGF_FLCOUNT;
2445 if (btreeblk) {
5e656dbb 2446 be32_add_cpu(&agf->agf_btreeblks, 1);
cdded3d8
DC
2447 pag->pagf_btreeblks++;
2448 logflags |= XFS_AGF_BTREEBLKS;
2449 }
2450
cdded3d8 2451 xfs_alloc_log_agf(tp, agbp, logflags);
2bd0ea18 2452 *bnop = bno;
3e535bba 2453
2bd0ea18
NS
2454 return 0;
2455}
2456
2457/*
2458 * Log the given fields from the agf structure.
2459 */
2460void
2461xfs_alloc_log_agf(
2462 xfs_trans_t *tp, /* transaction pointer */
2463 xfs_buf_t *bp, /* buffer for a.g. freelist header */
dfc130f3 2464 int fields) /* mask of fields to be logged (XFS_AGF_...) */
2bd0ea18
NS
2465{
2466 int first; /* first byte offset */
2467 int last; /* last byte offset */
2468 static const short offsets[] = {
2469 offsetof(xfs_agf_t, agf_magicnum),
2470 offsetof(xfs_agf_t, agf_versionnum),
2471 offsetof(xfs_agf_t, agf_seqno),
2472 offsetof(xfs_agf_t, agf_length),
2473 offsetof(xfs_agf_t, agf_roots[0]),
2474 offsetof(xfs_agf_t, agf_levels[0]),
2475 offsetof(xfs_agf_t, agf_flfirst),
2476 offsetof(xfs_agf_t, agf_fllast),
2477 offsetof(xfs_agf_t, agf_flcount),
2478 offsetof(xfs_agf_t, agf_freeblks),
2479 offsetof(xfs_agf_t, agf_longest),
cdded3d8 2480 offsetof(xfs_agf_t, agf_btreeblks),
dd5b876e 2481 offsetof(xfs_agf_t, agf_uuid),
8511b71a 2482 offsetof(xfs_agf_t, agf_rmap_blocks),
bc859611
DW
2483 offsetof(xfs_agf_t, agf_refcount_blocks),
2484 offsetof(xfs_agf_t, agf_refcount_root),
2485 offsetof(xfs_agf_t, agf_refcount_level),
8511b71a
DW
2486 /* needed so that we don't log the whole rest of the structure: */
2487 offsetof(xfs_agf_t, agf_spare64),
2bd0ea18
NS
2488 sizeof(xfs_agf_t)
2489 };
2490
56b2de80
DC
2491 trace_xfs_agf(tp->t_mountp, XFS_BUF_TO_AGF(bp), fields, _RET_IP_);
2492
bdc16ee5 2493 xfs_trans_buf_set_type(tp, bp, XFS_BLFT_AGF_BUF);
dd5b876e 2494
2bd0ea18
NS
2495 xfs_btree_offsets(fields, offsets, XFS_AGF_NUM_BITS, &first, &last);
2496 xfs_trans_log_buf(tp, bp, (uint)first, (uint)last);
2497}
2498
2499/*
2500 * Interface for inode allocation to force the pag data to be initialized.
2501 */
2502int /* error */
2503xfs_alloc_pagf_init(
2504 xfs_mount_t *mp, /* file system mount structure */
2505 xfs_trans_t *tp, /* transaction pointer */
2506 xfs_agnumber_t agno, /* allocation group number */
2507 int flags) /* XFS_ALLOC_FLAGS_... */
2508{
7a3bffe4 2509 xfs_buf_t *bp;
2bd0ea18
NS
2510 int error;
2511
0e266570 2512 if ((error = xfs_alloc_read_agf(mp, tp, agno, flags, &bp)))
2bd0ea18
NS
2513 return error;
2514 if (bp)
2515 xfs_trans_brelse(tp, bp);
2516 return 0;
2517}
2518
2519/*
2520 * Put the block on the freelist for the allocation group.
2521 */
2522int /* error */
2523xfs_alloc_put_freelist(
2524 xfs_trans_t *tp, /* transaction pointer */
2525 xfs_buf_t *agbp, /* buffer for a.g. freelist header */
2526 xfs_buf_t *agflbp,/* buffer for a.g. free block array */
cdded3d8
DC
2527 xfs_agblock_t bno, /* block being freed */
2528 int btreeblk) /* block came from a AGF btree */
2bd0ea18
NS
2529{
2530 xfs_agf_t *agf; /* a.g. freespace structure */
5e656dbb 2531 __be32 *blockp;/* pointer to array entry */
2bd0ea18 2532 int error;
cdded3d8 2533 int logflags;
2bd0ea18
NS
2534 xfs_mount_t *mp; /* mount structure */
2535 xfs_perag_t *pag; /* per allocation group data */
dd5b876e
DC
2536 __be32 *agfl_bno;
2537 int startoff;
2bd0ea18
NS
2538
2539 agf = XFS_BUF_TO_AGF(agbp);
2540 mp = tp->t_mountp;
2541
2542 if (!agflbp && (error = xfs_alloc_read_agfl(mp, tp,
6e3140c7 2543 be32_to_cpu(agf->agf_seqno), &agflbp)))
2bd0ea18 2544 return error;
5e656dbb 2545 be32_add_cpu(&agf->agf_fllast, 1);
b8165508 2546 if (be32_to_cpu(agf->agf_fllast) == xfs_agfl_size(mp))
46eca962 2547 agf->agf_fllast = 0;
56b2de80
DC
2548
2549 pag = xfs_perag_get(mp, be32_to_cpu(agf->agf_seqno));
8dbee8f5 2550 ASSERT(!pag->pagf_agflreset);
5e656dbb 2551 be32_add_cpu(&agf->agf_flcount, 1);
2bd0ea18
NS
2552 xfs_trans_agflist_delta(tp, 1);
2553 pag->pagf_flcount++;
cdded3d8
DC
2554
2555 logflags = XFS_AGF_FLLAST | XFS_AGF_FLCOUNT;
2556 if (btreeblk) {
5e656dbb 2557 be32_add_cpu(&agf->agf_btreeblks, -1);
cdded3d8
DC
2558 pag->pagf_btreeblks--;
2559 logflags |= XFS_AGF_BTREEBLKS;
2560 }
56b2de80 2561 xfs_perag_put(pag);
cdded3d8 2562
5e656dbb
BN
2563 xfs_alloc_log_agf(tp, agbp, logflags);
2564
b8165508 2565 ASSERT(be32_to_cpu(agf->agf_flcount) <= xfs_agfl_size(mp));
dd5b876e
DC
2566
2567 agfl_bno = XFS_BUF_TO_AGFL_BNO(mp, agflbp);
2568 blockp = &agfl_bno[be32_to_cpu(agf->agf_fllast)];
5e656dbb 2569 *blockp = cpu_to_be32(bno);
dd5b876e
DC
2570 startoff = (char *)blockp - (char *)agflbp->b_addr;
2571
cdded3d8 2572 xfs_alloc_log_agf(tp, agbp, logflags);
dd5b876e 2573
bdc16ee5 2574 xfs_trans_buf_set_type(tp, agflbp, XFS_BLFT_AGFL_BUF);
dd5b876e
DC
2575 xfs_trans_log_buf(tp, agflbp, startoff,
2576 startoff + sizeof(xfs_agblock_t) - 1);
2bd0ea18
NS
2577 return 0;
2578}
2579
bc01119d 2580static xfs_failaddr_t
a2ceac1f 2581xfs_agf_verify(
95d9582b
DW
2582 struct xfs_buf *bp)
2583{
2584 struct xfs_mount *mp = bp->b_target->bt_mount;
2585 struct xfs_agf *agf = XFS_BUF_TO_AGF(bp);
a2ceac1f 2586
a65d8d29
BF
2587 if (xfs_sb_version_hascrc(&mp->m_sb)) {
2588 if (!uuid_equal(&agf->agf_uuid, &mp->m_sb.sb_meta_uuid))
bc01119d 2589 return __this_address;
a65d8d29
BF
2590 if (!xfs_log_check_lsn(mp,
2591 be64_to_cpu(XFS_BUF_TO_AGF(bp)->agf_lsn)))
bc01119d 2592 return __this_address;
a65d8d29 2593 }
a2ceac1f 2594
dd5b876e
DC
2595 if (!(agf->agf_magicnum == cpu_to_be32(XFS_AGF_MAGIC) &&
2596 XFS_AGF_GOOD_VERSION(be32_to_cpu(agf->agf_versionnum)) &&
2597 be32_to_cpu(agf->agf_freeblks) <= be32_to_cpu(agf->agf_length) &&
b8165508
DC
2598 be32_to_cpu(agf->agf_flfirst) < xfs_agfl_size(mp) &&
2599 be32_to_cpu(agf->agf_fllast) < xfs_agfl_size(mp) &&
2600 be32_to_cpu(agf->agf_flcount) <= xfs_agfl_size(mp)))
bc01119d 2601 return __this_address;
a2ceac1f 2602
00795aae
DW
2603 if (be32_to_cpu(agf->agf_levels[XFS_BTNUM_BNO]) < 1 ||
2604 be32_to_cpu(agf->agf_levels[XFS_BTNUM_CNT]) < 1 ||
2605 be32_to_cpu(agf->agf_levels[XFS_BTNUM_BNO]) > XFS_BTREE_MAXLEVELS ||
5a35bf2c 2606 be32_to_cpu(agf->agf_levels[XFS_BTNUM_CNT]) > XFS_BTREE_MAXLEVELS)
bc01119d 2607 return __this_address;
5a35bf2c 2608
e37838e5 2609 if (xfs_sb_version_hasrmapbt(&mp->m_sb) &&
00795aae
DW
2610 (be32_to_cpu(agf->agf_levels[XFS_BTNUM_RMAP]) < 1 ||
2611 be32_to_cpu(agf->agf_levels[XFS_BTNUM_RMAP]) > XFS_BTREE_MAXLEVELS))
bc01119d 2612 return __this_address;
e37838e5 2613
a2ceac1f
DC
2614 /*
2615 * during growfs operations, the perag is not fully initialised,
2616 * so we can't use it for any useful checking. growfs ensures we can't
2617 * use it by using uncached buffers that don't have the perag attached
2618 * so we can detect and avoid this problem.
2619 */
dd5b876e 2620 if (bp->b_pag && be32_to_cpu(agf->agf_seqno) != bp->b_pag->pag_agno)
bc01119d 2621 return __this_address;
a2ceac1f 2622
dd5b876e
DC
2623 if (xfs_sb_version_haslazysbcount(&mp->m_sb) &&
2624 be32_to_cpu(agf->agf_btreeblks) > be32_to_cpu(agf->agf_length))
bc01119d 2625 return __this_address;
dd5b876e 2626
88ce0792 2627 if (xfs_sb_version_hasreflink(&mp->m_sb) &&
00795aae
DW
2628 (be32_to_cpu(agf->agf_refcount_level) < 1 ||
2629 be32_to_cpu(agf->agf_refcount_level) > XFS_BTREE_MAXLEVELS))
bc01119d 2630 return __this_address;
88ce0792 2631
bc01119d 2632 return NULL;
a2ceac1f 2633
a2ceac1f
DC
2634}
2635
2636static void
2637xfs_agf_read_verify(
2638 struct xfs_buf *bp)
2639{
dd5b876e 2640 struct xfs_mount *mp = bp->b_target->bt_mount;
1e697959 2641 xfs_failaddr_t fa;
dd5b876e 2642
45922933
DC
2643 if (xfs_sb_version_hascrc(&mp->m_sb) &&
2644 !xfs_buf_verify_cksum(bp, XFS_AGF_CRC_OFF))
1e697959
DW
2645 xfs_verifier_error(bp, -EFSBADCRC, __this_address);
2646 else {
95d9582b 2647 fa = xfs_agf_verify(bp);
1e697959
DW
2648 if (XFS_TEST_ERROR(fa, mp, XFS_ERRTAG_ALLOC_READ_AGF))
2649 xfs_verifier_error(bp, -EFSCORRUPTED, fa);
2650 }
a2ceac1f
DC
2651}
2652
2653static void
2654xfs_agf_write_verify(
2655 struct xfs_buf *bp)
2656{
37d086ca
CM
2657 struct xfs_mount *mp = bp->b_target->bt_mount;
2658 struct xfs_buf_log_item *bip = bp->b_log_item;
1e697959 2659 xfs_failaddr_t fa;
dd5b876e 2660
95d9582b 2661 fa = xfs_agf_verify(bp);
1e697959
DW
2662 if (fa) {
2663 xfs_verifier_error(bp, -EFSCORRUPTED, fa);
dd5b876e
DC
2664 return;
2665 }
2666
2667 if (!xfs_sb_version_hascrc(&mp->m_sb))
2668 return;
2669
2670 if (bip)
2671 XFS_BUF_TO_AGF(bp)->agf_lsn = cpu_to_be64(bip->bli_item.li_lsn);
2672
43b5aeed 2673 xfs_buf_update_cksum(bp, XFS_AGF_CRC_OFF);
a2ceac1f
DC
2674}
2675
2676const struct xfs_buf_ops xfs_agf_buf_ops = {
a3fac935 2677 .name = "xfs_agf",
a2ceac1f
DC
2678 .verify_read = xfs_agf_read_verify,
2679 .verify_write = xfs_agf_write_verify,
95d9582b 2680 .verify_struct = xfs_agf_verify,
a2ceac1f
DC
2681};
2682
2bd0ea18
NS
2683/*
2684 * Read in the allocation group header (free/alloc section).
2685 */
2686int /* error */
56b2de80
DC
2687xfs_read_agf(
2688 struct xfs_mount *mp, /* mount point structure */
2689 struct xfs_trans *tp, /* transaction pointer */
2690 xfs_agnumber_t agno, /* allocation group number */
2691 int flags, /* XFS_BUF_ */
2692 struct xfs_buf **bpp) /* buffer for the ag freelist header */
2bd0ea18 2693{
9440d84d 2694 int error;
2bd0ea18 2695
ff105f75
DC
2696 trace_xfs_read_agf(mp, agno);
2697
2bd0ea18 2698 ASSERT(agno != NULLAGNUMBER);
9440d84d
NS
2699 error = xfs_trans_read_buf(
2700 mp, tp, mp->m_ddev_targp,
2701 XFS_AG_DADDR(mp, agno, XFS_AGF_DADDR(mp)),
a2ceac1f 2702 XFS_FSS_TO_BB(mp, 1), flags, bpp, &xfs_agf_buf_ops);
9440d84d 2703 if (error)
2bd0ea18 2704 return error;
56b2de80 2705 if (!*bpp)
2bd0ea18 2706 return 0;
56b2de80 2707
a2ceac1f
DC
2708 ASSERT(!(*bpp)->b_error);
2709 xfs_buf_set_ref(*bpp, XFS_AGF_REF);
56b2de80
DC
2710 return 0;
2711}
2712
2713/*
2714 * Read in the allocation group header (free/alloc section).
2715 */
2716int /* error */
2717xfs_alloc_read_agf(
2718 struct xfs_mount *mp, /* mount point structure */
2719 struct xfs_trans *tp, /* transaction pointer */
2720 xfs_agnumber_t agno, /* allocation group number */
2721 int flags, /* XFS_ALLOC_FLAG_... */
2722 struct xfs_buf **bpp) /* buffer for the ag freelist header */
2723{
2724 struct xfs_agf *agf; /* ag freelist header */
2725 struct xfs_perag *pag; /* per allocation group data */
2726 int error;
2727
ff105f75 2728 trace_xfs_alloc_read_agf(mp, agno);
56b2de80 2729
ff105f75 2730 ASSERT(agno != NULLAGNUMBER);
56b2de80
DC
2731 error = xfs_read_agf(mp, tp, agno,
2732 (flags & XFS_ALLOC_FLAG_TRYLOCK) ? XBF_TRYLOCK : 0,
2733 bpp);
2734 if (error)
2735 return error;
2736 if (!*bpp)
2737 return 0;
a2ceac1f 2738 ASSERT(!(*bpp)->b_error);
56b2de80
DC
2739
2740 agf = XFS_BUF_TO_AGF(*bpp);
2741 pag = xfs_perag_get(mp, agno);
2bd0ea18 2742 if (!pag->pagf_init) {
6e3140c7 2743 pag->pagf_freeblks = be32_to_cpu(agf->agf_freeblks);
cdded3d8 2744 pag->pagf_btreeblks = be32_to_cpu(agf->agf_btreeblks);
6e3140c7
NS
2745 pag->pagf_flcount = be32_to_cpu(agf->agf_flcount);
2746 pag->pagf_longest = be32_to_cpu(agf->agf_longest);
2bd0ea18 2747 pag->pagf_levels[XFS_BTNUM_BNOi] =
6e3140c7 2748 be32_to_cpu(agf->agf_levels[XFS_BTNUM_BNOi]);
2bd0ea18 2749 pag->pagf_levels[XFS_BTNUM_CNTi] =
6e3140c7 2750 be32_to_cpu(agf->agf_levels[XFS_BTNUM_CNTi]);
e37838e5
DW
2751 pag->pagf_levels[XFS_BTNUM_RMAPi] =
2752 be32_to_cpu(agf->agf_levels[XFS_BTNUM_RMAPi]);
88ce0792 2753 pag->pagf_refcount_level = be32_to_cpu(agf->agf_refcount_level);
5e656dbb 2754 spin_lock_init(&pag->pagb_lock);
56b2de80 2755 pag->pagb_count = 0;
ff105f75
DC
2756 /* XXX: pagb_tree doesn't exist in userspace */
2757 //pag->pagb_tree = RB_ROOT;
2bd0ea18 2758 pag->pagf_init = 1;
8dbee8f5 2759 pag->pagf_agflreset = xfs_agfl_needs_reset(mp, agf);
2bd0ea18
NS
2760 }
2761#ifdef DEBUG
2762 else if (!XFS_FORCED_SHUTDOWN(mp)) {
6e3140c7 2763 ASSERT(pag->pagf_freeblks == be32_to_cpu(agf->agf_freeblks));
cdded3d8 2764 ASSERT(pag->pagf_btreeblks == be32_to_cpu(agf->agf_btreeblks));
6e3140c7
NS
2765 ASSERT(pag->pagf_flcount == be32_to_cpu(agf->agf_flcount));
2766 ASSERT(pag->pagf_longest == be32_to_cpu(agf->agf_longest));
2bd0ea18 2767 ASSERT(pag->pagf_levels[XFS_BTNUM_BNOi] ==
6e3140c7 2768 be32_to_cpu(agf->agf_levels[XFS_BTNUM_BNOi]));
2bd0ea18 2769 ASSERT(pag->pagf_levels[XFS_BTNUM_CNTi] ==
6e3140c7 2770 be32_to_cpu(agf->agf_levels[XFS_BTNUM_CNTi]));
2bd0ea18
NS
2771 }
2772#endif
56b2de80 2773 xfs_perag_put(pag);
2bd0ea18
NS
2774 return 0;
2775}
2776
2777/*
2778 * Allocate an extent (variable-size).
2779 * Depending on the allocation type, we either look in a single allocation
2780 * group or loop over the allocation groups to find the result.
2781 */
2782int /* error */
2783xfs_alloc_vextent(
03aeb29d 2784 struct xfs_alloc_arg *args) /* allocation argument structure */
2bd0ea18 2785{
03aeb29d
BF
2786 xfs_agblock_t agsize; /* allocation group size */
2787 int error;
2788 int flags; /* XFS_ALLOC_FLAG_... locking flags */
2789 struct xfs_mount *mp; /* mount structure pointer */
2790 xfs_agnumber_t sagno; /* starting allocation group number */
2791 xfs_alloctype_t type; /* input allocation type */
2792 int bump_rotor = 0;
2793 xfs_agnumber_t rotorstep = xfs_rotorstep; /* inode32 agf stepper */
2bd0ea18
NS
2794
2795 mp = args->mp;
2796 type = args->otype = args->type;
2797 args->agbno = NULLAGBLOCK;
2798 /*
2799 * Just fix this up, for the case where the last a.g. is shorter
2800 * (or there's only one a.g.) and the caller couldn't easily figure
2801 * that out (xfs_bmap_alloc).
2802 */
2803 agsize = mp->m_sb.sb_agblocks;
2804 if (args->maxlen > agsize)
2805 args->maxlen = agsize;
2806 if (args->alignment == 0)
2807 args->alignment = 1;
2808 ASSERT(XFS_FSB_TO_AGNO(mp, args->fsbno) < mp->m_sb.sb_agcount);
2809 ASSERT(XFS_FSB_TO_AGBNO(mp, args->fsbno) < agsize);
2810 ASSERT(args->minlen <= args->maxlen);
2811 ASSERT(args->minlen <= agsize);
2812 ASSERT(args->mod < args->prod);
2813 if (XFS_FSB_TO_AGNO(mp, args->fsbno) >= mp->m_sb.sb_agcount ||
2814 XFS_FSB_TO_AGBNO(mp, args->fsbno) >= agsize ||
2815 args->minlen > args->maxlen || args->minlen > agsize ||
2816 args->mod >= args->prod) {
2817 args->fsbno = NULLFSBLOCK;
56b2de80 2818 trace_xfs_alloc_vextent_badargs(args);
2bd0ea18
NS
2819 return 0;
2820 }
9baa549b 2821
2bd0ea18
NS
2822 switch (type) {
2823 case XFS_ALLOCTYPE_THIS_AG:
2824 case XFS_ALLOCTYPE_NEAR_BNO:
2825 case XFS_ALLOCTYPE_THIS_BNO:
2826 /*
2827 * These three force us into a single a.g.
2828 */
2829 args->agno = XFS_FSB_TO_AGNO(mp, args->fsbno);
56b2de80 2830 args->pag = xfs_perag_get(mp, args->agno);
2bd0ea18 2831 error = xfs_alloc_fix_freelist(args, 0);
2bd0ea18 2832 if (error) {
56b2de80 2833 trace_xfs_alloc_vextent_nofix(args);
2bd0ea18
NS
2834 goto error0;
2835 }
2836 if (!args->agbp) {
56b2de80 2837 trace_xfs_alloc_vextent_noagbp(args);
2bd0ea18
NS
2838 break;
2839 }
2840 args->agbno = XFS_FSB_TO_AGBNO(mp, args->fsbno);
0e266570 2841 if ((error = xfs_alloc_ag_vextent(args)))
2bd0ea18 2842 goto error0;
2bd0ea18
NS
2843 break;
2844 case XFS_ALLOCTYPE_START_BNO:
2845 /*
2846 * Try near allocation first, then anywhere-in-ag after
2847 * the first a.g. fails.
2848 */
1fccd5c8 2849 if ((args->datatype & XFS_ALLOC_INITIAL_USER_DATA) &&
34317449 2850 (mp->m_flags & XFS_MOUNT_32BITINODES)) {
46eca962
NS
2851 args->fsbno = XFS_AGB_TO_FSB(mp,
2852 ((mp->m_agfrotor / rotorstep) %
2853 mp->m_sb.sb_agcount), 0);
34317449
NS
2854 bump_rotor = 1;
2855 }
2bd0ea18
NS
2856 args->agbno = XFS_FSB_TO_AGBNO(mp, args->fsbno);
2857 args->type = XFS_ALLOCTYPE_NEAR_BNO;
2858 /* FALLTHROUGH */
2bd0ea18
NS
2859 case XFS_ALLOCTYPE_FIRST_AG:
2860 /*
2861 * Rotate through the allocation groups looking for a winner.
2862 */
f3eda3a5 2863 if (type == XFS_ALLOCTYPE_FIRST_AG) {
2bd0ea18
NS
2864 /*
2865 * Start with allocation group given by bno.
2866 */
2867 args->agno = XFS_FSB_TO_AGNO(mp, args->fsbno);
2868 args->type = XFS_ALLOCTYPE_THIS_AG;
2869 sagno = 0;
2870 flags = 0;
2871 } else {
2bd0ea18
NS
2872 /*
2873 * Start with the given allocation group.
2874 */
2875 args->agno = sagno = XFS_FSB_TO_AGNO(mp, args->fsbno);
2876 flags = XFS_ALLOC_FLAG_TRYLOCK;
2877 }
2878 /*
2879 * Loop over allocation groups twice; first time with
2880 * trylock set, second time without.
2881 */
2882 for (;;) {
56b2de80 2883 args->pag = xfs_perag_get(mp, args->agno);
9baa549b 2884 error = xfs_alloc_fix_freelist(args, flags);
9baa549b 2885 if (error) {
56b2de80 2886 trace_xfs_alloc_vextent_nofix(args);
2bd0ea18
NS
2887 goto error0;
2888 }
2889 /*
2890 * If we get a buffer back then the allocation will fly.
2891 */
2892 if (args->agbp) {
0e266570 2893 if ((error = xfs_alloc_ag_vextent(args)))
2bd0ea18 2894 goto error0;
2bd0ea18
NS
2895 break;
2896 }
56b2de80
DC
2897
2898 trace_xfs_alloc_vextent_loopfailed(args);
2899
2bd0ea18
NS
2900 /*
2901 * Didn't work, figure out the next iteration.
2902 */
2903 if (args->agno == sagno &&
2904 type == XFS_ALLOCTYPE_START_BNO)
2905 args->type = XFS_ALLOCTYPE_THIS_AG;
5e656dbb
BN
2906 /*
2907 * For the first allocation, we can try any AG to get
2908 * space. However, if we already have allocated a
2909 * block, we don't want to try AGs whose number is below
2910 * sagno. Otherwise, we may end up with out-of-order
2911 * locking of AGF, which might cause deadlock.
2912 */
2913 if (++(args->agno) == mp->m_sb.sb_agcount) {
03aeb29d 2914 if (args->tp->t_firstblock != NULLFSBLOCK)
5e656dbb
BN
2915 args->agno = sagno;
2916 else
2917 args->agno = 0;
2918 }
5000d01d 2919 /*
2bd0ea18
NS
2920 * Reached the starting a.g., must either be done
2921 * or switch to non-trylock mode.
2922 */
2923 if (args->agno == sagno) {
a3b4a951 2924 if (flags == 0) {
2bd0ea18 2925 args->agbno = NULLAGBLOCK;
56b2de80 2926 trace_xfs_alloc_vextent_allfailed(args);
2bd0ea18
NS
2927 break;
2928 }
a3b4a951
CH
2929
2930 flags = 0;
2931 if (type == XFS_ALLOCTYPE_START_BNO) {
2932 args->agbno = XFS_FSB_TO_AGBNO(mp,
2933 args->fsbno);
2934 args->type = XFS_ALLOCTYPE_NEAR_BNO;
2bd0ea18
NS
2935 }
2936 }
56b2de80 2937 xfs_perag_put(args->pag);
2bd0ea18 2938 }
f3eda3a5 2939 if (bump_rotor) {
46eca962
NS
2940 if (args->agno == sagno)
2941 mp->m_agfrotor = (mp->m_agfrotor + 1) %
2942 (mp->m_sb.sb_agcount * rotorstep);
2943 else
2944 mp->m_agfrotor = (args->agno * rotorstep + 1) %
2945 (mp->m_sb.sb_agcount * rotorstep);
2946 }
2bd0ea18
NS
2947 break;
2948 default:
2949 ASSERT(0);
2950 /* NOTREACHED */
2951 }
2952 if (args->agbno == NULLAGBLOCK)
2953 args->fsbno = NULLFSBLOCK;
2954 else {
2955 args->fsbno = XFS_AGB_TO_FSB(mp, args->agno, args->agbno);
2956#ifdef DEBUG
2957 ASSERT(args->len >= args->minlen);
2958 ASSERT(args->len <= args->maxlen);
2959 ASSERT(args->agbno % args->alignment == 0);
2960 XFS_AG_CHECK_DADDR(mp, XFS_FSB_TO_DADDR(mp, args->fsbno),
2961 args->len);
2962#endif
9542ae13
DC
2963
2964 /* Zero the extent if we were asked to do so */
1fccd5c8 2965 if (args->datatype & XFS_ALLOC_USERDATA_ZERO) {
9542ae13
DC
2966 error = xfs_zero_extent(args->ip, args->fsbno, args->len);
2967 if (error)
2968 goto error0;
2969 }
2970
2bd0ea18 2971 }
56b2de80 2972 xfs_perag_put(args->pag);
2bd0ea18
NS
2973 return 0;
2974error0:
56b2de80 2975 xfs_perag_put(args->pag);
2bd0ea18
NS
2976 return error;
2977}
2978
2a6da3b8
DC
2979/* Ensure that the freelist is at full capacity. */
2980int
2981xfs_free_extent_fix_freelist(
2982 struct xfs_trans *tp,
2983 xfs_agnumber_t agno,
2984 struct xfs_buf **agbp)
2bd0ea18 2985{
2a6da3b8
DC
2986 struct xfs_alloc_arg args;
2987 int error;
2bd0ea18 2988
2a6da3b8 2989 memset(&args, 0, sizeof(struct xfs_alloc_arg));
2bd0ea18
NS
2990 args.tp = tp;
2991 args.mp = tp->t_mountp;
2a6da3b8 2992 args.agno = agno;
a2ceac1f
DC
2993
2994 /*
2995 * validate that the block number is legal - the enables us to detect
2996 * and handle a silent filesystem corruption rather than crashing.
2997 */
a2ceac1f 2998 if (args.agno >= args.mp->m_sb.sb_agcount)
12b53197 2999 return -EFSCORRUPTED;
a2ceac1f 3000
56b2de80 3001 args.pag = xfs_perag_get(args.mp, args.agno);
a2ceac1f
DC
3002 ASSERT(args.pag);
3003
3004 error = xfs_alloc_fix_freelist(&args, XFS_ALLOC_FLAG_FREEING);
3005 if (error)
2a6da3b8
DC
3006 goto out;
3007
3008 *agbp = args.agbp;
3009out:
3010 xfs_perag_put(args.pag);
3011 return error;
3012}
3013
3014/*
3015 * Free an extent.
3016 * Just break up the extent address and hand off to xfs_free_ag_extent
3017 * after fixing up the freelist.
3018 */
3019int /* error */
3a13f959 3020__xfs_free_extent(
2a6da3b8
DC
3021 struct xfs_trans *tp, /* transaction pointer */
3022 xfs_fsblock_t bno, /* starting block number of extent */
85aec44f 3023 xfs_extlen_t len, /* length of extent */
cf8ce220 3024 struct xfs_owner_info *oinfo, /* extent owner */
3a13f959
BF
3025 enum xfs_ag_resv_type type, /* block reservation type */
3026 bool skip_discard)
2a6da3b8
DC
3027{
3028 struct xfs_mount *mp = tp->t_mountp;
3029 struct xfs_buf *agbp;
3030 xfs_agnumber_t agno = XFS_FSB_TO_AGNO(mp, bno);
3031 xfs_agblock_t agbno = XFS_FSB_TO_AGBNO(mp, bno);
3032 int error;
3a13f959 3033 unsigned int busy_flags = 0;
2a6da3b8
DC
3034
3035 ASSERT(len != 0);
9760cac2 3036 ASSERT(type != XFS_AG_RESV_AGFL);
2a6da3b8 3037
a9da40de 3038 if (XFS_TEST_ERROR(false, mp,
e2a190dd 3039 XFS_ERRTAG_FREE_EXTENT))
a9da40de
DW
3040 return -EIO;
3041
2a6da3b8
DC
3042 error = xfs_free_extent_fix_freelist(tp, agno, &agbp);
3043 if (error)
3044 return error;
3045
3046 XFS_WANT_CORRUPTED_GOTO(mp, agbno < mp->m_sb.sb_agblocks, err);
a2ceac1f
DC
3047
3048 /* validate the extent size is legal now we have the agf locked */
2a6da3b8
DC
3049 XFS_WANT_CORRUPTED_GOTO(mp,
3050 agbno + len <= be32_to_cpu(XFS_BUF_TO_AGF(agbp)->agf_length),
3051 err);
a2ceac1f 3052
cf8ce220 3053 error = xfs_free_ag_extent(tp, agbp, agno, agbno, len, oinfo, type);
2a6da3b8
DC
3054 if (error)
3055 goto err;
3056
3a13f959
BF
3057 if (skip_discard)
3058 busy_flags |= XFS_EXTENT_BUSY_SKIP_DISCARD;
3059 xfs_extent_busy_insert(tp, agno, agbno, len, busy_flags);
2a6da3b8
DC
3060 return 0;
3061
3062err:
3063 xfs_trans_brelse(tp, agbp);
2bd0ea18
NS
3064 return error;
3065}
b3d83fa6
DW
3066
3067struct xfs_alloc_query_range_info {
3068 xfs_alloc_query_range_fn fn;
3069 void *priv;
3070};
3071
3072/* Format btree record and pass to our callback. */
3073STATIC int
3074xfs_alloc_query_range_helper(
3075 struct xfs_btree_cur *cur,
3076 union xfs_btree_rec *rec,
3077 void *priv)
3078{
3079 struct xfs_alloc_query_range_info *query = priv;
3080 struct xfs_alloc_rec_incore irec;
3081
3082 irec.ar_startblock = be32_to_cpu(rec->alloc.ar_startblock);
3083 irec.ar_blockcount = be32_to_cpu(rec->alloc.ar_blockcount);
3084 return query->fn(cur, &irec, query->priv);
3085}
3086
3087/* Find all free space within a given range of blocks. */
3088int
3089xfs_alloc_query_range(
3090 struct xfs_btree_cur *cur,
3091 struct xfs_alloc_rec_incore *low_rec,
3092 struct xfs_alloc_rec_incore *high_rec,
3093 xfs_alloc_query_range_fn fn,
3094 void *priv)
3095{
3096 union xfs_btree_irec low_brec;
3097 union xfs_btree_irec high_brec;
3098 struct xfs_alloc_query_range_info query;
3099
3100 ASSERT(cur->bc_btnum == XFS_BTNUM_BNO);
3101 low_brec.a = *low_rec;
3102 high_brec.a = *high_rec;
3103 query.priv = priv;
3104 query.fn = fn;
3105 return xfs_btree_query_range(cur, &low_brec, &high_brec,
3106 xfs_alloc_query_range_helper, &query);
3107}
7e05e856
DW
3108
3109/* Find all free space records. */
3110int
3111xfs_alloc_query_all(
3112 struct xfs_btree_cur *cur,
3113 xfs_alloc_query_range_fn fn,
3114 void *priv)
3115{
3116 struct xfs_alloc_query_range_info query;
3117
3118 ASSERT(cur->bc_btnum == XFS_BTNUM_BNO);
3119 query.priv = priv;
3120 query.fn = fn;
3121 return xfs_btree_query_all(cur, xfs_alloc_query_range_helper, &query);
3122}
9bef6258 3123
1fe41a73
DW
3124/* Is there a record covering a given extent? */
3125int
3126xfs_alloc_has_record(
3127 struct xfs_btree_cur *cur,
3128 xfs_agblock_t bno,
3129 xfs_extlen_t len,
3130 bool *exists)
3131{
3132 union xfs_btree_irec low;
3133 union xfs_btree_irec high;
3134
3135 memset(&low, 0, sizeof(low));
3136 low.a.ar_startblock = bno;
3137 memset(&high, 0xFF, sizeof(high));
3138 high.a.ar_startblock = bno + len - 1;
3139
3140 return xfs_btree_has_record(cur, &low, &high, exists);
3141}
71a98c66
DW
3142
3143/*
3144 * Walk all the blocks in the AGFL. The @walk_fn can return any negative
3145 * error code or XFS_BTREE_QUERY_RANGE_ABORT.
3146 */
3147int
3148xfs_agfl_walk(
3149 struct xfs_mount *mp,
3150 struct xfs_agf *agf,
3151 struct xfs_buf *agflbp,
3152 xfs_agfl_walk_fn walk_fn,
3153 void *priv)
3154{
3155 __be32 *agfl_bno;
3156 unsigned int i;
3157 int error;
3158
3159 agfl_bno = XFS_BUF_TO_AGFL_BNO(mp, agflbp);
3160 i = be32_to_cpu(agf->agf_flfirst);
3161
3162 /* Nothing to walk in an empty AGFL. */
3163 if (agf->agf_flcount == cpu_to_be32(0))
3164 return 0;
3165
3166 /* Otherwise, walk from first to last, wrapping as needed. */
3167 for (;;) {
3168 error = walk_fn(mp, be32_to_cpu(agfl_bno[i]), priv);
3169 if (error)
3170 return error;
3171 if (i == be32_to_cpu(agf->agf_fllast))
3172 break;
3173 if (++i == xfs_agfl_size(mp))
3174 i = 0;
3175 }
3176
3177 return 0;
3178}