blob: a2a5a0fd923341b7601a59d2c2a52eeb72defcb3 [file] [log] [blame]
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001// SPDX-License-Identifier: GPL-2.0
2/*
3 * Copyright (c) 2000-2005 Silicon Graphics, Inc.
4 * All Rights Reserved.
5 */
6#include "xfs.h"
7#include "xfs_fs.h"
8#include "xfs_shared.h"
9#include "xfs_format.h"
10#include "xfs_log_format.h"
11#include "xfs_trans_resv.h"
12#include "xfs_bit.h"
13#include "xfs_sb.h"
14#include "xfs_mount.h"
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000015#include "xfs_inode.h"
16#include "xfs_dir2.h"
17#include "xfs_ialloc.h"
18#include "xfs_alloc.h"
19#include "xfs_rtalloc.h"
20#include "xfs_bmap.h"
21#include "xfs_trans.h"
22#include "xfs_trans_priv.h"
23#include "xfs_log.h"
24#include "xfs_error.h"
25#include "xfs_quota.h"
26#include "xfs_fsops.h"
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000027#include "xfs_icache.h"
28#include "xfs_sysfs.h"
29#include "xfs_rmap_btree.h"
30#include "xfs_refcount_btree.h"
31#include "xfs_reflink.h"
32#include "xfs_extent_busy.h"
David Brazdil0f672f62019-12-10 10:32:29 +000033#include "xfs_health.h"
Olivier Deprez157378f2022-04-04 15:47:50 +020034#include "xfs_trace.h"
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000035
36static DEFINE_MUTEX(xfs_uuid_table_mutex);
37static int xfs_uuid_table_size;
38static uuid_t *xfs_uuid_table;
39
40void
41xfs_uuid_table_free(void)
42{
43 if (xfs_uuid_table_size == 0)
44 return;
45 kmem_free(xfs_uuid_table);
46 xfs_uuid_table = NULL;
47 xfs_uuid_table_size = 0;
48}
49
50/*
51 * See if the UUID is unique among mounted XFS filesystems.
52 * Mount fails if UUID is nil or a FS with the same UUID is already mounted.
53 */
54STATIC int
55xfs_uuid_mount(
56 struct xfs_mount *mp)
57{
58 uuid_t *uuid = &mp->m_sb.sb_uuid;
59 int hole, i;
60
61 /* Publish UUID in struct super_block */
62 uuid_copy(&mp->m_super->s_uuid, uuid);
63
64 if (mp->m_flags & XFS_MOUNT_NOUUID)
65 return 0;
66
67 if (uuid_is_null(uuid)) {
68 xfs_warn(mp, "Filesystem has null UUID - can't mount");
69 return -EINVAL;
70 }
71
72 mutex_lock(&xfs_uuid_table_mutex);
73 for (i = 0, hole = -1; i < xfs_uuid_table_size; i++) {
74 if (uuid_is_null(&xfs_uuid_table[i])) {
75 hole = i;
76 continue;
77 }
78 if (uuid_equal(uuid, &xfs_uuid_table[i]))
79 goto out_duplicate;
80 }
81
82 if (hole < 0) {
Olivier Deprez157378f2022-04-04 15:47:50 +020083 xfs_uuid_table = krealloc(xfs_uuid_table,
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000084 (xfs_uuid_table_size + 1) * sizeof(*xfs_uuid_table),
Olivier Deprez157378f2022-04-04 15:47:50 +020085 GFP_KERNEL | __GFP_NOFAIL);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000086 hole = xfs_uuid_table_size++;
87 }
88 xfs_uuid_table[hole] = *uuid;
89 mutex_unlock(&xfs_uuid_table_mutex);
90
91 return 0;
92
93 out_duplicate:
94 mutex_unlock(&xfs_uuid_table_mutex);
95 xfs_warn(mp, "Filesystem has duplicate UUID %pU - can't mount", uuid);
96 return -EINVAL;
97}
98
99STATIC void
100xfs_uuid_unmount(
101 struct xfs_mount *mp)
102{
103 uuid_t *uuid = &mp->m_sb.sb_uuid;
104 int i;
105
106 if (mp->m_flags & XFS_MOUNT_NOUUID)
107 return;
108
109 mutex_lock(&xfs_uuid_table_mutex);
110 for (i = 0; i < xfs_uuid_table_size; i++) {
111 if (uuid_is_null(&xfs_uuid_table[i]))
112 continue;
113 if (!uuid_equal(uuid, &xfs_uuid_table[i]))
114 continue;
115 memset(&xfs_uuid_table[i], 0, sizeof(uuid_t));
116 break;
117 }
118 ASSERT(i < xfs_uuid_table_size);
119 mutex_unlock(&xfs_uuid_table_mutex);
120}
121
122
123STATIC void
124__xfs_free_perag(
125 struct rcu_head *head)
126{
127 struct xfs_perag *pag = container_of(head, struct xfs_perag, rcu_head);
128
129 ASSERT(atomic_read(&pag->pag_ref) == 0);
130 kmem_free(pag);
131}
132
133/*
134 * Free up the per-ag resources associated with the mount structure.
135 */
136STATIC void
137xfs_free_perag(
138 xfs_mount_t *mp)
139{
140 xfs_agnumber_t agno;
141 struct xfs_perag *pag;
142
143 for (agno = 0; agno < mp->m_sb.sb_agcount; agno++) {
144 spin_lock(&mp->m_perag_lock);
145 pag = radix_tree_delete(&mp->m_perag_tree, agno);
146 spin_unlock(&mp->m_perag_lock);
147 ASSERT(pag);
148 ASSERT(atomic_read(&pag->pag_ref) == 0);
David Brazdil0f672f62019-12-10 10:32:29 +0000149 xfs_iunlink_destroy(pag);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000150 xfs_buf_hash_destroy(pag);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000151 call_rcu(&pag->rcu_head, __xfs_free_perag);
152 }
153}
154
155/*
156 * Check size of device based on the (data/realtime) block count.
157 * Note: this check is used by the growfs code as well as mount.
158 */
159int
160xfs_sb_validate_fsb_count(
161 xfs_sb_t *sbp,
162 uint64_t nblocks)
163{
164 ASSERT(PAGE_SHIFT >= sbp->sb_blocklog);
165 ASSERT(sbp->sb_blocklog >= BBSHIFT);
166
167 /* Limited by ULONG_MAX of page cache index */
168 if (nblocks >> (PAGE_SHIFT - sbp->sb_blocklog) > ULONG_MAX)
169 return -EFBIG;
170 return 0;
171}
172
173int
174xfs_initialize_perag(
175 xfs_mount_t *mp,
176 xfs_agnumber_t agcount,
177 xfs_agnumber_t *maxagi)
178{
179 xfs_agnumber_t index;
180 xfs_agnumber_t first_initialised = NULLAGNUMBER;
181 xfs_perag_t *pag;
182 int error = -ENOMEM;
183
184 /*
185 * Walk the current per-ag tree so we don't try to initialise AGs
186 * that already exist (growfs case). Allocate and insert all the
187 * AGs we don't find ready for initialisation.
188 */
189 for (index = 0; index < agcount; index++) {
190 pag = xfs_perag_get(mp, index);
191 if (pag) {
192 xfs_perag_put(pag);
193 continue;
194 }
195
196 pag = kmem_zalloc(sizeof(*pag), KM_MAYFAIL);
Olivier Deprez0e641232021-09-23 10:07:05 +0200197 if (!pag) {
198 error = -ENOMEM;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000199 goto out_unwind_new_pags;
Olivier Deprez0e641232021-09-23 10:07:05 +0200200 }
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000201 pag->pag_agno = index;
202 pag->pag_mount = mp;
203 spin_lock_init(&pag->pag_ici_lock);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000204 INIT_RADIX_TREE(&pag->pag_ici_root, GFP_ATOMIC);
Olivier Deprez0e641232021-09-23 10:07:05 +0200205
206 error = xfs_buf_hash_init(pag);
207 if (error)
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000208 goto out_free_pag;
209 init_waitqueue_head(&pag->pagb_wait);
210 spin_lock_init(&pag->pagb_lock);
211 pag->pagb_count = 0;
212 pag->pagb_tree = RB_ROOT;
213
Olivier Deprez0e641232021-09-23 10:07:05 +0200214 error = radix_tree_preload(GFP_NOFS);
215 if (error)
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000216 goto out_hash_destroy;
217
218 spin_lock(&mp->m_perag_lock);
219 if (radix_tree_insert(&mp->m_perag_tree, index, pag)) {
David Brazdil0f672f62019-12-10 10:32:29 +0000220 WARN_ON_ONCE(1);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000221 spin_unlock(&mp->m_perag_lock);
222 radix_tree_preload_end();
223 error = -EEXIST;
224 goto out_hash_destroy;
225 }
226 spin_unlock(&mp->m_perag_lock);
227 radix_tree_preload_end();
228 /* first new pag is fully initialized */
229 if (first_initialised == NULLAGNUMBER)
230 first_initialised = index;
David Brazdil0f672f62019-12-10 10:32:29 +0000231 error = xfs_iunlink_init(pag);
232 if (error)
233 goto out_hash_destroy;
234 spin_lock_init(&pag->pag_state_lock);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000235 }
236
237 index = xfs_set_inode_alloc(mp, agcount);
238
239 if (maxagi)
240 *maxagi = index;
241
242 mp->m_ag_prealloc_blocks = xfs_prealloc_blocks(mp);
243 return 0;
244
245out_hash_destroy:
246 xfs_buf_hash_destroy(pag);
247out_free_pag:
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000248 kmem_free(pag);
249out_unwind_new_pags:
250 /* unwind any prior newly initialized pags */
251 for (index = first_initialised; index < agcount; index++) {
252 pag = radix_tree_delete(&mp->m_perag_tree, index);
253 if (!pag)
254 break;
255 xfs_buf_hash_destroy(pag);
David Brazdil0f672f62019-12-10 10:32:29 +0000256 xfs_iunlink_destroy(pag);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000257 kmem_free(pag);
258 }
259 return error;
260}
261
262/*
263 * xfs_readsb
264 *
265 * Does the initial read of the superblock.
266 */
267int
268xfs_readsb(
269 struct xfs_mount *mp,
270 int flags)
271{
272 unsigned int sector_size;
273 struct xfs_buf *bp;
274 struct xfs_sb *sbp = &mp->m_sb;
275 int error;
276 int loud = !(flags & XFS_MFSI_QUIET);
277 const struct xfs_buf_ops *buf_ops;
278
279 ASSERT(mp->m_sb_bp == NULL);
280 ASSERT(mp->m_ddev_targp != NULL);
281
282 /*
283 * For the initial read, we must guess at the sector
284 * size based on the block device. It's enough to
285 * get the sb_sectsize out of the superblock and
286 * then reread with the proper length.
287 * We don't verify it yet, because it may not be complete.
288 */
289 sector_size = xfs_getsize_buftarg(mp->m_ddev_targp);
290 buf_ops = NULL;
291
292 /*
293 * Allocate a (locked) buffer to hold the superblock. This will be kept
294 * around at all times to optimize access to the superblock. Therefore,
295 * set XBF_NO_IOACCT to make sure it doesn't hold the buftarg count
296 * elevated.
297 */
298reread:
299 error = xfs_buf_read_uncached(mp->m_ddev_targp, XFS_SB_DADDR,
300 BTOBB(sector_size), XBF_NO_IOACCT, &bp,
301 buf_ops);
302 if (error) {
303 if (loud)
304 xfs_warn(mp, "SB validate failed with error %d.", error);
305 /* bad CRC means corrupted metadata */
306 if (error == -EFSBADCRC)
307 error = -EFSCORRUPTED;
308 return error;
309 }
310
311 /*
312 * Initialize the mount structure from the superblock.
313 */
Olivier Deprez157378f2022-04-04 15:47:50 +0200314 xfs_sb_from_disk(sbp, bp->b_addr);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000315
316 /*
317 * If we haven't validated the superblock, do so now before we try
318 * to check the sector size and reread the superblock appropriately.
319 */
320 if (sbp->sb_magicnum != XFS_SB_MAGIC) {
321 if (loud)
322 xfs_warn(mp, "Invalid superblock magic number");
323 error = -EINVAL;
324 goto release_buf;
325 }
326
327 /*
328 * We must be able to do sector-sized and sector-aligned IO.
329 */
330 if (sector_size > sbp->sb_sectsize) {
331 if (loud)
332 xfs_warn(mp, "device supports %u byte sectors (not %u)",
333 sector_size, sbp->sb_sectsize);
334 error = -ENOSYS;
335 goto release_buf;
336 }
337
338 if (buf_ops == NULL) {
339 /*
340 * Re-read the superblock so the buffer is correctly sized,
341 * and properly verified.
342 */
343 xfs_buf_relse(bp);
344 sector_size = sbp->sb_sectsize;
345 buf_ops = loud ? &xfs_sb_buf_ops : &xfs_sb_quiet_buf_ops;
346 goto reread;
347 }
348
349 xfs_reinit_percpu_counters(mp);
350
351 /* no need to be quiet anymore, so reset the buf ops */
352 bp->b_ops = &xfs_sb_buf_ops;
353
354 mp->m_sb_bp = bp;
355 xfs_buf_unlock(bp);
356 return 0;
357
358release_buf:
359 xfs_buf_relse(bp);
360 return error;
361}
362
363/*
Olivier Deprez157378f2022-04-04 15:47:50 +0200364 * If the sunit/swidth change would move the precomputed root inode value, we
365 * must reject the ondisk change because repair will stumble over that.
366 * However, we allow the mount to proceed because we never rejected this
367 * combination before. Returns true to update the sb, false otherwise.
368 */
369static inline int
370xfs_check_new_dalign(
371 struct xfs_mount *mp,
372 int new_dalign,
373 bool *update_sb)
374{
375 struct xfs_sb *sbp = &mp->m_sb;
376 xfs_ino_t calc_ino;
377
378 calc_ino = xfs_ialloc_calc_rootino(mp, new_dalign);
379 trace_xfs_check_new_dalign(mp, new_dalign, calc_ino);
380
381 if (sbp->sb_rootino == calc_ino) {
382 *update_sb = true;
383 return 0;
384 }
385
386 xfs_warn(mp,
387"Cannot change stripe alignment; would require moving root inode.");
388
389 /*
390 * XXX: Next time we add a new incompat feature, this should start
391 * returning -EINVAL to fail the mount. Until then, spit out a warning
392 * that we're ignoring the administrator's instructions.
393 */
394 xfs_warn(mp, "Skipping superblock stripe alignment update.");
395 *update_sb = false;
396 return 0;
397}
398
399/*
400 * If we were provided with new sunit/swidth values as mount options, make sure
401 * that they pass basic alignment and superblock feature checks, and convert
402 * them into the same units (FSB) that everything else expects. This step
403 * /must/ be done before computing the inode geometry.
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000404 */
405STATIC int
Olivier Deprez157378f2022-04-04 15:47:50 +0200406xfs_validate_new_dalign(
407 struct xfs_mount *mp)
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000408{
Olivier Deprez157378f2022-04-04 15:47:50 +0200409 if (mp->m_dalign == 0)
410 return 0;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000411
Olivier Deprez157378f2022-04-04 15:47:50 +0200412 /*
413 * If stripe unit and stripe width are not multiples
414 * of the fs blocksize turn off alignment.
415 */
416 if ((BBTOB(mp->m_dalign) & mp->m_blockmask) ||
417 (BBTOB(mp->m_swidth) & mp->m_blockmask)) {
418 xfs_warn(mp,
419 "alignment check failed: sunit/swidth vs. blocksize(%d)",
420 mp->m_sb.sb_blocksize);
421 return -EINVAL;
422 } else {
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000423 /*
Olivier Deprez157378f2022-04-04 15:47:50 +0200424 * Convert the stripe unit and width to FSBs.
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000425 */
Olivier Deprez157378f2022-04-04 15:47:50 +0200426 mp->m_dalign = XFS_BB_TO_FSBT(mp, mp->m_dalign);
427 if (mp->m_dalign && (mp->m_sb.sb_agblocks % mp->m_dalign)) {
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000428 xfs_warn(mp,
Olivier Deprez157378f2022-04-04 15:47:50 +0200429 "alignment check failed: sunit/swidth vs. agsize(%d)",
430 mp->m_sb.sb_agblocks);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000431 return -EINVAL;
Olivier Deprez157378f2022-04-04 15:47:50 +0200432 } else if (mp->m_dalign) {
433 mp->m_swidth = XFS_BB_TO_FSBT(mp, mp->m_swidth);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000434 } else {
435 xfs_warn(mp,
Olivier Deprez157378f2022-04-04 15:47:50 +0200436 "alignment check failed: sunit(%d) less than bsize(%d)",
437 mp->m_dalign, mp->m_sb.sb_blocksize);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000438 return -EINVAL;
439 }
Olivier Deprez157378f2022-04-04 15:47:50 +0200440 }
441
442 if (!xfs_sb_version_hasdalign(&mp->m_sb)) {
443 xfs_warn(mp,
444"cannot change alignment: superblock does not support data alignment");
445 return -EINVAL;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000446 }
447
448 return 0;
449}
450
Olivier Deprez157378f2022-04-04 15:47:50 +0200451/* Update alignment values based on mount options and sb values. */
452STATIC int
453xfs_update_alignment(
454 struct xfs_mount *mp)
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000455{
Olivier Deprez157378f2022-04-04 15:47:50 +0200456 struct xfs_sb *sbp = &mp->m_sb;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000457
Olivier Deprez157378f2022-04-04 15:47:50 +0200458 if (mp->m_dalign) {
459 bool update_sb;
460 int error;
461
462 if (sbp->sb_unit == mp->m_dalign &&
463 sbp->sb_width == mp->m_swidth)
464 return 0;
465
466 error = xfs_check_new_dalign(mp, mp->m_dalign, &update_sb);
467 if (error || !update_sb)
468 return error;
469
470 sbp->sb_unit = mp->m_dalign;
471 sbp->sb_width = mp->m_swidth;
472 mp->m_update_sb = true;
473 } else if ((mp->m_flags & XFS_MOUNT_NOALIGN) != XFS_MOUNT_NOALIGN &&
474 xfs_sb_version_hasdalign(&mp->m_sb)) {
475 mp->m_dalign = sbp->sb_unit;
476 mp->m_swidth = sbp->sb_width;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000477 }
478
Olivier Deprez157378f2022-04-04 15:47:50 +0200479 return 0;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000480}
481
482/*
483 * precalculate the low space thresholds for dynamic speculative preallocation.
484 */
485void
486xfs_set_low_space_thresholds(
487 struct xfs_mount *mp)
488{
489 int i;
490
491 for (i = 0; i < XFS_LOWSP_MAX; i++) {
492 uint64_t space = mp->m_sb.sb_dblocks;
493
494 do_div(space, 100);
495 mp->m_low_space[i] = space * (i + 1);
496 }
497}
498
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000499/*
500 * Check that the data (and log if separate) is an ok size.
501 */
502STATIC int
503xfs_check_sizes(
504 struct xfs_mount *mp)
505{
506 struct xfs_buf *bp;
507 xfs_daddr_t d;
508 int error;
509
510 d = (xfs_daddr_t)XFS_FSB_TO_BB(mp, mp->m_sb.sb_dblocks);
511 if (XFS_BB_TO_FSB(mp, d) != mp->m_sb.sb_dblocks) {
512 xfs_warn(mp, "filesystem size mismatch detected");
513 return -EFBIG;
514 }
515 error = xfs_buf_read_uncached(mp->m_ddev_targp,
516 d - XFS_FSS_TO_BB(mp, 1),
517 XFS_FSS_TO_BB(mp, 1), 0, &bp, NULL);
518 if (error) {
519 xfs_warn(mp, "last sector read failed");
520 return error;
521 }
522 xfs_buf_relse(bp);
523
524 if (mp->m_logdev_targp == mp->m_ddev_targp)
525 return 0;
526
527 d = (xfs_daddr_t)XFS_FSB_TO_BB(mp, mp->m_sb.sb_logblocks);
528 if (XFS_BB_TO_FSB(mp, d) != mp->m_sb.sb_logblocks) {
529 xfs_warn(mp, "log size mismatch detected");
530 return -EFBIG;
531 }
532 error = xfs_buf_read_uncached(mp->m_logdev_targp,
533 d - XFS_FSB_TO_BB(mp, 1),
534 XFS_FSB_TO_BB(mp, 1), 0, &bp, NULL);
535 if (error) {
536 xfs_warn(mp, "log device read failed");
537 return error;
538 }
539 xfs_buf_relse(bp);
540 return 0;
541}
542
543/*
544 * Clear the quotaflags in memory and in the superblock.
545 */
546int
547xfs_mount_reset_sbqflags(
548 struct xfs_mount *mp)
549{
550 mp->m_qflags = 0;
551
552 /* It is OK to look at sb_qflags in the mount path without m_sb_lock. */
553 if (mp->m_sb.sb_qflags == 0)
554 return 0;
555 spin_lock(&mp->m_sb_lock);
556 mp->m_sb.sb_qflags = 0;
557 spin_unlock(&mp->m_sb_lock);
558
559 if (!xfs_fs_writable(mp, SB_FREEZE_WRITE))
560 return 0;
561
562 return xfs_sync_sb(mp, false);
563}
564
565uint64_t
566xfs_default_resblks(xfs_mount_t *mp)
567{
568 uint64_t resblks;
569
570 /*
571 * We default to 5% or 8192 fsbs of space reserved, whichever is
572 * smaller. This is intended to cover concurrent allocation
573 * transactions when we initially hit enospc. These each require a 4
574 * block reservation. Hence by default we cover roughly 2000 concurrent
575 * allocation reservations.
576 */
577 resblks = mp->m_sb.sb_dblocks;
578 do_div(resblks, 20);
579 resblks = min_t(uint64_t, resblks, 8192);
580 return resblks;
581}
582
583/* Ensure the summary counts are correct. */
584STATIC int
585xfs_check_summary_counts(
586 struct xfs_mount *mp)
587{
588 /*
589 * The AG0 superblock verifier rejects in-progress filesystems,
590 * so we should never see the flag set this far into mounting.
591 */
592 if (mp->m_sb.sb_inprogress) {
593 xfs_err(mp, "sb_inprogress set after log recovery??");
594 WARN_ON(1);
595 return -EFSCORRUPTED;
596 }
597
598 /*
599 * Now the log is mounted, we know if it was an unclean shutdown or
600 * not. If it was, with the first phase of recovery has completed, we
601 * have consistent AG blocks on disk. We have not recovered EFIs yet,
602 * but they are recovered transactionally in the second recovery phase
603 * later.
604 *
605 * If the log was clean when we mounted, we can check the summary
606 * counters. If any of them are obviously incorrect, we can recompute
607 * them from the AGF headers in the next step.
608 */
609 if (XFS_LAST_UNMOUNT_WAS_CLEAN(mp) &&
610 (mp->m_sb.sb_fdblocks > mp->m_sb.sb_dblocks ||
611 !xfs_verify_icount(mp, mp->m_sb.sb_icount) ||
612 mp->m_sb.sb_ifree > mp->m_sb.sb_icount))
David Brazdil0f672f62019-12-10 10:32:29 +0000613 xfs_fs_mark_sick(mp, XFS_SICK_FS_COUNTERS);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000614
615 /*
616 * We can safely re-initialise incore superblock counters from the
617 * per-ag data. These may not be correct if the filesystem was not
618 * cleanly unmounted, so we waited for recovery to finish before doing
619 * this.
620 *
621 * If the filesystem was cleanly unmounted or the previous check did
622 * not flag anything weird, then we can trust the values in the
623 * superblock to be correct and we don't need to do anything here.
624 * Otherwise, recalculate the summary counters.
625 */
626 if ((!xfs_sb_version_haslazysbcount(&mp->m_sb) ||
627 XFS_LAST_UNMOUNT_WAS_CLEAN(mp)) &&
David Brazdil0f672f62019-12-10 10:32:29 +0000628 !xfs_fs_has_sickness(mp, XFS_SICK_FS_COUNTERS))
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000629 return 0;
630
631 return xfs_initialize_perag_data(mp, mp->m_sb.sb_agcount);
632}
633
634/*
Olivier Deprez92d4c212022-12-06 15:05:30 +0100635 * Flush and reclaim dirty inodes in preparation for unmount. Inodes and
636 * internal inode structures can be sitting in the CIL and AIL at this point,
637 * so we need to unpin them, write them back and/or reclaim them before unmount
638 * can proceed.
639 *
640 * An inode cluster that has been freed can have its buffer still pinned in
641 * memory because the transaction is still sitting in a iclog. The stale inodes
642 * on that buffer will be pinned to the buffer until the transaction hits the
643 * disk and the callbacks run. Pushing the AIL will skip the stale inodes and
644 * may never see the pinned buffer, so nothing will push out the iclog and
645 * unpin the buffer.
646 *
647 * Hence we need to force the log to unpin everything first. However, log
648 * forces don't wait for the discards they issue to complete, so we have to
649 * explicitly wait for them to complete here as well.
650 *
651 * Then we can tell the world we are unmounting so that error handling knows
652 * that the filesystem is going away and we should error out anything that we
653 * have been retrying in the background. This will prevent never-ending
654 * retries in AIL pushing from hanging the unmount.
655 *
656 * Finally, we can push the AIL to clean all the remaining dirty objects, then
657 * reclaim the remaining inodes that are still in memory at this point in time.
658 */
659static void
660xfs_unmount_flush_inodes(
661 struct xfs_mount *mp)
662{
663 xfs_log_force(mp, XFS_LOG_SYNC);
664 xfs_extent_busy_wait_all(mp);
665 flush_workqueue(xfs_discard_wq);
666
667 mp->m_flags |= XFS_MOUNT_UNMOUNTING;
668
669 xfs_ail_push_all_sync(mp->m_ail);
670 cancel_delayed_work_sync(&mp->m_reclaim_work);
671 xfs_reclaim_inodes(mp);
672 xfs_health_unmount(mp);
673}
674
675/*
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000676 * This function does the following on an initial mount of a file system:
677 * - reads the superblock from disk and init the mount struct
678 * - if we're a 32-bit kernel, do a size check on the superblock
679 * so we don't mount terabyte filesystems
680 * - init mount struct realtime fields
681 * - allocate inode hash table for fs
682 * - init directory manager
683 * - perform recovery and init the log manager
684 */
685int
686xfs_mountfs(
687 struct xfs_mount *mp)
688{
689 struct xfs_sb *sbp = &(mp->m_sb);
690 struct xfs_inode *rip;
David Brazdil0f672f62019-12-10 10:32:29 +0000691 struct xfs_ino_geometry *igeo = M_IGEO(mp);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000692 uint64_t resblks;
693 uint quotamount = 0;
694 uint quotaflags = 0;
695 int error = 0;
696
697 xfs_sb_mount_common(mp, sbp);
698
699 /*
700 * Check for a mismatched features2 values. Older kernels read & wrote
701 * into the wrong sb offset for sb_features2 on some platforms due to
702 * xfs_sb_t not being 64bit size aligned when sb_features2 was added,
703 * which made older superblock reading/writing routines swap it as a
704 * 64-bit value.
705 *
706 * For backwards compatibility, we make both slots equal.
707 *
708 * If we detect a mismatched field, we OR the set bits into the existing
709 * features2 field in case it has already been modified; we don't want
710 * to lose any features. We then update the bad location with the ORed
711 * value so that older kernels will see any features2 flags. The
712 * superblock writeback code ensures the new sb_features2 is copied to
713 * sb_bad_features2 before it is logged or written to disk.
714 */
715 if (xfs_sb_has_mismatched_features2(sbp)) {
716 xfs_warn(mp, "correcting sb_features alignment problem");
717 sbp->sb_features2 |= sbp->sb_bad_features2;
718 mp->m_update_sb = true;
719
720 /*
721 * Re-check for ATTR2 in case it was found in bad_features2
722 * slot.
723 */
724 if (xfs_sb_version_hasattr2(&mp->m_sb) &&
725 !(mp->m_flags & XFS_MOUNT_NOATTR2))
726 mp->m_flags |= XFS_MOUNT_ATTR2;
727 }
728
729 if (xfs_sb_version_hasattr2(&mp->m_sb) &&
730 (mp->m_flags & XFS_MOUNT_NOATTR2)) {
731 xfs_sb_version_removeattr2(&mp->m_sb);
732 mp->m_update_sb = true;
733
734 /* update sb_versionnum for the clearing of the morebits */
735 if (!sbp->sb_features2)
736 mp->m_update_sb = true;
737 }
738
739 /* always use v2 inodes by default now */
740 if (!(mp->m_sb.sb_versionnum & XFS_SB_VERSION_NLINKBIT)) {
741 mp->m_sb.sb_versionnum |= XFS_SB_VERSION_NLINKBIT;
742 mp->m_update_sb = true;
743 }
744
745 /*
Olivier Deprez157378f2022-04-04 15:47:50 +0200746 * If we were given new sunit/swidth options, do some basic validation
747 * checks and convert the incore dalign and swidth values to the
748 * same units (FSB) that everything else uses. This /must/ happen
749 * before computing the inode geometry.
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000750 */
Olivier Deprez157378f2022-04-04 15:47:50 +0200751 error = xfs_validate_new_dalign(mp);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000752 if (error)
753 goto out;
754
755 xfs_alloc_compute_maxlevels(mp);
756 xfs_bmap_compute_maxlevels(mp, XFS_DATA_FORK);
757 xfs_bmap_compute_maxlevels(mp, XFS_ATTR_FORK);
David Brazdil0f672f62019-12-10 10:32:29 +0000758 xfs_ialloc_setup_geometry(mp);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000759 xfs_rmapbt_compute_maxlevels(mp);
760 xfs_refcountbt_compute_maxlevels(mp);
761
Olivier Deprez157378f2022-04-04 15:47:50 +0200762 /*
763 * Check if sb_agblocks is aligned at stripe boundary. If sb_agblocks
764 * is NOT aligned turn off m_dalign since allocator alignment is within
765 * an ag, therefore ag has to be aligned at stripe boundary. Note that
766 * we must compute the free space and rmap btree geometry before doing
767 * this.
768 */
769 error = xfs_update_alignment(mp);
770 if (error)
771 goto out;
772
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000773 /* enable fail_at_unmount as default */
774 mp->m_fail_unmount = true;
775
Olivier Deprez157378f2022-04-04 15:47:50 +0200776 error = xfs_sysfs_init(&mp->m_kobj, &xfs_mp_ktype,
777 NULL, mp->m_super->s_id);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000778 if (error)
779 goto out;
780
781 error = xfs_sysfs_init(&mp->m_stats.xs_kobj, &xfs_stats_ktype,
782 &mp->m_kobj, "stats");
783 if (error)
784 goto out_remove_sysfs;
785
786 error = xfs_error_sysfs_init(mp);
787 if (error)
788 goto out_del_stats;
789
790 error = xfs_errortag_init(mp);
791 if (error)
792 goto out_remove_error_sysfs;
793
794 error = xfs_uuid_mount(mp);
795 if (error)
796 goto out_remove_errortag;
797
798 /*
Olivier Deprez157378f2022-04-04 15:47:50 +0200799 * Update the preferred write size based on the information from the
800 * on-disk superblock.
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000801 */
Olivier Deprez157378f2022-04-04 15:47:50 +0200802 mp->m_allocsize_log =
803 max_t(uint32_t, sbp->sb_blocklog, mp->m_allocsize_log);
804 mp->m_allocsize_blocks = 1U << (mp->m_allocsize_log - sbp->sb_blocklog);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000805
806 /* set the low space thresholds for dynamic preallocation */
807 xfs_set_low_space_thresholds(mp);
808
809 /*
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000810 * If enabled, sparse inode chunk alignment is expected to match the
811 * cluster size. Full inode chunk alignment must match the chunk size,
812 * but that is checked on sb read verification...
813 */
814 if (xfs_sb_version_hassparseinodes(&mp->m_sb) &&
815 mp->m_sb.sb_spino_align !=
David Brazdil0f672f62019-12-10 10:32:29 +0000816 XFS_B_TO_FSBT(mp, igeo->inode_cluster_size_raw)) {
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000817 xfs_warn(mp,
818 "Sparse inode block alignment (%u) must match cluster size (%llu).",
819 mp->m_sb.sb_spino_align,
David Brazdil0f672f62019-12-10 10:32:29 +0000820 XFS_B_TO_FSBT(mp, igeo->inode_cluster_size_raw));
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000821 error = -EINVAL;
822 goto out_remove_uuid;
823 }
824
825 /*
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000826 * Check that the data (and log if separate) is an ok size.
827 */
828 error = xfs_check_sizes(mp);
829 if (error)
830 goto out_remove_uuid;
831
832 /*
833 * Initialize realtime fields in the mount structure
834 */
835 error = xfs_rtmount_init(mp);
836 if (error) {
837 xfs_warn(mp, "RT mount failed");
838 goto out_remove_uuid;
839 }
840
841 /*
842 * Copies the low order bits of the timestamp and the randomly
843 * set "sequence" number out of a UUID.
844 */
845 mp->m_fixedfsid[0] =
846 (get_unaligned_be16(&sbp->sb_uuid.b[8]) << 16) |
847 get_unaligned_be16(&sbp->sb_uuid.b[4]);
848 mp->m_fixedfsid[1] = get_unaligned_be32(&sbp->sb_uuid.b[0]);
849
850 error = xfs_da_mount(mp);
851 if (error) {
852 xfs_warn(mp, "Failed dir/attr init: %d", error);
853 goto out_remove_uuid;
854 }
855
856 /*
857 * Initialize the precomputed transaction reservations values.
858 */
859 xfs_trans_init(mp);
860
861 /*
862 * Allocate and initialize the per-ag data.
863 */
864 error = xfs_initialize_perag(mp, sbp->sb_agcount, &mp->m_maxagi);
865 if (error) {
866 xfs_warn(mp, "Failed per-ag init: %d", error);
867 goto out_free_dir;
868 }
869
Olivier Deprez157378f2022-04-04 15:47:50 +0200870 if (XFS_IS_CORRUPT(mp, !sbp->sb_logblocks)) {
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000871 xfs_warn(mp, "no log defined");
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000872 error = -EFSCORRUPTED;
873 goto out_free_perag;
874 }
875
876 /*
877 * Log's mount-time initialization. The first part of recovery can place
878 * some items on the AIL, to be handled when recovery is finished or
879 * cancelled.
880 */
881 error = xfs_log_mount(mp, mp->m_logdev_targp,
882 XFS_FSB_TO_DADDR(mp, sbp->sb_logstart),
883 XFS_FSB_TO_BB(mp, sbp->sb_logblocks));
884 if (error) {
885 xfs_warn(mp, "log mount failed");
886 goto out_fail_wait;
887 }
888
889 /* Make sure the summary counts are ok. */
890 error = xfs_check_summary_counts(mp);
891 if (error)
892 goto out_log_dealloc;
893
894 /*
895 * Get and sanity-check the root inode.
896 * Save the pointer to it in the mount structure.
897 */
898 error = xfs_iget(mp, NULL, sbp->sb_rootino, XFS_IGET_UNTRUSTED,
899 XFS_ILOCK_EXCL, &rip);
900 if (error) {
901 xfs_warn(mp,
902 "Failed to read root inode 0x%llx, error %d",
903 sbp->sb_rootino, -error);
904 goto out_log_dealloc;
905 }
906
907 ASSERT(rip != NULL);
908
Olivier Deprez157378f2022-04-04 15:47:50 +0200909 if (XFS_IS_CORRUPT(mp, !S_ISDIR(VFS_I(rip)->i_mode))) {
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000910 xfs_warn(mp, "corrupted root inode %llu: not a directory",
911 (unsigned long long)rip->i_ino);
912 xfs_iunlock(rip, XFS_ILOCK_EXCL);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000913 error = -EFSCORRUPTED;
914 goto out_rele_rip;
915 }
916 mp->m_rootip = rip; /* save it */
917
918 xfs_iunlock(rip, XFS_ILOCK_EXCL);
919
920 /*
921 * Initialize realtime inode pointers in the mount structure
922 */
923 error = xfs_rtmount_inodes(mp);
924 if (error) {
925 /*
926 * Free up the root inode.
927 */
928 xfs_warn(mp, "failed to read RT inodes");
929 goto out_rele_rip;
930 }
931
932 /*
933 * If this is a read-only mount defer the superblock updates until
934 * the next remount into writeable mode. Otherwise we would never
935 * perform the update e.g. for the root filesystem.
936 */
937 if (mp->m_update_sb && !(mp->m_flags & XFS_MOUNT_RDONLY)) {
938 error = xfs_sync_sb(mp, false);
939 if (error) {
940 xfs_warn(mp, "failed to write sb changes");
941 goto out_rtunmount;
942 }
943 }
944
945 /*
946 * Initialise the XFS quota management subsystem for this mount
947 */
948 if (XFS_IS_QUOTA_RUNNING(mp)) {
949 error = xfs_qm_newmount(mp, &quotamount, &quotaflags);
950 if (error)
951 goto out_rtunmount;
952 } else {
953 ASSERT(!XFS_IS_QUOTA_ON(mp));
954
955 /*
956 * If a file system had quotas running earlier, but decided to
957 * mount without -o uquota/pquota/gquota options, revoke the
958 * quotachecked license.
959 */
960 if (mp->m_sb.sb_qflags & XFS_ALL_QUOTA_ACCT) {
961 xfs_notice(mp, "resetting quota flags");
962 error = xfs_mount_reset_sbqflags(mp);
963 if (error)
964 goto out_rtunmount;
965 }
966 }
967
968 /*
969 * Finish recovering the file system. This part needed to be delayed
970 * until after the root and real-time bitmap inodes were consistently
Olivier Deprez92d4c212022-12-06 15:05:30 +0100971 * read in. Temporarily create per-AG space reservations for metadata
972 * btree shape changes because space freeing transactions (for inode
973 * inactivation) require the per-AG reservation in lieu of reserving
974 * blocks.
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000975 */
Olivier Deprez92d4c212022-12-06 15:05:30 +0100976 error = xfs_fs_reserve_ag_blocks(mp);
977 if (error && error == -ENOSPC)
978 xfs_warn(mp,
979 "ENOSPC reserving per-AG metadata pool, log recovery may fail.");
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000980 error = xfs_log_mount_finish(mp);
Olivier Deprez92d4c212022-12-06 15:05:30 +0100981 xfs_fs_unreserve_ag_blocks(mp);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000982 if (error) {
983 xfs_warn(mp, "log mount finish failed");
984 goto out_rtunmount;
985 }
986
987 /*
988 * Now the log is fully replayed, we can transition to full read-only
989 * mode for read-only mounts. This will sync all the metadata and clean
990 * the log so that the recovery we just performed does not have to be
991 * replayed again on the next mount.
992 *
993 * We use the same quiesce mechanism as the rw->ro remount, as they are
994 * semantically identical operations.
995 */
996 if ((mp->m_flags & (XFS_MOUNT_RDONLY|XFS_MOUNT_NORECOVERY)) ==
997 XFS_MOUNT_RDONLY) {
998 xfs_quiesce_attr(mp);
999 }
1000
1001 /*
1002 * Complete the quota initialisation, post-log-replay component.
1003 */
1004 if (quotamount) {
1005 ASSERT(mp->m_qflags == 0);
1006 mp->m_qflags = quotaflags;
1007
1008 xfs_qm_mount_quotas(mp);
1009 }
1010
1011 /*
1012 * Now we are mounted, reserve a small amount of unused space for
1013 * privileged transactions. This is needed so that transaction
1014 * space required for critical operations can dip into this pool
1015 * when at ENOSPC. This is needed for operations like create with
1016 * attr, unwritten extent conversion at ENOSPC, etc. Data allocations
1017 * are not allowed to use this reserved space.
1018 *
1019 * This may drive us straight to ENOSPC on mount, but that implies
1020 * we were already there on the last unmount. Warn if this occurs.
1021 */
1022 if (!(mp->m_flags & XFS_MOUNT_RDONLY)) {
1023 resblks = xfs_default_resblks(mp);
1024 error = xfs_reserve_blocks(mp, &resblks, NULL);
1025 if (error)
1026 xfs_warn(mp,
1027 "Unable to allocate reserve blocks. Continuing without reserve pool.");
1028
1029 /* Recover any CoW blocks that never got remapped. */
1030 error = xfs_reflink_recover_cow(mp);
1031 if (error) {
1032 xfs_err(mp,
1033 "Error %d recovering leftover CoW allocations.", error);
1034 xfs_force_shutdown(mp, SHUTDOWN_CORRUPT_INCORE);
1035 goto out_quota;
1036 }
1037
1038 /* Reserve AG blocks for future btree expansion. */
1039 error = xfs_fs_reserve_ag_blocks(mp);
1040 if (error && error != -ENOSPC)
1041 goto out_agresv;
1042 }
1043
1044 return 0;
1045
1046 out_agresv:
1047 xfs_fs_unreserve_ag_blocks(mp);
1048 out_quota:
1049 xfs_qm_unmount_quotas(mp);
1050 out_rtunmount:
1051 xfs_rtunmount_inodes(mp);
1052 out_rele_rip:
1053 xfs_irele(rip);
1054 /* Clean out dquots that might be in memory after quotacheck. */
1055 xfs_qm_unmount(mp);
1056 /*
Olivier Deprez92d4c212022-12-06 15:05:30 +01001057 * Flush all inode reclamation work and flush the log.
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001058 * We have to do this /after/ rtunmount and qm_unmount because those
1059 * two will have scheduled delayed reclaim for the rt/quota inodes.
1060 *
1061 * This is slightly different from the unmountfs call sequence
1062 * because we could be tearing down a partially set up mount. In
1063 * particular, if log_mount_finish fails we bail out without calling
1064 * qm_unmount_quotas and therefore rely on qm_unmount to release the
1065 * quota inodes.
1066 */
Olivier Deprez92d4c212022-12-06 15:05:30 +01001067 xfs_unmount_flush_inodes(mp);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001068 out_log_dealloc:
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001069 xfs_log_mount_cancel(mp);
1070 out_fail_wait:
1071 if (mp->m_logdev_targp && mp->m_logdev_targp != mp->m_ddev_targp)
1072 xfs_wait_buftarg(mp->m_logdev_targp);
1073 xfs_wait_buftarg(mp->m_ddev_targp);
1074 out_free_perag:
1075 xfs_free_perag(mp);
1076 out_free_dir:
1077 xfs_da_unmount(mp);
1078 out_remove_uuid:
1079 xfs_uuid_unmount(mp);
1080 out_remove_errortag:
1081 xfs_errortag_del(mp);
1082 out_remove_error_sysfs:
1083 xfs_error_sysfs_del(mp);
1084 out_del_stats:
1085 xfs_sysfs_del(&mp->m_stats.xs_kobj);
1086 out_remove_sysfs:
1087 xfs_sysfs_del(&mp->m_kobj);
1088 out:
1089 return error;
1090}
1091
1092/*
1093 * This flushes out the inodes,dquots and the superblock, unmounts the
1094 * log and makes sure that incore structures are freed.
1095 */
1096void
1097xfs_unmountfs(
1098 struct xfs_mount *mp)
1099{
1100 uint64_t resblks;
1101 int error;
1102
David Brazdil0f672f62019-12-10 10:32:29 +00001103 xfs_stop_block_reaping(mp);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001104 xfs_fs_unreserve_ag_blocks(mp);
1105 xfs_qm_unmount_quotas(mp);
1106 xfs_rtunmount_inodes(mp);
1107 xfs_irele(mp->m_rootip);
1108
Olivier Deprez92d4c212022-12-06 15:05:30 +01001109 xfs_unmount_flush_inodes(mp);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001110
1111 xfs_qm_unmount(mp);
1112
1113 /*
1114 * Unreserve any blocks we have so that when we unmount we don't account
1115 * the reserved free space as used. This is really only necessary for
1116 * lazy superblock counting because it trusts the incore superblock
1117 * counters to be absolutely correct on clean unmount.
1118 *
1119 * We don't bother correcting this elsewhere for lazy superblock
1120 * counting because on mount of an unclean filesystem we reconstruct the
1121 * correct counter value and this is irrelevant.
1122 *
1123 * For non-lazy counter filesystems, this doesn't matter at all because
1124 * we only every apply deltas to the superblock and hence the incore
1125 * value does not matter....
1126 */
1127 resblks = 0;
1128 error = xfs_reserve_blocks(mp, &resblks, NULL);
1129 if (error)
1130 xfs_warn(mp, "Unable to free reserved block pool. "
1131 "Freespace may not be correct on next mount.");
1132
1133 error = xfs_log_sbcount(mp);
1134 if (error)
1135 xfs_warn(mp, "Unable to update superblock counters. "
1136 "Freespace may not be correct on next mount.");
1137
1138
1139 xfs_log_unmount(mp);
1140 xfs_da_unmount(mp);
1141 xfs_uuid_unmount(mp);
1142
1143#if defined(DEBUG)
1144 xfs_errortag_clearall(mp);
1145#endif
1146 xfs_free_perag(mp);
1147
1148 xfs_errortag_del(mp);
1149 xfs_error_sysfs_del(mp);
1150 xfs_sysfs_del(&mp->m_stats.xs_kobj);
1151 xfs_sysfs_del(&mp->m_kobj);
1152}
1153
1154/*
1155 * Determine whether modifications can proceed. The caller specifies the minimum
1156 * freeze level for which modifications should not be allowed. This allows
1157 * certain operations to proceed while the freeze sequence is in progress, if
1158 * necessary.
1159 */
1160bool
1161xfs_fs_writable(
1162 struct xfs_mount *mp,
1163 int level)
1164{
1165 ASSERT(level > SB_UNFROZEN);
1166 if ((mp->m_super->s_writers.frozen >= level) ||
1167 XFS_FORCED_SHUTDOWN(mp) || (mp->m_flags & XFS_MOUNT_RDONLY))
1168 return false;
1169
1170 return true;
1171}
1172
1173/*
1174 * xfs_log_sbcount
1175 *
1176 * Sync the superblock counters to disk.
1177 *
1178 * Note this code can be called during the process of freezing, so we use the
1179 * transaction allocator that does not block when the transaction subsystem is
1180 * in its frozen state.
1181 */
1182int
1183xfs_log_sbcount(xfs_mount_t *mp)
1184{
Olivier Deprez92d4c212022-12-06 15:05:30 +01001185 if (!xfs_log_writable(mp))
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001186 return 0;
1187
1188 /*
1189 * we don't need to do this if we are updating the superblock
1190 * counters on every modification.
1191 */
1192 if (!xfs_sb_version_haslazysbcount(&mp->m_sb))
1193 return 0;
1194
1195 return xfs_sync_sb(mp, true);
1196}
1197
1198/*
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001199 * Deltas for the block count can vary from 1 to very large, but lock contention
1200 * only occurs on frequent small block count updates such as in the delayed
1201 * allocation path for buffered writes (page a time updates). Hence we set
1202 * a large batch count (1024) to minimise global counter updates except when
1203 * we get near to ENOSPC and we have to be very accurate with our updates.
1204 */
1205#define XFS_FDBLOCKS_BATCH 1024
1206int
1207xfs_mod_fdblocks(
1208 struct xfs_mount *mp,
1209 int64_t delta,
1210 bool rsvd)
1211{
1212 int64_t lcounter;
1213 long long res_used;
1214 s32 batch;
1215
1216 if (delta > 0) {
1217 /*
1218 * If the reserve pool is depleted, put blocks back into it
1219 * first. Most of the time the pool is full.
1220 */
1221 if (likely(mp->m_resblks == mp->m_resblks_avail)) {
1222 percpu_counter_add(&mp->m_fdblocks, delta);
1223 return 0;
1224 }
1225
1226 spin_lock(&mp->m_sb_lock);
1227 res_used = (long long)(mp->m_resblks - mp->m_resblks_avail);
1228
1229 if (res_used > delta) {
1230 mp->m_resblks_avail += delta;
1231 } else {
1232 delta -= res_used;
1233 mp->m_resblks_avail = mp->m_resblks;
1234 percpu_counter_add(&mp->m_fdblocks, delta);
1235 }
1236 spin_unlock(&mp->m_sb_lock);
1237 return 0;
1238 }
1239
1240 /*
1241 * Taking blocks away, need to be more accurate the closer we
1242 * are to zero.
1243 *
1244 * If the counter has a value of less than 2 * max batch size,
1245 * then make everything serialise as we are real close to
1246 * ENOSPC.
1247 */
1248 if (__percpu_counter_compare(&mp->m_fdblocks, 2 * XFS_FDBLOCKS_BATCH,
1249 XFS_FDBLOCKS_BATCH) < 0)
1250 batch = 1;
1251 else
1252 batch = XFS_FDBLOCKS_BATCH;
1253
1254 percpu_counter_add_batch(&mp->m_fdblocks, delta, batch);
1255 if (__percpu_counter_compare(&mp->m_fdblocks, mp->m_alloc_set_aside,
1256 XFS_FDBLOCKS_BATCH) >= 0) {
1257 /* we had space! */
1258 return 0;
1259 }
1260
1261 /*
1262 * lock up the sb for dipping into reserves before releasing the space
1263 * that took us to ENOSPC.
1264 */
1265 spin_lock(&mp->m_sb_lock);
1266 percpu_counter_add(&mp->m_fdblocks, -delta);
1267 if (!rsvd)
1268 goto fdblocks_enospc;
1269
1270 lcounter = (long long)mp->m_resblks_avail + delta;
1271 if (lcounter >= 0) {
1272 mp->m_resblks_avail = lcounter;
1273 spin_unlock(&mp->m_sb_lock);
1274 return 0;
1275 }
Olivier Deprez157378f2022-04-04 15:47:50 +02001276 xfs_warn_once(mp,
1277"Reserve blocks depleted! Consider increasing reserve pool size.");
1278
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001279fdblocks_enospc:
1280 spin_unlock(&mp->m_sb_lock);
1281 return -ENOSPC;
1282}
1283
1284int
1285xfs_mod_frextents(
1286 struct xfs_mount *mp,
1287 int64_t delta)
1288{
1289 int64_t lcounter;
1290 int ret = 0;
1291
1292 spin_lock(&mp->m_sb_lock);
1293 lcounter = mp->m_sb.sb_frextents + delta;
1294 if (lcounter < 0)
1295 ret = -ENOSPC;
1296 else
1297 mp->m_sb.sb_frextents = lcounter;
1298 spin_unlock(&mp->m_sb_lock);
1299 return ret;
1300}
1301
1302/*
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001303 * Used to free the superblock along various error paths.
1304 */
1305void
1306xfs_freesb(
1307 struct xfs_mount *mp)
1308{
1309 struct xfs_buf *bp = mp->m_sb_bp;
1310
1311 xfs_buf_lock(bp);
1312 mp->m_sb_bp = NULL;
1313 xfs_buf_relse(bp);
1314}
1315
1316/*
1317 * If the underlying (data/log/rt) device is readonly, there are some
1318 * operations that cannot proceed.
1319 */
1320int
1321xfs_dev_is_read_only(
1322 struct xfs_mount *mp,
1323 char *message)
1324{
1325 if (xfs_readonly_buftarg(mp->m_ddev_targp) ||
1326 xfs_readonly_buftarg(mp->m_logdev_targp) ||
1327 (mp->m_rtdev_targp && xfs_readonly_buftarg(mp->m_rtdev_targp))) {
1328 xfs_notice(mp, "%s required on read-only device.", message);
1329 xfs_notice(mp, "write access unavailable, cannot proceed.");
1330 return -EROFS;
1331 }
1332 return 0;
1333}
1334
1335/* Force the summary counters to be recalculated at next mount. */
1336void
1337xfs_force_summary_recalc(
1338 struct xfs_mount *mp)
1339{
1340 if (!xfs_sb_version_haslazysbcount(&mp->m_sb))
1341 return;
1342
David Brazdil0f672f62019-12-10 10:32:29 +00001343 xfs_fs_mark_sick(mp, XFS_SICK_FS_COUNTERS);
1344}
1345
1346/*
1347 * Update the in-core delayed block counter.
1348 *
1349 * We prefer to update the counter without having to take a spinlock for every
1350 * counter update (i.e. batching). Each change to delayed allocation
1351 * reservations can change can easily exceed the default percpu counter
1352 * batching, so we use a larger batch factor here.
1353 *
1354 * Note that we don't currently have any callers requiring fast summation
1355 * (e.g. percpu_counter_read) so we can use a big batch value here.
1356 */
1357#define XFS_DELALLOC_BATCH (4096)
1358void
1359xfs_mod_delalloc(
1360 struct xfs_mount *mp,
1361 int64_t delta)
1362{
1363 percpu_counter_add_batch(&mp->m_delalloc_blks, delta,
1364 XFS_DELALLOC_BATCH);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001365}