blob: c04dd83cb57c0b82b812f86c0c717ad220b79bc3 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Nathan Scott7b718762005-11-02 14:58:39 +11002 * Copyright (c) 2000-2005 Silicon Graphics, Inc.
3 * All Rights Reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
Nathan Scott7b718762005-11-02 14:58:39 +11005 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License as
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * published by the Free Software Foundation.
8 *
Nathan Scott7b718762005-11-02 14:58:39 +11009 * This program is distributed in the hope that it would be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 *
Nathan Scott7b718762005-11-02 14:58:39 +110014 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write the Free Software Foundation,
16 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Linus Torvalds1da177e2005-04-16 15:20:36 -070017 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include "xfs.h"
Nathan Scotta844f452005-11-02 14:38:42 +110019#include "xfs_fs.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include "xfs_types.h"
Nathan Scotta844f452005-11-02 14:38:42 +110021#include "xfs_bit.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include "xfs_log.h"
Nathan Scotta844f452005-11-02 14:38:42 +110023#include "xfs_inum.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include "xfs_trans.h"
25#include "xfs_sb.h"
26#include "xfs_ag.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include "xfs_dir2.h"
28#include "xfs_dmapi.h"
29#include "xfs_mount.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include "xfs_bmap_btree.h"
Nathan Scotta844f452005-11-02 14:38:42 +110031#include "xfs_alloc_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include "xfs_ialloc_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include "xfs_dir2_sf.h"
Nathan Scotta844f452005-11-02 14:38:42 +110034#include "xfs_attr_sf.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include "xfs_dinode.h"
36#include "xfs_inode.h"
Nathan Scotta844f452005-11-02 14:38:42 +110037#include "xfs_btree.h"
38#include "xfs_ialloc.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include "xfs_alloc.h"
40#include "xfs_rtalloc.h"
41#include "xfs_bmap.h"
42#include "xfs_error.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#include "xfs_rw.h"
44#include "xfs_quota.h"
45#include "xfs_fsops.h"
Christoph Hellwig43355092008-03-27 18:01:08 +110046#include "xfs_utils.h"
Christoph Hellwig0b1b2132009-12-14 23:14:59 +000047#include "xfs_trace.h"
48
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
Christoph Hellwigba0f32d2005-06-21 15:36:52 +100050STATIC void xfs_unmountfs_wait(xfs_mount_t *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
David Chinner8d280b92006-03-14 13:13:09 +110052
53#ifdef HAVE_PERCPU_SB
David Chinner20f4ebf2007-02-10 18:36:10 +110054STATIC void xfs_icsb_balance_counter(xfs_mount_t *, xfs_sb_field_t,
Christoph Hellwig45af6c62008-04-22 17:34:44 +100055 int);
56STATIC void xfs_icsb_balance_counter_locked(xfs_mount_t *, xfs_sb_field_t,
57 int);
David Chinner8d280b92006-03-14 13:13:09 +110058STATIC int xfs_icsb_modify_counters(xfs_mount_t *, xfs_sb_field_t,
David Chinner20f4ebf2007-02-10 18:36:10 +110059 int64_t, int);
David Chinner36fbe6e2008-04-10 12:19:56 +100060STATIC void xfs_icsb_disable_counter(xfs_mount_t *, xfs_sb_field_t);
David Chinner8d280b92006-03-14 13:13:09 +110061
62#else
63
Christoph Hellwig45af6c62008-04-22 17:34:44 +100064#define xfs_icsb_balance_counter(mp, a, b) do { } while (0)
65#define xfs_icsb_balance_counter_locked(mp, a, b) do { } while (0)
David Chinner8d280b92006-03-14 13:13:09 +110066#define xfs_icsb_modify_counters(mp, a, b, c) do { } while (0)
David Chinner8d280b92006-03-14 13:13:09 +110067
68#endif
69
Christoph Hellwig1df84c92006-01-11 15:29:52 +110070static const struct {
David Chinner8d280b92006-03-14 13:13:09 +110071 short offset;
72 short type; /* 0 = integer
73 * 1 = binary / string (no translation)
74 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070075} xfs_sb_info[] = {
76 { offsetof(xfs_sb_t, sb_magicnum), 0 },
77 { offsetof(xfs_sb_t, sb_blocksize), 0 },
78 { offsetof(xfs_sb_t, sb_dblocks), 0 },
79 { offsetof(xfs_sb_t, sb_rblocks), 0 },
80 { offsetof(xfs_sb_t, sb_rextents), 0 },
81 { offsetof(xfs_sb_t, sb_uuid), 1 },
82 { offsetof(xfs_sb_t, sb_logstart), 0 },
83 { offsetof(xfs_sb_t, sb_rootino), 0 },
84 { offsetof(xfs_sb_t, sb_rbmino), 0 },
85 { offsetof(xfs_sb_t, sb_rsumino), 0 },
86 { offsetof(xfs_sb_t, sb_rextsize), 0 },
87 { offsetof(xfs_sb_t, sb_agblocks), 0 },
88 { offsetof(xfs_sb_t, sb_agcount), 0 },
89 { offsetof(xfs_sb_t, sb_rbmblocks), 0 },
90 { offsetof(xfs_sb_t, sb_logblocks), 0 },
91 { offsetof(xfs_sb_t, sb_versionnum), 0 },
92 { offsetof(xfs_sb_t, sb_sectsize), 0 },
93 { offsetof(xfs_sb_t, sb_inodesize), 0 },
94 { offsetof(xfs_sb_t, sb_inopblock), 0 },
95 { offsetof(xfs_sb_t, sb_fname[0]), 1 },
96 { offsetof(xfs_sb_t, sb_blocklog), 0 },
97 { offsetof(xfs_sb_t, sb_sectlog), 0 },
98 { offsetof(xfs_sb_t, sb_inodelog), 0 },
99 { offsetof(xfs_sb_t, sb_inopblog), 0 },
100 { offsetof(xfs_sb_t, sb_agblklog), 0 },
101 { offsetof(xfs_sb_t, sb_rextslog), 0 },
102 { offsetof(xfs_sb_t, sb_inprogress), 0 },
103 { offsetof(xfs_sb_t, sb_imax_pct), 0 },
104 { offsetof(xfs_sb_t, sb_icount), 0 },
105 { offsetof(xfs_sb_t, sb_ifree), 0 },
106 { offsetof(xfs_sb_t, sb_fdblocks), 0 },
107 { offsetof(xfs_sb_t, sb_frextents), 0 },
108 { offsetof(xfs_sb_t, sb_uquotino), 0 },
109 { offsetof(xfs_sb_t, sb_gquotino), 0 },
110 { offsetof(xfs_sb_t, sb_qflags), 0 },
111 { offsetof(xfs_sb_t, sb_flags), 0 },
112 { offsetof(xfs_sb_t, sb_shared_vn), 0 },
113 { offsetof(xfs_sb_t, sb_inoalignmt), 0 },
114 { offsetof(xfs_sb_t, sb_unit), 0 },
115 { offsetof(xfs_sb_t, sb_width), 0 },
116 { offsetof(xfs_sb_t, sb_dirblklog), 0 },
117 { offsetof(xfs_sb_t, sb_logsectlog), 0 },
118 { offsetof(xfs_sb_t, sb_logsectsize),0 },
119 { offsetof(xfs_sb_t, sb_logsunit), 0 },
120 { offsetof(xfs_sb_t, sb_features2), 0 },
David Chinneree1c0902008-03-06 13:45:50 +1100121 { offsetof(xfs_sb_t, sb_bad_features2), 0 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 { sizeof(xfs_sb_t), 0 }
123};
124
Christoph Hellwig27174202009-03-30 10:21:31 +0200125static DEFINE_MUTEX(xfs_uuid_table_mutex);
126static int xfs_uuid_table_size;
127static uuid_t *xfs_uuid_table;
128
129/*
130 * See if the UUID is unique among mounted XFS filesystems.
131 * Mount fails if UUID is nil or a FS with the same UUID is already mounted.
132 */
133STATIC int
134xfs_uuid_mount(
135 struct xfs_mount *mp)
136{
137 uuid_t *uuid = &mp->m_sb.sb_uuid;
138 int hole, i;
139
140 if (mp->m_flags & XFS_MOUNT_NOUUID)
141 return 0;
142
143 if (uuid_is_nil(uuid)) {
144 cmn_err(CE_WARN,
145 "XFS: Filesystem %s has nil UUID - can't mount",
146 mp->m_fsname);
147 return XFS_ERROR(EINVAL);
148 }
149
150 mutex_lock(&xfs_uuid_table_mutex);
151 for (i = 0, hole = -1; i < xfs_uuid_table_size; i++) {
152 if (uuid_is_nil(&xfs_uuid_table[i])) {
153 hole = i;
154 continue;
155 }
156 if (uuid_equal(uuid, &xfs_uuid_table[i]))
157 goto out_duplicate;
158 }
159
160 if (hole < 0) {
161 xfs_uuid_table = kmem_realloc(xfs_uuid_table,
162 (xfs_uuid_table_size + 1) * sizeof(*xfs_uuid_table),
163 xfs_uuid_table_size * sizeof(*xfs_uuid_table),
164 KM_SLEEP);
165 hole = xfs_uuid_table_size++;
166 }
167 xfs_uuid_table[hole] = *uuid;
168 mutex_unlock(&xfs_uuid_table_mutex);
169
170 return 0;
171
172 out_duplicate:
173 mutex_unlock(&xfs_uuid_table_mutex);
174 cmn_err(CE_WARN, "XFS: Filesystem %s has duplicate UUID - can't mount",
175 mp->m_fsname);
176 return XFS_ERROR(EINVAL);
177}
178
179STATIC void
180xfs_uuid_unmount(
181 struct xfs_mount *mp)
182{
183 uuid_t *uuid = &mp->m_sb.sb_uuid;
184 int i;
185
186 if (mp->m_flags & XFS_MOUNT_NOUUID)
187 return;
188
189 mutex_lock(&xfs_uuid_table_mutex);
190 for (i = 0; i < xfs_uuid_table_size; i++) {
191 if (uuid_is_nil(&xfs_uuid_table[i]))
192 continue;
193 if (!uuid_equal(uuid, &xfs_uuid_table[i]))
194 continue;
195 memset(&xfs_uuid_table[i], 0, sizeof(uuid_t));
196 break;
197 }
198 ASSERT(i < xfs_uuid_table_size);
199 mutex_unlock(&xfs_uuid_table_mutex);
200}
201
202
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 * Free up the resources associated with a mount structure. Assume that
205 * the structure was initially zeroed, so we can tell which fields got
206 * initialized.
207 */
Christoph Hellwigc962fb72008-05-20 15:10:52 +1000208STATIC void
Christoph Hellwigff4f0382008-08-13 16:50:47 +1000209xfs_free_perag(
Christoph Hellwig745f6912007-08-30 17:20:39 +1000210 xfs_mount_t *mp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211{
Dave Chinner1c1c6eb2010-01-11 11:47:44 +0000212 xfs_agnumber_t agno;
213 struct xfs_perag *pag;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214
Dave Chinner1c1c6eb2010-01-11 11:47:44 +0000215 for (agno = 0; agno < mp->m_sb.sb_agcount; agno++) {
216 spin_lock(&mp->m_perag_lock);
217 pag = radix_tree_delete(&mp->m_perag_tree, agno);
218 spin_unlock(&mp->m_perag_lock);
219 ASSERT(pag);
220 kmem_free(pag->pagb_list);
221 kmem_free(pag);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223}
224
Nathan Scott4cc929e2007-05-14 18:24:02 +1000225/*
226 * Check size of device based on the (data/realtime) block count.
227 * Note: this check is used by the growfs code as well as mount.
228 */
229int
230xfs_sb_validate_fsb_count(
231 xfs_sb_t *sbp,
232 __uint64_t nblocks)
233{
234 ASSERT(PAGE_SHIFT >= sbp->sb_blocklog);
235 ASSERT(sbp->sb_blocklog >= BBSHIFT);
236
237#if XFS_BIG_BLKNOS /* Limited by ULONG_MAX of page cache index */
238 if (nblocks >> (PAGE_CACHE_SHIFT - sbp->sb_blocklog) > ULONG_MAX)
239 return E2BIG;
240#else /* Limited by UINT_MAX of sectors */
241 if (nblocks << (sbp->sb_blocklog - BBSHIFT) > UINT_MAX)
242 return E2BIG;
243#endif
244 return 0;
245}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246
247/*
248 * Check the validity of the SB found.
249 */
250STATIC int
251xfs_mount_validate_sb(
252 xfs_mount_t *mp,
Nathan Scott764d1f82006-03-31 13:04:17 +1000253 xfs_sb_t *sbp,
254 int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255{
256 /*
257 * If the log device and data device have the
258 * same device number, the log is internal.
259 * Consequently, the sb_logstart should be non-zero. If
260 * we have a zero sb_logstart in this case, we may be trying to mount
261 * a volume filesystem in a non-volume manner.
262 */
263 if (sbp->sb_magicnum != XFS_SB_MAGIC) {
Nathan Scott764d1f82006-03-31 13:04:17 +1000264 xfs_fs_mount_cmn_err(flags, "bad magic number");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 return XFS_ERROR(EWRONGFS);
266 }
267
Eric Sandeen62118702008-03-06 13:44:28 +1100268 if (!xfs_sb_good_version(sbp)) {
Nathan Scott764d1f82006-03-31 13:04:17 +1000269 xfs_fs_mount_cmn_err(flags, "bad version");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 return XFS_ERROR(EWRONGFS);
271 }
272
273 if (unlikely(
274 sbp->sb_logstart == 0 && mp->m_logdev_targp == mp->m_ddev_targp)) {
Nathan Scott764d1f82006-03-31 13:04:17 +1000275 xfs_fs_mount_cmn_err(flags,
276 "filesystem is marked as having an external log; "
277 "specify logdev on the\nmount command line.");
278 return XFS_ERROR(EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 }
280
281 if (unlikely(
282 sbp->sb_logstart != 0 && mp->m_logdev_targp != mp->m_ddev_targp)) {
Nathan Scott764d1f82006-03-31 13:04:17 +1000283 xfs_fs_mount_cmn_err(flags,
284 "filesystem is marked as having an internal log; "
285 "do not specify logdev on\nthe mount command line.");
286 return XFS_ERROR(EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 }
288
289 /*
290 * More sanity checking. These were stolen directly from
291 * xfs_repair.
292 */
293 if (unlikely(
294 sbp->sb_agcount <= 0 ||
295 sbp->sb_sectsize < XFS_MIN_SECTORSIZE ||
296 sbp->sb_sectsize > XFS_MAX_SECTORSIZE ||
297 sbp->sb_sectlog < XFS_MIN_SECTORSIZE_LOG ||
298 sbp->sb_sectlog > XFS_MAX_SECTORSIZE_LOG ||
Olaf Weber2ac00af2009-04-17 16:12:45 -0500299 sbp->sb_sectsize != (1 << sbp->sb_sectlog) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 sbp->sb_blocksize < XFS_MIN_BLOCKSIZE ||
301 sbp->sb_blocksize > XFS_MAX_BLOCKSIZE ||
302 sbp->sb_blocklog < XFS_MIN_BLOCKSIZE_LOG ||
303 sbp->sb_blocklog > XFS_MAX_BLOCKSIZE_LOG ||
Olaf Weber2ac00af2009-04-17 16:12:45 -0500304 sbp->sb_blocksize != (1 << sbp->sb_blocklog) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 sbp->sb_inodesize < XFS_DINODE_MIN_SIZE ||
306 sbp->sb_inodesize > XFS_DINODE_MAX_SIZE ||
Nathan Scott9f989c92006-03-14 13:29:32 +1100307 sbp->sb_inodelog < XFS_DINODE_MIN_LOG ||
308 sbp->sb_inodelog > XFS_DINODE_MAX_LOG ||
Olaf Weber2ac00af2009-04-17 16:12:45 -0500309 sbp->sb_inodesize != (1 << sbp->sb_inodelog) ||
Nathan Scott9f989c92006-03-14 13:29:32 +1100310 (sbp->sb_blocklog - sbp->sb_inodelog != sbp->sb_inopblog) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 (sbp->sb_rextsize * sbp->sb_blocksize > XFS_MAX_RTEXTSIZE) ||
312 (sbp->sb_rextsize * sbp->sb_blocksize < XFS_MIN_RTEXTSIZE) ||
Nathan Scotte50bd162006-04-11 15:10:45 +1000313 (sbp->sb_imax_pct > 100 /* zero sb_imax_pct is valid */))) {
Nathan Scott764d1f82006-03-31 13:04:17 +1000314 xfs_fs_mount_cmn_err(flags, "SB sanity check 1 failed");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 return XFS_ERROR(EFSCORRUPTED);
316 }
317
318 /*
319 * Sanity check AG count, size fields against data size field
320 */
321 if (unlikely(
322 sbp->sb_dblocks == 0 ||
323 sbp->sb_dblocks >
324 (xfs_drfsbno_t)sbp->sb_agcount * sbp->sb_agblocks ||
325 sbp->sb_dblocks < (xfs_drfsbno_t)(sbp->sb_agcount - 1) *
326 sbp->sb_agblocks + XFS_MIN_AG_BLOCKS)) {
Nathan Scott764d1f82006-03-31 13:04:17 +1000327 xfs_fs_mount_cmn_err(flags, "SB sanity check 2 failed");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 return XFS_ERROR(EFSCORRUPTED);
329 }
330
Lachlan McIlroy2edbddd2008-06-27 13:34:34 +1000331 /*
332 * Until this is fixed only page-sized or smaller data blocks work.
333 */
334 if (unlikely(sbp->sb_blocksize > PAGE_SIZE)) {
335 xfs_fs_mount_cmn_err(flags,
336 "file system with blocksize %d bytes",
337 sbp->sb_blocksize);
338 xfs_fs_mount_cmn_err(flags,
339 "only pagesize (%ld) or less will currently work.",
340 PAGE_SIZE);
341 return XFS_ERROR(ENOSYS);
342 }
343
Christoph Hellwig1a5902c2009-03-29 19:26:46 +0200344 /*
345 * Currently only very few inode sizes are supported.
346 */
347 switch (sbp->sb_inodesize) {
348 case 256:
349 case 512:
350 case 1024:
351 case 2048:
352 break;
353 default:
354 xfs_fs_mount_cmn_err(flags,
355 "inode size of %d bytes not supported",
356 sbp->sb_inodesize);
357 return XFS_ERROR(ENOSYS);
358 }
359
Nathan Scott4cc929e2007-05-14 18:24:02 +1000360 if (xfs_sb_validate_fsb_count(sbp, sbp->sb_dblocks) ||
361 xfs_sb_validate_fsb_count(sbp, sbp->sb_rblocks)) {
Nathan Scott764d1f82006-03-31 13:04:17 +1000362 xfs_fs_mount_cmn_err(flags,
363 "file system too large to be mounted on this system.");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 return XFS_ERROR(E2BIG);
365 }
366
367 if (unlikely(sbp->sb_inprogress)) {
Nathan Scott764d1f82006-03-31 13:04:17 +1000368 xfs_fs_mount_cmn_err(flags, "file system busy");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 return XFS_ERROR(EFSCORRUPTED);
370 }
371
372 /*
Nathan Scottde206142005-05-05 13:24:13 -0700373 * Version 1 directory format has never worked on Linux.
374 */
Eric Sandeen62118702008-03-06 13:44:28 +1100375 if (unlikely(!xfs_sb_version_hasdirv2(sbp))) {
Nathan Scott764d1f82006-03-31 13:04:17 +1000376 xfs_fs_mount_cmn_err(flags,
377 "file system using version 1 directory format");
Nathan Scottde206142005-05-05 13:24:13 -0700378 return XFS_ERROR(ENOSYS);
379 }
380
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 return 0;
382}
383
David Chinnerda353b02007-08-28 14:00:13 +1000384STATIC void
385xfs_initialize_perag_icache(
386 xfs_perag_t *pag)
387{
388 if (!pag->pag_ici_init) {
389 rwlock_init(&pag->pag_ici_lock);
390 INIT_RADIX_TREE(&pag->pag_ici_root, GFP_ATOMIC);
391 pag->pag_ici_init = 1;
392 }
393}
394
Dave Chinner1c1c6eb2010-01-11 11:47:44 +0000395int
Nathan Scottc11e2c32005-11-02 15:11:45 +1100396xfs_initialize_perag(
Nathan Scottc11e2c32005-11-02 15:11:45 +1100397 xfs_mount_t *mp,
Dave Chinner1c1c6eb2010-01-11 11:47:44 +0000398 xfs_agnumber_t agcount,
399 xfs_agnumber_t *maxagi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400{
401 xfs_agnumber_t index, max_metadata;
402 xfs_perag_t *pag;
403 xfs_agino_t agino;
404 xfs_ino_t ino;
405 xfs_sb_t *sbp = &mp->m_sb;
406 xfs_ino_t max_inum = XFS_MAXINUMBER_32;
407
408 /* Check to see if the filesystem can overflow 32 bit inodes */
409 agino = XFS_OFFBNO_TO_AGINO(mp, sbp->sb_agblocks - 1, 0);
410 ino = XFS_AGINO_TO_INO(mp, agcount - 1, agino);
411
Dave Chinner1c1c6eb2010-01-11 11:47:44 +0000412 /*
413 * Walk the current per-ag tree so we don't try to initialise AGs
414 * that already exist (growfs case). Allocate and insert all the
415 * AGs we don't find ready for initialisation.
416 */
417 for (index = 0; index < agcount; index++) {
418 pag = xfs_perag_get(mp, index);
419 if (pag) {
420 xfs_perag_put(pag);
421 continue;
422 }
423 pag = kmem_zalloc(sizeof(*pag), KM_MAYFAIL);
424 if (!pag)
425 return -ENOMEM;
426 if (radix_tree_preload(GFP_NOFS))
427 return -ENOMEM;
428 spin_lock(&mp->m_perag_lock);
429 if (radix_tree_insert(&mp->m_perag_tree, index, pag)) {
430 BUG();
431 spin_unlock(&mp->m_perag_lock);
432 kmem_free(pag);
433 return -EEXIST;
434 }
435 spin_unlock(&mp->m_perag_lock);
436 radix_tree_preload_end();
437 }
438
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 /* Clear the mount flag if no inode can overflow 32 bits
440 * on this filesystem, or if specifically requested..
441 */
Christoph Hellwigbd186aa2007-08-30 17:21:12 +1000442 if ((mp->m_flags & XFS_MOUNT_SMALL_INUMS) && ino > max_inum) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 mp->m_flags |= XFS_MOUNT_32BITINODES;
444 } else {
445 mp->m_flags &= ~XFS_MOUNT_32BITINODES;
446 }
447
448 /* If we can overflow then setup the ag headers accordingly */
449 if (mp->m_flags & XFS_MOUNT_32BITINODES) {
450 /* Calculate how much should be reserved for inodes to
451 * meet the max inode percentage.
452 */
453 if (mp->m_maxicount) {
454 __uint64_t icount;
455
456 icount = sbp->sb_dblocks * sbp->sb_imax_pct;
457 do_div(icount, 100);
458 icount += sbp->sb_agblocks - 1;
Eric Sandeena749ee82005-11-02 15:13:42 +1100459 do_div(icount, sbp->sb_agblocks);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 max_metadata = icount;
461 } else {
462 max_metadata = agcount;
463 }
464 for (index = 0; index < agcount; index++) {
465 ino = XFS_AGINO_TO_INO(mp, index, agino);
466 if (ino > max_inum) {
467 index++;
468 break;
469 }
470
Nathan Scottc41564b2006-03-29 08:55:14 +1000471 /* This ag is preferred for inodes */
Dave Chinner44b56e02010-01-11 11:47:43 +0000472 pag = xfs_perag_get(mp, index);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 pag->pagi_inodeok = 1;
474 if (index < max_metadata)
475 pag->pagf_metadata = 1;
David Chinnerda353b02007-08-28 14:00:13 +1000476 xfs_initialize_perag_icache(pag);
Dave Chinner44b56e02010-01-11 11:47:43 +0000477 xfs_perag_put(pag);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 }
479 } else {
480 /* Setup default behavior for smaller filesystems */
481 for (index = 0; index < agcount; index++) {
Dave Chinner44b56e02010-01-11 11:47:43 +0000482 pag = xfs_perag_get(mp, index);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 pag->pagi_inodeok = 1;
David Chinnerda353b02007-08-28 14:00:13 +1000484 xfs_initialize_perag_icache(pag);
Dave Chinner44b56e02010-01-11 11:47:43 +0000485 xfs_perag_put(pag);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 }
487 }
Dave Chinner1c1c6eb2010-01-11 11:47:44 +0000488 if (maxagi)
489 *maxagi = index;
490 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491}
492
Christoph Hellwig2bdf7cd2007-08-28 13:58:06 +1000493void
494xfs_sb_from_disk(
495 xfs_sb_t *to,
496 xfs_dsb_t *from)
497{
498 to->sb_magicnum = be32_to_cpu(from->sb_magicnum);
499 to->sb_blocksize = be32_to_cpu(from->sb_blocksize);
500 to->sb_dblocks = be64_to_cpu(from->sb_dblocks);
501 to->sb_rblocks = be64_to_cpu(from->sb_rblocks);
502 to->sb_rextents = be64_to_cpu(from->sb_rextents);
503 memcpy(&to->sb_uuid, &from->sb_uuid, sizeof(to->sb_uuid));
504 to->sb_logstart = be64_to_cpu(from->sb_logstart);
505 to->sb_rootino = be64_to_cpu(from->sb_rootino);
506 to->sb_rbmino = be64_to_cpu(from->sb_rbmino);
507 to->sb_rsumino = be64_to_cpu(from->sb_rsumino);
508 to->sb_rextsize = be32_to_cpu(from->sb_rextsize);
509 to->sb_agblocks = be32_to_cpu(from->sb_agblocks);
510 to->sb_agcount = be32_to_cpu(from->sb_agcount);
511 to->sb_rbmblocks = be32_to_cpu(from->sb_rbmblocks);
512 to->sb_logblocks = be32_to_cpu(from->sb_logblocks);
513 to->sb_versionnum = be16_to_cpu(from->sb_versionnum);
514 to->sb_sectsize = be16_to_cpu(from->sb_sectsize);
515 to->sb_inodesize = be16_to_cpu(from->sb_inodesize);
516 to->sb_inopblock = be16_to_cpu(from->sb_inopblock);
517 memcpy(&to->sb_fname, &from->sb_fname, sizeof(to->sb_fname));
518 to->sb_blocklog = from->sb_blocklog;
519 to->sb_sectlog = from->sb_sectlog;
520 to->sb_inodelog = from->sb_inodelog;
521 to->sb_inopblog = from->sb_inopblog;
522 to->sb_agblklog = from->sb_agblklog;
523 to->sb_rextslog = from->sb_rextslog;
524 to->sb_inprogress = from->sb_inprogress;
525 to->sb_imax_pct = from->sb_imax_pct;
526 to->sb_icount = be64_to_cpu(from->sb_icount);
527 to->sb_ifree = be64_to_cpu(from->sb_ifree);
528 to->sb_fdblocks = be64_to_cpu(from->sb_fdblocks);
529 to->sb_frextents = be64_to_cpu(from->sb_frextents);
530 to->sb_uquotino = be64_to_cpu(from->sb_uquotino);
531 to->sb_gquotino = be64_to_cpu(from->sb_gquotino);
532 to->sb_qflags = be16_to_cpu(from->sb_qflags);
533 to->sb_flags = from->sb_flags;
534 to->sb_shared_vn = from->sb_shared_vn;
535 to->sb_inoalignmt = be32_to_cpu(from->sb_inoalignmt);
536 to->sb_unit = be32_to_cpu(from->sb_unit);
537 to->sb_width = be32_to_cpu(from->sb_width);
538 to->sb_dirblklog = from->sb_dirblklog;
539 to->sb_logsectlog = from->sb_logsectlog;
540 to->sb_logsectsize = be16_to_cpu(from->sb_logsectsize);
541 to->sb_logsunit = be32_to_cpu(from->sb_logsunit);
542 to->sb_features2 = be32_to_cpu(from->sb_features2);
David Chinneree1c0902008-03-06 13:45:50 +1100543 to->sb_bad_features2 = be32_to_cpu(from->sb_bad_features2);
Christoph Hellwig2bdf7cd2007-08-28 13:58:06 +1000544}
545
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546/*
Christoph Hellwig2bdf7cd2007-08-28 13:58:06 +1000547 * Copy in core superblock to ondisk one.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 *
Christoph Hellwig2bdf7cd2007-08-28 13:58:06 +1000549 * The fields argument is mask of superblock fields to copy.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 */
551void
Christoph Hellwig2bdf7cd2007-08-28 13:58:06 +1000552xfs_sb_to_disk(
553 xfs_dsb_t *to,
554 xfs_sb_t *from,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 __int64_t fields)
556{
Christoph Hellwig2bdf7cd2007-08-28 13:58:06 +1000557 xfs_caddr_t to_ptr = (xfs_caddr_t)to;
558 xfs_caddr_t from_ptr = (xfs_caddr_t)from;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 xfs_sb_field_t f;
560 int first;
561 int size;
562
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 ASSERT(fields);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 if (!fields)
565 return;
566
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567 while (fields) {
568 f = (xfs_sb_field_t)xfs_lowbit64((__uint64_t)fields);
569 first = xfs_sb_info[f].offset;
570 size = xfs_sb_info[f + 1].offset - first;
571
572 ASSERT(xfs_sb_info[f].type == 0 || xfs_sb_info[f].type == 1);
573
574 if (size == 1 || xfs_sb_info[f].type == 1) {
Christoph Hellwig2bdf7cd2007-08-28 13:58:06 +1000575 memcpy(to_ptr + first, from_ptr + first, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 } else {
577 switch (size) {
578 case 2:
Christoph Hellwig2bdf7cd2007-08-28 13:58:06 +1000579 *(__be16 *)(to_ptr + first) =
580 cpu_to_be16(*(__u16 *)(from_ptr + first));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 break;
582 case 4:
Christoph Hellwig2bdf7cd2007-08-28 13:58:06 +1000583 *(__be32 *)(to_ptr + first) =
584 cpu_to_be32(*(__u32 *)(from_ptr + first));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 break;
586 case 8:
Christoph Hellwig2bdf7cd2007-08-28 13:58:06 +1000587 *(__be64 *)(to_ptr + first) =
588 cpu_to_be64(*(__u64 *)(from_ptr + first));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 break;
590 default:
591 ASSERT(0);
592 }
593 }
594
595 fields &= ~(1LL << f);
596 }
597}
598
599/*
600 * xfs_readsb
601 *
602 * Does the initial read of the superblock.
603 */
604int
Nathan Scott764d1f82006-03-31 13:04:17 +1000605xfs_readsb(xfs_mount_t *mp, int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606{
607 unsigned int sector_size;
608 unsigned int extra_flags;
609 xfs_buf_t *bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 int error;
611
612 ASSERT(mp->m_sb_bp == NULL);
613 ASSERT(mp->m_ddev_targp != NULL);
614
615 /*
616 * Allocate a (locked) buffer to hold the superblock.
617 * This will be kept around at all times to optimize
618 * access to the superblock.
619 */
620 sector_size = xfs_getsize_buftarg(mp->m_ddev_targp);
621 extra_flags = XFS_BUF_LOCK | XFS_BUF_MANAGE | XFS_BUF_MAPPED;
622
Christoph Hellwig6ad112b2009-11-24 18:02:23 +0000623 bp = xfs_buf_read(mp->m_ddev_targp, XFS_SB_DADDR, BTOBB(sector_size),
624 extra_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 if (!bp || XFS_BUF_ISERROR(bp)) {
Nathan Scott764d1f82006-03-31 13:04:17 +1000626 xfs_fs_mount_cmn_err(flags, "SB read failed");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 error = bp ? XFS_BUF_GETERROR(bp) : ENOMEM;
628 goto fail;
629 }
630 ASSERT(XFS_BUF_ISBUSY(bp));
631 ASSERT(XFS_BUF_VALUSEMA(bp) <= 0);
632
633 /*
634 * Initialize the mount structure from the superblock.
635 * But first do some basic consistency checking.
636 */
Christoph Hellwig2bdf7cd2007-08-28 13:58:06 +1000637 xfs_sb_from_disk(&mp->m_sb, XFS_BUF_TO_SBP(bp));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638
Nathan Scott764d1f82006-03-31 13:04:17 +1000639 error = xfs_mount_validate_sb(mp, &(mp->m_sb), flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 if (error) {
Nathan Scott764d1f82006-03-31 13:04:17 +1000641 xfs_fs_mount_cmn_err(flags, "SB validate failed");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 goto fail;
643 }
644
645 /*
646 * We must be able to do sector-sized and sector-aligned IO.
647 */
648 if (sector_size > mp->m_sb.sb_sectsize) {
Nathan Scott764d1f82006-03-31 13:04:17 +1000649 xfs_fs_mount_cmn_err(flags,
650 "device supports only %u byte sectors (not %u)",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 sector_size, mp->m_sb.sb_sectsize);
652 error = ENOSYS;
653 goto fail;
654 }
655
656 /*
657 * If device sector size is smaller than the superblock size,
658 * re-read the superblock so the buffer is correctly sized.
659 */
660 if (sector_size < mp->m_sb.sb_sectsize) {
661 XFS_BUF_UNMANAGE(bp);
662 xfs_buf_relse(bp);
663 sector_size = mp->m_sb.sb_sectsize;
Christoph Hellwig6ad112b2009-11-24 18:02:23 +0000664 bp = xfs_buf_read(mp->m_ddev_targp, XFS_SB_DADDR,
665 BTOBB(sector_size), extra_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 if (!bp || XFS_BUF_ISERROR(bp)) {
Nathan Scott764d1f82006-03-31 13:04:17 +1000667 xfs_fs_mount_cmn_err(flags, "SB re-read failed");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 error = bp ? XFS_BUF_GETERROR(bp) : ENOMEM;
669 goto fail;
670 }
671 ASSERT(XFS_BUF_ISBUSY(bp));
672 ASSERT(XFS_BUF_VALUSEMA(bp) <= 0);
673 }
674
Lachlan McIlroy5478eea2007-02-10 18:36:29 +1100675 /* Initialize per-cpu counters */
676 xfs_icsb_reinit_counters(mp);
David Chinner8d280b92006-03-14 13:13:09 +1100677
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 mp->m_sb_bp = bp;
679 xfs_buf_relse(bp);
680 ASSERT(XFS_BUF_VALUSEMA(bp) > 0);
681 return 0;
682
683 fail:
684 if (bp) {
685 XFS_BUF_UNMANAGE(bp);
686 xfs_buf_relse(bp);
687 }
688 return error;
689}
690
691
692/*
693 * xfs_mount_common
694 *
695 * Mount initialization code establishing various mount
696 * fields from the superblock associated with the given
697 * mount structure
698 */
Christoph Hellwigba0f32d2005-06-21 15:36:52 +1000699STATIC void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700xfs_mount_common(xfs_mount_t *mp, xfs_sb_t *sbp)
701{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 mp->m_agfrotor = mp->m_agirotor = 0;
Eric Sandeen007c61c2007-10-11 17:43:56 +1000703 spin_lock_init(&mp->m_agirotor_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 mp->m_maxagi = mp->m_sb.sb_agcount;
705 mp->m_blkbit_log = sbp->sb_blocklog + XFS_NBBYLOG;
706 mp->m_blkbb_log = sbp->sb_blocklog - BBSHIFT;
707 mp->m_sectbb_log = sbp->sb_sectlog - BBSHIFT;
708 mp->m_agno_log = xfs_highbit32(sbp->sb_agcount - 1) + 1;
709 mp->m_agino_log = sbp->sb_inopblog + sbp->sb_agblklog;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 mp->m_blockmask = sbp->sb_blocksize - 1;
711 mp->m_blockwsize = sbp->sb_blocksize >> XFS_WORDLOG;
712 mp->m_blockwmask = mp->m_blockwsize - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713
Christoph Hellwig60197e82008-10-30 17:11:19 +1100714 mp->m_alloc_mxr[0] = xfs_allocbt_maxrecs(mp, sbp->sb_blocksize, 1);
715 mp->m_alloc_mxr[1] = xfs_allocbt_maxrecs(mp, sbp->sb_blocksize, 0);
716 mp->m_alloc_mnr[0] = mp->m_alloc_mxr[0] / 2;
717 mp->m_alloc_mnr[1] = mp->m_alloc_mxr[1] / 2;
718
719 mp->m_inobt_mxr[0] = xfs_inobt_maxrecs(mp, sbp->sb_blocksize, 1);
720 mp->m_inobt_mxr[1] = xfs_inobt_maxrecs(mp, sbp->sb_blocksize, 0);
721 mp->m_inobt_mnr[0] = mp->m_inobt_mxr[0] / 2;
722 mp->m_inobt_mnr[1] = mp->m_inobt_mxr[1] / 2;
723
724 mp->m_bmap_dmxr[0] = xfs_bmbt_maxrecs(mp, sbp->sb_blocksize, 1);
725 mp->m_bmap_dmxr[1] = xfs_bmbt_maxrecs(mp, sbp->sb_blocksize, 0);
726 mp->m_bmap_dmnr[0] = mp->m_bmap_dmxr[0] / 2;
727 mp->m_bmap_dmnr[1] = mp->m_bmap_dmxr[1] / 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728
729 mp->m_bsize = XFS_FSB_TO_BB(mp, 1);
730 mp->m_ialloc_inos = (int)MAX((__uint16_t)XFS_INODES_PER_CHUNK,
731 sbp->sb_inopblock);
732 mp->m_ialloc_blks = mp->m_ialloc_inos >> sbp->sb_inopblog;
733}
David Chinner92821e22007-05-24 15:26:31 +1000734
735/*
736 * xfs_initialize_perag_data
737 *
738 * Read in each per-ag structure so we can count up the number of
739 * allocated inodes, free inodes and used filesystem blocks as this
740 * information is no longer persistent in the superblock. Once we have
741 * this information, write it into the in-core superblock structure.
742 */
743STATIC int
744xfs_initialize_perag_data(xfs_mount_t *mp, xfs_agnumber_t agcount)
745{
746 xfs_agnumber_t index;
747 xfs_perag_t *pag;
748 xfs_sb_t *sbp = &mp->m_sb;
749 uint64_t ifree = 0;
750 uint64_t ialloc = 0;
751 uint64_t bfree = 0;
752 uint64_t bfreelst = 0;
753 uint64_t btree = 0;
754 int error;
David Chinner92821e22007-05-24 15:26:31 +1000755
756 for (index = 0; index < agcount; index++) {
757 /*
758 * read the agf, then the agi. This gets us
Malcolm Parsons9da096f2009-03-29 09:55:42 +0200759 * all the information we need and populates the
David Chinner92821e22007-05-24 15:26:31 +1000760 * per-ag structures for us.
761 */
762 error = xfs_alloc_pagf_init(mp, NULL, index, 0);
763 if (error)
764 return error;
765
766 error = xfs_ialloc_pagi_init(mp, NULL, index);
767 if (error)
768 return error;
Dave Chinner44b56e02010-01-11 11:47:43 +0000769 pag = xfs_perag_get(mp, index);
David Chinner92821e22007-05-24 15:26:31 +1000770 ifree += pag->pagi_freecount;
771 ialloc += pag->pagi_count;
772 bfree += pag->pagf_freeblks;
773 bfreelst += pag->pagf_flcount;
774 btree += pag->pagf_btreeblks;
Dave Chinner44b56e02010-01-11 11:47:43 +0000775 xfs_perag_put(pag);
David Chinner92821e22007-05-24 15:26:31 +1000776 }
777 /*
778 * Overwrite incore superblock counters with just-read data
779 */
Eric Sandeen3685c2a2007-10-11 17:42:32 +1000780 spin_lock(&mp->m_sb_lock);
David Chinner92821e22007-05-24 15:26:31 +1000781 sbp->sb_ifree = ifree;
782 sbp->sb_icount = ialloc;
783 sbp->sb_fdblocks = bfree + bfreelst + btree;
Eric Sandeen3685c2a2007-10-11 17:42:32 +1000784 spin_unlock(&mp->m_sb_lock);
David Chinner92821e22007-05-24 15:26:31 +1000785
786 /* Fixup the per-cpu counters as well. */
787 xfs_icsb_reinit_counters(mp);
788
789 return 0;
790}
791
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792/*
Eric Sandeen0771fb42007-10-12 11:03:40 +1000793 * Update alignment values based on mount options and sb values
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 */
Eric Sandeen0771fb42007-10-12 11:03:40 +1000795STATIC int
Christoph Hellwig7884bc82009-01-19 02:04:07 +0100796xfs_update_alignment(xfs_mount_t *mp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 xfs_sb_t *sbp = &(mp->m_sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799
Christoph Hellwig42490232008-08-13 16:49:32 +1000800 if (mp->m_dalign) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 /*
802 * If stripe unit and stripe width are not multiples
803 * of the fs blocksize turn off alignment.
804 */
805 if ((BBTOB(mp->m_dalign) & mp->m_blockmask) ||
806 (BBTOB(mp->m_swidth) & mp->m_blockmask)) {
807 if (mp->m_flags & XFS_MOUNT_RETERR) {
808 cmn_err(CE_WARN,
809 "XFS: alignment check 1 failed");
Eric Sandeen0771fb42007-10-12 11:03:40 +1000810 return XFS_ERROR(EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 }
812 mp->m_dalign = mp->m_swidth = 0;
813 } else {
814 /*
815 * Convert the stripe unit and width to FSBs.
816 */
817 mp->m_dalign = XFS_BB_TO_FSBT(mp, mp->m_dalign);
818 if (mp->m_dalign && (sbp->sb_agblocks % mp->m_dalign)) {
819 if (mp->m_flags & XFS_MOUNT_RETERR) {
Eric Sandeen0771fb42007-10-12 11:03:40 +1000820 return XFS_ERROR(EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 }
822 xfs_fs_cmn_err(CE_WARN, mp,
823"stripe alignment turned off: sunit(%d)/swidth(%d) incompatible with agsize(%d)",
824 mp->m_dalign, mp->m_swidth,
825 sbp->sb_agblocks);
826
827 mp->m_dalign = 0;
828 mp->m_swidth = 0;
829 } else if (mp->m_dalign) {
830 mp->m_swidth = XFS_BB_TO_FSBT(mp, mp->m_swidth);
831 } else {
832 if (mp->m_flags & XFS_MOUNT_RETERR) {
833 xfs_fs_cmn_err(CE_WARN, mp,
834"stripe alignment turned off: sunit(%d) less than bsize(%d)",
835 mp->m_dalign,
836 mp->m_blockmask +1);
Eric Sandeen0771fb42007-10-12 11:03:40 +1000837 return XFS_ERROR(EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838 }
839 mp->m_swidth = 0;
840 }
841 }
842
843 /*
844 * Update superblock with new values
845 * and log changes
846 */
Eric Sandeen62118702008-03-06 13:44:28 +1100847 if (xfs_sb_version_hasdalign(sbp)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 if (sbp->sb_unit != mp->m_dalign) {
849 sbp->sb_unit = mp->m_dalign;
Christoph Hellwig7884bc82009-01-19 02:04:07 +0100850 mp->m_update_flags |= XFS_SB_UNIT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 }
852 if (sbp->sb_width != mp->m_swidth) {
853 sbp->sb_width = mp->m_swidth;
Christoph Hellwig7884bc82009-01-19 02:04:07 +0100854 mp->m_update_flags |= XFS_SB_WIDTH;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 }
856 }
857 } else if ((mp->m_flags & XFS_MOUNT_NOALIGN) != XFS_MOUNT_NOALIGN &&
Eric Sandeen62118702008-03-06 13:44:28 +1100858 xfs_sb_version_hasdalign(&mp->m_sb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 mp->m_dalign = sbp->sb_unit;
860 mp->m_swidth = sbp->sb_width;
861 }
862
Eric Sandeen0771fb42007-10-12 11:03:40 +1000863 return 0;
864}
865
866/*
867 * Set the maximum inode count for this filesystem
868 */
869STATIC void
870xfs_set_maxicount(xfs_mount_t *mp)
871{
872 xfs_sb_t *sbp = &(mp->m_sb);
873 __uint64_t icount;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874
875 if (sbp->sb_imax_pct) {
Eric Sandeen0771fb42007-10-12 11:03:40 +1000876 /*
877 * Make sure the maximum inode count is a multiple
878 * of the units we allocate inodes in.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 icount = sbp->sb_dblocks * sbp->sb_imax_pct;
881 do_div(icount, 100);
882 do_div(icount, mp->m_ialloc_blks);
883 mp->m_maxicount = (icount * mp->m_ialloc_blks) <<
884 sbp->sb_inopblog;
Eric Sandeen0771fb42007-10-12 11:03:40 +1000885 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 mp->m_maxicount = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 }
Eric Sandeen0771fb42007-10-12 11:03:40 +1000888}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889
Eric Sandeen0771fb42007-10-12 11:03:40 +1000890/*
891 * Set the default minimum read and write sizes unless
892 * already specified in a mount option.
893 * We use smaller I/O sizes when the file system
894 * is being used for NFS service (wsync mount option).
895 */
896STATIC void
897xfs_set_rw_sizes(xfs_mount_t *mp)
898{
899 xfs_sb_t *sbp = &(mp->m_sb);
900 int readio_log, writeio_log;
901
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 if (!(mp->m_flags & XFS_MOUNT_DFLT_IOSIZE)) {
903 if (mp->m_flags & XFS_MOUNT_WSYNC) {
904 readio_log = XFS_WSYNC_READIO_LOG;
905 writeio_log = XFS_WSYNC_WRITEIO_LOG;
906 } else {
907 readio_log = XFS_READIO_LOG_LARGE;
908 writeio_log = XFS_WRITEIO_LOG_LARGE;
909 }
910 } else {
911 readio_log = mp->m_readio_log;
912 writeio_log = mp->m_writeio_log;
913 }
914
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915 if (sbp->sb_blocklog > readio_log) {
916 mp->m_readio_log = sbp->sb_blocklog;
917 } else {
918 mp->m_readio_log = readio_log;
919 }
920 mp->m_readio_blocks = 1 << (mp->m_readio_log - sbp->sb_blocklog);
921 if (sbp->sb_blocklog > writeio_log) {
922 mp->m_writeio_log = sbp->sb_blocklog;
923 } else {
924 mp->m_writeio_log = writeio_log;
925 }
926 mp->m_writeio_blocks = 1 << (mp->m_writeio_log - sbp->sb_blocklog);
Eric Sandeen0771fb42007-10-12 11:03:40 +1000927}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928
Eric Sandeen0771fb42007-10-12 11:03:40 +1000929/*
930 * Set whether we're using inode alignment.
931 */
932STATIC void
933xfs_set_inoalignment(xfs_mount_t *mp)
934{
Eric Sandeen62118702008-03-06 13:44:28 +1100935 if (xfs_sb_version_hasalign(&mp->m_sb) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 mp->m_sb.sb_inoalignmt >=
937 XFS_B_TO_FSBT(mp, mp->m_inode_cluster_size))
938 mp->m_inoalign_mask = mp->m_sb.sb_inoalignmt - 1;
939 else
940 mp->m_inoalign_mask = 0;
941 /*
942 * If we are using stripe alignment, check whether
943 * the stripe unit is a multiple of the inode alignment
944 */
945 if (mp->m_dalign && mp->m_inoalign_mask &&
946 !(mp->m_dalign & mp->m_inoalign_mask))
947 mp->m_sinoalign = mp->m_dalign;
948 else
949 mp->m_sinoalign = 0;
Eric Sandeen0771fb42007-10-12 11:03:40 +1000950}
951
952/*
953 * Check that the data (and log if separate) are an ok size.
954 */
955STATIC int
Christoph Hellwig42490232008-08-13 16:49:32 +1000956xfs_check_sizes(xfs_mount_t *mp)
Eric Sandeen0771fb42007-10-12 11:03:40 +1000957{
958 xfs_buf_t *bp;
959 xfs_daddr_t d;
960 int error;
961
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962 d = (xfs_daddr_t)XFS_FSB_TO_BB(mp, mp->m_sb.sb_dblocks);
963 if (XFS_BB_TO_FSB(mp, d) != mp->m_sb.sb_dblocks) {
964 cmn_err(CE_WARN, "XFS: size check 1 failed");
Eric Sandeen0771fb42007-10-12 11:03:40 +1000965 return XFS_ERROR(E2BIG);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966 }
967 error = xfs_read_buf(mp, mp->m_ddev_targp,
968 d - XFS_FSS_TO_BB(mp, 1),
969 XFS_FSS_TO_BB(mp, 1), 0, &bp);
970 if (!error) {
971 xfs_buf_relse(bp);
972 } else {
973 cmn_err(CE_WARN, "XFS: size check 2 failed");
Eric Sandeen0771fb42007-10-12 11:03:40 +1000974 if (error == ENOSPC)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 error = XFS_ERROR(E2BIG);
Eric Sandeen0771fb42007-10-12 11:03:40 +1000976 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977 }
978
Christoph Hellwig42490232008-08-13 16:49:32 +1000979 if (mp->m_logdev_targp != mp->m_ddev_targp) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980 d = (xfs_daddr_t)XFS_FSB_TO_BB(mp, mp->m_sb.sb_logblocks);
981 if (XFS_BB_TO_FSB(mp, d) != mp->m_sb.sb_logblocks) {
982 cmn_err(CE_WARN, "XFS: size check 3 failed");
Eric Sandeen0771fb42007-10-12 11:03:40 +1000983 return XFS_ERROR(E2BIG);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 }
985 error = xfs_read_buf(mp, mp->m_logdev_targp,
986 d - XFS_FSB_TO_BB(mp, 1),
987 XFS_FSB_TO_BB(mp, 1), 0, &bp);
988 if (!error) {
989 xfs_buf_relse(bp);
990 } else {
991 cmn_err(CE_WARN, "XFS: size check 3 failed");
Eric Sandeen0771fb42007-10-12 11:03:40 +1000992 if (error == ENOSPC)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993 error = XFS_ERROR(E2BIG);
Eric Sandeen0771fb42007-10-12 11:03:40 +1000994 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 }
996 }
Eric Sandeen0771fb42007-10-12 11:03:40 +1000997 return 0;
998}
999
1000/*
Christoph Hellwig7d095252009-06-08 15:33:32 +02001001 * Clear the quotaflags in memory and in the superblock.
1002 */
1003int
1004xfs_mount_reset_sbqflags(
1005 struct xfs_mount *mp)
1006{
1007 int error;
1008 struct xfs_trans *tp;
1009
1010 mp->m_qflags = 0;
1011
1012 /*
1013 * It is OK to look at sb_qflags here in mount path,
1014 * without m_sb_lock.
1015 */
1016 if (mp->m_sb.sb_qflags == 0)
1017 return 0;
1018 spin_lock(&mp->m_sb_lock);
1019 mp->m_sb.sb_qflags = 0;
1020 spin_unlock(&mp->m_sb_lock);
1021
1022 /*
1023 * If the fs is readonly, let the incore superblock run
1024 * with quotas off but don't flush the update out to disk
1025 */
1026 if (mp->m_flags & XFS_MOUNT_RDONLY)
1027 return 0;
1028
1029#ifdef QUOTADEBUG
1030 xfs_fs_cmn_err(CE_NOTE, mp, "Writing superblock quota changes");
1031#endif
1032
1033 tp = xfs_trans_alloc(mp, XFS_TRANS_QM_SBCHANGE);
1034 error = xfs_trans_reserve(tp, 0, mp->m_sb.sb_sectsize + 128, 0, 0,
1035 XFS_DEFAULT_LOG_COUNT);
1036 if (error) {
1037 xfs_trans_cancel(tp, 0);
1038 xfs_fs_cmn_err(CE_ALERT, mp,
1039 "xfs_mount_reset_sbqflags: Superblock update failed!");
1040 return error;
1041 }
1042
1043 xfs_mod_sb(tp, XFS_SB_QFLAGS);
1044 return xfs_trans_commit(tp, 0);
1045}
1046
1047/*
Eric Sandeen0771fb42007-10-12 11:03:40 +10001048 * This function does the following on an initial mount of a file system:
1049 * - reads the superblock from disk and init the mount struct
1050 * - if we're a 32-bit kernel, do a size check on the superblock
1051 * so we don't mount terabyte filesystems
1052 * - init mount struct realtime fields
1053 * - allocate inode hash table for fs
1054 * - init directory manager
1055 * - perform recovery and init the log manager
1056 */
1057int
1058xfs_mountfs(
Christoph Hellwig42490232008-08-13 16:49:32 +10001059 xfs_mount_t *mp)
Eric Sandeen0771fb42007-10-12 11:03:40 +10001060{
1061 xfs_sb_t *sbp = &(mp->m_sb);
1062 xfs_inode_t *rip;
Eric Sandeen0771fb42007-10-12 11:03:40 +10001063 __uint64_t resblks;
Christoph Hellwig7d095252009-06-08 15:33:32 +02001064 uint quotamount = 0;
1065 uint quotaflags = 0;
Eric Sandeen0771fb42007-10-12 11:03:40 +10001066 int error = 0;
1067
Eric Sandeen0771fb42007-10-12 11:03:40 +10001068 xfs_mount_common(mp, sbp);
1069
1070 /*
Eric Sandeene6957ea2008-04-10 12:19:34 +10001071 * Check for a mismatched features2 values. Older kernels
1072 * read & wrote into the wrong sb offset for sb_features2
1073 * on some platforms due to xfs_sb_t not being 64bit size aligned
1074 * when sb_features2 was added, which made older superblock
1075 * reading/writing routines swap it as a 64-bit value.
David Chinneree1c0902008-03-06 13:45:50 +11001076 *
Eric Sandeene6957ea2008-04-10 12:19:34 +10001077 * For backwards compatibility, we make both slots equal.
1078 *
1079 * If we detect a mismatched field, we OR the set bits into the
1080 * existing features2 field in case it has already been modified; we
1081 * don't want to lose any features. We then update the bad location
1082 * with the ORed value so that older kernels will see any features2
1083 * flags, and mark the two fields as needing updates once the
1084 * transaction subsystem is online.
David Chinneree1c0902008-03-06 13:45:50 +11001085 */
Eric Sandeene6957ea2008-04-10 12:19:34 +10001086 if (xfs_sb_has_mismatched_features2(sbp)) {
David Chinneree1c0902008-03-06 13:45:50 +11001087 cmn_err(CE_WARN,
1088 "XFS: correcting sb_features alignment problem");
1089 sbp->sb_features2 |= sbp->sb_bad_features2;
Eric Sandeene6957ea2008-04-10 12:19:34 +10001090 sbp->sb_bad_features2 = sbp->sb_features2;
Christoph Hellwig7884bc82009-01-19 02:04:07 +01001091 mp->m_update_flags |= XFS_SB_FEATURES2 | XFS_SB_BAD_FEATURES2;
Eric Sandeene6957ea2008-04-10 12:19:34 +10001092
1093 /*
1094 * Re-check for ATTR2 in case it was found in bad_features2
1095 * slot.
1096 */
Tim Shimmin7c12f292008-04-30 18:15:28 +10001097 if (xfs_sb_version_hasattr2(&mp->m_sb) &&
1098 !(mp->m_flags & XFS_MOUNT_NOATTR2))
Eric Sandeene6957ea2008-04-10 12:19:34 +10001099 mp->m_flags |= XFS_MOUNT_ATTR2;
Tim Shimmin7c12f292008-04-30 18:15:28 +10001100 }
Eric Sandeene6957ea2008-04-10 12:19:34 +10001101
Tim Shimmin7c12f292008-04-30 18:15:28 +10001102 if (xfs_sb_version_hasattr2(&mp->m_sb) &&
1103 (mp->m_flags & XFS_MOUNT_NOATTR2)) {
1104 xfs_sb_version_removeattr2(&mp->m_sb);
Christoph Hellwig7884bc82009-01-19 02:04:07 +01001105 mp->m_update_flags |= XFS_SB_FEATURES2;
Tim Shimmin7c12f292008-04-30 18:15:28 +10001106
1107 /* update sb_versionnum for the clearing of the morebits */
1108 if (!sbp->sb_features2)
Christoph Hellwig7884bc82009-01-19 02:04:07 +01001109 mp->m_update_flags |= XFS_SB_VERSIONNUM;
David Chinneree1c0902008-03-06 13:45:50 +11001110 }
1111
1112 /*
Eric Sandeen0771fb42007-10-12 11:03:40 +10001113 * Check if sb_agblocks is aligned at stripe boundary
1114 * If sb_agblocks is NOT aligned turn off m_dalign since
1115 * allocator alignment is within an ag, therefore ag has
1116 * to be aligned at stripe boundary.
1117 */
Christoph Hellwig7884bc82009-01-19 02:04:07 +01001118 error = xfs_update_alignment(mp);
Eric Sandeen0771fb42007-10-12 11:03:40 +10001119 if (error)
Christoph Hellwigf9057e32009-02-04 09:31:52 +01001120 goto out;
Eric Sandeen0771fb42007-10-12 11:03:40 +10001121
1122 xfs_alloc_compute_maxlevels(mp);
1123 xfs_bmap_compute_maxlevels(mp, XFS_DATA_FORK);
1124 xfs_bmap_compute_maxlevels(mp, XFS_ATTR_FORK);
1125 xfs_ialloc_compute_maxlevels(mp);
1126
1127 xfs_set_maxicount(mp);
1128
1129 mp->m_maxioffset = xfs_max_file_offset(sbp->sb_blocklog);
1130
Christoph Hellwig27174202009-03-30 10:21:31 +02001131 error = xfs_uuid_mount(mp);
1132 if (error)
1133 goto out;
Eric Sandeen0771fb42007-10-12 11:03:40 +10001134
1135 /*
1136 * Set the minimum read and write sizes
1137 */
1138 xfs_set_rw_sizes(mp);
1139
1140 /*
1141 * Set the inode cluster size.
1142 * This may still be overridden by the file system
1143 * block size if it is larger than the chosen cluster size.
1144 */
1145 mp->m_inode_cluster_size = XFS_INODE_BIG_CLUSTER_SIZE;
1146
1147 /*
1148 * Set inode alignment fields
1149 */
1150 xfs_set_inoalignment(mp);
1151
1152 /*
1153 * Check that the data (and log if separate) are an ok size.
1154 */
Christoph Hellwig42490232008-08-13 16:49:32 +10001155 error = xfs_check_sizes(mp);
Eric Sandeen0771fb42007-10-12 11:03:40 +10001156 if (error)
Christoph Hellwigf9057e32009-02-04 09:31:52 +01001157 goto out_remove_uuid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158
1159 /*
1160 * Initialize realtime fields in the mount structure
1161 */
Eric Sandeen0771fb42007-10-12 11:03:40 +10001162 error = xfs_rtmount_init(mp);
1163 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164 cmn_err(CE_WARN, "XFS: RT mount failed");
Christoph Hellwigf9057e32009-02-04 09:31:52 +01001165 goto out_remove_uuid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166 }
1167
1168 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169 * Copies the low order bits of the timestamp and the randomly
1170 * set "sequence" number out of a UUID.
1171 */
1172 uuid_getnodeuniq(&sbp->sb_uuid, mp->m_fixedfsid);
1173
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174 mp->m_dmevmask = 0; /* not persistent; set after each mount */
1175
Nathan Scottf6c2d1f2006-06-20 13:04:51 +10001176 xfs_dir_mount(mp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177
1178 /*
1179 * Initialize the attribute manager's entries.
1180 */
1181 mp->m_attr_magicpct = (mp->m_sb.sb_blocksize * 37) / 100;
1182
1183 /*
1184 * Initialize the precomputed transaction reservations values.
1185 */
1186 xfs_trans_init(mp);
1187
1188 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189 * Allocate and initialize the per-ag data.
1190 */
Dave Chinner1c1c6eb2010-01-11 11:47:44 +00001191 spin_lock_init(&mp->m_perag_lock);
1192 INIT_RADIX_TREE(&mp->m_perag_tree, GFP_NOFS);
1193 error = xfs_initialize_perag(mp, sbp->sb_agcount, &mp->m_maxagi);
1194 if (error) {
1195 cmn_err(CE_WARN, "XFS: Failed per-ag init: %d", error);
Christoph Hellwigf9057e32009-02-04 09:31:52 +01001196 goto out_remove_uuid;
Dave Chinner1c1c6eb2010-01-11 11:47:44 +00001197 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198
Christoph Hellwigf9057e32009-02-04 09:31:52 +01001199 if (!sbp->sb_logblocks) {
1200 cmn_err(CE_WARN, "XFS: no log defined");
1201 XFS_ERROR_REPORT("xfs_mountfs", XFS_ERRLEVEL_LOW, mp);
1202 error = XFS_ERROR(EFSCORRUPTED);
1203 goto out_free_perag;
1204 }
1205
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206 /*
1207 * log's mount-time initialization. Perform 1st part recovery if needed
1208 */
Christoph Hellwigf9057e32009-02-04 09:31:52 +01001209 error = xfs_log_mount(mp, mp->m_logdev_targp,
1210 XFS_FSB_TO_DADDR(mp, sbp->sb_logstart),
1211 XFS_FSB_TO_BB(mp, sbp->sb_logblocks));
1212 if (error) {
1213 cmn_err(CE_WARN, "XFS: log mount failed");
1214 goto out_free_perag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215 }
1216
1217 /*
David Chinner92821e22007-05-24 15:26:31 +10001218 * Now the log is mounted, we know if it was an unclean shutdown or
1219 * not. If it was, with the first phase of recovery has completed, we
1220 * have consistent AG blocks on disk. We have not recovered EFIs yet,
1221 * but they are recovered transactionally in the second recovery phase
1222 * later.
1223 *
1224 * Hence we can safely re-initialise incore superblock counters from
1225 * the per-ag data. These may not be correct if the filesystem was not
1226 * cleanly unmounted, so we need to wait for recovery to finish before
1227 * doing this.
1228 *
1229 * If the filesystem was cleanly unmounted, then we can trust the
1230 * values in the superblock to be correct and we don't need to do
1231 * anything here.
1232 *
1233 * If we are currently making the filesystem, the initialisation will
1234 * fail as the perag data is in an undefined state.
1235 */
David Chinner92821e22007-05-24 15:26:31 +10001236 if (xfs_sb_version_haslazysbcount(&mp->m_sb) &&
1237 !XFS_LAST_UNMOUNT_WAS_CLEAN(mp) &&
1238 !mp->m_sb.sb_inprogress) {
1239 error = xfs_initialize_perag_data(mp, sbp->sb_agcount);
Christoph Hellwigf9057e32009-02-04 09:31:52 +01001240 if (error)
1241 goto out_free_perag;
David Chinner92821e22007-05-24 15:26:31 +10001242 }
Christoph Hellwigf9057e32009-02-04 09:31:52 +01001243
David Chinner92821e22007-05-24 15:26:31 +10001244 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245 * Get and sanity-check the root inode.
1246 * Save the pointer to it in the mount structure.
1247 */
1248 error = xfs_iget(mp, NULL, sbp->sb_rootino, 0, XFS_ILOCK_EXCL, &rip, 0);
1249 if (error) {
1250 cmn_err(CE_WARN, "XFS: failed to read root inode");
Christoph Hellwigf9057e32009-02-04 09:31:52 +01001251 goto out_log_dealloc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252 }
1253
1254 ASSERT(rip != NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255
1256 if (unlikely((rip->i_d.di_mode & S_IFMT) != S_IFDIR)) {
1257 cmn_err(CE_WARN, "XFS: corrupted root inode");
Nathan Scottb6574522006-06-09 15:29:40 +10001258 cmn_err(CE_WARN, "Device %s - root %llu is not a directory",
1259 XFS_BUFTARG_NAME(mp->m_ddev_targp),
1260 (unsigned long long)rip->i_ino);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261 xfs_iunlock(rip, XFS_ILOCK_EXCL);
1262 XFS_ERROR_REPORT("xfs_mountfs_int(2)", XFS_ERRLEVEL_LOW,
1263 mp);
1264 error = XFS_ERROR(EFSCORRUPTED);
Christoph Hellwigf9057e32009-02-04 09:31:52 +01001265 goto out_rele_rip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266 }
1267 mp->m_rootip = rip; /* save it */
1268
1269 xfs_iunlock(rip, XFS_ILOCK_EXCL);
1270
1271 /*
1272 * Initialize realtime inode pointers in the mount structure
1273 */
Eric Sandeen0771fb42007-10-12 11:03:40 +10001274 error = xfs_rtmount_inodes(mp);
1275 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276 /*
1277 * Free up the root inode.
1278 */
1279 cmn_err(CE_WARN, "XFS: failed to read RT inodes");
Christoph Hellwigf9057e32009-02-04 09:31:52 +01001280 goto out_rele_rip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281 }
1282
1283 /*
Christoph Hellwig7884bc82009-01-19 02:04:07 +01001284 * If this is a read-only mount defer the superblock updates until
1285 * the next remount into writeable mode. Otherwise we would never
1286 * perform the update e.g. for the root filesystem.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287 */
Christoph Hellwig7884bc82009-01-19 02:04:07 +01001288 if (mp->m_update_flags && !(mp->m_flags & XFS_MOUNT_RDONLY)) {
1289 error = xfs_mount_log_sb(mp, mp->m_update_flags);
David Chinnere5720ee2008-04-10 12:21:18 +10001290 if (error) {
1291 cmn_err(CE_WARN, "XFS: failed to write sb changes");
Christoph Hellwigb93b6e42009-02-04 09:33:58 +01001292 goto out_rtunmount;
David Chinnere5720ee2008-04-10 12:21:18 +10001293 }
1294 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295
1296 /*
1297 * Initialise the XFS quota management subsystem for this mount
1298 */
Christoph Hellwig7d095252009-06-08 15:33:32 +02001299 if (XFS_IS_QUOTA_RUNNING(mp)) {
1300 error = xfs_qm_newmount(mp, &quotamount, &quotaflags);
1301 if (error)
1302 goto out_rtunmount;
1303 } else {
1304 ASSERT(!XFS_IS_QUOTA_ON(mp));
1305
1306 /*
1307 * If a file system had quotas running earlier, but decided to
1308 * mount without -o uquota/pquota/gquota options, revoke the
1309 * quotachecked license.
1310 */
1311 if (mp->m_sb.sb_qflags & XFS_ALL_QUOTA_ACCT) {
1312 cmn_err(CE_NOTE,
1313 "XFS: resetting qflags for filesystem %s",
1314 mp->m_fsname);
1315
1316 error = xfs_mount_reset_sbqflags(mp);
1317 if (error)
1318 return error;
1319 }
1320 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321
1322 /*
1323 * Finish recovering the file system. This part needed to be
1324 * delayed until after the root and real-time bitmap inodes
1325 * were consistently read in.
1326 */
Christoph Hellwig42490232008-08-13 16:49:32 +10001327 error = xfs_log_mount_finish(mp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328 if (error) {
1329 cmn_err(CE_WARN, "XFS: log mount finish failed");
Christoph Hellwigb93b6e42009-02-04 09:33:58 +01001330 goto out_rtunmount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331 }
1332
1333 /*
1334 * Complete the quota initialisation, post-log-replay component.
1335 */
Christoph Hellwig7d095252009-06-08 15:33:32 +02001336 if (quotamount) {
1337 ASSERT(mp->m_qflags == 0);
1338 mp->m_qflags = quotaflags;
1339
1340 xfs_qm_mount_quotas(mp);
1341 }
1342
1343#if defined(DEBUG) && defined(XFS_LOUD_RECOVERY)
1344 if (XFS_IS_QUOTA_ON(mp))
1345 xfs_fs_cmn_err(CE_NOTE, mp, "Disk quotas turned on");
1346 else
1347 xfs_fs_cmn_err(CE_NOTE, mp, "Disk quotas not turned on");
1348#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349
David Chinner84e1e992007-06-18 16:50:27 +10001350 /*
1351 * Now we are mounted, reserve a small amount of unused space for
1352 * privileged transactions. This is needed so that transaction
1353 * space required for critical operations can dip into this pool
1354 * when at ENOSPC. This is needed for operations like create with
1355 * attr, unwritten extent conversion at ENOSPC, etc. Data allocations
1356 * are not allowed to use this reserved space.
1357 *
1358 * We default to 5% or 1024 fsbs of space reserved, whichever is smaller.
1359 * This may drive us straight to ENOSPC on mount, but that implies
David Chinner714082b2008-04-10 12:20:03 +10001360 * we were already there on the last unmount. Warn if this occurs.
David Chinner84e1e992007-06-18 16:50:27 +10001361 */
Christoph Hellwig39726be2007-06-18 17:57:45 +10001362 resblks = mp->m_sb.sb_dblocks;
1363 do_div(resblks, 20);
1364 resblks = min_t(__uint64_t, resblks, 1024);
David Chinner714082b2008-04-10 12:20:03 +10001365 error = xfs_reserve_blocks(mp, &resblks, NULL);
1366 if (error)
1367 cmn_err(CE_WARN, "XFS: Unable to allocate reserve blocks. "
1368 "Continuing without a reserve pool.");
David Chinner84e1e992007-06-18 16:50:27 +10001369
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370 return 0;
1371
Christoph Hellwigb93b6e42009-02-04 09:33:58 +01001372 out_rtunmount:
1373 xfs_rtunmount_inodes(mp);
Christoph Hellwigf9057e32009-02-04 09:31:52 +01001374 out_rele_rip:
Christoph Hellwig43355092008-03-27 18:01:08 +11001375 IRELE(rip);
Christoph Hellwigf9057e32009-02-04 09:31:52 +01001376 out_log_dealloc:
Christoph Hellwig21b699c2009-03-16 08:19:29 +01001377 xfs_log_unmount(mp);
Christoph Hellwigf9057e32009-02-04 09:31:52 +01001378 out_free_perag:
Christoph Hellwigff4f0382008-08-13 16:50:47 +10001379 xfs_free_perag(mp);
Christoph Hellwigf9057e32009-02-04 09:31:52 +01001380 out_remove_uuid:
Christoph Hellwig27174202009-03-30 10:21:31 +02001381 xfs_uuid_unmount(mp);
Christoph Hellwigf9057e32009-02-04 09:31:52 +01001382 out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383 return error;
1384}
1385
1386/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387 * This flushes out the inodes,dquots and the superblock, unmounts the
1388 * log and makes sure that incore structures are freed.
1389 */
Christoph Hellwig41b5c2e2008-08-13 16:49:57 +10001390void
1391xfs_unmountfs(
1392 struct xfs_mount *mp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393{
Christoph Hellwig41b5c2e2008-08-13 16:49:57 +10001394 __uint64_t resblks;
1395 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396
Christoph Hellwig7d095252009-06-08 15:33:32 +02001397 xfs_qm_unmount_quotas(mp);
Christoph Hellwigb93b6e42009-02-04 09:33:58 +01001398 xfs_rtunmount_inodes(mp);
Christoph Hellwig77508ec2008-08-13 16:49:04 +10001399 IRELE(mp->m_rootip);
1400
David Chinner641c56f2007-06-18 16:50:17 +10001401 /*
1402 * We can potentially deadlock here if we have an inode cluster
Malcolm Parsons9da096f2009-03-29 09:55:42 +02001403 * that has been freed has its buffer still pinned in memory because
David Chinner641c56f2007-06-18 16:50:17 +10001404 * the transaction is still sitting in a iclog. The stale inodes
1405 * on that buffer will have their flush locks held until the
1406 * transaction hits the disk and the callbacks run. the inode
1407 * flush takes the flush lock unconditionally and with nothing to
1408 * push out the iclog we will never get that unlocked. hence we
1409 * need to force the log first.
1410 */
1411 xfs_log_force(mp, (xfs_lsn_t)0, XFS_LOG_FORCE | XFS_LOG_SYNC);
Dave Chinnerabc10642009-06-08 15:35:12 +02001412 xfs_reclaim_inodes(mp, XFS_IFLUSH_ASYNC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413
Christoph Hellwig7d095252009-06-08 15:33:32 +02001414 xfs_qm_unmount(mp);
Lachlan McIlroya357a122008-10-30 16:53:25 +11001415
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416 /*
1417 * Flush out the log synchronously so that we know for sure
1418 * that nothing is pinned. This is important because bflush()
1419 * will skip pinned buffers.
1420 */
1421 xfs_log_force(mp, (xfs_lsn_t)0, XFS_LOG_FORCE | XFS_LOG_SYNC);
1422
1423 xfs_binval(mp->m_ddev_targp);
1424 if (mp->m_rtdev_targp) {
1425 xfs_binval(mp->m_rtdev_targp);
1426 }
1427
David Chinner84e1e992007-06-18 16:50:27 +10001428 /*
1429 * Unreserve any blocks we have so that when we unmount we don't account
1430 * the reserved free space as used. This is really only necessary for
1431 * lazy superblock counting because it trusts the incore superblock
Malcolm Parsons9da096f2009-03-29 09:55:42 +02001432 * counters to be absolutely correct on clean unmount.
David Chinner84e1e992007-06-18 16:50:27 +10001433 *
1434 * We don't bother correcting this elsewhere for lazy superblock
1435 * counting because on mount of an unclean filesystem we reconstruct the
1436 * correct counter value and this is irrelevant.
1437 *
1438 * For non-lazy counter filesystems, this doesn't matter at all because
1439 * we only every apply deltas to the superblock and hence the incore
1440 * value does not matter....
1441 */
1442 resblks = 0;
David Chinner714082b2008-04-10 12:20:03 +10001443 error = xfs_reserve_blocks(mp, &resblks, NULL);
1444 if (error)
1445 cmn_err(CE_WARN, "XFS: Unable to free reserved block pool. "
1446 "Freespace may not be correct on next mount.");
1447
David Chinnere5720ee2008-04-10 12:21:18 +10001448 error = xfs_log_sbcount(mp, 1);
1449 if (error)
1450 cmn_err(CE_WARN, "XFS: Unable to update superblock counters. "
1451 "Freespace may not be correct on next mount.");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452 xfs_unmountfs_writesb(mp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453 xfs_unmountfs_wait(mp); /* wait for async bufs */
Christoph Hellwig21b699c2009-03-16 08:19:29 +01001454 xfs_log_unmount_write(mp);
1455 xfs_log_unmount(mp);
Christoph Hellwig27174202009-03-30 10:21:31 +02001456 xfs_uuid_unmount(mp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457
Christoph Hellwig1550d0b2008-08-13 16:17:37 +10001458#if defined(DEBUG)
Christoph Hellwig0ce4cfd2007-08-30 17:20:53 +10001459 xfs_errortag_clearall(mp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460#endif
Christoph Hellwigff4f0382008-08-13 16:50:47 +10001461 xfs_free_perag(mp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462}
1463
Christoph Hellwigba0f32d2005-06-21 15:36:52 +10001464STATIC void
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465xfs_unmountfs_wait(xfs_mount_t *mp)
1466{
1467 if (mp->m_logdev_targp != mp->m_ddev_targp)
1468 xfs_wait_buftarg(mp->m_logdev_targp);
1469 if (mp->m_rtdev_targp)
1470 xfs_wait_buftarg(mp->m_rtdev_targp);
1471 xfs_wait_buftarg(mp->m_ddev_targp);
1472}
1473
1474int
David Chinner92821e22007-05-24 15:26:31 +10001475xfs_fs_writable(xfs_mount_t *mp)
1476{
Christoph Hellwigb267ce92007-08-30 17:21:30 +10001477 return !(xfs_test_for_freeze(mp) || XFS_FORCED_SHUTDOWN(mp) ||
Christoph Hellwigbd186aa2007-08-30 17:21:12 +10001478 (mp->m_flags & XFS_MOUNT_RDONLY));
David Chinner92821e22007-05-24 15:26:31 +10001479}
1480
1481/*
1482 * xfs_log_sbcount
1483 *
1484 * Called either periodically to keep the on disk superblock values
1485 * roughly up to date or from unmount to make sure the values are
1486 * correct on a clean unmount.
1487 *
1488 * Note this code can be called during the process of freezing, so
1489 * we may need to use the transaction allocator which does not not
1490 * block when the transaction subsystem is in its frozen state.
1491 */
1492int
1493xfs_log_sbcount(
1494 xfs_mount_t *mp,
1495 uint sync)
1496{
1497 xfs_trans_t *tp;
1498 int error;
1499
1500 if (!xfs_fs_writable(mp))
1501 return 0;
1502
Christoph Hellwigd4d90b52008-04-22 17:34:37 +10001503 xfs_icsb_sync_counters(mp, 0);
David Chinner92821e22007-05-24 15:26:31 +10001504
1505 /*
1506 * we don't need to do this if we are updating the superblock
1507 * counters on every modification.
1508 */
1509 if (!xfs_sb_version_haslazysbcount(&mp->m_sb))
1510 return 0;
1511
Christoph Hellwig80641dc2009-10-19 04:00:03 +00001512 tp = _xfs_trans_alloc(mp, XFS_TRANS_SB_COUNT, KM_SLEEP);
David Chinner92821e22007-05-24 15:26:31 +10001513 error = xfs_trans_reserve(tp, 0, mp->m_sb.sb_sectsize + 128, 0, 0,
1514 XFS_DEFAULT_LOG_COUNT);
1515 if (error) {
1516 xfs_trans_cancel(tp, 0);
1517 return error;
1518 }
1519
1520 xfs_mod_sb(tp, XFS_SB_IFREE | XFS_SB_ICOUNT | XFS_SB_FDBLOCKS);
1521 if (sync)
1522 xfs_trans_set_sync(tp);
David Chinnere5720ee2008-04-10 12:21:18 +10001523 error = xfs_trans_commit(tp, 0);
1524 return error;
David Chinner92821e22007-05-24 15:26:31 +10001525}
1526
1527int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528xfs_unmountfs_writesb(xfs_mount_t *mp)
1529{
1530 xfs_buf_t *sbp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531 int error = 0;
1532
1533 /*
1534 * skip superblock write if fs is read-only, or
1535 * if we are doing a forced umount.
1536 */
Christoph Hellwigbd186aa2007-08-30 17:21:12 +10001537 if (!((mp->m_flags & XFS_MOUNT_RDONLY) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538 XFS_FORCED_SHUTDOWN(mp))) {
David Chinner8d280b92006-03-14 13:13:09 +11001539
David Chinner92821e22007-05-24 15:26:31 +10001540 sbp = xfs_getsb(mp, 0);
David Chinner8d280b92006-03-14 13:13:09 +11001541
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542 XFS_BUF_UNDONE(sbp);
1543 XFS_BUF_UNREAD(sbp);
1544 XFS_BUF_UNDELAYWRITE(sbp);
1545 XFS_BUF_WRITE(sbp);
1546 XFS_BUF_UNASYNC(sbp);
1547 ASSERT(XFS_BUF_TARGET(sbp) == mp->m_ddev_targp);
1548 xfsbdstrat(mp, sbp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549 error = xfs_iowait(sbp);
1550 if (error)
1551 xfs_ioerror_alert("xfs_unmountfs_writesb",
1552 mp, sbp, XFS_BUF_ADDR(sbp));
David Chinner92821e22007-05-24 15:26:31 +10001553 xfs_buf_relse(sbp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554 }
Jesper Juhl014c2542006-01-15 02:37:08 +01001555 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556}
1557
1558/*
1559 * xfs_mod_sb() can be used to copy arbitrary changes to the
1560 * in-core superblock into the superblock buffer to be logged.
1561 * It does not provide the higher level of locking that is
1562 * needed to protect the in-core superblock from concurrent
1563 * access.
1564 */
1565void
1566xfs_mod_sb(xfs_trans_t *tp, __int64_t fields)
1567{
1568 xfs_buf_t *bp;
1569 int first;
1570 int last;
1571 xfs_mount_t *mp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572 xfs_sb_field_t f;
1573
1574 ASSERT(fields);
1575 if (!fields)
1576 return;
1577 mp = tp->t_mountp;
1578 bp = xfs_trans_getsb(tp, mp, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579 first = sizeof(xfs_sb_t);
1580 last = 0;
1581
1582 /* translate/copy */
1583
Christoph Hellwig2bdf7cd2007-08-28 13:58:06 +10001584 xfs_sb_to_disk(XFS_BUF_TO_SBP(bp), &mp->m_sb, fields);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585
1586 /* find modified range */
1587
1588 f = (xfs_sb_field_t)xfs_lowbit64((__uint64_t)fields);
1589 ASSERT((1LL << f) & XFS_SB_MOD_BITS);
1590 first = xfs_sb_info[f].offset;
1591
1592 f = (xfs_sb_field_t)xfs_highbit64((__uint64_t)fields);
1593 ASSERT((1LL << f) & XFS_SB_MOD_BITS);
1594 last = xfs_sb_info[f + 1].offset - 1;
1595
1596 xfs_trans_log_buf(tp, bp, first, last);
1597}
Yingping Lud210a282006-06-09 14:55:18 +10001598
Yingping Lud210a282006-06-09 14:55:18 +10001599
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600/*
1601 * xfs_mod_incore_sb_unlocked() is a utility routine common used to apply
1602 * a delta to a specified field in the in-core superblock. Simply
1603 * switch on the field indicated and apply the delta to that field.
1604 * Fields are not allowed to dip below zero, so if the delta would
1605 * do this do not apply it and return EINVAL.
1606 *
Eric Sandeen3685c2a2007-10-11 17:42:32 +10001607 * The m_sb_lock must be held when this routine is called.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608 */
Eric Sandeend96f8f82009-07-02 00:09:33 -05001609STATIC int
David Chinner20f4ebf2007-02-10 18:36:10 +11001610xfs_mod_incore_sb_unlocked(
1611 xfs_mount_t *mp,
1612 xfs_sb_field_t field,
1613 int64_t delta,
1614 int rsvd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615{
1616 int scounter; /* short counter for 32 bit fields */
1617 long long lcounter; /* long counter for 64 bit fields */
1618 long long res_used, rem;
1619
1620 /*
1621 * With the in-core superblock spin lock held, switch
1622 * on the indicated field. Apply the delta to the
1623 * proper field. If the fields value would dip below
1624 * 0, then do not apply the delta and return EINVAL.
1625 */
1626 switch (field) {
1627 case XFS_SBS_ICOUNT:
1628 lcounter = (long long)mp->m_sb.sb_icount;
1629 lcounter += delta;
1630 if (lcounter < 0) {
1631 ASSERT(0);
Jesper Juhl014c2542006-01-15 02:37:08 +01001632 return XFS_ERROR(EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633 }
1634 mp->m_sb.sb_icount = lcounter;
Jesper Juhl014c2542006-01-15 02:37:08 +01001635 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636 case XFS_SBS_IFREE:
1637 lcounter = (long long)mp->m_sb.sb_ifree;
1638 lcounter += delta;
1639 if (lcounter < 0) {
1640 ASSERT(0);
Jesper Juhl014c2542006-01-15 02:37:08 +01001641 return XFS_ERROR(EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642 }
1643 mp->m_sb.sb_ifree = lcounter;
Jesper Juhl014c2542006-01-15 02:37:08 +01001644 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645 case XFS_SBS_FDBLOCKS:
David Chinner4be536d2006-09-07 14:26:50 +10001646 lcounter = (long long)
1647 mp->m_sb.sb_fdblocks - XFS_ALLOC_SET_ASIDE(mp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648 res_used = (long long)(mp->m_resblks - mp->m_resblks_avail);
1649
1650 if (delta > 0) { /* Putting blocks back */
1651 if (res_used > delta) {
1652 mp->m_resblks_avail += delta;
1653 } else {
1654 rem = delta - res_used;
1655 mp->m_resblks_avail = mp->m_resblks;
1656 lcounter += rem;
1657 }
1658 } else { /* Taking blocks away */
1659
1660 lcounter += delta;
1661
1662 /*
1663 * If were out of blocks, use any available reserved blocks if
1664 * were allowed to.
1665 */
1666
1667 if (lcounter < 0) {
1668 if (rsvd) {
1669 lcounter = (long long)mp->m_resblks_avail + delta;
1670 if (lcounter < 0) {
Jesper Juhl014c2542006-01-15 02:37:08 +01001671 return XFS_ERROR(ENOSPC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672 }
1673 mp->m_resblks_avail = lcounter;
Jesper Juhl014c2542006-01-15 02:37:08 +01001674 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675 } else { /* not reserved */
Jesper Juhl014c2542006-01-15 02:37:08 +01001676 return XFS_ERROR(ENOSPC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677 }
1678 }
1679 }
1680
David Chinner4be536d2006-09-07 14:26:50 +10001681 mp->m_sb.sb_fdblocks = lcounter + XFS_ALLOC_SET_ASIDE(mp);
Jesper Juhl014c2542006-01-15 02:37:08 +01001682 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683 case XFS_SBS_FREXTENTS:
1684 lcounter = (long long)mp->m_sb.sb_frextents;
1685 lcounter += delta;
1686 if (lcounter < 0) {
Jesper Juhl014c2542006-01-15 02:37:08 +01001687 return XFS_ERROR(ENOSPC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688 }
1689 mp->m_sb.sb_frextents = lcounter;
Jesper Juhl014c2542006-01-15 02:37:08 +01001690 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691 case XFS_SBS_DBLOCKS:
1692 lcounter = (long long)mp->m_sb.sb_dblocks;
1693 lcounter += delta;
1694 if (lcounter < 0) {
1695 ASSERT(0);
Jesper Juhl014c2542006-01-15 02:37:08 +01001696 return XFS_ERROR(EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697 }
1698 mp->m_sb.sb_dblocks = lcounter;
Jesper Juhl014c2542006-01-15 02:37:08 +01001699 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700 case XFS_SBS_AGCOUNT:
1701 scounter = mp->m_sb.sb_agcount;
1702 scounter += delta;
1703 if (scounter < 0) {
1704 ASSERT(0);
Jesper Juhl014c2542006-01-15 02:37:08 +01001705 return XFS_ERROR(EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706 }
1707 mp->m_sb.sb_agcount = scounter;
Jesper Juhl014c2542006-01-15 02:37:08 +01001708 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709 case XFS_SBS_IMAX_PCT:
1710 scounter = mp->m_sb.sb_imax_pct;
1711 scounter += delta;
1712 if (scounter < 0) {
1713 ASSERT(0);
Jesper Juhl014c2542006-01-15 02:37:08 +01001714 return XFS_ERROR(EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715 }
1716 mp->m_sb.sb_imax_pct = scounter;
Jesper Juhl014c2542006-01-15 02:37:08 +01001717 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718 case XFS_SBS_REXTSIZE:
1719 scounter = mp->m_sb.sb_rextsize;
1720 scounter += delta;
1721 if (scounter < 0) {
1722 ASSERT(0);
Jesper Juhl014c2542006-01-15 02:37:08 +01001723 return XFS_ERROR(EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724 }
1725 mp->m_sb.sb_rextsize = scounter;
Jesper Juhl014c2542006-01-15 02:37:08 +01001726 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727 case XFS_SBS_RBMBLOCKS:
1728 scounter = mp->m_sb.sb_rbmblocks;
1729 scounter += delta;
1730 if (scounter < 0) {
1731 ASSERT(0);
Jesper Juhl014c2542006-01-15 02:37:08 +01001732 return XFS_ERROR(EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733 }
1734 mp->m_sb.sb_rbmblocks = scounter;
Jesper Juhl014c2542006-01-15 02:37:08 +01001735 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736 case XFS_SBS_RBLOCKS:
1737 lcounter = (long long)mp->m_sb.sb_rblocks;
1738 lcounter += delta;
1739 if (lcounter < 0) {
1740 ASSERT(0);
Jesper Juhl014c2542006-01-15 02:37:08 +01001741 return XFS_ERROR(EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742 }
1743 mp->m_sb.sb_rblocks = lcounter;
Jesper Juhl014c2542006-01-15 02:37:08 +01001744 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745 case XFS_SBS_REXTENTS:
1746 lcounter = (long long)mp->m_sb.sb_rextents;
1747 lcounter += delta;
1748 if (lcounter < 0) {
1749 ASSERT(0);
Jesper Juhl014c2542006-01-15 02:37:08 +01001750 return XFS_ERROR(EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751 }
1752 mp->m_sb.sb_rextents = lcounter;
Jesper Juhl014c2542006-01-15 02:37:08 +01001753 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754 case XFS_SBS_REXTSLOG:
1755 scounter = mp->m_sb.sb_rextslog;
1756 scounter += delta;
1757 if (scounter < 0) {
1758 ASSERT(0);
Jesper Juhl014c2542006-01-15 02:37:08 +01001759 return XFS_ERROR(EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760 }
1761 mp->m_sb.sb_rextslog = scounter;
Jesper Juhl014c2542006-01-15 02:37:08 +01001762 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763 default:
1764 ASSERT(0);
Jesper Juhl014c2542006-01-15 02:37:08 +01001765 return XFS_ERROR(EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766 }
1767}
1768
1769/*
1770 * xfs_mod_incore_sb() is used to change a field in the in-core
1771 * superblock structure by the specified delta. This modification
Eric Sandeen3685c2a2007-10-11 17:42:32 +10001772 * is protected by the m_sb_lock. Just use the xfs_mod_incore_sb_unlocked()
Linus Torvalds1da177e2005-04-16 15:20:36 -07001773 * routine to do the work.
1774 */
1775int
David Chinner20f4ebf2007-02-10 18:36:10 +11001776xfs_mod_incore_sb(
1777 xfs_mount_t *mp,
1778 xfs_sb_field_t field,
1779 int64_t delta,
1780 int rsvd)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782 int status;
1783
David Chinner8d280b92006-03-14 13:13:09 +11001784 /* check for per-cpu counters */
1785 switch (field) {
1786#ifdef HAVE_PERCPU_SB
1787 case XFS_SBS_ICOUNT:
1788 case XFS_SBS_IFREE:
1789 case XFS_SBS_FDBLOCKS:
1790 if (!(mp->m_flags & XFS_MOUNT_NO_PERCPU_SB)) {
1791 status = xfs_icsb_modify_counters(mp, field,
1792 delta, rsvd);
1793 break;
1794 }
1795 /* FALLTHROUGH */
1796#endif
1797 default:
Eric Sandeen3685c2a2007-10-11 17:42:32 +10001798 spin_lock(&mp->m_sb_lock);
David Chinner8d280b92006-03-14 13:13:09 +11001799 status = xfs_mod_incore_sb_unlocked(mp, field, delta, rsvd);
Eric Sandeen3685c2a2007-10-11 17:42:32 +10001800 spin_unlock(&mp->m_sb_lock);
David Chinner8d280b92006-03-14 13:13:09 +11001801 break;
1802 }
1803
Jesper Juhl014c2542006-01-15 02:37:08 +01001804 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805}
1806
1807/*
1808 * xfs_mod_incore_sb_batch() is used to change more than one field
1809 * in the in-core superblock structure at a time. This modification
1810 * is protected by a lock internal to this module. The fields and
1811 * changes to those fields are specified in the array of xfs_mod_sb
1812 * structures passed in.
1813 *
1814 * Either all of the specified deltas will be applied or none of
1815 * them will. If any modified field dips below 0, then all modifications
1816 * will be backed out and EINVAL will be returned.
1817 */
1818int
1819xfs_mod_incore_sb_batch(xfs_mount_t *mp, xfs_mod_sb_t *msb, uint nmsb, int rsvd)
1820{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821 int status=0;
1822 xfs_mod_sb_t *msbp;
1823
1824 /*
1825 * Loop through the array of mod structures and apply each
1826 * individually. If any fail, then back out all those
1827 * which have already been applied. Do all of this within
Eric Sandeen3685c2a2007-10-11 17:42:32 +10001828 * the scope of the m_sb_lock so that all of the changes will
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829 * be atomic.
1830 */
Eric Sandeen3685c2a2007-10-11 17:42:32 +10001831 spin_lock(&mp->m_sb_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832 msbp = &msb[0];
1833 for (msbp = &msbp[0]; msbp < (msb + nmsb); msbp++) {
1834 /*
1835 * Apply the delta at index n. If it fails, break
1836 * from the loop so we'll fall into the undo loop
1837 * below.
1838 */
David Chinner8d280b92006-03-14 13:13:09 +11001839 switch (msbp->msb_field) {
1840#ifdef HAVE_PERCPU_SB
1841 case XFS_SBS_ICOUNT:
1842 case XFS_SBS_IFREE:
1843 case XFS_SBS_FDBLOCKS:
1844 if (!(mp->m_flags & XFS_MOUNT_NO_PERCPU_SB)) {
Eric Sandeen3685c2a2007-10-11 17:42:32 +10001845 spin_unlock(&mp->m_sb_lock);
David Chinner20b64282007-02-10 18:35:09 +11001846 status = xfs_icsb_modify_counters(mp,
David Chinner8d280b92006-03-14 13:13:09 +11001847 msbp->msb_field,
1848 msbp->msb_delta, rsvd);
Eric Sandeen3685c2a2007-10-11 17:42:32 +10001849 spin_lock(&mp->m_sb_lock);
David Chinner8d280b92006-03-14 13:13:09 +11001850 break;
1851 }
1852 /* FALLTHROUGH */
1853#endif
1854 default:
1855 status = xfs_mod_incore_sb_unlocked(mp,
1856 msbp->msb_field,
1857 msbp->msb_delta, rsvd);
1858 break;
1859 }
1860
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861 if (status != 0) {
1862 break;
1863 }
1864 }
1865
1866 /*
1867 * If we didn't complete the loop above, then back out
1868 * any changes made to the superblock. If you add code
1869 * between the loop above and here, make sure that you
1870 * preserve the value of status. Loop back until
1871 * we step below the beginning of the array. Make sure
1872 * we don't touch anything back there.
1873 */
1874 if (status != 0) {
1875 msbp--;
1876 while (msbp >= msb) {
David Chinner8d280b92006-03-14 13:13:09 +11001877 switch (msbp->msb_field) {
1878#ifdef HAVE_PERCPU_SB
1879 case XFS_SBS_ICOUNT:
1880 case XFS_SBS_IFREE:
1881 case XFS_SBS_FDBLOCKS:
1882 if (!(mp->m_flags & XFS_MOUNT_NO_PERCPU_SB)) {
Eric Sandeen3685c2a2007-10-11 17:42:32 +10001883 spin_unlock(&mp->m_sb_lock);
David Chinner20b64282007-02-10 18:35:09 +11001884 status = xfs_icsb_modify_counters(mp,
David Chinner8d280b92006-03-14 13:13:09 +11001885 msbp->msb_field,
1886 -(msbp->msb_delta),
1887 rsvd);
Eric Sandeen3685c2a2007-10-11 17:42:32 +10001888 spin_lock(&mp->m_sb_lock);
David Chinner8d280b92006-03-14 13:13:09 +11001889 break;
1890 }
1891 /* FALLTHROUGH */
1892#endif
1893 default:
1894 status = xfs_mod_incore_sb_unlocked(mp,
1895 msbp->msb_field,
1896 -(msbp->msb_delta),
1897 rsvd);
1898 break;
1899 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900 ASSERT(status == 0);
1901 msbp--;
1902 }
1903 }
Eric Sandeen3685c2a2007-10-11 17:42:32 +10001904 spin_unlock(&mp->m_sb_lock);
Jesper Juhl014c2542006-01-15 02:37:08 +01001905 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001906}
1907
1908/*
1909 * xfs_getsb() is called to obtain the buffer for the superblock.
1910 * The buffer is returned locked and read in from disk.
1911 * The buffer should be released with a call to xfs_brelse().
1912 *
1913 * If the flags parameter is BUF_TRYLOCK, then we'll only return
1914 * the superblock buffer if it can be locked without sleeping.
1915 * If it can't then we'll return NULL.
1916 */
1917xfs_buf_t *
1918xfs_getsb(
1919 xfs_mount_t *mp,
1920 int flags)
1921{
1922 xfs_buf_t *bp;
1923
1924 ASSERT(mp->m_sb_bp != NULL);
1925 bp = mp->m_sb_bp;
1926 if (flags & XFS_BUF_TRYLOCK) {
1927 if (!XFS_BUF_CPSEMA(bp)) {
1928 return NULL;
1929 }
1930 } else {
1931 XFS_BUF_PSEMA(bp, PRIBIO);
1932 }
1933 XFS_BUF_HOLD(bp);
1934 ASSERT(XFS_BUF_ISDONE(bp));
Jesper Juhl014c2542006-01-15 02:37:08 +01001935 return bp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001936}
1937
1938/*
1939 * Used to free the superblock along various error paths.
1940 */
1941void
1942xfs_freesb(
1943 xfs_mount_t *mp)
1944{
1945 xfs_buf_t *bp;
1946
1947 /*
1948 * Use xfs_getsb() so that the buffer will be locked
1949 * when we call xfs_buf_relse().
1950 */
1951 bp = xfs_getsb(mp, 0);
1952 XFS_BUF_UNMANAGE(bp);
1953 xfs_buf_relse(bp);
1954 mp->m_sb_bp = NULL;
1955}
1956
1957/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001958 * Used to log changes to the superblock unit and width fields which could
Eric Sandeene6957ea2008-04-10 12:19:34 +10001959 * be altered by the mount options, as well as any potential sb_features2
1960 * fixup. Only the first superblock is updated.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001961 */
Christoph Hellwig7884bc82009-01-19 02:04:07 +01001962int
David Chinneree1c0902008-03-06 13:45:50 +11001963xfs_mount_log_sb(
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964 xfs_mount_t *mp,
1965 __int64_t fields)
1966{
1967 xfs_trans_t *tp;
David Chinnere5720ee2008-04-10 12:21:18 +10001968 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969
David Chinneree1c0902008-03-06 13:45:50 +11001970 ASSERT(fields & (XFS_SB_UNIT | XFS_SB_WIDTH | XFS_SB_UUID |
David Chinner4b166de2008-05-20 11:30:27 +10001971 XFS_SB_FEATURES2 | XFS_SB_BAD_FEATURES2 |
1972 XFS_SB_VERSIONNUM));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973
1974 tp = xfs_trans_alloc(mp, XFS_TRANS_SB_UNIT);
David Chinnere5720ee2008-04-10 12:21:18 +10001975 error = xfs_trans_reserve(tp, 0, mp->m_sb.sb_sectsize + 128, 0, 0,
1976 XFS_DEFAULT_LOG_COUNT);
1977 if (error) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978 xfs_trans_cancel(tp, 0);
David Chinnere5720ee2008-04-10 12:21:18 +10001979 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001980 }
1981 xfs_mod_sb(tp, fields);
David Chinnere5720ee2008-04-10 12:21:18 +10001982 error = xfs_trans_commit(tp, 0);
1983 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001984}
David Chinner8d280b92006-03-14 13:13:09 +11001985
1986
1987#ifdef HAVE_PERCPU_SB
1988/*
1989 * Per-cpu incore superblock counters
1990 *
1991 * Simple concept, difficult implementation
1992 *
1993 * Basically, replace the incore superblock counters with a distributed per cpu
1994 * counter for contended fields (e.g. free block count).
1995 *
1996 * Difficulties arise in that the incore sb is used for ENOSPC checking, and
1997 * hence needs to be accurately read when we are running low on space. Hence
1998 * there is a method to enable and disable the per-cpu counters based on how
1999 * much "stuff" is available in them.
2000 *
2001 * Basically, a counter is enabled if there is enough free resource to justify
2002 * running a per-cpu fast-path. If the per-cpu counter runs out (i.e. a local
2003 * ENOSPC), then we disable the counters to synchronise all callers and
2004 * re-distribute the available resources.
2005 *
2006 * If, once we redistributed the available resources, we still get a failure,
2007 * we disable the per-cpu counter and go through the slow path.
2008 *
2009 * The slow path is the current xfs_mod_incore_sb() function. This means that
Malcolm Parsons9da096f2009-03-29 09:55:42 +02002010 * when we disable a per-cpu counter, we need to drain its resources back to
David Chinner8d280b92006-03-14 13:13:09 +11002011 * the global superblock. We do this after disabling the counter to prevent
2012 * more threads from queueing up on the counter.
2013 *
2014 * Essentially, this means that we still need a lock in the fast path to enable
2015 * synchronisation between the global counters and the per-cpu counters. This
2016 * is not a problem because the lock will be local to a CPU almost all the time
2017 * and have little contention except when we get to ENOSPC conditions.
2018 *
2019 * Basically, this lock becomes a barrier that enables us to lock out the fast
2020 * path while we do things like enabling and disabling counters and
2021 * synchronising the counters.
2022 *
2023 * Locking rules:
2024 *
Eric Sandeen3685c2a2007-10-11 17:42:32 +10002025 * 1. m_sb_lock before picking up per-cpu locks
David Chinner8d280b92006-03-14 13:13:09 +11002026 * 2. per-cpu locks always picked up via for_each_online_cpu() order
Eric Sandeen3685c2a2007-10-11 17:42:32 +10002027 * 3. accurate counter sync requires m_sb_lock + per cpu locks
David Chinner8d280b92006-03-14 13:13:09 +11002028 * 4. modifying per-cpu counters requires holding per-cpu lock
Eric Sandeen3685c2a2007-10-11 17:42:32 +10002029 * 5. modifying global counters requires holding m_sb_lock
2030 * 6. enabling or disabling a counter requires holding the m_sb_lock
David Chinner8d280b92006-03-14 13:13:09 +11002031 * and _none_ of the per-cpu locks.
2032 *
2033 * Disabled counters are only ever re-enabled by a balance operation
2034 * that results in more free resources per CPU than a given threshold.
2035 * To ensure counters don't remain disabled, they are rebalanced when
2036 * the global resource goes above a higher threshold (i.e. some hysteresis
2037 * is present to prevent thrashing).
David Chinner8d280b92006-03-14 13:13:09 +11002038 */
David Chinnere8234a62006-03-14 13:23:52 +11002039
Chandra Seetharaman5a67e4c2006-06-27 02:54:11 -07002040#ifdef CONFIG_HOTPLUG_CPU
David Chinnere8234a62006-03-14 13:23:52 +11002041/*
2042 * hot-plug CPU notifier support.
2043 *
Chandra Seetharaman5a67e4c2006-06-27 02:54:11 -07002044 * We need a notifier per filesystem as we need to be able to identify
2045 * the filesystem to balance the counters out. This is achieved by
2046 * having a notifier block embedded in the xfs_mount_t and doing pointer
2047 * magic to get the mount pointer from the notifier block address.
David Chinnere8234a62006-03-14 13:23:52 +11002048 */
2049STATIC int
2050xfs_icsb_cpu_notify(
2051 struct notifier_block *nfb,
2052 unsigned long action,
2053 void *hcpu)
2054{
2055 xfs_icsb_cnts_t *cntp;
2056 xfs_mount_t *mp;
David Chinnere8234a62006-03-14 13:23:52 +11002057
2058 mp = (xfs_mount_t *)container_of(nfb, xfs_mount_t, m_icsb_notifier);
2059 cntp = (xfs_icsb_cnts_t *)
2060 per_cpu_ptr(mp->m_sb_cnts, (unsigned long)hcpu);
2061 switch (action) {
2062 case CPU_UP_PREPARE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07002063 case CPU_UP_PREPARE_FROZEN:
David Chinnere8234a62006-03-14 13:23:52 +11002064 /* Easy Case - initialize the area and locks, and
2065 * then rebalance when online does everything else for us. */
David Chinner01e1b692006-03-14 13:29:16 +11002066 memset(cntp, 0, sizeof(xfs_icsb_cnts_t));
David Chinnere8234a62006-03-14 13:23:52 +11002067 break;
2068 case CPU_ONLINE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07002069 case CPU_ONLINE_FROZEN:
David Chinner03135cf2007-02-10 18:35:15 +11002070 xfs_icsb_lock(mp);
Christoph Hellwig45af6c62008-04-22 17:34:44 +10002071 xfs_icsb_balance_counter(mp, XFS_SBS_ICOUNT, 0);
2072 xfs_icsb_balance_counter(mp, XFS_SBS_IFREE, 0);
2073 xfs_icsb_balance_counter(mp, XFS_SBS_FDBLOCKS, 0);
David Chinner03135cf2007-02-10 18:35:15 +11002074 xfs_icsb_unlock(mp);
David Chinnere8234a62006-03-14 13:23:52 +11002075 break;
2076 case CPU_DEAD:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07002077 case CPU_DEAD_FROZEN:
David Chinnere8234a62006-03-14 13:23:52 +11002078 /* Disable all the counters, then fold the dead cpu's
2079 * count into the total on the global superblock and
2080 * re-enable the counters. */
David Chinner03135cf2007-02-10 18:35:15 +11002081 xfs_icsb_lock(mp);
Eric Sandeen3685c2a2007-10-11 17:42:32 +10002082 spin_lock(&mp->m_sb_lock);
David Chinnere8234a62006-03-14 13:23:52 +11002083 xfs_icsb_disable_counter(mp, XFS_SBS_ICOUNT);
2084 xfs_icsb_disable_counter(mp, XFS_SBS_IFREE);
2085 xfs_icsb_disable_counter(mp, XFS_SBS_FDBLOCKS);
2086
2087 mp->m_sb.sb_icount += cntp->icsb_icount;
2088 mp->m_sb.sb_ifree += cntp->icsb_ifree;
2089 mp->m_sb.sb_fdblocks += cntp->icsb_fdblocks;
2090
David Chinner01e1b692006-03-14 13:29:16 +11002091 memset(cntp, 0, sizeof(xfs_icsb_cnts_t));
David Chinnere8234a62006-03-14 13:23:52 +11002092
Christoph Hellwig45af6c62008-04-22 17:34:44 +10002093 xfs_icsb_balance_counter_locked(mp, XFS_SBS_ICOUNT, 0);
2094 xfs_icsb_balance_counter_locked(mp, XFS_SBS_IFREE, 0);
2095 xfs_icsb_balance_counter_locked(mp, XFS_SBS_FDBLOCKS, 0);
Eric Sandeen3685c2a2007-10-11 17:42:32 +10002096 spin_unlock(&mp->m_sb_lock);
David Chinner03135cf2007-02-10 18:35:15 +11002097 xfs_icsb_unlock(mp);
David Chinnere8234a62006-03-14 13:23:52 +11002098 break;
2099 }
2100
2101 return NOTIFY_OK;
2102}
Chandra Seetharaman5a67e4c2006-06-27 02:54:11 -07002103#endif /* CONFIG_HOTPLUG_CPU */
David Chinnere8234a62006-03-14 13:23:52 +11002104
David Chinner8d280b92006-03-14 13:13:09 +11002105int
2106xfs_icsb_init_counters(
2107 xfs_mount_t *mp)
2108{
2109 xfs_icsb_cnts_t *cntp;
2110 int i;
2111
2112 mp->m_sb_cnts = alloc_percpu(xfs_icsb_cnts_t);
2113 if (mp->m_sb_cnts == NULL)
2114 return -ENOMEM;
2115
Chandra Seetharaman5a67e4c2006-06-27 02:54:11 -07002116#ifdef CONFIG_HOTPLUG_CPU
David Chinnere8234a62006-03-14 13:23:52 +11002117 mp->m_icsb_notifier.notifier_call = xfs_icsb_cpu_notify;
2118 mp->m_icsb_notifier.priority = 0;
Chandra Seetharaman5a67e4c2006-06-27 02:54:11 -07002119 register_hotcpu_notifier(&mp->m_icsb_notifier);
2120#endif /* CONFIG_HOTPLUG_CPU */
David Chinnere8234a62006-03-14 13:23:52 +11002121
David Chinner8d280b92006-03-14 13:13:09 +11002122 for_each_online_cpu(i) {
2123 cntp = (xfs_icsb_cnts_t *)per_cpu_ptr(mp->m_sb_cnts, i);
David Chinner01e1b692006-03-14 13:29:16 +11002124 memset(cntp, 0, sizeof(xfs_icsb_cnts_t));
David Chinner8d280b92006-03-14 13:13:09 +11002125 }
David Chinner20b64282007-02-10 18:35:09 +11002126
2127 mutex_init(&mp->m_icsb_mutex);
2128
David Chinner8d280b92006-03-14 13:13:09 +11002129 /*
2130 * start with all counters disabled so that the
2131 * initial balance kicks us off correctly
2132 */
2133 mp->m_icsb_counters = -1;
2134 return 0;
2135}
2136
Lachlan McIlroy5478eea2007-02-10 18:36:29 +11002137void
2138xfs_icsb_reinit_counters(
2139 xfs_mount_t *mp)
2140{
2141 xfs_icsb_lock(mp);
2142 /*
2143 * start with all counters disabled so that the
2144 * initial balance kicks us off correctly
2145 */
2146 mp->m_icsb_counters = -1;
Christoph Hellwig45af6c62008-04-22 17:34:44 +10002147 xfs_icsb_balance_counter(mp, XFS_SBS_ICOUNT, 0);
2148 xfs_icsb_balance_counter(mp, XFS_SBS_IFREE, 0);
2149 xfs_icsb_balance_counter(mp, XFS_SBS_FDBLOCKS, 0);
Lachlan McIlroy5478eea2007-02-10 18:36:29 +11002150 xfs_icsb_unlock(mp);
2151}
2152
Christoph Hellwigc962fb72008-05-20 15:10:52 +10002153void
David Chinner8d280b92006-03-14 13:13:09 +11002154xfs_icsb_destroy_counters(
2155 xfs_mount_t *mp)
2156{
David Chinnere8234a62006-03-14 13:23:52 +11002157 if (mp->m_sb_cnts) {
Chandra Seetharaman5a67e4c2006-06-27 02:54:11 -07002158 unregister_hotcpu_notifier(&mp->m_icsb_notifier);
David Chinner8d280b92006-03-14 13:13:09 +11002159 free_percpu(mp->m_sb_cnts);
David Chinnere8234a62006-03-14 13:23:52 +11002160 }
David Chinner03135cf2007-02-10 18:35:15 +11002161 mutex_destroy(&mp->m_icsb_mutex);
David Chinner8d280b92006-03-14 13:13:09 +11002162}
2163
Christoph Hellwigb8f82a42009-11-14 16:17:22 +00002164STATIC void
David Chinner01e1b692006-03-14 13:29:16 +11002165xfs_icsb_lock_cntr(
2166 xfs_icsb_cnts_t *icsbp)
2167{
2168 while (test_and_set_bit(XFS_ICSB_FLAG_LOCK, &icsbp->icsb_flags)) {
2169 ndelay(1000);
2170 }
2171}
2172
Christoph Hellwigb8f82a42009-11-14 16:17:22 +00002173STATIC void
David Chinner01e1b692006-03-14 13:29:16 +11002174xfs_icsb_unlock_cntr(
2175 xfs_icsb_cnts_t *icsbp)
2176{
2177 clear_bit(XFS_ICSB_FLAG_LOCK, &icsbp->icsb_flags);
2178}
2179
David Chinner8d280b92006-03-14 13:13:09 +11002180
Christoph Hellwigb8f82a42009-11-14 16:17:22 +00002181STATIC void
David Chinner8d280b92006-03-14 13:13:09 +11002182xfs_icsb_lock_all_counters(
2183 xfs_mount_t *mp)
2184{
2185 xfs_icsb_cnts_t *cntp;
2186 int i;
2187
2188 for_each_online_cpu(i) {
2189 cntp = (xfs_icsb_cnts_t *)per_cpu_ptr(mp->m_sb_cnts, i);
David Chinner01e1b692006-03-14 13:29:16 +11002190 xfs_icsb_lock_cntr(cntp);
David Chinner8d280b92006-03-14 13:13:09 +11002191 }
2192}
2193
Christoph Hellwigb8f82a42009-11-14 16:17:22 +00002194STATIC void
David Chinner8d280b92006-03-14 13:13:09 +11002195xfs_icsb_unlock_all_counters(
2196 xfs_mount_t *mp)
2197{
2198 xfs_icsb_cnts_t *cntp;
2199 int i;
2200
2201 for_each_online_cpu(i) {
2202 cntp = (xfs_icsb_cnts_t *)per_cpu_ptr(mp->m_sb_cnts, i);
David Chinner01e1b692006-03-14 13:29:16 +11002203 xfs_icsb_unlock_cntr(cntp);
David Chinner8d280b92006-03-14 13:13:09 +11002204 }
2205}
2206
2207STATIC void
2208xfs_icsb_count(
2209 xfs_mount_t *mp,
2210 xfs_icsb_cnts_t *cnt,
2211 int flags)
2212{
2213 xfs_icsb_cnts_t *cntp;
2214 int i;
2215
2216 memset(cnt, 0, sizeof(xfs_icsb_cnts_t));
2217
2218 if (!(flags & XFS_ICSB_LAZY_COUNT))
2219 xfs_icsb_lock_all_counters(mp);
2220
2221 for_each_online_cpu(i) {
2222 cntp = (xfs_icsb_cnts_t *)per_cpu_ptr(mp->m_sb_cnts, i);
2223 cnt->icsb_icount += cntp->icsb_icount;
2224 cnt->icsb_ifree += cntp->icsb_ifree;
2225 cnt->icsb_fdblocks += cntp->icsb_fdblocks;
2226 }
2227
2228 if (!(flags & XFS_ICSB_LAZY_COUNT))
2229 xfs_icsb_unlock_all_counters(mp);
2230}
2231
2232STATIC int
2233xfs_icsb_counter_disabled(
2234 xfs_mount_t *mp,
2235 xfs_sb_field_t field)
2236{
2237 ASSERT((field >= XFS_SBS_ICOUNT) && (field <= XFS_SBS_FDBLOCKS));
2238 return test_bit(field, &mp->m_icsb_counters);
2239}
2240
David Chinner36fbe6e2008-04-10 12:19:56 +10002241STATIC void
David Chinner8d280b92006-03-14 13:13:09 +11002242xfs_icsb_disable_counter(
2243 xfs_mount_t *mp,
2244 xfs_sb_field_t field)
2245{
2246 xfs_icsb_cnts_t cnt;
2247
2248 ASSERT((field >= XFS_SBS_ICOUNT) && (field <= XFS_SBS_FDBLOCKS));
2249
David Chinner20b64282007-02-10 18:35:09 +11002250 /*
2251 * If we are already disabled, then there is nothing to do
2252 * here. We check before locking all the counters to avoid
2253 * the expensive lock operation when being called in the
2254 * slow path and the counter is already disabled. This is
2255 * safe because the only time we set or clear this state is under
2256 * the m_icsb_mutex.
2257 */
2258 if (xfs_icsb_counter_disabled(mp, field))
David Chinner36fbe6e2008-04-10 12:19:56 +10002259 return;
David Chinner20b64282007-02-10 18:35:09 +11002260
David Chinner8d280b92006-03-14 13:13:09 +11002261 xfs_icsb_lock_all_counters(mp);
2262 if (!test_and_set_bit(field, &mp->m_icsb_counters)) {
2263 /* drain back to superblock */
2264
Christoph Hellwigce461932008-04-22 17:34:50 +10002265 xfs_icsb_count(mp, &cnt, XFS_ICSB_LAZY_COUNT);
David Chinner8d280b92006-03-14 13:13:09 +11002266 switch(field) {
2267 case XFS_SBS_ICOUNT:
2268 mp->m_sb.sb_icount = cnt.icsb_icount;
2269 break;
2270 case XFS_SBS_IFREE:
2271 mp->m_sb.sb_ifree = cnt.icsb_ifree;
2272 break;
2273 case XFS_SBS_FDBLOCKS:
2274 mp->m_sb.sb_fdblocks = cnt.icsb_fdblocks;
2275 break;
2276 default:
2277 BUG();
2278 }
2279 }
2280
2281 xfs_icsb_unlock_all_counters(mp);
David Chinner8d280b92006-03-14 13:13:09 +11002282}
2283
2284STATIC void
2285xfs_icsb_enable_counter(
2286 xfs_mount_t *mp,
2287 xfs_sb_field_t field,
2288 uint64_t count,
2289 uint64_t resid)
2290{
2291 xfs_icsb_cnts_t *cntp;
2292 int i;
2293
2294 ASSERT((field >= XFS_SBS_ICOUNT) && (field <= XFS_SBS_FDBLOCKS));
2295
2296 xfs_icsb_lock_all_counters(mp);
2297 for_each_online_cpu(i) {
2298 cntp = per_cpu_ptr(mp->m_sb_cnts, i);
2299 switch (field) {
2300 case XFS_SBS_ICOUNT:
2301 cntp->icsb_icount = count + resid;
2302 break;
2303 case XFS_SBS_IFREE:
2304 cntp->icsb_ifree = count + resid;
2305 break;
2306 case XFS_SBS_FDBLOCKS:
2307 cntp->icsb_fdblocks = count + resid;
2308 break;
2309 default:
2310 BUG();
2311 break;
2312 }
2313 resid = 0;
2314 }
2315 clear_bit(field, &mp->m_icsb_counters);
2316 xfs_icsb_unlock_all_counters(mp);
2317}
2318
David Chinnerdbcabad2007-02-10 18:36:17 +11002319void
Christoph Hellwigd4d90b52008-04-22 17:34:37 +10002320xfs_icsb_sync_counters_locked(
David Chinner8d280b92006-03-14 13:13:09 +11002321 xfs_mount_t *mp,
2322 int flags)
2323{
2324 xfs_icsb_cnts_t cnt;
David Chinner8d280b92006-03-14 13:13:09 +11002325
David Chinner8d280b92006-03-14 13:13:09 +11002326 xfs_icsb_count(mp, &cnt, flags);
2327
David Chinner8d280b92006-03-14 13:13:09 +11002328 if (!xfs_icsb_counter_disabled(mp, XFS_SBS_ICOUNT))
2329 mp->m_sb.sb_icount = cnt.icsb_icount;
2330 if (!xfs_icsb_counter_disabled(mp, XFS_SBS_IFREE))
2331 mp->m_sb.sb_ifree = cnt.icsb_ifree;
2332 if (!xfs_icsb_counter_disabled(mp, XFS_SBS_FDBLOCKS))
2333 mp->m_sb.sb_fdblocks = cnt.icsb_fdblocks;
David Chinner8d280b92006-03-14 13:13:09 +11002334}
2335
2336/*
2337 * Accurate update of per-cpu counters to incore superblock
2338 */
Christoph Hellwigd4d90b52008-04-22 17:34:37 +10002339void
David Chinner8d280b92006-03-14 13:13:09 +11002340xfs_icsb_sync_counters(
Christoph Hellwigd4d90b52008-04-22 17:34:37 +10002341 xfs_mount_t *mp,
2342 int flags)
David Chinner8d280b92006-03-14 13:13:09 +11002343{
Christoph Hellwigd4d90b52008-04-22 17:34:37 +10002344 spin_lock(&mp->m_sb_lock);
2345 xfs_icsb_sync_counters_locked(mp, flags);
2346 spin_unlock(&mp->m_sb_lock);
David Chinner8d280b92006-03-14 13:13:09 +11002347}
2348
2349/*
2350 * Balance and enable/disable counters as necessary.
2351 *
David Chinner20b64282007-02-10 18:35:09 +11002352 * Thresholds for re-enabling counters are somewhat magic. inode counts are
2353 * chosen to be the same number as single on disk allocation chunk per CPU, and
2354 * free blocks is something far enough zero that we aren't going thrash when we
2355 * get near ENOSPC. We also need to supply a minimum we require per cpu to
2356 * prevent looping endlessly when xfs_alloc_space asks for more than will
2357 * be distributed to a single CPU but each CPU has enough blocks to be
2358 * reenabled.
2359 *
2360 * Note that we can be called when counters are already disabled.
2361 * xfs_icsb_disable_counter() optimises the counter locking in this case to
2362 * prevent locking every per-cpu counter needlessly.
David Chinner8d280b92006-03-14 13:13:09 +11002363 */
David Chinner20b64282007-02-10 18:35:09 +11002364
2365#define XFS_ICSB_INO_CNTR_REENABLE (uint64_t)64
David Chinner4be536d2006-09-07 14:26:50 +10002366#define XFS_ICSB_FDBLK_CNTR_REENABLE(mp) \
David Chinner20b64282007-02-10 18:35:09 +11002367 (uint64_t)(512 + XFS_ALLOC_SET_ASIDE(mp))
David Chinner8d280b92006-03-14 13:13:09 +11002368STATIC void
Christoph Hellwig45af6c62008-04-22 17:34:44 +10002369xfs_icsb_balance_counter_locked(
David Chinner8d280b92006-03-14 13:13:09 +11002370 xfs_mount_t *mp,
2371 xfs_sb_field_t field,
David Chinner20b64282007-02-10 18:35:09 +11002372 int min_per_cpu)
David Chinner8d280b92006-03-14 13:13:09 +11002373{
Nathan Scott6fdf8cc2006-06-28 10:13:52 +10002374 uint64_t count, resid;
David Chinner8d280b92006-03-14 13:13:09 +11002375 int weight = num_online_cpus();
David Chinner20b64282007-02-10 18:35:09 +11002376 uint64_t min = (uint64_t)min_per_cpu;
David Chinner8d280b92006-03-14 13:13:09 +11002377
David Chinner8d280b92006-03-14 13:13:09 +11002378 /* disable counter and sync counter */
2379 xfs_icsb_disable_counter(mp, field);
2380
2381 /* update counters - first CPU gets residual*/
2382 switch (field) {
2383 case XFS_SBS_ICOUNT:
2384 count = mp->m_sb.sb_icount;
2385 resid = do_div(count, weight);
David Chinner20b64282007-02-10 18:35:09 +11002386 if (count < max(min, XFS_ICSB_INO_CNTR_REENABLE))
Christoph Hellwig45af6c62008-04-22 17:34:44 +10002387 return;
David Chinner8d280b92006-03-14 13:13:09 +11002388 break;
2389 case XFS_SBS_IFREE:
2390 count = mp->m_sb.sb_ifree;
2391 resid = do_div(count, weight);
David Chinner20b64282007-02-10 18:35:09 +11002392 if (count < max(min, XFS_ICSB_INO_CNTR_REENABLE))
Christoph Hellwig45af6c62008-04-22 17:34:44 +10002393 return;
David Chinner8d280b92006-03-14 13:13:09 +11002394 break;
2395 case XFS_SBS_FDBLOCKS:
2396 count = mp->m_sb.sb_fdblocks;
2397 resid = do_div(count, weight);
David Chinner20b64282007-02-10 18:35:09 +11002398 if (count < max(min, XFS_ICSB_FDBLK_CNTR_REENABLE(mp)))
Christoph Hellwig45af6c62008-04-22 17:34:44 +10002399 return;
David Chinner8d280b92006-03-14 13:13:09 +11002400 break;
2401 default:
2402 BUG();
Nathan Scott6fdf8cc2006-06-28 10:13:52 +10002403 count = resid = 0; /* quiet, gcc */
David Chinner8d280b92006-03-14 13:13:09 +11002404 break;
2405 }
2406
2407 xfs_icsb_enable_counter(mp, field, count, resid);
Christoph Hellwig45af6c62008-04-22 17:34:44 +10002408}
2409
2410STATIC void
2411xfs_icsb_balance_counter(
2412 xfs_mount_t *mp,
2413 xfs_sb_field_t fields,
2414 int min_per_cpu)
2415{
2416 spin_lock(&mp->m_sb_lock);
2417 xfs_icsb_balance_counter_locked(mp, fields, min_per_cpu);
2418 spin_unlock(&mp->m_sb_lock);
David Chinner8d280b92006-03-14 13:13:09 +11002419}
2420
David Chinnera8272ce2007-11-23 16:28:09 +11002421STATIC int
David Chinner20b64282007-02-10 18:35:09 +11002422xfs_icsb_modify_counters(
David Chinner8d280b92006-03-14 13:13:09 +11002423 xfs_mount_t *mp,
2424 xfs_sb_field_t field,
David Chinner20f4ebf2007-02-10 18:36:10 +11002425 int64_t delta,
David Chinner20b64282007-02-10 18:35:09 +11002426 int rsvd)
David Chinner8d280b92006-03-14 13:13:09 +11002427{
2428 xfs_icsb_cnts_t *icsbp;
2429 long long lcounter; /* long counter for 64 bit fields */
Christoph Lameter7a9e02d2009-10-03 19:48:23 +09002430 int ret = 0;
David Chinner8d280b92006-03-14 13:13:09 +11002431
David Chinner20b64282007-02-10 18:35:09 +11002432 might_sleep();
David Chinner8d280b92006-03-14 13:13:09 +11002433again:
Christoph Lameter7a9e02d2009-10-03 19:48:23 +09002434 preempt_disable();
2435 icsbp = this_cpu_ptr(mp->m_sb_cnts);
David Chinner20b64282007-02-10 18:35:09 +11002436
2437 /*
2438 * if the counter is disabled, go to slow path
2439 */
David Chinner8d280b92006-03-14 13:13:09 +11002440 if (unlikely(xfs_icsb_counter_disabled(mp, field)))
2441 goto slow_path;
David Chinner20b64282007-02-10 18:35:09 +11002442 xfs_icsb_lock_cntr(icsbp);
2443 if (unlikely(xfs_icsb_counter_disabled(mp, field))) {
2444 xfs_icsb_unlock_cntr(icsbp);
2445 goto slow_path;
2446 }
David Chinner8d280b92006-03-14 13:13:09 +11002447
2448 switch (field) {
2449 case XFS_SBS_ICOUNT:
2450 lcounter = icsbp->icsb_icount;
2451 lcounter += delta;
2452 if (unlikely(lcounter < 0))
David Chinner20b64282007-02-10 18:35:09 +11002453 goto balance_counter;
David Chinner8d280b92006-03-14 13:13:09 +11002454 icsbp->icsb_icount = lcounter;
2455 break;
2456
2457 case XFS_SBS_IFREE:
2458 lcounter = icsbp->icsb_ifree;
2459 lcounter += delta;
2460 if (unlikely(lcounter < 0))
David Chinner20b64282007-02-10 18:35:09 +11002461 goto balance_counter;
David Chinner8d280b92006-03-14 13:13:09 +11002462 icsbp->icsb_ifree = lcounter;
2463 break;
2464
2465 case XFS_SBS_FDBLOCKS:
2466 BUG_ON((mp->m_resblks - mp->m_resblks_avail) != 0);
2467
David Chinner4be536d2006-09-07 14:26:50 +10002468 lcounter = icsbp->icsb_fdblocks - XFS_ALLOC_SET_ASIDE(mp);
David Chinner8d280b92006-03-14 13:13:09 +11002469 lcounter += delta;
2470 if (unlikely(lcounter < 0))
David Chinner20b64282007-02-10 18:35:09 +11002471 goto balance_counter;
David Chinner4be536d2006-09-07 14:26:50 +10002472 icsbp->icsb_fdblocks = lcounter + XFS_ALLOC_SET_ASIDE(mp);
David Chinner8d280b92006-03-14 13:13:09 +11002473 break;
2474 default:
2475 BUG();
2476 break;
2477 }
David Chinner01e1b692006-03-14 13:29:16 +11002478 xfs_icsb_unlock_cntr(icsbp);
Christoph Lameter7a9e02d2009-10-03 19:48:23 +09002479 preempt_enable();
David Chinner8d280b92006-03-14 13:13:09 +11002480 return 0;
2481
David Chinner8d280b92006-03-14 13:13:09 +11002482slow_path:
Christoph Lameter7a9e02d2009-10-03 19:48:23 +09002483 preempt_enable();
David Chinner20b64282007-02-10 18:35:09 +11002484
2485 /*
2486 * serialise with a mutex so we don't burn lots of cpu on
2487 * the superblock lock. We still need to hold the superblock
2488 * lock, however, when we modify the global structures.
2489 */
David Chinner03135cf2007-02-10 18:35:15 +11002490 xfs_icsb_lock(mp);
David Chinner20b64282007-02-10 18:35:09 +11002491
2492 /*
2493 * Now running atomically.
2494 *
2495 * If the counter is enabled, someone has beaten us to rebalancing.
2496 * Drop the lock and try again in the fast path....
2497 */
2498 if (!(xfs_icsb_counter_disabled(mp, field))) {
David Chinner03135cf2007-02-10 18:35:15 +11002499 xfs_icsb_unlock(mp);
David Chinner20b64282007-02-10 18:35:09 +11002500 goto again;
2501 }
2502
2503 /*
2504 * The counter is currently disabled. Because we are
2505 * running atomically here, we know a rebalance cannot
2506 * be in progress. Hence we can go straight to operating
2507 * on the global superblock. We do not call xfs_mod_incore_sb()
Eric Sandeen3685c2a2007-10-11 17:42:32 +10002508 * here even though we need to get the m_sb_lock. Doing so
David Chinner20b64282007-02-10 18:35:09 +11002509 * will cause us to re-enter this function and deadlock.
Eric Sandeen3685c2a2007-10-11 17:42:32 +10002510 * Hence we get the m_sb_lock ourselves and then call
David Chinner20b64282007-02-10 18:35:09 +11002511 * xfs_mod_incore_sb_unlocked() as the unlocked path operates
2512 * directly on the global counters.
2513 */
Eric Sandeen3685c2a2007-10-11 17:42:32 +10002514 spin_lock(&mp->m_sb_lock);
David Chinner20b64282007-02-10 18:35:09 +11002515 ret = xfs_mod_incore_sb_unlocked(mp, field, delta, rsvd);
Eric Sandeen3685c2a2007-10-11 17:42:32 +10002516 spin_unlock(&mp->m_sb_lock);
David Chinner20b64282007-02-10 18:35:09 +11002517
2518 /*
2519 * Now that we've modified the global superblock, we
2520 * may be able to re-enable the distributed counters
2521 * (e.g. lots of space just got freed). After that
2522 * we are done.
2523 */
2524 if (ret != ENOSPC)
Christoph Hellwig45af6c62008-04-22 17:34:44 +10002525 xfs_icsb_balance_counter(mp, field, 0);
David Chinner03135cf2007-02-10 18:35:15 +11002526 xfs_icsb_unlock(mp);
David Chinner20b64282007-02-10 18:35:09 +11002527 return ret;
2528
2529balance_counter:
David Chinner01e1b692006-03-14 13:29:16 +11002530 xfs_icsb_unlock_cntr(icsbp);
Christoph Lameter7a9e02d2009-10-03 19:48:23 +09002531 preempt_enable();
David Chinner8d280b92006-03-14 13:13:09 +11002532
David Chinner20b64282007-02-10 18:35:09 +11002533 /*
2534 * We may have multiple threads here if multiple per-cpu
2535 * counters run dry at the same time. This will mean we can
2536 * do more balances than strictly necessary but it is not
2537 * the common slowpath case.
2538 */
David Chinner03135cf2007-02-10 18:35:15 +11002539 xfs_icsb_lock(mp);
David Chinner8d280b92006-03-14 13:13:09 +11002540
David Chinner20b64282007-02-10 18:35:09 +11002541 /*
2542 * running atomically.
2543 *
2544 * This will leave the counter in the correct state for future
2545 * accesses. After the rebalance, we simply try again and our retry
2546 * will either succeed through the fast path or slow path without
2547 * another balance operation being required.
2548 */
Christoph Hellwig45af6c62008-04-22 17:34:44 +10002549 xfs_icsb_balance_counter(mp, field, delta);
David Chinner03135cf2007-02-10 18:35:15 +11002550 xfs_icsb_unlock(mp);
David Chinner20b64282007-02-10 18:35:09 +11002551 goto again;
David Chinner8d280b92006-03-14 13:13:09 +11002552}
2553
David Chinner8d280b92006-03-14 13:13:09 +11002554#endif