blob: f0e09ca1413933fa01993a0555beb80e38bbe14b [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"
Nathan Scotta844f452005-11-02 14:38:42 +110026#include "xfs_ag.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include "xfs_dir.h"
28#include "xfs_dir2.h"
29#include "xfs_dmapi.h"
30#include "xfs_mount.h"
Nathan Scotta844f452005-11-02 14:38:42 +110031#include "xfs_da_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include "xfs_bmap_btree.h"
33#include "xfs_ialloc_btree.h"
34#include "xfs_alloc_btree.h"
Nathan Scotta844f452005-11-02 14:38:42 +110035#include "xfs_dir_sf.h"
36#include "xfs_dir2_sf.h"
37#include "xfs_attr_sf.h"
38#include "xfs_dinode.h"
39#include "xfs_inode.h"
40#include "xfs_inode_item.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#include "xfs_btree.h"
42#include "xfs_alloc.h"
43#include "xfs_ialloc.h"
Nathan Scotta844f452005-11-02 14:38:42 +110044#include "xfs_quota.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#include "xfs_error.h"
46#include "xfs_bmap.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#include "xfs_rw.h"
48#include "xfs_refcache.h"
49#include "xfs_buf_item.h"
Nathan Scotta844f452005-11-02 14:38:42 +110050#include "xfs_log_priv.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070051#include "xfs_dir2_trace.h"
Nathan Scotta844f452005-11-02 14:38:42 +110052#include "xfs_extfree_item.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070053#include "xfs_acl.h"
54#include "xfs_attr.h"
55#include "xfs_clnt.h"
Christoph Hellwige13a73f2006-01-11 15:30:08 +110056#include "xfs_fsops.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
David Chinner8d280b92006-03-14 13:13:09 +110058STATIC int xfs_sync(bhv_desc_t *, int, cred_t *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
60int
61xfs_init(void)
62{
63 extern kmem_zone_t *xfs_bmap_free_item_zone;
64 extern kmem_zone_t *xfs_btree_cur_zone;
65 extern kmem_zone_t *xfs_trans_zone;
66 extern kmem_zone_t *xfs_buf_item_zone;
67 extern kmem_zone_t *xfs_dabuf_zone;
68#ifdef XFS_DABUF_DEBUG
69 extern lock_t xfs_dabuf_global_lock;
70 spinlock_init(&xfs_dabuf_global_lock, "xfsda");
71#endif
72
73 /*
74 * Initialize all of the zone allocators we use.
75 */
76 xfs_bmap_free_item_zone = kmem_zone_init(sizeof(xfs_bmap_free_item_t),
77 "xfs_bmap_free_item");
78 xfs_btree_cur_zone = kmem_zone_init(sizeof(xfs_btree_cur_t),
79 "xfs_btree_cur");
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 xfs_trans_zone = kmem_zone_init(sizeof(xfs_trans_t), "xfs_trans");
81 xfs_da_state_zone =
82 kmem_zone_init(sizeof(xfs_da_state_t), "xfs_da_state");
83 xfs_dabuf_zone = kmem_zone_init(sizeof(xfs_dabuf_t), "xfs_dabuf");
Nathan Scott87582802006-03-14 13:18:19 +110084 xfs_ifork_zone = kmem_zone_init(sizeof(xfs_ifork_t), "xfs_ifork");
85 xfs_acl_zone_init(xfs_acl_zone, "xfs_acl");
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
87 /*
88 * The size of the zone allocated buf log item is the maximum
89 * size possible under XFS. This wastes a little bit of memory,
90 * but it is much faster.
91 */
92 xfs_buf_item_zone =
93 kmem_zone_init((sizeof(xfs_buf_log_item_t) +
94 (((XFS_MAX_BLOCKSIZE / XFS_BLI_CHUNK) /
95 NBWORD) * sizeof(int))),
96 "xfs_buf_item");
Nathan Scott87582802006-03-14 13:18:19 +110097 xfs_efd_zone =
98 kmem_zone_init((sizeof(xfs_efd_log_item_t) +
99 ((XFS_EFD_MAX_FAST_EXTENTS - 1) *
100 sizeof(xfs_extent_t))),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 "xfs_efd_item");
Nathan Scott87582802006-03-14 13:18:19 +1100102 xfs_efi_zone =
103 kmem_zone_init((sizeof(xfs_efi_log_item_t) +
104 ((XFS_EFI_MAX_FAST_EXTENTS - 1) *
105 sizeof(xfs_extent_t))),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 "xfs_efi_item");
Nathan Scott87582802006-03-14 13:18:19 +1100107
108 /*
109 * These zones warrant special memory allocator hints
110 */
111 xfs_inode_zone =
112 kmem_zone_init_flags(sizeof(xfs_inode_t), "xfs_inode",
113 KM_ZONE_HWALIGN | KM_ZONE_RECLAIM |
114 KM_ZONE_SPREAD, NULL);
115 xfs_ili_zone =
116 kmem_zone_init_flags(sizeof(xfs_inode_log_item_t), "xfs_ili",
117 KM_ZONE_SPREAD, NULL);
118 xfs_chashlist_zone =
119 kmem_zone_init_flags(sizeof(xfs_chashlist_t), "xfs_chashlist",
120 KM_ZONE_SPREAD, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121
122 /*
123 * Allocate global trace buffers.
124 */
125#ifdef XFS_ALLOC_TRACE
126 xfs_alloc_trace_buf = ktrace_alloc(XFS_ALLOC_TRACE_SIZE, KM_SLEEP);
127#endif
128#ifdef XFS_BMAP_TRACE
129 xfs_bmap_trace_buf = ktrace_alloc(XFS_BMAP_TRACE_SIZE, KM_SLEEP);
130#endif
131#ifdef XFS_BMBT_TRACE
132 xfs_bmbt_trace_buf = ktrace_alloc(XFS_BMBT_TRACE_SIZE, KM_SLEEP);
133#endif
134#ifdef XFS_DIR_TRACE
135 xfs_dir_trace_buf = ktrace_alloc(XFS_DIR_TRACE_SIZE, KM_SLEEP);
136#endif
137#ifdef XFS_ATTR_TRACE
138 xfs_attr_trace_buf = ktrace_alloc(XFS_ATTR_TRACE_SIZE, KM_SLEEP);
139#endif
140#ifdef XFS_DIR2_TRACE
141 xfs_dir2_trace_buf = ktrace_alloc(XFS_DIR2_GTRACE_SIZE, KM_SLEEP);
142#endif
143
144 xfs_dir_startup();
145
146#if (defined(DEBUG) || defined(INDUCE_IO_ERROR))
147 xfs_error_test_init();
148#endif /* DEBUG || INDUCE_IO_ERROR */
149
150 xfs_init_procfs();
151 xfs_sysctl_register();
152 return 0;
153}
154
155void
156xfs_cleanup(void)
157{
158 extern kmem_zone_t *xfs_bmap_free_item_zone;
159 extern kmem_zone_t *xfs_btree_cur_zone;
160 extern kmem_zone_t *xfs_inode_zone;
161 extern kmem_zone_t *xfs_trans_zone;
162 extern kmem_zone_t *xfs_da_state_zone;
163 extern kmem_zone_t *xfs_dabuf_zone;
164 extern kmem_zone_t *xfs_efd_zone;
165 extern kmem_zone_t *xfs_efi_zone;
166 extern kmem_zone_t *xfs_buf_item_zone;
167 extern kmem_zone_t *xfs_chashlist_zone;
168
169 xfs_cleanup_procfs();
170 xfs_sysctl_unregister();
171 xfs_refcache_destroy();
172 xfs_acl_zone_destroy(xfs_acl_zone);
173
174#ifdef XFS_DIR2_TRACE
175 ktrace_free(xfs_dir2_trace_buf);
176#endif
177#ifdef XFS_ATTR_TRACE
178 ktrace_free(xfs_attr_trace_buf);
179#endif
180#ifdef XFS_DIR_TRACE
181 ktrace_free(xfs_dir_trace_buf);
182#endif
183#ifdef XFS_BMBT_TRACE
184 ktrace_free(xfs_bmbt_trace_buf);
185#endif
186#ifdef XFS_BMAP_TRACE
187 ktrace_free(xfs_bmap_trace_buf);
188#endif
189#ifdef XFS_ALLOC_TRACE
190 ktrace_free(xfs_alloc_trace_buf);
191#endif
192
Nathan Scott3758dee2006-03-22 12:47:28 +1100193 kmem_zone_destroy(xfs_bmap_free_item_zone);
194 kmem_zone_destroy(xfs_btree_cur_zone);
195 kmem_zone_destroy(xfs_inode_zone);
196 kmem_zone_destroy(xfs_trans_zone);
197 kmem_zone_destroy(xfs_da_state_zone);
198 kmem_zone_destroy(xfs_dabuf_zone);
199 kmem_zone_destroy(xfs_buf_item_zone);
200 kmem_zone_destroy(xfs_efd_zone);
201 kmem_zone_destroy(xfs_efi_zone);
202 kmem_zone_destroy(xfs_ifork_zone);
203 kmem_zone_destroy(xfs_ili_zone);
204 kmem_zone_destroy(xfs_chashlist_zone);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205}
206
207/*
208 * xfs_start_flags
209 *
210 * This function fills in xfs_mount_t fields based on mount args.
211 * Note: the superblock has _not_ yet been read in.
212 */
213STATIC int
214xfs_start_flags(
215 struct vfs *vfs,
216 struct xfs_mount_args *ap,
217 struct xfs_mount *mp)
218{
219 /* Values are in BBs */
220 if ((ap->flags & XFSMNT_NOALIGN) != XFSMNT_NOALIGN) {
221 /*
222 * At this point the superblock has not been read
223 * in, therefore we do not know the block size.
224 * Before the mount call ends we will convert
225 * these to FSBs.
226 */
227 mp->m_dalign = ap->sunit;
228 mp->m_swidth = ap->swidth;
229 }
230
231 if (ap->logbufs != -1 &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 ap->logbufs != 0 &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 (ap->logbufs < XLOG_MIN_ICLOGS ||
234 ap->logbufs > XLOG_MAX_ICLOGS)) {
235 cmn_err(CE_WARN,
236 "XFS: invalid logbufs value: %d [not %d-%d]",
237 ap->logbufs, XLOG_MIN_ICLOGS, XLOG_MAX_ICLOGS);
238 return XFS_ERROR(EINVAL);
239 }
240 mp->m_logbufs = ap->logbufs;
241 if (ap->logbufsize != -1 &&
Nathan Scottcfcbbbd2005-11-02 15:12:04 +1100242 ap->logbufsize != 0 &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 ap->logbufsize != 16 * 1024 &&
244 ap->logbufsize != 32 * 1024 &&
245 ap->logbufsize != 64 * 1024 &&
246 ap->logbufsize != 128 * 1024 &&
247 ap->logbufsize != 256 * 1024) {
248 cmn_err(CE_WARN,
249 "XFS: invalid logbufsize: %d [not 16k,32k,64k,128k or 256k]",
250 ap->logbufsize);
251 return XFS_ERROR(EINVAL);
252 }
253 mp->m_ihsize = ap->ihashsize;
254 mp->m_logbsize = ap->logbufsize;
255 mp->m_fsname_len = strlen(ap->fsname) + 1;
256 mp->m_fsname = kmem_alloc(mp->m_fsname_len, KM_SLEEP);
257 strcpy(mp->m_fsname, ap->fsname);
Nathan Scottfc1f8c12005-11-02 11:44:33 +1100258 if (ap->rtname[0]) {
259 mp->m_rtname = kmem_alloc(strlen(ap->rtname) + 1, KM_SLEEP);
260 strcpy(mp->m_rtname, ap->rtname);
261 }
262 if (ap->logname[0]) {
263 mp->m_logname = kmem_alloc(strlen(ap->logname) + 1, KM_SLEEP);
264 strcpy(mp->m_logname, ap->logname);
265 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266
267 if (ap->flags & XFSMNT_WSYNC)
268 mp->m_flags |= XFS_MOUNT_WSYNC;
269#if XFS_BIG_INUMS
270 if (ap->flags & XFSMNT_INO64) {
271 mp->m_flags |= XFS_MOUNT_INO64;
272 mp->m_inoadd = XFS_INO64_OFFSET;
273 }
274#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 if (ap->flags & XFSMNT_RETERR)
276 mp->m_flags |= XFS_MOUNT_RETERR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 if (ap->flags & XFSMNT_NOALIGN)
278 mp->m_flags |= XFS_MOUNT_NOALIGN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 if (ap->flags & XFSMNT_SWALLOC)
280 mp->m_flags |= XFS_MOUNT_SWALLOC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 if (ap->flags & XFSMNT_OSYNCISOSYNC)
282 mp->m_flags |= XFS_MOUNT_OSYNCISOSYNC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 if (ap->flags & XFSMNT_32BITINODES)
Nathan Scottc11e2c32005-11-02 15:11:45 +1100284 mp->m_flags |= XFS_MOUNT_32BITINODES;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285
286 if (ap->flags & XFSMNT_IOSIZE) {
287 if (ap->iosizelog > XFS_MAX_IO_LOG ||
288 ap->iosizelog < XFS_MIN_IO_LOG) {
289 cmn_err(CE_WARN,
290 "XFS: invalid log iosize: %d [not %d-%d]",
291 ap->iosizelog, XFS_MIN_IO_LOG,
292 XFS_MAX_IO_LOG);
293 return XFS_ERROR(EINVAL);
294 }
295
296 mp->m_flags |= XFS_MOUNT_DFLT_IOSIZE;
297 mp->m_readio_log = mp->m_writeio_log = ap->iosizelog;
298 }
299
300 if (ap->flags & XFSMNT_IHASHSIZE)
301 mp->m_flags |= XFS_MOUNT_IHASHSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302 if (ap->flags & XFSMNT_IDELETE)
303 mp->m_flags |= XFS_MOUNT_IDELETE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 if (ap->flags & XFSMNT_DIRSYNC)
305 mp->m_flags |= XFS_MOUNT_DIRSYNC;
Nathan Scott13059ff2006-01-11 15:32:01 +1100306 if (ap->flags & XFSMNT_ATTR2)
307 mp->m_flags |= XFS_MOUNT_ATTR2;
David Chinnere8c8b3a2005-11-02 10:33:05 +1100308
Nathan Scotte718eeb42005-11-02 15:09:22 +1100309 if (ap->flags2 & XFSMNT2_COMPAT_IOSIZE)
310 mp->m_flags |= XFS_MOUNT_COMPAT_IOSIZE;
311
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 /*
313 * no recovery flag requires a read-only mount
314 */
315 if (ap->flags & XFSMNT_NORECOVERY) {
316 if (!(vfs->vfs_flag & VFS_RDONLY)) {
317 cmn_err(CE_WARN,
318 "XFS: tried to mount a FS read-write without recovery!");
319 return XFS_ERROR(EINVAL);
320 }
321 mp->m_flags |= XFS_MOUNT_NORECOVERY;
322 }
323
324 if (ap->flags & XFSMNT_NOUUID)
325 mp->m_flags |= XFS_MOUNT_NOUUID;
Christoph Hellwigf538d4d2005-11-02 10:26:59 +1100326 if (ap->flags & XFSMNT_BARRIER)
327 mp->m_flags |= XFS_MOUNT_BARRIER;
Christoph Hellwig4ef19dd2006-01-11 15:27:18 +1100328 else
329 mp->m_flags &= ~XFS_MOUNT_BARRIER;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330
331 return 0;
332}
333
334/*
335 * This function fills in xfs_mount_t fields based on mount args.
336 * Note: the superblock _has_ now been read in.
337 */
338STATIC int
339xfs_finish_flags(
340 struct vfs *vfs,
341 struct xfs_mount_args *ap,
342 struct xfs_mount *mp)
343{
344 int ronly = (vfs->vfs_flag & VFS_RDONLY);
345
346 /* Fail a mount where the logbuf is smaller then the log stripe */
347 if (XFS_SB_VERSION_HASLOGV2(&mp->m_sb)) {
Nathan Scottc2cd2552006-01-11 15:35:32 +1100348 if ((ap->logbufsize <= 0) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 (mp->m_sb.sb_logsunit > XLOG_BIG_RECORD_BSIZE)) {
350 mp->m_logbsize = mp->m_sb.sb_logsunit;
Nathan Scottc2cd2552006-01-11 15:35:32 +1100351 } else if (ap->logbufsize > 0 &&
352 ap->logbufsize < mp->m_sb.sb_logsunit) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 cmn_err(CE_WARN,
354 "XFS: logbuf size must be greater than or equal to log stripe size");
355 return XFS_ERROR(EINVAL);
356 }
357 } else {
358 /* Fail a mount if the logbuf is larger than 32K */
359 if (ap->logbufsize > XLOG_BIG_RECORD_BSIZE) {
360 cmn_err(CE_WARN,
361 "XFS: logbuf size for version 1 logs must be 16K or 32K");
362 return XFS_ERROR(EINVAL);
363 }
364 }
365
Nathan Scott13059ff2006-01-11 15:32:01 +1100366 if (XFS_SB_VERSION_HASATTR2(&mp->m_sb)) {
367 mp->m_flags |= XFS_MOUNT_ATTR2;
368 }
369
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 /*
371 * prohibit r/w mounts of read-only filesystems
372 */
373 if ((mp->m_sb.sb_flags & XFS_SBF_READONLY) && !ronly) {
374 cmn_err(CE_WARN,
375 "XFS: cannot mount a read-only filesystem as read-write");
376 return XFS_ERROR(EROFS);
377 }
378
379 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 * check for shared mount.
381 */
382 if (ap->flags & XFSMNT_SHARED) {
383 if (!XFS_SB_VERSION_HASSHARED(&mp->m_sb))
384 return XFS_ERROR(EINVAL);
385
386 /*
387 * For IRIX 6.5, shared mounts must have the shared
388 * version bit set, have the persistent readonly
389 * field set, must be version 0 and can only be mounted
390 * read-only.
391 */
392 if (!ronly || !(mp->m_sb.sb_flags & XFS_SBF_READONLY) ||
393 (mp->m_sb.sb_shared_vn != 0))
394 return XFS_ERROR(EINVAL);
395
396 mp->m_flags |= XFS_MOUNT_SHARED;
397
398 /*
399 * Shared XFS V0 can't deal with DMI. Return EINVAL.
400 */
401 if (mp->m_sb.sb_shared_vn == 0 && (ap->flags & XFSMNT_DMAPI))
402 return XFS_ERROR(EINVAL);
403 }
404
405 return 0;
406}
407
408/*
409 * xfs_mount
410 *
411 * The file system configurations are:
412 * (1) device (partition) with data and internal log
413 * (2) logical volume with data and log subvolumes.
414 * (3) logical volume with data, log, and realtime subvolumes.
415 *
416 * We only have to handle opening the log and realtime volumes here if
417 * they are present. The data subvolume has already been opened by
418 * get_sb_bdev() and is stored in vfsp->vfs_super->s_bdev.
419 */
420STATIC int
421xfs_mount(
422 struct bhv_desc *bhvp,
423 struct xfs_mount_args *args,
424 cred_t *credp)
425{
426 struct vfs *vfsp = bhvtovfs(bhvp);
427 struct bhv_desc *p;
428 struct xfs_mount *mp = XFS_BHVTOM(bhvp);
429 struct block_device *ddev, *logdev, *rtdev;
430 int flags = 0, error;
431
432 ddev = vfsp->vfs_super->s_bdev;
433 logdev = rtdev = NULL;
434
435 /*
436 * Setup xfs_mount function vectors from available behaviors
437 */
438 p = vfs_bhv_lookup(vfsp, VFS_POSITION_DM);
439 mp->m_dm_ops = p ? *(xfs_dmops_t *) vfs_bhv_custom(p) : xfs_dmcore_stub;
440 p = vfs_bhv_lookup(vfsp, VFS_POSITION_QM);
441 mp->m_qm_ops = p ? *(xfs_qmops_t *) vfs_bhv_custom(p) : xfs_qmcore_stub;
442 p = vfs_bhv_lookup(vfsp, VFS_POSITION_IO);
443 mp->m_io_ops = p ? *(xfs_ioops_t *) vfs_bhv_custom(p) : xfs_iocore_xfs;
444
Nathan Scott764d1f82006-03-31 13:04:17 +1000445 if (args->flags & XFSMNT_QUIET)
446 flags |= XFS_MFSI_QUIET;
447
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 /*
449 * Open real time and log devices - order is important.
450 */
451 if (args->logname[0]) {
452 error = xfs_blkdev_get(mp, args->logname, &logdev);
453 if (error)
454 return error;
455 }
456 if (args->rtname[0]) {
457 error = xfs_blkdev_get(mp, args->rtname, &rtdev);
458 if (error) {
459 xfs_blkdev_put(logdev);
460 return error;
461 }
462
463 if (rtdev == ddev || rtdev == logdev) {
464 cmn_err(CE_WARN,
465 "XFS: Cannot mount filesystem with identical rtdev and ddev/logdev.");
466 xfs_blkdev_put(logdev);
467 xfs_blkdev_put(rtdev);
468 return EINVAL;
469 }
470 }
471
472 /*
473 * Setup xfs_mount buffer target pointers
474 */
475 error = ENOMEM;
476 mp->m_ddev_targp = xfs_alloc_buftarg(ddev, 0);
477 if (!mp->m_ddev_targp) {
478 xfs_blkdev_put(logdev);
479 xfs_blkdev_put(rtdev);
480 return error;
481 }
482 if (rtdev) {
483 mp->m_rtdev_targp = xfs_alloc_buftarg(rtdev, 1);
484 if (!mp->m_rtdev_targp)
485 goto error0;
486 }
487 mp->m_logdev_targp = (logdev && logdev != ddev) ?
488 xfs_alloc_buftarg(logdev, 1) : mp->m_ddev_targp;
489 if (!mp->m_logdev_targp)
490 goto error0;
491
492 /*
493 * Setup flags based on mount(2) options and then the superblock
494 */
495 error = xfs_start_flags(vfsp, args, mp);
496 if (error)
497 goto error1;
Nathan Scott764d1f82006-03-31 13:04:17 +1000498 error = xfs_readsb(mp, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 if (error)
500 goto error1;
501 error = xfs_finish_flags(vfsp, args, mp);
502 if (error)
503 goto error2;
504
505 /*
506 * Setup xfs_mount buffer target pointers based on superblock
507 */
508 error = xfs_setsize_buftarg(mp->m_ddev_targp, mp->m_sb.sb_blocksize,
509 mp->m_sb.sb_sectsize);
510 if (!error && logdev && logdev != ddev) {
511 unsigned int log_sector_size = BBSIZE;
512
513 if (XFS_SB_VERSION_HASSECTOR(&mp->m_sb))
514 log_sector_size = mp->m_sb.sb_logsectsize;
515 error = xfs_setsize_buftarg(mp->m_logdev_targp,
516 mp->m_sb.sb_blocksize,
517 log_sector_size);
518 }
519 if (!error && rtdev)
520 error = xfs_setsize_buftarg(mp->m_rtdev_targp,
521 mp->m_sb.sb_blocksize,
522 mp->m_sb.sb_sectsize);
523 if (error)
524 goto error2;
525
Nathan Scottb04ed212006-01-11 15:32:17 +1100526 if ((mp->m_flags & XFS_MOUNT_BARRIER) && !(vfsp->vfs_flag & VFS_RDONLY))
Christoph Hellwigc7d437d2006-01-11 15:28:56 +1100527 xfs_mountfs_check_barriers(mp);
528
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 error = XFS_IOINIT(vfsp, args, flags);
Christoph Hellwigf538d4d2005-11-02 10:26:59 +1100530 if (error)
531 goto error2;
532
Christoph Hellwigf538d4d2005-11-02 10:26:59 +1100533 return 0;
534
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535error2:
536 if (mp->m_sb_bp)
537 xfs_freesb(mp);
538error1:
539 xfs_binval(mp->m_ddev_targp);
540 if (logdev && logdev != ddev)
541 xfs_binval(mp->m_logdev_targp);
542 if (rtdev)
543 xfs_binval(mp->m_rtdev_targp);
544error0:
545 xfs_unmountfs_close(mp, credp);
546 return error;
547}
548
549STATIC int
550xfs_unmount(
551 bhv_desc_t *bdp,
552 int flags,
553 cred_t *credp)
554{
555 struct vfs *vfsp = bhvtovfs(bdp);
556 xfs_mount_t *mp = XFS_BHVTOM(bdp);
557 xfs_inode_t *rip;
558 vnode_t *rvp;
559 int unmount_event_wanted = 0;
560 int unmount_event_flags = 0;
561 int xfs_unmountfs_needed = 0;
562 int error;
563
564 rip = mp->m_rootip;
565 rvp = XFS_ITOV(rip);
566
567 if (vfsp->vfs_flag & VFS_DMI) {
568 error = XFS_SEND_PREUNMOUNT(mp, vfsp,
569 rvp, DM_RIGHT_NULL, rvp, DM_RIGHT_NULL,
570 NULL, NULL, 0, 0,
571 (mp->m_dmevmask & (1<<DM_EVENT_PREUNMOUNT))?
572 0:DM_FLAGS_UNWANTED);
573 if (error)
574 return XFS_ERROR(error);
575 unmount_event_wanted = 1;
576 unmount_event_flags = (mp->m_dmevmask & (1<<DM_EVENT_UNMOUNT))?
577 0 : DM_FLAGS_UNWANTED;
578 }
579
580 /*
581 * First blow any referenced inode from this file system
582 * out of the reference cache, and delete the timer.
583 */
584 xfs_refcache_purge_mp(mp);
585
586 XFS_bflush(mp->m_ddev_targp);
587 error = xfs_unmount_flush(mp, 0);
588 if (error)
589 goto out;
590
591 ASSERT(vn_count(rvp) == 1);
592
593 /*
594 * Drop the reference count
595 */
596 VN_RELE(rvp);
597
598 /*
599 * If we're forcing a shutdown, typically because of a media error,
600 * we want to make sure we invalidate dirty pages that belong to
601 * referenced vnodes as well.
602 */
603 if (XFS_FORCED_SHUTDOWN(mp)) {
604 error = xfs_sync(&mp->m_bhv,
605 (SYNC_WAIT | SYNC_CLOSE), credp);
606 ASSERT(error != EFSCORRUPTED);
607 }
608 xfs_unmountfs_needed = 1;
609
610out:
611 /* Send DMAPI event, if required.
612 * Then do xfs_unmountfs() if needed.
613 * Then return error (or zero).
614 */
615 if (unmount_event_wanted) {
616 /* Note: mp structure must still exist for
617 * XFS_SEND_UNMOUNT() call.
618 */
619 XFS_SEND_UNMOUNT(mp, vfsp, error == 0 ? rvp : NULL,
620 DM_RIGHT_NULL, 0, error, unmount_event_flags);
621 }
622 if (xfs_unmountfs_needed) {
623 /*
624 * Call common unmount function to flush to disk
625 * and free the super block buffer & mount structures.
626 */
627 xfs_unmountfs(mp, credp);
628 }
629
630 return XFS_ERROR(error);
631}
632
Christoph Hellwigf898d6c2005-06-21 15:40:48 +1000633STATIC int
634xfs_quiesce_fs(
635 xfs_mount_t *mp)
636{
637 int count = 0, pincount;
Nathan Scott3758dee2006-03-22 12:47:28 +1100638
Christoph Hellwigf898d6c2005-06-21 15:40:48 +1000639 xfs_refcache_purge_mp(mp);
640 xfs_flush_buftarg(mp->m_ddev_targp, 0);
641 xfs_finish_reclaim_all(mp, 0);
642
643 /* This loop must run at least twice.
644 * The first instance of the loop will flush
645 * most meta data but that will generate more
646 * meta data (typically directory updates).
647 * Which then must be flushed and logged before
648 * we can write the unmount record.
Nathan Scott3758dee2006-03-22 12:47:28 +1100649 */
Christoph Hellwigf898d6c2005-06-21 15:40:48 +1000650 do {
651 xfs_syncsub(mp, SYNC_REMOUNT|SYNC_ATTR|SYNC_WAIT, 0, NULL);
652 pincount = xfs_flush_buftarg(mp->m_ddev_targp, 1);
653 if (!pincount) {
654 delay(50);
655 count++;
656 }
657 } while (count < 2);
658
659 return 0;
660}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661
662STATIC int
663xfs_mntupdate(
664 bhv_desc_t *bdp,
665 int *flags,
666 struct xfs_mount_args *args)
667{
668 struct vfs *vfsp = bhvtovfs(bdp);
669 xfs_mount_t *mp = XFS_BHVTOM(bdp);
Christoph Hellwigf898d6c2005-06-21 15:40:48 +1000670 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671
Christoph Hellwig4ef19dd2006-01-11 15:27:18 +1100672 if (args->flags & XFSMNT_BARRIER)
673 mp->m_flags |= XFS_MOUNT_BARRIER;
674 else
675 mp->m_flags &= ~XFS_MOUNT_BARRIER;
676
Christoph Hellwigf538d4d2005-11-02 10:26:59 +1100677 if ((vfsp->vfs_flag & VFS_RDONLY) &&
678 !(*flags & MS_RDONLY)) {
679 vfsp->vfs_flag &= ~VFS_RDONLY;
680
681 if (args->flags & XFSMNT_BARRIER)
682 xfs_mountfs_check_barriers(mp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 }
684
Christoph Hellwigf538d4d2005-11-02 10:26:59 +1100685 if (!(vfsp->vfs_flag & VFS_RDONLY) &&
686 (*flags & MS_RDONLY)) {
687 VFS_SYNC(vfsp, SYNC_FSDATA|SYNC_BDFLUSH|SYNC_ATTR, NULL, error);
688
Christoph Hellwigf898d6c2005-06-21 15:40:48 +1000689 xfs_quiesce_fs(mp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690
691 /* Ok now write out an unmount record */
692 xfs_log_unmount_write(mp);
693 xfs_unmountfs_writesb(mp);
694 vfsp->vfs_flag |= VFS_RDONLY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 }
696
697 return 0;
698}
699
700/*
701 * xfs_unmount_flush implements a set of flush operation on special
702 * inodes, which are needed as a separate set of operations so that
703 * they can be called as part of relocation process.
704 */
705int
706xfs_unmount_flush(
707 xfs_mount_t *mp, /* Mount structure we are getting
708 rid of. */
709 int relocation) /* Called from vfs relocation. */
710{
711 xfs_inode_t *rip = mp->m_rootip;
712 xfs_inode_t *rbmip;
713 xfs_inode_t *rsumip = NULL;
714 vnode_t *rvp = XFS_ITOV(rip);
715 int error;
716
717 xfs_ilock(rip, XFS_ILOCK_EXCL);
718 xfs_iflock(rip);
719
720 /*
721 * Flush out the real time inodes.
722 */
723 if ((rbmip = mp->m_rbmip) != NULL) {
724 xfs_ilock(rbmip, XFS_ILOCK_EXCL);
725 xfs_iflock(rbmip);
726 error = xfs_iflush(rbmip, XFS_IFLUSH_SYNC);
727 xfs_iunlock(rbmip, XFS_ILOCK_EXCL);
728
729 if (error == EFSCORRUPTED)
730 goto fscorrupt_out;
731
732 ASSERT(vn_count(XFS_ITOV(rbmip)) == 1);
733
734 rsumip = mp->m_rsumip;
735 xfs_ilock(rsumip, XFS_ILOCK_EXCL);
736 xfs_iflock(rsumip);
737 error = xfs_iflush(rsumip, XFS_IFLUSH_SYNC);
738 xfs_iunlock(rsumip, XFS_ILOCK_EXCL);
739
740 if (error == EFSCORRUPTED)
741 goto fscorrupt_out;
742
743 ASSERT(vn_count(XFS_ITOV(rsumip)) == 1);
744 }
745
746 /*
747 * Synchronously flush root inode to disk
748 */
749 error = xfs_iflush(rip, XFS_IFLUSH_SYNC);
750 if (error == EFSCORRUPTED)
751 goto fscorrupt_out2;
752
753 if (vn_count(rvp) != 1 && !relocation) {
754 xfs_iunlock(rip, XFS_ILOCK_EXCL);
755 return XFS_ERROR(EBUSY);
756 }
757
758 /*
759 * Release dquot that rootinode, rbmino and rsumino might be holding,
760 * flush and purge the quota inodes.
761 */
762 error = XFS_QM_UNMOUNT(mp);
763 if (error == EFSCORRUPTED)
764 goto fscorrupt_out2;
765
766 if (rbmip) {
767 VN_RELE(XFS_ITOV(rbmip));
768 VN_RELE(XFS_ITOV(rsumip));
769 }
770
771 xfs_iunlock(rip, XFS_ILOCK_EXCL);
772 return 0;
773
774fscorrupt_out:
775 xfs_ifunlock(rip);
776
777fscorrupt_out2:
778 xfs_iunlock(rip, XFS_ILOCK_EXCL);
779
780 return XFS_ERROR(EFSCORRUPTED);
781}
782
783/*
784 * xfs_root extracts the root vnode from a vfs.
785 *
786 * vfsp -- the vfs struct for the desired file system
787 * vpp -- address of the caller's vnode pointer which should be
788 * set to the desired fs root vnode
789 */
790STATIC int
791xfs_root(
792 bhv_desc_t *bdp,
793 vnode_t **vpp)
794{
795 vnode_t *vp;
796
797 vp = XFS_ITOV((XFS_BHVTOM(bdp))->m_rootip);
798 VN_HOLD(vp);
799 *vpp = vp;
800 return 0;
801}
802
803/*
804 * xfs_statvfs
805 *
806 * Fill in the statvfs structure for the given file system. We use
807 * the superblock lock in the mount structure to ensure a consistent
808 * snapshot of the counters returned.
809 */
810STATIC int
811xfs_statvfs(
812 bhv_desc_t *bdp,
813 xfs_statfs_t *statp,
814 vnode_t *vp)
815{
816 __uint64_t fakeinos;
817 xfs_extlen_t lsize;
818 xfs_mount_t *mp;
819 xfs_sb_t *sbp;
820 unsigned long s;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821
822 mp = XFS_BHVTOM(bdp);
823 sbp = &(mp->m_sb);
824
825 statp->f_type = XFS_SB_MAGIC;
826
David Chinner8d280b92006-03-14 13:13:09 +1100827 xfs_icsb_sync_counters_lazy(mp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 s = XFS_SB_LOCK(mp);
829 statp->f_bsize = sbp->sb_blocksize;
830 lsize = sbp->sb_logstart ? sbp->sb_logblocks : 0;
831 statp->f_blocks = sbp->sb_dblocks - lsize;
832 statp->f_bfree = statp->f_bavail = sbp->sb_fdblocks;
833 fakeinos = statp->f_bfree << sbp->sb_inopblog;
834#if XFS_BIG_INUMS
835 fakeinos += mp->m_inoadd;
836#endif
837 statp->f_files =
838 MIN(sbp->sb_icount + fakeinos, (__uint64_t)XFS_MAXINUMBER);
839 if (mp->m_maxicount)
840#if XFS_BIG_INUMS
841 if (!mp->m_inoadd)
842#endif
843 statp->f_files = min_t(typeof(statp->f_files),
844 statp->f_files,
845 mp->m_maxicount);
846 statp->f_ffree = statp->f_files - (sbp->sb_icount - sbp->sb_ifree);
847 XFS_SB_UNLOCK(mp, s);
848
Nathan Scottcde410a2005-09-05 11:47:01 +1000849 xfs_statvfs_fsid(statp, mp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 statp->f_namelen = MAXNAMELEN - 1;
851
852 return 0;
853}
854
855
856/*
857 * xfs_sync flushes any pending I/O to file system vfsp.
858 *
859 * This routine is called by vfs_sync() to make sure that things make it
860 * out to disk eventually, on sync() system calls to flush out everything,
861 * and when the file system is unmounted. For the vfs_sync() case, all
862 * we really need to do is sync out the log to make all of our meta-data
863 * updates permanent (except for timestamps). For calls from pflushd(),
864 * dirty pages are kept moving by calling pdflush() on the inodes
865 * containing them. We also flush the inodes that we can lock without
866 * sleeping and the superblock if we can lock it without sleeping from
867 * vfs_sync() so that items at the tail of the log are always moving out.
868 *
869 * Flags:
870 * SYNC_BDFLUSH - We're being called from vfs_sync() so we don't want
871 * to sleep if we can help it. All we really need
872 * to do is ensure that the log is synced at least
873 * periodically. We also push the inodes and
874 * superblock if we can lock them without sleeping
875 * and they are not pinned.
876 * SYNC_ATTR - We need to flush the inodes. If SYNC_BDFLUSH is not
877 * set, then we really want to lock each inode and flush
878 * it.
879 * SYNC_WAIT - All the flushes that take place in this call should
880 * be synchronous.
881 * SYNC_DELWRI - This tells us to push dirty pages associated with
882 * inodes. SYNC_WAIT and SYNC_BDFLUSH are used to
883 * determine if they should be flushed sync, async, or
884 * delwri.
885 * SYNC_CLOSE - This flag is passed when the system is being
Nathan Scottc41564b2006-03-29 08:55:14 +1000886 * unmounted. We should sync and invalidate everything.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 * SYNC_FSDATA - This indicates that the caller would like to make
888 * sure the superblock is safe on disk. We can ensure
Nathan Scottc41564b2006-03-29 08:55:14 +1000889 * this by simply making sure the log gets flushed
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890 * if SYNC_BDFLUSH is set, and by actually writing it
891 * out otherwise.
892 *
893 */
894/*ARGSUSED*/
895STATIC int
896xfs_sync(
897 bhv_desc_t *bdp,
898 int flags,
899 cred_t *credp)
900{
Christoph Hellwigf898d6c2005-06-21 15:40:48 +1000901 xfs_mount_t *mp = XFS_BHVTOM(bdp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902
Christoph Hellwigf898d6c2005-06-21 15:40:48 +1000903 if (unlikely(flags == SYNC_QUIESCE))
904 return xfs_quiesce_fs(mp);
905 else
906 return xfs_syncsub(mp, flags, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907}
908
909/*
910 * xfs sync routine for internal use
911 *
912 * This routine supports all of the flags defined for the generic VFS_SYNC
913 * interface as explained above under xfs_sync. In the interests of not
Nathan Scottc41564b2006-03-29 08:55:14 +1000914 * changing interfaces within the 6.5 family, additional internally-
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915 * required functions are specified within a separate xflags parameter,
916 * only available by calling this routine.
917 *
918 */
Nathan Scottee348072005-11-02 10:32:38 +1100919int
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920xfs_sync_inodes(
921 xfs_mount_t *mp,
922 int flags,
923 int xflags,
924 int *bypassed)
925{
926 xfs_inode_t *ip = NULL;
927 xfs_inode_t *ip_next;
928 xfs_buf_t *bp;
929 vnode_t *vp = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 int error;
931 int last_error;
932 uint64_t fflag;
933 uint lock_flags;
934 uint base_lock_flags;
935 boolean_t mount_locked;
936 boolean_t vnode_refed;
937 int preempt;
938 xfs_dinode_t *dip;
939 xfs_iptr_t *ipointer;
940#ifdef DEBUG
941 boolean_t ipointer_in = B_FALSE;
942
943#define IPOINTER_SET ipointer_in = B_TRUE
944#define IPOINTER_CLR ipointer_in = B_FALSE
945#else
946#define IPOINTER_SET
947#define IPOINTER_CLR
948#endif
949
950
951/* Insert a marker record into the inode list after inode ip. The list
952 * must be locked when this is called. After the call the list will no
953 * longer be locked.
954 */
955#define IPOINTER_INSERT(ip, mp) { \
956 ASSERT(ipointer_in == B_FALSE); \
957 ipointer->ip_mnext = ip->i_mnext; \
958 ipointer->ip_mprev = ip; \
959 ip->i_mnext = (xfs_inode_t *)ipointer; \
960 ipointer->ip_mnext->i_mprev = (xfs_inode_t *)ipointer; \
961 preempt = 0; \
962 XFS_MOUNT_IUNLOCK(mp); \
963 mount_locked = B_FALSE; \
964 IPOINTER_SET; \
965 }
966
967/* Remove the marker from the inode list. If the marker was the only item
968 * in the list then there are no remaining inodes and we should zero out
969 * the whole list. If we are the current head of the list then move the head
970 * past us.
971 */
972#define IPOINTER_REMOVE(ip, mp) { \
973 ASSERT(ipointer_in == B_TRUE); \
974 if (ipointer->ip_mnext != (xfs_inode_t *)ipointer) { \
975 ip = ipointer->ip_mnext; \
976 ip->i_mprev = ipointer->ip_mprev; \
977 ipointer->ip_mprev->i_mnext = ip; \
978 if (mp->m_inodes == (xfs_inode_t *)ipointer) { \
979 mp->m_inodes = ip; \
980 } \
981 } else { \
982 ASSERT(mp->m_inodes == (xfs_inode_t *)ipointer); \
983 mp->m_inodes = NULL; \
984 ip = NULL; \
985 } \
986 IPOINTER_CLR; \
987 }
988
989#define XFS_PREEMPT_MASK 0x7f
990
991 if (bypassed)
992 *bypassed = 0;
993 if (XFS_MTOVFS(mp)->vfs_flag & VFS_RDONLY)
994 return 0;
995 error = 0;
996 last_error = 0;
997 preempt = 0;
998
999 /* Allocate a reference marker */
1000 ipointer = (xfs_iptr_t *)kmem_zalloc(sizeof(xfs_iptr_t), KM_SLEEP);
1001
1002 fflag = XFS_B_ASYNC; /* default is don't wait */
Nathan Scottee348072005-11-02 10:32:38 +11001003 if (flags & (SYNC_BDFLUSH | SYNC_DELWRI))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 fflag = XFS_B_DELWRI;
1005 if (flags & SYNC_WAIT)
1006 fflag = 0; /* synchronous overrides all */
1007
1008 base_lock_flags = XFS_ILOCK_SHARED;
1009 if (flags & (SYNC_DELWRI | SYNC_CLOSE)) {
1010 /*
1011 * We need the I/O lock if we're going to call any of
1012 * the flush/inval routines.
1013 */
1014 base_lock_flags |= XFS_IOLOCK_SHARED;
1015 }
1016
1017 XFS_MOUNT_ILOCK(mp);
1018
1019 ip = mp->m_inodes;
1020
1021 mount_locked = B_TRUE;
1022 vnode_refed = B_FALSE;
1023
1024 IPOINTER_CLR;
1025
1026 do {
1027 ASSERT(ipointer_in == B_FALSE);
1028 ASSERT(vnode_refed == B_FALSE);
1029
1030 lock_flags = base_lock_flags;
1031
1032 /*
1033 * There were no inodes in the list, just break out
1034 * of the loop.
1035 */
1036 if (ip == NULL) {
1037 break;
1038 }
1039
1040 /*
1041 * We found another sync thread marker - skip it
1042 */
1043 if (ip->i_mount == NULL) {
1044 ip = ip->i_mnext;
1045 continue;
1046 }
1047
1048 vp = XFS_ITOV_NULL(ip);
1049
1050 /*
1051 * If the vnode is gone then this is being torn down,
1052 * call reclaim if it is flushed, else let regular flush
1053 * code deal with it later in the loop.
1054 */
1055
1056 if (vp == NULL) {
1057 /* Skip ones already in reclaim */
1058 if (ip->i_flags & XFS_IRECLAIM) {
1059 ip = ip->i_mnext;
1060 continue;
1061 }
1062 if (xfs_ilock_nowait(ip, XFS_ILOCK_EXCL) == 0) {
1063 ip = ip->i_mnext;
1064 } else if ((xfs_ipincount(ip) == 0) &&
1065 xfs_iflock_nowait(ip)) {
1066 IPOINTER_INSERT(ip, mp);
1067
1068 xfs_finish_reclaim(ip, 1,
1069 XFS_IFLUSH_DELWRI_ELSE_ASYNC);
1070
1071 XFS_MOUNT_ILOCK(mp);
1072 mount_locked = B_TRUE;
1073 IPOINTER_REMOVE(ip, mp);
1074 } else {
1075 xfs_iunlock(ip, XFS_ILOCK_EXCL);
1076 ip = ip->i_mnext;
1077 }
1078 continue;
1079 }
1080
1081 if (VN_BAD(vp)) {
1082 ip = ip->i_mnext;
1083 continue;
1084 }
1085
1086 if (XFS_FORCED_SHUTDOWN(mp) && !(flags & SYNC_CLOSE)) {
1087 XFS_MOUNT_IUNLOCK(mp);
1088 kmem_free(ipointer, sizeof(xfs_iptr_t));
1089 return 0;
1090 }
1091
1092 /*
1093 * If this is just vfs_sync() or pflushd() calling
1094 * then we can skip inodes for which it looks like
1095 * there is nothing to do. Since we don't have the
Nathan Scottc41564b2006-03-29 08:55:14 +10001096 * inode locked this is racy, but these are periodic
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097 * calls so it doesn't matter. For the others we want
1098 * to know for sure, so we at least try to lock them.
1099 */
1100 if (flags & SYNC_BDFLUSH) {
1101 if (((ip->i_itemp == NULL) ||
1102 !(ip->i_itemp->ili_format.ilf_fields &
1103 XFS_ILOG_ALL)) &&
1104 (ip->i_update_core == 0)) {
1105 ip = ip->i_mnext;
1106 continue;
1107 }
1108 }
1109
1110 /*
1111 * Try to lock without sleeping. We're out of order with
1112 * the inode list lock here, so if we fail we need to drop
1113 * the mount lock and try again. If we're called from
1114 * bdflush() here, then don't bother.
1115 *
1116 * The inode lock here actually coordinates with the
1117 * almost spurious inode lock in xfs_ireclaim() to prevent
1118 * the vnode we handle here without a reference from
1119 * being freed while we reference it. If we lock the inode
1120 * while it's on the mount list here, then the spurious inode
1121 * lock in xfs_ireclaim() after the inode is pulled from
1122 * the mount list will sleep until we release it here.
1123 * This keeps the vnode from being freed while we reference
Christoph Hellwigcdb62682005-09-02 16:24:19 +10001124 * it.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125 */
1126 if (xfs_ilock_nowait(ip, lock_flags) == 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127 if ((flags & SYNC_BDFLUSH) || (vp == NULL)) {
1128 ip = ip->i_mnext;
1129 continue;
1130 }
1131
Christoph Hellwigcdb62682005-09-02 16:24:19 +10001132 vp = vn_grab(vp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 if (vp == NULL) {
Christoph Hellwigcdb62682005-09-02 16:24:19 +10001134 ip = ip->i_mnext;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135 continue;
1136 }
1137
Christoph Hellwigcdb62682005-09-02 16:24:19 +10001138 IPOINTER_INSERT(ip, mp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139 xfs_ilock(ip, lock_flags);
1140
1141 ASSERT(vp == XFS_ITOV(ip));
1142 ASSERT(ip->i_mount == mp);
1143
1144 vnode_refed = B_TRUE;
1145 }
1146
1147 /* From here on in the loop we may have a marker record
1148 * in the inode list.
1149 */
1150
1151 if ((flags & SYNC_CLOSE) && (vp != NULL)) {
1152 /*
1153 * This is the shutdown case. We just need to
1154 * flush and invalidate all the pages associated
1155 * with the inode. Drop the inode lock since
1156 * we can't hold it across calls to the buffer
1157 * cache.
1158 *
1159 * We don't set the VREMAPPING bit in the vnode
1160 * here, because we don't hold the vnode lock
1161 * exclusively. It doesn't really matter, though,
1162 * because we only come here when we're shutting
1163 * down anyway.
1164 */
1165 xfs_iunlock(ip, XFS_ILOCK_SHARED);
1166
1167 if (XFS_FORCED_SHUTDOWN(mp)) {
1168 VOP_TOSS_PAGES(vp, 0, -1, FI_REMAPF);
1169 } else {
1170 VOP_FLUSHINVAL_PAGES(vp, 0, -1, FI_REMAPF);
1171 }
1172
1173 xfs_ilock(ip, XFS_ILOCK_SHARED);
1174
1175 } else if ((flags & SYNC_DELWRI) && (vp != NULL)) {
1176 if (VN_DIRTY(vp)) {
1177 /* We need to have dropped the lock here,
1178 * so insert a marker if we have not already
1179 * done so.
1180 */
1181 if (mount_locked) {
1182 IPOINTER_INSERT(ip, mp);
1183 }
1184
1185 /*
1186 * Drop the inode lock since we can't hold it
1187 * across calls to the buffer cache.
1188 */
1189 xfs_iunlock(ip, XFS_ILOCK_SHARED);
1190 VOP_FLUSH_PAGES(vp, (xfs_off_t)0, -1,
1191 fflag, FI_NONE, error);
1192 xfs_ilock(ip, XFS_ILOCK_SHARED);
1193 }
1194
1195 }
1196
1197 if (flags & SYNC_BDFLUSH) {
1198 if ((flags & SYNC_ATTR) &&
1199 ((ip->i_update_core) ||
1200 ((ip->i_itemp != NULL) &&
1201 (ip->i_itemp->ili_format.ilf_fields != 0)))) {
1202
1203 /* Insert marker and drop lock if not already
1204 * done.
1205 */
1206 if (mount_locked) {
1207 IPOINTER_INSERT(ip, mp);
1208 }
1209
1210 /*
1211 * We don't want the periodic flushing of the
1212 * inodes by vfs_sync() to interfere with
1213 * I/O to the file, especially read I/O
1214 * where it is only the access time stamp
1215 * that is being flushed out. To prevent
1216 * long periods where we have both inode
1217 * locks held shared here while reading the
1218 * inode's buffer in from disk, we drop the
1219 * inode lock while reading in the inode
1220 * buffer. We have to release the buffer
1221 * and reacquire the inode lock so that they
1222 * are acquired in the proper order (inode
1223 * locks first). The buffer will go at the
1224 * end of the lru chain, though, so we can
1225 * expect it to still be there when we go
1226 * for it again in xfs_iflush().
1227 */
1228 if ((xfs_ipincount(ip) == 0) &&
1229 xfs_iflock_nowait(ip)) {
1230
1231 xfs_ifunlock(ip);
1232 xfs_iunlock(ip, XFS_ILOCK_SHARED);
1233
1234 error = xfs_itobp(mp, NULL, ip,
Nathan Scottb12dd342006-03-17 17:26:04 +11001235 &dip, &bp, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236 if (!error) {
1237 xfs_buf_relse(bp);
1238 } else {
1239 /* Bailing out, remove the
1240 * marker and free it.
1241 */
1242 XFS_MOUNT_ILOCK(mp);
1243
1244 IPOINTER_REMOVE(ip, mp);
1245
1246 XFS_MOUNT_IUNLOCK(mp);
1247
1248 ASSERT(!(lock_flags &
1249 XFS_IOLOCK_SHARED));
1250
1251 kmem_free(ipointer,
1252 sizeof(xfs_iptr_t));
1253 return (0);
1254 }
1255
1256 /*
1257 * Since we dropped the inode lock,
1258 * the inode may have been reclaimed.
1259 * Therefore, we reacquire the mount
1260 * lock and check to see if we were the
1261 * inode reclaimed. If this happened
1262 * then the ipointer marker will no
1263 * longer point back at us. In this
1264 * case, move ip along to the inode
1265 * after the marker, remove the marker
1266 * and continue.
1267 */
1268 XFS_MOUNT_ILOCK(mp);
1269 mount_locked = B_TRUE;
1270
1271 if (ip != ipointer->ip_mprev) {
1272 IPOINTER_REMOVE(ip, mp);
1273
1274 ASSERT(!vnode_refed);
1275 ASSERT(!(lock_flags &
1276 XFS_IOLOCK_SHARED));
1277 continue;
1278 }
1279
1280 ASSERT(ip->i_mount == mp);
1281
1282 if (xfs_ilock_nowait(ip,
1283 XFS_ILOCK_SHARED) == 0) {
1284 ASSERT(ip->i_mount == mp);
1285 /*
1286 * We failed to reacquire
1287 * the inode lock without
1288 * sleeping, so just skip
1289 * the inode for now. We
1290 * clear the ILOCK bit from
1291 * the lock_flags so that we
1292 * won't try to drop a lock
1293 * we don't hold below.
1294 */
1295 lock_flags &= ~XFS_ILOCK_SHARED;
1296 IPOINTER_REMOVE(ip_next, mp);
1297 } else if ((xfs_ipincount(ip) == 0) &&
1298 xfs_iflock_nowait(ip)) {
1299 ASSERT(ip->i_mount == mp);
1300 /*
1301 * Since this is vfs_sync()
1302 * calling we only flush the
1303 * inode out if we can lock
1304 * it without sleeping and
1305 * it is not pinned. Drop
1306 * the mount lock here so
1307 * that we don't hold it for
1308 * too long. We already have
1309 * a marker in the list here.
1310 */
1311 XFS_MOUNT_IUNLOCK(mp);
1312 mount_locked = B_FALSE;
1313 error = xfs_iflush(ip,
1314 XFS_IFLUSH_DELWRI);
1315 } else {
1316 ASSERT(ip->i_mount == mp);
1317 IPOINTER_REMOVE(ip_next, mp);
1318 }
1319 }
1320
1321 }
1322
1323 } else {
1324 if ((flags & SYNC_ATTR) &&
1325 ((ip->i_update_core) ||
1326 ((ip->i_itemp != NULL) &&
1327 (ip->i_itemp->ili_format.ilf_fields != 0)))) {
1328 if (mount_locked) {
1329 IPOINTER_INSERT(ip, mp);
1330 }
1331
1332 if (flags & SYNC_WAIT) {
1333 xfs_iflock(ip);
1334 error = xfs_iflush(ip,
1335 XFS_IFLUSH_SYNC);
1336 } else {
1337 /*
1338 * If we can't acquire the flush
1339 * lock, then the inode is already
1340 * being flushed so don't bother
1341 * waiting. If we can lock it then
1342 * do a delwri flush so we can
1343 * combine multiple inode flushes
1344 * in each disk write.
1345 */
1346 if (xfs_iflock_nowait(ip)) {
1347 error = xfs_iflush(ip,
1348 XFS_IFLUSH_DELWRI);
1349 }
1350 else if (bypassed)
1351 (*bypassed)++;
1352 }
1353 }
1354 }
1355
1356 if (lock_flags != 0) {
1357 xfs_iunlock(ip, lock_flags);
1358 }
1359
1360 if (vnode_refed) {
1361 /*
1362 * If we had to take a reference on the vnode
1363 * above, then wait until after we've unlocked
1364 * the inode to release the reference. This is
1365 * because we can be already holding the inode
1366 * lock when VN_RELE() calls xfs_inactive().
1367 *
1368 * Make sure to drop the mount lock before calling
1369 * VN_RELE() so that we don't trip over ourselves if
1370 * we have to go for the mount lock again in the
1371 * inactive code.
1372 */
1373 if (mount_locked) {
1374 IPOINTER_INSERT(ip, mp);
1375 }
1376
1377 VN_RELE(vp);
1378
1379 vnode_refed = B_FALSE;
1380 }
1381
1382 if (error) {
1383 last_error = error;
1384 }
1385
1386 /*
1387 * bail out if the filesystem is corrupted.
1388 */
1389 if (error == EFSCORRUPTED) {
1390 if (!mount_locked) {
1391 XFS_MOUNT_ILOCK(mp);
1392 IPOINTER_REMOVE(ip, mp);
1393 }
1394 XFS_MOUNT_IUNLOCK(mp);
1395 ASSERT(ipointer_in == B_FALSE);
1396 kmem_free(ipointer, sizeof(xfs_iptr_t));
1397 return XFS_ERROR(error);
1398 }
1399
1400 /* Let other threads have a chance at the mount lock
1401 * if we have looped many times without dropping the
1402 * lock.
1403 */
1404 if ((++preempt & XFS_PREEMPT_MASK) == 0) {
1405 if (mount_locked) {
1406 IPOINTER_INSERT(ip, mp);
1407 }
1408 }
1409
1410 if (mount_locked == B_FALSE) {
1411 XFS_MOUNT_ILOCK(mp);
1412 mount_locked = B_TRUE;
1413 IPOINTER_REMOVE(ip, mp);
1414 continue;
1415 }
1416
1417 ASSERT(ipointer_in == B_FALSE);
1418 ip = ip->i_mnext;
1419
1420 } while (ip != mp->m_inodes);
1421
1422 XFS_MOUNT_IUNLOCK(mp);
1423
1424 ASSERT(ipointer_in == B_FALSE);
1425
1426 kmem_free(ipointer, sizeof(xfs_iptr_t));
1427 return XFS_ERROR(last_error);
1428}
1429
1430/*
1431 * xfs sync routine for internal use
1432 *
1433 * This routine supports all of the flags defined for the generic VFS_SYNC
1434 * interface as explained above under xfs_sync. In the interests of not
Nathan Scottc41564b2006-03-29 08:55:14 +10001435 * changing interfaces within the 6.5 family, additional internally-
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436 * required functions are specified within a separate xflags parameter,
1437 * only available by calling this routine.
1438 *
1439 */
1440int
1441xfs_syncsub(
1442 xfs_mount_t *mp,
1443 int flags,
1444 int xflags,
1445 int *bypassed)
1446{
1447 int error = 0;
1448 int last_error = 0;
1449 uint log_flags = XFS_LOG_FORCE;
1450 xfs_buf_t *bp;
1451 xfs_buf_log_item_t *bip;
1452
1453 /*
1454 * Sync out the log. This ensures that the log is periodically
1455 * flushed even if there is not enough activity to fill it up.
1456 */
1457 if (flags & SYNC_WAIT)
1458 log_flags |= XFS_LOG_SYNC;
1459
1460 xfs_log_force(mp, (xfs_lsn_t)0, log_flags);
1461
1462 if (flags & (SYNC_ATTR|SYNC_DELWRI)) {
1463 if (flags & SYNC_BDFLUSH)
1464 xfs_finish_reclaim_all(mp, 1);
1465 else
1466 error = xfs_sync_inodes(mp, flags, xflags, bypassed);
1467 }
1468
1469 /*
1470 * Flushing out dirty data above probably generated more
1471 * log activity, so if this isn't vfs_sync() then flush
1472 * the log again.
1473 */
1474 if (flags & SYNC_DELWRI) {
1475 xfs_log_force(mp, (xfs_lsn_t)0, log_flags);
1476 }
1477
1478 if (flags & SYNC_FSDATA) {
1479 /*
1480 * If this is vfs_sync() then only sync the superblock
1481 * if we can lock it without sleeping and it is not pinned.
1482 */
1483 if (flags & SYNC_BDFLUSH) {
1484 bp = xfs_getsb(mp, XFS_BUF_TRYLOCK);
1485 if (bp != NULL) {
1486 bip = XFS_BUF_FSPRIVATE(bp,xfs_buf_log_item_t*);
1487 if ((bip != NULL) &&
1488 xfs_buf_item_dirty(bip)) {
1489 if (!(XFS_BUF_ISPINNED(bp))) {
1490 XFS_BUF_ASYNC(bp);
1491 error = xfs_bwrite(mp, bp);
1492 } else {
1493 xfs_buf_relse(bp);
1494 }
1495 } else {
1496 xfs_buf_relse(bp);
1497 }
1498 }
1499 } else {
1500 bp = xfs_getsb(mp, 0);
1501 /*
1502 * If the buffer is pinned then push on the log so
1503 * we won't get stuck waiting in the write for
1504 * someone, maybe ourselves, to flush the log.
1505 * Even though we just pushed the log above, we
1506 * did not have the superblock buffer locked at
1507 * that point so it can become pinned in between
1508 * there and here.
1509 */
1510 if (XFS_BUF_ISPINNED(bp))
1511 xfs_log_force(mp, (xfs_lsn_t)0, XFS_LOG_FORCE);
1512 if (flags & SYNC_WAIT)
1513 XFS_BUF_UNASYNC(bp);
1514 else
1515 XFS_BUF_ASYNC(bp);
1516 error = xfs_bwrite(mp, bp);
1517 }
1518 if (error) {
1519 last_error = error;
1520 }
1521 }
1522
1523 /*
1524 * If this is the periodic sync, then kick some entries out of
1525 * the reference cache. This ensures that idle entries are
1526 * eventually kicked out of the cache.
1527 */
1528 if (flags & SYNC_REFCACHE) {
Nathan Scottcde410a2005-09-05 11:47:01 +10001529 if (flags & SYNC_WAIT)
1530 xfs_refcache_purge_mp(mp);
1531 else
1532 xfs_refcache_purge_some(mp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533 }
1534
1535 /*
1536 * Now check to see if the log needs a "dummy" transaction.
1537 */
1538
1539 if (!(flags & SYNC_REMOUNT) && xfs_log_need_covered(mp)) {
1540 xfs_trans_t *tp;
1541 xfs_inode_t *ip;
1542
1543 /*
1544 * Put a dummy transaction in the log to tell
1545 * recovery that all others are OK.
1546 */
1547 tp = xfs_trans_alloc(mp, XFS_TRANS_DUMMY1);
1548 if ((error = xfs_trans_reserve(tp, 0,
1549 XFS_ICHANGE_LOG_RES(mp),
1550 0, 0, 0))) {
1551 xfs_trans_cancel(tp, 0);
1552 return error;
1553 }
1554
1555 ip = mp->m_rootip;
1556 xfs_ilock(ip, XFS_ILOCK_EXCL);
1557
1558 xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL);
1559 xfs_trans_ihold(tp, ip);
1560 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
1561 error = xfs_trans_commit(tp, 0, NULL);
1562 xfs_iunlock(ip, XFS_ILOCK_EXCL);
1563 xfs_log_force(mp, (xfs_lsn_t)0, log_flags);
1564 }
1565
1566 /*
1567 * When shutting down, we need to insure that the AIL is pushed
1568 * to disk or the filesystem can appear corrupt from the PROM.
1569 */
1570 if ((flags & (SYNC_CLOSE|SYNC_WAIT)) == (SYNC_CLOSE|SYNC_WAIT)) {
1571 XFS_bflush(mp->m_ddev_targp);
1572 if (mp->m_rtdev_targp) {
1573 XFS_bflush(mp->m_rtdev_targp);
1574 }
1575 }
1576
1577 return XFS_ERROR(last_error);
1578}
1579
1580/*
1581 * xfs_vget - called by DMAPI and NFSD to get vnode from file handle
1582 */
1583STATIC int
1584xfs_vget(
1585 bhv_desc_t *bdp,
1586 vnode_t **vpp,
1587 fid_t *fidp)
1588{
1589 xfs_mount_t *mp = XFS_BHVTOM(bdp);
1590 xfs_fid_t *xfid = (struct xfs_fid *)fidp;
1591 xfs_inode_t *ip;
1592 int error;
1593 xfs_ino_t ino;
1594 unsigned int igen;
1595
1596 /*
1597 * Invalid. Since handles can be created in user space and passed in
1598 * via gethandle(), this is not cause for a panic.
1599 */
1600 if (xfid->xfs_fid_len != sizeof(*xfid) - sizeof(xfid->xfs_fid_len))
1601 return XFS_ERROR(EINVAL);
1602
1603 ino = xfid->xfs_fid_ino;
1604 igen = xfid->xfs_fid_gen;
1605
1606 /*
1607 * NFS can sometimes send requests for ino 0. Fail them gracefully.
1608 */
1609 if (ino == 0)
1610 return XFS_ERROR(ESTALE);
1611
1612 error = xfs_iget(mp, NULL, ino, 0, XFS_ILOCK_SHARED, &ip, 0);
1613 if (error) {
1614 *vpp = NULL;
1615 return error;
1616 }
1617
1618 if (ip == NULL) {
1619 *vpp = NULL;
1620 return XFS_ERROR(EIO);
1621 }
1622
1623 if (ip->i_d.di_mode == 0 || ip->i_d.di_gen != igen) {
1624 xfs_iput_new(ip, XFS_ILOCK_SHARED);
1625 *vpp = NULL;
1626 return XFS_ERROR(ENOENT);
1627 }
1628
1629 *vpp = XFS_ITOV(ip);
1630 xfs_iunlock(ip, XFS_ILOCK_SHARED);
1631 return 0;
1632}
1633
1634
1635#define MNTOPT_LOGBUFS "logbufs" /* number of XFS log buffers */
1636#define MNTOPT_LOGBSIZE "logbsize" /* size of XFS log buffers */
1637#define MNTOPT_LOGDEV "logdev" /* log device */
1638#define MNTOPT_RTDEV "rtdev" /* realtime I/O device */
1639#define MNTOPT_BIOSIZE "biosize" /* log2 of preferred buffered io size */
1640#define MNTOPT_WSYNC "wsync" /* safe-mode nfs compatible mount */
1641#define MNTOPT_INO64 "ino64" /* force inodes into 64-bit range */
1642#define MNTOPT_NOALIGN "noalign" /* turn off stripe alignment */
1643#define MNTOPT_SWALLOC "swalloc" /* turn on stripe width allocation */
1644#define MNTOPT_SUNIT "sunit" /* data volume stripe unit */
1645#define MNTOPT_SWIDTH "swidth" /* data volume stripe width */
1646#define MNTOPT_NOUUID "nouuid" /* ignore filesystem UUID */
1647#define MNTOPT_MTPT "mtpt" /* filesystem mount point */
Nathan Scotte69a3332005-09-02 16:42:26 +10001648#define MNTOPT_GRPID "grpid" /* group-ID from parent directory */
1649#define MNTOPT_NOGRPID "nogrpid" /* group-ID from current process */
1650#define MNTOPT_BSDGROUPS "bsdgroups" /* group-ID from parent directory */
1651#define MNTOPT_SYSVGROUPS "sysvgroups" /* group-ID from current process */
Nathan Scott1f443ad2005-05-05 13:28:29 -07001652#define MNTOPT_ALLOCSIZE "allocsize" /* preferred allocation size */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653#define MNTOPT_IHASHSIZE "ihashsize" /* size of inode hash table */
1654#define MNTOPT_NORECOVERY "norecovery" /* don't run XFS recovery */
Christoph Hellwigf538d4d2005-11-02 10:26:59 +11001655#define MNTOPT_BARRIER "barrier" /* use writer barriers for log write and
Nathan Scottd8cc8902005-11-02 10:34:53 +11001656 * unwritten extent conversion */
Christoph Hellwig4ef19dd2006-01-11 15:27:18 +11001657#define MNTOPT_NOBARRIER "nobarrier" /* .. disable */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658#define MNTOPT_OSYNCISOSYNC "osyncisosync" /* o_sync is REALLY o_sync */
1659#define MNTOPT_64BITINODE "inode64" /* inodes can be allocated anywhere */
1660#define MNTOPT_IKEEP "ikeep" /* do not free empty inode clusters */
1661#define MNTOPT_NOIKEEP "noikeep" /* free empty inode clusters */
David Chinnere8c8b3a2005-11-02 10:33:05 +11001662#define MNTOPT_LARGEIO "largeio" /* report large I/O sizes in stat() */
1663#define MNTOPT_NOLARGEIO "nolargeio" /* do not report large I/O sizes
1664 * in stat(). */
Nathan Scottd8cc8902005-11-02 10:34:53 +11001665#define MNTOPT_ATTR2 "attr2" /* do use attr2 attribute format */
1666#define MNTOPT_NOATTR2 "noattr2" /* do not use attr2 attribute format */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667
Nathan Scott1f443ad2005-05-05 13:28:29 -07001668STATIC unsigned long
1669suffix_strtoul(const char *cp, char **endp, unsigned int base)
1670{
1671 int last, shift_left_factor = 0;
1672 char *value = (char *)cp;
1673
1674 last = strlen(value) - 1;
1675 if (value[last] == 'K' || value[last] == 'k') {
1676 shift_left_factor = 10;
1677 value[last] = '\0';
1678 }
1679 if (value[last] == 'M' || value[last] == 'm') {
1680 shift_left_factor = 20;
1681 value[last] = '\0';
1682 }
1683 if (value[last] == 'G' || value[last] == 'g') {
1684 shift_left_factor = 30;
1685 value[last] = '\0';
1686 }
1687
1688 return simple_strtoul(cp, endp, base) << shift_left_factor;
1689}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690
Christoph Hellwigba0f32d2005-06-21 15:36:52 +10001691STATIC int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692xfs_parseargs(
1693 struct bhv_desc *bhv,
1694 char *options,
1695 struct xfs_mount_args *args,
1696 int update)
1697{
1698 struct vfs *vfsp = bhvtovfs(bhv);
1699 char *this_char, *value, *eov;
1700 int dsunit, dswidth, vol_dsunit, vol_dswidth;
1701 int iosize;
1702
Nathan Scotte15f1952006-03-22 12:47:52 +11001703 args->flags |= XFSMNT_IDELETE;
Nathan Scott3bbcc8e2006-03-31 13:04:56 +10001704 args->flags |= XFSMNT_BARRIER;
1705 args->flags2 |= XFSMNT2_COMPAT_IOSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706
1707 if (!options)
Nathan Scott05db2182005-11-04 09:49:07 +11001708 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709
1710 iosize = dsunit = dswidth = vol_dsunit = vol_dswidth = 0;
1711
1712 while ((this_char = strsep(&options, ",")) != NULL) {
1713 if (!*this_char)
1714 continue;
1715 if ((value = strchr(this_char, '=')) != NULL)
1716 *value++ = 0;
1717
1718 if (!strcmp(this_char, MNTOPT_LOGBUFS)) {
1719 if (!value || !*value) {
1720 printk("XFS: %s option requires an argument\n",
Nathan Scott1f443ad2005-05-05 13:28:29 -07001721 this_char);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722 return EINVAL;
1723 }
1724 args->logbufs = simple_strtoul(value, &eov, 10);
1725 } else if (!strcmp(this_char, MNTOPT_LOGBSIZE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726 if (!value || !*value) {
1727 printk("XFS: %s option requires an argument\n",
Nathan Scott1f443ad2005-05-05 13:28:29 -07001728 this_char);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729 return EINVAL;
1730 }
Nathan Scott1f443ad2005-05-05 13:28:29 -07001731 args->logbufsize = suffix_strtoul(value, &eov, 10);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732 } else if (!strcmp(this_char, MNTOPT_LOGDEV)) {
1733 if (!value || !*value) {
1734 printk("XFS: %s option requires an argument\n",
Nathan Scott1f443ad2005-05-05 13:28:29 -07001735 this_char);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736 return EINVAL;
1737 }
1738 strncpy(args->logname, value, MAXNAMELEN);
1739 } else if (!strcmp(this_char, MNTOPT_MTPT)) {
1740 if (!value || !*value) {
1741 printk("XFS: %s option requires an argument\n",
Nathan Scott1f443ad2005-05-05 13:28:29 -07001742 this_char);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743 return EINVAL;
1744 }
1745 strncpy(args->mtpt, value, MAXNAMELEN);
1746 } else if (!strcmp(this_char, MNTOPT_RTDEV)) {
1747 if (!value || !*value) {
1748 printk("XFS: %s option requires an argument\n",
Nathan Scott1f443ad2005-05-05 13:28:29 -07001749 this_char);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750 return EINVAL;
1751 }
1752 strncpy(args->rtname, value, MAXNAMELEN);
1753 } else if (!strcmp(this_char, MNTOPT_BIOSIZE)) {
1754 if (!value || !*value) {
1755 printk("XFS: %s option requires an argument\n",
Nathan Scott1f443ad2005-05-05 13:28:29 -07001756 this_char);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757 return EINVAL;
1758 }
1759 iosize = simple_strtoul(value, &eov, 10);
1760 args->flags |= XFSMNT_IOSIZE;
1761 args->iosizelog = (uint8_t) iosize;
Nathan Scott1f443ad2005-05-05 13:28:29 -07001762 } else if (!strcmp(this_char, MNTOPT_ALLOCSIZE)) {
1763 if (!value || !*value) {
1764 printk("XFS: %s option requires an argument\n",
1765 this_char);
1766 return EINVAL;
1767 }
1768 iosize = suffix_strtoul(value, &eov, 10);
1769 args->flags |= XFSMNT_IOSIZE;
1770 args->iosizelog = ffs(iosize) - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771 } else if (!strcmp(this_char, MNTOPT_IHASHSIZE)) {
1772 if (!value || !*value) {
1773 printk("XFS: %s option requires an argument\n",
Nathan Scott1f443ad2005-05-05 13:28:29 -07001774 this_char);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775 return EINVAL;
1776 }
1777 args->flags |= XFSMNT_IHASHSIZE;
1778 args->ihashsize = simple_strtoul(value, &eov, 10);
Nathan Scotte69a3332005-09-02 16:42:26 +10001779 } else if (!strcmp(this_char, MNTOPT_GRPID) ||
1780 !strcmp(this_char, MNTOPT_BSDGROUPS)) {
1781 vfsp->vfs_flag |= VFS_GRPID;
1782 } else if (!strcmp(this_char, MNTOPT_NOGRPID) ||
1783 !strcmp(this_char, MNTOPT_SYSVGROUPS)) {
1784 vfsp->vfs_flag &= ~VFS_GRPID;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785 } else if (!strcmp(this_char, MNTOPT_WSYNC)) {
1786 args->flags |= XFSMNT_WSYNC;
1787 } else if (!strcmp(this_char, MNTOPT_OSYNCISOSYNC)) {
1788 args->flags |= XFSMNT_OSYNCISOSYNC;
1789 } else if (!strcmp(this_char, MNTOPT_NORECOVERY)) {
1790 args->flags |= XFSMNT_NORECOVERY;
1791 } else if (!strcmp(this_char, MNTOPT_INO64)) {
1792 args->flags |= XFSMNT_INO64;
1793#if !XFS_BIG_INUMS
1794 printk("XFS: %s option not allowed on this system\n",
Nathan Scott1f443ad2005-05-05 13:28:29 -07001795 this_char);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796 return EINVAL;
1797#endif
1798 } else if (!strcmp(this_char, MNTOPT_NOALIGN)) {
1799 args->flags |= XFSMNT_NOALIGN;
1800 } else if (!strcmp(this_char, MNTOPT_SWALLOC)) {
1801 args->flags |= XFSMNT_SWALLOC;
1802 } else if (!strcmp(this_char, MNTOPT_SUNIT)) {
1803 if (!value || !*value) {
1804 printk("XFS: %s option requires an argument\n",
Nathan Scott1f443ad2005-05-05 13:28:29 -07001805 this_char);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806 return EINVAL;
1807 }
1808 dsunit = simple_strtoul(value, &eov, 10);
1809 } else if (!strcmp(this_char, MNTOPT_SWIDTH)) {
1810 if (!value || !*value) {
1811 printk("XFS: %s option requires an argument\n",
Nathan Scott1f443ad2005-05-05 13:28:29 -07001812 this_char);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813 return EINVAL;
1814 }
1815 dswidth = simple_strtoul(value, &eov, 10);
1816 } else if (!strcmp(this_char, MNTOPT_64BITINODE)) {
1817 args->flags &= ~XFSMNT_32BITINODES;
1818#if !XFS_BIG_INUMS
1819 printk("XFS: %s option not allowed on this system\n",
Nathan Scott1f443ad2005-05-05 13:28:29 -07001820 this_char);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821 return EINVAL;
1822#endif
1823 } else if (!strcmp(this_char, MNTOPT_NOUUID)) {
1824 args->flags |= XFSMNT_NOUUID;
Christoph Hellwigf538d4d2005-11-02 10:26:59 +11001825 } else if (!strcmp(this_char, MNTOPT_BARRIER)) {
1826 args->flags |= XFSMNT_BARRIER;
Christoph Hellwig4ef19dd2006-01-11 15:27:18 +11001827 } else if (!strcmp(this_char, MNTOPT_NOBARRIER)) {
1828 args->flags &= ~XFSMNT_BARRIER;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829 } else if (!strcmp(this_char, MNTOPT_IKEEP)) {
1830 args->flags &= ~XFSMNT_IDELETE;
1831 } else if (!strcmp(this_char, MNTOPT_NOIKEEP)) {
1832 args->flags |= XFSMNT_IDELETE;
David Chinnere8c8b3a2005-11-02 10:33:05 +11001833 } else if (!strcmp(this_char, MNTOPT_LARGEIO)) {
Nathan Scotte718eeb42005-11-02 15:09:22 +11001834 args->flags2 &= ~XFSMNT2_COMPAT_IOSIZE;
David Chinnere8c8b3a2005-11-02 10:33:05 +11001835 } else if (!strcmp(this_char, MNTOPT_NOLARGEIO)) {
Nathan Scotte718eeb42005-11-02 15:09:22 +11001836 args->flags2 |= XFSMNT2_COMPAT_IOSIZE;
Nathan Scottd8cc8902005-11-02 10:34:53 +11001837 } else if (!strcmp(this_char, MNTOPT_ATTR2)) {
Nathan Scott13059ff2006-01-11 15:32:01 +11001838 args->flags |= XFSMNT_ATTR2;
Nathan Scottd8cc8902005-11-02 10:34:53 +11001839 } else if (!strcmp(this_char, MNTOPT_NOATTR2)) {
Nathan Scott13059ff2006-01-11 15:32:01 +11001840 args->flags &= ~XFSMNT_ATTR2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841 } else if (!strcmp(this_char, "osyncisdsync")) {
1842 /* no-op, this is now the default */
1843printk("XFS: osyncisdsync is now the default, option is deprecated.\n");
1844 } else if (!strcmp(this_char, "irixsgid")) {
1845printk("XFS: irixsgid is now a sysctl(2) variable, option is deprecated.\n");
1846 } else {
1847 printk("XFS: unknown mount option [%s].\n", this_char);
1848 return EINVAL;
1849 }
1850 }
1851
1852 if (args->flags & XFSMNT_NORECOVERY) {
1853 if ((vfsp->vfs_flag & VFS_RDONLY) == 0) {
1854 printk("XFS: no-recovery mounts must be read-only.\n");
1855 return EINVAL;
1856 }
1857 }
1858
1859 if ((args->flags & XFSMNT_NOALIGN) && (dsunit || dswidth)) {
1860 printk(
1861 "XFS: sunit and swidth options incompatible with the noalign option\n");
1862 return EINVAL;
1863 }
1864
1865 if ((dsunit && !dswidth) || (!dsunit && dswidth)) {
1866 printk("XFS: sunit and swidth must be specified together\n");
1867 return EINVAL;
1868 }
1869
1870 if (dsunit && (dswidth % dsunit != 0)) {
1871 printk(
1872 "XFS: stripe width (%d) must be a multiple of the stripe unit (%d)\n",
1873 dswidth, dsunit);
1874 return EINVAL;
1875 }
1876
1877 if ((args->flags & XFSMNT_NOALIGN) != XFSMNT_NOALIGN) {
1878 if (dsunit) {
1879 args->sunit = dsunit;
1880 args->flags |= XFSMNT_RETERR;
1881 } else {
1882 args->sunit = vol_dsunit;
1883 }
1884 dswidth ? (args->swidth = dswidth) :
1885 (args->swidth = vol_dswidth);
1886 } else {
1887 args->sunit = args->swidth = 0;
1888 }
1889
Nathan Scott05db2182005-11-04 09:49:07 +11001890done:
Nathan Scottc11e2c32005-11-02 15:11:45 +11001891 if (args->flags & XFSMNT_32BITINODES)
1892 vfsp->vfs_flag |= VFS_32BITINODES;
Nathan Scotte718eeb42005-11-02 15:09:22 +11001893 if (args->flags2)
1894 args->flags |= XFSMNT_FLAGS2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895 return 0;
1896}
1897
Christoph Hellwigba0f32d2005-06-21 15:36:52 +10001898STATIC int
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899xfs_showargs(
1900 struct bhv_desc *bhv,
1901 struct seq_file *m)
1902{
1903 static struct proc_xfs_info {
1904 int flag;
1905 char *str;
1906 } xfs_info[] = {
1907 /* the few simple ones we can get from the mount struct */
1908 { XFS_MOUNT_WSYNC, "," MNTOPT_WSYNC },
1909 { XFS_MOUNT_INO64, "," MNTOPT_INO64 },
1910 { XFS_MOUNT_NOALIGN, "," MNTOPT_NOALIGN },
1911 { XFS_MOUNT_SWALLOC, "," MNTOPT_SWALLOC },
1912 { XFS_MOUNT_NOUUID, "," MNTOPT_NOUUID },
1913 { XFS_MOUNT_NORECOVERY, "," MNTOPT_NORECOVERY },
1914 { XFS_MOUNT_OSYNCISOSYNC, "," MNTOPT_OSYNCISOSYNC },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915 { 0, NULL }
1916 };
1917 struct proc_xfs_info *xfs_infop;
1918 struct xfs_mount *mp = XFS_BHVTOM(bhv);
Nathan Scotte69a3332005-09-02 16:42:26 +10001919 struct vfs *vfsp = XFS_MTOVFS(mp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920
1921 for (xfs_infop = xfs_info; xfs_infop->flag; xfs_infop++) {
1922 if (mp->m_flags & xfs_infop->flag)
1923 seq_puts(m, xfs_infop->str);
1924 }
1925
1926 if (mp->m_flags & XFS_MOUNT_IHASHSIZE)
1927 seq_printf(m, "," MNTOPT_IHASHSIZE "=%d", mp->m_ihsize);
1928
1929 if (mp->m_flags & XFS_MOUNT_DFLT_IOSIZE)
Nathan Scottcfcbbbd2005-11-02 15:12:04 +11001930 seq_printf(m, "," MNTOPT_ALLOCSIZE "=%dk",
1931 (int)(1 << mp->m_writeio_log) >> 10);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932
1933 if (mp->m_logbufs > 0)
1934 seq_printf(m, "," MNTOPT_LOGBUFS "=%d", mp->m_logbufs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935 if (mp->m_logbsize > 0)
Nathan Scottcfcbbbd2005-11-02 15:12:04 +11001936 seq_printf(m, "," MNTOPT_LOGBSIZE "=%dk", mp->m_logbsize >> 10);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937
Nathan Scottfc1f8c12005-11-02 11:44:33 +11001938 if (mp->m_logname)
1939 seq_printf(m, "," MNTOPT_LOGDEV "=%s", mp->m_logname);
Nathan Scottfc1f8c12005-11-02 11:44:33 +11001940 if (mp->m_rtname)
1941 seq_printf(m, "," MNTOPT_RTDEV "=%s", mp->m_rtname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942
1943 if (mp->m_dalign > 0)
1944 seq_printf(m, "," MNTOPT_SUNIT "=%d",
1945 (int)XFS_FSB_TO_BB(mp, mp->m_dalign));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946 if (mp->m_swidth > 0)
1947 seq_printf(m, "," MNTOPT_SWIDTH "=%d",
1948 (int)XFS_FSB_TO_BB(mp, mp->m_swidth));
1949
Nathan Scotte15f1952006-03-22 12:47:52 +11001950 if (!(mp->m_flags & XFS_MOUNT_IDELETE))
1951 seq_printf(m, "," MNTOPT_IKEEP);
Nathan Scottfa7e7d72005-11-02 15:00:48 +11001952 if (!(mp->m_flags & XFS_MOUNT_COMPAT_IOSIZE))
1953 seq_printf(m, "," MNTOPT_LARGEIO);
1954
Nathan Scottc11e2c32005-11-02 15:11:45 +11001955 if (!(vfsp->vfs_flag & VFS_32BITINODES))
1956 seq_printf(m, "," MNTOPT_64BITINODE);
Nathan Scotte69a3332005-09-02 16:42:26 +10001957 if (vfsp->vfs_flag & VFS_GRPID)
1958 seq_printf(m, "," MNTOPT_GRPID);
1959
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960 return 0;
1961}
1962
1963STATIC void
1964xfs_freeze(
1965 bhv_desc_t *bdp)
1966{
1967 xfs_mount_t *mp = XFS_BHVTOM(bdp);
1968
1969 while (atomic_read(&mp->m_active_trans) > 0)
1970 delay(100);
1971
1972 /* Push the superblock and write an unmount record */
1973 xfs_log_unmount_write(mp);
1974 xfs_unmountfs_writesb(mp);
Christoph Hellwige13a73f2006-01-11 15:30:08 +11001975 xfs_fs_log_dummy(mp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001976}
1977
1978
1979vfsops_t xfs_vfsops = {
1980 BHV_IDENTITY_INIT(VFS_BHV_XFS,VFS_POSITION_XFS),
1981 .vfs_parseargs = xfs_parseargs,
1982 .vfs_showargs = xfs_showargs,
1983 .vfs_mount = xfs_mount,
1984 .vfs_unmount = xfs_unmount,
1985 .vfs_mntupdate = xfs_mntupdate,
1986 .vfs_root = xfs_root,
1987 .vfs_statvfs = xfs_statvfs,
1988 .vfs_sync = xfs_sync,
1989 .vfs_vget = xfs_vget,
1990 .vfs_dmapiops = (vfs_dmapiops_t)fs_nosys,
1991 .vfs_quotactl = (vfs_quotactl_t)fs_nosys,
1992 .vfs_init_vnode = xfs_initialize_vnode,
1993 .vfs_force_shutdown = xfs_do_force_shutdown,
1994 .vfs_freeze = xfs_freeze,
1995};