blob: dba7ce4b4be88bb4c3cb4a7da92c99b68f08a252 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Nathan Scott7b718762005-11-02 14:58:39 +11002 * Copyright (c) 2000-2002,2005 Silicon Graphics, Inc.
3 * All Rights Reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
Nathan Scott7b718762005-11-02 14:58:39 +11005 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License as
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * published by the Free Software Foundation.
8 *
Nathan Scott7b718762005-11-02 14:58:39 +11009 * 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.
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 *
Nathan Scott7b718762005-11-02 14:58:39 +110014 * 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
Linus Torvalds1da177e2005-04-16 15:20:36 -070017 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include "xfs.h"
Nathan Scotta844f452005-11-02 14:38:42 +110019#include "xfs_fs.h"
Dave Chinner70a9883c2013-10-23 10:36:05 +110020#include "xfs_format.h"
Dave Chinner239880e2013-10-23 10:50:10 +110021#include "xfs_log_format.h"
Dave Chinner70a9883c2013-10-23 10:36:05 +110022#include "xfs_shared.h"
Dave Chinner239880e2013-10-23 10:50:10 +110023#include "xfs_trans_resv.h"
Nathan Scotta844f452005-11-02 14:38:42 +110024#include "xfs_bit.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include "xfs_sb.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include "xfs_mount.h"
Darrick J. Wong3ab78df2016-08-03 11:15:38 +100027#include "xfs_defer.h"
Nathan Scotta844f452005-11-02 14:38:42 +110028#include "xfs_inode.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include "xfs_btree.h"
Darrick J. Wong673930c2016-08-03 11:33:43 +100030#include "xfs_rmap.h"
Dave Chinnera4fbe6a2013-10-23 10:51:50 +110031#include "xfs_alloc_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include "xfs_alloc.h"
Dave Chinnerefc27b52012-04-29 10:39:43 +000033#include "xfs_extent_busy.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include "xfs_error.h"
Dave Chinner4e0e6042013-04-03 16:11:13 +110035#include "xfs_cksum.h"
Christoph Hellwig0b1b2132009-12-14 23:14:59 +000036#include "xfs_trace.h"
Dave Chinner239880e2013-10-23 10:50:10 +110037#include "xfs_trans.h"
Dave Chinner4e0e6042013-04-03 16:11:13 +110038#include "xfs_buf_item.h"
Dave Chinner239880e2013-10-23 10:50:10 +110039#include "xfs_log.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070040
Dave Chinnerc999a222012-03-22 05:15:07 +000041struct workqueue_struct *xfs_alloc_wq;
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
43#define XFS_ABSDIFF(a,b) (((a) <= (b)) ? ((b) - (a)) : ((a) - (b)))
44
45#define XFSA_FIXUP_BNO_OK 1
46#define XFSA_FIXUP_CNT_OK 2
47
Linus Torvalds1da177e2005-04-16 15:20:36 -070048STATIC int xfs_alloc_ag_vextent_exact(xfs_alloc_arg_t *);
49STATIC int xfs_alloc_ag_vextent_near(xfs_alloc_arg_t *);
50STATIC int xfs_alloc_ag_vextent_size(xfs_alloc_arg_t *);
51STATIC int xfs_alloc_ag_vextent_small(xfs_alloc_arg_t *,
Christoph Hellwige26f0502011-04-24 19:06:15 +000052 xfs_btree_cur_t *, xfs_agblock_t *, xfs_extlen_t *, int *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
Darrick J. Wong80180262016-08-03 11:31:47 +100054xfs_extlen_t
55xfs_prealloc_blocks(
56 struct xfs_mount *mp)
57{
58 if (xfs_sb_version_hasrmapbt(&mp->m_sb))
59 return XFS_RMAP_BLOCK(mp) + 1;
60 if (xfs_sb_version_hasfinobt(&mp->m_sb))
61 return XFS_FIBT_BLOCK(mp) + 1;
62 return XFS_IBT_BLOCK(mp) + 1;
63}
64
Linus Torvalds1da177e2005-04-16 15:20:36 -070065/*
Christoph Hellwigfe033cc2008-10-30 16:56:09 +110066 * Lookup the record equal to [bno, len] in the btree given by cur.
67 */
68STATIC int /* error */
69xfs_alloc_lookup_eq(
70 struct xfs_btree_cur *cur, /* btree cursor */
71 xfs_agblock_t bno, /* starting block of extent */
72 xfs_extlen_t len, /* length of extent */
73 int *stat) /* success/failure */
74{
75 cur->bc_rec.a.ar_startblock = bno;
76 cur->bc_rec.a.ar_blockcount = len;
77 return xfs_btree_lookup(cur, XFS_LOOKUP_EQ, stat);
78}
79
80/*
81 * Lookup the first record greater than or equal to [bno, len]
82 * in the btree given by cur.
83 */
Dave Chinnera66d6362012-03-22 05:15:12 +000084int /* error */
Christoph Hellwigfe033cc2008-10-30 16:56:09 +110085xfs_alloc_lookup_ge(
86 struct xfs_btree_cur *cur, /* btree cursor */
87 xfs_agblock_t bno, /* starting block of extent */
88 xfs_extlen_t len, /* length of extent */
89 int *stat) /* success/failure */
90{
91 cur->bc_rec.a.ar_startblock = bno;
92 cur->bc_rec.a.ar_blockcount = len;
93 return xfs_btree_lookup(cur, XFS_LOOKUP_GE, stat);
94}
95
96/*
97 * Lookup the first record less than or equal to [bno, len]
98 * in the btree given by cur.
99 */
Eric Sandeen0d5a75e2016-06-01 17:38:15 +1000100static int /* error */
Christoph Hellwigfe033cc2008-10-30 16:56:09 +1100101xfs_alloc_lookup_le(
102 struct xfs_btree_cur *cur, /* btree cursor */
103 xfs_agblock_t bno, /* starting block of extent */
104 xfs_extlen_t len, /* length of extent */
105 int *stat) /* success/failure */
106{
107 cur->bc_rec.a.ar_startblock = bno;
108 cur->bc_rec.a.ar_blockcount = len;
109 return xfs_btree_lookup(cur, XFS_LOOKUP_LE, stat);
110}
111
Christoph Hellwig278d0ca2008-10-30 16:56:32 +1100112/*
113 * Update the record referred to by cur to the value given
114 * by [bno, len].
115 * This either works (return 0) or gets an EFSCORRUPTED error.
116 */
117STATIC int /* error */
118xfs_alloc_update(
119 struct xfs_btree_cur *cur, /* btree cursor */
120 xfs_agblock_t bno, /* starting block of extent */
121 xfs_extlen_t len) /* length of extent */
122{
123 union xfs_btree_rec rec;
124
125 rec.alloc.ar_startblock = cpu_to_be32(bno);
126 rec.alloc.ar_blockcount = cpu_to_be32(len);
127 return xfs_btree_update(cur, &rec);
128}
Christoph Hellwigfe033cc2008-10-30 16:56:09 +1100129
130/*
Christoph Hellwig8cc938f2008-10-30 16:58:11 +1100131 * Get the data from the pointed-to record.
132 */
Christoph Hellwiga46db602011-01-07 13:02:04 +0000133int /* error */
Christoph Hellwig8cc938f2008-10-30 16:58:11 +1100134xfs_alloc_get_rec(
135 struct xfs_btree_cur *cur, /* btree cursor */
136 xfs_agblock_t *bno, /* output: starting block of extent */
137 xfs_extlen_t *len, /* output: length of extent */
138 int *stat) /* output: success/failure */
139{
140 union xfs_btree_rec *rec;
141 int error;
142
143 error = xfs_btree_get_rec(cur, &rec, stat);
144 if (!error && *stat == 1) {
145 *bno = be32_to_cpu(rec->alloc.ar_startblock);
146 *len = be32_to_cpu(rec->alloc.ar_blockcount);
147 }
148 return error;
149}
150
151/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 * Compute aligned version of the found extent.
153 * Takes alignment and min length into account.
154 */
David Chinner12375c82008-04-10 12:21:32 +1000155STATIC void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156xfs_alloc_compute_aligned(
Christoph Hellwig86fa8af2011-03-04 12:59:54 +0000157 xfs_alloc_arg_t *args, /* allocation argument structure */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 xfs_agblock_t foundbno, /* starting block in found extent */
159 xfs_extlen_t foundlen, /* length in found extent */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 xfs_agblock_t *resbno, /* result block number */
161 xfs_extlen_t *reslen) /* result length */
162{
163 xfs_agblock_t bno;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 xfs_extlen_t len;
Brian Fosterbfe46d42015-05-29 08:53:00 +1000165 xfs_extlen_t diff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166
Christoph Hellwige26f0502011-04-24 19:06:15 +0000167 /* Trim busy sections out of found extent */
Dave Chinner4ecbfe62012-04-29 10:41:10 +0000168 xfs_extent_busy_trim(args, foundbno, foundlen, &bno, &len);
Christoph Hellwige26f0502011-04-24 19:06:15 +0000169
Brian Fosterbfe46d42015-05-29 08:53:00 +1000170 /*
171 * If we have a largish extent that happens to start before min_agbno,
172 * see if we can shift it into range...
173 */
174 if (bno < args->min_agbno && bno + len > args->min_agbno) {
175 diff = args->min_agbno - bno;
176 if (len > diff) {
177 bno += diff;
178 len -= diff;
179 }
180 }
181
Christoph Hellwige26f0502011-04-24 19:06:15 +0000182 if (args->alignment > 1 && len >= args->minlen) {
183 xfs_agblock_t aligned_bno = roundup(bno, args->alignment);
Brian Fosterbfe46d42015-05-29 08:53:00 +1000184
185 diff = aligned_bno - bno;
Christoph Hellwige26f0502011-04-24 19:06:15 +0000186
187 *resbno = aligned_bno;
188 *reslen = diff >= len ? 0 : len - diff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 } else {
Christoph Hellwige26f0502011-04-24 19:06:15 +0000190 *resbno = bno;
191 *reslen = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193}
194
195/*
196 * Compute best start block and diff for "near" allocations.
197 * freelen >= wantlen already checked by caller.
198 */
199STATIC xfs_extlen_t /* difference value (absolute) */
200xfs_alloc_compute_diff(
201 xfs_agblock_t wantbno, /* target starting block */
202 xfs_extlen_t wantlen, /* target length */
203 xfs_extlen_t alignment, /* target alignment */
Jan Kara211d0222013-04-11 22:09:56 +0200204 char userdata, /* are we allocating data? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 xfs_agblock_t freebno, /* freespace's starting block */
206 xfs_extlen_t freelen, /* freespace's length */
207 xfs_agblock_t *newbnop) /* result: best start block from free */
208{
209 xfs_agblock_t freeend; /* end of freespace extent */
210 xfs_agblock_t newbno1; /* return block number */
211 xfs_agblock_t newbno2; /* other new block number */
212 xfs_extlen_t newlen1=0; /* length with newbno1 */
213 xfs_extlen_t newlen2=0; /* length with newbno2 */
214 xfs_agblock_t wantend; /* end of target extent */
215
216 ASSERT(freelen >= wantlen);
217 freeend = freebno + freelen;
218 wantend = wantbno + wantlen;
Jan Kara211d0222013-04-11 22:09:56 +0200219 /*
220 * We want to allocate from the start of a free extent if it is past
221 * the desired block or if we are allocating user data and the free
222 * extent is before desired block. The second case is there to allow
223 * for contiguous allocation from the remaining free space if the file
224 * grows in the short term.
225 */
226 if (freebno >= wantbno || (userdata && freeend < wantend)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 if ((newbno1 = roundup(freebno, alignment)) >= freeend)
228 newbno1 = NULLAGBLOCK;
229 } else if (freeend >= wantend && alignment > 1) {
230 newbno1 = roundup(wantbno, alignment);
231 newbno2 = newbno1 - alignment;
232 if (newbno1 >= freeend)
233 newbno1 = NULLAGBLOCK;
234 else
235 newlen1 = XFS_EXTLEN_MIN(wantlen, freeend - newbno1);
236 if (newbno2 < freebno)
237 newbno2 = NULLAGBLOCK;
238 else
239 newlen2 = XFS_EXTLEN_MIN(wantlen, freeend - newbno2);
240 if (newbno1 != NULLAGBLOCK && newbno2 != NULLAGBLOCK) {
241 if (newlen1 < newlen2 ||
242 (newlen1 == newlen2 &&
243 XFS_ABSDIFF(newbno1, wantbno) >
244 XFS_ABSDIFF(newbno2, wantbno)))
245 newbno1 = newbno2;
246 } else if (newbno2 != NULLAGBLOCK)
247 newbno1 = newbno2;
248 } else if (freeend >= wantend) {
249 newbno1 = wantbno;
250 } else if (alignment > 1) {
251 newbno1 = roundup(freeend - wantlen, alignment);
252 if (newbno1 > freeend - wantlen &&
253 newbno1 - alignment >= freebno)
254 newbno1 -= alignment;
255 else if (newbno1 >= freeend)
256 newbno1 = NULLAGBLOCK;
257 } else
258 newbno1 = freeend - wantlen;
259 *newbnop = newbno1;
260 return newbno1 == NULLAGBLOCK ? 0 : XFS_ABSDIFF(newbno1, wantbno);
261}
262
263/*
264 * Fix up the length, based on mod and prod.
265 * len should be k * prod + mod for some k.
266 * If len is too small it is returned unchanged.
267 * If len hits maxlen it is left alone.
268 */
269STATIC void
270xfs_alloc_fix_len(
271 xfs_alloc_arg_t *args) /* allocation argument structure */
272{
273 xfs_extlen_t k;
274 xfs_extlen_t rlen;
275
276 ASSERT(args->mod < args->prod);
277 rlen = args->len;
278 ASSERT(rlen >= args->minlen);
279 ASSERT(rlen <= args->maxlen);
280 if (args->prod <= 1 || rlen < args->mod || rlen == args->maxlen ||
281 (args->mod == 0 && rlen < args->prod))
282 return;
283 k = rlen % args->prod;
284 if (k == args->mod)
285 return;
Jan Kara30265112014-06-06 16:06:37 +1000286 if (k > args->mod)
287 rlen = rlen - (k - args->mod);
288 else
289 rlen = rlen - args->prod + (args->mod - k);
Dave Chinner3790a8c2015-02-24 10:16:04 +1100290 /* casts to (int) catch length underflows */
Jan Kara30265112014-06-06 16:06:37 +1000291 if ((int)rlen < (int)args->minlen)
292 return;
293 ASSERT(rlen >= args->minlen && rlen <= args->maxlen);
294 ASSERT(rlen % args->prod == args->mod);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 args->len = rlen;
296}
297
298/*
299 * Fix up length if there is too little space left in the a.g.
300 * Return 1 if ok, 0 if too little, should give up.
301 */
302STATIC int
303xfs_alloc_fix_minleft(
304 xfs_alloc_arg_t *args) /* allocation argument structure */
305{
306 xfs_agf_t *agf; /* a.g. freelist header */
307 int diff; /* free space difference */
308
309 if (args->minleft == 0)
310 return 1;
311 agf = XFS_BUF_TO_AGF(args->agbp);
Christoph Hellwig16259e72005-11-02 15:11:25 +1100312 diff = be32_to_cpu(agf->agf_freeblks)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 - args->len - args->minleft;
314 if (diff >= 0)
315 return 1;
316 args->len += diff; /* shrink the allocated space */
Dave Chinner3790a8c2015-02-24 10:16:04 +1100317 /* casts to (int) catch length underflows */
318 if ((int)args->len >= (int)args->minlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 return 1;
320 args->agbno = NULLAGBLOCK;
321 return 0;
322}
323
324/*
325 * Update the two btrees, logically removing from freespace the extent
326 * starting at rbno, rlen blocks. The extent is contained within the
327 * actual (current) free extent fbno for flen blocks.
328 * Flags are passed in indicating whether the cursors are set to the
329 * relevant records.
330 */
331STATIC int /* error code */
332xfs_alloc_fixup_trees(
333 xfs_btree_cur_t *cnt_cur, /* cursor for by-size btree */
334 xfs_btree_cur_t *bno_cur, /* cursor for by-block btree */
335 xfs_agblock_t fbno, /* starting block of free extent */
336 xfs_extlen_t flen, /* length of free extent */
337 xfs_agblock_t rbno, /* starting block of returned extent */
338 xfs_extlen_t rlen, /* length of returned extent */
339 int flags) /* flags, XFSA_FIXUP_... */
340{
341 int error; /* error code */
342 int i; /* operation results */
343 xfs_agblock_t nfbno1; /* first new free startblock */
344 xfs_agblock_t nfbno2; /* second new free startblock */
345 xfs_extlen_t nflen1=0; /* first new free length */
346 xfs_extlen_t nflen2=0; /* second new free length */
Eric Sandeen5fb5aee2015-02-23 22:39:13 +1100347 struct xfs_mount *mp;
348
349 mp = cnt_cur->bc_mp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350
351 /*
352 * Look up the record in the by-size tree if necessary.
353 */
354 if (flags & XFSA_FIXUP_CNT_OK) {
355#ifdef DEBUG
356 if ((error = xfs_alloc_get_rec(cnt_cur, &nfbno1, &nflen1, &i)))
357 return error;
Eric Sandeen5fb5aee2015-02-23 22:39:13 +1100358 XFS_WANT_CORRUPTED_RETURN(mp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 i == 1 && nfbno1 == fbno && nflen1 == flen);
360#endif
361 } else {
362 if ((error = xfs_alloc_lookup_eq(cnt_cur, fbno, flen, &i)))
363 return error;
Eric Sandeen5fb5aee2015-02-23 22:39:13 +1100364 XFS_WANT_CORRUPTED_RETURN(mp, i == 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 }
366 /*
367 * Look up the record in the by-block tree if necessary.
368 */
369 if (flags & XFSA_FIXUP_BNO_OK) {
370#ifdef DEBUG
371 if ((error = xfs_alloc_get_rec(bno_cur, &nfbno1, &nflen1, &i)))
372 return error;
Eric Sandeen5fb5aee2015-02-23 22:39:13 +1100373 XFS_WANT_CORRUPTED_RETURN(mp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 i == 1 && nfbno1 == fbno && nflen1 == flen);
375#endif
376 } else {
377 if ((error = xfs_alloc_lookup_eq(bno_cur, fbno, flen, &i)))
378 return error;
Eric Sandeen5fb5aee2015-02-23 22:39:13 +1100379 XFS_WANT_CORRUPTED_RETURN(mp, i == 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381
Christoph Hellwig7cc95a82008-10-30 17:14:34 +1100382#ifdef DEBUG
383 if (bno_cur->bc_nlevels == 1 && cnt_cur->bc_nlevels == 1) {
384 struct xfs_btree_block *bnoblock;
385 struct xfs_btree_block *cntblock;
386
387 bnoblock = XFS_BUF_TO_BLOCK(bno_cur->bc_bufs[0]);
388 cntblock = XFS_BUF_TO_BLOCK(cnt_cur->bc_bufs[0]);
389
Eric Sandeen5fb5aee2015-02-23 22:39:13 +1100390 XFS_WANT_CORRUPTED_RETURN(mp,
Christoph Hellwig7cc95a82008-10-30 17:14:34 +1100391 bnoblock->bb_numrecs == cntblock->bb_numrecs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 }
393#endif
Christoph Hellwig7cc95a82008-10-30 17:14:34 +1100394
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 /*
396 * Deal with all four cases: the allocated record is contained
397 * within the freespace record, so we can have new freespace
398 * at either (or both) end, or no freespace remaining.
399 */
400 if (rbno == fbno && rlen == flen)
401 nfbno1 = nfbno2 = NULLAGBLOCK;
402 else if (rbno == fbno) {
403 nfbno1 = rbno + rlen;
404 nflen1 = flen - rlen;
405 nfbno2 = NULLAGBLOCK;
406 } else if (rbno + rlen == fbno + flen) {
407 nfbno1 = fbno;
408 nflen1 = flen - rlen;
409 nfbno2 = NULLAGBLOCK;
410 } else {
411 nfbno1 = fbno;
412 nflen1 = rbno - fbno;
413 nfbno2 = rbno + rlen;
414 nflen2 = (fbno + flen) - nfbno2;
415 }
416 /*
417 * Delete the entry from the by-size btree.
418 */
Christoph Hellwig91cca5df2008-10-30 16:58:01 +1100419 if ((error = xfs_btree_delete(cnt_cur, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 return error;
Eric Sandeen5fb5aee2015-02-23 22:39:13 +1100421 XFS_WANT_CORRUPTED_RETURN(mp, i == 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 /*
423 * Add new by-size btree entry(s).
424 */
425 if (nfbno1 != NULLAGBLOCK) {
426 if ((error = xfs_alloc_lookup_eq(cnt_cur, nfbno1, nflen1, &i)))
427 return error;
Eric Sandeen5fb5aee2015-02-23 22:39:13 +1100428 XFS_WANT_CORRUPTED_RETURN(mp, i == 0);
Christoph Hellwig4b22a572008-10-30 16:57:40 +1100429 if ((error = xfs_btree_insert(cnt_cur, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 return error;
Eric Sandeen5fb5aee2015-02-23 22:39:13 +1100431 XFS_WANT_CORRUPTED_RETURN(mp, i == 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 }
433 if (nfbno2 != NULLAGBLOCK) {
434 if ((error = xfs_alloc_lookup_eq(cnt_cur, nfbno2, nflen2, &i)))
435 return error;
Eric Sandeen5fb5aee2015-02-23 22:39:13 +1100436 XFS_WANT_CORRUPTED_RETURN(mp, i == 0);
Christoph Hellwig4b22a572008-10-30 16:57:40 +1100437 if ((error = xfs_btree_insert(cnt_cur, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 return error;
Eric Sandeen5fb5aee2015-02-23 22:39:13 +1100439 XFS_WANT_CORRUPTED_RETURN(mp, i == 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 }
441 /*
442 * Fix up the by-block btree entry(s).
443 */
444 if (nfbno1 == NULLAGBLOCK) {
445 /*
446 * No remaining freespace, just delete the by-block tree entry.
447 */
Christoph Hellwig91cca5df2008-10-30 16:58:01 +1100448 if ((error = xfs_btree_delete(bno_cur, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 return error;
Eric Sandeen5fb5aee2015-02-23 22:39:13 +1100450 XFS_WANT_CORRUPTED_RETURN(mp, i == 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 } else {
452 /*
453 * Update the by-block entry to start later|be shorter.
454 */
455 if ((error = xfs_alloc_update(bno_cur, nfbno1, nflen1)))
456 return error;
457 }
458 if (nfbno2 != NULLAGBLOCK) {
459 /*
460 * 2 resulting free entries, need to add one.
461 */
462 if ((error = xfs_alloc_lookup_eq(bno_cur, nfbno2, nflen2, &i)))
463 return error;
Eric Sandeen5fb5aee2015-02-23 22:39:13 +1100464 XFS_WANT_CORRUPTED_RETURN(mp, i == 0);
Christoph Hellwig4b22a572008-10-30 16:57:40 +1100465 if ((error = xfs_btree_insert(bno_cur, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 return error;
Eric Sandeen5fb5aee2015-02-23 22:39:13 +1100467 XFS_WANT_CORRUPTED_RETURN(mp, i == 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 }
469 return 0;
470}
471
Christoph Hellwig77c95bb2013-04-03 16:11:14 +1100472static bool
Dave Chinner612cfbf2012-11-14 17:52:32 +1100473xfs_agfl_verify(
Dave Chinnerbb80c6d2012-11-12 22:54:06 +1100474 struct xfs_buf *bp)
475{
Dave Chinnerbb80c6d2012-11-12 22:54:06 +1100476 struct xfs_mount *mp = bp->b_target->bt_mount;
477 struct xfs_agfl *agfl = XFS_BUF_TO_AGFL(bp);
Dave Chinnerbb80c6d2012-11-12 22:54:06 +1100478 int i;
479
Eric Sandeence748ea2015-07-29 11:53:31 +1000480 if (!uuid_equal(&agfl->agfl_uuid, &mp->m_sb.sb_meta_uuid))
Christoph Hellwig77c95bb2013-04-03 16:11:14 +1100481 return false;
482 if (be32_to_cpu(agfl->agfl_magicnum) != XFS_AGFL_MAGIC)
483 return false;
484 /*
485 * during growfs operations, the perag is not fully initialised,
486 * so we can't use it for any useful checking. growfs ensures we can't
487 * use it by using uncached buffers that don't have the perag attached
488 * so we can detect and avoid this problem.
489 */
490 if (bp->b_pag && be32_to_cpu(agfl->agfl_seqno) != bp->b_pag->pag_agno)
491 return false;
492
Dave Chinnerbb80c6d2012-11-12 22:54:06 +1100493 for (i = 0; i < XFS_AGFL_SIZE(mp); i++) {
Christoph Hellwig77c95bb2013-04-03 16:11:14 +1100494 if (be32_to_cpu(agfl->agfl_bno[i]) != NULLAGBLOCK &&
Dave Chinnerbb80c6d2012-11-12 22:54:06 +1100495 be32_to_cpu(agfl->agfl_bno[i]) >= mp->m_sb.sb_agblocks)
Christoph Hellwig77c95bb2013-04-03 16:11:14 +1100496 return false;
Dave Chinnerbb80c6d2012-11-12 22:54:06 +1100497 }
Brian Fostera45086e2015-10-12 15:59:25 +1100498
499 return xfs_log_check_lsn(mp,
500 be64_to_cpu(XFS_BUF_TO_AGFL(bp)->agfl_lsn));
Dave Chinner612cfbf2012-11-14 17:52:32 +1100501}
502
Dave Chinnerb0f539d2012-11-14 17:53:49 +1100503static void
Dave Chinner612cfbf2012-11-14 17:52:32 +1100504xfs_agfl_read_verify(
505 struct xfs_buf *bp)
506{
Christoph Hellwig77c95bb2013-04-03 16:11:14 +1100507 struct xfs_mount *mp = bp->b_target->bt_mount;
Christoph Hellwig77c95bb2013-04-03 16:11:14 +1100508
509 /*
510 * There is no verification of non-crc AGFLs because mkfs does not
511 * initialise the AGFL to zero or NULL. Hence the only valid part of the
512 * AGFL is what the AGF says is active. We can't get to the AGF, so we
513 * can't verify just those entries are valid.
514 */
515 if (!xfs_sb_version_hascrc(&mp->m_sb))
516 return;
517
Eric Sandeence5028c2014-02-27 15:23:10 +1100518 if (!xfs_buf_verify_cksum(bp, XFS_AGFL_CRC_OFF))
Dave Chinner24513372014-06-25 14:58:08 +1000519 xfs_buf_ioerror(bp, -EFSBADCRC);
Eric Sandeence5028c2014-02-27 15:23:10 +1100520 else if (!xfs_agfl_verify(bp))
Dave Chinner24513372014-06-25 14:58:08 +1000521 xfs_buf_ioerror(bp, -EFSCORRUPTED);
Eric Sandeence5028c2014-02-27 15:23:10 +1100522
523 if (bp->b_error)
524 xfs_verifier_error(bp);
Christoph Hellwig77c95bb2013-04-03 16:11:14 +1100525}
526
527static void
528xfs_agfl_write_verify(
529 struct xfs_buf *bp)
530{
531 struct xfs_mount *mp = bp->b_target->bt_mount;
532 struct xfs_buf_log_item *bip = bp->b_fspriv;
533
534 /* no verification of non-crc AGFLs */
535 if (!xfs_sb_version_hascrc(&mp->m_sb))
536 return;
537
538 if (!xfs_agfl_verify(bp)) {
Dave Chinner24513372014-06-25 14:58:08 +1000539 xfs_buf_ioerror(bp, -EFSCORRUPTED);
Eric Sandeence5028c2014-02-27 15:23:10 +1100540 xfs_verifier_error(bp);
Christoph Hellwig77c95bb2013-04-03 16:11:14 +1100541 return;
542 }
543
544 if (bip)
545 XFS_BUF_TO_AGFL(bp)->agfl_lsn = cpu_to_be64(bip->bli_item.li_lsn);
546
Eric Sandeenf1dbcd72014-02-27 15:18:23 +1100547 xfs_buf_update_cksum(bp, XFS_AGFL_CRC_OFF);
Dave Chinnerbb80c6d2012-11-12 22:54:06 +1100548}
549
Dave Chinner1813dd62012-11-14 17:54:40 +1100550const struct xfs_buf_ops xfs_agfl_buf_ops = {
Eric Sandeen233135b2016-01-04 16:10:19 +1100551 .name = "xfs_agfl",
Dave Chinner1813dd62012-11-14 17:54:40 +1100552 .verify_read = xfs_agfl_read_verify,
553 .verify_write = xfs_agfl_write_verify,
554};
555
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556/*
557 * Read in the allocation group free block array.
558 */
559STATIC int /* error */
560xfs_alloc_read_agfl(
561 xfs_mount_t *mp, /* mount point structure */
562 xfs_trans_t *tp, /* transaction pointer */
563 xfs_agnumber_t agno, /* allocation group number */
564 xfs_buf_t **bpp) /* buffer for the ag free block array */
565{
566 xfs_buf_t *bp; /* return value */
567 int error;
568
569 ASSERT(agno != NULLAGNUMBER);
570 error = xfs_trans_read_buf(
571 mp, tp, mp->m_ddev_targp,
572 XFS_AG_DADDR(mp, agno, XFS_AGFL_DADDR(mp)),
Dave Chinner1813dd62012-11-14 17:54:40 +1100573 XFS_FSS_TO_BB(mp, 1), 0, &bp, &xfs_agfl_buf_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 if (error)
575 return error;
Christoph Hellwig38f23232011-10-10 16:52:45 +0000576 xfs_buf_set_ref(bp, XFS_AGFL_REF);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 *bpp = bp;
578 return 0;
579}
580
Christoph Hellwigecb69282011-03-04 12:59:55 +0000581STATIC int
582xfs_alloc_update_counters(
583 struct xfs_trans *tp,
584 struct xfs_perag *pag,
585 struct xfs_buf *agbp,
586 long len)
587{
588 struct xfs_agf *agf = XFS_BUF_TO_AGF(agbp);
589
590 pag->pagf_freeblks += len;
591 be32_add_cpu(&agf->agf_freeblks, len);
592
593 xfs_trans_agblocks_delta(tp, len);
594 if (unlikely(be32_to_cpu(agf->agf_freeblks) >
595 be32_to_cpu(agf->agf_length)))
Dave Chinner24513372014-06-25 14:58:08 +1000596 return -EFSCORRUPTED;
Christoph Hellwigecb69282011-03-04 12:59:55 +0000597
598 xfs_alloc_log_agf(tp, agbp, XFS_AGF_FREEBLKS);
599 return 0;
600}
601
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602/*
603 * Allocation group level functions.
604 */
605
606/*
607 * Allocate a variable extent in the allocation group agno.
608 * Type and bno are used to determine where in the allocation group the
609 * extent will start.
610 * Extent's length (returned in *len) will be between minlen and maxlen,
611 * and of the form k * prod + mod unless there's nothing that large.
612 * Return the starting a.g. block, or NULLAGBLOCK if we can't do it.
613 */
614STATIC int /* error */
615xfs_alloc_ag_vextent(
616 xfs_alloc_arg_t *args) /* argument structure for allocation */
617{
618 int error=0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619
620 ASSERT(args->minlen > 0);
621 ASSERT(args->maxlen > 0);
622 ASSERT(args->minlen <= args->maxlen);
623 ASSERT(args->mod < args->prod);
624 ASSERT(args->alignment > 0);
625 /*
626 * Branch to correct routine based on the type.
627 */
628 args->wasfromfl = 0;
629 switch (args->type) {
630 case XFS_ALLOCTYPE_THIS_AG:
631 error = xfs_alloc_ag_vextent_size(args);
632 break;
633 case XFS_ALLOCTYPE_NEAR_BNO:
634 error = xfs_alloc_ag_vextent_near(args);
635 break;
636 case XFS_ALLOCTYPE_THIS_BNO:
637 error = xfs_alloc_ag_vextent_exact(args);
638 break;
639 default:
640 ASSERT(0);
641 /* NOTREACHED */
642 }
Christoph Hellwigecb69282011-03-04 12:59:55 +0000643
644 if (error || args->agbno == NULLAGBLOCK)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646
Christoph Hellwigecb69282011-03-04 12:59:55 +0000647 ASSERT(args->len >= args->minlen);
648 ASSERT(args->len <= args->maxlen);
649 ASSERT(!args->wasfromfl || !args->isfl);
650 ASSERT(args->agbno % args->alignment == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651
Darrick J. Wong673930c2016-08-03 11:33:43 +1000652 /* if not file data, insert new block into the reverse map btree */
653 if (args->oinfo.oi_owner != XFS_RMAP_OWN_UNKNOWN) {
654 error = xfs_rmap_alloc(args->tp, args->agbp, args->agno,
655 args->agbno, args->len, &args->oinfo);
656 if (error)
657 return error;
658 }
659
Christoph Hellwigecb69282011-03-04 12:59:55 +0000660 if (!args->wasfromfl) {
661 error = xfs_alloc_update_counters(args->tp, args->pag,
662 args->agbp,
663 -((long)(args->len)));
664 if (error)
665 return error;
666
Dave Chinner4ecbfe62012-04-29 10:41:10 +0000667 ASSERT(!xfs_extent_busy_search(args->mp, args->agno,
Christoph Hellwige26f0502011-04-24 19:06:15 +0000668 args->agbno, args->len));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 }
Christoph Hellwigecb69282011-03-04 12:59:55 +0000670
671 if (!args->isfl) {
672 xfs_trans_mod_sb(args->tp, args->wasdel ?
673 XFS_TRANS_SB_RES_FDBLOCKS :
674 XFS_TRANS_SB_FDBLOCKS,
675 -((long)(args->len)));
676 }
677
Bill O'Donnellff6d6af2015-10-12 18:21:22 +1100678 XFS_STATS_INC(args->mp, xs_allocx);
679 XFS_STATS_ADD(args->mp, xs_allocb, args->len);
Christoph Hellwigecb69282011-03-04 12:59:55 +0000680 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681}
682
683/*
684 * Allocate a variable extent at exactly agno/bno.
685 * Extent's length (returned in *len) will be between minlen and maxlen,
686 * and of the form k * prod + mod unless there's nothing that large.
687 * Return the starting a.g. block (bno), or NULLAGBLOCK if we can't do it.
688 */
689STATIC int /* error */
690xfs_alloc_ag_vextent_exact(
691 xfs_alloc_arg_t *args) /* allocation argument structure */
692{
693 xfs_btree_cur_t *bno_cur;/* by block-number btree cursor */
694 xfs_btree_cur_t *cnt_cur;/* by count btree cursor */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 int error;
696 xfs_agblock_t fbno; /* start block of found extent */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 xfs_extlen_t flen; /* length of found extent */
Christoph Hellwige26f0502011-04-24 19:06:15 +0000698 xfs_agblock_t tbno; /* start block of trimmed extent */
699 xfs_extlen_t tlen; /* length of trimmed extent */
700 xfs_agblock_t tend; /* end block of trimmed extent */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 int i; /* success/failure of operation */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702
703 ASSERT(args->alignment == 1);
Christoph Hellwig9f9baab2010-12-10 15:03:57 +0000704
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 /*
706 * Allocate/initialize a cursor for the by-number freespace btree.
707 */
Christoph Hellwig561f7d12008-10-30 16:53:59 +1100708 bno_cur = xfs_allocbt_init_cursor(args->mp, args->tp, args->agbp,
Christoph Hellwig9f9baab2010-12-10 15:03:57 +0000709 args->agno, XFS_BTNUM_BNO);
710
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 /*
712 * Lookup bno and minlen in the btree (minlen is irrelevant, really).
713 * Look for the closest free block <= bno, it must contain bno
714 * if any free block does.
715 */
Christoph Hellwig9f9baab2010-12-10 15:03:57 +0000716 error = xfs_alloc_lookup_le(bno_cur, args->agbno, args->minlen, &i);
717 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 goto error0;
Christoph Hellwig9f9baab2010-12-10 15:03:57 +0000719 if (!i)
720 goto not_found;
721
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 /*
723 * Grab the freespace record.
724 */
Christoph Hellwig9f9baab2010-12-10 15:03:57 +0000725 error = xfs_alloc_get_rec(bno_cur, &fbno, &flen, &i);
726 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 goto error0;
Eric Sandeenc29aad42015-02-23 22:39:08 +1100728 XFS_WANT_CORRUPTED_GOTO(args->mp, i == 1, error0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 ASSERT(fbno <= args->agbno);
Christoph Hellwig9f9baab2010-12-10 15:03:57 +0000730
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 /*
Christoph Hellwige26f0502011-04-24 19:06:15 +0000732 * Check for overlapping busy extents.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 */
Dave Chinner4ecbfe62012-04-29 10:41:10 +0000734 xfs_extent_busy_trim(args, fbno, flen, &tbno, &tlen);
Christoph Hellwige26f0502011-04-24 19:06:15 +0000735
736 /*
737 * Give up if the start of the extent is busy, or the freespace isn't
738 * long enough for the minimum request.
739 */
740 if (tbno > args->agbno)
741 goto not_found;
742 if (tlen < args->minlen)
743 goto not_found;
744 tend = tbno + tlen;
745 if (tend < args->agbno + args->minlen)
Christoph Hellwig9f9baab2010-12-10 15:03:57 +0000746 goto not_found;
747
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 /*
749 * End of extent will be smaller of the freespace end and the
750 * maximal requested end.
Christoph Hellwig9f9baab2010-12-10 15:03:57 +0000751 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 * Fix the length according to mod and prod if given.
753 */
Chandra Seetharaman81463b12011-06-09 16:47:49 +0000754 args->len = XFS_AGBLOCK_MIN(tend, args->agbno + args->maxlen)
755 - args->agbno;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 xfs_alloc_fix_len(args);
Christoph Hellwig9f9baab2010-12-10 15:03:57 +0000757 if (!xfs_alloc_fix_minleft(args))
758 goto not_found;
759
Chandra Seetharaman81463b12011-06-09 16:47:49 +0000760 ASSERT(args->agbno + args->len <= tend);
Christoph Hellwig9f9baab2010-12-10 15:03:57 +0000761
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 /*
Chandra Seetharaman81463b12011-06-09 16:47:49 +0000763 * We are allocating agbno for args->len
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 * Allocate/initialize a cursor for the by-size btree.
765 */
Christoph Hellwig561f7d12008-10-30 16:53:59 +1100766 cnt_cur = xfs_allocbt_init_cursor(args->mp, args->tp, args->agbp,
767 args->agno, XFS_BTNUM_CNT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 ASSERT(args->agbno + args->len <=
Christoph Hellwig16259e72005-11-02 15:11:25 +1100769 be32_to_cpu(XFS_BUF_TO_AGF(args->agbp)->agf_length));
Christoph Hellwig9f9baab2010-12-10 15:03:57 +0000770 error = xfs_alloc_fixup_trees(cnt_cur, bno_cur, fbno, flen, args->agbno,
771 args->len, XFSA_FIXUP_BNO_OK);
772 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 xfs_btree_del_cursor(cnt_cur, XFS_BTREE_ERROR);
774 goto error0;
775 }
Christoph Hellwig9f9baab2010-12-10 15:03:57 +0000776
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 xfs_btree_del_cursor(bno_cur, XFS_BTREE_NOERROR);
778 xfs_btree_del_cursor(cnt_cur, XFS_BTREE_NOERROR);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000779
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 args->wasfromfl = 0;
Christoph Hellwig9f9baab2010-12-10 15:03:57 +0000781 trace_xfs_alloc_exact_done(args);
782 return 0;
783
784not_found:
785 /* Didn't find it, return null. */
786 xfs_btree_del_cursor(bno_cur, XFS_BTREE_NOERROR);
787 args->agbno = NULLAGBLOCK;
788 trace_xfs_alloc_exact_notfound(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 return 0;
790
791error0:
792 xfs_btree_del_cursor(bno_cur, XFS_BTREE_ERROR);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000793 trace_xfs_alloc_exact_error(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 return error;
795}
796
797/*
Christoph Hellwig489a1502010-12-10 15:04:11 +0000798 * Search the btree in a given direction via the search cursor and compare
799 * the records found against the good extent we've already found.
800 */
801STATIC int
802xfs_alloc_find_best_extent(
803 struct xfs_alloc_arg *args, /* allocation argument structure */
804 struct xfs_btree_cur **gcur, /* good cursor */
805 struct xfs_btree_cur **scur, /* searching cursor */
806 xfs_agblock_t gdiff, /* difference for search comparison */
807 xfs_agblock_t *sbno, /* extent found by search */
Christoph Hellwige26f0502011-04-24 19:06:15 +0000808 xfs_extlen_t *slen, /* extent length */
809 xfs_agblock_t *sbnoa, /* aligned extent found by search */
810 xfs_extlen_t *slena, /* aligned extent length */
Christoph Hellwig489a1502010-12-10 15:04:11 +0000811 int dir) /* 0 = search right, 1 = search left */
812{
Christoph Hellwig489a1502010-12-10 15:04:11 +0000813 xfs_agblock_t new;
814 xfs_agblock_t sdiff;
815 int error;
816 int i;
817
818 /* The good extent is perfect, no need to search. */
819 if (!gdiff)
820 goto out_use_good;
821
822 /*
823 * Look until we find a better one, run out of space or run off the end.
824 */
825 do {
826 error = xfs_alloc_get_rec(*scur, sbno, slen, &i);
827 if (error)
828 goto error0;
Eric Sandeenc29aad42015-02-23 22:39:08 +1100829 XFS_WANT_CORRUPTED_GOTO(args->mp, i == 1, error0);
Christoph Hellwige26f0502011-04-24 19:06:15 +0000830 xfs_alloc_compute_aligned(args, *sbno, *slen, sbnoa, slena);
Christoph Hellwig489a1502010-12-10 15:04:11 +0000831
832 /*
833 * The good extent is closer than this one.
834 */
835 if (!dir) {
Brian Fosterbfe46d42015-05-29 08:53:00 +1000836 if (*sbnoa > args->max_agbno)
837 goto out_use_good;
Christoph Hellwige26f0502011-04-24 19:06:15 +0000838 if (*sbnoa >= args->agbno + gdiff)
Christoph Hellwig489a1502010-12-10 15:04:11 +0000839 goto out_use_good;
840 } else {
Brian Fosterbfe46d42015-05-29 08:53:00 +1000841 if (*sbnoa < args->min_agbno)
842 goto out_use_good;
Christoph Hellwige26f0502011-04-24 19:06:15 +0000843 if (*sbnoa <= args->agbno - gdiff)
Christoph Hellwig489a1502010-12-10 15:04:11 +0000844 goto out_use_good;
845 }
846
847 /*
848 * Same distance, compare length and pick the best.
849 */
850 if (*slena >= args->minlen) {
851 args->len = XFS_EXTLEN_MIN(*slena, args->maxlen);
852 xfs_alloc_fix_len(args);
853
854 sdiff = xfs_alloc_compute_diff(args->agbno, args->len,
Jan Kara211d0222013-04-11 22:09:56 +0200855 args->alignment,
856 args->userdata, *sbnoa,
Christoph Hellwige26f0502011-04-24 19:06:15 +0000857 *slena, &new);
Christoph Hellwig489a1502010-12-10 15:04:11 +0000858
859 /*
860 * Choose closer size and invalidate other cursor.
861 */
862 if (sdiff < gdiff)
863 goto out_use_search;
864 goto out_use_good;
865 }
866
867 if (!dir)
868 error = xfs_btree_increment(*scur, 0, &i);
869 else
870 error = xfs_btree_decrement(*scur, 0, &i);
871 if (error)
872 goto error0;
873 } while (i);
874
875out_use_good:
876 xfs_btree_del_cursor(*scur, XFS_BTREE_NOERROR);
877 *scur = NULL;
878 return 0;
879
880out_use_search:
881 xfs_btree_del_cursor(*gcur, XFS_BTREE_NOERROR);
882 *gcur = NULL;
883 return 0;
884
885error0:
886 /* caller invalidates cursors */
887 return error;
888}
889
890/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 * Allocate a variable extent near bno in the allocation group agno.
892 * Extent's length (returned in len) will be between minlen and maxlen,
893 * and of the form k * prod + mod unless there's nothing that large.
894 * Return the starting a.g. block, or NULLAGBLOCK if we can't do it.
895 */
896STATIC int /* error */
897xfs_alloc_ag_vextent_near(
898 xfs_alloc_arg_t *args) /* allocation argument structure */
899{
900 xfs_btree_cur_t *bno_cur_gt; /* cursor for bno btree, right side */
901 xfs_btree_cur_t *bno_cur_lt; /* cursor for bno btree, left side */
902 xfs_btree_cur_t *cnt_cur; /* cursor for count btree */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 xfs_agblock_t gtbno; /* start bno of right side entry */
904 xfs_agblock_t gtbnoa; /* aligned ... */
905 xfs_extlen_t gtdiff; /* difference to right side entry */
906 xfs_extlen_t gtlen; /* length of right side entry */
Christoph Hellwige26f0502011-04-24 19:06:15 +0000907 xfs_extlen_t gtlena; /* aligned ... */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908 xfs_agblock_t gtnew; /* useful start bno of right side */
909 int error; /* error code */
910 int i; /* result code, temporary */
911 int j; /* result code, temporary */
912 xfs_agblock_t ltbno; /* start bno of left side entry */
913 xfs_agblock_t ltbnoa; /* aligned ... */
914 xfs_extlen_t ltdiff; /* difference to left side entry */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915 xfs_extlen_t ltlen; /* length of left side entry */
Christoph Hellwige26f0502011-04-24 19:06:15 +0000916 xfs_extlen_t ltlena; /* aligned ... */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917 xfs_agblock_t ltnew; /* useful start bno of left side */
918 xfs_extlen_t rlen; /* length of returned extent */
Christoph Hellwige26f0502011-04-24 19:06:15 +0000919 int forced = 0;
Dave Chinner63d20d62013-08-12 20:49:50 +1000920#ifdef DEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 /*
922 * Randomly don't execute the first algorithm.
923 */
924 int dofirst; /* set to do first algorithm */
925
Akinobu Mitaecb34032013-03-04 21:58:20 +0900926 dofirst = prandom_u32() & 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927#endif
Christoph Hellwige26f0502011-04-24 19:06:15 +0000928
Brian Fosterbfe46d42015-05-29 08:53:00 +1000929 /* handle unitialized agbno range so caller doesn't have to */
930 if (!args->min_agbno && !args->max_agbno)
931 args->max_agbno = args->mp->m_sb.sb_agblocks - 1;
932 ASSERT(args->min_agbno <= args->max_agbno);
933
934 /* clamp agbno to the range if it's outside */
935 if (args->agbno < args->min_agbno)
936 args->agbno = args->min_agbno;
937 if (args->agbno > args->max_agbno)
938 args->agbno = args->max_agbno;
939
Christoph Hellwige26f0502011-04-24 19:06:15 +0000940restart:
941 bno_cur_lt = NULL;
942 bno_cur_gt = NULL;
943 ltlen = 0;
944 gtlena = 0;
945 ltlena = 0;
946
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947 /*
948 * Get a cursor for the by-size btree.
949 */
Christoph Hellwig561f7d12008-10-30 16:53:59 +1100950 cnt_cur = xfs_allocbt_init_cursor(args->mp, args->tp, args->agbp,
951 args->agno, XFS_BTNUM_CNT);
Christoph Hellwige26f0502011-04-24 19:06:15 +0000952
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 /*
954 * See if there are any free extents as big as maxlen.
955 */
956 if ((error = xfs_alloc_lookup_ge(cnt_cur, 0, args->maxlen, &i)))
957 goto error0;
958 /*
959 * If none, then pick up the last entry in the tree unless the
960 * tree is empty.
961 */
962 if (!i) {
963 if ((error = xfs_alloc_ag_vextent_small(args, cnt_cur, &ltbno,
964 &ltlen, &i)))
965 goto error0;
966 if (i == 0 || ltlen == 0) {
967 xfs_btree_del_cursor(cnt_cur, XFS_BTREE_NOERROR);
Christoph Hellwige26f0502011-04-24 19:06:15 +0000968 trace_xfs_alloc_near_noentry(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969 return 0;
970 }
971 ASSERT(i == 1);
972 }
973 args->wasfromfl = 0;
Christoph Hellwige26f0502011-04-24 19:06:15 +0000974
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 /*
976 * First algorithm.
977 * If the requested extent is large wrt the freespaces available
978 * in this a.g., then the cursor will be pointing to a btree entry
979 * near the right edge of the tree. If it's in the last btree leaf
980 * block, then we just examine all the entries in that block
981 * that are big enough, and pick the best one.
982 * This is written as a while loop so we can break out of it,
983 * but we never loop back to the top.
984 */
985 while (xfs_btree_islastblock(cnt_cur, 0)) {
986 xfs_extlen_t bdiff;
987 int besti=0;
988 xfs_extlen_t blen=0;
989 xfs_agblock_t bnew=0;
990
Dave Chinner63d20d62013-08-12 20:49:50 +1000991#ifdef DEBUG
992 if (dofirst)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993 break;
994#endif
995 /*
996 * Start from the entry that lookup found, sequence through
997 * all larger free blocks. If we're actually pointing at a
998 * record smaller than maxlen, go to the start of this block,
999 * and skip all those smaller than minlen.
1000 */
1001 if (ltlen || args->alignment > 1) {
1002 cnt_cur->bc_ptrs[0] = 1;
1003 do {
1004 if ((error = xfs_alloc_get_rec(cnt_cur, &ltbno,
1005 &ltlen, &i)))
1006 goto error0;
Eric Sandeenc29aad42015-02-23 22:39:08 +11001007 XFS_WANT_CORRUPTED_GOTO(args->mp, i == 1, error0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008 if (ltlen >= args->minlen)
1009 break;
Christoph Hellwig637aa502008-10-30 16:55:45 +11001010 if ((error = xfs_btree_increment(cnt_cur, 0, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011 goto error0;
1012 } while (i);
1013 ASSERT(ltlen >= args->minlen);
1014 if (!i)
1015 break;
1016 }
1017 i = cnt_cur->bc_ptrs[0];
1018 for (j = 1, blen = 0, bdiff = 0;
1019 !error && j && (blen < args->maxlen || bdiff > 0);
Christoph Hellwig637aa502008-10-30 16:55:45 +11001020 error = xfs_btree_increment(cnt_cur, 0, &j)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021 /*
1022 * For each entry, decide if it's better than
1023 * the previous best entry.
1024 */
1025 if ((error = xfs_alloc_get_rec(cnt_cur, &ltbno, &ltlen, &i)))
1026 goto error0;
Eric Sandeenc29aad42015-02-23 22:39:08 +11001027 XFS_WANT_CORRUPTED_GOTO(args->mp, i == 1, error0);
Christoph Hellwig86fa8af2011-03-04 12:59:54 +00001028 xfs_alloc_compute_aligned(args, ltbno, ltlen,
1029 &ltbnoa, &ltlena);
David Chinnere6430032008-04-17 16:49:49 +10001030 if (ltlena < args->minlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 continue;
Brian Fosterbfe46d42015-05-29 08:53:00 +10001032 if (ltbnoa < args->min_agbno || ltbnoa > args->max_agbno)
1033 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034 args->len = XFS_EXTLEN_MIN(ltlena, args->maxlen);
1035 xfs_alloc_fix_len(args);
1036 ASSERT(args->len >= args->minlen);
1037 if (args->len < blen)
1038 continue;
1039 ltdiff = xfs_alloc_compute_diff(args->agbno, args->len,
Jan Kara211d0222013-04-11 22:09:56 +02001040 args->alignment, args->userdata, ltbnoa,
1041 ltlena, &ltnew);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 if (ltnew != NULLAGBLOCK &&
1043 (args->len > blen || ltdiff < bdiff)) {
1044 bdiff = ltdiff;
1045 bnew = ltnew;
1046 blen = args->len;
1047 besti = cnt_cur->bc_ptrs[0];
1048 }
1049 }
1050 /*
1051 * It didn't work. We COULD be in a case where
1052 * there's a good record somewhere, so try again.
1053 */
1054 if (blen == 0)
1055 break;
1056 /*
1057 * Point at the best entry, and retrieve it again.
1058 */
1059 cnt_cur->bc_ptrs[0] = besti;
1060 if ((error = xfs_alloc_get_rec(cnt_cur, &ltbno, &ltlen, &i)))
1061 goto error0;
Eric Sandeenc29aad42015-02-23 22:39:08 +11001062 XFS_WANT_CORRUPTED_GOTO(args->mp, i == 1, error0);
Christoph Hellwig73523a22010-07-20 17:54:45 +10001063 ASSERT(ltbno + ltlen <= be32_to_cpu(XFS_BUF_TO_AGF(args->agbp)->agf_length));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064 args->len = blen;
1065 if (!xfs_alloc_fix_minleft(args)) {
1066 xfs_btree_del_cursor(cnt_cur, XFS_BTREE_NOERROR);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001067 trace_xfs_alloc_near_nominleft(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068 return 0;
1069 }
1070 blen = args->len;
1071 /*
1072 * We are allocating starting at bnew for blen blocks.
1073 */
1074 args->agbno = bnew;
1075 ASSERT(bnew >= ltbno);
Christoph Hellwig73523a22010-07-20 17:54:45 +10001076 ASSERT(bnew + blen <= ltbno + ltlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077 /*
1078 * Set up a cursor for the by-bno tree.
1079 */
Christoph Hellwig561f7d12008-10-30 16:53:59 +11001080 bno_cur_lt = xfs_allocbt_init_cursor(args->mp, args->tp,
1081 args->agbp, args->agno, XFS_BTNUM_BNO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082 /*
1083 * Fix up the btree entries.
1084 */
1085 if ((error = xfs_alloc_fixup_trees(cnt_cur, bno_cur_lt, ltbno,
1086 ltlen, bnew, blen, XFSA_FIXUP_CNT_OK)))
1087 goto error0;
1088 xfs_btree_del_cursor(cnt_cur, XFS_BTREE_NOERROR);
1089 xfs_btree_del_cursor(bno_cur_lt, XFS_BTREE_NOERROR);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001090
1091 trace_xfs_alloc_near_first(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092 return 0;
1093 }
1094 /*
1095 * Second algorithm.
1096 * Search in the by-bno tree to the left and to the right
1097 * simultaneously, until in each case we find a space big enough,
1098 * or run into the edge of the tree. When we run into the edge,
1099 * we deallocate that cursor.
1100 * If both searches succeed, we compare the two spaces and pick
1101 * the better one.
1102 * With alignment, it's possible for both to fail; the upper
1103 * level algorithm that picks allocation groups for allocations
1104 * is not supposed to do this.
1105 */
1106 /*
1107 * Allocate and initialize the cursor for the leftward search.
1108 */
Christoph Hellwig561f7d12008-10-30 16:53:59 +11001109 bno_cur_lt = xfs_allocbt_init_cursor(args->mp, args->tp, args->agbp,
1110 args->agno, XFS_BTNUM_BNO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111 /*
1112 * Lookup <= bno to find the leftward search's starting point.
1113 */
1114 if ((error = xfs_alloc_lookup_le(bno_cur_lt, args->agbno, args->maxlen, &i)))
1115 goto error0;
1116 if (!i) {
1117 /*
1118 * Didn't find anything; use this cursor for the rightward
1119 * search.
1120 */
1121 bno_cur_gt = bno_cur_lt;
1122 bno_cur_lt = NULL;
1123 }
1124 /*
1125 * Found something. Duplicate the cursor for the rightward search.
1126 */
1127 else if ((error = xfs_btree_dup_cursor(bno_cur_lt, &bno_cur_gt)))
1128 goto error0;
1129 /*
1130 * Increment the cursor, so we will point at the entry just right
1131 * of the leftward entry if any, or to the leftmost entry.
1132 */
Christoph Hellwig637aa502008-10-30 16:55:45 +11001133 if ((error = xfs_btree_increment(bno_cur_gt, 0, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134 goto error0;
1135 if (!i) {
1136 /*
1137 * It failed, there are no rightward entries.
1138 */
1139 xfs_btree_del_cursor(bno_cur_gt, XFS_BTREE_NOERROR);
1140 bno_cur_gt = NULL;
1141 }
1142 /*
1143 * Loop going left with the leftward cursor, right with the
1144 * rightward cursor, until either both directions give up or
1145 * we find an entry at least as big as minlen.
1146 */
1147 do {
1148 if (bno_cur_lt) {
1149 if ((error = xfs_alloc_get_rec(bno_cur_lt, &ltbno, &ltlen, &i)))
1150 goto error0;
Eric Sandeenc29aad42015-02-23 22:39:08 +11001151 XFS_WANT_CORRUPTED_GOTO(args->mp, i == 1, error0);
Christoph Hellwig86fa8af2011-03-04 12:59:54 +00001152 xfs_alloc_compute_aligned(args, ltbno, ltlen,
1153 &ltbnoa, &ltlena);
Brian Fosterbfe46d42015-05-29 08:53:00 +10001154 if (ltlena >= args->minlen && ltbnoa >= args->min_agbno)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155 break;
Christoph Hellwig8df4da42008-10-30 16:55:58 +11001156 if ((error = xfs_btree_decrement(bno_cur_lt, 0, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157 goto error0;
Brian Fosterbfe46d42015-05-29 08:53:00 +10001158 if (!i || ltbnoa < args->min_agbno) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159 xfs_btree_del_cursor(bno_cur_lt,
1160 XFS_BTREE_NOERROR);
1161 bno_cur_lt = NULL;
1162 }
1163 }
1164 if (bno_cur_gt) {
1165 if ((error = xfs_alloc_get_rec(bno_cur_gt, &gtbno, &gtlen, &i)))
1166 goto error0;
Eric Sandeenc29aad42015-02-23 22:39:08 +11001167 XFS_WANT_CORRUPTED_GOTO(args->mp, i == 1, error0);
Christoph Hellwig86fa8af2011-03-04 12:59:54 +00001168 xfs_alloc_compute_aligned(args, gtbno, gtlen,
1169 &gtbnoa, &gtlena);
Brian Fosterbfe46d42015-05-29 08:53:00 +10001170 if (gtlena >= args->minlen && gtbnoa <= args->max_agbno)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171 break;
Christoph Hellwig637aa502008-10-30 16:55:45 +11001172 if ((error = xfs_btree_increment(bno_cur_gt, 0, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173 goto error0;
Brian Fosterbfe46d42015-05-29 08:53:00 +10001174 if (!i || gtbnoa > args->max_agbno) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175 xfs_btree_del_cursor(bno_cur_gt,
1176 XFS_BTREE_NOERROR);
1177 bno_cur_gt = NULL;
1178 }
1179 }
1180 } while (bno_cur_lt || bno_cur_gt);
Christoph Hellwig489a1502010-12-10 15:04:11 +00001181
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182 /*
1183 * Got both cursors still active, need to find better entry.
1184 */
1185 if (bno_cur_lt && bno_cur_gt) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186 if (ltlena >= args->minlen) {
1187 /*
Christoph Hellwig489a1502010-12-10 15:04:11 +00001188 * Left side is good, look for a right side entry.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189 */
1190 args->len = XFS_EXTLEN_MIN(ltlena, args->maxlen);
1191 xfs_alloc_fix_len(args);
Christoph Hellwig489a1502010-12-10 15:04:11 +00001192 ltdiff = xfs_alloc_compute_diff(args->agbno, args->len,
Jan Kara211d0222013-04-11 22:09:56 +02001193 args->alignment, args->userdata, ltbnoa,
1194 ltlena, &ltnew);
Christoph Hellwig489a1502010-12-10 15:04:11 +00001195
1196 error = xfs_alloc_find_best_extent(args,
1197 &bno_cur_lt, &bno_cur_gt,
Christoph Hellwige26f0502011-04-24 19:06:15 +00001198 ltdiff, &gtbno, &gtlen,
1199 &gtbnoa, &gtlena,
Christoph Hellwig489a1502010-12-10 15:04:11 +00001200 0 /* search right */);
1201 } else {
1202 ASSERT(gtlena >= args->minlen);
1203
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204 /*
Christoph Hellwig489a1502010-12-10 15:04:11 +00001205 * Right side is good, look for a left side entry.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206 */
1207 args->len = XFS_EXTLEN_MIN(gtlena, args->maxlen);
1208 xfs_alloc_fix_len(args);
Christoph Hellwig489a1502010-12-10 15:04:11 +00001209 gtdiff = xfs_alloc_compute_diff(args->agbno, args->len,
Jan Kara211d0222013-04-11 22:09:56 +02001210 args->alignment, args->userdata, gtbnoa,
1211 gtlena, &gtnew);
Christoph Hellwig489a1502010-12-10 15:04:11 +00001212
1213 error = xfs_alloc_find_best_extent(args,
1214 &bno_cur_gt, &bno_cur_lt,
Christoph Hellwige26f0502011-04-24 19:06:15 +00001215 gtdiff, &ltbno, &ltlen,
1216 &ltbnoa, &ltlena,
Christoph Hellwig489a1502010-12-10 15:04:11 +00001217 1 /* search left */);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218 }
Christoph Hellwig489a1502010-12-10 15:04:11 +00001219
1220 if (error)
1221 goto error0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222 }
Christoph Hellwig489a1502010-12-10 15:04:11 +00001223
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224 /*
1225 * If we couldn't get anything, give up.
1226 */
1227 if (bno_cur_lt == NULL && bno_cur_gt == NULL) {
Dave Chinnere3a746f52012-07-12 07:40:42 +10001228 xfs_btree_del_cursor(cnt_cur, XFS_BTREE_NOERROR);
1229
Christoph Hellwige26f0502011-04-24 19:06:15 +00001230 if (!forced++) {
1231 trace_xfs_alloc_near_busy(args);
1232 xfs_log_force(args->mp, XFS_LOG_SYNC);
1233 goto restart;
1234 }
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001235 trace_xfs_alloc_size_neither(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236 args->agbno = NULLAGBLOCK;
1237 return 0;
1238 }
Christoph Hellwig489a1502010-12-10 15:04:11 +00001239
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240 /*
1241 * At this point we have selected a freespace entry, either to the
1242 * left or to the right. If it's on the right, copy all the
1243 * useful variables to the "left" set so we only have one
1244 * copy of this code.
1245 */
1246 if (bno_cur_gt) {
1247 bno_cur_lt = bno_cur_gt;
1248 bno_cur_gt = NULL;
1249 ltbno = gtbno;
1250 ltbnoa = gtbnoa;
1251 ltlen = gtlen;
1252 ltlena = gtlena;
1253 j = 1;
1254 } else
1255 j = 0;
Christoph Hellwig489a1502010-12-10 15:04:11 +00001256
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257 /*
1258 * Fix up the length and compute the useful address.
1259 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260 args->len = XFS_EXTLEN_MIN(ltlena, args->maxlen);
1261 xfs_alloc_fix_len(args);
1262 if (!xfs_alloc_fix_minleft(args)) {
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001263 trace_xfs_alloc_near_nominleft(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264 xfs_btree_del_cursor(bno_cur_lt, XFS_BTREE_NOERROR);
1265 xfs_btree_del_cursor(cnt_cur, XFS_BTREE_NOERROR);
1266 return 0;
1267 }
1268 rlen = args->len;
Christoph Hellwige26f0502011-04-24 19:06:15 +00001269 (void)xfs_alloc_compute_diff(args->agbno, rlen, args->alignment,
Jan Kara211d0222013-04-11 22:09:56 +02001270 args->userdata, ltbnoa, ltlena, &ltnew);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271 ASSERT(ltnew >= ltbno);
Christoph Hellwige26f0502011-04-24 19:06:15 +00001272 ASSERT(ltnew + rlen <= ltbnoa + ltlena);
Christoph Hellwig16259e72005-11-02 15:11:25 +11001273 ASSERT(ltnew + rlen <= be32_to_cpu(XFS_BUF_TO_AGF(args->agbp)->agf_length));
Brian Fosterbfe46d42015-05-29 08:53:00 +10001274 ASSERT(ltnew >= args->min_agbno && ltnew <= args->max_agbno);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275 args->agbno = ltnew;
Christoph Hellwige26f0502011-04-24 19:06:15 +00001276
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277 if ((error = xfs_alloc_fixup_trees(cnt_cur, bno_cur_lt, ltbno, ltlen,
1278 ltnew, rlen, XFSA_FIXUP_BNO_OK)))
1279 goto error0;
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001280
1281 if (j)
1282 trace_xfs_alloc_near_greater(args);
1283 else
1284 trace_xfs_alloc_near_lesser(args);
1285
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286 xfs_btree_del_cursor(cnt_cur, XFS_BTREE_NOERROR);
1287 xfs_btree_del_cursor(bno_cur_lt, XFS_BTREE_NOERROR);
1288 return 0;
1289
1290 error0:
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001291 trace_xfs_alloc_near_error(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292 if (cnt_cur != NULL)
1293 xfs_btree_del_cursor(cnt_cur, XFS_BTREE_ERROR);
1294 if (bno_cur_lt != NULL)
1295 xfs_btree_del_cursor(bno_cur_lt, XFS_BTREE_ERROR);
1296 if (bno_cur_gt != NULL)
1297 xfs_btree_del_cursor(bno_cur_gt, XFS_BTREE_ERROR);
1298 return error;
1299}
1300
1301/*
1302 * Allocate a variable extent anywhere in the allocation group agno.
1303 * Extent's length (returned in len) will be between minlen and maxlen,
1304 * and of the form k * prod + mod unless there's nothing that large.
1305 * Return the starting a.g. block, or NULLAGBLOCK if we can't do it.
1306 */
1307STATIC int /* error */
1308xfs_alloc_ag_vextent_size(
1309 xfs_alloc_arg_t *args) /* allocation argument structure */
1310{
1311 xfs_btree_cur_t *bno_cur; /* cursor for bno btree */
1312 xfs_btree_cur_t *cnt_cur; /* cursor for cnt btree */
1313 int error; /* error result */
1314 xfs_agblock_t fbno; /* start of found freespace */
1315 xfs_extlen_t flen; /* length of found freespace */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316 int i; /* temp status variable */
1317 xfs_agblock_t rbno; /* returned block number */
1318 xfs_extlen_t rlen; /* length of returned extent */
Christoph Hellwige26f0502011-04-24 19:06:15 +00001319 int forced = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320
Christoph Hellwige26f0502011-04-24 19:06:15 +00001321restart:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322 /*
1323 * Allocate and initialize a cursor for the by-size btree.
1324 */
Christoph Hellwig561f7d12008-10-30 16:53:59 +11001325 cnt_cur = xfs_allocbt_init_cursor(args->mp, args->tp, args->agbp,
1326 args->agno, XFS_BTNUM_CNT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327 bno_cur = NULL;
Christoph Hellwige26f0502011-04-24 19:06:15 +00001328
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329 /*
1330 * Look for an entry >= maxlen+alignment-1 blocks.
1331 */
1332 if ((error = xfs_alloc_lookup_ge(cnt_cur, 0,
1333 args->maxlen + args->alignment - 1, &i)))
1334 goto error0;
Christoph Hellwige26f0502011-04-24 19:06:15 +00001335
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336 /*
Christoph Hellwige26f0502011-04-24 19:06:15 +00001337 * If none or we have busy extents that we cannot allocate from, then
1338 * we have to settle for a smaller extent. In the case that there are
1339 * no large extents, this will return the last entry in the tree unless
1340 * the tree is empty. In the case that there are only busy large
1341 * extents, this will return the largest small extent unless there
1342 * are no smaller extents available.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343 */
Christoph Hellwige26f0502011-04-24 19:06:15 +00001344 if (!i || forced > 1) {
1345 error = xfs_alloc_ag_vextent_small(args, cnt_cur,
1346 &fbno, &flen, &i);
1347 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348 goto error0;
1349 if (i == 0 || flen == 0) {
1350 xfs_btree_del_cursor(cnt_cur, XFS_BTREE_NOERROR);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001351 trace_xfs_alloc_size_noentry(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352 return 0;
1353 }
1354 ASSERT(i == 1);
Christoph Hellwige26f0502011-04-24 19:06:15 +00001355 xfs_alloc_compute_aligned(args, fbno, flen, &rbno, &rlen);
1356 } else {
1357 /*
1358 * Search for a non-busy extent that is large enough.
1359 * If we are at low space, don't check, or if we fall of
1360 * the end of the btree, turn off the busy check and
1361 * restart.
1362 */
1363 for (;;) {
1364 error = xfs_alloc_get_rec(cnt_cur, &fbno, &flen, &i);
1365 if (error)
1366 goto error0;
Eric Sandeenc29aad42015-02-23 22:39:08 +11001367 XFS_WANT_CORRUPTED_GOTO(args->mp, i == 1, error0);
Christoph Hellwige26f0502011-04-24 19:06:15 +00001368
1369 xfs_alloc_compute_aligned(args, fbno, flen,
1370 &rbno, &rlen);
1371
1372 if (rlen >= args->maxlen)
1373 break;
1374
1375 error = xfs_btree_increment(cnt_cur, 0, &i);
1376 if (error)
1377 goto error0;
1378 if (i == 0) {
1379 /*
1380 * Our only valid extents must have been busy.
1381 * Make it unbusy by forcing the log out and
1382 * retrying. If we've been here before, forcing
1383 * the log isn't making the extents available,
1384 * which means they have probably been freed in
1385 * this transaction. In that case, we have to
1386 * give up on them and we'll attempt a minlen
1387 * allocation the next time around.
1388 */
1389 xfs_btree_del_cursor(cnt_cur,
1390 XFS_BTREE_NOERROR);
1391 trace_xfs_alloc_size_busy(args);
1392 if (!forced++)
1393 xfs_log_force(args->mp, XFS_LOG_SYNC);
1394 goto restart;
1395 }
1396 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397 }
Christoph Hellwige26f0502011-04-24 19:06:15 +00001398
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399 /*
1400 * In the first case above, we got the last entry in the
1401 * by-size btree. Now we check to see if the space hits maxlen
1402 * once aligned; if not, we search left for something better.
1403 * This can't happen in the second case above.
1404 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405 rlen = XFS_EXTLEN_MIN(args->maxlen, rlen);
Eric Sandeenc29aad42015-02-23 22:39:08 +11001406 XFS_WANT_CORRUPTED_GOTO(args->mp, rlen == 0 ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407 (rlen <= flen && rbno + rlen <= fbno + flen), error0);
1408 if (rlen < args->maxlen) {
1409 xfs_agblock_t bestfbno;
1410 xfs_extlen_t bestflen;
1411 xfs_agblock_t bestrbno;
1412 xfs_extlen_t bestrlen;
1413
1414 bestrlen = rlen;
1415 bestrbno = rbno;
1416 bestflen = flen;
1417 bestfbno = fbno;
1418 for (;;) {
Christoph Hellwig8df4da42008-10-30 16:55:58 +11001419 if ((error = xfs_btree_decrement(cnt_cur, 0, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420 goto error0;
1421 if (i == 0)
1422 break;
1423 if ((error = xfs_alloc_get_rec(cnt_cur, &fbno, &flen,
1424 &i)))
1425 goto error0;
Eric Sandeenc29aad42015-02-23 22:39:08 +11001426 XFS_WANT_CORRUPTED_GOTO(args->mp, i == 1, error0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427 if (flen < bestrlen)
1428 break;
Christoph Hellwig86fa8af2011-03-04 12:59:54 +00001429 xfs_alloc_compute_aligned(args, fbno, flen,
1430 &rbno, &rlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431 rlen = XFS_EXTLEN_MIN(args->maxlen, rlen);
Eric Sandeenc29aad42015-02-23 22:39:08 +11001432 XFS_WANT_CORRUPTED_GOTO(args->mp, rlen == 0 ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433 (rlen <= flen && rbno + rlen <= fbno + flen),
1434 error0);
1435 if (rlen > bestrlen) {
1436 bestrlen = rlen;
1437 bestrbno = rbno;
1438 bestflen = flen;
1439 bestfbno = fbno;
1440 if (rlen == args->maxlen)
1441 break;
1442 }
1443 }
1444 if ((error = xfs_alloc_lookup_eq(cnt_cur, bestfbno, bestflen,
1445 &i)))
1446 goto error0;
Eric Sandeenc29aad42015-02-23 22:39:08 +11001447 XFS_WANT_CORRUPTED_GOTO(args->mp, i == 1, error0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448 rlen = bestrlen;
1449 rbno = bestrbno;
1450 flen = bestflen;
1451 fbno = bestfbno;
1452 }
1453 args->wasfromfl = 0;
1454 /*
1455 * Fix up the length.
1456 */
1457 args->len = rlen;
Christoph Hellwige26f0502011-04-24 19:06:15 +00001458 if (rlen < args->minlen) {
1459 if (!forced++) {
1460 xfs_btree_del_cursor(cnt_cur, XFS_BTREE_NOERROR);
1461 trace_xfs_alloc_size_busy(args);
1462 xfs_log_force(args->mp, XFS_LOG_SYNC);
1463 goto restart;
1464 }
1465 goto out_nominleft;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466 }
Christoph Hellwige26f0502011-04-24 19:06:15 +00001467 xfs_alloc_fix_len(args);
1468
1469 if (!xfs_alloc_fix_minleft(args))
1470 goto out_nominleft;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471 rlen = args->len;
Eric Sandeenc29aad42015-02-23 22:39:08 +11001472 XFS_WANT_CORRUPTED_GOTO(args->mp, rlen <= flen, error0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473 /*
1474 * Allocate and initialize a cursor for the by-block tree.
1475 */
Christoph Hellwig561f7d12008-10-30 16:53:59 +11001476 bno_cur = xfs_allocbt_init_cursor(args->mp, args->tp, args->agbp,
1477 args->agno, XFS_BTNUM_BNO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478 if ((error = xfs_alloc_fixup_trees(cnt_cur, bno_cur, fbno, flen,
1479 rbno, rlen, XFSA_FIXUP_CNT_OK)))
1480 goto error0;
1481 xfs_btree_del_cursor(cnt_cur, XFS_BTREE_NOERROR);
1482 xfs_btree_del_cursor(bno_cur, XFS_BTREE_NOERROR);
1483 cnt_cur = bno_cur = NULL;
1484 args->len = rlen;
1485 args->agbno = rbno;
Eric Sandeenc29aad42015-02-23 22:39:08 +11001486 XFS_WANT_CORRUPTED_GOTO(args->mp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487 args->agbno + args->len <=
Christoph Hellwig16259e72005-11-02 15:11:25 +11001488 be32_to_cpu(XFS_BUF_TO_AGF(args->agbp)->agf_length),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489 error0);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001490 trace_xfs_alloc_size_done(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491 return 0;
1492
1493error0:
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001494 trace_xfs_alloc_size_error(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495 if (cnt_cur)
1496 xfs_btree_del_cursor(cnt_cur, XFS_BTREE_ERROR);
1497 if (bno_cur)
1498 xfs_btree_del_cursor(bno_cur, XFS_BTREE_ERROR);
1499 return error;
Christoph Hellwige26f0502011-04-24 19:06:15 +00001500
1501out_nominleft:
1502 xfs_btree_del_cursor(cnt_cur, XFS_BTREE_NOERROR);
1503 trace_xfs_alloc_size_nominleft(args);
1504 args->agbno = NULLAGBLOCK;
1505 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506}
1507
1508/*
1509 * Deal with the case where only small freespaces remain.
1510 * Either return the contents of the last freespace record,
1511 * or allocate space from the freelist if there is nothing in the tree.
1512 */
1513STATIC int /* error */
1514xfs_alloc_ag_vextent_small(
1515 xfs_alloc_arg_t *args, /* allocation argument structure */
1516 xfs_btree_cur_t *ccur, /* by-size cursor */
1517 xfs_agblock_t *fbnop, /* result block number */
1518 xfs_extlen_t *flenp, /* result length */
1519 int *stat) /* status: 0-freelist, 1-normal/none */
1520{
1521 int error;
1522 xfs_agblock_t fbno;
1523 xfs_extlen_t flen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524 int i;
1525
Christoph Hellwig8df4da42008-10-30 16:55:58 +11001526 if ((error = xfs_btree_decrement(ccur, 0, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527 goto error0;
1528 if (i) {
1529 if ((error = xfs_alloc_get_rec(ccur, &fbno, &flen, &i)))
1530 goto error0;
Eric Sandeenc29aad42015-02-23 22:39:08 +11001531 XFS_WANT_CORRUPTED_GOTO(args->mp, i == 1, error0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532 }
1533 /*
1534 * Nothing in the btree, try the freelist. Make sure
1535 * to respect minleft even when pulling from the
1536 * freelist.
1537 */
1538 else if (args->minlen == 1 && args->alignment == 1 && !args->isfl &&
Christoph Hellwig16259e72005-11-02 15:11:25 +11001539 (be32_to_cpu(XFS_BUF_TO_AGF(args->agbp)->agf_flcount)
1540 > args->minleft)) {
David Chinner92821e22007-05-24 15:26:31 +10001541 error = xfs_alloc_get_freelist(args->tp, args->agbp, &fbno, 0);
1542 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543 goto error0;
1544 if (fbno != NULLAGBLOCK) {
Dave Chinner4ecbfe62012-04-29 10:41:10 +00001545 xfs_extent_busy_reuse(args->mp, args->agno, fbno, 1,
Christoph Hellwig97d3ac72011-04-24 19:06:16 +00001546 args->userdata);
1547
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548 if (args->userdata) {
1549 xfs_buf_t *bp;
1550
1551 bp = xfs_btree_get_bufs(args->mp, args->tp,
1552 args->agno, fbno, 0);
1553 xfs_trans_binval(args->tp, bp);
1554 }
1555 args->len = 1;
1556 args->agbno = fbno;
Eric Sandeenc29aad42015-02-23 22:39:08 +11001557 XFS_WANT_CORRUPTED_GOTO(args->mp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558 args->agbno + args->len <=
Christoph Hellwig16259e72005-11-02 15:11:25 +11001559 be32_to_cpu(XFS_BUF_TO_AGF(args->agbp)->agf_length),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560 error0);
1561 args->wasfromfl = 1;
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001562 trace_xfs_alloc_small_freelist(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563 *stat = 0;
1564 return 0;
1565 }
1566 /*
1567 * Nothing in the freelist.
1568 */
1569 else
1570 flen = 0;
1571 }
1572 /*
1573 * Can't allocate from the freelist for some reason.
1574 */
Nathan Scottd432c802006-09-28 11:03:44 +10001575 else {
1576 fbno = NULLAGBLOCK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577 flen = 0;
Nathan Scottd432c802006-09-28 11:03:44 +10001578 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579 /*
1580 * Can't do the allocation, give up.
1581 */
1582 if (flen < args->minlen) {
1583 args->agbno = NULLAGBLOCK;
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001584 trace_xfs_alloc_small_notenough(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585 flen = 0;
1586 }
1587 *fbnop = fbno;
1588 *flenp = flen;
1589 *stat = 1;
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001590 trace_xfs_alloc_small_done(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591 return 0;
1592
1593error0:
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001594 trace_xfs_alloc_small_error(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595 return error;
1596}
1597
1598/*
1599 * Free the extent starting at agno/bno for length.
1600 */
Darrick J. Wong340785c2016-08-03 11:33:42 +10001601STATIC int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602xfs_free_ag_extent(
Darrick J. Wong340785c2016-08-03 11:33:42 +10001603 xfs_trans_t *tp,
1604 xfs_buf_t *agbp,
1605 xfs_agnumber_t agno,
1606 xfs_agblock_t bno,
1607 xfs_extlen_t len,
1608 struct xfs_owner_info *oinfo,
1609 int isfl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610{
1611 xfs_btree_cur_t *bno_cur; /* cursor for by-block btree */
1612 xfs_btree_cur_t *cnt_cur; /* cursor for by-size btree */
1613 int error; /* error return value */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614 xfs_agblock_t gtbno; /* start of right neighbor block */
1615 xfs_extlen_t gtlen; /* length of right neighbor block */
1616 int haveleft; /* have a left neighbor block */
1617 int haveright; /* have a right neighbor block */
1618 int i; /* temp, result code */
1619 xfs_agblock_t ltbno; /* start of left neighbor block */
1620 xfs_extlen_t ltlen; /* length of left neighbor block */
1621 xfs_mount_t *mp; /* mount point struct for filesystem */
1622 xfs_agblock_t nbno; /* new starting block of freespace */
1623 xfs_extlen_t nlen; /* new length of freespace */
Christoph Hellwigecb69282011-03-04 12:59:55 +00001624 xfs_perag_t *pag; /* per allocation group data */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625
Darrick J. Wong673930c2016-08-03 11:33:43 +10001626 bno_cur = cnt_cur = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627 mp = tp->t_mountp;
Darrick J. Wong673930c2016-08-03 11:33:43 +10001628
1629 if (oinfo->oi_owner != XFS_RMAP_OWN_UNKNOWN) {
1630 error = xfs_rmap_free(tp, agbp, agno, bno, len, oinfo);
1631 if (error)
1632 goto error0;
1633 }
1634
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635 /*
1636 * Allocate and initialize a cursor for the by-block btree.
1637 */
Christoph Hellwig561f7d12008-10-30 16:53:59 +11001638 bno_cur = xfs_allocbt_init_cursor(mp, tp, agbp, agno, XFS_BTNUM_BNO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639 /*
1640 * Look for a neighboring block on the left (lower block numbers)
1641 * that is contiguous with this space.
1642 */
1643 if ((error = xfs_alloc_lookup_le(bno_cur, bno, len, &haveleft)))
1644 goto error0;
1645 if (haveleft) {
1646 /*
1647 * There is a block to our left.
1648 */
1649 if ((error = xfs_alloc_get_rec(bno_cur, &ltbno, &ltlen, &i)))
1650 goto error0;
Eric Sandeenc29aad42015-02-23 22:39:08 +11001651 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, error0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652 /*
1653 * It's not contiguous, though.
1654 */
1655 if (ltbno + ltlen < bno)
1656 haveleft = 0;
1657 else {
1658 /*
1659 * If this failure happens the request to free this
1660 * space was invalid, it's (partly) already free.
1661 * Very bad.
1662 */
Eric Sandeenc29aad42015-02-23 22:39:08 +11001663 XFS_WANT_CORRUPTED_GOTO(mp,
1664 ltbno + ltlen <= bno, error0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665 }
1666 }
1667 /*
1668 * Look for a neighboring block on the right (higher block numbers)
1669 * that is contiguous with this space.
1670 */
Christoph Hellwig637aa502008-10-30 16:55:45 +11001671 if ((error = xfs_btree_increment(bno_cur, 0, &haveright)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672 goto error0;
1673 if (haveright) {
1674 /*
1675 * There is a block to our right.
1676 */
1677 if ((error = xfs_alloc_get_rec(bno_cur, &gtbno, &gtlen, &i)))
1678 goto error0;
Eric Sandeenc29aad42015-02-23 22:39:08 +11001679 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, error0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680 /*
1681 * It's not contiguous, though.
1682 */
1683 if (bno + len < gtbno)
1684 haveright = 0;
1685 else {
1686 /*
1687 * If this failure happens the request to free this
1688 * space was invalid, it's (partly) already free.
1689 * Very bad.
1690 */
Eric Sandeenc29aad42015-02-23 22:39:08 +11001691 XFS_WANT_CORRUPTED_GOTO(mp, gtbno >= bno + len, error0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692 }
1693 }
1694 /*
1695 * Now allocate and initialize a cursor for the by-size tree.
1696 */
Christoph Hellwig561f7d12008-10-30 16:53:59 +11001697 cnt_cur = xfs_allocbt_init_cursor(mp, tp, agbp, agno, XFS_BTNUM_CNT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698 /*
1699 * Have both left and right contiguous neighbors.
1700 * Merge all three into a single free block.
1701 */
1702 if (haveleft && haveright) {
1703 /*
1704 * Delete the old by-size entry on the left.
1705 */
1706 if ((error = xfs_alloc_lookup_eq(cnt_cur, ltbno, ltlen, &i)))
1707 goto error0;
Eric Sandeenc29aad42015-02-23 22:39:08 +11001708 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, error0);
Christoph Hellwig91cca5df2008-10-30 16:58:01 +11001709 if ((error = xfs_btree_delete(cnt_cur, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710 goto error0;
Eric Sandeenc29aad42015-02-23 22:39:08 +11001711 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, error0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712 /*
1713 * Delete the old by-size entry on the right.
1714 */
1715 if ((error = xfs_alloc_lookup_eq(cnt_cur, gtbno, gtlen, &i)))
1716 goto error0;
Eric Sandeenc29aad42015-02-23 22:39:08 +11001717 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, error0);
Christoph Hellwig91cca5df2008-10-30 16:58:01 +11001718 if ((error = xfs_btree_delete(cnt_cur, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719 goto error0;
Eric Sandeenc29aad42015-02-23 22:39:08 +11001720 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, error0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721 /*
1722 * Delete the old by-block entry for the right block.
1723 */
Christoph Hellwig91cca5df2008-10-30 16:58:01 +11001724 if ((error = xfs_btree_delete(bno_cur, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725 goto error0;
Eric Sandeenc29aad42015-02-23 22:39:08 +11001726 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, error0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727 /*
1728 * Move the by-block cursor back to the left neighbor.
1729 */
Christoph Hellwig8df4da42008-10-30 16:55:58 +11001730 if ((error = xfs_btree_decrement(bno_cur, 0, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731 goto error0;
Eric Sandeenc29aad42015-02-23 22:39:08 +11001732 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, error0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733#ifdef DEBUG
1734 /*
1735 * Check that this is the right record: delete didn't
1736 * mangle the cursor.
1737 */
1738 {
1739 xfs_agblock_t xxbno;
1740 xfs_extlen_t xxlen;
1741
1742 if ((error = xfs_alloc_get_rec(bno_cur, &xxbno, &xxlen,
1743 &i)))
1744 goto error0;
Eric Sandeenc29aad42015-02-23 22:39:08 +11001745 XFS_WANT_CORRUPTED_GOTO(mp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746 i == 1 && xxbno == ltbno && xxlen == ltlen,
1747 error0);
1748 }
1749#endif
1750 /*
1751 * Update remaining by-block entry to the new, joined block.
1752 */
1753 nbno = ltbno;
1754 nlen = len + ltlen + gtlen;
1755 if ((error = xfs_alloc_update(bno_cur, nbno, nlen)))
1756 goto error0;
1757 }
1758 /*
1759 * Have only a left contiguous neighbor.
1760 * Merge it together with the new freespace.
1761 */
1762 else if (haveleft) {
1763 /*
1764 * Delete the old by-size entry on the left.
1765 */
1766 if ((error = xfs_alloc_lookup_eq(cnt_cur, ltbno, ltlen, &i)))
1767 goto error0;
Eric Sandeenc29aad42015-02-23 22:39:08 +11001768 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, error0);
Christoph Hellwig91cca5df2008-10-30 16:58:01 +11001769 if ((error = xfs_btree_delete(cnt_cur, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770 goto error0;
Eric Sandeenc29aad42015-02-23 22:39:08 +11001771 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, error0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772 /*
1773 * Back up the by-block cursor to the left neighbor, and
1774 * update its length.
1775 */
Christoph Hellwig8df4da42008-10-30 16:55:58 +11001776 if ((error = xfs_btree_decrement(bno_cur, 0, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777 goto error0;
Eric Sandeenc29aad42015-02-23 22:39:08 +11001778 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, error0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779 nbno = ltbno;
1780 nlen = len + ltlen;
1781 if ((error = xfs_alloc_update(bno_cur, nbno, nlen)))
1782 goto error0;
1783 }
1784 /*
1785 * Have only a right contiguous neighbor.
1786 * Merge it together with the new freespace.
1787 */
1788 else if (haveright) {
1789 /*
1790 * Delete the old by-size entry on the right.
1791 */
1792 if ((error = xfs_alloc_lookup_eq(cnt_cur, gtbno, gtlen, &i)))
1793 goto error0;
Eric Sandeenc29aad42015-02-23 22:39:08 +11001794 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, error0);
Christoph Hellwig91cca5df2008-10-30 16:58:01 +11001795 if ((error = xfs_btree_delete(cnt_cur, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796 goto error0;
Eric Sandeenc29aad42015-02-23 22:39:08 +11001797 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, error0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798 /*
1799 * Update the starting block and length of the right
1800 * neighbor in the by-block tree.
1801 */
1802 nbno = bno;
1803 nlen = len + gtlen;
1804 if ((error = xfs_alloc_update(bno_cur, nbno, nlen)))
1805 goto error0;
1806 }
1807 /*
1808 * No contiguous neighbors.
1809 * Insert the new freespace into the by-block tree.
1810 */
1811 else {
1812 nbno = bno;
1813 nlen = len;
Christoph Hellwig4b22a572008-10-30 16:57:40 +11001814 if ((error = xfs_btree_insert(bno_cur, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815 goto error0;
Eric Sandeenc29aad42015-02-23 22:39:08 +11001816 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, error0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817 }
1818 xfs_btree_del_cursor(bno_cur, XFS_BTREE_NOERROR);
1819 bno_cur = NULL;
1820 /*
1821 * In all cases we need to insert the new freespace in the by-size tree.
1822 */
1823 if ((error = xfs_alloc_lookup_eq(cnt_cur, nbno, nlen, &i)))
1824 goto error0;
Eric Sandeenc29aad42015-02-23 22:39:08 +11001825 XFS_WANT_CORRUPTED_GOTO(mp, i == 0, error0);
Christoph Hellwig4b22a572008-10-30 16:57:40 +11001826 if ((error = xfs_btree_insert(cnt_cur, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827 goto error0;
Eric Sandeenc29aad42015-02-23 22:39:08 +11001828 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, error0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829 xfs_btree_del_cursor(cnt_cur, XFS_BTREE_NOERROR);
1830 cnt_cur = NULL;
Christoph Hellwigecb69282011-03-04 12:59:55 +00001831
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832 /*
1833 * Update the freespace totals in the ag and superblock.
1834 */
Christoph Hellwigecb69282011-03-04 12:59:55 +00001835 pag = xfs_perag_get(mp, agno);
1836 error = xfs_alloc_update_counters(tp, pag, agbp, len);
1837 xfs_perag_put(pag);
1838 if (error)
1839 goto error0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001840
Christoph Hellwigecb69282011-03-04 12:59:55 +00001841 if (!isfl)
1842 xfs_trans_mod_sb(tp, XFS_TRANS_SB_FDBLOCKS, (long)len);
Bill O'Donnellff6d6af2015-10-12 18:21:22 +11001843 XFS_STATS_INC(mp, xs_freex);
1844 XFS_STATS_ADD(mp, xs_freeb, len);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001845
1846 trace_xfs_free_extent(mp, agno, bno, len, isfl, haveleft, haveright);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848 return 0;
1849
1850 error0:
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001851 trace_xfs_free_extent(mp, agno, bno, len, isfl, -1, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852 if (bno_cur)
1853 xfs_btree_del_cursor(bno_cur, XFS_BTREE_ERROR);
1854 if (cnt_cur)
1855 xfs_btree_del_cursor(cnt_cur, XFS_BTREE_ERROR);
1856 return error;
1857}
1858
1859/*
1860 * Visible (exported) allocation/free functions.
1861 * Some of these are used just by xfs_alloc_btree.c and this file.
1862 */
1863
1864/*
1865 * Compute and fill in value of m_ag_maxlevels.
1866 */
1867void
1868xfs_alloc_compute_maxlevels(
1869 xfs_mount_t *mp) /* file system mount structure */
1870{
Darrick J. Wong19b54ee2016-06-21 11:53:28 +10001871 mp->m_ag_maxlevels = xfs_btree_compute_maxlevels(mp, mp->m_alloc_mnr,
1872 (mp->m_sb.sb_agblocks + 1) / 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873}
1874
1875/*
Dave Chinner6cc87642009-03-16 08:29:46 +01001876 * Find the length of the longest extent in an AG.
1877 */
1878xfs_extlen_t
1879xfs_alloc_longest_free_extent(
1880 struct xfs_mount *mp,
Dave Chinner50adbcb2015-06-22 10:04:31 +10001881 struct xfs_perag *pag,
1882 xfs_extlen_t need)
Dave Chinner6cc87642009-03-16 08:29:46 +01001883{
Dave Chinner50adbcb2015-06-22 10:04:31 +10001884 xfs_extlen_t delta = 0;
Dave Chinner6cc87642009-03-16 08:29:46 +01001885
Dave Chinner6cc87642009-03-16 08:29:46 +01001886 if (need > pag->pagf_flcount)
1887 delta = need - pag->pagf_flcount;
1888
1889 if (pag->pagf_longest > delta)
1890 return pag->pagf_longest - delta;
1891 return pag->pagf_flcount > 0 || pag->pagf_longest > 0;
1892}
1893
Dave Chinner496817b2015-06-22 10:13:30 +10001894unsigned int
1895xfs_alloc_min_freelist(
1896 struct xfs_mount *mp,
1897 struct xfs_perag *pag)
1898{
1899 unsigned int min_free;
1900
1901 /* space needed by-bno freespace btree */
1902 min_free = min_t(unsigned int, pag->pagf_levels[XFS_BTNUM_BNOi] + 1,
1903 mp->m_ag_maxlevels);
1904 /* space needed by-size freespace btree */
1905 min_free += min_t(unsigned int, pag->pagf_levels[XFS_BTNUM_CNTi] + 1,
1906 mp->m_ag_maxlevels);
1907
1908 return min_free;
1909}
1910
Dave Chinner6cc87642009-03-16 08:29:46 +01001911/*
Dave Chinner72d55282015-06-22 10:04:42 +10001912 * Check if the operation we are fixing up the freelist for should go ahead or
1913 * not. If we are freeing blocks, we always allow it, otherwise the allocation
1914 * is dependent on whether the size and shape of free space available will
1915 * permit the requested allocation to take place.
1916 */
1917static bool
1918xfs_alloc_space_available(
1919 struct xfs_alloc_arg *args,
1920 xfs_extlen_t min_free,
1921 int flags)
1922{
1923 struct xfs_perag *pag = args->pag;
1924 xfs_extlen_t longest;
1925 int available;
1926
1927 if (flags & XFS_ALLOC_FLAG_FREEING)
1928 return true;
1929
1930 /* do we have enough contiguous free space for the allocation? */
1931 longest = xfs_alloc_longest_free_extent(args->mp, pag, min_free);
1932 if ((args->minlen + args->alignment + args->minalignslop - 1) > longest)
1933 return false;
1934
1935 /* do have enough free space remaining for the allocation? */
1936 available = (int)(pag->pagf_freeblks + pag->pagf_flcount -
1937 min_free - args->total);
1938 if (available < (int)args->minleft)
1939 return false;
1940
1941 return true;
1942}
1943
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944/*
1945 * Decide whether to use this allocation group for this allocation.
1946 * If so, fix up the btree freelist's size.
1947 */
Darrick J. Wong2e9101d2016-01-04 16:10:42 +11001948int /* error */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949xfs_alloc_fix_freelist(
Dave Chinner396503f2015-06-22 10:13:19 +10001950 struct xfs_alloc_arg *args, /* allocation argument structure */
1951 int flags) /* XFS_ALLOC_FLAG_... */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952{
Dave Chinner396503f2015-06-22 10:13:19 +10001953 struct xfs_mount *mp = args->mp;
1954 struct xfs_perag *pag = args->pag;
1955 struct xfs_trans *tp = args->tp;
1956 struct xfs_buf *agbp = NULL;
1957 struct xfs_buf *agflbp = NULL;
1958 struct xfs_alloc_arg targs; /* local allocation arguments */
1959 xfs_agblock_t bno; /* freelist block */
1960 xfs_extlen_t need; /* total blocks needed in freelist */
Jan Karac184f852015-08-25 10:05:13 +10001961 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963 if (!pag->pagf_init) {
Dave Chinner396503f2015-06-22 10:13:19 +10001964 error = xfs_alloc_read_agf(mp, tp, args->agno, flags, &agbp);
1965 if (error)
1966 goto out_no_agbp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967 if (!pag->pagf_init) {
Nathan Scott0e1edbd2006-08-10 14:40:41 +10001968 ASSERT(flags & XFS_ALLOC_FLAG_TRYLOCK);
1969 ASSERT(!(flags & XFS_ALLOC_FLAG_FREEING));
Dave Chinner396503f2015-06-22 10:13:19 +10001970 goto out_agbp_relse;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001971 }
Dave Chinner396503f2015-06-22 10:13:19 +10001972 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973
Nathan Scott0e1edbd2006-08-10 14:40:41 +10001974 /*
Dave Chinner396503f2015-06-22 10:13:19 +10001975 * If this is a metadata preferred pag and we are user data then try
1976 * somewhere else if we are not being asked to try harder at this
1977 * point
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978 */
Nathan Scott0e1edbd2006-08-10 14:40:41 +10001979 if (pag->pagf_metadata && args->userdata &&
1980 (flags & XFS_ALLOC_FLAG_TRYLOCK)) {
1981 ASSERT(!(flags & XFS_ALLOC_FLAG_FREEING));
Dave Chinner396503f2015-06-22 10:13:19 +10001982 goto out_agbp_relse;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983 }
1984
Dave Chinner496817b2015-06-22 10:13:30 +10001985 need = xfs_alloc_min_freelist(mp, pag);
Dave Chinner396503f2015-06-22 10:13:19 +10001986 if (!xfs_alloc_space_available(args, need, flags))
1987 goto out_agbp_relse;
Nathan Scott0e1edbd2006-08-10 14:40:41 +10001988
Linus Torvalds1da177e2005-04-16 15:20:36 -07001989 /*
1990 * Get the a.g. freespace buffer.
1991 * Can fail if we're not blocking on locks, and it's held.
1992 */
Dave Chinner396503f2015-06-22 10:13:19 +10001993 if (!agbp) {
1994 error = xfs_alloc_read_agf(mp, tp, args->agno, flags, &agbp);
1995 if (error)
1996 goto out_no_agbp;
1997 if (!agbp) {
Nathan Scott0e1edbd2006-08-10 14:40:41 +10001998 ASSERT(flags & XFS_ALLOC_FLAG_TRYLOCK);
1999 ASSERT(!(flags & XFS_ALLOC_FLAG_FREEING));
Dave Chinner396503f2015-06-22 10:13:19 +10002000 goto out_no_agbp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001 }
2002 }
Dave Chinner50adbcb2015-06-22 10:04:31 +10002003
Dave Chinner50adbcb2015-06-22 10:04:31 +10002004 /* If there isn't enough total space or single-extent, reject it. */
Dave Chinner496817b2015-06-22 10:13:30 +10002005 need = xfs_alloc_min_freelist(mp, pag);
Dave Chinner396503f2015-06-22 10:13:19 +10002006 if (!xfs_alloc_space_available(args, need, flags))
2007 goto out_agbp_relse;
Dave Chinner72d55282015-06-22 10:04:42 +10002008
Linus Torvalds1da177e2005-04-16 15:20:36 -07002009 /*
2010 * Make the freelist shorter if it's too long.
Dave Chinner50adbcb2015-06-22 10:04:31 +10002011 *
Dave Chinner396503f2015-06-22 10:13:19 +10002012 * Note that from this point onwards, we will always release the agf and
2013 * agfl buffers on error. This handles the case where we error out and
2014 * the buffers are clean or may not have been joined to the transaction
2015 * and hence need to be released manually. If they have been joined to
2016 * the transaction, then xfs_trans_brelse() will handle them
2017 * appropriately based on the recursion count and dirty state of the
2018 * buffer.
2019 *
Dave Chinner50adbcb2015-06-22 10:04:31 +10002020 * XXX (dgc): When we have lots of free space, does this buy us
2021 * anything other than extra overhead when we need to put more blocks
2022 * back on the free list? Maybe we should only do this when space is
2023 * getting low or the AGFL is more than half full?
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024 */
Darrick J. Wong340785c2016-08-03 11:33:42 +10002025 xfs_rmap_ag_owner(&targs.oinfo, XFS_RMAP_OWN_AG);
Dave Chinner50adbcb2015-06-22 10:04:31 +10002026 while (pag->pagf_flcount > need) {
2027 struct xfs_buf *bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028
David Chinner92821e22007-05-24 15:26:31 +10002029 error = xfs_alloc_get_freelist(tp, agbp, &bno, 0);
2030 if (error)
Dave Chinner396503f2015-06-22 10:13:19 +10002031 goto out_agbp_relse;
Darrick J. Wong340785c2016-08-03 11:33:42 +10002032 error = xfs_free_ag_extent(tp, agbp, args->agno, bno, 1,
2033 &targs.oinfo, 1);
Dave Chinner50adbcb2015-06-22 10:04:31 +10002034 if (error)
Dave Chinner396503f2015-06-22 10:13:19 +10002035 goto out_agbp_relse;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002036 bp = xfs_btree_get_bufs(mp, tp, args->agno, bno, 0);
2037 xfs_trans_binval(tp, bp);
2038 }
Dave Chinner50adbcb2015-06-22 10:04:31 +10002039
Mark Tinguelya0041682012-09-20 13:16:45 -05002040 memset(&targs, 0, sizeof(targs));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002041 targs.tp = tp;
2042 targs.mp = mp;
Darrick J. Wong340785c2016-08-03 11:33:42 +10002043 xfs_rmap_ag_owner(&targs.oinfo, XFS_RMAP_OWN_AG);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044 targs.agbp = agbp;
2045 targs.agno = args->agno;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002046 targs.alignment = targs.minlen = targs.prod = targs.isfl = 1;
2047 targs.type = XFS_ALLOCTYPE_THIS_AG;
2048 targs.pag = pag;
Dave Chinner50adbcb2015-06-22 10:04:31 +10002049 error = xfs_alloc_read_agfl(mp, tp, targs.agno, &agflbp);
2050 if (error)
Dave Chinner396503f2015-06-22 10:13:19 +10002051 goto out_agbp_relse;
Dave Chinner50adbcb2015-06-22 10:04:31 +10002052
2053 /* Make the freelist longer if it's too short. */
2054 while (pag->pagf_flcount < need) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002055 targs.agbno = 0;
Dave Chinner50adbcb2015-06-22 10:04:31 +10002056 targs.maxlen = need - pag->pagf_flcount;
2057
2058 /* Allocate as many blocks as possible at once. */
2059 error = xfs_alloc_ag_vextent(&targs);
Dave Chinner396503f2015-06-22 10:13:19 +10002060 if (error)
2061 goto out_agflbp_relse;
2062
Linus Torvalds1da177e2005-04-16 15:20:36 -07002063 /*
2064 * Stop if we run out. Won't happen if callers are obeying
2065 * the restrictions correctly. Can happen for free calls
2066 * on a completely full ag.
2067 */
Yingping Lud210a282006-06-09 14:55:18 +10002068 if (targs.agbno == NULLAGBLOCK) {
Nathan Scott0e1edbd2006-08-10 14:40:41 +10002069 if (flags & XFS_ALLOC_FLAG_FREEING)
2070 break;
Dave Chinner396503f2015-06-22 10:13:19 +10002071 goto out_agflbp_relse;
Yingping Lud210a282006-06-09 14:55:18 +10002072 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073 /*
2074 * Put each allocated block on the list.
2075 */
2076 for (bno = targs.agbno; bno < targs.agbno + targs.len; bno++) {
David Chinner92821e22007-05-24 15:26:31 +10002077 error = xfs_alloc_put_freelist(tp, agbp,
2078 agflbp, bno, 0);
2079 if (error)
Dave Chinner396503f2015-06-22 10:13:19 +10002080 goto out_agflbp_relse;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081 }
2082 }
Nathan Scotte63a3692006-05-08 19:51:58 +10002083 xfs_trans_brelse(tp, agflbp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084 args->agbp = agbp;
2085 return 0;
Dave Chinner396503f2015-06-22 10:13:19 +10002086
2087out_agflbp_relse:
2088 xfs_trans_brelse(tp, agflbp);
2089out_agbp_relse:
2090 if (agbp)
2091 xfs_trans_brelse(tp, agbp);
2092out_no_agbp:
2093 args->agbp = NULL;
2094 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095}
2096
2097/*
2098 * Get a block from the freelist.
2099 * Returns with the buffer for the block gotten.
2100 */
2101int /* error */
2102xfs_alloc_get_freelist(
2103 xfs_trans_t *tp, /* transaction pointer */
2104 xfs_buf_t *agbp, /* buffer containing the agf structure */
David Chinner92821e22007-05-24 15:26:31 +10002105 xfs_agblock_t *bnop, /* block address retrieved from freelist */
2106 int btreeblk) /* destination is a AGF btree */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002107{
2108 xfs_agf_t *agf; /* a.g. freespace structure */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109 xfs_buf_t *agflbp;/* buffer for a.g. freelist structure */
2110 xfs_agblock_t bno; /* block number returned */
Christoph Hellwig77c95bb2013-04-03 16:11:14 +11002111 __be32 *agfl_bno;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002112 int error;
David Chinner92821e22007-05-24 15:26:31 +10002113 int logflags;
Christoph Hellwig77c95bb2013-04-03 16:11:14 +11002114 xfs_mount_t *mp = tp->t_mountp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002115 xfs_perag_t *pag; /* per allocation group data */
2116
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117 /*
2118 * Freelist is empty, give up.
2119 */
Christoph Hellwig77c95bb2013-04-03 16:11:14 +11002120 agf = XFS_BUF_TO_AGF(agbp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121 if (!agf->agf_flcount) {
2122 *bnop = NULLAGBLOCK;
2123 return 0;
2124 }
2125 /*
2126 * Read the array of free blocks.
2127 */
Christoph Hellwig77c95bb2013-04-03 16:11:14 +11002128 error = xfs_alloc_read_agfl(mp, tp, be32_to_cpu(agf->agf_seqno),
2129 &agflbp);
2130 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131 return error;
Christoph Hellwig77c95bb2013-04-03 16:11:14 +11002132
2133
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134 /*
2135 * Get the block number and update the data structures.
2136 */
Christoph Hellwig77c95bb2013-04-03 16:11:14 +11002137 agfl_bno = XFS_BUF_TO_AGFL_BNO(mp, agflbp);
2138 bno = be32_to_cpu(agfl_bno[be32_to_cpu(agf->agf_flfirst)]);
Marcin Slusarz413d57c2008-02-13 15:03:29 -08002139 be32_add_cpu(&agf->agf_flfirst, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002140 xfs_trans_brelse(tp, agflbp);
Christoph Hellwig16259e72005-11-02 15:11:25 +11002141 if (be32_to_cpu(agf->agf_flfirst) == XFS_AGFL_SIZE(mp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142 agf->agf_flfirst = 0;
Dave Chinnera862e0f2010-01-11 11:47:41 +00002143
2144 pag = xfs_perag_get(mp, be32_to_cpu(agf->agf_seqno));
Marcin Slusarz413d57c2008-02-13 15:03:29 -08002145 be32_add_cpu(&agf->agf_flcount, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002146 xfs_trans_agflist_delta(tp, -1);
2147 pag->pagf_flcount--;
Dave Chinnera862e0f2010-01-11 11:47:41 +00002148 xfs_perag_put(pag);
David Chinner92821e22007-05-24 15:26:31 +10002149
2150 logflags = XFS_AGF_FLFIRST | XFS_AGF_FLCOUNT;
2151 if (btreeblk) {
Marcin Slusarz413d57c2008-02-13 15:03:29 -08002152 be32_add_cpu(&agf->agf_btreeblks, 1);
David Chinner92821e22007-05-24 15:26:31 +10002153 pag->pagf_btreeblks++;
2154 logflags |= XFS_AGF_BTREEBLKS;
2155 }
2156
David Chinner92821e22007-05-24 15:26:31 +10002157 xfs_alloc_log_agf(tp, agbp, logflags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002158 *bnop = bno;
2159
Linus Torvalds1da177e2005-04-16 15:20:36 -07002160 return 0;
2161}
2162
2163/*
2164 * Log the given fields from the agf structure.
2165 */
2166void
2167xfs_alloc_log_agf(
2168 xfs_trans_t *tp, /* transaction pointer */
2169 xfs_buf_t *bp, /* buffer for a.g. freelist header */
2170 int fields) /* mask of fields to be logged (XFS_AGF_...) */
2171{
2172 int first; /* first byte offset */
2173 int last; /* last byte offset */
2174 static const short offsets[] = {
2175 offsetof(xfs_agf_t, agf_magicnum),
2176 offsetof(xfs_agf_t, agf_versionnum),
2177 offsetof(xfs_agf_t, agf_seqno),
2178 offsetof(xfs_agf_t, agf_length),
2179 offsetof(xfs_agf_t, agf_roots[0]),
2180 offsetof(xfs_agf_t, agf_levels[0]),
2181 offsetof(xfs_agf_t, agf_flfirst),
2182 offsetof(xfs_agf_t, agf_fllast),
2183 offsetof(xfs_agf_t, agf_flcount),
2184 offsetof(xfs_agf_t, agf_freeblks),
2185 offsetof(xfs_agf_t, agf_longest),
David Chinner92821e22007-05-24 15:26:31 +10002186 offsetof(xfs_agf_t, agf_btreeblks),
Dave Chinner4e0e6042013-04-03 16:11:13 +11002187 offsetof(xfs_agf_t, agf_uuid),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002188 sizeof(xfs_agf_t)
2189 };
2190
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002191 trace_xfs_agf(tp->t_mountp, XFS_BUF_TO_AGF(bp), fields, _RET_IP_);
2192
Dave Chinner61fe1352013-04-03 16:11:30 +11002193 xfs_trans_buf_set_type(tp, bp, XFS_BLFT_AGF_BUF);
Dave Chinner4e0e6042013-04-03 16:11:13 +11002194
Linus Torvalds1da177e2005-04-16 15:20:36 -07002195 xfs_btree_offsets(fields, offsets, XFS_AGF_NUM_BITS, &first, &last);
2196 xfs_trans_log_buf(tp, bp, (uint)first, (uint)last);
2197}
2198
2199/*
2200 * Interface for inode allocation to force the pag data to be initialized.
2201 */
2202int /* error */
2203xfs_alloc_pagf_init(
2204 xfs_mount_t *mp, /* file system mount structure */
2205 xfs_trans_t *tp, /* transaction pointer */
2206 xfs_agnumber_t agno, /* allocation group number */
2207 int flags) /* XFS_ALLOC_FLAGS_... */
2208{
2209 xfs_buf_t *bp;
2210 int error;
2211
2212 if ((error = xfs_alloc_read_agf(mp, tp, agno, flags, &bp)))
2213 return error;
2214 if (bp)
2215 xfs_trans_brelse(tp, bp);
2216 return 0;
2217}
2218
2219/*
2220 * Put the block on the freelist for the allocation group.
2221 */
2222int /* error */
2223xfs_alloc_put_freelist(
2224 xfs_trans_t *tp, /* transaction pointer */
2225 xfs_buf_t *agbp, /* buffer for a.g. freelist header */
2226 xfs_buf_t *agflbp,/* buffer for a.g. free block array */
David Chinner92821e22007-05-24 15:26:31 +10002227 xfs_agblock_t bno, /* block being freed */
2228 int btreeblk) /* block came from a AGF btree */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002229{
2230 xfs_agf_t *agf; /* a.g. freespace structure */
Christoph Hellwige2101002006-09-28 10:56:51 +10002231 __be32 *blockp;/* pointer to array entry */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002232 int error;
David Chinner92821e22007-05-24 15:26:31 +10002233 int logflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002234 xfs_mount_t *mp; /* mount structure */
2235 xfs_perag_t *pag; /* per allocation group data */
Christoph Hellwig77c95bb2013-04-03 16:11:14 +11002236 __be32 *agfl_bno;
2237 int startoff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002238
2239 agf = XFS_BUF_TO_AGF(agbp);
2240 mp = tp->t_mountp;
2241
2242 if (!agflbp && (error = xfs_alloc_read_agfl(mp, tp,
Christoph Hellwig16259e72005-11-02 15:11:25 +11002243 be32_to_cpu(agf->agf_seqno), &agflbp)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002244 return error;
Marcin Slusarz413d57c2008-02-13 15:03:29 -08002245 be32_add_cpu(&agf->agf_fllast, 1);
Christoph Hellwig16259e72005-11-02 15:11:25 +11002246 if (be32_to_cpu(agf->agf_fllast) == XFS_AGFL_SIZE(mp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002247 agf->agf_fllast = 0;
Dave Chinnera862e0f2010-01-11 11:47:41 +00002248
2249 pag = xfs_perag_get(mp, be32_to_cpu(agf->agf_seqno));
Marcin Slusarz413d57c2008-02-13 15:03:29 -08002250 be32_add_cpu(&agf->agf_flcount, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002251 xfs_trans_agflist_delta(tp, 1);
2252 pag->pagf_flcount++;
David Chinner92821e22007-05-24 15:26:31 +10002253
2254 logflags = XFS_AGF_FLLAST | XFS_AGF_FLCOUNT;
2255 if (btreeblk) {
Marcin Slusarz413d57c2008-02-13 15:03:29 -08002256 be32_add_cpu(&agf->agf_btreeblks, -1);
David Chinner92821e22007-05-24 15:26:31 +10002257 pag->pagf_btreeblks--;
2258 logflags |= XFS_AGF_BTREEBLKS;
2259 }
Dave Chinnera862e0f2010-01-11 11:47:41 +00002260 xfs_perag_put(pag);
David Chinner92821e22007-05-24 15:26:31 +10002261
David Chinner92821e22007-05-24 15:26:31 +10002262 xfs_alloc_log_agf(tp, agbp, logflags);
2263
Christoph Hellwig16259e72005-11-02 15:11:25 +11002264 ASSERT(be32_to_cpu(agf->agf_flcount) <= XFS_AGFL_SIZE(mp));
Christoph Hellwig77c95bb2013-04-03 16:11:14 +11002265
2266 agfl_bno = XFS_BUF_TO_AGFL_BNO(mp, agflbp);
2267 blockp = &agfl_bno[be32_to_cpu(agf->agf_fllast)];
Christoph Hellwige2101002006-09-28 10:56:51 +10002268 *blockp = cpu_to_be32(bno);
Christoph Hellwig77c95bb2013-04-03 16:11:14 +11002269 startoff = (char *)blockp - (char *)agflbp->b_addr;
2270
David Chinner92821e22007-05-24 15:26:31 +10002271 xfs_alloc_log_agf(tp, agbp, logflags);
Christoph Hellwig77c95bb2013-04-03 16:11:14 +11002272
Dave Chinner61fe1352013-04-03 16:11:30 +11002273 xfs_trans_buf_set_type(tp, agflbp, XFS_BLFT_AGFL_BUF);
Christoph Hellwig77c95bb2013-04-03 16:11:14 +11002274 xfs_trans_log_buf(tp, agflbp, startoff,
2275 startoff + sizeof(xfs_agblock_t) - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002276 return 0;
2277}
2278
Dave Chinner4e0e6042013-04-03 16:11:13 +11002279static bool
Dave Chinner612cfbf2012-11-14 17:52:32 +11002280xfs_agf_verify(
Dave Chinner4e0e6042013-04-03 16:11:13 +11002281 struct xfs_mount *mp,
Dave Chinner5d5f5272012-11-14 17:44:56 +11002282 struct xfs_buf *bp)
2283 {
Dave Chinner4e0e6042013-04-03 16:11:13 +11002284 struct xfs_agf *agf = XFS_BUF_TO_AGF(bp);
Dave Chinner5d5f5272012-11-14 17:44:56 +11002285
Brian Fostera45086e2015-10-12 15:59:25 +11002286 if (xfs_sb_version_hascrc(&mp->m_sb)) {
2287 if (!uuid_equal(&agf->agf_uuid, &mp->m_sb.sb_meta_uuid))
Dave Chinner4e0e6042013-04-03 16:11:13 +11002288 return false;
Brian Fostera45086e2015-10-12 15:59:25 +11002289 if (!xfs_log_check_lsn(mp,
2290 be64_to_cpu(XFS_BUF_TO_AGF(bp)->agf_lsn)))
2291 return false;
2292 }
Dave Chinner5d5f5272012-11-14 17:44:56 +11002293
Dave Chinner4e0e6042013-04-03 16:11:13 +11002294 if (!(agf->agf_magicnum == cpu_to_be32(XFS_AGF_MAGIC) &&
2295 XFS_AGF_GOOD_VERSION(be32_to_cpu(agf->agf_versionnum)) &&
2296 be32_to_cpu(agf->agf_freeblks) <= be32_to_cpu(agf->agf_length) &&
2297 be32_to_cpu(agf->agf_flfirst) < XFS_AGFL_SIZE(mp) &&
2298 be32_to_cpu(agf->agf_fllast) < XFS_AGFL_SIZE(mp) &&
2299 be32_to_cpu(agf->agf_flcount) <= XFS_AGFL_SIZE(mp)))
2300 return false;
Dave Chinner5d5f5272012-11-14 17:44:56 +11002301
Eric Sandeene1b05722014-09-09 11:47:24 +10002302 if (be32_to_cpu(agf->agf_levels[XFS_BTNUM_BNO]) > XFS_BTREE_MAXLEVELS ||
2303 be32_to_cpu(agf->agf_levels[XFS_BTNUM_CNT]) > XFS_BTREE_MAXLEVELS)
2304 return false;
2305
Darrick J. Wongb8704942016-08-03 11:30:32 +10002306 if (xfs_sb_version_hasrmapbt(&mp->m_sb) &&
2307 be32_to_cpu(agf->agf_levels[XFS_BTNUM_RMAP]) > XFS_BTREE_MAXLEVELS)
2308 return false;
2309
Dave Chinner5d5f5272012-11-14 17:44:56 +11002310 /*
2311 * during growfs operations, the perag is not fully initialised,
2312 * so we can't use it for any useful checking. growfs ensures we can't
2313 * use it by using uncached buffers that don't have the perag attached
2314 * so we can detect and avoid this problem.
2315 */
Dave Chinner4e0e6042013-04-03 16:11:13 +11002316 if (bp->b_pag && be32_to_cpu(agf->agf_seqno) != bp->b_pag->pag_agno)
2317 return false;
Dave Chinner5d5f5272012-11-14 17:44:56 +11002318
Dave Chinner4e0e6042013-04-03 16:11:13 +11002319 if (xfs_sb_version_haslazysbcount(&mp->m_sb) &&
2320 be32_to_cpu(agf->agf_btreeblks) > be32_to_cpu(agf->agf_length))
2321 return false;
Dave Chinner5d5f5272012-11-14 17:44:56 +11002322
Dave Chinner4e0e6042013-04-03 16:11:13 +11002323 return true;;
2324
Dave Chinner612cfbf2012-11-14 17:52:32 +11002325}
Dave Chinner5d5f5272012-11-14 17:44:56 +11002326
Dave Chinner1813dd62012-11-14 17:54:40 +11002327static void
2328xfs_agf_read_verify(
Dave Chinner612cfbf2012-11-14 17:52:32 +11002329 struct xfs_buf *bp)
2330{
Dave Chinner4e0e6042013-04-03 16:11:13 +11002331 struct xfs_mount *mp = bp->b_target->bt_mount;
Dave Chinner4e0e6042013-04-03 16:11:13 +11002332
Eric Sandeence5028c2014-02-27 15:23:10 +11002333 if (xfs_sb_version_hascrc(&mp->m_sb) &&
2334 !xfs_buf_verify_cksum(bp, XFS_AGF_CRC_OFF))
Dave Chinner24513372014-06-25 14:58:08 +10002335 xfs_buf_ioerror(bp, -EFSBADCRC);
Eric Sandeence5028c2014-02-27 15:23:10 +11002336 else if (XFS_TEST_ERROR(!xfs_agf_verify(mp, bp), mp,
2337 XFS_ERRTAG_ALLOC_READ_AGF,
2338 XFS_RANDOM_ALLOC_READ_AGF))
Dave Chinner24513372014-06-25 14:58:08 +10002339 xfs_buf_ioerror(bp, -EFSCORRUPTED);
Eric Sandeence5028c2014-02-27 15:23:10 +11002340
2341 if (bp->b_error)
2342 xfs_verifier_error(bp);
Dave Chinner612cfbf2012-11-14 17:52:32 +11002343}
2344
Dave Chinnerb0f539d2012-11-14 17:53:49 +11002345static void
Dave Chinner1813dd62012-11-14 17:54:40 +11002346xfs_agf_write_verify(
Dave Chinner612cfbf2012-11-14 17:52:32 +11002347 struct xfs_buf *bp)
2348{
Dave Chinner4e0e6042013-04-03 16:11:13 +11002349 struct xfs_mount *mp = bp->b_target->bt_mount;
2350 struct xfs_buf_log_item *bip = bp->b_fspriv;
2351
2352 if (!xfs_agf_verify(mp, bp)) {
Dave Chinner24513372014-06-25 14:58:08 +10002353 xfs_buf_ioerror(bp, -EFSCORRUPTED);
Eric Sandeence5028c2014-02-27 15:23:10 +11002354 xfs_verifier_error(bp);
Dave Chinner4e0e6042013-04-03 16:11:13 +11002355 return;
2356 }
2357
2358 if (!xfs_sb_version_hascrc(&mp->m_sb))
2359 return;
2360
2361 if (bip)
2362 XFS_BUF_TO_AGF(bp)->agf_lsn = cpu_to_be64(bip->bli_item.li_lsn);
2363
Eric Sandeenf1dbcd72014-02-27 15:18:23 +11002364 xfs_buf_update_cksum(bp, XFS_AGF_CRC_OFF);
Dave Chinner5d5f5272012-11-14 17:44:56 +11002365}
2366
Dave Chinner1813dd62012-11-14 17:54:40 +11002367const struct xfs_buf_ops xfs_agf_buf_ops = {
Eric Sandeen233135b2016-01-04 16:10:19 +11002368 .name = "xfs_agf",
Dave Chinner1813dd62012-11-14 17:54:40 +11002369 .verify_read = xfs_agf_read_verify,
2370 .verify_write = xfs_agf_write_verify,
2371};
2372
Linus Torvalds1da177e2005-04-16 15:20:36 -07002373/*
2374 * Read in the allocation group header (free/alloc section).
2375 */
2376int /* error */
From: Christoph Hellwig48056212008-11-28 14:23:38 +11002377xfs_read_agf(
2378 struct xfs_mount *mp, /* mount point structure */
2379 struct xfs_trans *tp, /* transaction pointer */
2380 xfs_agnumber_t agno, /* allocation group number */
2381 int flags, /* XFS_BUF_ */
2382 struct xfs_buf **bpp) /* buffer for the ag freelist header */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002383{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002384 int error;
2385
Dave Chinnerd1230312013-11-01 15:27:19 +11002386 trace_xfs_read_agf(mp, agno);
2387
Linus Torvalds1da177e2005-04-16 15:20:36 -07002388 ASSERT(agno != NULLAGNUMBER);
2389 error = xfs_trans_read_buf(
2390 mp, tp, mp->m_ddev_targp,
2391 XFS_AG_DADDR(mp, agno, XFS_AGF_DADDR(mp)),
Dave Chinner1813dd62012-11-14 17:54:40 +11002392 XFS_FSS_TO_BB(mp, 1), flags, bpp, &xfs_agf_buf_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002393 if (error)
2394 return error;
From: Christoph Hellwig48056212008-11-28 14:23:38 +11002395 if (!*bpp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002396 return 0;
From: Christoph Hellwig48056212008-11-28 14:23:38 +11002397
Chandra Seetharaman5a52c2a582011-07-22 23:39:51 +00002398 ASSERT(!(*bpp)->b_error);
Christoph Hellwig38f23232011-10-10 16:52:45 +00002399 xfs_buf_set_ref(*bpp, XFS_AGF_REF);
From: Christoph Hellwig48056212008-11-28 14:23:38 +11002400 return 0;
2401}
2402
2403/*
2404 * Read in the allocation group header (free/alloc section).
2405 */
2406int /* error */
2407xfs_alloc_read_agf(
2408 struct xfs_mount *mp, /* mount point structure */
2409 struct xfs_trans *tp, /* transaction pointer */
2410 xfs_agnumber_t agno, /* allocation group number */
2411 int flags, /* XFS_ALLOC_FLAG_... */
2412 struct xfs_buf **bpp) /* buffer for the ag freelist header */
2413{
2414 struct xfs_agf *agf; /* ag freelist header */
2415 struct xfs_perag *pag; /* per allocation group data */
2416 int error;
2417
Dave Chinnerd1230312013-11-01 15:27:19 +11002418 trace_xfs_alloc_read_agf(mp, agno);
From: Christoph Hellwig48056212008-11-28 14:23:38 +11002419
Dave Chinnerd1230312013-11-01 15:27:19 +11002420 ASSERT(agno != NULLAGNUMBER);
From: Christoph Hellwig48056212008-11-28 14:23:38 +11002421 error = xfs_read_agf(mp, tp, agno,
Christoph Hellwig0cadda12010-01-19 09:56:44 +00002422 (flags & XFS_ALLOC_FLAG_TRYLOCK) ? XBF_TRYLOCK : 0,
From: Christoph Hellwig48056212008-11-28 14:23:38 +11002423 bpp);
2424 if (error)
2425 return error;
2426 if (!*bpp)
2427 return 0;
Chandra Seetharaman5a52c2a582011-07-22 23:39:51 +00002428 ASSERT(!(*bpp)->b_error);
From: Christoph Hellwig48056212008-11-28 14:23:38 +11002429
2430 agf = XFS_BUF_TO_AGF(*bpp);
Dave Chinnera862e0f2010-01-11 11:47:41 +00002431 pag = xfs_perag_get(mp, agno);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002432 if (!pag->pagf_init) {
Christoph Hellwig16259e72005-11-02 15:11:25 +11002433 pag->pagf_freeblks = be32_to_cpu(agf->agf_freeblks);
David Chinner92821e22007-05-24 15:26:31 +10002434 pag->pagf_btreeblks = be32_to_cpu(agf->agf_btreeblks);
Christoph Hellwig16259e72005-11-02 15:11:25 +11002435 pag->pagf_flcount = be32_to_cpu(agf->agf_flcount);
2436 pag->pagf_longest = be32_to_cpu(agf->agf_longest);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002437 pag->pagf_levels[XFS_BTNUM_BNOi] =
Christoph Hellwig16259e72005-11-02 15:11:25 +11002438 be32_to_cpu(agf->agf_levels[XFS_BTNUM_BNOi]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002439 pag->pagf_levels[XFS_BTNUM_CNTi] =
Christoph Hellwig16259e72005-11-02 15:11:25 +11002440 be32_to_cpu(agf->agf_levels[XFS_BTNUM_CNTi]);
Darrick J. Wongb8704942016-08-03 11:30:32 +10002441 pag->pagf_levels[XFS_BTNUM_RMAPi] =
2442 be32_to_cpu(agf->agf_levels[XFS_BTNUM_RMAPi]);
Eric Sandeen007c61c2007-10-11 17:43:56 +10002443 spin_lock_init(&pag->pagb_lock);
Dave Chinnere57336f2010-01-11 11:47:49 +00002444 pag->pagb_count = 0;
Dave Chinnered3b4d62010-05-21 12:07:08 +10002445 pag->pagb_tree = RB_ROOT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002446 pag->pagf_init = 1;
2447 }
2448#ifdef DEBUG
2449 else if (!XFS_FORCED_SHUTDOWN(mp)) {
Christoph Hellwig16259e72005-11-02 15:11:25 +11002450 ASSERT(pag->pagf_freeblks == be32_to_cpu(agf->agf_freeblks));
Barry Naujok89b28392008-10-30 17:05:49 +11002451 ASSERT(pag->pagf_btreeblks == be32_to_cpu(agf->agf_btreeblks));
Christoph Hellwig16259e72005-11-02 15:11:25 +11002452 ASSERT(pag->pagf_flcount == be32_to_cpu(agf->agf_flcount));
2453 ASSERT(pag->pagf_longest == be32_to_cpu(agf->agf_longest));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002454 ASSERT(pag->pagf_levels[XFS_BTNUM_BNOi] ==
Christoph Hellwig16259e72005-11-02 15:11:25 +11002455 be32_to_cpu(agf->agf_levels[XFS_BTNUM_BNOi]));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002456 ASSERT(pag->pagf_levels[XFS_BTNUM_CNTi] ==
Christoph Hellwig16259e72005-11-02 15:11:25 +11002457 be32_to_cpu(agf->agf_levels[XFS_BTNUM_CNTi]));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002458 }
2459#endif
Dave Chinnera862e0f2010-01-11 11:47:41 +00002460 xfs_perag_put(pag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002461 return 0;
2462}
2463
2464/*
2465 * Allocate an extent (variable-size).
2466 * Depending on the allocation type, we either look in a single allocation
2467 * group or loop over the allocation groups to find the result.
2468 */
2469int /* error */
Dave Chinnere04426b2012-10-05 11:06:59 +10002470xfs_alloc_vextent(
Linus Torvalds1da177e2005-04-16 15:20:36 -07002471 xfs_alloc_arg_t *args) /* allocation argument structure */
2472{
2473 xfs_agblock_t agsize; /* allocation group size */
2474 int error;
2475 int flags; /* XFS_ALLOC_FLAG_... locking flags */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002476 xfs_extlen_t minleft;/* minimum left value, temp copy */
2477 xfs_mount_t *mp; /* mount structure pointer */
2478 xfs_agnumber_t sagno; /* starting allocation group number */
2479 xfs_alloctype_t type; /* input allocation type */
2480 int bump_rotor = 0;
2481 int no_min = 0;
2482 xfs_agnumber_t rotorstep = xfs_rotorstep; /* inode32 agf stepper */
2483
2484 mp = args->mp;
2485 type = args->otype = args->type;
2486 args->agbno = NULLAGBLOCK;
2487 /*
2488 * Just fix this up, for the case where the last a.g. is shorter
2489 * (or there's only one a.g.) and the caller couldn't easily figure
2490 * that out (xfs_bmap_alloc).
2491 */
2492 agsize = mp->m_sb.sb_agblocks;
2493 if (args->maxlen > agsize)
2494 args->maxlen = agsize;
2495 if (args->alignment == 0)
2496 args->alignment = 1;
2497 ASSERT(XFS_FSB_TO_AGNO(mp, args->fsbno) < mp->m_sb.sb_agcount);
2498 ASSERT(XFS_FSB_TO_AGBNO(mp, args->fsbno) < agsize);
2499 ASSERT(args->minlen <= args->maxlen);
2500 ASSERT(args->minlen <= agsize);
2501 ASSERT(args->mod < args->prod);
2502 if (XFS_FSB_TO_AGNO(mp, args->fsbno) >= mp->m_sb.sb_agcount ||
2503 XFS_FSB_TO_AGBNO(mp, args->fsbno) >= agsize ||
2504 args->minlen > args->maxlen || args->minlen > agsize ||
2505 args->mod >= args->prod) {
2506 args->fsbno = NULLFSBLOCK;
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002507 trace_xfs_alloc_vextent_badargs(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002508 return 0;
2509 }
2510 minleft = args->minleft;
2511
2512 switch (type) {
2513 case XFS_ALLOCTYPE_THIS_AG:
2514 case XFS_ALLOCTYPE_NEAR_BNO:
2515 case XFS_ALLOCTYPE_THIS_BNO:
2516 /*
2517 * These three force us into a single a.g.
2518 */
2519 args->agno = XFS_FSB_TO_AGNO(mp, args->fsbno);
Dave Chinnera862e0f2010-01-11 11:47:41 +00002520 args->pag = xfs_perag_get(mp, args->agno);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002521 args->minleft = 0;
2522 error = xfs_alloc_fix_freelist(args, 0);
2523 args->minleft = minleft;
2524 if (error) {
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002525 trace_xfs_alloc_vextent_nofix(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002526 goto error0;
2527 }
2528 if (!args->agbp) {
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002529 trace_xfs_alloc_vextent_noagbp(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002530 break;
2531 }
2532 args->agbno = XFS_FSB_TO_AGBNO(mp, args->fsbno);
2533 if ((error = xfs_alloc_ag_vextent(args)))
2534 goto error0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002535 break;
2536 case XFS_ALLOCTYPE_START_BNO:
2537 /*
2538 * Try near allocation first, then anywhere-in-ag after
2539 * the first a.g. fails.
2540 */
Dave Chinner3fbbbea2015-11-03 12:27:22 +11002541 if ((args->userdata & XFS_ALLOC_INITIAL_USER_DATA) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07002542 (mp->m_flags & XFS_MOUNT_32BITINODES)) {
2543 args->fsbno = XFS_AGB_TO_FSB(mp,
2544 ((mp->m_agfrotor / rotorstep) %
2545 mp->m_sb.sb_agcount), 0);
2546 bump_rotor = 1;
2547 }
2548 args->agbno = XFS_FSB_TO_AGBNO(mp, args->fsbno);
2549 args->type = XFS_ALLOCTYPE_NEAR_BNO;
2550 /* FALLTHROUGH */
2551 case XFS_ALLOCTYPE_ANY_AG:
2552 case XFS_ALLOCTYPE_START_AG:
2553 case XFS_ALLOCTYPE_FIRST_AG:
2554 /*
2555 * Rotate through the allocation groups looking for a winner.
2556 */
2557 if (type == XFS_ALLOCTYPE_ANY_AG) {
2558 /*
2559 * Start with the last place we left off.
2560 */
2561 args->agno = sagno = (mp->m_agfrotor / rotorstep) %
2562 mp->m_sb.sb_agcount;
2563 args->type = XFS_ALLOCTYPE_THIS_AG;
2564 flags = XFS_ALLOC_FLAG_TRYLOCK;
2565 } else if (type == XFS_ALLOCTYPE_FIRST_AG) {
2566 /*
2567 * Start with allocation group given by bno.
2568 */
2569 args->agno = XFS_FSB_TO_AGNO(mp, args->fsbno);
2570 args->type = XFS_ALLOCTYPE_THIS_AG;
2571 sagno = 0;
2572 flags = 0;
2573 } else {
2574 if (type == XFS_ALLOCTYPE_START_AG)
2575 args->type = XFS_ALLOCTYPE_THIS_AG;
2576 /*
2577 * Start with the given allocation group.
2578 */
2579 args->agno = sagno = XFS_FSB_TO_AGNO(mp, args->fsbno);
2580 flags = XFS_ALLOC_FLAG_TRYLOCK;
2581 }
2582 /*
2583 * Loop over allocation groups twice; first time with
2584 * trylock set, second time without.
2585 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002586 for (;;) {
Dave Chinnera862e0f2010-01-11 11:47:41 +00002587 args->pag = xfs_perag_get(mp, args->agno);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002588 if (no_min) args->minleft = 0;
2589 error = xfs_alloc_fix_freelist(args, flags);
2590 args->minleft = minleft;
2591 if (error) {
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002592 trace_xfs_alloc_vextent_nofix(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002593 goto error0;
2594 }
2595 /*
2596 * If we get a buffer back then the allocation will fly.
2597 */
2598 if (args->agbp) {
2599 if ((error = xfs_alloc_ag_vextent(args)))
2600 goto error0;
2601 break;
2602 }
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002603
2604 trace_xfs_alloc_vextent_loopfailed(args);
2605
Linus Torvalds1da177e2005-04-16 15:20:36 -07002606 /*
2607 * Didn't work, figure out the next iteration.
2608 */
2609 if (args->agno == sagno &&
2610 type == XFS_ALLOCTYPE_START_BNO)
2611 args->type = XFS_ALLOCTYPE_THIS_AG;
Yingping Lud210a282006-06-09 14:55:18 +10002612 /*
2613 * For the first allocation, we can try any AG to get
2614 * space. However, if we already have allocated a
2615 * block, we don't want to try AGs whose number is below
2616 * sagno. Otherwise, we may end up with out-of-order
2617 * locking of AGF, which might cause deadlock.
2618 */
2619 if (++(args->agno) == mp->m_sb.sb_agcount) {
2620 if (args->firstblock != NULLFSBLOCK)
2621 args->agno = sagno;
2622 else
2623 args->agno = 0;
2624 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002625 /*
2626 * Reached the starting a.g., must either be done
2627 * or switch to non-trylock mode.
2628 */
2629 if (args->agno == sagno) {
2630 if (no_min == 1) {
2631 args->agbno = NULLAGBLOCK;
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002632 trace_xfs_alloc_vextent_allfailed(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002633 break;
2634 }
2635 if (flags == 0) {
2636 no_min = 1;
2637 } else {
2638 flags = 0;
2639 if (type == XFS_ALLOCTYPE_START_BNO) {
2640 args->agbno = XFS_FSB_TO_AGBNO(mp,
2641 args->fsbno);
2642 args->type = XFS_ALLOCTYPE_NEAR_BNO;
2643 }
2644 }
2645 }
Dave Chinnera862e0f2010-01-11 11:47:41 +00002646 xfs_perag_put(args->pag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002647 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002648 if (bump_rotor || (type == XFS_ALLOCTYPE_ANY_AG)) {
2649 if (args->agno == sagno)
2650 mp->m_agfrotor = (mp->m_agfrotor + 1) %
2651 (mp->m_sb.sb_agcount * rotorstep);
2652 else
2653 mp->m_agfrotor = (args->agno * rotorstep + 1) %
2654 (mp->m_sb.sb_agcount * rotorstep);
2655 }
2656 break;
2657 default:
2658 ASSERT(0);
2659 /* NOTREACHED */
2660 }
2661 if (args->agbno == NULLAGBLOCK)
2662 args->fsbno = NULLFSBLOCK;
2663 else {
2664 args->fsbno = XFS_AGB_TO_FSB(mp, args->agno, args->agbno);
2665#ifdef DEBUG
2666 ASSERT(args->len >= args->minlen);
2667 ASSERT(args->len <= args->maxlen);
2668 ASSERT(args->agbno % args->alignment == 0);
2669 XFS_AG_CHECK_DADDR(mp, XFS_FSB_TO_DADDR(mp, args->fsbno),
2670 args->len);
2671#endif
Dave Chinner3fbbbea2015-11-03 12:27:22 +11002672
2673 /* Zero the extent if we were asked to do so */
2674 if (args->userdata & XFS_ALLOC_USERDATA_ZERO) {
2675 error = xfs_zero_extent(args->ip, args->fsbno, args->len);
2676 if (error)
2677 goto error0;
2678 }
2679
Linus Torvalds1da177e2005-04-16 15:20:36 -07002680 }
Dave Chinnera862e0f2010-01-11 11:47:41 +00002681 xfs_perag_put(args->pag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002682 return 0;
2683error0:
Dave Chinnera862e0f2010-01-11 11:47:41 +00002684 xfs_perag_put(args->pag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002685 return error;
2686}
2687
Dave Chinner4d89e202016-06-21 11:53:28 +10002688/* Ensure that the freelist is at full capacity. */
2689int
2690xfs_free_extent_fix_freelist(
2691 struct xfs_trans *tp,
2692 xfs_agnumber_t agno,
2693 struct xfs_buf **agbp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002694{
Dave Chinner4d89e202016-06-21 11:53:28 +10002695 struct xfs_alloc_arg args;
2696 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002697
Dave Chinner4d89e202016-06-21 11:53:28 +10002698 memset(&args, 0, sizeof(struct xfs_alloc_arg));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002699 args.tp = tp;
2700 args.mp = tp->t_mountp;
Dave Chinner4d89e202016-06-21 11:53:28 +10002701 args.agno = agno;
Dave Chinnerbe65b182011-04-08 12:45:07 +10002702
2703 /*
2704 * validate that the block number is legal - the enables us to detect
2705 * and handle a silent filesystem corruption rather than crashing.
2706 */
Dave Chinnerbe65b182011-04-08 12:45:07 +10002707 if (args.agno >= args.mp->m_sb.sb_agcount)
Dave Chinner24513372014-06-25 14:58:08 +10002708 return -EFSCORRUPTED;
Dave Chinnerbe65b182011-04-08 12:45:07 +10002709
Dave Chinnera862e0f2010-01-11 11:47:41 +00002710 args.pag = xfs_perag_get(args.mp, args.agno);
Dave Chinnerbe65b182011-04-08 12:45:07 +10002711 ASSERT(args.pag);
2712
2713 error = xfs_alloc_fix_freelist(&args, XFS_ALLOC_FLAG_FREEING);
2714 if (error)
Dave Chinner4d89e202016-06-21 11:53:28 +10002715 goto out;
2716
2717 *agbp = args.agbp;
2718out:
2719 xfs_perag_put(args.pag);
2720 return error;
2721}
2722
2723/*
2724 * Free an extent.
2725 * Just break up the extent address and hand off to xfs_free_ag_extent
2726 * after fixing up the freelist.
2727 */
2728int /* error */
2729xfs_free_extent(
2730 struct xfs_trans *tp, /* transaction pointer */
2731 xfs_fsblock_t bno, /* starting block number of extent */
Darrick J. Wong340785c2016-08-03 11:33:42 +10002732 xfs_extlen_t len, /* length of extent */
2733 struct xfs_owner_info *oinfo) /* extent owner */
Dave Chinner4d89e202016-06-21 11:53:28 +10002734{
2735 struct xfs_mount *mp = tp->t_mountp;
2736 struct xfs_buf *agbp;
2737 xfs_agnumber_t agno = XFS_FSB_TO_AGNO(mp, bno);
2738 xfs_agblock_t agbno = XFS_FSB_TO_AGBNO(mp, bno);
2739 int error;
2740
2741 ASSERT(len != 0);
2742
Darrick J. Wongba9e7802016-08-03 11:26:33 +10002743 trace_xfs_bmap_free_deferred(mp, agno, 0, agbno, len);
2744
2745 if (XFS_TEST_ERROR(false, mp,
2746 XFS_ERRTAG_FREE_EXTENT,
2747 XFS_RANDOM_FREE_EXTENT))
2748 return -EIO;
2749
Dave Chinner4d89e202016-06-21 11:53:28 +10002750 error = xfs_free_extent_fix_freelist(tp, agno, &agbp);
2751 if (error)
2752 return error;
2753
2754 XFS_WANT_CORRUPTED_GOTO(mp, agbno < mp->m_sb.sb_agblocks, err);
Dave Chinnerbe65b182011-04-08 12:45:07 +10002755
2756 /* validate the extent size is legal now we have the agf locked */
Dave Chinner4d89e202016-06-21 11:53:28 +10002757 XFS_WANT_CORRUPTED_GOTO(mp,
2758 agbno + len <= be32_to_cpu(XFS_BUF_TO_AGF(agbp)->agf_length),
2759 err);
Dave Chinnerbe65b182011-04-08 12:45:07 +10002760
Darrick J. Wong340785c2016-08-03 11:33:42 +10002761 error = xfs_free_ag_extent(tp, agbp, agno, agbno, len, oinfo, 0);
Dave Chinner4d89e202016-06-21 11:53:28 +10002762 if (error)
2763 goto err;
2764
2765 xfs_extent_busy_insert(tp, agno, agbno, len, 0);
2766 return 0;
2767
2768err:
2769 xfs_trans_brelse(tp, agbp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002770 return error;
2771}