blob: 0d93d3c10fcc4848fbe5945f6f786de20f353f8b [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Nathan Scott7b718762005-11-02 14:58:39 +11002 * Copyright (c) 2000-2005 Silicon Graphics, Inc.
3 * All Rights Reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
Nathan Scott7b718762005-11-02 14:58:39 +11005 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License as
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * published by the Free Software Foundation.
8 *
Nathan Scott7b718762005-11-02 14:58:39 +11009 * This program is distributed in the hope that it would be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 *
Nathan Scott7b718762005-11-02 14:58:39 +110014 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write the Free Software Foundation,
16 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Linus Torvalds1da177e2005-04-16 15:20:36 -070017 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include "xfs.h"
Nathan Scotta844f452005-11-02 14:38:42 +110019#include "xfs_fs.h"
Dave Chinner70a9883c2013-10-23 10:36:05 +110020#include "xfs_shared.h"
Dave Chinner239880e2013-10-23 10:50:10 +110021#include "xfs_format.h"
22#include "xfs_log_format.h"
23#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_mount.h"
Darrick J. Wong3ab78df2016-08-03 11:15:38 +100026#include "xfs_defer.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include "xfs_inode.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include "xfs_bmap.h"
Dave Chinner68988112013-08-12 20:49:42 +100029#include "xfs_bmap_util.h"
Dave Chinnera4fbe6a2013-10-23 10:51:50 +110030#include "xfs_bmap_btree.h"
31#include "xfs_alloc.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include "xfs_error.h"
Dave Chinner239880e2013-10-23 10:50:10 +110033#include "xfs_trans.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include "xfs_trans_space.h"
Christoph Hellwig0b1b2132009-12-14 23:14:59 +000035#include "xfs_trace.h"
Dave Chinner1922c942010-09-22 10:47:20 +100036#include "xfs_buf.h"
Dave Chinner33479e02012-10-08 21:56:11 +110037#include "xfs_icache.h"
Dave Chinnerc963c612013-10-15 09:17:56 +110038#include "xfs_rtalloc.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
40
41/*
Dave Chinnerc963c612013-10-15 09:17:56 +110042 * Read and return the summary information for a given extent size,
43 * bitmap block combination.
44 * Keeps track of a current summary block, so we don't keep reading
45 * it from the buffer cache.
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 */
Fengguang Wuea959612014-09-23 16:11:43 +100047static int
Dave Chinnerc963c612013-10-15 09:17:56 +110048xfs_rtget_summary(
49 xfs_mount_t *mp, /* file system mount structure */
50 xfs_trans_t *tp, /* transaction pointer */
51 int log, /* log2 of extent size */
52 xfs_rtblock_t bbno, /* bitmap block number */
53 xfs_buf_t **rbpp, /* in/out: summary block buffer */
54 xfs_fsblock_t *rsb, /* in/out: summary block number */
55 xfs_suminfo_t *sum) /* out: summary info for this block */
Linus Torvalds1da177e2005-04-16 15:20:36 -070056{
Eric Sandeenafabfd32014-09-09 11:58:42 +100057 return xfs_rtmodify_summary_int(mp, tp, log, bbno, 0, rbpp, rsb, sum);
Dave Chinnerc963c612013-10-15 09:17:56 +110058}
59
Dave Chinnerc963c612013-10-15 09:17:56 +110060/*
61 * Return whether there are any free extents in the size range given
62 * by low and high, for the bitmap block bbno.
63 */
64STATIC int /* error */
65xfs_rtany_summary(
66 xfs_mount_t *mp, /* file system mount structure */
67 xfs_trans_t *tp, /* transaction pointer */
68 int low, /* low log2 extent size */
69 int high, /* high log2 extent size */
70 xfs_rtblock_t bbno, /* bitmap block number */
71 xfs_buf_t **rbpp, /* in/out: summary block buffer */
72 xfs_fsblock_t *rsb, /* in/out: summary block number */
73 int *stat) /* out: any good extents here? */
74{
75 int error; /* error value */
76 int log; /* loop counter, log2 of ext. size */
77 xfs_suminfo_t sum; /* summary data */
78
79 /*
80 * Loop over logs of extent sizes. Order is irrelevant.
81 */
82 for (log = low; log <= high; log++) {
83 /*
84 * Get one summary datum.
85 */
86 error = xfs_rtget_summary(mp, tp, log, bbno, rbpp, rsb, &sum);
87 if (error) {
88 return error;
89 }
90 /*
91 * If there are any, return success.
92 */
93 if (sum) {
94 *stat = 1;
95 return 0;
96 }
97 }
98 /*
99 * Found nothing, return failure.
100 */
101 *stat = 0;
102 return 0;
103}
104
105
106/*
107 * Copy and transform the summary file, given the old and new
108 * parameters in the mount structures.
109 */
110STATIC int /* error */
111xfs_rtcopy_summary(
112 xfs_mount_t *omp, /* old file system mount point */
113 xfs_mount_t *nmp, /* new file system mount point */
114 xfs_trans_t *tp) /* transaction pointer */
115{
116 xfs_rtblock_t bbno; /* bitmap block number */
117 xfs_buf_t *bp; /* summary buffer */
118 int error; /* error return value */
119 int log; /* summary level number (log length) */
120 xfs_suminfo_t sum; /* summary data */
121 xfs_fsblock_t sumbno; /* summary block number */
122
123 bp = NULL;
124 for (log = omp->m_rsumlevels - 1; log >= 0; log--) {
125 for (bbno = omp->m_sb.sb_rbmblocks - 1;
126 (xfs_srtblock_t)bbno >= 0;
127 bbno--) {
128 error = xfs_rtget_summary(omp, tp, log, bbno, &bp,
129 &sumbno, &sum);
130 if (error)
131 return error;
132 if (sum == 0)
133 continue;
134 error = xfs_rtmodify_summary(omp, tp, log, bbno, -sum,
135 &bp, &sumbno);
136 if (error)
137 return error;
138 error = xfs_rtmodify_summary(nmp, tp, log, bbno, sum,
139 &bp, &sumbno);
140 if (error)
141 return error;
142 ASSERT(sum > 0);
143 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 }
145 return 0;
Dave Chinnerc963c612013-10-15 09:17:56 +1100146}
147/*
148 * Mark an extent specified by start and len allocated.
149 * Updates all the summary information as well as the bitmap.
150 */
151STATIC int /* error */
152xfs_rtallocate_range(
153 xfs_mount_t *mp, /* file system mount point */
154 xfs_trans_t *tp, /* transaction pointer */
155 xfs_rtblock_t start, /* start block to allocate */
156 xfs_extlen_t len, /* length to allocate */
157 xfs_buf_t **rbpp, /* in/out: summary block buffer */
158 xfs_fsblock_t *rsb) /* in/out: summary block number */
159{
160 xfs_rtblock_t end; /* end of the allocated extent */
161 int error; /* error value */
162 xfs_rtblock_t postblock = 0; /* first block allocated > end */
163 xfs_rtblock_t preblock = 0; /* first block allocated < start */
Kamal Dasu5575acc2012-02-23 00:41:39 +0000164
Dave Chinnerc963c612013-10-15 09:17:56 +1100165 end = start + len - 1;
166 /*
167 * Assume we're allocating out of the middle of a free extent.
168 * We need to find the beginning and end of the extent so we can
169 * properly update the summary.
170 */
171 error = xfs_rtfind_back(mp, tp, start, 0, &preblock);
172 if (error) {
173 return error;
174 }
175 /*
176 * Find the next allocated block (end of free extent).
177 */
178 error = xfs_rtfind_forw(mp, tp, end, mp->m_sb.sb_rextents - 1,
179 &postblock);
180 if (error) {
181 return error;
182 }
183 /*
184 * Decrement the summary information corresponding to the entire
185 * (old) free extent.
186 */
187 error = xfs_rtmodify_summary(mp, tp,
188 XFS_RTBLOCKLOG(postblock + 1 - preblock),
189 XFS_BITTOBLOCK(mp, preblock), -1, rbpp, rsb);
190 if (error) {
191 return error;
192 }
193 /*
194 * If there are blocks not being allocated at the front of the
195 * old extent, add summary data for them to be free.
196 */
197 if (preblock < start) {
198 error = xfs_rtmodify_summary(mp, tp,
199 XFS_RTBLOCKLOG(start - preblock),
200 XFS_BITTOBLOCK(mp, preblock), 1, rbpp, rsb);
201 if (error) {
202 return error;
203 }
204 }
205 /*
206 * If there are blocks not being allocated at the end of the
207 * old extent, add summary data for them to be free.
208 */
209 if (postblock > end) {
210 error = xfs_rtmodify_summary(mp, tp,
211 XFS_RTBLOCKLOG(postblock - end),
212 XFS_BITTOBLOCK(mp, end + 1), 1, rbpp, rsb);
213 if (error) {
214 return error;
215 }
216 }
217 /*
218 * Modify the bitmap to mark this extent allocated.
219 */
220 error = xfs_rtmodify_range(mp, tp, start, len, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 return error;
222}
223
224/*
225 * Attempt to allocate an extent minlen<=len<=maxlen starting from
226 * bitmap block bbno. If we don't get maxlen then use prod to trim
227 * the length, if given. Returns error; returns starting block in *rtblock.
228 * The lengths are all in rtextents.
229 */
230STATIC int /* error */
231xfs_rtallocate_extent_block(
232 xfs_mount_t *mp, /* file system mount point */
233 xfs_trans_t *tp, /* transaction pointer */
234 xfs_rtblock_t bbno, /* bitmap block number */
235 xfs_extlen_t minlen, /* minimum length to allocate */
236 xfs_extlen_t maxlen, /* maximum length to allocate */
237 xfs_extlen_t *len, /* out: actual length allocated */
238 xfs_rtblock_t *nextp, /* out: next block to try */
239 xfs_buf_t **rbpp, /* in/out: summary block buffer */
240 xfs_fsblock_t *rsb, /* in/out: summary block number */
241 xfs_extlen_t prod, /* extent product factor */
242 xfs_rtblock_t *rtblock) /* out: start block allocated */
243{
244 xfs_rtblock_t besti; /* best rtblock found so far */
245 xfs_rtblock_t bestlen; /* best length found so far */
246 xfs_rtblock_t end; /* last rtblock in chunk */
247 int error; /* error value */
248 xfs_rtblock_t i; /* current rtblock trying */
249 xfs_rtblock_t next; /* next rtblock to try */
250 int stat; /* status from internal calls */
251
252 /*
253 * Loop over all the extents starting in this bitmap block,
254 * looking for one that's long enough.
255 */
256 for (i = XFS_BLOCKTOBIT(mp, bbno), besti = -1, bestlen = 0,
257 end = XFS_BLOCKTOBIT(mp, bbno + 1) - 1;
258 i <= end;
259 i++) {
260 /*
261 * See if there's a free extent of maxlen starting at i.
262 * If it's not so then next will contain the first non-free.
263 */
264 error = xfs_rtcheck_range(mp, tp, i, maxlen, 1, &next, &stat);
265 if (error) {
266 return error;
267 }
268 if (stat) {
269 /*
270 * i for maxlen is all free, allocate and return that.
271 */
272 error = xfs_rtallocate_range(mp, tp, i, maxlen, rbpp,
273 rsb);
274 if (error) {
275 return error;
276 }
277 *len = maxlen;
278 *rtblock = i;
279 return 0;
280 }
281 /*
282 * In the case where we have a variable-sized allocation
283 * request, figure out how big this free piece is,
284 * and if it's big enough for the minimum, and the best
285 * so far, remember it.
286 */
287 if (minlen < maxlen) {
288 xfs_rtblock_t thislen; /* this extent size */
289
290 thislen = next - i;
291 if (thislen >= minlen && thislen > bestlen) {
292 besti = i;
293 bestlen = thislen;
294 }
295 }
296 /*
297 * If not done yet, find the start of the next free space.
298 */
299 if (next < end) {
300 error = xfs_rtfind_forw(mp, tp, next, end, &i);
301 if (error) {
302 return error;
303 }
304 } else
305 break;
306 }
307 /*
308 * Searched the whole thing & didn't find a maxlen free extent.
309 */
310 if (minlen < maxlen && besti != -1) {
311 xfs_extlen_t p; /* amount to trim length by */
312
313 /*
314 * If size should be a multiple of prod, make that so.
315 */
316 if (prod > 1 && (p = do_mod(bestlen, prod)))
317 bestlen -= p;
318 /*
319 * Allocate besti for bestlen & return that.
320 */
321 error = xfs_rtallocate_range(mp, tp, besti, bestlen, rbpp, rsb);
322 if (error) {
323 return error;
324 }
325 *len = bestlen;
326 *rtblock = besti;
327 return 0;
328 }
329 /*
330 * Allocation failed. Set *nextp to the next block to try.
331 */
332 *nextp = next;
333 *rtblock = NULLRTBLOCK;
334 return 0;
335}
336
337/*
338 * Allocate an extent of length minlen<=len<=maxlen, starting at block
339 * bno. If we don't get maxlen then use prod to trim the length, if given.
340 * Returns error; returns starting block in *rtblock.
341 * The lengths are all in rtextents.
342 */
343STATIC int /* error */
344xfs_rtallocate_extent_exact(
345 xfs_mount_t *mp, /* file system mount point */
346 xfs_trans_t *tp, /* transaction pointer */
347 xfs_rtblock_t bno, /* starting block number to allocate */
348 xfs_extlen_t minlen, /* minimum length to allocate */
349 xfs_extlen_t maxlen, /* maximum length to allocate */
350 xfs_extlen_t *len, /* out: actual length allocated */
351 xfs_buf_t **rbpp, /* in/out: summary block buffer */
352 xfs_fsblock_t *rsb, /* in/out: summary block number */
353 xfs_extlen_t prod, /* extent product factor */
354 xfs_rtblock_t *rtblock) /* out: start block allocated */
355{
356 int error; /* error value */
357 xfs_extlen_t i; /* extent length trimmed due to prod */
358 int isfree; /* extent is free */
359 xfs_rtblock_t next; /* next block to try (dummy) */
360
361 ASSERT(minlen % prod == 0 && maxlen % prod == 0);
362 /*
363 * Check if the range in question (for maxlen) is free.
364 */
365 error = xfs_rtcheck_range(mp, tp, bno, maxlen, 1, &next, &isfree);
366 if (error) {
367 return error;
368 }
369 if (isfree) {
370 /*
371 * If it is, allocate it and return success.
372 */
373 error = xfs_rtallocate_range(mp, tp, bno, maxlen, rbpp, rsb);
374 if (error) {
375 return error;
376 }
377 *len = maxlen;
378 *rtblock = bno;
379 return 0;
380 }
381 /*
382 * If not, allocate what there is, if it's at least minlen.
383 */
384 maxlen = next - bno;
385 if (maxlen < minlen) {
386 /*
387 * Failed, return failure status.
388 */
389 *rtblock = NULLRTBLOCK;
390 return 0;
391 }
392 /*
393 * Trim off tail of extent, if prod is specified.
394 */
395 if (prod > 1 && (i = maxlen % prod)) {
396 maxlen -= i;
397 if (maxlen < minlen) {
398 /*
399 * Now we can't do it, return failure status.
400 */
401 *rtblock = NULLRTBLOCK;
402 return 0;
403 }
404 }
405 /*
406 * Allocate what we can and return it.
407 */
408 error = xfs_rtallocate_range(mp, tp, bno, maxlen, rbpp, rsb);
409 if (error) {
410 return error;
411 }
412 *len = maxlen;
413 *rtblock = bno;
414 return 0;
415}
416
417/*
418 * Allocate an extent of length minlen<=len<=maxlen, starting as near
419 * to bno as possible. If we don't get maxlen then use prod to trim
420 * the length, if given. The lengths are all in rtextents.
421 */
422STATIC int /* error */
423xfs_rtallocate_extent_near(
424 xfs_mount_t *mp, /* file system mount point */
425 xfs_trans_t *tp, /* transaction pointer */
426 xfs_rtblock_t bno, /* starting block number to allocate */
427 xfs_extlen_t minlen, /* minimum length to allocate */
428 xfs_extlen_t maxlen, /* maximum length to allocate */
429 xfs_extlen_t *len, /* out: actual length allocated */
430 xfs_buf_t **rbpp, /* in/out: summary block buffer */
431 xfs_fsblock_t *rsb, /* in/out: summary block number */
432 xfs_extlen_t prod, /* extent product factor */
433 xfs_rtblock_t *rtblock) /* out: start block allocated */
434{
435 int any; /* any useful extents from summary */
436 xfs_rtblock_t bbno; /* bitmap block number */
437 int error; /* error value */
438 int i; /* bitmap block offset (loop control) */
439 int j; /* secondary loop control */
440 int log2len; /* log2 of minlen */
441 xfs_rtblock_t n; /* next block to try */
442 xfs_rtblock_t r; /* result block */
443
444 ASSERT(minlen % prod == 0 && maxlen % prod == 0);
445 /*
446 * If the block number given is off the end, silently set it to
447 * the last block.
448 */
449 if (bno >= mp->m_sb.sb_rextents)
450 bno = mp->m_sb.sb_rextents - 1;
451 /*
452 * Try the exact allocation first.
453 */
454 error = xfs_rtallocate_extent_exact(mp, tp, bno, minlen, maxlen, len,
455 rbpp, rsb, prod, &r);
456 if (error) {
457 return error;
458 }
459 /*
460 * If the exact allocation worked, return that.
461 */
462 if (r != NULLRTBLOCK) {
463 *rtblock = r;
464 return 0;
465 }
466 bbno = XFS_BITTOBLOCK(mp, bno);
467 i = 0;
David Chinner79071eb2008-08-13 15:41:12 +1000468 ASSERT(minlen != 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 log2len = xfs_highbit32(minlen);
470 /*
471 * Loop over all bitmap blocks (bbno + i is current block).
472 */
473 for (;;) {
474 /*
475 * Get summary information of extents of all useful levels
476 * starting in this bitmap block.
477 */
478 error = xfs_rtany_summary(mp, tp, log2len, mp->m_rsumlevels - 1,
479 bbno + i, rbpp, rsb, &any);
480 if (error) {
481 return error;
482 }
483 /*
484 * If there are any useful extents starting here, try
485 * allocating one.
486 */
487 if (any) {
488 /*
489 * On the positive side of the starting location.
490 */
491 if (i >= 0) {
492 /*
493 * Try to allocate an extent starting in
494 * this block.
495 */
496 error = xfs_rtallocate_extent_block(mp, tp,
497 bbno + i, minlen, maxlen, len, &n, rbpp,
498 rsb, prod, &r);
499 if (error) {
500 return error;
501 }
502 /*
503 * If it worked, return it.
504 */
505 if (r != NULLRTBLOCK) {
506 *rtblock = r;
507 return 0;
508 }
509 }
510 /*
511 * On the negative side of the starting location.
512 */
513 else { /* i < 0 */
514 /*
515 * Loop backwards through the bitmap blocks from
516 * the starting point-1 up to where we are now.
517 * There should be an extent which ends in this
518 * bitmap block and is long enough.
519 */
520 for (j = -1; j > i; j--) {
521 /*
522 * Grab the summary information for
523 * this bitmap block.
524 */
525 error = xfs_rtany_summary(mp, tp,
526 log2len, mp->m_rsumlevels - 1,
527 bbno + j, rbpp, rsb, &any);
528 if (error) {
529 return error;
530 }
531 /*
532 * If there's no extent given in the
533 * summary that means the extent we
534 * found must carry over from an
535 * earlier block. If there is an
536 * extent given, we've already tried
537 * that allocation, don't do it again.
538 */
539 if (any)
540 continue;
541 error = xfs_rtallocate_extent_block(mp,
542 tp, bbno + j, minlen, maxlen,
543 len, &n, rbpp, rsb, prod, &r);
544 if (error) {
545 return error;
546 }
547 /*
548 * If it works, return the extent.
549 */
550 if (r != NULLRTBLOCK) {
551 *rtblock = r;
552 return 0;
553 }
554 }
555 /*
556 * There weren't intervening bitmap blocks
557 * with a long enough extent, or the
558 * allocation didn't work for some reason
559 * (i.e. it's a little * too short).
560 * Try to allocate from the summary block
561 * that we found.
562 */
563 error = xfs_rtallocate_extent_block(mp, tp,
564 bbno + i, minlen, maxlen, len, &n, rbpp,
565 rsb, prod, &r);
566 if (error) {
567 return error;
568 }
569 /*
570 * If it works, return the extent.
571 */
572 if (r != NULLRTBLOCK) {
573 *rtblock = r;
574 return 0;
575 }
576 }
577 }
578 /*
579 * Loop control. If we were on the positive side, and there's
580 * still more blocks on the negative side, go there.
581 */
582 if (i > 0 && (int)bbno - i >= 0)
583 i = -i;
584 /*
585 * If positive, and no more negative, but there are more
586 * positive, go there.
587 */
588 else if (i > 0 && (int)bbno + i < mp->m_sb.sb_rbmblocks - 1)
589 i++;
590 /*
591 * If negative or 0 (just started), and there are positive
592 * blocks to go, go there. The 0 case moves to block 1.
593 */
594 else if (i <= 0 && (int)bbno - i < mp->m_sb.sb_rbmblocks - 1)
595 i = 1 - i;
596 /*
597 * If negative or 0 and there are more negative blocks,
598 * go there.
599 */
600 else if (i <= 0 && (int)bbno + i > 0)
601 i--;
602 /*
603 * Must be done. Return failure.
604 */
605 else
606 break;
607 }
608 *rtblock = NULLRTBLOCK;
609 return 0;
610}
611
612/*
613 * Allocate an extent of length minlen<=len<=maxlen, with no position
614 * specified. If we don't get maxlen then use prod to trim
615 * the length, if given. The lengths are all in rtextents.
616 */
617STATIC int /* error */
618xfs_rtallocate_extent_size(
619 xfs_mount_t *mp, /* file system mount point */
620 xfs_trans_t *tp, /* transaction pointer */
621 xfs_extlen_t minlen, /* minimum length to allocate */
622 xfs_extlen_t maxlen, /* maximum length to allocate */
623 xfs_extlen_t *len, /* out: actual length allocated */
624 xfs_buf_t **rbpp, /* in/out: summary block buffer */
625 xfs_fsblock_t *rsb, /* in/out: summary block number */
626 xfs_extlen_t prod, /* extent product factor */
627 xfs_rtblock_t *rtblock) /* out: start block allocated */
628{
629 int error; /* error value */
630 int i; /* bitmap block number */
631 int l; /* level number (loop control) */
632 xfs_rtblock_t n; /* next block to be tried */
633 xfs_rtblock_t r; /* result block number */
634 xfs_suminfo_t sum; /* summary information for extents */
635
636 ASSERT(minlen % prod == 0 && maxlen % prod == 0);
David Chinner79071eb2008-08-13 15:41:12 +1000637 ASSERT(maxlen != 0);
638
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 /*
640 * Loop over all the levels starting with maxlen.
641 * At each level, look at all the bitmap blocks, to see if there
642 * are extents starting there that are long enough (>= maxlen).
643 * Note, only on the initial level can the allocation fail if
644 * the summary says there's an extent.
645 */
646 for (l = xfs_highbit32(maxlen); l < mp->m_rsumlevels; l++) {
647 /*
648 * Loop over all the bitmap blocks.
649 */
650 for (i = 0; i < mp->m_sb.sb_rbmblocks; i++) {
651 /*
652 * Get the summary for this level/block.
653 */
654 error = xfs_rtget_summary(mp, tp, l, i, rbpp, rsb,
655 &sum);
656 if (error) {
657 return error;
658 }
659 /*
660 * Nothing there, on to the next block.
661 */
662 if (!sum)
663 continue;
664 /*
665 * Try allocating the extent.
666 */
667 error = xfs_rtallocate_extent_block(mp, tp, i, maxlen,
668 maxlen, len, &n, rbpp, rsb, prod, &r);
669 if (error) {
670 return error;
671 }
672 /*
673 * If it worked, return that.
674 */
675 if (r != NULLRTBLOCK) {
676 *rtblock = r;
677 return 0;
678 }
679 /*
680 * If the "next block to try" returned from the
681 * allocator is beyond the next bitmap block,
682 * skip to that bitmap block.
683 */
684 if (XFS_BITTOBLOCK(mp, n) > i + 1)
685 i = XFS_BITTOBLOCK(mp, n) - 1;
686 }
687 }
688 /*
689 * Didn't find any maxlen blocks. Try smaller ones, unless
690 * we're asking for a fixed size extent.
691 */
692 if (minlen > --maxlen) {
693 *rtblock = NULLRTBLOCK;
694 return 0;
695 }
David Chinner79071eb2008-08-13 15:41:12 +1000696 ASSERT(minlen != 0);
697 ASSERT(maxlen != 0);
698
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 /*
700 * Loop over sizes, from maxlen down to minlen.
701 * This time, when we do the allocations, allow smaller ones
702 * to succeed.
703 */
704 for (l = xfs_highbit32(maxlen); l >= xfs_highbit32(minlen); l--) {
705 /*
706 * Loop over all the bitmap blocks, try an allocation
707 * starting in that block.
708 */
709 for (i = 0; i < mp->m_sb.sb_rbmblocks; i++) {
710 /*
711 * Get the summary information for this level/block.
712 */
713 error = xfs_rtget_summary(mp, tp, l, i, rbpp, rsb,
714 &sum);
715 if (error) {
716 return error;
717 }
718 /*
719 * If nothing there, go on to next.
720 */
721 if (!sum)
722 continue;
723 /*
724 * Try the allocation. Make sure the specified
725 * minlen/maxlen are in the possible range for
726 * this summary level.
727 */
728 error = xfs_rtallocate_extent_block(mp, tp, i,
729 XFS_RTMAX(minlen, 1 << l),
730 XFS_RTMIN(maxlen, (1 << (l + 1)) - 1),
731 len, &n, rbpp, rsb, prod, &r);
732 if (error) {
733 return error;
734 }
735 /*
736 * If it worked, return that extent.
737 */
738 if (r != NULLRTBLOCK) {
739 *rtblock = r;
740 return 0;
741 }
742 /*
743 * If the "next block to try" returned from the
744 * allocator is beyond the next bitmap block,
745 * skip to that bitmap block.
746 */
747 if (XFS_BITTOBLOCK(mp, n) > i + 1)
748 i = XFS_BITTOBLOCK(mp, n) - 1;
749 }
750 }
751 /*
752 * Got nothing, return failure.
753 */
754 *rtblock = NULLRTBLOCK;
755 return 0;
756}
757
758/*
Dave Chinnerc963c612013-10-15 09:17:56 +1100759 * Allocate space to the bitmap or summary file, and zero it, for growfs.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 */
Brian Fosterd4a97a02015-08-19 10:01:40 +1000761STATIC int
Dave Chinnerc963c612013-10-15 09:17:56 +1100762xfs_growfs_rt_alloc(
Brian Fosterd4a97a02015-08-19 10:01:40 +1000763 struct xfs_mount *mp, /* file system mount point */
764 xfs_extlen_t oblocks, /* old count of blocks */
765 xfs_extlen_t nblocks, /* new count of blocks */
766 struct xfs_inode *ip) /* inode (bitmap/summary) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767{
Brian Fosterd4a97a02015-08-19 10:01:40 +1000768 xfs_fileoff_t bno; /* block number in file */
769 struct xfs_buf *bp; /* temporary buffer for zeroing */
Brian Fosterd4a97a02015-08-19 10:01:40 +1000770 xfs_daddr_t d; /* disk block address */
771 int error; /* error return value */
772 xfs_fsblock_t firstblock;/* first block allocated in xaction */
Darrick J. Wong2c3234d2016-08-03 11:19:29 +1000773 struct xfs_defer_ops dfops; /* list of freed blocks */
Brian Fosterd4a97a02015-08-19 10:01:40 +1000774 xfs_fsblock_t fsbno; /* filesystem block for bno */
775 struct xfs_bmbt_irec map; /* block map output */
776 int nmap; /* number of block maps */
777 int resblks; /* space reservation */
778 struct xfs_trans *tp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779
Dave Chinnerc963c612013-10-15 09:17:56 +1100780 /*
781 * Allocate space to the file, as necessary.
782 */
783 while (oblocks < nblocks) {
Dave Chinnerc963c612013-10-15 09:17:56 +1100784 resblks = XFS_GROWFSRT_SPACE_RES(mp, nblocks - oblocks);
785 /*
786 * Reserve space & log for one extent added to the file.
787 */
Christoph Hellwig253f4912016-04-06 09:19:55 +1000788 error = xfs_trans_alloc(mp, &M_RES(mp)->tr_growrtalloc, resblks,
789 0, 0, &tp);
Dave Chinnerc963c612013-10-15 09:17:56 +1100790 if (error)
Christoph Hellwig253f4912016-04-06 09:19:55 +1000791 return error;
Dave Chinnerc963c612013-10-15 09:17:56 +1100792 /*
793 * Lock the inode.
794 */
795 xfs_ilock(ip, XFS_ILOCK_EXCL);
796 xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL);
797
Darrick J. Wong2c3234d2016-08-03 11:19:29 +1000798 xfs_defer_init(&dfops, &firstblock);
Dave Chinnerc963c612013-10-15 09:17:56 +1100799 /*
800 * Allocate blocks to the bitmap file.
801 */
802 nmap = 1;
Dave Chinnerc963c612013-10-15 09:17:56 +1100803 error = xfs_bmapi_write(tp, ip, oblocks, nblocks - oblocks,
804 XFS_BMAPI_METADATA, &firstblock,
Darrick J. Wong2c3234d2016-08-03 11:19:29 +1000805 resblks, &map, &nmap, &dfops);
Dave Chinnerc963c612013-10-15 09:17:56 +1100806 if (!error && nmap < 1)
Dave Chinner24513372014-06-25 14:58:08 +1000807 error = -ENOSPC;
Dave Chinnerc963c612013-10-15 09:17:56 +1100808 if (error)
Brian Fosterd4a97a02015-08-19 10:01:40 +1000809 goto out_bmap_cancel;
Dave Chinnerc963c612013-10-15 09:17:56 +1100810 /*
811 * Free any blocks freed up in the transaction, then commit.
812 */
Darrick J. Wong2c3234d2016-08-03 11:19:29 +1000813 error = xfs_defer_finish(&tp, &dfops, NULL);
Dave Chinnerc963c612013-10-15 09:17:56 +1100814 if (error)
Brian Fosterd4a97a02015-08-19 10:01:40 +1000815 goto out_bmap_cancel;
Christoph Hellwig70393312015-06-04 13:48:08 +1000816 error = xfs_trans_commit(tp);
Dave Chinnerc963c612013-10-15 09:17:56 +1100817 if (error)
Brian Fosterd4a97a02015-08-19 10:01:40 +1000818 return error;
Dave Chinnerc963c612013-10-15 09:17:56 +1100819 /*
820 * Now we need to clear the allocated blocks.
821 * Do this one block per transaction, to keep it simple.
822 */
Dave Chinnerc963c612013-10-15 09:17:56 +1100823 for (bno = map.br_startoff, fsbno = map.br_startblock;
824 bno < map.br_startoff + map.br_blockcount;
825 bno++, fsbno++) {
Dave Chinnerc963c612013-10-15 09:17:56 +1100826 /*
827 * Reserve log for one block zeroing.
828 */
Christoph Hellwig253f4912016-04-06 09:19:55 +1000829 error = xfs_trans_alloc(mp, &M_RES(mp)->tr_growrtzero,
830 0, 0, 0, &tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 if (error)
Christoph Hellwig253f4912016-04-06 09:19:55 +1000832 return error;
Dave Chinnerc963c612013-10-15 09:17:56 +1100833 /*
834 * Lock the bitmap inode.
835 */
836 xfs_ilock(ip, XFS_ILOCK_EXCL);
837 xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL);
838 /*
839 * Get a buffer for the block.
840 */
841 d = XFS_FSB_TO_DADDR(mp, fsbno);
842 bp = xfs_trans_get_buf(tp, mp->m_ddev_targp, d,
843 mp->m_bsize, 0);
844 if (bp == NULL) {
Dave Chinner24513372014-06-25 14:58:08 +1000845 error = -EIO;
Brian Fosterd4a97a02015-08-19 10:01:40 +1000846 goto out_trans_cancel;
Dave Chinnerc963c612013-10-15 09:17:56 +1100847 }
848 memset(bp->b_addr, 0, mp->m_sb.sb_blocksize);
849 xfs_trans_log_buf(tp, bp, 0, mp->m_sb.sb_blocksize - 1);
850 /*
851 * Commit the transaction.
852 */
Christoph Hellwig70393312015-06-04 13:48:08 +1000853 error = xfs_trans_commit(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 if (error)
Brian Fosterd4a97a02015-08-19 10:01:40 +1000855 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 }
Dave Chinnerc963c612013-10-15 09:17:56 +1100857 /*
858 * Go on to the next extent, if any.
859 */
860 oblocks = map.br_startoff + map.br_blockcount;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 }
Brian Fosterd4a97a02015-08-19 10:01:40 +1000862
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864
Brian Fosterd4a97a02015-08-19 10:01:40 +1000865out_bmap_cancel:
Darrick J. Wong2c3234d2016-08-03 11:19:29 +1000866 xfs_defer_cancel(&dfops);
Brian Fosterd4a97a02015-08-19 10:01:40 +1000867out_trans_cancel:
868 xfs_trans_cancel(tp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 return error;
870}
871
872/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 * Visible (exported) functions.
874 */
875
876/*
877 * Grow the realtime area of the filesystem.
878 */
879int
880xfs_growfs_rt(
881 xfs_mount_t *mp, /* mount point for filesystem */
882 xfs_growfs_rt_t *in) /* growfs rt input struct */
883{
884 xfs_rtblock_t bmbno; /* bitmap block number */
885 xfs_buf_t *bp; /* temporary buffer */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 int error; /* error return value */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 xfs_mount_t *nmp; /* new (fake) mount structure */
Christoph Hellwigd5cf09b2014-07-30 09:12:05 +1000888 xfs_rfsblock_t nrblocks; /* new number of realtime blocks */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 xfs_extlen_t nrbmblocks; /* new number of rt bitmap blocks */
Christoph Hellwigd5cf09b2014-07-30 09:12:05 +1000890 xfs_rtblock_t nrextents; /* new number of realtime extents */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 uint8_t nrextslog; /* new log2 of sb_rextents */
892 xfs_extlen_t nrsumblocks; /* new number of summary blocks */
893 uint nrsumlevels; /* new rt summary levels */
894 uint nrsumsize; /* new size of rt summary, bytes */
895 xfs_sb_t *nsbp; /* new superblock */
896 xfs_extlen_t rbmblocks; /* current number of rt bitmap blocks */
897 xfs_extlen_t rsumblocks; /* current number of rt summary blks */
898 xfs_sb_t *sbp; /* old superblock */
899 xfs_fsblock_t sumbno; /* summary block number */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900
901 sbp = &mp->m_sb;
902 /*
903 * Initial error checking.
904 */
sandeen@sandeen.net743bb4652008-11-25 21:20:06 -0600905 if (!capable(CAP_SYS_ADMIN))
Dave Chinner24513372014-06-25 14:58:08 +1000906 return -EPERM;
Eric Sesterhenn73024cf2006-06-28 08:42:26 +1000907 if (mp->m_rtdev_targp == NULL || mp->m_rbmip == NULL ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908 (nrblocks = in->newblocks) <= sbp->sb_rblocks ||
909 (sbp->sb_rblocks && (in->extsize != sbp->sb_rextsize)))
Dave Chinner24513372014-06-25 14:58:08 +1000910 return -EINVAL;
Nathan Scott4cc929e2007-05-14 18:24:02 +1000911 if ((error = xfs_sb_validate_fsb_count(sbp, nrblocks)))
912 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 /*
914 * Read in the last block of the device, make sure it exists.
915 */
Dave Chinnerba372672014-10-02 09:05:32 +1000916 error = xfs_buf_read_uncached(mp->m_rtdev_targp,
Dave Chinner1922c942010-09-22 10:47:20 +1000917 XFS_FSB_TO_BB(mp, nrblocks - 1),
Dave Chinnerba372672014-10-02 09:05:32 +1000918 XFS_FSB_TO_BB(mp, 1), 0, &bp, NULL);
919 if (error)
Dave Chinnereab4e632012-11-12 22:54:02 +1100920 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 xfs_buf_relse(bp);
Dave Chinner1922c942010-09-22 10:47:20 +1000922
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923 /*
924 * Calculate new parameters. These are the final values to be reached.
925 */
926 nrextents = nrblocks;
927 do_div(nrextents, in->extsize);
Nathan Scott68c32712006-09-28 11:03:53 +1000928 nrbmblocks = howmany_64(nrextents, NBBY * sbp->sb_blocksize);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 nrextslog = xfs_highbit32(nrextents);
930 nrsumlevels = nrextslog + 1;
931 nrsumsize = (uint)sizeof(xfs_suminfo_t) * nrsumlevels * nrbmblocks;
932 nrsumblocks = XFS_B_TO_FSB(mp, nrsumsize);
933 nrsumsize = XFS_FSB_TO_B(mp, nrsumblocks);
934 /*
935 * New summary size can't be more than half the size of
936 * the log. This prevents us from getting a log overflow,
937 * since we'll log basically the whole summary file at once.
938 */
939 if (nrsumblocks > (mp->m_sb.sb_logblocks >> 1))
Dave Chinner24513372014-06-25 14:58:08 +1000940 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941 /*
942 * Get the old block counts for bitmap and summary inodes.
943 * These can't change since other growfs callers are locked out.
944 */
945 rbmblocks = XFS_B_TO_FSB(mp, mp->m_rbmip->i_d.di_size);
946 rsumblocks = XFS_B_TO_FSB(mp, mp->m_rsumip->i_d.di_size);
947 /*
948 * Allocate space to the bitmap and summary files, as necessary.
949 */
Christoph Hellwig1050c712011-02-13 13:25:31 +0000950 error = xfs_growfs_rt_alloc(mp, rbmblocks, nrbmblocks, mp->m_rbmip);
951 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952 return error;
Christoph Hellwig1050c712011-02-13 13:25:31 +0000953 error = xfs_growfs_rt_alloc(mp, rsumblocks, nrsumblocks, mp->m_rsumip);
954 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955 return error;
Nathan Scottd432c802006-09-28 11:03:44 +1000956 /*
957 * Allocate a new (fake) mount/sb.
958 */
959 nmp = kmem_alloc(sizeof(*nmp), KM_SLEEP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960 /*
961 * Loop over the bitmap blocks.
962 * We will do everything one bitmap block at a time.
963 * Skip the current block if it is exactly full.
964 * This also deals with the case where there were no rtextents before.
965 */
966 for (bmbno = sbp->sb_rbmblocks -
967 ((sbp->sb_rextents & ((1 << mp->m_blkbit_log) - 1)) != 0);
968 bmbno < nrbmblocks;
969 bmbno++) {
Dave Chinner0924b582008-11-28 14:23:34 +1100970 xfs_trans_t *tp;
Dave Chinner0924b582008-11-28 14:23:34 +1100971
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 *nmp = *mp;
973 nsbp = &nmp->m_sb;
974 /*
975 * Calculate new sb and mount fields for this round.
976 */
977 nsbp->sb_rextsize = in->extsize;
978 nsbp->sb_rbmblocks = bmbno + 1;
979 nsbp->sb_rblocks =
980 XFS_RTMIN(nrblocks,
981 nsbp->sb_rbmblocks * NBBY *
982 nsbp->sb_blocksize * nsbp->sb_rextsize);
983 nsbp->sb_rextents = nsbp->sb_rblocks;
984 do_div(nsbp->sb_rextents, nsbp->sb_rextsize);
David Chinner79071eb2008-08-13 15:41:12 +1000985 ASSERT(nsbp->sb_rextents != 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 nsbp->sb_rextslog = xfs_highbit32(nsbp->sb_rextents);
987 nrsumlevels = nmp->m_rsumlevels = nsbp->sb_rextslog + 1;
988 nrsumsize =
989 (uint)sizeof(xfs_suminfo_t) * nrsumlevels *
990 nsbp->sb_rbmblocks;
991 nrsumblocks = XFS_B_TO_FSB(mp, nrsumsize);
992 nmp->m_rsumsize = nrsumsize = XFS_FSB_TO_B(mp, nrsumblocks);
993 /*
994 * Start a transaction, get the log reservation.
995 */
Christoph Hellwig253f4912016-04-06 09:19:55 +1000996 error = xfs_trans_alloc(mp, &M_RES(mp)->tr_growrtfree, 0, 0, 0,
997 &tp);
Jie Liu3d3c8b52013-08-12 20:49:59 +1000998 if (error)
Christoph Hellwig253f4912016-04-06 09:19:55 +1000999 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000 /*
1001 * Lock out other callers by grabbing the bitmap inode lock.
1002 */
Christoph Hellwig1050c712011-02-13 13:25:31 +00001003 xfs_ilock(mp->m_rbmip, XFS_ILOCK_EXCL);
Christoph Hellwigddc34152011-09-19 15:00:54 +00001004 xfs_trans_ijoin(tp, mp->m_rbmip, XFS_ILOCK_EXCL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005 /*
1006 * Update the bitmap inode's size.
1007 */
1008 mp->m_rbmip->i_d.di_size =
1009 nsbp->sb_rbmblocks * nsbp->sb_blocksize;
1010 xfs_trans_log_inode(tp, mp->m_rbmip, XFS_ILOG_CORE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011 /*
1012 * Get the summary inode into the transaction.
1013 */
Christoph Hellwig1050c712011-02-13 13:25:31 +00001014 xfs_ilock(mp->m_rsumip, XFS_ILOCK_EXCL);
Christoph Hellwigddc34152011-09-19 15:00:54 +00001015 xfs_trans_ijoin(tp, mp->m_rsumip, XFS_ILOCK_EXCL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016 /*
1017 * Update the summary inode's size.
1018 */
1019 mp->m_rsumip->i_d.di_size = nmp->m_rsumsize;
1020 xfs_trans_log_inode(tp, mp->m_rsumip, XFS_ILOG_CORE);
1021 /*
1022 * Copy summary data from old to new sizes.
1023 * Do this when the real size (not block-aligned) changes.
1024 */
1025 if (sbp->sb_rbmblocks != nsbp->sb_rbmblocks ||
1026 mp->m_rsumlevels != nmp->m_rsumlevels) {
1027 error = xfs_rtcopy_summary(mp, nmp, tp);
1028 if (error)
Dave Chinner0924b582008-11-28 14:23:34 +11001029 goto error_cancel;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 }
1031 /*
1032 * Update superblock fields.
1033 */
1034 if (nsbp->sb_rextsize != sbp->sb_rextsize)
1035 xfs_trans_mod_sb(tp, XFS_TRANS_SB_REXTSIZE,
1036 nsbp->sb_rextsize - sbp->sb_rextsize);
1037 if (nsbp->sb_rbmblocks != sbp->sb_rbmblocks)
1038 xfs_trans_mod_sb(tp, XFS_TRANS_SB_RBMBLOCKS,
1039 nsbp->sb_rbmblocks - sbp->sb_rbmblocks);
1040 if (nsbp->sb_rblocks != sbp->sb_rblocks)
1041 xfs_trans_mod_sb(tp, XFS_TRANS_SB_RBLOCKS,
1042 nsbp->sb_rblocks - sbp->sb_rblocks);
1043 if (nsbp->sb_rextents != sbp->sb_rextents)
1044 xfs_trans_mod_sb(tp, XFS_TRANS_SB_REXTENTS,
1045 nsbp->sb_rextents - sbp->sb_rextents);
1046 if (nsbp->sb_rextslog != sbp->sb_rextslog)
1047 xfs_trans_mod_sb(tp, XFS_TRANS_SB_REXTSLOG,
1048 nsbp->sb_rextslog - sbp->sb_rextslog);
1049 /*
1050 * Free new extent.
1051 */
1052 bp = NULL;
1053 error = xfs_rtfree_range(nmp, tp, sbp->sb_rextents,
1054 nsbp->sb_rextents - sbp->sb_rextents, &bp, &sumbno);
Dave Chinner0924b582008-11-28 14:23:34 +11001055 if (error) {
1056error_cancel:
Christoph Hellwig4906e212015-06-04 13:47:56 +10001057 xfs_trans_cancel(tp);
Nathan Scottd432c802006-09-28 11:03:44 +10001058 break;
Dave Chinner0924b582008-11-28 14:23:34 +11001059 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060 /*
1061 * Mark more blocks free in the superblock.
1062 */
1063 xfs_trans_mod_sb(tp, XFS_TRANS_SB_FREXTENTS,
1064 nsbp->sb_rextents - sbp->sb_rextents);
1065 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066 * Update mp values into the real mp structure.
1067 */
1068 mp->m_rsumlevels = nrsumlevels;
1069 mp->m_rsumsize = nrsumsize;
David Chinnere5720ee2008-04-10 12:21:18 +10001070
Christoph Hellwig70393312015-06-04 13:48:08 +10001071 error = xfs_trans_commit(tp);
Dave Chinner0924b582008-11-28 14:23:34 +11001072 if (error)
David Chinnere5720ee2008-04-10 12:21:18 +10001073 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074 }
Nathan Scottd432c802006-09-28 11:03:44 +10001075
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 /*
Nathan Scottd432c802006-09-28 11:03:44 +10001077 * Free the fake mp structure.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078 */
Denys Vlasenkof0e2d932008-05-19 16:31:57 +10001079 kmem_free(nmp);
Nathan Scottd432c802006-09-28 11:03:44 +10001080
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081 return error;
1082}
1083
1084/*
1085 * Allocate an extent in the realtime subvolume, with the usual allocation
1086 * parameters. The length units are all in realtime extents, as is the
1087 * result block number.
1088 */
1089int /* error */
1090xfs_rtallocate_extent(
1091 xfs_trans_t *tp, /* transaction pointer */
1092 xfs_rtblock_t bno, /* starting block number to allocate */
1093 xfs_extlen_t minlen, /* minimum length to allocate */
1094 xfs_extlen_t maxlen, /* maximum length to allocate */
1095 xfs_extlen_t *len, /* out: actual length allocated */
1096 xfs_alloctype_t type, /* allocation type XFS_ALLOCTYPE... */
1097 int wasdel, /* was a delayed allocation extent */
1098 xfs_extlen_t prod, /* extent product factor */
1099 xfs_rtblock_t *rtblock) /* out: start block allocated */
1100{
Christoph Hellwig04e99452011-01-25 09:06:19 +00001101 xfs_mount_t *mp = tp->t_mountp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 int error; /* error value */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103 xfs_rtblock_t r; /* result allocated block */
1104 xfs_fsblock_t sb; /* summary file block number */
1105 xfs_buf_t *sumbp; /* summary file block buffer */
1106
Christoph Hellwig04e99452011-01-25 09:06:19 +00001107 ASSERT(xfs_isilocked(mp->m_rbmip, XFS_ILOCK_EXCL));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108 ASSERT(minlen > 0 && minlen <= maxlen);
Christoph Hellwig04e99452011-01-25 09:06:19 +00001109
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110 /*
1111 * If prod is set then figure out what to do to minlen and maxlen.
1112 */
1113 if (prod > 1) {
1114 xfs_extlen_t i;
1115
1116 if ((i = maxlen % prod))
1117 maxlen -= i;
1118 if ((i = minlen % prod))
1119 minlen += prod - i;
1120 if (maxlen < minlen) {
1121 *rtblock = NULLRTBLOCK;
1122 return 0;
1123 }
1124 }
Christoph Hellwig04e99452011-01-25 09:06:19 +00001125
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126 sumbp = NULL;
1127 /*
1128 * Allocate by size, or near another block, or exactly at some block.
1129 */
1130 switch (type) {
1131 case XFS_ALLOCTYPE_ANY_AG:
1132 error = xfs_rtallocate_extent_size(mp, tp, minlen, maxlen, len,
1133 &sumbp, &sb, prod, &r);
1134 break;
1135 case XFS_ALLOCTYPE_NEAR_BNO:
1136 error = xfs_rtallocate_extent_near(mp, tp, bno, minlen, maxlen,
1137 len, &sumbp, &sb, prod, &r);
1138 break;
1139 case XFS_ALLOCTYPE_THIS_BNO:
1140 error = xfs_rtallocate_extent_exact(mp, tp, bno, minlen, maxlen,
1141 len, &sumbp, &sb, prod, &r);
1142 break;
1143 default:
Dave Chinner24513372014-06-25 14:58:08 +10001144 error = -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145 ASSERT(0);
1146 }
Christoph Hellwig04e99452011-01-25 09:06:19 +00001147 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148 return error;
Christoph Hellwig04e99452011-01-25 09:06:19 +00001149
Linus Torvalds1da177e2005-04-16 15:20:36 -07001150 /*
1151 * If it worked, update the superblock.
1152 */
1153 if (r != NULLRTBLOCK) {
1154 long slen = (long)*len;
1155
1156 ASSERT(*len >= minlen && *len <= maxlen);
1157 if (wasdel)
1158 xfs_trans_mod_sb(tp, XFS_TRANS_SB_RES_FREXTENTS, -slen);
1159 else
1160 xfs_trans_mod_sb(tp, XFS_TRANS_SB_FREXTENTS, -slen);
1161 }
1162 *rtblock = r;
1163 return 0;
1164}
1165
1166/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167 * Initialize realtime fields in the mount structure.
1168 */
1169int /* error */
1170xfs_rtmount_init(
Dave Chinnerba372672014-10-02 09:05:32 +10001171 struct xfs_mount *mp) /* file system mount structure */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172{
Dave Chinnerba372672014-10-02 09:05:32 +10001173 struct xfs_buf *bp; /* buffer for last block of subvolume */
1174 struct xfs_sb *sbp; /* filesystem superblock copy in mount */
1175 xfs_daddr_t d; /* address of last block of subvolume */
1176 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177
1178 sbp = &mp->m_sb;
1179 if (sbp->sb_rblocks == 0)
1180 return 0;
1181 if (mp->m_rtdev_targp == NULL) {
Dave Chinner0b932cc2011-03-07 10:08:35 +11001182 xfs_warn(mp,
1183 "Filesystem has a realtime volume, use rtdev=device option");
Dave Chinner24513372014-06-25 14:58:08 +10001184 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185 }
1186 mp->m_rsumlevels = sbp->sb_rextslog + 1;
1187 mp->m_rsumsize =
1188 (uint)sizeof(xfs_suminfo_t) * mp->m_rsumlevels *
1189 sbp->sb_rbmblocks;
1190 mp->m_rsumsize = roundup(mp->m_rsumsize, sbp->sb_blocksize);
1191 mp->m_rbmip = mp->m_rsumip = NULL;
1192 /*
1193 * Check that the realtime section is an ok size.
1194 */
1195 d = (xfs_daddr_t)XFS_FSB_TO_BB(mp, mp->m_sb.sb_rblocks);
1196 if (XFS_BB_TO_FSB(mp, d) != mp->m_sb.sb_rblocks) {
Dave Chinner0b932cc2011-03-07 10:08:35 +11001197 xfs_warn(mp, "realtime mount -- %llu != %llu",
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198 (unsigned long long) XFS_BB_TO_FSB(mp, d),
1199 (unsigned long long) mp->m_sb.sb_rblocks);
Dave Chinner24513372014-06-25 14:58:08 +10001200 return -EFBIG;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201 }
Dave Chinnerba372672014-10-02 09:05:32 +10001202 error = xfs_buf_read_uncached(mp->m_rtdev_targp,
Dave Chinner1922c942010-09-22 10:47:20 +10001203 d - XFS_FSB_TO_BB(mp, 1),
Dave Chinnerba372672014-10-02 09:05:32 +10001204 XFS_FSB_TO_BB(mp, 1), 0, &bp, NULL);
1205 if (error) {
Dave Chinner0b932cc2011-03-07 10:08:35 +11001206 xfs_warn(mp, "realtime device size check failed");
Dave Chinnerba372672014-10-02 09:05:32 +10001207 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208 }
1209 xfs_buf_relse(bp);
1210 return 0;
1211}
1212
1213/*
1214 * Get the bitmap and summary inodes into the mount structure
1215 * at mount time.
1216 */
1217int /* error */
1218xfs_rtmount_inodes(
1219 xfs_mount_t *mp) /* file system mount structure */
1220{
1221 int error; /* error return value */
1222 xfs_sb_t *sbp;
1223
1224 sbp = &mp->m_sb;
Dave Chinner7b6259e2010-06-24 11:35:17 +10001225 error = xfs_iget(mp, NULL, sbp->sb_rbmino, 0, 0, &mp->m_rbmip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226 if (error)
1227 return error;
1228 ASSERT(mp->m_rbmip != NULL);
Darrick J. Wongdfeec252018-12-12 15:18:52 -08001229
Dave Chinner7b6259e2010-06-24 11:35:17 +10001230 error = xfs_iget(mp, NULL, sbp->sb_rsumino, 0, 0, &mp->m_rsumip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231 if (error) {
Christoph Hellwig43355092008-03-27 18:01:08 +11001232 IRELE(mp->m_rbmip);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233 return error;
1234 }
1235 ASSERT(mp->m_rsumip != NULL);
1236 return 0;
1237}
1238
Christoph Hellwigb93b6e42009-02-04 09:33:58 +01001239void
1240xfs_rtunmount_inodes(
1241 struct xfs_mount *mp)
1242{
1243 if (mp->m_rbmip)
1244 IRELE(mp->m_rbmip);
1245 if (mp->m_rsumip)
1246 IRELE(mp->m_rsumip);
1247}
1248
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249/*
1250 * Pick an extent for allocation at the start of a new realtime file.
1251 * Use the sequence number stored in the atime field of the bitmap inode.
1252 * Translate this to a fraction of the rtextents, and return the product
1253 * of rtextents and the fraction.
1254 * The fraction sequence is 0, 1/2, 1/4, 3/4, 1/8, ..., 7/8, 1/16, ...
1255 */
1256int /* error */
1257xfs_rtpick_extent(
1258 xfs_mount_t *mp, /* file system mount point */
1259 xfs_trans_t *tp, /* transaction pointer */
1260 xfs_extlen_t len, /* allocation length (rtextents) */
1261 xfs_rtblock_t *pick) /* result rt extent */
1262{
1263 xfs_rtblock_t b; /* result block */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264 int log2; /* log of sequence number */
1265 __uint64_t resid; /* residual after log removed */
1266 __uint64_t seq; /* sequence number of file creation */
1267 __uint64_t *seqp; /* pointer to seqno in inode */
1268
Christoph Hellwig04e99452011-01-25 09:06:19 +00001269 ASSERT(xfs_isilocked(mp->m_rbmip, XFS_ILOCK_EXCL));
1270
Dave Chinner39878482016-02-09 16:54:58 +11001271 seqp = (__uint64_t *)&VFS_I(mp->m_rbmip)->i_atime;
Christoph Hellwig04e99452011-01-25 09:06:19 +00001272 if (!(mp->m_rbmip->i_d.di_flags & XFS_DIFLAG_NEWRTBM)) {
1273 mp->m_rbmip->i_d.di_flags |= XFS_DIFLAG_NEWRTBM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274 *seqp = 0;
1275 }
1276 seq = *seqp;
1277 if ((log2 = xfs_highbit64(seq)) == -1)
1278 b = 0;
1279 else {
1280 resid = seq - (1ULL << log2);
1281 b = (mp->m_sb.sb_rextents * ((resid << 1) + 1ULL)) >>
1282 (log2 + 1);
1283 if (b >= mp->m_sb.sb_rextents)
1284 b = do_mod(b, mp->m_sb.sb_rextents);
1285 if (b + len > mp->m_sb.sb_rextents)
1286 b = mp->m_sb.sb_rextents - len;
1287 }
1288 *seqp = seq + 1;
Christoph Hellwig04e99452011-01-25 09:06:19 +00001289 xfs_trans_log_inode(tp, mp->m_rbmip, XFS_ILOG_CORE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290 *pick = b;
1291 return 0;
1292}