blob: e3e229e52512adafac15b804f873eacd432b534d [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"
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
Adam Borowskidddde682018-10-18 17:20:19 +110039#include <linux/magic.h>
Ian Kent73e5fff2019-11-04 13:58:46 -080040#include <linux/fs_context.h>
41#include <linux/fs_parser.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
Alexey Dobriyanb87221d2009-09-21 17:01:09 -070043static const struct super_operations xfs_super_operations;
Brian Foster65b65732014-09-09 11:52:42 +100044
Dave Chinnere3aed1a2014-09-29 10:46:08 +100045static struct kset *xfs_kset; /* top-level xfs sysfs dir */
Brian Foster65b65732014-09-09 11:52:42 +100046#ifdef DEBUG
47static struct xfs_kobj xfs_dbg_kobj; /* global debug sysfs attrs */
48#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
Ira Weiny8d6c3442020-05-04 09:02:42 -070050enum xfs_dax_mode {
51 XFS_DAX_INODE = 0,
52 XFS_DAX_ALWAYS = 1,
53 XFS_DAX_NEVER = 2,
54};
55
56static void
57xfs_mount_set_dax_mode(
58 struct xfs_mount *mp,
59 enum xfs_dax_mode mode)
60{
61 switch (mode) {
62 case XFS_DAX_INODE:
63 mp->m_flags &= ~(XFS_MOUNT_DAX_ALWAYS | XFS_MOUNT_DAX_NEVER);
64 break;
65 case XFS_DAX_ALWAYS:
66 mp->m_flags |= XFS_MOUNT_DAX_ALWAYS;
67 mp->m_flags &= ~XFS_MOUNT_DAX_NEVER;
68 break;
69 case XFS_DAX_NEVER:
70 mp->m_flags |= XFS_MOUNT_DAX_NEVER;
71 mp->m_flags &= ~XFS_MOUNT_DAX_ALWAYS;
72 break;
73 }
74}
75
76static const struct constant_table dax_param_enums[] = {
77 {"inode", XFS_DAX_INODE },
78 {"always", XFS_DAX_ALWAYS },
79 {"never", XFS_DAX_NEVER },
80 {}
81};
82
Christoph Hellwig62a877e2008-07-18 17:12:36 +100083/*
84 * Table driven mount option parser.
Christoph Hellwig62a877e2008-07-18 17:12:36 +100085 */
86enum {
Ian Kent8da57c52019-10-28 08:41:42 -070087 Opt_logbufs, Opt_logbsize, Opt_logdev, Opt_rtdev,
Eric Sandeen2e74af02016-03-02 09:55:38 +110088 Opt_wsync, Opt_noalign, Opt_swalloc, Opt_sunit, Opt_swidth, Opt_nouuid,
Christoph Hellwig94079282019-04-28 08:32:52 -070089 Opt_grpid, Opt_nogrpid, Opt_bsdgroups, Opt_sysvgroups,
Eric Sandeen1c02d502018-07-26 09:11:27 -070090 Opt_allocsize, Opt_norecovery, Opt_inode64, Opt_inode32, Opt_ikeep,
91 Opt_noikeep, Opt_largeio, Opt_nolargeio, Opt_attr2, Opt_noattr2,
92 Opt_filestreams, Opt_quota, Opt_noquota, Opt_usrquota, Opt_grpquota,
93 Opt_prjquota, Opt_uquota, Opt_gquota, Opt_pquota,
Eric Sandeen2e74af02016-03-02 09:55:38 +110094 Opt_uqnoenforce, Opt_gqnoenforce, Opt_pqnoenforce, Opt_qnoenforce,
Ira Weiny8d6c3442020-05-04 09:02:42 -070095 Opt_discard, Opt_nodiscard, Opt_dax, Opt_dax_enum,
Christoph Hellwig62a877e2008-07-18 17:12:36 +100096};
97
Al Virod7167b12019-09-07 07:23:15 -040098static const struct fs_parameter_spec xfs_fs_parameters[] = {
Ian Kent73e5fff2019-11-04 13:58:46 -080099 fsparam_u32("logbufs", Opt_logbufs),
100 fsparam_string("logbsize", Opt_logbsize),
101 fsparam_string("logdev", Opt_logdev),
102 fsparam_string("rtdev", Opt_rtdev),
103 fsparam_flag("wsync", Opt_wsync),
104 fsparam_flag("noalign", Opt_noalign),
105 fsparam_flag("swalloc", Opt_swalloc),
106 fsparam_u32("sunit", Opt_sunit),
107 fsparam_u32("swidth", Opt_swidth),
108 fsparam_flag("nouuid", Opt_nouuid),
109 fsparam_flag("grpid", Opt_grpid),
110 fsparam_flag("nogrpid", Opt_nogrpid),
111 fsparam_flag("bsdgroups", Opt_bsdgroups),
112 fsparam_flag("sysvgroups", Opt_sysvgroups),
113 fsparam_string("allocsize", Opt_allocsize),
114 fsparam_flag("norecovery", Opt_norecovery),
115 fsparam_flag("inode64", Opt_inode64),
116 fsparam_flag("inode32", Opt_inode32),
117 fsparam_flag("ikeep", Opt_ikeep),
118 fsparam_flag("noikeep", Opt_noikeep),
119 fsparam_flag("largeio", Opt_largeio),
120 fsparam_flag("nolargeio", Opt_nolargeio),
121 fsparam_flag("attr2", Opt_attr2),
122 fsparam_flag("noattr2", Opt_noattr2),
123 fsparam_flag("filestreams", Opt_filestreams),
124 fsparam_flag("quota", Opt_quota),
125 fsparam_flag("noquota", Opt_noquota),
126 fsparam_flag("usrquota", Opt_usrquota),
127 fsparam_flag("grpquota", Opt_grpquota),
128 fsparam_flag("prjquota", Opt_prjquota),
129 fsparam_flag("uquota", Opt_uquota),
130 fsparam_flag("gquota", Opt_gquota),
131 fsparam_flag("pquota", Opt_pquota),
132 fsparam_flag("uqnoenforce", Opt_uqnoenforce),
133 fsparam_flag("gqnoenforce", Opt_gqnoenforce),
134 fsparam_flag("pqnoenforce", Opt_pqnoenforce),
135 fsparam_flag("qnoenforce", Opt_qnoenforce),
136 fsparam_flag("discard", Opt_discard),
137 fsparam_flag("nodiscard", Opt_nodiscard),
138 fsparam_flag("dax", Opt_dax),
Ira Weiny8d6c3442020-05-04 09:02:42 -0700139 fsparam_enum("dax", Opt_dax_enum, dax_param_enums),
Ian Kent73e5fff2019-11-04 13:58:46 -0800140 {}
Christoph Hellwig62a877e2008-07-18 17:12:36 +1000141};
142
David Chinnera67d7c52007-11-23 16:29:32 +1100143struct proc_xfs_info {
Dave Chinnercbe4dab2015-06-04 09:19:18 +1000144 uint64_t flag;
145 char *str;
David Chinnera67d7c52007-11-23 16:29:32 +1100146};
147
Christoph Hellwig21f55992019-10-28 08:41:47 -0700148static int
149xfs_fs_show_options(
150 struct seq_file *m,
151 struct dentry *root)
David Chinnera67d7c52007-11-23 16:29:32 +1100152{
153 static struct proc_xfs_info xfs_info_set[] = {
154 /* the few simple ones we can get from the mount struct */
Eric Sandeen2e74af02016-03-02 09:55:38 +1100155 { XFS_MOUNT_IKEEP, ",ikeep" },
156 { XFS_MOUNT_WSYNC, ",wsync" },
157 { XFS_MOUNT_NOALIGN, ",noalign" },
158 { XFS_MOUNT_SWALLOC, ",swalloc" },
159 { XFS_MOUNT_NOUUID, ",nouuid" },
160 { XFS_MOUNT_NORECOVERY, ",norecovery" },
161 { XFS_MOUNT_ATTR2, ",attr2" },
162 { XFS_MOUNT_FILESTREAMS, ",filestreams" },
163 { XFS_MOUNT_GRPID, ",grpid" },
164 { XFS_MOUNT_DISCARD, ",discard" },
Christoph Hellwig7c6b94b2019-10-28 08:41:46 -0700165 { XFS_MOUNT_LARGEIO, ",largeio" },
Ira Weiny8d6c3442020-05-04 09:02:42 -0700166 { XFS_MOUNT_DAX_ALWAYS, ",dax=always" },
167 { XFS_MOUNT_DAX_NEVER, ",dax=never" },
David Chinnera67d7c52007-11-23 16:29:32 +1100168 { 0, NULL }
169 };
Christoph Hellwig21f55992019-10-28 08:41:47 -0700170 struct xfs_mount *mp = XFS_M(root->d_sb);
David Chinnera67d7c52007-11-23 16:29:32 +1100171 struct proc_xfs_info *xfs_infop;
172
173 for (xfs_infop = xfs_info_set; xfs_infop->flag; xfs_infop++) {
174 if (mp->m_flags & xfs_infop->flag)
175 seq_puts(m, xfs_infop->str);
176 }
Christoph Hellwig1775c502019-10-28 08:41:47 -0700177
178 seq_printf(m, ",inode%d",
179 (mp->m_flags & XFS_MOUNT_SMALL_INUMS) ? 32 : 64);
David Chinnera67d7c52007-11-23 16:29:32 +1100180
Christoph Hellwig3274d002019-10-28 08:41:45 -0700181 if (mp->m_flags & XFS_MOUNT_ALLOCSIZE)
Eric Sandeen2e74af02016-03-02 09:55:38 +1100182 seq_printf(m, ",allocsize=%dk",
Christoph Hellwigaa58d442019-10-28 08:41:46 -0700183 (1 << mp->m_allocsize_log) >> 10);
David Chinnera67d7c52007-11-23 16:29:32 +1100184
185 if (mp->m_logbufs > 0)
Eric Sandeen2e74af02016-03-02 09:55:38 +1100186 seq_printf(m, ",logbufs=%d", mp->m_logbufs);
David Chinnera67d7c52007-11-23 16:29:32 +1100187 if (mp->m_logbsize > 0)
Eric Sandeen2e74af02016-03-02 09:55:38 +1100188 seq_printf(m, ",logbsize=%dk", mp->m_logbsize >> 10);
David Chinnera67d7c52007-11-23 16:29:32 +1100189
190 if (mp->m_logname)
Eric Sandeen2e74af02016-03-02 09:55:38 +1100191 seq_show_option(m, "logdev", mp->m_logname);
David Chinnera67d7c52007-11-23 16:29:32 +1100192 if (mp->m_rtname)
Eric Sandeen2e74af02016-03-02 09:55:38 +1100193 seq_show_option(m, "rtdev", mp->m_rtname);
David Chinnera67d7c52007-11-23 16:29:32 +1100194
195 if (mp->m_dalign > 0)
Eric Sandeen2e74af02016-03-02 09:55:38 +1100196 seq_printf(m, ",sunit=%d",
David Chinnera67d7c52007-11-23 16:29:32 +1100197 (int)XFS_FSB_TO_BB(mp, mp->m_dalign));
198 if (mp->m_swidth > 0)
Eric Sandeen2e74af02016-03-02 09:55:38 +1100199 seq_printf(m, ",swidth=%d",
David Chinnera67d7c52007-11-23 16:29:32 +1100200 (int)XFS_FSB_TO_BB(mp, mp->m_swidth));
201
202 if (mp->m_qflags & (XFS_UQUOTA_ACCT|XFS_UQUOTA_ENFD))
Eric Sandeen2e74af02016-03-02 09:55:38 +1100203 seq_puts(m, ",usrquota");
David Chinnera67d7c52007-11-23 16:29:32 +1100204 else if (mp->m_qflags & XFS_UQUOTA_ACCT)
Eric Sandeen2e74af02016-03-02 09:55:38 +1100205 seq_puts(m, ",uqnoenforce");
David Chinnera67d7c52007-11-23 16:29:32 +1100206
Alex Elder988abe42009-09-02 17:02:24 -0500207 if (mp->m_qflags & XFS_PQUOTA_ACCT) {
Chandra Seetharaman83e782e2013-06-27 17:25:10 -0500208 if (mp->m_qflags & XFS_PQUOTA_ENFD)
Eric Sandeen2e74af02016-03-02 09:55:38 +1100209 seq_puts(m, ",prjquota");
Alex Elder988abe42009-09-02 17:02:24 -0500210 else
Eric Sandeen2e74af02016-03-02 09:55:38 +1100211 seq_puts(m, ",pqnoenforce");
Chandra Seetharamand892d582013-07-19 17:36:02 -0500212 }
213 if (mp->m_qflags & XFS_GQUOTA_ACCT) {
Chandra Seetharaman83e782e2013-06-27 17:25:10 -0500214 if (mp->m_qflags & XFS_GQUOTA_ENFD)
Eric Sandeen2e74af02016-03-02 09:55:38 +1100215 seq_puts(m, ",grpquota");
Alex Elder988abe42009-09-02 17:02:24 -0500216 else
Eric Sandeen2e74af02016-03-02 09:55:38 +1100217 seq_puts(m, ",gqnoenforce");
Alex Elder988abe42009-09-02 17:02:24 -0500218 }
David Chinnera67d7c52007-11-23 16:29:32 +1100219
220 if (!(mp->m_qflags & XFS_ALL_QUOTA_ACCT))
Eric Sandeen2e74af02016-03-02 09:55:38 +1100221 seq_puts(m, ",noquota");
Christoph Hellwig21f55992019-10-28 08:41:47 -0700222
223 return 0;
David Chinnera67d7c52007-11-23 16:29:32 +1100224}
Eric Sandeen91083262019-05-01 20:26:30 -0700225
Eric Sandeen9de67c32014-07-24 20:51:54 +1000226/*
Eric Sandeen12c3f052016-03-02 09:58:09 +1100227 * Set parameters for inode allocation heuristics, taking into account
228 * filesystem size and inode32/inode64 mount options; i.e. specifically
229 * whether or not XFS_MOUNT_SMALL_INUMS is set.
230 *
231 * Inode allocation patterns are altered only if inode32 is requested
232 * (XFS_MOUNT_SMALL_INUMS), and the filesystem is sufficiently large.
233 * If altered, XFS_MOUNT_32BITINODES is set as well.
234 *
235 * An agcount independent of that in the mount structure is provided
236 * because in the growfs case, mp->m_sb.sb_agcount is not yet updated
237 * to the potentially higher ag count.
238 *
239 * Returns the maximum AG index which may contain inodes.
Eric Sandeen9de67c32014-07-24 20:51:54 +1000240 */
Carlos Maiolino2d2194f2012-09-20 10:32:38 -0300241xfs_agnumber_t
Eric Sandeen12c3f052016-03-02 09:58:09 +1100242xfs_set_inode_alloc(
243 struct xfs_mount *mp,
244 xfs_agnumber_t agcount)
Carlos Maiolino2d2194f2012-09-20 10:32:38 -0300245{
Eric Sandeen12c3f052016-03-02 09:58:09 +1100246 xfs_agnumber_t index;
Carlos Maiolino4056c1d2012-09-20 10:32:40 -0300247 xfs_agnumber_t maxagi = 0;
Carlos Maiolino2d2194f2012-09-20 10:32:38 -0300248 xfs_sb_t *sbp = &mp->m_sb;
249 xfs_agnumber_t max_metadata;
Eric Sandeen54aa61f2014-07-24 20:53:10 +1000250 xfs_agino_t agino;
251 xfs_ino_t ino;
Carlos Maiolino2d2194f2012-09-20 10:32:38 -0300252
Eric Sandeen12c3f052016-03-02 09:58:09 +1100253 /*
254 * Calculate how much should be reserved for inodes to meet
255 * the max inode percentage. Used only for inode32.
Carlos Maiolino2d2194f2012-09-20 10:32:38 -0300256 */
Darrick J. Wongef325952019-06-05 11:19:34 -0700257 if (M_IGEO(mp)->maxicount) {
Darrick J. Wongc8ce5402017-06-16 11:00:05 -0700258 uint64_t icount;
Carlos Maiolino2d2194f2012-09-20 10:32:38 -0300259
260 icount = sbp->sb_dblocks * sbp->sb_imax_pct;
261 do_div(icount, 100);
262 icount += sbp->sb_agblocks - 1;
263 do_div(icount, sbp->sb_agblocks);
264 max_metadata = icount;
265 } else {
Eric Sandeen9de67c32014-07-24 20:51:54 +1000266 max_metadata = agcount;
Carlos Maiolino2d2194f2012-09-20 10:32:38 -0300267 }
268
Eric Sandeen12c3f052016-03-02 09:58:09 +1100269 /* Get the last possible inode in the filesystem */
Darrick J. Wong43004b22018-12-12 08:46:24 -0800270 agino = XFS_AGB_TO_AGINO(mp, sbp->sb_agblocks - 1);
Eric Sandeen12c3f052016-03-02 09:58:09 +1100271 ino = XFS_AGINO_TO_INO(mp, agcount - 1, agino);
Eric Sandeen54aa61f2014-07-24 20:53:10 +1000272
Eric Sandeen12c3f052016-03-02 09:58:09 +1100273 /*
274 * If user asked for no more than 32-bit inodes, and the fs is
275 * sufficiently large, set XFS_MOUNT_32BITINODES if we must alter
276 * the allocator to accommodate the request.
277 */
278 if ((mp->m_flags & XFS_MOUNT_SMALL_INUMS) && ino > XFS_MAXINUMBER_32)
279 mp->m_flags |= XFS_MOUNT_32BITINODES;
280 else
281 mp->m_flags &= ~XFS_MOUNT_32BITINODES;
Carlos Maiolino2d2194f2012-09-20 10:32:38 -0300282
Eric Sandeen9de67c32014-07-24 20:51:54 +1000283 for (index = 0; index < agcount; index++) {
Carlos Maiolino2d2194f2012-09-20 10:32:38 -0300284 struct xfs_perag *pag;
285
Eric Sandeen12c3f052016-03-02 09:58:09 +1100286 ino = XFS_AGINO_TO_INO(mp, index, agino);
287
Carlos Maiolino2d2194f2012-09-20 10:32:38 -0300288 pag = xfs_perag_get(mp, index);
Eric Sandeen12c3f052016-03-02 09:58:09 +1100289
290 if (mp->m_flags & XFS_MOUNT_32BITINODES) {
291 if (ino > XFS_MAXINUMBER_32) {
292 pag->pagi_inodeok = 0;
293 pag->pagf_metadata = 0;
294 } else {
295 pag->pagi_inodeok = 1;
296 maxagi++;
297 if (index < max_metadata)
298 pag->pagf_metadata = 1;
299 else
300 pag->pagf_metadata = 0;
301 }
302 } else {
303 pag->pagi_inodeok = 1;
304 pag->pagf_metadata = 0;
305 }
306
Carlos Maiolino2d2194f2012-09-20 10:32:38 -0300307 xfs_perag_put(pag);
308 }
309
Eric Sandeen12c3f052016-03-02 09:58:09 +1100310 return (mp->m_flags & XFS_MOUNT_32BITINODES) ? maxagi : agcount;
Carlos Maiolino2d2194f2012-09-20 10:32:38 -0300311}
312
Hannes Eder3180e662009-03-04 19:34:10 +0100313STATIC int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314xfs_blkdev_get(
315 xfs_mount_t *mp,
316 const char *name,
317 struct block_device **bdevp)
318{
319 int error = 0;
320
Tejun Heod4d77622010-11-13 11:55:18 +0100321 *bdevp = blkdev_get_by_path(name, FMODE_READ|FMODE_WRITE|FMODE_EXCL,
322 mp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 if (IS_ERR(*bdevp)) {
324 error = PTR_ERR(*bdevp);
Eric Sandeen77af5742014-12-24 09:47:27 +1100325 xfs_warn(mp, "Invalid device [%s], error=%d", name, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 }
327
Dave Chinner24513372014-06-25 14:58:08 +1000328 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329}
330
Hannes Eder3180e662009-03-04 19:34:10 +0100331STATIC void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332xfs_blkdev_put(
333 struct block_device *bdev)
334{
335 if (bdev)
Tejun Heoe525fd82010-11-13 11:55:17 +0100336 blkdev_put(bdev, FMODE_READ|FMODE_WRITE|FMODE_EXCL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337}
338
Christoph Hellwigf538d4d2005-11-02 10:26:59 +1100339void
340xfs_blkdev_issue_flush(
341 xfs_buftarg_t *buftarg)
342{
Christoph Hellwig93985542020-05-13 14:36:00 +0200343 blkdev_issue_flush(buftarg->bt_bdev, GFP_NOFS);
Christoph Hellwigf538d4d2005-11-02 10:26:59 +1100344}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345
Christoph Hellwig19f354d2008-05-20 11:31:13 +1000346STATIC void
347xfs_close_devices(
348 struct xfs_mount *mp)
349{
Dan Williams486aff52017-08-24 15:12:50 -0700350 struct dax_device *dax_ddev = mp->m_ddev_targp->bt_daxdev;
351
Christoph Hellwig19f354d2008-05-20 11:31:13 +1000352 if (mp->m_logdev_targp && mp->m_logdev_targp != mp->m_ddev_targp) {
Lachlan McIlroyc032bfc2008-07-18 17:13:12 +1000353 struct block_device *logdev = mp->m_logdev_targp->bt_bdev;
Dan Williams486aff52017-08-24 15:12:50 -0700354 struct dax_device *dax_logdev = mp->m_logdev_targp->bt_daxdev;
355
Eric Sandeena1f69412018-04-06 10:09:42 -0700356 xfs_free_buftarg(mp->m_logdev_targp);
Lachlan McIlroyc032bfc2008-07-18 17:13:12 +1000357 xfs_blkdev_put(logdev);
Dan Williams486aff52017-08-24 15:12:50 -0700358 fs_put_dax(dax_logdev);
Christoph Hellwig19f354d2008-05-20 11:31:13 +1000359 }
360 if (mp->m_rtdev_targp) {
Lachlan McIlroyc032bfc2008-07-18 17:13:12 +1000361 struct block_device *rtdev = mp->m_rtdev_targp->bt_bdev;
Dan Williams486aff52017-08-24 15:12:50 -0700362 struct dax_device *dax_rtdev = mp->m_rtdev_targp->bt_daxdev;
363
Eric Sandeena1f69412018-04-06 10:09:42 -0700364 xfs_free_buftarg(mp->m_rtdev_targp);
Lachlan McIlroyc032bfc2008-07-18 17:13:12 +1000365 xfs_blkdev_put(rtdev);
Dan Williams486aff52017-08-24 15:12:50 -0700366 fs_put_dax(dax_rtdev);
Christoph Hellwig19f354d2008-05-20 11:31:13 +1000367 }
Eric Sandeena1f69412018-04-06 10:09:42 -0700368 xfs_free_buftarg(mp->m_ddev_targp);
Dan Williams486aff52017-08-24 15:12:50 -0700369 fs_put_dax(dax_ddev);
Christoph Hellwig19f354d2008-05-20 11:31:13 +1000370}
371
372/*
373 * The file system configurations are:
374 * (1) device (partition) with data and internal log
375 * (2) logical volume with data and log subvolumes.
376 * (3) logical volume with data, log, and realtime subvolumes.
377 *
378 * We only have to handle opening the log and realtime volumes here if
379 * they are present. The data subvolume has already been opened by
380 * get_sb_bdev() and is stored in sb->s_bdev.
381 */
382STATIC int
383xfs_open_devices(
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100384 struct xfs_mount *mp)
Christoph Hellwig19f354d2008-05-20 11:31:13 +1000385{
386 struct block_device *ddev = mp->m_super->s_bdev;
Dan Williams486aff52017-08-24 15:12:50 -0700387 struct dax_device *dax_ddev = fs_dax_get_by_bdev(ddev);
388 struct dax_device *dax_logdev = NULL, *dax_rtdev = NULL;
Christoph Hellwig19f354d2008-05-20 11:31:13 +1000389 struct block_device *logdev = NULL, *rtdev = NULL;
390 int error;
391
392 /*
393 * Open real time and log devices - order is important.
394 */
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100395 if (mp->m_logname) {
396 error = xfs_blkdev_get(mp, mp->m_logname, &logdev);
Christoph Hellwig19f354d2008-05-20 11:31:13 +1000397 if (error)
398 goto out;
Dan Williams486aff52017-08-24 15:12:50 -0700399 dax_logdev = fs_dax_get_by_bdev(logdev);
Christoph Hellwig19f354d2008-05-20 11:31:13 +1000400 }
401
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100402 if (mp->m_rtname) {
403 error = xfs_blkdev_get(mp, mp->m_rtname, &rtdev);
Christoph Hellwig19f354d2008-05-20 11:31:13 +1000404 if (error)
405 goto out_close_logdev;
406
407 if (rtdev == ddev || rtdev == logdev) {
Dave Chinner4f107002011-03-07 10:00:35 +1100408 xfs_warn(mp,
409 "Cannot mount filesystem with identical rtdev and ddev/logdev.");
Dave Chinner24513372014-06-25 14:58:08 +1000410 error = -EINVAL;
Christoph Hellwig19f354d2008-05-20 11:31:13 +1000411 goto out_close_rtdev;
412 }
Dan Williams486aff52017-08-24 15:12:50 -0700413 dax_rtdev = fs_dax_get_by_bdev(rtdev);
Christoph Hellwig19f354d2008-05-20 11:31:13 +1000414 }
415
416 /*
417 * Setup xfs_mount buffer target pointers
418 */
Dave Chinner24513372014-06-25 14:58:08 +1000419 error = -ENOMEM;
Dan Williams486aff52017-08-24 15:12:50 -0700420 mp->m_ddev_targp = xfs_alloc_buftarg(mp, ddev, dax_ddev);
Christoph Hellwig19f354d2008-05-20 11:31:13 +1000421 if (!mp->m_ddev_targp)
422 goto out_close_rtdev;
423
424 if (rtdev) {
Dan Williams486aff52017-08-24 15:12:50 -0700425 mp->m_rtdev_targp = xfs_alloc_buftarg(mp, rtdev, dax_rtdev);
Christoph Hellwig19f354d2008-05-20 11:31:13 +1000426 if (!mp->m_rtdev_targp)
427 goto out_free_ddev_targ;
428 }
429
430 if (logdev && logdev != ddev) {
Dan Williams486aff52017-08-24 15:12:50 -0700431 mp->m_logdev_targp = xfs_alloc_buftarg(mp, logdev, dax_logdev);
Christoph Hellwig19f354d2008-05-20 11:31:13 +1000432 if (!mp->m_logdev_targp)
433 goto out_free_rtdev_targ;
434 } else {
435 mp->m_logdev_targp = mp->m_ddev_targp;
436 }
437
438 return 0;
439
440 out_free_rtdev_targ:
441 if (mp->m_rtdev_targp)
Eric Sandeena1f69412018-04-06 10:09:42 -0700442 xfs_free_buftarg(mp->m_rtdev_targp);
Christoph Hellwig19f354d2008-05-20 11:31:13 +1000443 out_free_ddev_targ:
Eric Sandeena1f69412018-04-06 10:09:42 -0700444 xfs_free_buftarg(mp->m_ddev_targp);
Christoph Hellwig19f354d2008-05-20 11:31:13 +1000445 out_close_rtdev:
Markus Elfringd2a5e3c2014-12-01 08:24:20 +1100446 xfs_blkdev_put(rtdev);
Dan Williams486aff52017-08-24 15:12:50 -0700447 fs_put_dax(dax_rtdev);
Christoph Hellwig19f354d2008-05-20 11:31:13 +1000448 out_close_logdev:
Dan Williams486aff52017-08-24 15:12:50 -0700449 if (logdev && logdev != ddev) {
Christoph Hellwig19f354d2008-05-20 11:31:13 +1000450 xfs_blkdev_put(logdev);
Dan Williams486aff52017-08-24 15:12:50 -0700451 fs_put_dax(dax_logdev);
452 }
Christoph Hellwig19f354d2008-05-20 11:31:13 +1000453 out:
Dan Williams486aff52017-08-24 15:12:50 -0700454 fs_put_dax(dax_ddev);
Christoph Hellwig19f354d2008-05-20 11:31:13 +1000455 return error;
456}
457
Christoph Hellwige34b5622008-05-20 15:10:36 +1000458/*
459 * Setup xfs_mount buffer target pointers based on superblock
460 */
461STATIC int
462xfs_setup_devices(
463 struct xfs_mount *mp)
464{
465 int error;
Christoph Hellwig19f354d2008-05-20 11:31:13 +1000466
Eric Sandeena96c4152014-04-14 19:00:29 +1000467 error = xfs_setsize_buftarg(mp->m_ddev_targp, mp->m_sb.sb_sectsize);
Christoph Hellwige34b5622008-05-20 15:10:36 +1000468 if (error)
469 return error;
470
471 if (mp->m_logdev_targp && mp->m_logdev_targp != mp->m_ddev_targp) {
472 unsigned int log_sector_size = BBSIZE;
473
474 if (xfs_sb_version_hassector(&mp->m_sb))
475 log_sector_size = mp->m_sb.sb_logsectsize;
476 error = xfs_setsize_buftarg(mp->m_logdev_targp,
Christoph Hellwige34b5622008-05-20 15:10:36 +1000477 log_sector_size);
478 if (error)
479 return error;
480 }
481 if (mp->m_rtdev_targp) {
482 error = xfs_setsize_buftarg(mp->m_rtdev_targp,
Christoph Hellwige34b5622008-05-20 15:10:36 +1000483 mp->m_sb.sb_sectsize);
484 if (error)
485 return error;
486 }
487
488 return 0;
489}
Christoph Hellwig19f354d2008-05-20 11:31:13 +1000490
Christoph Hellwigaa6bf012012-02-29 09:53:48 +0000491STATIC int
492xfs_init_mount_workqueues(
493 struct xfs_mount *mp)
494{
Brian Foster78c931b2014-11-28 13:59:58 +1100495 mp->m_buf_workqueue = alloc_workqueue("xfs-buf/%s",
Ian Kente1d3d212019-11-04 13:58:40 -0800496 WQ_MEM_RECLAIM|WQ_FREEZABLE, 1, mp->m_super->s_id);
Brian Foster78c931b2014-11-28 13:59:58 +1100497 if (!mp->m_buf_workqueue)
498 goto out;
499
Christoph Hellwigaa6bf012012-02-29 09:53:48 +0000500 mp->m_unwritten_workqueue = alloc_workqueue("xfs-conv/%s",
Ian Kente1d3d212019-11-04 13:58:40 -0800501 WQ_MEM_RECLAIM|WQ_FREEZABLE, 0, mp->m_super->s_id);
Christoph Hellwigaa6bf012012-02-29 09:53:48 +0000502 if (!mp->m_unwritten_workqueue)
Darrick J. Wong28408242019-04-15 13:13:21 -0700503 goto out_destroy_buf;
Christoph Hellwigaa6bf012012-02-29 09:53:48 +0000504
Dave Chinner4c2d5422012-04-23 17:54:32 +1000505 mp->m_cil_workqueue = alloc_workqueue("xfs-cil/%s",
Dave Chinner8ab39f12019-09-05 21:35:39 -0700506 WQ_MEM_RECLAIM | WQ_FREEZABLE | WQ_UNBOUND,
Ian Kente1d3d212019-11-04 13:58:40 -0800507 0, mp->m_super->s_id);
Dave Chinner4c2d5422012-04-23 17:54:32 +1000508 if (!mp->m_cil_workqueue)
509 goto out_destroy_unwritten;
Dave Chinner58896082012-10-08 21:56:05 +1100510
511 mp->m_reclaim_workqueue = alloc_workqueue("xfs-reclaim/%s",
Ian Kente1d3d212019-11-04 13:58:40 -0800512 WQ_MEM_RECLAIM|WQ_FREEZABLE, 0, mp->m_super->s_id);
Dave Chinner58896082012-10-08 21:56:05 +1100513 if (!mp->m_reclaim_workqueue)
514 goto out_destroy_cil;
515
Brian Foster579b62f2012-11-06 09:50:47 -0500516 mp->m_eofblocks_workqueue = alloc_workqueue("xfs-eofblocks/%s",
Ian Kente1d3d212019-11-04 13:58:40 -0800517 WQ_MEM_RECLAIM|WQ_FREEZABLE, 0, mp->m_super->s_id);
Brian Foster579b62f2012-11-06 09:50:47 -0500518 if (!mp->m_eofblocks_workqueue)
Christoph Hellwig1058d0f2019-06-28 19:27:25 -0700519 goto out_destroy_reclaim;
Brian Foster579b62f2012-11-06 09:50:47 -0500520
Brian Foster696a5622017-03-28 14:51:44 -0700521 mp->m_sync_workqueue = alloc_workqueue("xfs-sync/%s", WQ_FREEZABLE, 0,
Ian Kente1d3d212019-11-04 13:58:40 -0800522 mp->m_super->s_id);
Brian Foster696a5622017-03-28 14:51:44 -0700523 if (!mp->m_sync_workqueue)
524 goto out_destroy_eofb;
525
Christoph Hellwigaa6bf012012-02-29 09:53:48 +0000526 return 0;
527
Brian Foster696a5622017-03-28 14:51:44 -0700528out_destroy_eofb:
529 destroy_workqueue(mp->m_eofblocks_workqueue);
Dave Chinner58896082012-10-08 21:56:05 +1100530out_destroy_reclaim:
531 destroy_workqueue(mp->m_reclaim_workqueue);
532out_destroy_cil:
533 destroy_workqueue(mp->m_cil_workqueue);
Dave Chinner4c2d5422012-04-23 17:54:32 +1000534out_destroy_unwritten:
535 destroy_workqueue(mp->m_unwritten_workqueue);
Brian Foster78c931b2014-11-28 13:59:58 +1100536out_destroy_buf:
537 destroy_workqueue(mp->m_buf_workqueue);
Christoph Hellwigaa6bf012012-02-29 09:53:48 +0000538out:
539 return -ENOMEM;
540}
541
542STATIC void
543xfs_destroy_mount_workqueues(
544 struct xfs_mount *mp)
545{
Brian Foster696a5622017-03-28 14:51:44 -0700546 destroy_workqueue(mp->m_sync_workqueue);
Brian Foster579b62f2012-11-06 09:50:47 -0500547 destroy_workqueue(mp->m_eofblocks_workqueue);
Dave Chinner58896082012-10-08 21:56:05 +1100548 destroy_workqueue(mp->m_reclaim_workqueue);
Dave Chinner4c2d5422012-04-23 17:54:32 +1000549 destroy_workqueue(mp->m_cil_workqueue);
Christoph Hellwigaa6bf012012-02-29 09:53:48 +0000550 destroy_workqueue(mp->m_unwritten_workqueue);
Brian Foster78c931b2014-11-28 13:59:58 +1100551 destroy_workqueue(mp->m_buf_workqueue);
Christoph Hellwigaa6bf012012-02-29 09:53:48 +0000552}
553
Darrick J. Wongf0f7a672020-04-12 13:11:10 -0700554static void
555xfs_flush_inodes_worker(
556 struct work_struct *work)
557{
558 struct xfs_mount *mp = container_of(work, struct xfs_mount,
559 m_flush_inodes_work);
560 struct super_block *sb = mp->m_super;
561
562 if (down_read_trylock(&sb->s_umount)) {
563 sync_inodes_sb(sb);
564 up_read(&sb->s_umount);
565 }
566}
567
Dave Chinner9aa05002012-10-08 21:56:04 +1100568/*
569 * Flush all dirty data to disk. Must not be called while holding an XFS_ILOCK
570 * or a page lock. We use sync_inodes_sb() here to ensure we block while waiting
571 * for IO to complete so that we effectively throttle multiple callers to the
572 * rate at which IO is completing.
573 */
574void
575xfs_flush_inodes(
576 struct xfs_mount *mp)
577{
Darrick J. Wongf0f7a672020-04-12 13:11:10 -0700578 /*
579 * If flush_work() returns true then that means we waited for a flush
580 * which was already in progress. Don't bother running another scan.
581 */
582 if (flush_work(&mp->m_flush_inodes_work))
Darrick J. Wongc6425702020-03-27 08:49:44 -0700583 return;
584
Darrick J. Wongf0f7a672020-04-12 13:11:10 -0700585 queue_work(mp->m_sync_workqueue, &mp->m_flush_inodes_work);
586 flush_work(&mp->m_flush_inodes_work);
Dave Chinner9aa05002012-10-08 21:56:04 +1100587}
588
David Chinnerbf904242008-10-30 17:36:14 +1100589/* Catch misguided souls that try to use this interface on XFS */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590STATIC struct inode *
Nathan Scotta50cd262006-03-14 14:06:18 +1100591xfs_fs_alloc_inode(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 struct super_block *sb)
593{
David Chinnerbf904242008-10-30 17:36:14 +1100594 BUG();
Lachlan McIlroy493dca62008-10-30 17:36:52 +1100595 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596}
597
Christoph Hellwig48318222018-10-18 17:20:11 +1100598#ifdef DEBUG
599static void
600xfs_check_delalloc(
601 struct xfs_inode *ip,
602 int whichfork)
603{
604 struct xfs_ifork *ifp = XFS_IFORK_PTR(ip, whichfork);
605 struct xfs_bmbt_irec got;
606 struct xfs_iext_cursor icur;
607
608 if (!ifp || !xfs_iext_lookup_extent(ip, ifp, 0, &icur, &got))
609 return;
610 do {
611 if (isnullstartblock(got.br_startblock)) {
612 xfs_warn(ip->i_mount,
613 "ino %llx %s fork has delalloc extent at [0x%llx:0x%llx]",
614 ip->i_ino,
615 whichfork == XFS_DATA_FORK ? "data" : "cow",
616 got.br_startoff, got.br_blockcount);
617 }
618 } while (xfs_iext_next_extent(ifp, &icur, &got));
619}
620#else
621#define xfs_check_delalloc(ip, whichfork) do { } while (0)
622#endif
623
David Chinnerbf904242008-10-30 17:36:14 +1100624/*
David Chinner99fa8cb2008-10-30 17:36:40 +1100625 * Now that the generic code is guaranteed not to be accessing
Dave Chinner8179c032016-05-18 13:52:42 +1000626 * the linux inode, we can inactivate and reclaim the inode.
David Chinnerbf904242008-10-30 17:36:14 +1100627 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628STATIC void
Nathan Scotta50cd262006-03-14 14:06:18 +1100629xfs_fs_destroy_inode(
Christoph Hellwig848ce8f2009-09-29 13:48:56 +0000630 struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631{
Christoph Hellwig848ce8f2009-09-29 13:48:56 +0000632 struct xfs_inode *ip = XFS_I(inode);
633
Christoph Hellwigcca28fb2010-06-24 11:57:09 +1000634 trace_xfs_destroy_inode(ip);
David Chinner99fa8cb2008-10-30 17:36:40 +1100635
Christoph Hellwig65523212016-11-30 14:33:25 +1100636 ASSERT(!rwsem_is_locked(&inode->i_rwsem));
Dave Chinner8179c032016-05-18 13:52:42 +1000637 XFS_STATS_INC(ip->i_mount, vn_rele);
638 XFS_STATS_INC(ip->i_mount, vn_remove);
639
640 xfs_inactive(ip);
Christoph Hellwig848ce8f2009-09-29 13:48:56 +0000641
Christoph Hellwig48318222018-10-18 17:20:11 +1100642 if (!XFS_FORCED_SHUTDOWN(ip->i_mount) && ip->i_delayed_blks) {
643 xfs_check_delalloc(ip, XFS_DATA_FORK);
644 xfs_check_delalloc(ip, XFS_COW_FORK);
645 ASSERT(0);
646 }
647
Dave Chinner8179c032016-05-18 13:52:42 +1000648 XFS_STATS_INC(ip->i_mount, vn_reclaim);
Christoph Hellwig848ce8f2009-09-29 13:48:56 +0000649
650 /*
651 * We should never get here with one of the reclaim flags already set.
652 */
653 ASSERT_ALWAYS(!xfs_iflags_test(ip, XFS_IRECLAIMABLE));
654 ASSERT_ALWAYS(!xfs_iflags_test(ip, XFS_IRECLAIM));
655
656 /*
Dave Chinner718ecc52020-08-17 16:41:01 -0700657 * We always use background reclaim here because even if the inode is
658 * clean, it still may be under IO and hence we have wait for IO
659 * completion to occur before we can reclaim the inode. The background
660 * reclaim path handles this more efficiently than we can here, so
661 * simply let background reclaim tear down all inodes.
Christoph Hellwig848ce8f2009-09-29 13:48:56 +0000662 */
Dave Chinner57817c62010-01-10 23:51:47 +0000663 xfs_inode_set_reclaim_tag(ip);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664}
665
Christoph Hellwigc3b1b132018-03-06 17:04:00 -0800666static void
667xfs_fs_dirty_inode(
668 struct inode *inode,
669 int flag)
670{
671 struct xfs_inode *ip = XFS_I(inode);
672 struct xfs_mount *mp = ip->i_mount;
673 struct xfs_trans *tp;
674
675 if (!(inode->i_sb->s_flags & SB_LAZYTIME))
676 return;
677 if (flag != I_DIRTY_SYNC || !(inode->i_state & I_DIRTY_TIME))
678 return;
679
680 if (xfs_trans_alloc(mp, &M_RES(mp)->tr_fsyncts, 0, 0, 0, &tp))
681 return;
682 xfs_ilock(ip, XFS_ILOCK_EXCL);
683 xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL);
684 xfs_trans_log_inode(tp, ip, XFS_ILOG_TIMESTAMP);
685 xfs_trans_commit(tp);
686}
687
David Chinner07c8f672008-10-30 16:11:59 +1100688/*
689 * Slab object creation initialisation for the XFS inode.
690 * This covers only the idempotent fields in the XFS inode;
691 * all other fields need to be initialised on allocation
Uwe Kleine-Königb5950762010-11-01 15:38:34 -0400692 * from the slab. This avoids the need to repeatedly initialise
David Chinner07c8f672008-10-30 16:11:59 +1100693 * fields in the xfs inode that left in the initialise state
694 * when freeing the inode.
695 */
David Chinnerbf904242008-10-30 17:36:14 +1100696STATIC void
697xfs_fs_inode_init_once(
David Chinner07c8f672008-10-30 16:11:59 +1100698 void *inode)
699{
700 struct xfs_inode *ip = inode;
701
702 memset(ip, 0, sizeof(struct xfs_inode));
David Chinnerbf904242008-10-30 17:36:14 +1100703
704 /* vfs inode */
705 inode_init_once(VFS_I(ip));
706
707 /* xfs inode */
David Chinner07c8f672008-10-30 16:11:59 +1100708 atomic_set(&ip->i_pincount, 0);
709 spin_lock_init(&ip->i_flags_lock);
David Chinner07c8f672008-10-30 16:11:59 +1100710
Dave Chinner653c60b2015-02-23 21:43:37 +1100711 mrlock_init(&ip->i_mmaplock, MRLOCK_ALLOW_EQUAL_PRI|MRLOCK_BARRIER,
712 "xfsino", ip->i_ino);
David Chinner07c8f672008-10-30 16:11:59 +1100713 mrlock_init(&ip->i_lock, MRLOCK_ALLOW_EQUAL_PRI|MRLOCK_BARRIER,
714 "xfsino", ip->i_ino);
David Chinner07c8f672008-10-30 16:11:59 +1100715}
716
Dave Chinner5132ba82012-03-22 05:15:10 +0000717/*
718 * We do an unlocked check for XFS_IDONTCACHE here because we are already
719 * serialised against cache hits here via the inode->i_lock and igrab() in
720 * xfs_iget_cache_hit(). Hence a lookup that might clear this flag will not be
721 * racing with us, and it avoids needing to grab a spinlock here for every inode
722 * we drop the final reference on.
723 */
724STATIC int
725xfs_fs_drop_inode(
726 struct inode *inode)
727{
728 struct xfs_inode *ip = XFS_I(inode);
729
Darrick J. Wong17c12bc2016-10-03 09:11:29 -0700730 /*
731 * If this unlinked inode is in the middle of recovery, don't
732 * drop the inode just yet; log recovery will take care of
733 * that. See the comment for this inode flag.
734 */
735 if (ip->i_flags & XFS_IRECOVERY) {
736 ASSERT(ip->i_mount->m_log->l_flags & XLOG_RECOVERY_NEEDED);
737 return 0;
738 }
739
Ira Weinydae2f8e2020-04-30 07:41:37 -0700740 return generic_drop_inode(inode);
Dave Chinner5132ba82012-03-22 05:15:10 +0000741}
742
Ian Kenta943f372019-11-04 13:58:42 -0800743static void
744xfs_mount_free(
Christoph Hellwiga7381592008-08-13 16:04:05 +1000745 struct xfs_mount *mp)
746{
Christoph Hellwiga7381592008-08-13 16:04:05 +1000747 kfree(mp->m_rtname);
748 kfree(mp->m_logname);
Ian Kenta943f372019-11-04 13:58:42 -0800749 kmem_free(mp);
Christoph Hellwiga7381592008-08-13 16:04:05 +1000750}
751
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752STATIC int
Christoph Hellwig69961a22009-10-06 20:29:28 +0000753xfs_fs_sync_fs(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 struct super_block *sb,
755 int wait)
756{
Christoph Hellwig745f6912007-08-30 17:20:39 +1000757 struct xfs_mount *mp = XFS_M(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758
Lachlan McIlroye893bff2007-10-12 11:13:35 +1000759 /*
Christoph Hellwig34625c62011-12-06 21:58:12 +0000760 * Doing anything during the async pass would be counterproductive.
Lachlan McIlroye893bff2007-10-12 11:13:35 +1000761 */
Christoph Hellwig34625c62011-12-06 21:58:12 +0000762 if (!wait)
Christoph Hellwig69961a22009-10-06 20:29:28 +0000763 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764
Dave Chinner34061f52012-10-08 21:56:06 +1100765 xfs_log_force(mp, XFS_LOG_SYNC);
Christoph Hellwig69961a22009-10-06 20:29:28 +0000766 if (laptop_mode) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 /*
768 * The disk must be active because we're syncing.
Dave Chinnerf661f1e2012-10-08 21:56:02 +1100769 * We schedule log work now (now that the disk is
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 * active) instead of later (when it might not be).
771 */
Dave Chinnerf661f1e2012-10-08 21:56:02 +1100772 flush_delayed_work(&mp->m_log->l_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 }
774
Christoph Hellwig69961a22009-10-06 20:29:28 +0000775 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776}
777
778STATIC int
Nathan Scotta50cd262006-03-14 14:06:18 +1100779xfs_fs_statfs(
David Howells726c3342006-06-23 02:02:58 -0700780 struct dentry *dentry,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 struct kstatfs *statp)
782{
Christoph Hellwig4ca488e2007-10-11 18:09:40 +1000783 struct xfs_mount *mp = XFS_M(dentry->d_sb);
784 xfs_sb_t *sbp = &mp->m_sb;
David Howells2b0143b2015-03-17 22:25:59 +0000785 struct xfs_inode *ip = XFS_I(d_inode(dentry));
Darrick J. Wongc8ce5402017-06-16 11:00:05 -0700786 uint64_t fakeinos, id;
787 uint64_t icount;
788 uint64_t ifree;
789 uint64_t fdblocks;
Christoph Hellwig4ca488e2007-10-11 18:09:40 +1000790 xfs_extlen_t lsize;
Darrick J. Wongc8ce5402017-06-16 11:00:05 -0700791 int64_t ffree;
Christoph Hellwig4ca488e2007-10-11 18:09:40 +1000792
Adam Borowskidddde682018-10-18 17:20:19 +1100793 statp->f_type = XFS_SUPER_MAGIC;
Christoph Hellwig4ca488e2007-10-11 18:09:40 +1000794 statp->f_namelen = MAXNAMELEN - 1;
795
796 id = huge_encode_dev(mp->m_ddev_targp->bt_dev);
Al Viro6d1349c2020-09-18 16:45:50 -0400797 statp->f_fsid = u64_to_fsid(id);
Christoph Hellwig4ca488e2007-10-11 18:09:40 +1000798
Dave Chinner501ab322015-02-23 21:19:28 +1100799 icount = percpu_counter_sum(&mp->m_icount);
Dave Chinnere88b64e2015-02-23 21:19:53 +1100800 ifree = percpu_counter_sum(&mp->m_ifree);
Dave Chinner0d485ad2015-02-23 21:22:03 +1100801 fdblocks = percpu_counter_sum(&mp->m_fdblocks);
Christoph Hellwig4ca488e2007-10-11 18:09:40 +1000802
803 spin_lock(&mp->m_sb_lock);
804 statp->f_bsize = sbp->sb_blocksize;
805 lsize = sbp->sb_logstart ? sbp->sb_logblocks : 0;
806 statp->f_blocks = sbp->sb_dblocks - lsize;
Dave Chinner0d485ad2015-02-23 21:22:03 +1100807 spin_unlock(&mp->m_sb_lock);
808
Zheng Bin237aac42020-05-12 11:48:35 -0700809 /* make sure statp->f_bfree does not underflow */
810 statp->f_bfree = max_t(int64_t, fdblocks - mp->m_alloc_set_aside, 0);
Dave Chinner0d485ad2015-02-23 21:22:03 +1100811 statp->f_bavail = statp->f_bfree;
812
Darrick J. Wong43004b22018-12-12 08:46:24 -0800813 fakeinos = XFS_FSB_TO_INO(mp, statp->f_bfree);
Dave Chinner9bb54cb2018-06-07 07:54:02 -0700814 statp->f_files = min(icount + fakeinos, (uint64_t)XFS_MAXINUMBER);
Darrick J. Wongef325952019-06-05 11:19:34 -0700815 if (M_IGEO(mp)->maxicount)
Christoph Hellwiga19d9f82009-03-29 09:51:08 +0200816 statp->f_files = min_t(typeof(statp->f_files),
817 statp->f_files,
Darrick J. Wongef325952019-06-05 11:19:34 -0700818 M_IGEO(mp)->maxicount);
Stuart Brodsky2fe33662010-08-24 11:46:05 +1000819
Eric Sandeen01f98822015-02-06 09:53:02 +1100820 /* If sb_icount overshot maxicount, report actual allocation */
821 statp->f_files = max_t(typeof(statp->f_files),
822 statp->f_files,
823 sbp->sb_icount);
824
Stuart Brodsky2fe33662010-08-24 11:46:05 +1000825 /* make sure statp->f_ffree does not underflow */
Dave Chinnere88b64e2015-02-23 21:19:53 +1100826 ffree = statp->f_files - (icount - ifree);
Darrick J. Wongc8ce5402017-06-16 11:00:05 -0700827 statp->f_ffree = max_t(int64_t, ffree, 0);
Stuart Brodsky2fe33662010-08-24 11:46:05 +1000828
Christoph Hellwig4ca488e2007-10-11 18:09:40 +1000829
Jie Liuda5bf952012-04-12 03:59:57 +0000830 if ((ip->i_d.di_flags & XFS_DIFLAG_PROJINHERIT) &&
Chandra Seetharaman83e782e2013-06-27 17:25:10 -0500831 ((mp->m_qflags & (XFS_PQUOTA_ACCT|XFS_PQUOTA_ENFD))) ==
832 (XFS_PQUOTA_ACCT|XFS_PQUOTA_ENFD))
Christoph Hellwig7d095252009-06-08 15:33:32 +0200833 xfs_qm_statvfs(ip, statp);
Richard Wareinga0158312018-01-08 10:41:33 -0800834
835 if (XFS_IS_REALTIME_MOUNT(mp) &&
836 (ip->i_d.di_flags & (XFS_DIFLAG_RTINHERIT | XFS_DIFLAG_REALTIME))) {
837 statp->f_blocks = sbp->sb_rblocks;
838 statp->f_bavail = statp->f_bfree =
839 sbp->sb_frextents * sbp->sb_rextsize;
840 }
841
Christoph Hellwig4ca488e2007-10-11 18:09:40 +1000842 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843}
844
Eric Sandeend5db0f92010-02-05 22:59:53 +0000845STATIC void
846xfs_save_resvblks(struct xfs_mount *mp)
847{
Darrick J. Wongc8ce5402017-06-16 11:00:05 -0700848 uint64_t resblks = 0;
Eric Sandeend5db0f92010-02-05 22:59:53 +0000849
850 mp->m_resblks_save = mp->m_resblks;
851 xfs_reserve_blocks(mp, &resblks, NULL);
852}
853
854STATIC void
855xfs_restore_resvblks(struct xfs_mount *mp)
856{
Darrick J. Wongc8ce5402017-06-16 11:00:05 -0700857 uint64_t resblks;
Eric Sandeend5db0f92010-02-05 22:59:53 +0000858
859 if (mp->m_resblks_save) {
860 resblks = mp->m_resblks_save;
861 mp->m_resblks_save = 0;
862 } else
863 resblks = xfs_default_resblks(mp);
864
865 xfs_reserve_blocks(mp, &resblks, NULL);
866}
867
Dave Chinnerc7eea6f2012-10-08 21:56:07 +1100868/*
869 * Trigger writeback of all the dirty metadata in the file system.
870 *
871 * This ensures that the metadata is written to their location on disk rather
872 * than just existing in transactions in the log. This means after a quiesce
Dave Chinnerc75921a2012-10-08 21:56:08 +1100873 * there is no log replay required to write the inodes to disk - this is the
874 * primary difference between a sync and a quiesce.
Dave Chinnerc7eea6f2012-10-08 21:56:07 +1100875 *
Dave Chinnerb41b46c2020-05-20 13:17:11 -0700876 * We cancel log work early here to ensure all transactions the log worker may
877 * run have finished before we clean up and log the superblock and write an
878 * unmount record. The unfreeze process is responsible for restarting the log
879 * worker correctly.
Dave Chinnerc7eea6f2012-10-08 21:56:07 +1100880 */
Dave Chinnerddeb14f2016-09-26 08:21:44 +1000881void
Dave Chinnerc7eea6f2012-10-08 21:56:07 +1100882xfs_quiesce_attr(
883 struct xfs_mount *mp)
884{
885 int error = 0;
886
Dave Chinnerb41b46c2020-05-20 13:17:11 -0700887 cancel_delayed_work_sync(&mp->m_log->l_work);
Dave Chinnerc7eea6f2012-10-08 21:56:07 +1100888
889 /* force the log to unpin objects from the now complete transactions */
890 xfs_log_force(mp, XFS_LOG_SYNC);
891
Dave Chinnerc7eea6f2012-10-08 21:56:07 +1100892
Dave Chinnerc75921a2012-10-08 21:56:08 +1100893 /* Push the superblock and write an unmount record */
894 error = xfs_log_sbcount(mp);
895 if (error)
896 xfs_warn(mp, "xfs_attr_quiesce: failed to log sb changes. "
897 "Frozen image may not be consistent.");
Dave Chinnerc75921a2012-10-08 21:56:08 +1100898 xfs_log_quiesce(mp);
Dave Chinnerc7eea6f2012-10-08 21:56:07 +1100899}
900
Christoph Hellwig9909c4a2007-10-11 18:11:14 +1000901/*
902 * Second stage of a freeze. The data is already frozen so we only
Dave Chinner61e63ec2015-01-22 09:10:31 +1100903 * need to take care of the metadata. Once that's done sync the superblock
904 * to the log to dirty it in case of a crash while frozen. This ensures that we
905 * will recover the unlinked inode lists on the next mount.
Christoph Hellwig9909c4a2007-10-11 18:11:14 +1000906 */
Takashi Satoc4be0c12009-01-09 16:40:58 -0800907STATIC int
908xfs_fs_freeze(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 struct super_block *sb)
910{
Christoph Hellwig9909c4a2007-10-11 18:11:14 +1000911 struct xfs_mount *mp = XFS_M(sb);
Waiman Longc3f23752020-07-08 10:21:44 -0700912 unsigned int flags;
913 int ret;
Christoph Hellwig9909c4a2007-10-11 18:11:14 +1000914
Waiman Longc3f23752020-07-08 10:21:44 -0700915 /*
916 * The filesystem is now frozen far enough that memory reclaim
917 * cannot safely operate on the filesystem. Hence we need to
918 * set a GFP_NOFS context here to avoid recursion deadlocks.
919 */
920 flags = memalloc_nofs_save();
Darrick J. Wonged30dcb2019-04-25 18:26:22 -0700921 xfs_stop_block_reaping(mp);
Eric Sandeend5db0f92010-02-05 22:59:53 +0000922 xfs_save_resvblks(mp);
David Chinner76bf1052008-10-30 17:16:21 +1100923 xfs_quiesce_attr(mp);
Waiman Longc3f23752020-07-08 10:21:44 -0700924 ret = xfs_sync_sb(mp, true);
925 memalloc_nofs_restore(flags);
926 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927}
928
929STATIC int
Eric Sandeend5db0f92010-02-05 22:59:53 +0000930xfs_fs_unfreeze(
931 struct super_block *sb)
932{
933 struct xfs_mount *mp = XFS_M(sb);
934
935 xfs_restore_resvblks(mp);
Dave Chinnerf661f1e2012-10-08 21:56:02 +1100936 xfs_log_work_queue(mp);
Darrick J. Wonged30dcb2019-04-25 18:26:22 -0700937 xfs_start_block_reaping(mp);
Eric Sandeend5db0f92010-02-05 22:59:53 +0000938 return 0;
939}
940
Christoph Hellwigf8f15e42008-05-20 11:30:59 +1000941/*
942 * This function fills in xfs_mount_t fields based on mount args.
Christoph Hellwigf8f15e42008-05-20 11:30:59 +1000943 * Note: the superblock _has_ now been read in.
944 */
945STATIC int
946xfs_finish_flags(
Christoph Hellwigf8f15e42008-05-20 11:30:59 +1000947 struct xfs_mount *mp)
948{
949 int ronly = (mp->m_flags & XFS_MOUNT_RDONLY);
950
Frederik Schwarzer025dfda2008-10-16 19:02:37 +0200951 /* Fail a mount where the logbuf is smaller than the log stripe */
Christoph Hellwigf8f15e42008-05-20 11:30:59 +1000952 if (xfs_sb_version_haslogv2(&mp->m_sb)) {
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100953 if (mp->m_logbsize <= 0 &&
954 mp->m_sb.sb_logsunit > XLOG_BIG_RECORD_BSIZE) {
Christoph Hellwigf8f15e42008-05-20 11:30:59 +1000955 mp->m_logbsize = mp->m_sb.sb_logsunit;
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100956 } else if (mp->m_logbsize > 0 &&
957 mp->m_logbsize < mp->m_sb.sb_logsunit) {
Dave Chinner4f107002011-03-07 10:00:35 +1100958 xfs_warn(mp,
959 "logbuf size must be greater than or equal to log stripe size");
Dave Chinner24513372014-06-25 14:58:08 +1000960 return -EINVAL;
Christoph Hellwigf8f15e42008-05-20 11:30:59 +1000961 }
962 } else {
963 /* Fail a mount if the logbuf is larger than 32K */
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100964 if (mp->m_logbsize > XLOG_BIG_RECORD_BSIZE) {
Dave Chinner4f107002011-03-07 10:00:35 +1100965 xfs_warn(mp,
966 "logbuf size for version 1 logs must be 16K or 32K");
Dave Chinner24513372014-06-25 14:58:08 +1000967 return -EINVAL;
Christoph Hellwigf8f15e42008-05-20 11:30:59 +1000968 }
969 }
970
971 /*
Dave Chinnerd3eaace2013-06-05 12:09:09 +1000972 * V5 filesystems always use attr2 format for attributes.
973 */
974 if (xfs_sb_version_hascrc(&mp->m_sb) &&
975 (mp->m_flags & XFS_MOUNT_NOATTR2)) {
Eric Sandeen2e74af02016-03-02 09:55:38 +1100976 xfs_warn(mp, "Cannot mount a V5 filesystem as noattr2. "
977 "attr2 is always enabled for V5 filesystems.");
Dave Chinner24513372014-06-25 14:58:08 +1000978 return -EINVAL;
Dave Chinnerd3eaace2013-06-05 12:09:09 +1000979 }
980
981 /*
Christoph Hellwigf8f15e42008-05-20 11:30:59 +1000982 * mkfs'ed attr2 will turn on attr2 mount unless explicitly
983 * told by noattr2 to turn it off
984 */
985 if (xfs_sb_version_hasattr2(&mp->m_sb) &&
Christoph Hellwig9d565ff2008-10-30 17:53:24 +1100986 !(mp->m_flags & XFS_MOUNT_NOATTR2))
Christoph Hellwigf8f15e42008-05-20 11:30:59 +1000987 mp->m_flags |= XFS_MOUNT_ATTR2;
988
989 /*
990 * prohibit r/w mounts of read-only filesystems
991 */
992 if ((mp->m_sb.sb_flags & XFS_SBF_READONLY) && !ronly) {
Dave Chinner4f107002011-03-07 10:00:35 +1100993 xfs_warn(mp,
994 "cannot mount a read-only filesystem as read-write");
Dave Chinner24513372014-06-25 14:58:08 +1000995 return -EROFS;
Christoph Hellwigf8f15e42008-05-20 11:30:59 +1000996 }
997
Chandra Seetharamand892d582013-07-19 17:36:02 -0500998 if ((mp->m_qflags & (XFS_GQUOTA_ACCT | XFS_GQUOTA_ACTIVE)) &&
999 (mp->m_qflags & (XFS_PQUOTA_ACCT | XFS_PQUOTA_ACTIVE)) &&
1000 !xfs_sb_version_has_pquotino(&mp->m_sb)) {
1001 xfs_warn(mp,
1002 "Super block does not support project and group quota together");
Dave Chinner24513372014-06-25 14:58:08 +10001003 return -EINVAL;
Chandra Seetharamand892d582013-07-19 17:36:02 -05001004 }
1005
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001006 return 0;
1007}
1008
Dave Chinner5681ca42015-02-23 21:22:31 +11001009static int
1010xfs_init_percpu_counters(
1011 struct xfs_mount *mp)
1012{
1013 int error;
1014
1015 error = percpu_counter_init(&mp->m_icount, 0, GFP_KERNEL);
1016 if (error)
Joe Perches5e9383f2015-03-25 15:00:24 +11001017 return -ENOMEM;
Dave Chinner5681ca42015-02-23 21:22:31 +11001018
1019 error = percpu_counter_init(&mp->m_ifree, 0, GFP_KERNEL);
1020 if (error)
1021 goto free_icount;
1022
1023 error = percpu_counter_init(&mp->m_fdblocks, 0, GFP_KERNEL);
1024 if (error)
1025 goto free_ifree;
1026
Darrick J. Wong9fe82b82019-04-25 18:26:22 -07001027 error = percpu_counter_init(&mp->m_delalloc_blks, 0, GFP_KERNEL);
1028 if (error)
1029 goto free_fdblocks;
1030
Dave Chinner5681ca42015-02-23 21:22:31 +11001031 return 0;
1032
Darrick J. Wong9fe82b82019-04-25 18:26:22 -07001033free_fdblocks:
1034 percpu_counter_destroy(&mp->m_fdblocks);
Dave Chinner5681ca42015-02-23 21:22:31 +11001035free_ifree:
1036 percpu_counter_destroy(&mp->m_ifree);
1037free_icount:
1038 percpu_counter_destroy(&mp->m_icount);
1039 return -ENOMEM;
1040}
1041
1042void
1043xfs_reinit_percpu_counters(
1044 struct xfs_mount *mp)
1045{
1046 percpu_counter_set(&mp->m_icount, mp->m_sb.sb_icount);
1047 percpu_counter_set(&mp->m_ifree, mp->m_sb.sb_ifree);
1048 percpu_counter_set(&mp->m_fdblocks, mp->m_sb.sb_fdblocks);
1049}
1050
1051static void
1052xfs_destroy_percpu_counters(
1053 struct xfs_mount *mp)
1054{
1055 percpu_counter_destroy(&mp->m_icount);
1056 percpu_counter_destroy(&mp->m_ifree);
1057 percpu_counter_destroy(&mp->m_fdblocks);
Darrick J. Wong9fe82b82019-04-25 18:26:22 -07001058 ASSERT(XFS_FORCED_SHUTDOWN(mp) ||
1059 percpu_counter_sum(&mp->m_delalloc_blks) == 0);
1060 percpu_counter_destroy(&mp->m_delalloc_blks);
Dave Chinner5681ca42015-02-23 21:22:31 +11001061}
1062
Ian Kent2f8d66b2019-11-04 13:58:47 -08001063static void
1064xfs_fs_put_super(
1065 struct super_block *sb)
1066{
1067 struct xfs_mount *mp = XFS_M(sb);
1068
1069 /* if ->fill_super failed, we have no mount to tear down */
1070 if (!sb->s_fs_info)
1071 return;
1072
1073 xfs_notice(mp, "Unmounting Filesystem");
1074 xfs_filestream_unmount(mp);
1075 xfs_unmountfs(mp);
1076
1077 xfs_freesb(mp);
1078 free_percpu(mp->m_stats.xs_stats);
1079 xfs_destroy_percpu_counters(mp);
1080 xfs_destroy_mount_workqueues(mp);
1081 xfs_close_devices(mp);
1082
1083 sb->s_fs_info = NULL;
1084 xfs_mount_free(mp);
1085}
1086
1087static long
1088xfs_fs_nr_cached_objects(
1089 struct super_block *sb,
1090 struct shrink_control *sc)
1091{
1092 /* Paranoia: catch incorrect calls during mount setup or teardown */
1093 if (WARN_ON_ONCE(!sb->s_fs_info))
1094 return 0;
1095 return xfs_reclaim_inodes_count(XFS_M(sb));
1096}
1097
1098static long
1099xfs_fs_free_cached_objects(
1100 struct super_block *sb,
1101 struct shrink_control *sc)
1102{
1103 return xfs_reclaim_inodes_nr(XFS_M(sb), sc->nr_to_scan);
1104}
1105
1106static const struct super_operations xfs_super_operations = {
1107 .alloc_inode = xfs_fs_alloc_inode,
1108 .destroy_inode = xfs_fs_destroy_inode,
1109 .dirty_inode = xfs_fs_dirty_inode,
1110 .drop_inode = xfs_fs_drop_inode,
1111 .put_super = xfs_fs_put_super,
1112 .sync_fs = xfs_fs_sync_fs,
1113 .freeze_fs = xfs_fs_freeze,
1114 .unfreeze_fs = xfs_fs_unfreeze,
1115 .statfs = xfs_fs_statfs,
1116 .show_options = xfs_fs_show_options,
1117 .nr_cached_objects = xfs_fs_nr_cached_objects,
1118 .free_cached_objects = xfs_fs_free_cached_objects,
1119};
1120
Ian Kent73e5fff2019-11-04 13:58:46 -08001121static int
Ian Kent8757c382019-11-04 13:58:48 -08001122suffix_kstrtoint(
1123 const char *s,
1124 unsigned int base,
1125 int *res)
1126{
1127 int last, shift_left_factor = 0, _res;
1128 char *value;
1129 int ret = 0;
1130
1131 value = kstrdup(s, GFP_KERNEL);
1132 if (!value)
1133 return -ENOMEM;
1134
1135 last = strlen(value) - 1;
1136 if (value[last] == 'K' || value[last] == 'k') {
1137 shift_left_factor = 10;
1138 value[last] = '\0';
1139 }
1140 if (value[last] == 'M' || value[last] == 'm') {
1141 shift_left_factor = 20;
1142 value[last] = '\0';
1143 }
1144 if (value[last] == 'G' || value[last] == 'g') {
1145 shift_left_factor = 30;
1146 value[last] = '\0';
1147 }
1148
1149 if (kstrtoint(value, base, &_res))
1150 ret = -EINVAL;
1151 kfree(value);
1152 *res = _res << shift_left_factor;
1153 return ret;
1154}
1155
1156/*
1157 * Set mount state from a mount option.
1158 *
1159 * NOTE: mp->m_super is NULL here!
1160 */
1161static int
1162xfs_fc_parse_param(
1163 struct fs_context *fc,
1164 struct fs_parameter *param)
1165{
1166 struct xfs_mount *mp = fc->s_fs_info;
1167 struct fs_parse_result result;
1168 int size = 0;
1169 int opt;
1170
Al Virod7167b12019-09-07 07:23:15 -04001171 opt = fs_parse(fc, xfs_fs_parameters, param, &result);
Ian Kent8757c382019-11-04 13:58:48 -08001172 if (opt < 0)
1173 return opt;
1174
1175 switch (opt) {
1176 case Opt_logbufs:
1177 mp->m_logbufs = result.uint_32;
1178 return 0;
1179 case Opt_logbsize:
1180 if (suffix_kstrtoint(param->string, 10, &mp->m_logbsize))
1181 return -EINVAL;
1182 return 0;
1183 case Opt_logdev:
1184 kfree(mp->m_logname);
1185 mp->m_logname = kstrdup(param->string, GFP_KERNEL);
1186 if (!mp->m_logname)
1187 return -ENOMEM;
1188 return 0;
1189 case Opt_rtdev:
1190 kfree(mp->m_rtname);
1191 mp->m_rtname = kstrdup(param->string, GFP_KERNEL);
1192 if (!mp->m_rtname)
1193 return -ENOMEM;
1194 return 0;
1195 case Opt_allocsize:
1196 if (suffix_kstrtoint(param->string, 10, &size))
1197 return -EINVAL;
1198 mp->m_allocsize_log = ffs(size) - 1;
1199 mp->m_flags |= XFS_MOUNT_ALLOCSIZE;
1200 return 0;
1201 case Opt_grpid:
1202 case Opt_bsdgroups:
1203 mp->m_flags |= XFS_MOUNT_GRPID;
1204 return 0;
1205 case Opt_nogrpid:
1206 case Opt_sysvgroups:
1207 mp->m_flags &= ~XFS_MOUNT_GRPID;
1208 return 0;
1209 case Opt_wsync:
1210 mp->m_flags |= XFS_MOUNT_WSYNC;
1211 return 0;
1212 case Opt_norecovery:
1213 mp->m_flags |= XFS_MOUNT_NORECOVERY;
1214 return 0;
1215 case Opt_noalign:
1216 mp->m_flags |= XFS_MOUNT_NOALIGN;
1217 return 0;
1218 case Opt_swalloc:
1219 mp->m_flags |= XFS_MOUNT_SWALLOC;
1220 return 0;
1221 case Opt_sunit:
1222 mp->m_dalign = result.uint_32;
1223 return 0;
1224 case Opt_swidth:
1225 mp->m_swidth = result.uint_32;
1226 return 0;
1227 case Opt_inode32:
1228 mp->m_flags |= XFS_MOUNT_SMALL_INUMS;
1229 return 0;
1230 case Opt_inode64:
1231 mp->m_flags &= ~XFS_MOUNT_SMALL_INUMS;
1232 return 0;
1233 case Opt_nouuid:
1234 mp->m_flags |= XFS_MOUNT_NOUUID;
1235 return 0;
Ian Kent8757c382019-11-04 13:58:48 -08001236 case Opt_largeio:
1237 mp->m_flags |= XFS_MOUNT_LARGEIO;
1238 return 0;
1239 case Opt_nolargeio:
1240 mp->m_flags &= ~XFS_MOUNT_LARGEIO;
1241 return 0;
Ian Kent8757c382019-11-04 13:58:48 -08001242 case Opt_filestreams:
1243 mp->m_flags |= XFS_MOUNT_FILESTREAMS;
1244 return 0;
1245 case Opt_noquota:
1246 mp->m_qflags &= ~XFS_ALL_QUOTA_ACCT;
1247 mp->m_qflags &= ~XFS_ALL_QUOTA_ENFD;
1248 mp->m_qflags &= ~XFS_ALL_QUOTA_ACTIVE;
1249 return 0;
1250 case Opt_quota:
1251 case Opt_uquota:
1252 case Opt_usrquota:
1253 mp->m_qflags |= (XFS_UQUOTA_ACCT | XFS_UQUOTA_ACTIVE |
1254 XFS_UQUOTA_ENFD);
1255 return 0;
1256 case Opt_qnoenforce:
1257 case Opt_uqnoenforce:
1258 mp->m_qflags |= (XFS_UQUOTA_ACCT | XFS_UQUOTA_ACTIVE);
1259 mp->m_qflags &= ~XFS_UQUOTA_ENFD;
1260 return 0;
1261 case Opt_pquota:
1262 case Opt_prjquota:
1263 mp->m_qflags |= (XFS_PQUOTA_ACCT | XFS_PQUOTA_ACTIVE |
1264 XFS_PQUOTA_ENFD);
1265 return 0;
1266 case Opt_pqnoenforce:
1267 mp->m_qflags |= (XFS_PQUOTA_ACCT | XFS_PQUOTA_ACTIVE);
1268 mp->m_qflags &= ~XFS_PQUOTA_ENFD;
1269 return 0;
1270 case Opt_gquota:
1271 case Opt_grpquota:
1272 mp->m_qflags |= (XFS_GQUOTA_ACCT | XFS_GQUOTA_ACTIVE |
1273 XFS_GQUOTA_ENFD);
1274 return 0;
1275 case Opt_gqnoenforce:
1276 mp->m_qflags |= (XFS_GQUOTA_ACCT | XFS_GQUOTA_ACTIVE);
1277 mp->m_qflags &= ~XFS_GQUOTA_ENFD;
1278 return 0;
1279 case Opt_discard:
1280 mp->m_flags |= XFS_MOUNT_DISCARD;
1281 return 0;
1282 case Opt_nodiscard:
1283 mp->m_flags &= ~XFS_MOUNT_DISCARD;
1284 return 0;
1285#ifdef CONFIG_FS_DAX
1286 case Opt_dax:
Ira Weiny8d6c3442020-05-04 09:02:42 -07001287 xfs_mount_set_dax_mode(mp, XFS_DAX_ALWAYS);
1288 return 0;
1289 case Opt_dax_enum:
1290 xfs_mount_set_dax_mode(mp, result.uint_32);
Ian Kent8757c382019-11-04 13:58:48 -08001291 return 0;
1292#endif
Pavel Reichlc23c3932020-09-25 11:10:29 -07001293 /* Following mount options will be removed in September 2025 */
1294 case Opt_ikeep:
1295 xfs_warn(mp, "%s mount option is deprecated.", param->key);
1296 mp->m_flags |= XFS_MOUNT_IKEEP;
1297 return 0;
1298 case Opt_noikeep:
1299 xfs_warn(mp, "%s mount option is deprecated.", param->key);
1300 mp->m_flags &= ~XFS_MOUNT_IKEEP;
1301 return 0;
1302 case Opt_attr2:
1303 xfs_warn(mp, "%s mount option is deprecated.", param->key);
1304 mp->m_flags |= XFS_MOUNT_ATTR2;
1305 return 0;
1306 case Opt_noattr2:
1307 xfs_warn(mp, "%s mount option is deprecated.", param->key);
1308 mp->m_flags &= ~XFS_MOUNT_ATTR2;
1309 mp->m_flags |= XFS_MOUNT_NOATTR2;
1310 return 0;
Ian Kent8757c382019-11-04 13:58:48 -08001311 default:
1312 xfs_warn(mp, "unknown mount option [%s].", param->key);
1313 return -EINVAL;
1314 }
1315
1316 return 0;
1317}
1318
1319static int
1320xfs_fc_validate_params(
1321 struct xfs_mount *mp)
1322{
1323 /*
1324 * no recovery flag requires a read-only mount
1325 */
1326 if ((mp->m_flags & XFS_MOUNT_NORECOVERY) &&
1327 !(mp->m_flags & XFS_MOUNT_RDONLY)) {
1328 xfs_warn(mp, "no-recovery mounts must be read-only.");
1329 return -EINVAL;
1330 }
1331
1332 if ((mp->m_flags & XFS_MOUNT_NOALIGN) &&
1333 (mp->m_dalign || mp->m_swidth)) {
1334 xfs_warn(mp,
1335 "sunit and swidth options incompatible with the noalign option");
1336 return -EINVAL;
1337 }
1338
1339 if (!IS_ENABLED(CONFIG_XFS_QUOTA) && mp->m_qflags != 0) {
1340 xfs_warn(mp, "quota support not available in this kernel.");
1341 return -EINVAL;
1342 }
1343
1344 if ((mp->m_dalign && !mp->m_swidth) ||
1345 (!mp->m_dalign && mp->m_swidth)) {
1346 xfs_warn(mp, "sunit and swidth must be specified together");
1347 return -EINVAL;
1348 }
1349
1350 if (mp->m_dalign && (mp->m_swidth % mp->m_dalign != 0)) {
1351 xfs_warn(mp,
1352 "stripe width (%d) must be a multiple of the stripe unit (%d)",
1353 mp->m_swidth, mp->m_dalign);
1354 return -EINVAL;
1355 }
1356
1357 if (mp->m_logbufs != -1 &&
1358 mp->m_logbufs != 0 &&
1359 (mp->m_logbufs < XLOG_MIN_ICLOGS ||
1360 mp->m_logbufs > XLOG_MAX_ICLOGS)) {
1361 xfs_warn(mp, "invalid logbufs value: %d [not %d-%d]",
1362 mp->m_logbufs, XLOG_MIN_ICLOGS, XLOG_MAX_ICLOGS);
1363 return -EINVAL;
1364 }
1365
1366 if (mp->m_logbsize != -1 &&
1367 mp->m_logbsize != 0 &&
1368 (mp->m_logbsize < XLOG_MIN_RECORD_BSIZE ||
1369 mp->m_logbsize > XLOG_MAX_RECORD_BSIZE ||
1370 !is_power_of_2(mp->m_logbsize))) {
1371 xfs_warn(mp,
1372 "invalid logbufsize: %d [not 16k,32k,64k,128k or 256k]",
1373 mp->m_logbsize);
1374 return -EINVAL;
1375 }
1376
1377 if ((mp->m_flags & XFS_MOUNT_ALLOCSIZE) &&
1378 (mp->m_allocsize_log > XFS_MAX_IO_LOG ||
1379 mp->m_allocsize_log < XFS_MIN_IO_LOG)) {
1380 xfs_warn(mp, "invalid log iosize: %d [not %d-%d]",
1381 mp->m_allocsize_log, XFS_MIN_IO_LOG, XFS_MAX_IO_LOG);
1382 return -EINVAL;
1383 }
1384
1385 return 0;
1386}
1387
1388static int
Ian Kent73e5fff2019-11-04 13:58:46 -08001389xfs_fc_fill_super(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390 struct super_block *sb,
Ian Kent73e5fff2019-11-04 13:58:46 -08001391 struct fs_context *fc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392{
Ian Kent73e5fff2019-11-04 13:58:46 -08001393 struct xfs_mount *mp = sb->s_fs_info;
Christoph Hellwigf3dcc132008-03-27 18:00:54 +11001394 struct inode *root;
Colin Ian King0279c712019-11-06 08:07:46 -08001395 int flags = 0, error;
Christoph Hellwigbdd907b2008-05-20 15:10:44 +10001396
Ian Kent7c89fcb2019-11-04 13:58:46 -08001397 mp->m_super = sb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398
Ian Kent73e5fff2019-11-04 13:58:46 -08001399 error = xfs_fc_validate_params(mp);
Christoph Hellwig745f6912007-08-30 17:20:39 +10001400 if (error)
Ian Kente1d3d212019-11-04 13:58:40 -08001401 goto out_free_names;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402
1403 sb_min_blocksize(sb, BBSIZE);
Lachlan McIlroy0ec58512008-06-23 13:23:01 +10001404 sb->s_xattr = xfs_xattr_handlers;
Nathan Scotta50cd262006-03-14 14:06:18 +11001405 sb->s_export_op = &xfs_export_operations;
Christoph Hellwigfcafb712009-02-09 08:47:34 +01001406#ifdef CONFIG_XFS_QUOTA
Nathan Scotta50cd262006-03-14 14:06:18 +11001407 sb->s_qcop = &xfs_quotactl_operations;
Jan Kara17ef4fd2014-09-30 22:35:33 +02001408 sb->s_quota_types = QTYPE_MASK_USR | QTYPE_MASK_GRP | QTYPE_MASK_PRJ;
Christoph Hellwigfcafb712009-02-09 08:47:34 +01001409#endif
Nathan Scotta50cd262006-03-14 14:06:18 +11001410 sb->s_op = &xfs_super_operations;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411
Dave Chinnerdae5cd82018-05-10 21:50:23 -07001412 /*
1413 * Delay mount work if the debug hook is set. This is debug
1414 * instrumention to coordinate simulation of xfs mount failures with
1415 * VFS superblock operations
1416 */
1417 if (xfs_globals.mount_delay) {
1418 xfs_notice(mp, "Delaying mount for %d seconds.",
1419 xfs_globals.mount_delay);
1420 msleep(xfs_globals.mount_delay * 1000);
1421 }
1422
Ian Kent73e5fff2019-11-04 13:58:46 -08001423 if (fc->sb_flags & SB_SILENT)
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001424 flags |= XFS_MFSI_QUIET;
1425
Christoph Hellwig9d565ff2008-10-30 17:53:24 +11001426 error = xfs_open_devices(mp);
Christoph Hellwig19f354d2008-05-20 11:31:13 +10001427 if (error)
Ian Kente1d3d212019-11-04 13:58:40 -08001428 goto out_free_names;
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001429
Dave Chinner24513372014-06-25 14:58:08 +10001430 error = xfs_init_mount_workqueues(mp);
Christoph Hellwig61ba35d2010-09-30 02:25:54 +00001431 if (error)
1432 goto out_close_devices;
Christoph Hellwigc962fb72008-05-20 15:10:52 +10001433
Dave Chinner5681ca42015-02-23 21:22:31 +11001434 error = xfs_init_percpu_counters(mp);
Christoph Hellwigaa6bf012012-02-29 09:53:48 +00001435 if (error)
1436 goto out_destroy_workqueues;
1437
Bill O'Donnell225e4632015-10-12 18:21:19 +11001438 /* Allocate stats memory before we do operations that might use it */
1439 mp->m_stats.xs_stats = alloc_percpu(struct xfsstats);
1440 if (!mp->m_stats.xs_stats) {
Dan Carpenterf9d460b2015-10-19 08:42:47 +11001441 error = -ENOMEM;
Bill O'Donnell225e4632015-10-12 18:21:19 +11001442 goto out_destroy_counters;
1443 }
1444
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001445 error = xfs_readsb(mp, flags);
1446 if (error)
Bill O'Donnell225e4632015-10-12 18:21:19 +11001447 goto out_free_stats;
Christoph Hellwig9d565ff2008-10-30 17:53:24 +11001448
1449 error = xfs_finish_flags(mp);
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001450 if (error)
Christoph Hellwigeffa2ed2008-05-20 15:11:05 +10001451 goto out_free_sb;
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001452
Christoph Hellwige34b5622008-05-20 15:10:36 +10001453 error = xfs_setup_devices(mp);
Christoph Hellwig19f354d2008-05-20 11:31:13 +10001454 if (error)
Christoph Hellwigeffa2ed2008-05-20 15:11:05 +10001455 goto out_free_sb;
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001456
Darrick J. Wongb96cb832020-09-10 10:57:17 -07001457 /* V4 support is undergoing deprecation. */
1458 if (!xfs_sb_version_hascrc(&mp->m_sb)) {
1459#ifdef CONFIG_XFS_SUPPORT_V4
1460 xfs_warn_once(mp,
1461 "Deprecated V4 format (crc=0) will not be supported after September 2030.");
1462#else
1463 xfs_warn(mp,
1464 "Deprecated V4 format (crc=0) not supported by kernel.");
1465 error = -EINVAL;
1466 goto out_free_sb;
1467#endif
1468 }
1469
Darrick J. Wong932befe2020-01-02 13:20:13 -08001470 /*
1471 * XFS block mappings use 54 bits to store the logical block offset.
1472 * This should suffice to handle the maximum file size that the VFS
1473 * supports (currently 2^63 bytes on 64-bit and ULONG_MAX << PAGE_SHIFT
1474 * bytes on 32-bit), but as XFS and VFS have gotten the s_maxbytes
1475 * calculation wrong on 32-bit kernels in the past, we'll add a WARN_ON
1476 * to check this assertion.
1477 *
1478 * Avoid integer overflow by comparing the maximum bmbt offset to the
1479 * maximum pagecache offset in units of fs blocks.
1480 */
1481 if (XFS_B_TO_FSBT(mp, MAX_LFS_FILESIZE) > XFS_MAX_FILEOFF) {
1482 xfs_warn(mp,
1483"MAX_LFS_FILESIZE block offset (%llu) exceeds extent map maximum (%llu)!",
1484 XFS_B_TO_FSBT(mp, MAX_LFS_FILESIZE),
1485 XFS_MAX_FILEOFF);
1486 error = -EINVAL;
1487 goto out_free_sb;
1488 }
1489
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001490 error = xfs_filestream_mount(mp);
1491 if (error)
Christoph Hellwigeffa2ed2008-05-20 15:11:05 +10001492 goto out_free_sb;
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001493
Dave Chinner704b2902011-03-26 09:14:57 +11001494 /*
1495 * we must configure the block size in the superblock before we run the
1496 * full mount process as the mount process can lookup and cache inodes.
Dave Chinner704b2902011-03-26 09:14:57 +11001497 */
Adam Borowskidddde682018-10-18 17:20:19 +11001498 sb->s_magic = XFS_SUPER_MAGIC;
Christoph Hellwig4ca488e2007-10-11 18:09:40 +10001499 sb->s_blocksize = mp->m_sb.sb_blocksize;
1500 sb->s_blocksize_bits = ffs(sb->s_blocksize) - 1;
Darrick J. Wong932befe2020-01-02 13:20:13 -08001501 sb->s_maxbytes = MAX_LFS_FILESIZE;
Al Viro8de52772012-02-06 12:45:27 -05001502 sb->s_max_links = XFS_MAXLINK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503 sb->s_time_gran = 1;
Darrick J. Wongf93e54362020-08-17 09:59:07 -07001504 if (xfs_sb_version_hasbigtime(&mp->m_sb)) {
1505 sb->s_time_min = xfs_bigtime_to_unix(XFS_BIGTIME_TIME_MIN);
1506 sb->s_time_max = xfs_bigtime_to_unix(XFS_BIGTIME_TIME_MAX);
1507 } else {
1508 sb->s_time_min = XFS_LEGACY_TIME_MIN;
1509 sb->s_time_max = XFS_LEGACY_TIME_MAX;
1510 }
Darrick J. Wong06dbf822020-08-24 11:58:01 -07001511 trace_xfs_inode_timestamp_range(mp, sb->s_time_min, sb->s_time_max);
Christoph Hellwigadfb5fb2019-06-28 19:30:22 -07001512 sb->s_iflags |= SB_I_CGROUPWB;
1513
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514 set_posix_acl_flag(sb);
1515
Dave Chinnerdc037ad2013-06-27 16:04:59 +10001516 /* version 5 superblocks support inode version counters. */
1517 if (XFS_SB_VERSION_NUM(&mp->m_sb) == XFS_SB_VERSION_5)
Matthew Garrett357fdad2017-10-18 13:56:26 -07001518 sb->s_flags |= SB_I_VERSION;
Dave Chinnerdc037ad2013-06-27 16:04:59 +10001519
Darrick J. Wongf93e54362020-08-17 09:59:07 -07001520 if (xfs_sb_version_hasbigtime(&mp->m_sb))
1521 xfs_warn(mp,
1522 "EXPERIMENTAL big timestamp feature in use. Use at your own risk!");
1523
Ira Weiny606723d2020-05-04 09:02:41 -07001524 if (mp->m_flags & XFS_MOUNT_DAX_ALWAYS) {
Dave Jiang80660f22018-05-30 13:03:46 -07001525 bool rtdev_is_dax = false, datadev_is_dax;
Darrick J. Wongba23cba2018-05-30 13:03:45 -07001526
Dave Chinnercbe4dab2015-06-04 09:19:18 +10001527 xfs_warn(mp,
Toshi Kani1e937cd2016-05-10 10:23:56 -06001528 "DAX enabled. Warning: EXPERIMENTAL, use at your own risk");
1529
Dave Jiang80660f22018-05-30 13:03:46 -07001530 datadev_is_dax = bdev_dax_supported(mp->m_ddev_targp->bt_bdev,
1531 sb->s_blocksize);
Darrick J. Wongba23cba2018-05-30 13:03:45 -07001532 if (mp->m_rtdev_targp)
Dave Jiang80660f22018-05-30 13:03:46 -07001533 rtdev_is_dax = bdev_dax_supported(
1534 mp->m_rtdev_targp->bt_bdev, sb->s_blocksize);
1535 if (!rtdev_is_dax && !datadev_is_dax) {
Dave Chinnercbe4dab2015-06-04 09:19:18 +10001536 xfs_alert(mp,
Toshi Kani1e937cd2016-05-10 10:23:56 -06001537 "DAX unsupported by block device. Turning off DAX.");
Ira Weiny8d6c3442020-05-04 09:02:42 -07001538 xfs_mount_set_dax_mode(mp, XFS_DAX_NEVER);
Dave Chinnercbe4dab2015-06-04 09:19:18 +10001539 }
Darrick J. Wongb6e03c12018-01-31 14:21:56 -08001540 if (xfs_sb_version_hasreflink(&mp->m_sb)) {
Darrick J. Wonge54b5bf2016-10-03 09:11:52 -07001541 xfs_alert(mp,
Christoph Hellwig1e369b02018-01-08 13:30:08 -08001542 "DAX and reflink cannot be used together!");
Darrick J. Wongb6e03c12018-01-31 14:21:56 -08001543 error = -EINVAL;
1544 goto out_filestream_unmount;
1545 }
Dave Chinnercbe4dab2015-06-04 09:19:18 +10001546 }
1547
Kenjiro Nakayama1e6fa682017-09-18 12:03:56 -07001548 if (mp->m_flags & XFS_MOUNT_DISCARD) {
1549 struct request_queue *q = bdev_get_queue(sb->s_bdev);
1550
1551 if (!blk_queue_discard(q)) {
1552 xfs_warn(mp, "mounting with \"discard\" option, but "
1553 "the device does not support discard");
1554 mp->m_flags &= ~XFS_MOUNT_DISCARD;
1555 }
1556 }
1557
Christoph Hellwig66ae56a2019-02-18 09:38:49 -08001558 if (xfs_sb_version_hasreflink(&mp->m_sb)) {
1559 if (mp->m_sb.sb_rblocks) {
1560 xfs_alert(mp,
Darrick J. Wongc14632d2018-01-31 16:38:18 -08001561 "reflink not compatible with realtime device!");
Christoph Hellwig66ae56a2019-02-18 09:38:49 -08001562 error = -EINVAL;
1563 goto out_filestream_unmount;
1564 }
1565
1566 if (xfs_globals.always_cow) {
1567 xfs_info(mp, "using DEBUG-only always_cow mode.");
1568 mp->m_always_cow = true;
1569 }
Darrick J. Wongc14632d2018-01-31 16:38:18 -08001570 }
1571
Darrick J. Wong76883f72018-01-31 09:47:25 -08001572 if (xfs_sb_version_hasrmapbt(&mp->m_sb) && mp->m_sb.sb_rblocks) {
Darrick J. Wong1c0607a2016-08-03 12:20:57 +10001573 xfs_alert(mp,
Darrick J. Wong76883f72018-01-31 09:47:25 -08001574 "reverse mapping btree not compatible with realtime device!");
1575 error = -EINVAL;
1576 goto out_filestream_unmount;
Darrick J. Wong738f57c2016-08-26 15:59:19 +10001577 }
Darrick J. Wong1c0607a2016-08-03 12:20:57 +10001578
Darrick J. Wong2a399462020-08-17 09:58:01 -07001579 if (xfs_sb_version_hasinobtcounts(&mp->m_sb))
1580 xfs_warn(mp,
1581 "EXPERIMENTAL inode btree counters feature in use. Use at your own risk!");
1582
Dave Chinner8a00ebe2012-04-13 12:10:44 +00001583 error = xfs_mountfs(mp);
Christoph Hellwig2bcf6e92011-07-13 13:43:48 +02001584 if (error)
Dave Chinner7e185302012-10-08 21:56:00 +11001585 goto out_filestream_unmount;
Dave Chinner704b2902011-03-26 09:14:57 +11001586
David Chinner01651642008-08-13 15:45:15 +10001587 root = igrab(VFS_I(mp->m_rootip));
Christoph Hellwigf3dcc132008-03-27 18:00:54 +11001588 if (!root) {
Dave Chinner24513372014-06-25 14:58:08 +10001589 error = -ENOENT;
Dave Chinner8a00ebe2012-04-13 12:10:44 +00001590 goto out_unmount;
Christoph Hellwigcbc89dc2008-02-05 12:14:01 +11001591 }
Al Viro48fde702012-01-08 22:15:13 -05001592 sb->s_root = d_make_root(root);
Christoph Hellwigf3dcc132008-03-27 18:00:54 +11001593 if (!sb->s_root) {
Dave Chinner24513372014-06-25 14:58:08 +10001594 error = -ENOMEM;
Dave Chinner8a00ebe2012-04-13 12:10:44 +00001595 goto out_unmount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596 }
Christoph Hellwig74394492007-08-30 17:21:22 +10001597
Dave Chinner7e185302012-10-08 21:56:00 +11001598 return 0;
1599
1600 out_filestream_unmount:
Christoph Hellwig120226c2008-05-20 15:11:11 +10001601 xfs_filestream_unmount(mp);
Christoph Hellwigeffa2ed2008-05-20 15:11:05 +10001602 out_free_sb:
1603 xfs_freesb(mp);
Bill O'Donnell225e4632015-10-12 18:21:19 +11001604 out_free_stats:
1605 free_percpu(mp->m_stats.xs_stats);
Christoph Hellwig9d565ff2008-10-30 17:53:24 +11001606 out_destroy_counters:
Dave Chinner5681ca42015-02-23 21:22:31 +11001607 xfs_destroy_percpu_counters(mp);
Bill O'Donnell225e4632015-10-12 18:21:19 +11001608 out_destroy_workqueues:
Christoph Hellwigaa6bf012012-02-29 09:53:48 +00001609 xfs_destroy_mount_workqueues(mp);
Christoph Hellwig61ba35d2010-09-30 02:25:54 +00001610 out_close_devices:
Christoph Hellwig19f354d2008-05-20 11:31:13 +10001611 xfs_close_devices(mp);
Ian Kente1d3d212019-11-04 13:58:40 -08001612 out_free_names:
Dave Chinnerc9fbd7b2018-05-10 21:50:23 -07001613 sb->s_fs_info = NULL;
Ian Kenta943f372019-11-04 13:58:42 -08001614 xfs_mount_free(mp);
Dave Chinner24513372014-06-25 14:58:08 +10001615 return error;
Christoph Hellwigf8f15e42008-05-20 11:30:59 +10001616
Christoph Hellwig2bcf6e92011-07-13 13:43:48 +02001617 out_unmount:
Christoph Hellwige48ad3162008-05-20 11:30:52 +10001618 xfs_filestream_unmount(mp);
Christoph Hellwig19f354d2008-05-20 11:31:13 +10001619 xfs_unmountfs(mp);
Christoph Hellwig62033002008-08-13 16:50:21 +10001620 goto out_free_sb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621}
1622
Ian Kent73e5fff2019-11-04 13:58:46 -08001623static int
1624xfs_fc_get_tree(
1625 struct fs_context *fc)
1626{
1627 return get_tree_bdev(fc, xfs_fc_fill_super);
1628}
1629
Ian Kent63cd1e92019-11-04 13:58:47 -08001630static int
1631xfs_remount_rw(
1632 struct xfs_mount *mp)
1633{
1634 struct xfs_sb *sbp = &mp->m_sb;
1635 int error;
1636
1637 if (mp->m_flags & XFS_MOUNT_NORECOVERY) {
1638 xfs_warn(mp,
1639 "ro->rw transition prohibited on norecovery mount");
1640 return -EINVAL;
1641 }
1642
1643 if (XFS_SB_VERSION_NUM(sbp) == XFS_SB_VERSION_5 &&
1644 xfs_sb_has_ro_compat_feature(sbp, XFS_SB_FEAT_RO_COMPAT_UNKNOWN)) {
1645 xfs_warn(mp,
1646 "ro->rw transition prohibited on unknown (0x%x) ro-compat filesystem",
1647 (sbp->sb_features_ro_compat &
1648 XFS_SB_FEAT_RO_COMPAT_UNKNOWN));
1649 return -EINVAL;
1650 }
1651
1652 mp->m_flags &= ~XFS_MOUNT_RDONLY;
1653
1654 /*
1655 * If this is the first remount to writeable state we might have some
1656 * superblock changes to update.
1657 */
1658 if (mp->m_update_sb) {
1659 error = xfs_sync_sb(mp, false);
1660 if (error) {
1661 xfs_warn(mp, "failed to write sb changes");
1662 return error;
1663 }
1664 mp->m_update_sb = false;
1665 }
1666
1667 /*
1668 * Fill out the reserve pool if it is empty. Use the stashed value if
1669 * it is non-zero, otherwise go with the default.
1670 */
1671 xfs_restore_resvblks(mp);
1672 xfs_log_work_queue(mp);
1673
1674 /* Recover any CoW blocks that never got remapped. */
1675 error = xfs_reflink_recover_cow(mp);
1676 if (error) {
1677 xfs_err(mp,
1678 "Error %d recovering leftover CoW allocations.", error);
Dan Carpenter7f6bcf72019-11-08 08:06:36 -08001679 xfs_force_shutdown(mp, SHUTDOWN_CORRUPT_INCORE);
Ian Kent63cd1e92019-11-04 13:58:47 -08001680 return error;
1681 }
1682 xfs_start_block_reaping(mp);
1683
1684 /* Create the per-AG metadata reservation pool .*/
1685 error = xfs_fs_reserve_ag_blocks(mp);
1686 if (error && error != -ENOSPC)
1687 return error;
1688
1689 return 0;
1690}
1691
1692static int
1693xfs_remount_ro(
1694 struct xfs_mount *mp)
1695{
1696 int error;
1697
1698 /*
1699 * Cancel background eofb scanning so it cannot race with the final
1700 * log force+buftarg wait and deadlock the remount.
1701 */
1702 xfs_stop_block_reaping(mp);
1703
1704 /* Get rid of any leftover CoW reservations... */
1705 error = xfs_icache_free_cowblocks(mp, NULL);
1706 if (error) {
1707 xfs_force_shutdown(mp, SHUTDOWN_CORRUPT_INCORE);
1708 return error;
1709 }
1710
1711 /* Free the per-AG metadata reservation pool. */
1712 error = xfs_fs_unreserve_ag_blocks(mp);
1713 if (error) {
1714 xfs_force_shutdown(mp, SHUTDOWN_CORRUPT_INCORE);
1715 return error;
1716 }
1717
1718 /*
1719 * Before we sync the metadata, we need to free up the reserve block
1720 * pool so that the used block count in the superblock on disk is
1721 * correct at the end of the remount. Stash the current* reserve pool
1722 * size so that if we get remounted rw, we can return it to the same
1723 * size.
1724 */
1725 xfs_save_resvblks(mp);
1726
1727 xfs_quiesce_attr(mp);
1728 mp->m_flags |= XFS_MOUNT_RDONLY;
1729
1730 return 0;
1731}
1732
1733/*
1734 * Logically we would return an error here to prevent users from believing
1735 * they might have changed mount options using remount which can't be changed.
1736 *
1737 * But unfortunately mount(8) adds all options from mtab and fstab to the mount
1738 * arguments in some cases so we can't blindly reject options, but have to
1739 * check for each specified option if it actually differs from the currently
1740 * set option and only reject it if that's the case.
1741 *
1742 * Until that is implemented we return success for every remount request, and
1743 * silently ignore all options that we can't actually change.
1744 */
1745static int
1746xfs_fc_reconfigure(
1747 struct fs_context *fc)
1748{
1749 struct xfs_mount *mp = XFS_M(fc->root->d_sb);
1750 struct xfs_mount *new_mp = fc->s_fs_info;
1751 xfs_sb_t *sbp = &mp->m_sb;
1752 int flags = fc->sb_flags;
1753 int error;
1754
Eric Sandeen4750a172020-07-15 08:30:37 -07001755 /* version 5 superblocks always support version counters. */
1756 if (XFS_SB_VERSION_NUM(&mp->m_sb) == XFS_SB_VERSION_5)
1757 fc->sb_flags |= SB_I_VERSION;
1758
Ian Kent63cd1e92019-11-04 13:58:47 -08001759 error = xfs_fc_validate_params(new_mp);
1760 if (error)
1761 return error;
1762
1763 sync_filesystem(mp->m_super);
1764
1765 /* inode32 -> inode64 */
1766 if ((mp->m_flags & XFS_MOUNT_SMALL_INUMS) &&
1767 !(new_mp->m_flags & XFS_MOUNT_SMALL_INUMS)) {
1768 mp->m_flags &= ~XFS_MOUNT_SMALL_INUMS;
1769 mp->m_maxagi = xfs_set_inode_alloc(mp, sbp->sb_agcount);
1770 }
1771
1772 /* inode64 -> inode32 */
1773 if (!(mp->m_flags & XFS_MOUNT_SMALL_INUMS) &&
1774 (new_mp->m_flags & XFS_MOUNT_SMALL_INUMS)) {
1775 mp->m_flags |= XFS_MOUNT_SMALL_INUMS;
1776 mp->m_maxagi = xfs_set_inode_alloc(mp, sbp->sb_agcount);
1777 }
1778
1779 /* ro -> rw */
1780 if ((mp->m_flags & XFS_MOUNT_RDONLY) && !(flags & SB_RDONLY)) {
1781 error = xfs_remount_rw(mp);
1782 if (error)
1783 return error;
1784 }
1785
1786 /* rw -> ro */
1787 if (!(mp->m_flags & XFS_MOUNT_RDONLY) && (flags & SB_RDONLY)) {
1788 error = xfs_remount_ro(mp);
1789 if (error)
1790 return error;
1791 }
1792
1793 return 0;
1794}
1795
Ian Kent73e5fff2019-11-04 13:58:46 -08001796static void xfs_fc_free(
1797 struct fs_context *fc)
1798{
1799 struct xfs_mount *mp = fc->s_fs_info;
1800
1801 /*
1802 * mp is stored in the fs_context when it is initialized.
1803 * mp is transferred to the superblock on a successful mount,
1804 * but if an error occurs before the transfer we have to free
1805 * it here.
1806 */
1807 if (mp)
1808 xfs_mount_free(mp);
1809}
1810
1811static const struct fs_context_operations xfs_context_ops = {
1812 .parse_param = xfs_fc_parse_param,
1813 .get_tree = xfs_fc_get_tree,
1814 .reconfigure = xfs_fc_reconfigure,
1815 .free = xfs_fc_free,
1816};
1817
1818static int xfs_init_fs_context(
1819 struct fs_context *fc)
1820{
1821 struct xfs_mount *mp;
1822
Ian Kent50f83002019-11-04 13:58:48 -08001823 mp = kmem_alloc(sizeof(struct xfs_mount), KM_ZERO);
Ian Kent73e5fff2019-11-04 13:58:46 -08001824 if (!mp)
1825 return -ENOMEM;
1826
Ian Kent50f83002019-11-04 13:58:48 -08001827 spin_lock_init(&mp->m_sb_lock);
1828 spin_lock_init(&mp->m_agirotor_lock);
1829 INIT_RADIX_TREE(&mp->m_perag_tree, GFP_ATOMIC);
1830 spin_lock_init(&mp->m_perag_lock);
1831 mutex_init(&mp->m_growlock);
Darrick J. Wongf0f7a672020-04-12 13:11:10 -07001832 INIT_WORK(&mp->m_flush_inodes_work, xfs_flush_inodes_worker);
Ian Kent50f83002019-11-04 13:58:48 -08001833 INIT_DELAYED_WORK(&mp->m_reclaim_work, xfs_reclaim_worker);
1834 INIT_DELAYED_WORK(&mp->m_eofblocks_work, xfs_eofblocks_worker);
1835 INIT_DELAYED_WORK(&mp->m_cowblocks_work, xfs_cowblocks_worker);
1836 mp->m_kobj.kobject.kset = xfs_kset;
1837 /*
1838 * We don't create the finobt per-ag space reservation until after log
1839 * recovery, so we must set this to true so that an ifree transaction
1840 * started during log recovery will not depend on space reservations
1841 * for finobt expansion.
1842 */
1843 mp->m_finobt_nores = true;
1844
Ian Kent73e5fff2019-11-04 13:58:46 -08001845 /*
1846 * These can be overridden by the mount option parsing.
1847 */
1848 mp->m_logbufs = -1;
1849 mp->m_logbsize = -1;
1850 mp->m_allocsize_log = 16; /* 64k */
1851
1852 /*
1853 * Copy binary VFS mount flags we are interested in.
1854 */
1855 if (fc->sb_flags & SB_RDONLY)
1856 mp->m_flags |= XFS_MOUNT_RDONLY;
1857 if (fc->sb_flags & SB_DIRSYNC)
1858 mp->m_flags |= XFS_MOUNT_DIRSYNC;
1859 if (fc->sb_flags & SB_SYNCHRONOUS)
1860 mp->m_flags |= XFS_MOUNT_WSYNC;
1861
1862 fc->s_fs_info = mp;
1863 fc->ops = &xfs_context_ops;
1864
1865 return 0;
1866}
1867
Andrew Morton5085b602007-02-20 13:57:47 -08001868static struct file_system_type xfs_fs_type = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869 .owner = THIS_MODULE,
1870 .name = "xfs",
Ian Kent73e5fff2019-11-04 13:58:46 -08001871 .init_fs_context = xfs_init_fs_context,
Al Virod7167b12019-09-07 07:23:15 -04001872 .parameters = xfs_fs_parameters,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873 .kill_sb = kill_block_super,
1874 .fs_flags = FS_REQUIRES_DEV,
1875};
Eric W. Biederman7f78e032013-03-02 19:39:14 -08001876MODULE_ALIAS_FS("xfs");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001878STATIC int __init
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001879xfs_init_zones(void)
1880{
Carlos Maiolinob1231762019-11-14 12:43:03 -08001881 xfs_log_ticket_zone = kmem_cache_create("xfs_log_ticket",
1882 sizeof(struct xlog_ticket),
1883 0, 0, NULL);
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001884 if (!xfs_log_ticket_zone)
Christoph Hellwig598ecfb2019-10-17 13:12:15 -07001885 goto out;
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001886
Carlos Maiolinob1231762019-11-14 12:43:03 -08001887 xfs_bmap_free_item_zone = kmem_cache_create("xfs_bmap_free_item",
1888 sizeof(struct xfs_extent_free_item),
1889 0, 0, NULL);
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001890 if (!xfs_bmap_free_item_zone)
1891 goto out_destroy_log_ticket_zone;
David Chinnerbf904242008-10-30 17:36:14 +11001892
Carlos Maiolinob1231762019-11-14 12:43:03 -08001893 xfs_btree_cur_zone = kmem_cache_create("xfs_btree_cur",
1894 sizeof(struct xfs_btree_cur),
1895 0, 0, NULL);
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001896 if (!xfs_btree_cur_zone)
1897 goto out_destroy_bmap_free_item_zone;
1898
Carlos Maiolinob1231762019-11-14 12:43:03 -08001899 xfs_da_state_zone = kmem_cache_create("xfs_da_state",
1900 sizeof(struct xfs_da_state),
1901 0, 0, NULL);
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001902 if (!xfs_da_state_zone)
1903 goto out_destroy_btree_cur_zone;
1904
Carlos Maiolinob1231762019-11-14 12:43:03 -08001905 xfs_ifork_zone = kmem_cache_create("xfs_ifork",
1906 sizeof(struct xfs_ifork),
1907 0, 0, NULL);
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001908 if (!xfs_ifork_zone)
Dave Chinner1d9025e2012-06-22 18:50:14 +10001909 goto out_destroy_da_state_zone;
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001910
Carlos Maiolinob1231762019-11-14 12:43:03 -08001911 xfs_trans_zone = kmem_cache_create("xf_trans",
1912 sizeof(struct xfs_trans),
1913 0, 0, NULL);
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001914 if (!xfs_trans_zone)
1915 goto out_destroy_ifork_zone;
1916
Christoph Hellwige98c4142010-06-23 18:11:15 +10001917
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001918 /*
1919 * The size of the zone allocated buf log item is the maximum
1920 * size possible under XFS. This wastes a little bit of memory,
1921 * but it is much faster.
1922 */
Carlos Maiolinob1231762019-11-14 12:43:03 -08001923 xfs_buf_item_zone = kmem_cache_create("xfs_buf_item",
1924 sizeof(struct xfs_buf_log_item),
1925 0, 0, NULL);
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001926 if (!xfs_buf_item_zone)
Dave Chinnere6631f82018-05-09 07:49:37 -07001927 goto out_destroy_trans_zone;
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001928
Carlos Maiolinob1231762019-11-14 12:43:03 -08001929 xfs_efd_zone = kmem_cache_create("xfs_efd_item",
1930 (sizeof(struct xfs_efd_log_item) +
1931 (XFS_EFD_MAX_FAST_EXTENTS - 1) *
1932 sizeof(struct xfs_extent)),
1933 0, 0, NULL);
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001934 if (!xfs_efd_zone)
1935 goto out_destroy_buf_item_zone;
1936
Carlos Maiolinob1231762019-11-14 12:43:03 -08001937 xfs_efi_zone = kmem_cache_create("xfs_efi_item",
1938 (sizeof(struct xfs_efi_log_item) +
1939 (XFS_EFI_MAX_FAST_EXTENTS - 1) *
1940 sizeof(struct xfs_extent)),
1941 0, 0, NULL);
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001942 if (!xfs_efi_zone)
1943 goto out_destroy_efd_zone;
1944
Carlos Maiolinob1231762019-11-14 12:43:03 -08001945 xfs_inode_zone = kmem_cache_create("xfs_inode",
1946 sizeof(struct xfs_inode), 0,
1947 (SLAB_HWCACHE_ALIGN |
1948 SLAB_RECLAIM_ACCOUNT |
1949 SLAB_MEM_SPREAD | SLAB_ACCOUNT),
1950 xfs_fs_inode_init_once);
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001951 if (!xfs_inode_zone)
1952 goto out_destroy_efi_zone;
1953
Carlos Maiolinob1231762019-11-14 12:43:03 -08001954 xfs_ili_zone = kmem_cache_create("xfs_ili",
1955 sizeof(struct xfs_inode_log_item), 0,
Dave Chinnerd59eada2020-03-24 20:10:28 -07001956 SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD,
1957 NULL);
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001958 if (!xfs_ili_zone)
1959 goto out_destroy_inode_zone;
Carlos Maiolinob1231762019-11-14 12:43:03 -08001960
1961 xfs_icreate_zone = kmem_cache_create("xfs_icr",
1962 sizeof(struct xfs_icreate_item),
1963 0, 0, NULL);
Dave Chinner3ebe7d22013-06-27 16:04:53 +10001964 if (!xfs_icreate_zone)
1965 goto out_destroy_ili_zone;
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10001966
Carlos Maiolinob1231762019-11-14 12:43:03 -08001967 xfs_rud_zone = kmem_cache_create("xfs_rud_item",
1968 sizeof(struct xfs_rud_log_item),
1969 0, 0, NULL);
Darrick J. Wong5880f2d72016-08-03 12:04:45 +10001970 if (!xfs_rud_zone)
1971 goto out_destroy_icreate_zone;
1972
Carlos Maiolinob1231762019-11-14 12:43:03 -08001973 xfs_rui_zone = kmem_cache_create("xfs_rui_item",
Darrick J. Wongcd001582016-09-19 10:24:27 +10001974 xfs_rui_log_item_sizeof(XFS_RUI_MAX_FAST_EXTENTS),
Carlos Maiolinob1231762019-11-14 12:43:03 -08001975 0, 0, NULL);
Darrick J. Wong5880f2d72016-08-03 12:04:45 +10001976 if (!xfs_rui_zone)
1977 goto out_destroy_rud_zone;
1978
Carlos Maiolinob1231762019-11-14 12:43:03 -08001979 xfs_cud_zone = kmem_cache_create("xfs_cud_item",
1980 sizeof(struct xfs_cud_log_item),
1981 0, 0, NULL);
Darrick J. Wongbaf4bcac2016-10-03 09:11:20 -07001982 if (!xfs_cud_zone)
1983 goto out_destroy_rui_zone;
1984
Carlos Maiolinob1231762019-11-14 12:43:03 -08001985 xfs_cui_zone = kmem_cache_create("xfs_cui_item",
Darrick J. Wongbaf4bcac2016-10-03 09:11:20 -07001986 xfs_cui_log_item_sizeof(XFS_CUI_MAX_FAST_EXTENTS),
Carlos Maiolinob1231762019-11-14 12:43:03 -08001987 0, 0, NULL);
Darrick J. Wongbaf4bcac2016-10-03 09:11:20 -07001988 if (!xfs_cui_zone)
1989 goto out_destroy_cud_zone;
1990
Carlos Maiolinob1231762019-11-14 12:43:03 -08001991 xfs_bud_zone = kmem_cache_create("xfs_bud_item",
1992 sizeof(struct xfs_bud_log_item),
1993 0, 0, NULL);
Darrick J. Wong6413a012016-10-03 09:11:25 -07001994 if (!xfs_bud_zone)
1995 goto out_destroy_cui_zone;
1996
Carlos Maiolinob1231762019-11-14 12:43:03 -08001997 xfs_bui_zone = kmem_cache_create("xfs_bui_item",
Darrick J. Wong6413a012016-10-03 09:11:25 -07001998 xfs_bui_log_item_sizeof(XFS_BUI_MAX_FAST_EXTENTS),
Carlos Maiolinob1231762019-11-14 12:43:03 -08001999 0, 0, NULL);
Darrick J. Wong6413a012016-10-03 09:11:25 -07002000 if (!xfs_bui_zone)
2001 goto out_destroy_bud_zone;
2002
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10002003 return 0;
2004
Darrick J. Wong6413a012016-10-03 09:11:25 -07002005 out_destroy_bud_zone:
Carlos Maiolinoaaf54eb2019-11-14 12:43:04 -08002006 kmem_cache_destroy(xfs_bud_zone);
Darrick J. Wong6413a012016-10-03 09:11:25 -07002007 out_destroy_cui_zone:
Carlos Maiolinoaaf54eb2019-11-14 12:43:04 -08002008 kmem_cache_destroy(xfs_cui_zone);
Darrick J. Wongbaf4bcac2016-10-03 09:11:20 -07002009 out_destroy_cud_zone:
Carlos Maiolinoaaf54eb2019-11-14 12:43:04 -08002010 kmem_cache_destroy(xfs_cud_zone);
Darrick J. Wongbaf4bcac2016-10-03 09:11:20 -07002011 out_destroy_rui_zone:
Carlos Maiolinoaaf54eb2019-11-14 12:43:04 -08002012 kmem_cache_destroy(xfs_rui_zone);
Darrick J. Wong5880f2d72016-08-03 12:04:45 +10002013 out_destroy_rud_zone:
Carlos Maiolinoaaf54eb2019-11-14 12:43:04 -08002014 kmem_cache_destroy(xfs_rud_zone);
Darrick J. Wong5880f2d72016-08-03 12:04:45 +10002015 out_destroy_icreate_zone:
Carlos Maiolinoaaf54eb2019-11-14 12:43:04 -08002016 kmem_cache_destroy(xfs_icreate_zone);
Dave Chinner3ebe7d22013-06-27 16:04:53 +10002017 out_destroy_ili_zone:
Carlos Maiolinoaaf54eb2019-11-14 12:43:04 -08002018 kmem_cache_destroy(xfs_ili_zone);
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10002019 out_destroy_inode_zone:
Carlos Maiolinoaaf54eb2019-11-14 12:43:04 -08002020 kmem_cache_destroy(xfs_inode_zone);
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10002021 out_destroy_efi_zone:
Carlos Maiolinoaaf54eb2019-11-14 12:43:04 -08002022 kmem_cache_destroy(xfs_efi_zone);
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10002023 out_destroy_efd_zone:
Carlos Maiolinoaaf54eb2019-11-14 12:43:04 -08002024 kmem_cache_destroy(xfs_efd_zone);
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10002025 out_destroy_buf_item_zone:
Carlos Maiolinoaaf54eb2019-11-14 12:43:04 -08002026 kmem_cache_destroy(xfs_buf_item_zone);
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10002027 out_destroy_trans_zone:
Carlos Maiolinoaaf54eb2019-11-14 12:43:04 -08002028 kmem_cache_destroy(xfs_trans_zone);
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10002029 out_destroy_ifork_zone:
Carlos Maiolinoaaf54eb2019-11-14 12:43:04 -08002030 kmem_cache_destroy(xfs_ifork_zone);
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10002031 out_destroy_da_state_zone:
Carlos Maiolinoaaf54eb2019-11-14 12:43:04 -08002032 kmem_cache_destroy(xfs_da_state_zone);
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10002033 out_destroy_btree_cur_zone:
Carlos Maiolinoaaf54eb2019-11-14 12:43:04 -08002034 kmem_cache_destroy(xfs_btree_cur_zone);
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10002035 out_destroy_bmap_free_item_zone:
Carlos Maiolinoaaf54eb2019-11-14 12:43:04 -08002036 kmem_cache_destroy(xfs_bmap_free_item_zone);
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10002037 out_destroy_log_ticket_zone:
Carlos Maiolinoaaf54eb2019-11-14 12:43:04 -08002038 kmem_cache_destroy(xfs_log_ticket_zone);
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10002039 out:
2040 return -ENOMEM;
2041}
2042
2043STATIC void
2044xfs_destroy_zones(void)
2045{
Kirill A. Shutemov8c0a8532012-09-26 11:33:07 +10002046 /*
2047 * Make sure all delayed rcu free are flushed before we
2048 * destroy caches.
2049 */
2050 rcu_barrier();
Carlos Maiolinoaaf54eb2019-11-14 12:43:04 -08002051 kmem_cache_destroy(xfs_bui_zone);
2052 kmem_cache_destroy(xfs_bud_zone);
2053 kmem_cache_destroy(xfs_cui_zone);
2054 kmem_cache_destroy(xfs_cud_zone);
2055 kmem_cache_destroy(xfs_rui_zone);
2056 kmem_cache_destroy(xfs_rud_zone);
2057 kmem_cache_destroy(xfs_icreate_zone);
2058 kmem_cache_destroy(xfs_ili_zone);
2059 kmem_cache_destroy(xfs_inode_zone);
2060 kmem_cache_destroy(xfs_efi_zone);
2061 kmem_cache_destroy(xfs_efd_zone);
2062 kmem_cache_destroy(xfs_buf_item_zone);
2063 kmem_cache_destroy(xfs_trans_zone);
2064 kmem_cache_destroy(xfs_ifork_zone);
2065 kmem_cache_destroy(xfs_da_state_zone);
2066 kmem_cache_destroy(xfs_btree_cur_zone);
2067 kmem_cache_destroy(xfs_bmap_free_item_zone);
2068 kmem_cache_destroy(xfs_log_ticket_zone);
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10002069}
2070
2071STATIC int __init
Dave Chinner0bf6a5b2011-04-08 12:45:07 +10002072xfs_init_workqueues(void)
2073{
2074 /*
Dave Chinnerc999a222012-03-22 05:15:07 +00002075 * The allocation workqueue can be used in memory reclaim situations
2076 * (writepage path), and parallelism is only limited by the number of
2077 * AGs in all the filesystems mounted. Hence use the default large
2078 * max_active value for this workqueue.
2079 */
Brian Foster8018ec02014-09-09 11:44:46 +10002080 xfs_alloc_wq = alloc_workqueue("xfsalloc",
2081 WQ_MEM_RECLAIM|WQ_FREEZABLE, 0);
Dave Chinnerc999a222012-03-22 05:15:07 +00002082 if (!xfs_alloc_wq)
Dave Chinner58896082012-10-08 21:56:05 +11002083 return -ENOMEM;
Dave Chinnerc999a222012-03-22 05:15:07 +00002084
Christoph Hellwig4560e782017-02-07 14:07:58 -08002085 xfs_discard_wq = alloc_workqueue("xfsdiscard", WQ_UNBOUND, 0);
2086 if (!xfs_discard_wq)
2087 goto out_free_alloc_wq;
2088
Dave Chinner0bf6a5b2011-04-08 12:45:07 +10002089 return 0;
Christoph Hellwig4560e782017-02-07 14:07:58 -08002090out_free_alloc_wq:
2091 destroy_workqueue(xfs_alloc_wq);
2092 return -ENOMEM;
Dave Chinner0bf6a5b2011-04-08 12:45:07 +10002093}
2094
Luck, Tony39411f82011-04-11 12:06:12 -07002095STATIC void
Dave Chinner0bf6a5b2011-04-08 12:45:07 +10002096xfs_destroy_workqueues(void)
2097{
Christoph Hellwig4560e782017-02-07 14:07:58 -08002098 destroy_workqueue(xfs_discard_wq);
Dave Chinnerc999a222012-03-22 05:15:07 +00002099 destroy_workqueue(xfs_alloc_wq);
Dave Chinner0bf6a5b2011-04-08 12:45:07 +10002100}
2101
2102STATIC int __init
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10002103init_xfs_fs(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104{
2105 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106
Darrick J. Wong30cbc592016-03-09 08:15:14 +11002107 xfs_check_ondisk_structs();
2108
Christoph Hellwig65795912008-11-28 14:23:33 +11002109 printk(KERN_INFO XFS_VERSION_STRING " with "
2110 XFS_BUILD_OPTIONS " enabled\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10002112 xfs_dir_startup();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113
Nathan Scott87582802006-03-14 13:18:19 +11002114 error = xfs_init_zones();
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10002115 if (error)
2116 goto out;
2117
Dave Chinner0bf6a5b2011-04-08 12:45:07 +10002118 error = xfs_init_workqueues();
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10002119 if (error)
Christoph Hellwig0b1b2132009-12-14 23:14:59 +00002120 goto out_destroy_zones;
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10002121
Dave Chinner0bf6a5b2011-04-08 12:45:07 +10002122 error = xfs_mru_cache_init();
2123 if (error)
2124 goto out_destroy_wq;
2125
Nathan Scottce8e9222006-01-11 15:39:08 +11002126 error = xfs_buf_init();
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10002127 if (error)
Christoph Hellwig1919add2014-04-23 07:11:51 +10002128 goto out_mru_cache_uninit;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10002130 error = xfs_init_procfs();
2131 if (error)
2132 goto out_buf_terminate;
2133
2134 error = xfs_sysctl_register();
2135 if (error)
2136 goto out_cleanup_procfs;
2137
Brian Foster3d871222014-07-15 07:41:37 +10002138 xfs_kset = kset_create_and_add("xfs", NULL, fs_kobj);
2139 if (!xfs_kset) {
2140 error = -ENOMEM;
Bill O'Donnellbb230c12015-10-12 05:15:45 +11002141 goto out_sysctl_unregister;
Brian Foster3d871222014-07-15 07:41:37 +10002142 }
2143
Bill O'Donnell80529c42015-10-12 05:19:45 +11002144 xfsstats.xs_kobj.kobject.kset = xfs_kset;
2145
2146 xfsstats.xs_stats = alloc_percpu(struct xfsstats);
2147 if (!xfsstats.xs_stats) {
2148 error = -ENOMEM;
2149 goto out_kset_unregister;
2150 }
2151
2152 error = xfs_sysfs_init(&xfsstats.xs_kobj, &xfs_stats_ktype, NULL,
Bill O'Donnellbb230c12015-10-12 05:15:45 +11002153 "stats");
2154 if (error)
Bill O'Donnell80529c42015-10-12 05:19:45 +11002155 goto out_free_stats;
Bill O'Donnellbb230c12015-10-12 05:15:45 +11002156
Brian Foster65b65732014-09-09 11:52:42 +10002157#ifdef DEBUG
2158 xfs_dbg_kobj.kobject.kset = xfs_kset;
2159 error = xfs_sysfs_init(&xfs_dbg_kobj, &xfs_dbg_ktype, NULL, "debug");
Christoph Hellwiga05931c2012-03-13 08:52:37 +00002160 if (error)
Bill O'Donnellbb230c12015-10-12 05:15:45 +11002161 goto out_remove_stats_kobj;
Brian Foster65b65732014-09-09 11:52:42 +10002162#endif
2163
2164 error = xfs_qm_init();
2165 if (error)
Bill O'Donnellbb230c12015-10-12 05:15:45 +11002166 goto out_remove_dbg_kobj;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002167
2168 error = register_filesystem(&xfs_fs_type);
2169 if (error)
Christoph Hellwiga05931c2012-03-13 08:52:37 +00002170 goto out_qm_exit;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002171 return 0;
2172
Christoph Hellwiga05931c2012-03-13 08:52:37 +00002173 out_qm_exit:
2174 xfs_qm_exit();
Bill O'Donnellbb230c12015-10-12 05:15:45 +11002175 out_remove_dbg_kobj:
Brian Foster65b65732014-09-09 11:52:42 +10002176#ifdef DEBUG
2177 xfs_sysfs_del(&xfs_dbg_kobj);
Bill O'Donnellbb230c12015-10-12 05:15:45 +11002178 out_remove_stats_kobj:
Brian Foster65b65732014-09-09 11:52:42 +10002179#endif
Bill O'Donnell80529c42015-10-12 05:19:45 +11002180 xfs_sysfs_del(&xfsstats.xs_kobj);
2181 out_free_stats:
2182 free_percpu(xfsstats.xs_stats);
Bill O'Donnellbb230c12015-10-12 05:15:45 +11002183 out_kset_unregister:
Brian Foster3d871222014-07-15 07:41:37 +10002184 kset_unregister(xfs_kset);
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10002185 out_sysctl_unregister:
2186 xfs_sysctl_unregister();
2187 out_cleanup_procfs:
2188 xfs_cleanup_procfs();
2189 out_buf_terminate:
Nathan Scottce8e9222006-01-11 15:39:08 +11002190 xfs_buf_terminate();
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10002191 out_mru_cache_uninit:
2192 xfs_mru_cache_uninit();
Dave Chinner0bf6a5b2011-04-08 12:45:07 +10002193 out_destroy_wq:
2194 xfs_destroy_workqueues();
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10002195 out_destroy_zones:
Nathan Scott87582802006-03-14 13:18:19 +11002196 xfs_destroy_zones();
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10002197 out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002198 return error;
2199}
2200
2201STATIC void __exit
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10002202exit_xfs_fs(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002203{
Christoph Hellwiga05931c2012-03-13 08:52:37 +00002204 xfs_qm_exit();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205 unregister_filesystem(&xfs_fs_type);
Brian Foster65b65732014-09-09 11:52:42 +10002206#ifdef DEBUG
2207 xfs_sysfs_del(&xfs_dbg_kobj);
2208#endif
Bill O'Donnell80529c42015-10-12 05:19:45 +11002209 xfs_sysfs_del(&xfsstats.xs_kobj);
2210 free_percpu(xfsstats.xs_stats);
Brian Foster3d871222014-07-15 07:41:37 +10002211 kset_unregister(xfs_kset);
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10002212 xfs_sysctl_unregister();
2213 xfs_cleanup_procfs();
Nathan Scottce8e9222006-01-11 15:39:08 +11002214 xfs_buf_terminate();
Christoph Hellwig9f8868f2008-07-18 17:11:46 +10002215 xfs_mru_cache_uninit();
Dave Chinner0bf6a5b2011-04-08 12:45:07 +10002216 xfs_destroy_workqueues();
Nathan Scott87582802006-03-14 13:18:19 +11002217 xfs_destroy_zones();
Darrick J. Wongaf3b6382015-11-03 13:06:34 +11002218 xfs_uuid_table_free();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002219}
2220
2221module_init(init_xfs_fs);
2222module_exit(exit_xfs_fs);
2223
2224MODULE_AUTHOR("Silicon Graphics, Inc.");
2225MODULE_DESCRIPTION(XFS_VERSION_STRING " with " XFS_BUILD_OPTIONS " enabled");
2226MODULE_LICENSE("GPL");