blob: e5e0713bebcd8827afde0444bc10c862e98286dd [file] [log] [blame]
Dave Chinner0b61f8a2018-06-05 19:42:14 -07001// SPDX-License-Identifier: GPL-2.0
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
Nathan Scotta805bad2006-06-19 08:40:27 +10003 * Copyright (c) 2000-2006 Silicon Graphics, Inc.
Nathan Scott7b718762005-11-02 14:58:39 +11004 * All Rights Reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 */
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00006
Linus Torvalds1da177e2005-04-16 15:20:36 -07007#include "xfs.h"
Dave Chinner70a98832013-10-23 10:36:05 +11008#include "xfs_shared.h"
Dave Chinner6ca1c902013-08-12 20:49:26 +10009#include "xfs_format.h"
Dave Chinner239880e2013-10-23 10:50:10 +110010#include "xfs_log_format.h"
11#include "xfs_trans_resv.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include "xfs_sb.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include "xfs_mount.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include "xfs_inode.h"
Nathan Scotta844f452005-11-02 14:38:42 +110015#include "xfs_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include "xfs_bmap.h"
Dave Chinnera4fbe6a2013-10-23 10:51:50 +110017#include "xfs_alloc.h"
Christoph Hellwig9909c4a2007-10-11 18:11:14 +100018#include "xfs_fsops.h"
Dave Chinner239880e2013-10-23 10:50:10 +110019#include "xfs_trans.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include "xfs_buf_item.h"
Dave Chinner239880e2013-10-23 10:50:10 +110021#include "xfs_log.h"
David Chinnera67d7c52007-11-23 16:29:32 +110022#include "xfs_log_priv.h"
Dave Chinner2b9ab5a2013-08-12 20:49:37 +100023#include "xfs_dir2.h"
Christoph Hellwig9f8868f2008-07-18 17:11:46 +100024#include "xfs_extfree_item.h"
25#include "xfs_mru_cache.h"
26#include "xfs_inode_item.h"
Dave Chinner6d8b79c2012-10-08 21:56:09 +110027#include "xfs_icache.h"
Christoph Hellwig0b1b2132009-12-14 23:14:59 +000028#include "xfs_trace.h"
Dave Chinner3ebe7d22013-06-27 16:04:53 +100029#include "xfs_icreate_item.h"
Dave Chinnera4fbe6a2013-10-23 10:51:50 +110030#include "xfs_filestream.h"
31#include "xfs_quota.h"
Brian Foster65b65732014-09-09 11:52:42 +100032#include "xfs_sysfs.h"
Darrick J. Wong30cbc592016-03-09 08:15:14 +110033#include "xfs_ondisk.h"
Darrick J. Wong5880f2d72016-08-03 12:04:45 +100034#include "xfs_rmap_item.h"
Darrick J. Wongbaf4bcac2016-10-03 09:11:20 -070035#include "xfs_refcount_item.h"
Darrick J. Wong6413a012016-10-03 09:11:25 -070036#include "xfs_bmap_item.h"
Darrick J. Wong5e7e6052016-10-03 09:11:38 -070037#include "xfs_reflink.h"
Darrick J. Wong894ecac2021-01-22 16:48:44 -080038#include "xfs_pwork.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
Adam Borowskidddde682018-10-18 17:20:19 +110040#include <linux/magic.h>
Ian Kent73e5fff2019-11-04 13:58:46 -080041#include <linux/fs_context.h>
42#include <linux/fs_parser.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
Alexey Dobriyanb87221d2009-09-21 17:01:09 -070044static const struct super_operations xfs_super_operations;
Brian Foster65b65732014-09-09 11:52:42 +100045
Dave Chinnere3aed1a2014-09-29 10:46:08 +100046static struct kset *xfs_kset; /* top-level xfs sysfs dir */
Brian Foster65b65732014-09-09 11:52:42 +100047#ifdef DEBUG
48static struct xfs_kobj xfs_dbg_kobj; /* global debug sysfs attrs */
49#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
Ira Weiny8d6c3442020-05-04 09:02:42 -070051enum xfs_dax_mode {
52 XFS_DAX_INODE = 0,
53 XFS_DAX_ALWAYS = 1,
54 XFS_DAX_NEVER = 2,
55};
56
57static void
58xfs_mount_set_dax_mode(
59 struct xfs_mount *mp,
60 enum xfs_dax_mode mode)
61{
62 switch (mode) {
63 case XFS_DAX_INODE:
64 mp->m_flags &= ~(XFS_MOUNT_DAX_ALWAYS | XFS_MOUNT_DAX_NEVER);
65 break;
66 case XFS_DAX_ALWAYS:
67 mp->m_flags |= XFS_MOUNT_DAX_ALWAYS;
68 mp->m_flags &= ~XFS_MOUNT_DAX_NEVER;
69 break;
70 case XFS_DAX_NEVER:
71 mp->m_flags |= XFS_MOUNT_DAX_NEVER;
72 mp->m_flags &= ~XFS_MOUNT_DAX_ALWAYS;
73 break;
74 }
75}
76
77static const struct constant_table dax_param_enums[] = {
78 {"inode", XFS_DAX_INODE },
79 {"always", XFS_DAX_ALWAYS },
80 {"never", XFS_DAX_NEVER },
81 {}
82};
83
Christoph Hellwig62a877e2008-07-18 17:12:36 +100084/*
85 * Table driven mount option parser.
Christoph Hellwig62a877e2008-07-18 17:12:36 +100086 */
87enum {
Ian Kent8da57c52019-10-28 08:41:42 -070088 Opt_logbufs, Opt_logbsize, Opt_logdev, Opt_rtdev,
Eric Sandeen2e74af02016-03-02 09:55:38 +110089 Opt_wsync, Opt_noalign, Opt_swalloc, Opt_sunit, Opt_swidth, Opt_nouuid,
Christoph Hellwig94079282019-04-28 08:32:52 -070090 Opt_grpid, Opt_nogrpid, Opt_bsdgroups, Opt_sysvgroups,
Eric Sandeen1c02d502018-07-26 09:11:27 -070091 Opt_allocsize, Opt_norecovery, Opt_inode64, Opt_inode32, Opt_ikeep,
92 Opt_noikeep, Opt_largeio, Opt_nolargeio, Opt_attr2, Opt_noattr2,
93 Opt_filestreams, Opt_quota, Opt_noquota, Opt_usrquota, Opt_grpquota,
94 Opt_prjquota, Opt_uquota, Opt_gquota, Opt_pquota,
Eric Sandeen2e74af02016-03-02 09:55:38 +110095 Opt_uqnoenforce, Opt_gqnoenforce, Opt_pqnoenforce, Opt_qnoenforce,
Ira Weiny8d6c3442020-05-04 09:02:42 -070096 Opt_discard, Opt_nodiscard, Opt_dax, Opt_dax_enum,
Christoph Hellwig62a877e2008-07-18 17:12:36 +100097};
98
Al Virod7167b12019-09-07 07:23:15 -040099static const struct fs_parameter_spec xfs_fs_parameters[] = {
Ian Kent73e5fff2019-11-04 13:58:46 -0800100 fsparam_u32("logbufs", Opt_logbufs),
101 fsparam_string("logbsize", Opt_logbsize),
102 fsparam_string("logdev", Opt_logdev),
103 fsparam_string("rtdev", Opt_rtdev),
104 fsparam_flag("wsync", Opt_wsync),
105 fsparam_flag("noalign", Opt_noalign),
106 fsparam_flag("swalloc", Opt_swalloc),
107 fsparam_u32("sunit", Opt_sunit),
108 fsparam_u32("swidth", Opt_swidth),
109 fsparam_flag("nouuid", Opt_nouuid),
110 fsparam_flag("grpid", Opt_grpid),
111 fsparam_flag("nogrpid", Opt_nogrpid),
112 fsparam_flag("bsdgroups", Opt_bsdgroups),
113 fsparam_flag("sysvgroups", Opt_sysvgroups),
114 fsparam_string("allocsize", Opt_allocsize),
115 fsparam_flag("norecovery", Opt_norecovery),
116 fsparam_flag("inode64", Opt_inode64),
117 fsparam_flag("inode32", Opt_inode32),
118 fsparam_flag("ikeep", Opt_ikeep),
119 fsparam_flag("noikeep", Opt_noikeep),
120 fsparam_flag("largeio", Opt_largeio),
121 fsparam_flag("nolargeio", Opt_nolargeio),
122 fsparam_flag("attr2", Opt_attr2),
123 fsparam_flag("noattr2", Opt_noattr2),
124 fsparam_flag("filestreams", Opt_filestreams),
125 fsparam_flag("quota", Opt_quota),
126 fsparam_flag("noquota", Opt_noquota),
127 fsparam_flag("usrquota", Opt_usrquota),
128 fsparam_flag("grpquota", Opt_grpquota),
129 fsparam_flag("prjquota", Opt_prjquota),
130 fsparam_flag("uquota", Opt_uquota),
131 fsparam_flag("gquota", Opt_gquota),
132 fsparam_flag("pquota", Opt_pquota),
133 fsparam_flag("uqnoenforce", Opt_uqnoenforce),
134 fsparam_flag("gqnoenforce", Opt_gqnoenforce),
135 fsparam_flag("pqnoenforce", Opt_pqnoenforce),
136 fsparam_flag("qnoenforce", Opt_qnoenforce),
137 fsparam_flag("discard", Opt_discard),
138 fsparam_flag("nodiscard", Opt_nodiscard),
139 fsparam_flag("dax", Opt_dax),
Ira Weiny8d6c3442020-05-04 09:02:42 -0700140 fsparam_enum("dax", Opt_dax_enum, dax_param_enums),
Ian Kent73e5fff2019-11-04 13:58:46 -0800141 {}
Christoph Hellwig62a877e2008-07-18 17:12:36 +1000142};
143
David Chinnera67d7c52007-11-23 16:29:32 +1100144struct proc_xfs_info {
Dave Chinnercbe4dab2015-06-04 09:19:18 +1000145 uint64_t flag;
146 char *str;
David Chinnera67d7c52007-11-23 16:29:32 +1100147};
148
Christoph Hellwig21f55992019-10-28 08:41:47 -0700149static int
150xfs_fs_show_options(
151 struct seq_file *m,
152 struct dentry *root)
David Chinnera67d7c52007-11-23 16:29:32 +1100153{
154 static struct proc_xfs_info xfs_info_set[] = {
155 /* the few simple ones we can get from the mount struct */
Eric Sandeen2e74af02016-03-02 09:55:38 +1100156 { XFS_MOUNT_IKEEP, ",ikeep" },
157 { XFS_MOUNT_WSYNC, ",wsync" },
158 { XFS_MOUNT_NOALIGN, ",noalign" },
159 { XFS_MOUNT_SWALLOC, ",swalloc" },
160 { XFS_MOUNT_NOUUID, ",nouuid" },
161 { XFS_MOUNT_NORECOVERY, ",norecovery" },
162 { XFS_MOUNT_ATTR2, ",attr2" },
163 { XFS_MOUNT_FILESTREAMS, ",filestreams" },
164 { XFS_MOUNT_GRPID, ",grpid" },
165 { XFS_MOUNT_DISCARD, ",discard" },
Christoph Hellwig7c6b94b2019-10-28 08:41:46 -0700166 { XFS_MOUNT_LARGEIO, ",largeio" },
Ira Weiny8d6c3442020-05-04 09:02:42 -0700167 { XFS_MOUNT_DAX_ALWAYS, ",dax=always" },
168 { XFS_MOUNT_DAX_NEVER, ",dax=never" },
David Chinnera67d7c52007-11-23 16:29:32 +1100169 { 0, NULL }
170 };
Christoph Hellwig21f55992019-10-28 08:41:47 -0700171 struct xfs_mount *mp = XFS_M(root->d_sb);
David Chinnera67d7c52007-11-23 16:29:32 +1100172 struct proc_xfs_info *xfs_infop;
173
174 for (xfs_infop = xfs_info_set; xfs_infop->flag; xfs_infop++) {
175 if (mp->m_flags & xfs_infop->flag)
176 seq_puts(m, xfs_infop->str);
177 }
Christoph Hellwig1775c502019-10-28 08:41:47 -0700178
179 seq_printf(m, ",inode%d",
180 (mp->m_flags & XFS_MOUNT_SMALL_INUMS) ? 32 : 64);
David Chinnera67d7c52007-11-23 16:29:32 +1100181
Christoph Hellwig3274d002019-10-28 08:41:45 -0700182 if (mp->m_flags & XFS_MOUNT_ALLOCSIZE)
Eric Sandeen2e74af02016-03-02 09:55:38 +1100183 seq_printf(m, ",allocsize=%dk",
Christoph Hellwigaa58d442019-10-28 08:41:46 -0700184 (1 << mp->m_allocsize_log) >> 10);
David Chinnera67d7c52007-11-23 16:29:32 +1100185
186 if (mp->m_logbufs > 0)
Eric Sandeen2e74af02016-03-02 09:55:38 +1100187 seq_printf(m, ",logbufs=%d", mp->m_logbufs);
David Chinnera67d7c52007-11-23 16:29:32 +1100188 if (mp->m_logbsize > 0)
Eric Sandeen2e74af02016-03-02 09:55:38 +1100189 seq_printf(m, ",logbsize=%dk", mp->m_logbsize >> 10);
David Chinnera67d7c52007-11-23 16:29:32 +1100190
191 if (mp->m_logname)
Eric Sandeen2e74af02016-03-02 09:55:38 +1100192 seq_show_option(m, "logdev", mp->m_logname);
David Chinnera67d7c52007-11-23 16:29:32 +1100193 if (mp->m_rtname)
Eric Sandeen2e74af02016-03-02 09:55:38 +1100194 seq_show_option(m, "rtdev", mp->m_rtname);
David Chinnera67d7c52007-11-23 16:29:32 +1100195
196 if (mp->m_dalign > 0)
Eric Sandeen2e74af02016-03-02 09:55:38 +1100197 seq_printf(m, ",sunit=%d",
David Chinnera67d7c52007-11-23 16:29:32 +1100198 (int)XFS_FSB_TO_BB(mp, mp->m_dalign));
199 if (mp->m_swidth > 0)
Eric Sandeen2e74af02016-03-02 09:55:38 +1100200 seq_printf(m, ",swidth=%d",
David Chinnera67d7c52007-11-23 16:29:32 +1100201 (int)XFS_FSB_TO_BB(mp, mp->m_swidth));
202
Kaixu Xia237d7882020-12-03 16:46:50 -0800203 if (mp->m_qflags & XFS_UQUOTA_ACCT) {
204 if (mp->m_qflags & XFS_UQUOTA_ENFD)
205 seq_puts(m, ",usrquota");
206 else
207 seq_puts(m, ",uqnoenforce");
208 }
David Chinnera67d7c52007-11-23 16:29:32 +1100209
Alex Elder988abe42009-09-02 17:02:24 -0500210 if (mp->m_qflags & XFS_PQUOTA_ACCT) {
Chandra Seetharaman83e782e2013-06-27 17:25:10 -0500211 if (mp->m_qflags & XFS_PQUOTA_ENFD)
Eric Sandeen2e74af02016-03-02 09:55:38 +1100212 seq_puts(m, ",prjquota");
Alex Elder988abe42009-09-02 17:02:24 -0500213 else
Eric Sandeen2e74af02016-03-02 09:55:38 +1100214 seq_puts(m, ",pqnoenforce");
Chandra Seetharamand892d582013-07-19 17:36:02 -0500215 }
216 if (mp->m_qflags & XFS_GQUOTA_ACCT) {
Chandra Seetharaman83e782e2013-06-27 17:25:10 -0500217 if (mp->m_qflags & XFS_GQUOTA_ENFD)
Eric Sandeen2e74af02016-03-02 09:55:38 +1100218 seq_puts(m, ",grpquota");
Alex Elder988abe42009-09-02 17:02:24 -0500219 else
Eric Sandeen2e74af02016-03-02 09:55:38 +1100220 seq_puts(m, ",gqnoenforce");
Alex Elder988abe42009-09-02 17:02:24 -0500221 }
David Chinnera67d7c52007-11-23 16:29:32 +1100222
223 if (!(mp->m_qflags & XFS_ALL_QUOTA_ACCT))
Eric Sandeen2e74af02016-03-02 09:55:38 +1100224 seq_puts(m, ",noquota");
Christoph Hellwig21f55992019-10-28 08:41:47 -0700225
226 return 0;
David Chinnera67d7c52007-11-23 16:29:32 +1100227}
Eric Sandeen91083262019-05-01 20:26:30 -0700228
Eric Sandeen9de67c32014-07-24 20:51:54 +1000229/*
Eric Sandeen12c3f052016-03-02 09:58:09 +1100230 * Set parameters for inode allocation heuristics, taking into account
231 * filesystem size and inode32/inode64 mount options; i.e. specifically
232 * whether or not XFS_MOUNT_SMALL_INUMS is set.
233 *
234 * Inode allocation patterns are altered only if inode32 is requested
235 * (XFS_MOUNT_SMALL_INUMS), and the filesystem is sufficiently large.
236 * If altered, XFS_MOUNT_32BITINODES is set as well.
237 *
238 * An agcount independent of that in the mount structure is provided
239 * because in the growfs case, mp->m_sb.sb_agcount is not yet updated
240 * to the potentially higher ag count.
241 *
242 * Returns the maximum AG index which may contain inodes.
Eric Sandeen9de67c32014-07-24 20:51:54 +1000243 */
Carlos Maiolino2d2194f2012-09-20 10:32:38 -0300244xfs_agnumber_t
Eric Sandeen12c3f052016-03-02 09:58:09 +1100245xfs_set_inode_alloc(
246 struct xfs_mount *mp,
247 xfs_agnumber_t agcount)
Carlos Maiolino2d2194f2012-09-20 10:32:38 -0300248{
Eric Sandeen12c3f052016-03-02 09:58:09 +1100249 xfs_agnumber_t index;
Carlos Maiolino4056c1d2012-09-20 10:32:40 -0300250 xfs_agnumber_t maxagi = 0;
Carlos Maiolino2d2194f2012-09-20 10:32:38 -0300251 xfs_sb_t *sbp = &mp->m_sb;
252 xfs_agnumber_t max_metadata;
Eric Sandeen54aa61f2014-07-24 20:53:10 +1000253 xfs_agino_t agino;
254 xfs_ino_t ino;
Carlos Maiolino2d2194f2012-09-20 10:32:38 -0300255
Eric Sandeen12c3f052016-03-02 09:58:09 +1100256 /*
257 * Calculate how much should be reserved for inodes to meet
258 * the max inode percentage. Used only for inode32.
Carlos Maiolino2d2194f2012-09-20 10:32:38 -0300259 */
Darrick J. Wongef325952019-06-05 11:19:34 -0700260 if (M_IGEO(mp)->maxicount) {
Darrick J. Wongc8ce5402017-06-16 11:00:05 -0700261 uint64_t icount;
Carlos Maiolino2d2194f2012-09-20 10:32:38 -0300262
263 icount = sbp->sb_dblocks * sbp->sb_imax_pct;
264 do_div(icount, 100);
265 icount += sbp->sb_agblocks - 1;
266 do_div(icount, sbp->sb_agblocks);
267 max_metadata = icount;
268 } else {
Eric Sandeen9de67c32014-07-24 20:51:54 +1000269 max_metadata = agcount;
Carlos Maiolino2d2194f2012-09-20 10:32:38 -0300270 }
271
Eric Sandeen12c3f052016-03-02 09:58:09 +1100272 /* Get the last possible inode in the filesystem */
Darrick J. Wong43004b22018-12-12 08:46:24 -0800273 agino = XFS_AGB_TO_AGINO(mp, sbp->sb_agblocks - 1);
Eric Sandeen12c3f052016-03-02 09:58:09 +1100274 ino = XFS_AGINO_TO_INO(mp, agcount - 1, agino);
Eric Sandeen54aa61f2014-07-24 20:53:10 +1000275
Eric Sandeen12c3f052016-03-02 09:58:09 +1100276 /*
277 * If user asked for no more than 32-bit inodes, and the fs is
278 * sufficiently large, set XFS_MOUNT_32BITINODES if we must alter
279 * the allocator to accommodate the request.
280 */
281 if ((mp->m_flags & XFS_MOUNT_SMALL_INUMS) && ino > XFS_MAXINUMBER_32)
282 mp->m_flags |= XFS_MOUNT_32BITINODES;
283 else
284 mp->m_flags &= ~XFS_MOUNT_32BITINODES;
Carlos Maiolino2d2194f2012-09-20 10:32:38 -0300285
Eric Sandeen9de67c32014-07-24 20:51:54 +1000286 for (index = 0; index < agcount; index++) {
Carlos Maiolino2d2194f2012-09-20 10:32:38 -0300287 struct xfs_perag *pag;
288
Eric Sandeen12c3f052016-03-02 09:58:09 +1100289 ino = XFS_AGINO_TO_INO(mp, index, agino);
290
Carlos Maiolino2d2194f2012-09-20 10:32:38 -0300291 pag = xfs_perag_get(mp, index);
Eric Sandeen12c3f052016-03-02 09:58:09 +1100292
293 if (mp->m_flags & XFS_MOUNT_32BITINODES) {
294 if (ino > XFS_MAXINUMBER_32) {
295 pag->pagi_inodeok = 0;
296 pag->pagf_metadata = 0;
297 } else {
298 pag->pagi_inodeok = 1;
299 maxagi++;
300 if (index < max_metadata)
301 pag->pagf_metadata = 1;
302 else
303 pag->pagf_metadata = 0;
304 }
305 } else {
306 pag->pagi_inodeok = 1;
307 pag->pagf_metadata = 0;
308 }
309
Carlos Maiolino2d2194f2012-09-20 10:32:38 -0300310 xfs_perag_put(pag);
311 }
312
Eric Sandeen12c3f052016-03-02 09:58:09 +1100313 return (mp->m_flags & XFS_MOUNT_32BITINODES) ? maxagi : agcount;
Carlos Maiolino2d2194f2012-09-20 10:32:38 -0300314}
315
Hannes Eder3180e662009-03-04 19:34:10 +0100316STATIC int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317xfs_blkdev_get(
318 xfs_mount_t *mp,
319 const char *name,
320 struct block_device **bdevp)
321{
322 int error = 0;
323
Tejun Heod4d77622010-11-13 11:55:18 +0100324 *bdevp = blkdev_get_by_path(name, FMODE_READ|FMODE_WRITE|FMODE_EXCL,
325 mp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 if (IS_ERR(*bdevp)) {
327 error = PTR_ERR(*bdevp);
Eric Sandeen77af5742014-12-24 09:47:27 +1100328 xfs_warn(mp, "Invalid device [%s], error=%d", name, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 }
330
Dave Chinner24513372014-06-25 14:58:08 +1000331 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332}
333
Hannes Eder3180e662009-03-04 19:34:10 +0100334STATIC void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335xfs_blkdev_put(
336 struct block_device *bdev)
337{
338 if (bdev)
Tejun Heoe525fd82010-11-13 11:55:17 +0100339 blkdev_put(bdev, FMODE_READ|FMODE_WRITE|FMODE_EXCL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340}
341
Christoph Hellwigf538d4d2005-11-02 10:26:59 +1100342void
343xfs_blkdev_issue_flush(
344 xfs_buftarg_t *buftarg)
345{
Christoph Hellwigc6bf3f02021-01-26 15:52:35 +0100346 blkdev_issue_flush(buftarg->bt_bdev);
Christoph Hellwigf538d4d2005-11-02 10:26:59 +1100347}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348
Christoph Hellwig19f354d2008-05-20 11:31:13 +1000349STATIC void
350xfs_close_devices(
351 struct xfs_mount *mp)
352{
Dan Williams486aff52017-08-24 15:12:50 -0700353 struct dax_device *dax_ddev = mp->m_ddev_targp->bt_daxdev;
354
Christoph Hellwig19f354d2008-05-20 11:31:13 +1000355 if (mp->m_logdev_targp && mp->m_logdev_targp != mp->m_ddev_targp) {
Lachlan McIlroyc032bfc2008-07-18 17:13:12 +1000356 struct block_device *logdev = mp->m_logdev_targp->bt_bdev;
Dan Williams486aff52017-08-24 15:12:50 -0700357 struct dax_device *dax_logdev = mp->m_logdev_targp->bt_daxdev;
358
Eric Sandeena1f69412018-04-06 10:09:42 -0700359 xfs_free_buftarg(mp->m_logdev_targp);
Lachlan McIlroyc032bfc2008-07-18 17:13:12 +1000360 xfs_blkdev_put(logdev);
Dan Williams486aff52017-08-24 15:12:50 -0700361 fs_put_dax(dax_logdev);
Christoph Hellwig19f354d2008-05-20 11:31:13 +1000362 }
363 if (mp->m_rtdev_targp) {
Lachlan McIlroyc032bfc2008-07-18 17:13:12 +1000364 struct block_device *rtdev = mp->m_rtdev_targp->bt_bdev;
Dan Williams486aff52017-08-24 15:12:50 -0700365 struct dax_device *dax_rtdev = mp->m_rtdev_targp->bt_daxdev;
366
Eric Sandeena1f69412018-04-06 10:09:42 -0700367 xfs_free_buftarg(mp->m_rtdev_targp);
Lachlan McIlroyc032bfc2008-07-18 17:13:12 +1000368 xfs_blkdev_put(rtdev);
Dan Williams486aff52017-08-24 15:12:50 -0700369 fs_put_dax(dax_rtdev);
Christoph Hellwig19f354d2008-05-20 11:31:13 +1000370 }
Eric Sandeena1f69412018-04-06 10:09:42 -0700371 xfs_free_buftarg(mp->m_ddev_targp);
Dan Williams486aff52017-08-24 15:12:50 -0700372 fs_put_dax(dax_ddev);
Christoph Hellwig19f354d2008-05-20 11:31:13 +1000373}
374
375/*
376 * The file system configurations are:
377 * (1) device (partition) with data and internal log
378 * (2) logical volume with data and log subvolumes.
379 * (3) logical volume with data, log, and realtime subvolumes.
380 *
381 * We only have to handle opening the log and realtime volumes here if
382 * they are present. The data subvolume has already been opened by
383 * get_sb_bdev() and is stored in sb->s_bdev.
384 */
385STATIC int
386xfs_open_devices(
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100387 struct xfs_mount *mp)
Christoph Hellwig19f354d2008-05-20 11:31:13 +1000388{
389 struct block_device *ddev = mp->m_super->s_bdev;
Dan Williams486aff52017-08-24 15:12:50 -0700390 struct dax_device *dax_ddev = fs_dax_get_by_bdev(ddev);
391 struct dax_device *dax_logdev = NULL, *dax_rtdev = NULL;
Christoph Hellwig19f354d2008-05-20 11:31:13 +1000392 struct block_device *logdev = NULL, *rtdev = NULL;
393 int error;
394
395 /*
396 * Open real time and log devices - order is important.
397 */
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100398 if (mp->m_logname) {
399 error = xfs_blkdev_get(mp, mp->m_logname, &logdev);
Christoph Hellwig19f354d2008-05-20 11:31:13 +1000400 if (error)
401 goto out;
Dan Williams486aff52017-08-24 15:12:50 -0700402 dax_logdev = fs_dax_get_by_bdev(logdev);
Christoph Hellwig19f354d2008-05-20 11:31:13 +1000403 }
404
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100405 if (mp->m_rtname) {
406 error = xfs_blkdev_get(mp, mp->m_rtname, &rtdev);
Christoph Hellwig19f354d2008-05-20 11:31:13 +1000407 if (error)
408 goto out_close_logdev;
409
410 if (rtdev == ddev || rtdev == logdev) {
Dave Chinner4f107002011-03-07 10:00:35 +1100411 xfs_warn(mp,
412 "Cannot mount filesystem with identical rtdev and ddev/logdev.");
Dave Chinner24513372014-06-25 14:58:08 +1000413 error = -EINVAL;
Christoph Hellwig19f354d2008-05-20 11:31:13 +1000414 goto out_close_rtdev;
415 }
Dan Williams486aff52017-08-24 15:12:50 -0700416 dax_rtdev = fs_dax_get_by_bdev(rtdev);
Christoph Hellwig19f354d2008-05-20 11:31:13 +1000417 }
418
419 /*
420 * Setup xfs_mount buffer target pointers
421 */
Dave Chinner24513372014-06-25 14:58:08 +1000422 error = -ENOMEM;
Dan Williams486aff52017-08-24 15:12:50 -0700423 mp->m_ddev_targp = xfs_alloc_buftarg(mp, ddev, dax_ddev);
Christoph Hellwig19f354d2008-05-20 11:31:13 +1000424 if (!mp->m_ddev_targp)
425 goto out_close_rtdev;
426
427 if (rtdev) {
Dan Williams486aff52017-08-24 15:12:50 -0700428 mp->m_rtdev_targp = xfs_alloc_buftarg(mp, rtdev, dax_rtdev);
Christoph Hellwig19f354d2008-05-20 11:31:13 +1000429 if (!mp->m_rtdev_targp)
430 goto out_free_ddev_targ;
431 }
432
433 if (logdev && logdev != ddev) {
Dan Williams486aff52017-08-24 15:12:50 -0700434 mp->m_logdev_targp = xfs_alloc_buftarg(mp, logdev, dax_logdev);
Christoph Hellwig19f354d2008-05-20 11:31:13 +1000435 if (!mp->m_logdev_targp)
436 goto out_free_rtdev_targ;
437 } else {
438 mp->m_logdev_targp = mp->m_ddev_targp;
439 }
440
441 return 0;
442
443 out_free_rtdev_targ:
444 if (mp->m_rtdev_targp)
Eric Sandeena1f69412018-04-06 10:09:42 -0700445 xfs_free_buftarg(mp->m_rtdev_targp);
Christoph Hellwig19f354d2008-05-20 11:31:13 +1000446 out_free_ddev_targ:
Eric Sandeena1f69412018-04-06 10:09:42 -0700447 xfs_free_buftarg(mp->m_ddev_targp);
Christoph Hellwig19f354d2008-05-20 11:31:13 +1000448 out_close_rtdev:
Markus Elfringd2a5e3c2014-12-01 08:24:20 +1100449 xfs_blkdev_put(rtdev);
Dan Williams486aff52017-08-24 15:12:50 -0700450 fs_put_dax(dax_rtdev);
Christoph Hellwig19f354d2008-05-20 11:31:13 +1000451 out_close_logdev:
Dan Williams486aff52017-08-24 15:12:50 -0700452 if (logdev && logdev != ddev) {
Christoph Hellwig19f354d2008-05-20 11:31:13 +1000453 xfs_blkdev_put(logdev);
Dan Williams486aff52017-08-24 15:12:50 -0700454 fs_put_dax(dax_logdev);
455 }
Christoph Hellwig19f354d2008-05-20 11:31:13 +1000456 out:
Dan Williams486aff52017-08-24 15:12:50 -0700457 fs_put_dax(dax_ddev);
Christoph Hellwig19f354d2008-05-20 11:31:13 +1000458 return error;
459}
460
Christoph Hellwige34b5622008-05-20 15:10:36 +1000461/*
462 * Setup xfs_mount buffer target pointers based on superblock
463 */
464STATIC int
465xfs_setup_devices(
466 struct xfs_mount *mp)
467{
468 int error;
Christoph Hellwig19f354d2008-05-20 11:31:13 +1000469
Eric Sandeena96c4152014-04-14 19:00:29 +1000470 error = xfs_setsize_buftarg(mp->m_ddev_targp, mp->m_sb.sb_sectsize);
Christoph Hellwige34b5622008-05-20 15:10:36 +1000471 if (error)
472 return error;
473
474 if (mp->m_logdev_targp && mp->m_logdev_targp != mp->m_ddev_targp) {
475 unsigned int log_sector_size = BBSIZE;
476
477 if (xfs_sb_version_hassector(&mp->m_sb))
478 log_sector_size = mp->m_sb.sb_logsectsize;
479 error = xfs_setsize_buftarg(mp->m_logdev_targp,
Christoph Hellwige34b5622008-05-20 15:10:36 +1000480 log_sector_size);
481 if (error)
482 return error;
483 }
484 if (mp->m_rtdev_targp) {
485 error = xfs_setsize_buftarg(mp->m_rtdev_targp,
Christoph Hellwige34b5622008-05-20 15:10:36 +1000486 mp->m_sb.sb_sectsize);
487 if (error)
488 return error;
489 }
490
491 return 0;
492}
Christoph Hellwig19f354d2008-05-20 11:31:13 +1000493
Christoph Hellwigaa6bf012012-02-29 09:53:48 +0000494STATIC int
495xfs_init_mount_workqueues(
496 struct xfs_mount *mp)
497{
Brian Foster78c931b2014-11-28 13:59:58 +1100498 mp->m_buf_workqueue = alloc_workqueue("xfs-buf/%s",
Darrick J. Wong05a302a2021-01-22 16:48:42 -0800499 XFS_WQFLAGS(WQ_FREEZABLE | WQ_MEM_RECLAIM),
500 1, mp->m_super->s_id);
Brian Foster78c931b2014-11-28 13:59:58 +1100501 if (!mp->m_buf_workqueue)
502 goto out;
503
Christoph Hellwigaa6bf012012-02-29 09:53:48 +0000504 mp->m_unwritten_workqueue = alloc_workqueue("xfs-conv/%s",
Darrick J. Wong05a302a2021-01-22 16:48:42 -0800505 XFS_WQFLAGS(WQ_FREEZABLE | WQ_MEM_RECLAIM),
506 0, mp->m_super->s_id);
Christoph Hellwigaa6bf012012-02-29 09:53:48 +0000507 if (!mp->m_unwritten_workqueue)
Darrick J. Wong28408242019-04-15 13:13:21 -0700508 goto out_destroy_buf;
Christoph Hellwigaa6bf012012-02-29 09:53:48 +0000509
Dave Chinner4c2d5422012-04-23 17:54:32 +1000510 mp->m_cil_workqueue = alloc_workqueue("xfs-cil/%s",
Darrick J. Wong05a302a2021-01-22 16:48:42 -0800511 XFS_WQFLAGS(WQ_FREEZABLE | WQ_MEM_RECLAIM | WQ_UNBOUND),
Ian Kente1d3d212019-11-04 13:58:40 -0800512 0, mp->m_super->s_id);
Dave Chinner4c2d5422012-04-23 17:54:32 +1000513 if (!mp->m_cil_workqueue)
514 goto out_destroy_unwritten;
Dave Chinner58896082012-10-08 21:56:05 +1100515
516 mp->m_reclaim_workqueue = alloc_workqueue("xfs-reclaim/%s",
Darrick J. Wong05a302a2021-01-22 16:48:42 -0800517 XFS_WQFLAGS(WQ_FREEZABLE | WQ_MEM_RECLAIM),
518 0, mp->m_super->s_id);
Dave Chinner58896082012-10-08 21:56:05 +1100519 if (!mp->m_reclaim_workqueue)
520 goto out_destroy_cil;
521
Darrick J. Wong9669f512021-01-22 16:48:43 -0800522 mp->m_blockgc_workqueue = alloc_workqueue("xfs-blockgc/%s",
Darrick J. Wong47bd6d32021-01-25 16:39:01 -0800523 WQ_SYSFS | WQ_UNBOUND | WQ_FREEZABLE | WQ_MEM_RECLAIM,
Darrick J. Wong05a302a2021-01-22 16:48:42 -0800524 0, mp->m_super->s_id);
Darrick J. Wong9669f512021-01-22 16:48:43 -0800525 if (!mp->m_blockgc_workqueue)
Christoph Hellwig1058d0f2019-06-28 19:27:25 -0700526 goto out_destroy_reclaim;
Brian Foster579b62f2012-11-06 09:50:47 -0500527
Darrick J. Wong05a302a2021-01-22 16:48:42 -0800528 mp->m_sync_workqueue = alloc_workqueue("xfs-sync/%s",
529 XFS_WQFLAGS(WQ_FREEZABLE), 0, mp->m_super->s_id);
Brian Foster696a5622017-03-28 14:51:44 -0700530 if (!mp->m_sync_workqueue)
531 goto out_destroy_eofb;
532
Christoph Hellwigaa6bf012012-02-29 09:53:48 +0000533 return 0;
534
Brian Foster696a5622017-03-28 14:51:44 -0700535out_destroy_eofb:
Darrick J. Wong9669f512021-01-22 16:48:43 -0800536 destroy_workqueue(mp->m_blockgc_workqueue);
Dave Chinner58896082012-10-08 21:56:05 +1100537out_destroy_reclaim:
538 destroy_workqueue(mp->m_reclaim_workqueue);
539out_destroy_cil:
540 destroy_workqueue(mp->m_cil_workqueue);
Dave Chinner4c2d5422012-04-23 17:54:32 +1000541out_destroy_unwritten:
542 destroy_workqueue(mp->m_unwritten_workqueue);
Brian Foster78c931b2014-11-28 13:59:58 +1100543out_destroy_buf:
544 destroy_workqueue(mp->m_buf_workqueue);
Christoph Hellwigaa6bf012012-02-29 09:53:48 +0000545out:
546 return -ENOMEM;
547}
548
549STATIC void
550xfs_destroy_mount_workqueues(
551 struct xfs_mount *mp)
552{
Brian Foster696a5622017-03-28 14:51:44 -0700553 destroy_workqueue(mp->m_sync_workqueue);
Darrick J. Wong9669f512021-01-22 16:48:43 -0800554 destroy_workqueue(mp->m_blockgc_workqueue);
Dave Chinner58896082012-10-08 21:56:05 +1100555 destroy_workqueue(mp->m_reclaim_workqueue);
Dave Chinner4c2d5422012-04-23 17:54:32 +1000556 destroy_workqueue(mp->m_cil_workqueue);
Christoph Hellwigaa6bf012012-02-29 09:53:48 +0000557 destroy_workqueue(mp->m_unwritten_workqueue);
Brian Foster78c931b2014-11-28 13:59:58 +1100558 destroy_workqueue(mp->m_buf_workqueue);
Christoph Hellwigaa6bf012012-02-29 09:53:48 +0000559}
560
Darrick J. Wongf0f7a672020-04-12 13:11:10 -0700561static void
562xfs_flush_inodes_worker(
563 struct work_struct *work)
564{
565 struct xfs_mount *mp = container_of(work, struct xfs_mount,
566 m_flush_inodes_work);
567 struct super_block *sb = mp->m_super;
568
569 if (down_read_trylock(&sb->s_umount)) {
570 sync_inodes_sb(sb);
571 up_read(&sb->s_umount);
572 }
573}
574
Dave Chinner9aa05002012-10-08 21:56:04 +1100575/*
576 * Flush all dirty data to disk. Must not be called while holding an XFS_ILOCK
577 * or a page lock. We use sync_inodes_sb() here to ensure we block while waiting
578 * for IO to complete so that we effectively throttle multiple callers to the
579 * rate at which IO is completing.
580 */
581void
582xfs_flush_inodes(
583 struct xfs_mount *mp)
584{
Darrick J. Wongf0f7a672020-04-12 13:11:10 -0700585 /*
586 * If flush_work() returns true then that means we waited for a flush
587 * which was already in progress. Don't bother running another scan.
588 */
589 if (flush_work(&mp->m_flush_inodes_work))
Darrick J. Wongc6425702020-03-27 08:49:44 -0700590 return;
591
Darrick J. Wongf0f7a672020-04-12 13:11:10 -0700592 queue_work(mp->m_sync_workqueue, &mp->m_flush_inodes_work);
593 flush_work(&mp->m_flush_inodes_work);
Dave Chinner9aa05002012-10-08 21:56:04 +1100594}
595
David Chinnerbf904242008-10-30 17:36:14 +1100596/* Catch misguided souls that try to use this interface on XFS */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597STATIC struct inode *
Nathan Scotta50cd262006-03-14 14:06:18 +1100598xfs_fs_alloc_inode(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 struct super_block *sb)
600{
David Chinnerbf904242008-10-30 17:36:14 +1100601 BUG();
Lachlan McIlroy493dca62008-10-30 17:36:52 +1100602 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603}
604
Christoph Hellwig48318222018-10-18 17:20:11 +1100605#ifdef DEBUG
606static void
607xfs_check_delalloc(
608 struct xfs_inode *ip,
609 int whichfork)
610{
611 struct xfs_ifork *ifp = XFS_IFORK_PTR(ip, whichfork);
612 struct xfs_bmbt_irec got;
613 struct xfs_iext_cursor icur;
614
615 if (!ifp || !xfs_iext_lookup_extent(ip, ifp, 0, &icur, &got))
616 return;
617 do {
618 if (isnullstartblock(got.br_startblock)) {
619 xfs_warn(ip->i_mount,
620 "ino %llx %s fork has delalloc extent at [0x%llx:0x%llx]",
621 ip->i_ino,
622 whichfork == XFS_DATA_FORK ? "data" : "cow",
623 got.br_startoff, got.br_blockcount);
624 }
625 } while (xfs_iext_next_extent(ifp, &icur, &got));
626}
627#else
628#define xfs_check_delalloc(ip, whichfork) do { } while (0)
629#endif
630
David Chinnerbf904242008-10-30 17:36:14 +1100631/*
David Chinner99fa8cb2008-10-30 17:36:40 +1100632 * Now that the generic code is guaranteed not to be accessing
Dave Chinner8179c032016-05-18 13:52:42 +1000633 * the linux inode, we can inactivate and reclaim the inode.
David Chinnerbf904242008-10-30 17:36:14 +1100634 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635STATIC void
Nathan Scotta50cd262006-03-14 14:06:18 +1100636xfs_fs_destroy_inode(
Christoph Hellwig848ce8f2009-09-29 13:48:56 +0000637 struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638{
Christoph Hellwig848ce8f2009-09-29 13:48:56 +0000639 struct xfs_inode *ip = XFS_I(inode);
640
Christoph Hellwigcca28fb2010-06-24 11:57:09 +1000641 trace_xfs_destroy_inode(ip);
David Chinner99fa8cb2008-10-30 17:36:40 +1100642
Christoph Hellwig65523212016-11-30 14:33:25 +1100643 ASSERT(!rwsem_is_locked(&inode->i_rwsem));
Dave Chinner8179c032016-05-18 13:52:42 +1000644 XFS_STATS_INC(ip->i_mount, vn_rele);
645 XFS_STATS_INC(ip->i_mount, vn_remove);
646
647 xfs_inactive(ip);
Christoph Hellwig848ce8f2009-09-29 13:48:56 +0000648
Christoph Hellwig48318222018-10-18 17:20:11 +1100649 if (!XFS_FORCED_SHUTDOWN(ip->i_mount) && ip->i_delayed_blks) {
650 xfs_check_delalloc(ip, XFS_DATA_FORK);
651 xfs_check_delalloc(ip, XFS_COW_FORK);
652 ASSERT(0);
653 }
654
Dave Chinner8179c032016-05-18 13:52:42 +1000655 XFS_STATS_INC(ip->i_mount, vn_reclaim);
Christoph Hellwig848ce8f2009-09-29 13:48:56 +0000656
657 /*
658 * We should never get here with one of the reclaim flags already set.
659 */
660 ASSERT_ALWAYS(!xfs_iflags_test(ip, XFS_IRECLAIMABLE));
661 ASSERT_ALWAYS(!xfs_iflags_test(ip, XFS_IRECLAIM));
662
663 /*
Dave Chinner718ecc52020-08-17 16:41:01 -0700664 * We always use background reclaim here because even if the inode is
665 * clean, it still may be under IO and hence we have wait for IO
666 * completion to occur before we can reclaim the inode. The background
667 * reclaim path handles this more efficiently than we can here, so
668 * simply let background reclaim tear down all inodes.
Christoph Hellwig848ce8f2009-09-29 13:48:56 +0000669 */
Dave Chinner57817c62010-01-10 23:51:47 +0000670 xfs_inode_set_reclaim_tag(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671}
672
Christoph Hellwigc3b1b132018-03-06 17:04:00 -0800673static void
674xfs_fs_dirty_inode(
675 struct inode *inode,
676 int flag)
677{
678 struct xfs_inode *ip = XFS_I(inode);
679 struct xfs_mount *mp = ip->i_mount;
680 struct xfs_trans *tp;
681
682 if (!(inode->i_sb->s_flags & SB_LAZYTIME))
683 return;
684 if (flag != I_DIRTY_SYNC || !(inode->i_state & I_DIRTY_TIME))
685 return;
686
687 if (xfs_trans_alloc(mp, &M_RES(mp)->tr_fsyncts, 0, 0, 0, &tp))
688 return;
689 xfs_ilock(ip, XFS_ILOCK_EXCL);
690 xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL);
691 xfs_trans_log_inode(tp, ip, XFS_ILOG_TIMESTAMP);
692 xfs_trans_commit(tp);
693}
694
David Chinner07c8f672008-10-30 16:11:59 +1100695/*
696 * Slab object creation initialisation for the XFS inode.
697 * This covers only the idempotent fields in the XFS inode;
698 * all other fields need to be initialised on allocation
Uwe Kleine-Königb5950762010-11-01 15:38:34 -0400699 * from the slab. This avoids the need to repeatedly initialise
David Chinner07c8f672008-10-30 16:11:59 +1100700 * fields in the xfs inode that left in the initialise state
701 * when freeing the inode.
702 */
David Chinnerbf904242008-10-30 17:36:14 +1100703STATIC void
704xfs_fs_inode_init_once(
David Chinner07c8f672008-10-30 16:11:59 +1100705 void *inode)
706{
707 struct xfs_inode *ip = inode;
708
709 memset(ip, 0, sizeof(struct xfs_inode));
David Chinnerbf904242008-10-30 17:36:14 +1100710
711 /* vfs inode */
712 inode_init_once(VFS_I(ip));
713
714 /* xfs inode */
David Chinner07c8f672008-10-30 16:11:59 +1100715 atomic_set(&ip->i_pincount, 0);
716 spin_lock_init(&ip->i_flags_lock);
David Chinner07c8f672008-10-30 16:11:59 +1100717
Dave Chinner653c60b2015-02-23 21:43:37 +1100718 mrlock_init(&ip->i_mmaplock, MRLOCK_ALLOW_EQUAL_PRI|MRLOCK_BARRIER,
719 "xfsino", ip->i_ino);
David Chinner07c8f672008-10-30 16:11:59 +1100720 mrlock_init(&ip->i_lock, MRLOCK_ALLOW_EQUAL_PRI|MRLOCK_BARRIER,
721 "xfsino", ip->i_ino);
David Chinner07c8f672008-10-30 16:11:59 +1100722}
723
Dave Chinner5132ba82012-03-22 05:15:10 +0000724/*
725 * We do an unlocked check for XFS_IDONTCACHE here because we are already
726 * serialised against cache hits here via the inode->i_lock and igrab() in
727 * xfs_iget_cache_hit(). Hence a lookup that might clear this flag will not be
728 * racing with us, and it avoids needing to grab a spinlock here for every inode
729 * we drop the final reference on.
730 */
731STATIC int
732xfs_fs_drop_inode(
733 struct inode *inode)
734{
735 struct xfs_inode *ip = XFS_I(inode);
736
Darrick J. Wong17c12bc2016-10-03 09:11:29 -0700737 /*
738 * If this unlinked inode is in the middle of recovery, don't
739 * drop the inode just yet; log recovery will take care of
740 * that. See the comment for this inode flag.
741 */
742 if (ip->i_flags & XFS_IRECOVERY) {
743 ASSERT(ip->i_mount->m_log->l_flags & XLOG_RECOVERY_NEEDED);
744 return 0;
745 }
746
Ira Weinydae2f8e2020-04-30 07:41:37 -0700747 return generic_drop_inode(inode);
Dave Chinner5132ba82012-03-22 05:15:10 +0000748}
749
Ian Kenta943f372019-11-04 13:58:42 -0800750static void
751xfs_mount_free(
Christoph Hellwiga7381592008-08-13 16:04:05 +1000752 struct xfs_mount *mp)
753{
Christoph Hellwiga7381592008-08-13 16:04:05 +1000754 kfree(mp->m_rtname);
755 kfree(mp->m_logname);
Ian Kenta943f372019-11-04 13:58:42 -0800756 kmem_free(mp);
Christoph Hellwiga7381592008-08-13 16:04:05 +1000757}
758
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759STATIC int
Christoph Hellwig69961a22009-10-06 20:29:28 +0000760xfs_fs_sync_fs(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 struct super_block *sb,
762 int wait)
763{
Christoph Hellwig745f6912007-08-30 17:20:39 +1000764 struct xfs_mount *mp = XFS_M(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765
Lachlan McIlroye893bff2007-10-12 11:13:35 +1000766 /*
Christoph Hellwig34625c62011-12-06 21:58:12 +0000767 * Doing anything during the async pass would be counterproductive.
Lachlan McIlroye893bff2007-10-12 11:13:35 +1000768 */
Christoph Hellwig34625c62011-12-06 21:58:12 +0000769 if (!wait)
Christoph Hellwig69961a22009-10-06 20:29:28 +0000770 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771
Dave Chinner34061f52012-10-08 21:56:06 +1100772 xfs_log_force(mp, XFS_LOG_SYNC);
Christoph Hellwig69961a22009-10-06 20:29:28 +0000773 if (laptop_mode) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 /*
775 * The disk must be active because we're syncing.
Dave Chinnerf661f1e2012-10-08 21:56:02 +1100776 * We schedule log work now (now that the disk is
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 * active) instead of later (when it might not be).
778 */
Dave Chinnerf661f1e2012-10-08 21:56:02 +1100779 flush_delayed_work(&mp->m_log->l_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 }
781
Christoph Hellwig69961a22009-10-06 20:29:28 +0000782 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783}
784
785STATIC int
Nathan Scotta50cd262006-03-14 14:06:18 +1100786xfs_fs_statfs(
David Howells726c3342006-06-23 02:02:58 -0700787 struct dentry *dentry,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 struct kstatfs *statp)
789{
Christoph Hellwig4ca488e2007-10-11 18:09:40 +1000790 struct xfs_mount *mp = XFS_M(dentry->d_sb);
791 xfs_sb_t *sbp = &mp->m_sb;
David Howells2b0143b2015-03-17 22:25:59 +0000792 struct xfs_inode *ip = XFS_I(d_inode(dentry));
Darrick J. Wongc8ce5402017-06-16 11:00:05 -0700793 uint64_t fakeinos, id;
794 uint64_t icount;
795 uint64_t ifree;
796 uint64_t fdblocks;
Christoph Hellwig4ca488e2007-10-11 18:09:40 +1000797 xfs_extlen_t lsize;
Darrick J. Wongc8ce5402017-06-16 11:00:05 -0700798 int64_t ffree;
Christoph Hellwig4ca488e2007-10-11 18:09:40 +1000799
Adam Borowskidddde682018-10-18 17:20:19 +1100800 statp->f_type = XFS_SUPER_MAGIC;
Christoph Hellwig4ca488e2007-10-11 18:09:40 +1000801 statp->f_namelen = MAXNAMELEN - 1;
802
803 id = huge_encode_dev(mp->m_ddev_targp->bt_dev);
Al Viro6d1349c2020-09-18 16:45:50 -0400804 statp->f_fsid = u64_to_fsid(id);
Christoph Hellwig4ca488e2007-10-11 18:09:40 +1000805
Dave Chinner501ab322015-02-23 21:19:28 +1100806 icount = percpu_counter_sum(&mp->m_icount);
Dave Chinnere88b64e2015-02-23 21:19:53 +1100807 ifree = percpu_counter_sum(&mp->m_ifree);
Dave Chinner0d485ad2015-02-23 21:22:03 +1100808 fdblocks = percpu_counter_sum(&mp->m_fdblocks);
Christoph Hellwig4ca488e2007-10-11 18:09:40 +1000809
810 spin_lock(&mp->m_sb_lock);
811 statp->f_bsize = sbp->sb_blocksize;
812 lsize = sbp->sb_logstart ? sbp->sb_logblocks : 0;
813 statp->f_blocks = sbp->sb_dblocks - lsize;
Dave Chinner0d485ad2015-02-23 21:22:03 +1100814 spin_unlock(&mp->m_sb_lock);
815
Zheng Bin237aac42020-05-12 11:48:35 -0700816 /* make sure statp->f_bfree does not underflow */
817 statp->f_bfree = max_t(int64_t, fdblocks - mp->m_alloc_set_aside, 0);
Dave Chinner0d485ad2015-02-23 21:22:03 +1100818 statp->f_bavail = statp->f_bfree;
819
Darrick J. Wong43004b22018-12-12 08:46:24 -0800820 fakeinos = XFS_FSB_TO_INO(mp, statp->f_bfree);
Dave Chinner9bb54cb2018-06-07 07:54:02 -0700821 statp->f_files = min(icount + fakeinos, (uint64_t)XFS_MAXINUMBER);
Darrick J. Wongef325952019-06-05 11:19:34 -0700822 if (M_IGEO(mp)->maxicount)
Christoph Hellwiga19d9f82009-03-29 09:51:08 +0200823 statp->f_files = min_t(typeof(statp->f_files),
824 statp->f_files,
Darrick J. Wongef325952019-06-05 11:19:34 -0700825 M_IGEO(mp)->maxicount);
Stuart Brodsky2fe33662010-08-24 11:46:05 +1000826
Eric Sandeen01f98822015-02-06 09:53:02 +1100827 /* If sb_icount overshot maxicount, report actual allocation */
828 statp->f_files = max_t(typeof(statp->f_files),
829 statp->f_files,
830 sbp->sb_icount);
831
Stuart Brodsky2fe33662010-08-24 11:46:05 +1000832 /* make sure statp->f_ffree does not underflow */
Dave Chinnere88b64e2015-02-23 21:19:53 +1100833 ffree = statp->f_files - (icount - ifree);
Darrick J. Wongc8ce5402017-06-16 11:00:05 -0700834 statp->f_ffree = max_t(int64_t, ffree, 0);
Stuart Brodsky2fe33662010-08-24 11:46:05 +1000835
Christoph Hellwig4ca488e2007-10-11 18:09:40 +1000836
Jie Liuda5bf952012-04-12 03:59:57 +0000837 if ((ip->i_d.di_flags & XFS_DIFLAG_PROJINHERIT) &&
Chandra Seetharaman83e782e2013-06-27 17:25:10 -0500838 ((mp->m_qflags & (XFS_PQUOTA_ACCT|XFS_PQUOTA_ENFD))) ==
839 (XFS_PQUOTA_ACCT|XFS_PQUOTA_ENFD))
Christoph Hellwig7d095252009-06-08 15:33:32 +0200840 xfs_qm_statvfs(ip, statp);
Richard Wareinga0158312018-01-08 10:41:33 -0800841
842 if (XFS_IS_REALTIME_MOUNT(mp) &&
843 (ip->i_d.di_flags & (XFS_DIFLAG_RTINHERIT | XFS_DIFLAG_REALTIME))) {
844 statp->f_blocks = sbp->sb_rblocks;
845 statp->f_bavail = statp->f_bfree =
846 sbp->sb_frextents * sbp->sb_rextsize;
847 }
848
Christoph Hellwig4ca488e2007-10-11 18:09:40 +1000849 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850}
851
Eric Sandeend5db0f92010-02-05 22:59:53 +0000852STATIC void
853xfs_save_resvblks(struct xfs_mount *mp)
854{
Darrick J. Wongc8ce5402017-06-16 11:00:05 -0700855 uint64_t resblks = 0;
Eric Sandeend5db0f92010-02-05 22:59:53 +0000856
857 mp->m_resblks_save = mp->m_resblks;
858 xfs_reserve_blocks(mp, &resblks, NULL);
859}
860
861STATIC void
862xfs_restore_resvblks(struct xfs_mount *mp)
863{
Darrick J. Wongc8ce5402017-06-16 11:00:05 -0700864 uint64_t resblks;
Eric Sandeend5db0f92010-02-05 22:59:53 +0000865
866 if (mp->m_resblks_save) {
867 resblks = mp->m_resblks_save;
868 mp->m_resblks_save = 0;
869 } else
870 resblks = xfs_default_resblks(mp);
871
872 xfs_reserve_blocks(mp, &resblks, NULL);
873}
874
Dave Chinnerc7eea6f2012-10-08 21:56:07 +1100875/*
Christoph Hellwig9909c4a2007-10-11 18:11:14 +1000876 * Second stage of a freeze. The data is already frozen so we only
Dave Chinner61e63ec2015-01-22 09:10:31 +1100877 * need to take care of the metadata. Once that's done sync the superblock
878 * to the log to dirty it in case of a crash while frozen. This ensures that we
879 * will recover the unlinked inode lists on the next mount.
Christoph Hellwig9909c4a2007-10-11 18:11:14 +1000880 */
Takashi Satoc4be0c12009-01-09 16:40:58 -0800881STATIC int
882xfs_fs_freeze(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 struct super_block *sb)
884{
Christoph Hellwig9909c4a2007-10-11 18:11:14 +1000885 struct xfs_mount *mp = XFS_M(sb);
Waiman Longc3f23752020-07-08 10:21:44 -0700886 unsigned int flags;
887 int ret;
Christoph Hellwig9909c4a2007-10-11 18:11:14 +1000888
Waiman Longc3f23752020-07-08 10:21:44 -0700889 /*
890 * The filesystem is now frozen far enough that memory reclaim
891 * cannot safely operate on the filesystem. Hence we need to
892 * set a GFP_NOFS context here to avoid recursion deadlocks.
893 */
894 flags = memalloc_nofs_save();
Darrick J. Wongc9a65262021-01-22 16:48:44 -0800895 xfs_blockgc_stop(mp);
Eric Sandeend5db0f92010-02-05 22:59:53 +0000896 xfs_save_resvblks(mp);
Brian Foster5b0ad7c2021-01-22 16:48:24 -0800897 ret = xfs_log_quiesce(mp);
Waiman Longc3f23752020-07-08 10:21:44 -0700898 memalloc_nofs_restore(flags);
899 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900}
901
902STATIC int
Eric Sandeend5db0f92010-02-05 22:59:53 +0000903xfs_fs_unfreeze(
904 struct super_block *sb)
905{
906 struct xfs_mount *mp = XFS_M(sb);
907
908 xfs_restore_resvblks(mp);
Dave Chinnerf661f1e2012-10-08 21:56:02 +1100909 xfs_log_work_queue(mp);
Darrick J. Wongc9a65262021-01-22 16:48:44 -0800910 xfs_blockgc_start(mp);
Eric Sandeend5db0f92010-02-05 22:59:53 +0000911 return 0;
912}
913
Christoph Hellwigf8f15e42008-05-20 11:30:59 +1000914/*
915 * This function fills in xfs_mount_t fields based on mount args.
Christoph Hellwigf8f15e42008-05-20 11:30:59 +1000916 * Note: the superblock _has_ now been read in.
917 */
918STATIC int
919xfs_finish_flags(
Christoph Hellwigf8f15e42008-05-20 11:30:59 +1000920 struct xfs_mount *mp)
921{
922 int ronly = (mp->m_flags & XFS_MOUNT_RDONLY);
923
Frederik Schwarzer025dfda2008-10-16 19:02:37 +0200924 /* Fail a mount where the logbuf is smaller than the log stripe */
Christoph Hellwigf8f15e42008-05-20 11:30:59 +1000925 if (xfs_sb_version_haslogv2(&mp->m_sb)) {
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100926 if (mp->m_logbsize <= 0 &&
927 mp->m_sb.sb_logsunit > XLOG_BIG_RECORD_BSIZE) {
Christoph Hellwigf8f15e42008-05-20 11:30:59 +1000928 mp->m_logbsize = mp->m_sb.sb_logsunit;
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100929 } else if (mp->m_logbsize > 0 &&
930 mp->m_logbsize < mp->m_sb.sb_logsunit) {
Dave Chinner4f107002011-03-07 10:00:35 +1100931 xfs_warn(mp,
932 "logbuf size must be greater than or equal to log stripe size");
Dave Chinner24513372014-06-25 14:58:08 +1000933 return -EINVAL;
Christoph Hellwigf8f15e42008-05-20 11:30:59 +1000934 }
935 } else {
936 /* Fail a mount if the logbuf is larger than 32K */
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100937 if (mp->m_logbsize > XLOG_BIG_RECORD_BSIZE) {
Dave Chinner4f107002011-03-07 10:00:35 +1100938 xfs_warn(mp,
939 "logbuf size for version 1 logs must be 16K or 32K");
Dave Chinner24513372014-06-25 14:58:08 +1000940 return -EINVAL;
Christoph Hellwigf8f15e42008-05-20 11:30:59 +1000941 }
942 }
943
944 /*
Dave Chinnerd3eaace2013-06-05 12:09:09 +1000945 * V5 filesystems always use attr2 format for attributes.
946 */
947 if (xfs_sb_version_hascrc(&mp->m_sb) &&
948 (mp->m_flags & XFS_MOUNT_NOATTR2)) {
Eric Sandeen2e74af02016-03-02 09:55:38 +1100949 xfs_warn(mp, "Cannot mount a V5 filesystem as noattr2. "
950 "attr2 is always enabled for V5 filesystems.");
Dave Chinner24513372014-06-25 14:58:08 +1000951 return -EINVAL;
Dave Chinnerd3eaace2013-06-05 12:09:09 +1000952 }
953
954 /*
Christoph Hellwigf8f15e42008-05-20 11:30:59 +1000955 * mkfs'ed attr2 will turn on attr2 mount unless explicitly
956 * told by noattr2 to turn it off
957 */
958 if (xfs_sb_version_hasattr2(&mp->m_sb) &&
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100959 !(mp->m_flags & XFS_MOUNT_NOATTR2))
Christoph Hellwigf8f15e42008-05-20 11:30:59 +1000960 mp->m_flags |= XFS_MOUNT_ATTR2;
961
962 /*
963 * prohibit r/w mounts of read-only filesystems
964 */
965 if ((mp->m_sb.sb_flags & XFS_SBF_READONLY) && !ronly) {
Dave Chinner4f107002011-03-07 10:00:35 +1100966 xfs_warn(mp,
967 "cannot mount a read-only filesystem as read-write");
Dave Chinner24513372014-06-25 14:58:08 +1000968 return -EROFS;
Christoph Hellwigf8f15e42008-05-20 11:30:59 +1000969 }
970
Chandra Seetharamand892d582013-07-19 17:36:02 -0500971 if ((mp->m_qflags & (XFS_GQUOTA_ACCT | XFS_GQUOTA_ACTIVE)) &&
972 (mp->m_qflags & (XFS_PQUOTA_ACCT | XFS_PQUOTA_ACTIVE)) &&
973 !xfs_sb_version_has_pquotino(&mp->m_sb)) {
974 xfs_warn(mp,
975 "Super block does not support project and group quota together");
Dave Chinner24513372014-06-25 14:58:08 +1000976 return -EINVAL;
Chandra Seetharamand892d582013-07-19 17:36:02 -0500977 }
978
Christoph Hellwigf8f15e42008-05-20 11:30:59 +1000979 return 0;
980}
981
Dave Chinner5681ca42015-02-23 21:22:31 +1100982static int
983xfs_init_percpu_counters(
984 struct xfs_mount *mp)
985{
986 int error;
987
988 error = percpu_counter_init(&mp->m_icount, 0, GFP_KERNEL);
989 if (error)
Joe Perches5e9383f2015-03-25 15:00:24 +1100990 return -ENOMEM;
Dave Chinner5681ca42015-02-23 21:22:31 +1100991
992 error = percpu_counter_init(&mp->m_ifree, 0, GFP_KERNEL);
993 if (error)
994 goto free_icount;
995
996 error = percpu_counter_init(&mp->m_fdblocks, 0, GFP_KERNEL);
997 if (error)
998 goto free_ifree;
999
Darrick J. Wong9fe82b82019-04-25 18:26:22 -07001000 error = percpu_counter_init(&mp->m_delalloc_blks, 0, GFP_KERNEL);
1001 if (error)
1002 goto free_fdblocks;
1003
Dave Chinner5681ca42015-02-23 21:22:31 +11001004 return 0;
1005
Darrick J. Wong9fe82b82019-04-25 18:26:22 -07001006free_fdblocks:
1007 percpu_counter_destroy(&mp->m_fdblocks);
Dave Chinner5681ca42015-02-23 21:22:31 +11001008free_ifree:
1009 percpu_counter_destroy(&mp->m_ifree);
1010free_icount:
1011 percpu_counter_destroy(&mp->m_icount);
1012 return -ENOMEM;
1013}
1014
1015void
1016xfs_reinit_percpu_counters(
1017 struct xfs_mount *mp)
1018{
1019 percpu_counter_set(&mp->m_icount, mp->m_sb.sb_icount);
1020 percpu_counter_set(&mp->m_ifree, mp->m_sb.sb_ifree);
1021 percpu_counter_set(&mp->m_fdblocks, mp->m_sb.sb_fdblocks);
1022}
1023
1024static void
1025xfs_destroy_percpu_counters(
1026 struct xfs_mount *mp)
1027{
1028 percpu_counter_destroy(&mp->m_icount);
1029 percpu_counter_destroy(&mp->m_ifree);
1030 percpu_counter_destroy(&mp->m_fdblocks);
Darrick J. Wong9fe82b82019-04-25 18:26:22 -07001031 ASSERT(XFS_FORCED_SHUTDOWN(mp) ||
1032 percpu_counter_sum(&mp->m_delalloc_blks) == 0);
1033 percpu_counter_destroy(&mp->m_delalloc_blks);
Dave Chinner5681ca42015-02-23 21:22:31 +11001034}
1035
Ian Kent2f8d66b2019-11-04 13:58:47 -08001036static void
1037xfs_fs_put_super(
1038 struct super_block *sb)
1039{
1040 struct xfs_mount *mp = XFS_M(sb);
1041
1042 /* if ->fill_super failed, we have no mount to tear down */
1043 if (!sb->s_fs_info)
1044 return;
1045
1046 xfs_notice(mp, "Unmounting Filesystem");
1047 xfs_filestream_unmount(mp);
1048 xfs_unmountfs(mp);
1049
1050 xfs_freesb(mp);
1051 free_percpu(mp->m_stats.xs_stats);
1052 xfs_destroy_percpu_counters(mp);
1053 xfs_destroy_mount_workqueues(mp);
1054 xfs_close_devices(mp);
1055
1056 sb->s_fs_info = NULL;
1057 xfs_mount_free(mp);
1058}
1059
1060static long
1061xfs_fs_nr_cached_objects(
1062 struct super_block *sb,
1063 struct shrink_control *sc)
1064{
1065 /* Paranoia: catch incorrect calls during mount setup or teardown */
1066 if (WARN_ON_ONCE(!sb->s_fs_info))
1067 return 0;
1068 return xfs_reclaim_inodes_count(XFS_M(sb));
1069}
1070
1071static long
1072xfs_fs_free_cached_objects(
1073 struct super_block *sb,
1074 struct shrink_control *sc)
1075{
1076 return xfs_reclaim_inodes_nr(XFS_M(sb), sc->nr_to_scan);
1077}
1078
1079static const struct super_operations xfs_super_operations = {
1080 .alloc_inode = xfs_fs_alloc_inode,
1081 .destroy_inode = xfs_fs_destroy_inode,
1082 .dirty_inode = xfs_fs_dirty_inode,
1083 .drop_inode = xfs_fs_drop_inode,
1084 .put_super = xfs_fs_put_super,
1085 .sync_fs = xfs_fs_sync_fs,
1086 .freeze_fs = xfs_fs_freeze,
1087 .unfreeze_fs = xfs_fs_unfreeze,
1088 .statfs = xfs_fs_statfs,
1089 .show_options = xfs_fs_show_options,
1090 .nr_cached_objects = xfs_fs_nr_cached_objects,
1091 .free_cached_objects = xfs_fs_free_cached_objects,
1092};
1093
Ian Kent73e5fff2019-11-04 13:58:46 -08001094static int
Ian Kent8757c382019-11-04 13:58:48 -08001095suffix_kstrtoint(
1096 const char *s,
1097 unsigned int base,
1098 int *res)
1099{
1100 int last, shift_left_factor = 0, _res;
1101 char *value;
1102 int ret = 0;
1103
1104 value = kstrdup(s, GFP_KERNEL);
1105 if (!value)
1106 return -ENOMEM;
1107
1108 last = strlen(value) - 1;
1109 if (value[last] == 'K' || value[last] == 'k') {
1110 shift_left_factor = 10;
1111 value[last] = '\0';
1112 }
1113 if (value[last] == 'M' || value[last] == 'm') {
1114 shift_left_factor = 20;
1115 value[last] = '\0';
1116 }
1117 if (value[last] == 'G' || value[last] == 'g') {
1118 shift_left_factor = 30;
1119 value[last] = '\0';
1120 }
1121
1122 if (kstrtoint(value, base, &_res))
1123 ret = -EINVAL;
1124 kfree(value);
1125 *res = _res << shift_left_factor;
1126 return ret;
1127}
1128
1129/*
1130 * Set mount state from a mount option.
1131 *
1132 * NOTE: mp->m_super is NULL here!
1133 */
1134static int
Darrick J. Wong1e5c39d2020-12-04 15:59:39 -08001135xfs_fs_parse_param(
Ian Kent8757c382019-11-04 13:58:48 -08001136 struct fs_context *fc,
1137 struct fs_parameter *param)
1138{
1139 struct xfs_mount *mp = fc->s_fs_info;
1140 struct fs_parse_result result;
1141 int size = 0;
1142 int opt;
1143
Al Virod7167b12019-09-07 07:23:15 -04001144 opt = fs_parse(fc, xfs_fs_parameters, param, &result);
Ian Kent8757c382019-11-04 13:58:48 -08001145 if (opt < 0)
1146 return opt;
1147
1148 switch (opt) {
1149 case Opt_logbufs:
1150 mp->m_logbufs = result.uint_32;
1151 return 0;
1152 case Opt_logbsize:
1153 if (suffix_kstrtoint(param->string, 10, &mp->m_logbsize))
1154 return -EINVAL;
1155 return 0;
1156 case Opt_logdev:
1157 kfree(mp->m_logname);
1158 mp->m_logname = kstrdup(param->string, GFP_KERNEL);
1159 if (!mp->m_logname)
1160 return -ENOMEM;
1161 return 0;
1162 case Opt_rtdev:
1163 kfree(mp->m_rtname);
1164 mp->m_rtname = kstrdup(param->string, GFP_KERNEL);
1165 if (!mp->m_rtname)
1166 return -ENOMEM;
1167 return 0;
1168 case Opt_allocsize:
1169 if (suffix_kstrtoint(param->string, 10, &size))
1170 return -EINVAL;
1171 mp->m_allocsize_log = ffs(size) - 1;
1172 mp->m_flags |= XFS_MOUNT_ALLOCSIZE;
1173 return 0;
1174 case Opt_grpid:
1175 case Opt_bsdgroups:
1176 mp->m_flags |= XFS_MOUNT_GRPID;
1177 return 0;
1178 case Opt_nogrpid:
1179 case Opt_sysvgroups:
1180 mp->m_flags &= ~XFS_MOUNT_GRPID;
1181 return 0;
1182 case Opt_wsync:
1183 mp->m_flags |= XFS_MOUNT_WSYNC;
1184 return 0;
1185 case Opt_norecovery:
1186 mp->m_flags |= XFS_MOUNT_NORECOVERY;
1187 return 0;
1188 case Opt_noalign:
1189 mp->m_flags |= XFS_MOUNT_NOALIGN;
1190 return 0;
1191 case Opt_swalloc:
1192 mp->m_flags |= XFS_MOUNT_SWALLOC;
1193 return 0;
1194 case Opt_sunit:
1195 mp->m_dalign = result.uint_32;
1196 return 0;
1197 case Opt_swidth:
1198 mp->m_swidth = result.uint_32;
1199 return 0;
1200 case Opt_inode32:
1201 mp->m_flags |= XFS_MOUNT_SMALL_INUMS;
1202 return 0;
1203 case Opt_inode64:
1204 mp->m_flags &= ~XFS_MOUNT_SMALL_INUMS;
1205 return 0;
1206 case Opt_nouuid:
1207 mp->m_flags |= XFS_MOUNT_NOUUID;
1208 return 0;
Ian Kent8757c382019-11-04 13:58:48 -08001209 case Opt_largeio:
1210 mp->m_flags |= XFS_MOUNT_LARGEIO;
1211 return 0;
1212 case Opt_nolargeio:
1213 mp->m_flags &= ~XFS_MOUNT_LARGEIO;
1214 return 0;
Ian Kent8757c382019-11-04 13:58:48 -08001215 case Opt_filestreams:
1216 mp->m_flags |= XFS_MOUNT_FILESTREAMS;
1217 return 0;
1218 case Opt_noquota:
1219 mp->m_qflags &= ~XFS_ALL_QUOTA_ACCT;
1220 mp->m_qflags &= ~XFS_ALL_QUOTA_ENFD;
1221 mp->m_qflags &= ~XFS_ALL_QUOTA_ACTIVE;
1222 return 0;
1223 case Opt_quota:
1224 case Opt_uquota:
1225 case Opt_usrquota:
1226 mp->m_qflags |= (XFS_UQUOTA_ACCT | XFS_UQUOTA_ACTIVE |
1227 XFS_UQUOTA_ENFD);
1228 return 0;
1229 case Opt_qnoenforce:
1230 case Opt_uqnoenforce:
1231 mp->m_qflags |= (XFS_UQUOTA_ACCT | XFS_UQUOTA_ACTIVE);
1232 mp->m_qflags &= ~XFS_UQUOTA_ENFD;
1233 return 0;
1234 case Opt_pquota:
1235 case Opt_prjquota:
1236 mp->m_qflags |= (XFS_PQUOTA_ACCT | XFS_PQUOTA_ACTIVE |
1237 XFS_PQUOTA_ENFD);
1238 return 0;
1239 case Opt_pqnoenforce:
1240 mp->m_qflags |= (XFS_PQUOTA_ACCT | XFS_PQUOTA_ACTIVE);
1241 mp->m_qflags &= ~XFS_PQUOTA_ENFD;
1242 return 0;
1243 case Opt_gquota:
1244 case Opt_grpquota:
1245 mp->m_qflags |= (XFS_GQUOTA_ACCT | XFS_GQUOTA_ACTIVE |
1246 XFS_GQUOTA_ENFD);
1247 return 0;
1248 case Opt_gqnoenforce:
1249 mp->m_qflags |= (XFS_GQUOTA_ACCT | XFS_GQUOTA_ACTIVE);
1250 mp->m_qflags &= ~XFS_GQUOTA_ENFD;
1251 return 0;
1252 case Opt_discard:
1253 mp->m_flags |= XFS_MOUNT_DISCARD;
1254 return 0;
1255 case Opt_nodiscard:
1256 mp->m_flags &= ~XFS_MOUNT_DISCARD;
1257 return 0;
1258#ifdef CONFIG_FS_DAX
1259 case Opt_dax:
Ira Weiny8d6c3442020-05-04 09:02:42 -07001260 xfs_mount_set_dax_mode(mp, XFS_DAX_ALWAYS);
1261 return 0;
1262 case Opt_dax_enum:
1263 xfs_mount_set_dax_mode(mp, result.uint_32);
Ian Kent8757c382019-11-04 13:58:48 -08001264 return 0;
1265#endif
Pavel Reichlc23c3932020-09-25 11:10:29 -07001266 /* Following mount options will be removed in September 2025 */
1267 case Opt_ikeep:
1268 xfs_warn(mp, "%s mount option is deprecated.", param->key);
1269 mp->m_flags |= XFS_MOUNT_IKEEP;
1270 return 0;
1271 case Opt_noikeep:
1272 xfs_warn(mp, "%s mount option is deprecated.", param->key);
1273 mp->m_flags &= ~XFS_MOUNT_IKEEP;
1274 return 0;
1275 case Opt_attr2:
1276 xfs_warn(mp, "%s mount option is deprecated.", param->key);
1277 mp->m_flags |= XFS_MOUNT_ATTR2;
1278 return 0;
1279 case Opt_noattr2:
1280 xfs_warn(mp, "%s mount option is deprecated.", param->key);
1281 mp->m_flags &= ~XFS_MOUNT_ATTR2;
1282 mp->m_flags |= XFS_MOUNT_NOATTR2;
1283 return 0;
Ian Kent8757c382019-11-04 13:58:48 -08001284 default:
1285 xfs_warn(mp, "unknown mount option [%s].", param->key);
1286 return -EINVAL;
1287 }
1288
1289 return 0;
1290}
1291
1292static int
Darrick J. Wong1e5c39d2020-12-04 15:59:39 -08001293xfs_fs_validate_params(
Ian Kent8757c382019-11-04 13:58:48 -08001294 struct xfs_mount *mp)
1295{
1296 /*
1297 * no recovery flag requires a read-only mount
1298 */
1299 if ((mp->m_flags & XFS_MOUNT_NORECOVERY) &&
1300 !(mp->m_flags & XFS_MOUNT_RDONLY)) {
1301 xfs_warn(mp, "no-recovery mounts must be read-only.");
1302 return -EINVAL;
1303 }
1304
1305 if ((mp->m_flags & XFS_MOUNT_NOALIGN) &&
1306 (mp->m_dalign || mp->m_swidth)) {
1307 xfs_warn(mp,
1308 "sunit and swidth options incompatible with the noalign option");
1309 return -EINVAL;
1310 }
1311
1312 if (!IS_ENABLED(CONFIG_XFS_QUOTA) && mp->m_qflags != 0) {
1313 xfs_warn(mp, "quota support not available in this kernel.");
1314 return -EINVAL;
1315 }
1316
1317 if ((mp->m_dalign && !mp->m_swidth) ||
1318 (!mp->m_dalign && mp->m_swidth)) {
1319 xfs_warn(mp, "sunit and swidth must be specified together");
1320 return -EINVAL;
1321 }
1322
1323 if (mp->m_dalign && (mp->m_swidth % mp->m_dalign != 0)) {
1324 xfs_warn(mp,
1325 "stripe width (%d) must be a multiple of the stripe unit (%d)",
1326 mp->m_swidth, mp->m_dalign);
1327 return -EINVAL;
1328 }
1329
1330 if (mp->m_logbufs != -1 &&
1331 mp->m_logbufs != 0 &&
1332 (mp->m_logbufs < XLOG_MIN_ICLOGS ||
1333 mp->m_logbufs > XLOG_MAX_ICLOGS)) {
1334 xfs_warn(mp, "invalid logbufs value: %d [not %d-%d]",
1335 mp->m_logbufs, XLOG_MIN_ICLOGS, XLOG_MAX_ICLOGS);
1336 return -EINVAL;
1337 }
1338
1339 if (mp->m_logbsize != -1 &&
1340 mp->m_logbsize != 0 &&
1341 (mp->m_logbsize < XLOG_MIN_RECORD_BSIZE ||
1342 mp->m_logbsize > XLOG_MAX_RECORD_BSIZE ||
1343 !is_power_of_2(mp->m_logbsize))) {
1344 xfs_warn(mp,
1345 "invalid logbufsize: %d [not 16k,32k,64k,128k or 256k]",
1346 mp->m_logbsize);
1347 return -EINVAL;
1348 }
1349
1350 if ((mp->m_flags & XFS_MOUNT_ALLOCSIZE) &&
1351 (mp->m_allocsize_log > XFS_MAX_IO_LOG ||
1352 mp->m_allocsize_log < XFS_MIN_IO_LOG)) {
1353 xfs_warn(mp, "invalid log iosize: %d [not %d-%d]",
1354 mp->m_allocsize_log, XFS_MIN_IO_LOG, XFS_MAX_IO_LOG);
1355 return -EINVAL;
1356 }
1357
1358 return 0;
1359}
1360
1361static int
Darrick J. Wong1e5c39d2020-12-04 15:59:39 -08001362xfs_fs_fill_super(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363 struct super_block *sb,
Ian Kent73e5fff2019-11-04 13:58:46 -08001364 struct fs_context *fc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365{
Ian Kent73e5fff2019-11-04 13:58:46 -08001366 struct xfs_mount *mp = sb->s_fs_info;
Christoph Hellwigf3dcc132008-03-27 18:00:54 +11001367 struct inode *root;
Colin Ian King0279c712019-11-06 08:07:46 -08001368 int flags = 0, error;
Christoph Hellwigbdd907b2008-05-20 15:10:44 +10001369
Ian Kent7c89fcb2019-11-04 13:58:46 -08001370 mp->m_super = sb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371
Darrick J. Wong1e5c39d2020-12-04 15:59:39 -08001372 error = xfs_fs_validate_params(mp);
Christoph Hellwig745f6912007-08-30 17:20:39 +10001373 if (error)
Ian Kente1d3d212019-11-04 13:58:40 -08001374 goto out_free_names;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375
1376 sb_min_blocksize(sb, BBSIZE);
Lachlan McIlroy0ec58512008-06-23 13:23:01 +10001377 sb->s_xattr = xfs_xattr_handlers;
Nathan Scotta50cd262006-03-14 14:06:18 +11001378 sb->s_export_op = &xfs_export_operations;
Christoph Hellwigfcafb712009-02-09 08:47:34 +01001379#ifdef CONFIG_XFS_QUOTA
Nathan Scotta50cd262006-03-14 14:06:18 +11001380 sb->s_qcop = &xfs_quotactl_operations;
Jan Kara17ef4fd2014-09-30 22:35:33 +02001381 sb->s_quota_types = QTYPE_MASK_USR | QTYPE_MASK_GRP | QTYPE_MASK_PRJ;
Christoph Hellwigfcafb712009-02-09 08:47:34 +01001382#endif
Nathan Scotta50cd262006-03-14 14:06:18 +11001383 sb->s_op = &xfs_super_operations;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384
Dave Chinnerdae5cd82018-05-10 21:50:23 -07001385 /*
1386 * Delay mount work if the debug hook is set. This is debug
1387 * instrumention to coordinate simulation of xfs mount failures with
1388 * VFS superblock operations
1389 */
1390 if (xfs_globals.mount_delay) {
1391 xfs_notice(mp, "Delaying mount for %d seconds.",
1392 xfs_globals.mount_delay);
1393 msleep(xfs_globals.mount_delay * 1000);
1394 }
1395
Ian Kent73e5fff2019-11-04 13:58:46 -08001396 if (fc->sb_flags & SB_SILENT)
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001397 flags |= XFS_MFSI_QUIET;
1398
Christoph Hellwig9d565ff2008-10-30 17:53:24 +11001399 error = xfs_open_devices(mp);
Christoph Hellwig19f354d2008-05-20 11:31:13 +10001400 if (error)
Ian Kente1d3d212019-11-04 13:58:40 -08001401 goto out_free_names;
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001402
Dave Chinner24513372014-06-25 14:58:08 +10001403 error = xfs_init_mount_workqueues(mp);
Christoph Hellwig61ba35d2010-09-30 02:25:54 +00001404 if (error)
1405 goto out_close_devices;
Christoph Hellwigc962fb72008-05-20 15:10:52 +10001406
Dave Chinner5681ca42015-02-23 21:22:31 +11001407 error = xfs_init_percpu_counters(mp);
Christoph Hellwigaa6bf012012-02-29 09:53:48 +00001408 if (error)
1409 goto out_destroy_workqueues;
1410
Bill O'Donnell225e4632015-10-12 18:21:19 +11001411 /* Allocate stats memory before we do operations that might use it */
1412 mp->m_stats.xs_stats = alloc_percpu(struct xfsstats);
1413 if (!mp->m_stats.xs_stats) {
Dan Carpenterf9d460b2015-10-19 08:42:47 +11001414 error = -ENOMEM;
Bill O'Donnell225e4632015-10-12 18:21:19 +11001415 goto out_destroy_counters;
1416 }
1417
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001418 error = xfs_readsb(mp, flags);
1419 if (error)
Bill O'Donnell225e4632015-10-12 18:21:19 +11001420 goto out_free_stats;
Christoph Hellwig9d565ff2008-10-30 17:53:24 +11001421
1422 error = xfs_finish_flags(mp);
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001423 if (error)
Christoph Hellwigeffa2ed2008-05-20 15:11:05 +10001424 goto out_free_sb;
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001425
Christoph Hellwige34b5622008-05-20 15:10:36 +10001426 error = xfs_setup_devices(mp);
Christoph Hellwig19f354d2008-05-20 11:31:13 +10001427 if (error)
Christoph Hellwigeffa2ed2008-05-20 15:11:05 +10001428 goto out_free_sb;
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001429
Darrick J. Wongb96cb832020-09-10 10:57:17 -07001430 /* V4 support is undergoing deprecation. */
1431 if (!xfs_sb_version_hascrc(&mp->m_sb)) {
1432#ifdef CONFIG_XFS_SUPPORT_V4
1433 xfs_warn_once(mp,
1434 "Deprecated V4 format (crc=0) will not be supported after September 2030.");
1435#else
1436 xfs_warn(mp,
1437 "Deprecated V4 format (crc=0) not supported by kernel.");
1438 error = -EINVAL;
1439 goto out_free_sb;
1440#endif
1441 }
1442
Darrick J. Wong80c720b2020-11-24 11:45:55 -08001443 /* Filesystem claims it needs repair, so refuse the mount. */
1444 if (xfs_sb_version_needsrepair(&mp->m_sb)) {
1445 xfs_warn(mp, "Filesystem needs repair. Please run xfs_repair.");
1446 error = -EFSCORRUPTED;
1447 goto out_free_sb;
1448 }
1449
Darrick J. Wong932befe2020-01-02 13:20:13 -08001450 /*
Darrick J. Wong3945ae02020-11-24 11:45:54 -08001451 * Don't touch the filesystem if a user tool thinks it owns the primary
1452 * superblock. mkfs doesn't clear the flag from secondary supers, so
1453 * we don't check them at all.
1454 */
1455 if (mp->m_sb.sb_inprogress) {
1456 xfs_warn(mp, "Offline file system operation in progress!");
1457 error = -EFSCORRUPTED;
1458 goto out_free_sb;
1459 }
1460
1461 /*
1462 * Until this is fixed only page-sized or smaller data blocks work.
1463 */
1464 if (mp->m_sb.sb_blocksize > PAGE_SIZE) {
1465 xfs_warn(mp,
1466 "File system with blocksize %d bytes. "
1467 "Only pagesize (%ld) or less will currently work.",
1468 mp->m_sb.sb_blocksize, PAGE_SIZE);
1469 error = -ENOSYS;
1470 goto out_free_sb;
1471 }
1472
1473 /* Ensure this filesystem fits in the page cache limits */
1474 if (xfs_sb_validate_fsb_count(&mp->m_sb, mp->m_sb.sb_dblocks) ||
1475 xfs_sb_validate_fsb_count(&mp->m_sb, mp->m_sb.sb_rblocks)) {
1476 xfs_warn(mp,
1477 "file system too large to be mounted on this system.");
1478 error = -EFBIG;
1479 goto out_free_sb;
1480 }
1481
1482 /*
Darrick J. Wong932befe2020-01-02 13:20:13 -08001483 * XFS block mappings use 54 bits to store the logical block offset.
1484 * This should suffice to handle the maximum file size that the VFS
1485 * supports (currently 2^63 bytes on 64-bit and ULONG_MAX << PAGE_SHIFT
1486 * bytes on 32-bit), but as XFS and VFS have gotten the s_maxbytes
1487 * calculation wrong on 32-bit kernels in the past, we'll add a WARN_ON
1488 * to check this assertion.
1489 *
1490 * Avoid integer overflow by comparing the maximum bmbt offset to the
1491 * maximum pagecache offset in units of fs blocks.
1492 */
Darrick J. Wong33005fd2020-12-04 13:28:35 -08001493 if (!xfs_verify_fileoff(mp, XFS_B_TO_FSBT(mp, MAX_LFS_FILESIZE))) {
Darrick J. Wong932befe2020-01-02 13:20:13 -08001494 xfs_warn(mp,
1495"MAX_LFS_FILESIZE block offset (%llu) exceeds extent map maximum (%llu)!",
1496 XFS_B_TO_FSBT(mp, MAX_LFS_FILESIZE),
1497 XFS_MAX_FILEOFF);
1498 error = -EINVAL;
1499 goto out_free_sb;
1500 }
1501
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001502 error = xfs_filestream_mount(mp);
1503 if (error)
Christoph Hellwigeffa2ed2008-05-20 15:11:05 +10001504 goto out_free_sb;
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001505
Dave Chinner704b2902011-03-26 09:14:57 +11001506 /*
1507 * we must configure the block size in the superblock before we run the
1508 * full mount process as the mount process can lookup and cache inodes.
Dave Chinner704b2902011-03-26 09:14:57 +11001509 */
Adam Borowskidddde682018-10-18 17:20:19 +11001510 sb->s_magic = XFS_SUPER_MAGIC;
Christoph Hellwig4ca488e2007-10-11 18:09:40 +10001511 sb->s_blocksize = mp->m_sb.sb_blocksize;
1512 sb->s_blocksize_bits = ffs(sb->s_blocksize) - 1;
Darrick J. Wong932befe2020-01-02 13:20:13 -08001513 sb->s_maxbytes = MAX_LFS_FILESIZE;
Al Viro8de52772012-02-06 12:45:27 -05001514 sb->s_max_links = XFS_MAXLINK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515 sb->s_time_gran = 1;
Darrick J. Wongf93e54362020-08-17 09:59:07 -07001516 if (xfs_sb_version_hasbigtime(&mp->m_sb)) {
1517 sb->s_time_min = xfs_bigtime_to_unix(XFS_BIGTIME_TIME_MIN);
1518 sb->s_time_max = xfs_bigtime_to_unix(XFS_BIGTIME_TIME_MAX);
1519 } else {
1520 sb->s_time_min = XFS_LEGACY_TIME_MIN;
1521 sb->s_time_max = XFS_LEGACY_TIME_MAX;
1522 }
Darrick J. Wong06dbf822020-08-24 11:58:01 -07001523 trace_xfs_inode_timestamp_range(mp, sb->s_time_min, sb->s_time_max);
Christoph Hellwigadfb5fb2019-06-28 19:30:22 -07001524 sb->s_iflags |= SB_I_CGROUPWB;
1525
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526 set_posix_acl_flag(sb);
1527
Dave Chinnerdc037ad2013-06-27 16:04:59 +10001528 /* version 5 superblocks support inode version counters. */
1529 if (XFS_SB_VERSION_NUM(&mp->m_sb) == XFS_SB_VERSION_5)
Matthew Garrett357fdad2017-10-18 13:56:26 -07001530 sb->s_flags |= SB_I_VERSION;
Dave Chinnerdc037ad2013-06-27 16:04:59 +10001531
Darrick J. Wongf93e54362020-08-17 09:59:07 -07001532 if (xfs_sb_version_hasbigtime(&mp->m_sb))
1533 xfs_warn(mp,
1534 "EXPERIMENTAL big timestamp feature in use. Use at your own risk!");
1535
Ira Weiny606723d2020-05-04 09:02:41 -07001536 if (mp->m_flags & XFS_MOUNT_DAX_ALWAYS) {
Dave Jiang80660f22018-05-30 13:03:46 -07001537 bool rtdev_is_dax = false, datadev_is_dax;
Darrick J. Wongba23cba2018-05-30 13:03:45 -07001538
Dave Chinnercbe4dab2015-06-04 09:19:18 +10001539 xfs_warn(mp,
Toshi Kani1e937cd2016-05-10 10:23:56 -06001540 "DAX enabled. Warning: EXPERIMENTAL, use at your own risk");
1541
Dave Jiang80660f22018-05-30 13:03:46 -07001542 datadev_is_dax = bdev_dax_supported(mp->m_ddev_targp->bt_bdev,
1543 sb->s_blocksize);
Darrick J. Wongba23cba2018-05-30 13:03:45 -07001544 if (mp->m_rtdev_targp)
Dave Jiang80660f22018-05-30 13:03:46 -07001545 rtdev_is_dax = bdev_dax_supported(
1546 mp->m_rtdev_targp->bt_bdev, sb->s_blocksize);
1547 if (!rtdev_is_dax && !datadev_is_dax) {
Dave Chinnercbe4dab2015-06-04 09:19:18 +10001548 xfs_alert(mp,
Toshi Kani1e937cd2016-05-10 10:23:56 -06001549 "DAX unsupported by block device. Turning off DAX.");
Ira Weiny8d6c3442020-05-04 09:02:42 -07001550 xfs_mount_set_dax_mode(mp, XFS_DAX_NEVER);
Dave Chinnercbe4dab2015-06-04 09:19:18 +10001551 }
Darrick J. Wongb6e03c12018-01-31 14:21:56 -08001552 if (xfs_sb_version_hasreflink(&mp->m_sb)) {
Darrick J. Wonge54b5bf2016-10-03 09:11:52 -07001553 xfs_alert(mp,
Christoph Hellwig1e369b02018-01-08 13:30:08 -08001554 "DAX and reflink cannot be used together!");
Darrick J. Wongb6e03c12018-01-31 14:21:56 -08001555 error = -EINVAL;
1556 goto out_filestream_unmount;
1557 }
Dave Chinnercbe4dab2015-06-04 09:19:18 +10001558 }
1559
Kenjiro Nakayama1e6fa682017-09-18 12:03:56 -07001560 if (mp->m_flags & XFS_MOUNT_DISCARD) {
1561 struct request_queue *q = bdev_get_queue(sb->s_bdev);
1562
1563 if (!blk_queue_discard(q)) {
1564 xfs_warn(mp, "mounting with \"discard\" option, but "
1565 "the device does not support discard");
1566 mp->m_flags &= ~XFS_MOUNT_DISCARD;
1567 }
1568 }
1569
Christoph Hellwig66ae56a2019-02-18 09:38:49 -08001570 if (xfs_sb_version_hasreflink(&mp->m_sb)) {
1571 if (mp->m_sb.sb_rblocks) {
1572 xfs_alert(mp,
Darrick J. Wongc14632d2018-01-31 16:38:18 -08001573 "reflink not compatible with realtime device!");
Christoph Hellwig66ae56a2019-02-18 09:38:49 -08001574 error = -EINVAL;
1575 goto out_filestream_unmount;
1576 }
1577
1578 if (xfs_globals.always_cow) {
1579 xfs_info(mp, "using DEBUG-only always_cow mode.");
1580 mp->m_always_cow = true;
1581 }
Darrick J. Wongc14632d2018-01-31 16:38:18 -08001582 }
1583
Darrick J. Wong76883f72018-01-31 09:47:25 -08001584 if (xfs_sb_version_hasrmapbt(&mp->m_sb) && mp->m_sb.sb_rblocks) {
Darrick J. Wong1c0607a2016-08-03 12:20:57 +10001585 xfs_alert(mp,
Darrick J. Wong76883f72018-01-31 09:47:25 -08001586 "reverse mapping btree not compatible with realtime device!");
1587 error = -EINVAL;
1588 goto out_filestream_unmount;
Darrick J. Wong738f57c2016-08-26 15:59:19 +10001589 }
Darrick J. Wong1c0607a2016-08-03 12:20:57 +10001590
Darrick J. Wong2a399462020-08-17 09:58:01 -07001591 if (xfs_sb_version_hasinobtcounts(&mp->m_sb))
1592 xfs_warn(mp,
1593 "EXPERIMENTAL inode btree counters feature in use. Use at your own risk!");
1594
Dave Chinner8a00ebe2012-04-13 12:10:44 +00001595 error = xfs_mountfs(mp);
Christoph Hellwig2bcf6e92011-07-13 13:43:48 +02001596 if (error)
Dave Chinner7e185302012-10-08 21:56:00 +11001597 goto out_filestream_unmount;
Dave Chinner704b2902011-03-26 09:14:57 +11001598
David Chinner01651642008-08-13 15:45:15 +10001599 root = igrab(VFS_I(mp->m_rootip));
Christoph Hellwigf3dcc132008-03-27 18:00:54 +11001600 if (!root) {
Dave Chinner24513372014-06-25 14:58:08 +10001601 error = -ENOENT;
Dave Chinner8a00ebe2012-04-13 12:10:44 +00001602 goto out_unmount;
Christoph Hellwigcbc89dc2008-02-05 12:14:01 +11001603 }
Al Viro48fde702012-01-08 22:15:13 -05001604 sb->s_root = d_make_root(root);
Christoph Hellwigf3dcc132008-03-27 18:00:54 +11001605 if (!sb->s_root) {
Dave Chinner24513372014-06-25 14:58:08 +10001606 error = -ENOMEM;
Dave Chinner8a00ebe2012-04-13 12:10:44 +00001607 goto out_unmount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608 }
Christoph Hellwig74394492007-08-30 17:21:22 +10001609
Dave Chinner7e185302012-10-08 21:56:00 +11001610 return 0;
1611
1612 out_filestream_unmount:
Christoph Hellwig120226c2008-05-20 15:11:11 +10001613 xfs_filestream_unmount(mp);
Christoph Hellwigeffa2ed2008-05-20 15:11:05 +10001614 out_free_sb:
1615 xfs_freesb(mp);
Bill O'Donnell225e4632015-10-12 18:21:19 +11001616 out_free_stats:
1617 free_percpu(mp->m_stats.xs_stats);
Christoph Hellwig9d565ff2008-10-30 17:53:24 +11001618 out_destroy_counters:
Dave Chinner5681ca42015-02-23 21:22:31 +11001619 xfs_destroy_percpu_counters(mp);
Bill O'Donnell225e4632015-10-12 18:21:19 +11001620 out_destroy_workqueues:
Christoph Hellwigaa6bf012012-02-29 09:53:48 +00001621 xfs_destroy_mount_workqueues(mp);
Christoph Hellwig61ba35d2010-09-30 02:25:54 +00001622 out_close_devices:
Christoph Hellwig19f354d2008-05-20 11:31:13 +10001623 xfs_close_devices(mp);
Ian Kente1d3d212019-11-04 13:58:40 -08001624 out_free_names:
Dave Chinnerc9fbd7b2018-05-10 21:50:23 -07001625 sb->s_fs_info = NULL;
Ian Kenta943f372019-11-04 13:58:42 -08001626 xfs_mount_free(mp);
Dave Chinner24513372014-06-25 14:58:08 +10001627 return error;
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001628
Christoph Hellwig2bcf6e92011-07-13 13:43:48 +02001629 out_unmount:
Christoph Hellwige48ad3162008-05-20 11:30:52 +10001630 xfs_filestream_unmount(mp);
Christoph Hellwig19f354d2008-05-20 11:31:13 +10001631 xfs_unmountfs(mp);
Christoph Hellwig62033002008-08-13 16:50:21 +10001632 goto out_free_sb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633}
1634
Ian Kent73e5fff2019-11-04 13:58:46 -08001635static int
Darrick J. Wong1e5c39d2020-12-04 15:59:39 -08001636xfs_fs_get_tree(
Ian Kent73e5fff2019-11-04 13:58:46 -08001637 struct fs_context *fc)
1638{
Darrick J. Wong1e5c39d2020-12-04 15:59:39 -08001639 return get_tree_bdev(fc, xfs_fs_fill_super);
Ian Kent73e5fff2019-11-04 13:58:46 -08001640}
1641
Ian Kent63cd1e92019-11-04 13:58:47 -08001642static int
1643xfs_remount_rw(
1644 struct xfs_mount *mp)
1645{
1646 struct xfs_sb *sbp = &mp->m_sb;
1647 int error;
1648
1649 if (mp->m_flags & XFS_MOUNT_NORECOVERY) {
1650 xfs_warn(mp,
1651 "ro->rw transition prohibited on norecovery mount");
1652 return -EINVAL;
1653 }
1654
1655 if (XFS_SB_VERSION_NUM(sbp) == XFS_SB_VERSION_5 &&
1656 xfs_sb_has_ro_compat_feature(sbp, XFS_SB_FEAT_RO_COMPAT_UNKNOWN)) {
1657 xfs_warn(mp,
1658 "ro->rw transition prohibited on unknown (0x%x) ro-compat filesystem",
1659 (sbp->sb_features_ro_compat &
1660 XFS_SB_FEAT_RO_COMPAT_UNKNOWN));
1661 return -EINVAL;
1662 }
1663
1664 mp->m_flags &= ~XFS_MOUNT_RDONLY;
1665
1666 /*
1667 * If this is the first remount to writeable state we might have some
1668 * superblock changes to update.
1669 */
1670 if (mp->m_update_sb) {
1671 error = xfs_sync_sb(mp, false);
1672 if (error) {
1673 xfs_warn(mp, "failed to write sb changes");
1674 return error;
1675 }
1676 mp->m_update_sb = false;
1677 }
1678
1679 /*
1680 * Fill out the reserve pool if it is empty. Use the stashed value if
1681 * it is non-zero, otherwise go with the default.
1682 */
1683 xfs_restore_resvblks(mp);
1684 xfs_log_work_queue(mp);
1685
1686 /* Recover any CoW blocks that never got remapped. */
1687 error = xfs_reflink_recover_cow(mp);
1688 if (error) {
1689 xfs_err(mp,
1690 "Error %d recovering leftover CoW allocations.", error);
Dan Carpenter7f6bcf72019-11-08 08:06:36 -08001691 xfs_force_shutdown(mp, SHUTDOWN_CORRUPT_INCORE);
Ian Kent63cd1e92019-11-04 13:58:47 -08001692 return error;
1693 }
Darrick J. Wongc9a65262021-01-22 16:48:44 -08001694 xfs_blockgc_start(mp);
Ian Kent63cd1e92019-11-04 13:58:47 -08001695
1696 /* Create the per-AG metadata reservation pool .*/
1697 error = xfs_fs_reserve_ag_blocks(mp);
1698 if (error && error != -ENOSPC)
1699 return error;
1700
1701 return 0;
1702}
1703
1704static int
1705xfs_remount_ro(
1706 struct xfs_mount *mp)
1707{
1708 int error;
1709
1710 /*
1711 * Cancel background eofb scanning so it cannot race with the final
1712 * log force+buftarg wait and deadlock the remount.
1713 */
Darrick J. Wongc9a65262021-01-22 16:48:44 -08001714 xfs_blockgc_stop(mp);
Ian Kent63cd1e92019-11-04 13:58:47 -08001715
1716 /* Get rid of any leftover CoW reservations... */
Darrick J. Wongb943c0c2021-01-22 16:48:40 -08001717 error = xfs_blockgc_free_space(mp, NULL);
Ian Kent63cd1e92019-11-04 13:58:47 -08001718 if (error) {
1719 xfs_force_shutdown(mp, SHUTDOWN_CORRUPT_INCORE);
1720 return error;
1721 }
1722
1723 /* Free the per-AG metadata reservation pool. */
1724 error = xfs_fs_unreserve_ag_blocks(mp);
1725 if (error) {
1726 xfs_force_shutdown(mp, SHUTDOWN_CORRUPT_INCORE);
1727 return error;
1728 }
1729
1730 /*
1731 * Before we sync the metadata, we need to free up the reserve block
1732 * pool so that the used block count in the superblock on disk is
1733 * correct at the end of the remount. Stash the current* reserve pool
1734 * size so that if we get remounted rw, we can return it to the same
1735 * size.
1736 */
1737 xfs_save_resvblks(mp);
1738
Brian Fosterea2064d2021-01-22 16:48:24 -08001739 xfs_log_clean(mp);
Ian Kent63cd1e92019-11-04 13:58:47 -08001740 mp->m_flags |= XFS_MOUNT_RDONLY;
1741
1742 return 0;
1743}
1744
1745/*
1746 * Logically we would return an error here to prevent users from believing
1747 * they might have changed mount options using remount which can't be changed.
1748 *
1749 * But unfortunately mount(8) adds all options from mtab and fstab to the mount
1750 * arguments in some cases so we can't blindly reject options, but have to
1751 * check for each specified option if it actually differs from the currently
1752 * set option and only reject it if that's the case.
1753 *
1754 * Until that is implemented we return success for every remount request, and
1755 * silently ignore all options that we can't actually change.
1756 */
1757static int
Darrick J. Wong1e5c39d2020-12-04 15:59:39 -08001758xfs_fs_reconfigure(
Ian Kent63cd1e92019-11-04 13:58:47 -08001759 struct fs_context *fc)
1760{
1761 struct xfs_mount *mp = XFS_M(fc->root->d_sb);
1762 struct xfs_mount *new_mp = fc->s_fs_info;
1763 xfs_sb_t *sbp = &mp->m_sb;
1764 int flags = fc->sb_flags;
1765 int error;
1766
Eric Sandeen4750a172020-07-15 08:30:37 -07001767 /* version 5 superblocks always support version counters. */
1768 if (XFS_SB_VERSION_NUM(&mp->m_sb) == XFS_SB_VERSION_5)
1769 fc->sb_flags |= SB_I_VERSION;
1770
Darrick J. Wong1e5c39d2020-12-04 15:59:39 -08001771 error = xfs_fs_validate_params(new_mp);
Ian Kent63cd1e92019-11-04 13:58:47 -08001772 if (error)
1773 return error;
1774
1775 sync_filesystem(mp->m_super);
1776
1777 /* inode32 -> inode64 */
1778 if ((mp->m_flags & XFS_MOUNT_SMALL_INUMS) &&
1779 !(new_mp->m_flags & XFS_MOUNT_SMALL_INUMS)) {
1780 mp->m_flags &= ~XFS_MOUNT_SMALL_INUMS;
1781 mp->m_maxagi = xfs_set_inode_alloc(mp, sbp->sb_agcount);
1782 }
1783
1784 /* inode64 -> inode32 */
1785 if (!(mp->m_flags & XFS_MOUNT_SMALL_INUMS) &&
1786 (new_mp->m_flags & XFS_MOUNT_SMALL_INUMS)) {
1787 mp->m_flags |= XFS_MOUNT_SMALL_INUMS;
1788 mp->m_maxagi = xfs_set_inode_alloc(mp, sbp->sb_agcount);
1789 }
1790
1791 /* ro -> rw */
1792 if ((mp->m_flags & XFS_MOUNT_RDONLY) && !(flags & SB_RDONLY)) {
1793 error = xfs_remount_rw(mp);
1794 if (error)
1795 return error;
1796 }
1797
1798 /* rw -> ro */
1799 if (!(mp->m_flags & XFS_MOUNT_RDONLY) && (flags & SB_RDONLY)) {
1800 error = xfs_remount_ro(mp);
1801 if (error)
1802 return error;
1803 }
1804
1805 return 0;
1806}
1807
Darrick J. Wong1e5c39d2020-12-04 15:59:39 -08001808static void xfs_fs_free(
Ian Kent73e5fff2019-11-04 13:58:46 -08001809 struct fs_context *fc)
1810{
1811 struct xfs_mount *mp = fc->s_fs_info;
1812
1813 /*
1814 * mp is stored in the fs_context when it is initialized.
1815 * mp is transferred to the superblock on a successful mount,
1816 * but if an error occurs before the transfer we have to free
1817 * it here.
1818 */
1819 if (mp)
1820 xfs_mount_free(mp);
1821}
1822
1823static const struct fs_context_operations xfs_context_ops = {
Darrick J. Wong1e5c39d2020-12-04 15:59:39 -08001824 .parse_param = xfs_fs_parse_param,
1825 .get_tree = xfs_fs_get_tree,
1826 .reconfigure = xfs_fs_reconfigure,
1827 .free = xfs_fs_free,
Ian Kent73e5fff2019-11-04 13:58:46 -08001828};
1829
1830static int xfs_init_fs_context(
1831 struct fs_context *fc)
1832{
1833 struct xfs_mount *mp;
1834
Ian Kent50f83002019-11-04 13:58:48 -08001835 mp = kmem_alloc(sizeof(struct xfs_mount), KM_ZERO);
Ian Kent73e5fff2019-11-04 13:58:46 -08001836 if (!mp)
1837 return -ENOMEM;
1838
Ian Kent50f83002019-11-04 13:58:48 -08001839 spin_lock_init(&mp->m_sb_lock);
1840 spin_lock_init(&mp->m_agirotor_lock);
1841 INIT_RADIX_TREE(&mp->m_perag_tree, GFP_ATOMIC);
1842 spin_lock_init(&mp->m_perag_lock);
1843 mutex_init(&mp->m_growlock);
Darrick J. Wongf0f7a672020-04-12 13:11:10 -07001844 INIT_WORK(&mp->m_flush_inodes_work, xfs_flush_inodes_worker);
Ian Kent50f83002019-11-04 13:58:48 -08001845 INIT_DELAYED_WORK(&mp->m_reclaim_work, xfs_reclaim_worker);
Ian Kent50f83002019-11-04 13:58:48 -08001846 mp->m_kobj.kobject.kset = xfs_kset;
1847 /*
1848 * We don't create the finobt per-ag space reservation until after log
1849 * recovery, so we must set this to true so that an ifree transaction
1850 * started during log recovery will not depend on space reservations
1851 * for finobt expansion.
1852 */
1853 mp->m_finobt_nores = true;
1854
Ian Kent73e5fff2019-11-04 13:58:46 -08001855 /*
1856 * These can be overridden by the mount option parsing.
1857 */
1858 mp->m_logbufs = -1;
1859 mp->m_logbsize = -1;
1860 mp->m_allocsize_log = 16; /* 64k */
1861
1862 /*
1863 * Copy binary VFS mount flags we are interested in.
1864 */
1865 if (fc->sb_flags & SB_RDONLY)
1866 mp->m_flags |= XFS_MOUNT_RDONLY;
1867 if (fc->sb_flags & SB_DIRSYNC)
1868 mp->m_flags |= XFS_MOUNT_DIRSYNC;
1869 if (fc->sb_flags & SB_SYNCHRONOUS)
1870 mp->m_flags |= XFS_MOUNT_WSYNC;
1871
1872 fc->s_fs_info = mp;
1873 fc->ops = &xfs_context_ops;
1874
1875 return 0;
1876}
1877
Andrew Morton5085b602007-02-20 13:57:47 -08001878static struct file_system_type xfs_fs_type = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879 .owner = THIS_MODULE,
1880 .name = "xfs",
Ian Kent73e5fff2019-11-04 13:58:46 -08001881 .init_fs_context = xfs_init_fs_context,
Al Virod7167b12019-09-07 07:23:15 -04001882 .parameters = xfs_fs_parameters,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883 .kill_sb = kill_block_super,
Christoph Hellwigf736d932021-01-21 14:19:58 +01001884 .fs_flags = FS_REQUIRES_DEV | FS_ALLOW_IDMAP,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885};
Eric W. Biederman7f78e032013-03-02 19:39:14 -08001886MODULE_ALIAS_FS("xfs");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001888STATIC int __init
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001889xfs_init_zones(void)
1890{
Carlos Maiolinob1231762019-11-14 12:43:03 -08001891 xfs_log_ticket_zone = kmem_cache_create("xfs_log_ticket",
1892 sizeof(struct xlog_ticket),
1893 0, 0, NULL);
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001894 if (!xfs_log_ticket_zone)
Christoph Hellwig598ecfb2019-10-17 13:12:15 -07001895 goto out;
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001896
Carlos Maiolinob1231762019-11-14 12:43:03 -08001897 xfs_bmap_free_item_zone = kmem_cache_create("xfs_bmap_free_item",
1898 sizeof(struct xfs_extent_free_item),
1899 0, 0, NULL);
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001900 if (!xfs_bmap_free_item_zone)
1901 goto out_destroy_log_ticket_zone;
David Chinnerbf904242008-10-30 17:36:14 +11001902
Carlos Maiolinob1231762019-11-14 12:43:03 -08001903 xfs_btree_cur_zone = kmem_cache_create("xfs_btree_cur",
1904 sizeof(struct xfs_btree_cur),
1905 0, 0, NULL);
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001906 if (!xfs_btree_cur_zone)
1907 goto out_destroy_bmap_free_item_zone;
1908
Carlos Maiolinob1231762019-11-14 12:43:03 -08001909 xfs_da_state_zone = kmem_cache_create("xfs_da_state",
1910 sizeof(struct xfs_da_state),
1911 0, 0, NULL);
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001912 if (!xfs_da_state_zone)
1913 goto out_destroy_btree_cur_zone;
1914
Carlos Maiolinob1231762019-11-14 12:43:03 -08001915 xfs_ifork_zone = kmem_cache_create("xfs_ifork",
1916 sizeof(struct xfs_ifork),
1917 0, 0, NULL);
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001918 if (!xfs_ifork_zone)
Dave Chinner1d9025e2012-06-22 18:50:14 +10001919 goto out_destroy_da_state_zone;
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001920
Carlos Maiolinob1231762019-11-14 12:43:03 -08001921 xfs_trans_zone = kmem_cache_create("xf_trans",
1922 sizeof(struct xfs_trans),
1923 0, 0, NULL);
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001924 if (!xfs_trans_zone)
1925 goto out_destroy_ifork_zone;
1926
Christoph Hellwige98c4142010-06-23 18:11:15 +10001927
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001928 /*
1929 * The size of the zone allocated buf log item is the maximum
1930 * size possible under XFS. This wastes a little bit of memory,
1931 * but it is much faster.
1932 */
Carlos Maiolinob1231762019-11-14 12:43:03 -08001933 xfs_buf_item_zone = kmem_cache_create("xfs_buf_item",
1934 sizeof(struct xfs_buf_log_item),
1935 0, 0, NULL);
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001936 if (!xfs_buf_item_zone)
Dave Chinnere6631f82018-05-09 07:49:37 -07001937 goto out_destroy_trans_zone;
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001938
Carlos Maiolinob1231762019-11-14 12:43:03 -08001939 xfs_efd_zone = kmem_cache_create("xfs_efd_item",
1940 (sizeof(struct xfs_efd_log_item) +
1941 (XFS_EFD_MAX_FAST_EXTENTS - 1) *
1942 sizeof(struct xfs_extent)),
1943 0, 0, NULL);
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001944 if (!xfs_efd_zone)
1945 goto out_destroy_buf_item_zone;
1946
Carlos Maiolinob1231762019-11-14 12:43:03 -08001947 xfs_efi_zone = kmem_cache_create("xfs_efi_item",
1948 (sizeof(struct xfs_efi_log_item) +
1949 (XFS_EFI_MAX_FAST_EXTENTS - 1) *
1950 sizeof(struct xfs_extent)),
1951 0, 0, NULL);
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001952 if (!xfs_efi_zone)
1953 goto out_destroy_efd_zone;
1954
Carlos Maiolinob1231762019-11-14 12:43:03 -08001955 xfs_inode_zone = kmem_cache_create("xfs_inode",
1956 sizeof(struct xfs_inode), 0,
1957 (SLAB_HWCACHE_ALIGN |
1958 SLAB_RECLAIM_ACCOUNT |
1959 SLAB_MEM_SPREAD | SLAB_ACCOUNT),
1960 xfs_fs_inode_init_once);
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001961 if (!xfs_inode_zone)
1962 goto out_destroy_efi_zone;
1963
Carlos Maiolinob1231762019-11-14 12:43:03 -08001964 xfs_ili_zone = kmem_cache_create("xfs_ili",
1965 sizeof(struct xfs_inode_log_item), 0,
Dave Chinnerd59eada2020-03-24 20:10:28 -07001966 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD,
1967 NULL);
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001968 if (!xfs_ili_zone)
1969 goto out_destroy_inode_zone;
Carlos Maiolinob1231762019-11-14 12:43:03 -08001970
1971 xfs_icreate_zone = kmem_cache_create("xfs_icr",
1972 sizeof(struct xfs_icreate_item),
1973 0, 0, NULL);
Dave Chinner3ebe7d22013-06-27 16:04:53 +10001974 if (!xfs_icreate_zone)
1975 goto out_destroy_ili_zone;
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001976
Carlos Maiolinob1231762019-11-14 12:43:03 -08001977 xfs_rud_zone = kmem_cache_create("xfs_rud_item",
1978 sizeof(struct xfs_rud_log_item),
1979 0, 0, NULL);
Darrick J. Wong5880f2d72016-08-03 12:04:45 +10001980 if (!xfs_rud_zone)
1981 goto out_destroy_icreate_zone;
1982
Carlos Maiolinob1231762019-11-14 12:43:03 -08001983 xfs_rui_zone = kmem_cache_create("xfs_rui_item",
Darrick J. Wongcd001582016-09-19 10:24:27 +10001984 xfs_rui_log_item_sizeof(XFS_RUI_MAX_FAST_EXTENTS),
Carlos Maiolinob1231762019-11-14 12:43:03 -08001985 0, 0, NULL);
Darrick J. Wong5880f2d72016-08-03 12:04:45 +10001986 if (!xfs_rui_zone)
1987 goto out_destroy_rud_zone;
1988
Carlos Maiolinob1231762019-11-14 12:43:03 -08001989 xfs_cud_zone = kmem_cache_create("xfs_cud_item",
1990 sizeof(struct xfs_cud_log_item),
1991 0, 0, NULL);
Darrick J. Wongbaf4bcac2016-10-03 09:11:20 -07001992 if (!xfs_cud_zone)
1993 goto out_destroy_rui_zone;
1994
Carlos Maiolinob1231762019-11-14 12:43:03 -08001995 xfs_cui_zone = kmem_cache_create("xfs_cui_item",
Darrick J. Wongbaf4bcac2016-10-03 09:11:20 -07001996 xfs_cui_log_item_sizeof(XFS_CUI_MAX_FAST_EXTENTS),
Carlos Maiolinob1231762019-11-14 12:43:03 -08001997 0, 0, NULL);
Darrick J. Wongbaf4bcac2016-10-03 09:11:20 -07001998 if (!xfs_cui_zone)
1999 goto out_destroy_cud_zone;
2000
Carlos Maiolinob1231762019-11-14 12:43:03 -08002001 xfs_bud_zone = kmem_cache_create("xfs_bud_item",
2002 sizeof(struct xfs_bud_log_item),
2003 0, 0, NULL);
Darrick J. Wong6413a012016-10-03 09:11:25 -07002004 if (!xfs_bud_zone)
2005 goto out_destroy_cui_zone;
2006
Carlos Maiolinob1231762019-11-14 12:43:03 -08002007 xfs_bui_zone = kmem_cache_create("xfs_bui_item",
Darrick J. Wong6413a012016-10-03 09:11:25 -07002008 xfs_bui_log_item_sizeof(XFS_BUI_MAX_FAST_EXTENTS),
Carlos Maiolinob1231762019-11-14 12:43:03 -08002009 0, 0, NULL);
Darrick J. Wong6413a012016-10-03 09:11:25 -07002010 if (!xfs_bui_zone)
2011 goto out_destroy_bud_zone;
2012
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10002013 return 0;
2014
Darrick J. Wong6413a012016-10-03 09:11:25 -07002015 out_destroy_bud_zone:
Carlos Maiolinoaaf54eb2019-11-14 12:43:04 -08002016 kmem_cache_destroy(xfs_bud_zone);
Darrick J. Wong6413a012016-10-03 09:11:25 -07002017 out_destroy_cui_zone:
Carlos Maiolinoaaf54eb2019-11-14 12:43:04 -08002018 kmem_cache_destroy(xfs_cui_zone);
Darrick J. Wongbaf4bcac2016-10-03 09:11:20 -07002019 out_destroy_cud_zone:
Carlos Maiolinoaaf54eb2019-11-14 12:43:04 -08002020 kmem_cache_destroy(xfs_cud_zone);
Darrick J. Wongbaf4bcac2016-10-03 09:11:20 -07002021 out_destroy_rui_zone:
Carlos Maiolinoaaf54eb2019-11-14 12:43:04 -08002022 kmem_cache_destroy(xfs_rui_zone);
Darrick J. Wong5880f2d72016-08-03 12:04:45 +10002023 out_destroy_rud_zone:
Carlos Maiolinoaaf54eb2019-11-14 12:43:04 -08002024 kmem_cache_destroy(xfs_rud_zone);
Darrick J. Wong5880f2d72016-08-03 12:04:45 +10002025 out_destroy_icreate_zone:
Carlos Maiolinoaaf54eb2019-11-14 12:43:04 -08002026 kmem_cache_destroy(xfs_icreate_zone);
Dave Chinner3ebe7d22013-06-27 16:04:53 +10002027 out_destroy_ili_zone:
Carlos Maiolinoaaf54eb2019-11-14 12:43:04 -08002028 kmem_cache_destroy(xfs_ili_zone);
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10002029 out_destroy_inode_zone:
Carlos Maiolinoaaf54eb2019-11-14 12:43:04 -08002030 kmem_cache_destroy(xfs_inode_zone);
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10002031 out_destroy_efi_zone:
Carlos Maiolinoaaf54eb2019-11-14 12:43:04 -08002032 kmem_cache_destroy(xfs_efi_zone);
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10002033 out_destroy_efd_zone:
Carlos Maiolinoaaf54eb2019-11-14 12:43:04 -08002034 kmem_cache_destroy(xfs_efd_zone);
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10002035 out_destroy_buf_item_zone:
Carlos Maiolinoaaf54eb2019-11-14 12:43:04 -08002036 kmem_cache_destroy(xfs_buf_item_zone);
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10002037 out_destroy_trans_zone:
Carlos Maiolinoaaf54eb2019-11-14 12:43:04 -08002038 kmem_cache_destroy(xfs_trans_zone);
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10002039 out_destroy_ifork_zone:
Carlos Maiolinoaaf54eb2019-11-14 12:43:04 -08002040 kmem_cache_destroy(xfs_ifork_zone);
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10002041 out_destroy_da_state_zone:
Carlos Maiolinoaaf54eb2019-11-14 12:43:04 -08002042 kmem_cache_destroy(xfs_da_state_zone);
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10002043 out_destroy_btree_cur_zone:
Carlos Maiolinoaaf54eb2019-11-14 12:43:04 -08002044 kmem_cache_destroy(xfs_btree_cur_zone);
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10002045 out_destroy_bmap_free_item_zone:
Carlos Maiolinoaaf54eb2019-11-14 12:43:04 -08002046 kmem_cache_destroy(xfs_bmap_free_item_zone);
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10002047 out_destroy_log_ticket_zone:
Carlos Maiolinoaaf54eb2019-11-14 12:43:04 -08002048 kmem_cache_destroy(xfs_log_ticket_zone);
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10002049 out:
2050 return -ENOMEM;
2051}
2052
2053STATIC void
2054xfs_destroy_zones(void)
2055{
Kirill A. Shutemov8c0a8532012-09-26 11:33:07 +10002056 /*
2057 * Make sure all delayed rcu free are flushed before we
2058 * destroy caches.
2059 */
2060 rcu_barrier();
Carlos Maiolinoaaf54eb2019-11-14 12:43:04 -08002061 kmem_cache_destroy(xfs_bui_zone);
2062 kmem_cache_destroy(xfs_bud_zone);
2063 kmem_cache_destroy(xfs_cui_zone);
2064 kmem_cache_destroy(xfs_cud_zone);
2065 kmem_cache_destroy(xfs_rui_zone);
2066 kmem_cache_destroy(xfs_rud_zone);
2067 kmem_cache_destroy(xfs_icreate_zone);
2068 kmem_cache_destroy(xfs_ili_zone);
2069 kmem_cache_destroy(xfs_inode_zone);
2070 kmem_cache_destroy(xfs_efi_zone);
2071 kmem_cache_destroy(xfs_efd_zone);
2072 kmem_cache_destroy(xfs_buf_item_zone);
2073 kmem_cache_destroy(xfs_trans_zone);
2074 kmem_cache_destroy(xfs_ifork_zone);
2075 kmem_cache_destroy(xfs_da_state_zone);
2076 kmem_cache_destroy(xfs_btree_cur_zone);
2077 kmem_cache_destroy(xfs_bmap_free_item_zone);
2078 kmem_cache_destroy(xfs_log_ticket_zone);
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10002079}
2080
2081STATIC int __init
Dave Chinner0bf6a5b2011-04-08 12:45:07 +10002082xfs_init_workqueues(void)
2083{
2084 /*
Dave Chinnerc999a222012-03-22 05:15:07 +00002085 * The allocation workqueue can be used in memory reclaim situations
2086 * (writepage path), and parallelism is only limited by the number of
2087 * AGs in all the filesystems mounted. Hence use the default large
2088 * max_active value for this workqueue.
2089 */
Brian Foster8018ec02014-09-09 11:44:46 +10002090 xfs_alloc_wq = alloc_workqueue("xfsalloc",
Darrick J. Wong05a302a2021-01-22 16:48:42 -08002091 XFS_WQFLAGS(WQ_MEM_RECLAIM | WQ_FREEZABLE), 0);
Dave Chinnerc999a222012-03-22 05:15:07 +00002092 if (!xfs_alloc_wq)
Dave Chinner58896082012-10-08 21:56:05 +11002093 return -ENOMEM;
Dave Chinnerc999a222012-03-22 05:15:07 +00002094
Darrick J. Wong05a302a2021-01-22 16:48:42 -08002095 xfs_discard_wq = alloc_workqueue("xfsdiscard", XFS_WQFLAGS(WQ_UNBOUND),
2096 0);
Christoph Hellwig4560e782017-02-07 14:07:58 -08002097 if (!xfs_discard_wq)
2098 goto out_free_alloc_wq;
2099
Dave Chinner0bf6a5b2011-04-08 12:45:07 +10002100 return 0;
Christoph Hellwig4560e782017-02-07 14:07:58 -08002101out_free_alloc_wq:
2102 destroy_workqueue(xfs_alloc_wq);
2103 return -ENOMEM;
Dave Chinner0bf6a5b2011-04-08 12:45:07 +10002104}
2105
Luck, Tony39411f82011-04-11 12:06:12 -07002106STATIC void
Dave Chinner0bf6a5b2011-04-08 12:45:07 +10002107xfs_destroy_workqueues(void)
2108{
Christoph Hellwig4560e782017-02-07 14:07:58 -08002109 destroy_workqueue(xfs_discard_wq);
Dave Chinnerc999a222012-03-22 05:15:07 +00002110 destroy_workqueue(xfs_alloc_wq);
Dave Chinner0bf6a5b2011-04-08 12:45:07 +10002111}
2112
2113STATIC int __init
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10002114init_xfs_fs(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002115{
2116 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117
Darrick J. Wong30cbc592016-03-09 08:15:14 +11002118 xfs_check_ondisk_structs();
2119
Christoph Hellwig65795912008-11-28 14:23:33 +11002120 printk(KERN_INFO XFS_VERSION_STRING " with "
2121 XFS_BUILD_OPTIONS " enabled\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002122
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10002123 xfs_dir_startup();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002124
Nathan Scott87582802006-03-14 13:18:19 +11002125 error = xfs_init_zones();
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10002126 if (error)
2127 goto out;
2128
Dave Chinner0bf6a5b2011-04-08 12:45:07 +10002129 error = xfs_init_workqueues();
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10002130 if (error)
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002131 goto out_destroy_zones;
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10002132
Dave Chinner0bf6a5b2011-04-08 12:45:07 +10002133 error = xfs_mru_cache_init();
2134 if (error)
2135 goto out_destroy_wq;
2136
Nathan Scottce8e9222006-01-11 15:39:08 +11002137 error = xfs_buf_init();
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10002138 if (error)
Christoph Hellwig1919add2014-04-23 07:11:51 +10002139 goto out_mru_cache_uninit;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002140
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10002141 error = xfs_init_procfs();
2142 if (error)
2143 goto out_buf_terminate;
2144
2145 error = xfs_sysctl_register();
2146 if (error)
2147 goto out_cleanup_procfs;
2148
Brian Foster3d871222014-07-15 07:41:37 +10002149 xfs_kset = kset_create_and_add("xfs", NULL, fs_kobj);
2150 if (!xfs_kset) {
2151 error = -ENOMEM;
Bill O'Donnellbb230c12015-10-12 05:15:45 +11002152 goto out_sysctl_unregister;
Brian Foster3d871222014-07-15 07:41:37 +10002153 }
2154
Bill O'Donnell80529c42015-10-12 05:19:45 +11002155 xfsstats.xs_kobj.kobject.kset = xfs_kset;
2156
2157 xfsstats.xs_stats = alloc_percpu(struct xfsstats);
2158 if (!xfsstats.xs_stats) {
2159 error = -ENOMEM;
2160 goto out_kset_unregister;
2161 }
2162
2163 error = xfs_sysfs_init(&xfsstats.xs_kobj, &xfs_stats_ktype, NULL,
Bill O'Donnellbb230c12015-10-12 05:15:45 +11002164 "stats");
2165 if (error)
Bill O'Donnell80529c42015-10-12 05:19:45 +11002166 goto out_free_stats;
Bill O'Donnellbb230c12015-10-12 05:15:45 +11002167
Brian Foster65b65732014-09-09 11:52:42 +10002168#ifdef DEBUG
2169 xfs_dbg_kobj.kobject.kset = xfs_kset;
2170 error = xfs_sysfs_init(&xfs_dbg_kobj, &xfs_dbg_ktype, NULL, "debug");
Christoph Hellwiga05931c2012-03-13 08:52:37 +00002171 if (error)
Bill O'Donnellbb230c12015-10-12 05:15:45 +11002172 goto out_remove_stats_kobj;
Brian Foster65b65732014-09-09 11:52:42 +10002173#endif
2174
2175 error = xfs_qm_init();
2176 if (error)
Bill O'Donnellbb230c12015-10-12 05:15:45 +11002177 goto out_remove_dbg_kobj;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178
2179 error = register_filesystem(&xfs_fs_type);
2180 if (error)
Christoph Hellwiga05931c2012-03-13 08:52:37 +00002181 goto out_qm_exit;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002182 return 0;
2183
Christoph Hellwiga05931c2012-03-13 08:52:37 +00002184 out_qm_exit:
2185 xfs_qm_exit();
Bill O'Donnellbb230c12015-10-12 05:15:45 +11002186 out_remove_dbg_kobj:
Brian Foster65b65732014-09-09 11:52:42 +10002187#ifdef DEBUG
2188 xfs_sysfs_del(&xfs_dbg_kobj);
Bill O'Donnellbb230c12015-10-12 05:15:45 +11002189 out_remove_stats_kobj:
Brian Foster65b65732014-09-09 11:52:42 +10002190#endif
Bill O'Donnell80529c42015-10-12 05:19:45 +11002191 xfs_sysfs_del(&xfsstats.xs_kobj);
2192 out_free_stats:
2193 free_percpu(xfsstats.xs_stats);
Bill O'Donnellbb230c12015-10-12 05:15:45 +11002194 out_kset_unregister:
Brian Foster3d871222014-07-15 07:41:37 +10002195 kset_unregister(xfs_kset);
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10002196 out_sysctl_unregister:
2197 xfs_sysctl_unregister();
2198 out_cleanup_procfs:
2199 xfs_cleanup_procfs();
2200 out_buf_terminate:
Nathan Scottce8e9222006-01-11 15:39:08 +11002201 xfs_buf_terminate();
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10002202 out_mru_cache_uninit:
2203 xfs_mru_cache_uninit();
Dave Chinner0bf6a5b2011-04-08 12:45:07 +10002204 out_destroy_wq:
2205 xfs_destroy_workqueues();
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10002206 out_destroy_zones:
Nathan Scott87582802006-03-14 13:18:19 +11002207 xfs_destroy_zones();
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10002208 out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002209 return error;
2210}
2211
2212STATIC void __exit
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10002213exit_xfs_fs(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002214{
Christoph Hellwiga05931c2012-03-13 08:52:37 +00002215 xfs_qm_exit();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002216 unregister_filesystem(&xfs_fs_type);
Brian Foster65b65732014-09-09 11:52:42 +10002217#ifdef DEBUG
2218 xfs_sysfs_del(&xfs_dbg_kobj);
2219#endif
Bill O'Donnell80529c42015-10-12 05:19:45 +11002220 xfs_sysfs_del(&xfsstats.xs_kobj);
2221 free_percpu(xfsstats.xs_stats);
Brian Foster3d871222014-07-15 07:41:37 +10002222 kset_unregister(xfs_kset);
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10002223 xfs_sysctl_unregister();
2224 xfs_cleanup_procfs();
Nathan Scottce8e9222006-01-11 15:39:08 +11002225 xfs_buf_terminate();
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10002226 xfs_mru_cache_uninit();
Dave Chinner0bf6a5b2011-04-08 12:45:07 +10002227 xfs_destroy_workqueues();
Nathan Scott87582802006-03-14 13:18:19 +11002228 xfs_destroy_zones();
Darrick J. Wongaf3b6382015-11-03 13:06:34 +11002229 xfs_uuid_table_free();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002230}
2231
2232module_init(init_xfs_fs);
2233module_exit(exit_xfs_fs);
2234
2235MODULE_AUTHOR("Silicon Graphics, Inc.");
2236MODULE_DESCRIPTION(XFS_VERSION_STRING " with " XFS_BUILD_OPTIONS " enabled");
2237MODULE_LICENSE("GPL");