Line data Source code
1 : // SPDX-License-Identifier: GPL-2.0
2 : /*
3 : * Copyright (c) 2000-2006 Silicon Graphics, Inc.
4 : * All Rights Reserved.
5 : */
6 :
7 : #include "xfs.h"
8 : #include "xfs_shared.h"
9 : #include "xfs_format.h"
10 : #include "xfs_log_format.h"
11 : #include "xfs_trans_resv.h"
12 : #include "xfs_sb.h"
13 : #include "xfs_mount.h"
14 : #include "xfs_inode.h"
15 : #include "xfs_btree.h"
16 : #include "xfs_bmap.h"
17 : #include "xfs_alloc.h"
18 : #include "xfs_fsops.h"
19 : #include "xfs_trans.h"
20 : #include "xfs_buf_item.h"
21 : #include "xfs_log.h"
22 : #include "xfs_log_priv.h"
23 : #include "xfs_dir2.h"
24 : #include "xfs_extfree_item.h"
25 : #include "xfs_mru_cache.h"
26 : #include "xfs_inode_item.h"
27 : #include "xfs_icache.h"
28 : #include "xfs_trace.h"
29 : #include "xfs_icreate_item.h"
30 : #include "xfs_filestream.h"
31 : #include "xfs_quota.h"
32 : #include "xfs_sysfs.h"
33 : #include "xfs_ondisk.h"
34 : #include "xfs_rmap_item.h"
35 : #include "xfs_refcount_item.h"
36 : #include "xfs_bmap_item.h"
37 : #include "xfs_reflink.h"
38 : #include "xfs_pwork.h"
39 : #include "xfs_ag.h"
40 : #include "xfs_defer.h"
41 : #include "xfs_attr_item.h"
42 : #include "xfs_xattr.h"
43 : #include "xfs_iunlink_item.h"
44 : #include "xfs_dahash_test.h"
45 :
46 : #include <linux/magic.h>
47 : #include <linux/fs_context.h>
48 : #include <linux/fs_parser.h>
49 :
50 : static const struct super_operations xfs_super_operations;
51 :
52 : static struct kset *xfs_kset; /* top-level xfs sysfs dir */
53 : #ifdef DEBUG
54 : static struct xfs_kobj xfs_dbg_kobj; /* global debug sysfs attrs */
55 : #endif
56 :
57 : #ifdef CONFIG_HOTPLUG_CPU
58 : static LIST_HEAD(xfs_mount_list);
59 : static DEFINE_SPINLOCK(xfs_mount_list_lock);
60 :
61 60115 : static inline void xfs_mount_list_add(struct xfs_mount *mp)
62 : {
63 60115 : spin_lock(&xfs_mount_list_lock);
64 60115 : list_add(&mp->m_mount_list, &xfs_mount_list);
65 60115 : spin_unlock(&xfs_mount_list_lock);
66 60115 : }
67 :
68 60122 : static inline void xfs_mount_list_del(struct xfs_mount *mp)
69 : {
70 60122 : spin_lock(&xfs_mount_list_lock);
71 60122 : list_del(&mp->m_mount_list);
72 60122 : spin_unlock(&xfs_mount_list_lock);
73 60122 : }
74 : #else /* !CONFIG_HOTPLUG_CPU */
75 : static inline void xfs_mount_list_add(struct xfs_mount *mp) {}
76 : static inline void xfs_mount_list_del(struct xfs_mount *mp) {}
77 : #endif
78 :
79 : enum xfs_dax_mode {
80 : XFS_DAX_INODE = 0,
81 : XFS_DAX_ALWAYS = 1,
82 : XFS_DAX_NEVER = 2,
83 : };
84 :
85 : static void
86 44 : xfs_mount_set_dax_mode(
87 : struct xfs_mount *mp,
88 : enum xfs_dax_mode mode)
89 : {
90 44 : switch (mode) {
91 0 : case XFS_DAX_INODE:
92 0 : mp->m_features &= ~(XFS_FEAT_DAX_ALWAYS | XFS_FEAT_DAX_NEVER);
93 0 : break;
94 101 : case XFS_DAX_ALWAYS:
95 101 : mp->m_features |= XFS_FEAT_DAX_ALWAYS;
96 101 : mp->m_features &= ~XFS_FEAT_DAX_NEVER;
97 44 : break;
98 0 : case XFS_DAX_NEVER:
99 101 : mp->m_features |= XFS_FEAT_DAX_NEVER;
100 101 : mp->m_features &= ~XFS_FEAT_DAX_ALWAYS;
101 0 : break;
102 : }
103 44 : }
104 :
105 : static const struct constant_table dax_param_enums[] = {
106 : {"inode", XFS_DAX_INODE },
107 : {"always", XFS_DAX_ALWAYS },
108 : {"never", XFS_DAX_NEVER },
109 : {}
110 : };
111 :
112 : /*
113 : * Table driven mount option parser.
114 : */
115 : enum {
116 : Opt_logbufs, Opt_logbsize, Opt_logdev, Opt_rtdev,
117 : Opt_wsync, Opt_noalign, Opt_swalloc, Opt_sunit, Opt_swidth, Opt_nouuid,
118 : Opt_grpid, Opt_nogrpid, Opt_bsdgroups, Opt_sysvgroups,
119 : Opt_allocsize, Opt_norecovery, Opt_inode64, Opt_inode32, Opt_ikeep,
120 : Opt_noikeep, Opt_largeio, Opt_nolargeio, Opt_attr2, Opt_noattr2,
121 : Opt_filestreams, Opt_quota, Opt_noquota, Opt_usrquota, Opt_grpquota,
122 : Opt_prjquota, Opt_uquota, Opt_gquota, Opt_pquota,
123 : Opt_uqnoenforce, Opt_gqnoenforce, Opt_pqnoenforce, Opt_qnoenforce,
124 : Opt_discard, Opt_nodiscard, Opt_dax, Opt_dax_enum,
125 : };
126 :
127 : static const struct fs_parameter_spec xfs_fs_parameters[] = {
128 : fsparam_u32("logbufs", Opt_logbufs),
129 : fsparam_string("logbsize", Opt_logbsize),
130 : fsparam_string("logdev", Opt_logdev),
131 : fsparam_string("rtdev", Opt_rtdev),
132 : fsparam_flag("wsync", Opt_wsync),
133 : fsparam_flag("noalign", Opt_noalign),
134 : fsparam_flag("swalloc", Opt_swalloc),
135 : fsparam_u32("sunit", Opt_sunit),
136 : fsparam_u32("swidth", Opt_swidth),
137 : fsparam_flag("nouuid", Opt_nouuid),
138 : fsparam_flag("grpid", Opt_grpid),
139 : fsparam_flag("nogrpid", Opt_nogrpid),
140 : fsparam_flag("bsdgroups", Opt_bsdgroups),
141 : fsparam_flag("sysvgroups", Opt_sysvgroups),
142 : fsparam_string("allocsize", Opt_allocsize),
143 : fsparam_flag("norecovery", Opt_norecovery),
144 : fsparam_flag("inode64", Opt_inode64),
145 : fsparam_flag("inode32", Opt_inode32),
146 : fsparam_flag("ikeep", Opt_ikeep),
147 : fsparam_flag("noikeep", Opt_noikeep),
148 : fsparam_flag("largeio", Opt_largeio),
149 : fsparam_flag("nolargeio", Opt_nolargeio),
150 : fsparam_flag("attr2", Opt_attr2),
151 : fsparam_flag("noattr2", Opt_noattr2),
152 : fsparam_flag("filestreams", Opt_filestreams),
153 : fsparam_flag("quota", Opt_quota),
154 : fsparam_flag("noquota", Opt_noquota),
155 : fsparam_flag("usrquota", Opt_usrquota),
156 : fsparam_flag("grpquota", Opt_grpquota),
157 : fsparam_flag("prjquota", Opt_prjquota),
158 : fsparam_flag("uquota", Opt_uquota),
159 : fsparam_flag("gquota", Opt_gquota),
160 : fsparam_flag("pquota", Opt_pquota),
161 : fsparam_flag("uqnoenforce", Opt_uqnoenforce),
162 : fsparam_flag("gqnoenforce", Opt_gqnoenforce),
163 : fsparam_flag("pqnoenforce", Opt_pqnoenforce),
164 : fsparam_flag("qnoenforce", Opt_qnoenforce),
165 : fsparam_flag("discard", Opt_discard),
166 : fsparam_flag("nodiscard", Opt_nodiscard),
167 : fsparam_flag("dax", Opt_dax),
168 : fsparam_enum("dax", Opt_dax_enum, dax_param_enums),
169 : {}
170 : };
171 :
172 : struct proc_xfs_info {
173 : uint64_t flag;
174 : char *str;
175 : };
176 :
177 : static int
178 11742365 : xfs_fs_show_options(
179 : struct seq_file *m,
180 : struct dentry *root)
181 : {
182 11742365 : static struct proc_xfs_info xfs_info_set[] = {
183 : /* the few simple ones we can get from the mount struct */
184 : { XFS_FEAT_IKEEP, ",ikeep" },
185 : { XFS_FEAT_WSYNC, ",wsync" },
186 : { XFS_FEAT_NOALIGN, ",noalign" },
187 : { XFS_FEAT_SWALLOC, ",swalloc" },
188 : { XFS_FEAT_NOUUID, ",nouuid" },
189 : { XFS_FEAT_NORECOVERY, ",norecovery" },
190 : { XFS_FEAT_ATTR2, ",attr2" },
191 : { XFS_FEAT_FILESTREAMS, ",filestreams" },
192 : { XFS_FEAT_GRPID, ",grpid" },
193 : { XFS_FEAT_DISCARD, ",discard" },
194 : { XFS_FEAT_LARGE_IOSIZE, ",largeio" },
195 : { XFS_FEAT_DAX_ALWAYS, ",dax=always" },
196 : { XFS_FEAT_DAX_NEVER, ",dax=never" },
197 : { 0, NULL }
198 : };
199 11742365 : struct xfs_mount *mp = XFS_M(root->d_sb);
200 11742365 : struct proc_xfs_info *xfs_infop;
201 :
202 163755203 : for (xfs_infop = xfs_info_set; xfs_infop->flag; xfs_infop++) {
203 152028190 : if (mp->m_features & xfs_infop->flag)
204 11783863 : seq_puts(m, xfs_infop->str);
205 : }
206 :
207 23454916 : seq_printf(m, ",inode%d", xfs_has_small_inums(mp) ? 32 : 64);
208 :
209 11723075 : if (xfs_has_allocsize(mp))
210 424 : seq_printf(m, ",allocsize=%dk",
211 212 : (1 << mp->m_allocsize_log) >> 10);
212 :
213 11717897 : if (mp->m_logbufs > 0)
214 11720157 : seq_printf(m, ",logbufs=%d", mp->m_logbufs);
215 11710176 : if (mp->m_logbsize > 0)
216 11713199 : seq_printf(m, ",logbsize=%dk", mp->m_logbsize >> 10);
217 :
218 11706653 : if (mp->m_logname)
219 3411043 : seq_show_option(m, "logdev", mp->m_logname);
220 11711379 : if (mp->m_rtname)
221 3531683 : seq_show_option(m, "rtdev", mp->m_rtname);
222 :
223 11710973 : if (mp->m_dalign > 0)
224 2376768 : seq_printf(m, ",sunit=%d",
225 1188384 : (int)XFS_FSB_TO_BB(mp, mp->m_dalign));
226 11710490 : if (mp->m_swidth > 0)
227 2377868 : seq_printf(m, ",swidth=%d",
228 1188934 : (int)XFS_FSB_TO_BB(mp, mp->m_swidth));
229 :
230 11710963 : if (mp->m_qflags & XFS_UQUOTA_ENFD)
231 6953148 : seq_puts(m, ",usrquota");
232 4757815 : else if (mp->m_qflags & XFS_UQUOTA_ACCT)
233 1180 : seq_puts(m, ",uqnoenforce");
234 :
235 11709297 : if (mp->m_qflags & XFS_PQUOTA_ENFD)
236 6935870 : seq_puts(m, ",prjquota");
237 4773428 : else if (mp->m_qflags & XFS_PQUOTA_ACCT)
238 1097 : seq_puts(m, ",pqnoenforce");
239 :
240 11717494 : if (mp->m_qflags & XFS_GQUOTA_ENFD)
241 6953001 : seq_puts(m, ",grpquota");
242 4764493 : else if (mp->m_qflags & XFS_GQUOTA_ACCT)
243 1205 : seq_puts(m, ",gqnoenforce");
244 :
245 11715314 : if (!(mp->m_qflags & XFS_ALL_QUOTA_ACCT))
246 4751002 : seq_puts(m, ",noquota");
247 :
248 11716139 : return 0;
249 : }
250 :
251 : static bool
252 505946 : xfs_set_inode_alloc_perag(
253 : struct xfs_perag *pag,
254 : xfs_ino_t ino,
255 : xfs_agnumber_t max_metadata)
256 : {
257 1011892 : if (!xfs_is_inode32(pag->pag_mount)) {
258 505946 : set_bit(XFS_AGSTATE_ALLOWS_INODES, &pag->pag_opstate);
259 505946 : clear_bit(XFS_AGSTATE_PREFERS_METADATA, &pag->pag_opstate);
260 505946 : return false;
261 : }
262 :
263 0 : if (ino > XFS_MAXINUMBER_32) {
264 0 : clear_bit(XFS_AGSTATE_ALLOWS_INODES, &pag->pag_opstate);
265 0 : clear_bit(XFS_AGSTATE_PREFERS_METADATA, &pag->pag_opstate);
266 0 : return false;
267 : }
268 :
269 0 : set_bit(XFS_AGSTATE_ALLOWS_INODES, &pag->pag_opstate);
270 0 : if (pag->pag_agno < max_metadata)
271 0 : set_bit(XFS_AGSTATE_PREFERS_METADATA, &pag->pag_opstate);
272 : else
273 0 : clear_bit(XFS_AGSTATE_PREFERS_METADATA, &pag->pag_opstate);
274 : return true;
275 : }
276 :
277 : /*
278 : * Set parameters for inode allocation heuristics, taking into account
279 : * filesystem size and inode32/inode64 mount options; i.e. specifically
280 : * whether or not XFS_FEAT_SMALL_INUMS is set.
281 : *
282 : * Inode allocation patterns are altered only if inode32 is requested
283 : * (XFS_FEAT_SMALL_INUMS), and the filesystem is sufficiently large.
284 : * If altered, XFS_OPSTATE_INODE32 is set as well.
285 : *
286 : * An agcount independent of that in the mount structure is provided
287 : * because in the growfs case, mp->m_sb.sb_agcount is not yet updated
288 : * to the potentially higher ag count.
289 : *
290 : * Returns the maximum AG index which may contain inodes.
291 : */
292 : xfs_agnumber_t
293 73465 : xfs_set_inode_alloc(
294 : struct xfs_mount *mp,
295 : xfs_agnumber_t agcount)
296 : {
297 73465 : xfs_agnumber_t index;
298 73465 : xfs_agnumber_t maxagi = 0;
299 73465 : xfs_sb_t *sbp = &mp->m_sb;
300 73465 : xfs_agnumber_t max_metadata;
301 73465 : xfs_agino_t agino;
302 73465 : xfs_ino_t ino;
303 :
304 : /*
305 : * Calculate how much should be reserved for inodes to meet
306 : * the max inode percentage. Used only for inode32.
307 : */
308 73465 : if (M_IGEO(mp)->maxicount) {
309 73465 : uint64_t icount;
310 :
311 73465 : icount = sbp->sb_dblocks * sbp->sb_imax_pct;
312 73465 : do_div(icount, 100);
313 73465 : icount += sbp->sb_agblocks - 1;
314 73465 : do_div(icount, sbp->sb_agblocks);
315 73465 : max_metadata = icount;
316 : } else {
317 : max_metadata = agcount;
318 : }
319 :
320 : /* Get the last possible inode in the filesystem */
321 73465 : agino = XFS_AGB_TO_AGINO(mp, sbp->sb_agblocks - 1);
322 73465 : ino = XFS_AGINO_TO_INO(mp, agcount - 1, agino);
323 :
324 : /*
325 : * If user asked for no more than 32-bit inodes, and the fs is
326 : * sufficiently large, set XFS_OPSTATE_INODE32 if we must alter
327 : * the allocator to accommodate the request.
328 : */
329 73465 : if (xfs_has_small_inums(mp) && ino > XFS_MAXINUMBER_32)
330 0 : set_bit(XFS_OPSTATE_INODE32, &mp->m_opstate);
331 : else
332 73465 : clear_bit(XFS_OPSTATE_INODE32, &mp->m_opstate);
333 :
334 579411 : for (index = 0; index < agcount; index++) {
335 505946 : struct xfs_perag *pag;
336 :
337 505946 : ino = XFS_AGINO_TO_INO(mp, index, agino);
338 :
339 505946 : pag = xfs_perag_get(mp, index);
340 505946 : if (xfs_set_inode_alloc_perag(pag, ino, max_metadata))
341 0 : maxagi++;
342 505946 : xfs_perag_put(pag);
343 : }
344 :
345 146930 : return xfs_is_inode32(mp) ? maxagi : agcount;
346 : }
347 :
348 : static int
349 101 : xfs_setup_dax_always(
350 : struct xfs_mount *mp)
351 : {
352 101 : if (!mp->m_ddev_targp->bt_daxdev &&
353 101 : (!mp->m_rtdev_targp || !mp->m_rtdev_targp->bt_daxdev)) {
354 101 : xfs_alert(mp,
355 : "DAX unsupported by block device. Turning off DAX.");
356 101 : goto disable_dax;
357 : }
358 :
359 0 : if (mp->m_super->s_blocksize != PAGE_SIZE) {
360 0 : xfs_alert(mp,
361 : "DAX not supported for blocksize. Turning off DAX.");
362 0 : goto disable_dax;
363 : }
364 :
365 0 : if (xfs_has_reflink(mp) &&
366 0 : bdev_is_partition(mp->m_ddev_targp->bt_bdev)) {
367 0 : xfs_alert(mp,
368 : "DAX and reflink cannot work with multi-partitions!");
369 0 : return -EINVAL;
370 : }
371 :
372 0 : xfs_warn(mp, "DAX enabled. Warning: EXPERIMENTAL, use at your own risk");
373 0 : return 0;
374 :
375 101 : disable_dax:
376 101 : xfs_mount_set_dax_mode(mp, XFS_DAX_NEVER);
377 101 : return 0;
378 : }
379 :
380 : static void
381 0 : xfs_bdev_mark_dead(
382 : struct block_device *bdev)
383 : {
384 0 : xfs_force_shutdown(bdev->bd_holder, SHUTDOWN_DEVICE_REMOVED);
385 0 : }
386 :
387 : static const struct blk_holder_ops xfs_holder_ops = {
388 : .mark_dead = xfs_bdev_mark_dead,
389 : };
390 :
391 : STATIC int
392 34105 : xfs_blkdev_get(
393 : xfs_mount_t *mp,
394 : const char *name,
395 : struct block_device **bdevp)
396 : {
397 34105 : int error = 0;
398 :
399 34105 : *bdevp = blkdev_get_by_path(name, BLK_OPEN_READ | BLK_OPEN_WRITE, mp,
400 : &xfs_holder_ops);
401 34105 : if (IS_ERR(*bdevp)) {
402 0 : error = PTR_ERR(*bdevp);
403 0 : xfs_warn(mp, "Invalid device [%s], error=%d", name, error);
404 : }
405 :
406 34105 : return error;
407 : }
408 :
409 : STATIC void
410 34108 : xfs_blkdev_put(
411 : struct xfs_mount *mp,
412 : struct block_device *bdev)
413 : {
414 34108 : if (bdev)
415 34108 : blkdev_put(bdev, mp);
416 34108 : }
417 :
418 : STATIC void
419 60122 : xfs_close_devices(
420 : struct xfs_mount *mp)
421 : {
422 60122 : if (mp->m_logdev_targp && mp->m_logdev_targp != mp->m_ddev_targp) {
423 17979 : struct block_device *logdev = mp->m_logdev_targp->bt_bdev;
424 :
425 17979 : xfs_free_buftarg(mp->m_logdev_targp);
426 17979 : xfs_blkdev_put(mp, logdev);
427 : }
428 60122 : if (mp->m_rtdev_targp) {
429 16129 : struct block_device *rtdev = mp->m_rtdev_targp->bt_bdev;
430 :
431 16129 : xfs_free_buftarg(mp->m_rtdev_targp);
432 16129 : xfs_blkdev_put(mp, rtdev);
433 : }
434 60122 : xfs_free_buftarg(mp->m_ddev_targp);
435 60122 : }
436 :
437 : /*
438 : * The file system configurations are:
439 : * (1) device (partition) with data and internal log
440 : * (2) logical volume with data and log subvolumes.
441 : * (3) logical volume with data, log, and realtime subvolumes.
442 : *
443 : * We only have to handle opening the log and realtime volumes here if
444 : * they are present. The data subvolume has already been opened by
445 : * get_sb_bdev() and is stored in sb->s_bdev.
446 : */
447 : STATIC int
448 60115 : xfs_open_devices(
449 : struct xfs_mount *mp)
450 : {
451 60115 : struct block_device *ddev = mp->m_super->s_bdev;
452 60115 : struct block_device *logdev = NULL, *rtdev = NULL;
453 60115 : int error;
454 :
455 : /*
456 : * Open real time and log devices - order is important.
457 : */
458 60115 : if (mp->m_logname) {
459 17977 : error = xfs_blkdev_get(mp, mp->m_logname, &logdev);
460 17977 : if (error)
461 : return error;
462 : }
463 :
464 60115 : if (mp->m_rtname) {
465 16128 : error = xfs_blkdev_get(mp, mp->m_rtname, &rtdev);
466 16128 : if (error)
467 0 : goto out_close_logdev;
468 :
469 16128 : if (rtdev == ddev || rtdev == logdev) {
470 0 : xfs_warn(mp,
471 : "Cannot mount filesystem with identical rtdev and ddev/logdev.");
472 0 : error = -EINVAL;
473 0 : goto out_close_rtdev;
474 : }
475 : }
476 :
477 : /*
478 : * Setup xfs_mount buffer target pointers
479 : */
480 60115 : error = -ENOMEM;
481 60115 : mp->m_ddev_targp = xfs_alloc_buftarg(mp, ddev);
482 60115 : if (!mp->m_ddev_targp)
483 0 : goto out_close_rtdev;
484 :
485 60115 : if (rtdev) {
486 16128 : mp->m_rtdev_targp = xfs_alloc_buftarg(mp, rtdev);
487 16128 : if (!mp->m_rtdev_targp)
488 0 : goto out_free_ddev_targ;
489 : }
490 :
491 60115 : if (logdev && logdev != ddev) {
492 17977 : mp->m_logdev_targp = xfs_alloc_buftarg(mp, logdev);
493 17977 : if (!mp->m_logdev_targp)
494 0 : goto out_free_rtdev_targ;
495 : } else {
496 42138 : mp->m_logdev_targp = mp->m_ddev_targp;
497 : }
498 :
499 : return 0;
500 :
501 : out_free_rtdev_targ:
502 0 : if (mp->m_rtdev_targp)
503 0 : xfs_free_buftarg(mp->m_rtdev_targp);
504 0 : out_free_ddev_targ:
505 0 : xfs_free_buftarg(mp->m_ddev_targp);
506 0 : out_close_rtdev:
507 0 : xfs_blkdev_put(mp, rtdev);
508 0 : out_close_logdev:
509 0 : if (logdev && logdev != ddev)
510 0 : xfs_blkdev_put(mp, logdev);
511 : return error;
512 : }
513 :
514 : /*
515 : * Setup xfs_mount buffer target pointers based on superblock
516 : */
517 : STATIC int
518 59480 : xfs_setup_devices(
519 : struct xfs_mount *mp)
520 : {
521 59480 : int error;
522 :
523 59480 : error = xfs_setsize_buftarg(mp->m_ddev_targp, mp->m_sb.sb_sectsize);
524 59480 : if (error)
525 : return error;
526 :
527 59480 : if (mp->m_logdev_targp && mp->m_logdev_targp != mp->m_ddev_targp) {
528 17934 : unsigned int log_sector_size = BBSIZE;
529 :
530 17934 : if (xfs_has_sector(mp))
531 17649 : log_sector_size = mp->m_sb.sb_logsectsize;
532 17934 : error = xfs_setsize_buftarg(mp->m_logdev_targp,
533 : log_sector_size);
534 17934 : if (error)
535 : return error;
536 : }
537 59480 : if (mp->m_rtdev_targp) {
538 16098 : error = xfs_setsize_buftarg(mp->m_rtdev_targp,
539 16098 : mp->m_sb.sb_sectsize);
540 16098 : if (error)
541 0 : return error;
542 : }
543 :
544 : return 0;
545 : }
546 :
547 : STATIC int
548 60115 : xfs_init_mount_workqueues(
549 : struct xfs_mount *mp)
550 : {
551 120230 : mp->m_buf_workqueue = alloc_workqueue("xfs-buf/%s",
552 : XFS_WQFLAGS(WQ_FREEZABLE | WQ_MEM_RECLAIM),
553 60115 : 1, mp->m_super->s_id);
554 60115 : if (!mp->m_buf_workqueue)
555 0 : goto out;
556 :
557 120230 : mp->m_unwritten_workqueue = alloc_workqueue("xfs-conv/%s",
558 : XFS_WQFLAGS(WQ_FREEZABLE | WQ_MEM_RECLAIM),
559 60115 : 0, mp->m_super->s_id);
560 60115 : if (!mp->m_unwritten_workqueue)
561 0 : goto out_destroy_buf;
562 :
563 120230 : mp->m_reclaim_workqueue = alloc_workqueue("xfs-reclaim/%s",
564 : XFS_WQFLAGS(WQ_FREEZABLE | WQ_MEM_RECLAIM),
565 60115 : 0, mp->m_super->s_id);
566 60115 : if (!mp->m_reclaim_workqueue)
567 0 : goto out_destroy_unwritten;
568 :
569 120230 : mp->m_blockgc_wq = alloc_workqueue("xfs-blockgc/%s",
570 : XFS_WQFLAGS(WQ_UNBOUND | WQ_FREEZABLE | WQ_MEM_RECLAIM),
571 60115 : 0, mp->m_super->s_id);
572 60115 : if (!mp->m_blockgc_wq)
573 0 : goto out_destroy_reclaim;
574 :
575 120230 : mp->m_inodegc_wq = alloc_workqueue("xfs-inodegc/%s",
576 : XFS_WQFLAGS(WQ_FREEZABLE | WQ_MEM_RECLAIM),
577 60115 : 1, mp->m_super->s_id);
578 60115 : if (!mp->m_inodegc_wq)
579 0 : goto out_destroy_blockgc;
580 :
581 120230 : mp->m_sync_workqueue = alloc_workqueue("xfs-sync/%s",
582 60115 : XFS_WQFLAGS(WQ_FREEZABLE), 0, mp->m_super->s_id);
583 60115 : if (!mp->m_sync_workqueue)
584 0 : goto out_destroy_inodegc;
585 :
586 : return 0;
587 :
588 : out_destroy_inodegc:
589 0 : destroy_workqueue(mp->m_inodegc_wq);
590 0 : out_destroy_blockgc:
591 0 : destroy_workqueue(mp->m_blockgc_wq);
592 0 : out_destroy_reclaim:
593 0 : destroy_workqueue(mp->m_reclaim_workqueue);
594 0 : out_destroy_unwritten:
595 0 : destroy_workqueue(mp->m_unwritten_workqueue);
596 0 : out_destroy_buf:
597 0 : destroy_workqueue(mp->m_buf_workqueue);
598 : out:
599 : return -ENOMEM;
600 : }
601 :
602 : STATIC void
603 60122 : xfs_destroy_mount_workqueues(
604 : struct xfs_mount *mp)
605 : {
606 60122 : destroy_workqueue(mp->m_sync_workqueue);
607 60122 : destroy_workqueue(mp->m_blockgc_wq);
608 60122 : destroy_workqueue(mp->m_inodegc_wq);
609 60122 : destroy_workqueue(mp->m_reclaim_workqueue);
610 60122 : destroy_workqueue(mp->m_unwritten_workqueue);
611 60122 : destroy_workqueue(mp->m_buf_workqueue);
612 60122 : }
613 :
614 : static void
615 819348 : xfs_flush_inodes_worker(
616 : struct work_struct *work)
617 : {
618 819348 : struct xfs_mount *mp = container_of(work, struct xfs_mount,
619 : m_flush_inodes_work);
620 819348 : struct super_block *sb = mp->m_super;
621 :
622 819348 : if (down_read_trylock(&sb->s_umount)) {
623 819348 : sync_inodes_sb(sb);
624 819348 : up_read(&sb->s_umount);
625 : }
626 819348 : }
627 :
628 : /*
629 : * Flush all dirty data to disk. Must not be called while holding an XFS_ILOCK
630 : * or a page lock. We use sync_inodes_sb() here to ensure we block while waiting
631 : * for IO to complete so that we effectively throttle multiple callers to the
632 : * rate at which IO is completing.
633 : */
634 : void
635 1596677 : xfs_flush_inodes(
636 : struct xfs_mount *mp)
637 : {
638 : /*
639 : * If flush_work() returns true then that means we waited for a flush
640 : * which was already in progress. Don't bother running another scan.
641 : */
642 1596677 : if (flush_work(&mp->m_flush_inodes_work))
643 : return;
644 :
645 823584 : queue_work(mp->m_sync_workqueue, &mp->m_flush_inodes_work);
646 823779 : flush_work(&mp->m_flush_inodes_work);
647 : }
648 :
649 : /* Catch misguided souls that try to use this interface on XFS */
650 : STATIC struct inode *
651 0 : xfs_fs_alloc_inode(
652 : struct super_block *sb)
653 : {
654 0 : BUG();
655 : return NULL;
656 : }
657 :
658 : /*
659 : * Now that the generic code is guaranteed not to be accessing
660 : * the linux inode, we can inactivate and reclaim the inode.
661 : */
662 : STATIC void
663 1086335823 : xfs_fs_destroy_inode(
664 : struct inode *inode)
665 : {
666 1086335823 : struct xfs_inode *ip = XFS_I(inode);
667 :
668 1086335823 : trace_xfs_destroy_inode(ip);
669 :
670 1086107731 : ASSERT(!rwsem_is_locked(&inode->i_rwsem));
671 1086107731 : XFS_STATS_INC(ip->i_mount, vn_rele);
672 1086524227 : XFS_STATS_INC(ip->i_mount, vn_remove);
673 1086454407 : xfs_inode_mark_reclaimable(ip);
674 1087119391 : }
675 :
676 : static void
677 7822777 : xfs_fs_dirty_inode(
678 : struct inode *inode,
679 : int flags)
680 : {
681 7822777 : struct xfs_inode *ip = XFS_I(inode);
682 7822777 : struct xfs_mount *mp = ip->i_mount;
683 7822777 : struct xfs_trans *tp;
684 :
685 7822777 : if (!(inode->i_sb->s_flags & SB_LAZYTIME))
686 7822670 : return;
687 :
688 : /*
689 : * Only do the timestamp update if the inode is dirty (I_DIRTY_SYNC)
690 : * and has dirty timestamp (I_DIRTY_TIME). I_DIRTY_TIME can be passed
691 : * in flags possibly together with I_DIRTY_SYNC.
692 : */
693 107 : if ((flags & ~I_DIRTY_TIME) != I_DIRTY_SYNC || !(flags & I_DIRTY_TIME))
694 : return;
695 :
696 107 : if (xfs_trans_alloc(mp, &M_RES(mp)->tr_fsyncts, 0, 0, 0, &tp))
697 : return;
698 107 : xfs_ilock(ip, XFS_ILOCK_EXCL);
699 107 : xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL);
700 107 : xfs_trans_log_inode(tp, ip, XFS_ILOG_TIMESTAMP);
701 107 : xfs_trans_commit(tp);
702 : }
703 :
704 : /*
705 : * Slab object creation initialisation for the XFS inode.
706 : * This covers only the idempotent fields in the XFS inode;
707 : * all other fields need to be initialised on allocation
708 : * from the slab. This avoids the need to repeatedly initialise
709 : * fields in the xfs inode that left in the initialise state
710 : * when freeing the inode.
711 : */
712 : STATIC void
713 418662726 : xfs_fs_inode_init_once(
714 : void *inode)
715 : {
716 418662726 : struct xfs_inode *ip = inode;
717 :
718 418662726 : memset(ip, 0, sizeof(struct xfs_inode));
719 :
720 : /* vfs inode */
721 418662726 : inode_init_once(VFS_I(ip));
722 :
723 : /* xfs inode */
724 418664102 : atomic_set(&ip->i_pincount, 0);
725 418664102 : spin_lock_init(&ip->i_flags_lock);
726 :
727 418664190 : mrlock_init(&ip->i_lock, MRLOCK_ALLOW_EQUAL_PRI|MRLOCK_BARRIER,
728 : "xfsino", ip->i_ino);
729 418665281 : }
730 :
731 : /*
732 : * We do an unlocked check for XFS_IDONTCACHE here because we are already
733 : * serialised against cache hits here via the inode->i_lock and igrab() in
734 : * xfs_iget_cache_hit(). Hence a lookup that might clear this flag will not be
735 : * racing with us, and it avoids needing to grab a spinlock here for every inode
736 : * we drop the final reference on.
737 : */
738 : STATIC int
739 27951081065 : xfs_fs_drop_inode(
740 : struct inode *inode)
741 : {
742 27951081065 : struct xfs_inode *ip = XFS_I(inode);
743 :
744 : /*
745 : * If this unlinked inode is in the middle of recovery, don't
746 : * drop the inode just yet; log recovery will take care of
747 : * that. See the comment for this inode flag.
748 : */
749 27951081065 : if (ip->i_flags & XFS_IRECOVERY) {
750 30 : ASSERT(xlog_recovery_needed(ip->i_mount->m_log));
751 15 : return 0;
752 : }
753 :
754 27951081050 : return generic_drop_inode(inode);
755 : }
756 :
757 : static void
758 65539 : xfs_mount_free(
759 : struct xfs_mount *mp)
760 : {
761 65539 : kfree(mp->m_rtname);
762 65539 : kfree(mp->m_logname);
763 65539 : kmem_free(mp);
764 65539 : }
765 :
766 : STATIC int
767 6123368 : xfs_fs_sync_fs(
768 : struct super_block *sb,
769 : int wait)
770 : {
771 6123368 : struct xfs_mount *mp = XFS_M(sb);
772 6123368 : int error;
773 :
774 6123368 : trace_xfs_fs_sync_fs(mp, __return_address);
775 :
776 : /*
777 : * Doing anything during the async pass would be counterproductive.
778 : */
779 6123260 : if (!wait)
780 : return 0;
781 :
782 3062264 : error = xfs_log_force(mp, XFS_LOG_SYNC);
783 3059923 : if (error)
784 : return error;
785 :
786 3039259 : if (laptop_mode) {
787 : /*
788 : * The disk must be active because we're syncing.
789 : * We schedule log work now (now that the disk is
790 : * active) instead of later (when it might not be).
791 : */
792 0 : flush_delayed_work(&mp->m_log->l_work);
793 : }
794 :
795 : /*
796 : * If we are called with page faults frozen out, it means we are about
797 : * to freeze the transaction subsystem. Take the opportunity to shut
798 : * down inodegc because once SB_FREEZE_FS is set it's too late to
799 : * prevent inactivation races with freeze. The fs doesn't get called
800 : * again by the freezing process until after SB_FREEZE_FS has been set,
801 : * so it's now or never. Same logic applies to speculative allocation
802 : * garbage collection.
803 : *
804 : * We don't care if this is a normal syncfs call that does this or
805 : * freeze that does this - we can run this multiple times without issue
806 : * and we won't race with a restart because a restart can only occur
807 : * when the state is either SB_FREEZE_FS or SB_FREEZE_COMPLETE.
808 : */
809 3039259 : if (sb->s_writers.frozen == SB_FREEZE_PAGEFAULT) {
810 62435 : xfs_inodegc_stop(mp);
811 62435 : xfs_blockgc_stop(mp);
812 : }
813 :
814 : return 0;
815 : }
816 :
817 : STATIC int
818 22096496 : xfs_fs_statfs(
819 : struct dentry *dentry,
820 : struct kstatfs *statp)
821 : {
822 22096496 : struct xfs_mount *mp = XFS_M(dentry->d_sb);
823 22096496 : xfs_sb_t *sbp = &mp->m_sb;
824 22096496 : struct xfs_inode *ip = XFS_I(d_inode(dentry));
825 22096496 : uint64_t fakeinos, id;
826 22096496 : uint64_t icount;
827 22096496 : uint64_t ifree;
828 22096496 : uint64_t fdblocks;
829 22096496 : xfs_extlen_t lsize;
830 22096496 : int64_t ffree;
831 :
832 : /*
833 : * Expedite background inodegc but don't wait. We do not want to block
834 : * here waiting hours for a billion extent file to be truncated.
835 : */
836 22096496 : xfs_inodegc_push(mp);
837 :
838 22088737 : statp->f_type = XFS_SUPER_MAGIC;
839 22088737 : statp->f_namelen = MAXNAMELEN - 1;
840 :
841 22088737 : id = huge_encode_dev(mp->m_ddev_targp->bt_dev);
842 22088737 : statp->f_fsid = u64_to_fsid(id);
843 :
844 22088737 : icount = percpu_counter_sum(&mp->m_icount);
845 22109030 : ifree = percpu_counter_sum(&mp->m_ifree);
846 22107445 : fdblocks = percpu_counter_sum(&mp->m_fdblocks);
847 :
848 22108051 : spin_lock(&mp->m_sb_lock);
849 22109079 : statp->f_bsize = sbp->sb_blocksize;
850 22109079 : lsize = sbp->sb_logstart ? sbp->sb_logblocks : 0;
851 22109079 : statp->f_blocks = sbp->sb_dblocks - lsize;
852 22109079 : spin_unlock(&mp->m_sb_lock);
853 :
854 : /* make sure statp->f_bfree does not underflow */
855 22107279 : statp->f_bfree = max_t(int64_t, 0,
856 : fdblocks - xfs_fdblocks_unavailable(mp));
857 22107279 : statp->f_bavail = statp->f_bfree;
858 :
859 22107279 : fakeinos = XFS_FSB_TO_INO(mp, statp->f_bfree);
860 22107279 : statp->f_files = min(icount + fakeinos, (uint64_t)XFS_MAXINUMBER);
861 22107279 : if (M_IGEO(mp)->maxicount)
862 22107452 : statp->f_files = min_t(typeof(statp->f_files),
863 : statp->f_files,
864 : M_IGEO(mp)->maxicount);
865 :
866 : /* If sb_icount overshot maxicount, report actual allocation */
867 22107279 : statp->f_files = max_t(typeof(statp->f_files),
868 : statp->f_files,
869 : sbp->sb_icount);
870 :
871 : /* make sure statp->f_ffree does not underflow */
872 22107279 : ffree = statp->f_files - (icount - ifree);
873 22107279 : statp->f_ffree = max_t(int64_t, ffree, 0);
874 :
875 :
876 22107279 : if ((ip->i_diflags & XFS_DIFLAG_PROJINHERIT) &&
877 2511 : ((mp->m_qflags & (XFS_PQUOTA_ACCT|XFS_PQUOTA_ENFD))) ==
878 : (XFS_PQUOTA_ACCT|XFS_PQUOTA_ENFD))
879 1827 : xfs_qm_statvfs(ip, statp);
880 :
881 22107279 : if (XFS_IS_REALTIME_MOUNT(mp) &&
882 6511657 : (ip->i_diflags & (XFS_DIFLAG_RTINHERIT | XFS_DIFLAG_REALTIME))) {
883 6472720 : s64 freertx;
884 :
885 6472720 : statp->f_blocks = sbp->sb_rblocks;
886 6472720 : freertx = percpu_counter_sum_positive(&mp->m_frextents);
887 6473034 : statp->f_bavail = statp->f_bfree = freertx * sbp->sb_rextsize;
888 : }
889 :
890 22107593 : return 0;
891 : }
892 :
893 : STATIC void
894 63008 : xfs_save_resvblks(struct xfs_mount *mp)
895 : {
896 63008 : uint64_t resblks = 0;
897 :
898 63008 : mp->m_resblks_save = mp->m_resblks;
899 63008 : xfs_reserve_blocks(mp, &resblks, NULL);
900 63008 : }
901 :
902 : STATIC void
903 62958 : xfs_restore_resvblks(struct xfs_mount *mp)
904 : {
905 62958 : uint64_t resblks;
906 :
907 62958 : if (mp->m_resblks_save) {
908 62936 : resblks = mp->m_resblks_save;
909 62936 : mp->m_resblks_save = 0;
910 : } else
911 22 : resblks = xfs_default_resblks(mp);
912 :
913 62958 : xfs_reserve_blocks(mp, &resblks, NULL);
914 62958 : }
915 :
916 : /*
917 : * Second stage of a freeze. The data is already frozen so we only
918 : * need to take care of the metadata. Once that's done sync the superblock
919 : * to the log to dirty it in case of a crash while frozen. This ensures that we
920 : * will recover the unlinked inode lists on the next mount.
921 : */
922 : STATIC int
923 62435 : xfs_fs_freeze(
924 : struct super_block *sb)
925 : {
926 62435 : struct xfs_mount *mp = XFS_M(sb);
927 62435 : unsigned int flags;
928 62435 : int ret;
929 :
930 : /*
931 : * The filesystem is now frozen far enough that memory reclaim
932 : * cannot safely operate on the filesystem. Hence we need to
933 : * set a GFP_NOFS context here to avoid recursion deadlocks.
934 : */
935 62435 : flags = memalloc_nofs_save();
936 62435 : xfs_save_resvblks(mp);
937 62435 : ret = xfs_log_quiesce(mp);
938 62435 : memalloc_nofs_restore(flags);
939 :
940 : /*
941 : * For read-write filesystems, we need to restart the inodegc on error
942 : * because we stopped it at SB_FREEZE_PAGEFAULT level and a thaw is not
943 : * going to be run to restart it now. We are at SB_FREEZE_FS level
944 : * here, so we can restart safely without racing with a stop in
945 : * xfs_fs_sync_fs().
946 : */
947 62435 : if (ret && !xfs_is_readonly(mp)) {
948 0 : xfs_blockgc_start(mp);
949 0 : xfs_inodegc_start(mp);
950 : }
951 :
952 62435 : return ret;
953 : }
954 :
955 : STATIC int
956 62435 : xfs_fs_unfreeze(
957 : struct super_block *sb)
958 : {
959 62435 : struct xfs_mount *mp = XFS_M(sb);
960 :
961 62435 : xfs_restore_resvblks(mp);
962 62435 : xfs_log_work_queue(mp);
963 :
964 : /*
965 : * Don't reactivate the inodegc worker on a readonly filesystem because
966 : * inodes are sent directly to reclaim. Don't reactivate the blockgc
967 : * worker because there are no speculative preallocations on a readonly
968 : * filesystem.
969 : */
970 124870 : if (!xfs_is_readonly(mp)) {
971 62435 : xfs_blockgc_start(mp);
972 62435 : xfs_inodegc_start(mp);
973 : }
974 :
975 62435 : return 0;
976 : }
977 :
978 : /*
979 : * This function fills in xfs_mount_t fields based on mount args.
980 : * Note: the superblock _has_ now been read in.
981 : */
982 : STATIC int
983 59529 : xfs_finish_flags(
984 : struct xfs_mount *mp)
985 : {
986 : /* Fail a mount where the logbuf is smaller than the log stripe */
987 59529 : if (xfs_has_logv2(mp)) {
988 59478 : if (mp->m_logbsize <= 0 &&
989 58770 : mp->m_sb.sb_logsunit > XLOG_BIG_RECORD_BSIZE) {
990 345 : mp->m_logbsize = mp->m_sb.sb_logsunit;
991 59133 : } else if (mp->m_logbsize > 0 &&
992 708 : mp->m_logbsize < mp->m_sb.sb_logsunit) {
993 0 : xfs_warn(mp,
994 : "logbuf size must be greater than or equal to log stripe size");
995 0 : return -EINVAL;
996 : }
997 : } else {
998 : /* Fail a mount if the logbuf is larger than 32K */
999 51 : if (mp->m_logbsize > XLOG_BIG_RECORD_BSIZE) {
1000 21 : xfs_warn(mp,
1001 : "logbuf size for version 1 logs must be 16K or 32K");
1002 21 : return -EINVAL;
1003 : }
1004 : }
1005 :
1006 : /*
1007 : * V5 filesystems always use attr2 format for attributes.
1008 : */
1009 59508 : if (xfs_has_crc(mp) && xfs_has_noattr2(mp)) {
1010 16 : xfs_warn(mp, "Cannot mount a V5 filesystem as noattr2. "
1011 : "attr2 is always enabled for V5 filesystems.");
1012 16 : return -EINVAL;
1013 : }
1014 :
1015 : /*
1016 : * prohibit r/w mounts of read-only filesystems
1017 : */
1018 59492 : if ((mp->m_sb.sb_flags & XFS_SBF_READONLY) && !xfs_is_readonly(mp)) {
1019 0 : xfs_warn(mp,
1020 : "cannot mount a read-only filesystem as read-write");
1021 0 : return -EROFS;
1022 : }
1023 :
1024 59492 : if ((mp->m_qflags & XFS_GQUOTA_ACCT) &&
1025 39803 : (mp->m_qflags & XFS_PQUOTA_ACCT) &&
1026 : !xfs_has_pquotino(mp)) {
1027 12 : xfs_warn(mp,
1028 : "Super block does not support project and group quota together");
1029 12 : return -EINVAL;
1030 : }
1031 :
1032 : return 0;
1033 : }
1034 :
1035 : static int
1036 60115 : xfs_init_percpu_counters(
1037 : struct xfs_mount *mp)
1038 : {
1039 60115 : int error;
1040 :
1041 60115 : error = percpu_counter_init(&mp->m_icount, 0, GFP_KERNEL);
1042 60115 : if (error)
1043 : return -ENOMEM;
1044 :
1045 60115 : error = percpu_counter_init(&mp->m_ifree, 0, GFP_KERNEL);
1046 60115 : if (error)
1047 0 : goto free_icount;
1048 :
1049 60115 : error = percpu_counter_init(&mp->m_fdblocks, 0, GFP_KERNEL);
1050 60115 : if (error)
1051 0 : goto free_ifree;
1052 :
1053 60115 : error = percpu_counter_init(&mp->m_delalloc_blks, 0, GFP_KERNEL);
1054 60115 : if (error)
1055 0 : goto free_fdblocks;
1056 :
1057 60115 : error = percpu_counter_init(&mp->m_frextents, 0, GFP_KERNEL);
1058 60115 : if (error)
1059 0 : goto free_delalloc;
1060 :
1061 : return 0;
1062 :
1063 : free_delalloc:
1064 0 : percpu_counter_destroy(&mp->m_delalloc_blks);
1065 0 : free_fdblocks:
1066 0 : percpu_counter_destroy(&mp->m_fdblocks);
1067 0 : free_ifree:
1068 0 : percpu_counter_destroy(&mp->m_ifree);
1069 0 : free_icount:
1070 0 : percpu_counter_destroy(&mp->m_icount);
1071 0 : return -ENOMEM;
1072 : }
1073 :
1074 : void
1075 87051 : xfs_reinit_percpu_counters(
1076 : struct xfs_mount *mp)
1077 : {
1078 87051 : percpu_counter_set(&mp->m_icount, mp->m_sb.sb_icount);
1079 87051 : percpu_counter_set(&mp->m_ifree, mp->m_sb.sb_ifree);
1080 87051 : percpu_counter_set(&mp->m_fdblocks, mp->m_sb.sb_fdblocks);
1081 87051 : percpu_counter_set(&mp->m_frextents, mp->m_sb.sb_frextents);
1082 87051 : }
1083 :
1084 : static void
1085 60122 : xfs_destroy_percpu_counters(
1086 : struct xfs_mount *mp)
1087 : {
1088 60122 : percpu_counter_destroy(&mp->m_icount);
1089 60122 : percpu_counter_destroy(&mp->m_ifree);
1090 60122 : percpu_counter_destroy(&mp->m_fdblocks);
1091 120244 : ASSERT(xfs_is_shutdown(mp) ||
1092 : percpu_counter_sum(&mp->m_delalloc_blks) == 0);
1093 60122 : percpu_counter_destroy(&mp->m_delalloc_blks);
1094 60122 : percpu_counter_destroy(&mp->m_frextents);
1095 60122 : }
1096 :
1097 : static int
1098 60115 : xfs_inodegc_init_percpu(
1099 : struct xfs_mount *mp)
1100 : {
1101 60115 : struct xfs_inodegc *gc;
1102 60115 : int cpu;
1103 :
1104 60115 : mp->m_inodegc = alloc_percpu(struct xfs_inodegc);
1105 60115 : if (!mp->m_inodegc)
1106 : return -ENOMEM;
1107 :
1108 300575 : for_each_possible_cpu(cpu) {
1109 240460 : gc = per_cpu_ptr(mp->m_inodegc, cpu);
1110 : #if defined(DEBUG) || defined(XFS_WARN)
1111 240460 : gc->cpu = cpu;
1112 : #endif
1113 240460 : init_llist_head(&gc->list);
1114 240460 : gc->items = 0;
1115 240460 : gc->error = 0;
1116 240460 : INIT_DELAYED_WORK(&gc->work, xfs_inodegc_worker);
1117 : }
1118 : return 0;
1119 : }
1120 :
1121 : static void
1122 : xfs_inodegc_free_percpu(
1123 : struct xfs_mount *mp)
1124 : {
1125 60122 : if (!mp->m_inodegc)
1126 : return;
1127 60122 : free_percpu(mp->m_inodegc);
1128 : }
1129 :
1130 : static void
1131 59106 : xfs_fs_put_super(
1132 : struct super_block *sb)
1133 : {
1134 59106 : struct xfs_mount *mp = XFS_M(sb);
1135 :
1136 : /* if ->fill_super failed, we have no mount to tear down */
1137 59106 : if (!sb->s_fs_info)
1138 : return;
1139 :
1140 59106 : xfs_notice(mp, "Unmounting Filesystem %pU", &mp->m_sb.sb_uuid);
1141 59106 : xfs_filestream_unmount(mp);
1142 59106 : xfs_unmountfs(mp);
1143 :
1144 59106 : xfs_freesb(mp);
1145 59106 : free_percpu(mp->m_stats.xs_stats);
1146 59106 : xfs_mount_list_del(mp);
1147 59106 : xfs_inodegc_free_percpu(mp);
1148 59106 : xfs_destroy_percpu_counters(mp);
1149 59106 : xfs_destroy_mount_workqueues(mp);
1150 59106 : xfs_close_devices(mp);
1151 :
1152 59106 : sb->s_fs_info = NULL;
1153 59106 : xfs_mount_free(mp);
1154 : }
1155 :
1156 : static long
1157 257854 : xfs_fs_nr_cached_objects(
1158 : struct super_block *sb,
1159 : struct shrink_control *sc)
1160 : {
1161 : /* Paranoia: catch incorrect calls during mount setup or teardown */
1162 257854 : if (WARN_ON_ONCE(!sb->s_fs_info))
1163 : return 0;
1164 257854 : return xfs_reclaim_inodes_count(XFS_M(sb));
1165 : }
1166 :
1167 : static long
1168 47885 : xfs_fs_free_cached_objects(
1169 : struct super_block *sb,
1170 : struct shrink_control *sc)
1171 : {
1172 47885 : return xfs_reclaim_inodes_nr(XFS_M(sb), sc->nr_to_scan);
1173 : }
1174 :
1175 : static void
1176 0 : xfs_fs_shutdown(
1177 : struct super_block *sb)
1178 : {
1179 0 : xfs_force_shutdown(XFS_M(sb), SHUTDOWN_DEVICE_REMOVED);
1180 0 : }
1181 :
1182 : static const struct super_operations xfs_super_operations = {
1183 : .alloc_inode = xfs_fs_alloc_inode,
1184 : .destroy_inode = xfs_fs_destroy_inode,
1185 : .dirty_inode = xfs_fs_dirty_inode,
1186 : .drop_inode = xfs_fs_drop_inode,
1187 : .put_super = xfs_fs_put_super,
1188 : .sync_fs = xfs_fs_sync_fs,
1189 : .freeze_fs = xfs_fs_freeze,
1190 : .unfreeze_fs = xfs_fs_unfreeze,
1191 : .statfs = xfs_fs_statfs,
1192 : .show_options = xfs_fs_show_options,
1193 : .nr_cached_objects = xfs_fs_nr_cached_objects,
1194 : .free_cached_objects = xfs_fs_free_cached_objects,
1195 : .shutdown = xfs_fs_shutdown,
1196 : };
1197 :
1198 : static int
1199 863 : suffix_kstrtoint(
1200 : const char *s,
1201 : unsigned int base,
1202 : int *res)
1203 : {
1204 863 : int last, shift_left_factor = 0, _res;
1205 863 : char *value;
1206 863 : int ret = 0;
1207 :
1208 863 : value = kstrdup(s, GFP_KERNEL);
1209 863 : if (!value)
1210 : return -ENOMEM;
1211 :
1212 863 : last = strlen(value) - 1;
1213 863 : if (value[last] == 'K' || value[last] == 'k') {
1214 823 : shift_left_factor = 10;
1215 823 : value[last] = '\0';
1216 : }
1217 863 : if (value[last] == 'M' || value[last] == 'm') {
1218 0 : shift_left_factor = 20;
1219 0 : value[last] = '\0';
1220 : }
1221 863 : if (value[last] == 'G' || value[last] == 'g') {
1222 10 : shift_left_factor = 30;
1223 10 : value[last] = '\0';
1224 : }
1225 :
1226 863 : if (kstrtoint(value, base, &_res))
1227 0 : ret = -EINVAL;
1228 863 : kfree(value);
1229 863 : *res = _res << shift_left_factor;
1230 863 : return ret;
1231 : }
1232 :
1233 : static inline void
1234 132 : xfs_fs_warn_deprecated(
1235 : struct fs_context *fc,
1236 : struct fs_parameter *param,
1237 : uint64_t flag,
1238 : bool value)
1239 : {
1240 : /* Don't print the warning if reconfiguring and current mount point
1241 : * already had the flag set
1242 : */
1243 132 : if ((fc->purpose & FS_CONTEXT_FOR_RECONFIGURE) &&
1244 55 : !!(XFS_M(fc->root->d_sb)->m_features & flag) == value)
1245 : return;
1246 99 : xfs_warn(fc->s_fs_info, "%s mount option is deprecated.", param->key);
1247 : }
1248 :
1249 : /*
1250 : * Set mount state from a mount option.
1251 : *
1252 : * NOTE: mp->m_super is NULL here!
1253 : */
1254 : static int
1255 240598 : xfs_fs_parse_param(
1256 : struct fs_context *fc,
1257 : struct fs_parameter *param)
1258 : {
1259 240598 : struct xfs_mount *parsing_mp = fc->s_fs_info;
1260 240598 : struct fs_parse_result result;
1261 240598 : int size = 0;
1262 240598 : int opt;
1263 :
1264 240598 : opt = fs_parse(fc, xfs_fs_parameters, param, &result);
1265 240598 : if (opt < 0)
1266 : return opt;
1267 :
1268 177527 : switch (opt) {
1269 51 : case Opt_logbufs:
1270 51 : parsing_mp->m_logbufs = result.uint_32;
1271 51 : return 0;
1272 812 : case Opt_logbsize:
1273 812 : if (suffix_kstrtoint(param->string, 10, &parsing_mp->m_logbsize))
1274 0 : return -EINVAL;
1275 : return 0;
1276 19279 : case Opt_logdev:
1277 19279 : kfree(parsing_mp->m_logname);
1278 19279 : parsing_mp->m_logname = kstrdup(param->string, GFP_KERNEL);
1279 19279 : if (!parsing_mp->m_logname)
1280 0 : return -ENOMEM;
1281 : return 0;
1282 17878 : case Opt_rtdev:
1283 17878 : kfree(parsing_mp->m_rtname);
1284 17878 : parsing_mp->m_rtname = kstrdup(param->string, GFP_KERNEL);
1285 17878 : if (!parsing_mp->m_rtname)
1286 0 : return -ENOMEM;
1287 : return 0;
1288 51 : case Opt_allocsize:
1289 51 : if (suffix_kstrtoint(param->string, 10, &size))
1290 : return -EINVAL;
1291 51 : parsing_mp->m_allocsize_log = ffs(size) - 1;
1292 51 : parsing_mp->m_features |= XFS_FEAT_ALLOCSIZE;
1293 51 : return 0;
1294 20 : case Opt_grpid:
1295 : case Opt_bsdgroups:
1296 20 : parsing_mp->m_features |= XFS_FEAT_GRPID;
1297 20 : return 0;
1298 20 : case Opt_nogrpid:
1299 : case Opt_sysvgroups:
1300 20 : parsing_mp->m_features &= ~XFS_FEAT_GRPID;
1301 20 : return 0;
1302 28 : case Opt_wsync:
1303 28 : parsing_mp->m_features |= XFS_FEAT_WSYNC;
1304 28 : return 0;
1305 75 : case Opt_norecovery:
1306 75 : parsing_mp->m_features |= XFS_FEAT_NORECOVERY;
1307 75 : return 0;
1308 10 : case Opt_noalign:
1309 10 : parsing_mp->m_features |= XFS_FEAT_NOALIGN;
1310 10 : return 0;
1311 10 : case Opt_swalloc:
1312 10 : parsing_mp->m_features |= XFS_FEAT_SWALLOC;
1313 10 : return 0;
1314 157 : case Opt_sunit:
1315 157 : parsing_mp->m_dalign = result.uint_32;
1316 157 : return 0;
1317 157 : case Opt_swidth:
1318 157 : parsing_mp->m_swidth = result.uint_32;
1319 157 : return 0;
1320 10 : case Opt_inode32:
1321 10 : parsing_mp->m_features |= XFS_FEAT_SMALL_INUMS;
1322 10 : return 0;
1323 32 : case Opt_inode64:
1324 32 : parsing_mp->m_features &= ~XFS_FEAT_SMALL_INUMS;
1325 32 : return 0;
1326 15 : case Opt_nouuid:
1327 15 : parsing_mp->m_features |= XFS_FEAT_NOUUID;
1328 15 : return 0;
1329 10 : case Opt_largeio:
1330 10 : parsing_mp->m_features |= XFS_FEAT_LARGE_IOSIZE;
1331 10 : return 0;
1332 10 : case Opt_nolargeio:
1333 10 : parsing_mp->m_features &= ~XFS_FEAT_LARGE_IOSIZE;
1334 10 : return 0;
1335 97 : case Opt_filestreams:
1336 97 : parsing_mp->m_features |= XFS_FEAT_FILESTREAMS;
1337 97 : return 0;
1338 3087 : case Opt_noquota:
1339 3087 : parsing_mp->m_qflags &= ~XFS_ALL_QUOTA_ACCT;
1340 3087 : parsing_mp->m_qflags &= ~XFS_ALL_QUOTA_ENFD;
1341 3087 : return 0;
1342 44331 : case Opt_quota:
1343 : case Opt_uquota:
1344 : case Opt_usrquota:
1345 44331 : parsing_mp->m_qflags |= (XFS_UQUOTA_ACCT | XFS_UQUOTA_ENFD);
1346 44331 : return 0;
1347 1247 : case Opt_qnoenforce:
1348 : case Opt_uqnoenforce:
1349 1247 : parsing_mp->m_qflags |= XFS_UQUOTA_ACCT;
1350 1247 : parsing_mp->m_qflags &= ~XFS_UQUOTA_ENFD;
1351 1247 : return 0;
1352 43641 : case Opt_pquota:
1353 : case Opt_prjquota:
1354 43641 : parsing_mp->m_qflags |= (XFS_PQUOTA_ACCT | XFS_PQUOTA_ENFD);
1355 43641 : return 0;
1356 1162 : case Opt_pqnoenforce:
1357 1162 : parsing_mp->m_qflags |= XFS_PQUOTA_ACCT;
1358 1162 : parsing_mp->m_qflags &= ~XFS_PQUOTA_ENFD;
1359 1162 : return 0;
1360 43785 : case Opt_gquota:
1361 : case Opt_grpquota:
1362 43785 : parsing_mp->m_qflags |= (XFS_GQUOTA_ACCT | XFS_GQUOTA_ENFD);
1363 43785 : return 0;
1364 1297 : case Opt_gqnoenforce:
1365 1297 : parsing_mp->m_qflags |= XFS_GQUOTA_ACCT;
1366 1297 : parsing_mp->m_qflags &= ~XFS_GQUOTA_ENFD;
1367 1297 : return 0;
1368 12 : case Opt_discard:
1369 12 : parsing_mp->m_features |= XFS_FEAT_DISCARD;
1370 12 : return 0;
1371 10 : case Opt_nodiscard:
1372 10 : parsing_mp->m_features &= ~XFS_FEAT_DISCARD;
1373 10 : return 0;
1374 : #ifdef CONFIG_FS_DAX
1375 : case Opt_dax:
1376 57 : xfs_mount_set_dax_mode(parsing_mp, XFS_DAX_ALWAYS);
1377 57 : return 0;
1378 44 : case Opt_dax_enum:
1379 44 : xfs_mount_set_dax_mode(parsing_mp, result.uint_32);
1380 44 : return 0;
1381 : #endif
1382 : /* Following mount options will be removed in September 2025 */
1383 21 : case Opt_ikeep:
1384 21 : xfs_fs_warn_deprecated(fc, param, XFS_FEAT_IKEEP, true);
1385 21 : parsing_mp->m_features |= XFS_FEAT_IKEEP;
1386 21 : return 0;
1387 21 : case Opt_noikeep:
1388 21 : xfs_fs_warn_deprecated(fc, param, XFS_FEAT_IKEEP, false);
1389 21 : parsing_mp->m_features &= ~XFS_FEAT_IKEEP;
1390 21 : return 0;
1391 53 : case Opt_attr2:
1392 53 : xfs_fs_warn_deprecated(fc, param, XFS_FEAT_ATTR2, true);
1393 53 : parsing_mp->m_features |= XFS_FEAT_ATTR2;
1394 53 : return 0;
1395 37 : case Opt_noattr2:
1396 37 : xfs_fs_warn_deprecated(fc, param, XFS_FEAT_NOATTR2, true);
1397 37 : parsing_mp->m_features |= XFS_FEAT_NOATTR2;
1398 37 : return 0;
1399 0 : default:
1400 0 : xfs_warn(parsing_mp, "unknown mount option [%s].", param->key);
1401 0 : return -EINVAL;
1402 : }
1403 :
1404 : return 0;
1405 : }
1406 :
1407 : static int
1408 61401 : xfs_fs_validate_params(
1409 : struct xfs_mount *mp)
1410 : {
1411 : /* No recovery flag requires a read-only mount */
1412 61465 : if (xfs_has_norecovery(mp) && !xfs_is_readonly(mp)) {
1413 10 : xfs_warn(mp, "no-recovery mounts must be read-only.");
1414 10 : return -EINVAL;
1415 : }
1416 :
1417 : /*
1418 : * We have not read the superblock at this point, so only the attr2
1419 : * mount option can set the attr2 feature by this stage.
1420 : */
1421 61391 : if (xfs_has_attr2(mp) && xfs_has_noattr2(mp)) {
1422 0 : xfs_warn(mp, "attr2 and noattr2 cannot both be specified.");
1423 0 : return -EINVAL;
1424 : }
1425 :
1426 :
1427 61391 : if (xfs_has_noalign(mp) && (mp->m_dalign || mp->m_swidth)) {
1428 0 : xfs_warn(mp,
1429 : "sunit and swidth options incompatible with the noalign option");
1430 0 : return -EINVAL;
1431 : }
1432 :
1433 61391 : if (!IS_ENABLED(CONFIG_XFS_QUOTA) && mp->m_qflags != 0) {
1434 : xfs_warn(mp, "quota support not available in this kernel.");
1435 : return -EINVAL;
1436 : }
1437 :
1438 61391 : if ((mp->m_dalign && !mp->m_swidth) ||
1439 61274 : (!mp->m_dalign && mp->m_swidth)) {
1440 0 : xfs_warn(mp, "sunit and swidth must be specified together");
1441 0 : return -EINVAL;
1442 : }
1443 :
1444 61391 : if (mp->m_dalign && (mp->m_swidth % mp->m_dalign != 0)) {
1445 0 : xfs_warn(mp,
1446 : "stripe width (%d) must be a multiple of the stripe unit (%d)",
1447 : mp->m_swidth, mp->m_dalign);
1448 0 : return -EINVAL;
1449 : }
1450 :
1451 61391 : if (mp->m_logbufs != -1 &&
1452 51 : mp->m_logbufs != 0 &&
1453 51 : (mp->m_logbufs < XLOG_MIN_ICLOGS ||
1454 : mp->m_logbufs > XLOG_MAX_ICLOGS)) {
1455 20 : xfs_warn(mp, "invalid logbufs value: %d [not %d-%d]",
1456 : mp->m_logbufs, XLOG_MIN_ICLOGS, XLOG_MAX_ICLOGS);
1457 20 : return -EINVAL;
1458 : }
1459 :
1460 61371 : if (mp->m_logbsize != -1 &&
1461 790 : mp->m_logbsize != 0 &&
1462 790 : (mp->m_logbsize < XLOG_MIN_RECORD_BSIZE ||
1463 770 : mp->m_logbsize > XLOG_MAX_RECORD_BSIZE ||
1464 770 : !is_power_of_2(mp->m_logbsize))) {
1465 20 : xfs_warn(mp,
1466 : "invalid logbufsize: %d [not 16k,32k,64k,128k or 256k]",
1467 : mp->m_logbsize);
1468 20 : return -EINVAL;
1469 : }
1470 :
1471 61351 : if (xfs_has_allocsize(mp) &&
1472 51 : (mp->m_allocsize_log > XFS_MAX_IO_LOG ||
1473 : mp->m_allocsize_log < XFS_MIN_IO_LOG)) {
1474 20 : xfs_warn(mp, "invalid log iosize: %d [not %d-%d]",
1475 : mp->m_allocsize_log, XFS_MIN_IO_LOG, XFS_MAX_IO_LOG);
1476 20 : return -EINVAL;
1477 : }
1478 :
1479 : return 0;
1480 : }
1481 :
1482 : static int
1483 60185 : xfs_fs_fill_super(
1484 : struct super_block *sb,
1485 : struct fs_context *fc)
1486 : {
1487 60185 : struct xfs_mount *mp = sb->s_fs_info;
1488 60185 : struct inode *root;
1489 60185 : int flags = 0, error;
1490 :
1491 60185 : mp->m_super = sb;
1492 :
1493 60185 : error = xfs_fs_validate_params(mp);
1494 60185 : if (error)
1495 70 : goto out_free_names;
1496 :
1497 60115 : sb_min_blocksize(sb, BBSIZE);
1498 60115 : sb->s_xattr = xfs_xattr_handlers;
1499 60115 : sb->s_export_op = &xfs_export_operations;
1500 : #ifdef CONFIG_XFS_QUOTA
1501 60115 : sb->s_qcop = &xfs_quotactl_operations;
1502 60115 : sb->s_quota_types = QTYPE_MASK_USR | QTYPE_MASK_GRP | QTYPE_MASK_PRJ;
1503 : #endif
1504 60115 : sb->s_op = &xfs_super_operations;
1505 :
1506 : /*
1507 : * Delay mount work if the debug hook is set. This is debug
1508 : * instrumention to coordinate simulation of xfs mount failures with
1509 : * VFS superblock operations
1510 : */
1511 60115 : if (xfs_globals.mount_delay) {
1512 11 : xfs_notice(mp, "Delaying mount for %d seconds.",
1513 : xfs_globals.mount_delay);
1514 11 : msleep(xfs_globals.mount_delay * 1000);
1515 : }
1516 :
1517 60115 : if (fc->sb_flags & SB_SILENT)
1518 0 : flags |= XFS_MFSI_QUIET;
1519 :
1520 60115 : error = xfs_open_devices(mp);
1521 60115 : if (error)
1522 0 : goto out_free_names;
1523 :
1524 60115 : error = xfs_init_mount_workqueues(mp);
1525 60115 : if (error)
1526 0 : goto out_close_devices;
1527 :
1528 60115 : error = xfs_init_percpu_counters(mp);
1529 60115 : if (error)
1530 0 : goto out_destroy_workqueues;
1531 :
1532 60115 : error = xfs_inodegc_init_percpu(mp);
1533 60115 : if (error)
1534 0 : goto out_destroy_counters;
1535 :
1536 : /*
1537 : * All percpu data structures requiring cleanup when a cpu goes offline
1538 : * must be allocated before adding this @mp to the cpu-dead handler's
1539 : * mount list.
1540 : */
1541 60115 : xfs_mount_list_add(mp);
1542 :
1543 : /* Allocate stats memory before we do operations that might use it */
1544 60115 : mp->m_stats.xs_stats = alloc_percpu(struct xfsstats);
1545 60115 : if (!mp->m_stats.xs_stats) {
1546 0 : error = -ENOMEM;
1547 0 : goto out_destroy_inodegc;
1548 : }
1549 :
1550 60115 : error = xfs_readsb(mp, flags);
1551 60115 : if (error)
1552 586 : goto out_free_stats;
1553 :
1554 59529 : error = xfs_finish_flags(mp);
1555 59529 : if (error)
1556 49 : goto out_free_sb;
1557 :
1558 59480 : error = xfs_setup_devices(mp);
1559 59480 : if (error)
1560 0 : goto out_free_sb;
1561 :
1562 : /* V4 support is undergoing deprecation. */
1563 59480 : if (!xfs_has_crc(mp)) {
1564 : #ifdef CONFIG_XFS_SUPPORT_V4
1565 206 : xfs_warn_once(mp,
1566 : "Deprecated V4 format (crc=0) will not be supported after September 2030.");
1567 : #else
1568 : xfs_warn(mp,
1569 : "Deprecated V4 format (crc=0) not supported by kernel.");
1570 : error = -EINVAL;
1571 : goto out_free_sb;
1572 : #endif
1573 : }
1574 :
1575 : /* ASCII case insensitivity is undergoing deprecation. */
1576 59480 : if (xfs_has_asciici(mp)) {
1577 : #ifdef CONFIG_XFS_SUPPORT_ASCII_CI
1578 155 : xfs_warn_once(mp,
1579 : "Deprecated ASCII case-insensitivity feature (ascii-ci=1) will not be supported after September 2030.");
1580 : #else
1581 : xfs_warn(mp,
1582 : "Deprecated ASCII case-insensitivity feature (ascii-ci=1) not supported by kernel.");
1583 : error = -EINVAL;
1584 : goto out_free_sb;
1585 : #endif
1586 : }
1587 :
1588 : /* Filesystem claims it needs repair, so refuse the mount. */
1589 59480 : if (xfs_has_needsrepair(mp)) {
1590 22 : xfs_warn(mp, "Filesystem needs repair. Please run xfs_repair.");
1591 22 : error = -EFSCORRUPTED;
1592 22 : goto out_free_sb;
1593 : }
1594 :
1595 : /*
1596 : * Don't touch the filesystem if a user tool thinks it owns the primary
1597 : * superblock. mkfs doesn't clear the flag from secondary supers, so
1598 : * we don't check them at all.
1599 : */
1600 59458 : if (mp->m_sb.sb_inprogress) {
1601 0 : xfs_warn(mp, "Offline file system operation in progress!");
1602 0 : error = -EFSCORRUPTED;
1603 0 : goto out_free_sb;
1604 : }
1605 :
1606 : /*
1607 : * Until this is fixed only page-sized or smaller data blocks work.
1608 : */
1609 59458 : if (mp->m_sb.sb_blocksize > PAGE_SIZE) {
1610 43 : xfs_warn(mp,
1611 : "File system with blocksize %d bytes. "
1612 : "Only pagesize (%ld) or less will currently work.",
1613 : mp->m_sb.sb_blocksize, PAGE_SIZE);
1614 43 : error = -ENOSYS;
1615 43 : goto out_free_sb;
1616 : }
1617 :
1618 : /* Ensure this filesystem fits in the page cache limits */
1619 118830 : if (xfs_sb_validate_fsb_count(&mp->m_sb, mp->m_sb.sb_dblocks) ||
1620 59415 : xfs_sb_validate_fsb_count(&mp->m_sb, mp->m_sb.sb_rblocks)) {
1621 0 : xfs_warn(mp,
1622 : "file system too large to be mounted on this system.");
1623 0 : error = -EFBIG;
1624 0 : goto out_free_sb;
1625 : }
1626 :
1627 : /*
1628 : * XFS block mappings use 54 bits to store the logical block offset.
1629 : * This should suffice to handle the maximum file size that the VFS
1630 : * supports (currently 2^63 bytes on 64-bit and ULONG_MAX << PAGE_SHIFT
1631 : * bytes on 32-bit), but as XFS and VFS have gotten the s_maxbytes
1632 : * calculation wrong on 32-bit kernels in the past, we'll add a WARN_ON
1633 : * to check this assertion.
1634 : *
1635 : * Avoid integer overflow by comparing the maximum bmbt offset to the
1636 : * maximum pagecache offset in units of fs blocks.
1637 : */
1638 59415 : if (!xfs_verify_fileoff(mp, XFS_B_TO_FSBT(mp, MAX_LFS_FILESIZE))) {
1639 0 : xfs_warn(mp,
1640 : "MAX_LFS_FILESIZE block offset (%llu) exceeds extent map maximum (%llu)!",
1641 : XFS_B_TO_FSBT(mp, MAX_LFS_FILESIZE),
1642 : XFS_MAX_FILEOFF);
1643 0 : error = -EINVAL;
1644 0 : goto out_free_sb;
1645 : }
1646 :
1647 59415 : error = xfs_filestream_mount(mp);
1648 59415 : if (error)
1649 0 : goto out_free_sb;
1650 :
1651 : /*
1652 : * we must configure the block size in the superblock before we run the
1653 : * full mount process as the mount process can lookup and cache inodes.
1654 : */
1655 59415 : sb->s_magic = XFS_SUPER_MAGIC;
1656 59415 : sb->s_blocksize = mp->m_sb.sb_blocksize;
1657 59415 : sb->s_blocksize_bits = ffs(sb->s_blocksize) - 1;
1658 59415 : sb->s_maxbytes = MAX_LFS_FILESIZE;
1659 59415 : sb->s_max_links = XFS_MAXLINK;
1660 59415 : sb->s_time_gran = 1;
1661 59415 : if (xfs_has_bigtime(mp)) {
1662 59133 : sb->s_time_min = xfs_bigtime_to_unix(XFS_BIGTIME_TIME_MIN);
1663 59133 : sb->s_time_max = xfs_bigtime_to_unix(XFS_BIGTIME_TIME_MAX);
1664 : } else {
1665 282 : sb->s_time_min = XFS_LEGACY_TIME_MIN;
1666 282 : sb->s_time_max = XFS_LEGACY_TIME_MAX;
1667 : }
1668 59415 : trace_xfs_inode_timestamp_range(mp, sb->s_time_min, sb->s_time_max);
1669 59415 : sb->s_iflags |= SB_I_CGROUPWB;
1670 :
1671 59415 : set_posix_acl_flag(sb);
1672 :
1673 : /* version 5 superblocks support inode version counters. */
1674 59415 : if (xfs_has_crc(mp))
1675 59209 : sb->s_flags |= SB_I_VERSION;
1676 :
1677 59415 : if (xfs_has_dax_always(mp)) {
1678 101 : error = xfs_setup_dax_always(mp);
1679 101 : if (error)
1680 0 : goto out_filestream_unmount;
1681 : }
1682 :
1683 59415 : if (xfs_has_discard(mp) && !bdev_max_discard_sectors(sb->s_bdev)) {
1684 0 : xfs_warn(mp,
1685 : "mounting with \"discard\" option, but the device does not support discard");
1686 0 : mp->m_features &= ~XFS_FEAT_DISCARD;
1687 : }
1688 :
1689 59415 : if (xfs_has_reflink(mp)) {
1690 42769 : if (mp->m_sb.sb_rblocks) {
1691 0 : xfs_alert(mp,
1692 : "reflink not compatible with realtime device!");
1693 0 : error = -EINVAL;
1694 0 : goto out_filestream_unmount;
1695 : }
1696 :
1697 42769 : if (xfs_globals.always_cow) {
1698 3661 : xfs_info(mp, "using DEBUG-only always_cow mode.");
1699 3661 : mp->m_always_cow = true;
1700 : }
1701 : }
1702 :
1703 59415 : if (xfs_has_rmapbt(mp) && mp->m_sb.sb_rblocks) {
1704 0 : xfs_alert(mp,
1705 : "reverse mapping btree not compatible with realtime device!");
1706 0 : error = -EINVAL;
1707 0 : goto out_filestream_unmount;
1708 : }
1709 :
1710 59415 : error = xfs_mountfs(mp);
1711 59415 : if (error)
1712 316 : goto out_filestream_unmount;
1713 :
1714 59099 : root = igrab(VFS_I(mp->m_rootip));
1715 59099 : if (!root) {
1716 0 : error = -ENOENT;
1717 0 : goto out_unmount;
1718 : }
1719 59099 : sb->s_root = d_make_root(root);
1720 59099 : if (!sb->s_root) {
1721 0 : error = -ENOMEM;
1722 0 : goto out_unmount;
1723 : }
1724 :
1725 : return 0;
1726 :
1727 316 : out_filestream_unmount:
1728 316 : xfs_filestream_unmount(mp);
1729 430 : out_free_sb:
1730 430 : xfs_freesb(mp);
1731 1016 : out_free_stats:
1732 1016 : free_percpu(mp->m_stats.xs_stats);
1733 1016 : out_destroy_inodegc:
1734 1016 : xfs_mount_list_del(mp);
1735 1016 : xfs_inodegc_free_percpu(mp);
1736 1016 : out_destroy_counters:
1737 1016 : xfs_destroy_percpu_counters(mp);
1738 1016 : out_destroy_workqueues:
1739 1016 : xfs_destroy_mount_workqueues(mp);
1740 1016 : out_close_devices:
1741 1016 : xfs_close_devices(mp);
1742 1086 : out_free_names:
1743 1086 : sb->s_fs_info = NULL;
1744 1086 : xfs_mount_free(mp);
1745 1086 : return error;
1746 :
1747 0 : out_unmount:
1748 0 : xfs_filestream_unmount(mp);
1749 0 : xfs_unmountfs(mp);
1750 0 : goto out_free_sb;
1751 : }
1752 :
1753 : static int
1754 63001 : xfs_fs_get_tree(
1755 : struct fs_context *fc)
1756 : {
1757 63001 : return get_tree_bdev(fc, xfs_fs_fill_super);
1758 : }
1759 :
1760 : static int
1761 545 : xfs_remount_rw(
1762 : struct xfs_mount *mp)
1763 : {
1764 545 : struct xfs_sb *sbp = &mp->m_sb;
1765 545 : int error;
1766 :
1767 545 : if (xfs_has_norecovery(mp)) {
1768 11 : xfs_warn(mp,
1769 : "ro->rw transition prohibited on norecovery mount");
1770 11 : return -EINVAL;
1771 : }
1772 :
1773 534 : if (xfs_sb_is_v5(sbp) &&
1774 : xfs_sb_has_ro_compat_feature(sbp, XFS_SB_FEAT_RO_COMPAT_UNKNOWN)) {
1775 11 : xfs_warn(mp,
1776 : "ro->rw transition prohibited on unknown (0x%x) ro-compat filesystem",
1777 : (sbp->sb_features_ro_compat &
1778 : XFS_SB_FEAT_RO_COMPAT_UNKNOWN));
1779 11 : return -EINVAL;
1780 : }
1781 :
1782 523 : clear_bit(XFS_OPSTATE_READONLY, &mp->m_opstate);
1783 :
1784 : /*
1785 : * If this is the first remount to writeable state we might have some
1786 : * superblock changes to update.
1787 : */
1788 523 : if (mp->m_update_sb) {
1789 11 : error = xfs_sync_sb(mp, false);
1790 11 : if (error) {
1791 0 : xfs_warn(mp, "failed to write sb changes");
1792 0 : return error;
1793 : }
1794 11 : mp->m_update_sb = false;
1795 : }
1796 :
1797 : /*
1798 : * Fill out the reserve pool if it is empty. Use the stashed value if
1799 : * it is non-zero, otherwise go with the default.
1800 : */
1801 523 : xfs_restore_resvblks(mp);
1802 523 : xfs_log_work_queue(mp);
1803 523 : xfs_blockgc_start(mp);
1804 :
1805 : /* Create the per-AG metadata reservation pool .*/
1806 523 : error = xfs_fs_reserve_ag_blocks(mp);
1807 523 : if (error && error != -ENOSPC)
1808 : return error;
1809 :
1810 : /* Re-enable the background inode inactivation worker. */
1811 523 : xfs_inodegc_start(mp);
1812 :
1813 523 : return 0;
1814 : }
1815 :
1816 : static int
1817 573 : xfs_remount_ro(
1818 : struct xfs_mount *mp)
1819 : {
1820 573 : struct xfs_icwalk icw = {
1821 : .icw_flags = XFS_ICWALK_FLAG_SYNC,
1822 : };
1823 573 : int error;
1824 :
1825 : /* Flush all the dirty data to disk. */
1826 573 : error = sync_filesystem(mp->m_super);
1827 573 : if (error)
1828 : return error;
1829 :
1830 : /*
1831 : * Cancel background eofb scanning so it cannot race with the final
1832 : * log force+buftarg wait and deadlock the remount.
1833 : */
1834 573 : xfs_blockgc_stop(mp);
1835 :
1836 : /*
1837 : * Clear out all remaining COW staging extents and speculative post-EOF
1838 : * preallocations so that we don't leave inodes requiring inactivation
1839 : * cleanups during reclaim on a read-only mount. We must process every
1840 : * cached inode, so this requires a synchronous cache scan.
1841 : */
1842 573 : error = xfs_blockgc_free_space(mp, &icw);
1843 573 : if (error) {
1844 0 : xfs_force_shutdown(mp, SHUTDOWN_CORRUPT_INCORE);
1845 0 : return error;
1846 : }
1847 :
1848 : /*
1849 : * Stop the inodegc background worker. xfs_fs_reconfigure already
1850 : * flushed all pending inodegc work when it sync'd the filesystem.
1851 : * The VFS holds s_umount, so we know that inodes cannot enter
1852 : * xfs_fs_destroy_inode during a remount operation. In readonly mode
1853 : * we send inodes straight to reclaim, so no inodes will be queued.
1854 : */
1855 573 : xfs_inodegc_stop(mp);
1856 :
1857 : /* Free the per-AG metadata reservation pool. */
1858 573 : error = xfs_fs_unreserve_ag_blocks(mp);
1859 573 : if (error) {
1860 0 : xfs_force_shutdown(mp, SHUTDOWN_CORRUPT_INCORE);
1861 0 : return error;
1862 : }
1863 :
1864 : /*
1865 : * Before we sync the metadata, we need to free up the reserve block
1866 : * pool so that the used block count in the superblock on disk is
1867 : * correct at the end of the remount. Stash the current* reserve pool
1868 : * size so that if we get remounted rw, we can return it to the same
1869 : * size.
1870 : */
1871 573 : xfs_save_resvblks(mp);
1872 :
1873 573 : xfs_log_clean(mp);
1874 573 : set_bit(XFS_OPSTATE_READONLY, &mp->m_opstate);
1875 :
1876 573 : return 0;
1877 : }
1878 :
1879 : /*
1880 : * Logically we would return an error here to prevent users from believing
1881 : * they might have changed mount options using remount which can't be changed.
1882 : *
1883 : * But unfortunately mount(8) adds all options from mtab and fstab to the mount
1884 : * arguments in some cases so we can't blindly reject options, but have to
1885 : * check for each specified option if it actually differs from the currently
1886 : * set option and only reject it if that's the case.
1887 : *
1888 : * Until that is implemented we return success for every remount request, and
1889 : * silently ignore all options that we can't actually change.
1890 : */
1891 : static int
1892 1216 : xfs_fs_reconfigure(
1893 : struct fs_context *fc)
1894 : {
1895 1216 : struct xfs_mount *mp = XFS_M(fc->root->d_sb);
1896 1216 : struct xfs_mount *new_mp = fc->s_fs_info;
1897 1216 : int flags = fc->sb_flags;
1898 1216 : int error;
1899 :
1900 : /* version 5 superblocks always support version counters. */
1901 1216 : if (xfs_has_crc(mp))
1902 1205 : fc->sb_flags |= SB_I_VERSION;
1903 :
1904 1216 : error = xfs_fs_validate_params(new_mp);
1905 1216 : if (error)
1906 : return error;
1907 :
1908 : /* inode32 -> inode64 */
1909 1216 : if (xfs_has_small_inums(mp) && !xfs_has_small_inums(new_mp)) {
1910 0 : mp->m_features &= ~XFS_FEAT_SMALL_INUMS;
1911 0 : mp->m_maxagi = xfs_set_inode_alloc(mp, mp->m_sb.sb_agcount);
1912 : }
1913 :
1914 : /* inode64 -> inode32 */
1915 1216 : if (!xfs_has_small_inums(mp) && xfs_has_small_inums(new_mp)) {
1916 0 : mp->m_features |= XFS_FEAT_SMALL_INUMS;
1917 0 : mp->m_maxagi = xfs_set_inode_alloc(mp, mp->m_sb.sb_agcount);
1918 : }
1919 :
1920 : /* ro -> rw */
1921 2432 : if (xfs_is_readonly(mp) && !(flags & SB_RDONLY)) {
1922 545 : error = xfs_remount_rw(mp);
1923 545 : if (error)
1924 : return error;
1925 : }
1926 :
1927 : /* rw -> ro */
1928 2388 : if (!xfs_is_readonly(mp) && (flags & SB_RDONLY)) {
1929 573 : error = xfs_remount_ro(mp);
1930 573 : if (error)
1931 0 : return error;
1932 : }
1933 :
1934 : return 0;
1935 : }
1936 :
1937 65532 : static void xfs_fs_free(
1938 : struct fs_context *fc)
1939 : {
1940 65532 : struct xfs_mount *mp = fc->s_fs_info;
1941 :
1942 : /*
1943 : * mp is stored in the fs_context when it is initialized.
1944 : * mp is transferred to the superblock on a successful mount,
1945 : * but if an error occurs before the transfer we have to free
1946 : * it here.
1947 : */
1948 65532 : if (mp)
1949 5347 : xfs_mount_free(mp);
1950 65532 : }
1951 :
1952 : static const struct fs_context_operations xfs_context_ops = {
1953 : .parse_param = xfs_fs_parse_param,
1954 : .get_tree = xfs_fs_get_tree,
1955 : .reconfigure = xfs_fs_reconfigure,
1956 : .free = xfs_fs_free,
1957 : };
1958 :
1959 65532 : static int xfs_init_fs_context(
1960 : struct fs_context *fc)
1961 : {
1962 65532 : struct xfs_mount *mp;
1963 :
1964 65532 : mp = kmem_alloc(sizeof(struct xfs_mount), KM_ZERO);
1965 65532 : if (!mp)
1966 : return -ENOMEM;
1967 :
1968 65532 : spin_lock_init(&mp->m_sb_lock);
1969 65532 : INIT_RADIX_TREE(&mp->m_perag_tree, GFP_ATOMIC);
1970 65532 : spin_lock_init(&mp->m_perag_lock);
1971 65532 : mutex_init(&mp->m_growlock);
1972 65532 : INIT_WORK(&mp->m_flush_inodes_work, xfs_flush_inodes_worker);
1973 65532 : INIT_DELAYED_WORK(&mp->m_reclaim_work, xfs_reclaim_worker);
1974 65532 : mp->m_kobj.kobject.kset = xfs_kset;
1975 : /*
1976 : * We don't create the finobt per-ag space reservation until after log
1977 : * recovery, so we must set this to true so that an ifree transaction
1978 : * started during log recovery will not depend on space reservations
1979 : * for finobt expansion.
1980 : */
1981 65532 : mp->m_finobt_nores = true;
1982 :
1983 : /*
1984 : * These can be overridden by the mount option parsing.
1985 : */
1986 65532 : mp->m_logbufs = -1;
1987 65532 : mp->m_logbsize = -1;
1988 65532 : mp->m_allocsize_log = 16; /* 64k */
1989 :
1990 : /*
1991 : * Copy binary VFS mount flags we are interested in.
1992 : */
1993 65532 : if (fc->sb_flags & SB_RDONLY)
1994 4087 : set_bit(XFS_OPSTATE_READONLY, &mp->m_opstate);
1995 65532 : if (fc->sb_flags & SB_DIRSYNC)
1996 0 : mp->m_features |= XFS_FEAT_DIRSYNC;
1997 65532 : if (fc->sb_flags & SB_SYNCHRONOUS)
1998 192 : mp->m_features |= XFS_FEAT_WSYNC;
1999 :
2000 65532 : fc->s_fs_info = mp;
2001 65532 : fc->ops = &xfs_context_ops;
2002 :
2003 65532 : return 0;
2004 : }
2005 :
2006 : static struct file_system_type xfs_fs_type = {
2007 : .owner = THIS_MODULE,
2008 : .name = "xfs",
2009 : .init_fs_context = xfs_init_fs_context,
2010 : .parameters = xfs_fs_parameters,
2011 : .kill_sb = kill_block_super,
2012 : .fs_flags = FS_REQUIRES_DEV | FS_ALLOW_IDMAP,
2013 : };
2014 : MODULE_ALIAS_FS("xfs");
2015 :
2016 : STATIC int __init
2017 50 : xfs_init_caches(void)
2018 : {
2019 50 : int error;
2020 :
2021 50 : xfs_buf_cache = kmem_cache_create("xfs_buf", sizeof(struct xfs_buf), 0,
2022 : SLAB_HWCACHE_ALIGN |
2023 : SLAB_RECLAIM_ACCOUNT |
2024 : SLAB_MEM_SPREAD,
2025 : NULL);
2026 50 : if (!xfs_buf_cache)
2027 0 : goto out;
2028 :
2029 50 : xfs_log_ticket_cache = kmem_cache_create("xfs_log_ticket",
2030 : sizeof(struct xlog_ticket),
2031 : 0, 0, NULL);
2032 50 : if (!xfs_log_ticket_cache)
2033 0 : goto out_destroy_buf_cache;
2034 :
2035 50 : error = xfs_btree_init_cur_caches();
2036 50 : if (error)
2037 0 : goto out_destroy_log_ticket_cache;
2038 :
2039 50 : error = xfs_defer_init_item_caches();
2040 50 : if (error)
2041 0 : goto out_destroy_btree_cur_cache;
2042 :
2043 50 : xfs_da_state_cache = kmem_cache_create("xfs_da_state",
2044 : sizeof(struct xfs_da_state),
2045 : 0, 0, NULL);
2046 50 : if (!xfs_da_state_cache)
2047 0 : goto out_destroy_defer_item_cache;
2048 :
2049 50 : xfs_ifork_cache = kmem_cache_create("xfs_ifork",
2050 : sizeof(struct xfs_ifork),
2051 : 0, 0, NULL);
2052 50 : if (!xfs_ifork_cache)
2053 0 : goto out_destroy_da_state_cache;
2054 :
2055 50 : xfs_trans_cache = kmem_cache_create("xfs_trans",
2056 : sizeof(struct xfs_trans),
2057 : 0, 0, NULL);
2058 50 : if (!xfs_trans_cache)
2059 0 : goto out_destroy_ifork_cache;
2060 :
2061 :
2062 : /*
2063 : * The size of the cache-allocated buf log item is the maximum
2064 : * size possible under XFS. This wastes a little bit of memory,
2065 : * but it is much faster.
2066 : */
2067 50 : xfs_buf_item_cache = kmem_cache_create("xfs_buf_item",
2068 : sizeof(struct xfs_buf_log_item),
2069 : 0, 0, NULL);
2070 50 : if (!xfs_buf_item_cache)
2071 0 : goto out_destroy_trans_cache;
2072 :
2073 50 : xfs_efd_cache = kmem_cache_create("xfs_efd_item",
2074 : xfs_efd_log_item_sizeof(XFS_EFD_MAX_FAST_EXTENTS),
2075 : 0, 0, NULL);
2076 50 : if (!xfs_efd_cache)
2077 0 : goto out_destroy_buf_item_cache;
2078 :
2079 50 : xfs_efi_cache = kmem_cache_create("xfs_efi_item",
2080 : xfs_efi_log_item_sizeof(XFS_EFI_MAX_FAST_EXTENTS),
2081 : 0, 0, NULL);
2082 50 : if (!xfs_efi_cache)
2083 0 : goto out_destroy_efd_cache;
2084 :
2085 50 : xfs_inode_cache = kmem_cache_create("xfs_inode",
2086 : sizeof(struct xfs_inode), 0,
2087 : (SLAB_HWCACHE_ALIGN |
2088 : SLAB_RECLAIM_ACCOUNT |
2089 : SLAB_MEM_SPREAD | SLAB_ACCOUNT),
2090 : xfs_fs_inode_init_once);
2091 50 : if (!xfs_inode_cache)
2092 0 : goto out_destroy_efi_cache;
2093 :
2094 50 : xfs_ili_cache = kmem_cache_create("xfs_ili",
2095 : sizeof(struct xfs_inode_log_item), 0,
2096 : SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD,
2097 : NULL);
2098 50 : if (!xfs_ili_cache)
2099 0 : goto out_destroy_inode_cache;
2100 :
2101 50 : xfs_icreate_cache = kmem_cache_create("xfs_icr",
2102 : sizeof(struct xfs_icreate_item),
2103 : 0, 0, NULL);
2104 50 : if (!xfs_icreate_cache)
2105 0 : goto out_destroy_ili_cache;
2106 :
2107 50 : xfs_rud_cache = kmem_cache_create("xfs_rud_item",
2108 : sizeof(struct xfs_rud_log_item),
2109 : 0, 0, NULL);
2110 50 : if (!xfs_rud_cache)
2111 0 : goto out_destroy_icreate_cache;
2112 :
2113 50 : xfs_rui_cache = kmem_cache_create("xfs_rui_item",
2114 : xfs_rui_log_item_sizeof(XFS_RUI_MAX_FAST_EXTENTS),
2115 : 0, 0, NULL);
2116 50 : if (!xfs_rui_cache)
2117 0 : goto out_destroy_rud_cache;
2118 :
2119 50 : xfs_cud_cache = kmem_cache_create("xfs_cud_item",
2120 : sizeof(struct xfs_cud_log_item),
2121 : 0, 0, NULL);
2122 50 : if (!xfs_cud_cache)
2123 0 : goto out_destroy_rui_cache;
2124 :
2125 50 : xfs_cui_cache = kmem_cache_create("xfs_cui_item",
2126 : xfs_cui_log_item_sizeof(XFS_CUI_MAX_FAST_EXTENTS),
2127 : 0, 0, NULL);
2128 50 : if (!xfs_cui_cache)
2129 0 : goto out_destroy_cud_cache;
2130 :
2131 50 : xfs_bud_cache = kmem_cache_create("xfs_bud_item",
2132 : sizeof(struct xfs_bud_log_item),
2133 : 0, 0, NULL);
2134 50 : if (!xfs_bud_cache)
2135 0 : goto out_destroy_cui_cache;
2136 :
2137 50 : xfs_bui_cache = kmem_cache_create("xfs_bui_item",
2138 : xfs_bui_log_item_sizeof(XFS_BUI_MAX_FAST_EXTENTS),
2139 : 0, 0, NULL);
2140 50 : if (!xfs_bui_cache)
2141 0 : goto out_destroy_bud_cache;
2142 :
2143 50 : xfs_attrd_cache = kmem_cache_create("xfs_attrd_item",
2144 : sizeof(struct xfs_attrd_log_item),
2145 : 0, 0, NULL);
2146 50 : if (!xfs_attrd_cache)
2147 0 : goto out_destroy_bui_cache;
2148 :
2149 50 : xfs_attri_cache = kmem_cache_create("xfs_attri_item",
2150 : sizeof(struct xfs_attri_log_item),
2151 : 0, 0, NULL);
2152 50 : if (!xfs_attri_cache)
2153 0 : goto out_destroy_attrd_cache;
2154 :
2155 50 : xfs_iunlink_cache = kmem_cache_create("xfs_iul_item",
2156 : sizeof(struct xfs_iunlink_item),
2157 : 0, 0, NULL);
2158 50 : if (!xfs_iunlink_cache)
2159 0 : goto out_destroy_attri_cache;
2160 :
2161 : return 0;
2162 :
2163 : out_destroy_attri_cache:
2164 0 : kmem_cache_destroy(xfs_attri_cache);
2165 0 : out_destroy_attrd_cache:
2166 0 : kmem_cache_destroy(xfs_attrd_cache);
2167 0 : out_destroy_bui_cache:
2168 0 : kmem_cache_destroy(xfs_bui_cache);
2169 0 : out_destroy_bud_cache:
2170 0 : kmem_cache_destroy(xfs_bud_cache);
2171 0 : out_destroy_cui_cache:
2172 0 : kmem_cache_destroy(xfs_cui_cache);
2173 0 : out_destroy_cud_cache:
2174 0 : kmem_cache_destroy(xfs_cud_cache);
2175 0 : out_destroy_rui_cache:
2176 0 : kmem_cache_destroy(xfs_rui_cache);
2177 0 : out_destroy_rud_cache:
2178 0 : kmem_cache_destroy(xfs_rud_cache);
2179 0 : out_destroy_icreate_cache:
2180 0 : kmem_cache_destroy(xfs_icreate_cache);
2181 0 : out_destroy_ili_cache:
2182 0 : kmem_cache_destroy(xfs_ili_cache);
2183 0 : out_destroy_inode_cache:
2184 0 : kmem_cache_destroy(xfs_inode_cache);
2185 0 : out_destroy_efi_cache:
2186 0 : kmem_cache_destroy(xfs_efi_cache);
2187 0 : out_destroy_efd_cache:
2188 0 : kmem_cache_destroy(xfs_efd_cache);
2189 0 : out_destroy_buf_item_cache:
2190 0 : kmem_cache_destroy(xfs_buf_item_cache);
2191 0 : out_destroy_trans_cache:
2192 0 : kmem_cache_destroy(xfs_trans_cache);
2193 0 : out_destroy_ifork_cache:
2194 0 : kmem_cache_destroy(xfs_ifork_cache);
2195 0 : out_destroy_da_state_cache:
2196 0 : kmem_cache_destroy(xfs_da_state_cache);
2197 0 : out_destroy_defer_item_cache:
2198 0 : xfs_defer_destroy_item_caches();
2199 0 : out_destroy_btree_cur_cache:
2200 0 : xfs_btree_destroy_cur_caches();
2201 0 : out_destroy_log_ticket_cache:
2202 0 : kmem_cache_destroy(xfs_log_ticket_cache);
2203 0 : out_destroy_buf_cache:
2204 0 : kmem_cache_destroy(xfs_buf_cache);
2205 : out:
2206 : return -ENOMEM;
2207 : }
2208 :
2209 : STATIC void
2210 49 : xfs_destroy_caches(void)
2211 : {
2212 : /*
2213 : * Make sure all delayed rcu free are flushed before we
2214 : * destroy caches.
2215 : */
2216 49 : rcu_barrier();
2217 49 : kmem_cache_destroy(xfs_iunlink_cache);
2218 49 : kmem_cache_destroy(xfs_attri_cache);
2219 49 : kmem_cache_destroy(xfs_attrd_cache);
2220 49 : kmem_cache_destroy(xfs_bui_cache);
2221 49 : kmem_cache_destroy(xfs_bud_cache);
2222 49 : kmem_cache_destroy(xfs_cui_cache);
2223 49 : kmem_cache_destroy(xfs_cud_cache);
2224 49 : kmem_cache_destroy(xfs_rui_cache);
2225 49 : kmem_cache_destroy(xfs_rud_cache);
2226 49 : kmem_cache_destroy(xfs_icreate_cache);
2227 49 : kmem_cache_destroy(xfs_ili_cache);
2228 49 : kmem_cache_destroy(xfs_inode_cache);
2229 49 : kmem_cache_destroy(xfs_efi_cache);
2230 49 : kmem_cache_destroy(xfs_efd_cache);
2231 49 : kmem_cache_destroy(xfs_buf_item_cache);
2232 49 : kmem_cache_destroy(xfs_trans_cache);
2233 49 : kmem_cache_destroy(xfs_ifork_cache);
2234 49 : kmem_cache_destroy(xfs_da_state_cache);
2235 49 : xfs_defer_destroy_item_caches();
2236 49 : xfs_btree_destroy_cur_caches();
2237 49 : kmem_cache_destroy(xfs_log_ticket_cache);
2238 49 : kmem_cache_destroy(xfs_buf_cache);
2239 49 : }
2240 :
2241 : STATIC int __init
2242 50 : xfs_init_workqueues(void)
2243 : {
2244 : /*
2245 : * The allocation workqueue can be used in memory reclaim situations
2246 : * (writepage path), and parallelism is only limited by the number of
2247 : * AGs in all the filesystems mounted. Hence use the default large
2248 : * max_active value for this workqueue.
2249 : */
2250 50 : xfs_alloc_wq = alloc_workqueue("xfsalloc",
2251 : XFS_WQFLAGS(WQ_MEM_RECLAIM | WQ_FREEZABLE), 0);
2252 50 : if (!xfs_alloc_wq)
2253 : return -ENOMEM;
2254 :
2255 50 : xfs_discard_wq = alloc_workqueue("xfsdiscard", XFS_WQFLAGS(WQ_UNBOUND),
2256 : 0);
2257 50 : if (!xfs_discard_wq)
2258 0 : goto out_free_alloc_wq;
2259 :
2260 : return 0;
2261 : out_free_alloc_wq:
2262 0 : destroy_workqueue(xfs_alloc_wq);
2263 0 : return -ENOMEM;
2264 : }
2265 :
2266 : STATIC void
2267 49 : xfs_destroy_workqueues(void)
2268 : {
2269 49 : destroy_workqueue(xfs_discard_wq);
2270 49 : destroy_workqueue(xfs_alloc_wq);
2271 49 : }
2272 :
2273 : #ifdef CONFIG_HOTPLUG_CPU
2274 : static int
2275 140 : xfs_cpu_dead(
2276 : unsigned int cpu)
2277 : {
2278 140 : struct xfs_mount *mp, *n;
2279 :
2280 140 : spin_lock(&xfs_mount_list_lock);
2281 280 : list_for_each_entry_safe(mp, n, &xfs_mount_list, m_mount_list) {
2282 140 : spin_unlock(&xfs_mount_list_lock);
2283 140 : xfs_inodegc_cpu_dead(mp, cpu);
2284 140 : xlog_cil_pcp_dead(mp->m_log, cpu);
2285 140 : spin_lock(&xfs_mount_list_lock);
2286 : }
2287 140 : spin_unlock(&xfs_mount_list_lock);
2288 140 : return 0;
2289 : }
2290 :
2291 : static int __init
2292 50 : xfs_cpu_hotplug_init(void)
2293 : {
2294 50 : int error;
2295 :
2296 50 : error = cpuhp_setup_state_nocalls(CPUHP_XFS_DEAD, "xfs:dead", NULL,
2297 : xfs_cpu_dead);
2298 50 : if (error < 0)
2299 0 : xfs_alert(NULL,
2300 : "Failed to initialise CPU hotplug, error %d. XFS is non-functional.",
2301 : error);
2302 50 : return error;
2303 : }
2304 :
2305 : static void
2306 : xfs_cpu_hotplug_destroy(void)
2307 : {
2308 49 : cpuhp_remove_state_nocalls(CPUHP_XFS_DEAD);
2309 0 : }
2310 :
2311 : #else /* !CONFIG_HOTPLUG_CPU */
2312 : static inline int xfs_cpu_hotplug_init(void) { return 0; }
2313 : static inline void xfs_cpu_hotplug_destroy(void) {}
2314 : #endif
2315 :
2316 : STATIC int __init
2317 50 : init_xfs_fs(void)
2318 : {
2319 50 : int error;
2320 :
2321 50 : xfs_check_ondisk_structs();
2322 :
2323 50 : error = xfs_dahash_test();
2324 50 : if (error)
2325 : return error;
2326 :
2327 50 : printk(KERN_INFO XFS_VERSION_STRING " with "
2328 : XFS_BUILD_OPTIONS " enabled\n");
2329 :
2330 50 : xfs_dir_startup();
2331 :
2332 50 : error = xfs_cpu_hotplug_init();
2333 50 : if (error)
2334 0 : goto out;
2335 :
2336 50 : error = xfs_init_caches();
2337 50 : if (error)
2338 0 : goto out_destroy_hp;
2339 :
2340 50 : error = xfs_init_workqueues();
2341 50 : if (error)
2342 0 : goto out_destroy_caches;
2343 :
2344 50 : error = xfs_mru_cache_init();
2345 50 : if (error)
2346 0 : goto out_destroy_wq;
2347 :
2348 50 : error = xfs_init_procfs();
2349 50 : if (error)
2350 0 : goto out_mru_cache_uninit;
2351 :
2352 50 : error = xfs_sysctl_register();
2353 50 : if (error)
2354 0 : goto out_cleanup_procfs;
2355 :
2356 50 : xfs_kset = kset_create_and_add("xfs", NULL, fs_kobj);
2357 50 : if (!xfs_kset) {
2358 0 : error = -ENOMEM;
2359 0 : goto out_sysctl_unregister;
2360 : }
2361 :
2362 50 : xfsstats.xs_kobj.kobject.kset = xfs_kset;
2363 :
2364 50 : xfsstats.xs_stats = alloc_percpu(struct xfsstats);
2365 50 : if (!xfsstats.xs_stats) {
2366 0 : error = -ENOMEM;
2367 0 : goto out_kset_unregister;
2368 : }
2369 :
2370 50 : error = xfs_sysfs_init(&xfsstats.xs_kobj, &xfs_stats_ktype, NULL,
2371 : "stats");
2372 50 : if (error)
2373 0 : goto out_free_stats;
2374 :
2375 : #ifdef DEBUG
2376 50 : xfs_dbg_kobj.kobject.kset = xfs_kset;
2377 50 : error = xfs_sysfs_init(&xfs_dbg_kobj, &xfs_dbg_ktype, NULL, "debug");
2378 50 : if (error)
2379 0 : goto out_remove_stats_kobj;
2380 : #endif
2381 :
2382 50 : error = xfs_qm_init();
2383 50 : if (error)
2384 0 : goto out_remove_dbg_kobj;
2385 :
2386 50 : error = register_filesystem(&xfs_fs_type);
2387 50 : if (error)
2388 0 : goto out_qm_exit;
2389 : return 0;
2390 :
2391 : out_qm_exit:
2392 0 : xfs_qm_exit();
2393 0 : out_remove_dbg_kobj:
2394 : #ifdef DEBUG
2395 0 : xfs_sysfs_del(&xfs_dbg_kobj);
2396 0 : out_remove_stats_kobj:
2397 : #endif
2398 0 : xfs_sysfs_del(&xfsstats.xs_kobj);
2399 0 : out_free_stats:
2400 0 : free_percpu(xfsstats.xs_stats);
2401 0 : out_kset_unregister:
2402 0 : kset_unregister(xfs_kset);
2403 0 : out_sysctl_unregister:
2404 0 : xfs_sysctl_unregister();
2405 0 : out_cleanup_procfs:
2406 0 : xfs_cleanup_procfs();
2407 0 : out_mru_cache_uninit:
2408 0 : xfs_mru_cache_uninit();
2409 0 : out_destroy_wq:
2410 0 : xfs_destroy_workqueues();
2411 0 : out_destroy_caches:
2412 0 : xfs_destroy_caches();
2413 0 : out_destroy_hp:
2414 0 : xfs_cpu_hotplug_destroy();
2415 : out:
2416 : return error;
2417 : }
2418 :
2419 : STATIC void __exit
2420 49 : exit_xfs_fs(void)
2421 : {
2422 49 : xfs_qm_exit();
2423 49 : unregister_filesystem(&xfs_fs_type);
2424 : #ifdef DEBUG
2425 49 : xfs_sysfs_del(&xfs_dbg_kobj);
2426 : #endif
2427 49 : xfs_sysfs_del(&xfsstats.xs_kobj);
2428 49 : free_percpu(xfsstats.xs_stats);
2429 49 : kset_unregister(xfs_kset);
2430 49 : xfs_sysctl_unregister();
2431 49 : xfs_cleanup_procfs();
2432 49 : xfs_mru_cache_uninit();
2433 49 : xfs_destroy_workqueues();
2434 49 : xfs_destroy_caches();
2435 49 : xfs_uuid_table_free();
2436 49 : xfs_cpu_hotplug_destroy();
2437 49 : }
2438 :
2439 : module_init(init_xfs_fs);
2440 : module_exit(exit_xfs_fs);
2441 :
2442 : MODULE_AUTHOR("Silicon Graphics, Inc.");
2443 : MODULE_DESCRIPTION(XFS_VERSION_STRING " with " XFS_BUILD_OPTIONS " enabled");
2444 : MODULE_LICENSE("GPL");
|