blob: aa0e1ca7b6a5a710a914d1c4071b5f8013db051a [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 Chinner70a98832013-10-23 10:36:05 +110020#include "xfs_format.h"
Dave Chinner239880e2013-10-23 10:50:10 +110021#include "xfs_log_format.h"
Dave Chinner70a98832013-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"
Darrick J. Wong3fd129b2016-09-19 10:30:52 +100040#include "xfs_ag_resv.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
Dave Chinnerc999a222012-03-22 05:15:07 +000042struct workqueue_struct *xfs_alloc_wq;
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
44#define XFS_ABSDIFF(a,b) (((a) <= (b)) ? ((b) - (a)) : ((a) - (b)))
45
46#define XFSA_FIXUP_BNO_OK 1
47#define XFSA_FIXUP_CNT_OK 2
48
Linus Torvalds1da177e2005-04-16 15:20:36 -070049STATIC int xfs_alloc_ag_vextent_exact(xfs_alloc_arg_t *);
50STATIC int xfs_alloc_ag_vextent_near(xfs_alloc_arg_t *);
51STATIC int xfs_alloc_ag_vextent_size(xfs_alloc_arg_t *);
52STATIC int xfs_alloc_ag_vextent_small(xfs_alloc_arg_t *,
Christoph Hellwige26f0502011-04-24 19:06:15 +000053 xfs_btree_cur_t *, xfs_agblock_t *, xfs_extlen_t *, int *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
Darrick J. Wongaf30dfa2016-10-03 09:11:17 -070055unsigned int
56xfs_refc_block(
57 struct xfs_mount *mp)
58{
59 if (xfs_sb_version_hasrmapbt(&mp->m_sb))
60 return XFS_RMAP_BLOCK(mp) + 1;
61 if (xfs_sb_version_hasfinobt(&mp->m_sb))
62 return XFS_FIBT_BLOCK(mp) + 1;
63 return XFS_IBT_BLOCK(mp) + 1;
64}
65
Darrick J. Wong80180262016-08-03 11:31:47 +100066xfs_extlen_t
67xfs_prealloc_blocks(
68 struct xfs_mount *mp)
69{
Darrick J. Wongaf30dfa2016-10-03 09:11:17 -070070 if (xfs_sb_version_hasreflink(&mp->m_sb))
71 return xfs_refc_block(mp) + 1;
Darrick J. Wong80180262016-08-03 11:31:47 +100072 if (xfs_sb_version_hasrmapbt(&mp->m_sb))
73 return XFS_RMAP_BLOCK(mp) + 1;
74 if (xfs_sb_version_hasfinobt(&mp->m_sb))
75 return XFS_FIBT_BLOCK(mp) + 1;
76 return XFS_IBT_BLOCK(mp) + 1;
77}
78
Linus Torvalds1da177e2005-04-16 15:20:36 -070079/*
Darrick J. Wong52548852016-08-03 11:38:24 +100080 * In order to avoid ENOSPC-related deadlock caused by out-of-order locking of
81 * AGF buffer (PV 947395), we place constraints on the relationship among
82 * actual allocations for data blocks, freelist blocks, and potential file data
83 * bmap btree blocks. However, these restrictions may result in no actual space
84 * allocated for a delayed extent, for example, a data block in a certain AG is
85 * allocated but there is no additional block for the additional bmap btree
86 * block due to a split of the bmap btree of the file. The result of this may
87 * lead to an infinite loop when the file gets flushed to disk and all delayed
88 * extents need to be actually allocated. To get around this, we explicitly set
89 * aside a few blocks which will not be reserved in delayed allocation.
90 *
Darrick J. Wong3fd129b2016-09-19 10:30:52 +100091 * We need to reserve 4 fsbs _per AG_ for the freelist and 4 more to handle a
92 * potential split of the file's bmap btree.
Darrick J. Wong52548852016-08-03 11:38:24 +100093 */
94unsigned int
95xfs_alloc_set_aside(
96 struct xfs_mount *mp)
97{
98 unsigned int blocks;
99
100 blocks = 4 + (mp->m_sb.sb_agcount * XFS_ALLOC_AGFL_RESERVE);
Darrick J. Wong52548852016-08-03 11:38:24 +1000101 return blocks;
102}
103
104/*
105 * When deciding how much space to allocate out of an AG, we limit the
106 * allocation maximum size to the size the AG. However, we cannot use all the
107 * blocks in the AG - some are permanently used by metadata. These
108 * blocks are generally:
109 * - the AG superblock, AGF, AGI and AGFL
110 * - the AGF (bno and cnt) and AGI btree root blocks, and optionally
111 * the AGI free inode and rmap btree root blocks.
112 * - blocks on the AGFL according to xfs_alloc_set_aside() limits
113 * - the rmapbt root block
114 *
115 * The AG headers are sector sized, so the amount of space they take up is
116 * dependent on filesystem geometry. The others are all single blocks.
117 */
118unsigned int
119xfs_alloc_ag_max_usable(
120 struct xfs_mount *mp)
121{
122 unsigned int blocks;
123
124 blocks = XFS_BB_TO_FSB(mp, XFS_FSS_TO_BB(mp, 4)); /* ag headers */
125 blocks += XFS_ALLOC_AGFL_RESERVE;
126 blocks += 3; /* AGF, AGI btree root blocks */
127 if (xfs_sb_version_hasfinobt(&mp->m_sb))
128 blocks++; /* finobt root block */
129 if (xfs_sb_version_hasrmapbt(&mp->m_sb))
130 blocks++; /* rmap root block */
131
132 return mp->m_sb.sb_agblocks - blocks;
133}
134
135/*
Christoph Hellwigfe033cc2008-10-30 16:56:09 +1100136 * Lookup the record equal to [bno, len] in the btree given by cur.
137 */
138STATIC int /* error */
139xfs_alloc_lookup_eq(
140 struct xfs_btree_cur *cur, /* btree cursor */
141 xfs_agblock_t bno, /* starting block of extent */
142 xfs_extlen_t len, /* length of extent */
143 int *stat) /* success/failure */
144{
145 cur->bc_rec.a.ar_startblock = bno;
146 cur->bc_rec.a.ar_blockcount = len;
147 return xfs_btree_lookup(cur, XFS_LOOKUP_EQ, stat);
148}
149
150/*
151 * Lookup the first record greater than or equal to [bno, len]
152 * in the btree given by cur.
153 */
Dave Chinnera66d6362012-03-22 05:15:12 +0000154int /* error */
Christoph Hellwigfe033cc2008-10-30 16:56:09 +1100155xfs_alloc_lookup_ge(
156 struct xfs_btree_cur *cur, /* btree cursor */
157 xfs_agblock_t bno, /* starting block of extent */
158 xfs_extlen_t len, /* length of extent */
159 int *stat) /* success/failure */
160{
161 cur->bc_rec.a.ar_startblock = bno;
162 cur->bc_rec.a.ar_blockcount = len;
163 return xfs_btree_lookup(cur, XFS_LOOKUP_GE, stat);
164}
165
166/*
167 * Lookup the first record less than or equal to [bno, len]
168 * in the btree given by cur.
169 */
Eric Sandeen0d5a75e2016-06-01 17:38:15 +1000170static int /* error */
Christoph Hellwigfe033cc2008-10-30 16:56:09 +1100171xfs_alloc_lookup_le(
172 struct xfs_btree_cur *cur, /* btree cursor */
173 xfs_agblock_t bno, /* starting block of extent */
174 xfs_extlen_t len, /* length of extent */
175 int *stat) /* success/failure */
176{
177 cur->bc_rec.a.ar_startblock = bno;
178 cur->bc_rec.a.ar_blockcount = len;
179 return xfs_btree_lookup(cur, XFS_LOOKUP_LE, stat);
180}
181
Christoph Hellwig278d0ca2008-10-30 16:56:32 +1100182/*
183 * Update the record referred to by cur to the value given
184 * by [bno, len].
185 * This either works (return 0) or gets an EFSCORRUPTED error.
186 */
187STATIC int /* error */
188xfs_alloc_update(
189 struct xfs_btree_cur *cur, /* btree cursor */
190 xfs_agblock_t bno, /* starting block of extent */
191 xfs_extlen_t len) /* length of extent */
192{
193 union xfs_btree_rec rec;
194
195 rec.alloc.ar_startblock = cpu_to_be32(bno);
196 rec.alloc.ar_blockcount = cpu_to_be32(len);
197 return xfs_btree_update(cur, &rec);
198}
Christoph Hellwigfe033cc2008-10-30 16:56:09 +1100199
200/*
Christoph Hellwig8cc938f2008-10-30 16:58:11 +1100201 * Get the data from the pointed-to record.
202 */
Christoph Hellwiga46db602011-01-07 13:02:04 +0000203int /* error */
Christoph Hellwig8cc938f2008-10-30 16:58:11 +1100204xfs_alloc_get_rec(
205 struct xfs_btree_cur *cur, /* btree cursor */
206 xfs_agblock_t *bno, /* output: starting block of extent */
207 xfs_extlen_t *len, /* output: length of extent */
208 int *stat) /* output: success/failure */
209{
210 union xfs_btree_rec *rec;
211 int error;
212
213 error = xfs_btree_get_rec(cur, &rec, stat);
214 if (!error && *stat == 1) {
215 *bno = be32_to_cpu(rec->alloc.ar_startblock);
216 *len = be32_to_cpu(rec->alloc.ar_blockcount);
217 }
218 return error;
219}
220
221/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 * Compute aligned version of the found extent.
223 * Takes alignment and min length into account.
224 */
David Chinner12375c82008-04-10 12:21:32 +1000225STATIC void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226xfs_alloc_compute_aligned(
Christoph Hellwig86fa8af2011-03-04 12:59:54 +0000227 xfs_alloc_arg_t *args, /* allocation argument structure */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 xfs_agblock_t foundbno, /* starting block in found extent */
229 xfs_extlen_t foundlen, /* length in found extent */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 xfs_agblock_t *resbno, /* result block number */
231 xfs_extlen_t *reslen) /* result length */
232{
233 xfs_agblock_t bno;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 xfs_extlen_t len;
Brian Fosterbfe46d42015-05-29 08:53:00 +1000235 xfs_extlen_t diff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236
Christoph Hellwige26f0502011-04-24 19:06:15 +0000237 /* Trim busy sections out of found extent */
Dave Chinner4ecbfe62012-04-29 10:41:10 +0000238 xfs_extent_busy_trim(args, foundbno, foundlen, &bno, &len);
Christoph Hellwige26f0502011-04-24 19:06:15 +0000239
Brian Fosterbfe46d42015-05-29 08:53:00 +1000240 /*
241 * If we have a largish extent that happens to start before min_agbno,
242 * see if we can shift it into range...
243 */
244 if (bno < args->min_agbno && bno + len > args->min_agbno) {
245 diff = args->min_agbno - bno;
246 if (len > diff) {
247 bno += diff;
248 len -= diff;
249 }
250 }
251
Christoph Hellwige26f0502011-04-24 19:06:15 +0000252 if (args->alignment > 1 && len >= args->minlen) {
253 xfs_agblock_t aligned_bno = roundup(bno, args->alignment);
Brian Fosterbfe46d42015-05-29 08:53:00 +1000254
255 diff = aligned_bno - bno;
Christoph Hellwige26f0502011-04-24 19:06:15 +0000256
257 *resbno = aligned_bno;
258 *reslen = diff >= len ? 0 : len - diff;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 } else {
Christoph Hellwige26f0502011-04-24 19:06:15 +0000260 *resbno = bno;
261 *reslen = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263}
264
265/*
266 * Compute best start block and diff for "near" allocations.
267 * freelen >= wantlen already checked by caller.
268 */
269STATIC xfs_extlen_t /* difference value (absolute) */
270xfs_alloc_compute_diff(
271 xfs_agblock_t wantbno, /* target starting block */
272 xfs_extlen_t wantlen, /* target length */
273 xfs_extlen_t alignment, /* target alignment */
Dave Chinner292378e2016-09-26 08:21:28 +1000274 int datatype, /* are we allocating data? */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 xfs_agblock_t freebno, /* freespace's starting block */
276 xfs_extlen_t freelen, /* freespace's length */
277 xfs_agblock_t *newbnop) /* result: best start block from free */
278{
279 xfs_agblock_t freeend; /* end of freespace extent */
280 xfs_agblock_t newbno1; /* return block number */
281 xfs_agblock_t newbno2; /* other new block number */
282 xfs_extlen_t newlen1=0; /* length with newbno1 */
283 xfs_extlen_t newlen2=0; /* length with newbno2 */
284 xfs_agblock_t wantend; /* end of target extent */
Dave Chinner292378e2016-09-26 08:21:28 +1000285 bool userdata = xfs_alloc_is_userdata(datatype);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286
287 ASSERT(freelen >= wantlen);
288 freeend = freebno + freelen;
289 wantend = wantbno + wantlen;
Jan Kara211d0222013-04-11 22:09:56 +0200290 /*
291 * We want to allocate from the start of a free extent if it is past
292 * the desired block or if we are allocating user data and the free
293 * extent is before desired block. The second case is there to allow
294 * for contiguous allocation from the remaining free space if the file
295 * grows in the short term.
296 */
297 if (freebno >= wantbno || (userdata && freeend < wantend)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 if ((newbno1 = roundup(freebno, alignment)) >= freeend)
299 newbno1 = NULLAGBLOCK;
300 } else if (freeend >= wantend && alignment > 1) {
301 newbno1 = roundup(wantbno, alignment);
302 newbno2 = newbno1 - alignment;
303 if (newbno1 >= freeend)
304 newbno1 = NULLAGBLOCK;
305 else
306 newlen1 = XFS_EXTLEN_MIN(wantlen, freeend - newbno1);
307 if (newbno2 < freebno)
308 newbno2 = NULLAGBLOCK;
309 else
310 newlen2 = XFS_EXTLEN_MIN(wantlen, freeend - newbno2);
311 if (newbno1 != NULLAGBLOCK && newbno2 != NULLAGBLOCK) {
312 if (newlen1 < newlen2 ||
313 (newlen1 == newlen2 &&
314 XFS_ABSDIFF(newbno1, wantbno) >
315 XFS_ABSDIFF(newbno2, wantbno)))
316 newbno1 = newbno2;
317 } else if (newbno2 != NULLAGBLOCK)
318 newbno1 = newbno2;
319 } else if (freeend >= wantend) {
320 newbno1 = wantbno;
321 } else if (alignment > 1) {
322 newbno1 = roundup(freeend - wantlen, alignment);
323 if (newbno1 > freeend - wantlen &&
324 newbno1 - alignment >= freebno)
325 newbno1 -= alignment;
326 else if (newbno1 >= freeend)
327 newbno1 = NULLAGBLOCK;
328 } else
329 newbno1 = freeend - wantlen;
330 *newbnop = newbno1;
331 return newbno1 == NULLAGBLOCK ? 0 : XFS_ABSDIFF(newbno1, wantbno);
332}
333
334/*
335 * Fix up the length, based on mod and prod.
336 * len should be k * prod + mod for some k.
337 * If len is too small it is returned unchanged.
338 * If len hits maxlen it is left alone.
339 */
340STATIC void
341xfs_alloc_fix_len(
342 xfs_alloc_arg_t *args) /* allocation argument structure */
343{
344 xfs_extlen_t k;
345 xfs_extlen_t rlen;
346
347 ASSERT(args->mod < args->prod);
348 rlen = args->len;
349 ASSERT(rlen >= args->minlen);
350 ASSERT(rlen <= args->maxlen);
351 if (args->prod <= 1 || rlen < args->mod || rlen == args->maxlen ||
352 (args->mod == 0 && rlen < args->prod))
353 return;
354 k = rlen % args->prod;
355 if (k == args->mod)
356 return;
Jan Kara30265112014-06-06 16:06:37 +1000357 if (k > args->mod)
358 rlen = rlen - (k - args->mod);
359 else
360 rlen = rlen - args->prod + (args->mod - k);
Dave Chinner3790a8c2015-02-24 10:16:04 +1100361 /* casts to (int) catch length underflows */
Jan Kara30265112014-06-06 16:06:37 +1000362 if ((int)rlen < (int)args->minlen)
363 return;
364 ASSERT(rlen >= args->minlen && rlen <= args->maxlen);
365 ASSERT(rlen % args->prod == args->mod);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 args->len = rlen;
367}
368
369/*
370 * Fix up length if there is too little space left in the a.g.
371 * Return 1 if ok, 0 if too little, should give up.
372 */
373STATIC int
374xfs_alloc_fix_minleft(
375 xfs_alloc_arg_t *args) /* allocation argument structure */
376{
377 xfs_agf_t *agf; /* a.g. freelist header */
378 int diff; /* free space difference */
379
380 if (args->minleft == 0)
381 return 1;
382 agf = XFS_BUF_TO_AGF(args->agbp);
Christoph Hellwig16259e72005-11-02 15:11:25 +1100383 diff = be32_to_cpu(agf->agf_freeblks)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 - args->len - args->minleft;
385 if (diff >= 0)
386 return 1;
387 args->len += diff; /* shrink the allocated space */
Dave Chinner3790a8c2015-02-24 10:16:04 +1100388 /* casts to (int) catch length underflows */
389 if ((int)args->len >= (int)args->minlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 return 1;
391 args->agbno = NULLAGBLOCK;
392 return 0;
393}
394
395/*
396 * Update the two btrees, logically removing from freespace the extent
397 * starting at rbno, rlen blocks. The extent is contained within the
398 * actual (current) free extent fbno for flen blocks.
399 * Flags are passed in indicating whether the cursors are set to the
400 * relevant records.
401 */
402STATIC int /* error code */
403xfs_alloc_fixup_trees(
404 xfs_btree_cur_t *cnt_cur, /* cursor for by-size btree */
405 xfs_btree_cur_t *bno_cur, /* cursor for by-block btree */
406 xfs_agblock_t fbno, /* starting block of free extent */
407 xfs_extlen_t flen, /* length of free extent */
408 xfs_agblock_t rbno, /* starting block of returned extent */
409 xfs_extlen_t rlen, /* length of returned extent */
410 int flags) /* flags, XFSA_FIXUP_... */
411{
412 int error; /* error code */
413 int i; /* operation results */
414 xfs_agblock_t nfbno1; /* first new free startblock */
415 xfs_agblock_t nfbno2; /* second new free startblock */
416 xfs_extlen_t nflen1=0; /* first new free length */
417 xfs_extlen_t nflen2=0; /* second new free length */
Eric Sandeen5fb5aee2015-02-23 22:39:13 +1100418 struct xfs_mount *mp;
419
420 mp = cnt_cur->bc_mp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421
422 /*
423 * Look up the record in the by-size tree if necessary.
424 */
425 if (flags & XFSA_FIXUP_CNT_OK) {
426#ifdef DEBUG
427 if ((error = xfs_alloc_get_rec(cnt_cur, &nfbno1, &nflen1, &i)))
428 return error;
Eric Sandeen5fb5aee2015-02-23 22:39:13 +1100429 XFS_WANT_CORRUPTED_RETURN(mp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 i == 1 && nfbno1 == fbno && nflen1 == flen);
431#endif
432 } else {
433 if ((error = xfs_alloc_lookup_eq(cnt_cur, fbno, flen, &i)))
434 return error;
Eric Sandeen5fb5aee2015-02-23 22:39:13 +1100435 XFS_WANT_CORRUPTED_RETURN(mp, i == 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 }
437 /*
438 * Look up the record in the by-block tree if necessary.
439 */
440 if (flags & XFSA_FIXUP_BNO_OK) {
441#ifdef DEBUG
442 if ((error = xfs_alloc_get_rec(bno_cur, &nfbno1, &nflen1, &i)))
443 return error;
Eric Sandeen5fb5aee2015-02-23 22:39:13 +1100444 XFS_WANT_CORRUPTED_RETURN(mp,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 i == 1 && nfbno1 == fbno && nflen1 == flen);
446#endif
447 } else {
448 if ((error = xfs_alloc_lookup_eq(bno_cur, fbno, flen, &i)))
449 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 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452
Christoph Hellwig7cc95a82008-10-30 17:14:34 +1100453#ifdef DEBUG
454 if (bno_cur->bc_nlevels == 1 && cnt_cur->bc_nlevels == 1) {
455 struct xfs_btree_block *bnoblock;
456 struct xfs_btree_block *cntblock;
457
458 bnoblock = XFS_BUF_TO_BLOCK(bno_cur->bc_bufs[0]);
459 cntblock = XFS_BUF_TO_BLOCK(cnt_cur->bc_bufs[0]);
460
Eric Sandeen5fb5aee2015-02-23 22:39:13 +1100461 XFS_WANT_CORRUPTED_RETURN(mp,
Christoph Hellwig7cc95a82008-10-30 17:14:34 +1100462 bnoblock->bb_numrecs == cntblock->bb_numrecs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 }
464#endif
Christoph Hellwig7cc95a82008-10-30 17:14:34 +1100465
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 /*
467 * Deal with all four cases: the allocated record is contained
468 * within the freespace record, so we can have new freespace
469 * at either (or both) end, or no freespace remaining.
470 */
471 if (rbno == fbno && rlen == flen)
472 nfbno1 = nfbno2 = NULLAGBLOCK;
473 else if (rbno == fbno) {
474 nfbno1 = rbno + rlen;
475 nflen1 = flen - rlen;
476 nfbno2 = NULLAGBLOCK;
477 } else if (rbno + rlen == fbno + flen) {
478 nfbno1 = fbno;
479 nflen1 = flen - rlen;
480 nfbno2 = NULLAGBLOCK;
481 } else {
482 nfbno1 = fbno;
483 nflen1 = rbno - fbno;
484 nfbno2 = rbno + rlen;
485 nflen2 = (fbno + flen) - nfbno2;
486 }
487 /*
488 * Delete the entry from the by-size btree.
489 */
Christoph Hellwig91cca5df2008-10-30 16:58:01 +1100490 if ((error = xfs_btree_delete(cnt_cur, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 return error;
Eric Sandeen5fb5aee2015-02-23 22:39:13 +1100492 XFS_WANT_CORRUPTED_RETURN(mp, i == 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 /*
494 * Add new by-size btree entry(s).
495 */
496 if (nfbno1 != NULLAGBLOCK) {
497 if ((error = xfs_alloc_lookup_eq(cnt_cur, nfbno1, nflen1, &i)))
498 return error;
Eric Sandeen5fb5aee2015-02-23 22:39:13 +1100499 XFS_WANT_CORRUPTED_RETURN(mp, i == 0);
Christoph Hellwig4b22a572008-10-30 16:57:40 +1100500 if ((error = xfs_btree_insert(cnt_cur, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 return error;
Eric Sandeen5fb5aee2015-02-23 22:39:13 +1100502 XFS_WANT_CORRUPTED_RETURN(mp, i == 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 }
504 if (nfbno2 != NULLAGBLOCK) {
505 if ((error = xfs_alloc_lookup_eq(cnt_cur, nfbno2, nflen2, &i)))
506 return error;
Eric Sandeen5fb5aee2015-02-23 22:39:13 +1100507 XFS_WANT_CORRUPTED_RETURN(mp, i == 0);
Christoph Hellwig4b22a572008-10-30 16:57:40 +1100508 if ((error = xfs_btree_insert(cnt_cur, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 return error;
Eric Sandeen5fb5aee2015-02-23 22:39:13 +1100510 XFS_WANT_CORRUPTED_RETURN(mp, i == 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 }
512 /*
513 * Fix up the by-block btree entry(s).
514 */
515 if (nfbno1 == NULLAGBLOCK) {
516 /*
517 * No remaining freespace, just delete the by-block tree entry.
518 */
Christoph Hellwig91cca5df2008-10-30 16:58:01 +1100519 if ((error = xfs_btree_delete(bno_cur, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 return error;
Eric Sandeen5fb5aee2015-02-23 22:39:13 +1100521 XFS_WANT_CORRUPTED_RETURN(mp, i == 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 } else {
523 /*
524 * Update the by-block entry to start later|be shorter.
525 */
526 if ((error = xfs_alloc_update(bno_cur, nfbno1, nflen1)))
527 return error;
528 }
529 if (nfbno2 != NULLAGBLOCK) {
530 /*
531 * 2 resulting free entries, need to add one.
532 */
533 if ((error = xfs_alloc_lookup_eq(bno_cur, nfbno2, nflen2, &i)))
534 return error;
Eric Sandeen5fb5aee2015-02-23 22:39:13 +1100535 XFS_WANT_CORRUPTED_RETURN(mp, i == 0);
Christoph Hellwig4b22a572008-10-30 16:57:40 +1100536 if ((error = xfs_btree_insert(bno_cur, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 return error;
Eric Sandeen5fb5aee2015-02-23 22:39:13 +1100538 XFS_WANT_CORRUPTED_RETURN(mp, i == 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 }
540 return 0;
541}
542
Christoph Hellwig77c95bb2013-04-03 16:11:14 +1100543static bool
Dave Chinner612cfbf2012-11-14 17:52:32 +1100544xfs_agfl_verify(
Dave Chinnerbb80c6d2012-11-12 22:54:06 +1100545 struct xfs_buf *bp)
546{
Dave Chinnerbb80c6d2012-11-12 22:54:06 +1100547 struct xfs_mount *mp = bp->b_target->bt_mount;
548 struct xfs_agfl *agfl = XFS_BUF_TO_AGFL(bp);
Dave Chinnerbb80c6d2012-11-12 22:54:06 +1100549 int i;
550
Eric Sandeence748ea2015-07-29 11:53:31 +1000551 if (!uuid_equal(&agfl->agfl_uuid, &mp->m_sb.sb_meta_uuid))
Christoph Hellwig77c95bb2013-04-03 16:11:14 +1100552 return false;
553 if (be32_to_cpu(agfl->agfl_magicnum) != XFS_AGFL_MAGIC)
554 return false;
555 /*
556 * during growfs operations, the perag is not fully initialised,
557 * so we can't use it for any useful checking. growfs ensures we can't
558 * use it by using uncached buffers that don't have the perag attached
559 * so we can detect and avoid this problem.
560 */
561 if (bp->b_pag && be32_to_cpu(agfl->agfl_seqno) != bp->b_pag->pag_agno)
562 return false;
563
Dave Chinnerbb80c6d2012-11-12 22:54:06 +1100564 for (i = 0; i < XFS_AGFL_SIZE(mp); i++) {
Christoph Hellwig77c95bb2013-04-03 16:11:14 +1100565 if (be32_to_cpu(agfl->agfl_bno[i]) != NULLAGBLOCK &&
Dave Chinnerbb80c6d2012-11-12 22:54:06 +1100566 be32_to_cpu(agfl->agfl_bno[i]) >= mp->m_sb.sb_agblocks)
Christoph Hellwig77c95bb2013-04-03 16:11:14 +1100567 return false;
Dave Chinnerbb80c6d2012-11-12 22:54:06 +1100568 }
Brian Fostera45086e2015-10-12 15:59:25 +1100569
570 return xfs_log_check_lsn(mp,
571 be64_to_cpu(XFS_BUF_TO_AGFL(bp)->agfl_lsn));
Dave Chinner612cfbf2012-11-14 17:52:32 +1100572}
573
Dave Chinnerb0f539d2012-11-14 17:53:49 +1100574static void
Dave Chinner612cfbf2012-11-14 17:52:32 +1100575xfs_agfl_read_verify(
576 struct xfs_buf *bp)
577{
Christoph Hellwig77c95bb2013-04-03 16:11:14 +1100578 struct xfs_mount *mp = bp->b_target->bt_mount;
Christoph Hellwig77c95bb2013-04-03 16:11:14 +1100579
580 /*
581 * There is no verification of non-crc AGFLs because mkfs does not
582 * initialise the AGFL to zero or NULL. Hence the only valid part of the
583 * AGFL is what the AGF says is active. We can't get to the AGF, so we
584 * can't verify just those entries are valid.
585 */
586 if (!xfs_sb_version_hascrc(&mp->m_sb))
587 return;
588
Eric Sandeence5028c2014-02-27 15:23:10 +1100589 if (!xfs_buf_verify_cksum(bp, XFS_AGFL_CRC_OFF))
Dave Chinner24513372014-06-25 14:58:08 +1000590 xfs_buf_ioerror(bp, -EFSBADCRC);
Eric Sandeence5028c2014-02-27 15:23:10 +1100591 else if (!xfs_agfl_verify(bp))
Dave Chinner24513372014-06-25 14:58:08 +1000592 xfs_buf_ioerror(bp, -EFSCORRUPTED);
Eric Sandeence5028c2014-02-27 15:23:10 +1100593
594 if (bp->b_error)
595 xfs_verifier_error(bp);
Christoph Hellwig77c95bb2013-04-03 16:11:14 +1100596}
597
598static void
599xfs_agfl_write_verify(
600 struct xfs_buf *bp)
601{
602 struct xfs_mount *mp = bp->b_target->bt_mount;
603 struct xfs_buf_log_item *bip = bp->b_fspriv;
604
605 /* no verification of non-crc AGFLs */
606 if (!xfs_sb_version_hascrc(&mp->m_sb))
607 return;
608
609 if (!xfs_agfl_verify(bp)) {
Dave Chinner24513372014-06-25 14:58:08 +1000610 xfs_buf_ioerror(bp, -EFSCORRUPTED);
Eric Sandeence5028c2014-02-27 15:23:10 +1100611 xfs_verifier_error(bp);
Christoph Hellwig77c95bb2013-04-03 16:11:14 +1100612 return;
613 }
614
615 if (bip)
616 XFS_BUF_TO_AGFL(bp)->agfl_lsn = cpu_to_be64(bip->bli_item.li_lsn);
617
Eric Sandeenf1dbcd72014-02-27 15:18:23 +1100618 xfs_buf_update_cksum(bp, XFS_AGFL_CRC_OFF);
Dave Chinnerbb80c6d2012-11-12 22:54:06 +1100619}
620
Dave Chinner1813dd62012-11-14 17:54:40 +1100621const struct xfs_buf_ops xfs_agfl_buf_ops = {
Eric Sandeen233135b2016-01-04 16:10:19 +1100622 .name = "xfs_agfl",
Dave Chinner1813dd62012-11-14 17:54:40 +1100623 .verify_read = xfs_agfl_read_verify,
624 .verify_write = xfs_agfl_write_verify,
625};
626
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627/*
628 * Read in the allocation group free block array.
629 */
630STATIC int /* error */
631xfs_alloc_read_agfl(
632 xfs_mount_t *mp, /* mount point structure */
633 xfs_trans_t *tp, /* transaction pointer */
634 xfs_agnumber_t agno, /* allocation group number */
635 xfs_buf_t **bpp) /* buffer for the ag free block array */
636{
637 xfs_buf_t *bp; /* return value */
638 int error;
639
640 ASSERT(agno != NULLAGNUMBER);
641 error = xfs_trans_read_buf(
642 mp, tp, mp->m_ddev_targp,
643 XFS_AG_DADDR(mp, agno, XFS_AGFL_DADDR(mp)),
Dave Chinner1813dd62012-11-14 17:54:40 +1100644 XFS_FSS_TO_BB(mp, 1), 0, &bp, &xfs_agfl_buf_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 if (error)
646 return error;
Christoph Hellwig38f23232011-10-10 16:52:45 +0000647 xfs_buf_set_ref(bp, XFS_AGFL_REF);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 *bpp = bp;
649 return 0;
650}
651
Christoph Hellwigecb69282011-03-04 12:59:55 +0000652STATIC int
653xfs_alloc_update_counters(
654 struct xfs_trans *tp,
655 struct xfs_perag *pag,
656 struct xfs_buf *agbp,
657 long len)
658{
659 struct xfs_agf *agf = XFS_BUF_TO_AGF(agbp);
660
661 pag->pagf_freeblks += len;
662 be32_add_cpu(&agf->agf_freeblks, len);
663
664 xfs_trans_agblocks_delta(tp, len);
665 if (unlikely(be32_to_cpu(agf->agf_freeblks) >
666 be32_to_cpu(agf->agf_length)))
Dave Chinner24513372014-06-25 14:58:08 +1000667 return -EFSCORRUPTED;
Christoph Hellwigecb69282011-03-04 12:59:55 +0000668
669 xfs_alloc_log_agf(tp, agbp, XFS_AGF_FREEBLKS);
670 return 0;
671}
672
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673/*
674 * Allocation group level functions.
675 */
676
677/*
678 * Allocate a variable extent in the allocation group agno.
679 * Type and bno are used to determine where in the allocation group the
680 * extent will start.
681 * Extent's length (returned in *len) will be between minlen and maxlen,
682 * and of the form k * prod + mod unless there's nothing that large.
683 * Return the starting a.g. block, or NULLAGBLOCK if we can't do it.
684 */
685STATIC int /* error */
686xfs_alloc_ag_vextent(
687 xfs_alloc_arg_t *args) /* argument structure for allocation */
688{
689 int error=0;
Darrick J. Wong3fd129b2016-09-19 10:30:52 +1000690 xfs_extlen_t reservation;
691 xfs_extlen_t oldmax;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692
693 ASSERT(args->minlen > 0);
694 ASSERT(args->maxlen > 0);
695 ASSERT(args->minlen <= args->maxlen);
696 ASSERT(args->mod < args->prod);
697 ASSERT(args->alignment > 0);
Darrick J. Wong3fd129b2016-09-19 10:30:52 +1000698
699 /*
700 * Clamp maxlen to the amount of free space minus any reservations
701 * that have been made.
702 */
703 oldmax = args->maxlen;
704 reservation = xfs_ag_resv_needed(args->pag, args->resv);
705 if (args->maxlen > args->pag->pagf_freeblks - reservation)
706 args->maxlen = args->pag->pagf_freeblks - reservation;
707 if (args->maxlen == 0) {
708 args->agbno = NULLAGBLOCK;
709 args->maxlen = oldmax;
710 return 0;
711 }
712
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 /*
714 * Branch to correct routine based on the type.
715 */
716 args->wasfromfl = 0;
717 switch (args->type) {
718 case XFS_ALLOCTYPE_THIS_AG:
719 error = xfs_alloc_ag_vextent_size(args);
720 break;
721 case XFS_ALLOCTYPE_NEAR_BNO:
722 error = xfs_alloc_ag_vextent_near(args);
723 break;
724 case XFS_ALLOCTYPE_THIS_BNO:
725 error = xfs_alloc_ag_vextent_exact(args);
726 break;
727 default:
728 ASSERT(0);
729 /* NOTREACHED */
730 }
Christoph Hellwigecb69282011-03-04 12:59:55 +0000731
Darrick J. Wong3fd129b2016-09-19 10:30:52 +1000732 args->maxlen = oldmax;
733
Christoph Hellwigecb69282011-03-04 12:59:55 +0000734 if (error || args->agbno == NULLAGBLOCK)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736
Christoph Hellwigecb69282011-03-04 12:59:55 +0000737 ASSERT(args->len >= args->minlen);
738 ASSERT(args->len <= args->maxlen);
Darrick J. Wong3fd129b2016-09-19 10:30:52 +1000739 ASSERT(!args->wasfromfl || args->resv != XFS_AG_RESV_AGFL);
Christoph Hellwigecb69282011-03-04 12:59:55 +0000740 ASSERT(args->agbno % args->alignment == 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741
Darrick J. Wong673930c2016-08-03 11:33:43 +1000742 /* if not file data, insert new block into the reverse map btree */
743 if (args->oinfo.oi_owner != XFS_RMAP_OWN_UNKNOWN) {
744 error = xfs_rmap_alloc(args->tp, args->agbp, args->agno,
745 args->agbno, args->len, &args->oinfo);
746 if (error)
747 return error;
748 }
749
Christoph Hellwigecb69282011-03-04 12:59:55 +0000750 if (!args->wasfromfl) {
751 error = xfs_alloc_update_counters(args->tp, args->pag,
752 args->agbp,
753 -((long)(args->len)));
754 if (error)
755 return error;
756
Dave Chinner4ecbfe62012-04-29 10:41:10 +0000757 ASSERT(!xfs_extent_busy_search(args->mp, args->agno,
Christoph Hellwige26f0502011-04-24 19:06:15 +0000758 args->agbno, args->len));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 }
Christoph Hellwigecb69282011-03-04 12:59:55 +0000760
Darrick J. Wong3fd129b2016-09-19 10:30:52 +1000761 xfs_ag_resv_alloc_extent(args->pag, args->resv, args);
Christoph Hellwigecb69282011-03-04 12:59:55 +0000762
Bill O'Donnellff6d6af2015-10-12 18:21:22 +1100763 XFS_STATS_INC(args->mp, xs_allocx);
764 XFS_STATS_ADD(args->mp, xs_allocb, args->len);
Christoph Hellwigecb69282011-03-04 12:59:55 +0000765 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766}
767
768/*
769 * Allocate a variable extent at exactly agno/bno.
770 * Extent's length (returned in *len) will be between minlen and maxlen,
771 * and of the form k * prod + mod unless there's nothing that large.
772 * Return the starting a.g. block (bno), or NULLAGBLOCK if we can't do it.
773 */
774STATIC int /* error */
775xfs_alloc_ag_vextent_exact(
776 xfs_alloc_arg_t *args) /* allocation argument structure */
777{
778 xfs_btree_cur_t *bno_cur;/* by block-number btree cursor */
779 xfs_btree_cur_t *cnt_cur;/* by count btree cursor */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 int error;
781 xfs_agblock_t fbno; /* start block of found extent */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 xfs_extlen_t flen; /* length of found extent */
Christoph Hellwige26f0502011-04-24 19:06:15 +0000783 xfs_agblock_t tbno; /* start block of trimmed extent */
784 xfs_extlen_t tlen; /* length of trimmed extent */
785 xfs_agblock_t tend; /* end block of trimmed extent */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 int i; /* success/failure of operation */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787
788 ASSERT(args->alignment == 1);
Christoph Hellwig9f9baab2010-12-10 15:03:57 +0000789
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 /*
791 * Allocate/initialize a cursor for the by-number freespace btree.
792 */
Christoph Hellwig561f7d12008-10-30 16:53:59 +1100793 bno_cur = xfs_allocbt_init_cursor(args->mp, args->tp, args->agbp,
Christoph Hellwig9f9baab2010-12-10 15:03:57 +0000794 args->agno, XFS_BTNUM_BNO);
795
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 /*
797 * Lookup bno and minlen in the btree (minlen is irrelevant, really).
798 * Look for the closest free block <= bno, it must contain bno
799 * if any free block does.
800 */
Christoph Hellwig9f9baab2010-12-10 15:03:57 +0000801 error = xfs_alloc_lookup_le(bno_cur, args->agbno, args->minlen, &i);
802 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 goto error0;
Christoph Hellwig9f9baab2010-12-10 15:03:57 +0000804 if (!i)
805 goto not_found;
806
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 /*
808 * Grab the freespace record.
809 */
Christoph Hellwig9f9baab2010-12-10 15:03:57 +0000810 error = xfs_alloc_get_rec(bno_cur, &fbno, &flen, &i);
811 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 goto error0;
Eric Sandeenc29aad42015-02-23 22:39:08 +1100813 XFS_WANT_CORRUPTED_GOTO(args->mp, i == 1, error0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 ASSERT(fbno <= args->agbno);
Christoph Hellwig9f9baab2010-12-10 15:03:57 +0000815
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 /*
Christoph Hellwige26f0502011-04-24 19:06:15 +0000817 * Check for overlapping busy extents.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 */
Dave Chinner4ecbfe62012-04-29 10:41:10 +0000819 xfs_extent_busy_trim(args, fbno, flen, &tbno, &tlen);
Christoph Hellwige26f0502011-04-24 19:06:15 +0000820
821 /*
822 * Give up if the start of the extent is busy, or the freespace isn't
823 * long enough for the minimum request.
824 */
825 if (tbno > args->agbno)
826 goto not_found;
827 if (tlen < args->minlen)
828 goto not_found;
829 tend = tbno + tlen;
830 if (tend < args->agbno + args->minlen)
Christoph Hellwig9f9baab2010-12-10 15:03:57 +0000831 goto not_found;
832
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 /*
834 * End of extent will be smaller of the freespace end and the
835 * maximal requested end.
Christoph Hellwig9f9baab2010-12-10 15:03:57 +0000836 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 * Fix the length according to mod and prod if given.
838 */
Chandra Seetharaman81463b12011-06-09 16:47:49 +0000839 args->len = XFS_AGBLOCK_MIN(tend, args->agbno + args->maxlen)
840 - args->agbno;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 xfs_alloc_fix_len(args);
Christoph Hellwig9f9baab2010-12-10 15:03:57 +0000842 if (!xfs_alloc_fix_minleft(args))
843 goto not_found;
844
Chandra Seetharaman81463b12011-06-09 16:47:49 +0000845 ASSERT(args->agbno + args->len <= tend);
Christoph Hellwig9f9baab2010-12-10 15:03:57 +0000846
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 /*
Chandra Seetharaman81463b12011-06-09 16:47:49 +0000848 * We are allocating agbno for args->len
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 * Allocate/initialize a cursor for the by-size btree.
850 */
Christoph Hellwig561f7d12008-10-30 16:53:59 +1100851 cnt_cur = xfs_allocbt_init_cursor(args->mp, args->tp, args->agbp,
852 args->agno, XFS_BTNUM_CNT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 ASSERT(args->agbno + args->len <=
Christoph Hellwig16259e72005-11-02 15:11:25 +1100854 be32_to_cpu(XFS_BUF_TO_AGF(args->agbp)->agf_length));
Christoph Hellwig9f9baab2010-12-10 15:03:57 +0000855 error = xfs_alloc_fixup_trees(cnt_cur, bno_cur, fbno, flen, args->agbno,
856 args->len, XFSA_FIXUP_BNO_OK);
857 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 xfs_btree_del_cursor(cnt_cur, XFS_BTREE_ERROR);
859 goto error0;
860 }
Christoph Hellwig9f9baab2010-12-10 15:03:57 +0000861
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 xfs_btree_del_cursor(bno_cur, XFS_BTREE_NOERROR);
863 xfs_btree_del_cursor(cnt_cur, XFS_BTREE_NOERROR);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000864
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 args->wasfromfl = 0;
Christoph Hellwig9f9baab2010-12-10 15:03:57 +0000866 trace_xfs_alloc_exact_done(args);
867 return 0;
868
869not_found:
870 /* Didn't find it, return null. */
871 xfs_btree_del_cursor(bno_cur, XFS_BTREE_NOERROR);
872 args->agbno = NULLAGBLOCK;
873 trace_xfs_alloc_exact_notfound(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 return 0;
875
876error0:
877 xfs_btree_del_cursor(bno_cur, XFS_BTREE_ERROR);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +0000878 trace_xfs_alloc_exact_error(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 return error;
880}
881
882/*
Christoph Hellwig489a1502010-12-10 15:04:11 +0000883 * Search the btree in a given direction via the search cursor and compare
884 * the records found against the good extent we've already found.
885 */
886STATIC int
887xfs_alloc_find_best_extent(
888 struct xfs_alloc_arg *args, /* allocation argument structure */
889 struct xfs_btree_cur **gcur, /* good cursor */
890 struct xfs_btree_cur **scur, /* searching cursor */
891 xfs_agblock_t gdiff, /* difference for search comparison */
892 xfs_agblock_t *sbno, /* extent found by search */
Christoph Hellwige26f0502011-04-24 19:06:15 +0000893 xfs_extlen_t *slen, /* extent length */
894 xfs_agblock_t *sbnoa, /* aligned extent found by search */
895 xfs_extlen_t *slena, /* aligned extent length */
Christoph Hellwig489a1502010-12-10 15:04:11 +0000896 int dir) /* 0 = search right, 1 = search left */
897{
Christoph Hellwig489a1502010-12-10 15:04:11 +0000898 xfs_agblock_t new;
899 xfs_agblock_t sdiff;
900 int error;
901 int i;
902
903 /* The good extent is perfect, no need to search. */
904 if (!gdiff)
905 goto out_use_good;
906
907 /*
908 * Look until we find a better one, run out of space or run off the end.
909 */
910 do {
911 error = xfs_alloc_get_rec(*scur, sbno, slen, &i);
912 if (error)
913 goto error0;
Eric Sandeenc29aad42015-02-23 22:39:08 +1100914 XFS_WANT_CORRUPTED_GOTO(args->mp, i == 1, error0);
Christoph Hellwige26f0502011-04-24 19:06:15 +0000915 xfs_alloc_compute_aligned(args, *sbno, *slen, sbnoa, slena);
Christoph Hellwig489a1502010-12-10 15:04:11 +0000916
917 /*
918 * The good extent is closer than this one.
919 */
920 if (!dir) {
Brian Fosterbfe46d42015-05-29 08:53:00 +1000921 if (*sbnoa > args->max_agbno)
922 goto out_use_good;
Christoph Hellwige26f0502011-04-24 19:06:15 +0000923 if (*sbnoa >= args->agbno + gdiff)
Christoph Hellwig489a1502010-12-10 15:04:11 +0000924 goto out_use_good;
925 } else {
Brian Fosterbfe46d42015-05-29 08:53:00 +1000926 if (*sbnoa < args->min_agbno)
927 goto out_use_good;
Christoph Hellwige26f0502011-04-24 19:06:15 +0000928 if (*sbnoa <= args->agbno - gdiff)
Christoph Hellwig489a1502010-12-10 15:04:11 +0000929 goto out_use_good;
930 }
931
932 /*
933 * Same distance, compare length and pick the best.
934 */
935 if (*slena >= args->minlen) {
936 args->len = XFS_EXTLEN_MIN(*slena, args->maxlen);
937 xfs_alloc_fix_len(args);
938
939 sdiff = xfs_alloc_compute_diff(args->agbno, args->len,
Jan Kara211d0222013-04-11 22:09:56 +0200940 args->alignment,
Dave Chinner292378e2016-09-26 08:21:28 +1000941 args->datatype, *sbnoa,
Christoph Hellwige26f0502011-04-24 19:06:15 +0000942 *slena, &new);
Christoph Hellwig489a1502010-12-10 15:04:11 +0000943
944 /*
945 * Choose closer size and invalidate other cursor.
946 */
947 if (sdiff < gdiff)
948 goto out_use_search;
949 goto out_use_good;
950 }
951
952 if (!dir)
953 error = xfs_btree_increment(*scur, 0, &i);
954 else
955 error = xfs_btree_decrement(*scur, 0, &i);
956 if (error)
957 goto error0;
958 } while (i);
959
960out_use_good:
961 xfs_btree_del_cursor(*scur, XFS_BTREE_NOERROR);
962 *scur = NULL;
963 return 0;
964
965out_use_search:
966 xfs_btree_del_cursor(*gcur, XFS_BTREE_NOERROR);
967 *gcur = NULL;
968 return 0;
969
970error0:
971 /* caller invalidates cursors */
972 return error;
973}
974
975/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 * Allocate a variable extent near bno in the allocation group agno.
977 * Extent's length (returned in len) will be between minlen and maxlen,
978 * and of the form k * prod + mod unless there's nothing that large.
979 * Return the starting a.g. block, or NULLAGBLOCK if we can't do it.
980 */
981STATIC int /* error */
982xfs_alloc_ag_vextent_near(
983 xfs_alloc_arg_t *args) /* allocation argument structure */
984{
985 xfs_btree_cur_t *bno_cur_gt; /* cursor for bno btree, right side */
986 xfs_btree_cur_t *bno_cur_lt; /* cursor for bno btree, left side */
987 xfs_btree_cur_t *cnt_cur; /* cursor for count btree */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988 xfs_agblock_t gtbno; /* start bno of right side entry */
989 xfs_agblock_t gtbnoa; /* aligned ... */
990 xfs_extlen_t gtdiff; /* difference to right side entry */
991 xfs_extlen_t gtlen; /* length of right side entry */
Christoph Hellwige26f0502011-04-24 19:06:15 +0000992 xfs_extlen_t gtlena; /* aligned ... */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993 xfs_agblock_t gtnew; /* useful start bno of right side */
994 int error; /* error code */
995 int i; /* result code, temporary */
996 int j; /* result code, temporary */
997 xfs_agblock_t ltbno; /* start bno of left side entry */
998 xfs_agblock_t ltbnoa; /* aligned ... */
999 xfs_extlen_t ltdiff; /* difference to left side entry */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000 xfs_extlen_t ltlen; /* length of left side entry */
Christoph Hellwige26f0502011-04-24 19:06:15 +00001001 xfs_extlen_t ltlena; /* aligned ... */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002 xfs_agblock_t ltnew; /* useful start bno of left side */
1003 xfs_extlen_t rlen; /* length of returned extent */
Christoph Hellwige26f0502011-04-24 19:06:15 +00001004 int forced = 0;
Dave Chinner63d20d62013-08-12 20:49:50 +10001005#ifdef DEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 /*
1007 * Randomly don't execute the first algorithm.
1008 */
1009 int dofirst; /* set to do first algorithm */
1010
Akinobu Mitaecb34032013-03-04 21:58:20 +09001011 dofirst = prandom_u32() & 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012#endif
Christoph Hellwige26f0502011-04-24 19:06:15 +00001013
Brian Fosterbfe46d42015-05-29 08:53:00 +10001014 /* handle unitialized agbno range so caller doesn't have to */
1015 if (!args->min_agbno && !args->max_agbno)
1016 args->max_agbno = args->mp->m_sb.sb_agblocks - 1;
1017 ASSERT(args->min_agbno <= args->max_agbno);
1018
1019 /* clamp agbno to the range if it's outside */
1020 if (args->agbno < args->min_agbno)
1021 args->agbno = args->min_agbno;
1022 if (args->agbno > args->max_agbno)
1023 args->agbno = args->max_agbno;
1024
Christoph Hellwige26f0502011-04-24 19:06:15 +00001025restart:
1026 bno_cur_lt = NULL;
1027 bno_cur_gt = NULL;
1028 ltlen = 0;
1029 gtlena = 0;
1030 ltlena = 0;
1031
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032 /*
1033 * Get a cursor for the by-size btree.
1034 */
Christoph Hellwig561f7d12008-10-30 16:53:59 +11001035 cnt_cur = xfs_allocbt_init_cursor(args->mp, args->tp, args->agbp,
1036 args->agno, XFS_BTNUM_CNT);
Christoph Hellwige26f0502011-04-24 19:06:15 +00001037
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 /*
1039 * See if there are any free extents as big as maxlen.
1040 */
1041 if ((error = xfs_alloc_lookup_ge(cnt_cur, 0, args->maxlen, &i)))
1042 goto error0;
1043 /*
1044 * If none, then pick up the last entry in the tree unless the
1045 * tree is empty.
1046 */
1047 if (!i) {
1048 if ((error = xfs_alloc_ag_vextent_small(args, cnt_cur, &ltbno,
1049 &ltlen, &i)))
1050 goto error0;
1051 if (i == 0 || ltlen == 0) {
1052 xfs_btree_del_cursor(cnt_cur, XFS_BTREE_NOERROR);
Christoph Hellwige26f0502011-04-24 19:06:15 +00001053 trace_xfs_alloc_near_noentry(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054 return 0;
1055 }
1056 ASSERT(i == 1);
1057 }
1058 args->wasfromfl = 0;
Christoph Hellwige26f0502011-04-24 19:06:15 +00001059
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060 /*
1061 * First algorithm.
1062 * If the requested extent is large wrt the freespaces available
1063 * in this a.g., then the cursor will be pointing to a btree entry
1064 * near the right edge of the tree. If it's in the last btree leaf
1065 * block, then we just examine all the entries in that block
1066 * that are big enough, and pick the best one.
1067 * This is written as a while loop so we can break out of it,
1068 * but we never loop back to the top.
1069 */
1070 while (xfs_btree_islastblock(cnt_cur, 0)) {
1071 xfs_extlen_t bdiff;
1072 int besti=0;
1073 xfs_extlen_t blen=0;
1074 xfs_agblock_t bnew=0;
1075
Dave Chinner63d20d62013-08-12 20:49:50 +10001076#ifdef DEBUG
1077 if (dofirst)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078 break;
1079#endif
1080 /*
1081 * Start from the entry that lookup found, sequence through
1082 * all larger free blocks. If we're actually pointing at a
1083 * record smaller than maxlen, go to the start of this block,
1084 * and skip all those smaller than minlen.
1085 */
1086 if (ltlen || args->alignment > 1) {
1087 cnt_cur->bc_ptrs[0] = 1;
1088 do {
1089 if ((error = xfs_alloc_get_rec(cnt_cur, &ltbno,
1090 &ltlen, &i)))
1091 goto error0;
Eric Sandeenc29aad42015-02-23 22:39:08 +11001092 XFS_WANT_CORRUPTED_GOTO(args->mp, i == 1, error0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093 if (ltlen >= args->minlen)
1094 break;
Christoph Hellwig637aa502008-10-30 16:55:45 +11001095 if ((error = xfs_btree_increment(cnt_cur, 0, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096 goto error0;
1097 } while (i);
1098 ASSERT(ltlen >= args->minlen);
1099 if (!i)
1100 break;
1101 }
1102 i = cnt_cur->bc_ptrs[0];
1103 for (j = 1, blen = 0, bdiff = 0;
1104 !error && j && (blen < args->maxlen || bdiff > 0);
Christoph Hellwig637aa502008-10-30 16:55:45 +11001105 error = xfs_btree_increment(cnt_cur, 0, &j)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106 /*
1107 * For each entry, decide if it's better than
1108 * the previous best entry.
1109 */
1110 if ((error = xfs_alloc_get_rec(cnt_cur, &ltbno, &ltlen, &i)))
1111 goto error0;
Eric Sandeenc29aad42015-02-23 22:39:08 +11001112 XFS_WANT_CORRUPTED_GOTO(args->mp, i == 1, error0);
Christoph Hellwig86fa8af2011-03-04 12:59:54 +00001113 xfs_alloc_compute_aligned(args, ltbno, ltlen,
1114 &ltbnoa, &ltlena);
David Chinnere6430032008-04-17 16:49:49 +10001115 if (ltlena < args->minlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116 continue;
Brian Fosterbfe46d42015-05-29 08:53:00 +10001117 if (ltbnoa < args->min_agbno || ltbnoa > args->max_agbno)
1118 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119 args->len = XFS_EXTLEN_MIN(ltlena, args->maxlen);
1120 xfs_alloc_fix_len(args);
1121 ASSERT(args->len >= args->minlen);
1122 if (args->len < blen)
1123 continue;
1124 ltdiff = xfs_alloc_compute_diff(args->agbno, args->len,
Dave Chinner292378e2016-09-26 08:21:28 +10001125 args->alignment, args->datatype, ltbnoa,
Jan Kara211d0222013-04-11 22:09:56 +02001126 ltlena, &ltnew);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127 if (ltnew != NULLAGBLOCK &&
1128 (args->len > blen || ltdiff < bdiff)) {
1129 bdiff = ltdiff;
1130 bnew = ltnew;
1131 blen = args->len;
1132 besti = cnt_cur->bc_ptrs[0];
1133 }
1134 }
1135 /*
1136 * It didn't work. We COULD be in a case where
1137 * there's a good record somewhere, so try again.
1138 */
1139 if (blen == 0)
1140 break;
1141 /*
1142 * Point at the best entry, and retrieve it again.
1143 */
1144 cnt_cur->bc_ptrs[0] = besti;
1145 if ((error = xfs_alloc_get_rec(cnt_cur, &ltbno, &ltlen, &i)))
1146 goto error0;
Eric Sandeenc29aad42015-02-23 22:39:08 +11001147 XFS_WANT_CORRUPTED_GOTO(args->mp, i == 1, error0);
Christoph Hellwig73523a22010-07-20 17:54:45 +10001148 ASSERT(ltbno + ltlen <= be32_to_cpu(XFS_BUF_TO_AGF(args->agbp)->agf_length));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149 args->len = blen;
1150 if (!xfs_alloc_fix_minleft(args)) {
1151 xfs_btree_del_cursor(cnt_cur, XFS_BTREE_NOERROR);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001152 trace_xfs_alloc_near_nominleft(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153 return 0;
1154 }
1155 blen = args->len;
1156 /*
1157 * We are allocating starting at bnew for blen blocks.
1158 */
1159 args->agbno = bnew;
1160 ASSERT(bnew >= ltbno);
Christoph Hellwig73523a22010-07-20 17:54:45 +10001161 ASSERT(bnew + blen <= ltbno + ltlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162 /*
1163 * Set up a cursor for the by-bno tree.
1164 */
Christoph Hellwig561f7d12008-10-30 16:53:59 +11001165 bno_cur_lt = xfs_allocbt_init_cursor(args->mp, args->tp,
1166 args->agbp, args->agno, XFS_BTNUM_BNO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167 /*
1168 * Fix up the btree entries.
1169 */
1170 if ((error = xfs_alloc_fixup_trees(cnt_cur, bno_cur_lt, ltbno,
1171 ltlen, bnew, blen, XFSA_FIXUP_CNT_OK)))
1172 goto error0;
1173 xfs_btree_del_cursor(cnt_cur, XFS_BTREE_NOERROR);
1174 xfs_btree_del_cursor(bno_cur_lt, XFS_BTREE_NOERROR);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001175
1176 trace_xfs_alloc_near_first(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177 return 0;
1178 }
1179 /*
1180 * Second algorithm.
1181 * Search in the by-bno tree to the left and to the right
1182 * simultaneously, until in each case we find a space big enough,
1183 * or run into the edge of the tree. When we run into the edge,
1184 * we deallocate that cursor.
1185 * If both searches succeed, we compare the two spaces and pick
1186 * the better one.
1187 * With alignment, it's possible for both to fail; the upper
1188 * level algorithm that picks allocation groups for allocations
1189 * is not supposed to do this.
1190 */
1191 /*
1192 * Allocate and initialize the cursor for the leftward search.
1193 */
Christoph Hellwig561f7d12008-10-30 16:53:59 +11001194 bno_cur_lt = xfs_allocbt_init_cursor(args->mp, args->tp, args->agbp,
1195 args->agno, XFS_BTNUM_BNO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196 /*
1197 * Lookup <= bno to find the leftward search's starting point.
1198 */
1199 if ((error = xfs_alloc_lookup_le(bno_cur_lt, args->agbno, args->maxlen, &i)))
1200 goto error0;
1201 if (!i) {
1202 /*
1203 * Didn't find anything; use this cursor for the rightward
1204 * search.
1205 */
1206 bno_cur_gt = bno_cur_lt;
1207 bno_cur_lt = NULL;
1208 }
1209 /*
1210 * Found something. Duplicate the cursor for the rightward search.
1211 */
1212 else if ((error = xfs_btree_dup_cursor(bno_cur_lt, &bno_cur_gt)))
1213 goto error0;
1214 /*
1215 * Increment the cursor, so we will point at the entry just right
1216 * of the leftward entry if any, or to the leftmost entry.
1217 */
Christoph Hellwig637aa502008-10-30 16:55:45 +11001218 if ((error = xfs_btree_increment(bno_cur_gt, 0, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219 goto error0;
1220 if (!i) {
1221 /*
1222 * It failed, there are no rightward entries.
1223 */
1224 xfs_btree_del_cursor(bno_cur_gt, XFS_BTREE_NOERROR);
1225 bno_cur_gt = NULL;
1226 }
1227 /*
1228 * Loop going left with the leftward cursor, right with the
1229 * rightward cursor, until either both directions give up or
1230 * we find an entry at least as big as minlen.
1231 */
1232 do {
1233 if (bno_cur_lt) {
1234 if ((error = xfs_alloc_get_rec(bno_cur_lt, &ltbno, &ltlen, &i)))
1235 goto error0;
Eric Sandeenc29aad42015-02-23 22:39:08 +11001236 XFS_WANT_CORRUPTED_GOTO(args->mp, i == 1, error0);
Christoph Hellwig86fa8af2011-03-04 12:59:54 +00001237 xfs_alloc_compute_aligned(args, ltbno, ltlen,
1238 &ltbnoa, &ltlena);
Brian Fosterbfe46d42015-05-29 08:53:00 +10001239 if (ltlena >= args->minlen && ltbnoa >= args->min_agbno)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240 break;
Christoph Hellwig8df4da42008-10-30 16:55:58 +11001241 if ((error = xfs_btree_decrement(bno_cur_lt, 0, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242 goto error0;
Brian Fosterbfe46d42015-05-29 08:53:00 +10001243 if (!i || ltbnoa < args->min_agbno) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244 xfs_btree_del_cursor(bno_cur_lt,
1245 XFS_BTREE_NOERROR);
1246 bno_cur_lt = NULL;
1247 }
1248 }
1249 if (bno_cur_gt) {
1250 if ((error = xfs_alloc_get_rec(bno_cur_gt, &gtbno, &gtlen, &i)))
1251 goto error0;
Eric Sandeenc29aad42015-02-23 22:39:08 +11001252 XFS_WANT_CORRUPTED_GOTO(args->mp, i == 1, error0);
Christoph Hellwig86fa8af2011-03-04 12:59:54 +00001253 xfs_alloc_compute_aligned(args, gtbno, gtlen,
1254 &gtbnoa, &gtlena);
Brian Fosterbfe46d42015-05-29 08:53:00 +10001255 if (gtlena >= args->minlen && gtbnoa <= args->max_agbno)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256 break;
Christoph Hellwig637aa502008-10-30 16:55:45 +11001257 if ((error = xfs_btree_increment(bno_cur_gt, 0, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258 goto error0;
Brian Fosterbfe46d42015-05-29 08:53:00 +10001259 if (!i || gtbnoa > args->max_agbno) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260 xfs_btree_del_cursor(bno_cur_gt,
1261 XFS_BTREE_NOERROR);
1262 bno_cur_gt = NULL;
1263 }
1264 }
1265 } while (bno_cur_lt || bno_cur_gt);
Christoph Hellwig489a1502010-12-10 15:04:11 +00001266
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267 /*
1268 * Got both cursors still active, need to find better entry.
1269 */
1270 if (bno_cur_lt && bno_cur_gt) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271 if (ltlena >= args->minlen) {
1272 /*
Christoph Hellwig489a1502010-12-10 15:04:11 +00001273 * Left side is good, look for a right side entry.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274 */
1275 args->len = XFS_EXTLEN_MIN(ltlena, args->maxlen);
1276 xfs_alloc_fix_len(args);
Christoph Hellwig489a1502010-12-10 15:04:11 +00001277 ltdiff = xfs_alloc_compute_diff(args->agbno, args->len,
Dave Chinner292378e2016-09-26 08:21:28 +10001278 args->alignment, args->datatype, ltbnoa,
Jan Kara211d0222013-04-11 22:09:56 +02001279 ltlena, &ltnew);
Christoph Hellwig489a1502010-12-10 15:04:11 +00001280
1281 error = xfs_alloc_find_best_extent(args,
1282 &bno_cur_lt, &bno_cur_gt,
Christoph Hellwige26f0502011-04-24 19:06:15 +00001283 ltdiff, &gtbno, &gtlen,
1284 &gtbnoa, &gtlena,
Christoph Hellwig489a1502010-12-10 15:04:11 +00001285 0 /* search right */);
1286 } else {
1287 ASSERT(gtlena >= args->minlen);
1288
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289 /*
Christoph Hellwig489a1502010-12-10 15:04:11 +00001290 * Right side is good, look for a left side entry.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291 */
1292 args->len = XFS_EXTLEN_MIN(gtlena, args->maxlen);
1293 xfs_alloc_fix_len(args);
Christoph Hellwig489a1502010-12-10 15:04:11 +00001294 gtdiff = xfs_alloc_compute_diff(args->agbno, args->len,
Dave Chinner292378e2016-09-26 08:21:28 +10001295 args->alignment, args->datatype, gtbnoa,
Jan Kara211d0222013-04-11 22:09:56 +02001296 gtlena, &gtnew);
Christoph Hellwig489a1502010-12-10 15:04:11 +00001297
1298 error = xfs_alloc_find_best_extent(args,
1299 &bno_cur_gt, &bno_cur_lt,
Christoph Hellwige26f0502011-04-24 19:06:15 +00001300 gtdiff, &ltbno, &ltlen,
1301 &ltbnoa, &ltlena,
Christoph Hellwig489a1502010-12-10 15:04:11 +00001302 1 /* search left */);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303 }
Christoph Hellwig489a1502010-12-10 15:04:11 +00001304
1305 if (error)
1306 goto error0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307 }
Christoph Hellwig489a1502010-12-10 15:04:11 +00001308
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309 /*
1310 * If we couldn't get anything, give up.
1311 */
1312 if (bno_cur_lt == NULL && bno_cur_gt == NULL) {
Dave Chinnere3a746f52012-07-12 07:40:42 +10001313 xfs_btree_del_cursor(cnt_cur, XFS_BTREE_NOERROR);
1314
Christoph Hellwige26f0502011-04-24 19:06:15 +00001315 if (!forced++) {
1316 trace_xfs_alloc_near_busy(args);
1317 xfs_log_force(args->mp, XFS_LOG_SYNC);
1318 goto restart;
1319 }
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001320 trace_xfs_alloc_size_neither(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321 args->agbno = NULLAGBLOCK;
1322 return 0;
1323 }
Christoph Hellwig489a1502010-12-10 15:04:11 +00001324
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325 /*
1326 * At this point we have selected a freespace entry, either to the
1327 * left or to the right. If it's on the right, copy all the
1328 * useful variables to the "left" set so we only have one
1329 * copy of this code.
1330 */
1331 if (bno_cur_gt) {
1332 bno_cur_lt = bno_cur_gt;
1333 bno_cur_gt = NULL;
1334 ltbno = gtbno;
1335 ltbnoa = gtbnoa;
1336 ltlen = gtlen;
1337 ltlena = gtlena;
1338 j = 1;
1339 } else
1340 j = 0;
Christoph Hellwig489a1502010-12-10 15:04:11 +00001341
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342 /*
1343 * Fix up the length and compute the useful address.
1344 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345 args->len = XFS_EXTLEN_MIN(ltlena, args->maxlen);
1346 xfs_alloc_fix_len(args);
1347 if (!xfs_alloc_fix_minleft(args)) {
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001348 trace_xfs_alloc_near_nominleft(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349 xfs_btree_del_cursor(bno_cur_lt, XFS_BTREE_NOERROR);
1350 xfs_btree_del_cursor(cnt_cur, XFS_BTREE_NOERROR);
1351 return 0;
1352 }
1353 rlen = args->len;
Christoph Hellwige26f0502011-04-24 19:06:15 +00001354 (void)xfs_alloc_compute_diff(args->agbno, rlen, args->alignment,
Dave Chinner292378e2016-09-26 08:21:28 +10001355 args->datatype, ltbnoa, ltlena, &ltnew);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356 ASSERT(ltnew >= ltbno);
Christoph Hellwige26f0502011-04-24 19:06:15 +00001357 ASSERT(ltnew + rlen <= ltbnoa + ltlena);
Christoph Hellwig16259e72005-11-02 15:11:25 +11001358 ASSERT(ltnew + rlen <= be32_to_cpu(XFS_BUF_TO_AGF(args->agbp)->agf_length));
Brian Fosterbfe46d42015-05-29 08:53:00 +10001359 ASSERT(ltnew >= args->min_agbno && ltnew <= args->max_agbno);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360 args->agbno = ltnew;
Christoph Hellwige26f0502011-04-24 19:06:15 +00001361
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362 if ((error = xfs_alloc_fixup_trees(cnt_cur, bno_cur_lt, ltbno, ltlen,
1363 ltnew, rlen, XFSA_FIXUP_BNO_OK)))
1364 goto error0;
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001365
1366 if (j)
1367 trace_xfs_alloc_near_greater(args);
1368 else
1369 trace_xfs_alloc_near_lesser(args);
1370
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371 xfs_btree_del_cursor(cnt_cur, XFS_BTREE_NOERROR);
1372 xfs_btree_del_cursor(bno_cur_lt, XFS_BTREE_NOERROR);
1373 return 0;
1374
1375 error0:
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001376 trace_xfs_alloc_near_error(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377 if (cnt_cur != NULL)
1378 xfs_btree_del_cursor(cnt_cur, XFS_BTREE_ERROR);
1379 if (bno_cur_lt != NULL)
1380 xfs_btree_del_cursor(bno_cur_lt, XFS_BTREE_ERROR);
1381 if (bno_cur_gt != NULL)
1382 xfs_btree_del_cursor(bno_cur_gt, XFS_BTREE_ERROR);
1383 return error;
1384}
1385
1386/*
1387 * Allocate a variable extent anywhere in the allocation group agno.
1388 * Extent's length (returned in len) will be between minlen and maxlen,
1389 * and of the form k * prod + mod unless there's nothing that large.
1390 * Return the starting a.g. block, or NULLAGBLOCK if we can't do it.
1391 */
1392STATIC int /* error */
1393xfs_alloc_ag_vextent_size(
1394 xfs_alloc_arg_t *args) /* allocation argument structure */
1395{
1396 xfs_btree_cur_t *bno_cur; /* cursor for bno btree */
1397 xfs_btree_cur_t *cnt_cur; /* cursor for cnt btree */
1398 int error; /* error result */
1399 xfs_agblock_t fbno; /* start of found freespace */
1400 xfs_extlen_t flen; /* length of found freespace */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401 int i; /* temp status variable */
1402 xfs_agblock_t rbno; /* returned block number */
1403 xfs_extlen_t rlen; /* length of returned extent */
Christoph Hellwige26f0502011-04-24 19:06:15 +00001404 int forced = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405
Christoph Hellwige26f0502011-04-24 19:06:15 +00001406restart:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407 /*
1408 * Allocate and initialize a cursor for the by-size btree.
1409 */
Christoph Hellwig561f7d12008-10-30 16:53:59 +11001410 cnt_cur = xfs_allocbt_init_cursor(args->mp, args->tp, args->agbp,
1411 args->agno, XFS_BTNUM_CNT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412 bno_cur = NULL;
Christoph Hellwige26f0502011-04-24 19:06:15 +00001413
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414 /*
1415 * Look for an entry >= maxlen+alignment-1 blocks.
1416 */
1417 if ((error = xfs_alloc_lookup_ge(cnt_cur, 0,
1418 args->maxlen + args->alignment - 1, &i)))
1419 goto error0;
Christoph Hellwige26f0502011-04-24 19:06:15 +00001420
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421 /*
Christoph Hellwige26f0502011-04-24 19:06:15 +00001422 * If none or we have busy extents that we cannot allocate from, then
1423 * we have to settle for a smaller extent. In the case that there are
1424 * no large extents, this will return the last entry in the tree unless
1425 * the tree is empty. In the case that there are only busy large
1426 * extents, this will return the largest small extent unless there
1427 * are no smaller extents available.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428 */
Christoph Hellwige26f0502011-04-24 19:06:15 +00001429 if (!i || forced > 1) {
1430 error = xfs_alloc_ag_vextent_small(args, cnt_cur,
1431 &fbno, &flen, &i);
1432 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433 goto error0;
1434 if (i == 0 || flen == 0) {
1435 xfs_btree_del_cursor(cnt_cur, XFS_BTREE_NOERROR);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001436 trace_xfs_alloc_size_noentry(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437 return 0;
1438 }
1439 ASSERT(i == 1);
Christoph Hellwige26f0502011-04-24 19:06:15 +00001440 xfs_alloc_compute_aligned(args, fbno, flen, &rbno, &rlen);
1441 } else {
1442 /*
1443 * Search for a non-busy extent that is large enough.
1444 * If we are at low space, don't check, or if we fall of
1445 * the end of the btree, turn off the busy check and
1446 * restart.
1447 */
1448 for (;;) {
1449 error = xfs_alloc_get_rec(cnt_cur, &fbno, &flen, &i);
1450 if (error)
1451 goto error0;
Eric Sandeenc29aad42015-02-23 22:39:08 +11001452 XFS_WANT_CORRUPTED_GOTO(args->mp, i == 1, error0);
Christoph Hellwige26f0502011-04-24 19:06:15 +00001453
1454 xfs_alloc_compute_aligned(args, fbno, flen,
1455 &rbno, &rlen);
1456
1457 if (rlen >= args->maxlen)
1458 break;
1459
1460 error = xfs_btree_increment(cnt_cur, 0, &i);
1461 if (error)
1462 goto error0;
1463 if (i == 0) {
1464 /*
1465 * Our only valid extents must have been busy.
1466 * Make it unbusy by forcing the log out and
1467 * retrying. If we've been here before, forcing
1468 * the log isn't making the extents available,
1469 * which means they have probably been freed in
1470 * this transaction. In that case, we have to
1471 * give up on them and we'll attempt a minlen
1472 * allocation the next time around.
1473 */
1474 xfs_btree_del_cursor(cnt_cur,
1475 XFS_BTREE_NOERROR);
1476 trace_xfs_alloc_size_busy(args);
1477 if (!forced++)
1478 xfs_log_force(args->mp, XFS_LOG_SYNC);
1479 goto restart;
1480 }
1481 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482 }
Christoph Hellwige26f0502011-04-24 19:06:15 +00001483
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484 /*
1485 * In the first case above, we got the last entry in the
1486 * by-size btree. Now we check to see if the space hits maxlen
1487 * once aligned; if not, we search left for something better.
1488 * This can't happen in the second case above.
1489 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490 rlen = XFS_EXTLEN_MIN(args->maxlen, rlen);
Eric Sandeenc29aad42015-02-23 22:39:08 +11001491 XFS_WANT_CORRUPTED_GOTO(args->mp, rlen == 0 ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492 (rlen <= flen && rbno + rlen <= fbno + flen), error0);
1493 if (rlen < args->maxlen) {
1494 xfs_agblock_t bestfbno;
1495 xfs_extlen_t bestflen;
1496 xfs_agblock_t bestrbno;
1497 xfs_extlen_t bestrlen;
1498
1499 bestrlen = rlen;
1500 bestrbno = rbno;
1501 bestflen = flen;
1502 bestfbno = fbno;
1503 for (;;) {
Christoph Hellwig8df4da42008-10-30 16:55:58 +11001504 if ((error = xfs_btree_decrement(cnt_cur, 0, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505 goto error0;
1506 if (i == 0)
1507 break;
1508 if ((error = xfs_alloc_get_rec(cnt_cur, &fbno, &flen,
1509 &i)))
1510 goto error0;
Eric Sandeenc29aad42015-02-23 22:39:08 +11001511 XFS_WANT_CORRUPTED_GOTO(args->mp, i == 1, error0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512 if (flen < bestrlen)
1513 break;
Christoph Hellwig86fa8af2011-03-04 12:59:54 +00001514 xfs_alloc_compute_aligned(args, fbno, flen,
1515 &rbno, &rlen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516 rlen = XFS_EXTLEN_MIN(args->maxlen, rlen);
Eric Sandeenc29aad42015-02-23 22:39:08 +11001517 XFS_WANT_CORRUPTED_GOTO(args->mp, rlen == 0 ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518 (rlen <= flen && rbno + rlen <= fbno + flen),
1519 error0);
1520 if (rlen > bestrlen) {
1521 bestrlen = rlen;
1522 bestrbno = rbno;
1523 bestflen = flen;
1524 bestfbno = fbno;
1525 if (rlen == args->maxlen)
1526 break;
1527 }
1528 }
1529 if ((error = xfs_alloc_lookup_eq(cnt_cur, bestfbno, bestflen,
1530 &i)))
1531 goto error0;
Eric Sandeenc29aad42015-02-23 22:39:08 +11001532 XFS_WANT_CORRUPTED_GOTO(args->mp, i == 1, error0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533 rlen = bestrlen;
1534 rbno = bestrbno;
1535 flen = bestflen;
1536 fbno = bestfbno;
1537 }
1538 args->wasfromfl = 0;
1539 /*
1540 * Fix up the length.
1541 */
1542 args->len = rlen;
Christoph Hellwige26f0502011-04-24 19:06:15 +00001543 if (rlen < args->minlen) {
1544 if (!forced++) {
1545 xfs_btree_del_cursor(cnt_cur, XFS_BTREE_NOERROR);
1546 trace_xfs_alloc_size_busy(args);
1547 xfs_log_force(args->mp, XFS_LOG_SYNC);
1548 goto restart;
1549 }
1550 goto out_nominleft;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551 }
Christoph Hellwige26f0502011-04-24 19:06:15 +00001552 xfs_alloc_fix_len(args);
1553
1554 if (!xfs_alloc_fix_minleft(args))
1555 goto out_nominleft;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556 rlen = args->len;
Eric Sandeenc29aad42015-02-23 22:39:08 +11001557 XFS_WANT_CORRUPTED_GOTO(args->mp, rlen <= flen, error0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558 /*
1559 * Allocate and initialize a cursor for the by-block tree.
1560 */
Christoph Hellwig561f7d12008-10-30 16:53:59 +11001561 bno_cur = xfs_allocbt_init_cursor(args->mp, args->tp, args->agbp,
1562 args->agno, XFS_BTNUM_BNO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563 if ((error = xfs_alloc_fixup_trees(cnt_cur, bno_cur, fbno, flen,
1564 rbno, rlen, XFSA_FIXUP_CNT_OK)))
1565 goto error0;
1566 xfs_btree_del_cursor(cnt_cur, XFS_BTREE_NOERROR);
1567 xfs_btree_del_cursor(bno_cur, XFS_BTREE_NOERROR);
1568 cnt_cur = bno_cur = NULL;
1569 args->len = rlen;
1570 args->agbno = rbno;
Eric Sandeenc29aad42015-02-23 22:39:08 +11001571 XFS_WANT_CORRUPTED_GOTO(args->mp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572 args->agbno + args->len <=
Christoph Hellwig16259e72005-11-02 15:11:25 +11001573 be32_to_cpu(XFS_BUF_TO_AGF(args->agbp)->agf_length),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574 error0);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001575 trace_xfs_alloc_size_done(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576 return 0;
1577
1578error0:
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001579 trace_xfs_alloc_size_error(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580 if (cnt_cur)
1581 xfs_btree_del_cursor(cnt_cur, XFS_BTREE_ERROR);
1582 if (bno_cur)
1583 xfs_btree_del_cursor(bno_cur, XFS_BTREE_ERROR);
1584 return error;
Christoph Hellwige26f0502011-04-24 19:06:15 +00001585
1586out_nominleft:
1587 xfs_btree_del_cursor(cnt_cur, XFS_BTREE_NOERROR);
1588 trace_xfs_alloc_size_nominleft(args);
1589 args->agbno = NULLAGBLOCK;
1590 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591}
1592
1593/*
1594 * Deal with the case where only small freespaces remain.
1595 * Either return the contents of the last freespace record,
1596 * or allocate space from the freelist if there is nothing in the tree.
1597 */
1598STATIC int /* error */
1599xfs_alloc_ag_vextent_small(
1600 xfs_alloc_arg_t *args, /* allocation argument structure */
1601 xfs_btree_cur_t *ccur, /* by-size cursor */
1602 xfs_agblock_t *fbnop, /* result block number */
1603 xfs_extlen_t *flenp, /* result length */
1604 int *stat) /* status: 0-freelist, 1-normal/none */
1605{
Darrick J. Wonga03f1a62016-08-17 11:12:57 +10001606 struct xfs_owner_info oinfo;
Darrick J. Wong3fd129b2016-09-19 10:30:52 +10001607 struct xfs_perag *pag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608 int error;
1609 xfs_agblock_t fbno;
1610 xfs_extlen_t flen;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611 int i;
1612
Christoph Hellwig8df4da42008-10-30 16:55:58 +11001613 if ((error = xfs_btree_decrement(ccur, 0, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614 goto error0;
1615 if (i) {
1616 if ((error = xfs_alloc_get_rec(ccur, &fbno, &flen, &i)))
1617 goto error0;
Eric Sandeenc29aad42015-02-23 22:39:08 +11001618 XFS_WANT_CORRUPTED_GOTO(args->mp, i == 1, error0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619 }
1620 /*
1621 * Nothing in the btree, try the freelist. Make sure
1622 * to respect minleft even when pulling from the
1623 * freelist.
1624 */
Darrick J. Wong3fd129b2016-09-19 10:30:52 +10001625 else if (args->minlen == 1 && args->alignment == 1 &&
1626 args->resv != XFS_AG_RESV_AGFL &&
Christoph Hellwig16259e72005-11-02 15:11:25 +11001627 (be32_to_cpu(XFS_BUF_TO_AGF(args->agbp)->agf_flcount)
1628 > args->minleft)) {
David Chinner92821e22007-05-24 15:26:31 +10001629 error = xfs_alloc_get_freelist(args->tp, args->agbp, &fbno, 0);
1630 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631 goto error0;
1632 if (fbno != NULLAGBLOCK) {
Dave Chinner4ecbfe62012-04-29 10:41:10 +00001633 xfs_extent_busy_reuse(args->mp, args->agno, fbno, 1,
Dave Chinner292378e2016-09-26 08:21:28 +10001634 xfs_alloc_allow_busy_reuse(args->datatype));
Christoph Hellwig97d3ac72011-04-24 19:06:16 +00001635
Dave Chinner292378e2016-09-26 08:21:28 +10001636 if (xfs_alloc_is_userdata(args->datatype)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637 xfs_buf_t *bp;
1638
1639 bp = xfs_btree_get_bufs(args->mp, args->tp,
1640 args->agno, fbno, 0);
1641 xfs_trans_binval(args->tp, bp);
1642 }
1643 args->len = 1;
1644 args->agbno = fbno;
Eric Sandeenc29aad42015-02-23 22:39:08 +11001645 XFS_WANT_CORRUPTED_GOTO(args->mp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646 args->agbno + args->len <=
Christoph Hellwig16259e72005-11-02 15:11:25 +11001647 be32_to_cpu(XFS_BUF_TO_AGF(args->agbp)->agf_length),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648 error0);
1649 args->wasfromfl = 1;
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001650 trace_xfs_alloc_small_freelist(args);
Darrick J. Wonga03f1a62016-08-17 11:12:57 +10001651
1652 /*
1653 * If we're feeding an AGFL block to something that
1654 * doesn't live in the free space, we need to clear
Darrick J. Wong3fd129b2016-09-19 10:30:52 +10001655 * out the OWN_AG rmap and add the block back to
1656 * the AGFL per-AG reservation.
Darrick J. Wonga03f1a62016-08-17 11:12:57 +10001657 */
1658 xfs_rmap_ag_owner(&oinfo, XFS_RMAP_OWN_AG);
1659 error = xfs_rmap_free(args->tp, args->agbp, args->agno,
1660 fbno, 1, &oinfo);
1661 if (error)
1662 goto error0;
Darrick J. Wong3fd129b2016-09-19 10:30:52 +10001663 pag = xfs_perag_get(args->mp, args->agno);
1664 xfs_ag_resv_free_extent(pag, XFS_AG_RESV_AGFL,
1665 args->tp, 1);
1666 xfs_perag_put(pag);
Darrick J. Wonga03f1a62016-08-17 11:12:57 +10001667
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668 *stat = 0;
1669 return 0;
1670 }
1671 /*
1672 * Nothing in the freelist.
1673 */
1674 else
1675 flen = 0;
1676 }
1677 /*
1678 * Can't allocate from the freelist for some reason.
1679 */
Nathan Scottd432c802006-09-28 11:03:44 +10001680 else {
1681 fbno = NULLAGBLOCK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682 flen = 0;
Nathan Scottd432c802006-09-28 11:03:44 +10001683 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684 /*
1685 * Can't do the allocation, give up.
1686 */
1687 if (flen < args->minlen) {
1688 args->agbno = NULLAGBLOCK;
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001689 trace_xfs_alloc_small_notenough(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690 flen = 0;
1691 }
1692 *fbnop = fbno;
1693 *flenp = flen;
1694 *stat = 1;
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001695 trace_xfs_alloc_small_done(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696 return 0;
1697
1698error0:
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001699 trace_xfs_alloc_small_error(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700 return error;
1701}
1702
1703/*
1704 * Free the extent starting at agno/bno for length.
1705 */
Darrick J. Wong340785c2016-08-03 11:33:42 +10001706STATIC int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707xfs_free_ag_extent(
Darrick J. Wong340785c2016-08-03 11:33:42 +10001708 xfs_trans_t *tp,
1709 xfs_buf_t *agbp,
1710 xfs_agnumber_t agno,
1711 xfs_agblock_t bno,
1712 xfs_extlen_t len,
1713 struct xfs_owner_info *oinfo,
Darrick J. Wong3fd129b2016-09-19 10:30:52 +10001714 enum xfs_ag_resv_type type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715{
1716 xfs_btree_cur_t *bno_cur; /* cursor for by-block btree */
1717 xfs_btree_cur_t *cnt_cur; /* cursor for by-size btree */
1718 int error; /* error return value */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719 xfs_agblock_t gtbno; /* start of right neighbor block */
1720 xfs_extlen_t gtlen; /* length of right neighbor block */
1721 int haveleft; /* have a left neighbor block */
1722 int haveright; /* have a right neighbor block */
1723 int i; /* temp, result code */
1724 xfs_agblock_t ltbno; /* start of left neighbor block */
1725 xfs_extlen_t ltlen; /* length of left neighbor block */
1726 xfs_mount_t *mp; /* mount point struct for filesystem */
1727 xfs_agblock_t nbno; /* new starting block of freespace */
1728 xfs_extlen_t nlen; /* new length of freespace */
Christoph Hellwigecb69282011-03-04 12:59:55 +00001729 xfs_perag_t *pag; /* per allocation group data */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001730
Darrick J. Wong673930c2016-08-03 11:33:43 +10001731 bno_cur = cnt_cur = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732 mp = tp->t_mountp;
Darrick J. Wong673930c2016-08-03 11:33:43 +10001733
1734 if (oinfo->oi_owner != XFS_RMAP_OWN_UNKNOWN) {
1735 error = xfs_rmap_free(tp, agbp, agno, bno, len, oinfo);
1736 if (error)
1737 goto error0;
1738 }
1739
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740 /*
1741 * Allocate and initialize a cursor for the by-block btree.
1742 */
Christoph Hellwig561f7d12008-10-30 16:53:59 +11001743 bno_cur = xfs_allocbt_init_cursor(mp, tp, agbp, agno, XFS_BTNUM_BNO);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744 /*
1745 * Look for a neighboring block on the left (lower block numbers)
1746 * that is contiguous with this space.
1747 */
1748 if ((error = xfs_alloc_lookup_le(bno_cur, bno, len, &haveleft)))
1749 goto error0;
1750 if (haveleft) {
1751 /*
1752 * There is a block to our left.
1753 */
1754 if ((error = xfs_alloc_get_rec(bno_cur, &ltbno, &ltlen, &i)))
1755 goto error0;
Eric Sandeenc29aad42015-02-23 22:39:08 +11001756 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, error0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757 /*
1758 * It's not contiguous, though.
1759 */
1760 if (ltbno + ltlen < bno)
1761 haveleft = 0;
1762 else {
1763 /*
1764 * If this failure happens the request to free this
1765 * space was invalid, it's (partly) already free.
1766 * Very bad.
1767 */
Eric Sandeenc29aad42015-02-23 22:39:08 +11001768 XFS_WANT_CORRUPTED_GOTO(mp,
1769 ltbno + ltlen <= bno, error0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770 }
1771 }
1772 /*
1773 * Look for a neighboring block on the right (higher block numbers)
1774 * that is contiguous with this space.
1775 */
Christoph Hellwig637aa502008-10-30 16:55:45 +11001776 if ((error = xfs_btree_increment(bno_cur, 0, &haveright)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777 goto error0;
1778 if (haveright) {
1779 /*
1780 * There is a block to our right.
1781 */
1782 if ((error = xfs_alloc_get_rec(bno_cur, &gtbno, &gtlen, &i)))
1783 goto error0;
Eric Sandeenc29aad42015-02-23 22:39:08 +11001784 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, error0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785 /*
1786 * It's not contiguous, though.
1787 */
1788 if (bno + len < gtbno)
1789 haveright = 0;
1790 else {
1791 /*
1792 * If this failure happens the request to free this
1793 * space was invalid, it's (partly) already free.
1794 * Very bad.
1795 */
Eric Sandeenc29aad42015-02-23 22:39:08 +11001796 XFS_WANT_CORRUPTED_GOTO(mp, gtbno >= bno + len, error0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797 }
1798 }
1799 /*
1800 * Now allocate and initialize a cursor for the by-size tree.
1801 */
Christoph Hellwig561f7d12008-10-30 16:53:59 +11001802 cnt_cur = xfs_allocbt_init_cursor(mp, tp, agbp, agno, XFS_BTNUM_CNT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803 /*
1804 * Have both left and right contiguous neighbors.
1805 * Merge all three into a single free block.
1806 */
1807 if (haveleft && haveright) {
1808 /*
1809 * Delete the old by-size entry on the left.
1810 */
1811 if ((error = xfs_alloc_lookup_eq(cnt_cur, ltbno, ltlen, &i)))
1812 goto error0;
Eric Sandeenc29aad42015-02-23 22:39:08 +11001813 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, error0);
Christoph Hellwig91cca5df2008-10-30 16:58:01 +11001814 if ((error = xfs_btree_delete(cnt_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 * Delete the old by-size entry on the right.
1819 */
1820 if ((error = xfs_alloc_lookup_eq(cnt_cur, gtbno, gtlen, &i)))
1821 goto error0;
Eric Sandeenc29aad42015-02-23 22:39:08 +11001822 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, error0);
Christoph Hellwig91cca5df2008-10-30 16:58:01 +11001823 if ((error = xfs_btree_delete(cnt_cur, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824 goto error0;
Eric Sandeenc29aad42015-02-23 22:39:08 +11001825 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, error0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826 /*
1827 * Delete the old by-block entry for the right block.
1828 */
Christoph Hellwig91cca5df2008-10-30 16:58:01 +11001829 if ((error = xfs_btree_delete(bno_cur, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830 goto error0;
Eric Sandeenc29aad42015-02-23 22:39:08 +11001831 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, error0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832 /*
1833 * Move the by-block cursor back to the left neighbor.
1834 */
Christoph Hellwig8df4da42008-10-30 16:55:58 +11001835 if ((error = xfs_btree_decrement(bno_cur, 0, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836 goto error0;
Eric Sandeenc29aad42015-02-23 22:39:08 +11001837 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, error0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838#ifdef DEBUG
1839 /*
1840 * Check that this is the right record: delete didn't
1841 * mangle the cursor.
1842 */
1843 {
1844 xfs_agblock_t xxbno;
1845 xfs_extlen_t xxlen;
1846
1847 if ((error = xfs_alloc_get_rec(bno_cur, &xxbno, &xxlen,
1848 &i)))
1849 goto error0;
Eric Sandeenc29aad42015-02-23 22:39:08 +11001850 XFS_WANT_CORRUPTED_GOTO(mp,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851 i == 1 && xxbno == ltbno && xxlen == ltlen,
1852 error0);
1853 }
1854#endif
1855 /*
1856 * Update remaining by-block entry to the new, joined block.
1857 */
1858 nbno = ltbno;
1859 nlen = len + ltlen + gtlen;
1860 if ((error = xfs_alloc_update(bno_cur, nbno, nlen)))
1861 goto error0;
1862 }
1863 /*
1864 * Have only a left contiguous neighbor.
1865 * Merge it together with the new freespace.
1866 */
1867 else if (haveleft) {
1868 /*
1869 * Delete the old by-size entry on the left.
1870 */
1871 if ((error = xfs_alloc_lookup_eq(cnt_cur, ltbno, ltlen, &i)))
1872 goto error0;
Eric Sandeenc29aad42015-02-23 22:39:08 +11001873 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, error0);
Christoph Hellwig91cca5df2008-10-30 16:58:01 +11001874 if ((error = xfs_btree_delete(cnt_cur, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875 goto error0;
Eric Sandeenc29aad42015-02-23 22:39:08 +11001876 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, error0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877 /*
1878 * Back up the by-block cursor to the left neighbor, and
1879 * update its length.
1880 */
Christoph Hellwig8df4da42008-10-30 16:55:58 +11001881 if ((error = xfs_btree_decrement(bno_cur, 0, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882 goto error0;
Eric Sandeenc29aad42015-02-23 22:39:08 +11001883 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, error0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884 nbno = ltbno;
1885 nlen = len + ltlen;
1886 if ((error = xfs_alloc_update(bno_cur, nbno, nlen)))
1887 goto error0;
1888 }
1889 /*
1890 * Have only a right contiguous neighbor.
1891 * Merge it together with the new freespace.
1892 */
1893 else if (haveright) {
1894 /*
1895 * Delete the old by-size entry on the right.
1896 */
1897 if ((error = xfs_alloc_lookup_eq(cnt_cur, gtbno, gtlen, &i)))
1898 goto error0;
Eric Sandeenc29aad42015-02-23 22:39:08 +11001899 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, error0);
Christoph Hellwig91cca5df2008-10-30 16:58:01 +11001900 if ((error = xfs_btree_delete(cnt_cur, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901 goto error0;
Eric Sandeenc29aad42015-02-23 22:39:08 +11001902 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, error0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903 /*
1904 * Update the starting block and length of the right
1905 * neighbor in the by-block tree.
1906 */
1907 nbno = bno;
1908 nlen = len + gtlen;
1909 if ((error = xfs_alloc_update(bno_cur, nbno, nlen)))
1910 goto error0;
1911 }
1912 /*
1913 * No contiguous neighbors.
1914 * Insert the new freespace into the by-block tree.
1915 */
1916 else {
1917 nbno = bno;
1918 nlen = len;
Christoph Hellwig4b22a572008-10-30 16:57:40 +11001919 if ((error = xfs_btree_insert(bno_cur, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920 goto error0;
Eric Sandeenc29aad42015-02-23 22:39:08 +11001921 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, error0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922 }
1923 xfs_btree_del_cursor(bno_cur, XFS_BTREE_NOERROR);
1924 bno_cur = NULL;
1925 /*
1926 * In all cases we need to insert the new freespace in the by-size tree.
1927 */
1928 if ((error = xfs_alloc_lookup_eq(cnt_cur, nbno, nlen, &i)))
1929 goto error0;
Eric Sandeenc29aad42015-02-23 22:39:08 +11001930 XFS_WANT_CORRUPTED_GOTO(mp, i == 0, error0);
Christoph Hellwig4b22a572008-10-30 16:57:40 +11001931 if ((error = xfs_btree_insert(cnt_cur, &i)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932 goto error0;
Eric Sandeenc29aad42015-02-23 22:39:08 +11001933 XFS_WANT_CORRUPTED_GOTO(mp, i == 1, error0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001934 xfs_btree_del_cursor(cnt_cur, XFS_BTREE_NOERROR);
1935 cnt_cur = NULL;
Christoph Hellwigecb69282011-03-04 12:59:55 +00001936
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937 /*
1938 * Update the freespace totals in the ag and superblock.
1939 */
Christoph Hellwigecb69282011-03-04 12:59:55 +00001940 pag = xfs_perag_get(mp, agno);
1941 error = xfs_alloc_update_counters(tp, pag, agbp, len);
Darrick J. Wong3fd129b2016-09-19 10:30:52 +10001942 xfs_ag_resv_free_extent(pag, type, tp, len);
Christoph Hellwigecb69282011-03-04 12:59:55 +00001943 xfs_perag_put(pag);
1944 if (error)
1945 goto error0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946
Bill O'Donnellff6d6af2015-10-12 18:21:22 +11001947 XFS_STATS_INC(mp, xs_freex);
1948 XFS_STATS_ADD(mp, xs_freeb, len);
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00001949
Darrick J. Wong3fd129b2016-09-19 10:30:52 +10001950 trace_xfs_free_extent(mp, agno, bno, len, type == XFS_AG_RESV_AGFL,
1951 haveleft, haveright);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953 return 0;
1954
1955 error0:
Darrick J. Wong3fd129b2016-09-19 10:30:52 +10001956 trace_xfs_free_extent(mp, agno, bno, len, type == XFS_AG_RESV_AGFL,
1957 -1, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001958 if (bno_cur)
1959 xfs_btree_del_cursor(bno_cur, XFS_BTREE_ERROR);
1960 if (cnt_cur)
1961 xfs_btree_del_cursor(cnt_cur, XFS_BTREE_ERROR);
1962 return error;
1963}
1964
1965/*
1966 * Visible (exported) allocation/free functions.
1967 * Some of these are used just by xfs_alloc_btree.c and this file.
1968 */
1969
1970/*
1971 * Compute and fill in value of m_ag_maxlevels.
1972 */
1973void
1974xfs_alloc_compute_maxlevels(
1975 xfs_mount_t *mp) /* file system mount structure */
1976{
Darrick J. Wong19b54ee2016-06-21 11:53:28 +10001977 mp->m_ag_maxlevels = xfs_btree_compute_maxlevels(mp, mp->m_alloc_mnr,
1978 (mp->m_sb.sb_agblocks + 1) / 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001979}
1980
1981/*
Darrick J. Wong3fd129b2016-09-19 10:30:52 +10001982 * Find the length of the longest extent in an AG. The 'need' parameter
1983 * specifies how much space we're going to need for the AGFL and the
1984 * 'reserved' parameter tells us how many blocks in this AG are reserved for
1985 * other callers.
Dave Chinner6cc87642009-03-16 08:29:46 +01001986 */
1987xfs_extlen_t
1988xfs_alloc_longest_free_extent(
1989 struct xfs_mount *mp,
Dave Chinner50adbcb2015-06-22 10:04:31 +10001990 struct xfs_perag *pag,
Darrick J. Wong3fd129b2016-09-19 10:30:52 +10001991 xfs_extlen_t need,
1992 xfs_extlen_t reserved)
Dave Chinner6cc87642009-03-16 08:29:46 +01001993{
Dave Chinner50adbcb2015-06-22 10:04:31 +10001994 xfs_extlen_t delta = 0;
Dave Chinner6cc87642009-03-16 08:29:46 +01001995
Darrick J. Wong3fd129b2016-09-19 10:30:52 +10001996 /*
1997 * If the AGFL needs a recharge, we'll have to subtract that from the
1998 * longest extent.
1999 */
Dave Chinner6cc87642009-03-16 08:29:46 +01002000 if (need > pag->pagf_flcount)
2001 delta = need - pag->pagf_flcount;
2002
Darrick J. Wong3fd129b2016-09-19 10:30:52 +10002003 /*
2004 * If we cannot maintain others' reservations with space from the
2005 * not-longest freesp extents, we'll have to subtract /that/ from
2006 * the longest extent too.
2007 */
2008 if (pag->pagf_freeblks - pag->pagf_longest < reserved)
2009 delta += reserved - (pag->pagf_freeblks - pag->pagf_longest);
2010
2011 /*
2012 * If the longest extent is long enough to satisfy all the
2013 * reservations and AGFL rules in place, we can return this extent.
2014 */
Dave Chinner6cc87642009-03-16 08:29:46 +01002015 if (pag->pagf_longest > delta)
2016 return pag->pagf_longest - delta;
Darrick J. Wong3fd129b2016-09-19 10:30:52 +10002017
2018 /* Otherwise, let the caller try for 1 block if there's space. */
Dave Chinner6cc87642009-03-16 08:29:46 +01002019 return pag->pagf_flcount > 0 || pag->pagf_longest > 0;
2020}
2021
Dave Chinner496817b2015-06-22 10:13:30 +10002022unsigned int
2023xfs_alloc_min_freelist(
2024 struct xfs_mount *mp,
2025 struct xfs_perag *pag)
2026{
2027 unsigned int min_free;
2028
2029 /* space needed by-bno freespace btree */
2030 min_free = min_t(unsigned int, pag->pagf_levels[XFS_BTNUM_BNOi] + 1,
2031 mp->m_ag_maxlevels);
2032 /* space needed by-size freespace btree */
2033 min_free += min_t(unsigned int, pag->pagf_levels[XFS_BTNUM_CNTi] + 1,
2034 mp->m_ag_maxlevels);
Darrick J. Wong52548852016-08-03 11:38:24 +10002035 /* space needed reverse mapping used space btree */
2036 if (xfs_sb_version_hasrmapbt(&mp->m_sb))
2037 min_free += min_t(unsigned int,
2038 pag->pagf_levels[XFS_BTNUM_RMAPi] + 1,
2039 mp->m_rmap_maxlevels);
Dave Chinner496817b2015-06-22 10:13:30 +10002040
2041 return min_free;
2042}
2043
Dave Chinner6cc87642009-03-16 08:29:46 +01002044/*
Dave Chinner72d55282015-06-22 10:04:42 +10002045 * Check if the operation we are fixing up the freelist for should go ahead or
2046 * not. If we are freeing blocks, we always allow it, otherwise the allocation
2047 * is dependent on whether the size and shape of free space available will
2048 * permit the requested allocation to take place.
2049 */
2050static bool
2051xfs_alloc_space_available(
2052 struct xfs_alloc_arg *args,
2053 xfs_extlen_t min_free,
2054 int flags)
2055{
2056 struct xfs_perag *pag = args->pag;
2057 xfs_extlen_t longest;
Darrick J. Wong3fd129b2016-09-19 10:30:52 +10002058 xfs_extlen_t reservation; /* blocks that are still reserved */
Dave Chinner72d55282015-06-22 10:04:42 +10002059 int available;
2060
2061 if (flags & XFS_ALLOC_FLAG_FREEING)
2062 return true;
2063
Darrick J. Wong3fd129b2016-09-19 10:30:52 +10002064 reservation = xfs_ag_resv_needed(pag, args->resv);
2065
Dave Chinner72d55282015-06-22 10:04:42 +10002066 /* do we have enough contiguous free space for the allocation? */
Darrick J. Wong3fd129b2016-09-19 10:30:52 +10002067 longest = xfs_alloc_longest_free_extent(args->mp, pag, min_free,
2068 reservation);
Dave Chinner72d55282015-06-22 10:04:42 +10002069 if ((args->minlen + args->alignment + args->minalignslop - 1) > longest)
2070 return false;
2071
Darrick J. Wong3fd129b2016-09-19 10:30:52 +10002072 /* do we have enough free space remaining for the allocation? */
Dave Chinner72d55282015-06-22 10:04:42 +10002073 available = (int)(pag->pagf_freeblks + pag->pagf_flcount -
Darrick J. Wong3fd129b2016-09-19 10:30:52 +10002074 reservation - min_free - args->total);
2075 if (available < (int)args->minleft || available <= 0)
Dave Chinner72d55282015-06-22 10:04:42 +10002076 return false;
2077
2078 return true;
2079}
2080
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081/*
2082 * Decide whether to use this allocation group for this allocation.
2083 * If so, fix up the btree freelist's size.
2084 */
Darrick J. Wong2e9101d2016-01-04 16:10:42 +11002085int /* error */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086xfs_alloc_fix_freelist(
Dave Chinner396503f2015-06-22 10:13:19 +10002087 struct xfs_alloc_arg *args, /* allocation argument structure */
2088 int flags) /* XFS_ALLOC_FLAG_... */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002089{
Dave Chinner396503f2015-06-22 10:13:19 +10002090 struct xfs_mount *mp = args->mp;
2091 struct xfs_perag *pag = args->pag;
2092 struct xfs_trans *tp = args->tp;
2093 struct xfs_buf *agbp = NULL;
2094 struct xfs_buf *agflbp = NULL;
2095 struct xfs_alloc_arg targs; /* local allocation arguments */
2096 xfs_agblock_t bno; /* freelist block */
2097 xfs_extlen_t need; /* total blocks needed in freelist */
Jan Karac184f852015-08-25 10:05:13 +10002098 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100 if (!pag->pagf_init) {
Dave Chinner396503f2015-06-22 10:13:19 +10002101 error = xfs_alloc_read_agf(mp, tp, args->agno, flags, &agbp);
2102 if (error)
2103 goto out_no_agbp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104 if (!pag->pagf_init) {
Nathan Scott0e1edbd2006-08-10 14:40:41 +10002105 ASSERT(flags & XFS_ALLOC_FLAG_TRYLOCK);
2106 ASSERT(!(flags & XFS_ALLOC_FLAG_FREEING));
Dave Chinner396503f2015-06-22 10:13:19 +10002107 goto out_agbp_relse;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002108 }
Dave Chinner396503f2015-06-22 10:13:19 +10002109 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002110
Nathan Scott0e1edbd2006-08-10 14:40:41 +10002111 /*
Dave Chinner396503f2015-06-22 10:13:19 +10002112 * If this is a metadata preferred pag and we are user data then try
2113 * somewhere else if we are not being asked to try harder at this
2114 * point
Linus Torvalds1da177e2005-04-16 15:20:36 -07002115 */
Dave Chinner292378e2016-09-26 08:21:28 +10002116 if (pag->pagf_metadata && xfs_alloc_is_userdata(args->datatype) &&
Nathan Scott0e1edbd2006-08-10 14:40:41 +10002117 (flags & XFS_ALLOC_FLAG_TRYLOCK)) {
2118 ASSERT(!(flags & XFS_ALLOC_FLAG_FREEING));
Dave Chinner396503f2015-06-22 10:13:19 +10002119 goto out_agbp_relse;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002120 }
2121
Dave Chinner496817b2015-06-22 10:13:30 +10002122 need = xfs_alloc_min_freelist(mp, pag);
Dave Chinner396503f2015-06-22 10:13:19 +10002123 if (!xfs_alloc_space_available(args, need, flags))
2124 goto out_agbp_relse;
Nathan Scott0e1edbd2006-08-10 14:40:41 +10002125
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126 /*
2127 * Get the a.g. freespace buffer.
2128 * Can fail if we're not blocking on locks, and it's held.
2129 */
Dave Chinner396503f2015-06-22 10:13:19 +10002130 if (!agbp) {
2131 error = xfs_alloc_read_agf(mp, tp, args->agno, flags, &agbp);
2132 if (error)
2133 goto out_no_agbp;
2134 if (!agbp) {
Nathan Scott0e1edbd2006-08-10 14:40:41 +10002135 ASSERT(flags & XFS_ALLOC_FLAG_TRYLOCK);
2136 ASSERT(!(flags & XFS_ALLOC_FLAG_FREEING));
Dave Chinner396503f2015-06-22 10:13:19 +10002137 goto out_no_agbp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138 }
2139 }
Dave Chinner50adbcb2015-06-22 10:04:31 +10002140
Dave Chinner50adbcb2015-06-22 10:04:31 +10002141 /* If there isn't enough total space or single-extent, reject it. */
Dave Chinner496817b2015-06-22 10:13:30 +10002142 need = xfs_alloc_min_freelist(mp, pag);
Dave Chinner396503f2015-06-22 10:13:19 +10002143 if (!xfs_alloc_space_available(args, need, flags))
2144 goto out_agbp_relse;
Dave Chinner72d55282015-06-22 10:04:42 +10002145
Linus Torvalds1da177e2005-04-16 15:20:36 -07002146 /*
2147 * Make the freelist shorter if it's too long.
Dave Chinner50adbcb2015-06-22 10:04:31 +10002148 *
Dave Chinner396503f2015-06-22 10:13:19 +10002149 * Note that from this point onwards, we will always release the agf and
2150 * agfl buffers on error. This handles the case where we error out and
2151 * the buffers are clean or may not have been joined to the transaction
2152 * and hence need to be released manually. If they have been joined to
2153 * the transaction, then xfs_trans_brelse() will handle them
2154 * appropriately based on the recursion count and dirty state of the
2155 * buffer.
2156 *
Dave Chinner50adbcb2015-06-22 10:04:31 +10002157 * XXX (dgc): When we have lots of free space, does this buy us
2158 * anything other than extra overhead when we need to put more blocks
2159 * back on the free list? Maybe we should only do this when space is
2160 * getting low or the AGFL is more than half full?
Darrick J. Wong04f13062016-08-03 12:19:53 +10002161 *
2162 * The NOSHRINK flag prevents the AGFL from being shrunk if it's too
2163 * big; the NORMAP flag prevents AGFL expand/shrink operations from
2164 * updating the rmapbt. Both flags are used in xfs_repair while we're
2165 * rebuilding the rmapbt, and neither are used by the kernel. They're
2166 * both required to ensure that rmaps are correctly recorded for the
2167 * regenerated AGFL, bnobt, and cntbt. See repair/phase5.c and
2168 * repair/rmap.c in xfsprogs for details.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002169 */
Darrick J. Wong04f13062016-08-03 12:19:53 +10002170 memset(&targs, 0, sizeof(targs));
2171 if (flags & XFS_ALLOC_FLAG_NORMAP)
2172 xfs_rmap_skip_owner_update(&targs.oinfo);
2173 else
2174 xfs_rmap_ag_owner(&targs.oinfo, XFS_RMAP_OWN_AG);
2175 while (!(flags & XFS_ALLOC_FLAG_NOSHRINK) && pag->pagf_flcount > need) {
Dave Chinner50adbcb2015-06-22 10:04:31 +10002176 struct xfs_buf *bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002177
David Chinner92821e22007-05-24 15:26:31 +10002178 error = xfs_alloc_get_freelist(tp, agbp, &bno, 0);
2179 if (error)
Dave Chinner396503f2015-06-22 10:13:19 +10002180 goto out_agbp_relse;
Darrick J. Wong340785c2016-08-03 11:33:42 +10002181 error = xfs_free_ag_extent(tp, agbp, args->agno, bno, 1,
Darrick J. Wong3fd129b2016-09-19 10:30:52 +10002182 &targs.oinfo, XFS_AG_RESV_AGFL);
Dave Chinner50adbcb2015-06-22 10:04:31 +10002183 if (error)
Dave Chinner396503f2015-06-22 10:13:19 +10002184 goto out_agbp_relse;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185 bp = xfs_btree_get_bufs(mp, tp, args->agno, bno, 0);
2186 xfs_trans_binval(tp, bp);
2187 }
Dave Chinner50adbcb2015-06-22 10:04:31 +10002188
Linus Torvalds1da177e2005-04-16 15:20:36 -07002189 targs.tp = tp;
2190 targs.mp = mp;
2191 targs.agbp = agbp;
2192 targs.agno = args->agno;
Darrick J. Wong3fd129b2016-09-19 10:30:52 +10002193 targs.alignment = targs.minlen = targs.prod = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002194 targs.type = XFS_ALLOCTYPE_THIS_AG;
2195 targs.pag = pag;
Dave Chinner50adbcb2015-06-22 10:04:31 +10002196 error = xfs_alloc_read_agfl(mp, tp, targs.agno, &agflbp);
2197 if (error)
Dave Chinner396503f2015-06-22 10:13:19 +10002198 goto out_agbp_relse;
Dave Chinner50adbcb2015-06-22 10:04:31 +10002199
2200 /* Make the freelist longer if it's too short. */
2201 while (pag->pagf_flcount < need) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202 targs.agbno = 0;
Dave Chinner50adbcb2015-06-22 10:04:31 +10002203 targs.maxlen = need - pag->pagf_flcount;
Darrick J. Wong3fd129b2016-09-19 10:30:52 +10002204 targs.resv = XFS_AG_RESV_AGFL;
Dave Chinner50adbcb2015-06-22 10:04:31 +10002205
2206 /* Allocate as many blocks as possible at once. */
2207 error = xfs_alloc_ag_vextent(&targs);
Dave Chinner396503f2015-06-22 10:13:19 +10002208 if (error)
2209 goto out_agflbp_relse;
2210
Linus Torvalds1da177e2005-04-16 15:20:36 -07002211 /*
2212 * Stop if we run out. Won't happen if callers are obeying
2213 * the restrictions correctly. Can happen for free calls
2214 * on a completely full ag.
2215 */
Yingping Lud210a282006-06-09 14:55:18 +10002216 if (targs.agbno == NULLAGBLOCK) {
Nathan Scott0e1edbd2006-08-10 14:40:41 +10002217 if (flags & XFS_ALLOC_FLAG_FREEING)
2218 break;
Dave Chinner396503f2015-06-22 10:13:19 +10002219 goto out_agflbp_relse;
Yingping Lud210a282006-06-09 14:55:18 +10002220 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002221 /*
2222 * Put each allocated block on the list.
2223 */
2224 for (bno = targs.agbno; bno < targs.agbno + targs.len; bno++) {
David Chinner92821e22007-05-24 15:26:31 +10002225 error = xfs_alloc_put_freelist(tp, agbp,
2226 agflbp, bno, 0);
2227 if (error)
Dave Chinner396503f2015-06-22 10:13:19 +10002228 goto out_agflbp_relse;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002229 }
2230 }
Nathan Scotte63a3692006-05-08 19:51:58 +10002231 xfs_trans_brelse(tp, agflbp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002232 args->agbp = agbp;
2233 return 0;
Dave Chinner396503f2015-06-22 10:13:19 +10002234
2235out_agflbp_relse:
2236 xfs_trans_brelse(tp, agflbp);
2237out_agbp_relse:
2238 if (agbp)
2239 xfs_trans_brelse(tp, agbp);
2240out_no_agbp:
2241 args->agbp = NULL;
2242 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002243}
2244
2245/*
2246 * Get a block from the freelist.
2247 * Returns with the buffer for the block gotten.
2248 */
2249int /* error */
2250xfs_alloc_get_freelist(
2251 xfs_trans_t *tp, /* transaction pointer */
2252 xfs_buf_t *agbp, /* buffer containing the agf structure */
David Chinner92821e22007-05-24 15:26:31 +10002253 xfs_agblock_t *bnop, /* block address retrieved from freelist */
2254 int btreeblk) /* destination is a AGF btree */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002255{
2256 xfs_agf_t *agf; /* a.g. freespace structure */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002257 xfs_buf_t *agflbp;/* buffer for a.g. freelist structure */
2258 xfs_agblock_t bno; /* block number returned */
Christoph Hellwig77c95bb2013-04-03 16:11:14 +11002259 __be32 *agfl_bno;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002260 int error;
David Chinner92821e22007-05-24 15:26:31 +10002261 int logflags;
Christoph Hellwig77c95bb2013-04-03 16:11:14 +11002262 xfs_mount_t *mp = tp->t_mountp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002263 xfs_perag_t *pag; /* per allocation group data */
2264
Linus Torvalds1da177e2005-04-16 15:20:36 -07002265 /*
2266 * Freelist is empty, give up.
2267 */
Christoph Hellwig77c95bb2013-04-03 16:11:14 +11002268 agf = XFS_BUF_TO_AGF(agbp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002269 if (!agf->agf_flcount) {
2270 *bnop = NULLAGBLOCK;
2271 return 0;
2272 }
2273 /*
2274 * Read the array of free blocks.
2275 */
Christoph Hellwig77c95bb2013-04-03 16:11:14 +11002276 error = xfs_alloc_read_agfl(mp, tp, be32_to_cpu(agf->agf_seqno),
2277 &agflbp);
2278 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002279 return error;
Christoph Hellwig77c95bb2013-04-03 16:11:14 +11002280
2281
Linus Torvalds1da177e2005-04-16 15:20:36 -07002282 /*
2283 * Get the block number and update the data structures.
2284 */
Christoph Hellwig77c95bb2013-04-03 16:11:14 +11002285 agfl_bno = XFS_BUF_TO_AGFL_BNO(mp, agflbp);
2286 bno = be32_to_cpu(agfl_bno[be32_to_cpu(agf->agf_flfirst)]);
Marcin Slusarz413d57c2008-02-13 15:03:29 -08002287 be32_add_cpu(&agf->agf_flfirst, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002288 xfs_trans_brelse(tp, agflbp);
Christoph Hellwig16259e72005-11-02 15:11:25 +11002289 if (be32_to_cpu(agf->agf_flfirst) == XFS_AGFL_SIZE(mp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002290 agf->agf_flfirst = 0;
Dave Chinnera862e0f2010-01-11 11:47:41 +00002291
2292 pag = xfs_perag_get(mp, be32_to_cpu(agf->agf_seqno));
Marcin Slusarz413d57c2008-02-13 15:03:29 -08002293 be32_add_cpu(&agf->agf_flcount, -1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002294 xfs_trans_agflist_delta(tp, -1);
2295 pag->pagf_flcount--;
Dave Chinnera862e0f2010-01-11 11:47:41 +00002296 xfs_perag_put(pag);
David Chinner92821e22007-05-24 15:26:31 +10002297
2298 logflags = XFS_AGF_FLFIRST | XFS_AGF_FLCOUNT;
2299 if (btreeblk) {
Marcin Slusarz413d57c2008-02-13 15:03:29 -08002300 be32_add_cpu(&agf->agf_btreeblks, 1);
David Chinner92821e22007-05-24 15:26:31 +10002301 pag->pagf_btreeblks++;
2302 logflags |= XFS_AGF_BTREEBLKS;
2303 }
2304
David Chinner92821e22007-05-24 15:26:31 +10002305 xfs_alloc_log_agf(tp, agbp, logflags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002306 *bnop = bno;
2307
Linus Torvalds1da177e2005-04-16 15:20:36 -07002308 return 0;
2309}
2310
2311/*
2312 * Log the given fields from the agf structure.
2313 */
2314void
2315xfs_alloc_log_agf(
2316 xfs_trans_t *tp, /* transaction pointer */
2317 xfs_buf_t *bp, /* buffer for a.g. freelist header */
2318 int fields) /* mask of fields to be logged (XFS_AGF_...) */
2319{
2320 int first; /* first byte offset */
2321 int last; /* last byte offset */
2322 static const short offsets[] = {
2323 offsetof(xfs_agf_t, agf_magicnum),
2324 offsetof(xfs_agf_t, agf_versionnum),
2325 offsetof(xfs_agf_t, agf_seqno),
2326 offsetof(xfs_agf_t, agf_length),
2327 offsetof(xfs_agf_t, agf_roots[0]),
2328 offsetof(xfs_agf_t, agf_levels[0]),
2329 offsetof(xfs_agf_t, agf_flfirst),
2330 offsetof(xfs_agf_t, agf_fllast),
2331 offsetof(xfs_agf_t, agf_flcount),
2332 offsetof(xfs_agf_t, agf_freeblks),
2333 offsetof(xfs_agf_t, agf_longest),
David Chinner92821e22007-05-24 15:26:31 +10002334 offsetof(xfs_agf_t, agf_btreeblks),
Dave Chinner4e0e6042013-04-03 16:11:13 +11002335 offsetof(xfs_agf_t, agf_uuid),
Darrick J. Wongf32866fd2016-08-17 08:31:49 +10002336 offsetof(xfs_agf_t, agf_rmap_blocks),
Darrick J. Wongda1f0392016-08-26 15:59:31 +10002337 /* needed so that we don't log the whole rest of the structure: */
2338 offsetof(xfs_agf_t, agf_spare64),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002339 sizeof(xfs_agf_t)
2340 };
2341
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002342 trace_xfs_agf(tp->t_mountp, XFS_BUF_TO_AGF(bp), fields, _RET_IP_);
2343
Dave Chinner61fe1352013-04-03 16:11:30 +11002344 xfs_trans_buf_set_type(tp, bp, XFS_BLFT_AGF_BUF);
Dave Chinner4e0e6042013-04-03 16:11:13 +11002345
Linus Torvalds1da177e2005-04-16 15:20:36 -07002346 xfs_btree_offsets(fields, offsets, XFS_AGF_NUM_BITS, &first, &last);
2347 xfs_trans_log_buf(tp, bp, (uint)first, (uint)last);
2348}
2349
2350/*
2351 * Interface for inode allocation to force the pag data to be initialized.
2352 */
2353int /* error */
2354xfs_alloc_pagf_init(
2355 xfs_mount_t *mp, /* file system mount structure */
2356 xfs_trans_t *tp, /* transaction pointer */
2357 xfs_agnumber_t agno, /* allocation group number */
2358 int flags) /* XFS_ALLOC_FLAGS_... */
2359{
2360 xfs_buf_t *bp;
2361 int error;
2362
2363 if ((error = xfs_alloc_read_agf(mp, tp, agno, flags, &bp)))
2364 return error;
2365 if (bp)
2366 xfs_trans_brelse(tp, bp);
2367 return 0;
2368}
2369
2370/*
2371 * Put the block on the freelist for the allocation group.
2372 */
2373int /* error */
2374xfs_alloc_put_freelist(
2375 xfs_trans_t *tp, /* transaction pointer */
2376 xfs_buf_t *agbp, /* buffer for a.g. freelist header */
2377 xfs_buf_t *agflbp,/* buffer for a.g. free block array */
David Chinner92821e22007-05-24 15:26:31 +10002378 xfs_agblock_t bno, /* block being freed */
2379 int btreeblk) /* block came from a AGF btree */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002380{
2381 xfs_agf_t *agf; /* a.g. freespace structure */
Christoph Hellwige2101002006-09-28 10:56:51 +10002382 __be32 *blockp;/* pointer to array entry */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002383 int error;
David Chinner92821e22007-05-24 15:26:31 +10002384 int logflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002385 xfs_mount_t *mp; /* mount structure */
2386 xfs_perag_t *pag; /* per allocation group data */
Christoph Hellwig77c95bb2013-04-03 16:11:14 +11002387 __be32 *agfl_bno;
2388 int startoff;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002389
2390 agf = XFS_BUF_TO_AGF(agbp);
2391 mp = tp->t_mountp;
2392
2393 if (!agflbp && (error = xfs_alloc_read_agfl(mp, tp,
Christoph Hellwig16259e72005-11-02 15:11:25 +11002394 be32_to_cpu(agf->agf_seqno), &agflbp)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002395 return error;
Marcin Slusarz413d57c2008-02-13 15:03:29 -08002396 be32_add_cpu(&agf->agf_fllast, 1);
Christoph Hellwig16259e72005-11-02 15:11:25 +11002397 if (be32_to_cpu(agf->agf_fllast) == XFS_AGFL_SIZE(mp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002398 agf->agf_fllast = 0;
Dave Chinnera862e0f2010-01-11 11:47:41 +00002399
2400 pag = xfs_perag_get(mp, be32_to_cpu(agf->agf_seqno));
Marcin Slusarz413d57c2008-02-13 15:03:29 -08002401 be32_add_cpu(&agf->agf_flcount, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002402 xfs_trans_agflist_delta(tp, 1);
2403 pag->pagf_flcount++;
David Chinner92821e22007-05-24 15:26:31 +10002404
2405 logflags = XFS_AGF_FLLAST | XFS_AGF_FLCOUNT;
2406 if (btreeblk) {
Marcin Slusarz413d57c2008-02-13 15:03:29 -08002407 be32_add_cpu(&agf->agf_btreeblks, -1);
David Chinner92821e22007-05-24 15:26:31 +10002408 pag->pagf_btreeblks--;
2409 logflags |= XFS_AGF_BTREEBLKS;
2410 }
Dave Chinnera862e0f2010-01-11 11:47:41 +00002411 xfs_perag_put(pag);
David Chinner92821e22007-05-24 15:26:31 +10002412
David Chinner92821e22007-05-24 15:26:31 +10002413 xfs_alloc_log_agf(tp, agbp, logflags);
2414
Christoph Hellwig16259e72005-11-02 15:11:25 +11002415 ASSERT(be32_to_cpu(agf->agf_flcount) <= XFS_AGFL_SIZE(mp));
Christoph Hellwig77c95bb2013-04-03 16:11:14 +11002416
2417 agfl_bno = XFS_BUF_TO_AGFL_BNO(mp, agflbp);
2418 blockp = &agfl_bno[be32_to_cpu(agf->agf_fllast)];
Christoph Hellwige2101002006-09-28 10:56:51 +10002419 *blockp = cpu_to_be32(bno);
Christoph Hellwig77c95bb2013-04-03 16:11:14 +11002420 startoff = (char *)blockp - (char *)agflbp->b_addr;
2421
David Chinner92821e22007-05-24 15:26:31 +10002422 xfs_alloc_log_agf(tp, agbp, logflags);
Christoph Hellwig77c95bb2013-04-03 16:11:14 +11002423
Dave Chinner61fe1352013-04-03 16:11:30 +11002424 xfs_trans_buf_set_type(tp, agflbp, XFS_BLFT_AGFL_BUF);
Christoph Hellwig77c95bb2013-04-03 16:11:14 +11002425 xfs_trans_log_buf(tp, agflbp, startoff,
2426 startoff + sizeof(xfs_agblock_t) - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002427 return 0;
2428}
2429
Dave Chinner4e0e6042013-04-03 16:11:13 +11002430static bool
Dave Chinner612cfbf2012-11-14 17:52:32 +11002431xfs_agf_verify(
Dave Chinner4e0e6042013-04-03 16:11:13 +11002432 struct xfs_mount *mp,
Dave Chinner5d5f5272012-11-14 17:44:56 +11002433 struct xfs_buf *bp)
2434 {
Dave Chinner4e0e6042013-04-03 16:11:13 +11002435 struct xfs_agf *agf = XFS_BUF_TO_AGF(bp);
Dave Chinner5d5f5272012-11-14 17:44:56 +11002436
Brian Fostera45086e2015-10-12 15:59:25 +11002437 if (xfs_sb_version_hascrc(&mp->m_sb)) {
2438 if (!uuid_equal(&agf->agf_uuid, &mp->m_sb.sb_meta_uuid))
Dave Chinner4e0e6042013-04-03 16:11:13 +11002439 return false;
Brian Fostera45086e2015-10-12 15:59:25 +11002440 if (!xfs_log_check_lsn(mp,
2441 be64_to_cpu(XFS_BUF_TO_AGF(bp)->agf_lsn)))
2442 return false;
2443 }
Dave Chinner5d5f5272012-11-14 17:44:56 +11002444
Dave Chinner4e0e6042013-04-03 16:11:13 +11002445 if (!(agf->agf_magicnum == cpu_to_be32(XFS_AGF_MAGIC) &&
2446 XFS_AGF_GOOD_VERSION(be32_to_cpu(agf->agf_versionnum)) &&
2447 be32_to_cpu(agf->agf_freeblks) <= be32_to_cpu(agf->agf_length) &&
2448 be32_to_cpu(agf->agf_flfirst) < XFS_AGFL_SIZE(mp) &&
2449 be32_to_cpu(agf->agf_fllast) < XFS_AGFL_SIZE(mp) &&
2450 be32_to_cpu(agf->agf_flcount) <= XFS_AGFL_SIZE(mp)))
2451 return false;
Dave Chinner5d5f5272012-11-14 17:44:56 +11002452
Eric Sandeene1b05722014-09-09 11:47:24 +10002453 if (be32_to_cpu(agf->agf_levels[XFS_BTNUM_BNO]) > XFS_BTREE_MAXLEVELS ||
2454 be32_to_cpu(agf->agf_levels[XFS_BTNUM_CNT]) > XFS_BTREE_MAXLEVELS)
2455 return false;
2456
Darrick J. Wongb8704942016-08-03 11:30:32 +10002457 if (xfs_sb_version_hasrmapbt(&mp->m_sb) &&
2458 be32_to_cpu(agf->agf_levels[XFS_BTNUM_RMAP]) > XFS_BTREE_MAXLEVELS)
2459 return false;
2460
Dave Chinner5d5f5272012-11-14 17:44:56 +11002461 /*
2462 * during growfs operations, the perag is not fully initialised,
2463 * so we can't use it for any useful checking. growfs ensures we can't
2464 * use it by using uncached buffers that don't have the perag attached
2465 * so we can detect and avoid this problem.
2466 */
Dave Chinner4e0e6042013-04-03 16:11:13 +11002467 if (bp->b_pag && be32_to_cpu(agf->agf_seqno) != bp->b_pag->pag_agno)
2468 return false;
Dave Chinner5d5f5272012-11-14 17:44:56 +11002469
Dave Chinner4e0e6042013-04-03 16:11:13 +11002470 if (xfs_sb_version_haslazysbcount(&mp->m_sb) &&
2471 be32_to_cpu(agf->agf_btreeblks) > be32_to_cpu(agf->agf_length))
2472 return false;
Dave Chinner5d5f5272012-11-14 17:44:56 +11002473
Darrick J. Wong46eeb522016-10-03 09:11:16 -07002474 if (xfs_sb_version_hasreflink(&mp->m_sb) &&
2475 be32_to_cpu(agf->agf_refcount_level) > XFS_BTREE_MAXLEVELS)
2476 return false;
2477
Dave Chinner4e0e6042013-04-03 16:11:13 +11002478 return true;;
2479
Dave Chinner612cfbf2012-11-14 17:52:32 +11002480}
Dave Chinner5d5f5272012-11-14 17:44:56 +11002481
Dave Chinner1813dd62012-11-14 17:54:40 +11002482static void
2483xfs_agf_read_verify(
Dave Chinner612cfbf2012-11-14 17:52:32 +11002484 struct xfs_buf *bp)
2485{
Dave Chinner4e0e6042013-04-03 16:11:13 +11002486 struct xfs_mount *mp = bp->b_target->bt_mount;
Dave Chinner4e0e6042013-04-03 16:11:13 +11002487
Eric Sandeence5028c2014-02-27 15:23:10 +11002488 if (xfs_sb_version_hascrc(&mp->m_sb) &&
2489 !xfs_buf_verify_cksum(bp, XFS_AGF_CRC_OFF))
Dave Chinner24513372014-06-25 14:58:08 +10002490 xfs_buf_ioerror(bp, -EFSBADCRC);
Eric Sandeence5028c2014-02-27 15:23:10 +11002491 else if (XFS_TEST_ERROR(!xfs_agf_verify(mp, bp), mp,
2492 XFS_ERRTAG_ALLOC_READ_AGF,
2493 XFS_RANDOM_ALLOC_READ_AGF))
Dave Chinner24513372014-06-25 14:58:08 +10002494 xfs_buf_ioerror(bp, -EFSCORRUPTED);
Eric Sandeence5028c2014-02-27 15:23:10 +11002495
2496 if (bp->b_error)
2497 xfs_verifier_error(bp);
Dave Chinner612cfbf2012-11-14 17:52:32 +11002498}
2499
Dave Chinnerb0f539d2012-11-14 17:53:49 +11002500static void
Dave Chinner1813dd62012-11-14 17:54:40 +11002501xfs_agf_write_verify(
Dave Chinner612cfbf2012-11-14 17:52:32 +11002502 struct xfs_buf *bp)
2503{
Dave Chinner4e0e6042013-04-03 16:11:13 +11002504 struct xfs_mount *mp = bp->b_target->bt_mount;
2505 struct xfs_buf_log_item *bip = bp->b_fspriv;
2506
2507 if (!xfs_agf_verify(mp, bp)) {
Dave Chinner24513372014-06-25 14:58:08 +10002508 xfs_buf_ioerror(bp, -EFSCORRUPTED);
Eric Sandeence5028c2014-02-27 15:23:10 +11002509 xfs_verifier_error(bp);
Dave Chinner4e0e6042013-04-03 16:11:13 +11002510 return;
2511 }
2512
2513 if (!xfs_sb_version_hascrc(&mp->m_sb))
2514 return;
2515
2516 if (bip)
2517 XFS_BUF_TO_AGF(bp)->agf_lsn = cpu_to_be64(bip->bli_item.li_lsn);
2518
Eric Sandeenf1dbcd72014-02-27 15:18:23 +11002519 xfs_buf_update_cksum(bp, XFS_AGF_CRC_OFF);
Dave Chinner5d5f5272012-11-14 17:44:56 +11002520}
2521
Dave Chinner1813dd62012-11-14 17:54:40 +11002522const struct xfs_buf_ops xfs_agf_buf_ops = {
Eric Sandeen233135b2016-01-04 16:10:19 +11002523 .name = "xfs_agf",
Dave Chinner1813dd62012-11-14 17:54:40 +11002524 .verify_read = xfs_agf_read_verify,
2525 .verify_write = xfs_agf_write_verify,
2526};
2527
Linus Torvalds1da177e2005-04-16 15:20:36 -07002528/*
2529 * Read in the allocation group header (free/alloc section).
2530 */
2531int /* error */
From: Christoph Hellwig48056212008-11-28 14:23:38 +11002532xfs_read_agf(
2533 struct xfs_mount *mp, /* mount point structure */
2534 struct xfs_trans *tp, /* transaction pointer */
2535 xfs_agnumber_t agno, /* allocation group number */
2536 int flags, /* XFS_BUF_ */
2537 struct xfs_buf **bpp) /* buffer for the ag freelist header */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002538{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002539 int error;
2540
Dave Chinnerd1230312013-11-01 15:27:19 +11002541 trace_xfs_read_agf(mp, agno);
2542
Linus Torvalds1da177e2005-04-16 15:20:36 -07002543 ASSERT(agno != NULLAGNUMBER);
2544 error = xfs_trans_read_buf(
2545 mp, tp, mp->m_ddev_targp,
2546 XFS_AG_DADDR(mp, agno, XFS_AGF_DADDR(mp)),
Dave Chinner1813dd62012-11-14 17:54:40 +11002547 XFS_FSS_TO_BB(mp, 1), flags, bpp, &xfs_agf_buf_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002548 if (error)
2549 return error;
From: Christoph Hellwig48056212008-11-28 14:23:38 +11002550 if (!*bpp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002551 return 0;
From: Christoph Hellwig48056212008-11-28 14:23:38 +11002552
Chandra Seetharaman5a52c2a582011-07-22 23:39:51 +00002553 ASSERT(!(*bpp)->b_error);
Christoph Hellwig38f23232011-10-10 16:52:45 +00002554 xfs_buf_set_ref(*bpp, XFS_AGF_REF);
From: Christoph Hellwig48056212008-11-28 14:23:38 +11002555 return 0;
2556}
2557
2558/*
2559 * Read in the allocation group header (free/alloc section).
2560 */
2561int /* error */
2562xfs_alloc_read_agf(
2563 struct xfs_mount *mp, /* mount point structure */
2564 struct xfs_trans *tp, /* transaction pointer */
2565 xfs_agnumber_t agno, /* allocation group number */
2566 int flags, /* XFS_ALLOC_FLAG_... */
2567 struct xfs_buf **bpp) /* buffer for the ag freelist header */
2568{
2569 struct xfs_agf *agf; /* ag freelist header */
2570 struct xfs_perag *pag; /* per allocation group data */
2571 int error;
2572
Dave Chinnerd1230312013-11-01 15:27:19 +11002573 trace_xfs_alloc_read_agf(mp, agno);
From: Christoph Hellwig48056212008-11-28 14:23:38 +11002574
Dave Chinnerd1230312013-11-01 15:27:19 +11002575 ASSERT(agno != NULLAGNUMBER);
From: Christoph Hellwig48056212008-11-28 14:23:38 +11002576 error = xfs_read_agf(mp, tp, agno,
Christoph Hellwig0cadda12010-01-19 09:56:44 +00002577 (flags & XFS_ALLOC_FLAG_TRYLOCK) ? XBF_TRYLOCK : 0,
From: Christoph Hellwig48056212008-11-28 14:23:38 +11002578 bpp);
2579 if (error)
2580 return error;
2581 if (!*bpp)
2582 return 0;
Chandra Seetharaman5a52c2a582011-07-22 23:39:51 +00002583 ASSERT(!(*bpp)->b_error);
From: Christoph Hellwig48056212008-11-28 14:23:38 +11002584
2585 agf = XFS_BUF_TO_AGF(*bpp);
Dave Chinnera862e0f2010-01-11 11:47:41 +00002586 pag = xfs_perag_get(mp, agno);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002587 if (!pag->pagf_init) {
Christoph Hellwig16259e72005-11-02 15:11:25 +11002588 pag->pagf_freeblks = be32_to_cpu(agf->agf_freeblks);
David Chinner92821e22007-05-24 15:26:31 +10002589 pag->pagf_btreeblks = be32_to_cpu(agf->agf_btreeblks);
Christoph Hellwig16259e72005-11-02 15:11:25 +11002590 pag->pagf_flcount = be32_to_cpu(agf->agf_flcount);
2591 pag->pagf_longest = be32_to_cpu(agf->agf_longest);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002592 pag->pagf_levels[XFS_BTNUM_BNOi] =
Christoph Hellwig16259e72005-11-02 15:11:25 +11002593 be32_to_cpu(agf->agf_levels[XFS_BTNUM_BNOi]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002594 pag->pagf_levels[XFS_BTNUM_CNTi] =
Christoph Hellwig16259e72005-11-02 15:11:25 +11002595 be32_to_cpu(agf->agf_levels[XFS_BTNUM_CNTi]);
Darrick J. Wongb8704942016-08-03 11:30:32 +10002596 pag->pagf_levels[XFS_BTNUM_RMAPi] =
2597 be32_to_cpu(agf->agf_levels[XFS_BTNUM_RMAPi]);
Darrick J. Wong46eeb522016-10-03 09:11:16 -07002598 pag->pagf_refcount_level = be32_to_cpu(agf->agf_refcount_level);
Eric Sandeen007c61c2007-10-11 17:43:56 +10002599 spin_lock_init(&pag->pagb_lock);
Dave Chinnere57336f2010-01-11 11:47:49 +00002600 pag->pagb_count = 0;
Dave Chinnered3b4d62010-05-21 12:07:08 +10002601 pag->pagb_tree = RB_ROOT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002602 pag->pagf_init = 1;
2603 }
2604#ifdef DEBUG
2605 else if (!XFS_FORCED_SHUTDOWN(mp)) {
Christoph Hellwig16259e72005-11-02 15:11:25 +11002606 ASSERT(pag->pagf_freeblks == be32_to_cpu(agf->agf_freeblks));
Barry Naujok89b28392008-10-30 17:05:49 +11002607 ASSERT(pag->pagf_btreeblks == be32_to_cpu(agf->agf_btreeblks));
Christoph Hellwig16259e72005-11-02 15:11:25 +11002608 ASSERT(pag->pagf_flcount == be32_to_cpu(agf->agf_flcount));
2609 ASSERT(pag->pagf_longest == be32_to_cpu(agf->agf_longest));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002610 ASSERT(pag->pagf_levels[XFS_BTNUM_BNOi] ==
Christoph Hellwig16259e72005-11-02 15:11:25 +11002611 be32_to_cpu(agf->agf_levels[XFS_BTNUM_BNOi]));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002612 ASSERT(pag->pagf_levels[XFS_BTNUM_CNTi] ==
Christoph Hellwig16259e72005-11-02 15:11:25 +11002613 be32_to_cpu(agf->agf_levels[XFS_BTNUM_CNTi]));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002614 }
2615#endif
Dave Chinnera862e0f2010-01-11 11:47:41 +00002616 xfs_perag_put(pag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002617 return 0;
2618}
2619
2620/*
2621 * Allocate an extent (variable-size).
2622 * Depending on the allocation type, we either look in a single allocation
2623 * group or loop over the allocation groups to find the result.
2624 */
2625int /* error */
Dave Chinnere04426b2012-10-05 11:06:59 +10002626xfs_alloc_vextent(
Linus Torvalds1da177e2005-04-16 15:20:36 -07002627 xfs_alloc_arg_t *args) /* allocation argument structure */
2628{
2629 xfs_agblock_t agsize; /* allocation group size */
2630 int error;
2631 int flags; /* XFS_ALLOC_FLAG_... locking flags */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002632 xfs_extlen_t minleft;/* minimum left value, temp copy */
2633 xfs_mount_t *mp; /* mount structure pointer */
2634 xfs_agnumber_t sagno; /* starting allocation group number */
2635 xfs_alloctype_t type; /* input allocation type */
2636 int bump_rotor = 0;
2637 int no_min = 0;
2638 xfs_agnumber_t rotorstep = xfs_rotorstep; /* inode32 agf stepper */
2639
2640 mp = args->mp;
2641 type = args->otype = args->type;
2642 args->agbno = NULLAGBLOCK;
2643 /*
2644 * Just fix this up, for the case where the last a.g. is shorter
2645 * (or there's only one a.g.) and the caller couldn't easily figure
2646 * that out (xfs_bmap_alloc).
2647 */
2648 agsize = mp->m_sb.sb_agblocks;
2649 if (args->maxlen > agsize)
2650 args->maxlen = agsize;
2651 if (args->alignment == 0)
2652 args->alignment = 1;
2653 ASSERT(XFS_FSB_TO_AGNO(mp, args->fsbno) < mp->m_sb.sb_agcount);
2654 ASSERT(XFS_FSB_TO_AGBNO(mp, args->fsbno) < agsize);
2655 ASSERT(args->minlen <= args->maxlen);
2656 ASSERT(args->minlen <= agsize);
2657 ASSERT(args->mod < args->prod);
2658 if (XFS_FSB_TO_AGNO(mp, args->fsbno) >= mp->m_sb.sb_agcount ||
2659 XFS_FSB_TO_AGBNO(mp, args->fsbno) >= agsize ||
2660 args->minlen > args->maxlen || args->minlen > agsize ||
2661 args->mod >= args->prod) {
2662 args->fsbno = NULLFSBLOCK;
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002663 trace_xfs_alloc_vextent_badargs(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002664 return 0;
2665 }
2666 minleft = args->minleft;
2667
2668 switch (type) {
2669 case XFS_ALLOCTYPE_THIS_AG:
2670 case XFS_ALLOCTYPE_NEAR_BNO:
2671 case XFS_ALLOCTYPE_THIS_BNO:
2672 /*
2673 * These three force us into a single a.g.
2674 */
2675 args->agno = XFS_FSB_TO_AGNO(mp, args->fsbno);
Dave Chinnera862e0f2010-01-11 11:47:41 +00002676 args->pag = xfs_perag_get(mp, args->agno);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002677 args->minleft = 0;
2678 error = xfs_alloc_fix_freelist(args, 0);
2679 args->minleft = minleft;
2680 if (error) {
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002681 trace_xfs_alloc_vextent_nofix(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002682 goto error0;
2683 }
2684 if (!args->agbp) {
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002685 trace_xfs_alloc_vextent_noagbp(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002686 break;
2687 }
2688 args->agbno = XFS_FSB_TO_AGBNO(mp, args->fsbno);
2689 if ((error = xfs_alloc_ag_vextent(args)))
2690 goto error0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002691 break;
2692 case XFS_ALLOCTYPE_START_BNO:
2693 /*
2694 * Try near allocation first, then anywhere-in-ag after
2695 * the first a.g. fails.
2696 */
Dave Chinner292378e2016-09-26 08:21:28 +10002697 if ((args->datatype & XFS_ALLOC_INITIAL_USER_DATA) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07002698 (mp->m_flags & XFS_MOUNT_32BITINODES)) {
2699 args->fsbno = XFS_AGB_TO_FSB(mp,
2700 ((mp->m_agfrotor / rotorstep) %
2701 mp->m_sb.sb_agcount), 0);
2702 bump_rotor = 1;
2703 }
2704 args->agbno = XFS_FSB_TO_AGBNO(mp, args->fsbno);
2705 args->type = XFS_ALLOCTYPE_NEAR_BNO;
2706 /* FALLTHROUGH */
2707 case XFS_ALLOCTYPE_ANY_AG:
2708 case XFS_ALLOCTYPE_START_AG:
2709 case XFS_ALLOCTYPE_FIRST_AG:
2710 /*
2711 * Rotate through the allocation groups looking for a winner.
2712 */
2713 if (type == XFS_ALLOCTYPE_ANY_AG) {
2714 /*
2715 * Start with the last place we left off.
2716 */
2717 args->agno = sagno = (mp->m_agfrotor / rotorstep) %
2718 mp->m_sb.sb_agcount;
2719 args->type = XFS_ALLOCTYPE_THIS_AG;
2720 flags = XFS_ALLOC_FLAG_TRYLOCK;
2721 } else if (type == XFS_ALLOCTYPE_FIRST_AG) {
2722 /*
2723 * Start with allocation group given by bno.
2724 */
2725 args->agno = XFS_FSB_TO_AGNO(mp, args->fsbno);
2726 args->type = XFS_ALLOCTYPE_THIS_AG;
2727 sagno = 0;
2728 flags = 0;
2729 } else {
2730 if (type == XFS_ALLOCTYPE_START_AG)
2731 args->type = XFS_ALLOCTYPE_THIS_AG;
2732 /*
2733 * Start with the given allocation group.
2734 */
2735 args->agno = sagno = XFS_FSB_TO_AGNO(mp, args->fsbno);
2736 flags = XFS_ALLOC_FLAG_TRYLOCK;
2737 }
2738 /*
2739 * Loop over allocation groups twice; first time with
2740 * trylock set, second time without.
2741 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002742 for (;;) {
Dave Chinnera862e0f2010-01-11 11:47:41 +00002743 args->pag = xfs_perag_get(mp, args->agno);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002744 if (no_min) args->minleft = 0;
2745 error = xfs_alloc_fix_freelist(args, flags);
2746 args->minleft = minleft;
2747 if (error) {
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002748 trace_xfs_alloc_vextent_nofix(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002749 goto error0;
2750 }
2751 /*
2752 * If we get a buffer back then the allocation will fly.
2753 */
2754 if (args->agbp) {
2755 if ((error = xfs_alloc_ag_vextent(args)))
2756 goto error0;
2757 break;
2758 }
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002759
2760 trace_xfs_alloc_vextent_loopfailed(args);
2761
Linus Torvalds1da177e2005-04-16 15:20:36 -07002762 /*
2763 * Didn't work, figure out the next iteration.
2764 */
2765 if (args->agno == sagno &&
2766 type == XFS_ALLOCTYPE_START_BNO)
2767 args->type = XFS_ALLOCTYPE_THIS_AG;
Yingping Lud210a282006-06-09 14:55:18 +10002768 /*
2769 * For the first allocation, we can try any AG to get
2770 * space. However, if we already have allocated a
2771 * block, we don't want to try AGs whose number is below
2772 * sagno. Otherwise, we may end up with out-of-order
2773 * locking of AGF, which might cause deadlock.
2774 */
2775 if (++(args->agno) == mp->m_sb.sb_agcount) {
2776 if (args->firstblock != NULLFSBLOCK)
2777 args->agno = sagno;
2778 else
2779 args->agno = 0;
2780 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002781 /*
2782 * Reached the starting a.g., must either be done
2783 * or switch to non-trylock mode.
2784 */
2785 if (args->agno == sagno) {
2786 if (no_min == 1) {
2787 args->agbno = NULLAGBLOCK;
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002788 trace_xfs_alloc_vextent_allfailed(args);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002789 break;
2790 }
2791 if (flags == 0) {
2792 no_min = 1;
2793 } else {
2794 flags = 0;
2795 if (type == XFS_ALLOCTYPE_START_BNO) {
2796 args->agbno = XFS_FSB_TO_AGBNO(mp,
2797 args->fsbno);
2798 args->type = XFS_ALLOCTYPE_NEAR_BNO;
2799 }
2800 }
2801 }
Dave Chinnera862e0f2010-01-11 11:47:41 +00002802 xfs_perag_put(args->pag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002803 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002804 if (bump_rotor || (type == XFS_ALLOCTYPE_ANY_AG)) {
2805 if (args->agno == sagno)
2806 mp->m_agfrotor = (mp->m_agfrotor + 1) %
2807 (mp->m_sb.sb_agcount * rotorstep);
2808 else
2809 mp->m_agfrotor = (args->agno * rotorstep + 1) %
2810 (mp->m_sb.sb_agcount * rotorstep);
2811 }
2812 break;
2813 default:
2814 ASSERT(0);
2815 /* NOTREACHED */
2816 }
2817 if (args->agbno == NULLAGBLOCK)
2818 args->fsbno = NULLFSBLOCK;
2819 else {
2820 args->fsbno = XFS_AGB_TO_FSB(mp, args->agno, args->agbno);
2821#ifdef DEBUG
2822 ASSERT(args->len >= args->minlen);
2823 ASSERT(args->len <= args->maxlen);
2824 ASSERT(args->agbno % args->alignment == 0);
2825 XFS_AG_CHECK_DADDR(mp, XFS_FSB_TO_DADDR(mp, args->fsbno),
2826 args->len);
2827#endif
Dave Chinner3fbbbea2015-11-03 12:27:22 +11002828
2829 /* Zero the extent if we were asked to do so */
Dave Chinner292378e2016-09-26 08:21:28 +10002830 if (args->datatype & XFS_ALLOC_USERDATA_ZERO) {
Dave Chinner3fbbbea2015-11-03 12:27:22 +11002831 error = xfs_zero_extent(args->ip, args->fsbno, args->len);
2832 if (error)
2833 goto error0;
2834 }
2835
Linus Torvalds1da177e2005-04-16 15:20:36 -07002836 }
Dave Chinnera862e0f2010-01-11 11:47:41 +00002837 xfs_perag_put(args->pag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002838 return 0;
2839error0:
Dave Chinnera862e0f2010-01-11 11:47:41 +00002840 xfs_perag_put(args->pag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002841 return error;
2842}
2843
Dave Chinner4d89e202016-06-21 11:53:28 +10002844/* Ensure that the freelist is at full capacity. */
2845int
2846xfs_free_extent_fix_freelist(
2847 struct xfs_trans *tp,
2848 xfs_agnumber_t agno,
2849 struct xfs_buf **agbp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002850{
Dave Chinner4d89e202016-06-21 11:53:28 +10002851 struct xfs_alloc_arg args;
2852 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002853
Dave Chinner4d89e202016-06-21 11:53:28 +10002854 memset(&args, 0, sizeof(struct xfs_alloc_arg));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002855 args.tp = tp;
2856 args.mp = tp->t_mountp;
Dave Chinner4d89e202016-06-21 11:53:28 +10002857 args.agno = agno;
Dave Chinnerbe65b182011-04-08 12:45:07 +10002858
2859 /*
2860 * validate that the block number is legal - the enables us to detect
2861 * and handle a silent filesystem corruption rather than crashing.
2862 */
Dave Chinnerbe65b182011-04-08 12:45:07 +10002863 if (args.agno >= args.mp->m_sb.sb_agcount)
Dave Chinner24513372014-06-25 14:58:08 +10002864 return -EFSCORRUPTED;
Dave Chinnerbe65b182011-04-08 12:45:07 +10002865
Dave Chinnera862e0f2010-01-11 11:47:41 +00002866 args.pag = xfs_perag_get(args.mp, args.agno);
Dave Chinnerbe65b182011-04-08 12:45:07 +10002867 ASSERT(args.pag);
2868
2869 error = xfs_alloc_fix_freelist(&args, XFS_ALLOC_FLAG_FREEING);
2870 if (error)
Dave Chinner4d89e202016-06-21 11:53:28 +10002871 goto out;
2872
2873 *agbp = args.agbp;
2874out:
2875 xfs_perag_put(args.pag);
2876 return error;
2877}
2878
2879/*
2880 * Free an extent.
2881 * Just break up the extent address and hand off to xfs_free_ag_extent
2882 * after fixing up the freelist.
2883 */
2884int /* error */
2885xfs_free_extent(
2886 struct xfs_trans *tp, /* transaction pointer */
2887 xfs_fsblock_t bno, /* starting block number of extent */
Darrick J. Wong340785c2016-08-03 11:33:42 +10002888 xfs_extlen_t len, /* length of extent */
Darrick J. Wong3fd129b2016-09-19 10:30:52 +10002889 struct xfs_owner_info *oinfo, /* extent owner */
2890 enum xfs_ag_resv_type type) /* block reservation type */
Dave Chinner4d89e202016-06-21 11:53:28 +10002891{
2892 struct xfs_mount *mp = tp->t_mountp;
2893 struct xfs_buf *agbp;
2894 xfs_agnumber_t agno = XFS_FSB_TO_AGNO(mp, bno);
2895 xfs_agblock_t agbno = XFS_FSB_TO_AGBNO(mp, bno);
2896 int error;
2897
2898 ASSERT(len != 0);
Darrick J. Wong3fd129b2016-09-19 10:30:52 +10002899 ASSERT(type != XFS_AG_RESV_AGFL);
Dave Chinner4d89e202016-06-21 11:53:28 +10002900
Darrick J. Wongba9e7802016-08-03 11:26:33 +10002901 if (XFS_TEST_ERROR(false, mp,
2902 XFS_ERRTAG_FREE_EXTENT,
2903 XFS_RANDOM_FREE_EXTENT))
2904 return -EIO;
2905
Dave Chinner4d89e202016-06-21 11:53:28 +10002906 error = xfs_free_extent_fix_freelist(tp, agno, &agbp);
2907 if (error)
2908 return error;
2909
2910 XFS_WANT_CORRUPTED_GOTO(mp, agbno < mp->m_sb.sb_agblocks, err);
Dave Chinnerbe65b182011-04-08 12:45:07 +10002911
2912 /* validate the extent size is legal now we have the agf locked */
Dave Chinner4d89e202016-06-21 11:53:28 +10002913 XFS_WANT_CORRUPTED_GOTO(mp,
2914 agbno + len <= be32_to_cpu(XFS_BUF_TO_AGF(agbp)->agf_length),
2915 err);
Dave Chinnerbe65b182011-04-08 12:45:07 +10002916
Darrick J. Wong3fd129b2016-09-19 10:30:52 +10002917 error = xfs_free_ag_extent(tp, agbp, agno, agbno, len, oinfo, type);
Dave Chinner4d89e202016-06-21 11:53:28 +10002918 if (error)
2919 goto err;
2920
2921 xfs_extent_busy_insert(tp, agno, agbno, len, 0);
2922 return 0;
2923
2924err:
2925 xfs_trans_brelse(tp, agbp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002926 return error;
2927}