xfs: remove old and redundant comment in xfs_mount_validate_sb
[deliverable/linux.git] / fs / xfs / libxfs / xfs_alloc.c
CommitLineData
1da177e4 1/*
7b718769
NS
2 * Copyright (c) 2000-2002,2005 Silicon Graphics, Inc.
3 * All Rights Reserved.
1da177e4 4 *
7b718769
NS
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License as
1da177e4
LT
7 * published by the Free Software Foundation.
8 *
7b718769
NS
9 * This program is distributed in the hope that it would be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
1da177e4 13 *
7b718769
NS
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write the Free Software Foundation,
16 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
1da177e4 17 */
1da177e4 18#include "xfs.h"
a844f451 19#include "xfs_fs.h"
70a9883c 20#include "xfs_format.h"
239880ef 21#include "xfs_log_format.h"
70a9883c 22#include "xfs_shared.h"
239880ef 23#include "xfs_trans_resv.h"
a844f451 24#include "xfs_bit.h"
1da177e4 25#include "xfs_sb.h"
1da177e4 26#include "xfs_mount.h"
a844f451 27#include "xfs_inode.h"
1da177e4 28#include "xfs_btree.h"
a4fbe6ab 29#include "xfs_alloc_btree.h"
1da177e4 30#include "xfs_alloc.h"
efc27b52 31#include "xfs_extent_busy.h"
1da177e4 32#include "xfs_error.h"
4e0e6040 33#include "xfs_cksum.h"
0b1b213f 34#include "xfs_trace.h"
239880ef 35#include "xfs_trans.h"
4e0e6040 36#include "xfs_buf_item.h"
239880ef 37#include "xfs_log.h"
1da177e4 38
c999a223 39struct workqueue_struct *xfs_alloc_wq;
1da177e4
LT
40
41#define XFS_ABSDIFF(a,b) (((a) <= (b)) ? ((b) - (a)) : ((a) - (b)))
42
43#define XFSA_FIXUP_BNO_OK 1
44#define XFSA_FIXUP_CNT_OK 2
45
1da177e4
LT
46STATIC int xfs_alloc_ag_vextent_exact(xfs_alloc_arg_t *);
47STATIC int xfs_alloc_ag_vextent_near(xfs_alloc_arg_t *);
48STATIC int xfs_alloc_ag_vextent_size(xfs_alloc_arg_t *);
49STATIC int xfs_alloc_ag_vextent_small(xfs_alloc_arg_t *,
e26f0501 50 xfs_btree_cur_t *, xfs_agblock_t *, xfs_extlen_t *, int *);
1da177e4 51
fe033cc8
CH
52/*
53 * Lookup the record equal to [bno, len] in the btree given by cur.
54 */
55STATIC int /* error */
56xfs_alloc_lookup_eq(
57 struct xfs_btree_cur *cur, /* btree cursor */
58 xfs_agblock_t bno, /* starting block of extent */
59 xfs_extlen_t len, /* length of extent */
60 int *stat) /* success/failure */
61{
62 cur->bc_rec.a.ar_startblock = bno;
63 cur->bc_rec.a.ar_blockcount = len;
64 return xfs_btree_lookup(cur, XFS_LOOKUP_EQ, stat);
65}
66
67/*
68 * Lookup the first record greater than or equal to [bno, len]
69 * in the btree given by cur.
70 */
a66d6363 71int /* error */
fe033cc8
CH
72xfs_alloc_lookup_ge(
73 struct xfs_btree_cur *cur, /* btree cursor */
74 xfs_agblock_t bno, /* starting block of extent */
75 xfs_extlen_t len, /* length of extent */
76 int *stat) /* success/failure */
77{
78 cur->bc_rec.a.ar_startblock = bno;
79 cur->bc_rec.a.ar_blockcount = len;
80 return xfs_btree_lookup(cur, XFS_LOOKUP_GE, stat);
81}
82
83/*
84 * Lookup the first record less than or equal to [bno, len]
85 * in the btree given by cur.
86 */
a46db608 87int /* error */
fe033cc8
CH
88xfs_alloc_lookup_le(
89 struct xfs_btree_cur *cur, /* btree cursor */
90 xfs_agblock_t bno, /* starting block of extent */
91 xfs_extlen_t len, /* length of extent */
92 int *stat) /* success/failure */
93{
94 cur->bc_rec.a.ar_startblock = bno;
95 cur->bc_rec.a.ar_blockcount = len;
96 return xfs_btree_lookup(cur, XFS_LOOKUP_LE, stat);
97}
98
278d0ca1
CH
99/*
100 * Update the record referred to by cur to the value given
101 * by [bno, len].
102 * This either works (return 0) or gets an EFSCORRUPTED error.
103 */
104STATIC int /* error */
105xfs_alloc_update(
106 struct xfs_btree_cur *cur, /* btree cursor */
107 xfs_agblock_t bno, /* starting block of extent */
108 xfs_extlen_t len) /* length of extent */
109{
110 union xfs_btree_rec rec;
111
112 rec.alloc.ar_startblock = cpu_to_be32(bno);
113 rec.alloc.ar_blockcount = cpu_to_be32(len);
114 return xfs_btree_update(cur, &rec);
115}
fe033cc8 116
8cc938fe
CH
117/*
118 * Get the data from the pointed-to record.
119 */
a46db608 120int /* error */
8cc938fe
CH
121xfs_alloc_get_rec(
122 struct xfs_btree_cur *cur, /* btree cursor */
123 xfs_agblock_t *bno, /* output: starting block of extent */
124 xfs_extlen_t *len, /* output: length of extent */
125 int *stat) /* output: success/failure */
126{
127 union xfs_btree_rec *rec;
128 int error;
129
130 error = xfs_btree_get_rec(cur, &rec, stat);
131 if (!error && *stat == 1) {
132 *bno = be32_to_cpu(rec->alloc.ar_startblock);
133 *len = be32_to_cpu(rec->alloc.ar_blockcount);
134 }
135 return error;
136}
137
1da177e4
LT
138/*
139 * Compute aligned version of the found extent.
140 * Takes alignment and min length into account.
141 */
12375c82 142STATIC void
1da177e4 143xfs_alloc_compute_aligned(
86fa8af6 144 xfs_alloc_arg_t *args, /* allocation argument structure */
1da177e4
LT
145 xfs_agblock_t foundbno, /* starting block in found extent */
146 xfs_extlen_t foundlen, /* length in found extent */
1da177e4
LT
147 xfs_agblock_t *resbno, /* result block number */
148 xfs_extlen_t *reslen) /* result length */
149{
150 xfs_agblock_t bno;
1da177e4
LT
151 xfs_extlen_t len;
152
e26f0501 153 /* Trim busy sections out of found extent */
4ecbfe63 154 xfs_extent_busy_trim(args, foundbno, foundlen, &bno, &len);
e26f0501
CH
155
156 if (args->alignment > 1 && len >= args->minlen) {
157 xfs_agblock_t aligned_bno = roundup(bno, args->alignment);
158 xfs_extlen_t diff = aligned_bno - bno;
159
160 *resbno = aligned_bno;
161 *reslen = diff >= len ? 0 : len - diff;
1da177e4 162 } else {
e26f0501
CH
163 *resbno = bno;
164 *reslen = len;
1da177e4 165 }
1da177e4
LT
166}
167
168/*
169 * Compute best start block and diff for "near" allocations.
170 * freelen >= wantlen already checked by caller.
171 */
172STATIC xfs_extlen_t /* difference value (absolute) */
173xfs_alloc_compute_diff(
174 xfs_agblock_t wantbno, /* target starting block */
175 xfs_extlen_t wantlen, /* target length */
176 xfs_extlen_t alignment, /* target alignment */
211d022c 177 char userdata, /* are we allocating data? */
1da177e4
LT
178 xfs_agblock_t freebno, /* freespace's starting block */
179 xfs_extlen_t freelen, /* freespace's length */
180 xfs_agblock_t *newbnop) /* result: best start block from free */
181{
182 xfs_agblock_t freeend; /* end of freespace extent */
183 xfs_agblock_t newbno1; /* return block number */
184 xfs_agblock_t newbno2; /* other new block number */
185 xfs_extlen_t newlen1=0; /* length with newbno1 */
186 xfs_extlen_t newlen2=0; /* length with newbno2 */
187 xfs_agblock_t wantend; /* end of target extent */
188
189 ASSERT(freelen >= wantlen);
190 freeend = freebno + freelen;
191 wantend = wantbno + wantlen;
211d022c
JK
192 /*
193 * We want to allocate from the start of a free extent if it is past
194 * the desired block or if we are allocating user data and the free
195 * extent is before desired block. The second case is there to allow
196 * for contiguous allocation from the remaining free space if the file
197 * grows in the short term.
198 */
199 if (freebno >= wantbno || (userdata && freeend < wantend)) {
1da177e4
LT
200 if ((newbno1 = roundup(freebno, alignment)) >= freeend)
201 newbno1 = NULLAGBLOCK;
202 } else if (freeend >= wantend && alignment > 1) {
203 newbno1 = roundup(wantbno, alignment);
204 newbno2 = newbno1 - alignment;
205 if (newbno1 >= freeend)
206 newbno1 = NULLAGBLOCK;
207 else
208 newlen1 = XFS_EXTLEN_MIN(wantlen, freeend - newbno1);
209 if (newbno2 < freebno)
210 newbno2 = NULLAGBLOCK;
211 else
212 newlen2 = XFS_EXTLEN_MIN(wantlen, freeend - newbno2);
213 if (newbno1 != NULLAGBLOCK && newbno2 != NULLAGBLOCK) {
214 if (newlen1 < newlen2 ||
215 (newlen1 == newlen2 &&
216 XFS_ABSDIFF(newbno1, wantbno) >
217 XFS_ABSDIFF(newbno2, wantbno)))
218 newbno1 = newbno2;
219 } else if (newbno2 != NULLAGBLOCK)
220 newbno1 = newbno2;
221 } else if (freeend >= wantend) {
222 newbno1 = wantbno;
223 } else if (alignment > 1) {
224 newbno1 = roundup(freeend - wantlen, alignment);
225 if (newbno1 > freeend - wantlen &&
226 newbno1 - alignment >= freebno)
227 newbno1 -= alignment;
228 else if (newbno1 >= freeend)
229 newbno1 = NULLAGBLOCK;
230 } else
231 newbno1 = freeend - wantlen;
232 *newbnop = newbno1;
233 return newbno1 == NULLAGBLOCK ? 0 : XFS_ABSDIFF(newbno1, wantbno);
234}
235
236/*
237 * Fix up the length, based on mod and prod.
238 * len should be k * prod + mod for some k.
239 * If len is too small it is returned unchanged.
240 * If len hits maxlen it is left alone.
241 */
242STATIC void
243xfs_alloc_fix_len(
244 xfs_alloc_arg_t *args) /* allocation argument structure */
245{
246 xfs_extlen_t k;
247 xfs_extlen_t rlen;
248
249 ASSERT(args->mod < args->prod);
250 rlen = args->len;
251 ASSERT(rlen >= args->minlen);
252 ASSERT(rlen <= args->maxlen);
253 if (args->prod <= 1 || rlen < args->mod || rlen == args->maxlen ||
254 (args->mod == 0 && rlen < args->prod))
255 return;
256 k = rlen % args->prod;
257 if (k == args->mod)
258 return;
30265117
JK
259 if (k > args->mod)
260 rlen = rlen - (k - args->mod);
261 else
262 rlen = rlen - args->prod + (args->mod - k);
263 if ((int)rlen < (int)args->minlen)
264 return;
265 ASSERT(rlen >= args->minlen && rlen <= args->maxlen);
266 ASSERT(rlen % args->prod == args->mod);
1da177e4
LT
267 args->len = rlen;
268}
269
270/*
271 * Fix up length if there is too little space left in the a.g.
272 * Return 1 if ok, 0 if too little, should give up.
273 */
274STATIC int
275xfs_alloc_fix_minleft(
276 xfs_alloc_arg_t *args) /* allocation argument structure */
277{
278 xfs_agf_t *agf; /* a.g. freelist header */
279 int diff; /* free space difference */
280
281 if (args->minleft == 0)
282 return 1;
283 agf = XFS_BUF_TO_AGF(args->agbp);
16259e7d 284 diff = be32_to_cpu(agf->agf_freeblks)
1da177e4
LT
285 - args->len - args->minleft;
286 if (diff >= 0)
287 return 1;
288 args->len += diff; /* shrink the allocated space */
289 if (args->len >= args->minlen)
290 return 1;
291 args->agbno = NULLAGBLOCK;
292 return 0;
293}
294
295/*
296 * Update the two btrees, logically removing from freespace the extent
297 * starting at rbno, rlen blocks. The extent is contained within the
298 * actual (current) free extent fbno for flen blocks.
299 * Flags are passed in indicating whether the cursors are set to the
300 * relevant records.
301 */
302STATIC int /* error code */
303xfs_alloc_fixup_trees(
304 xfs_btree_cur_t *cnt_cur, /* cursor for by-size btree */
305 xfs_btree_cur_t *bno_cur, /* cursor for by-block btree */
306 xfs_agblock_t fbno, /* starting block of free extent */
307 xfs_extlen_t flen, /* length of free extent */
308 xfs_agblock_t rbno, /* starting block of returned extent */
309 xfs_extlen_t rlen, /* length of returned extent */
310 int flags) /* flags, XFSA_FIXUP_... */
311{
312 int error; /* error code */
313 int i; /* operation results */
314 xfs_agblock_t nfbno1; /* first new free startblock */
315 xfs_agblock_t nfbno2; /* second new free startblock */
316 xfs_extlen_t nflen1=0; /* first new free length */
317 xfs_extlen_t nflen2=0; /* second new free length */
5fb5aeee
ES
318 struct xfs_mount *mp;
319
320 mp = cnt_cur->bc_mp;
1da177e4
LT
321
322 /*
323 * Look up the record in the by-size tree if necessary.
324 */
325 if (flags & XFSA_FIXUP_CNT_OK) {
326#ifdef DEBUG
327 if ((error = xfs_alloc_get_rec(cnt_cur, &nfbno1, &nflen1, &i)))
328 return error;
5fb5aeee 329 XFS_WANT_CORRUPTED_RETURN(mp,
1da177e4
LT
330 i == 1 && nfbno1 == fbno && nflen1 == flen);
331#endif
332 } else {
333 if ((error = xfs_alloc_lookup_eq(cnt_cur, fbno, flen, &i)))
334 return error;
5fb5aeee 335 XFS_WANT_CORRUPTED_RETURN(mp, i == 1);
1da177e4
LT
336 }
337 /*
338 * Look up the record in the by-block tree if necessary.
339 */
340 if (flags & XFSA_FIXUP_BNO_OK) {
341#ifdef DEBUG
342 if ((error = xfs_alloc_get_rec(bno_cur, &nfbno1, &nflen1, &i)))
343 return error;
5fb5aeee 344 XFS_WANT_CORRUPTED_RETURN(mp,
1da177e4
LT
345 i == 1 && nfbno1 == fbno && nflen1 == flen);
346#endif
347 } else {
348 if ((error = xfs_alloc_lookup_eq(bno_cur, fbno, flen, &i)))
349 return error;
5fb5aeee 350 XFS_WANT_CORRUPTED_RETURN(mp, i == 1);
1da177e4 351 }
7cc95a82 352
1da177e4 353#ifdef DEBUG
7cc95a82
CH
354 if (bno_cur->bc_nlevels == 1 && cnt_cur->bc_nlevels == 1) {
355 struct xfs_btree_block *bnoblock;
356 struct xfs_btree_block *cntblock;
357
358 bnoblock = XFS_BUF_TO_BLOCK(bno_cur->bc_bufs[0]);
359 cntblock = XFS_BUF_TO_BLOCK(cnt_cur->bc_bufs[0]);
1da177e4 360
5fb5aeee 361 XFS_WANT_CORRUPTED_RETURN(mp,
7cc95a82 362 bnoblock->bb_numrecs == cntblock->bb_numrecs);
1da177e4
LT
363 }
364#endif
7cc95a82 365
1da177e4
LT
366 /*
367 * Deal with all four cases: the allocated record is contained
368 * within the freespace record, so we can have new freespace
369 * at either (or both) end, or no freespace remaining.
370 */
371 if (rbno == fbno && rlen == flen)
372 nfbno1 = nfbno2 = NULLAGBLOCK;
373 else if (rbno == fbno) {
374 nfbno1 = rbno + rlen;
375 nflen1 = flen - rlen;
376 nfbno2 = NULLAGBLOCK;
377 } else if (rbno + rlen == fbno + flen) {
378 nfbno1 = fbno;
379 nflen1 = flen - rlen;
380 nfbno2 = NULLAGBLOCK;
381 } else {
382 nfbno1 = fbno;
383 nflen1 = rbno - fbno;
384 nfbno2 = rbno + rlen;
385 nflen2 = (fbno + flen) - nfbno2;
386 }
387 /*
388 * Delete the entry from the by-size btree.
389 */
91cca5df 390 if ((error = xfs_btree_delete(cnt_cur, &i)))
1da177e4 391 return error;
5fb5aeee 392 XFS_WANT_CORRUPTED_RETURN(mp, i == 1);
1da177e4
LT
393 /*
394 * Add new by-size btree entry(s).
395 */
396 if (nfbno1 != NULLAGBLOCK) {
397 if ((error = xfs_alloc_lookup_eq(cnt_cur, nfbno1, nflen1, &i)))
398 return error;
5fb5aeee 399 XFS_WANT_CORRUPTED_RETURN(mp, i == 0);
4b22a571 400 if ((error = xfs_btree_insert(cnt_cur, &i)))
1da177e4 401 return error;
5fb5aeee 402 XFS_WANT_CORRUPTED_RETURN(mp, i == 1);
1da177e4
LT
403 }
404 if (nfbno2 != NULLAGBLOCK) {
405 if ((error = xfs_alloc_lookup_eq(cnt_cur, nfbno2, nflen2, &i)))
406 return error;
5fb5aeee 407 XFS_WANT_CORRUPTED_RETURN(mp, i == 0);
4b22a571 408 if ((error = xfs_btree_insert(cnt_cur, &i)))
1da177e4 409 return error;
5fb5aeee 410 XFS_WANT_CORRUPTED_RETURN(mp, i == 1);
1da177e4
LT
411 }
412 /*
413 * Fix up the by-block btree entry(s).
414 */
415 if (nfbno1 == NULLAGBLOCK) {
416 /*
417 * No remaining freespace, just delete the by-block tree entry.
418 */
91cca5df 419 if ((error = xfs_btree_delete(bno_cur, &i)))
1da177e4 420 return error;
5fb5aeee 421 XFS_WANT_CORRUPTED_RETURN(mp, i == 1);
1da177e4
LT
422 } else {
423 /*
424 * Update the by-block entry to start later|be shorter.
425 */
426 if ((error = xfs_alloc_update(bno_cur, nfbno1, nflen1)))
427 return error;
428 }
429 if (nfbno2 != NULLAGBLOCK) {
430 /*
431 * 2 resulting free entries, need to add one.
432 */
433 if ((error = xfs_alloc_lookup_eq(bno_cur, nfbno2, nflen2, &i)))
434 return error;
5fb5aeee 435 XFS_WANT_CORRUPTED_RETURN(mp, i == 0);
4b22a571 436 if ((error = xfs_btree_insert(bno_cur, &i)))
1da177e4 437 return error;
5fb5aeee 438 XFS_WANT_CORRUPTED_RETURN(mp, i == 1);
1da177e4
LT
439 }
440 return 0;
441}
442
77c95bba 443static bool
612cfbfe 444xfs_agfl_verify(
bb80c6d7
DC
445 struct xfs_buf *bp)
446{
bb80c6d7
DC
447 struct xfs_mount *mp = bp->b_target->bt_mount;
448 struct xfs_agfl *agfl = XFS_BUF_TO_AGFL(bp);
bb80c6d7
DC
449 int i;
450
77c95bba
CH
451 if (!uuid_equal(&agfl->agfl_uuid, &mp->m_sb.sb_uuid))
452 return false;
453 if (be32_to_cpu(agfl->agfl_magicnum) != XFS_AGFL_MAGIC)
454 return false;
455 /*
456 * during growfs operations, the perag is not fully initialised,
457 * so we can't use it for any useful checking. growfs ensures we can't
458 * use it by using uncached buffers that don't have the perag attached
459 * so we can detect and avoid this problem.
460 */
461 if (bp->b_pag && be32_to_cpu(agfl->agfl_seqno) != bp->b_pag->pag_agno)
462 return false;
463
bb80c6d7 464 for (i = 0; i < XFS_AGFL_SIZE(mp); i++) {
77c95bba 465 if (be32_to_cpu(agfl->agfl_bno[i]) != NULLAGBLOCK &&
bb80c6d7 466 be32_to_cpu(agfl->agfl_bno[i]) >= mp->m_sb.sb_agblocks)
77c95bba 467 return false;
bb80c6d7 468 }
77c95bba
CH
469 return true;
470}
471
472static void
473xfs_agfl_read_verify(
474 struct xfs_buf *bp)
475{
476 struct xfs_mount *mp = bp->b_target->bt_mount;
77c95bba
CH
477
478 /*
479 * There is no verification of non-crc AGFLs because mkfs does not
480 * initialise the AGFL to zero or NULL. Hence the only valid part of the
481 * AGFL is what the AGF says is active. We can't get to the AGF, so we
482 * can't verify just those entries are valid.
483 */
484 if (!xfs_sb_version_hascrc(&mp->m_sb))
485 return;
486
ce5028cf 487 if (!xfs_buf_verify_cksum(bp, XFS_AGFL_CRC_OFF))
2451337d 488 xfs_buf_ioerror(bp, -EFSBADCRC);
ce5028cf 489 else if (!xfs_agfl_verify(bp))
2451337d 490 xfs_buf_ioerror(bp, -EFSCORRUPTED);
ce5028cf
ES
491
492 if (bp->b_error)
493 xfs_verifier_error(bp);
612cfbfe
DC
494}
495
1813dd64 496static void
612cfbfe
DC
497xfs_agfl_write_verify(
498 struct xfs_buf *bp)
499{
77c95bba
CH
500 struct xfs_mount *mp = bp->b_target->bt_mount;
501 struct xfs_buf_log_item *bip = bp->b_fspriv;
612cfbfe 502
77c95bba
CH
503 /* no verification of non-crc AGFLs */
504 if (!xfs_sb_version_hascrc(&mp->m_sb))
505 return;
506
507 if (!xfs_agfl_verify(bp)) {
2451337d 508 xfs_buf_ioerror(bp, -EFSCORRUPTED);
ce5028cf 509 xfs_verifier_error(bp);
77c95bba
CH
510 return;
511 }
512
513 if (bip)
514 XFS_BUF_TO_AGFL(bp)->agfl_lsn = cpu_to_be64(bip->bli_item.li_lsn);
515
f1dbcd7e 516 xfs_buf_update_cksum(bp, XFS_AGFL_CRC_OFF);
bb80c6d7
DC
517}
518
1813dd64
DC
519const struct xfs_buf_ops xfs_agfl_buf_ops = {
520 .verify_read = xfs_agfl_read_verify,
521 .verify_write = xfs_agfl_write_verify,
522};
523
1da177e4
LT
524/*
525 * Read in the allocation group free block array.
526 */
527STATIC int /* error */
528xfs_alloc_read_agfl(
529 xfs_mount_t *mp, /* mount point structure */
530 xfs_trans_t *tp, /* transaction pointer */
531 xfs_agnumber_t agno, /* allocation group number */
532 xfs_buf_t **bpp) /* buffer for the ag free block array */
533{
534 xfs_buf_t *bp; /* return value */
535 int error;
536
537 ASSERT(agno != NULLAGNUMBER);
538 error = xfs_trans_read_buf(
539 mp, tp, mp->m_ddev_targp,
540 XFS_AG_DADDR(mp, agno, XFS_AGFL_DADDR(mp)),
1813dd64 541 XFS_FSS_TO_BB(mp, 1), 0, &bp, &xfs_agfl_buf_ops);
1da177e4
LT
542 if (error)
543 return error;
38f23232 544 xfs_buf_set_ref(bp, XFS_AGFL_REF);
1da177e4
LT
545 *bpp = bp;
546 return 0;
547}
548
ecb6928f
CH
549STATIC int
550xfs_alloc_update_counters(
551 struct xfs_trans *tp,
552 struct xfs_perag *pag,
553 struct xfs_buf *agbp,
554 long len)
555{
556 struct xfs_agf *agf = XFS_BUF_TO_AGF(agbp);
557
558 pag->pagf_freeblks += len;
559 be32_add_cpu(&agf->agf_freeblks, len);
560
561 xfs_trans_agblocks_delta(tp, len);
562 if (unlikely(be32_to_cpu(agf->agf_freeblks) >
563 be32_to_cpu(agf->agf_length)))
2451337d 564 return -EFSCORRUPTED;
ecb6928f
CH
565
566 xfs_alloc_log_agf(tp, agbp, XFS_AGF_FREEBLKS);
567 return 0;
568}
569
1da177e4
LT
570/*
571 * Allocation group level functions.
572 */
573
574/*
575 * Allocate a variable extent in the allocation group agno.
576 * Type and bno are used to determine where in the allocation group the
577 * extent will start.
578 * Extent's length (returned in *len) will be between minlen and maxlen,
579 * and of the form k * prod + mod unless there's nothing that large.
580 * Return the starting a.g. block, or NULLAGBLOCK if we can't do it.
581 */
582STATIC int /* error */
583xfs_alloc_ag_vextent(
584 xfs_alloc_arg_t *args) /* argument structure for allocation */
585{
586 int error=0;
1da177e4
LT
587
588 ASSERT(args->minlen > 0);
589 ASSERT(args->maxlen > 0);
590 ASSERT(args->minlen <= args->maxlen);
591 ASSERT(args->mod < args->prod);
592 ASSERT(args->alignment > 0);
593 /*
594 * Branch to correct routine based on the type.
595 */
596 args->wasfromfl = 0;
597 switch (args->type) {
598 case XFS_ALLOCTYPE_THIS_AG:
599 error = xfs_alloc_ag_vextent_size(args);
600 break;
601 case XFS_ALLOCTYPE_NEAR_BNO:
602 error = xfs_alloc_ag_vextent_near(args);
603 break;
604 case XFS_ALLOCTYPE_THIS_BNO:
605 error = xfs_alloc_ag_vextent_exact(args);
606 break;
607 default:
608 ASSERT(0);
609 /* NOTREACHED */
610 }
ecb6928f
CH
611
612 if (error || args->agbno == NULLAGBLOCK)
1da177e4 613 return error;
ecb6928f
CH
614
615 ASSERT(args->len >= args->minlen);
616 ASSERT(args->len <= args->maxlen);
617 ASSERT(!args->wasfromfl || !args->isfl);
618 ASSERT(args->agbno % args->alignment == 0);
619
620 if (!args->wasfromfl) {
621 error = xfs_alloc_update_counters(args->tp, args->pag,
622 args->agbp,
623 -((long)(args->len)));
624 if (error)
625 return error;
626
4ecbfe63 627 ASSERT(!xfs_extent_busy_search(args->mp, args->agno,
e26f0501 628 args->agbno, args->len));
1da177e4 629 }
ecb6928f
CH
630
631 if (!args->isfl) {
632 xfs_trans_mod_sb(args->tp, args->wasdel ?
633 XFS_TRANS_SB_RES_FDBLOCKS :
634 XFS_TRANS_SB_FDBLOCKS,
635 -((long)(args->len)));
636 }
637
638 XFS_STATS_INC(xs_allocx);
639 XFS_STATS_ADD(xs_allocb, args->len);
640 return error;
1da177e4
LT
641}
642
643/*
644 * Allocate a variable extent at exactly agno/bno.
645 * Extent's length (returned in *len) will be between minlen and maxlen,
646 * and of the form k * prod + mod unless there's nothing that large.
647 * Return the starting a.g. block (bno), or NULLAGBLOCK if we can't do it.
648 */
649STATIC int /* error */
650xfs_alloc_ag_vextent_exact(
651 xfs_alloc_arg_t *args) /* allocation argument structure */
652{
653 xfs_btree_cur_t *bno_cur;/* by block-number btree cursor */
654 xfs_btree_cur_t *cnt_cur;/* by count btree cursor */
1da177e4
LT
655 int error;
656 xfs_agblock_t fbno; /* start block of found extent */
1da177e4 657 xfs_extlen_t flen; /* length of found extent */
e26f0501
CH
658 xfs_agblock_t tbno; /* start block of trimmed extent */
659 xfs_extlen_t tlen; /* length of trimmed extent */
660 xfs_agblock_t tend; /* end block of trimmed extent */
1da177e4 661 int i; /* success/failure of operation */
1da177e4
LT
662
663 ASSERT(args->alignment == 1);
9f9baab3 664
1da177e4
LT
665 /*
666 * Allocate/initialize a cursor for the by-number freespace btree.
667 */
561f7d17 668 bno_cur = xfs_allocbt_init_cursor(args->mp, args->tp, args->agbp,
9f9baab3
CH
669 args->agno, XFS_BTNUM_BNO);
670
1da177e4
LT
671 /*
672 * Lookup bno and minlen in the btree (minlen is irrelevant, really).
673 * Look for the closest free block <= bno, it must contain bno
674 * if any free block does.
675 */
9f9baab3
CH
676 error = xfs_alloc_lookup_le(bno_cur, args->agbno, args->minlen, &i);
677 if (error)
1da177e4 678 goto error0;
9f9baab3
CH
679 if (!i)
680 goto not_found;
681
1da177e4
LT
682 /*
683 * Grab the freespace record.
684 */
9f9baab3
CH
685 error = xfs_alloc_get_rec(bno_cur, &fbno, &flen, &i);
686 if (error)
1da177e4 687 goto error0;
c29aad41 688 XFS_WANT_CORRUPTED_GOTO(args->mp, i == 1, error0);
1da177e4 689 ASSERT(fbno <= args->agbno);
9f9baab3 690
1da177e4 691 /*
e26f0501 692 * Check for overlapping busy extents.
1da177e4 693 */
4ecbfe63 694 xfs_extent_busy_trim(args, fbno, flen, &tbno, &tlen);
e26f0501
CH
695
696 /*
697 * Give up if the start of the extent is busy, or the freespace isn't
698 * long enough for the minimum request.
699 */
700 if (tbno > args->agbno)
701 goto not_found;
702 if (tlen < args->minlen)
703 goto not_found;
704 tend = tbno + tlen;
705 if (tend < args->agbno + args->minlen)
9f9baab3
CH
706 goto not_found;
707
1da177e4
LT
708 /*
709 * End of extent will be smaller of the freespace end and the
710 * maximal requested end.
9f9baab3 711 *
1da177e4
LT
712 * Fix the length according to mod and prod if given.
713 */
81463b1c
CS
714 args->len = XFS_AGBLOCK_MIN(tend, args->agbno + args->maxlen)
715 - args->agbno;
1da177e4 716 xfs_alloc_fix_len(args);
9f9baab3
CH
717 if (!xfs_alloc_fix_minleft(args))
718 goto not_found;
719
81463b1c 720 ASSERT(args->agbno + args->len <= tend);
9f9baab3 721
1da177e4 722 /*
81463b1c 723 * We are allocating agbno for args->len
1da177e4
LT
724 * Allocate/initialize a cursor for the by-size btree.
725 */
561f7d17
CH
726 cnt_cur = xfs_allocbt_init_cursor(args->mp, args->tp, args->agbp,
727 args->agno, XFS_BTNUM_CNT);
1da177e4 728 ASSERT(args->agbno + args->len <=
16259e7d 729 be32_to_cpu(XFS_BUF_TO_AGF(args->agbp)->agf_length));
9f9baab3
CH
730 error = xfs_alloc_fixup_trees(cnt_cur, bno_cur, fbno, flen, args->agbno,
731 args->len, XFSA_FIXUP_BNO_OK);
732 if (error) {
1da177e4
LT
733 xfs_btree_del_cursor(cnt_cur, XFS_BTREE_ERROR);
734 goto error0;
735 }
9f9baab3 736
1da177e4
LT
737 xfs_btree_del_cursor(bno_cur, XFS_BTREE_NOERROR);
738 xfs_btree_del_cursor(cnt_cur, XFS_BTREE_NOERROR);
0b1b213f 739
1da177e4 740 args->wasfromfl = 0;
9f9baab3
CH
741 trace_xfs_alloc_exact_done(args);
742 return 0;
743
744not_found:
745 /* Didn't find it, return null. */
746 xfs_btree_del_cursor(bno_cur, XFS_BTREE_NOERROR);
747 args->agbno = NULLAGBLOCK;
748 trace_xfs_alloc_exact_notfound(args);
1da177e4
LT
749 return 0;
750
751error0:
752 xfs_btree_del_cursor(bno_cur, XFS_BTREE_ERROR);
0b1b213f 753 trace_xfs_alloc_exact_error(args);
1da177e4
LT
754 return error;
755}
756
489a150f
CH
757/*
758 * Search the btree in a given direction via the search cursor and compare
759 * the records found against the good extent we've already found.
760 */
761STATIC int
762xfs_alloc_find_best_extent(
763 struct xfs_alloc_arg *args, /* allocation argument structure */
764 struct xfs_btree_cur **gcur, /* good cursor */
765 struct xfs_btree_cur **scur, /* searching cursor */
766 xfs_agblock_t gdiff, /* difference for search comparison */
767 xfs_agblock_t *sbno, /* extent found by search */
e26f0501
CH
768 xfs_extlen_t *slen, /* extent length */
769 xfs_agblock_t *sbnoa, /* aligned extent found by search */
770 xfs_extlen_t *slena, /* aligned extent length */
489a150f
CH
771 int dir) /* 0 = search right, 1 = search left */
772{
489a150f
CH
773 xfs_agblock_t new;
774 xfs_agblock_t sdiff;
775 int error;
776 int i;
777
778 /* The good extent is perfect, no need to search. */
779 if (!gdiff)
780 goto out_use_good;
781
782 /*
783 * Look until we find a better one, run out of space or run off the end.
784 */
785 do {
786 error = xfs_alloc_get_rec(*scur, sbno, slen, &i);
787 if (error)
788 goto error0;
c29aad41 789 XFS_WANT_CORRUPTED_GOTO(args->mp, i == 1, error0);
e26f0501 790 xfs_alloc_compute_aligned(args, *sbno, *slen, sbnoa, slena);
489a150f
CH
791
792 /*
793 * The good extent is closer than this one.
794 */
795 if (!dir) {
e26f0501 796 if (*sbnoa >= args->agbno + gdiff)
489a150f
CH
797 goto out_use_good;
798 } else {
e26f0501 799 if (*sbnoa <= args->agbno - gdiff)
489a150f
CH
800 goto out_use_good;
801 }
802
803 /*
804 * Same distance, compare length and pick the best.
805 */
806 if (*slena >= args->minlen) {
807 args->len = XFS_EXTLEN_MIN(*slena, args->maxlen);
808 xfs_alloc_fix_len(args);
809
810 sdiff = xfs_alloc_compute_diff(args->agbno, args->len,
211d022c
JK
811 args->alignment,
812 args->userdata, *sbnoa,
e26f0501 813 *slena, &new);
489a150f
CH
814
815 /*
816 * Choose closer size and invalidate other cursor.
817 */
818 if (sdiff < gdiff)
819 goto out_use_search;
820 goto out_use_good;
821 }
822
823 if (!dir)
824 error = xfs_btree_increment(*scur, 0, &i);
825 else
826 error = xfs_btree_decrement(*scur, 0, &i);
827 if (error)
828 goto error0;
829 } while (i);
830
831out_use_good:
832 xfs_btree_del_cursor(*scur, XFS_BTREE_NOERROR);
833 *scur = NULL;
834 return 0;
835
836out_use_search:
837 xfs_btree_del_cursor(*gcur, XFS_BTREE_NOERROR);
838 *gcur = NULL;
839 return 0;
840
841error0:
842 /* caller invalidates cursors */
843 return error;
844}
845
1da177e4
LT
846/*
847 * Allocate a variable extent near bno in the allocation group agno.
848 * Extent's length (returned in len) will be between minlen and maxlen,
849 * and of the form k * prod + mod unless there's nothing that large.
850 * Return the starting a.g. block, or NULLAGBLOCK if we can't do it.
851 */
852STATIC int /* error */
853xfs_alloc_ag_vextent_near(
854 xfs_alloc_arg_t *args) /* allocation argument structure */
855{
856 xfs_btree_cur_t *bno_cur_gt; /* cursor for bno btree, right side */
857 xfs_btree_cur_t *bno_cur_lt; /* cursor for bno btree, left side */
858 xfs_btree_cur_t *cnt_cur; /* cursor for count btree */
1da177e4
LT
859 xfs_agblock_t gtbno; /* start bno of right side entry */
860 xfs_agblock_t gtbnoa; /* aligned ... */
861 xfs_extlen_t gtdiff; /* difference to right side entry */
862 xfs_extlen_t gtlen; /* length of right side entry */
e26f0501 863 xfs_extlen_t gtlena; /* aligned ... */
1da177e4
LT
864 xfs_agblock_t gtnew; /* useful start bno of right side */
865 int error; /* error code */
866 int i; /* result code, temporary */
867 int j; /* result code, temporary */
868 xfs_agblock_t ltbno; /* start bno of left side entry */
869 xfs_agblock_t ltbnoa; /* aligned ... */
870 xfs_extlen_t ltdiff; /* difference to left side entry */
1da177e4 871 xfs_extlen_t ltlen; /* length of left side entry */
e26f0501 872 xfs_extlen_t ltlena; /* aligned ... */
1da177e4
LT
873 xfs_agblock_t ltnew; /* useful start bno of left side */
874 xfs_extlen_t rlen; /* length of returned extent */
e26f0501 875 int forced = 0;
63d20d6e 876#ifdef DEBUG
1da177e4
LT
877 /*
878 * Randomly don't execute the first algorithm.
879 */
880 int dofirst; /* set to do first algorithm */
881
ecb3403d 882 dofirst = prandom_u32() & 1;
1da177e4 883#endif
e26f0501
CH
884
885restart:
886 bno_cur_lt = NULL;
887 bno_cur_gt = NULL;
888 ltlen = 0;
889 gtlena = 0;
890 ltlena = 0;
891
1da177e4
LT
892 /*
893 * Get a cursor for the by-size btree.
894 */
561f7d17
CH
895 cnt_cur = xfs_allocbt_init_cursor(args->mp, args->tp, args->agbp,
896 args->agno, XFS_BTNUM_CNT);
e26f0501 897
1da177e4
LT
898 /*
899 * See if there are any free extents as big as maxlen.
900 */
901 if ((error = xfs_alloc_lookup_ge(cnt_cur, 0, args->maxlen, &i)))
902 goto error0;
903 /*
904 * If none, then pick up the last entry in the tree unless the
905 * tree is empty.
906 */
907 if (!i) {
908 if ((error = xfs_alloc_ag_vextent_small(args, cnt_cur, &ltbno,
909 &ltlen, &i)))
910 goto error0;
911 if (i == 0 || ltlen == 0) {
912 xfs_btree_del_cursor(cnt_cur, XFS_BTREE_NOERROR);
e26f0501 913 trace_xfs_alloc_near_noentry(args);
1da177e4
LT
914 return 0;
915 }
916 ASSERT(i == 1);
917 }
918 args->wasfromfl = 0;
e26f0501 919
1da177e4
LT
920 /*
921 * First algorithm.
922 * If the requested extent is large wrt the freespaces available
923 * in this a.g., then the cursor will be pointing to a btree entry
924 * near the right edge of the tree. If it's in the last btree leaf
925 * block, then we just examine all the entries in that block
926 * that are big enough, and pick the best one.
927 * This is written as a while loop so we can break out of it,
928 * but we never loop back to the top.
929 */
930 while (xfs_btree_islastblock(cnt_cur, 0)) {
931 xfs_extlen_t bdiff;
932 int besti=0;
933 xfs_extlen_t blen=0;
934 xfs_agblock_t bnew=0;
935
63d20d6e
DC
936#ifdef DEBUG
937 if (dofirst)
1da177e4
LT
938 break;
939#endif
940 /*
941 * Start from the entry that lookup found, sequence through
942 * all larger free blocks. If we're actually pointing at a
943 * record smaller than maxlen, go to the start of this block,
944 * and skip all those smaller than minlen.
945 */
946 if (ltlen || args->alignment > 1) {
947 cnt_cur->bc_ptrs[0] = 1;
948 do {
949 if ((error = xfs_alloc_get_rec(cnt_cur, &ltbno,
950 &ltlen, &i)))
951 goto error0;
c29aad41 952 XFS_WANT_CORRUPTED_GOTO(args->mp, i == 1, error0);
1da177e4
LT
953 if (ltlen >= args->minlen)
954 break;
637aa50f 955 if ((error = xfs_btree_increment(cnt_cur, 0, &i)))
1da177e4
LT
956 goto error0;
957 } while (i);
958 ASSERT(ltlen >= args->minlen);
959 if (!i)
960 break;
961 }
962 i = cnt_cur->bc_ptrs[0];
963 for (j = 1, blen = 0, bdiff = 0;
964 !error && j && (blen < args->maxlen || bdiff > 0);
637aa50f 965 error = xfs_btree_increment(cnt_cur, 0, &j)) {
1da177e4
LT
966 /*
967 * For each entry, decide if it's better than
968 * the previous best entry.
969 */
970 if ((error = xfs_alloc_get_rec(cnt_cur, &ltbno, &ltlen, &i)))
971 goto error0;
c29aad41 972 XFS_WANT_CORRUPTED_GOTO(args->mp, i == 1, error0);
86fa8af6
CH
973 xfs_alloc_compute_aligned(args, ltbno, ltlen,
974 &ltbnoa, &ltlena);
e6430037 975 if (ltlena < args->minlen)
1da177e4
LT
976 continue;
977 args->len = XFS_EXTLEN_MIN(ltlena, args->maxlen);
978 xfs_alloc_fix_len(args);
979 ASSERT(args->len >= args->minlen);
980 if (args->len < blen)
981 continue;
982 ltdiff = xfs_alloc_compute_diff(args->agbno, args->len,
211d022c
JK
983 args->alignment, args->userdata, ltbnoa,
984 ltlena, &ltnew);
1da177e4
LT
985 if (ltnew != NULLAGBLOCK &&
986 (args->len > blen || ltdiff < bdiff)) {
987 bdiff = ltdiff;
988 bnew = ltnew;
989 blen = args->len;
990 besti = cnt_cur->bc_ptrs[0];
991 }
992 }
993 /*
994 * It didn't work. We COULD be in a case where
995 * there's a good record somewhere, so try again.
996 */
997 if (blen == 0)
998 break;
999 /*
1000 * Point at the best entry, and retrieve it again.
1001 */
1002 cnt_cur->bc_ptrs[0] = besti;
1003 if ((error = xfs_alloc_get_rec(cnt_cur, &ltbno, &ltlen, &i)))
1004 goto error0;
c29aad41 1005 XFS_WANT_CORRUPTED_GOTO(args->mp, i == 1, error0);
73523a2e 1006 ASSERT(ltbno + ltlen <= be32_to_cpu(XFS_BUF_TO_AGF(args->agbp)->agf_length));
1da177e4
LT
1007 args->len = blen;
1008 if (!xfs_alloc_fix_minleft(args)) {
1009 xfs_btree_del_cursor(cnt_cur, XFS_BTREE_NOERROR);
0b1b213f 1010 trace_xfs_alloc_near_nominleft(args);
1da177e4
LT
1011 return 0;
1012 }
1013 blen = args->len;
1014 /*
1015 * We are allocating starting at bnew for blen blocks.
1016 */
1017 args->agbno = bnew;
1018 ASSERT(bnew >= ltbno);
73523a2e 1019 ASSERT(bnew + blen <= ltbno + ltlen);
1da177e4
LT
1020 /*
1021 * Set up a cursor for the by-bno tree.
1022 */
561f7d17
CH
1023 bno_cur_lt = xfs_allocbt_init_cursor(args->mp, args->tp,
1024 args->agbp, args->agno, XFS_BTNUM_BNO);
1da177e4
LT
1025 /*
1026 * Fix up the btree entries.
1027 */
1028 if ((error = xfs_alloc_fixup_trees(cnt_cur, bno_cur_lt, ltbno,
1029 ltlen, bnew, blen, XFSA_FIXUP_CNT_OK)))
1030 goto error0;
1031 xfs_btree_del_cursor(cnt_cur, XFS_BTREE_NOERROR);
1032 xfs_btree_del_cursor(bno_cur_lt, XFS_BTREE_NOERROR);
0b1b213f
CH
1033
1034 trace_xfs_alloc_near_first(args);
1da177e4
LT
1035 return 0;
1036 }
1037 /*
1038 * Second algorithm.
1039 * Search in the by-bno tree to the left and to the right
1040 * simultaneously, until in each case we find a space big enough,
1041 * or run into the edge of the tree. When we run into the edge,
1042 * we deallocate that cursor.
1043 * If both searches succeed, we compare the two spaces and pick
1044 * the better one.
1045 * With alignment, it's possible for both to fail; the upper
1046 * level algorithm that picks allocation groups for allocations
1047 * is not supposed to do this.
1048 */
1049 /*
1050 * Allocate and initialize the cursor for the leftward search.
1051 */
561f7d17
CH
1052 bno_cur_lt = xfs_allocbt_init_cursor(args->mp, args->tp, args->agbp,
1053 args->agno, XFS_BTNUM_BNO);
1da177e4
LT
1054 /*
1055 * Lookup <= bno to find the leftward search's starting point.
1056 */
1057 if ((error = xfs_alloc_lookup_le(bno_cur_lt, args->agbno, args->maxlen, &i)))
1058 goto error0;
1059 if (!i) {
1060 /*
1061 * Didn't find anything; use this cursor for the rightward
1062 * search.
1063 */
1064 bno_cur_gt = bno_cur_lt;
1065 bno_cur_lt = NULL;
1066 }
1067 /*
1068 * Found something. Duplicate the cursor for the rightward search.
1069 */
1070 else if ((error = xfs_btree_dup_cursor(bno_cur_lt, &bno_cur_gt)))
1071 goto error0;
1072 /*
1073 * Increment the cursor, so we will point at the entry just right
1074 * of the leftward entry if any, or to the leftmost entry.
1075 */
637aa50f 1076 if ((error = xfs_btree_increment(bno_cur_gt, 0, &i)))
1da177e4
LT
1077 goto error0;
1078 if (!i) {
1079 /*
1080 * It failed, there are no rightward entries.
1081 */
1082 xfs_btree_del_cursor(bno_cur_gt, XFS_BTREE_NOERROR);
1083 bno_cur_gt = NULL;
1084 }
1085 /*
1086 * Loop going left with the leftward cursor, right with the
1087 * rightward cursor, until either both directions give up or
1088 * we find an entry at least as big as minlen.
1089 */
1090 do {
1091 if (bno_cur_lt) {
1092 if ((error = xfs_alloc_get_rec(bno_cur_lt, &ltbno, &ltlen, &i)))
1093 goto error0;
c29aad41 1094 XFS_WANT_CORRUPTED_GOTO(args->mp, i == 1, error0);
86fa8af6
CH
1095 xfs_alloc_compute_aligned(args, ltbno, ltlen,
1096 &ltbnoa, &ltlena);
12375c82 1097 if (ltlena >= args->minlen)
1da177e4 1098 break;
8df4da4a 1099 if ((error = xfs_btree_decrement(bno_cur_lt, 0, &i)))
1da177e4
LT
1100 goto error0;
1101 if (!i) {
1102 xfs_btree_del_cursor(bno_cur_lt,
1103 XFS_BTREE_NOERROR);
1104 bno_cur_lt = NULL;
1105 }
1106 }
1107 if (bno_cur_gt) {
1108 if ((error = xfs_alloc_get_rec(bno_cur_gt, &gtbno, &gtlen, &i)))
1109 goto error0;
c29aad41 1110 XFS_WANT_CORRUPTED_GOTO(args->mp, i == 1, error0);
86fa8af6
CH
1111 xfs_alloc_compute_aligned(args, gtbno, gtlen,
1112 &gtbnoa, &gtlena);
12375c82 1113 if (gtlena >= args->minlen)
1da177e4 1114 break;
637aa50f 1115 if ((error = xfs_btree_increment(bno_cur_gt, 0, &i)))
1da177e4
LT
1116 goto error0;
1117 if (!i) {
1118 xfs_btree_del_cursor(bno_cur_gt,
1119 XFS_BTREE_NOERROR);
1120 bno_cur_gt = NULL;
1121 }
1122 }
1123 } while (bno_cur_lt || bno_cur_gt);
489a150f 1124
1da177e4
LT
1125 /*
1126 * Got both cursors still active, need to find better entry.
1127 */
1128 if (bno_cur_lt && bno_cur_gt) {
1da177e4
LT
1129 if (ltlena >= args->minlen) {
1130 /*
489a150f 1131 * Left side is good, look for a right side entry.
1da177e4
LT
1132 */
1133 args->len = XFS_EXTLEN_MIN(ltlena, args->maxlen);
1134 xfs_alloc_fix_len(args);
489a150f 1135 ltdiff = xfs_alloc_compute_diff(args->agbno, args->len,
211d022c
JK
1136 args->alignment, args->userdata, ltbnoa,
1137 ltlena, &ltnew);
489a150f
CH
1138
1139 error = xfs_alloc_find_best_extent(args,
1140 &bno_cur_lt, &bno_cur_gt,
e26f0501
CH
1141 ltdiff, &gtbno, &gtlen,
1142 &gtbnoa, &gtlena,
489a150f
CH
1143 0 /* search right */);
1144 } else {
1145 ASSERT(gtlena >= args->minlen);
1146
1da177e4 1147 /*
489a150f 1148 * Right side is good, look for a left side entry.
1da177e4
LT
1149 */
1150 args->len = XFS_EXTLEN_MIN(gtlena, args->maxlen);
1151 xfs_alloc_fix_len(args);
489a150f 1152 gtdiff = xfs_alloc_compute_diff(args->agbno, args->len,
211d022c
JK
1153 args->alignment, args->userdata, gtbnoa,
1154 gtlena, &gtnew);
489a150f
CH
1155
1156 error = xfs_alloc_find_best_extent(args,
1157 &bno_cur_gt, &bno_cur_lt,
e26f0501
CH
1158 gtdiff, &ltbno, &ltlen,
1159 &ltbnoa, &ltlena,
489a150f 1160 1 /* search left */);
1da177e4 1161 }
489a150f
CH
1162
1163 if (error)
1164 goto error0;
1da177e4 1165 }
489a150f 1166
1da177e4
LT
1167 /*
1168 * If we couldn't get anything, give up.
1169 */
1170 if (bno_cur_lt == NULL && bno_cur_gt == NULL) {
e3a746f5
DC
1171 xfs_btree_del_cursor(cnt_cur, XFS_BTREE_NOERROR);
1172
e26f0501
CH
1173 if (!forced++) {
1174 trace_xfs_alloc_near_busy(args);
1175 xfs_log_force(args->mp, XFS_LOG_SYNC);
1176 goto restart;
1177 }
0b1b213f 1178 trace_xfs_alloc_size_neither(args);
1da177e4
LT
1179 args->agbno = NULLAGBLOCK;
1180 return 0;
1181 }
489a150f 1182
1da177e4
LT
1183 /*
1184 * At this point we have selected a freespace entry, either to the
1185 * left or to the right. If it's on the right, copy all the
1186 * useful variables to the "left" set so we only have one
1187 * copy of this code.
1188 */
1189 if (bno_cur_gt) {
1190 bno_cur_lt = bno_cur_gt;
1191 bno_cur_gt = NULL;
1192 ltbno = gtbno;
1193 ltbnoa = gtbnoa;
1194 ltlen = gtlen;
1195 ltlena = gtlena;
1196 j = 1;
1197 } else
1198 j = 0;
489a150f 1199
1da177e4
LT
1200 /*
1201 * Fix up the length and compute the useful address.
1202 */
1da177e4
LT
1203 args->len = XFS_EXTLEN_MIN(ltlena, args->maxlen);
1204 xfs_alloc_fix_len(args);
1205 if (!xfs_alloc_fix_minleft(args)) {
0b1b213f 1206 trace_xfs_alloc_near_nominleft(args);
1da177e4
LT
1207 xfs_btree_del_cursor(bno_cur_lt, XFS_BTREE_NOERROR);
1208 xfs_btree_del_cursor(cnt_cur, XFS_BTREE_NOERROR);
1209 return 0;
1210 }
1211 rlen = args->len;
e26f0501 1212 (void)xfs_alloc_compute_diff(args->agbno, rlen, args->alignment,
211d022c 1213 args->userdata, ltbnoa, ltlena, &ltnew);
1da177e4 1214 ASSERT(ltnew >= ltbno);
e26f0501 1215 ASSERT(ltnew + rlen <= ltbnoa + ltlena);
16259e7d 1216 ASSERT(ltnew + rlen <= be32_to_cpu(XFS_BUF_TO_AGF(args->agbp)->agf_length));
1da177e4 1217 args->agbno = ltnew;
e26f0501 1218
1da177e4
LT
1219 if ((error = xfs_alloc_fixup_trees(cnt_cur, bno_cur_lt, ltbno, ltlen,
1220 ltnew, rlen, XFSA_FIXUP_BNO_OK)))
1221 goto error0;
0b1b213f
CH
1222
1223 if (j)
1224 trace_xfs_alloc_near_greater(args);
1225 else
1226 trace_xfs_alloc_near_lesser(args);
1227
1da177e4
LT
1228 xfs_btree_del_cursor(cnt_cur, XFS_BTREE_NOERROR);
1229 xfs_btree_del_cursor(bno_cur_lt, XFS_BTREE_NOERROR);
1230 return 0;
1231
1232 error0:
0b1b213f 1233 trace_xfs_alloc_near_error(args);
1da177e4
LT
1234 if (cnt_cur != NULL)
1235 xfs_btree_del_cursor(cnt_cur, XFS_BTREE_ERROR);
1236 if (bno_cur_lt != NULL)
1237 xfs_btree_del_cursor(bno_cur_lt, XFS_BTREE_ERROR);
1238 if (bno_cur_gt != NULL)
1239 xfs_btree_del_cursor(bno_cur_gt, XFS_BTREE_ERROR);
1240 return error;
1241}
1242
1243/*
1244 * Allocate a variable extent anywhere in the allocation group agno.
1245 * Extent's length (returned in len) will be between minlen and maxlen,
1246 * and of the form k * prod + mod unless there's nothing that large.
1247 * Return the starting a.g. block, or NULLAGBLOCK if we can't do it.
1248 */
1249STATIC int /* error */
1250xfs_alloc_ag_vextent_size(
1251 xfs_alloc_arg_t *args) /* allocation argument structure */
1252{
1253 xfs_btree_cur_t *bno_cur; /* cursor for bno btree */
1254 xfs_btree_cur_t *cnt_cur; /* cursor for cnt btree */
1255 int error; /* error result */
1256 xfs_agblock_t fbno; /* start of found freespace */
1257 xfs_extlen_t flen; /* length of found freespace */
1da177e4
LT
1258 int i; /* temp status variable */
1259 xfs_agblock_t rbno; /* returned block number */
1260 xfs_extlen_t rlen; /* length of returned extent */
e26f0501 1261 int forced = 0;
1da177e4 1262
e26f0501 1263restart:
1da177e4
LT
1264 /*
1265 * Allocate and initialize a cursor for the by-size btree.
1266 */
561f7d17
CH
1267 cnt_cur = xfs_allocbt_init_cursor(args->mp, args->tp, args->agbp,
1268 args->agno, XFS_BTNUM_CNT);
1da177e4 1269 bno_cur = NULL;
e26f0501 1270
1da177e4
LT
1271 /*
1272 * Look for an entry >= maxlen+alignment-1 blocks.
1273 */
1274 if ((error = xfs_alloc_lookup_ge(cnt_cur, 0,
1275 args->maxlen + args->alignment - 1, &i)))
1276 goto error0;
e26f0501 1277
1da177e4 1278 /*
e26f0501
CH
1279 * If none or we have busy extents that we cannot allocate from, then
1280 * we have to settle for a smaller extent. In the case that there are
1281 * no large extents, this will return the last entry in the tree unless
1282 * the tree is empty. In the case that there are only busy large
1283 * extents, this will return the largest small extent unless there
1284 * are no smaller extents available.
1da177e4 1285 */
e26f0501
CH
1286 if (!i || forced > 1) {
1287 error = xfs_alloc_ag_vextent_small(args, cnt_cur,
1288 &fbno, &flen, &i);
1289 if (error)
1da177e4
LT
1290 goto error0;
1291 if (i == 0 || flen == 0) {
1292 xfs_btree_del_cursor(cnt_cur, XFS_BTREE_NOERROR);
0b1b213f 1293 trace_xfs_alloc_size_noentry(args);
1da177e4
LT
1294 return 0;
1295 }
1296 ASSERT(i == 1);
e26f0501
CH
1297 xfs_alloc_compute_aligned(args, fbno, flen, &rbno, &rlen);
1298 } else {
1299 /*
1300 * Search for a non-busy extent that is large enough.
1301 * If we are at low space, don't check, or if we fall of
1302 * the end of the btree, turn off the busy check and
1303 * restart.
1304 */
1305 for (;;) {
1306 error = xfs_alloc_get_rec(cnt_cur, &fbno, &flen, &i);
1307 if (error)
1308 goto error0;
c29aad41 1309 XFS_WANT_CORRUPTED_GOTO(args->mp, i == 1, error0);
e26f0501
CH
1310
1311 xfs_alloc_compute_aligned(args, fbno, flen,
1312 &rbno, &rlen);
1313
1314 if (rlen >= args->maxlen)
1315 break;
1316
1317 error = xfs_btree_increment(cnt_cur, 0, &i);
1318 if (error)
1319 goto error0;
1320 if (i == 0) {
1321 /*
1322 * Our only valid extents must have been busy.
1323 * Make it unbusy by forcing the log out and
1324 * retrying. If we've been here before, forcing
1325 * the log isn't making the extents available,
1326 * which means they have probably been freed in
1327 * this transaction. In that case, we have to
1328 * give up on them and we'll attempt a minlen
1329 * allocation the next time around.
1330 */
1331 xfs_btree_del_cursor(cnt_cur,
1332 XFS_BTREE_NOERROR);
1333 trace_xfs_alloc_size_busy(args);
1334 if (!forced++)
1335 xfs_log_force(args->mp, XFS_LOG_SYNC);
1336 goto restart;
1337 }
1338 }
1da177e4 1339 }
e26f0501 1340
1da177e4
LT
1341 /*
1342 * In the first case above, we got the last entry in the
1343 * by-size btree. Now we check to see if the space hits maxlen
1344 * once aligned; if not, we search left for something better.
1345 * This can't happen in the second case above.
1346 */
1da177e4 1347 rlen = XFS_EXTLEN_MIN(args->maxlen, rlen);
c29aad41 1348 XFS_WANT_CORRUPTED_GOTO(args->mp, rlen == 0 ||
1da177e4
LT
1349 (rlen <= flen && rbno + rlen <= fbno + flen), error0);
1350 if (rlen < args->maxlen) {
1351 xfs_agblock_t bestfbno;
1352 xfs_extlen_t bestflen;
1353 xfs_agblock_t bestrbno;
1354 xfs_extlen_t bestrlen;
1355
1356 bestrlen = rlen;
1357 bestrbno = rbno;
1358 bestflen = flen;
1359 bestfbno = fbno;
1360 for (;;) {
8df4da4a 1361 if ((error = xfs_btree_decrement(cnt_cur, 0, &i)))
1da177e4
LT
1362 goto error0;
1363 if (i == 0)
1364 break;
1365 if ((error = xfs_alloc_get_rec(cnt_cur, &fbno, &flen,
1366 &i)))
1367 goto error0;
c29aad41 1368 XFS_WANT_CORRUPTED_GOTO(args->mp, i == 1, error0);
1da177e4
LT
1369 if (flen < bestrlen)
1370 break;
86fa8af6
CH
1371 xfs_alloc_compute_aligned(args, fbno, flen,
1372 &rbno, &rlen);
1da177e4 1373 rlen = XFS_EXTLEN_MIN(args->maxlen, rlen);
c29aad41 1374 XFS_WANT_CORRUPTED_GOTO(args->mp, rlen == 0 ||
1da177e4
LT
1375 (rlen <= flen && rbno + rlen <= fbno + flen),
1376 error0);
1377 if (rlen > bestrlen) {
1378 bestrlen = rlen;
1379 bestrbno = rbno;
1380 bestflen = flen;
1381 bestfbno = fbno;
1382 if (rlen == args->maxlen)
1383 break;
1384 }
1385 }
1386 if ((error = xfs_alloc_lookup_eq(cnt_cur, bestfbno, bestflen,
1387 &i)))
1388 goto error0;
c29aad41 1389 XFS_WANT_CORRUPTED_GOTO(args->mp, i == 1, error0);
1da177e4
LT
1390 rlen = bestrlen;
1391 rbno = bestrbno;
1392 flen = bestflen;
1393 fbno = bestfbno;
1394 }
1395 args->wasfromfl = 0;
1396 /*
1397 * Fix up the length.
1398 */
1399 args->len = rlen;
e26f0501
CH
1400 if (rlen < args->minlen) {
1401 if (!forced++) {
1402 xfs_btree_del_cursor(cnt_cur, XFS_BTREE_NOERROR);
1403 trace_xfs_alloc_size_busy(args);
1404 xfs_log_force(args->mp, XFS_LOG_SYNC);
1405 goto restart;
1406 }
1407 goto out_nominleft;
1da177e4 1408 }
e26f0501
CH
1409 xfs_alloc_fix_len(args);
1410
1411 if (!xfs_alloc_fix_minleft(args))
1412 goto out_nominleft;
1da177e4 1413 rlen = args->len;
c29aad41 1414 XFS_WANT_CORRUPTED_GOTO(args->mp, rlen <= flen, error0);
1da177e4
LT
1415 /*
1416 * Allocate and initialize a cursor for the by-block tree.
1417 */
561f7d17
CH
1418 bno_cur = xfs_allocbt_init_cursor(args->mp, args->tp, args->agbp,
1419 args->agno, XFS_BTNUM_BNO);
1da177e4
LT
1420 if ((error = xfs_alloc_fixup_trees(cnt_cur, bno_cur, fbno, flen,
1421 rbno, rlen, XFSA_FIXUP_CNT_OK)))
1422 goto error0;
1423 xfs_btree_del_cursor(cnt_cur, XFS_BTREE_NOERROR);
1424 xfs_btree_del_cursor(bno_cur, XFS_BTREE_NOERROR);
1425 cnt_cur = bno_cur = NULL;
1426 args->len = rlen;
1427 args->agbno = rbno;
c29aad41 1428 XFS_WANT_CORRUPTED_GOTO(args->mp,
1da177e4 1429 args->agbno + args->len <=
16259e7d 1430 be32_to_cpu(XFS_BUF_TO_AGF(args->agbp)->agf_length),
1da177e4 1431 error0);
0b1b213f 1432 trace_xfs_alloc_size_done(args);
1da177e4
LT
1433 return 0;
1434
1435error0:
0b1b213f 1436 trace_xfs_alloc_size_error(args);
1da177e4
LT
1437 if (cnt_cur)
1438 xfs_btree_del_cursor(cnt_cur, XFS_BTREE_ERROR);
1439 if (bno_cur)
1440 xfs_btree_del_cursor(bno_cur, XFS_BTREE_ERROR);
1441 return error;
e26f0501
CH
1442
1443out_nominleft:
1444 xfs_btree_del_cursor(cnt_cur, XFS_BTREE_NOERROR);
1445 trace_xfs_alloc_size_nominleft(args);
1446 args->agbno = NULLAGBLOCK;
1447 return 0;
1da177e4
LT
1448}
1449
1450/*
1451 * Deal with the case where only small freespaces remain.
1452 * Either return the contents of the last freespace record,
1453 * or allocate space from the freelist if there is nothing in the tree.
1454 */
1455STATIC int /* error */
1456xfs_alloc_ag_vextent_small(
1457 xfs_alloc_arg_t *args, /* allocation argument structure */
1458 xfs_btree_cur_t *ccur, /* by-size cursor */
1459 xfs_agblock_t *fbnop, /* result block number */
1460 xfs_extlen_t *flenp, /* result length */
1461 int *stat) /* status: 0-freelist, 1-normal/none */
1462{
1463 int error;
1464 xfs_agblock_t fbno;
1465 xfs_extlen_t flen;
1da177e4
LT
1466 int i;
1467
8df4da4a 1468 if ((error = xfs_btree_decrement(ccur, 0, &i)))
1da177e4
LT
1469 goto error0;
1470 if (i) {
1471 if ((error = xfs_alloc_get_rec(ccur, &fbno, &flen, &i)))
1472 goto error0;
c29aad41 1473 XFS_WANT_CORRUPTED_GOTO(args->mp, i == 1, error0);
1da177e4
LT
1474 }
1475 /*
1476 * Nothing in the btree, try the freelist. Make sure
1477 * to respect minleft even when pulling from the
1478 * freelist.
1479 */
1480 else if (args->minlen == 1 && args->alignment == 1 && !args->isfl &&
16259e7d
CH
1481 (be32_to_cpu(XFS_BUF_TO_AGF(args->agbp)->agf_flcount)
1482 > args->minleft)) {
92821e2b
DC
1483 error = xfs_alloc_get_freelist(args->tp, args->agbp, &fbno, 0);
1484 if (error)
1da177e4
LT
1485 goto error0;
1486 if (fbno != NULLAGBLOCK) {
4ecbfe63 1487 xfs_extent_busy_reuse(args->mp, args->agno, fbno, 1,
97d3ac75
CH
1488 args->userdata);
1489
1da177e4
LT
1490 if (args->userdata) {
1491 xfs_buf_t *bp;
1492
1493 bp = xfs_btree_get_bufs(args->mp, args->tp,
1494 args->agno, fbno, 0);
1495 xfs_trans_binval(args->tp, bp);
1496 }
1497 args->len = 1;
1498 args->agbno = fbno;
c29aad41 1499 XFS_WANT_CORRUPTED_GOTO(args->mp,
1da177e4 1500 args->agbno + args->len <=
16259e7d 1501 be32_to_cpu(XFS_BUF_TO_AGF(args->agbp)->agf_length),
1da177e4
LT
1502 error0);
1503 args->wasfromfl = 1;
0b1b213f 1504 trace_xfs_alloc_small_freelist(args);
1da177e4
LT
1505 *stat = 0;
1506 return 0;
1507 }
1508 /*
1509 * Nothing in the freelist.
1510 */
1511 else
1512 flen = 0;
1513 }
1514 /*
1515 * Can't allocate from the freelist for some reason.
1516 */
d432c80e
NS
1517 else {
1518 fbno = NULLAGBLOCK;
1da177e4 1519 flen = 0;
d432c80e 1520 }
1da177e4
LT
1521 /*
1522 * Can't do the allocation, give up.
1523 */
1524 if (flen < args->minlen) {
1525 args->agbno = NULLAGBLOCK;
0b1b213f 1526 trace_xfs_alloc_small_notenough(args);
1da177e4
LT
1527 flen = 0;
1528 }
1529 *fbnop = fbno;
1530 *flenp = flen;
1531 *stat = 1;
0b1b213f 1532 trace_xfs_alloc_small_done(args);
1da177e4
LT
1533 return 0;
1534
1535error0:
0b1b213f 1536 trace_xfs_alloc_small_error(args);
1da177e4
LT
1537 return error;
1538}
1539
1540/*
1541 * Free the extent starting at agno/bno for length.
1542 */
1543STATIC int /* error */
1544xfs_free_ag_extent(
1545 xfs_trans_t *tp, /* transaction pointer */
1546 xfs_buf_t *agbp, /* buffer for a.g. freelist header */
1547 xfs_agnumber_t agno, /* allocation group number */
1548 xfs_agblock_t bno, /* starting block number */
1549 xfs_extlen_t len, /* length of extent */
1550 int isfl) /* set if is freelist blocks - no sb acctg */
1551{
1552 xfs_btree_cur_t *bno_cur; /* cursor for by-block btree */
1553 xfs_btree_cur_t *cnt_cur; /* cursor for by-size btree */
1554 int error; /* error return value */
1da177e4
LT
1555 xfs_agblock_t gtbno; /* start of right neighbor block */
1556 xfs_extlen_t gtlen; /* length of right neighbor block */
1557 int haveleft; /* have a left neighbor block */
1558 int haveright; /* have a right neighbor block */
1559 int i; /* temp, result code */
1560 xfs_agblock_t ltbno; /* start of left neighbor block */
1561 xfs_extlen_t ltlen; /* length of left neighbor block */
1562 xfs_mount_t *mp; /* mount point struct for filesystem */
1563 xfs_agblock_t nbno; /* new starting block of freespace */
1564 xfs_extlen_t nlen; /* new length of freespace */
ecb6928f 1565 xfs_perag_t *pag; /* per allocation group data */
1da177e4
LT
1566
1567 mp = tp->t_mountp;
1568 /*
1569 * Allocate and initialize a cursor for the by-block btree.
1570 */
561f7d17 1571 bno_cur = xfs_allocbt_init_cursor(mp, tp, agbp, agno, XFS_BTNUM_BNO);
1da177e4
LT
1572 cnt_cur = NULL;
1573 /*
1574 * Look for a neighboring block on the left (lower block numbers)
1575 * that is contiguous with this space.
1576 */
1577 if ((error = xfs_alloc_lookup_le(bno_cur, bno, len, &haveleft)))
1578 goto error0;
1579 if (haveleft) {
1580 /*
1581 * There is a block to our left.
1582 */
1583 if ((error = xfs_alloc_get_rec(bno_cur, &ltbno, &ltlen, &i)))
1584 goto error0;
c29aad41 1585 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, error0);
1da177e4
LT
1586 /*
1587 * It's not contiguous, though.
1588 */
1589 if (ltbno + ltlen < bno)
1590 haveleft = 0;
1591 else {
1592 /*
1593 * If this failure happens the request to free this
1594 * space was invalid, it's (partly) already free.
1595 * Very bad.
1596 */
c29aad41
ES
1597 XFS_WANT_CORRUPTED_GOTO(mp,
1598 ltbno + ltlen <= bno, error0);
1da177e4
LT
1599 }
1600 }
1601 /*
1602 * Look for a neighboring block on the right (higher block numbers)
1603 * that is contiguous with this space.
1604 */
637aa50f 1605 if ((error = xfs_btree_increment(bno_cur, 0, &haveright)))
1da177e4
LT
1606 goto error0;
1607 if (haveright) {
1608 /*
1609 * There is a block to our right.
1610 */
1611 if ((error = xfs_alloc_get_rec(bno_cur, &gtbno, &gtlen, &i)))
1612 goto error0;
c29aad41 1613 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, error0);
1da177e4
LT
1614 /*
1615 * It's not contiguous, though.
1616 */
1617 if (bno + len < gtbno)
1618 haveright = 0;
1619 else {
1620 /*
1621 * If this failure happens the request to free this
1622 * space was invalid, it's (partly) already free.
1623 * Very bad.
1624 */
c29aad41 1625 XFS_WANT_CORRUPTED_GOTO(mp, gtbno >= bno + len, error0);
1da177e4
LT
1626 }
1627 }
1628 /*
1629 * Now allocate and initialize a cursor for the by-size tree.
1630 */
561f7d17 1631 cnt_cur = xfs_allocbt_init_cursor(mp, tp, agbp, agno, XFS_BTNUM_CNT);
1da177e4
LT
1632 /*
1633 * Have both left and right contiguous neighbors.
1634 * Merge all three into a single free block.
1635 */
1636 if (haveleft && haveright) {
1637 /*
1638 * Delete the old by-size entry on the left.
1639 */
1640 if ((error = xfs_alloc_lookup_eq(cnt_cur, ltbno, ltlen, &i)))
1641 goto error0;
c29aad41 1642 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, error0);
91cca5df 1643 if ((error = xfs_btree_delete(cnt_cur, &i)))
1da177e4 1644 goto error0;
c29aad41 1645 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, error0);
1da177e4
LT
1646 /*
1647 * Delete the old by-size entry on the right.
1648 */
1649 if ((error = xfs_alloc_lookup_eq(cnt_cur, gtbno, gtlen, &i)))
1650 goto error0;
c29aad41 1651 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, error0);
91cca5df 1652 if ((error = xfs_btree_delete(cnt_cur, &i)))
1da177e4 1653 goto error0;
c29aad41 1654 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, error0);
1da177e4
LT
1655 /*
1656 * Delete the old by-block entry for the right block.
1657 */
91cca5df 1658 if ((error = xfs_btree_delete(bno_cur, &i)))
1da177e4 1659 goto error0;
c29aad41 1660 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, error0);
1da177e4
LT
1661 /*
1662 * Move the by-block cursor back to the left neighbor.
1663 */
8df4da4a 1664 if ((error = xfs_btree_decrement(bno_cur, 0, &i)))
1da177e4 1665 goto error0;
c29aad41 1666 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, error0);
1da177e4
LT
1667#ifdef DEBUG
1668 /*
1669 * Check that this is the right record: delete didn't
1670 * mangle the cursor.
1671 */
1672 {
1673 xfs_agblock_t xxbno;
1674 xfs_extlen_t xxlen;
1675
1676 if ((error = xfs_alloc_get_rec(bno_cur, &xxbno, &xxlen,
1677 &i)))
1678 goto error0;
c29aad41 1679 XFS_WANT_CORRUPTED_GOTO(mp,
1da177e4
LT
1680 i == 1 && xxbno == ltbno && xxlen == ltlen,
1681 error0);
1682 }
1683#endif
1684 /*
1685 * Update remaining by-block entry to the new, joined block.
1686 */
1687 nbno = ltbno;
1688 nlen = len + ltlen + gtlen;
1689 if ((error = xfs_alloc_update(bno_cur, nbno, nlen)))
1690 goto error0;
1691 }
1692 /*
1693 * Have only a left contiguous neighbor.
1694 * Merge it together with the new freespace.
1695 */
1696 else if (haveleft) {
1697 /*
1698 * Delete the old by-size entry on the left.
1699 */
1700 if ((error = xfs_alloc_lookup_eq(cnt_cur, ltbno, ltlen, &i)))
1701 goto error0;
c29aad41 1702 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, error0);
91cca5df 1703 if ((error = xfs_btree_delete(cnt_cur, &i)))
1da177e4 1704 goto error0;
c29aad41 1705 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, error0);
1da177e4
LT
1706 /*
1707 * Back up the by-block cursor to the left neighbor, and
1708 * update its length.
1709 */
8df4da4a 1710 if ((error = xfs_btree_decrement(bno_cur, 0, &i)))
1da177e4 1711 goto error0;
c29aad41 1712 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, error0);
1da177e4
LT
1713 nbno = ltbno;
1714 nlen = len + ltlen;
1715 if ((error = xfs_alloc_update(bno_cur, nbno, nlen)))
1716 goto error0;
1717 }
1718 /*
1719 * Have only a right contiguous neighbor.
1720 * Merge it together with the new freespace.
1721 */
1722 else if (haveright) {
1723 /*
1724 * Delete the old by-size entry on the right.
1725 */
1726 if ((error = xfs_alloc_lookup_eq(cnt_cur, gtbno, gtlen, &i)))
1727 goto error0;
c29aad41 1728 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, error0);
91cca5df 1729 if ((error = xfs_btree_delete(cnt_cur, &i)))
1da177e4 1730 goto error0;
c29aad41 1731 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, error0);
1da177e4
LT
1732 /*
1733 * Update the starting block and length of the right
1734 * neighbor in the by-block tree.
1735 */
1736 nbno = bno;
1737 nlen = len + gtlen;
1738 if ((error = xfs_alloc_update(bno_cur, nbno, nlen)))
1739 goto error0;
1740 }
1741 /*
1742 * No contiguous neighbors.
1743 * Insert the new freespace into the by-block tree.
1744 */
1745 else {
1746 nbno = bno;
1747 nlen = len;
4b22a571 1748 if ((error = xfs_btree_insert(bno_cur, &i)))
1da177e4 1749 goto error0;
c29aad41 1750 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, error0);
1da177e4
LT
1751 }
1752 xfs_btree_del_cursor(bno_cur, XFS_BTREE_NOERROR);
1753 bno_cur = NULL;
1754 /*
1755 * In all cases we need to insert the new freespace in the by-size tree.
1756 */
1757 if ((error = xfs_alloc_lookup_eq(cnt_cur, nbno, nlen, &i)))
1758 goto error0;
c29aad41 1759 XFS_WANT_CORRUPTED_GOTO(mp, i == 0, error0);
4b22a571 1760 if ((error = xfs_btree_insert(cnt_cur, &i)))
1da177e4 1761 goto error0;
c29aad41 1762 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, error0);
1da177e4
LT
1763 xfs_btree_del_cursor(cnt_cur, XFS_BTREE_NOERROR);
1764 cnt_cur = NULL;
ecb6928f 1765
1da177e4
LT
1766 /*
1767 * Update the freespace totals in the ag and superblock.
1768 */
ecb6928f
CH
1769 pag = xfs_perag_get(mp, agno);
1770 error = xfs_alloc_update_counters(tp, pag, agbp, len);
1771 xfs_perag_put(pag);
1772 if (error)
1773 goto error0;
1774
1775 if (!isfl)
1776 xfs_trans_mod_sb(tp, XFS_TRANS_SB_FDBLOCKS, (long)len);
1777 XFS_STATS_INC(xs_freex);
1778 XFS_STATS_ADD(xs_freeb, len);
0b1b213f
CH
1779
1780 trace_xfs_free_extent(mp, agno, bno, len, isfl, haveleft, haveright);
1da177e4 1781
1da177e4
LT
1782 return 0;
1783
1784 error0:
0b1b213f 1785 trace_xfs_free_extent(mp, agno, bno, len, isfl, -1, -1);
1da177e4
LT
1786 if (bno_cur)
1787 xfs_btree_del_cursor(bno_cur, XFS_BTREE_ERROR);
1788 if (cnt_cur)
1789 xfs_btree_del_cursor(cnt_cur, XFS_BTREE_ERROR);
1790 return error;
1791}
1792
1793/*
1794 * Visible (exported) allocation/free functions.
1795 * Some of these are used just by xfs_alloc_btree.c and this file.
1796 */
1797
1798/*
1799 * Compute and fill in value of m_ag_maxlevels.
1800 */
1801void
1802xfs_alloc_compute_maxlevels(
1803 xfs_mount_t *mp) /* file system mount structure */
1804{
1805 int level;
1806 uint maxblocks;
1807 uint maxleafents;
1808 int minleafrecs;
1809 int minnoderecs;
1810
1811 maxleafents = (mp->m_sb.sb_agblocks + 1) / 2;
1812 minleafrecs = mp->m_alloc_mnr[0];
1813 minnoderecs = mp->m_alloc_mnr[1];
1814 maxblocks = (maxleafents + minleafrecs - 1) / minleafrecs;
1815 for (level = 1; maxblocks > 1; level++)
1816 maxblocks = (maxblocks + minnoderecs - 1) / minnoderecs;
1817 mp->m_ag_maxlevels = level;
1818}
1819
6cc87645
DC
1820/*
1821 * Find the length of the longest extent in an AG.
1822 */
1823xfs_extlen_t
1824xfs_alloc_longest_free_extent(
1825 struct xfs_mount *mp,
1826 struct xfs_perag *pag)
1827{
1828 xfs_extlen_t need, delta = 0;
1829
1830 need = XFS_MIN_FREELIST_PAG(pag, mp);
1831 if (need > pag->pagf_flcount)
1832 delta = need - pag->pagf_flcount;
1833
1834 if (pag->pagf_longest > delta)
1835 return pag->pagf_longest - delta;
1836 return pag->pagf_flcount > 0 || pag->pagf_longest > 0;
1837}
1838
1da177e4
LT
1839/*
1840 * Decide whether to use this allocation group for this allocation.
1841 * If so, fix up the btree freelist's size.
1842 */
1843STATIC int /* error */
1844xfs_alloc_fix_freelist(
1845 xfs_alloc_arg_t *args, /* allocation argument structure */
1846 int flags) /* XFS_ALLOC_FLAG_... */
1847{
1848 xfs_buf_t *agbp; /* agf buffer pointer */
1849 xfs_agf_t *agf; /* a.g. freespace structure pointer */
1850 xfs_buf_t *agflbp;/* agfl buffer pointer */
1851 xfs_agblock_t bno; /* freelist block */
1852 xfs_extlen_t delta; /* new blocks needed in freelist */
1853 int error; /* error result code */
1854 xfs_extlen_t longest;/* longest extent in allocation group */
1855 xfs_mount_t *mp; /* file system mount point structure */
1856 xfs_extlen_t need; /* total blocks needed in freelist */
1857 xfs_perag_t *pag; /* per-ag information structure */
1858 xfs_alloc_arg_t targs; /* local allocation arguments */
1859 xfs_trans_t *tp; /* transaction pointer */
1860
1861 mp = args->mp;
1862
1863 pag = args->pag;
1864 tp = args->tp;
1865 if (!pag->pagf_init) {
1866 if ((error = xfs_alloc_read_agf(mp, tp, args->agno, flags,
1867 &agbp)))
1868 return error;
1869 if (!pag->pagf_init) {
0e1edbd9
NS
1870 ASSERT(flags & XFS_ALLOC_FLAG_TRYLOCK);
1871 ASSERT(!(flags & XFS_ALLOC_FLAG_FREEING));
1da177e4
LT
1872 args->agbp = NULL;
1873 return 0;
1874 }
1875 } else
1876 agbp = NULL;
1877
0e1edbd9
NS
1878 /*
1879 * If this is a metadata preferred pag and we are user data
1da177e4
LT
1880 * then try somewhere else if we are not being asked to
1881 * try harder at this point
1882 */
0e1edbd9
NS
1883 if (pag->pagf_metadata && args->userdata &&
1884 (flags & XFS_ALLOC_FLAG_TRYLOCK)) {
1885 ASSERT(!(flags & XFS_ALLOC_FLAG_FREEING));
1da177e4
LT
1886 args->agbp = NULL;
1887 return 0;
1888 }
1889
0e1edbd9 1890 if (!(flags & XFS_ALLOC_FLAG_FREEING)) {
0e1edbd9
NS
1891 /*
1892 * If it looks like there isn't a long enough extent, or enough
1893 * total blocks, reject it.
1894 */
6cc87645
DC
1895 need = XFS_MIN_FREELIST_PAG(pag, mp);
1896 longest = xfs_alloc_longest_free_extent(mp, pag);
0e1edbd9
NS
1897 if ((args->minlen + args->alignment + args->minalignslop - 1) >
1898 longest ||
1899 ((int)(pag->pagf_freeblks + pag->pagf_flcount -
1900 need - args->total) < (int)args->minleft)) {
1901 if (agbp)
1902 xfs_trans_brelse(tp, agbp);
1903 args->agbp = NULL;
1904 return 0;
1905 }
1da177e4 1906 }
0e1edbd9 1907
1da177e4
LT
1908 /*
1909 * Get the a.g. freespace buffer.
1910 * Can fail if we're not blocking on locks, and it's held.
1911 */
1912 if (agbp == NULL) {
1913 if ((error = xfs_alloc_read_agf(mp, tp, args->agno, flags,
1914 &agbp)))
1915 return error;
1916 if (agbp == NULL) {
0e1edbd9
NS
1917 ASSERT(flags & XFS_ALLOC_FLAG_TRYLOCK);
1918 ASSERT(!(flags & XFS_ALLOC_FLAG_FREEING));
1da177e4
LT
1919 args->agbp = NULL;
1920 return 0;
1921 }
1922 }
1923 /*
1924 * Figure out how many blocks we should have in the freelist.
1925 */
1926 agf = XFS_BUF_TO_AGF(agbp);
1927 need = XFS_MIN_FREELIST(agf, mp);
1da177e4
LT
1928 /*
1929 * If there isn't enough total or single-extent, reject it.
1930 */
0e1edbd9
NS
1931 if (!(flags & XFS_ALLOC_FLAG_FREEING)) {
1932 delta = need > be32_to_cpu(agf->agf_flcount) ?
1933 (need - be32_to_cpu(agf->agf_flcount)) : 0;
1934 longest = be32_to_cpu(agf->agf_longest);
1935 longest = (longest > delta) ? (longest - delta) :
1936 (be32_to_cpu(agf->agf_flcount) > 0 || longest > 0);
1937 if ((args->minlen + args->alignment + args->minalignslop - 1) >
1938 longest ||
1939 ((int)(be32_to_cpu(agf->agf_freeblks) +
1940 be32_to_cpu(agf->agf_flcount) - need - args->total) <
1941 (int)args->minleft)) {
1942 xfs_trans_brelse(tp, agbp);
1943 args->agbp = NULL;
1944 return 0;
1945 }
1da177e4
LT
1946 }
1947 /*
1948 * Make the freelist shorter if it's too long.
1949 */
16259e7d 1950 while (be32_to_cpu(agf->agf_flcount) > need) {
1da177e4
LT
1951 xfs_buf_t *bp;
1952
92821e2b
DC
1953 error = xfs_alloc_get_freelist(tp, agbp, &bno, 0);
1954 if (error)
1da177e4
LT
1955 return error;
1956 if ((error = xfs_free_ag_extent(tp, agbp, args->agno, bno, 1, 1)))
1957 return error;
1958 bp = xfs_btree_get_bufs(mp, tp, args->agno, bno, 0);
1959 xfs_trans_binval(tp, bp);
1960 }
1961 /*
1962 * Initialize the args structure.
1963 */
a0041684 1964 memset(&targs, 0, sizeof(targs));
1da177e4
LT
1965 targs.tp = tp;
1966 targs.mp = mp;
1967 targs.agbp = agbp;
1968 targs.agno = args->agno;
1da177e4
LT
1969 targs.alignment = targs.minlen = targs.prod = targs.isfl = 1;
1970 targs.type = XFS_ALLOCTYPE_THIS_AG;
1971 targs.pag = pag;
1972 if ((error = xfs_alloc_read_agfl(mp, tp, targs.agno, &agflbp)))
1973 return error;
1974 /*
1975 * Make the freelist longer if it's too short.
1976 */
16259e7d 1977 while (be32_to_cpu(agf->agf_flcount) < need) {
1da177e4 1978 targs.agbno = 0;
16259e7d 1979 targs.maxlen = need - be32_to_cpu(agf->agf_flcount);
1da177e4
LT
1980 /*
1981 * Allocate as many blocks as possible at once.
1982 */
e63a3690
NS
1983 if ((error = xfs_alloc_ag_vextent(&targs))) {
1984 xfs_trans_brelse(tp, agflbp);
1da177e4 1985 return error;
e63a3690 1986 }
1da177e4
LT
1987 /*
1988 * Stop if we run out. Won't happen if callers are obeying
1989 * the restrictions correctly. Can happen for free calls
1990 * on a completely full ag.
1991 */
d210a28c 1992 if (targs.agbno == NULLAGBLOCK) {
0e1edbd9
NS
1993 if (flags & XFS_ALLOC_FLAG_FREEING)
1994 break;
1995 xfs_trans_brelse(tp, agflbp);
1996 args->agbp = NULL;
1997 return 0;
d210a28c 1998 }
1da177e4
LT
1999 /*
2000 * Put each allocated block on the list.
2001 */
2002 for (bno = targs.agbno; bno < targs.agbno + targs.len; bno++) {
92821e2b
DC
2003 error = xfs_alloc_put_freelist(tp, agbp,
2004 agflbp, bno, 0);
2005 if (error)
1da177e4
LT
2006 return error;
2007 }
2008 }
e63a3690 2009 xfs_trans_brelse(tp, agflbp);
1da177e4
LT
2010 args->agbp = agbp;
2011 return 0;
2012}
2013
2014/*
2015 * Get a block from the freelist.
2016 * Returns with the buffer for the block gotten.
2017 */
2018int /* error */
2019xfs_alloc_get_freelist(
2020 xfs_trans_t *tp, /* transaction pointer */
2021 xfs_buf_t *agbp, /* buffer containing the agf structure */
92821e2b
DC
2022 xfs_agblock_t *bnop, /* block address retrieved from freelist */
2023 int btreeblk) /* destination is a AGF btree */
1da177e4
LT
2024{
2025 xfs_agf_t *agf; /* a.g. freespace structure */
1da177e4
LT
2026 xfs_buf_t *agflbp;/* buffer for a.g. freelist structure */
2027 xfs_agblock_t bno; /* block number returned */
77c95bba 2028 __be32 *agfl_bno;
1da177e4 2029 int error;
92821e2b 2030 int logflags;
77c95bba 2031 xfs_mount_t *mp = tp->t_mountp;
1da177e4
LT
2032 xfs_perag_t *pag; /* per allocation group data */
2033
1da177e4
LT
2034 /*
2035 * Freelist is empty, give up.
2036 */
77c95bba 2037 agf = XFS_BUF_TO_AGF(agbp);
1da177e4
LT
2038 if (!agf->agf_flcount) {
2039 *bnop = NULLAGBLOCK;
2040 return 0;
2041 }
2042 /*
2043 * Read the array of free blocks.
2044 */
77c95bba
CH
2045 error = xfs_alloc_read_agfl(mp, tp, be32_to_cpu(agf->agf_seqno),
2046 &agflbp);
2047 if (error)
1da177e4 2048 return error;
77c95bba
CH
2049
2050
1da177e4
LT
2051 /*
2052 * Get the block number and update the data structures.
2053 */
77c95bba
CH
2054 agfl_bno = XFS_BUF_TO_AGFL_BNO(mp, agflbp);
2055 bno = be32_to_cpu(agfl_bno[be32_to_cpu(agf->agf_flfirst)]);
413d57c9 2056 be32_add_cpu(&agf->agf_flfirst, 1);
1da177e4 2057 xfs_trans_brelse(tp, agflbp);
16259e7d 2058 if (be32_to_cpu(agf->agf_flfirst) == XFS_AGFL_SIZE(mp))
1da177e4 2059 agf->agf_flfirst = 0;
a862e0fd
DC
2060
2061 pag = xfs_perag_get(mp, be32_to_cpu(agf->agf_seqno));
413d57c9 2062 be32_add_cpu(&agf->agf_flcount, -1);
1da177e4
LT
2063 xfs_trans_agflist_delta(tp, -1);
2064 pag->pagf_flcount--;
a862e0fd 2065 xfs_perag_put(pag);
92821e2b
DC
2066
2067 logflags = XFS_AGF_FLFIRST | XFS_AGF_FLCOUNT;
2068 if (btreeblk) {
413d57c9 2069 be32_add_cpu(&agf->agf_btreeblks, 1);
92821e2b
DC
2070 pag->pagf_btreeblks++;
2071 logflags |= XFS_AGF_BTREEBLKS;
2072 }
2073
92821e2b 2074 xfs_alloc_log_agf(tp, agbp, logflags);
1da177e4
LT
2075 *bnop = bno;
2076
1da177e4
LT
2077 return 0;
2078}
2079
2080/*
2081 * Log the given fields from the agf structure.
2082 */
2083void
2084xfs_alloc_log_agf(
2085 xfs_trans_t *tp, /* transaction pointer */
2086 xfs_buf_t *bp, /* buffer for a.g. freelist header */
2087 int fields) /* mask of fields to be logged (XFS_AGF_...) */
2088{
2089 int first; /* first byte offset */
2090 int last; /* last byte offset */
2091 static const short offsets[] = {
2092 offsetof(xfs_agf_t, agf_magicnum),
2093 offsetof(xfs_agf_t, agf_versionnum),
2094 offsetof(xfs_agf_t, agf_seqno),
2095 offsetof(xfs_agf_t, agf_length),
2096 offsetof(xfs_agf_t, agf_roots[0]),
2097 offsetof(xfs_agf_t, agf_levels[0]),
2098 offsetof(xfs_agf_t, agf_flfirst),
2099 offsetof(xfs_agf_t, agf_fllast),
2100 offsetof(xfs_agf_t, agf_flcount),
2101 offsetof(xfs_agf_t, agf_freeblks),
2102 offsetof(xfs_agf_t, agf_longest),
92821e2b 2103 offsetof(xfs_agf_t, agf_btreeblks),
4e0e6040 2104 offsetof(xfs_agf_t, agf_uuid),
1da177e4
LT
2105 sizeof(xfs_agf_t)
2106 };
2107
0b1b213f
CH
2108 trace_xfs_agf(tp->t_mountp, XFS_BUF_TO_AGF(bp), fields, _RET_IP_);
2109
61fe135c 2110 xfs_trans_buf_set_type(tp, bp, XFS_BLFT_AGF_BUF);
4e0e6040 2111
1da177e4
LT
2112 xfs_btree_offsets(fields, offsets, XFS_AGF_NUM_BITS, &first, &last);
2113 xfs_trans_log_buf(tp, bp, (uint)first, (uint)last);
2114}
2115
2116/*
2117 * Interface for inode allocation to force the pag data to be initialized.
2118 */
2119int /* error */
2120xfs_alloc_pagf_init(
2121 xfs_mount_t *mp, /* file system mount structure */
2122 xfs_trans_t *tp, /* transaction pointer */
2123 xfs_agnumber_t agno, /* allocation group number */
2124 int flags) /* XFS_ALLOC_FLAGS_... */
2125{
2126 xfs_buf_t *bp;
2127 int error;
2128
2129 if ((error = xfs_alloc_read_agf(mp, tp, agno, flags, &bp)))
2130 return error;
2131 if (bp)
2132 xfs_trans_brelse(tp, bp);
2133 return 0;
2134}
2135
2136/*
2137 * Put the block on the freelist for the allocation group.
2138 */
2139int /* error */
2140xfs_alloc_put_freelist(
2141 xfs_trans_t *tp, /* transaction pointer */
2142 xfs_buf_t *agbp, /* buffer for a.g. freelist header */
2143 xfs_buf_t *agflbp,/* buffer for a.g. free block array */
92821e2b
DC
2144 xfs_agblock_t bno, /* block being freed */
2145 int btreeblk) /* block came from a AGF btree */
1da177e4
LT
2146{
2147 xfs_agf_t *agf; /* a.g. freespace structure */
e2101005 2148 __be32 *blockp;/* pointer to array entry */
1da177e4 2149 int error;
92821e2b 2150 int logflags;
1da177e4
LT
2151 xfs_mount_t *mp; /* mount structure */
2152 xfs_perag_t *pag; /* per allocation group data */
77c95bba
CH
2153 __be32 *agfl_bno;
2154 int startoff;
1da177e4
LT
2155
2156 agf = XFS_BUF_TO_AGF(agbp);
2157 mp = tp->t_mountp;
2158
2159 if (!agflbp && (error = xfs_alloc_read_agfl(mp, tp,
16259e7d 2160 be32_to_cpu(agf->agf_seqno), &agflbp)))
1da177e4 2161 return error;
413d57c9 2162 be32_add_cpu(&agf->agf_fllast, 1);
16259e7d 2163 if (be32_to_cpu(agf->agf_fllast) == XFS_AGFL_SIZE(mp))
1da177e4 2164 agf->agf_fllast = 0;
a862e0fd
DC
2165
2166 pag = xfs_perag_get(mp, be32_to_cpu(agf->agf_seqno));
413d57c9 2167 be32_add_cpu(&agf->agf_flcount, 1);
1da177e4
LT
2168 xfs_trans_agflist_delta(tp, 1);
2169 pag->pagf_flcount++;
92821e2b
DC
2170
2171 logflags = XFS_AGF_FLLAST | XFS_AGF_FLCOUNT;
2172 if (btreeblk) {
413d57c9 2173 be32_add_cpu(&agf->agf_btreeblks, -1);
92821e2b
DC
2174 pag->pagf_btreeblks--;
2175 logflags |= XFS_AGF_BTREEBLKS;
2176 }
a862e0fd 2177 xfs_perag_put(pag);
92821e2b 2178
92821e2b
DC
2179 xfs_alloc_log_agf(tp, agbp, logflags);
2180
16259e7d 2181 ASSERT(be32_to_cpu(agf->agf_flcount) <= XFS_AGFL_SIZE(mp));
77c95bba
CH
2182
2183 agfl_bno = XFS_BUF_TO_AGFL_BNO(mp, agflbp);
2184 blockp = &agfl_bno[be32_to_cpu(agf->agf_fllast)];
e2101005 2185 *blockp = cpu_to_be32(bno);
77c95bba
CH
2186 startoff = (char *)blockp - (char *)agflbp->b_addr;
2187
92821e2b 2188 xfs_alloc_log_agf(tp, agbp, logflags);
77c95bba 2189
61fe135c 2190 xfs_trans_buf_set_type(tp, agflbp, XFS_BLFT_AGFL_BUF);
77c95bba
CH
2191 xfs_trans_log_buf(tp, agflbp, startoff,
2192 startoff + sizeof(xfs_agblock_t) - 1);
1da177e4
LT
2193 return 0;
2194}
2195
4e0e6040 2196static bool
612cfbfe 2197xfs_agf_verify(
4e0e6040 2198 struct xfs_mount *mp,
5d5f527d
DC
2199 struct xfs_buf *bp)
2200 {
4e0e6040 2201 struct xfs_agf *agf = XFS_BUF_TO_AGF(bp);
5d5f527d 2202
4e0e6040
DC
2203 if (xfs_sb_version_hascrc(&mp->m_sb) &&
2204 !uuid_equal(&agf->agf_uuid, &mp->m_sb.sb_uuid))
2205 return false;
5d5f527d 2206
4e0e6040
DC
2207 if (!(agf->agf_magicnum == cpu_to_be32(XFS_AGF_MAGIC) &&
2208 XFS_AGF_GOOD_VERSION(be32_to_cpu(agf->agf_versionnum)) &&
2209 be32_to_cpu(agf->agf_freeblks) <= be32_to_cpu(agf->agf_length) &&
2210 be32_to_cpu(agf->agf_flfirst) < XFS_AGFL_SIZE(mp) &&
2211 be32_to_cpu(agf->agf_fllast) < XFS_AGFL_SIZE(mp) &&
2212 be32_to_cpu(agf->agf_flcount) <= XFS_AGFL_SIZE(mp)))
2213 return false;
5d5f527d 2214
e1b05723
ES
2215 if (be32_to_cpu(agf->agf_levels[XFS_BTNUM_BNO]) > XFS_BTREE_MAXLEVELS ||
2216 be32_to_cpu(agf->agf_levels[XFS_BTNUM_CNT]) > XFS_BTREE_MAXLEVELS)
2217 return false;
2218
5d5f527d
DC
2219 /*
2220 * during growfs operations, the perag is not fully initialised,
2221 * so we can't use it for any useful checking. growfs ensures we can't
2222 * use it by using uncached buffers that don't have the perag attached
2223 * so we can detect and avoid this problem.
2224 */
4e0e6040
DC
2225 if (bp->b_pag && be32_to_cpu(agf->agf_seqno) != bp->b_pag->pag_agno)
2226 return false;
5d5f527d 2227
4e0e6040
DC
2228 if (xfs_sb_version_haslazysbcount(&mp->m_sb) &&
2229 be32_to_cpu(agf->agf_btreeblks) > be32_to_cpu(agf->agf_length))
2230 return false;
2231
2232 return true;;
5d5f527d 2233
612cfbfe
DC
2234}
2235
1813dd64
DC
2236static void
2237xfs_agf_read_verify(
612cfbfe
DC
2238 struct xfs_buf *bp)
2239{
4e0e6040 2240 struct xfs_mount *mp = bp->b_target->bt_mount;
4e0e6040 2241
ce5028cf
ES
2242 if (xfs_sb_version_hascrc(&mp->m_sb) &&
2243 !xfs_buf_verify_cksum(bp, XFS_AGF_CRC_OFF))
2451337d 2244 xfs_buf_ioerror(bp, -EFSBADCRC);
ce5028cf
ES
2245 else if (XFS_TEST_ERROR(!xfs_agf_verify(mp, bp), mp,
2246 XFS_ERRTAG_ALLOC_READ_AGF,
2247 XFS_RANDOM_ALLOC_READ_AGF))
2451337d 2248 xfs_buf_ioerror(bp, -EFSCORRUPTED);
ce5028cf
ES
2249
2250 if (bp->b_error)
2251 xfs_verifier_error(bp);
612cfbfe 2252}
5d5f527d 2253
b0f539de 2254static void
1813dd64 2255xfs_agf_write_verify(
612cfbfe
DC
2256 struct xfs_buf *bp)
2257{
4e0e6040
DC
2258 struct xfs_mount *mp = bp->b_target->bt_mount;
2259 struct xfs_buf_log_item *bip = bp->b_fspriv;
2260
2261 if (!xfs_agf_verify(mp, bp)) {
2451337d 2262 xfs_buf_ioerror(bp, -EFSCORRUPTED);
ce5028cf 2263 xfs_verifier_error(bp);
4e0e6040
DC
2264 return;
2265 }
2266
2267 if (!xfs_sb_version_hascrc(&mp->m_sb))
2268 return;
2269
2270 if (bip)
2271 XFS_BUF_TO_AGF(bp)->agf_lsn = cpu_to_be64(bip->bli_item.li_lsn);
2272
f1dbcd7e 2273 xfs_buf_update_cksum(bp, XFS_AGF_CRC_OFF);
5d5f527d
DC
2274}
2275
1813dd64
DC
2276const struct xfs_buf_ops xfs_agf_buf_ops = {
2277 .verify_read = xfs_agf_read_verify,
2278 .verify_write = xfs_agf_write_verify,
2279};
2280
1da177e4
LT
2281/*
2282 * Read in the allocation group header (free/alloc section).
2283 */
2284int /* error */
4805621a
FCH
2285xfs_read_agf(
2286 struct xfs_mount *mp, /* mount point structure */
2287 struct xfs_trans *tp, /* transaction pointer */
2288 xfs_agnumber_t agno, /* allocation group number */
2289 int flags, /* XFS_BUF_ */
2290 struct xfs_buf **bpp) /* buffer for the ag freelist header */
1da177e4 2291{
1da177e4
LT
2292 int error;
2293
d123031a
DC
2294 trace_xfs_read_agf(mp, agno);
2295
1da177e4
LT
2296 ASSERT(agno != NULLAGNUMBER);
2297 error = xfs_trans_read_buf(
2298 mp, tp, mp->m_ddev_targp,
2299 XFS_AG_DADDR(mp, agno, XFS_AGF_DADDR(mp)),
1813dd64 2300 XFS_FSS_TO_BB(mp, 1), flags, bpp, &xfs_agf_buf_ops);
1da177e4
LT
2301 if (error)
2302 return error;
4805621a 2303 if (!*bpp)
1da177e4 2304 return 0;
4805621a 2305
5a52c2a5 2306 ASSERT(!(*bpp)->b_error);
38f23232 2307 xfs_buf_set_ref(*bpp, XFS_AGF_REF);
4805621a
FCH
2308 return 0;
2309}
2310
2311/*
2312 * Read in the allocation group header (free/alloc section).
2313 */
2314int /* error */
2315xfs_alloc_read_agf(
2316 struct xfs_mount *mp, /* mount point structure */
2317 struct xfs_trans *tp, /* transaction pointer */
2318 xfs_agnumber_t agno, /* allocation group number */
2319 int flags, /* XFS_ALLOC_FLAG_... */
2320 struct xfs_buf **bpp) /* buffer for the ag freelist header */
2321{
2322 struct xfs_agf *agf; /* ag freelist header */
2323 struct xfs_perag *pag; /* per allocation group data */
2324 int error;
2325
d123031a 2326 trace_xfs_alloc_read_agf(mp, agno);
4805621a 2327
d123031a 2328 ASSERT(agno != NULLAGNUMBER);
4805621a 2329 error = xfs_read_agf(mp, tp, agno,
0cadda1c 2330 (flags & XFS_ALLOC_FLAG_TRYLOCK) ? XBF_TRYLOCK : 0,
4805621a
FCH
2331 bpp);
2332 if (error)
2333 return error;
2334 if (!*bpp)
2335 return 0;
5a52c2a5 2336 ASSERT(!(*bpp)->b_error);
4805621a
FCH
2337
2338 agf = XFS_BUF_TO_AGF(*bpp);
a862e0fd 2339 pag = xfs_perag_get(mp, agno);
1da177e4 2340 if (!pag->pagf_init) {
16259e7d 2341 pag->pagf_freeblks = be32_to_cpu(agf->agf_freeblks);
92821e2b 2342 pag->pagf_btreeblks = be32_to_cpu(agf->agf_btreeblks);
16259e7d
CH
2343 pag->pagf_flcount = be32_to_cpu(agf->agf_flcount);
2344 pag->pagf_longest = be32_to_cpu(agf->agf_longest);
1da177e4 2345 pag->pagf_levels[XFS_BTNUM_BNOi] =
16259e7d 2346 be32_to_cpu(agf->agf_levels[XFS_BTNUM_BNOi]);
1da177e4 2347 pag->pagf_levels[XFS_BTNUM_CNTi] =
16259e7d 2348 be32_to_cpu(agf->agf_levels[XFS_BTNUM_CNTi]);
007c61c6 2349 spin_lock_init(&pag->pagb_lock);
e57336ff 2350 pag->pagb_count = 0;
ed3b4d6c 2351 pag->pagb_tree = RB_ROOT;
1da177e4
LT
2352 pag->pagf_init = 1;
2353 }
2354#ifdef DEBUG
2355 else if (!XFS_FORCED_SHUTDOWN(mp)) {
16259e7d 2356 ASSERT(pag->pagf_freeblks == be32_to_cpu(agf->agf_freeblks));
89b28393 2357 ASSERT(pag->pagf_btreeblks == be32_to_cpu(agf->agf_btreeblks));
16259e7d
CH
2358 ASSERT(pag->pagf_flcount == be32_to_cpu(agf->agf_flcount));
2359 ASSERT(pag->pagf_longest == be32_to_cpu(agf->agf_longest));
1da177e4 2360 ASSERT(pag->pagf_levels[XFS_BTNUM_BNOi] ==
16259e7d 2361 be32_to_cpu(agf->agf_levels[XFS_BTNUM_BNOi]));
1da177e4 2362 ASSERT(pag->pagf_levels[XFS_BTNUM_CNTi] ==
16259e7d 2363 be32_to_cpu(agf->agf_levels[XFS_BTNUM_CNTi]));
1da177e4
LT
2364 }
2365#endif
a862e0fd 2366 xfs_perag_put(pag);
1da177e4
LT
2367 return 0;
2368}
2369
2370/*
2371 * Allocate an extent (variable-size).
2372 * Depending on the allocation type, we either look in a single allocation
2373 * group or loop over the allocation groups to find the result.
2374 */
2375int /* error */
e04426b9 2376xfs_alloc_vextent(
1da177e4
LT
2377 xfs_alloc_arg_t *args) /* allocation argument structure */
2378{
2379 xfs_agblock_t agsize; /* allocation group size */
2380 int error;
2381 int flags; /* XFS_ALLOC_FLAG_... locking flags */
1da177e4
LT
2382 xfs_extlen_t minleft;/* minimum left value, temp copy */
2383 xfs_mount_t *mp; /* mount structure pointer */
2384 xfs_agnumber_t sagno; /* starting allocation group number */
2385 xfs_alloctype_t type; /* input allocation type */
2386 int bump_rotor = 0;
2387 int no_min = 0;
2388 xfs_agnumber_t rotorstep = xfs_rotorstep; /* inode32 agf stepper */
2389
2390 mp = args->mp;
2391 type = args->otype = args->type;
2392 args->agbno = NULLAGBLOCK;
2393 /*
2394 * Just fix this up, for the case where the last a.g. is shorter
2395 * (or there's only one a.g.) and the caller couldn't easily figure
2396 * that out (xfs_bmap_alloc).
2397 */
2398 agsize = mp->m_sb.sb_agblocks;
2399 if (args->maxlen > agsize)
2400 args->maxlen = agsize;
2401 if (args->alignment == 0)
2402 args->alignment = 1;
2403 ASSERT(XFS_FSB_TO_AGNO(mp, args->fsbno) < mp->m_sb.sb_agcount);
2404 ASSERT(XFS_FSB_TO_AGBNO(mp, args->fsbno) < agsize);
2405 ASSERT(args->minlen <= args->maxlen);
2406 ASSERT(args->minlen <= agsize);
2407 ASSERT(args->mod < args->prod);
2408 if (XFS_FSB_TO_AGNO(mp, args->fsbno) >= mp->m_sb.sb_agcount ||
2409 XFS_FSB_TO_AGBNO(mp, args->fsbno) >= agsize ||
2410 args->minlen > args->maxlen || args->minlen > agsize ||
2411 args->mod >= args->prod) {
2412 args->fsbno = NULLFSBLOCK;
0b1b213f 2413 trace_xfs_alloc_vextent_badargs(args);
1da177e4
LT
2414 return 0;
2415 }
2416 minleft = args->minleft;
2417
2418 switch (type) {
2419 case XFS_ALLOCTYPE_THIS_AG:
2420 case XFS_ALLOCTYPE_NEAR_BNO:
2421 case XFS_ALLOCTYPE_THIS_BNO:
2422 /*
2423 * These three force us into a single a.g.
2424 */
2425 args->agno = XFS_FSB_TO_AGNO(mp, args->fsbno);
a862e0fd 2426 args->pag = xfs_perag_get(mp, args->agno);
1da177e4
LT
2427 args->minleft = 0;
2428 error = xfs_alloc_fix_freelist(args, 0);
2429 args->minleft = minleft;
2430 if (error) {
0b1b213f 2431 trace_xfs_alloc_vextent_nofix(args);
1da177e4
LT
2432 goto error0;
2433 }
2434 if (!args->agbp) {
0b1b213f 2435 trace_xfs_alloc_vextent_noagbp(args);
1da177e4
LT
2436 break;
2437 }
2438 args->agbno = XFS_FSB_TO_AGBNO(mp, args->fsbno);
2439 if ((error = xfs_alloc_ag_vextent(args)))
2440 goto error0;
1da177e4
LT
2441 break;
2442 case XFS_ALLOCTYPE_START_BNO:
2443 /*
2444 * Try near allocation first, then anywhere-in-ag after
2445 * the first a.g. fails.
2446 */
2447 if ((args->userdata == XFS_ALLOC_INITIAL_USER_DATA) &&
2448 (mp->m_flags & XFS_MOUNT_32BITINODES)) {
2449 args->fsbno = XFS_AGB_TO_FSB(mp,
2450 ((mp->m_agfrotor / rotorstep) %
2451 mp->m_sb.sb_agcount), 0);
2452 bump_rotor = 1;
2453 }
2454 args->agbno = XFS_FSB_TO_AGBNO(mp, args->fsbno);
2455 args->type = XFS_ALLOCTYPE_NEAR_BNO;
2456 /* FALLTHROUGH */
2457 case XFS_ALLOCTYPE_ANY_AG:
2458 case XFS_ALLOCTYPE_START_AG:
2459 case XFS_ALLOCTYPE_FIRST_AG:
2460 /*
2461 * Rotate through the allocation groups looking for a winner.
2462 */
2463 if (type == XFS_ALLOCTYPE_ANY_AG) {
2464 /*
2465 * Start with the last place we left off.
2466 */
2467 args->agno = sagno = (mp->m_agfrotor / rotorstep) %
2468 mp->m_sb.sb_agcount;
2469 args->type = XFS_ALLOCTYPE_THIS_AG;
2470 flags = XFS_ALLOC_FLAG_TRYLOCK;
2471 } else if (type == XFS_ALLOCTYPE_FIRST_AG) {
2472 /*
2473 * Start with allocation group given by bno.
2474 */
2475 args->agno = XFS_FSB_TO_AGNO(mp, args->fsbno);
2476 args->type = XFS_ALLOCTYPE_THIS_AG;
2477 sagno = 0;
2478 flags = 0;
2479 } else {
2480 if (type == XFS_ALLOCTYPE_START_AG)
2481 args->type = XFS_ALLOCTYPE_THIS_AG;
2482 /*
2483 * Start with the given allocation group.
2484 */
2485 args->agno = sagno = XFS_FSB_TO_AGNO(mp, args->fsbno);
2486 flags = XFS_ALLOC_FLAG_TRYLOCK;
2487 }
2488 /*
2489 * Loop over allocation groups twice; first time with
2490 * trylock set, second time without.
2491 */
1da177e4 2492 for (;;) {
a862e0fd 2493 args->pag = xfs_perag_get(mp, args->agno);
1da177e4
LT
2494 if (no_min) args->minleft = 0;
2495 error = xfs_alloc_fix_freelist(args, flags);
2496 args->minleft = minleft;
2497 if (error) {
0b1b213f 2498 trace_xfs_alloc_vextent_nofix(args);
1da177e4
LT
2499 goto error0;
2500 }
2501 /*
2502 * If we get a buffer back then the allocation will fly.
2503 */
2504 if (args->agbp) {
2505 if ((error = xfs_alloc_ag_vextent(args)))
2506 goto error0;
2507 break;
2508 }
0b1b213f
CH
2509
2510 trace_xfs_alloc_vextent_loopfailed(args);
2511
1da177e4
LT
2512 /*
2513 * Didn't work, figure out the next iteration.
2514 */
2515 if (args->agno == sagno &&
2516 type == XFS_ALLOCTYPE_START_BNO)
2517 args->type = XFS_ALLOCTYPE_THIS_AG;
d210a28c
YL
2518 /*
2519 * For the first allocation, we can try any AG to get
2520 * space. However, if we already have allocated a
2521 * block, we don't want to try AGs whose number is below
2522 * sagno. Otherwise, we may end up with out-of-order
2523 * locking of AGF, which might cause deadlock.
2524 */
2525 if (++(args->agno) == mp->m_sb.sb_agcount) {
2526 if (args->firstblock != NULLFSBLOCK)
2527 args->agno = sagno;
2528 else
2529 args->agno = 0;
2530 }
1da177e4
LT
2531 /*
2532 * Reached the starting a.g., must either be done
2533 * or switch to non-trylock mode.
2534 */
2535 if (args->agno == sagno) {
2536 if (no_min == 1) {
2537 args->agbno = NULLAGBLOCK;
0b1b213f 2538 trace_xfs_alloc_vextent_allfailed(args);
1da177e4
LT
2539 break;
2540 }
2541 if (flags == 0) {
2542 no_min = 1;
2543 } else {
2544 flags = 0;
2545 if (type == XFS_ALLOCTYPE_START_BNO) {
2546 args->agbno = XFS_FSB_TO_AGBNO(mp,
2547 args->fsbno);
2548 args->type = XFS_ALLOCTYPE_NEAR_BNO;
2549 }
2550 }
2551 }
a862e0fd 2552 xfs_perag_put(args->pag);
1da177e4 2553 }
1da177e4
LT
2554 if (bump_rotor || (type == XFS_ALLOCTYPE_ANY_AG)) {
2555 if (args->agno == sagno)
2556 mp->m_agfrotor = (mp->m_agfrotor + 1) %
2557 (mp->m_sb.sb_agcount * rotorstep);
2558 else
2559 mp->m_agfrotor = (args->agno * rotorstep + 1) %
2560 (mp->m_sb.sb_agcount * rotorstep);
2561 }
2562 break;
2563 default:
2564 ASSERT(0);
2565 /* NOTREACHED */
2566 }
2567 if (args->agbno == NULLAGBLOCK)
2568 args->fsbno = NULLFSBLOCK;
2569 else {
2570 args->fsbno = XFS_AGB_TO_FSB(mp, args->agno, args->agbno);
2571#ifdef DEBUG
2572 ASSERT(args->len >= args->minlen);
2573 ASSERT(args->len <= args->maxlen);
2574 ASSERT(args->agbno % args->alignment == 0);
2575 XFS_AG_CHECK_DADDR(mp, XFS_FSB_TO_DADDR(mp, args->fsbno),
2576 args->len);
2577#endif
2578 }
a862e0fd 2579 xfs_perag_put(args->pag);
1da177e4
LT
2580 return 0;
2581error0:
a862e0fd 2582 xfs_perag_put(args->pag);
1da177e4
LT
2583 return error;
2584}
2585
2586/*
2587 * Free an extent.
2588 * Just break up the extent address and hand off to xfs_free_ag_extent
2589 * after fixing up the freelist.
2590 */
2591int /* error */
2592xfs_free_extent(
2593 xfs_trans_t *tp, /* transaction pointer */
2594 xfs_fsblock_t bno, /* starting block number of extent */
2595 xfs_extlen_t len) /* length of extent */
2596{
0e1edbd9 2597 xfs_alloc_arg_t args;
1da177e4
LT
2598 int error;
2599
2600 ASSERT(len != 0);
0e1edbd9 2601 memset(&args, 0, sizeof(xfs_alloc_arg_t));
1da177e4
LT
2602 args.tp = tp;
2603 args.mp = tp->t_mountp;
be65b18a
DC
2604
2605 /*
2606 * validate that the block number is legal - the enables us to detect
2607 * and handle a silent filesystem corruption rather than crashing.
2608 */
1da177e4 2609 args.agno = XFS_FSB_TO_AGNO(args.mp, bno);
be65b18a 2610 if (args.agno >= args.mp->m_sb.sb_agcount)
2451337d 2611 return -EFSCORRUPTED;
be65b18a 2612
1da177e4 2613 args.agbno = XFS_FSB_TO_AGBNO(args.mp, bno);
be65b18a 2614 if (args.agbno >= args.mp->m_sb.sb_agblocks)
2451337d 2615 return -EFSCORRUPTED;
be65b18a 2616
a862e0fd 2617 args.pag = xfs_perag_get(args.mp, args.agno);
be65b18a
DC
2618 ASSERT(args.pag);
2619
2620 error = xfs_alloc_fix_freelist(&args, XFS_ALLOC_FLAG_FREEING);
2621 if (error)
1da177e4 2622 goto error0;
be65b18a
DC
2623
2624 /* validate the extent size is legal now we have the agf locked */
2625 if (args.agbno + len >
2626 be32_to_cpu(XFS_BUF_TO_AGF(args.agbp)->agf_length)) {
2451337d 2627 error = -EFSCORRUPTED;
be65b18a
DC
2628 goto error0;
2629 }
2630
0e1edbd9 2631 error = xfs_free_ag_extent(tp, args.agbp, args.agno, args.agbno, len, 0);
a870acd9 2632 if (!error)
4ecbfe63 2633 xfs_extent_busy_insert(tp, args.agno, args.agbno, len, 0);
1da177e4 2634error0:
a862e0fd 2635 xfs_perag_put(args.pag);
1da177e4
LT
2636 return error;
2637}
This page took 0.846181 seconds and 5 git commands to generate.