1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18#include "xfs.h"
19#include "xfs_fs.h"
20#include "xfs_types.h"
21#include "xfs_bit.h"
22#include "xfs_log.h"
23#include "xfs_trans.h"
24#include "xfs_sb.h"
25#include "xfs_ag.h"
26#include "xfs_mount.h"
27#include "xfs_bmap_btree.h"
28#include "xfs_alloc_btree.h"
29#include "xfs_ialloc_btree.h"
30#include "xfs_dinode.h"
31#include "xfs_inode.h"
32#include "xfs_btree.h"
33#include "xfs_alloc.h"
34#include "xfs_extent_busy.h"
35#include "xfs_error.h"
36#include "xfs_cksum.h"
37#include "xfs_trace.h"
38#include "xfs_buf_item.h"
39
40struct workqueue_struct *xfs_alloc_wq;
41
42#define XFS_ABSDIFF(a,b) (((a) <= (b)) ? ((b) - (a)) : ((a) - (b)))
43
44#define XFSA_FIXUP_BNO_OK 1
45#define XFSA_FIXUP_CNT_OK 2
46
47STATIC int xfs_alloc_ag_vextent_exact(xfs_alloc_arg_t *);
48STATIC int xfs_alloc_ag_vextent_near(xfs_alloc_arg_t *);
49STATIC int xfs_alloc_ag_vextent_size(xfs_alloc_arg_t *);
50STATIC int xfs_alloc_ag_vextent_small(xfs_alloc_arg_t *,
51 xfs_btree_cur_t *, xfs_agblock_t *, xfs_extlen_t *, int *);
52
53
54
55
56STATIC int
57xfs_alloc_lookup_eq(
58 struct xfs_btree_cur *cur,
59 xfs_agblock_t bno,
60 xfs_extlen_t len,
61 int *stat)
62{
63 cur->bc_rec.a.ar_startblock = bno;
64 cur->bc_rec.a.ar_blockcount = len;
65 return xfs_btree_lookup(cur, XFS_LOOKUP_EQ, stat);
66}
67
68
69
70
71
72int
73xfs_alloc_lookup_ge(
74 struct xfs_btree_cur *cur,
75 xfs_agblock_t bno,
76 xfs_extlen_t len,
77 int *stat)
78{
79 cur->bc_rec.a.ar_startblock = bno;
80 cur->bc_rec.a.ar_blockcount = len;
81 return xfs_btree_lookup(cur, XFS_LOOKUP_GE, stat);
82}
83
84
85
86
87
88int
89xfs_alloc_lookup_le(
90 struct xfs_btree_cur *cur,
91 xfs_agblock_t bno,
92 xfs_extlen_t len,
93 int *stat)
94{
95 cur->bc_rec.a.ar_startblock = bno;
96 cur->bc_rec.a.ar_blockcount = len;
97 return xfs_btree_lookup(cur, XFS_LOOKUP_LE, stat);
98}
99
100
101
102
103
104
105STATIC int
106xfs_alloc_update(
107 struct xfs_btree_cur *cur,
108 xfs_agblock_t bno,
109 xfs_extlen_t len)
110{
111 union xfs_btree_rec rec;
112
113 rec.alloc.ar_startblock = cpu_to_be32(bno);
114 rec.alloc.ar_blockcount = cpu_to_be32(len);
115 return xfs_btree_update(cur, &rec);
116}
117
118
119
120
121int
122xfs_alloc_get_rec(
123 struct xfs_btree_cur *cur,
124 xfs_agblock_t *bno,
125 xfs_extlen_t *len,
126 int *stat)
127{
128 union xfs_btree_rec *rec;
129 int error;
130
131 error = xfs_btree_get_rec(cur, &rec, stat);
132 if (!error && *stat == 1) {
133 *bno = be32_to_cpu(rec->alloc.ar_startblock);
134 *len = be32_to_cpu(rec->alloc.ar_blockcount);
135 }
136 return error;
137}
138
139
140
141
142
143STATIC void
144xfs_alloc_compute_aligned(
145 xfs_alloc_arg_t *args,
146 xfs_agblock_t foundbno,
147 xfs_extlen_t foundlen,
148 xfs_agblock_t *resbno,
149 xfs_extlen_t *reslen)
150{
151 xfs_agblock_t bno;
152 xfs_extlen_t len;
153
154
155 xfs_extent_busy_trim(args, foundbno, foundlen, &bno, &len);
156
157 if (args->alignment > 1 && len >= args->minlen) {
158 xfs_agblock_t aligned_bno = roundup(bno, args->alignment);
159 xfs_extlen_t diff = aligned_bno - bno;
160
161 *resbno = aligned_bno;
162 *reslen = diff >= len ? 0 : len - diff;
163 } else {
164 *resbno = bno;
165 *reslen = len;
166 }
167}
168
169
170
171
172
173STATIC xfs_extlen_t
174xfs_alloc_compute_diff(
175 xfs_agblock_t wantbno,
176 xfs_extlen_t wantlen,
177 xfs_extlen_t alignment,
178 char userdata,
179 xfs_agblock_t freebno,
180 xfs_extlen_t freelen,
181 xfs_agblock_t *newbnop)
182{
183 xfs_agblock_t freeend;
184 xfs_agblock_t newbno1;
185 xfs_agblock_t newbno2;
186 xfs_extlen_t newlen1=0;
187 xfs_extlen_t newlen2=0;
188 xfs_agblock_t wantend;
189
190 ASSERT(freelen >= wantlen);
191 freeend = freebno + freelen;
192 wantend = wantbno + wantlen;
193
194
195
196
197
198
199
200 if (freebno >= wantbno || (userdata && freeend < wantend)) {
201 if ((newbno1 = roundup(freebno, alignment)) >= freeend)
202 newbno1 = NULLAGBLOCK;
203 } else if (freeend >= wantend && alignment > 1) {
204 newbno1 = roundup(wantbno, alignment);
205 newbno2 = newbno1 - alignment;
206 if (newbno1 >= freeend)
207 newbno1 = NULLAGBLOCK;
208 else
209 newlen1 = XFS_EXTLEN_MIN(wantlen, freeend - newbno1);
210 if (newbno2 < freebno)
211 newbno2 = NULLAGBLOCK;
212 else
213 newlen2 = XFS_EXTLEN_MIN(wantlen, freeend - newbno2);
214 if (newbno1 != NULLAGBLOCK && newbno2 != NULLAGBLOCK) {
215 if (newlen1 < newlen2 ||
216 (newlen1 == newlen2 &&
217 XFS_ABSDIFF(newbno1, wantbno) >
218 XFS_ABSDIFF(newbno2, wantbno)))
219 newbno1 = newbno2;
220 } else if (newbno2 != NULLAGBLOCK)
221 newbno1 = newbno2;
222 } else if (freeend >= wantend) {
223 newbno1 = wantbno;
224 } else if (alignment > 1) {
225 newbno1 = roundup(freeend - wantlen, alignment);
226 if (newbno1 > freeend - wantlen &&
227 newbno1 - alignment >= freebno)
228 newbno1 -= alignment;
229 else if (newbno1 >= freeend)
230 newbno1 = NULLAGBLOCK;
231 } else
232 newbno1 = freeend - wantlen;
233 *newbnop = newbno1;
234 return newbno1 == NULLAGBLOCK ? 0 : XFS_ABSDIFF(newbno1, wantbno);
235}
236
237
238
239
240
241
242
243STATIC void
244xfs_alloc_fix_len(
245 xfs_alloc_arg_t *args)
246{
247 xfs_extlen_t k;
248 xfs_extlen_t rlen;
249
250 ASSERT(args->mod < args->prod);
251 rlen = args->len;
252 ASSERT(rlen >= args->minlen);
253 ASSERT(rlen <= args->maxlen);
254 if (args->prod <= 1 || rlen < args->mod || rlen == args->maxlen ||
255 (args->mod == 0 && rlen < args->prod))
256 return;
257 k = rlen % args->prod;
258 if (k == args->mod)
259 return;
260 if (k > args->mod) {
261 if ((int)(rlen = rlen - k - args->mod) < (int)args->minlen)
262 return;
263 } else {
264 if ((int)(rlen = rlen - args->prod - (args->mod - k)) <
265 (int)args->minlen)
266 return;
267 }
268 ASSERT(rlen >= args->minlen);
269 ASSERT(rlen <= args->maxlen);
270 args->len = rlen;
271}
272
273
274
275
276
277STATIC int
278xfs_alloc_fix_minleft(
279 xfs_alloc_arg_t *args)
280{
281 xfs_agf_t *agf;
282 int diff;
283
284 if (args->minleft == 0)
285 return 1;
286 agf = XFS_BUF_TO_AGF(args->agbp);
287 diff = be32_to_cpu(agf->agf_freeblks)
288 - args->len - args->minleft;
289 if (diff >= 0)
290 return 1;
291 args->len += diff;
292 if (args->len >= args->minlen)
293 return 1;
294 args->agbno = NULLAGBLOCK;
295 return 0;
296}
297
298
299
300
301
302
303
304
305STATIC int
306xfs_alloc_fixup_trees(
307 xfs_btree_cur_t *cnt_cur,
308 xfs_btree_cur_t *bno_cur,
309 xfs_agblock_t fbno,
310 xfs_extlen_t flen,
311 xfs_agblock_t rbno,
312 xfs_extlen_t rlen,
313 int flags)
314{
315 int error;
316 int i;
317 xfs_agblock_t nfbno1;
318 xfs_agblock_t nfbno2;
319 xfs_extlen_t nflen1=0;
320 xfs_extlen_t nflen2=0;
321
322
323
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;
329 XFS_WANT_CORRUPTED_RETURN(
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;
335 XFS_WANT_CORRUPTED_RETURN(i == 1);
336 }
337
338
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;
344 XFS_WANT_CORRUPTED_RETURN(
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;
350 XFS_WANT_CORRUPTED_RETURN(i == 1);
351 }
352
353#ifdef DEBUG
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]);
360
361 XFS_WANT_CORRUPTED_RETURN(
362 bnoblock->bb_numrecs == cntblock->bb_numrecs);
363 }
364#endif
365
366
367
368
369
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
389
390 if ((error = xfs_btree_delete(cnt_cur, &i)))
391 return error;
392 XFS_WANT_CORRUPTED_RETURN(i == 1);
393
394
395
396 if (nfbno1 != NULLAGBLOCK) {
397 if ((error = xfs_alloc_lookup_eq(cnt_cur, nfbno1, nflen1, &i)))
398 return error;
399 XFS_WANT_CORRUPTED_RETURN(i == 0);
400 if ((error = xfs_btree_insert(cnt_cur, &i)))
401 return error;
402 XFS_WANT_CORRUPTED_RETURN(i == 1);
403 }
404 if (nfbno2 != NULLAGBLOCK) {
405 if ((error = xfs_alloc_lookup_eq(cnt_cur, nfbno2, nflen2, &i)))
406 return error;
407 XFS_WANT_CORRUPTED_RETURN(i == 0);
408 if ((error = xfs_btree_insert(cnt_cur, &i)))
409 return error;
410 XFS_WANT_CORRUPTED_RETURN(i == 1);
411 }
412
413
414
415 if (nfbno1 == NULLAGBLOCK) {
416
417
418
419 if ((error = xfs_btree_delete(bno_cur, &i)))
420 return error;
421 XFS_WANT_CORRUPTED_RETURN(i == 1);
422 } else {
423
424
425
426 if ((error = xfs_alloc_update(bno_cur, nfbno1, nflen1)))
427 return error;
428 }
429 if (nfbno2 != NULLAGBLOCK) {
430
431
432
433 if ((error = xfs_alloc_lookup_eq(bno_cur, nfbno2, nflen2, &i)))
434 return error;
435 XFS_WANT_CORRUPTED_RETURN(i == 0);
436 if ((error = xfs_btree_insert(bno_cur, &i)))
437 return error;
438 XFS_WANT_CORRUPTED_RETURN(i == 1);
439 }
440 return 0;
441}
442
443static bool
444xfs_agfl_verify(
445 struct xfs_buf *bp)
446{
447 struct xfs_mount *mp = bp->b_target->bt_mount;
448 struct xfs_agfl *agfl = XFS_BUF_TO_AGFL(bp);
449 int i;
450
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
457
458
459
460
461 if (bp->b_pag && be32_to_cpu(agfl->agfl_seqno) != bp->b_pag->pag_agno)
462 return false;
463
464 for (i = 0; i < XFS_AGFL_SIZE(mp); i++) {
465 if (be32_to_cpu(agfl->agfl_bno[i]) != NULLAGBLOCK &&
466 be32_to_cpu(agfl->agfl_bno[i]) >= mp->m_sb.sb_agblocks)
467 return false;
468 }
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;
477 int agfl_ok = 1;
478
479
480
481
482
483
484
485 if (!xfs_sb_version_hascrc(&mp->m_sb))
486 return;
487
488 agfl_ok = xfs_verify_cksum(bp->b_addr, BBTOB(bp->b_length),
489 offsetof(struct xfs_agfl, agfl_crc));
490
491 agfl_ok = agfl_ok && xfs_agfl_verify(bp);
492
493 if (!agfl_ok) {
494 XFS_CORRUPTION_ERROR(__func__, XFS_ERRLEVEL_LOW, mp, bp->b_addr);
495 xfs_buf_ioerror(bp, EFSCORRUPTED);
496 }
497}
498
499static void
500xfs_agfl_write_verify(
501 struct xfs_buf *bp)
502{
503 struct xfs_mount *mp = bp->b_target->bt_mount;
504 struct xfs_buf_log_item *bip = bp->b_fspriv;
505
506
507 if (!xfs_sb_version_hascrc(&mp->m_sb))
508 return;
509
510 if (!xfs_agfl_verify(bp)) {
511 XFS_CORRUPTION_ERROR(__func__, XFS_ERRLEVEL_LOW, mp, bp->b_addr);
512 xfs_buf_ioerror(bp, EFSCORRUPTED);
513 return;
514 }
515
516 if (bip)
517 XFS_BUF_TO_AGFL(bp)->agfl_lsn = cpu_to_be64(bip->bli_item.li_lsn);
518
519 xfs_update_cksum(bp->b_addr, BBTOB(bp->b_length),
520 offsetof(struct xfs_agfl, agfl_crc));
521}
522
523const struct xfs_buf_ops xfs_agfl_buf_ops = {
524 .verify_read = xfs_agfl_read_verify,
525 .verify_write = xfs_agfl_write_verify,
526};
527
528
529
530
531STATIC int
532xfs_alloc_read_agfl(
533 xfs_mount_t *mp,
534 xfs_trans_t *tp,
535 xfs_agnumber_t agno,
536 xfs_buf_t **bpp)
537{
538 xfs_buf_t *bp;
539 int error;
540
541 ASSERT(agno != NULLAGNUMBER);
542 error = xfs_trans_read_buf(
543 mp, tp, mp->m_ddev_targp,
544 XFS_AG_DADDR(mp, agno, XFS_AGFL_DADDR(mp)),
545 XFS_FSS_TO_BB(mp, 1), 0, &bp, &xfs_agfl_buf_ops);
546 if (error)
547 return error;
548 ASSERT(!xfs_buf_geterror(bp));
549 xfs_buf_set_ref(bp, XFS_AGFL_REF);
550 *bpp = bp;
551 return 0;
552}
553
554STATIC int
555xfs_alloc_update_counters(
556 struct xfs_trans *tp,
557 struct xfs_perag *pag,
558 struct xfs_buf *agbp,
559 long len)
560{
561 struct xfs_agf *agf = XFS_BUF_TO_AGF(agbp);
562
563 pag->pagf_freeblks += len;
564 be32_add_cpu(&agf->agf_freeblks, len);
565
566 xfs_trans_agblocks_delta(tp, len);
567 if (unlikely(be32_to_cpu(agf->agf_freeblks) >
568 be32_to_cpu(agf->agf_length)))
569 return EFSCORRUPTED;
570
571 xfs_alloc_log_agf(tp, agbp, XFS_AGF_FREEBLKS);
572 return 0;
573}
574
575
576
577
578
579
580
581
582
583
584
585
586
587STATIC int
588xfs_alloc_ag_vextent(
589 xfs_alloc_arg_t *args)
590{
591 int error=0;
592
593 ASSERT(args->minlen > 0);
594 ASSERT(args->maxlen > 0);
595 ASSERT(args->minlen <= args->maxlen);
596 ASSERT(args->mod < args->prod);
597 ASSERT(args->alignment > 0);
598
599
600
601 args->wasfromfl = 0;
602 switch (args->type) {
603 case XFS_ALLOCTYPE_THIS_AG:
604 error = xfs_alloc_ag_vextent_size(args);
605 break;
606 case XFS_ALLOCTYPE_NEAR_BNO:
607 error = xfs_alloc_ag_vextent_near(args);
608 break;
609 case XFS_ALLOCTYPE_THIS_BNO:
610 error = xfs_alloc_ag_vextent_exact(args);
611 break;
612 default:
613 ASSERT(0);
614
615 }
616
617 if (error || args->agbno == NULLAGBLOCK)
618 return error;
619
620 ASSERT(args->len >= args->minlen);
621 ASSERT(args->len <= args->maxlen);
622 ASSERT(!args->wasfromfl || !args->isfl);
623 ASSERT(args->agbno % args->alignment == 0);
624
625 if (!args->wasfromfl) {
626 error = xfs_alloc_update_counters(args->tp, args->pag,
627 args->agbp,
628 -((long)(args->len)));
629 if (error)
630 return error;
631
632 ASSERT(!xfs_extent_busy_search(args->mp, args->agno,
633 args->agbno, args->len));
634 }
635
636 if (!args->isfl) {
637 xfs_trans_mod_sb(args->tp, args->wasdel ?
638 XFS_TRANS_SB_RES_FDBLOCKS :
639 XFS_TRANS_SB_FDBLOCKS,
640 -((long)(args->len)));
641 }
642
643 XFS_STATS_INC(xs_allocx);
644 XFS_STATS_ADD(xs_allocb, args->len);
645 return error;
646}
647
648
649
650
651
652
653
654STATIC int
655xfs_alloc_ag_vextent_exact(
656 xfs_alloc_arg_t *args)
657{
658 xfs_btree_cur_t *bno_cur;
659 xfs_btree_cur_t *cnt_cur;
660 int error;
661 xfs_agblock_t fbno;
662 xfs_extlen_t flen;
663 xfs_agblock_t tbno;
664 xfs_extlen_t tlen;
665 xfs_agblock_t tend;
666 int i;
667
668 ASSERT(args->alignment == 1);
669
670
671
672
673 bno_cur = xfs_allocbt_init_cursor(args->mp, args->tp, args->agbp,
674 args->agno, XFS_BTNUM_BNO);
675
676
677
678
679
680
681 error = xfs_alloc_lookup_le(bno_cur, args->agbno, args->minlen, &i);
682 if (error)
683 goto error0;
684 if (!i)
685 goto not_found;
686
687
688
689
690 error = xfs_alloc_get_rec(bno_cur, &fbno, &flen, &i);
691 if (error)
692 goto error0;
693 XFS_WANT_CORRUPTED_GOTO(i == 1, error0);
694 ASSERT(fbno <= args->agbno);
695
696
697
698
699 xfs_extent_busy_trim(args, fbno, flen, &tbno, &tlen);
700
701
702
703
704
705 if (tbno > args->agbno)
706 goto not_found;
707 if (tlen < args->minlen)
708 goto not_found;
709 tend = tbno + tlen;
710 if (tend < args->agbno + args->minlen)
711 goto not_found;
712
713
714
715
716
717
718
719 args->len = XFS_AGBLOCK_MIN(tend, args->agbno + args->maxlen)
720 - args->agbno;
721 xfs_alloc_fix_len(args);
722 if (!xfs_alloc_fix_minleft(args))
723 goto not_found;
724
725 ASSERT(args->agbno + args->len <= tend);
726
727
728
729
730
731 cnt_cur = xfs_allocbt_init_cursor(args->mp, args->tp, args->agbp,
732 args->agno, XFS_BTNUM_CNT);
733 ASSERT(args->agbno + args->len <=
734 be32_to_cpu(XFS_BUF_TO_AGF(args->agbp)->agf_length));
735 error = xfs_alloc_fixup_trees(cnt_cur, bno_cur, fbno, flen, args->agbno,
736 args->len, XFSA_FIXUP_BNO_OK);
737 if (error) {
738 xfs_btree_del_cursor(cnt_cur, XFS_BTREE_ERROR);
739 goto error0;
740 }
741
742 xfs_btree_del_cursor(bno_cur, XFS_BTREE_NOERROR);
743 xfs_btree_del_cursor(cnt_cur, XFS_BTREE_NOERROR);
744
745 args->wasfromfl = 0;
746 trace_xfs_alloc_exact_done(args);
747 return 0;
748
749not_found:
750
751 xfs_btree_del_cursor(bno_cur, XFS_BTREE_NOERROR);
752 args->agbno = NULLAGBLOCK;
753 trace_xfs_alloc_exact_notfound(args);
754 return 0;
755
756error0:
757 xfs_btree_del_cursor(bno_cur, XFS_BTREE_ERROR);
758 trace_xfs_alloc_exact_error(args);
759 return error;
760}
761
762
763
764
765
766STATIC int
767xfs_alloc_find_best_extent(
768 struct xfs_alloc_arg *args,
769 struct xfs_btree_cur **gcur,
770 struct xfs_btree_cur **scur,
771 xfs_agblock_t gdiff,
772 xfs_agblock_t *sbno,
773 xfs_extlen_t *slen,
774 xfs_agblock_t *sbnoa,
775 xfs_extlen_t *slena,
776 int dir)
777{
778 xfs_agblock_t new;
779 xfs_agblock_t sdiff;
780 int error;
781 int i;
782
783
784 if (!gdiff)
785 goto out_use_good;
786
787
788
789
790 do {
791 error = xfs_alloc_get_rec(*scur, sbno, slen, &i);
792 if (error)
793 goto error0;
794 XFS_WANT_CORRUPTED_GOTO(i == 1, error0);
795 xfs_alloc_compute_aligned(args, *sbno, *slen, sbnoa, slena);
796
797
798
799
800 if (!dir) {
801 if (*sbnoa >= args->agbno + gdiff)
802 goto out_use_good;
803 } else {
804 if (*sbnoa <= args->agbno - gdiff)
805 goto out_use_good;
806 }
807
808
809
810
811 if (*slena >= args->minlen) {
812 args->len = XFS_EXTLEN_MIN(*slena, args->maxlen);
813 xfs_alloc_fix_len(args);
814
815 sdiff = xfs_alloc_compute_diff(args->agbno, args->len,
816 args->alignment,
817 args->userdata, *sbnoa,
818 *slena, &new);
819
820
821
822
823 if (sdiff < gdiff)
824 goto out_use_search;
825 goto out_use_good;
826 }
827
828 if (!dir)
829 error = xfs_btree_increment(*scur, 0, &i);
830 else
831 error = xfs_btree_decrement(*scur, 0, &i);
832 if (error)
833 goto error0;
834 } while (i);
835
836out_use_good:
837 xfs_btree_del_cursor(*scur, XFS_BTREE_NOERROR);
838 *scur = NULL;
839 return 0;
840
841out_use_search:
842 xfs_btree_del_cursor(*gcur, XFS_BTREE_NOERROR);
843 *gcur = NULL;
844 return 0;
845
846error0:
847
848 return error;
849}
850
851
852
853
854
855
856
857STATIC int
858xfs_alloc_ag_vextent_near(
859 xfs_alloc_arg_t *args)
860{
861 xfs_btree_cur_t *bno_cur_gt;
862 xfs_btree_cur_t *bno_cur_lt;
863 xfs_btree_cur_t *cnt_cur;
864 xfs_agblock_t gtbno;
865 xfs_agblock_t gtbnoa;
866 xfs_extlen_t gtdiff;
867 xfs_extlen_t gtlen;
868 xfs_extlen_t gtlena;
869 xfs_agblock_t gtnew;
870 int error;
871 int i;
872 int j;
873 xfs_agblock_t ltbno;
874 xfs_agblock_t ltbnoa;
875 xfs_extlen_t ltdiff;
876 xfs_extlen_t ltlen;
877 xfs_extlen_t ltlena;
878 xfs_agblock_t ltnew;
879 xfs_extlen_t rlen;
880 int forced = 0;
881#ifdef DEBUG
882
883
884
885 int dofirst;
886
887 dofirst = prandom_u32() & 1;
888#endif
889
890restart:
891 bno_cur_lt = NULL;
892 bno_cur_gt = NULL;
893 ltlen = 0;
894 gtlena = 0;
895 ltlena = 0;
896
897
898
899
900 cnt_cur = xfs_allocbt_init_cursor(args->mp, args->tp, args->agbp,
901 args->agno, XFS_BTNUM_CNT);
902
903
904
905
906 if ((error = xfs_alloc_lookup_ge(cnt_cur, 0, args->maxlen, &i)))
907 goto error0;
908
909
910
911
912 if (!i) {
913 if ((error = xfs_alloc_ag_vextent_small(args, cnt_cur, <bno,
914 <len, &i)))
915 goto error0;
916 if (i == 0 || ltlen == 0) {
917 xfs_btree_del_cursor(cnt_cur, XFS_BTREE_NOERROR);
918 trace_xfs_alloc_near_noentry(args);
919 return 0;
920 }
921 ASSERT(i == 1);
922 }
923 args->wasfromfl = 0;
924
925
926
927
928
929
930
931
932
933
934
935 while (xfs_btree_islastblock(cnt_cur, 0)) {
936 xfs_extlen_t bdiff;
937 int besti=0;
938 xfs_extlen_t blen=0;
939 xfs_agblock_t bnew=0;
940
941#ifdef DEBUG
942 if (dofirst)
943 break;
944#endif
945
946
947
948
949
950
951 if (ltlen || args->alignment > 1) {
952 cnt_cur->bc_ptrs[0] = 1;
953 do {
954 if ((error = xfs_alloc_get_rec(cnt_cur, <bno,
955 <len, &i)))
956 goto error0;
957 XFS_WANT_CORRUPTED_GOTO(i == 1, error0);
958 if (ltlen >= args->minlen)
959 break;
960 if ((error = xfs_btree_increment(cnt_cur, 0, &i)))
961 goto error0;
962 } while (i);
963 ASSERT(ltlen >= args->minlen);
964 if (!i)
965 break;
966 }
967 i = cnt_cur->bc_ptrs[0];
968 for (j = 1, blen = 0, bdiff = 0;
969 !error && j && (blen < args->maxlen || bdiff > 0);
970 error = xfs_btree_increment(cnt_cur, 0, &j)) {
971
972
973
974
975 if ((error = xfs_alloc_get_rec(cnt_cur, <bno, <len, &i)))
976 goto error0;
977 XFS_WANT_CORRUPTED_GOTO(i == 1, error0);
978 xfs_alloc_compute_aligned(args, ltbno, ltlen,
979 <bnoa, <lena);
980 if (ltlena < args->minlen)
981 continue;
982 args->len = XFS_EXTLEN_MIN(ltlena, args->maxlen);
983 xfs_alloc_fix_len(args);
984 ASSERT(args->len >= args->minlen);
985 if (args->len < blen)
986 continue;
987 ltdiff = xfs_alloc_compute_diff(args->agbno, args->len,
988 args->alignment, args->userdata, ltbnoa,
989 ltlena, <new);
990 if (ltnew != NULLAGBLOCK &&
991 (args->len > blen || ltdiff < bdiff)) {
992 bdiff = ltdiff;
993 bnew = ltnew;
994 blen = args->len;
995 besti = cnt_cur->bc_ptrs[0];
996 }
997 }
998
999
1000
1001
1002 if (blen == 0)
1003 break;
1004
1005
1006
1007 cnt_cur->bc_ptrs[0] = besti;
1008 if ((error = xfs_alloc_get_rec(cnt_cur, <bno, <len, &i)))
1009 goto error0;
1010 XFS_WANT_CORRUPTED_GOTO(i == 1, error0);
1011 ASSERT(ltbno + ltlen <= be32_to_cpu(XFS_BUF_TO_AGF(args->agbp)->agf_length));
1012 args->len = blen;
1013 if (!xfs_alloc_fix_minleft(args)) {
1014 xfs_btree_del_cursor(cnt_cur, XFS_BTREE_NOERROR);
1015 trace_xfs_alloc_near_nominleft(args);
1016 return 0;
1017 }
1018 blen = args->len;
1019
1020
1021
1022 args->agbno = bnew;
1023 ASSERT(bnew >= ltbno);
1024 ASSERT(bnew + blen <= ltbno + ltlen);
1025
1026
1027
1028 bno_cur_lt = xfs_allocbt_init_cursor(args->mp, args->tp,
1029 args->agbp, args->agno, XFS_BTNUM_BNO);
1030
1031
1032
1033 if ((error = xfs_alloc_fixup_trees(cnt_cur, bno_cur_lt, ltbno,
1034 ltlen, bnew, blen, XFSA_FIXUP_CNT_OK)))
1035 goto error0;
1036 xfs_btree_del_cursor(cnt_cur, XFS_BTREE_NOERROR);
1037 xfs_btree_del_cursor(bno_cur_lt, XFS_BTREE_NOERROR);
1038
1039 trace_xfs_alloc_near_first(args);
1040 return 0;
1041 }
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057 bno_cur_lt = xfs_allocbt_init_cursor(args->mp, args->tp, args->agbp,
1058 args->agno, XFS_BTNUM_BNO);
1059
1060
1061
1062 if ((error = xfs_alloc_lookup_le(bno_cur_lt, args->agbno, args->maxlen, &i)))
1063 goto error0;
1064 if (!i) {
1065
1066
1067
1068
1069 bno_cur_gt = bno_cur_lt;
1070 bno_cur_lt = NULL;
1071 }
1072
1073
1074
1075 else if ((error = xfs_btree_dup_cursor(bno_cur_lt, &bno_cur_gt)))
1076 goto error0;
1077
1078
1079
1080
1081 if ((error = xfs_btree_increment(bno_cur_gt, 0, &i)))
1082 goto error0;
1083 if (!i) {
1084
1085
1086
1087 xfs_btree_del_cursor(bno_cur_gt, XFS_BTREE_NOERROR);
1088 bno_cur_gt = NULL;
1089 }
1090
1091
1092
1093
1094
1095 do {
1096 if (bno_cur_lt) {
1097 if ((error = xfs_alloc_get_rec(bno_cur_lt, <bno, <len, &i)))
1098 goto error0;
1099 XFS_WANT_CORRUPTED_GOTO(i == 1, error0);
1100 xfs_alloc_compute_aligned(args, ltbno, ltlen,
1101 <bnoa, <lena);
1102 if (ltlena >= args->minlen)
1103 break;
1104 if ((error = xfs_btree_decrement(bno_cur_lt, 0, &i)))
1105 goto error0;
1106 if (!i) {
1107 xfs_btree_del_cursor(bno_cur_lt,
1108 XFS_BTREE_NOERROR);
1109 bno_cur_lt = NULL;
1110 }
1111 }
1112 if (bno_cur_gt) {
1113 if ((error = xfs_alloc_get_rec(bno_cur_gt, >bno, >len, &i)))
1114 goto error0;
1115 XFS_WANT_CORRUPTED_GOTO(i == 1, error0);
1116 xfs_alloc_compute_aligned(args, gtbno, gtlen,
1117 >bnoa, >lena);
1118 if (gtlena >= args->minlen)
1119 break;
1120 if ((error = xfs_btree_increment(bno_cur_gt, 0, &i)))
1121 goto error0;
1122 if (!i) {
1123 xfs_btree_del_cursor(bno_cur_gt,
1124 XFS_BTREE_NOERROR);
1125 bno_cur_gt = NULL;
1126 }
1127 }
1128 } while (bno_cur_lt || bno_cur_gt);
1129
1130
1131
1132
1133 if (bno_cur_lt && bno_cur_gt) {
1134 if (ltlena >= args->minlen) {
1135
1136
1137
1138 args->len = XFS_EXTLEN_MIN(ltlena, args->maxlen);
1139 xfs_alloc_fix_len(args);
1140 ltdiff = xfs_alloc_compute_diff(args->agbno, args->len,
1141 args->alignment, args->userdata, ltbnoa,
1142 ltlena, <new);
1143
1144 error = xfs_alloc_find_best_extent(args,
1145 &bno_cur_lt, &bno_cur_gt,
1146 ltdiff, >bno, >len,
1147 >bnoa, >lena,
1148 0 );
1149 } else {
1150 ASSERT(gtlena >= args->minlen);
1151
1152
1153
1154
1155 args->len = XFS_EXTLEN_MIN(gtlena, args->maxlen);
1156 xfs_alloc_fix_len(args);
1157 gtdiff = xfs_alloc_compute_diff(args->agbno, args->len,
1158 args->alignment, args->userdata, gtbnoa,
1159 gtlena, >new);
1160
1161 error = xfs_alloc_find_best_extent(args,
1162 &bno_cur_gt, &bno_cur_lt,
1163 gtdiff, <bno, <len,
1164 <bnoa, <lena,
1165 1 );
1166 }
1167
1168 if (error)
1169 goto error0;
1170 }
1171
1172
1173
1174
1175 if (bno_cur_lt == NULL && bno_cur_gt == NULL) {
1176 xfs_btree_del_cursor(cnt_cur, XFS_BTREE_NOERROR);
1177
1178 if (!forced++) {
1179 trace_xfs_alloc_near_busy(args);
1180 xfs_log_force(args->mp, XFS_LOG_SYNC);
1181 goto restart;
1182 }
1183 trace_xfs_alloc_size_neither(args);
1184 args->agbno = NULLAGBLOCK;
1185 return 0;
1186 }
1187
1188
1189
1190
1191
1192
1193
1194 if (bno_cur_gt) {
1195 bno_cur_lt = bno_cur_gt;
1196 bno_cur_gt = NULL;
1197 ltbno = gtbno;
1198 ltbnoa = gtbnoa;
1199 ltlen = gtlen;
1200 ltlena = gtlena;
1201 j = 1;
1202 } else
1203 j = 0;
1204
1205
1206
1207
1208 args->len = XFS_EXTLEN_MIN(ltlena, args->maxlen);
1209 xfs_alloc_fix_len(args);
1210 if (!xfs_alloc_fix_minleft(args)) {
1211 trace_xfs_alloc_near_nominleft(args);
1212 xfs_btree_del_cursor(bno_cur_lt, XFS_BTREE_NOERROR);
1213 xfs_btree_del_cursor(cnt_cur, XFS_BTREE_NOERROR);
1214 return 0;
1215 }
1216 rlen = args->len;
1217 (void)xfs_alloc_compute_diff(args->agbno, rlen, args->alignment,
1218 args->userdata, ltbnoa, ltlena, <new);
1219 ASSERT(ltnew >= ltbno);
1220 ASSERT(ltnew + rlen <= ltbnoa + ltlena);
1221 ASSERT(ltnew + rlen <= be32_to_cpu(XFS_BUF_TO_AGF(args->agbp)->agf_length));
1222 args->agbno = ltnew;
1223
1224 if ((error = xfs_alloc_fixup_trees(cnt_cur, bno_cur_lt, ltbno, ltlen,
1225 ltnew, rlen, XFSA_FIXUP_BNO_OK)))
1226 goto error0;
1227
1228 if (j)
1229 trace_xfs_alloc_near_greater(args);
1230 else
1231 trace_xfs_alloc_near_lesser(args);
1232
1233 xfs_btree_del_cursor(cnt_cur, XFS_BTREE_NOERROR);
1234 xfs_btree_del_cursor(bno_cur_lt, XFS_BTREE_NOERROR);
1235 return 0;
1236
1237 error0:
1238 trace_xfs_alloc_near_error(args);
1239 if (cnt_cur != NULL)
1240 xfs_btree_del_cursor(cnt_cur, XFS_BTREE_ERROR);
1241 if (bno_cur_lt != NULL)
1242 xfs_btree_del_cursor(bno_cur_lt, XFS_BTREE_ERROR);
1243 if (bno_cur_gt != NULL)
1244 xfs_btree_del_cursor(bno_cur_gt, XFS_BTREE_ERROR);
1245 return error;
1246}
1247
1248
1249
1250
1251
1252
1253
1254STATIC int
1255xfs_alloc_ag_vextent_size(
1256 xfs_alloc_arg_t *args)
1257{
1258 xfs_btree_cur_t *bno_cur;
1259 xfs_btree_cur_t *cnt_cur;
1260 int error;
1261 xfs_agblock_t fbno;
1262 xfs_extlen_t flen;
1263 int i;
1264 xfs_agblock_t rbno;
1265 xfs_extlen_t rlen;
1266 int forced = 0;
1267
1268restart:
1269
1270
1271
1272 cnt_cur = xfs_allocbt_init_cursor(args->mp, args->tp, args->agbp,
1273 args->agno, XFS_BTNUM_CNT);
1274 bno_cur = NULL;
1275
1276
1277
1278
1279 if ((error = xfs_alloc_lookup_ge(cnt_cur, 0,
1280 args->maxlen + args->alignment - 1, &i)))
1281 goto error0;
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291 if (!i || forced > 1) {
1292 error = xfs_alloc_ag_vextent_small(args, cnt_cur,
1293 &fbno, &flen, &i);
1294 if (error)
1295 goto error0;
1296 if (i == 0 || flen == 0) {
1297 xfs_btree_del_cursor(cnt_cur, XFS_BTREE_NOERROR);
1298 trace_xfs_alloc_size_noentry(args);
1299 return 0;
1300 }
1301 ASSERT(i == 1);
1302 xfs_alloc_compute_aligned(args, fbno, flen, &rbno, &rlen);
1303 } else {
1304
1305
1306
1307
1308
1309
1310 for (;;) {
1311 error = xfs_alloc_get_rec(cnt_cur, &fbno, &flen, &i);
1312 if (error)
1313 goto error0;
1314 XFS_WANT_CORRUPTED_GOTO(i == 1, error0);
1315
1316 xfs_alloc_compute_aligned(args, fbno, flen,
1317 &rbno, &rlen);
1318
1319 if (rlen >= args->maxlen)
1320 break;
1321
1322 error = xfs_btree_increment(cnt_cur, 0, &i);
1323 if (error)
1324 goto error0;
1325 if (i == 0) {
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336 xfs_btree_del_cursor(cnt_cur,
1337 XFS_BTREE_NOERROR);
1338 trace_xfs_alloc_size_busy(args);
1339 if (!forced++)
1340 xfs_log_force(args->mp, XFS_LOG_SYNC);
1341 goto restart;
1342 }
1343 }
1344 }
1345
1346
1347
1348
1349
1350
1351
1352 rlen = XFS_EXTLEN_MIN(args->maxlen, rlen);
1353 XFS_WANT_CORRUPTED_GOTO(rlen == 0 ||
1354 (rlen <= flen && rbno + rlen <= fbno + flen), error0);
1355 if (rlen < args->maxlen) {
1356 xfs_agblock_t bestfbno;
1357 xfs_extlen_t bestflen;
1358 xfs_agblock_t bestrbno;
1359 xfs_extlen_t bestrlen;
1360
1361 bestrlen = rlen;
1362 bestrbno = rbno;
1363 bestflen = flen;
1364 bestfbno = fbno;
1365 for (;;) {
1366 if ((error = xfs_btree_decrement(cnt_cur, 0, &i)))
1367 goto error0;
1368 if (i == 0)
1369 break;
1370 if ((error = xfs_alloc_get_rec(cnt_cur, &fbno, &flen,
1371 &i)))
1372 goto error0;
1373 XFS_WANT_CORRUPTED_GOTO(i == 1, error0);
1374 if (flen < bestrlen)
1375 break;
1376 xfs_alloc_compute_aligned(args, fbno, flen,
1377 &rbno, &rlen);
1378 rlen = XFS_EXTLEN_MIN(args->maxlen, rlen);
1379 XFS_WANT_CORRUPTED_GOTO(rlen == 0 ||
1380 (rlen <= flen && rbno + rlen <= fbno + flen),
1381 error0);
1382 if (rlen > bestrlen) {
1383 bestrlen = rlen;
1384 bestrbno = rbno;
1385 bestflen = flen;
1386 bestfbno = fbno;
1387 if (rlen == args->maxlen)
1388 break;
1389 }
1390 }
1391 if ((error = xfs_alloc_lookup_eq(cnt_cur, bestfbno, bestflen,
1392 &i)))
1393 goto error0;
1394 XFS_WANT_CORRUPTED_GOTO(i == 1, error0);
1395 rlen = bestrlen;
1396 rbno = bestrbno;
1397 flen = bestflen;
1398 fbno = bestfbno;
1399 }
1400 args->wasfromfl = 0;
1401
1402
1403
1404 args->len = rlen;
1405 if (rlen < args->minlen) {
1406 if (!forced++) {
1407 xfs_btree_del_cursor(cnt_cur, XFS_BTREE_NOERROR);
1408 trace_xfs_alloc_size_busy(args);
1409 xfs_log_force(args->mp, XFS_LOG_SYNC);
1410 goto restart;
1411 }
1412 goto out_nominleft;
1413 }
1414 xfs_alloc_fix_len(args);
1415
1416 if (!xfs_alloc_fix_minleft(args))
1417 goto out_nominleft;
1418 rlen = args->len;
1419 XFS_WANT_CORRUPTED_GOTO(rlen <= flen, error0);
1420
1421
1422
1423 bno_cur = xfs_allocbt_init_cursor(args->mp, args->tp, args->agbp,
1424 args->agno, XFS_BTNUM_BNO);
1425 if ((error = xfs_alloc_fixup_trees(cnt_cur, bno_cur, fbno, flen,
1426 rbno, rlen, XFSA_FIXUP_CNT_OK)))
1427 goto error0;
1428 xfs_btree_del_cursor(cnt_cur, XFS_BTREE_NOERROR);
1429 xfs_btree_del_cursor(bno_cur, XFS_BTREE_NOERROR);
1430 cnt_cur = bno_cur = NULL;
1431 args->len = rlen;
1432 args->agbno = rbno;
1433 XFS_WANT_CORRUPTED_GOTO(
1434 args->agbno + args->len <=
1435 be32_to_cpu(XFS_BUF_TO_AGF(args->agbp)->agf_length),
1436 error0);
1437 trace_xfs_alloc_size_done(args);
1438 return 0;
1439
1440error0:
1441 trace_xfs_alloc_size_error(args);
1442 if (cnt_cur)
1443 xfs_btree_del_cursor(cnt_cur, XFS_BTREE_ERROR);
1444 if (bno_cur)
1445 xfs_btree_del_cursor(bno_cur, XFS_BTREE_ERROR);
1446 return error;
1447
1448out_nominleft:
1449 xfs_btree_del_cursor(cnt_cur, XFS_BTREE_NOERROR);
1450 trace_xfs_alloc_size_nominleft(args);
1451 args->agbno = NULLAGBLOCK;
1452 return 0;
1453}
1454
1455
1456
1457
1458
1459
1460STATIC int
1461xfs_alloc_ag_vextent_small(
1462 xfs_alloc_arg_t *args,
1463 xfs_btree_cur_t *ccur,
1464 xfs_agblock_t *fbnop,
1465 xfs_extlen_t *flenp,
1466 int *stat)
1467{
1468 int error;
1469 xfs_agblock_t fbno;
1470 xfs_extlen_t flen;
1471 int i;
1472
1473 if ((error = xfs_btree_decrement(ccur, 0, &i)))
1474 goto error0;
1475 if (i) {
1476 if ((error = xfs_alloc_get_rec(ccur, &fbno, &flen, &i)))
1477 goto error0;
1478 XFS_WANT_CORRUPTED_GOTO(i == 1, error0);
1479 }
1480
1481
1482
1483
1484
1485 else if (args->minlen == 1 && args->alignment == 1 && !args->isfl &&
1486 (be32_to_cpu(XFS_BUF_TO_AGF(args->agbp)->agf_flcount)
1487 > args->minleft)) {
1488 error = xfs_alloc_get_freelist(args->tp, args->agbp, &fbno, 0);
1489 if (error)
1490 goto error0;
1491 if (fbno != NULLAGBLOCK) {
1492 xfs_extent_busy_reuse(args->mp, args->agno, fbno, 1,
1493 args->userdata);
1494
1495 if (args->userdata) {
1496 xfs_buf_t *bp;
1497
1498 bp = xfs_btree_get_bufs(args->mp, args->tp,
1499 args->agno, fbno, 0);
1500 xfs_trans_binval(args->tp, bp);
1501 }
1502 args->len = 1;
1503 args->agbno = fbno;
1504 XFS_WANT_CORRUPTED_GOTO(
1505 args->agbno + args->len <=
1506 be32_to_cpu(XFS_BUF_TO_AGF(args->agbp)->agf_length),
1507 error0);
1508 args->wasfromfl = 1;
1509 trace_xfs_alloc_small_freelist(args);
1510 *stat = 0;
1511 return 0;
1512 }
1513
1514
1515
1516 else
1517 flen = 0;
1518 }
1519
1520
1521
1522 else {
1523 fbno = NULLAGBLOCK;
1524 flen = 0;
1525 }
1526
1527
1528
1529 if (flen < args->minlen) {
1530 args->agbno = NULLAGBLOCK;
1531 trace_xfs_alloc_small_notenough(args);
1532 flen = 0;
1533 }
1534 *fbnop = fbno;
1535 *flenp = flen;
1536 *stat = 1;
1537 trace_xfs_alloc_small_done(args);
1538 return 0;
1539
1540error0:
1541 trace_xfs_alloc_small_error(args);
1542 return error;
1543}
1544
1545
1546
1547
1548STATIC int
1549xfs_free_ag_extent(
1550 xfs_trans_t *tp,
1551 xfs_buf_t *agbp,
1552 xfs_agnumber_t agno,
1553 xfs_agblock_t bno,
1554 xfs_extlen_t len,
1555 int isfl)
1556{
1557 xfs_btree_cur_t *bno_cur;
1558 xfs_btree_cur_t *cnt_cur;
1559 int error;
1560 xfs_agblock_t gtbno;
1561 xfs_extlen_t gtlen;
1562 int haveleft;
1563 int haveright;
1564 int i;
1565 xfs_agblock_t ltbno;
1566 xfs_extlen_t ltlen;
1567 xfs_mount_t *mp;
1568 xfs_agblock_t nbno;
1569 xfs_extlen_t nlen;
1570 xfs_perag_t *pag;
1571
1572 mp = tp->t_mountp;
1573
1574
1575
1576 bno_cur = xfs_allocbt_init_cursor(mp, tp, agbp, agno, XFS_BTNUM_BNO);
1577 cnt_cur = NULL;
1578
1579
1580
1581
1582 if ((error = xfs_alloc_lookup_le(bno_cur, bno, len, &haveleft)))
1583 goto error0;
1584 if (haveleft) {
1585
1586
1587
1588 if ((error = xfs_alloc_get_rec(bno_cur, <bno, <len, &i)))
1589 goto error0;
1590 XFS_WANT_CORRUPTED_GOTO(i == 1, error0);
1591
1592
1593
1594 if (ltbno + ltlen < bno)
1595 haveleft = 0;
1596 else {
1597
1598
1599
1600
1601
1602 XFS_WANT_CORRUPTED_GOTO(ltbno + ltlen <= bno, error0);
1603 }
1604 }
1605
1606
1607
1608
1609 if ((error = xfs_btree_increment(bno_cur, 0, &haveright)))
1610 goto error0;
1611 if (haveright) {
1612
1613
1614
1615 if ((error = xfs_alloc_get_rec(bno_cur, >bno, >len, &i)))
1616 goto error0;
1617 XFS_WANT_CORRUPTED_GOTO(i == 1, error0);
1618
1619
1620
1621 if (bno + len < gtbno)
1622 haveright = 0;
1623 else {
1624
1625
1626
1627
1628
1629 XFS_WANT_CORRUPTED_GOTO(gtbno >= bno + len, error0);
1630 }
1631 }
1632
1633
1634
1635 cnt_cur = xfs_allocbt_init_cursor(mp, tp, agbp, agno, XFS_BTNUM_CNT);
1636
1637
1638
1639
1640 if (haveleft && haveright) {
1641
1642
1643
1644 if ((error = xfs_alloc_lookup_eq(cnt_cur, ltbno, ltlen, &i)))
1645 goto error0;
1646 XFS_WANT_CORRUPTED_GOTO(i == 1, error0);
1647 if ((error = xfs_btree_delete(cnt_cur, &i)))
1648 goto error0;
1649 XFS_WANT_CORRUPTED_GOTO(i == 1, error0);
1650
1651
1652
1653 if ((error = xfs_alloc_lookup_eq(cnt_cur, gtbno, gtlen, &i)))
1654 goto error0;
1655 XFS_WANT_CORRUPTED_GOTO(i == 1, error0);
1656 if ((error = xfs_btree_delete(cnt_cur, &i)))
1657 goto error0;
1658 XFS_WANT_CORRUPTED_GOTO(i == 1, error0);
1659
1660
1661
1662 if ((error = xfs_btree_delete(bno_cur, &i)))
1663 goto error0;
1664 XFS_WANT_CORRUPTED_GOTO(i == 1, error0);
1665
1666
1667
1668 if ((error = xfs_btree_decrement(bno_cur, 0, &i)))
1669 goto error0;
1670 XFS_WANT_CORRUPTED_GOTO(i == 1, error0);
1671#ifdef DEBUG
1672
1673
1674
1675
1676 {
1677 xfs_agblock_t xxbno;
1678 xfs_extlen_t xxlen;
1679
1680 if ((error = xfs_alloc_get_rec(bno_cur, &xxbno, &xxlen,
1681 &i)))
1682 goto error0;
1683 XFS_WANT_CORRUPTED_GOTO(
1684 i == 1 && xxbno == ltbno && xxlen == ltlen,
1685 error0);
1686 }
1687#endif
1688
1689
1690
1691 nbno = ltbno;
1692 nlen = len + ltlen + gtlen;
1693 if ((error = xfs_alloc_update(bno_cur, nbno, nlen)))
1694 goto error0;
1695 }
1696
1697
1698
1699
1700 else if (haveleft) {
1701
1702
1703
1704 if ((error = xfs_alloc_lookup_eq(cnt_cur, ltbno, ltlen, &i)))
1705 goto error0;
1706 XFS_WANT_CORRUPTED_GOTO(i == 1, error0);
1707 if ((error = xfs_btree_delete(cnt_cur, &i)))
1708 goto error0;
1709 XFS_WANT_CORRUPTED_GOTO(i == 1, error0);
1710
1711
1712
1713
1714 if ((error = xfs_btree_decrement(bno_cur, 0, &i)))
1715 goto error0;
1716 XFS_WANT_CORRUPTED_GOTO(i == 1, error0);
1717 nbno = ltbno;
1718 nlen = len + ltlen;
1719 if ((error = xfs_alloc_update(bno_cur, nbno, nlen)))
1720 goto error0;
1721 }
1722
1723
1724
1725
1726 else if (haveright) {
1727
1728
1729
1730 if ((error = xfs_alloc_lookup_eq(cnt_cur, gtbno, gtlen, &i)))
1731 goto error0;
1732 XFS_WANT_CORRUPTED_GOTO(i == 1, error0);
1733 if ((error = xfs_btree_delete(cnt_cur, &i)))
1734 goto error0;
1735 XFS_WANT_CORRUPTED_GOTO(i == 1, error0);
1736
1737
1738
1739
1740 nbno = bno;
1741 nlen = len + gtlen;
1742 if ((error = xfs_alloc_update(bno_cur, nbno, nlen)))
1743 goto error0;
1744 }
1745
1746
1747
1748
1749 else {
1750 nbno = bno;
1751 nlen = len;
1752 if ((error = xfs_btree_insert(bno_cur, &i)))
1753 goto error0;
1754 XFS_WANT_CORRUPTED_GOTO(i == 1, error0);
1755 }
1756 xfs_btree_del_cursor(bno_cur, XFS_BTREE_NOERROR);
1757 bno_cur = NULL;
1758
1759
1760
1761 if ((error = xfs_alloc_lookup_eq(cnt_cur, nbno, nlen, &i)))
1762 goto error0;
1763 XFS_WANT_CORRUPTED_GOTO(i == 0, error0);
1764 if ((error = xfs_btree_insert(cnt_cur, &i)))
1765 goto error0;
1766 XFS_WANT_CORRUPTED_GOTO(i == 1, error0);
1767 xfs_btree_del_cursor(cnt_cur, XFS_BTREE_NOERROR);
1768 cnt_cur = NULL;
1769
1770
1771
1772
1773 pag = xfs_perag_get(mp, agno);
1774 error = xfs_alloc_update_counters(tp, pag, agbp, len);
1775 xfs_perag_put(pag);
1776 if (error)
1777 goto error0;
1778
1779 if (!isfl)
1780 xfs_trans_mod_sb(tp, XFS_TRANS_SB_FDBLOCKS, (long)len);
1781 XFS_STATS_INC(xs_freex);
1782 XFS_STATS_ADD(xs_freeb, len);
1783
1784 trace_xfs_free_extent(mp, agno, bno, len, isfl, haveleft, haveright);
1785
1786 return 0;
1787
1788 error0:
1789 trace_xfs_free_extent(mp, agno, bno, len, isfl, -1, -1);
1790 if (bno_cur)
1791 xfs_btree_del_cursor(bno_cur, XFS_BTREE_ERROR);
1792 if (cnt_cur)
1793 xfs_btree_del_cursor(cnt_cur, XFS_BTREE_ERROR);
1794 return error;
1795}
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805void
1806xfs_alloc_compute_maxlevels(
1807 xfs_mount_t *mp)
1808{
1809 int level;
1810 uint maxblocks;
1811 uint maxleafents;
1812 int minleafrecs;
1813 int minnoderecs;
1814
1815 maxleafents = (mp->m_sb.sb_agblocks + 1) / 2;
1816 minleafrecs = mp->m_alloc_mnr[0];
1817 minnoderecs = mp->m_alloc_mnr[1];
1818 maxblocks = (maxleafents + minleafrecs - 1) / minleafrecs;
1819 for (level = 1; maxblocks > 1; level++)
1820 maxblocks = (maxblocks + minnoderecs - 1) / minnoderecs;
1821 mp->m_ag_maxlevels = level;
1822}
1823
1824
1825
1826
1827xfs_extlen_t
1828xfs_alloc_longest_free_extent(
1829 struct xfs_mount *mp,
1830 struct xfs_perag *pag)
1831{
1832 xfs_extlen_t need, delta = 0;
1833
1834 need = XFS_MIN_FREELIST_PAG(pag, mp);
1835 if (need > pag->pagf_flcount)
1836 delta = need - pag->pagf_flcount;
1837
1838 if (pag->pagf_longest > delta)
1839 return pag->pagf_longest - delta;
1840 return pag->pagf_flcount > 0 || pag->pagf_longest > 0;
1841}
1842
1843
1844
1845
1846
1847STATIC int
1848xfs_alloc_fix_freelist(
1849 xfs_alloc_arg_t *args,
1850 int flags)
1851{
1852 xfs_buf_t *agbp;
1853 xfs_agf_t *agf;
1854 xfs_buf_t *agflbp;
1855 xfs_agblock_t bno;
1856 xfs_extlen_t delta;
1857 int error;
1858 xfs_extlen_t longest;
1859 xfs_mount_t *mp;
1860 xfs_extlen_t need;
1861 xfs_perag_t *pag;
1862 xfs_alloc_arg_t targs;
1863 xfs_trans_t *tp;
1864
1865 mp = args->mp;
1866
1867 pag = args->pag;
1868 tp = args->tp;
1869 if (!pag->pagf_init) {
1870 if ((error = xfs_alloc_read_agf(mp, tp, args->agno, flags,
1871 &agbp)))
1872 return error;
1873 if (!pag->pagf_init) {
1874 ASSERT(flags & XFS_ALLOC_FLAG_TRYLOCK);
1875 ASSERT(!(flags & XFS_ALLOC_FLAG_FREEING));
1876 args->agbp = NULL;
1877 return 0;
1878 }
1879 } else
1880 agbp = NULL;
1881
1882
1883
1884
1885
1886
1887 if (pag->pagf_metadata && args->userdata &&
1888 (flags & XFS_ALLOC_FLAG_TRYLOCK)) {
1889 ASSERT(!(flags & XFS_ALLOC_FLAG_FREEING));
1890 args->agbp = NULL;
1891 return 0;
1892 }
1893
1894 if (!(flags & XFS_ALLOC_FLAG_FREEING)) {
1895
1896
1897
1898
1899 need = XFS_MIN_FREELIST_PAG(pag, mp);
1900 longest = xfs_alloc_longest_free_extent(mp, pag);
1901 if ((args->minlen + args->alignment + args->minalignslop - 1) >
1902 longest ||
1903 ((int)(pag->pagf_freeblks + pag->pagf_flcount -
1904 need - args->total) < (int)args->minleft)) {
1905 if (agbp)
1906 xfs_trans_brelse(tp, agbp);
1907 args->agbp = NULL;
1908 return 0;
1909 }
1910 }
1911
1912
1913
1914
1915
1916 if (agbp == NULL) {
1917 if ((error = xfs_alloc_read_agf(mp, tp, args->agno, flags,
1918 &agbp)))
1919 return error;
1920 if (agbp == NULL) {
1921 ASSERT(flags & XFS_ALLOC_FLAG_TRYLOCK);
1922 ASSERT(!(flags & XFS_ALLOC_FLAG_FREEING));
1923 args->agbp = NULL;
1924 return 0;
1925 }
1926 }
1927
1928
1929
1930 agf = XFS_BUF_TO_AGF(agbp);
1931 need = XFS_MIN_FREELIST(agf, mp);
1932
1933
1934
1935 if (!(flags & XFS_ALLOC_FLAG_FREEING)) {
1936 delta = need > be32_to_cpu(agf->agf_flcount) ?
1937 (need - be32_to_cpu(agf->agf_flcount)) : 0;
1938 longest = be32_to_cpu(agf->agf_longest);
1939 longest = (longest > delta) ? (longest - delta) :
1940 (be32_to_cpu(agf->agf_flcount) > 0 || longest > 0);
1941 if ((args->minlen + args->alignment + args->minalignslop - 1) >
1942 longest ||
1943 ((int)(be32_to_cpu(agf->agf_freeblks) +
1944 be32_to_cpu(agf->agf_flcount) - need - args->total) <
1945 (int)args->minleft)) {
1946 xfs_trans_brelse(tp, agbp);
1947 args->agbp = NULL;
1948 return 0;
1949 }
1950 }
1951
1952
1953
1954 while (be32_to_cpu(agf->agf_flcount) > need) {
1955 xfs_buf_t *bp;
1956
1957 error = xfs_alloc_get_freelist(tp, agbp, &bno, 0);
1958 if (error)
1959 return error;
1960 if ((error = xfs_free_ag_extent(tp, agbp, args->agno, bno, 1, 1)))
1961 return error;
1962 bp = xfs_btree_get_bufs(mp, tp, args->agno, bno, 0);
1963 xfs_trans_binval(tp, bp);
1964 }
1965
1966
1967
1968 memset(&targs, 0, sizeof(targs));
1969 targs.tp = tp;
1970 targs.mp = mp;
1971 targs.agbp = agbp;
1972 targs.agno = args->agno;
1973 targs.alignment = targs.minlen = targs.prod = targs.isfl = 1;
1974 targs.type = XFS_ALLOCTYPE_THIS_AG;
1975 targs.pag = pag;
1976 if ((error = xfs_alloc_read_agfl(mp, tp, targs.agno, &agflbp)))
1977 return error;
1978
1979
1980
1981 while (be32_to_cpu(agf->agf_flcount) < need) {
1982 targs.agbno = 0;
1983 targs.maxlen = need - be32_to_cpu(agf->agf_flcount);
1984
1985
1986
1987 if ((error = xfs_alloc_ag_vextent(&targs))) {
1988 xfs_trans_brelse(tp, agflbp);
1989 return error;
1990 }
1991
1992
1993
1994
1995
1996 if (targs.agbno == NULLAGBLOCK) {
1997 if (flags & XFS_ALLOC_FLAG_FREEING)
1998 break;
1999 xfs_trans_brelse(tp, agflbp);
2000 args->agbp = NULL;
2001 return 0;
2002 }
2003
2004
2005
2006 for (bno = targs.agbno; bno < targs.agbno + targs.len; bno++) {
2007 error = xfs_alloc_put_freelist(tp, agbp,
2008 agflbp, bno, 0);
2009 if (error)
2010 return error;
2011 }
2012 }
2013 xfs_trans_brelse(tp, agflbp);
2014 args->agbp = agbp;
2015 return 0;
2016}
2017
2018
2019
2020
2021
2022int
2023xfs_alloc_get_freelist(
2024 xfs_trans_t *tp,
2025 xfs_buf_t *agbp,
2026 xfs_agblock_t *bnop,
2027 int btreeblk)
2028{
2029 xfs_agf_t *agf;
2030 xfs_buf_t *agflbp;
2031 xfs_agblock_t bno;
2032 __be32 *agfl_bno;
2033 int error;
2034 int logflags;
2035 xfs_mount_t *mp = tp->t_mountp;
2036 xfs_perag_t *pag;
2037
2038
2039
2040
2041 agf = XFS_BUF_TO_AGF(agbp);
2042 if (!agf->agf_flcount) {
2043 *bnop = NULLAGBLOCK;
2044 return 0;
2045 }
2046
2047
2048
2049 error = xfs_alloc_read_agfl(mp, tp, be32_to_cpu(agf->agf_seqno),
2050 &agflbp);
2051 if (error)
2052 return error;
2053
2054
2055
2056
2057
2058 agfl_bno = XFS_BUF_TO_AGFL_BNO(mp, agflbp);
2059 bno = be32_to_cpu(agfl_bno[be32_to_cpu(agf->agf_flfirst)]);
2060 be32_add_cpu(&agf->agf_flfirst, 1);
2061 xfs_trans_brelse(tp, agflbp);
2062 if (be32_to_cpu(agf->agf_flfirst) == XFS_AGFL_SIZE(mp))
2063 agf->agf_flfirst = 0;
2064
2065 pag = xfs_perag_get(mp, be32_to_cpu(agf->agf_seqno));
2066 be32_add_cpu(&agf->agf_flcount, -1);
2067 xfs_trans_agflist_delta(tp, -1);
2068 pag->pagf_flcount--;
2069 xfs_perag_put(pag);
2070
2071 logflags = XFS_AGF_FLFIRST | XFS_AGF_FLCOUNT;
2072 if (btreeblk) {
2073 be32_add_cpu(&agf->agf_btreeblks, 1);
2074 pag->pagf_btreeblks++;
2075 logflags |= XFS_AGF_BTREEBLKS;
2076 }
2077
2078 xfs_alloc_log_agf(tp, agbp, logflags);
2079 *bnop = bno;
2080
2081 return 0;
2082}
2083
2084
2085
2086
2087void
2088xfs_alloc_log_agf(
2089 xfs_trans_t *tp,
2090 xfs_buf_t *bp,
2091 int fields)
2092{
2093 int first;
2094 int last;
2095 static const short offsets[] = {
2096 offsetof(xfs_agf_t, agf_magicnum),
2097 offsetof(xfs_agf_t, agf_versionnum),
2098 offsetof(xfs_agf_t, agf_seqno),
2099 offsetof(xfs_agf_t, agf_length),
2100 offsetof(xfs_agf_t, agf_roots[0]),
2101 offsetof(xfs_agf_t, agf_levels[0]),
2102 offsetof(xfs_agf_t, agf_flfirst),
2103 offsetof(xfs_agf_t, agf_fllast),
2104 offsetof(xfs_agf_t, agf_flcount),
2105 offsetof(xfs_agf_t, agf_freeblks),
2106 offsetof(xfs_agf_t, agf_longest),
2107 offsetof(xfs_agf_t, agf_btreeblks),
2108 offsetof(xfs_agf_t, agf_uuid),
2109 sizeof(xfs_agf_t)
2110 };
2111
2112 trace_xfs_agf(tp->t_mountp, XFS_BUF_TO_AGF(bp), fields, _RET_IP_);
2113
2114 xfs_trans_buf_set_type(tp, bp, XFS_BLFT_AGF_BUF);
2115
2116 xfs_btree_offsets(fields, offsets, XFS_AGF_NUM_BITS, &first, &last);
2117 xfs_trans_log_buf(tp, bp, (uint)first, (uint)last);
2118}
2119
2120
2121
2122
2123int
2124xfs_alloc_pagf_init(
2125 xfs_mount_t *mp,
2126 xfs_trans_t *tp,
2127 xfs_agnumber_t agno,
2128 int flags)
2129{
2130 xfs_buf_t *bp;
2131 int error;
2132
2133 if ((error = xfs_alloc_read_agf(mp, tp, agno, flags, &bp)))
2134 return error;
2135 if (bp)
2136 xfs_trans_brelse(tp, bp);
2137 return 0;
2138}
2139
2140
2141
2142
2143int
2144xfs_alloc_put_freelist(
2145 xfs_trans_t *tp,
2146 xfs_buf_t *agbp,
2147 xfs_buf_t *agflbp,
2148 xfs_agblock_t bno,
2149 int btreeblk)
2150{
2151 xfs_agf_t *agf;
2152 __be32 *blockp;
2153 int error;
2154 int logflags;
2155 xfs_mount_t *mp;
2156 xfs_perag_t *pag;
2157 __be32 *agfl_bno;
2158 int startoff;
2159
2160 agf = XFS_BUF_TO_AGF(agbp);
2161 mp = tp->t_mountp;
2162
2163 if (!agflbp && (error = xfs_alloc_read_agfl(mp, tp,
2164 be32_to_cpu(agf->agf_seqno), &agflbp)))
2165 return error;
2166 be32_add_cpu(&agf->agf_fllast, 1);
2167 if (be32_to_cpu(agf->agf_fllast) == XFS_AGFL_SIZE(mp))
2168 agf->agf_fllast = 0;
2169
2170 pag = xfs_perag_get(mp, be32_to_cpu(agf->agf_seqno));
2171 be32_add_cpu(&agf->agf_flcount, 1);
2172 xfs_trans_agflist_delta(tp, 1);
2173 pag->pagf_flcount++;
2174
2175 logflags = XFS_AGF_FLLAST | XFS_AGF_FLCOUNT;
2176 if (btreeblk) {
2177 be32_add_cpu(&agf->agf_btreeblks, -1);
2178 pag->pagf_btreeblks--;
2179 logflags |= XFS_AGF_BTREEBLKS;
2180 }
2181 xfs_perag_put(pag);
2182
2183 xfs_alloc_log_agf(tp, agbp, logflags);
2184
2185 ASSERT(be32_to_cpu(agf->agf_flcount) <= XFS_AGFL_SIZE(mp));
2186
2187 agfl_bno = XFS_BUF_TO_AGFL_BNO(mp, agflbp);
2188 blockp = &agfl_bno[be32_to_cpu(agf->agf_fllast)];
2189 *blockp = cpu_to_be32(bno);
2190 startoff = (char *)blockp - (char *)agflbp->b_addr;
2191
2192 xfs_alloc_log_agf(tp, agbp, logflags);
2193
2194 xfs_trans_buf_set_type(tp, agflbp, XFS_BLFT_AGFL_BUF);
2195 xfs_trans_log_buf(tp, agflbp, startoff,
2196 startoff + sizeof(xfs_agblock_t) - 1);
2197 return 0;
2198}
2199
2200static bool
2201xfs_agf_verify(
2202 struct xfs_mount *mp,
2203 struct xfs_buf *bp)
2204 {
2205 struct xfs_agf *agf = XFS_BUF_TO_AGF(bp);
2206
2207 if (xfs_sb_version_hascrc(&mp->m_sb) &&
2208 !uuid_equal(&agf->agf_uuid, &mp->m_sb.sb_uuid))
2209 return false;
2210
2211 if (!(agf->agf_magicnum == cpu_to_be32(XFS_AGF_MAGIC) &&
2212 XFS_AGF_GOOD_VERSION(be32_to_cpu(agf->agf_versionnum)) &&
2213 be32_to_cpu(agf->agf_freeblks) <= be32_to_cpu(agf->agf_length) &&
2214 be32_to_cpu(agf->agf_flfirst) < XFS_AGFL_SIZE(mp) &&
2215 be32_to_cpu(agf->agf_fllast) < XFS_AGFL_SIZE(mp) &&
2216 be32_to_cpu(agf->agf_flcount) <= XFS_AGFL_SIZE(mp)))
2217 return false;
2218
2219
2220
2221
2222
2223
2224
2225 if (bp->b_pag && be32_to_cpu(agf->agf_seqno) != bp->b_pag->pag_agno)
2226 return false;
2227
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;;
2233
2234}
2235
2236static void
2237xfs_agf_read_verify(
2238 struct xfs_buf *bp)
2239{
2240 struct xfs_mount *mp = bp->b_target->bt_mount;
2241 int agf_ok = 1;
2242
2243 if (xfs_sb_version_hascrc(&mp->m_sb))
2244 agf_ok = xfs_verify_cksum(bp->b_addr, BBTOB(bp->b_length),
2245 offsetof(struct xfs_agf, agf_crc));
2246
2247 agf_ok = agf_ok && xfs_agf_verify(mp, bp);
2248
2249 if (unlikely(XFS_TEST_ERROR(!agf_ok, mp, XFS_ERRTAG_ALLOC_READ_AGF,
2250 XFS_RANDOM_ALLOC_READ_AGF))) {
2251 XFS_CORRUPTION_ERROR(__func__, XFS_ERRLEVEL_LOW, mp, bp->b_addr);
2252 xfs_buf_ioerror(bp, EFSCORRUPTED);
2253 }
2254}
2255
2256static void
2257xfs_agf_write_verify(
2258 struct xfs_buf *bp)
2259{
2260 struct xfs_mount *mp = bp->b_target->bt_mount;
2261 struct xfs_buf_log_item *bip = bp->b_fspriv;
2262
2263 if (!xfs_agf_verify(mp, bp)) {
2264 XFS_CORRUPTION_ERROR(__func__, XFS_ERRLEVEL_LOW, mp, bp->b_addr);
2265 xfs_buf_ioerror(bp, EFSCORRUPTED);
2266 return;
2267 }
2268
2269 if (!xfs_sb_version_hascrc(&mp->m_sb))
2270 return;
2271
2272 if (bip)
2273 XFS_BUF_TO_AGF(bp)->agf_lsn = cpu_to_be64(bip->bli_item.li_lsn);
2274
2275 xfs_update_cksum(bp->b_addr, BBTOB(bp->b_length),
2276 offsetof(struct xfs_agf, agf_crc));
2277}
2278
2279const struct xfs_buf_ops xfs_agf_buf_ops = {
2280 .verify_read = xfs_agf_read_verify,
2281 .verify_write = xfs_agf_write_verify,
2282};
2283
2284
2285
2286
2287int
2288xfs_read_agf(
2289 struct xfs_mount *mp,
2290 struct xfs_trans *tp,
2291 xfs_agnumber_t agno,
2292 int flags,
2293 struct xfs_buf **bpp)
2294{
2295 int error;
2296
2297 ASSERT(agno != NULLAGNUMBER);
2298 error = xfs_trans_read_buf(
2299 mp, tp, mp->m_ddev_targp,
2300 XFS_AG_DADDR(mp, agno, XFS_AGF_DADDR(mp)),
2301 XFS_FSS_TO_BB(mp, 1), flags, bpp, &xfs_agf_buf_ops);
2302 if (error)
2303 return error;
2304 if (!*bpp)
2305 return 0;
2306
2307 ASSERT(!(*bpp)->b_error);
2308 xfs_buf_set_ref(*bpp, XFS_AGF_REF);
2309 return 0;
2310}
2311
2312
2313
2314
2315int
2316xfs_alloc_read_agf(
2317 struct xfs_mount *mp,
2318 struct xfs_trans *tp,
2319 xfs_agnumber_t agno,
2320 int flags,
2321 struct xfs_buf **bpp)
2322{
2323 struct xfs_agf *agf;
2324 struct xfs_perag *pag;
2325 int error;
2326
2327 ASSERT(agno != NULLAGNUMBER);
2328
2329 error = xfs_read_agf(mp, tp, agno,
2330 (flags & XFS_ALLOC_FLAG_TRYLOCK) ? XBF_TRYLOCK : 0,
2331 bpp);
2332 if (error)
2333 return error;
2334 if (!*bpp)
2335 return 0;
2336 ASSERT(!(*bpp)->b_error);
2337
2338 agf = XFS_BUF_TO_AGF(*bpp);
2339 pag = xfs_perag_get(mp, agno);
2340 if (!pag->pagf_init) {
2341 pag->pagf_freeblks = be32_to_cpu(agf->agf_freeblks);
2342 pag->pagf_btreeblks = be32_to_cpu(agf->agf_btreeblks);
2343 pag->pagf_flcount = be32_to_cpu(agf->agf_flcount);
2344 pag->pagf_longest = be32_to_cpu(agf->agf_longest);
2345 pag->pagf_levels[XFS_BTNUM_BNOi] =
2346 be32_to_cpu(agf->agf_levels[XFS_BTNUM_BNOi]);
2347 pag->pagf_levels[XFS_BTNUM_CNTi] =
2348 be32_to_cpu(agf->agf_levels[XFS_BTNUM_CNTi]);
2349 spin_lock_init(&pag->pagb_lock);
2350 pag->pagb_count = 0;
2351 pag->pagb_tree = RB_ROOT;
2352 pag->pagf_init = 1;
2353 }
2354#ifdef DEBUG
2355 else if (!XFS_FORCED_SHUTDOWN(mp)) {
2356 ASSERT(pag->pagf_freeblks == be32_to_cpu(agf->agf_freeblks));
2357 ASSERT(pag->pagf_btreeblks == be32_to_cpu(agf->agf_btreeblks));
2358 ASSERT(pag->pagf_flcount == be32_to_cpu(agf->agf_flcount));
2359 ASSERT(pag->pagf_longest == be32_to_cpu(agf->agf_longest));
2360 ASSERT(pag->pagf_levels[XFS_BTNUM_BNOi] ==
2361 be32_to_cpu(agf->agf_levels[XFS_BTNUM_BNOi]));
2362 ASSERT(pag->pagf_levels[XFS_BTNUM_CNTi] ==
2363 be32_to_cpu(agf->agf_levels[XFS_BTNUM_CNTi]));
2364 }
2365#endif
2366 xfs_perag_put(pag);
2367 return 0;
2368}
2369
2370
2371
2372
2373
2374
2375int
2376xfs_alloc_vextent(
2377 xfs_alloc_arg_t *args)
2378{
2379 xfs_agblock_t agsize;
2380 int error;
2381 int flags;
2382 xfs_extlen_t minleft;
2383 xfs_mount_t *mp;
2384 xfs_agnumber_t sagno;
2385 xfs_alloctype_t type;
2386 int bump_rotor = 0;
2387 int no_min = 0;
2388 xfs_agnumber_t rotorstep = xfs_rotorstep;
2389
2390 mp = args->mp;
2391 type = args->otype = args->type;
2392 args->agbno = NULLAGBLOCK;
2393
2394
2395
2396
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;
2413 trace_xfs_alloc_vextent_badargs(args);
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
2424
2425 args->agno = XFS_FSB_TO_AGNO(mp, args->fsbno);
2426 args->pag = xfs_perag_get(mp, args->agno);
2427 args->minleft = 0;
2428 error = xfs_alloc_fix_freelist(args, 0);
2429 args->minleft = minleft;
2430 if (error) {
2431 trace_xfs_alloc_vextent_nofix(args);
2432 goto error0;
2433 }
2434 if (!args->agbp) {
2435 trace_xfs_alloc_vextent_noagbp(args);
2436 break;
2437 }
2438 args->agbno = XFS_FSB_TO_AGBNO(mp, args->fsbno);
2439 if ((error = xfs_alloc_ag_vextent(args)))
2440 goto error0;
2441 break;
2442 case XFS_ALLOCTYPE_START_BNO:
2443
2444
2445
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
2457 case XFS_ALLOCTYPE_ANY_AG:
2458 case XFS_ALLOCTYPE_START_AG:
2459 case XFS_ALLOCTYPE_FIRST_AG:
2460
2461
2462
2463 if (type == XFS_ALLOCTYPE_ANY_AG) {
2464
2465
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
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
2484
2485 args->agno = sagno = XFS_FSB_TO_AGNO(mp, args->fsbno);
2486 flags = XFS_ALLOC_FLAG_TRYLOCK;
2487 }
2488
2489
2490
2491
2492 for (;;) {
2493 args->pag = xfs_perag_get(mp, args->agno);
2494 if (no_min) args->minleft = 0;
2495 error = xfs_alloc_fix_freelist(args, flags);
2496 args->minleft = minleft;
2497 if (error) {
2498 trace_xfs_alloc_vextent_nofix(args);
2499 goto error0;
2500 }
2501
2502
2503
2504 if (args->agbp) {
2505 if ((error = xfs_alloc_ag_vextent(args)))
2506 goto error0;
2507 break;
2508 }
2509
2510 trace_xfs_alloc_vextent_loopfailed(args);
2511
2512
2513
2514
2515 if (args->agno == sagno &&
2516 type == XFS_ALLOCTYPE_START_BNO)
2517 args->type = XFS_ALLOCTYPE_THIS_AG;
2518
2519
2520
2521
2522
2523
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 }
2531
2532
2533
2534
2535 if (args->agno == sagno) {
2536 if (no_min == 1) {
2537 args->agbno = NULLAGBLOCK;
2538 trace_xfs_alloc_vextent_allfailed(args);
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 }
2552 xfs_perag_put(args->pag);
2553 }
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
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 }
2579 xfs_perag_put(args->pag);
2580 return 0;
2581error0:
2582 xfs_perag_put(args->pag);
2583 return error;
2584}
2585
2586
2587
2588
2589
2590
2591int
2592xfs_free_extent(
2593 xfs_trans_t *tp,
2594 xfs_fsblock_t bno,
2595 xfs_extlen_t len)
2596{
2597 xfs_alloc_arg_t args;
2598 int error;
2599
2600 ASSERT(len != 0);
2601 memset(&args, 0, sizeof(xfs_alloc_arg_t));
2602 args.tp = tp;
2603 args.mp = tp->t_mountp;
2604
2605
2606
2607
2608
2609 args.agno = XFS_FSB_TO_AGNO(args.mp, bno);
2610 if (args.agno >= args.mp->m_sb.sb_agcount)
2611 return EFSCORRUPTED;
2612
2613 args.agbno = XFS_FSB_TO_AGBNO(args.mp, bno);
2614 if (args.agbno >= args.mp->m_sb.sb_agblocks)
2615 return EFSCORRUPTED;
2616
2617 args.pag = xfs_perag_get(args.mp, args.agno);
2618 ASSERT(args.pag);
2619
2620 error = xfs_alloc_fix_freelist(&args, XFS_ALLOC_FLAG_FREEING);
2621 if (error)
2622 goto error0;
2623
2624
2625 if (args.agbno + len >
2626 be32_to_cpu(XFS_BUF_TO_AGF(args.agbp)->agf_length)) {
2627 error = EFSCORRUPTED;
2628 goto error0;
2629 }
2630
2631 error = xfs_free_ag_extent(tp, args.agbp, args.agno, args.agbno, len, 0);
2632 if (!error)
2633 xfs_extent_busy_insert(tp, args.agno, args.agbno, len, 0);
2634error0:
2635 xfs_perag_put(args.pag);
2636 return error;
2637}
2638