drop net-snmp dep
[unleashed.git] / kernel / fs / ufs / ufs_vfsops.c
blob91222fffdc043914dd1a49e88eae865f72b0ddae
1 /*
2 * CDDL HEADER START
4 * The contents of this file are subject to the terms of the
5 * Common Development and Distribution License (the "License").
6 * You may not use this file except in compliance with the License.
8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9 * or http://www.opensolaris.org/os/licensing.
10 * See the License for the specific language governing permissions
11 * and limitations under the License.
13 * When distributing Covered Code, include this CDDL HEADER in each
14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 * If applicable, add the following below this CDDL HEADER, with the
16 * fields enclosed by brackets "[]" replaced with your own identifying
17 * information: Portions Copyright [yyyy] [name of copyright owner]
19 * CDDL HEADER END
23 * Copyright 2009 Sun Microsystems, Inc. All rights reserved.
24 * Use is subject to license terms.
25 * Copyright 2016 Nexenta Systems, Inc.
26 * Copyright (c) 2017 by Delphix. All rights reserved.
29 /* Copyright (c) 1983, 1984, 1985, 1986, 1987, 1988, 1989 AT&T */
30 /* All Rights Reserved */
33 * University Copyright- Copyright (c) 1982, 1986, 1988
34 * The Regents of the University of California
35 * All Rights Reserved
37 * University Acknowledgment- Portions of this document are derived from
38 * software developed by the University of California, Berkeley, and its
39 * contributors.
42 #include <sys/types.h>
43 #include <sys/t_lock.h>
44 #include <sys/param.h>
45 #include <sys/systm.h>
46 #include <sys/bitmap.h>
47 #include <sys/sysmacros.h>
48 #include <sys/kmem.h>
49 #include <sys/signal.h>
50 #include <sys/user.h>
51 #include <sys/proc.h>
52 #include <sys/disp.h>
53 #include <sys/buf.h>
54 #include <sys/pathname.h>
55 #include <sys/vfs.h>
56 #include <sys/vnode.h>
57 #include <sys/file.h>
58 #include <sys/atomic.h>
59 #include <sys/uio.h>
60 #include <sys/dkio.h>
61 #include <sys/cred.h>
62 #include <sys/conf.h>
63 #include <sys/dnlc.h>
64 #include <sys/kstat.h>
65 #include <sys/acl.h>
66 #include <sys/fs/ufs_fsdir.h>
67 #include <sys/fs/ufs_fs.h>
68 #include <sys/fs/ufs_inode.h>
69 #include <sys/fs/ufs_mount.h>
70 #include <sys/fs/ufs_acl.h>
71 #include <sys/fs/ufs_panic.h>
72 #include <sys/fs/ufs_bio.h>
73 #include <sys/fs/ufs_quota.h>
74 #include <sys/fs/ufs_log.h>
75 #undef NFS
76 #include <sys/statvfs.h>
77 #include <sys/mount.h>
78 #include <sys/mntent.h>
79 #include <sys/swap.h>
80 #include <sys/errno.h>
81 #include <sys/debug.h>
82 #include "sys/fs_subr.h"
83 #include <sys/cmn_err.h>
84 #include <sys/dnlc.h>
85 #include <sys/fssnap_if.h>
86 #include <sys/sunddi.h>
87 #include <sys/bootconf.h>
88 #include <sys/policy.h>
89 #include <sys/zone.h>
92 * This is the loadable module wrapper.
94 #include <sys/modctl.h>
96 int ufsfstype;
97 static const struct vfsops ufs_vfsops;
98 static int ufsinit(int, char *);
99 static int mountfs();
100 extern int highbit();
101 extern struct instats ins;
102 extern struct vnode *common_specvp(struct vnode *vp);
103 extern vfs_t EIO_vfs;
105 struct dquot *dquot, *dquotNDQUOT;
108 * Cylinder group summary information handling tunable.
109 * This defines when these deltas get logged.
110 * If the number of cylinders in the file system is over the
111 * tunable then we log csum updates. Otherwise the updates are only
112 * done for performance on unmount. After a panic they can be
113 * quickly constructed during mounting. See ufs_construct_si()
114 * called from ufs_getsummaryinfo().
116 * This performance feature can of course be disabled by setting
117 * ufs_ncg_log to 0, and fully enabled by setting it to 0xffffffff.
119 #define UFS_LOG_NCG_DEFAULT 10000
120 uint32_t ufs_ncg_log = UFS_LOG_NCG_DEFAULT;
123 * ufs_clean_root indicates whether the root fs went down cleanly
125 static int ufs_clean_root = 0;
128 * UFS Mount options table
130 static char *intr_cancel[] = { MNTOPT_NOINTR, NULL };
131 static char *nointr_cancel[] = { MNTOPT_INTR, NULL };
132 static char *forcedirectio_cancel[] = { MNTOPT_NOFORCEDIRECTIO, NULL };
133 static char *noforcedirectio_cancel[] = { MNTOPT_FORCEDIRECTIO, NULL };
134 static char *largefiles_cancel[] = { MNTOPT_NOLARGEFILES, NULL };
135 static char *nolargefiles_cancel[] = { MNTOPT_LARGEFILES, NULL };
136 static char *logging_cancel[] = { MNTOPT_NOLOGGING, NULL };
137 static char *nologging_cancel[] = { MNTOPT_LOGGING, NULL };
138 static char *xattr_cancel[] = { MNTOPT_NOXATTR, NULL };
139 static char *noxattr_cancel[] = { MNTOPT_XATTR, NULL };
140 static char *quota_cancel[] = { MNTOPT_NOQUOTA, NULL };
141 static char *noquota_cancel[] = { MNTOPT_QUOTA, NULL };
142 static char *dfratime_cancel[] = { MNTOPT_NODFRATIME, NULL };
143 static char *nodfratime_cancel[] = { MNTOPT_DFRATIME, NULL };
145 static mntopt_t mntopts[] = {
147 * option name cancel option default arg flags
148 * ufs arg flag
150 { MNTOPT_INTR, intr_cancel, NULL, MO_DEFAULT,
151 NULL },
152 { MNTOPT_NOINTR, nointr_cancel, NULL, 0,
153 (void *)UFSMNT_NOINTR },
154 { MNTOPT_SYNCDIR, NULL, NULL, 0,
155 (void *)UFSMNT_SYNCDIR },
156 { MNTOPT_FORCEDIRECTIO, forcedirectio_cancel, NULL, 0,
157 (void *)UFSMNT_FORCEDIRECTIO },
158 { MNTOPT_NOFORCEDIRECTIO, noforcedirectio_cancel, NULL, 0,
159 (void *)UFSMNT_NOFORCEDIRECTIO },
160 { MNTOPT_NOSETSEC, NULL, NULL, 0,
161 (void *)UFSMNT_NOSETSEC },
162 { MNTOPT_LARGEFILES, largefiles_cancel, NULL, MO_DEFAULT,
163 (void *)UFSMNT_LARGEFILES },
164 { MNTOPT_NOLARGEFILES, nolargefiles_cancel, NULL, 0,
165 NULL },
166 { MNTOPT_LOGGING, logging_cancel, NULL, MO_TAG,
167 (void *)UFSMNT_LOGGING },
168 { MNTOPT_NOLOGGING, nologging_cancel, NULL,
169 MO_NODISPLAY|MO_DEFAULT|MO_TAG, NULL },
170 { MNTOPT_QUOTA, quota_cancel, NULL, MO_IGNORE,
171 NULL },
172 { MNTOPT_NOQUOTA, noquota_cancel, NULL,
173 MO_NODISPLAY|MO_DEFAULT, NULL },
174 { MNTOPT_XATTR, xattr_cancel, NULL, MO_DEFAULT,
175 NULL },
176 { MNTOPT_NOXATTR, noxattr_cancel, NULL, 0,
177 NULL },
178 { MNTOPT_NOATIME, NULL, NULL, 0,
179 (void *)UFSMNT_NOATIME },
180 { MNTOPT_DFRATIME, dfratime_cancel, NULL, 0,
181 NULL },
182 { MNTOPT_NODFRATIME, nodfratime_cancel, NULL,
183 MO_NODISPLAY|MO_DEFAULT, (void *)UFSMNT_NODFRATIME },
184 { MNTOPT_ONERROR, NULL, UFSMNT_ONERROR_PANIC_STR,
185 MO_DEFAULT|MO_HASVALUE, NULL },
188 static mntopts_t ufs_mntopts = {
189 sizeof (mntopts) / sizeof (mntopt_t),
190 mntopts
193 static vfsdef_t vfw = {
194 VFSDEF_VERSION,
195 "ufs",
196 ufsinit,
197 VSW_HASPROTO|VSW_CANREMOUNT|VSW_STATS|VSW_CANLOFI|VSW_MOUNTDEV,
198 &ufs_mntopts
202 * Module linkage information for the kernel.
204 extern struct mod_ops mod_fsops;
206 static struct modlfs modlfs = {
207 &mod_fsops, "filesystem for ufs", &vfw
210 static struct modlinkage modlinkage = {
211 MODREV_1, (void *)&modlfs, NULL
215 * An attempt has been made to make this module unloadable. In order to
216 * test it, we need a system in which the root fs is NOT ufs. THIS HAS NOT
217 * BEEN DONE
220 extern kstat_t *ufs_inode_kstat;
221 extern uint_t ufs_lockfs_key;
222 extern void ufs_lockfs_tsd_destructor(void *);
223 extern uint_t bypass_snapshot_throttle_key;
226 _init(void)
229 * Create an index into the per thread array so that any thread doing
230 * VOP will have a lockfs mark on it.
232 tsd_create(&ufs_lockfs_key, ufs_lockfs_tsd_destructor);
233 tsd_create(&bypass_snapshot_throttle_key, NULL);
234 return (mod_install(&modlinkage));
238 _fini(void)
240 return (EBUSY);
244 _info(struct modinfo *modinfop)
246 return (mod_info(&modlinkage, modinfop));
249 extern struct vnode *makespecvp(dev_t dev, vtype_t type);
251 extern kmutex_t ufs_scan_lock;
253 static int mountfs(struct vfs *, enum whymountroot, struct vnode *, char *,
254 struct cred *, int, void *, int);
257 static int
258 ufs_mount(struct vfs *vfsp, struct vnode *mvp, struct mounta *uap,
259 struct cred *cr)
261 char *data = uap->dataptr;
262 int datalen = uap->datalen;
263 dev_t dev;
264 struct vnode *lvp = NULL;
265 struct vnode *svp = NULL;
266 struct pathname dpn;
267 int error;
268 enum whymountroot why = ROOT_INIT;
269 struct ufs_args args;
270 int oflag, aflag;
271 int fromspace = (uap->flags & MS_SYSSPACE) ?
272 UIO_SYSSPACE : UIO_USERSPACE;
274 if ((error = secpolicy_fs_mount(cr, mvp, vfsp)) != 0)
275 return (error);
277 if (mvp->v_type != VDIR)
278 return (ENOTDIR);
280 mutex_enter(&mvp->v_lock);
281 if ((uap->flags & MS_REMOUNT) == 0 &&
282 (uap->flags & MS_OVERLAY) == 0 &&
283 (mvp->v_count != 1 || (mvp->v_flag & VROOT))) {
284 mutex_exit(&mvp->v_lock);
285 return (EBUSY);
287 mutex_exit(&mvp->v_lock);
290 * Get arguments
292 bzero(&args, sizeof (args));
293 if ((uap->flags & MS_DATA) && data != NULL && datalen != 0) {
294 int copy_result = 0;
296 if (datalen > sizeof (args))
297 return (EINVAL);
298 if (uap->flags & MS_SYSSPACE)
299 bcopy(data, &args, datalen);
300 else
301 copy_result = copyin(data, &args, datalen);
302 if (copy_result)
303 return (EFAULT);
304 datalen = sizeof (struct ufs_args);
305 } else {
306 datalen = 0;
309 if ((vfsp->vfs_flag & VFS_RDONLY) != 0 ||
310 (uap->flags & MS_RDONLY) != 0) {
311 oflag = FREAD;
312 aflag = VREAD;
313 } else {
314 oflag = FREAD | FWRITE;
315 aflag = VREAD | VWRITE;
319 * Read in the mount point pathname
320 * (so we can record the directory the file system was last mounted on).
322 if (error = pn_get(uap->dir, fromspace, &dpn))
323 return (error);
326 * Resolve path name of special file being mounted.
328 if (error = lookupname(uap->spec, fromspace, FOLLOW, NULL, &svp)) {
329 pn_free(&dpn);
330 return (error);
333 error = vfs_get_lofi(vfsp, &lvp);
335 if (error > 0) {
336 VN_RELE(svp);
337 pn_free(&dpn);
338 return (error);
339 } else if (error == 0) {
340 dev = lvp->v_rdev;
342 if (getmajor(dev) >= devcnt) {
343 error = ENXIO;
344 goto out;
346 } else {
347 dev = svp->v_rdev;
349 if (svp->v_type != VBLK) {
350 VN_RELE(svp);
351 pn_free(&dpn);
352 return (ENOTBLK);
355 if (getmajor(dev) >= devcnt) {
356 error = ENXIO;
357 goto out;
360 if ((error = secpolicy_spec_open(cr, svp, oflag)) != 0) {
361 VN_RELE(svp);
362 pn_free(&dpn);
363 return (error);
367 if (uap->flags & MS_REMOUNT)
368 why = ROOT_REMOUNT;
371 * Open device/file mounted on. We need this to check whether
372 * the caller has sufficient rights to access the resource in
373 * question. When bio is fixed for vnodes this can all be vnode
374 * operations.
376 if ((error = fop_access(svp, aflag, 0, cr, NULL)) != 0)
377 goto out;
380 * Ensure that this device isn't already mounted or in progress on a
381 * mount unless this is a REMOUNT request or we are told to suppress
382 * mount checks. Global mounts require special handling.
384 if ((uap->flags & MS_NOCHECK) == 0) {
385 if (vfs_devmounting(dev, vfsp)) {
386 error = EBUSY;
387 goto out;
389 if (vfs_devismounted(dev)) {
390 if ((uap->flags & MS_REMOUNT) == 0) {
391 error = EBUSY;
392 goto out;
398 * If the device is a tape, mount it read only
400 if (devopsp[getmajor(dev)]->devo_cb_ops->cb_flag & D_TAPE) {
401 vfsp->vfs_flag |= VFS_RDONLY;
402 vfs_setmntopt(vfsp, MNTOPT_RO, NULL, 0);
404 if (uap->flags & MS_RDONLY)
405 vfsp->vfs_flag |= VFS_RDONLY;
408 * Mount the filesystem, free the device vnode on error.
410 error = mountfs(vfsp, why, lvp != NULL ? lvp : svp,
411 dpn.pn_path, cr, 0, &args, datalen);
413 if (error == 0) {
414 vfs_set_feature(vfsp, VFSFT_SYSATTR_VIEWS);
417 * If lofi, drop our reference to the original file.
419 if (lvp != NULL)
420 VN_RELE(svp);
423 out:
424 pn_free(&dpn);
426 if (error) {
427 if (lvp != NULL)
428 VN_RELE(lvp);
429 if (svp != NULL)
430 VN_RELE(svp);
432 return (error);
436 * Mount root file system.
437 * "why" is ROOT_INIT on initial call ROOT_REMOUNT if called to
438 * remount the root file system, and ROOT_UNMOUNT if called to
439 * unmount the root (e.g., as part of a system shutdown).
441 * XXX - this may be partially machine-dependent; it, along with the VFS_SWAPVP
442 * operation, goes along with auto-configuration. A mechanism should be
443 * provided by which machine-INdependent code in the kernel can say "get me the
444 * right root file system" and "get me the right initial swap area", and have
445 * that done in what may well be a machine-dependent fashion.
446 * Unfortunately, it is also file-system-type dependent (NFS gets it via
447 * bootparams calls, UFS gets it from various and sundry machine-dependent
448 * mechanisms, as SPECFS does for swap).
450 static int
451 ufs_mountroot(struct vfs *vfsp, enum whymountroot why)
453 struct fs *fsp;
454 int error;
455 static int ufsrootdone = 0;
456 dev_t rootdev;
457 struct vnode *vp;
458 struct vnode *devvp = 0;
459 int ovflags;
460 int doclkset;
461 ufsvfs_t *ufsvfsp;
463 if (why == ROOT_INIT) {
464 if (ufsrootdone++)
465 return (EBUSY);
466 rootdev = getrootdev();
467 if (rootdev == (dev_t)NODEV)
468 return (ENODEV);
469 vfsp->vfs_dev = rootdev;
470 vfsp->vfs_flag |= VFS_RDONLY;
471 } else if (why == ROOT_REMOUNT) {
472 vp = ((struct ufsvfs *)vfsp->vfs_data)->vfs_devvp;
473 (void) dnlc_purge_vfsp(vfsp, 0);
474 vp = common_specvp(vp);
475 (void) fop_putpage(vp, 0, (size_t)0, B_INVAL,
476 CRED(), NULL);
477 (void) bfinval(vfsp->vfs_dev, 0);
478 fsp = getfs(vfsp);
480 ovflags = vfsp->vfs_flag;
481 vfsp->vfs_flag &= ~VFS_RDONLY;
482 vfsp->vfs_flag |= VFS_REMOUNT;
483 rootdev = vfsp->vfs_dev;
484 } else if (why == ROOT_UNMOUNT) {
485 if (vfs_lock(vfsp) == 0) {
486 (void) ufs_flush(vfsp);
488 * Mark the log as fully rolled
490 ufsvfsp = (ufsvfs_t *)vfsp->vfs_data;
491 fsp = ufsvfsp->vfs_fs;
492 if (TRANS_ISTRANS(ufsvfsp) &&
493 !TRANS_ISERROR(ufsvfsp) &&
494 (fsp->fs_rolled == FS_NEED_ROLL)) {
495 ml_unit_t *ul = ufsvfsp->vfs_log;
497 error = ufs_putsummaryinfo(ul->un_dev,
498 ufsvfsp, fsp);
499 if (error == 0) {
500 fsp->fs_rolled = FS_ALL_ROLLED;
501 UFS_BWRITE2(NULL, ufsvfsp->vfs_bufp);
504 vfs_unlock(vfsp);
505 } else {
506 ufs_update(0);
509 vp = ((struct ufsvfs *)vfsp->vfs_data)->vfs_devvp;
510 (void) fop_close(vp, FREAD|FWRITE, 1,
511 0, CRED(), NULL);
512 return (0);
514 error = vfs_lock(vfsp);
515 if (error)
516 return (error);
518 devvp = makespecvp(rootdev, VBLK);
520 /* If RO media, don't call clkset() (see below) */
521 doclkset = 1;
522 if (why == ROOT_INIT) {
523 error = fop_open(&devvp, FREAD|FWRITE, CRED(), NULL);
524 if (error == 0) {
525 (void) fop_close(devvp, FREAD|FWRITE, 1,
526 0, CRED(), NULL);
527 } else {
528 doclkset = 0;
532 error = mountfs(vfsp, why, devvp, "/", CRED(), 1, NULL, 0);
534 * XXX - assumes root device is not indirect, because we don't set
535 * rootvp. Is rootvp used for anything? If so, make another arg
536 * to mountfs.
538 if (error) {
539 vfs_unlock(vfsp);
540 if (why == ROOT_REMOUNT)
541 vfsp->vfs_flag = ovflags;
542 if (rootvp) {
543 VN_RELE(rootvp);
544 rootvp = NULL;
546 VN_RELE(devvp);
547 return (error);
549 if (why == ROOT_INIT)
550 vfs_add(NULL, vfsp,
551 (vfsp->vfs_flag & VFS_RDONLY) ? MS_RDONLY : 0);
552 vfs_unlock(vfsp);
553 fsp = getfs(vfsp);
554 clkset(doclkset ? fsp->fs_time : -1);
555 ufsvfsp = (ufsvfs_t *)vfsp->vfs_data;
556 if (ufsvfsp->vfs_log) {
557 vfs_setmntopt(vfsp, MNTOPT_LOGGING, NULL, 0);
559 return (0);
562 static int
563 remountfs(struct vfs *vfsp, dev_t dev, void *raw_argsp, int args_len)
565 struct ufsvfs *ufsvfsp = (struct ufsvfs *)vfsp->vfs_data;
566 struct ulockfs *ulp = &ufsvfsp->vfs_ulockfs;
567 struct buf *bp = ufsvfsp->vfs_bufp;
568 struct fs *fsp = (struct fs *)bp->b_un.b_addr;
569 struct fs *fspt;
570 struct buf *tpt = 0;
571 int error = 0;
572 int flags = 0;
574 if (args_len == sizeof (struct ufs_args) && raw_argsp)
575 flags = ((struct ufs_args *)raw_argsp)->flags;
577 /* cannot remount to RDONLY */
578 if (vfsp->vfs_flag & VFS_RDONLY)
579 return (ENOTSUP);
581 /* whoops, wrong dev */
582 if (vfsp->vfs_dev != dev)
583 return (EINVAL);
586 * synchronize w/ufs ioctls
588 mutex_enter(&ulp->ul_lock);
589 atomic_inc_ulong(&ufs_quiesce_pend);
592 * reset options
594 ufsvfsp->vfs_nointr = flags & UFSMNT_NOINTR;
595 ufsvfsp->vfs_syncdir = flags & UFSMNT_SYNCDIR;
596 ufsvfsp->vfs_nosetsec = flags & UFSMNT_NOSETSEC;
597 ufsvfsp->vfs_noatime = flags & UFSMNT_NOATIME;
598 if ((flags & UFSMNT_NODFRATIME) || ufsvfsp->vfs_noatime)
599 ufsvfsp->vfs_dfritime &= ~UFS_DFRATIME;
600 else /* dfratime, default behavior */
601 ufsvfsp->vfs_dfritime |= UFS_DFRATIME;
602 if (flags & UFSMNT_FORCEDIRECTIO)
603 ufsvfsp->vfs_forcedirectio = 1;
604 else /* default is no direct I/O */
605 ufsvfsp->vfs_forcedirectio = 0;
606 ufsvfsp->vfs_iotstamp = ddi_get_lbolt();
609 * set largefiles flag in ufsvfs equal to the
610 * value passed in by the mount command. If
611 * it is "nolargefiles", and the flag is set
612 * in the superblock, the mount fails.
614 if (!(flags & UFSMNT_LARGEFILES)) { /* "nolargefiles" */
615 if (fsp->fs_flags & FSLARGEFILES) {
616 error = EFBIG;
617 goto remounterr;
619 ufsvfsp->vfs_lfflags &= ~UFS_LARGEFILES;
620 } else /* "largefiles" */
621 ufsvfsp->vfs_lfflags |= UFS_LARGEFILES;
623 * read/write to read/write; all done
625 if (fsp->fs_ronly == 0)
626 goto remounterr;
629 * fix-on-panic assumes RO->RW remount implies system-critical fs
630 * if it is shortly after boot; so, don't attempt to lock and fix
631 * (unless the user explicitly asked for another action on error)
632 * XXX UFSMNT_ONERROR_RDONLY rather than UFSMNT_ONERROR_PANIC
634 #define BOOT_TIME_LIMIT (180*hz)
635 if (!(flags & UFSMNT_ONERROR_FLGMASK) &&
636 ddi_get_lbolt() < BOOT_TIME_LIMIT) {
637 cmn_err(CE_WARN, "%s is required to be mounted onerror=%s",
638 ufsvfsp->vfs_fs->fs_fsmnt, UFSMNT_ONERROR_PANIC_STR);
639 flags |= UFSMNT_ONERROR_PANIC;
642 if ((error = ufsfx_mount(ufsvfsp, flags)) != 0)
643 goto remounterr;
646 * quiesce the file system
648 error = ufs_quiesce(ulp);
649 if (error)
650 goto remounterr;
652 tpt = UFS_BREAD(ufsvfsp, ufsvfsp->vfs_dev, SBLOCK, SBSIZE);
653 if (tpt->b_flags & B_ERROR) {
654 error = EIO;
655 goto remounterr;
657 fspt = (struct fs *)tpt->b_un.b_addr;
658 if (((fspt->fs_magic != FS_MAGIC) &&
659 (fspt->fs_magic != MTB_UFS_MAGIC)) ||
660 (fspt->fs_magic == FS_MAGIC &&
661 (fspt->fs_version != UFS_EFISTYLE4NONEFI_VERSION_2 &&
662 fspt->fs_version != UFS_VERSION_MIN)) ||
663 (fspt->fs_magic == MTB_UFS_MAGIC &&
664 (fspt->fs_version > MTB_UFS_VERSION_1 ||
665 fspt->fs_version < MTB_UFS_VERSION_MIN)) ||
666 fspt->fs_bsize > MAXBSIZE || fspt->fs_frag > MAXFRAG ||
667 fspt->fs_bsize < sizeof (struct fs) || fspt->fs_bsize < PAGESIZE) {
668 tpt->b_flags |= B_STALE | B_AGE;
669 error = EINVAL;
670 goto remounterr;
673 if (ufsvfsp->vfs_log && (ufsvfsp->vfs_log->un_flags & LDL_NOROLL)) {
674 ufsvfsp->vfs_log->un_flags &= ~LDL_NOROLL;
675 logmap_start_roll(ufsvfsp->vfs_log);
678 if (TRANS_ISERROR(ufsvfsp))
679 goto remounterr;
680 TRANS_DOMATAMAP(ufsvfsp);
682 if ((fspt->fs_state + fspt->fs_time == FSOKAY) &&
683 fspt->fs_clean == FSLOG && !TRANS_ISTRANS(ufsvfsp)) {
684 ufsvfsp->vfs_log = NULL;
685 ufsvfsp->vfs_domatamap = 0;
686 error = ENOSPC;
687 goto remounterr;
690 if (fspt->fs_state + fspt->fs_time == FSOKAY &&
691 (fspt->fs_clean == FSCLEAN ||
692 fspt->fs_clean == FSSTABLE ||
693 fspt->fs_clean == FSLOG)) {
696 * Ensure that ufs_getsummaryinfo doesn't reconstruct
697 * the summary info.
699 error = ufs_getsummaryinfo(vfsp->vfs_dev, ufsvfsp, fspt);
700 if (error)
701 goto remounterr;
703 /* preserve mount name */
704 (void) strncpy(fspt->fs_fsmnt, fsp->fs_fsmnt, MAXMNTLEN);
705 /* free the old cg space */
706 kmem_free(fsp->fs_u.fs_csp, fsp->fs_cssize);
707 /* switch in the new superblock */
708 fspt->fs_rolled = FS_NEED_ROLL;
709 bcopy(tpt->b_un.b_addr, bp->b_un.b_addr, fspt->fs_sbsize);
711 fsp->fs_clean = FSSTABLE;
712 } /* superblock updated in memory */
713 tpt->b_flags |= B_STALE | B_AGE;
714 brelse(tpt);
715 tpt = 0;
717 if (fsp->fs_clean != FSSTABLE) {
718 error = ENOSPC;
719 goto remounterr;
723 if (TRANS_ISTRANS(ufsvfsp)) {
724 fsp->fs_clean = FSLOG;
725 ufsvfsp->vfs_dio = 0;
726 } else
727 if (ufsvfsp->vfs_dio)
728 fsp->fs_clean = FSSUSPEND;
730 TRANS_MATA_MOUNT(ufsvfsp);
732 fsp->fs_fmod = 0;
733 fsp->fs_ronly = 0;
735 atomic_dec_ulong(&ufs_quiesce_pend);
736 cv_broadcast(&ulp->ul_cv);
737 mutex_exit(&ulp->ul_lock);
739 if (TRANS_ISTRANS(ufsvfsp)) {
742 * start the delete thread
744 ufs_thread_start(&ufsvfsp->vfs_delete, ufs_thread_delete, vfsp);
747 * start the reclaim thread
749 if (fsp->fs_reclaim & (FS_RECLAIM|FS_RECLAIMING)) {
750 fsp->fs_reclaim &= ~FS_RECLAIM;
751 fsp->fs_reclaim |= FS_RECLAIMING;
752 ufs_thread_start(&ufsvfsp->vfs_reclaim,
753 ufs_thread_reclaim, vfsp);
757 TRANS_SBWRITE(ufsvfsp, TOP_MOUNT);
759 return (0);
761 remounterr:
762 if (tpt)
763 brelse(tpt);
764 atomic_dec_ulong(&ufs_quiesce_pend);
765 cv_broadcast(&ulp->ul_cv);
766 mutex_exit(&ulp->ul_lock);
767 return (error);
771 * If the device maxtransfer size is not available, we use ufs_maxmaxphys
772 * along with the system value for maxphys to determine the value for
773 * maxtransfer.
775 int ufs_maxmaxphys = (1024 * 1024);
777 #include <sys/ddi.h> /* for delay(9f) */
779 int ufs_mount_error_delay = 20; /* default to 20ms */
780 int ufs_mount_timeout = 60000; /* default to 1 minute */
782 static int
783 mountfs(struct vfs *vfsp, enum whymountroot why, struct vnode *devvp,
784 char *path, cred_t *cr, int isroot, void *raw_argsp, int args_len)
786 dev_t dev = devvp->v_rdev;
787 struct fs *fsp;
788 struct ufsvfs *ufsvfsp = 0;
789 struct buf *bp = 0;
790 struct buf *tp = 0;
791 struct dk_cinfo ci;
792 int error = 0;
793 size_t len;
794 int needclose = 0;
795 int needtrans = 0;
796 struct inode *rip;
797 struct vnode *rvp = NULL;
798 int flags = 0;
799 kmutex_t *ihm;
800 int elapsed;
801 int status;
802 extern int maxphys;
804 if (args_len == sizeof (struct ufs_args) && raw_argsp)
805 flags = ((struct ufs_args *)raw_argsp)->flags;
807 ASSERT(vfs_lock_held(vfsp));
809 if (why == ROOT_INIT) {
811 * Open block device mounted on.
812 * When bio is fixed for vnodes this can all be vnode
813 * operations.
815 error = fop_open(&devvp,
816 (vfsp->vfs_flag & VFS_RDONLY) ? FREAD : FREAD|FWRITE,
817 cr, NULL);
818 if (error)
819 goto out;
820 needclose = 1;
823 * Refuse to go any further if this
824 * device is being used for swapping.
826 if (IS_SWAPVP(devvp)) {
827 error = EBUSY;
828 goto out;
833 * check for dev already mounted on
835 if (vfsp->vfs_flag & VFS_REMOUNT) {
836 error = remountfs(vfsp, dev, raw_argsp, args_len);
837 if (error == 0)
838 VN_RELE(devvp);
839 return (error);
842 ASSERT(devvp != 0);
845 * Flush back any dirty pages on the block device to
846 * try and keep the buffer cache in sync with the page
847 * cache if someone is trying to use block devices when
848 * they really should be using the raw device.
850 (void) fop_putpage(common_specvp(devvp), 0,
851 (size_t)0, B_INVAL, cr, NULL);
854 * read in superblock
856 ufsvfsp = kmem_zalloc(sizeof (struct ufsvfs), KM_SLEEP);
857 tp = UFS_BREAD(ufsvfsp, dev, SBLOCK, SBSIZE);
858 if (tp->b_flags & B_ERROR)
859 goto out;
860 fsp = (struct fs *)tp->b_un.b_addr;
862 if ((fsp->fs_magic != FS_MAGIC) && (fsp->fs_magic != MTB_UFS_MAGIC)) {
863 cmn_err(CE_NOTE,
864 "mount: not a UFS magic number (0x%x)", fsp->fs_magic);
865 error = EINVAL;
866 goto out;
869 if ((fsp->fs_magic == FS_MAGIC) &&
870 (fsp->fs_version != UFS_EFISTYLE4NONEFI_VERSION_2 &&
871 fsp->fs_version != UFS_VERSION_MIN)) {
872 cmn_err(CE_NOTE,
873 "mount: unrecognized version of UFS on-disk format: %d",
874 fsp->fs_version);
875 error = EINVAL;
876 goto out;
879 if ((fsp->fs_magic == MTB_UFS_MAGIC) &&
880 (fsp->fs_version > MTB_UFS_VERSION_1 ||
881 fsp->fs_version < MTB_UFS_VERSION_MIN)) {
882 cmn_err(CE_NOTE,
883 "mount: unrecognized version of UFS on-disk format: %d",
884 fsp->fs_version);
885 error = EINVAL;
886 goto out;
889 #ifndef _LP64
890 if (fsp->fs_magic == MTB_UFS_MAGIC) {
892 * Find the size of the device in sectors. If the
893 * the size in sectors is greater than INT_MAX, it's
894 * a multi-terabyte file system, which can't be
895 * mounted by a 32-bit kernel. We can't use the
896 * fsbtodb() macro in the next line because the macro
897 * casts the intermediate values to daddr_t, which is
898 * a 32-bit quantity in a 32-bit kernel. Here we
899 * really do need the intermediate values to be held
900 * in 64-bit quantities because we're checking for
901 * overflow of a 32-bit field.
903 if ((((diskaddr_t)(fsp->fs_size)) << fsp->fs_fsbtodb)
904 > INT_MAX) {
905 cmn_err(CE_NOTE,
906 "mount: multi-terabyte UFS cannot be"
907 " mounted by a 32-bit kernel");
908 error = EINVAL;
909 goto out;
913 #endif
915 if (fsp->fs_bsize > MAXBSIZE || fsp->fs_frag > MAXFRAG ||
916 fsp->fs_bsize < sizeof (struct fs) || fsp->fs_bsize < PAGESIZE) {
917 error = EINVAL; /* also needs translation */
918 goto out;
922 * Allocate VFS private data.
924 vfsp->vfs_bcount = 0;
925 vfsp->vfs_data = (caddr_t)ufsvfsp;
926 vfsp->vfs_fstype = ufsfstype;
927 vfsp->vfs_dev = dev;
928 vfsp->vfs_flag |= VFS_NOTRUNC;
929 vfs_make_fsid(&vfsp->vfs_fsid, dev, ufsfstype);
930 ufsvfsp->vfs_devvp = devvp;
933 * Cross-link with vfs and add to instance list.
935 ufsvfsp->vfs_vfs = vfsp;
936 ufs_vfs_add(ufsvfsp);
938 ufsvfsp->vfs_dev = dev;
939 ufsvfsp->vfs_bufp = tp;
941 ufsvfsp->vfs_dirsize = INODESIZE + (4 * ALLOCSIZE) + fsp->fs_fsize;
942 ufsvfsp->vfs_minfrags =
943 (int)((int64_t)fsp->fs_dsize * fsp->fs_minfree / 100);
945 * if mount allows largefiles, indicate so in ufsvfs
947 if (flags & UFSMNT_LARGEFILES)
948 ufsvfsp->vfs_lfflags |= UFS_LARGEFILES;
950 * Initialize threads
952 ufs_delete_init(ufsvfsp, 1);
953 ufs_thread_init(&ufsvfsp->vfs_reclaim, 0);
956 * Chicken and egg problem. The superblock may have deltas
957 * in the log. So after the log is scanned we reread the
958 * superblock. We guarantee that the fields needed to
959 * scan the log will not be in the log.
961 if (fsp->fs_logbno && fsp->fs_clean == FSLOG &&
962 (fsp->fs_state + fsp->fs_time == FSOKAY)) {
963 error = lufs_snarf(ufsvfsp, fsp, (vfsp->vfs_flag & VFS_RDONLY));
964 if (error) {
966 * Allow a ro mount to continue even if the
967 * log cannot be processed - yet.
969 if (!(vfsp->vfs_flag & VFS_RDONLY)) {
970 cmn_err(CE_WARN, "Error accessing ufs "
971 "log for %s; Please run fsck(8)", path);
972 goto out;
975 tp->b_flags |= (B_AGE | B_STALE);
976 brelse(tp);
977 tp = UFS_BREAD(ufsvfsp, dev, SBLOCK, SBSIZE);
978 fsp = (struct fs *)tp->b_un.b_addr;
979 ufsvfsp->vfs_bufp = tp;
980 if (tp->b_flags & B_ERROR)
981 goto out;
985 * Set logging mounted flag used by lockfs
987 ufsvfsp->vfs_validfs = UT_MOUNTED;
990 * Copy the super block into a buffer in its native size.
991 * Use ngeteblk to allocate the buffer
993 bp = ngeteblk(fsp->fs_bsize);
994 ufsvfsp->vfs_bufp = bp;
995 bp->b_edev = dev;
996 bp->b_dev = cmpdev(dev);
997 bp->b_blkno = SBLOCK;
998 bp->b_bcount = fsp->fs_sbsize;
999 bcopy(tp->b_un.b_addr, bp->b_un.b_addr, fsp->fs_sbsize);
1000 tp->b_flags |= B_STALE | B_AGE;
1001 brelse(tp);
1002 tp = 0;
1004 fsp = (struct fs *)bp->b_un.b_addr;
1006 * Mount fails if superblock flag indicates presence of large
1007 * files and filesystem is attempted to be mounted 'nolargefiles'.
1008 * The exception is for a read only mount of root, which we
1009 * always want to succeed, so fsck can fix potential problems.
1010 * The assumption is that we will remount root at some point,
1011 * and the remount will enforce the mount option.
1013 if (!(isroot & (vfsp->vfs_flag & VFS_RDONLY)) &&
1014 (fsp->fs_flags & FSLARGEFILES) &&
1015 !(flags & UFSMNT_LARGEFILES)) {
1016 error = EFBIG;
1017 goto out;
1020 if (vfsp->vfs_flag & VFS_RDONLY) {
1021 fsp->fs_ronly = 1;
1022 fsp->fs_fmod = 0;
1023 if (((fsp->fs_state + fsp->fs_time) == FSOKAY) &&
1024 ((fsp->fs_clean == FSCLEAN) ||
1025 (fsp->fs_clean == FSSTABLE) ||
1026 (fsp->fs_clean == FSLOG))) {
1027 if (isroot) {
1028 if (fsp->fs_clean == FSLOG) {
1029 if (fsp->fs_rolled == FS_ALL_ROLLED) {
1030 ufs_clean_root = 1;
1032 } else {
1033 ufs_clean_root = 1;
1036 fsp->fs_clean = FSSTABLE;
1037 } else {
1038 fsp->fs_clean = FSBAD;
1040 } else {
1042 fsp->fs_fmod = 0;
1043 fsp->fs_ronly = 0;
1045 TRANS_DOMATAMAP(ufsvfsp);
1047 if ((TRANS_ISERROR(ufsvfsp)) ||
1048 (((fsp->fs_state + fsp->fs_time) == FSOKAY) &&
1049 fsp->fs_clean == FSLOG && !TRANS_ISTRANS(ufsvfsp))) {
1050 ufsvfsp->vfs_log = NULL;
1051 ufsvfsp->vfs_domatamap = 0;
1052 error = ENOSPC;
1053 goto out;
1056 if (((fsp->fs_state + fsp->fs_time) == FSOKAY) &&
1057 (fsp->fs_clean == FSCLEAN ||
1058 fsp->fs_clean == FSSTABLE ||
1059 fsp->fs_clean == FSLOG))
1060 fsp->fs_clean = FSSTABLE;
1061 else {
1062 if (isroot) {
1064 * allow root partition to be mounted even
1065 * when fs_state is not ok
1066 * will be fixed later by a remount root
1068 fsp->fs_clean = FSBAD;
1069 ufsvfsp->vfs_log = NULL;
1070 ufsvfsp->vfs_domatamap = 0;
1071 } else {
1072 error = ENOSPC;
1073 goto out;
1077 if (fsp->fs_clean == FSSTABLE && TRANS_ISTRANS(ufsvfsp))
1078 fsp->fs_clean = FSLOG;
1080 TRANS_MATA_MOUNT(ufsvfsp);
1081 needtrans = 1;
1083 vfsp->vfs_bsize = fsp->fs_bsize;
1086 * Read in summary info
1088 if (error = ufs_getsummaryinfo(dev, ufsvfsp, fsp))
1089 goto out;
1092 * lastwhinetime is set to zero rather than lbolt, so that after
1093 * mounting if the filesystem is found to be full, then immediately the
1094 * "file system message" will be logged.
1096 ufsvfsp->vfs_lastwhinetime = 0L;
1099 mutex_init(&ufsvfsp->vfs_lock, NULL, MUTEX_DEFAULT, NULL);
1100 (void) copystr(path, fsp->fs_fsmnt, sizeof (fsp->fs_fsmnt) - 1, &len);
1101 bzero(fsp->fs_fsmnt + len, sizeof (fsp->fs_fsmnt) - len);
1104 * Sanity checks for old file systems
1106 if (fsp->fs_postblformat == FS_42POSTBLFMT)
1107 ufsvfsp->vfs_nrpos = 8;
1108 else
1109 ufsvfsp->vfs_nrpos = fsp->fs_nrpos;
1112 * Initialize lockfs structure to support file system locking
1114 bzero(&ufsvfsp->vfs_ulockfs.ul_lockfs,
1115 sizeof (struct lockfs));
1116 ufsvfsp->vfs_ulockfs.ul_fs_lock = ULOCKFS_ULOCK;
1117 mutex_init(&ufsvfsp->vfs_ulockfs.ul_lock, NULL,
1118 MUTEX_DEFAULT, NULL);
1119 cv_init(&ufsvfsp->vfs_ulockfs.ul_cv, NULL, CV_DEFAULT, NULL);
1122 * We don't need to grab vfs_dqrwlock for this ufs_iget() call.
1123 * We are in the process of mounting the file system so there
1124 * is no need to grab the quota lock. If a quota applies to the
1125 * root inode, then it will be updated when quotas are enabled.
1127 * However, we have an ASSERT(RW_LOCK_HELD(&ufsvfsp->vfs_dqrwlock))
1128 * in getinoquota() that we want to keep so grab it anyway.
1130 rw_enter(&ufsvfsp->vfs_dqrwlock, RW_READER);
1132 error = ufs_iget_alloced(vfsp, UFSROOTINO, &rip, cr);
1134 rw_exit(&ufsvfsp->vfs_dqrwlock);
1136 if (error)
1137 goto out;
1140 * make sure root inode is a directory. Returning ENOTDIR might
1141 * be confused with the mount point not being a directory, so
1142 * we use EIO instead.
1144 if ((rip->i_mode & IFMT) != IFDIR) {
1146 * Mark this inode as subject for cleanup
1147 * to avoid stray inodes in the cache.
1149 rvp = ITOV(rip);
1150 error = EIO;
1151 goto out;
1154 rvp = ITOV(rip);
1155 mutex_enter(&rvp->v_lock);
1156 rvp->v_flag |= VROOT;
1157 mutex_exit(&rvp->v_lock);
1158 ufsvfsp->vfs_root = rvp;
1159 /* The buffer for the root inode does not contain a valid b_vp */
1160 (void) bfinval(dev, 0);
1162 /* options */
1163 ufsvfsp->vfs_nosetsec = flags & UFSMNT_NOSETSEC;
1164 ufsvfsp->vfs_nointr = flags & UFSMNT_NOINTR;
1165 ufsvfsp->vfs_syncdir = flags & UFSMNT_SYNCDIR;
1166 ufsvfsp->vfs_noatime = flags & UFSMNT_NOATIME;
1167 if ((flags & UFSMNT_NODFRATIME) || ufsvfsp->vfs_noatime)
1168 ufsvfsp->vfs_dfritime &= ~UFS_DFRATIME;
1169 else /* dfratime, default behavior */
1170 ufsvfsp->vfs_dfritime |= UFS_DFRATIME;
1171 if (flags & UFSMNT_FORCEDIRECTIO)
1172 ufsvfsp->vfs_forcedirectio = 1;
1173 else if (flags & UFSMNT_NOFORCEDIRECTIO)
1174 ufsvfsp->vfs_forcedirectio = 0;
1175 ufsvfsp->vfs_iotstamp = ddi_get_lbolt();
1177 ufsvfsp->vfs_nindiroffset = fsp->fs_nindir - 1;
1178 ufsvfsp->vfs_nindirshift = highbit(ufsvfsp->vfs_nindiroffset);
1179 ufsvfsp->vfs_ioclustsz = fsp->fs_bsize * fsp->fs_maxcontig;
1181 if (cdev_ioctl(dev, DKIOCINFO, (intptr_t)&ci,
1182 FKIOCTL|FNATIVE|FREAD, CRED(), &status) == 0) {
1183 ufsvfsp->vfs_iotransz = ci.dki_maxtransfer * DEV_BSIZE;
1184 } else {
1185 ufsvfsp->vfs_iotransz = MIN(maxphys, ufs_maxmaxphys);
1188 if (ufsvfsp->vfs_iotransz <= 0) {
1189 ufsvfsp->vfs_iotransz = MIN(maxphys, ufs_maxmaxphys);
1193 * When logging, used to reserve log space for writes and truncs
1195 ufsvfsp->vfs_avgbfree = fsp->fs_cstotal.cs_nbfree / fsp->fs_ncg;
1198 * Determine whether to log cylinder group summary info.
1200 ufsvfsp->vfs_nolog_si = (fsp->fs_ncg < ufs_ncg_log);
1202 if (TRANS_ISTRANS(ufsvfsp)) {
1204 * start the delete thread
1206 ufs_thread_start(&ufsvfsp->vfs_delete, ufs_thread_delete, vfsp);
1209 * start reclaim thread if the filesystem was not mounted
1210 * read only.
1212 if (!fsp->fs_ronly && (fsp->fs_reclaim &
1213 (FS_RECLAIM|FS_RECLAIMING))) {
1214 fsp->fs_reclaim &= ~FS_RECLAIM;
1215 fsp->fs_reclaim |= FS_RECLAIMING;
1216 ufs_thread_start(&ufsvfsp->vfs_reclaim,
1217 ufs_thread_reclaim, vfsp);
1220 /* Mark the fs as unrolled */
1221 fsp->fs_rolled = FS_NEED_ROLL;
1222 } else if (!fsp->fs_ronly && (fsp->fs_reclaim &
1223 (FS_RECLAIM|FS_RECLAIMING))) {
1225 * If a file system that is mounted nologging, after
1226 * having previously been mounted logging, becomes
1227 * unmounted whilst the reclaim thread is in the throes
1228 * of reclaiming open/deleted inodes, a subsequent mount
1229 * of such a file system with logging disabled could lead
1230 * to inodes becoming lost. So, start reclaim now, even
1231 * though logging was disabled for the previous mount, to
1232 * tidy things up.
1234 fsp->fs_reclaim &= ~FS_RECLAIM;
1235 fsp->fs_reclaim |= FS_RECLAIMING;
1236 ufs_thread_start(&ufsvfsp->vfs_reclaim,
1237 ufs_thread_reclaim, vfsp);
1240 if (!fsp->fs_ronly) {
1241 TRANS_SBWRITE(ufsvfsp, TOP_MOUNT);
1242 if (error = geterror(ufsvfsp->vfs_bufp))
1243 goto out;
1246 /* fix-on-panic initialization */
1247 if (isroot && !(flags & UFSMNT_ONERROR_FLGMASK))
1248 flags |= UFSMNT_ONERROR_PANIC; /* XXX ..._RDONLY */
1250 if ((error = ufsfx_mount(ufsvfsp, flags)) != 0)
1251 goto out;
1253 if (why == ROOT_INIT && isroot)
1254 rootvp = devvp;
1256 return (0);
1257 out:
1258 if (error == 0)
1259 error = EIO;
1260 if (rvp) {
1261 /* the following sequence is similar to ufs_unmount() */
1264 * There's a problem that ufs_iget() puts inodes into
1265 * the inode cache before it returns them. If someone
1266 * traverses that cache and gets a reference to our
1267 * inode, there's a chance they'll still be using it
1268 * after we've destroyed it. This is a hard race to
1269 * hit, but it's happened (putting in a medium delay
1270 * here, and a large delay in ufs_scan_inodes() for
1271 * inodes on the device we're bailing out on, makes
1272 * the race easy to demonstrate). The symptom is some
1273 * other part of UFS faulting on bad inode contents,
1274 * or when grabbing one of the locks inside the inode,
1275 * etc. The usual victim is ufs_scan_inodes() or
1276 * someone called by it.
1280 * First, isolate it so that no new references can be
1281 * gotten via the inode cache.
1283 ihm = &ih_lock[INOHASH(UFSROOTINO)];
1284 mutex_enter(ihm);
1285 remque(rip);
1286 mutex_exit(ihm);
1289 * Now wait for all outstanding references except our
1290 * own to drain. This could, in theory, take forever,
1291 * so don't wait *too* long. If we time out, mark
1292 * it stale and leak it, so we don't hit the problem
1293 * described above.
1295 * Note that v_count is an int, which means we can read
1296 * it in one operation. Thus, there's no need to lock
1297 * around our tests.
1299 elapsed = 0;
1300 while ((rvp->v_count > 1) && (elapsed < ufs_mount_timeout)) {
1301 ddi_msleep(ufs_mount_error_delay);
1302 elapsed += ufs_mount_error_delay;
1305 if (rvp->v_count > 1) {
1306 mutex_enter(&rip->i_tlock);
1307 rip->i_flag |= ISTALE;
1308 mutex_exit(&rip->i_tlock);
1309 cmn_err(CE_WARN,
1310 "Timed out while cleaning up after "
1311 "failed mount of %s", path);
1312 } else {
1315 * Now we're the only one with a handle left, so tear
1316 * it down the rest of the way.
1318 if (ufs_rmidle(rip))
1319 VN_RELE(rvp);
1320 ufs_si_del(rip);
1321 rip->i_ufsvfs = NULL;
1322 rvp->v_vfsp = NULL;
1323 rvp->v_type = VBAD;
1324 VN_RELE(rvp);
1327 if (needtrans) {
1328 TRANS_MATA_UMOUNT(ufsvfsp);
1330 if (ufsvfsp) {
1331 ufs_vfs_remove(ufsvfsp);
1332 ufs_thread_exit(&ufsvfsp->vfs_delete);
1333 ufs_thread_exit(&ufsvfsp->vfs_reclaim);
1334 mutex_destroy(&ufsvfsp->vfs_lock);
1335 if (ufsvfsp->vfs_log) {
1336 lufs_unsnarf(ufsvfsp);
1338 kmem_free(ufsvfsp, sizeof (struct ufsvfs));
1340 if (bp) {
1341 bp->b_flags |= (B_STALE|B_AGE);
1342 brelse(bp);
1344 if (tp) {
1345 tp->b_flags |= (B_STALE|B_AGE);
1346 brelse(tp);
1348 if (needclose) {
1349 (void) fop_close(devvp, (vfsp->vfs_flag & VFS_RDONLY) ?
1350 FREAD : FREAD|FWRITE, 1, 0, cr, NULL);
1351 bflush(dev);
1352 (void) bfinval(dev, 1);
1354 return (error);
1358 * vfs operations
1360 static int
1361 ufs_unmount(struct vfs *vfsp, int fflag, struct cred *cr)
1363 dev_t dev = vfsp->vfs_dev;
1364 struct ufsvfs *ufsvfsp = (struct ufsvfs *)vfsp->vfs_data;
1365 struct fs *fs = ufsvfsp->vfs_fs;
1366 struct ulockfs *ulp = &ufsvfsp->vfs_ulockfs;
1367 struct vnode *bvp, *vp;
1368 struct buf *bp;
1369 struct inode *ip, *inext, *rip;
1370 union ihead *ih;
1371 int error, flag, i;
1372 struct lockfs lockfs;
1373 int poll_events = POLLPRI;
1374 extern struct pollhead ufs_pollhd;
1375 refstr_t *mountpoint;
1377 ASSERT(vfs_lock_held(vfsp));
1379 if (secpolicy_fs_unmount(cr, vfsp) != 0)
1380 return (EPERM);
1382 * Forced unmount is now supported through the
1383 * lockfs protocol.
1385 if (fflag & MS_FORCE) {
1387 * Mark the filesystem as being unmounted now in
1388 * case of a forcible umount before we take any
1389 * locks inside UFS to prevent racing with a VFS_VGET()
1390 * request. Throw these VFS_VGET() requests away for
1391 * the duration of the forcible umount so they won't
1392 * use stale or even freed data later on when we're done.
1393 * It may happen that the VFS has had a additional hold
1394 * placed on it by someone other than UFS and thus will
1395 * not get freed immediately once we're done with the
1396 * umount by dounmount() - use VFS_UNMOUNTED to inform
1397 * users of this still-alive VFS that its corresponding
1398 * filesystem being gone so they can detect that and error
1399 * out.
1401 vfsp->vfs_flag |= VFS_UNMOUNTED;
1403 ufs_thread_suspend(&ufsvfsp->vfs_delete);
1404 mutex_enter(&ulp->ul_lock);
1406 * If file system is already hard locked,
1407 * unmount the file system, otherwise
1408 * hard lock it before unmounting.
1410 if (!ULOCKFS_IS_HLOCK(ulp)) {
1411 atomic_inc_ulong(&ufs_quiesce_pend);
1412 lockfs.lf_lock = LOCKFS_HLOCK;
1413 lockfs.lf_flags = 0;
1414 lockfs.lf_key = ulp->ul_lockfs.lf_key + 1;
1415 lockfs.lf_comlen = 0;
1416 lockfs.lf_comment = NULL;
1417 ufs_freeze(ulp, &lockfs);
1418 ULOCKFS_SET_BUSY(ulp);
1419 LOCKFS_SET_BUSY(&ulp->ul_lockfs);
1420 (void) ufs_quiesce(ulp);
1421 (void) ufs_flush(vfsp);
1422 (void) ufs_thaw(vfsp, ufsvfsp, ulp);
1423 atomic_dec_ulong(&ufs_quiesce_pend);
1424 ULOCKFS_CLR_BUSY(ulp);
1425 LOCKFS_CLR_BUSY(&ulp->ul_lockfs);
1426 poll_events |= POLLERR;
1427 pollwakeup(&ufs_pollhd, poll_events);
1429 ufs_thread_continue(&ufsvfsp->vfs_delete);
1430 mutex_exit(&ulp->ul_lock);
1433 /* let all types of writes go through */
1434 ufsvfsp->vfs_iotstamp = ddi_get_lbolt();
1436 /* coordinate with global hlock thread */
1437 if (TRANS_ISTRANS(ufsvfsp) && (ufsvfsp->vfs_validfs == UT_HLOCKING)) {
1439 * last possibility for a forced umount to fail hence clear
1440 * VFS_UNMOUNTED if appropriate.
1442 if (fflag & MS_FORCE)
1443 vfsp->vfs_flag &= ~VFS_UNMOUNTED;
1444 return (EAGAIN);
1447 ufsvfsp->vfs_validfs = UT_UNMOUNTED;
1449 /* kill the reclaim thread */
1450 ufs_thread_exit(&ufsvfsp->vfs_reclaim);
1452 /* suspend the delete thread */
1453 ufs_thread_suspend(&ufsvfsp->vfs_delete);
1456 * drain the delete and idle queues
1458 ufs_delete_drain(vfsp, -1, 1);
1459 ufs_idle_drain(vfsp);
1462 * use the lockfs protocol to prevent new ops from starting
1463 * a forcible umount can not fail beyond this point as
1464 * we hard-locked the filesystem and drained all current consumers
1465 * before.
1467 mutex_enter(&ulp->ul_lock);
1470 * if the file system is busy; return EBUSY
1472 if (ulp->ul_vnops_cnt || ulp->ul_falloc_cnt || ULOCKFS_IS_SLOCK(ulp)) {
1473 error = EBUSY;
1474 goto out;
1478 * if this is not a forced unmount (!hard/error locked), then
1479 * get rid of every inode except the root and quota inodes
1480 * also, commit any outstanding transactions
1482 if (!ULOCKFS_IS_HLOCK(ulp) && !ULOCKFS_IS_ELOCK(ulp))
1483 if (error = ufs_flush(vfsp))
1484 goto out;
1487 * ignore inodes in the cache if fs is hard locked or error locked
1489 rip = VTOI(ufsvfsp->vfs_root);
1490 if (!ULOCKFS_IS_HLOCK(ulp) && !ULOCKFS_IS_ELOCK(ulp)) {
1492 * Otherwise, only the quota and root inodes are in the cache.
1494 * Avoid racing with ufs_update() and ufs_sync().
1496 mutex_enter(&ufs_scan_lock);
1498 for (i = 0, ih = ihead; i < inohsz; i++, ih++) {
1499 mutex_enter(&ih_lock[i]);
1500 for (ip = ih->ih_chain[0];
1501 ip != (struct inode *)ih;
1502 ip = ip->i_forw) {
1503 if (ip->i_ufsvfs != ufsvfsp)
1504 continue;
1505 if (ip == ufsvfsp->vfs_qinod)
1506 continue;
1507 if (ip == rip && ITOV(ip)->v_count == 1)
1508 continue;
1509 mutex_exit(&ih_lock[i]);
1510 mutex_exit(&ufs_scan_lock);
1511 error = EBUSY;
1512 goto out;
1514 mutex_exit(&ih_lock[i]);
1516 mutex_exit(&ufs_scan_lock);
1520 * if a snapshot exists and this is a forced unmount, then delete
1521 * the snapshot. Otherwise return EBUSY. This will insure the
1522 * snapshot always belongs to a valid file system.
1524 if (ufsvfsp->vfs_snapshot) {
1525 if (ULOCKFS_IS_HLOCK(ulp) || ULOCKFS_IS_ELOCK(ulp)) {
1526 (void) fssnap_delete(&ufsvfsp->vfs_snapshot);
1527 } else {
1528 error = EBUSY;
1529 goto out;
1534 * Close the quota file and invalidate anything left in the quota
1535 * cache for this file system. Pass kcred to allow all quota
1536 * manipulations.
1538 (void) closedq(ufsvfsp, kcred);
1539 invalidatedq(ufsvfsp);
1541 * drain the delete and idle queues
1543 ufs_delete_drain(vfsp, -1, 0);
1544 ufs_idle_drain(vfsp);
1547 * discard the inodes for this fs (including root, shadow, and quota)
1549 for (i = 0, ih = ihead; i < inohsz; i++, ih++) {
1550 mutex_enter(&ih_lock[i]);
1551 for (inext = 0, ip = ih->ih_chain[0];
1552 ip != (struct inode *)ih;
1553 ip = inext) {
1554 inext = ip->i_forw;
1555 if (ip->i_ufsvfs != ufsvfsp)
1556 continue;
1559 * We've found the inode in the cache and as we
1560 * hold the hash mutex the inode can not
1561 * disappear from underneath us.
1562 * We also know it must have at least a vnode
1563 * reference count of 1.
1564 * We perform an additional VN_HOLD so the VN_RELE
1565 * in case we take the inode off the idle queue
1566 * can not be the last one.
1567 * It is safe to grab the writer contents lock here
1568 * to prevent a race with ufs_iinactive() putting
1569 * inodes into the idle queue while we operate on
1570 * this inode.
1572 rw_enter(&ip->i_contents, RW_WRITER);
1574 vp = ITOV(ip);
1575 VN_HOLD(vp)
1576 remque(ip);
1577 if (ufs_rmidle(ip))
1578 VN_RELE(vp);
1579 ufs_si_del(ip);
1581 * rip->i_ufsvfsp is needed by bflush()
1583 if (ip != rip)
1584 ip->i_ufsvfs = NULL;
1586 * Set vnode's vfsops to dummy ops, which return
1587 * EIO. This is needed to forced unmounts to work
1588 * with lofs/nfs properly.
1590 if (ULOCKFS_IS_HLOCK(ulp) || ULOCKFS_IS_ELOCK(ulp))
1591 vp->v_vfsp = &EIO_vfs;
1592 else
1593 vp->v_vfsp = NULL;
1594 vp->v_type = VBAD;
1596 rw_exit(&ip->i_contents);
1598 VN_RELE(vp);
1600 mutex_exit(&ih_lock[i]);
1602 ufs_si_cache_flush(dev);
1605 * kill the delete thread and drain the idle queue
1607 ufs_thread_exit(&ufsvfsp->vfs_delete);
1608 ufs_idle_drain(vfsp);
1610 bp = ufsvfsp->vfs_bufp;
1611 bvp = ufsvfsp->vfs_devvp;
1612 flag = !fs->fs_ronly;
1613 if (flag) {
1614 bflush(dev);
1615 if (fs->fs_clean != FSBAD) {
1616 if (fs->fs_clean == FSSTABLE)
1617 fs->fs_clean = FSCLEAN;
1618 fs->fs_reclaim &= ~FS_RECLAIM;
1620 if (TRANS_ISTRANS(ufsvfsp) &&
1621 !TRANS_ISERROR(ufsvfsp) &&
1622 !ULOCKFS_IS_HLOCK(ulp) &&
1623 (fs->fs_rolled == FS_NEED_ROLL)) {
1625 * ufs_flush() above has flushed the last Moby.
1626 * This is needed to ensure the following superblock
1627 * update really is the last metadata update
1629 error = ufs_putsummaryinfo(dev, ufsvfsp, fs);
1630 if (error == 0) {
1631 fs->fs_rolled = FS_ALL_ROLLED;
1634 TRANS_SBUPDATE(ufsvfsp, vfsp, TOP_SBUPDATE_UNMOUNT);
1636 * push this last transaction
1638 curthread->t_flag |= T_DONTBLOCK;
1639 TRANS_BEGIN_SYNC(ufsvfsp, TOP_COMMIT_UNMOUNT,
1640 TOP_COMMIT_SIZE, &error);
1641 if (!error)
1642 TRANS_END_SYNC(ufsvfsp, &error, TOP_COMMIT_UNMOUNT,
1643 TOP_COMMIT_SIZE);
1644 curthread->t_flag &= ~T_DONTBLOCK;
1647 TRANS_MATA_UMOUNT(ufsvfsp);
1648 lufs_unsnarf(ufsvfsp); /* Release the in-memory structs */
1649 ufsfx_unmount(ufsvfsp); /* fix-on-panic bookkeeping */
1650 kmem_free(fs->fs_u.fs_csp, fs->fs_cssize);
1652 bp->b_flags |= B_STALE|B_AGE;
1653 ufsvfsp->vfs_bufp = NULL; /* don't point at freed buf */
1654 brelse(bp); /* free the superblock buf */
1656 (void) fop_putpage(common_specvp(bvp), 0, (size_t)0,
1657 B_INVAL, cr, NULL);
1658 (void) fop_close(bvp, flag, 1, 0, cr, NULL);
1659 bflush(dev);
1660 (void) bfinval(dev, 1);
1661 VN_RELE(bvp);
1664 * It is now safe to NULL out the ufsvfs pointer and discard
1665 * the root inode.
1667 rip->i_ufsvfs = NULL;
1668 VN_RELE(ITOV(rip));
1670 /* free up lockfs comment structure, if any */
1671 if (ulp->ul_lockfs.lf_comlen && ulp->ul_lockfs.lf_comment)
1672 kmem_free(ulp->ul_lockfs.lf_comment, ulp->ul_lockfs.lf_comlen);
1675 * Remove from instance list.
1677 ufs_vfs_remove(ufsvfsp);
1680 * For a forcible unmount, threads may be asleep in
1681 * ufs_lockfs_begin/ufs_check_lockfs. These threads will need
1682 * the ufsvfs structure so we don't free it, yet. ufs_update
1683 * will free it up after awhile.
1685 if (ULOCKFS_IS_HLOCK(ulp) || ULOCKFS_IS_ELOCK(ulp)) {
1686 extern kmutex_t ufsvfs_mutex;
1687 extern struct ufsvfs *ufsvfslist;
1689 mutex_enter(&ufsvfs_mutex);
1690 ufsvfsp->vfs_dontblock = 1;
1691 ufsvfsp->vfs_next = ufsvfslist;
1692 ufsvfslist = ufsvfsp;
1693 mutex_exit(&ufsvfs_mutex);
1694 /* wakeup any suspended threads */
1695 cv_broadcast(&ulp->ul_cv);
1696 mutex_exit(&ulp->ul_lock);
1697 } else {
1698 mutex_destroy(&ufsvfsp->vfs_lock);
1699 kmem_free(ufsvfsp, sizeof (struct ufsvfs));
1703 * Now mark the filesystem as unmounted since we're done with it.
1705 vfsp->vfs_flag |= VFS_UNMOUNTED;
1707 return (0);
1708 out:
1709 /* open the fs to new ops */
1710 cv_broadcast(&ulp->ul_cv);
1711 mutex_exit(&ulp->ul_lock);
1713 if (TRANS_ISTRANS(ufsvfsp)) {
1714 /* allow the delete thread to continue */
1715 ufs_thread_continue(&ufsvfsp->vfs_delete);
1716 /* restart the reclaim thread */
1717 ufs_thread_start(&ufsvfsp->vfs_reclaim, ufs_thread_reclaim,
1718 vfsp);
1719 /* coordinate with global hlock thread */
1720 ufsvfsp->vfs_validfs = UT_MOUNTED;
1721 /* check for trans errors during umount */
1722 ufs_trans_onerror();
1725 * if we have a separate /usr it will never unmount
1726 * when halting. In order to not re-read all the
1727 * cylinder group summary info on mounting after
1728 * reboot the logging of summary info is re-enabled
1729 * and the super block written out.
1731 mountpoint = vfs_getmntpoint(vfsp);
1732 if ((fs->fs_si == FS_SI_OK) &&
1733 (strcmp("/usr", refstr_value(mountpoint)) == 0)) {
1734 ufsvfsp->vfs_nolog_si = 0;
1735 UFS_BWRITE2(NULL, ufsvfsp->vfs_bufp);
1737 refstr_rele(mountpoint);
1740 return (error);
1743 static int
1744 ufs_root(struct vfs *vfsp, struct vnode **vpp)
1746 struct ufsvfs *ufsvfsp;
1747 struct vnode *vp;
1749 if (!vfsp)
1750 return (EIO);
1752 ufsvfsp = (struct ufsvfs *)vfsp->vfs_data;
1753 if (!ufsvfsp || !ufsvfsp->vfs_root)
1754 return (EIO); /* forced unmount */
1756 vp = ufsvfsp->vfs_root;
1757 VN_HOLD(vp);
1758 *vpp = vp;
1759 return (0);
1763 * Get file system statistics.
1765 static int
1766 ufs_statvfs(struct vfs *vfsp, struct statvfs64 *sp)
1768 struct fs *fsp;
1769 struct ufsvfs *ufsvfsp;
1770 int blk, i;
1771 long max_avail, used;
1772 dev32_t d32;
1774 if (vfsp->vfs_flag & VFS_UNMOUNTED)
1775 return (EIO);
1777 ufsvfsp = (struct ufsvfs *)vfsp->vfs_data;
1778 fsp = ufsvfsp->vfs_fs;
1779 if ((fsp->fs_magic != FS_MAGIC) && (fsp->fs_magic != MTB_UFS_MAGIC))
1780 return (EINVAL);
1781 if (fsp->fs_magic == FS_MAGIC &&
1782 (fsp->fs_version != UFS_EFISTYLE4NONEFI_VERSION_2 &&
1783 fsp->fs_version != UFS_VERSION_MIN))
1784 return (EINVAL);
1785 if (fsp->fs_magic == MTB_UFS_MAGIC &&
1786 (fsp->fs_version > MTB_UFS_VERSION_1 ||
1787 fsp->fs_version < MTB_UFS_VERSION_MIN))
1788 return (EINVAL);
1791 * get the basic numbers
1793 (void) bzero(sp, sizeof (*sp));
1795 sp->f_bsize = fsp->fs_bsize;
1796 sp->f_frsize = fsp->fs_fsize;
1797 sp->f_blocks = (fsblkcnt64_t)fsp->fs_dsize;
1798 sp->f_bfree = (fsblkcnt64_t)fsp->fs_cstotal.cs_nbfree * fsp->fs_frag +
1799 fsp->fs_cstotal.cs_nffree;
1801 sp->f_files = (fsfilcnt64_t)fsp->fs_ncg * fsp->fs_ipg;
1802 sp->f_ffree = (fsfilcnt64_t)fsp->fs_cstotal.cs_nifree;
1805 * Adjust the numbers based on things waiting to be deleted.
1806 * modifies f_bfree and f_ffree. Afterwards, everything we
1807 * come up with will be self-consistent. By definition, this
1808 * is a point-in-time snapshot, so the fact that the delete
1809 * thread's probably already invalidated the results is not a
1810 * problem. Note that if the delete thread is ever extended to
1811 * non-logging ufs, this adjustment must always be made.
1813 if (TRANS_ISTRANS(ufsvfsp))
1814 ufs_delete_adjust_stats(ufsvfsp, sp);
1817 * avail = MAX(max_avail - used, 0)
1819 max_avail = fsp->fs_dsize - ufsvfsp->vfs_minfrags;
1821 used = (fsp->fs_dsize - sp->f_bfree);
1823 if (max_avail > used)
1824 sp->f_bavail = (fsblkcnt64_t)max_avail - used;
1825 else
1826 sp->f_bavail = (fsblkcnt64_t)0;
1828 sp->f_favail = sp->f_ffree;
1829 (void) cmpldev(&d32, vfsp->vfs_dev);
1830 sp->f_fsid = d32;
1831 (void) strcpy(sp->f_basetype, vfssw[vfsp->vfs_fstype].vsw_name);
1832 sp->f_flag = vf_to_stf(vfsp->vfs_flag);
1834 /* keep coordinated with ufs_l_pathconf() */
1835 sp->f_namemax = MAXNAMLEN;
1837 if (fsp->fs_cpc == 0) {
1838 bzero(sp->f_fstr, 14);
1839 return (0);
1841 blk = fsp->fs_spc * fsp->fs_cpc / NSPF(fsp);
1842 for (i = 0; i < blk; i += fsp->fs_frag) /* CSTYLED */
1843 /* void */;
1844 i -= fsp->fs_frag;
1845 blk = i / fsp->fs_frag;
1846 bcopy(&(fs_rotbl(fsp)[blk]), sp->f_fstr, 14);
1847 return (0);
1851 * Flush any pending I/O to file system vfsp.
1852 * The ufs_update() routine will only flush *all* ufs files.
1853 * If vfsp is non-NULL, only sync this ufs (in preparation
1854 * for a umount).
1856 /*ARGSUSED*/
1857 static int
1858 ufs_sync(struct vfs *vfsp, short flag, struct cred *cr)
1860 struct ufsvfs *ufsvfsp;
1861 struct fs *fs;
1862 int cheap = flag & SYNC_ATTR;
1863 int error;
1866 * SYNC_CLOSE means we're rebooting. Toss everything
1867 * on the idle queue so we don't have to slog through
1868 * a bunch of uninteresting inodes over and over again.
1870 if (flag & SYNC_CLOSE)
1871 ufs_idle_drain(NULL);
1873 if (vfsp == NULL) {
1874 ufs_update(flag);
1875 return (0);
1878 /* Flush a single ufs */
1879 if (!vfs_matchops(vfsp, &ufs_vfsops) || vfs_lock(vfsp) != 0)
1880 return (0);
1882 ufsvfsp = (struct ufsvfs *)vfsp->vfs_data;
1883 if (!ufsvfsp)
1884 return (EIO);
1885 fs = ufsvfsp->vfs_fs;
1886 mutex_enter(&ufsvfsp->vfs_lock);
1888 if (ufsvfsp->vfs_dio &&
1889 fs->fs_ronly == 0 &&
1890 fs->fs_clean != FSBAD &&
1891 fs->fs_clean != FSLOG) {
1892 /* turn off fast-io on unmount, so no fsck needed (4029401) */
1893 ufsvfsp->vfs_dio = 0;
1894 fs->fs_clean = FSACTIVE;
1895 fs->fs_fmod = 1;
1898 /* Write back modified superblock */
1899 if (fs->fs_fmod == 0) {
1900 mutex_exit(&ufsvfsp->vfs_lock);
1901 } else {
1902 if (fs->fs_ronly != 0) {
1903 mutex_exit(&ufsvfsp->vfs_lock);
1904 vfs_unlock(vfsp);
1905 return (ufs_fault(ufsvfsp->vfs_root,
1906 "fs = %s update: ro fs mod\n", fs->fs_fsmnt));
1908 fs->fs_fmod = 0;
1909 mutex_exit(&ufsvfsp->vfs_lock);
1911 TRANS_SBUPDATE(ufsvfsp, vfsp, TOP_SBUPDATE_UPDATE);
1913 vfs_unlock(vfsp);
1916 * Avoid racing with ufs_update() and ufs_unmount().
1919 mutex_enter(&ufs_scan_lock);
1921 (void) ufs_scan_inodes(1, ufs_sync_inode,
1922 (void *)(uintptr_t)cheap, ufsvfsp);
1924 mutex_exit(&ufs_scan_lock);
1926 bflush((dev_t)vfsp->vfs_dev);
1929 * commit any outstanding async transactions
1931 curthread->t_flag |= T_DONTBLOCK;
1932 TRANS_BEGIN_SYNC(ufsvfsp, TOP_COMMIT_UPDATE, TOP_COMMIT_SIZE, &error);
1933 if (!error) {
1934 TRANS_END_SYNC(ufsvfsp, &error, TOP_COMMIT_UPDATE,
1935 TOP_COMMIT_SIZE);
1937 curthread->t_flag &= ~T_DONTBLOCK;
1939 return (0);
1943 void
1944 sbupdate(struct vfs *vfsp)
1946 struct ufsvfs *ufsvfsp = (struct ufsvfs *)vfsp->vfs_data;
1947 struct fs *fs = ufsvfsp->vfs_fs;
1948 struct buf *bp;
1949 int blks;
1950 caddr_t space;
1951 int i;
1952 size_t size;
1955 * for ulockfs processing, limit the superblock writes
1957 if ((ufsvfsp->vfs_ulockfs.ul_sbowner) &&
1958 (curthread != ufsvfsp->vfs_ulockfs.ul_sbowner)) {
1959 /* process later */
1960 fs->fs_fmod = 1;
1961 return;
1963 ULOCKFS_SET_MOD((&ufsvfsp->vfs_ulockfs));
1965 if (TRANS_ISTRANS(ufsvfsp)) {
1966 mutex_enter(&ufsvfsp->vfs_lock);
1967 ufs_sbwrite(ufsvfsp);
1968 mutex_exit(&ufsvfsp->vfs_lock);
1969 return;
1972 blks = howmany(fs->fs_cssize, fs->fs_fsize);
1973 space = (caddr_t)fs->fs_u.fs_csp;
1974 for (i = 0; i < blks; i += fs->fs_frag) {
1975 size = fs->fs_bsize;
1976 if (i + fs->fs_frag > blks)
1977 size = (blks - i) * fs->fs_fsize;
1978 bp = UFS_GETBLK(ufsvfsp, ufsvfsp->vfs_dev,
1979 (daddr_t)(fsbtodb(fs, fs->fs_csaddr + i)),
1980 fs->fs_bsize);
1981 bcopy(space, bp->b_un.b_addr, size);
1982 space += size;
1983 bp->b_bcount = size;
1984 UFS_BRWRITE(ufsvfsp, bp);
1986 mutex_enter(&ufsvfsp->vfs_lock);
1987 ufs_sbwrite(ufsvfsp);
1988 mutex_exit(&ufsvfsp->vfs_lock);
1991 int ufs_vget_idle_count = 2; /* Number of inodes to idle each time */
1992 static int
1993 ufs_vget(struct vfs *vfsp, struct vnode **vpp, struct fid *fidp)
1995 int error = 0;
1996 struct ufid *ufid;
1997 struct inode *ip;
1998 struct ufsvfs *ufsvfsp = (struct ufsvfs *)vfsp->vfs_data;
1999 struct ulockfs *ulp;
2002 * Check for unmounted filesystem.
2004 if (vfsp->vfs_flag & VFS_UNMOUNTED) {
2005 error = EIO;
2006 goto errout;
2010 * Keep the idle queue from getting too long by
2011 * idling an inode before attempting to allocate another.
2012 * This operation must be performed before entering
2013 * lockfs or a transaction.
2015 if (ufs_idle_q.uq_ne > ufs_idle_q.uq_hiwat)
2016 if ((curthread->t_flag & T_DONTBLOCK) == 0) {
2017 ins.in_vidles.value.ul += ufs_vget_idle_count;
2018 ufs_idle_some(ufs_vget_idle_count);
2021 ufid = (struct ufid *)fidp;
2023 if (error = ufs_lockfs_begin(ufsvfsp, &ulp, ULOCKFS_VGET_MASK))
2024 goto errout;
2026 rw_enter(&ufsvfsp->vfs_dqrwlock, RW_READER);
2028 error = ufs_iget(vfsp, ufid->ufid_ino, &ip, CRED());
2030 rw_exit(&ufsvfsp->vfs_dqrwlock);
2032 ufs_lockfs_end(ulp);
2034 if (error)
2035 goto errout;
2038 * Check if the inode has been deleted or freed or is in transient state
2039 * since the last VFS_VGET() request for it, release it and don't return
2040 * it to the caller, presumably NFS, as it's no longer valid.
2042 if (ip->i_gen != ufid->ufid_gen || ip->i_mode == 0 ||
2043 (ip->i_nlink <= 0)) {
2044 VN_RELE(ITOV(ip));
2045 error = EINVAL;
2046 goto errout;
2049 *vpp = ITOV(ip);
2050 return (0);
2052 errout:
2053 *vpp = NULL;
2054 return (error);
2057 static const struct vfsops ufs_vfsops = {
2058 .vfs_mount = ufs_mount,
2059 .vfs_unmount = ufs_unmount,
2060 .vfs_root = ufs_root,
2061 .vfs_statvfs = ufs_statvfs,
2062 .vfs_sync = ufs_sync,
2063 .vfs_vget = ufs_vget,
2064 .vfs_mountroot = ufs_mountroot,
2067 static int
2068 ufsinit(int fstype, char *name)
2070 int error;
2072 ufsfstype = fstype;
2074 error = vfs_setfsops(fstype, &ufs_vfsops);
2075 if (error != 0) {
2076 cmn_err(CE_WARN, "ufsinit: bad fstype");
2077 return (error);
2080 ufs_iinit();
2081 return (0);