2 * Copyright (c) 2000-2005 Silicon Graphics, Inc.
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License as
7 * published by the Free Software Foundation.
9 * 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.
14 * 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
20 #include "xfs_types.h"
24 #include "xfs_trans.h"
28 #include "xfs_dmapi.h"
29 #include "xfs_mount.h"
30 #include "xfs_da_btree.h"
31 #include "xfs_bmap_btree.h"
32 #include "xfs_ialloc_btree.h"
33 #include "xfs_alloc_btree.h"
34 #include "xfs_dir2_sf.h"
35 #include "xfs_attr_sf.h"
36 #include "xfs_dinode.h"
37 #include "xfs_inode.h"
38 #include "xfs_inode_item.h"
39 #include "xfs_btree.h"
40 #include "xfs_alloc.h"
41 #include "xfs_ialloc.h"
42 #include "xfs_quota.h"
43 #include "xfs_error.h"
46 #include "xfs_refcache.h"
47 #include "xfs_buf_item.h"
48 #include "xfs_log_priv.h"
49 #include "xfs_dir2_trace.h"
50 #include "xfs_extfree_item.h"
54 #include "xfs_fsops.h"
56 STATIC int xfs_sync(bhv_desc_t *, int, cred_t *);
61 extern kmem_zone_t *xfs_bmap_free_item_zone;
62 extern kmem_zone_t *xfs_btree_cur_zone;
63 extern kmem_zone_t *xfs_trans_zone;
64 extern kmem_zone_t *xfs_buf_item_zone;
65 extern kmem_zone_t *xfs_dabuf_zone;
66 #ifdef XFS_DABUF_DEBUG
67 extern lock_t xfs_dabuf_global_lock;
68 spinlock_init(&xfs_dabuf_global_lock, "xfsda");
72 * Initialize all of the zone allocators we use.
74 xfs_bmap_free_item_zone = kmem_zone_init(sizeof(xfs_bmap_free_item_t),
75 "xfs_bmap_free_item");
76 xfs_btree_cur_zone = kmem_zone_init(sizeof(xfs_btree_cur_t),
78 xfs_trans_zone = kmem_zone_init(sizeof(xfs_trans_t), "xfs_trans");
80 kmem_zone_init(sizeof(xfs_da_state_t), "xfs_da_state");
81 xfs_dabuf_zone = kmem_zone_init(sizeof(xfs_dabuf_t), "xfs_dabuf");
82 xfs_ifork_zone = kmem_zone_init(sizeof(xfs_ifork_t), "xfs_ifork");
83 xfs_acl_zone_init(xfs_acl_zone, "xfs_acl");
86 * The size of the zone allocated buf log item is the maximum
87 * size possible under XFS. This wastes a little bit of memory,
88 * but it is much faster.
91 kmem_zone_init((sizeof(xfs_buf_log_item_t) +
92 (((XFS_MAX_BLOCKSIZE / XFS_BLI_CHUNK) /
93 NBWORD) * sizeof(int))),
96 kmem_zone_init((sizeof(xfs_efd_log_item_t) +
97 ((XFS_EFD_MAX_FAST_EXTENTS - 1) *
98 sizeof(xfs_extent_t))),
101 kmem_zone_init((sizeof(xfs_efi_log_item_t) +
102 ((XFS_EFI_MAX_FAST_EXTENTS - 1) *
103 sizeof(xfs_extent_t))),
107 * These zones warrant special memory allocator hints
110 kmem_zone_init_flags(sizeof(xfs_inode_t), "xfs_inode",
111 KM_ZONE_HWALIGN | KM_ZONE_RECLAIM |
112 KM_ZONE_SPREAD, NULL);
114 kmem_zone_init_flags(sizeof(xfs_inode_log_item_t), "xfs_ili",
115 KM_ZONE_SPREAD, NULL);
117 kmem_zone_init_flags(sizeof(xfs_chashlist_t), "xfs_chashlist",
118 KM_ZONE_SPREAD, NULL);
121 * Allocate global trace buffers.
123 #ifdef XFS_ALLOC_TRACE
124 xfs_alloc_trace_buf = ktrace_alloc(XFS_ALLOC_TRACE_SIZE, KM_SLEEP);
126 #ifdef XFS_BMAP_TRACE
127 xfs_bmap_trace_buf = ktrace_alloc(XFS_BMAP_TRACE_SIZE, KM_SLEEP);
129 #ifdef XFS_BMBT_TRACE
130 xfs_bmbt_trace_buf = ktrace_alloc(XFS_BMBT_TRACE_SIZE, KM_SLEEP);
132 #ifdef XFS_ATTR_TRACE
133 xfs_attr_trace_buf = ktrace_alloc(XFS_ATTR_TRACE_SIZE, KM_SLEEP);
135 #ifdef XFS_DIR2_TRACE
136 xfs_dir2_trace_buf = ktrace_alloc(XFS_DIR2_GTRACE_SIZE, KM_SLEEP);
141 #if (defined(DEBUG) || defined(INDUCE_IO_ERROR))
142 xfs_error_test_init();
143 #endif /* DEBUG || INDUCE_IO_ERROR */
146 xfs_sysctl_register();
153 extern kmem_zone_t *xfs_bmap_free_item_zone;
154 extern kmem_zone_t *xfs_btree_cur_zone;
155 extern kmem_zone_t *xfs_inode_zone;
156 extern kmem_zone_t *xfs_trans_zone;
157 extern kmem_zone_t *xfs_da_state_zone;
158 extern kmem_zone_t *xfs_dabuf_zone;
159 extern kmem_zone_t *xfs_efd_zone;
160 extern kmem_zone_t *xfs_efi_zone;
161 extern kmem_zone_t *xfs_buf_item_zone;
162 extern kmem_zone_t *xfs_chashlist_zone;
164 xfs_cleanup_procfs();
165 xfs_sysctl_unregister();
166 xfs_refcache_destroy();
167 xfs_acl_zone_destroy(xfs_acl_zone);
169 #ifdef XFS_DIR2_TRACE
170 ktrace_free(xfs_dir2_trace_buf);
172 #ifdef XFS_ATTR_TRACE
173 ktrace_free(xfs_attr_trace_buf);
175 #ifdef XFS_BMBT_TRACE
176 ktrace_free(xfs_bmbt_trace_buf);
178 #ifdef XFS_BMAP_TRACE
179 ktrace_free(xfs_bmap_trace_buf);
181 #ifdef XFS_ALLOC_TRACE
182 ktrace_free(xfs_alloc_trace_buf);
185 kmem_zone_destroy(xfs_bmap_free_item_zone);
186 kmem_zone_destroy(xfs_btree_cur_zone);
187 kmem_zone_destroy(xfs_inode_zone);
188 kmem_zone_destroy(xfs_trans_zone);
189 kmem_zone_destroy(xfs_da_state_zone);
190 kmem_zone_destroy(xfs_dabuf_zone);
191 kmem_zone_destroy(xfs_buf_item_zone);
192 kmem_zone_destroy(xfs_efd_zone);
193 kmem_zone_destroy(xfs_efi_zone);
194 kmem_zone_destroy(xfs_ifork_zone);
195 kmem_zone_destroy(xfs_ili_zone);
196 kmem_zone_destroy(xfs_chashlist_zone);
202 * This function fills in xfs_mount_t fields based on mount args.
203 * Note: the superblock has _not_ yet been read in.
208 struct xfs_mount_args *ap,
209 struct xfs_mount *mp)
211 /* Values are in BBs */
212 if ((ap->flags & XFSMNT_NOALIGN) != XFSMNT_NOALIGN) {
214 * At this point the superblock has not been read
215 * in, therefore we do not know the block size.
216 * Before the mount call ends we will convert
219 mp->m_dalign = ap->sunit;
220 mp->m_swidth = ap->swidth;
223 if (ap->logbufs != -1 &&
225 (ap->logbufs < XLOG_MIN_ICLOGS ||
226 ap->logbufs > XLOG_MAX_ICLOGS)) {
228 "XFS: invalid logbufs value: %d [not %d-%d]",
229 ap->logbufs, XLOG_MIN_ICLOGS, XLOG_MAX_ICLOGS);
230 return XFS_ERROR(EINVAL);
232 mp->m_logbufs = ap->logbufs;
233 if (ap->logbufsize != -1 &&
234 ap->logbufsize != 0 &&
235 ap->logbufsize != 16 * 1024 &&
236 ap->logbufsize != 32 * 1024 &&
237 ap->logbufsize != 64 * 1024 &&
238 ap->logbufsize != 128 * 1024 &&
239 ap->logbufsize != 256 * 1024) {
241 "XFS: invalid logbufsize: %d [not 16k,32k,64k,128k or 256k]",
243 return XFS_ERROR(EINVAL);
245 mp->m_ihsize = ap->ihashsize;
246 mp->m_logbsize = ap->logbufsize;
247 mp->m_fsname_len = strlen(ap->fsname) + 1;
248 mp->m_fsname = kmem_alloc(mp->m_fsname_len, KM_SLEEP);
249 strcpy(mp->m_fsname, ap->fsname);
251 mp->m_rtname = kmem_alloc(strlen(ap->rtname) + 1, KM_SLEEP);
252 strcpy(mp->m_rtname, ap->rtname);
254 if (ap->logname[0]) {
255 mp->m_logname = kmem_alloc(strlen(ap->logname) + 1, KM_SLEEP);
256 strcpy(mp->m_logname, ap->logname);
259 if (ap->flags & XFSMNT_WSYNC)
260 mp->m_flags |= XFS_MOUNT_WSYNC;
262 if (ap->flags & XFSMNT_INO64) {
263 mp->m_flags |= XFS_MOUNT_INO64;
264 mp->m_inoadd = XFS_INO64_OFFSET;
267 if (ap->flags & XFSMNT_RETERR)
268 mp->m_flags |= XFS_MOUNT_RETERR;
269 if (ap->flags & XFSMNT_NOALIGN)
270 mp->m_flags |= XFS_MOUNT_NOALIGN;
271 if (ap->flags & XFSMNT_SWALLOC)
272 mp->m_flags |= XFS_MOUNT_SWALLOC;
273 if (ap->flags & XFSMNT_OSYNCISOSYNC)
274 mp->m_flags |= XFS_MOUNT_OSYNCISOSYNC;
275 if (ap->flags & XFSMNT_32BITINODES)
276 mp->m_flags |= XFS_MOUNT_32BITINODES;
278 if (ap->flags & XFSMNT_IOSIZE) {
279 if (ap->iosizelog > XFS_MAX_IO_LOG ||
280 ap->iosizelog < XFS_MIN_IO_LOG) {
282 "XFS: invalid log iosize: %d [not %d-%d]",
283 ap->iosizelog, XFS_MIN_IO_LOG,
285 return XFS_ERROR(EINVAL);
288 mp->m_flags |= XFS_MOUNT_DFLT_IOSIZE;
289 mp->m_readio_log = mp->m_writeio_log = ap->iosizelog;
292 if (ap->flags & XFSMNT_IHASHSIZE)
293 mp->m_flags |= XFS_MOUNT_IHASHSIZE;
294 if (ap->flags & XFSMNT_IDELETE)
295 mp->m_flags |= XFS_MOUNT_IDELETE;
296 if (ap->flags & XFSMNT_DIRSYNC)
297 mp->m_flags |= XFS_MOUNT_DIRSYNC;
298 if (ap->flags & XFSMNT_ATTR2)
299 mp->m_flags |= XFS_MOUNT_ATTR2;
301 if (ap->flags2 & XFSMNT2_COMPAT_IOSIZE)
302 mp->m_flags |= XFS_MOUNT_COMPAT_IOSIZE;
305 * no recovery flag requires a read-only mount
307 if (ap->flags & XFSMNT_NORECOVERY) {
308 if (!(vfs->vfs_flag & VFS_RDONLY)) {
310 "XFS: tried to mount a FS read-write without recovery!");
311 return XFS_ERROR(EINVAL);
313 mp->m_flags |= XFS_MOUNT_NORECOVERY;
316 if (ap->flags & XFSMNT_NOUUID)
317 mp->m_flags |= XFS_MOUNT_NOUUID;
318 if (ap->flags & XFSMNT_BARRIER)
319 mp->m_flags |= XFS_MOUNT_BARRIER;
321 mp->m_flags &= ~XFS_MOUNT_BARRIER;
327 * This function fills in xfs_mount_t fields based on mount args.
328 * Note: the superblock _has_ now been read in.
333 struct xfs_mount_args *ap,
334 struct xfs_mount *mp)
336 int ronly = (vfs->vfs_flag & VFS_RDONLY);
338 /* Fail a mount where the logbuf is smaller then the log stripe */
339 if (XFS_SB_VERSION_HASLOGV2(&mp->m_sb)) {
340 if ((ap->logbufsize <= 0) &&
341 (mp->m_sb.sb_logsunit > XLOG_BIG_RECORD_BSIZE)) {
342 mp->m_logbsize = mp->m_sb.sb_logsunit;
343 } else if (ap->logbufsize > 0 &&
344 ap->logbufsize < mp->m_sb.sb_logsunit) {
346 "XFS: logbuf size must be greater than or equal to log stripe size");
347 return XFS_ERROR(EINVAL);
350 /* Fail a mount if the logbuf is larger than 32K */
351 if (ap->logbufsize > XLOG_BIG_RECORD_BSIZE) {
353 "XFS: logbuf size for version 1 logs must be 16K or 32K");
354 return XFS_ERROR(EINVAL);
358 if (XFS_SB_VERSION_HASATTR2(&mp->m_sb)) {
359 mp->m_flags |= XFS_MOUNT_ATTR2;
363 * prohibit r/w mounts of read-only filesystems
365 if ((mp->m_sb.sb_flags & XFS_SBF_READONLY) && !ronly) {
367 "XFS: cannot mount a read-only filesystem as read-write");
368 return XFS_ERROR(EROFS);
372 * check for shared mount.
374 if (ap->flags & XFSMNT_SHARED) {
375 if (!XFS_SB_VERSION_HASSHARED(&mp->m_sb))
376 return XFS_ERROR(EINVAL);
379 * For IRIX 6.5, shared mounts must have the shared
380 * version bit set, have the persistent readonly
381 * field set, must be version 0 and can only be mounted
384 if (!ronly || !(mp->m_sb.sb_flags & XFS_SBF_READONLY) ||
385 (mp->m_sb.sb_shared_vn != 0))
386 return XFS_ERROR(EINVAL);
388 mp->m_flags |= XFS_MOUNT_SHARED;
391 * Shared XFS V0 can't deal with DMI. Return EINVAL.
393 if (mp->m_sb.sb_shared_vn == 0 && (ap->flags & XFSMNT_DMAPI))
394 return XFS_ERROR(EINVAL);
403 * The file system configurations are:
404 * (1) device (partition) with data and internal log
405 * (2) logical volume with data and log subvolumes.
406 * (3) logical volume with data, log, and realtime subvolumes.
408 * We only have to handle opening the log and realtime volumes here if
409 * they are present. The data subvolume has already been opened by
410 * get_sb_bdev() and is stored in vfsp->vfs_super->s_bdev.
414 struct bhv_desc *bhvp,
415 struct xfs_mount_args *args,
418 struct bhv_vfs *vfsp = bhvtovfs(bhvp);
420 struct xfs_mount *mp = XFS_BHVTOM(bhvp);
421 struct block_device *ddev, *logdev, *rtdev;
422 int flags = 0, error;
424 ddev = vfsp->vfs_super->s_bdev;
425 logdev = rtdev = NULL;
428 * Setup xfs_mount function vectors from available behaviors
430 p = vfs_bhv_lookup(vfsp, VFS_POSITION_DM);
431 mp->m_dm_ops = p ? *(xfs_dmops_t *) vfs_bhv_custom(p) : xfs_dmcore_stub;
432 p = vfs_bhv_lookup(vfsp, VFS_POSITION_QM);
433 mp->m_qm_ops = p ? *(xfs_qmops_t *) vfs_bhv_custom(p) : xfs_qmcore_stub;
434 p = vfs_bhv_lookup(vfsp, VFS_POSITION_IO);
435 mp->m_io_ops = p ? *(xfs_ioops_t *) vfs_bhv_custom(p) : xfs_iocore_xfs;
437 if (args->flags & XFSMNT_QUIET)
438 flags |= XFS_MFSI_QUIET;
441 * Open real time and log devices - order is important.
443 if (args->logname[0]) {
444 error = xfs_blkdev_get(mp, args->logname, &logdev);
448 if (args->rtname[0]) {
449 error = xfs_blkdev_get(mp, args->rtname, &rtdev);
451 xfs_blkdev_put(logdev);
455 if (rtdev == ddev || rtdev == logdev) {
457 "XFS: Cannot mount filesystem with identical rtdev and ddev/logdev.");
458 xfs_blkdev_put(logdev);
459 xfs_blkdev_put(rtdev);
465 * Setup xfs_mount buffer target pointers
468 mp->m_ddev_targp = xfs_alloc_buftarg(ddev, 0);
469 if (!mp->m_ddev_targp) {
470 xfs_blkdev_put(logdev);
471 xfs_blkdev_put(rtdev);
475 mp->m_rtdev_targp = xfs_alloc_buftarg(rtdev, 1);
476 if (!mp->m_rtdev_targp)
479 mp->m_logdev_targp = (logdev && logdev != ddev) ?
480 xfs_alloc_buftarg(logdev, 1) : mp->m_ddev_targp;
481 if (!mp->m_logdev_targp)
485 * Setup flags based on mount(2) options and then the superblock
487 error = xfs_start_flags(vfsp, args, mp);
490 error = xfs_readsb(mp, flags);
493 error = xfs_finish_flags(vfsp, args, mp);
498 * Setup xfs_mount buffer target pointers based on superblock
500 error = xfs_setsize_buftarg(mp->m_ddev_targp, mp->m_sb.sb_blocksize,
501 mp->m_sb.sb_sectsize);
502 if (!error && logdev && logdev != ddev) {
503 unsigned int log_sector_size = BBSIZE;
505 if (XFS_SB_VERSION_HASSECTOR(&mp->m_sb))
506 log_sector_size = mp->m_sb.sb_logsectsize;
507 error = xfs_setsize_buftarg(mp->m_logdev_targp,
508 mp->m_sb.sb_blocksize,
512 error = xfs_setsize_buftarg(mp->m_rtdev_targp,
513 mp->m_sb.sb_blocksize,
514 mp->m_sb.sb_sectsize);
518 if (mp->m_flags & XFS_MOUNT_BARRIER)
519 xfs_mountfs_check_barriers(mp);
521 error = XFS_IOINIT(vfsp, args, flags);
531 xfs_binval(mp->m_ddev_targp);
532 if (logdev && logdev != ddev)
533 xfs_binval(mp->m_logdev_targp);
535 xfs_binval(mp->m_rtdev_targp);
537 xfs_unmountfs_close(mp, credp);
547 bhv_vfs_t *vfsp = bhvtovfs(bdp);
548 xfs_mount_t *mp = XFS_BHVTOM(bdp);
551 int unmount_event_wanted = 0;
552 int unmount_event_flags = 0;
553 int xfs_unmountfs_needed = 0;
559 if (vfsp->vfs_flag & VFS_DMI) {
560 error = XFS_SEND_PREUNMOUNT(mp, vfsp,
561 rvp, DM_RIGHT_NULL, rvp, DM_RIGHT_NULL,
563 (mp->m_dmevmask & (1<<DM_EVENT_PREUNMOUNT))?
564 0:DM_FLAGS_UNWANTED);
566 return XFS_ERROR(error);
567 unmount_event_wanted = 1;
568 unmount_event_flags = (mp->m_dmevmask & (1<<DM_EVENT_UNMOUNT))?
569 0 : DM_FLAGS_UNWANTED;
573 * First blow any referenced inode from this file system
574 * out of the reference cache, and delete the timer.
576 xfs_refcache_purge_mp(mp);
578 XFS_bflush(mp->m_ddev_targp);
579 error = xfs_unmount_flush(mp, 0);
583 ASSERT(vn_count(rvp) == 1);
586 * Drop the reference count
591 * If we're forcing a shutdown, typically because of a media error,
592 * we want to make sure we invalidate dirty pages that belong to
593 * referenced vnodes as well.
595 if (XFS_FORCED_SHUTDOWN(mp)) {
596 error = xfs_sync(&mp->m_bhv,
597 (SYNC_WAIT | SYNC_CLOSE), credp);
598 ASSERT(error != EFSCORRUPTED);
600 xfs_unmountfs_needed = 1;
603 /* Send DMAPI event, if required.
604 * Then do xfs_unmountfs() if needed.
605 * Then return error (or zero).
607 if (unmount_event_wanted) {
608 /* Note: mp structure must still exist for
609 * XFS_SEND_UNMOUNT() call.
611 XFS_SEND_UNMOUNT(mp, vfsp, error == 0 ? rvp : NULL,
612 DM_RIGHT_NULL, 0, error, unmount_event_flags);
614 if (xfs_unmountfs_needed) {
616 * Call common unmount function to flush to disk
617 * and free the super block buffer & mount structures.
619 xfs_unmountfs(mp, credp);
622 return XFS_ERROR(error);
629 int count = 0, pincount;
631 xfs_refcache_purge_mp(mp);
632 xfs_flush_buftarg(mp->m_ddev_targp, 0);
633 xfs_finish_reclaim_all(mp, 0);
635 /* This loop must run at least twice.
636 * The first instance of the loop will flush
637 * most meta data but that will generate more
638 * meta data (typically directory updates).
639 * Which then must be flushed and logged before
640 * we can write the unmount record.
643 xfs_syncsub(mp, SYNC_REMOUNT|SYNC_ATTR|SYNC_WAIT, 0, NULL);
644 pincount = xfs_flush_buftarg(mp->m_ddev_targp, 1);
658 struct xfs_mount_args *args)
660 bhv_vfs_t *vfsp = bhvtovfs(bdp);
661 xfs_mount_t *mp = XFS_BHVTOM(bdp);
663 if (!(*flags & MS_RDONLY)) { /* rw/ro -> rw */
664 if (vfsp->vfs_flag & VFS_RDONLY)
665 vfsp->vfs_flag &= ~VFS_RDONLY;
666 if (args->flags & XFSMNT_BARRIER) {
667 mp->m_flags |= XFS_MOUNT_BARRIER;
668 xfs_mountfs_check_barriers(mp);
670 mp->m_flags &= ~XFS_MOUNT_BARRIER;
672 } else if (!(vfsp->vfs_flag & VFS_RDONLY)) { /* rw -> ro */
673 bhv_vfs_sync(vfsp, SYNC_FSDATA|SYNC_BDFLUSH|SYNC_ATTR, NULL);
675 xfs_log_unmount_write(mp);
676 xfs_unmountfs_writesb(mp);
677 vfsp->vfs_flag |= VFS_RDONLY;
683 * xfs_unmount_flush implements a set of flush operation on special
684 * inodes, which are needed as a separate set of operations so that
685 * they can be called as part of relocation process.
689 xfs_mount_t *mp, /* Mount structure we are getting
691 int relocation) /* Called from vfs relocation. */
693 xfs_inode_t *rip = mp->m_rootip;
695 xfs_inode_t *rsumip = NULL;
696 bhv_vnode_t *rvp = XFS_ITOV(rip);
699 xfs_ilock(rip, XFS_ILOCK_EXCL);
703 * Flush out the real time inodes.
705 if ((rbmip = mp->m_rbmip) != NULL) {
706 xfs_ilock(rbmip, XFS_ILOCK_EXCL);
708 error = xfs_iflush(rbmip, XFS_IFLUSH_SYNC);
709 xfs_iunlock(rbmip, XFS_ILOCK_EXCL);
711 if (error == EFSCORRUPTED)
714 ASSERT(vn_count(XFS_ITOV(rbmip)) == 1);
716 rsumip = mp->m_rsumip;
717 xfs_ilock(rsumip, XFS_ILOCK_EXCL);
719 error = xfs_iflush(rsumip, XFS_IFLUSH_SYNC);
720 xfs_iunlock(rsumip, XFS_ILOCK_EXCL);
722 if (error == EFSCORRUPTED)
725 ASSERT(vn_count(XFS_ITOV(rsumip)) == 1);
729 * Synchronously flush root inode to disk
731 error = xfs_iflush(rip, XFS_IFLUSH_SYNC);
732 if (error == EFSCORRUPTED)
735 if (vn_count(rvp) != 1 && !relocation) {
736 xfs_iunlock(rip, XFS_ILOCK_EXCL);
737 return XFS_ERROR(EBUSY);
741 * Release dquot that rootinode, rbmino and rsumino might be holding,
742 * flush and purge the quota inodes.
744 error = XFS_QM_UNMOUNT(mp);
745 if (error == EFSCORRUPTED)
749 VN_RELE(XFS_ITOV(rbmip));
750 VN_RELE(XFS_ITOV(rsumip));
753 xfs_iunlock(rip, XFS_ILOCK_EXCL);
760 xfs_iunlock(rip, XFS_ILOCK_EXCL);
762 return XFS_ERROR(EFSCORRUPTED);
766 * xfs_root extracts the root vnode from a vfs.
768 * vfsp -- the vfs struct for the desired file system
769 * vpp -- address of the caller's vnode pointer which should be
770 * set to the desired fs root vnode
779 vp = XFS_ITOV((XFS_BHVTOM(bdp))->m_rootip);
788 * Fill in the statvfs structure for the given file system. We use
789 * the superblock lock in the mount structure to ensure a consistent
790 * snapshot of the counters returned.
795 bhv_statvfs_t *statp,
804 mp = XFS_BHVTOM(bdp);
807 statp->f_type = XFS_SB_MAGIC;
809 xfs_icsb_sync_counters_lazy(mp);
811 statp->f_bsize = sbp->sb_blocksize;
812 lsize = sbp->sb_logstart ? sbp->sb_logblocks : 0;
813 statp->f_blocks = sbp->sb_dblocks - lsize;
814 statp->f_bfree = statp->f_bavail = sbp->sb_fdblocks;
815 fakeinos = statp->f_bfree << sbp->sb_inopblog;
817 fakeinos += mp->m_inoadd;
820 MIN(sbp->sb_icount + fakeinos, (__uint64_t)XFS_MAXINUMBER);
825 statp->f_files = min_t(typeof(statp->f_files),
828 statp->f_ffree = statp->f_files - (sbp->sb_icount - sbp->sb_ifree);
829 XFS_SB_UNLOCK(mp, s);
831 xfs_statvfs_fsid(statp, mp);
832 statp->f_namelen = MAXNAMELEN - 1;
839 * xfs_sync flushes any pending I/O to file system vfsp.
841 * This routine is called by vfs_sync() to make sure that things make it
842 * out to disk eventually, on sync() system calls to flush out everything,
843 * and when the file system is unmounted. For the vfs_sync() case, all
844 * we really need to do is sync out the log to make all of our meta-data
845 * updates permanent (except for timestamps). For calls from pflushd(),
846 * dirty pages are kept moving by calling pdflush() on the inodes
847 * containing them. We also flush the inodes that we can lock without
848 * sleeping and the superblock if we can lock it without sleeping from
849 * vfs_sync() so that items at the tail of the log are always moving out.
852 * SYNC_BDFLUSH - We're being called from vfs_sync() so we don't want
853 * to sleep if we can help it. All we really need
854 * to do is ensure that the log is synced at least
855 * periodically. We also push the inodes and
856 * superblock if we can lock them without sleeping
857 * and they are not pinned.
858 * SYNC_ATTR - We need to flush the inodes. If SYNC_BDFLUSH is not
859 * set, then we really want to lock each inode and flush
861 * SYNC_WAIT - All the flushes that take place in this call should
863 * SYNC_DELWRI - This tells us to push dirty pages associated with
864 * inodes. SYNC_WAIT and SYNC_BDFLUSH are used to
865 * determine if they should be flushed sync, async, or
867 * SYNC_CLOSE - This flag is passed when the system is being
868 * unmounted. We should sync and invalidate everything.
869 * SYNC_FSDATA - This indicates that the caller would like to make
870 * sure the superblock is safe on disk. We can ensure
871 * this by simply making sure the log gets flushed
872 * if SYNC_BDFLUSH is set, and by actually writing it
883 xfs_mount_t *mp = XFS_BHVTOM(bdp);
885 if (unlikely(flags == SYNC_QUIESCE))
886 return xfs_quiesce_fs(mp);
888 return xfs_syncsub(mp, flags, 0, NULL);
892 * xfs sync routine for internal use
894 * This routine supports all of the flags defined for the generic vfs_sync
895 * interface as explained above under xfs_sync. In the interests of not
896 * changing interfaces within the 6.5 family, additional internally-
897 * required functions are specified within a separate xflags parameter,
898 * only available by calling this routine.
908 xfs_inode_t *ip = NULL;
909 xfs_inode_t *ip_next;
911 bhv_vnode_t *vp = NULL;
916 uint base_lock_flags;
917 boolean_t mount_locked;
918 boolean_t vnode_refed;
921 xfs_iptr_t *ipointer;
923 boolean_t ipointer_in = B_FALSE;
925 #define IPOINTER_SET ipointer_in = B_TRUE
926 #define IPOINTER_CLR ipointer_in = B_FALSE
933 /* Insert a marker record into the inode list after inode ip. The list
934 * must be locked when this is called. After the call the list will no
937 #define IPOINTER_INSERT(ip, mp) { \
938 ASSERT(ipointer_in == B_FALSE); \
939 ipointer->ip_mnext = ip->i_mnext; \
940 ipointer->ip_mprev = ip; \
941 ip->i_mnext = (xfs_inode_t *)ipointer; \
942 ipointer->ip_mnext->i_mprev = (xfs_inode_t *)ipointer; \
944 XFS_MOUNT_IUNLOCK(mp); \
945 mount_locked = B_FALSE; \
949 /* Remove the marker from the inode list. If the marker was the only item
950 * in the list then there are no remaining inodes and we should zero out
951 * the whole list. If we are the current head of the list then move the head
954 #define IPOINTER_REMOVE(ip, mp) { \
955 ASSERT(ipointer_in == B_TRUE); \
956 if (ipointer->ip_mnext != (xfs_inode_t *)ipointer) { \
957 ip = ipointer->ip_mnext; \
958 ip->i_mprev = ipointer->ip_mprev; \
959 ipointer->ip_mprev->i_mnext = ip; \
960 if (mp->m_inodes == (xfs_inode_t *)ipointer) { \
964 ASSERT(mp->m_inodes == (xfs_inode_t *)ipointer); \
965 mp->m_inodes = NULL; \
971 #define XFS_PREEMPT_MASK 0x7f
975 if (XFS_MTOVFS(mp)->vfs_flag & VFS_RDONLY)
981 /* Allocate a reference marker */
982 ipointer = (xfs_iptr_t *)kmem_zalloc(sizeof(xfs_iptr_t), KM_SLEEP);
984 fflag = XFS_B_ASYNC; /* default is don't wait */
985 if (flags & (SYNC_BDFLUSH | SYNC_DELWRI))
986 fflag = XFS_B_DELWRI;
987 if (flags & SYNC_WAIT)
988 fflag = 0; /* synchronous overrides all */
990 base_lock_flags = XFS_ILOCK_SHARED;
991 if (flags & (SYNC_DELWRI | SYNC_CLOSE)) {
993 * We need the I/O lock if we're going to call any of
994 * the flush/inval routines.
996 base_lock_flags |= XFS_IOLOCK_SHARED;
1003 mount_locked = B_TRUE;
1004 vnode_refed = B_FALSE;
1009 ASSERT(ipointer_in == B_FALSE);
1010 ASSERT(vnode_refed == B_FALSE);
1012 lock_flags = base_lock_flags;
1015 * There were no inodes in the list, just break out
1023 * We found another sync thread marker - skip it
1025 if (ip->i_mount == NULL) {
1030 vp = XFS_ITOV_NULL(ip);
1033 * If the vnode is gone then this is being torn down,
1034 * call reclaim if it is flushed, else let regular flush
1035 * code deal with it later in the loop.
1039 /* Skip ones already in reclaim */
1040 if (ip->i_flags & XFS_IRECLAIM) {
1044 if (xfs_ilock_nowait(ip, XFS_ILOCK_EXCL) == 0) {
1046 } else if ((xfs_ipincount(ip) == 0) &&
1047 xfs_iflock_nowait(ip)) {
1048 IPOINTER_INSERT(ip, mp);
1050 xfs_finish_reclaim(ip, 1,
1051 XFS_IFLUSH_DELWRI_ELSE_ASYNC);
1053 XFS_MOUNT_ILOCK(mp);
1054 mount_locked = B_TRUE;
1055 IPOINTER_REMOVE(ip, mp);
1057 xfs_iunlock(ip, XFS_ILOCK_EXCL);
1068 if (XFS_FORCED_SHUTDOWN(mp) && !(flags & SYNC_CLOSE)) {
1069 XFS_MOUNT_IUNLOCK(mp);
1070 kmem_free(ipointer, sizeof(xfs_iptr_t));
1075 * If this is just vfs_sync() or pflushd() calling
1076 * then we can skip inodes for which it looks like
1077 * there is nothing to do. Since we don't have the
1078 * inode locked this is racy, but these are periodic
1079 * calls so it doesn't matter. For the others we want
1080 * to know for sure, so we at least try to lock them.
1082 if (flags & SYNC_BDFLUSH) {
1083 if (((ip->i_itemp == NULL) ||
1084 !(ip->i_itemp->ili_format.ilf_fields &
1086 (ip->i_update_core == 0)) {
1093 * Try to lock without sleeping. We're out of order with
1094 * the inode list lock here, so if we fail we need to drop
1095 * the mount lock and try again. If we're called from
1096 * bdflush() here, then don't bother.
1098 * The inode lock here actually coordinates with the
1099 * almost spurious inode lock in xfs_ireclaim() to prevent
1100 * the vnode we handle here without a reference from
1101 * being freed while we reference it. If we lock the inode
1102 * while it's on the mount list here, then the spurious inode
1103 * lock in xfs_ireclaim() after the inode is pulled from
1104 * the mount list will sleep until we release it here.
1105 * This keeps the vnode from being freed while we reference
1108 if (xfs_ilock_nowait(ip, lock_flags) == 0) {
1109 if ((flags & SYNC_BDFLUSH) || (vp == NULL)) {
1120 IPOINTER_INSERT(ip, mp);
1121 xfs_ilock(ip, lock_flags);
1123 ASSERT(vp == XFS_ITOV(ip));
1124 ASSERT(ip->i_mount == mp);
1126 vnode_refed = B_TRUE;
1129 /* From here on in the loop we may have a marker record
1130 * in the inode list.
1133 if ((flags & SYNC_CLOSE) && (vp != NULL)) {
1135 * This is the shutdown case. We just need to
1136 * flush and invalidate all the pages associated
1137 * with the inode. Drop the inode lock since
1138 * we can't hold it across calls to the buffer
1141 * We don't set the VREMAPPING bit in the vnode
1142 * here, because we don't hold the vnode lock
1143 * exclusively. It doesn't really matter, though,
1144 * because we only come here when we're shutting
1147 xfs_iunlock(ip, XFS_ILOCK_SHARED);
1149 if (XFS_FORCED_SHUTDOWN(mp)) {
1150 bhv_vop_toss_pages(vp, 0, -1, FI_REMAPF);
1152 bhv_vop_flushinval_pages(vp, 0, -1, FI_REMAPF);
1155 xfs_ilock(ip, XFS_ILOCK_SHARED);
1157 } else if ((flags & SYNC_DELWRI) && (vp != NULL)) {
1159 /* We need to have dropped the lock here,
1160 * so insert a marker if we have not already
1164 IPOINTER_INSERT(ip, mp);
1168 * Drop the inode lock since we can't hold it
1169 * across calls to the buffer cache.
1171 xfs_iunlock(ip, XFS_ILOCK_SHARED);
1172 error = bhv_vop_flush_pages(vp, (xfs_off_t)0,
1173 -1, fflag, FI_NONE);
1174 xfs_ilock(ip, XFS_ILOCK_SHARED);
1179 if (flags & SYNC_BDFLUSH) {
1180 if ((flags & SYNC_ATTR) &&
1181 ((ip->i_update_core) ||
1182 ((ip->i_itemp != NULL) &&
1183 (ip->i_itemp->ili_format.ilf_fields != 0)))) {
1185 /* Insert marker and drop lock if not already
1189 IPOINTER_INSERT(ip, mp);
1193 * We don't want the periodic flushing of the
1194 * inodes by vfs_sync() to interfere with
1195 * I/O to the file, especially read I/O
1196 * where it is only the access time stamp
1197 * that is being flushed out. To prevent
1198 * long periods where we have both inode
1199 * locks held shared here while reading the
1200 * inode's buffer in from disk, we drop the
1201 * inode lock while reading in the inode
1202 * buffer. We have to release the buffer
1203 * and reacquire the inode lock so that they
1204 * are acquired in the proper order (inode
1205 * locks first). The buffer will go at the
1206 * end of the lru chain, though, so we can
1207 * expect it to still be there when we go
1208 * for it again in xfs_iflush().
1210 if ((xfs_ipincount(ip) == 0) &&
1211 xfs_iflock_nowait(ip)) {
1214 xfs_iunlock(ip, XFS_ILOCK_SHARED);
1216 error = xfs_itobp(mp, NULL, ip,
1221 /* Bailing out, remove the
1222 * marker and free it.
1224 XFS_MOUNT_ILOCK(mp);
1225 IPOINTER_REMOVE(ip, mp);
1226 XFS_MOUNT_IUNLOCK(mp);
1228 ASSERT(!(lock_flags &
1229 XFS_IOLOCK_SHARED));
1232 sizeof(xfs_iptr_t));
1237 * Since we dropped the inode lock,
1238 * the inode may have been reclaimed.
1239 * Therefore, we reacquire the mount
1240 * lock and check to see if we were the
1241 * inode reclaimed. If this happened
1242 * then the ipointer marker will no
1243 * longer point back at us. In this
1244 * case, move ip along to the inode
1245 * after the marker, remove the marker
1248 XFS_MOUNT_ILOCK(mp);
1249 mount_locked = B_TRUE;
1251 if (ip != ipointer->ip_mprev) {
1252 IPOINTER_REMOVE(ip, mp);
1254 ASSERT(!vnode_refed);
1255 ASSERT(!(lock_flags &
1256 XFS_IOLOCK_SHARED));
1260 ASSERT(ip->i_mount == mp);
1262 if (xfs_ilock_nowait(ip,
1263 XFS_ILOCK_SHARED) == 0) {
1264 ASSERT(ip->i_mount == mp);
1266 * We failed to reacquire
1267 * the inode lock without
1268 * sleeping, so just skip
1269 * the inode for now. We
1270 * clear the ILOCK bit from
1271 * the lock_flags so that we
1272 * won't try to drop a lock
1273 * we don't hold below.
1275 lock_flags &= ~XFS_ILOCK_SHARED;
1276 IPOINTER_REMOVE(ip_next, mp);
1277 } else if ((xfs_ipincount(ip) == 0) &&
1278 xfs_iflock_nowait(ip)) {
1279 ASSERT(ip->i_mount == mp);
1281 * Since this is vfs_sync()
1282 * calling we only flush the
1283 * inode out if we can lock
1284 * it without sleeping and
1285 * it is not pinned. Drop
1286 * the mount lock here so
1287 * that we don't hold it for
1288 * too long. We already have
1289 * a marker in the list here.
1291 XFS_MOUNT_IUNLOCK(mp);
1292 mount_locked = B_FALSE;
1293 error = xfs_iflush(ip,
1296 ASSERT(ip->i_mount == mp);
1297 IPOINTER_REMOVE(ip_next, mp);
1304 if ((flags & SYNC_ATTR) &&
1305 ((ip->i_update_core) ||
1306 ((ip->i_itemp != NULL) &&
1307 (ip->i_itemp->ili_format.ilf_fields != 0)))) {
1309 IPOINTER_INSERT(ip, mp);
1312 if (flags & SYNC_WAIT) {
1314 error = xfs_iflush(ip,
1318 * If we can't acquire the flush
1319 * lock, then the inode is already
1320 * being flushed so don't bother
1321 * waiting. If we can lock it then
1322 * do a delwri flush so we can
1323 * combine multiple inode flushes
1324 * in each disk write.
1326 if (xfs_iflock_nowait(ip)) {
1327 error = xfs_iflush(ip,
1336 if (lock_flags != 0) {
1337 xfs_iunlock(ip, lock_flags);
1342 * If we had to take a reference on the vnode
1343 * above, then wait until after we've unlocked
1344 * the inode to release the reference. This is
1345 * because we can be already holding the inode
1346 * lock when VN_RELE() calls xfs_inactive().
1348 * Make sure to drop the mount lock before calling
1349 * VN_RELE() so that we don't trip over ourselves if
1350 * we have to go for the mount lock again in the
1354 IPOINTER_INSERT(ip, mp);
1359 vnode_refed = B_FALSE;
1367 * bail out if the filesystem is corrupted.
1369 if (error == EFSCORRUPTED) {
1370 if (!mount_locked) {
1371 XFS_MOUNT_ILOCK(mp);
1372 IPOINTER_REMOVE(ip, mp);
1374 XFS_MOUNT_IUNLOCK(mp);
1375 ASSERT(ipointer_in == B_FALSE);
1376 kmem_free(ipointer, sizeof(xfs_iptr_t));
1377 return XFS_ERROR(error);
1380 /* Let other threads have a chance at the mount lock
1381 * if we have looped many times without dropping the
1384 if ((++preempt & XFS_PREEMPT_MASK) == 0) {
1386 IPOINTER_INSERT(ip, mp);
1390 if (mount_locked == B_FALSE) {
1391 XFS_MOUNT_ILOCK(mp);
1392 mount_locked = B_TRUE;
1393 IPOINTER_REMOVE(ip, mp);
1397 ASSERT(ipointer_in == B_FALSE);
1400 } while (ip != mp->m_inodes);
1402 XFS_MOUNT_IUNLOCK(mp);
1404 ASSERT(ipointer_in == B_FALSE);
1406 kmem_free(ipointer, sizeof(xfs_iptr_t));
1407 return XFS_ERROR(last_error);
1411 * xfs sync routine for internal use
1413 * This routine supports all of the flags defined for the generic vfs_sync
1414 * interface as explained above under xfs_sync. In the interests of not
1415 * changing interfaces within the 6.5 family, additional internally-
1416 * required functions are specified within a separate xflags parameter,
1417 * only available by calling this routine.
1429 uint log_flags = XFS_LOG_FORCE;
1431 xfs_buf_log_item_t *bip;
1434 * Sync out the log. This ensures that the log is periodically
1435 * flushed even if there is not enough activity to fill it up.
1437 if (flags & SYNC_WAIT)
1438 log_flags |= XFS_LOG_SYNC;
1440 xfs_log_force(mp, (xfs_lsn_t)0, log_flags);
1442 if (flags & (SYNC_ATTR|SYNC_DELWRI)) {
1443 if (flags & SYNC_BDFLUSH)
1444 xfs_finish_reclaim_all(mp, 1);
1446 error = xfs_sync_inodes(mp, flags, xflags, bypassed);
1450 * Flushing out dirty data above probably generated more
1451 * log activity, so if this isn't vfs_sync() then flush
1454 if (flags & SYNC_DELWRI) {
1455 xfs_log_force(mp, (xfs_lsn_t)0, log_flags);
1458 if (flags & SYNC_FSDATA) {
1460 * If this is vfs_sync() then only sync the superblock
1461 * if we can lock it without sleeping and it is not pinned.
1463 if (flags & SYNC_BDFLUSH) {
1464 bp = xfs_getsb(mp, XFS_BUF_TRYLOCK);
1466 bip = XFS_BUF_FSPRIVATE(bp,xfs_buf_log_item_t*);
1467 if ((bip != NULL) &&
1468 xfs_buf_item_dirty(bip)) {
1469 if (!(XFS_BUF_ISPINNED(bp))) {
1471 error = xfs_bwrite(mp, bp);
1480 bp = xfs_getsb(mp, 0);
1482 * If the buffer is pinned then push on the log so
1483 * we won't get stuck waiting in the write for
1484 * someone, maybe ourselves, to flush the log.
1485 * Even though we just pushed the log above, we
1486 * did not have the superblock buffer locked at
1487 * that point so it can become pinned in between
1490 if (XFS_BUF_ISPINNED(bp))
1491 xfs_log_force(mp, (xfs_lsn_t)0, XFS_LOG_FORCE);
1492 if (flags & SYNC_WAIT)
1493 XFS_BUF_UNASYNC(bp);
1496 error = xfs_bwrite(mp, bp);
1504 * If this is the periodic sync, then kick some entries out of
1505 * the reference cache. This ensures that idle entries are
1506 * eventually kicked out of the cache.
1508 if (flags & SYNC_REFCACHE) {
1509 if (flags & SYNC_WAIT)
1510 xfs_refcache_purge_mp(mp);
1512 xfs_refcache_purge_some(mp);
1516 * Now check to see if the log needs a "dummy" transaction.
1519 if (!(flags & SYNC_REMOUNT) && xfs_log_need_covered(mp)) {
1524 * Put a dummy transaction in the log to tell
1525 * recovery that all others are OK.
1527 tp = xfs_trans_alloc(mp, XFS_TRANS_DUMMY1);
1528 if ((error = xfs_trans_reserve(tp, 0,
1529 XFS_ICHANGE_LOG_RES(mp),
1531 xfs_trans_cancel(tp, 0);
1536 xfs_ilock(ip, XFS_ILOCK_EXCL);
1538 xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL);
1539 xfs_trans_ihold(tp, ip);
1540 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
1541 error = xfs_trans_commit(tp, 0, NULL);
1542 xfs_iunlock(ip, XFS_ILOCK_EXCL);
1543 xfs_log_force(mp, (xfs_lsn_t)0, log_flags);
1547 * When shutting down, we need to insure that the AIL is pushed
1548 * to disk or the filesystem can appear corrupt from the PROM.
1550 if ((flags & (SYNC_CLOSE|SYNC_WAIT)) == (SYNC_CLOSE|SYNC_WAIT)) {
1551 XFS_bflush(mp->m_ddev_targp);
1552 if (mp->m_rtdev_targp) {
1553 XFS_bflush(mp->m_rtdev_targp);
1557 return XFS_ERROR(last_error);
1561 * xfs_vget - called by DMAPI and NFSD to get vnode from file handle
1569 xfs_mount_t *mp = XFS_BHVTOM(bdp);
1570 xfs_fid_t *xfid = (struct xfs_fid *)fidp;
1577 * Invalid. Since handles can be created in user space and passed in
1578 * via gethandle(), this is not cause for a panic.
1580 if (xfid->xfs_fid_len != sizeof(*xfid) - sizeof(xfid->xfs_fid_len))
1581 return XFS_ERROR(EINVAL);
1583 ino = xfid->xfs_fid_ino;
1584 igen = xfid->xfs_fid_gen;
1587 * NFS can sometimes send requests for ino 0. Fail them gracefully.
1590 return XFS_ERROR(ESTALE);
1592 error = xfs_iget(mp, NULL, ino, 0, XFS_ILOCK_SHARED, &ip, 0);
1600 return XFS_ERROR(EIO);
1603 if (ip->i_d.di_mode == 0 || ip->i_d.di_gen != igen) {
1604 xfs_iput_new(ip, XFS_ILOCK_SHARED);
1606 return XFS_ERROR(ENOENT);
1609 *vpp = XFS_ITOV(ip);
1610 xfs_iunlock(ip, XFS_ILOCK_SHARED);
1615 #define MNTOPT_LOGBUFS "logbufs" /* number of XFS log buffers */
1616 #define MNTOPT_LOGBSIZE "logbsize" /* size of XFS log buffers */
1617 #define MNTOPT_LOGDEV "logdev" /* log device */
1618 #define MNTOPT_RTDEV "rtdev" /* realtime I/O device */
1619 #define MNTOPT_BIOSIZE "biosize" /* log2 of preferred buffered io size */
1620 #define MNTOPT_WSYNC "wsync" /* safe-mode nfs compatible mount */
1621 #define MNTOPT_INO64 "ino64" /* force inodes into 64-bit range */
1622 #define MNTOPT_NOALIGN "noalign" /* turn off stripe alignment */
1623 #define MNTOPT_SWALLOC "swalloc" /* turn on stripe width allocation */
1624 #define MNTOPT_SUNIT "sunit" /* data volume stripe unit */
1625 #define MNTOPT_SWIDTH "swidth" /* data volume stripe width */
1626 #define MNTOPT_NOUUID "nouuid" /* ignore filesystem UUID */
1627 #define MNTOPT_MTPT "mtpt" /* filesystem mount point */
1628 #define MNTOPT_GRPID "grpid" /* group-ID from parent directory */
1629 #define MNTOPT_NOGRPID "nogrpid" /* group-ID from current process */
1630 #define MNTOPT_BSDGROUPS "bsdgroups" /* group-ID from parent directory */
1631 #define MNTOPT_SYSVGROUPS "sysvgroups" /* group-ID from current process */
1632 #define MNTOPT_ALLOCSIZE "allocsize" /* preferred allocation size */
1633 #define MNTOPT_IHASHSIZE "ihashsize" /* size of inode hash table */
1634 #define MNTOPT_NORECOVERY "norecovery" /* don't run XFS recovery */
1635 #define MNTOPT_BARRIER "barrier" /* use writer barriers for log write and
1636 * unwritten extent conversion */
1637 #define MNTOPT_NOBARRIER "nobarrier" /* .. disable */
1638 #define MNTOPT_OSYNCISOSYNC "osyncisosync" /* o_sync is REALLY o_sync */
1639 #define MNTOPT_64BITINODE "inode64" /* inodes can be allocated anywhere */
1640 #define MNTOPT_IKEEP "ikeep" /* do not free empty inode clusters */
1641 #define MNTOPT_NOIKEEP "noikeep" /* free empty inode clusters */
1642 #define MNTOPT_LARGEIO "largeio" /* report large I/O sizes in stat() */
1643 #define MNTOPT_NOLARGEIO "nolargeio" /* do not report large I/O sizes
1645 #define MNTOPT_ATTR2 "attr2" /* do use attr2 attribute format */
1646 #define MNTOPT_NOATTR2 "noattr2" /* do not use attr2 attribute format */
1648 STATIC unsigned long
1649 suffix_strtoul(char *s, char **endp, unsigned int base)
1651 int last, shift_left_factor = 0;
1654 last = strlen(value) - 1;
1655 if (value[last] == 'K' || value[last] == 'k') {
1656 shift_left_factor = 10;
1659 if (value[last] == 'M' || value[last] == 'm') {
1660 shift_left_factor = 20;
1663 if (value[last] == 'G' || value[last] == 'g') {
1664 shift_left_factor = 30;
1668 return simple_strtoul((const char *)s, endp, base) << shift_left_factor;
1673 struct bhv_desc *bhv,
1675 struct xfs_mount_args *args,
1678 bhv_vfs_t *vfsp = bhvtovfs(bhv);
1679 char *this_char, *value, *eov;
1680 int dsunit, dswidth, vol_dsunit, vol_dswidth;
1683 args->flags |= XFSMNT_IDELETE;
1684 args->flags |= XFSMNT_BARRIER;
1685 args->flags2 |= XFSMNT2_COMPAT_IOSIZE;
1690 iosize = dsunit = dswidth = vol_dsunit = vol_dswidth = 0;
1692 while ((this_char = strsep(&options, ",")) != NULL) {
1695 if ((value = strchr(this_char, '=')) != NULL)
1698 if (!strcmp(this_char, MNTOPT_LOGBUFS)) {
1699 if (!value || !*value) {
1701 "XFS: %s option requires an argument",
1705 args->logbufs = simple_strtoul(value, &eov, 10);
1706 } else if (!strcmp(this_char, MNTOPT_LOGBSIZE)) {
1707 if (!value || !*value) {
1709 "XFS: %s option requires an argument",
1713 args->logbufsize = suffix_strtoul(value, &eov, 10);
1714 } else if (!strcmp(this_char, MNTOPT_LOGDEV)) {
1715 if (!value || !*value) {
1717 "XFS: %s option requires an argument",
1721 strncpy(args->logname, value, MAXNAMELEN);
1722 } else if (!strcmp(this_char, MNTOPT_MTPT)) {
1723 if (!value || !*value) {
1725 "XFS: %s option requires an argument",
1729 strncpy(args->mtpt, value, MAXNAMELEN);
1730 } else if (!strcmp(this_char, MNTOPT_RTDEV)) {
1731 if (!value || !*value) {
1733 "XFS: %s option requires an argument",
1737 strncpy(args->rtname, value, MAXNAMELEN);
1738 } else if (!strcmp(this_char, MNTOPT_BIOSIZE)) {
1739 if (!value || !*value) {
1741 "XFS: %s option requires an argument",
1745 iosize = simple_strtoul(value, &eov, 10);
1746 args->flags |= XFSMNT_IOSIZE;
1747 args->iosizelog = (uint8_t) iosize;
1748 } else if (!strcmp(this_char, MNTOPT_ALLOCSIZE)) {
1749 if (!value || !*value) {
1751 "XFS: %s option requires an argument",
1755 iosize = suffix_strtoul(value, &eov, 10);
1756 args->flags |= XFSMNT_IOSIZE;
1757 args->iosizelog = ffs(iosize) - 1;
1758 } else if (!strcmp(this_char, MNTOPT_IHASHSIZE)) {
1759 if (!value || !*value) {
1761 "XFS: %s option requires an argument",
1765 args->flags |= XFSMNT_IHASHSIZE;
1766 args->ihashsize = simple_strtoul(value, &eov, 10);
1767 } else if (!strcmp(this_char, MNTOPT_GRPID) ||
1768 !strcmp(this_char, MNTOPT_BSDGROUPS)) {
1769 vfsp->vfs_flag |= VFS_GRPID;
1770 } else if (!strcmp(this_char, MNTOPT_NOGRPID) ||
1771 !strcmp(this_char, MNTOPT_SYSVGROUPS)) {
1772 vfsp->vfs_flag &= ~VFS_GRPID;
1773 } else if (!strcmp(this_char, MNTOPT_WSYNC)) {
1774 args->flags |= XFSMNT_WSYNC;
1775 } else if (!strcmp(this_char, MNTOPT_OSYNCISOSYNC)) {
1776 args->flags |= XFSMNT_OSYNCISOSYNC;
1777 } else if (!strcmp(this_char, MNTOPT_NORECOVERY)) {
1778 args->flags |= XFSMNT_NORECOVERY;
1779 } else if (!strcmp(this_char, MNTOPT_INO64)) {
1780 args->flags |= XFSMNT_INO64;
1783 "XFS: %s option not allowed on this system",
1787 } else if (!strcmp(this_char, MNTOPT_NOALIGN)) {
1788 args->flags |= XFSMNT_NOALIGN;
1789 } else if (!strcmp(this_char, MNTOPT_SWALLOC)) {
1790 args->flags |= XFSMNT_SWALLOC;
1791 } else if (!strcmp(this_char, MNTOPT_SUNIT)) {
1792 if (!value || !*value) {
1794 "XFS: %s option requires an argument",
1798 dsunit = simple_strtoul(value, &eov, 10);
1799 } else if (!strcmp(this_char, MNTOPT_SWIDTH)) {
1800 if (!value || !*value) {
1802 "XFS: %s option requires an argument",
1806 dswidth = simple_strtoul(value, &eov, 10);
1807 } else if (!strcmp(this_char, MNTOPT_64BITINODE)) {
1808 args->flags &= ~XFSMNT_32BITINODES;
1811 "XFS: %s option not allowed on this system",
1815 } else if (!strcmp(this_char, MNTOPT_NOUUID)) {
1816 args->flags |= XFSMNT_NOUUID;
1817 } else if (!strcmp(this_char, MNTOPT_BARRIER)) {
1818 args->flags |= XFSMNT_BARRIER;
1819 } else if (!strcmp(this_char, MNTOPT_NOBARRIER)) {
1820 args->flags &= ~XFSMNT_BARRIER;
1821 } else if (!strcmp(this_char, MNTOPT_IKEEP)) {
1822 args->flags &= ~XFSMNT_IDELETE;
1823 } else if (!strcmp(this_char, MNTOPT_NOIKEEP)) {
1824 args->flags |= XFSMNT_IDELETE;
1825 } else if (!strcmp(this_char, MNTOPT_LARGEIO)) {
1826 args->flags2 &= ~XFSMNT2_COMPAT_IOSIZE;
1827 } else if (!strcmp(this_char, MNTOPT_NOLARGEIO)) {
1828 args->flags2 |= XFSMNT2_COMPAT_IOSIZE;
1829 } else if (!strcmp(this_char, MNTOPT_ATTR2)) {
1830 args->flags |= XFSMNT_ATTR2;
1831 } else if (!strcmp(this_char, MNTOPT_NOATTR2)) {
1832 args->flags &= ~XFSMNT_ATTR2;
1833 } else if (!strcmp(this_char, "osyncisdsync")) {
1834 /* no-op, this is now the default */
1836 "XFS: osyncisdsync is now the default, option is deprecated.");
1837 } else if (!strcmp(this_char, "irixsgid")) {
1839 "XFS: irixsgid is now a sysctl(2) variable, option is deprecated.");
1842 "XFS: unknown mount option [%s].", this_char);
1847 if (args->flags & XFSMNT_NORECOVERY) {
1848 if ((vfsp->vfs_flag & VFS_RDONLY) == 0) {
1850 "XFS: no-recovery mounts must be read-only.");
1855 if ((args->flags & XFSMNT_NOALIGN) && (dsunit || dswidth)) {
1857 "XFS: sunit and swidth options incompatible with the noalign option");
1861 if ((dsunit && !dswidth) || (!dsunit && dswidth)) {
1863 "XFS: sunit and swidth must be specified together");
1867 if (dsunit && (dswidth % dsunit != 0)) {
1869 "XFS: stripe width (%d) must be a multiple of the stripe unit (%d)",
1874 if ((args->flags & XFSMNT_NOALIGN) != XFSMNT_NOALIGN) {
1876 args->sunit = dsunit;
1877 args->flags |= XFSMNT_RETERR;
1879 args->sunit = vol_dsunit;
1881 dswidth ? (args->swidth = dswidth) :
1882 (args->swidth = vol_dswidth);
1884 args->sunit = args->swidth = 0;
1888 if (args->flags & XFSMNT_32BITINODES)
1889 vfsp->vfs_flag |= VFS_32BITINODES;
1891 args->flags |= XFSMNT_FLAGS2;
1897 struct bhv_desc *bhv,
1900 static struct proc_xfs_info {
1904 /* the few simple ones we can get from the mount struct */
1905 { XFS_MOUNT_WSYNC, "," MNTOPT_WSYNC },
1906 { XFS_MOUNT_INO64, "," MNTOPT_INO64 },
1907 { XFS_MOUNT_NOALIGN, "," MNTOPT_NOALIGN },
1908 { XFS_MOUNT_SWALLOC, "," MNTOPT_SWALLOC },
1909 { XFS_MOUNT_NOUUID, "," MNTOPT_NOUUID },
1910 { XFS_MOUNT_NORECOVERY, "," MNTOPT_NORECOVERY },
1911 { XFS_MOUNT_OSYNCISOSYNC, "," MNTOPT_OSYNCISOSYNC },
1914 struct proc_xfs_info *xfs_infop;
1915 struct xfs_mount *mp = XFS_BHVTOM(bhv);
1916 struct bhv_vfs *vfsp = XFS_MTOVFS(mp);
1918 for (xfs_infop = xfs_info; xfs_infop->flag; xfs_infop++) {
1919 if (mp->m_flags & xfs_infop->flag)
1920 seq_puts(m, xfs_infop->str);
1923 if (mp->m_flags & XFS_MOUNT_IHASHSIZE)
1924 seq_printf(m, "," MNTOPT_IHASHSIZE "=%d", mp->m_ihsize);
1926 if (mp->m_flags & XFS_MOUNT_DFLT_IOSIZE)
1927 seq_printf(m, "," MNTOPT_ALLOCSIZE "=%dk",
1928 (int)(1 << mp->m_writeio_log) >> 10);
1930 if (mp->m_logbufs > 0)
1931 seq_printf(m, "," MNTOPT_LOGBUFS "=%d", mp->m_logbufs);
1932 if (mp->m_logbsize > 0)
1933 seq_printf(m, "," MNTOPT_LOGBSIZE "=%dk", mp->m_logbsize >> 10);
1936 seq_printf(m, "," MNTOPT_LOGDEV "=%s", mp->m_logname);
1938 seq_printf(m, "," MNTOPT_RTDEV "=%s", mp->m_rtname);
1940 if (mp->m_dalign > 0)
1941 seq_printf(m, "," MNTOPT_SUNIT "=%d",
1942 (int)XFS_FSB_TO_BB(mp, mp->m_dalign));
1943 if (mp->m_swidth > 0)
1944 seq_printf(m, "," MNTOPT_SWIDTH "=%d",
1945 (int)XFS_FSB_TO_BB(mp, mp->m_swidth));
1947 if (!(mp->m_flags & XFS_MOUNT_IDELETE))
1948 seq_printf(m, "," MNTOPT_IKEEP);
1949 if (!(mp->m_flags & XFS_MOUNT_COMPAT_IOSIZE))
1950 seq_printf(m, "," MNTOPT_LARGEIO);
1952 if (!(vfsp->vfs_flag & VFS_32BITINODES))
1953 seq_printf(m, "," MNTOPT_64BITINODE);
1954 if (vfsp->vfs_flag & VFS_GRPID)
1955 seq_printf(m, "," MNTOPT_GRPID);
1964 xfs_mount_t *mp = XFS_BHVTOM(bdp);
1966 while (atomic_read(&mp->m_active_trans) > 0)
1969 /* Push the superblock and write an unmount record */
1970 xfs_log_unmount_write(mp);
1971 xfs_unmountfs_writesb(mp);
1972 xfs_fs_log_dummy(mp);
1976 bhv_vfsops_t xfs_vfsops = {
1977 BHV_IDENTITY_INIT(VFS_BHV_XFS,VFS_POSITION_XFS),
1978 .vfs_parseargs = xfs_parseargs,
1979 .vfs_showargs = xfs_showargs,
1980 .vfs_mount = xfs_mount,
1981 .vfs_unmount = xfs_unmount,
1982 .vfs_mntupdate = xfs_mntupdate,
1983 .vfs_root = xfs_root,
1984 .vfs_statvfs = xfs_statvfs,
1985 .vfs_sync = xfs_sync,
1986 .vfs_vget = xfs_vget,
1987 .vfs_dmapiops = (vfs_dmapiops_t)fs_nosys,
1988 .vfs_quotactl = (vfs_quotactl_t)fs_nosys,
1989 .vfs_init_vnode = xfs_initialize_vnode,
1990 .vfs_force_shutdown = xfs_do_force_shutdown,
1991 .vfs_freeze = xfs_freeze,