]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/blame - fs/xfs/xfs_fsops.c
xfs: add online scrub for superblock counters
[mirror_ubuntu-jammy-kernel.git] / fs / xfs / xfs_fsops.c
CommitLineData
0b61f8a4 1// SPDX-License-Identifier: GPL-2.0
1da177e4 2/*
7b718769
NS
3 * Copyright (c) 2000-2005 Silicon Graphics, Inc.
4 * All Rights Reserved.
1da177e4 5 */
1da177e4 6#include "xfs.h"
a844f451 7#include "xfs_fs.h"
70a9883c 8#include "xfs_shared.h"
239880ef 9#include "xfs_format.h"
a4fbe6ab 10#include "xfs_log_format.h"
239880ef 11#include "xfs_trans_resv.h"
1da177e4 12#include "xfs_sb.h"
1da177e4 13#include "xfs_mount.h"
3ab78df2 14#include "xfs_defer.h"
239880ef 15#include "xfs_trans.h"
1da177e4 16#include "xfs_error.h"
a4fbe6ab 17#include "xfs_btree.h"
1da177e4 18#include "xfs_alloc.h"
1da177e4 19#include "xfs_fsops.h"
1da177e4
LT
20#include "xfs_trans_space.h"
21#include "xfs_rtalloc.h"
0b1b213f 22#include "xfs_trace.h"
239880ef 23#include "xfs_log.h"
b16817b6 24#include "xfs_ag.h"
84d69619 25#include "xfs_ag_resv.h"
1da177e4
LT
26
27/*
b16817b6 28 * growfs operations
1da177e4 29 */
1da177e4
LT
30static int
31xfs_growfs_data_private(
32 xfs_mount_t *mp, /* mount point for filesystem */
33 xfs_growfs_data_t *in) /* growfs data input struct */
34{
1da177e4 35 xfs_buf_t *bp;
83a7f86e 36 int error;
1da177e4
LT
37 xfs_agnumber_t nagcount;
38 xfs_agnumber_t nagimax = 0;
39 xfs_rfsblock_t nb, nb_mod;
40 xfs_rfsblock_t new;
1da177e4 41 xfs_agnumber_t oagcount;
1da177e4 42 xfs_trans_t *tp;
0410c3bb 43 struct aghdr_init_data id = {};
1da177e4
LT
44
45 nb = in->newblocks;
87444b8c 46 if (nb < mp->m_sb.sb_dblocks)
2451337d 47 return -EINVAL;
4cc929ee
NS
48 if ((error = xfs_sb_validate_fsb_count(&mp->m_sb, nb)))
49 return error;
ba372674 50 error = xfs_buf_read_uncached(mp->m_ddev_targp,
1922c949 51 XFS_FSB_TO_BB(mp, nb) - XFS_FSS_TO_BB(mp, 1),
ba372674
DC
52 XFS_FSS_TO_BB(mp, 1), 0, &bp, NULL);
53 if (error)
eab4e633 54 return error;
1da177e4
LT
55 xfs_buf_relse(bp);
56
57 new = nb; /* use new as a temporary here */
58 nb_mod = do_div(new, mp->m_sb.sb_agblocks);
59 nagcount = new + (nb_mod != 0);
60 if (nb_mod && nb_mod < XFS_MIN_AG_BLOCKS) {
61 nagcount--;
e6da7c9f 62 nb = (xfs_rfsblock_t)nagcount * mp->m_sb.sb_agblocks;
1da177e4 63 if (nb < mp->m_sb.sb_dblocks)
2451337d 64 return -EINVAL;
1da177e4
LT
65 }
66 new = nb - mp->m_sb.sb_dblocks;
67 oagcount = mp->m_sb.sb_agcount;
0cc6eee1 68
1c1c6ebc
DC
69 /* allocate the new per-ag structures */
70 if (nagcount > oagcount) {
71 error = xfs_initialize_perag(mp, nagcount, &nagimax);
72 if (error)
73 return error;
1da177e4 74 }
1c1c6ebc 75
253f4911
CH
76 error = xfs_trans_alloc(mp, &M_RES(mp)->tr_growdata,
77 XFS_GROWFS_SPACE_RES(mp), 0, XFS_TRANS_RESERVE, &tp);
78 if (error)
1da177e4 79 return error;
1da177e4 80
1c1c6ebc 81 /*
9aebe805
DC
82 * Write new AG headers to disk. Non-transactional, but need to be
83 * written and completed prior to the growfs transaction being logged.
84 * To do this, we use a delayed write buffer list and wait for
85 * submission and IO completion of the list as a whole. This allows the
86 * IO subsystem to merge all the AG headers in a single AG into a single
87 * IO and hide most of the latency of the IO from us.
88 *
89 * This also means that if we get an error whilst building the buffer
90 * list to write, we can cancel the entire list without having written
91 * anything.
1c1c6ebc 92 */
0410c3bb
DC
93 INIT_LIST_HEAD(&id.buffer_list);
94 for (id.agno = nagcount - 1;
95 id.agno >= oagcount;
96 id.agno--, new -= id.agsize) {
97
98 if (id.agno == nagcount - 1)
99 id.agsize = nb -
100 (id.agno * (xfs_rfsblock_t)mp->m_sb.sb_agblocks);
1da177e4 101 else
0410c3bb 102 id.agsize = mp->m_sb.sb_agblocks;
b64f3a39 103
b16817b6 104 error = xfs_ag_init_headers(mp, &id);
9aebe805 105 if (error) {
0410c3bb 106 xfs_buf_delwri_cancel(&id.buffer_list);
83a7f86e 107 goto out_trans_cancel;
9aebe805 108 }
1da177e4 109 }
0410c3bb 110 error = xfs_buf_delwri_submit(&id.buffer_list);
9aebe805 111 if (error)
83a7f86e 112 goto out_trans_cancel;
9aebe805 113
0410c3bb 114 xfs_trans_agblocks_delta(tp, id.nfree);
cce77bcf 115
49dd56f2 116 /* If there are new blocks in the old last AG, extend it. */
1da177e4 117 if (new) {
49dd56f2 118 error = xfs_ag_extend_space(mp, tp, &id, new);
340785cc 119 if (error)
83a7f86e 120 goto out_trans_cancel;
1da177e4 121 }
1c1c6ebc
DC
122
123 /*
124 * Update changed superblock fields transactionally. These are not
125 * seen by the rest of the world until the transaction commit applies
126 * them atomically to the superblock.
127 */
1da177e4
LT
128 if (nagcount > oagcount)
129 xfs_trans_mod_sb(tp, XFS_TRANS_SB_AGCOUNT, nagcount - oagcount);
130 if (nb > mp->m_sb.sb_dblocks)
131 xfs_trans_mod_sb(tp, XFS_TRANS_SB_DBLOCKS,
132 nb - mp->m_sb.sb_dblocks);
0410c3bb
DC
133 if (id.nfree)
134 xfs_trans_mod_sb(tp, XFS_TRANS_SB_FDBLOCKS, id.nfree);
f8079b85 135 xfs_trans_set_sync(tp);
70393313 136 error = xfs_trans_commit(tp);
1c1c6ebc 137 if (error)
1da177e4 138 return error;
1c1c6ebc 139
1da177e4
LT
140 /* New allocation groups fully initialized, so update mount struct */
141 if (nagimax)
142 mp->m_maxagi = nagimax;
055388a3 143 xfs_set_low_space_thresholds(mp);
52548852 144 mp->m_alloc_set_aside = xfs_alloc_set_aside(mp);
1c1c6ebc 145
20e73b00
DW
146 /*
147 * If we expanded the last AG, free the per-AG reservation
148 * so we can reinitialize it with the new size.
149 */
150 if (new) {
151 struct xfs_perag *pag;
152
0410c3bb 153 pag = xfs_perag_get(mp, id.agno);
20e73b00
DW
154 error = xfs_ag_resv_free(pag);
155 xfs_perag_put(pag);
156 if (error)
83a7f86e 157 return error;
20e73b00
DW
158 }
159
83a7f86e
DC
160 /*
161 * Reserve AG metadata blocks. ENOSPC here does not mean there was a
162 * growfs failure, just that there still isn't space for new user data
163 * after the grow has been run.
164 */
84d69619 165 error = xfs_fs_reserve_ag_blocks(mp);
83a7f86e
DC
166 if (error == -ENOSPC)
167 error = 0;
168 return error;
169
170out_trans_cancel:
171 xfs_trans_cancel(tp);
172 return error;
173}
174
175static int
176xfs_growfs_log_private(
177 xfs_mount_t *mp, /* mount point for filesystem */
178 xfs_growfs_log_t *in) /* growfs log input struct */
179{
180 xfs_extlen_t nb;
181
182 nb = in->newblocks;
183 if (nb < XFS_MIN_LOG_BLOCKS || nb < XFS_B_TO_FSB(mp, XFS_MIN_LOG_BYTES))
184 return -EINVAL;
185 if (nb == mp->m_sb.sb_logblocks &&
186 in->isint == (mp->m_sb.sb_logstart != 0))
187 return -EINVAL;
188 /*
189 * Moving the log is hard, need new interfaces to sync
190 * the log first, hold off all activity while moving it.
191 * Can have shorter or longer log in the same space,
192 * or transform internal to external log or vice versa.
193 */
194 return -ENOSYS;
195}
196
197static int
198xfs_growfs_imaxpct(
199 struct xfs_mount *mp,
200 __u32 imaxpct)
201{
202 struct xfs_trans *tp;
203 int dpct;
204 int error;
205
206 if (imaxpct > 100)
207 return -EINVAL;
208
209 error = xfs_trans_alloc(mp, &M_RES(mp)->tr_growdata,
210 XFS_GROWFS_SPACE_RES(mp), 0, XFS_TRANS_RESERVE, &tp);
211 if (error)
212 return error;
213
214 dpct = imaxpct - mp->m_sb.sb_imax_pct;
215 xfs_trans_mod_sb(tp, XFS_TRANS_SB_IMAXPCT, dpct);
216 xfs_trans_set_sync(tp);
217 return xfs_trans_commit(tp);
218}
219
1da177e4
LT
220/*
221 * protected versions of growfs function acquire and release locks on the mount
222 * point - exported through ioctls: XFS_IOC_FSGROWFSDATA, XFS_IOC_FSGROWFSLOG,
223 * XFS_IOC_FSGROWFSRT
224 */
1da177e4
LT
225int
226xfs_growfs_data(
87444b8c
DC
227 struct xfs_mount *mp,
228 struct xfs_growfs_data *in)
1da177e4 229{
87444b8c 230 int error = 0;
743bb465 231
232 if (!capable(CAP_SYS_ADMIN))
2451337d 233 return -EPERM;
cc92e7ac 234 if (!mutex_trylock(&mp->m_growlock))
2451337d 235 return -EWOULDBLOCK;
87444b8c
DC
236
237 /* update imaxpct separately to the physical grow of the filesystem */
238 if (in->imaxpct != mp->m_sb.sb_imax_pct) {
239 error = xfs_growfs_imaxpct(mp, in->imaxpct);
240 if (error)
241 goto out_error;
242 }
243
244 if (in->newblocks != mp->m_sb.sb_dblocks) {
245 error = xfs_growfs_data_private(mp, in);
246 if (error)
247 goto out_error;
248 }
249
250 /* Post growfs calculations needed to reflect new state in operations */
251 if (mp->m_sb.sb_imax_pct) {
252 uint64_t icount = mp->m_sb.sb_dblocks * mp->m_sb.sb_imax_pct;
253 do_div(icount, 100);
43004b2a 254 mp->m_maxicount = XFS_FSB_TO_INO(mp, icount);
87444b8c
DC
255 } else
256 mp->m_maxicount = 0;
257
83a7f86e 258 /* Update secondary superblocks now the physical grow has completed */
b16817b6 259 error = xfs_update_secondary_sbs(mp);
83a7f86e 260
87444b8c 261out_error:
52785112
CH
262 /*
263 * Increment the generation unconditionally, the error could be from
264 * updating the secondary superblocks, in which case the new size
265 * is live already.
266 */
267 mp->m_generation++;
cc92e7ac 268 mutex_unlock(&mp->m_growlock);
1da177e4
LT
269 return error;
270}
271
272int
273xfs_growfs_log(
274 xfs_mount_t *mp,
275 xfs_growfs_log_t *in)
276{
277 int error;
743bb465 278
279 if (!capable(CAP_SYS_ADMIN))
2451337d 280 return -EPERM;
cc92e7ac 281 if (!mutex_trylock(&mp->m_growlock))
2451337d 282 return -EWOULDBLOCK;
1da177e4 283 error = xfs_growfs_log_private(mp, in);
cc92e7ac 284 mutex_unlock(&mp->m_growlock);
1da177e4
LT
285 return error;
286}
287
288/*
289 * exported through ioctl XFS_IOC_FSCOUNTS
290 */
291
292int
293xfs_fs_counts(
294 xfs_mount_t *mp,
295 xfs_fsop_counts_t *cnt)
296{
501ab323 297 cnt->allocino = percpu_counter_read_positive(&mp->m_icount);
e88b64ea 298 cnt->freeino = percpu_counter_read_positive(&mp->m_ifree);
0d485ada 299 cnt->freedata = percpu_counter_read_positive(&mp->m_fdblocks) -
52548852 300 mp->m_alloc_set_aside;
501ab323 301
3685c2a1 302 spin_lock(&mp->m_sb_lock);
1da177e4 303 cnt->freertx = mp->m_sb.sb_frextents;
3685c2a1 304 spin_unlock(&mp->m_sb_lock);
1da177e4
LT
305 return 0;
306}
307
308/*
309 * exported through ioctl XFS_IOC_SET_RESBLKS & XFS_IOC_GET_RESBLKS
310 *
311 * xfs_reserve_blocks is called to set m_resblks
312 * in the in-core mount table. The number of unused reserved blocks
c41564b5 313 * is kept in m_resblks_avail.
1da177e4
LT
314 *
315 * Reserve the requested number of blocks if available. Otherwise return
316 * as many as possible to satisfy the request. The actual number
317 * reserved are returned in outval
318 *
319 * A null inval pointer indicates that only the current reserved blocks
320 * available should be returned no settings are changed.
321 */
322
323int
324xfs_reserve_blocks(
325 xfs_mount_t *mp,
c8ce540d 326 uint64_t *inval,
1da177e4
LT
327 xfs_fsop_resblks_t *outval)
328{
c8ce540d
DW
329 int64_t lcounter, delta;
330 int64_t fdblks_delta = 0;
331 uint64_t request;
332 int64_t free;
408fd484 333 int error = 0;
1da177e4
LT
334
335 /* If inval is null, report current values and return */
c8ce540d 336 if (inval == (uint64_t *)NULL) {
84e1e99f 337 if (!outval)
2451337d 338 return -EINVAL;
1da177e4
LT
339 outval->resblks = mp->m_resblks;
340 outval->resblks_avail = mp->m_resblks_avail;
014c2544 341 return 0;
1da177e4
LT
342 }
343
344 request = *inval;
dbcabad1
DC
345
346 /*
408fd484
BF
347 * With per-cpu counters, this becomes an interesting problem. we need
348 * to work out if we are freeing or allocation blocks first, then we can
349 * do the modification as necessary.
dbcabad1 350 *
408fd484
BF
351 * We do this under the m_sb_lock so that if we are near ENOSPC, we will
352 * hold out any changes while we work out what to do. This means that
353 * the amount of free space can change while we do this, so we need to
354 * retry if we end up trying to reserve more space than is available.
dbcabad1 355 */
3685c2a1 356 spin_lock(&mp->m_sb_lock);
1da177e4
LT
357
358 /*
359 * If our previous reservation was larger than the current value,
408fd484
BF
360 * then move any unused blocks back to the free pool. Modify the resblks
361 * counters directly since we shouldn't have any problems unreserving
362 * space.
1da177e4 363 */
1da177e4
LT
364 if (mp->m_resblks > request) {
365 lcounter = mp->m_resblks_avail - request;
366 if (lcounter > 0) { /* release unused blocks */
dbcabad1 367 fdblks_delta = lcounter;
1da177e4
LT
368 mp->m_resblks_avail -= lcounter;
369 }
370 mp->m_resblks = request;
408fd484
BF
371 if (fdblks_delta) {
372 spin_unlock(&mp->m_sb_lock);
373 error = xfs_mod_fdblocks(mp, fdblks_delta, 0);
374 spin_lock(&mp->m_sb_lock);
375 }
376
377 goto out;
378 }
4be536de 379
408fd484
BF
380 /*
381 * If the request is larger than the current reservation, reserve the
382 * blocks before we update the reserve counters. Sample m_fdblocks and
383 * perform a partial reservation if the request exceeds free space.
384 */
385 error = -ENOSPC;
386 do {
0d485ada 387 free = percpu_counter_sum(&mp->m_fdblocks) -
52548852 388 mp->m_alloc_set_aside;
aafe12ce 389 if (free <= 0)
408fd484 390 break;
dbcabad1 391
1da177e4 392 delta = request - mp->m_resblks;
4be536de 393 lcounter = free - delta;
408fd484 394 if (lcounter < 0)
1da177e4 395 /* We can't satisfy the request, just get what we can */
408fd484
BF
396 fdblks_delta = free;
397 else
398 fdblks_delta = delta;
dbcabad1 399
dbcabad1 400 /*
408fd484
BF
401 * We'll either succeed in getting space from the free block
402 * count or we'll get an ENOSPC. If we get a ENOSPC, it means
403 * things changed while we were calculating fdblks_delta and so
404 * we should try again to see if there is anything left to
405 * reserve.
dbcabad1
DC
406 *
407 * Don't set the reserved flag here - we don't want to reserve
408 * the extra reserve blocks from the reserve.....
409 */
408fd484
BF
410 spin_unlock(&mp->m_sb_lock);
411 error = xfs_mod_fdblocks(mp, -fdblks_delta, 0);
412 spin_lock(&mp->m_sb_lock);
413 } while (error == -ENOSPC);
414
415 /*
416 * Update the reserve counters if blocks have been successfully
417 * allocated.
418 */
419 if (!error && fdblks_delta) {
420 mp->m_resblks += fdblks_delta;
421 mp->m_resblks_avail += fdblks_delta;
dbcabad1 422 }
408fd484
BF
423
424out:
425 if (outval) {
426 outval->resblks = mp->m_resblks;
427 outval->resblks_avail = mp->m_resblks_avail;
428 }
429
430 spin_unlock(&mp->m_sb_lock);
431 return error;
1da177e4
LT
432}
433
1da177e4
LT
434int
435xfs_fs_goingdown(
436 xfs_mount_t *mp,
c8ce540d 437 uint32_t inflags)
1da177e4
LT
438{
439 switch (inflags) {
440 case XFS_FSOP_GOING_FLAGS_DEFAULT: {
b267ce99 441 struct super_block *sb = freeze_bdev(mp->m_super->s_bdev);
1da177e4 442
f33c6797 443 if (sb && !IS_ERR(sb)) {
7d04a335 444 xfs_force_shutdown(mp, SHUTDOWN_FORCE_UMOUNT);
1da177e4
LT
445 thaw_bdev(sb->s_bdev, sb);
446 }
189f4bf2 447
1da177e4
LT
448 break;
449 }
450 case XFS_FSOP_GOING_FLAGS_LOGFLUSH:
7d04a335 451 xfs_force_shutdown(mp, SHUTDOWN_FORCE_UMOUNT);
1da177e4
LT
452 break;
453 case XFS_FSOP_GOING_FLAGS_NOLOGFLUSH:
7d04a335
NS
454 xfs_force_shutdown(mp,
455 SHUTDOWN_FORCE_UMOUNT | SHUTDOWN_LOG_IO_ERROR);
1da177e4
LT
456 break;
457 default:
2451337d 458 return -EINVAL;
1da177e4
LT
459 }
460
461 return 0;
462}
2af51f3a
DC
463
464/*
465 * Force a shutdown of the filesystem instantly while keeping the filesystem
466 * consistent. We don't do an unmount here; just shutdown the shop, make sure
467 * that absolutely nothing persistent happens to this filesystem after this
468 * point.
469 */
470void
471xfs_do_force_shutdown(
56668a5c 472 struct xfs_mount *mp,
2af51f3a
DC
473 int flags,
474 char *fname,
475 int lnnum)
476{
56668a5c 477 bool logerror = flags & SHUTDOWN_LOG_IO_ERROR;
2af51f3a 478
2af51f3a
DC
479 /*
480 * No need to duplicate efforts.
481 */
482 if (XFS_FORCED_SHUTDOWN(mp) && !logerror)
483 return;
484
485 /*
486 * This flags XFS_MOUNT_FS_SHUTDOWN, makes sure that we don't
487 * queue up anybody new on the log reservations, and wakes up
488 * everybody who's sleeping on log reservations to tell them
489 * the bad news.
490 */
491 if (xfs_log_force_umount(mp, logerror))
492 return;
493
56668a5c
DC
494 if (flags & SHUTDOWN_FORCE_UMOUNT) {
495 xfs_alert(mp,
496"User initiated shutdown received. Shutting down filesystem");
497 return;
498 }
499
500 xfs_notice(mp,
501"%s(0x%x) called from line %d of file %s. Return address = "PTR_FMT,
502 __func__, flags, lnnum, fname, __return_address);
503
2af51f3a
DC
504 if (flags & SHUTDOWN_CORRUPT_INCORE) {
505 xfs_alert_tag(mp, XFS_PTAG_SHUTDOWN_CORRUPT,
56668a5c 506"Corruption of in-memory data detected. Shutting down filesystem");
2af51f3a
DC
507 if (XFS_ERRLEVEL_HIGH <= xfs_error_level)
508 xfs_stack_trace();
56668a5c
DC
509 } else if (logerror) {
510 xfs_alert_tag(mp, XFS_PTAG_SHUTDOWN_LOGERROR,
511 "Log I/O Error Detected. Shutting down filesystem");
512 } else if (flags & SHUTDOWN_DEVICE_REQ) {
513 xfs_alert_tag(mp, XFS_PTAG_SHUTDOWN_IOERROR,
514 "All device paths lost. Shutting down filesystem");
515 } else if (!(flags & SHUTDOWN_REMOTE_REQ)) {
516 xfs_alert_tag(mp, XFS_PTAG_SHUTDOWN_IOERROR,
517 "I/O Error Detected. Shutting down filesystem");
2af51f3a 518 }
56668a5c
DC
519
520 xfs_alert(mp,
521 "Please unmount the filesystem and rectify the problem(s)");
2af51f3a 522}
84d69619
DW
523
524/*
525 * Reserve free space for per-AG metadata.
526 */
527int
528xfs_fs_reserve_ag_blocks(
529 struct xfs_mount *mp)
530{
531 xfs_agnumber_t agno;
532 struct xfs_perag *pag;
533 int error = 0;
534 int err2;
535
15a268d9 536 mp->m_finobt_nores = false;
84d69619
DW
537 for (agno = 0; agno < mp->m_sb.sb_agcount; agno++) {
538 pag = xfs_perag_get(mp, agno);
ebcbef3a 539 err2 = xfs_ag_resv_init(pag, NULL);
84d69619
DW
540 xfs_perag_put(pag);
541 if (err2 && !error)
542 error = err2;
543 }
544
545 if (error && error != -ENOSPC) {
546 xfs_warn(mp,
547 "Error %d reserving per-AG metadata reserve pool.", error);
548 xfs_force_shutdown(mp, SHUTDOWN_CORRUPT_INCORE);
549 }
550
551 return error;
552}
553
554/*
555 * Free space reserved for per-AG metadata.
556 */
557int
558xfs_fs_unreserve_ag_blocks(
559 struct xfs_mount *mp)
560{
561 xfs_agnumber_t agno;
562 struct xfs_perag *pag;
563 int error = 0;
564 int err2;
565
566 for (agno = 0; agno < mp->m_sb.sb_agcount; agno++) {
567 pag = xfs_perag_get(mp, agno);
568 err2 = xfs_ag_resv_free(pag);
569 xfs_perag_put(pag);
570 if (err2 && !error)
571 error = err2;
572 }
573
574 if (error)
575 xfs_warn(mp,
576 "Error %d freeing per-AG metadata reserve pool.", error);
577
578 return error;
579}