17c478bd9Sstevel@tonic-gate /* 27c478bd9Sstevel@tonic-gate * CDDL HEADER START 37c478bd9Sstevel@tonic-gate * 47c478bd9Sstevel@tonic-gate * The contents of this file are subject to the terms of the 55a59a8b3Srsb * Common Development and Distribution License (the "License"). 65a59a8b3Srsb * You may not use this file except in compliance with the License. 77c478bd9Sstevel@tonic-gate * 87c478bd9Sstevel@tonic-gate * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 97c478bd9Sstevel@tonic-gate * or http://www.opensolaris.org/os/licensing. 107c478bd9Sstevel@tonic-gate * See the License for the specific language governing permissions 117c478bd9Sstevel@tonic-gate * and limitations under the License. 127c478bd9Sstevel@tonic-gate * 137c478bd9Sstevel@tonic-gate * When distributing Covered Code, include this CDDL HEADER in each 147c478bd9Sstevel@tonic-gate * file and include the License file at usr/src/OPENSOLARIS.LICENSE. 157c478bd9Sstevel@tonic-gate * If applicable, add the following below this CDDL HEADER, with the 167c478bd9Sstevel@tonic-gate * fields enclosed by brackets "[]" replaced with your own identifying 177c478bd9Sstevel@tonic-gate * information: Portions Copyright [yyyy] [name of copyright owner] 187c478bd9Sstevel@tonic-gate * 197c478bd9Sstevel@tonic-gate * CDDL HEADER END 207c478bd9Sstevel@tonic-gate */ 217c478bd9Sstevel@tonic-gate /* 225a59a8b3Srsb * Copyright 2006 Sun Microsystems, Inc. All rights reserved. 237c478bd9Sstevel@tonic-gate * Use is subject to license terms. 247c478bd9Sstevel@tonic-gate */ 257c478bd9Sstevel@tonic-gate 267c478bd9Sstevel@tonic-gate /* Copyright (c) 1983, 1984, 1985, 1986, 1987, 1988, 1989 AT&T */ 277c478bd9Sstevel@tonic-gate /* All Rights Reserved */ 287c478bd9Sstevel@tonic-gate 297c478bd9Sstevel@tonic-gate /* 307c478bd9Sstevel@tonic-gate * University Copyright- Copyright (c) 1982, 1986, 1988 317c478bd9Sstevel@tonic-gate * The Regents of the University of California 327c478bd9Sstevel@tonic-gate * All Rights Reserved 337c478bd9Sstevel@tonic-gate * 347c478bd9Sstevel@tonic-gate * University Acknowledgment- Portions of this document are derived from 357c478bd9Sstevel@tonic-gate * software developed by the University of California, Berkeley, and its 367c478bd9Sstevel@tonic-gate * contributors. 377c478bd9Sstevel@tonic-gate */ 387c478bd9Sstevel@tonic-gate 397c478bd9Sstevel@tonic-gate 407c478bd9Sstevel@tonic-gate #pragma ident "%Z%%M% %I% %E% SMI" 417c478bd9Sstevel@tonic-gate 427c478bd9Sstevel@tonic-gate #include <sys/types.h> 437c478bd9Sstevel@tonic-gate #include <sys/t_lock.h> 447c478bd9Sstevel@tonic-gate #include <sys/param.h> 457c478bd9Sstevel@tonic-gate #include <sys/errno.h> 467c478bd9Sstevel@tonic-gate #include <sys/user.h> 477c478bd9Sstevel@tonic-gate #include <sys/fstyp.h> 487c478bd9Sstevel@tonic-gate #include <sys/kmem.h> 497c478bd9Sstevel@tonic-gate #include <sys/systm.h> 507c478bd9Sstevel@tonic-gate #include <sys/proc.h> 517c478bd9Sstevel@tonic-gate #include <sys/mount.h> 527c478bd9Sstevel@tonic-gate #include <sys/vfs.h> 537c478bd9Sstevel@tonic-gate #include <sys/fem.h> 547c478bd9Sstevel@tonic-gate #include <sys/mntent.h> 557c478bd9Sstevel@tonic-gate #include <sys/stat.h> 567c478bd9Sstevel@tonic-gate #include <sys/statvfs.h> 577c478bd9Sstevel@tonic-gate #include <sys/statfs.h> 587c478bd9Sstevel@tonic-gate #include <sys/cred.h> 597c478bd9Sstevel@tonic-gate #include <sys/vnode.h> 607c478bd9Sstevel@tonic-gate #include <sys/rwstlock.h> 617c478bd9Sstevel@tonic-gate #include <sys/dnlc.h> 627c478bd9Sstevel@tonic-gate #include <sys/file.h> 637c478bd9Sstevel@tonic-gate #include <sys/time.h> 647c478bd9Sstevel@tonic-gate #include <sys/atomic.h> 657c478bd9Sstevel@tonic-gate #include <sys/cmn_err.h> 667c478bd9Sstevel@tonic-gate #include <sys/buf.h> 677c478bd9Sstevel@tonic-gate #include <sys/swap.h> 687c478bd9Sstevel@tonic-gate #include <sys/debug.h> 697c478bd9Sstevel@tonic-gate #include <sys/vnode.h> 707c478bd9Sstevel@tonic-gate #include <sys/modctl.h> 717c478bd9Sstevel@tonic-gate #include <sys/ddi.h> 727c478bd9Sstevel@tonic-gate #include <sys/pathname.h> 737c478bd9Sstevel@tonic-gate #include <sys/bootconf.h> 747c478bd9Sstevel@tonic-gate #include <sys/dumphdr.h> 757c478bd9Sstevel@tonic-gate #include <sys/dc_ki.h> 767c478bd9Sstevel@tonic-gate #include <sys/poll.h> 777c478bd9Sstevel@tonic-gate #include <sys/sunddi.h> 787c478bd9Sstevel@tonic-gate #include <sys/sysmacros.h> 797c478bd9Sstevel@tonic-gate #include <sys/zone.h> 807c478bd9Sstevel@tonic-gate #include <sys/policy.h> 817c478bd9Sstevel@tonic-gate #include <sys/ctfs.h> 827c478bd9Sstevel@tonic-gate #include <sys/objfs.h> 837c478bd9Sstevel@tonic-gate #include <sys/console.h> 847c478bd9Sstevel@tonic-gate #include <sys/reboot.h> 857c478bd9Sstevel@tonic-gate 867c478bd9Sstevel@tonic-gate #include <vm/page.h> 877c478bd9Sstevel@tonic-gate 887c478bd9Sstevel@tonic-gate #include <fs/fs_subr.h> 897c478bd9Sstevel@tonic-gate 9082c7f3c4Srsb /* Private interfaces to create vopstats-related data structures */ 9182c7f3c4Srsb extern void initialize_vopstats(vopstats_t *); 9282c7f3c4Srsb extern vopstats_t *get_fstype_vopstats(struct vfs *, struct vfssw *); 9382c7f3c4Srsb extern vsk_anchor_t *get_vskstat_anchor(struct vfs *); 9482c7f3c4Srsb 957c478bd9Sstevel@tonic-gate static void vfs_clearmntopt_nolock(mntopts_t *, const char *, int); 967c478bd9Sstevel@tonic-gate static void vfs_setmntopt_nolock(mntopts_t *, const char *, 977c478bd9Sstevel@tonic-gate const char *, int, int); 987c478bd9Sstevel@tonic-gate static int vfs_optionisset_nolock(const mntopts_t *, const char *, char **); 997c478bd9Sstevel@tonic-gate static void vfs_freemnttab(struct vfs *); 1007c478bd9Sstevel@tonic-gate static void vfs_freeopt(mntopt_t *); 1017c478bd9Sstevel@tonic-gate static void vfs_swapopttbl_nolock(mntopts_t *, mntopts_t *); 1027c478bd9Sstevel@tonic-gate static void vfs_swapopttbl(mntopts_t *, mntopts_t *); 1037c478bd9Sstevel@tonic-gate static void vfs_copyopttbl_extend(const mntopts_t *, mntopts_t *, int); 1047c478bd9Sstevel@tonic-gate static void vfs_createopttbl_extend(mntopts_t *, const char *, 1057c478bd9Sstevel@tonic-gate const mntopts_t *); 1067c478bd9Sstevel@tonic-gate static char **vfs_copycancelopt_extend(char **const, int); 1077c478bd9Sstevel@tonic-gate static void vfs_freecancelopt(char **); 1087c478bd9Sstevel@tonic-gate static char *getrootfs(void); 1097c478bd9Sstevel@tonic-gate static int getmacpath(dev_info_t *, void *); 1107c478bd9Sstevel@tonic-gate 1117c478bd9Sstevel@tonic-gate struct ipmnt { 1127c478bd9Sstevel@tonic-gate struct ipmnt *mip_next; 1137c478bd9Sstevel@tonic-gate dev_t mip_dev; 1147c478bd9Sstevel@tonic-gate struct vfs *mip_vfsp; 1157c478bd9Sstevel@tonic-gate }; 1167c478bd9Sstevel@tonic-gate 1177c478bd9Sstevel@tonic-gate static kmutex_t vfs_miplist_mutex; 1187c478bd9Sstevel@tonic-gate static struct ipmnt *vfs_miplist = NULL; 1197c478bd9Sstevel@tonic-gate static struct ipmnt *vfs_miplist_end = NULL; 1207c478bd9Sstevel@tonic-gate 1217c478bd9Sstevel@tonic-gate /* 1227c478bd9Sstevel@tonic-gate * VFS global data. 1237c478bd9Sstevel@tonic-gate */ 1247c478bd9Sstevel@tonic-gate vnode_t *rootdir; /* pointer to root inode vnode. */ 1257c478bd9Sstevel@tonic-gate vnode_t *devicesdir; /* pointer to inode of devices root */ 126*facf4a8dSllai1 vnode_t *devdir; /* pointer to inode of dev root */ 1277c478bd9Sstevel@tonic-gate 1287c478bd9Sstevel@tonic-gate char *server_rootpath; /* root path for diskless clients */ 1297c478bd9Sstevel@tonic-gate char *server_hostname; /* hostname of diskless server */ 1307c478bd9Sstevel@tonic-gate 1317c478bd9Sstevel@tonic-gate static struct vfs root; 1327c478bd9Sstevel@tonic-gate static struct vfs devices; 133*facf4a8dSllai1 static struct vfs dev; 1347c478bd9Sstevel@tonic-gate struct vfs *rootvfs = &root; /* pointer to root vfs; head of VFS list. */ 1357c478bd9Sstevel@tonic-gate rvfs_t *rvfs_list; /* array of vfs ptrs for vfs hash list */ 1367c478bd9Sstevel@tonic-gate int vfshsz = 512; /* # of heads/locks in vfs hash arrays */ 1377c478bd9Sstevel@tonic-gate /* must be power of 2! */ 1387c478bd9Sstevel@tonic-gate timespec_t vfs_mnttab_ctime; /* mnttab created time */ 1397c478bd9Sstevel@tonic-gate timespec_t vfs_mnttab_mtime; /* mnttab last modified time */ 1407c478bd9Sstevel@tonic-gate char *vfs_dummyfstype = "\0"; 1417c478bd9Sstevel@tonic-gate struct pollhead vfs_pollhd; /* for mnttab pollers */ 1427c478bd9Sstevel@tonic-gate 1437c478bd9Sstevel@tonic-gate /* 1447c478bd9Sstevel@tonic-gate * Table for generic options recognized in the VFS layer and acted 1457c478bd9Sstevel@tonic-gate * on at this level before parsing file system specific options. 1467c478bd9Sstevel@tonic-gate * The nosuid option is stronger than any of the devices and setuid 1477c478bd9Sstevel@tonic-gate * options, so those are canceled when nosuid is seen. 1487c478bd9Sstevel@tonic-gate * 1497c478bd9Sstevel@tonic-gate * All options which are added here need to be added to the 1507c478bd9Sstevel@tonic-gate * list of standard options in usr/src/cmd/fs.d/fslib.c as well. 1517c478bd9Sstevel@tonic-gate */ 1527c478bd9Sstevel@tonic-gate /* 1537c478bd9Sstevel@tonic-gate * VFS Mount options table 1547c478bd9Sstevel@tonic-gate */ 1557c478bd9Sstevel@tonic-gate static char *ro_cancel[] = { MNTOPT_RW, NULL }; 1567c478bd9Sstevel@tonic-gate static char *rw_cancel[] = { MNTOPT_RO, NULL }; 1577c478bd9Sstevel@tonic-gate static char *suid_cancel[] = { MNTOPT_NOSUID, NULL }; 1587c478bd9Sstevel@tonic-gate static char *nosuid_cancel[] = { MNTOPT_SUID, MNTOPT_DEVICES, MNTOPT_NODEVICES, 1597c478bd9Sstevel@tonic-gate MNTOPT_NOSETUID, MNTOPT_SETUID, NULL }; 1607c478bd9Sstevel@tonic-gate static char *devices_cancel[] = { MNTOPT_NODEVICES, NULL }; 1617c478bd9Sstevel@tonic-gate static char *nodevices_cancel[] = { MNTOPT_DEVICES, NULL }; 1627c478bd9Sstevel@tonic-gate static char *setuid_cancel[] = { MNTOPT_NOSETUID, NULL }; 1637c478bd9Sstevel@tonic-gate static char *nosetuid_cancel[] = { MNTOPT_SETUID, NULL }; 1647c478bd9Sstevel@tonic-gate static char *nbmand_cancel[] = { MNTOPT_NONBMAND, NULL }; 1657c478bd9Sstevel@tonic-gate static char *nonbmand_cancel[] = { MNTOPT_NBMAND, NULL }; 1667c478bd9Sstevel@tonic-gate static char *exec_cancel[] = { MNTOPT_NOEXEC, NULL }; 1677c478bd9Sstevel@tonic-gate static char *noexec_cancel[] = { MNTOPT_EXEC, NULL }; 1687c478bd9Sstevel@tonic-gate 1697c478bd9Sstevel@tonic-gate static const mntopt_t mntopts[] = { 1707c478bd9Sstevel@tonic-gate /* 1717c478bd9Sstevel@tonic-gate * option name cancel options default arg flags 1727c478bd9Sstevel@tonic-gate */ 1737c478bd9Sstevel@tonic-gate { MNTOPT_REMOUNT, NULL, NULL, 1747c478bd9Sstevel@tonic-gate MO_NODISPLAY, (void *)0 }, 1757c478bd9Sstevel@tonic-gate { MNTOPT_RO, ro_cancel, NULL, 0, 1767c478bd9Sstevel@tonic-gate (void *)0 }, 1777c478bd9Sstevel@tonic-gate { MNTOPT_RW, rw_cancel, NULL, 0, 1787c478bd9Sstevel@tonic-gate (void *)0 }, 1797c478bd9Sstevel@tonic-gate { MNTOPT_SUID, suid_cancel, NULL, 0, 1807c478bd9Sstevel@tonic-gate (void *)0 }, 1817c478bd9Sstevel@tonic-gate { MNTOPT_NOSUID, nosuid_cancel, NULL, 0, 1827c478bd9Sstevel@tonic-gate (void *)0 }, 1837c478bd9Sstevel@tonic-gate { MNTOPT_DEVICES, devices_cancel, NULL, 0, 1847c478bd9Sstevel@tonic-gate (void *)0 }, 1857c478bd9Sstevel@tonic-gate { MNTOPT_NODEVICES, nodevices_cancel, NULL, 0, 1867c478bd9Sstevel@tonic-gate (void *)0 }, 1877c478bd9Sstevel@tonic-gate { MNTOPT_SETUID, setuid_cancel, NULL, 0, 1887c478bd9Sstevel@tonic-gate (void *)0 }, 1897c478bd9Sstevel@tonic-gate { MNTOPT_NOSETUID, nosetuid_cancel, NULL, 0, 1907c478bd9Sstevel@tonic-gate (void *)0 }, 1917c478bd9Sstevel@tonic-gate { MNTOPT_NBMAND, nbmand_cancel, NULL, 0, 1927c478bd9Sstevel@tonic-gate (void *)0 }, 1937c478bd9Sstevel@tonic-gate { MNTOPT_NONBMAND, nonbmand_cancel, NULL, 0, 1947c478bd9Sstevel@tonic-gate (void *)0 }, 1957c478bd9Sstevel@tonic-gate { MNTOPT_EXEC, exec_cancel, NULL, 0, 1967c478bd9Sstevel@tonic-gate (void *)0 }, 1977c478bd9Sstevel@tonic-gate { MNTOPT_NOEXEC, noexec_cancel, NULL, 0, 1987c478bd9Sstevel@tonic-gate (void *)0 }, 1997c478bd9Sstevel@tonic-gate }; 2007c478bd9Sstevel@tonic-gate 2017c478bd9Sstevel@tonic-gate const mntopts_t vfs_mntopts = { 2027c478bd9Sstevel@tonic-gate sizeof (mntopts) / sizeof (mntopt_t), 2037c478bd9Sstevel@tonic-gate (mntopt_t *)&mntopts[0] 2047c478bd9Sstevel@tonic-gate }; 2057c478bd9Sstevel@tonic-gate 2067c478bd9Sstevel@tonic-gate /* 2077c478bd9Sstevel@tonic-gate * File system operation dispatch functions. 2087c478bd9Sstevel@tonic-gate */ 2097c478bd9Sstevel@tonic-gate 2107c478bd9Sstevel@tonic-gate int 2117c478bd9Sstevel@tonic-gate fsop_mount(vfs_t *vfsp, vnode_t *mvp, struct mounta *uap, cred_t *cr) 2127c478bd9Sstevel@tonic-gate { 2137c478bd9Sstevel@tonic-gate return (*(vfsp)->vfs_op->vfs_mount)(vfsp, mvp, uap, cr); 2147c478bd9Sstevel@tonic-gate } 2157c478bd9Sstevel@tonic-gate 2167c478bd9Sstevel@tonic-gate int 2177c478bd9Sstevel@tonic-gate fsop_unmount(vfs_t *vfsp, int flag, cred_t *cr) 2187c478bd9Sstevel@tonic-gate { 2197c478bd9Sstevel@tonic-gate return (*(vfsp)->vfs_op->vfs_unmount)(vfsp, flag, cr); 2207c478bd9Sstevel@tonic-gate } 2217c478bd9Sstevel@tonic-gate 2227c478bd9Sstevel@tonic-gate int 2237c478bd9Sstevel@tonic-gate fsop_root(vfs_t *vfsp, vnode_t **vpp) 2247c478bd9Sstevel@tonic-gate { 2257c478bd9Sstevel@tonic-gate refstr_t *mntpt; 2267c478bd9Sstevel@tonic-gate int ret = (*(vfsp)->vfs_op->vfs_root)(vfsp, vpp); 2277c478bd9Sstevel@tonic-gate /* 2287c478bd9Sstevel@tonic-gate * Make sure this root has a path. With lofs, it is possible to have 2297c478bd9Sstevel@tonic-gate * a NULL mountpoint. 2307c478bd9Sstevel@tonic-gate */ 231ca2c3138Seschrock if (ret == 0 && vfsp->vfs_mntpt != NULL && (*vpp)->v_path == NULL) { 2327c478bd9Sstevel@tonic-gate mntpt = vfs_getmntpoint(vfsp); 2337c478bd9Sstevel@tonic-gate vn_setpath_str(*vpp, refstr_value(mntpt), 2347c478bd9Sstevel@tonic-gate strlen(refstr_value(mntpt))); 2357c478bd9Sstevel@tonic-gate refstr_rele(mntpt); 2367c478bd9Sstevel@tonic-gate } 2377c478bd9Sstevel@tonic-gate 2387c478bd9Sstevel@tonic-gate return (ret); 2397c478bd9Sstevel@tonic-gate } 2407c478bd9Sstevel@tonic-gate 2417c478bd9Sstevel@tonic-gate int 2427c478bd9Sstevel@tonic-gate fsop_statfs(vfs_t *vfsp, statvfs64_t *sp) 2437c478bd9Sstevel@tonic-gate { 2447c478bd9Sstevel@tonic-gate return (*(vfsp)->vfs_op->vfs_statvfs)(vfsp, sp); 2457c478bd9Sstevel@tonic-gate } 2467c478bd9Sstevel@tonic-gate 2477c478bd9Sstevel@tonic-gate int 2487c478bd9Sstevel@tonic-gate fsop_sync(vfs_t *vfsp, short flag, cred_t *cr) 2497c478bd9Sstevel@tonic-gate { 2507c478bd9Sstevel@tonic-gate return (*(vfsp)->vfs_op->vfs_sync)(vfsp, flag, cr); 2517c478bd9Sstevel@tonic-gate } 2527c478bd9Sstevel@tonic-gate 2537c478bd9Sstevel@tonic-gate int 2547c478bd9Sstevel@tonic-gate fsop_vget(vfs_t *vfsp, vnode_t **vpp, fid_t *fidp) 2557c478bd9Sstevel@tonic-gate { 2567c478bd9Sstevel@tonic-gate return (*(vfsp)->vfs_op->vfs_vget)(vfsp, vpp, fidp); 2577c478bd9Sstevel@tonic-gate } 2587c478bd9Sstevel@tonic-gate 2597c478bd9Sstevel@tonic-gate int 2607c478bd9Sstevel@tonic-gate fsop_mountroot(vfs_t *vfsp, enum whymountroot reason) 2617c478bd9Sstevel@tonic-gate { 2627c478bd9Sstevel@tonic-gate return (*(vfsp)->vfs_op->vfs_mountroot)(vfsp, reason); 2637c478bd9Sstevel@tonic-gate } 2647c478bd9Sstevel@tonic-gate 2657c478bd9Sstevel@tonic-gate void 2667c478bd9Sstevel@tonic-gate fsop_freefs(vfs_t *vfsp) 2677c478bd9Sstevel@tonic-gate { 2687c478bd9Sstevel@tonic-gate (*(vfsp)->vfs_op->vfs_freevfs)(vfsp); 2697c478bd9Sstevel@tonic-gate } 2707c478bd9Sstevel@tonic-gate 2717c478bd9Sstevel@tonic-gate int 2727c478bd9Sstevel@tonic-gate fsop_vnstate(vfs_t *vfsp, vnode_t *vp, vntrans_t nstate) 2737c478bd9Sstevel@tonic-gate { 2747c478bd9Sstevel@tonic-gate return ((*(vfsp)->vfs_op->vfs_vnstate)(vfsp, vp, nstate)); 2757c478bd9Sstevel@tonic-gate } 2767c478bd9Sstevel@tonic-gate 2777c478bd9Sstevel@tonic-gate int 2787c478bd9Sstevel@tonic-gate fsop_sync_by_kind(int fstype, short flag, cred_t *cr) 2797c478bd9Sstevel@tonic-gate { 2807c478bd9Sstevel@tonic-gate ASSERT((fstype >= 0) && (fstype < nfstype)); 2817c478bd9Sstevel@tonic-gate 2827c478bd9Sstevel@tonic-gate if (ALLOCATED_VFSSW(&vfssw[fstype]) && VFS_INSTALLED(&vfssw[fstype])) 2837c478bd9Sstevel@tonic-gate return (*vfssw[fstype].vsw_vfsops.vfs_sync) (NULL, flag, cr); 2847c478bd9Sstevel@tonic-gate else 2857c478bd9Sstevel@tonic-gate return (ENOTSUP); 2867c478bd9Sstevel@tonic-gate } 2877c478bd9Sstevel@tonic-gate 2887c478bd9Sstevel@tonic-gate /* 2897c478bd9Sstevel@tonic-gate * File system initialization. vfs_setfsops() must be called from a file 2907c478bd9Sstevel@tonic-gate * system's init routine. 2917c478bd9Sstevel@tonic-gate */ 2927c478bd9Sstevel@tonic-gate 2937c478bd9Sstevel@tonic-gate static int 2947c478bd9Sstevel@tonic-gate fs_copyfsops(const fs_operation_def_t *template, vfsops_t *actual, 2957c478bd9Sstevel@tonic-gate int *unused_ops) 2967c478bd9Sstevel@tonic-gate { 2977c478bd9Sstevel@tonic-gate static const fs_operation_trans_def_t vfs_ops_table[] = { 2987c478bd9Sstevel@tonic-gate VFSNAME_MOUNT, offsetof(vfsops_t, vfs_mount), 2997c478bd9Sstevel@tonic-gate fs_nosys, fs_nosys, 3007c478bd9Sstevel@tonic-gate 3017c478bd9Sstevel@tonic-gate VFSNAME_UNMOUNT, offsetof(vfsops_t, vfs_unmount), 3027c478bd9Sstevel@tonic-gate fs_nosys, fs_nosys, 3037c478bd9Sstevel@tonic-gate 3047c478bd9Sstevel@tonic-gate VFSNAME_ROOT, offsetof(vfsops_t, vfs_root), 3057c478bd9Sstevel@tonic-gate fs_nosys, fs_nosys, 3067c478bd9Sstevel@tonic-gate 3077c478bd9Sstevel@tonic-gate VFSNAME_STATVFS, offsetof(vfsops_t, vfs_statvfs), 3087c478bd9Sstevel@tonic-gate fs_nosys, fs_nosys, 3097c478bd9Sstevel@tonic-gate 3107c478bd9Sstevel@tonic-gate VFSNAME_SYNC, offsetof(vfsops_t, vfs_sync), 3117c478bd9Sstevel@tonic-gate (fs_generic_func_p) fs_sync, 3127c478bd9Sstevel@tonic-gate (fs_generic_func_p) fs_sync, /* No errors allowed */ 3137c478bd9Sstevel@tonic-gate 3147c478bd9Sstevel@tonic-gate VFSNAME_VGET, offsetof(vfsops_t, vfs_vget), 3157c478bd9Sstevel@tonic-gate fs_nosys, fs_nosys, 3167c478bd9Sstevel@tonic-gate 3177c478bd9Sstevel@tonic-gate VFSNAME_MOUNTROOT, offsetof(vfsops_t, vfs_mountroot), 3187c478bd9Sstevel@tonic-gate fs_nosys, fs_nosys, 3197c478bd9Sstevel@tonic-gate 3207c478bd9Sstevel@tonic-gate VFSNAME_FREEVFS, offsetof(vfsops_t, vfs_freevfs), 3217c478bd9Sstevel@tonic-gate (fs_generic_func_p)fs_freevfs, 3227c478bd9Sstevel@tonic-gate (fs_generic_func_p)fs_freevfs, /* Shouldn't fail */ 3237c478bd9Sstevel@tonic-gate 3247c478bd9Sstevel@tonic-gate VFSNAME_VNSTATE, offsetof(vfsops_t, vfs_vnstate), 3257c478bd9Sstevel@tonic-gate (fs_generic_func_p)fs_nosys, 3267c478bd9Sstevel@tonic-gate (fs_generic_func_p)fs_nosys, 3277c478bd9Sstevel@tonic-gate 3287c478bd9Sstevel@tonic-gate NULL, 0, NULL, NULL 3297c478bd9Sstevel@tonic-gate }; 3307c478bd9Sstevel@tonic-gate 3317c478bd9Sstevel@tonic-gate return (fs_build_vector(actual, unused_ops, vfs_ops_table, template)); 3327c478bd9Sstevel@tonic-gate } 3337c478bd9Sstevel@tonic-gate 3347c478bd9Sstevel@tonic-gate int 3357c478bd9Sstevel@tonic-gate vfs_setfsops(int fstype, const fs_operation_def_t *template, vfsops_t **actual) 3367c478bd9Sstevel@tonic-gate { 3377c478bd9Sstevel@tonic-gate int error; 3387c478bd9Sstevel@tonic-gate int unused_ops; 3397c478bd9Sstevel@tonic-gate 3407c478bd9Sstevel@tonic-gate /* Verify that fstype refers to a loaded fs (and not fsid 0). */ 3417c478bd9Sstevel@tonic-gate 3427c478bd9Sstevel@tonic-gate if ((fstype <= 0) || (fstype >= nfstype)) 3437c478bd9Sstevel@tonic-gate return (EINVAL); 3447c478bd9Sstevel@tonic-gate 3457c478bd9Sstevel@tonic-gate if (!ALLOCATED_VFSSW(&vfssw[fstype])) 3467c478bd9Sstevel@tonic-gate return (EINVAL); 3477c478bd9Sstevel@tonic-gate 3487c478bd9Sstevel@tonic-gate /* Set up the operations vector. */ 3497c478bd9Sstevel@tonic-gate 3507c478bd9Sstevel@tonic-gate error = fs_copyfsops(template, &vfssw[fstype].vsw_vfsops, &unused_ops); 3517c478bd9Sstevel@tonic-gate 3527c478bd9Sstevel@tonic-gate if (error != 0) 3537c478bd9Sstevel@tonic-gate return (error); 3547c478bd9Sstevel@tonic-gate 3557c478bd9Sstevel@tonic-gate vfssw[fstype].vsw_flag |= VSW_INSTALLED; 3567c478bd9Sstevel@tonic-gate 3577c478bd9Sstevel@tonic-gate if (actual != NULL) 3587c478bd9Sstevel@tonic-gate *actual = &vfssw[fstype].vsw_vfsops; 3597c478bd9Sstevel@tonic-gate 3607c478bd9Sstevel@tonic-gate #if DEBUG 3617c478bd9Sstevel@tonic-gate if (unused_ops != 0) 3627c478bd9Sstevel@tonic-gate cmn_err(CE_WARN, "vfs_setfsops: %s: %d operations supplied " 3637c478bd9Sstevel@tonic-gate "but not used", vfssw[fstype].vsw_name, unused_ops); 3647c478bd9Sstevel@tonic-gate #endif 3657c478bd9Sstevel@tonic-gate 3667c478bd9Sstevel@tonic-gate return (0); 3677c478bd9Sstevel@tonic-gate } 3687c478bd9Sstevel@tonic-gate 3697c478bd9Sstevel@tonic-gate int 3707c478bd9Sstevel@tonic-gate vfs_makefsops(const fs_operation_def_t *template, vfsops_t **actual) 3717c478bd9Sstevel@tonic-gate { 3727c478bd9Sstevel@tonic-gate int error; 3737c478bd9Sstevel@tonic-gate int unused_ops; 3747c478bd9Sstevel@tonic-gate 3757c478bd9Sstevel@tonic-gate *actual = (vfsops_t *)kmem_alloc(sizeof (vfsops_t), KM_SLEEP); 3767c478bd9Sstevel@tonic-gate 3777c478bd9Sstevel@tonic-gate error = fs_copyfsops(template, *actual, &unused_ops); 3787c478bd9Sstevel@tonic-gate if (error != 0) { 3797c478bd9Sstevel@tonic-gate kmem_free(*actual, sizeof (vfsops_t)); 3807c478bd9Sstevel@tonic-gate *actual = NULL; 3817c478bd9Sstevel@tonic-gate return (error); 3827c478bd9Sstevel@tonic-gate } 3837c478bd9Sstevel@tonic-gate 3847c478bd9Sstevel@tonic-gate return (0); 3857c478bd9Sstevel@tonic-gate } 3867c478bd9Sstevel@tonic-gate 3877c478bd9Sstevel@tonic-gate /* 3887c478bd9Sstevel@tonic-gate * Free a vfsops structure created as a result of vfs_makefsops(). 3897c478bd9Sstevel@tonic-gate * NOTE: For a vfsops structure initialized by vfs_setfsops(), use 3907c478bd9Sstevel@tonic-gate * vfs_freevfsops_by_type(). 3917c478bd9Sstevel@tonic-gate */ 3927c478bd9Sstevel@tonic-gate void 3937c478bd9Sstevel@tonic-gate vfs_freevfsops(vfsops_t *vfsops) 3947c478bd9Sstevel@tonic-gate { 3957c478bd9Sstevel@tonic-gate kmem_free(vfsops, sizeof (vfsops_t)); 3967c478bd9Sstevel@tonic-gate } 3977c478bd9Sstevel@tonic-gate 3987c478bd9Sstevel@tonic-gate /* 3997c478bd9Sstevel@tonic-gate * Since the vfsops structure is part of the vfssw table and wasn't 4007c478bd9Sstevel@tonic-gate * really allocated, we're not really freeing anything. We keep 4017c478bd9Sstevel@tonic-gate * the name for consistency with vfs_freevfsops(). We do, however, 4027c478bd9Sstevel@tonic-gate * need to take care of a little bookkeeping. 4037c478bd9Sstevel@tonic-gate * NOTE: For a vfsops structure created by vfs_setfsops(), use 4047c478bd9Sstevel@tonic-gate * vfs_freevfsops_by_type(). 4057c478bd9Sstevel@tonic-gate */ 4067c478bd9Sstevel@tonic-gate int 4077c478bd9Sstevel@tonic-gate vfs_freevfsops_by_type(int fstype) 4087c478bd9Sstevel@tonic-gate { 4097c478bd9Sstevel@tonic-gate 4107c478bd9Sstevel@tonic-gate /* Verify that fstype refers to a loaded fs (and not fsid 0). */ 4117c478bd9Sstevel@tonic-gate if ((fstype <= 0) || (fstype >= nfstype)) 4127c478bd9Sstevel@tonic-gate return (EINVAL); 4137c478bd9Sstevel@tonic-gate 4147c478bd9Sstevel@tonic-gate WLOCK_VFSSW(); 4157c478bd9Sstevel@tonic-gate if ((vfssw[fstype].vsw_flag & VSW_INSTALLED) == 0) { 4167c478bd9Sstevel@tonic-gate WUNLOCK_VFSSW(); 4177c478bd9Sstevel@tonic-gate return (EINVAL); 4187c478bd9Sstevel@tonic-gate } 4197c478bd9Sstevel@tonic-gate 4207c478bd9Sstevel@tonic-gate vfssw[fstype].vsw_flag &= ~VSW_INSTALLED; 4217c478bd9Sstevel@tonic-gate WUNLOCK_VFSSW(); 4227c478bd9Sstevel@tonic-gate 4237c478bd9Sstevel@tonic-gate return (0); 4247c478bd9Sstevel@tonic-gate } 4257c478bd9Sstevel@tonic-gate 4267c478bd9Sstevel@tonic-gate /* Support routines used to reference vfs_op */ 4277c478bd9Sstevel@tonic-gate 4287c478bd9Sstevel@tonic-gate /* Set the operations vector for a vfs */ 4297c478bd9Sstevel@tonic-gate void 4307c478bd9Sstevel@tonic-gate vfs_setops(vfs_t *vfsp, vfsops_t *vfsops) 4317c478bd9Sstevel@tonic-gate { 4327c478bd9Sstevel@tonic-gate vfsops_t *op; 4337c478bd9Sstevel@tonic-gate 4347c478bd9Sstevel@tonic-gate ASSERT(vfsp != NULL); 4357c478bd9Sstevel@tonic-gate ASSERT(vfsops != NULL); 4367c478bd9Sstevel@tonic-gate 4377c478bd9Sstevel@tonic-gate op = vfsp->vfs_op; 4387c478bd9Sstevel@tonic-gate membar_consumer(); 439ddfcde86Srsb if ((vfsp->vfs_implp == NULL || vfsp->vfs_femhead == NULL) && 4407c478bd9Sstevel@tonic-gate casptr(&vfsp->vfs_op, op, vfsops) == op) { 4417c478bd9Sstevel@tonic-gate return; 4427c478bd9Sstevel@tonic-gate } 4437c478bd9Sstevel@tonic-gate fsem_setvfsops(vfsp, vfsops); 4447c478bd9Sstevel@tonic-gate } 4457c478bd9Sstevel@tonic-gate 4467c478bd9Sstevel@tonic-gate /* Retrieve the operations vector for a vfs */ 4477c478bd9Sstevel@tonic-gate vfsops_t * 4487c478bd9Sstevel@tonic-gate vfs_getops(vfs_t *vfsp) 4497c478bd9Sstevel@tonic-gate { 4507c478bd9Sstevel@tonic-gate vfsops_t *op; 4517c478bd9Sstevel@tonic-gate 4527c478bd9Sstevel@tonic-gate ASSERT(vfsp != NULL); 4537c478bd9Sstevel@tonic-gate 4547c478bd9Sstevel@tonic-gate op = vfsp->vfs_op; 4557c478bd9Sstevel@tonic-gate membar_consumer(); 456ddfcde86Srsb if ((vfsp->vfs_implp == NULL || vfsp->vfs_femhead == NULL) && 457ddfcde86Srsb op == vfsp->vfs_op) { 4587c478bd9Sstevel@tonic-gate return (op); 4597c478bd9Sstevel@tonic-gate } else { 4607c478bd9Sstevel@tonic-gate return (fsem_getvfsops(vfsp)); 4617c478bd9Sstevel@tonic-gate } 4627c478bd9Sstevel@tonic-gate } 4637c478bd9Sstevel@tonic-gate 4647c478bd9Sstevel@tonic-gate /* 4657c478bd9Sstevel@tonic-gate * Returns non-zero (1) if the vfsops matches that of the vfs. 4667c478bd9Sstevel@tonic-gate * Returns zero (0) if not. 4677c478bd9Sstevel@tonic-gate */ 4687c478bd9Sstevel@tonic-gate int 4697c478bd9Sstevel@tonic-gate vfs_matchops(vfs_t *vfsp, vfsops_t *vfsops) 4707c478bd9Sstevel@tonic-gate { 4717c478bd9Sstevel@tonic-gate return (vfs_getops(vfsp) == vfsops); 4727c478bd9Sstevel@tonic-gate } 4737c478bd9Sstevel@tonic-gate 4747c478bd9Sstevel@tonic-gate /* 4757c478bd9Sstevel@tonic-gate * Returns non-zero (1) if the file system has installed a non-default, 4767c478bd9Sstevel@tonic-gate * non-error vfs_sync routine. Returns zero (0) otherwise. 4777c478bd9Sstevel@tonic-gate */ 4787c478bd9Sstevel@tonic-gate int 4797c478bd9Sstevel@tonic-gate vfs_can_sync(vfs_t *vfsp) 4807c478bd9Sstevel@tonic-gate { 4817c478bd9Sstevel@tonic-gate /* vfs_sync() routine is not the default/error function */ 4827c478bd9Sstevel@tonic-gate return (vfs_getops(vfsp)->vfs_sync != fs_sync); 4837c478bd9Sstevel@tonic-gate } 4847c478bd9Sstevel@tonic-gate 4857c478bd9Sstevel@tonic-gate /* 4867c478bd9Sstevel@tonic-gate * Initialize a vfs structure. 4877c478bd9Sstevel@tonic-gate */ 4887c478bd9Sstevel@tonic-gate void 4897c478bd9Sstevel@tonic-gate vfs_init(vfs_t *vfsp, vfsops_t *op, void *data) 4907c478bd9Sstevel@tonic-gate { 4917c478bd9Sstevel@tonic-gate vfsp->vfs_count = 0; 4927c478bd9Sstevel@tonic-gate vfsp->vfs_next = vfsp; 4937c478bd9Sstevel@tonic-gate vfsp->vfs_prev = vfsp; 4947c478bd9Sstevel@tonic-gate vfsp->vfs_zone_next = vfsp; 4957c478bd9Sstevel@tonic-gate vfsp->vfs_zone_prev = vfsp; 4967c478bd9Sstevel@tonic-gate vfsp->vfs_flag = 0; 4977c478bd9Sstevel@tonic-gate vfsp->vfs_data = (data); 4987c478bd9Sstevel@tonic-gate vfsp->vfs_resource = NULL; 4997c478bd9Sstevel@tonic-gate vfsp->vfs_mntpt = NULL; 5007c478bd9Sstevel@tonic-gate vfsp->vfs_mntopts.mo_count = 0; 5017c478bd9Sstevel@tonic-gate vfsp->vfs_mntopts.mo_list = NULL; 502ddfcde86Srsb vfsp->vfs_implp = NULL; 5037c478bd9Sstevel@tonic-gate vfsp->vfs_zone = NULL; 5045a59a8b3Srsb /* 505ddfcde86Srsb * Note: Don't initialize any member of the vfs_impl_t structure 506ddfcde86Srsb * here as it could be a problem for unbundled file systems. 5075a59a8b3Srsb */ 5087c478bd9Sstevel@tonic-gate vfs_setops((vfsp), (op)); 5097c478bd9Sstevel@tonic-gate sema_init(&vfsp->vfs_reflock, 1, NULL, SEMA_DEFAULT, NULL); 5107c478bd9Sstevel@tonic-gate } 5117c478bd9Sstevel@tonic-gate 512ddfcde86Srsb /* 513ddfcde86Srsb * Allocate and initialize the vfs implementation private data 514ddfcde86Srsb * structure, vfs_impl_t. 515ddfcde86Srsb */ 516ddfcde86Srsb void 517ddfcde86Srsb vfsimpl_setup(vfs_t *vfsp) 518ddfcde86Srsb { 519ddfcde86Srsb vfsp->vfs_implp = kmem_alloc(sizeof (vfs_impl_t), KM_SLEEP); 520ddfcde86Srsb /* Note that this are #define'd in vfs.h */ 521ddfcde86Srsb vfsp->vfs_femhead = NULL; 522ddfcde86Srsb vfsp->vfs_vskap = NULL; 523ddfcde86Srsb vfsp->vfs_fstypevsp = NULL; 524ddfcde86Srsb } 525ddfcde86Srsb 526ddfcde86Srsb /* 527ddfcde86Srsb * Release the vfs_impl_t structure, if it exists. Some unbundled 528ddfcde86Srsb * filesystems may not use the newer version of vfs and thus 529ddfcde86Srsb * would not contain this implementation private data structure. 530ddfcde86Srsb */ 531ddfcde86Srsb void 532ddfcde86Srsb vfsimpl_teardown(vfs_t *vfsp) 533ddfcde86Srsb { 534ddfcde86Srsb vfs_impl_t *vip = vfsp->vfs_implp; 535ddfcde86Srsb 536ddfcde86Srsb if (vip == NULL) 537ddfcde86Srsb return; 538ddfcde86Srsb 539ddfcde86Srsb if (vip->vi_femhead) { 540ddfcde86Srsb ASSERT(vip->vi_femhead->femh_list == NULL); 541ddfcde86Srsb mutex_destroy(&vip->vi_femhead->femh_lock); 542ddfcde86Srsb kmem_free(vip->vi_femhead, sizeof (*(vip->vi_femhead))); 543ddfcde86Srsb vip->vi_femhead = NULL; 544ddfcde86Srsb } 545ddfcde86Srsb 546ddfcde86Srsb kmem_free(vfsp->vfs_implp, sizeof (vfs_impl_t)); 547ddfcde86Srsb vfsp->vfs_implp = NULL; 548ddfcde86Srsb } 5497c478bd9Sstevel@tonic-gate 5507c478bd9Sstevel@tonic-gate /* 5517c478bd9Sstevel@tonic-gate * VFS system calls: mount, umount, syssync, statfs, fstatfs, statvfs, 5527c478bd9Sstevel@tonic-gate * fstatvfs, and sysfs moved to common/syscall. 5537c478bd9Sstevel@tonic-gate */ 5547c478bd9Sstevel@tonic-gate 5557c478bd9Sstevel@tonic-gate /* 5567c478bd9Sstevel@tonic-gate * Update every mounted file system. We call the vfs_sync operation of 5577c478bd9Sstevel@tonic-gate * each file system type, passing it a NULL vfsp to indicate that all 5587c478bd9Sstevel@tonic-gate * mounted file systems of that type should be updated. 5597c478bd9Sstevel@tonic-gate */ 5607c478bd9Sstevel@tonic-gate void 5617c478bd9Sstevel@tonic-gate vfs_sync(int flag) 5627c478bd9Sstevel@tonic-gate { 5637c478bd9Sstevel@tonic-gate struct vfssw *vswp; 5647c478bd9Sstevel@tonic-gate RLOCK_VFSSW(); 5657c478bd9Sstevel@tonic-gate for (vswp = &vfssw[1]; vswp < &vfssw[nfstype]; vswp++) { 5667c478bd9Sstevel@tonic-gate if (ALLOCATED_VFSSW(vswp) && VFS_INSTALLED(vswp)) { 5677c478bd9Sstevel@tonic-gate vfs_refvfssw(vswp); 5687c478bd9Sstevel@tonic-gate RUNLOCK_VFSSW(); 5697c478bd9Sstevel@tonic-gate (void) (*vswp->vsw_vfsops.vfs_sync)(NULL, flag, 5707c478bd9Sstevel@tonic-gate CRED()); 5717c478bd9Sstevel@tonic-gate vfs_unrefvfssw(vswp); 5727c478bd9Sstevel@tonic-gate RLOCK_VFSSW(); 5737c478bd9Sstevel@tonic-gate } 5747c478bd9Sstevel@tonic-gate } 5757c478bd9Sstevel@tonic-gate RUNLOCK_VFSSW(); 5767c478bd9Sstevel@tonic-gate } 5777c478bd9Sstevel@tonic-gate 5787c478bd9Sstevel@tonic-gate void 5797c478bd9Sstevel@tonic-gate sync(void) 5807c478bd9Sstevel@tonic-gate { 5817c478bd9Sstevel@tonic-gate vfs_sync(0); 5827c478bd9Sstevel@tonic-gate } 5837c478bd9Sstevel@tonic-gate 5847c478bd9Sstevel@tonic-gate /* 5857c478bd9Sstevel@tonic-gate * External routines. 5867c478bd9Sstevel@tonic-gate */ 5877c478bd9Sstevel@tonic-gate 5887c478bd9Sstevel@tonic-gate krwlock_t vfssw_lock; /* lock accesses to vfssw */ 5897c478bd9Sstevel@tonic-gate 5907c478bd9Sstevel@tonic-gate /* 5917c478bd9Sstevel@tonic-gate * Lock for accessing the vfs linked list. Initialized in vfs_mountroot(), 5927c478bd9Sstevel@tonic-gate * but otherwise should be accessed only via vfs_list_lock() and 5937c478bd9Sstevel@tonic-gate * vfs_list_unlock(). Also used to protect the timestamp for mods to the list. 5947c478bd9Sstevel@tonic-gate */ 5957c478bd9Sstevel@tonic-gate static krwlock_t vfslist; 5967c478bd9Sstevel@tonic-gate 5977c478bd9Sstevel@tonic-gate /* 5987c478bd9Sstevel@tonic-gate * Mount devfs on /devices. This is done right after root is mounted 5997c478bd9Sstevel@tonic-gate * to provide device access support for the system 6007c478bd9Sstevel@tonic-gate */ 6017c478bd9Sstevel@tonic-gate static void 6027c478bd9Sstevel@tonic-gate vfs_mountdevices(void) 6037c478bd9Sstevel@tonic-gate { 6047c478bd9Sstevel@tonic-gate struct vfssw *vsw; 6057c478bd9Sstevel@tonic-gate struct vnode *mvp; 6067c478bd9Sstevel@tonic-gate struct mounta mounta = { /* fake mounta for devfs_mount() */ 6077c478bd9Sstevel@tonic-gate NULL, 6087c478bd9Sstevel@tonic-gate NULL, 6097c478bd9Sstevel@tonic-gate MS_SYSSPACE, 6107c478bd9Sstevel@tonic-gate NULL, 6117c478bd9Sstevel@tonic-gate NULL, 6127c478bd9Sstevel@tonic-gate 0, 6137c478bd9Sstevel@tonic-gate NULL, 6147c478bd9Sstevel@tonic-gate 0 6157c478bd9Sstevel@tonic-gate }; 6167c478bd9Sstevel@tonic-gate 6177c478bd9Sstevel@tonic-gate /* 6187c478bd9Sstevel@tonic-gate * _init devfs module to fill in the vfssw 6197c478bd9Sstevel@tonic-gate */ 6207c478bd9Sstevel@tonic-gate if (modload("fs", "devfs") == -1) 6217c478bd9Sstevel@tonic-gate cmn_err(CE_PANIC, "Cannot _init devfs module\n"); 6227c478bd9Sstevel@tonic-gate 6237c478bd9Sstevel@tonic-gate /* 6247c478bd9Sstevel@tonic-gate * Hold vfs 6257c478bd9Sstevel@tonic-gate */ 6267c478bd9Sstevel@tonic-gate RLOCK_VFSSW(); 6277c478bd9Sstevel@tonic-gate vsw = vfs_getvfsswbyname("devfs"); 6287c478bd9Sstevel@tonic-gate VFS_INIT(&devices, &vsw->vsw_vfsops, NULL); 6297c478bd9Sstevel@tonic-gate VFS_HOLD(&devices); 6307c478bd9Sstevel@tonic-gate 6317c478bd9Sstevel@tonic-gate /* 6327c478bd9Sstevel@tonic-gate * Locate mount point 6337c478bd9Sstevel@tonic-gate */ 6347c478bd9Sstevel@tonic-gate if (lookupname("/devices", UIO_SYSSPACE, FOLLOW, NULLVPP, &mvp)) 6357c478bd9Sstevel@tonic-gate cmn_err(CE_PANIC, "Cannot find /devices\n"); 6367c478bd9Sstevel@tonic-gate 6377c478bd9Sstevel@tonic-gate /* 6387c478bd9Sstevel@tonic-gate * Perform the mount of /devices 6397c478bd9Sstevel@tonic-gate */ 6407c478bd9Sstevel@tonic-gate if (VFS_MOUNT(&devices, mvp, &mounta, CRED())) 6417c478bd9Sstevel@tonic-gate cmn_err(CE_PANIC, "Cannot mount /devices\n"); 6427c478bd9Sstevel@tonic-gate 6437c478bd9Sstevel@tonic-gate RUNLOCK_VFSSW(); 6447c478bd9Sstevel@tonic-gate 6457c478bd9Sstevel@tonic-gate /* 6467c478bd9Sstevel@tonic-gate * Set appropriate members and add to vfs list for mnttab display 6477c478bd9Sstevel@tonic-gate */ 6487c478bd9Sstevel@tonic-gate vfs_setresource(&devices, "/devices"); 6497c478bd9Sstevel@tonic-gate vfs_setmntpoint(&devices, "/devices"); 6507c478bd9Sstevel@tonic-gate 6517c478bd9Sstevel@tonic-gate /* 6527c478bd9Sstevel@tonic-gate * Hold the root of /devices so it won't go away 6537c478bd9Sstevel@tonic-gate */ 6547c478bd9Sstevel@tonic-gate if (VFS_ROOT(&devices, &devicesdir)) 6557c478bd9Sstevel@tonic-gate cmn_err(CE_PANIC, "vfs_mountdevices: not devices root"); 6567c478bd9Sstevel@tonic-gate 6577c478bd9Sstevel@tonic-gate if (vfs_lock(&devices) != 0) { 658*facf4a8dSllai1 VN_RELE(devicesdir); 6597c478bd9Sstevel@tonic-gate cmn_err(CE_NOTE, "Cannot acquire vfs_lock of /devices"); 6607c478bd9Sstevel@tonic-gate return; 6617c478bd9Sstevel@tonic-gate } 6627c478bd9Sstevel@tonic-gate 6637c478bd9Sstevel@tonic-gate if (vn_vfswlock(mvp) != 0) { 6647c478bd9Sstevel@tonic-gate vfs_unlock(&devices); 665*facf4a8dSllai1 VN_RELE(devicesdir); 6667c478bd9Sstevel@tonic-gate cmn_err(CE_NOTE, "Cannot acquire vfswlock of /devices"); 6677c478bd9Sstevel@tonic-gate return; 6687c478bd9Sstevel@tonic-gate } 6697c478bd9Sstevel@tonic-gate 6707c478bd9Sstevel@tonic-gate vfs_add(mvp, &devices, 0); 6717c478bd9Sstevel@tonic-gate vn_vfsunlock(mvp); 6727c478bd9Sstevel@tonic-gate vfs_unlock(&devices); 673*facf4a8dSllai1 VN_RELE(devicesdir); 674*facf4a8dSllai1 } 675*facf4a8dSllai1 676*facf4a8dSllai1 /* 677*facf4a8dSllai1 * mount the first instance of /dev to root and remain mounted 678*facf4a8dSllai1 */ 679*facf4a8dSllai1 static void 680*facf4a8dSllai1 vfs_mountdev1(void) 681*facf4a8dSllai1 { 682*facf4a8dSllai1 struct vfssw *vsw; 683*facf4a8dSllai1 struct vnode *mvp; 684*facf4a8dSllai1 struct mounta mounta = { /* fake mounta for sdev_mount() */ 685*facf4a8dSllai1 NULL, 686*facf4a8dSllai1 NULL, 687*facf4a8dSllai1 MS_SYSSPACE | MS_OVERLAY, 688*facf4a8dSllai1 NULL, 689*facf4a8dSllai1 NULL, 690*facf4a8dSllai1 0, 691*facf4a8dSllai1 NULL, 692*facf4a8dSllai1 0 693*facf4a8dSllai1 }; 694*facf4a8dSllai1 695*facf4a8dSllai1 /* 696*facf4a8dSllai1 * _init dev module to fill in the vfssw 697*facf4a8dSllai1 */ 698*facf4a8dSllai1 if (modload("fs", "dev") == -1) 699*facf4a8dSllai1 cmn_err(CE_PANIC, "Cannot _init dev module\n"); 700*facf4a8dSllai1 701*facf4a8dSllai1 /* 702*facf4a8dSllai1 * Hold vfs 703*facf4a8dSllai1 */ 704*facf4a8dSllai1 RLOCK_VFSSW(); 705*facf4a8dSllai1 vsw = vfs_getvfsswbyname("dev"); 706*facf4a8dSllai1 VFS_INIT(&dev, &vsw->vsw_vfsops, NULL); 707*facf4a8dSllai1 VFS_HOLD(&dev); 708*facf4a8dSllai1 709*facf4a8dSllai1 /* 710*facf4a8dSllai1 * Locate mount point 711*facf4a8dSllai1 */ 712*facf4a8dSllai1 if (lookupname("/dev", UIO_SYSSPACE, FOLLOW, NULLVPP, &mvp)) 713*facf4a8dSllai1 cmn_err(CE_PANIC, "Cannot find /dev\n"); 714*facf4a8dSllai1 715*facf4a8dSllai1 /* 716*facf4a8dSllai1 * Perform the mount of /dev 717*facf4a8dSllai1 */ 718*facf4a8dSllai1 if (VFS_MOUNT(&dev, mvp, &mounta, CRED())) 719*facf4a8dSllai1 cmn_err(CE_PANIC, "Cannot mount /dev 1\n"); 720*facf4a8dSllai1 721*facf4a8dSllai1 RUNLOCK_VFSSW(); 722*facf4a8dSllai1 723*facf4a8dSllai1 /* 724*facf4a8dSllai1 * Set appropriate members and add to vfs list for mnttab display 725*facf4a8dSllai1 */ 726*facf4a8dSllai1 vfs_setresource(&dev, "/dev"); 727*facf4a8dSllai1 vfs_setmntpoint(&dev, "/dev"); 728*facf4a8dSllai1 729*facf4a8dSllai1 /* 730*facf4a8dSllai1 * Hold the root of /dev so it won't go away 731*facf4a8dSllai1 */ 732*facf4a8dSllai1 if (VFS_ROOT(&dev, &devdir)) 733*facf4a8dSllai1 cmn_err(CE_PANIC, "vfs_mountdev1: not dev root"); 734*facf4a8dSllai1 735*facf4a8dSllai1 if (vfs_lock(&dev) != 0) { 736*facf4a8dSllai1 VN_RELE(devdir); 737*facf4a8dSllai1 cmn_err(CE_NOTE, "Cannot acquire vfs_lock of /dev"); 738*facf4a8dSllai1 return; 739*facf4a8dSllai1 } 740*facf4a8dSllai1 741*facf4a8dSllai1 if (vn_vfswlock(mvp) != 0) { 742*facf4a8dSllai1 vfs_unlock(&dev); 743*facf4a8dSllai1 VN_RELE(devdir); 744*facf4a8dSllai1 cmn_err(CE_NOTE, "Cannot acquire vfswlock of /dev"); 745*facf4a8dSllai1 return; 746*facf4a8dSllai1 } 747*facf4a8dSllai1 748*facf4a8dSllai1 vfs_add(mvp, &dev, 0); 749*facf4a8dSllai1 vn_vfsunlock(mvp); 750*facf4a8dSllai1 vfs_unlock(&dev); 751*facf4a8dSllai1 VN_RELE(devdir); 7527c478bd9Sstevel@tonic-gate } 7537c478bd9Sstevel@tonic-gate 7547c478bd9Sstevel@tonic-gate /* 7557c478bd9Sstevel@tonic-gate * Mount required filesystem. This is done right after root is mounted. 7567c478bd9Sstevel@tonic-gate */ 7577c478bd9Sstevel@tonic-gate static void 7587c478bd9Sstevel@tonic-gate vfs_mountfs(char *module, char *spec, char *path) 7597c478bd9Sstevel@tonic-gate { 7607c478bd9Sstevel@tonic-gate struct vnode *mvp; 7617c478bd9Sstevel@tonic-gate struct mounta mounta; 7627c478bd9Sstevel@tonic-gate vfs_t *vfsp; 7637c478bd9Sstevel@tonic-gate 7647c478bd9Sstevel@tonic-gate mounta.flags = MS_SYSSPACE | MS_DATA; 7657c478bd9Sstevel@tonic-gate mounta.fstype = module; 7667c478bd9Sstevel@tonic-gate mounta.spec = spec; 7677c478bd9Sstevel@tonic-gate mounta.dir = path; 7687c478bd9Sstevel@tonic-gate if (lookupname(path, UIO_SYSSPACE, FOLLOW, NULLVPP, &mvp)) { 7697c478bd9Sstevel@tonic-gate cmn_err(CE_WARN, "Cannot find %s\n", path); 7707c478bd9Sstevel@tonic-gate return; 7717c478bd9Sstevel@tonic-gate } 7727c478bd9Sstevel@tonic-gate if (domount(NULL, &mounta, mvp, CRED(), &vfsp)) 7737c478bd9Sstevel@tonic-gate cmn_err(CE_WARN, "Cannot mount %s\n", path); 7747c478bd9Sstevel@tonic-gate else 7757c478bd9Sstevel@tonic-gate VFS_RELE(vfsp); 7767c478bd9Sstevel@tonic-gate VN_RELE(mvp); 7777c478bd9Sstevel@tonic-gate } 7787c478bd9Sstevel@tonic-gate 7797c478bd9Sstevel@tonic-gate /* 7807c478bd9Sstevel@tonic-gate * vfs_mountroot is called by main() to mount the root filesystem. 7817c478bd9Sstevel@tonic-gate */ 7827c478bd9Sstevel@tonic-gate void 7837c478bd9Sstevel@tonic-gate vfs_mountroot(void) 7847c478bd9Sstevel@tonic-gate { 7857c478bd9Sstevel@tonic-gate struct vnode *rvp = NULL; 7867c478bd9Sstevel@tonic-gate char *path; 7877c478bd9Sstevel@tonic-gate size_t plen; 7885a59a8b3Srsb struct vfssw *vswp; 7897c478bd9Sstevel@tonic-gate 7907c478bd9Sstevel@tonic-gate rw_init(&vfssw_lock, NULL, RW_DEFAULT, NULL); 7917c478bd9Sstevel@tonic-gate rw_init(&vfslist, NULL, RW_DEFAULT, NULL); 7927c478bd9Sstevel@tonic-gate 7937c478bd9Sstevel@tonic-gate /* 7947c478bd9Sstevel@tonic-gate * Alloc the vfs hash bucket array and locks 7957c478bd9Sstevel@tonic-gate */ 7967c478bd9Sstevel@tonic-gate rvfs_list = kmem_zalloc(vfshsz * sizeof (rvfs_t), KM_SLEEP); 7977c478bd9Sstevel@tonic-gate 7987c478bd9Sstevel@tonic-gate /* 7997c478bd9Sstevel@tonic-gate * Call machine-dependent routine "rootconf" to choose a root 8007c478bd9Sstevel@tonic-gate * file system type. 8017c478bd9Sstevel@tonic-gate */ 8027c478bd9Sstevel@tonic-gate if (rootconf()) 8037c478bd9Sstevel@tonic-gate cmn_err(CE_PANIC, "vfs_mountroot: cannot mount root"); 8047c478bd9Sstevel@tonic-gate /* 8057c478bd9Sstevel@tonic-gate * Get vnode for '/'. Set up rootdir, u.u_rdir and u.u_cdir 8067c478bd9Sstevel@tonic-gate * to point to it. These are used by lookuppn() so that it 8077c478bd9Sstevel@tonic-gate * knows where to start from ('/' or '.'). 8087c478bd9Sstevel@tonic-gate */ 8097c478bd9Sstevel@tonic-gate vfs_setmntpoint(rootvfs, "/"); 8107c478bd9Sstevel@tonic-gate if (VFS_ROOT(rootvfs, &rootdir)) 8117c478bd9Sstevel@tonic-gate cmn_err(CE_PANIC, "vfs_mountroot: no root vnode"); 8127c478bd9Sstevel@tonic-gate u.u_cdir = rootdir; 8137c478bd9Sstevel@tonic-gate VN_HOLD(u.u_cdir); 8147c478bd9Sstevel@tonic-gate u.u_rdir = NULL; 8157c478bd9Sstevel@tonic-gate 8167c478bd9Sstevel@tonic-gate /* 8177c478bd9Sstevel@tonic-gate * Setup the global zone's rootvp, now that it exists. 8187c478bd9Sstevel@tonic-gate */ 8197c478bd9Sstevel@tonic-gate global_zone->zone_rootvp = rootdir; 8207c478bd9Sstevel@tonic-gate VN_HOLD(global_zone->zone_rootvp); 8217c478bd9Sstevel@tonic-gate 8227c478bd9Sstevel@tonic-gate /* 8237c478bd9Sstevel@tonic-gate * Notify the module code that it can begin using the 8247c478bd9Sstevel@tonic-gate * root filesystem instead of the boot program's services. 8257c478bd9Sstevel@tonic-gate */ 8267c478bd9Sstevel@tonic-gate modrootloaded = 1; 8277c478bd9Sstevel@tonic-gate /* 8287c478bd9Sstevel@tonic-gate * Set up mnttab information for root 8297c478bd9Sstevel@tonic-gate */ 8307c478bd9Sstevel@tonic-gate vfs_setresource(rootvfs, rootfs.bo_name); 8317c478bd9Sstevel@tonic-gate 8327c478bd9Sstevel@tonic-gate /* 8337c478bd9Sstevel@tonic-gate * Notify cluster software that the root filesystem is available. 8347c478bd9Sstevel@tonic-gate */ 8357c478bd9Sstevel@tonic-gate clboot_mountroot(); 8367c478bd9Sstevel@tonic-gate 8375a59a8b3Srsb /* Now that we're all done with the root FS, set up its vopstats */ 8385a59a8b3Srsb if ((vswp = vfs_getvfsswbyvfsops(vfs_getops(rootvfs))) != NULL) { 8395a59a8b3Srsb /* Set flag for statistics collection */ 8405a59a8b3Srsb if (vswp->vsw_flag & VSW_STATS) { 84182c7f3c4Srsb initialize_vopstats(&rootvfs->vfs_vopstats); 8425a59a8b3Srsb rootvfs->vfs_flag |= VFS_STATS; 84382c7f3c4Srsb rootvfs->vfs_fstypevsp = 84482c7f3c4Srsb get_fstype_vopstats(rootvfs, vswp); 84582c7f3c4Srsb rootvfs->vfs_vskap = get_vskstat_anchor(rootvfs); 8465a59a8b3Srsb } 8475a59a8b3Srsb vfs_unrefvfssw(vswp); 8485a59a8b3Srsb } 8495a59a8b3Srsb 8507c478bd9Sstevel@tonic-gate /* 851*facf4a8dSllai1 * Mount /devices, /dev instance 1, /system/contract, /etc/mnttab, 852*facf4a8dSllai1 * /etc/svc/volatile, /system/object, and /proc. 8537c478bd9Sstevel@tonic-gate */ 8547c478bd9Sstevel@tonic-gate vfs_mountdevices(); 855*facf4a8dSllai1 vfs_mountdev1(); 8567c478bd9Sstevel@tonic-gate 8577c478bd9Sstevel@tonic-gate vfs_mountfs("ctfs", "ctfs", CTFS_ROOT); 8587c478bd9Sstevel@tonic-gate vfs_mountfs("proc", "/proc", "/proc"); 8597c478bd9Sstevel@tonic-gate vfs_mountfs("mntfs", "/etc/mnttab", "/etc/mnttab"); 8607c478bd9Sstevel@tonic-gate vfs_mountfs("tmpfs", "/etc/svc/volatile", "/etc/svc/volatile"); 8617c478bd9Sstevel@tonic-gate vfs_mountfs("objfs", "objfs", OBJFS_ROOT); 8627c478bd9Sstevel@tonic-gate 8637c478bd9Sstevel@tonic-gate #ifdef __sparc 8647c478bd9Sstevel@tonic-gate /* 8657c478bd9Sstevel@tonic-gate * This bit of magic can go away when we convert sparc to 8667c478bd9Sstevel@tonic-gate * the new boot architecture based on ramdisk. 8677c478bd9Sstevel@tonic-gate * 8687c478bd9Sstevel@tonic-gate * Booting off a mirrored root volume: 8697c478bd9Sstevel@tonic-gate * At this point, we have booted and mounted root on a 8707c478bd9Sstevel@tonic-gate * single component of the mirror. Complete the boot 8717c478bd9Sstevel@tonic-gate * by configuring SVM and converting the root to the 8727c478bd9Sstevel@tonic-gate * dev_t of the mirrored root device. This dev_t conversion 8737c478bd9Sstevel@tonic-gate * only works because the underlying device doesn't change. 8747c478bd9Sstevel@tonic-gate */ 8757c478bd9Sstevel@tonic-gate if (root_is_svm) { 8767c478bd9Sstevel@tonic-gate if (svm_rootconf()) { 8777c478bd9Sstevel@tonic-gate cmn_err(CE_PANIC, "vfs_mountroot: cannot remount root"); 8787c478bd9Sstevel@tonic-gate } 8797c478bd9Sstevel@tonic-gate 8807c478bd9Sstevel@tonic-gate /* 8817c478bd9Sstevel@tonic-gate * mnttab should reflect the new root device 8827c478bd9Sstevel@tonic-gate */ 8837c478bd9Sstevel@tonic-gate vfs_lock_wait(rootvfs); 8847c478bd9Sstevel@tonic-gate vfs_setresource(rootvfs, rootfs.bo_name); 8857c478bd9Sstevel@tonic-gate vfs_unlock(rootvfs); 8867c478bd9Sstevel@tonic-gate } 8877c478bd9Sstevel@tonic-gate #endif /* __sparc */ 8887c478bd9Sstevel@tonic-gate 8897c478bd9Sstevel@tonic-gate /* 8907c478bd9Sstevel@tonic-gate * Look up the root device via devfs so that a dv_node is 8917c478bd9Sstevel@tonic-gate * created for it. The vnode is never VN_RELE()ed. 8927c478bd9Sstevel@tonic-gate * We allocate more than MAXPATHLEN so that the 8937c478bd9Sstevel@tonic-gate * buffer passed to i_ddi_prompath_to_devfspath() is 8947c478bd9Sstevel@tonic-gate * exactly MAXPATHLEN (the function expects a buffer 8957c478bd9Sstevel@tonic-gate * of that length). 8967c478bd9Sstevel@tonic-gate */ 8977c478bd9Sstevel@tonic-gate plen = strlen("/devices"); 8987c478bd9Sstevel@tonic-gate path = kmem_alloc(plen + MAXPATHLEN, KM_SLEEP); 8997c478bd9Sstevel@tonic-gate (void) strcpy(path, "/devices"); 9007c478bd9Sstevel@tonic-gate 9017c478bd9Sstevel@tonic-gate if (i_ddi_prompath_to_devfspath(rootfs.bo_name, path + plen) 9027c478bd9Sstevel@tonic-gate != DDI_SUCCESS || 9037c478bd9Sstevel@tonic-gate lookupname(path, UIO_SYSSPACE, FOLLOW, NULLVPP, &rvp)) { 9047c478bd9Sstevel@tonic-gate 9057c478bd9Sstevel@tonic-gate /* NUL terminate in case "path" has garbage */ 9067c478bd9Sstevel@tonic-gate path[plen + MAXPATHLEN - 1] = '\0'; 9077c478bd9Sstevel@tonic-gate #ifdef DEBUG 9087c478bd9Sstevel@tonic-gate cmn_err(CE_WARN, "!Cannot lookup root device: %s", path); 9097c478bd9Sstevel@tonic-gate #endif 9107c478bd9Sstevel@tonic-gate } 9117c478bd9Sstevel@tonic-gate kmem_free(path, plen + MAXPATHLEN); 9127c478bd9Sstevel@tonic-gate } 9137c478bd9Sstevel@tonic-gate 9147c478bd9Sstevel@tonic-gate /* 915fcad04f7Sevanl * If remount failed and we're in a zone we need to check for the zone 916fcad04f7Sevanl * root path and strip it before the call to vfs_setpath(). 917fcad04f7Sevanl * 918fcad04f7Sevanl * If strpath doesn't begin with the zone_rootpath the original 919fcad04f7Sevanl * strpath is returned unchanged. 920fcad04f7Sevanl */ 921fcad04f7Sevanl static const char * 922fcad04f7Sevanl stripzonepath(const char *strpath) 923fcad04f7Sevanl { 924fcad04f7Sevanl char *str1, *str2; 925fcad04f7Sevanl int i; 926fcad04f7Sevanl zone_t *zonep = curproc->p_zone; 927fcad04f7Sevanl 928fcad04f7Sevanl if (zonep->zone_rootpath == NULL || strpath == NULL) { 929fcad04f7Sevanl return (NULL); 930fcad04f7Sevanl } 931fcad04f7Sevanl 932fcad04f7Sevanl /* 933fcad04f7Sevanl * we check for the end of the string at one past the 934fcad04f7Sevanl * current position because the zone_rootpath always 935fcad04f7Sevanl * ends with "/" but we don't want to strip that off. 936fcad04f7Sevanl */ 937fcad04f7Sevanl str1 = zonep->zone_rootpath; 938fcad04f7Sevanl str2 = (char *)strpath; 939fcad04f7Sevanl ASSERT(str1[0] != '\0'); 940fcad04f7Sevanl for (i = 0; str1[i + 1] != '\0'; i++) { 941fcad04f7Sevanl if (str1[i] != str2[i]) 942fcad04f7Sevanl return ((char *)strpath); 943fcad04f7Sevanl } 944fcad04f7Sevanl return (&str2[i]); 945fcad04f7Sevanl } 946fcad04f7Sevanl 947fcad04f7Sevanl /* 9487c478bd9Sstevel@tonic-gate * Common mount code. Called from the system call entry point, from autofs, 9497c478bd9Sstevel@tonic-gate * and from pxfs. 9507c478bd9Sstevel@tonic-gate * 9517c478bd9Sstevel@tonic-gate * Takes the effective file system type, mount arguments, the mount point 9527c478bd9Sstevel@tonic-gate * vnode, flags specifying whether the mount is a remount and whether it 9537c478bd9Sstevel@tonic-gate * should be entered into the vfs list, and credentials. Fills in its vfspp 9547c478bd9Sstevel@tonic-gate * parameter with the mounted file system instance's vfs. 9557c478bd9Sstevel@tonic-gate * 9567c478bd9Sstevel@tonic-gate * Note that the effective file system type is specified as a string. It may 9577c478bd9Sstevel@tonic-gate * be null, in which case it's determined from the mount arguments, and may 9587c478bd9Sstevel@tonic-gate * differ from the type specified in the mount arguments; this is a hook to 9597c478bd9Sstevel@tonic-gate * allow interposition when instantiating file system instances. 9607c478bd9Sstevel@tonic-gate * 9617c478bd9Sstevel@tonic-gate * The caller is responsible for releasing its own hold on the mount point 9627c478bd9Sstevel@tonic-gate * vp (this routine does its own hold when necessary). 9637c478bd9Sstevel@tonic-gate * Also note that for remounts, the mount point vp should be the vnode for 9647c478bd9Sstevel@tonic-gate * the root of the file system rather than the vnode that the file system 9657c478bd9Sstevel@tonic-gate * is mounted on top of. 9667c478bd9Sstevel@tonic-gate */ 9677c478bd9Sstevel@tonic-gate int 9687c478bd9Sstevel@tonic-gate domount(char *fsname, struct mounta *uap, vnode_t *vp, struct cred *credp, 9697c478bd9Sstevel@tonic-gate struct vfs **vfspp) 9707c478bd9Sstevel@tonic-gate { 9717c478bd9Sstevel@tonic-gate struct vfssw *vswp; 9727c478bd9Sstevel@tonic-gate vfsops_t *vfsops; 9737c478bd9Sstevel@tonic-gate struct vfs *vfsp; 9747c478bd9Sstevel@tonic-gate struct vnode *bvp; 9757c478bd9Sstevel@tonic-gate dev_t bdev = 0; 9767c478bd9Sstevel@tonic-gate mntopts_t mnt_mntopts; 9777c478bd9Sstevel@tonic-gate int error = 0; 9787c478bd9Sstevel@tonic-gate int copyout_error = 0; 9797c478bd9Sstevel@tonic-gate int ovflags; 9807c478bd9Sstevel@tonic-gate char *opts = uap->optptr; 9817c478bd9Sstevel@tonic-gate char *inargs = opts; 9827c478bd9Sstevel@tonic-gate int optlen = uap->optlen; 9837c478bd9Sstevel@tonic-gate int remount; 9847c478bd9Sstevel@tonic-gate int rdonly; 9857c478bd9Sstevel@tonic-gate int nbmand = 0; 9867c478bd9Sstevel@tonic-gate int delmip = 0; 9877c478bd9Sstevel@tonic-gate int addmip = 0; 9887c478bd9Sstevel@tonic-gate int splice = ((uap->flags & MS_NOSPLICE) == 0); 9897c478bd9Sstevel@tonic-gate int fromspace = (uap->flags & MS_SYSSPACE) ? 9907c478bd9Sstevel@tonic-gate UIO_SYSSPACE : UIO_USERSPACE; 9917c478bd9Sstevel@tonic-gate char *resource = NULL, *mountpt = NULL; 9927c478bd9Sstevel@tonic-gate refstr_t *oldresource, *oldmntpt; 9937c478bd9Sstevel@tonic-gate struct pathname pn, rpn; 99482c7f3c4Srsb vsk_anchor_t *vskap; 9957c478bd9Sstevel@tonic-gate 9967c478bd9Sstevel@tonic-gate /* 9977c478bd9Sstevel@tonic-gate * The v_flag value for the mount point vp is permanently set 9987c478bd9Sstevel@tonic-gate * to VVFSLOCK so that no one bypasses the vn_vfs*locks routine 9997c478bd9Sstevel@tonic-gate * for mount point locking. 10007c478bd9Sstevel@tonic-gate */ 10017c478bd9Sstevel@tonic-gate mutex_enter(&vp->v_lock); 10027c478bd9Sstevel@tonic-gate vp->v_flag |= VVFSLOCK; 10037c478bd9Sstevel@tonic-gate mutex_exit(&vp->v_lock); 10047c478bd9Sstevel@tonic-gate 10057c478bd9Sstevel@tonic-gate mnt_mntopts.mo_count = 0; 10067c478bd9Sstevel@tonic-gate /* 10077c478bd9Sstevel@tonic-gate * Find the ops vector to use to invoke the file system-specific mount 10087c478bd9Sstevel@tonic-gate * method. If the fsname argument is non-NULL, use it directly. 10097c478bd9Sstevel@tonic-gate * Otherwise, dig the file system type information out of the mount 10107c478bd9Sstevel@tonic-gate * arguments. 10117c478bd9Sstevel@tonic-gate * 10127c478bd9Sstevel@tonic-gate * A side effect is to hold the vfssw entry. 10137c478bd9Sstevel@tonic-gate * 10147c478bd9Sstevel@tonic-gate * Mount arguments can be specified in several ways, which are 10157c478bd9Sstevel@tonic-gate * distinguished by flag bit settings. The preferred way is to set 10167c478bd9Sstevel@tonic-gate * MS_OPTIONSTR, indicating an 8 argument mount with the file system 10177c478bd9Sstevel@tonic-gate * type supplied as a character string and the last two arguments 10187c478bd9Sstevel@tonic-gate * being a pointer to a character buffer and the size of the buffer. 10197c478bd9Sstevel@tonic-gate * On entry, the buffer holds a null terminated list of options; on 10207c478bd9Sstevel@tonic-gate * return, the string is the list of options the file system 10217c478bd9Sstevel@tonic-gate * recognized. If MS_DATA is set arguments five and six point to a 10227c478bd9Sstevel@tonic-gate * block of binary data which the file system interprets. 10237c478bd9Sstevel@tonic-gate * A further wrinkle is that some callers don't set MS_FSS and MS_DATA 10247c478bd9Sstevel@tonic-gate * consistently with these conventions. To handle them, we check to 10257c478bd9Sstevel@tonic-gate * see whether the pointer to the file system name has a numeric value 10267c478bd9Sstevel@tonic-gate * less than 256. If so, we treat it as an index. 10277c478bd9Sstevel@tonic-gate */ 10287c478bd9Sstevel@tonic-gate if (fsname != NULL) { 10297c478bd9Sstevel@tonic-gate if ((vswp = vfs_getvfssw(fsname)) == NULL) { 10307c478bd9Sstevel@tonic-gate return (EINVAL); 10317c478bd9Sstevel@tonic-gate } 10327c478bd9Sstevel@tonic-gate } else if (uap->flags & (MS_OPTIONSTR | MS_DATA | MS_FSS)) { 10337c478bd9Sstevel@tonic-gate size_t n; 10347c478bd9Sstevel@tonic-gate uint_t fstype; 10357c478bd9Sstevel@tonic-gate char name[FSTYPSZ]; 10367c478bd9Sstevel@tonic-gate 10377c478bd9Sstevel@tonic-gate if ((fstype = (uintptr_t)uap->fstype) < 256) { 10387c478bd9Sstevel@tonic-gate RLOCK_VFSSW(); 10397c478bd9Sstevel@tonic-gate if (fstype == 0 || fstype >= nfstype || 10407c478bd9Sstevel@tonic-gate !ALLOCATED_VFSSW(&vfssw[fstype])) { 10417c478bd9Sstevel@tonic-gate RUNLOCK_VFSSW(); 10427c478bd9Sstevel@tonic-gate return (EINVAL); 10437c478bd9Sstevel@tonic-gate } 10447c478bd9Sstevel@tonic-gate (void) strcpy(name, vfssw[fstype].vsw_name); 10457c478bd9Sstevel@tonic-gate RUNLOCK_VFSSW(); 10467c478bd9Sstevel@tonic-gate if ((vswp = vfs_getvfssw(name)) == NULL) 10477c478bd9Sstevel@tonic-gate return (EINVAL); 10487c478bd9Sstevel@tonic-gate } else { 10497c478bd9Sstevel@tonic-gate /* 10507c478bd9Sstevel@tonic-gate * Handle either kernel or user address space. 10517c478bd9Sstevel@tonic-gate */ 10527c478bd9Sstevel@tonic-gate if (uap->flags & MS_SYSSPACE) { 10537c478bd9Sstevel@tonic-gate error = copystr(uap->fstype, name, 10547c478bd9Sstevel@tonic-gate FSTYPSZ, &n); 10557c478bd9Sstevel@tonic-gate } else { 10567c478bd9Sstevel@tonic-gate error = copyinstr(uap->fstype, name, 10577c478bd9Sstevel@tonic-gate FSTYPSZ, &n); 10587c478bd9Sstevel@tonic-gate } 10597c478bd9Sstevel@tonic-gate if (error) { 10607c478bd9Sstevel@tonic-gate if (error == ENAMETOOLONG) 10617c478bd9Sstevel@tonic-gate return (EINVAL); 10627c478bd9Sstevel@tonic-gate return (error); 10637c478bd9Sstevel@tonic-gate } 10647c478bd9Sstevel@tonic-gate if ((vswp = vfs_getvfssw(name)) == NULL) 10657c478bd9Sstevel@tonic-gate return (EINVAL); 10667c478bd9Sstevel@tonic-gate } 10677c478bd9Sstevel@tonic-gate } else { 10687c478bd9Sstevel@tonic-gate if ((vswp = vfs_getvfsswbyvfsops(vfs_getops(rootvfs))) == NULL) 10697c478bd9Sstevel@tonic-gate return (EINVAL); 10707c478bd9Sstevel@tonic-gate } 10717c478bd9Sstevel@tonic-gate if (!VFS_INSTALLED(vswp)) 10727c478bd9Sstevel@tonic-gate return (EINVAL); 10737c478bd9Sstevel@tonic-gate vfsops = &vswp->vsw_vfsops; 10747c478bd9Sstevel@tonic-gate 10757c478bd9Sstevel@tonic-gate vfs_copyopttbl(&vswp->vsw_optproto, &mnt_mntopts); 10767c478bd9Sstevel@tonic-gate /* 10777c478bd9Sstevel@tonic-gate * Fetch mount options and parse them for generic vfs options 10787c478bd9Sstevel@tonic-gate */ 10797c478bd9Sstevel@tonic-gate if (uap->flags & MS_OPTIONSTR) { 10807c478bd9Sstevel@tonic-gate /* 10817c478bd9Sstevel@tonic-gate * Limit the buffer size 10827c478bd9Sstevel@tonic-gate */ 10837c478bd9Sstevel@tonic-gate if (optlen < 0 || optlen > MAX_MNTOPT_STR) { 10847c478bd9Sstevel@tonic-gate error = EINVAL; 10857c478bd9Sstevel@tonic-gate goto errout; 10867c478bd9Sstevel@tonic-gate } 10877c478bd9Sstevel@tonic-gate if ((uap->flags & MS_SYSSPACE) == 0) { 10887c478bd9Sstevel@tonic-gate inargs = kmem_alloc(MAX_MNTOPT_STR, KM_SLEEP); 10897c478bd9Sstevel@tonic-gate inargs[0] = '\0'; 10907c478bd9Sstevel@tonic-gate if (optlen) { 10917c478bd9Sstevel@tonic-gate error = copyinstr(opts, inargs, (size_t)optlen, 10927c478bd9Sstevel@tonic-gate NULL); 10937c478bd9Sstevel@tonic-gate if (error) { 10947c478bd9Sstevel@tonic-gate goto errout; 10957c478bd9Sstevel@tonic-gate } 10967c478bd9Sstevel@tonic-gate } 10977c478bd9Sstevel@tonic-gate } 10987c478bd9Sstevel@tonic-gate vfs_parsemntopts(&mnt_mntopts, inargs, 0); 10997c478bd9Sstevel@tonic-gate } 11007c478bd9Sstevel@tonic-gate /* 11017c478bd9Sstevel@tonic-gate * Flag bits override the options string. 11027c478bd9Sstevel@tonic-gate */ 11037c478bd9Sstevel@tonic-gate if (uap->flags & MS_REMOUNT) 11047c478bd9Sstevel@tonic-gate vfs_setmntopt_nolock(&mnt_mntopts, MNTOPT_REMOUNT, NULL, 0, 0); 11057c478bd9Sstevel@tonic-gate if (uap->flags & MS_RDONLY) 11067c478bd9Sstevel@tonic-gate vfs_setmntopt_nolock(&mnt_mntopts, MNTOPT_RO, NULL, 0, 0); 11077c478bd9Sstevel@tonic-gate if (uap->flags & MS_NOSUID) 11087c478bd9Sstevel@tonic-gate vfs_setmntopt_nolock(&mnt_mntopts, MNTOPT_NOSUID, NULL, 0, 0); 11097c478bd9Sstevel@tonic-gate 11107c478bd9Sstevel@tonic-gate /* 11117c478bd9Sstevel@tonic-gate * Check if this is a remount; must be set in the option string and 11127c478bd9Sstevel@tonic-gate * the file system must support a remount option. 11137c478bd9Sstevel@tonic-gate */ 11147c478bd9Sstevel@tonic-gate if (remount = vfs_optionisset_nolock(&mnt_mntopts, 11157c478bd9Sstevel@tonic-gate MNTOPT_REMOUNT, NULL)) { 11167c478bd9Sstevel@tonic-gate if (!(vswp->vsw_flag & VSW_CANREMOUNT)) { 11177c478bd9Sstevel@tonic-gate error = ENOTSUP; 11187c478bd9Sstevel@tonic-gate goto errout; 11197c478bd9Sstevel@tonic-gate } 11207c478bd9Sstevel@tonic-gate uap->flags |= MS_REMOUNT; 11217c478bd9Sstevel@tonic-gate } 11227c478bd9Sstevel@tonic-gate 11237c478bd9Sstevel@tonic-gate /* 11247c478bd9Sstevel@tonic-gate * uap->flags and vfs_optionisset() should agree. 11257c478bd9Sstevel@tonic-gate */ 11267c478bd9Sstevel@tonic-gate if (rdonly = vfs_optionisset_nolock(&mnt_mntopts, MNTOPT_RO, NULL)) { 11277c478bd9Sstevel@tonic-gate uap->flags |= MS_RDONLY; 11287c478bd9Sstevel@tonic-gate } 11297c478bd9Sstevel@tonic-gate if (vfs_optionisset_nolock(&mnt_mntopts, MNTOPT_NOSUID, NULL)) { 11307c478bd9Sstevel@tonic-gate uap->flags |= MS_NOSUID; 11317c478bd9Sstevel@tonic-gate } 11327c478bd9Sstevel@tonic-gate nbmand = vfs_optionisset_nolock(&mnt_mntopts, MNTOPT_NBMAND, NULL); 11337c478bd9Sstevel@tonic-gate ASSERT(splice || !remount); 11347c478bd9Sstevel@tonic-gate /* 11357c478bd9Sstevel@tonic-gate * If we are splicing the fs into the namespace, 11367c478bd9Sstevel@tonic-gate * perform mount point checks. 11377c478bd9Sstevel@tonic-gate * 11387c478bd9Sstevel@tonic-gate * We want to resolve the path for the mount point to eliminate 11397c478bd9Sstevel@tonic-gate * '.' and ".." and symlinks in mount points; we can't do the 11407c478bd9Sstevel@tonic-gate * same for the resource string, since it would turn 11417c478bd9Sstevel@tonic-gate * "/dev/dsk/c0t0d0s0" into "/devices/pci@...". We need to do 11427c478bd9Sstevel@tonic-gate * this before grabbing vn_vfswlock(), because otherwise we 11437c478bd9Sstevel@tonic-gate * would deadlock with lookuppn(). 11447c478bd9Sstevel@tonic-gate */ 11457c478bd9Sstevel@tonic-gate if (splice) { 11467c478bd9Sstevel@tonic-gate ASSERT(vp->v_count > 0); 11477c478bd9Sstevel@tonic-gate 11487c478bd9Sstevel@tonic-gate /* 11497c478bd9Sstevel@tonic-gate * Pick up mount point and device from appropriate space. 11507c478bd9Sstevel@tonic-gate */ 11517c478bd9Sstevel@tonic-gate if (pn_get(uap->spec, fromspace, &pn) == 0) { 11527c478bd9Sstevel@tonic-gate resource = kmem_alloc(pn.pn_pathlen + 1, 11537c478bd9Sstevel@tonic-gate KM_SLEEP); 11547c478bd9Sstevel@tonic-gate (void) strcpy(resource, pn.pn_path); 11557c478bd9Sstevel@tonic-gate pn_free(&pn); 11567c478bd9Sstevel@tonic-gate } 11577c478bd9Sstevel@tonic-gate /* 11587c478bd9Sstevel@tonic-gate * Do a lookupname prior to taking the 11597c478bd9Sstevel@tonic-gate * writelock. Mark this as completed if 11607c478bd9Sstevel@tonic-gate * successful for later cleanup and addition to 11617c478bd9Sstevel@tonic-gate * the mount in progress table. 11627c478bd9Sstevel@tonic-gate */ 11637c478bd9Sstevel@tonic-gate if ((uap->flags & MS_GLOBAL) == 0 && 11647c478bd9Sstevel@tonic-gate lookupname(uap->spec, fromspace, 11657c478bd9Sstevel@tonic-gate FOLLOW, NULL, &bvp) == 0) { 11667c478bd9Sstevel@tonic-gate addmip = 1; 11677c478bd9Sstevel@tonic-gate } 11687c478bd9Sstevel@tonic-gate 11697c478bd9Sstevel@tonic-gate if ((error = pn_get(uap->dir, fromspace, &pn)) == 0) { 11707c478bd9Sstevel@tonic-gate pathname_t *pnp; 11717c478bd9Sstevel@tonic-gate 11727c478bd9Sstevel@tonic-gate if (*pn.pn_path != '/') { 11737c478bd9Sstevel@tonic-gate error = EINVAL; 11747c478bd9Sstevel@tonic-gate pn_free(&pn); 11757c478bd9Sstevel@tonic-gate goto errout; 11767c478bd9Sstevel@tonic-gate } 11777c478bd9Sstevel@tonic-gate pn_alloc(&rpn); 11787c478bd9Sstevel@tonic-gate /* 11797c478bd9Sstevel@tonic-gate * Kludge to prevent autofs from deadlocking with 11807c478bd9Sstevel@tonic-gate * itself when it calls domount(). 11817c478bd9Sstevel@tonic-gate * 11827c478bd9Sstevel@tonic-gate * If autofs is calling, it is because it is doing 11837c478bd9Sstevel@tonic-gate * (autofs) mounts in the process of an NFS mount. A 11847c478bd9Sstevel@tonic-gate * lookuppn() here would cause us to block waiting for 11857c478bd9Sstevel@tonic-gate * said NFS mount to complete, which can't since this 11867c478bd9Sstevel@tonic-gate * is the thread that was supposed to doing it. 11877c478bd9Sstevel@tonic-gate */ 11887c478bd9Sstevel@tonic-gate if (fromspace == UIO_USERSPACE) { 11897c478bd9Sstevel@tonic-gate if ((error = lookuppn(&pn, &rpn, FOLLOW, NULL, 11907c478bd9Sstevel@tonic-gate NULL)) == 0) { 11917c478bd9Sstevel@tonic-gate pnp = &rpn; 11927c478bd9Sstevel@tonic-gate } else { 11937c478bd9Sstevel@tonic-gate /* 11947c478bd9Sstevel@tonic-gate * The file disappeared or otherwise 11957c478bd9Sstevel@tonic-gate * became inaccessible since we opened 11967c478bd9Sstevel@tonic-gate * it; might as well fail the mount 11977c478bd9Sstevel@tonic-gate * since the mount point is no longer 11987c478bd9Sstevel@tonic-gate * accessible. 11997c478bd9Sstevel@tonic-gate */ 12007c478bd9Sstevel@tonic-gate pn_free(&rpn); 12017c478bd9Sstevel@tonic-gate pn_free(&pn); 12027c478bd9Sstevel@tonic-gate goto errout; 12037c478bd9Sstevel@tonic-gate } 12047c478bd9Sstevel@tonic-gate } else { 12057c478bd9Sstevel@tonic-gate pnp = &pn; 12067c478bd9Sstevel@tonic-gate } 12077c478bd9Sstevel@tonic-gate mountpt = kmem_alloc(pnp->pn_pathlen + 1, KM_SLEEP); 12087c478bd9Sstevel@tonic-gate (void) strcpy(mountpt, pnp->pn_path); 12097c478bd9Sstevel@tonic-gate 12107c478bd9Sstevel@tonic-gate /* 12117c478bd9Sstevel@tonic-gate * If the addition of the zone's rootpath 12127c478bd9Sstevel@tonic-gate * would push us over a total path length 12137c478bd9Sstevel@tonic-gate * of MAXPATHLEN, we fail the mount with 12147c478bd9Sstevel@tonic-gate * ENAMETOOLONG, which is what we would have 12157c478bd9Sstevel@tonic-gate * gotten if we were trying to perform the same 12167c478bd9Sstevel@tonic-gate * mount in the global zone. 12177c478bd9Sstevel@tonic-gate * 12187c478bd9Sstevel@tonic-gate * strlen() doesn't count the trailing 12197c478bd9Sstevel@tonic-gate * '\0', but zone_rootpathlen counts both a 12207c478bd9Sstevel@tonic-gate * trailing '/' and the terminating '\0'. 12217c478bd9Sstevel@tonic-gate */ 12227c478bd9Sstevel@tonic-gate if ((curproc->p_zone->zone_rootpathlen - 1 + 12237c478bd9Sstevel@tonic-gate strlen(mountpt)) > MAXPATHLEN || 12247c478bd9Sstevel@tonic-gate (resource != NULL && 12257c478bd9Sstevel@tonic-gate (curproc->p_zone->zone_rootpathlen - 1 + 12267c478bd9Sstevel@tonic-gate strlen(resource)) > MAXPATHLEN)) { 12277c478bd9Sstevel@tonic-gate error = ENAMETOOLONG; 12287c478bd9Sstevel@tonic-gate } 12297c478bd9Sstevel@tonic-gate 12307c478bd9Sstevel@tonic-gate pn_free(&rpn); 12317c478bd9Sstevel@tonic-gate pn_free(&pn); 12327c478bd9Sstevel@tonic-gate } 12337c478bd9Sstevel@tonic-gate 12347c478bd9Sstevel@tonic-gate if (error) 12357c478bd9Sstevel@tonic-gate goto errout; 12367c478bd9Sstevel@tonic-gate 12377c478bd9Sstevel@tonic-gate /* 12387c478bd9Sstevel@tonic-gate * Prevent path name resolution from proceeding past 12397c478bd9Sstevel@tonic-gate * the mount point. 12407c478bd9Sstevel@tonic-gate */ 12417c478bd9Sstevel@tonic-gate if (vn_vfswlock(vp) != 0) { 12427c478bd9Sstevel@tonic-gate error = EBUSY; 12437c478bd9Sstevel@tonic-gate goto errout; 12447c478bd9Sstevel@tonic-gate } 12457c478bd9Sstevel@tonic-gate 12467c478bd9Sstevel@tonic-gate /* 12477c478bd9Sstevel@tonic-gate * Verify that it's legitimate to establish a mount on 12487c478bd9Sstevel@tonic-gate * the prospective mount point. 12497c478bd9Sstevel@tonic-gate */ 12507c478bd9Sstevel@tonic-gate if (vn_mountedvfs(vp) != NULL) { 12517c478bd9Sstevel@tonic-gate /* 12527c478bd9Sstevel@tonic-gate * The mount point lock was obtained after some 12537c478bd9Sstevel@tonic-gate * other thread raced through and established a mount. 12547c478bd9Sstevel@tonic-gate */ 12557c478bd9Sstevel@tonic-gate vn_vfsunlock(vp); 12567c478bd9Sstevel@tonic-gate error = EBUSY; 12577c478bd9Sstevel@tonic-gate goto errout; 12587c478bd9Sstevel@tonic-gate } 12597c478bd9Sstevel@tonic-gate if (vp->v_flag & VNOMOUNT) { 12607c478bd9Sstevel@tonic-gate vn_vfsunlock(vp); 12617c478bd9Sstevel@tonic-gate error = EINVAL; 12627c478bd9Sstevel@tonic-gate goto errout; 12637c478bd9Sstevel@tonic-gate } 12647c478bd9Sstevel@tonic-gate } 12657c478bd9Sstevel@tonic-gate if ((uap->flags & (MS_DATA | MS_OPTIONSTR)) == 0) { 12667c478bd9Sstevel@tonic-gate uap->dataptr = NULL; 12677c478bd9Sstevel@tonic-gate uap->datalen = 0; 12687c478bd9Sstevel@tonic-gate } 12697c478bd9Sstevel@tonic-gate 12707c478bd9Sstevel@tonic-gate /* 12717c478bd9Sstevel@tonic-gate * If this is a remount, we don't want to create a new VFS. 12727c478bd9Sstevel@tonic-gate * Instead, we pass the existing one with a remount flag. 12737c478bd9Sstevel@tonic-gate */ 12747c478bd9Sstevel@tonic-gate if (remount) { 12757c478bd9Sstevel@tonic-gate /* 12767c478bd9Sstevel@tonic-gate * Confirm that the mount point is the root vnode of the 12777c478bd9Sstevel@tonic-gate * file system that is being remounted. 12787c478bd9Sstevel@tonic-gate * This can happen if the user specifies a different 12797c478bd9Sstevel@tonic-gate * mount point directory pathname in the (re)mount command. 12807c478bd9Sstevel@tonic-gate * 12817c478bd9Sstevel@tonic-gate * Code below can only be reached if splice is true, so it's 12827c478bd9Sstevel@tonic-gate * safe to do vn_vfsunlock() here. 12837c478bd9Sstevel@tonic-gate */ 12847c478bd9Sstevel@tonic-gate if ((vp->v_flag & VROOT) == 0) { 12857c478bd9Sstevel@tonic-gate vn_vfsunlock(vp); 12867c478bd9Sstevel@tonic-gate error = ENOENT; 12877c478bd9Sstevel@tonic-gate goto errout; 12887c478bd9Sstevel@tonic-gate } 12897c478bd9Sstevel@tonic-gate /* 12907c478bd9Sstevel@tonic-gate * Disallow making file systems read-only unless file system 12917c478bd9Sstevel@tonic-gate * explicitly allows it in its vfssw. Ignore other flags. 12927c478bd9Sstevel@tonic-gate */ 12937c478bd9Sstevel@tonic-gate if (rdonly && vn_is_readonly(vp) == 0 && 12947c478bd9Sstevel@tonic-gate (vswp->vsw_flag & VSW_CANRWRO) == 0) { 12957c478bd9Sstevel@tonic-gate vn_vfsunlock(vp); 12967c478bd9Sstevel@tonic-gate error = EINVAL; 12977c478bd9Sstevel@tonic-gate goto errout; 12987c478bd9Sstevel@tonic-gate } 12997c478bd9Sstevel@tonic-gate /* 13007c478bd9Sstevel@tonic-gate * Changing the NBMAND setting on remounts is permitted 13017c478bd9Sstevel@tonic-gate * but logged since it can lead to unexpected behavior. 13027c478bd9Sstevel@tonic-gate * We also counsel against using it for / and /usr. 13037c478bd9Sstevel@tonic-gate */ 13047c478bd9Sstevel@tonic-gate if ((nbmand && ((vp->v_vfsp->vfs_flag & VFS_NBMAND) == 0)) || 13057c478bd9Sstevel@tonic-gate (!nbmand && (vp->v_vfsp->vfs_flag & VFS_NBMAND))) { 13067c478bd9Sstevel@tonic-gate cmn_err(CE_WARN, "domount: nbmand turned %s via " 13077c478bd9Sstevel@tonic-gate "remounting %s", nbmand ? "on" : "off", 13087c478bd9Sstevel@tonic-gate refstr_value(vp->v_vfsp->vfs_mntpt)); 13097c478bd9Sstevel@tonic-gate } 13107c478bd9Sstevel@tonic-gate vfsp = vp->v_vfsp; 13117c478bd9Sstevel@tonic-gate ovflags = vfsp->vfs_flag; 13127c478bd9Sstevel@tonic-gate vfsp->vfs_flag |= VFS_REMOUNT; 13137c478bd9Sstevel@tonic-gate vfsp->vfs_flag &= ~VFS_RDONLY; 13147c478bd9Sstevel@tonic-gate } else { 13157c478bd9Sstevel@tonic-gate vfsp = kmem_alloc(sizeof (vfs_t), KM_SLEEP); 13167c478bd9Sstevel@tonic-gate VFS_INIT(vfsp, vfsops, NULL); 13177c478bd9Sstevel@tonic-gate } 13187c478bd9Sstevel@tonic-gate 13197c478bd9Sstevel@tonic-gate VFS_HOLD(vfsp); 13207c478bd9Sstevel@tonic-gate 13217c478bd9Sstevel@tonic-gate /* 13227c478bd9Sstevel@tonic-gate * The vfs_reflock is not used anymore the code below explicitly 13237c478bd9Sstevel@tonic-gate * holds it preventing others accesing it directly. 13247c478bd9Sstevel@tonic-gate */ 13257c478bd9Sstevel@tonic-gate if ((sema_tryp(&vfsp->vfs_reflock) == 0) && 13267c478bd9Sstevel@tonic-gate !(vfsp->vfs_flag & VFS_REMOUNT)) 13277c478bd9Sstevel@tonic-gate cmn_err(CE_WARN, 13287c478bd9Sstevel@tonic-gate "mount type %s couldn't get vfs_reflock\n", vswp->vsw_name); 13297c478bd9Sstevel@tonic-gate 13307c478bd9Sstevel@tonic-gate /* 13317c478bd9Sstevel@tonic-gate * Lock the vfs. If this is a remount we want to avoid spurious umount 13327c478bd9Sstevel@tonic-gate * failures that happen as a side-effect of fsflush() and other mount 13337c478bd9Sstevel@tonic-gate * and unmount operations that might be going on simultaneously and 13347c478bd9Sstevel@tonic-gate * may have locked the vfs currently. To not return EBUSY immediately 13357c478bd9Sstevel@tonic-gate * here we use vfs_lock_wait() instead vfs_lock() for the remount case. 13367c478bd9Sstevel@tonic-gate */ 13377c478bd9Sstevel@tonic-gate if (!remount) { 13387c478bd9Sstevel@tonic-gate if (error = vfs_lock(vfsp)) { 13397c478bd9Sstevel@tonic-gate vfsp->vfs_flag = ovflags; 13407c478bd9Sstevel@tonic-gate if (splice) 13417c478bd9Sstevel@tonic-gate vn_vfsunlock(vp); 1342ddfcde86Srsb if (vfsp->vfs_implp) 1343ddfcde86Srsb vfsimpl_teardown(vfsp); 13447c478bd9Sstevel@tonic-gate kmem_free(vfsp, sizeof (struct vfs)); 13457c478bd9Sstevel@tonic-gate goto errout; 13467c478bd9Sstevel@tonic-gate } 13477c478bd9Sstevel@tonic-gate } else { 13487c478bd9Sstevel@tonic-gate vfs_lock_wait(vfsp); 13497c478bd9Sstevel@tonic-gate } 13507c478bd9Sstevel@tonic-gate 13517c478bd9Sstevel@tonic-gate /* 13527c478bd9Sstevel@tonic-gate * Add device to mount in progress table, global mounts require special 13537c478bd9Sstevel@tonic-gate * handling. It is possible that we have already done the lookupname 13547c478bd9Sstevel@tonic-gate * on a spliced, non-global fs. If so, we don't want to do it again 13557c478bd9Sstevel@tonic-gate * since we cannot do a lookupname after taking the 13567c478bd9Sstevel@tonic-gate * wlock above. This case is for a non-spliced, non-global filesystem. 13577c478bd9Sstevel@tonic-gate */ 13587c478bd9Sstevel@tonic-gate if (!addmip) { 13597c478bd9Sstevel@tonic-gate if ((uap->flags & MS_GLOBAL) == 0 && 13607c478bd9Sstevel@tonic-gate lookupname(uap->spec, fromspace, FOLLOW, NULL, &bvp) == 0) { 13617c478bd9Sstevel@tonic-gate addmip = 1; 13627c478bd9Sstevel@tonic-gate } 13637c478bd9Sstevel@tonic-gate } 13647c478bd9Sstevel@tonic-gate 13657c478bd9Sstevel@tonic-gate if (addmip) { 13667c478bd9Sstevel@tonic-gate bdev = bvp->v_rdev; 13677c478bd9Sstevel@tonic-gate VN_RELE(bvp); 13687c478bd9Sstevel@tonic-gate vfs_addmip(bdev, vfsp); 13697c478bd9Sstevel@tonic-gate addmip = 0; 13707c478bd9Sstevel@tonic-gate delmip = 1; 13717c478bd9Sstevel@tonic-gate } 13727c478bd9Sstevel@tonic-gate /* 13737c478bd9Sstevel@tonic-gate * Invalidate cached entry for the mount point. 13747c478bd9Sstevel@tonic-gate */ 13757c478bd9Sstevel@tonic-gate if (splice) 13767c478bd9Sstevel@tonic-gate dnlc_purge_vp(vp); 13777c478bd9Sstevel@tonic-gate 13787c478bd9Sstevel@tonic-gate /* 13797c478bd9Sstevel@tonic-gate * If have an option string but the filesystem doesn't supply a 13807c478bd9Sstevel@tonic-gate * prototype options table, create a table with the global 13817c478bd9Sstevel@tonic-gate * options and sufficient room to accept all the options in the 13827c478bd9Sstevel@tonic-gate * string. Then parse the passed in option string 13837c478bd9Sstevel@tonic-gate * accepting all the options in the string. This gives us an 13847c478bd9Sstevel@tonic-gate * option table with all the proper cancel properties for the 13857c478bd9Sstevel@tonic-gate * global options. 13867c478bd9Sstevel@tonic-gate * 13877c478bd9Sstevel@tonic-gate * Filesystems that supply a prototype options table are handled 13887c478bd9Sstevel@tonic-gate * earlier in this function. 13897c478bd9Sstevel@tonic-gate */ 13907c478bd9Sstevel@tonic-gate if (uap->flags & MS_OPTIONSTR) { 13917c478bd9Sstevel@tonic-gate if (!(vswp->vsw_flag & VSW_HASPROTO)) { 13927c478bd9Sstevel@tonic-gate mntopts_t tmp_mntopts; 13937c478bd9Sstevel@tonic-gate 13947c478bd9Sstevel@tonic-gate tmp_mntopts.mo_count = 0; 13957c478bd9Sstevel@tonic-gate vfs_createopttbl_extend(&tmp_mntopts, inargs, 13967c478bd9Sstevel@tonic-gate &mnt_mntopts); 13977c478bd9Sstevel@tonic-gate vfs_parsemntopts(&tmp_mntopts, inargs, 1); 13987c478bd9Sstevel@tonic-gate vfs_swapopttbl_nolock(&mnt_mntopts, &tmp_mntopts); 13997c478bd9Sstevel@tonic-gate vfs_freeopttbl(&tmp_mntopts); 14007c478bd9Sstevel@tonic-gate } 14017c478bd9Sstevel@tonic-gate } 14027c478bd9Sstevel@tonic-gate 14037c478bd9Sstevel@tonic-gate /* 14047c478bd9Sstevel@tonic-gate * Serialize with zone creations. 14057c478bd9Sstevel@tonic-gate */ 14067c478bd9Sstevel@tonic-gate mount_in_progress(); 14077c478bd9Sstevel@tonic-gate /* 14087c478bd9Sstevel@tonic-gate * Instantiate (or reinstantiate) the file system. If appropriate, 14097c478bd9Sstevel@tonic-gate * splice it into the file system name space. 14107c478bd9Sstevel@tonic-gate * 14117c478bd9Sstevel@tonic-gate * We want VFS_MOUNT() to be able to override the vfs_resource 14127c478bd9Sstevel@tonic-gate * string if necessary (ie, mntfs), and also for a remount to 14137c478bd9Sstevel@tonic-gate * change the same (necessary when remounting '/' during boot). 14147c478bd9Sstevel@tonic-gate * So we set up vfs_mntpt and vfs_resource to what we think they 14157c478bd9Sstevel@tonic-gate * should be, then hand off control to VFS_MOUNT() which can 14167c478bd9Sstevel@tonic-gate * override this. 14177c478bd9Sstevel@tonic-gate * 14187c478bd9Sstevel@tonic-gate * For safety's sake, when changing vfs_resource or vfs_mntpt of 14197c478bd9Sstevel@tonic-gate * a vfs which is on the vfs list (i.e. during a remount), we must 14207c478bd9Sstevel@tonic-gate * never set those fields to NULL. Several bits of code make 14217c478bd9Sstevel@tonic-gate * assumptions that the fields are always valid. 14227c478bd9Sstevel@tonic-gate */ 14237c478bd9Sstevel@tonic-gate vfs_swapopttbl(&mnt_mntopts, &vfsp->vfs_mntopts); 14247c478bd9Sstevel@tonic-gate if (remount) { 14257c478bd9Sstevel@tonic-gate if ((oldresource = vfsp->vfs_resource) != NULL) 14267c478bd9Sstevel@tonic-gate refstr_hold(oldresource); 14277c478bd9Sstevel@tonic-gate if ((oldmntpt = vfsp->vfs_mntpt) != NULL) 14287c478bd9Sstevel@tonic-gate refstr_hold(oldmntpt); 14297c478bd9Sstevel@tonic-gate } 14307c478bd9Sstevel@tonic-gate vfs_setresource(vfsp, resource); 14317c478bd9Sstevel@tonic-gate vfs_setmntpoint(vfsp, mountpt); 14327c478bd9Sstevel@tonic-gate 14337c478bd9Sstevel@tonic-gate error = VFS_MOUNT(vfsp, vp, uap, credp); 14347c478bd9Sstevel@tonic-gate 14357c478bd9Sstevel@tonic-gate if (uap->flags & MS_RDONLY) 14367c478bd9Sstevel@tonic-gate vfs_setmntopt(vfsp, MNTOPT_RO, NULL, 0); 14377c478bd9Sstevel@tonic-gate if (uap->flags & MS_NOSUID) 14387c478bd9Sstevel@tonic-gate vfs_setmntopt(vfsp, MNTOPT_NOSUID, NULL, 0); 14397c478bd9Sstevel@tonic-gate if (uap->flags & MS_GLOBAL) 14407c478bd9Sstevel@tonic-gate vfs_setmntopt(vfsp, MNTOPT_GLOBAL, NULL, 0); 14417c478bd9Sstevel@tonic-gate 14427c478bd9Sstevel@tonic-gate if (error) { 14437c478bd9Sstevel@tonic-gate if (remount) { 14447c478bd9Sstevel@tonic-gate /* put back pre-remount options */ 14457c478bd9Sstevel@tonic-gate vfs_swapopttbl(&mnt_mntopts, &vfsp->vfs_mntopts); 1446fcad04f7Sevanl vfs_setmntpoint(vfsp, (stripzonepath( 1447fcad04f7Sevanl refstr_value(oldmntpt)))); 14487c478bd9Sstevel@tonic-gate if (oldmntpt) 14497c478bd9Sstevel@tonic-gate refstr_rele(oldmntpt); 1450fcad04f7Sevanl vfs_setresource(vfsp, (stripzonepath( 1451fcad04f7Sevanl refstr_value(oldresource)))); 14527c478bd9Sstevel@tonic-gate if (oldresource) 14537c478bd9Sstevel@tonic-gate refstr_rele(oldresource); 14547c478bd9Sstevel@tonic-gate vfsp->vfs_flag = ovflags; 14557c478bd9Sstevel@tonic-gate vfs_unlock(vfsp); 14567c478bd9Sstevel@tonic-gate VFS_RELE(vfsp); 14577c478bd9Sstevel@tonic-gate } else { 14587c478bd9Sstevel@tonic-gate vfs_unlock(vfsp); 14597c478bd9Sstevel@tonic-gate vfs_freemnttab(vfsp); 1460ddfcde86Srsb if (vfsp->vfs_implp) 1461ddfcde86Srsb vfsimpl_teardown(vfsp); 14627c478bd9Sstevel@tonic-gate kmem_free(vfsp, sizeof (struct vfs)); 14637c478bd9Sstevel@tonic-gate } 14647c478bd9Sstevel@tonic-gate } else { 14657c478bd9Sstevel@tonic-gate /* 14667c478bd9Sstevel@tonic-gate * Set the mount time to now 14677c478bd9Sstevel@tonic-gate */ 14687c478bd9Sstevel@tonic-gate vfsp->vfs_mtime = ddi_get_time(); 14697c478bd9Sstevel@tonic-gate if (remount) { 14707c478bd9Sstevel@tonic-gate vfsp->vfs_flag &= ~VFS_REMOUNT; 14717c478bd9Sstevel@tonic-gate if (oldresource) 14727c478bd9Sstevel@tonic-gate refstr_rele(oldresource); 14737c478bd9Sstevel@tonic-gate if (oldmntpt) 14747c478bd9Sstevel@tonic-gate refstr_rele(oldmntpt); 14757c478bd9Sstevel@tonic-gate } else if (splice) { 14767c478bd9Sstevel@tonic-gate /* 14777c478bd9Sstevel@tonic-gate * Link vfsp into the name space at the mount 14787c478bd9Sstevel@tonic-gate * point. Vfs_add() is responsible for 14797c478bd9Sstevel@tonic-gate * holding the mount point which will be 14807c478bd9Sstevel@tonic-gate * released when vfs_remove() is called. 14817c478bd9Sstevel@tonic-gate */ 14827c478bd9Sstevel@tonic-gate vfs_add(vp, vfsp, uap->flags); 14837c478bd9Sstevel@tonic-gate } else { 14847c478bd9Sstevel@tonic-gate /* 14857c478bd9Sstevel@tonic-gate * Hold the reference to file system which is 14867c478bd9Sstevel@tonic-gate * not linked into the name space. 14877c478bd9Sstevel@tonic-gate */ 14887c478bd9Sstevel@tonic-gate vfsp->vfs_zone = NULL; 14897c478bd9Sstevel@tonic-gate VFS_HOLD(vfsp); 14907c478bd9Sstevel@tonic-gate vfsp->vfs_vnodecovered = NULL; 14917c478bd9Sstevel@tonic-gate } 14927c478bd9Sstevel@tonic-gate /* 14937c478bd9Sstevel@tonic-gate * Set flags for global options encountered 14947c478bd9Sstevel@tonic-gate */ 14957c478bd9Sstevel@tonic-gate if (vfs_optionisset(vfsp, MNTOPT_RO, NULL)) 14967c478bd9Sstevel@tonic-gate vfsp->vfs_flag |= VFS_RDONLY; 14977c478bd9Sstevel@tonic-gate else 14987c478bd9Sstevel@tonic-gate vfsp->vfs_flag &= ~VFS_RDONLY; 14997c478bd9Sstevel@tonic-gate if (vfs_optionisset(vfsp, MNTOPT_NOSUID, NULL)) { 15007c478bd9Sstevel@tonic-gate vfsp->vfs_flag |= (VFS_NOSETUID|VFS_NODEVICES); 15017c478bd9Sstevel@tonic-gate } else { 15027c478bd9Sstevel@tonic-gate if (vfs_optionisset(vfsp, MNTOPT_NODEVICES, NULL)) 15037c478bd9Sstevel@tonic-gate vfsp->vfs_flag |= VFS_NODEVICES; 15047c478bd9Sstevel@tonic-gate else 15057c478bd9Sstevel@tonic-gate vfsp->vfs_flag &= ~VFS_NODEVICES; 15067c478bd9Sstevel@tonic-gate if (vfs_optionisset(vfsp, MNTOPT_NOSETUID, NULL)) 15077c478bd9Sstevel@tonic-gate vfsp->vfs_flag |= VFS_NOSETUID; 15087c478bd9Sstevel@tonic-gate else 15097c478bd9Sstevel@tonic-gate vfsp->vfs_flag &= ~VFS_NOSETUID; 15107c478bd9Sstevel@tonic-gate } 15117c478bd9Sstevel@tonic-gate if (vfs_optionisset(vfsp, MNTOPT_NBMAND, NULL)) 15127c478bd9Sstevel@tonic-gate vfsp->vfs_flag |= VFS_NBMAND; 15137c478bd9Sstevel@tonic-gate else 15147c478bd9Sstevel@tonic-gate vfsp->vfs_flag &= ~VFS_NBMAND; 15157c478bd9Sstevel@tonic-gate 15167c478bd9Sstevel@tonic-gate if (vfs_optionisset(vfsp, MNTOPT_XATTR, NULL)) 15177c478bd9Sstevel@tonic-gate vfsp->vfs_flag |= VFS_XATTR; 15187c478bd9Sstevel@tonic-gate else 15197c478bd9Sstevel@tonic-gate vfsp->vfs_flag &= ~VFS_XATTR; 15207c478bd9Sstevel@tonic-gate 15217c478bd9Sstevel@tonic-gate if (vfs_optionisset(vfsp, MNTOPT_NOEXEC, NULL)) 15227c478bd9Sstevel@tonic-gate vfsp->vfs_flag |= VFS_NOEXEC; 15237c478bd9Sstevel@tonic-gate else 15247c478bd9Sstevel@tonic-gate vfsp->vfs_flag &= ~VFS_NOEXEC; 15257c478bd9Sstevel@tonic-gate 15267c478bd9Sstevel@tonic-gate /* 15277c478bd9Sstevel@tonic-gate * Now construct the output option string of options 15287c478bd9Sstevel@tonic-gate * we recognized. 15297c478bd9Sstevel@tonic-gate */ 15307c478bd9Sstevel@tonic-gate if (uap->flags & MS_OPTIONSTR) { 15317c478bd9Sstevel@tonic-gate vfs_list_read_lock(); 15327c478bd9Sstevel@tonic-gate copyout_error = vfs_buildoptionstr( 15337c478bd9Sstevel@tonic-gate &vfsp->vfs_mntopts, inargs, optlen); 15347c478bd9Sstevel@tonic-gate vfs_list_unlock(); 15357c478bd9Sstevel@tonic-gate if (copyout_error == 0 && 15367c478bd9Sstevel@tonic-gate (uap->flags & MS_SYSSPACE) == 0) { 15377c478bd9Sstevel@tonic-gate copyout_error = copyoutstr(inargs, opts, 15387c478bd9Sstevel@tonic-gate optlen, NULL); 15397c478bd9Sstevel@tonic-gate } 15407c478bd9Sstevel@tonic-gate } 15415a59a8b3Srsb 154282c7f3c4Srsb /* 154382c7f3c4Srsb * If this isn't a remount, set up the vopstats before 1544ec64bf9dSrsb * anyone can touch this. We only allow spliced file 1545ec64bf9dSrsb * systems (file systems which are in the namespace) to 1546ec64bf9dSrsb * have the VFS_STATS flag set. 1547ec64bf9dSrsb * NOTE: PxFS mounts the underlying file system with 1548ec64bf9dSrsb * MS_NOSPLICE set and copies those vfs_flags to its private 1549ec64bf9dSrsb * vfs structure. As a result, PxFS should never have 1550ec64bf9dSrsb * the VFS_STATS flag or else we might access the vfs 1551ec64bf9dSrsb * statistics-related fields prior to them being 1552ec64bf9dSrsb * properly initialized. 155382c7f3c4Srsb */ 1554ec64bf9dSrsb if (!remount && (vswp->vsw_flag & VSW_STATS) && splice) { 155582c7f3c4Srsb initialize_vopstats(&vfsp->vfs_vopstats); 155682c7f3c4Srsb /* 155782c7f3c4Srsb * We need to set vfs_vskap to NULL because there's 155882c7f3c4Srsb * a chance it won't be set below. This is checked 155982c7f3c4Srsb * in teardown_vopstats() so we can't have garbage. 156082c7f3c4Srsb */ 156182c7f3c4Srsb vfsp->vfs_vskap = NULL; 15625a59a8b3Srsb vfsp->vfs_flag |= VFS_STATS; 156382c7f3c4Srsb vfsp->vfs_fstypevsp = get_fstype_vopstats(vfsp, vswp); 15645a59a8b3Srsb } 15655a59a8b3Srsb 15667c478bd9Sstevel@tonic-gate vfs_unlock(vfsp); 15677c478bd9Sstevel@tonic-gate } 15687c478bd9Sstevel@tonic-gate mount_completed(); 15697c478bd9Sstevel@tonic-gate if (splice) 15707c478bd9Sstevel@tonic-gate vn_vfsunlock(vp); 15717c478bd9Sstevel@tonic-gate 15727c478bd9Sstevel@tonic-gate if ((error == 0) && (copyout_error == 0)) { 157382c7f3c4Srsb if (!remount) { 15745a59a8b3Srsb /* 157582c7f3c4Srsb * Don't call get_vskstat_anchor() while holding 157682c7f3c4Srsb * locks since it allocates memory and calls 157782c7f3c4Srsb * VFS_STATVFS(). For NFS, the latter can generate 157882c7f3c4Srsb * an over-the-wire call. 15795a59a8b3Srsb */ 158082c7f3c4Srsb vskap = get_vskstat_anchor(vfsp); 158182c7f3c4Srsb /* Only take the lock if we have something to do */ 158282c7f3c4Srsb if (vskap != NULL) { 158382c7f3c4Srsb vfs_lock_wait(vfsp); 158482c7f3c4Srsb if (vfsp->vfs_flag & VFS_STATS) { 158582c7f3c4Srsb vfsp->vfs_vskap = vskap; 158682c7f3c4Srsb } 158782c7f3c4Srsb vfs_unlock(vfsp); 158882c7f3c4Srsb } 158982c7f3c4Srsb } 15905a59a8b3Srsb /* Return vfsp to caller. */ 15917c478bd9Sstevel@tonic-gate *vfspp = vfsp; 15927c478bd9Sstevel@tonic-gate } 15937c478bd9Sstevel@tonic-gate errout: 15947c478bd9Sstevel@tonic-gate vfs_freeopttbl(&mnt_mntopts); 15957c478bd9Sstevel@tonic-gate if (resource != NULL) 15967c478bd9Sstevel@tonic-gate kmem_free(resource, strlen(resource) + 1); 15977c478bd9Sstevel@tonic-gate if (mountpt != NULL) 15987c478bd9Sstevel@tonic-gate kmem_free(mountpt, strlen(mountpt) + 1); 15997c478bd9Sstevel@tonic-gate /* 16007c478bd9Sstevel@tonic-gate * It is possible we errored prior to adding to mount in progress 16017c478bd9Sstevel@tonic-gate * table. Must free vnode we acquired with successful lookupname. 16027c478bd9Sstevel@tonic-gate */ 16037c478bd9Sstevel@tonic-gate if (addmip) 16047c478bd9Sstevel@tonic-gate VN_RELE(bvp); 16057c478bd9Sstevel@tonic-gate if (delmip) 16067c478bd9Sstevel@tonic-gate vfs_delmip(vfsp); 16077c478bd9Sstevel@tonic-gate ASSERT(vswp != NULL); 16087c478bd9Sstevel@tonic-gate vfs_unrefvfssw(vswp); 16097c478bd9Sstevel@tonic-gate if (inargs != opts) 16107c478bd9Sstevel@tonic-gate kmem_free(inargs, MAX_MNTOPT_STR); 16117c478bd9Sstevel@tonic-gate if (copyout_error) { 16127c478bd9Sstevel@tonic-gate VFS_RELE(vfsp); 16137c478bd9Sstevel@tonic-gate error = copyout_error; 16147c478bd9Sstevel@tonic-gate } 16157c478bd9Sstevel@tonic-gate return (error); 16167c478bd9Sstevel@tonic-gate } 16177c478bd9Sstevel@tonic-gate 16187c478bd9Sstevel@tonic-gate static void 16197c478bd9Sstevel@tonic-gate vfs_setpath(struct vfs *vfsp, refstr_t **refp, const char *newpath) 16207c478bd9Sstevel@tonic-gate { 16217c478bd9Sstevel@tonic-gate size_t len; 16227c478bd9Sstevel@tonic-gate refstr_t *ref; 16237c478bd9Sstevel@tonic-gate zone_t *zone = curproc->p_zone; 16247c478bd9Sstevel@tonic-gate char *sp; 16257c478bd9Sstevel@tonic-gate int have_list_lock = 0; 16267c478bd9Sstevel@tonic-gate 16277c478bd9Sstevel@tonic-gate ASSERT(!VFS_ON_LIST(vfsp) || vfs_lock_held(vfsp)); 16287c478bd9Sstevel@tonic-gate 16297c478bd9Sstevel@tonic-gate /* 16307c478bd9Sstevel@tonic-gate * New path must be less than MAXPATHLEN because mntfs 16317c478bd9Sstevel@tonic-gate * will only display up to MAXPATHLEN bytes. This is currently 16327c478bd9Sstevel@tonic-gate * safe, because domount() uses pn_get(), and other callers 16337c478bd9Sstevel@tonic-gate * similarly cap the size to fewer than MAXPATHLEN bytes. 16347c478bd9Sstevel@tonic-gate */ 16357c478bd9Sstevel@tonic-gate 16367c478bd9Sstevel@tonic-gate ASSERT(strlen(newpath) < MAXPATHLEN); 16377c478bd9Sstevel@tonic-gate 16387c478bd9Sstevel@tonic-gate /* mntfs requires consistency while vfs list lock is held */ 16397c478bd9Sstevel@tonic-gate 16407c478bd9Sstevel@tonic-gate if (VFS_ON_LIST(vfsp)) { 16417c478bd9Sstevel@tonic-gate have_list_lock = 1; 16427c478bd9Sstevel@tonic-gate vfs_list_lock(); 16437c478bd9Sstevel@tonic-gate } 16447c478bd9Sstevel@tonic-gate 16457c478bd9Sstevel@tonic-gate if (*refp != NULL) 16467c478bd9Sstevel@tonic-gate refstr_rele(*refp); 16477c478bd9Sstevel@tonic-gate 16487c478bd9Sstevel@tonic-gate /* Do we need to modify the path? */ 16497c478bd9Sstevel@tonic-gate 16507c478bd9Sstevel@tonic-gate if (zone == global_zone || *newpath != '/') { 16517c478bd9Sstevel@tonic-gate ref = refstr_alloc(newpath); 16527c478bd9Sstevel@tonic-gate goto out; 16537c478bd9Sstevel@tonic-gate } 16547c478bd9Sstevel@tonic-gate 16557c478bd9Sstevel@tonic-gate /* 16567c478bd9Sstevel@tonic-gate * Truncate the trailing '/' in the zoneroot, and merge 16577c478bd9Sstevel@tonic-gate * in the zone's rootpath with the "newpath" (resource 16587c478bd9Sstevel@tonic-gate * or mountpoint) passed in. 16597c478bd9Sstevel@tonic-gate * 16607c478bd9Sstevel@tonic-gate * The size of the required buffer is thus the size of 16617c478bd9Sstevel@tonic-gate * the buffer required for the passed-in newpath 16627c478bd9Sstevel@tonic-gate * (strlen(newpath) + 1), plus the size of the buffer 16637c478bd9Sstevel@tonic-gate * required to hold zone_rootpath (zone_rootpathlen) 16647c478bd9Sstevel@tonic-gate * minus one for one of the now-superfluous NUL 16657c478bd9Sstevel@tonic-gate * terminations, minus one for the trailing '/'. 16667c478bd9Sstevel@tonic-gate * 16677c478bd9Sstevel@tonic-gate * That gives us: 16687c478bd9Sstevel@tonic-gate * 16697c478bd9Sstevel@tonic-gate * (strlen(newpath) + 1) + zone_rootpathlen - 1 - 1 16707c478bd9Sstevel@tonic-gate * 16717c478bd9Sstevel@tonic-gate * Which is what we have below. 16727c478bd9Sstevel@tonic-gate */ 16737c478bd9Sstevel@tonic-gate 16747c478bd9Sstevel@tonic-gate len = strlen(newpath) + zone->zone_rootpathlen - 1; 16757c478bd9Sstevel@tonic-gate sp = kmem_alloc(len, KM_SLEEP); 16767c478bd9Sstevel@tonic-gate 16777c478bd9Sstevel@tonic-gate /* 16787c478bd9Sstevel@tonic-gate * Copy everything including the trailing slash, which 16797c478bd9Sstevel@tonic-gate * we then overwrite with the NUL character. 16807c478bd9Sstevel@tonic-gate */ 16817c478bd9Sstevel@tonic-gate 16827c478bd9Sstevel@tonic-gate (void) strcpy(sp, zone->zone_rootpath); 16837c478bd9Sstevel@tonic-gate sp[zone->zone_rootpathlen - 2] = '\0'; 16847c478bd9Sstevel@tonic-gate (void) strcat(sp, newpath); 16857c478bd9Sstevel@tonic-gate 16867c478bd9Sstevel@tonic-gate ref = refstr_alloc(sp); 16877c478bd9Sstevel@tonic-gate kmem_free(sp, len); 16887c478bd9Sstevel@tonic-gate out: 16897c478bd9Sstevel@tonic-gate *refp = ref; 16907c478bd9Sstevel@tonic-gate 16917c478bd9Sstevel@tonic-gate if (have_list_lock) { 16927c478bd9Sstevel@tonic-gate vfs_mnttab_modtimeupd(); 16937c478bd9Sstevel@tonic-gate vfs_list_unlock(); 16947c478bd9Sstevel@tonic-gate } 16957c478bd9Sstevel@tonic-gate } 16967c478bd9Sstevel@tonic-gate 16977c478bd9Sstevel@tonic-gate /* 16987c478bd9Sstevel@tonic-gate * Record a mounted resource name in a vfs structure. 16997c478bd9Sstevel@tonic-gate * If vfsp is already mounted, caller must hold the vfs lock. 17007c478bd9Sstevel@tonic-gate */ 17017c478bd9Sstevel@tonic-gate void 17027c478bd9Sstevel@tonic-gate vfs_setresource(struct vfs *vfsp, const char *resource) 17037c478bd9Sstevel@tonic-gate { 17047c478bd9Sstevel@tonic-gate if (resource == NULL || resource[0] == '\0') 17057c478bd9Sstevel@tonic-gate resource = VFS_NORESOURCE; 17067c478bd9Sstevel@tonic-gate vfs_setpath(vfsp, &vfsp->vfs_resource, resource); 17077c478bd9Sstevel@tonic-gate } 17087c478bd9Sstevel@tonic-gate 17097c478bd9Sstevel@tonic-gate /* 17107c478bd9Sstevel@tonic-gate * Record a mount point name in a vfs structure. 17117c478bd9Sstevel@tonic-gate * If vfsp is already mounted, caller must hold the vfs lock. 17127c478bd9Sstevel@tonic-gate */ 17137c478bd9Sstevel@tonic-gate void 17147c478bd9Sstevel@tonic-gate vfs_setmntpoint(struct vfs *vfsp, const char *mntpt) 17157c478bd9Sstevel@tonic-gate { 17167c478bd9Sstevel@tonic-gate if (mntpt == NULL || mntpt[0] == '\0') 17177c478bd9Sstevel@tonic-gate mntpt = VFS_NOMNTPT; 17187c478bd9Sstevel@tonic-gate vfs_setpath(vfsp, &vfsp->vfs_mntpt, mntpt); 17197c478bd9Sstevel@tonic-gate } 17207c478bd9Sstevel@tonic-gate 17217c478bd9Sstevel@tonic-gate /* Returns the vfs_resource. Caller must call refstr_rele() when finished. */ 17227c478bd9Sstevel@tonic-gate 17237c478bd9Sstevel@tonic-gate refstr_t * 17247c478bd9Sstevel@tonic-gate vfs_getresource(const struct vfs *vfsp) 17257c478bd9Sstevel@tonic-gate { 17267c478bd9Sstevel@tonic-gate refstr_t *resource; 17277c478bd9Sstevel@tonic-gate 17287c478bd9Sstevel@tonic-gate vfs_list_read_lock(); 17297c478bd9Sstevel@tonic-gate resource = vfsp->vfs_resource; 17307c478bd9Sstevel@tonic-gate refstr_hold(resource); 17317c478bd9Sstevel@tonic-gate vfs_list_unlock(); 17327c478bd9Sstevel@tonic-gate 17337c478bd9Sstevel@tonic-gate return (resource); 17347c478bd9Sstevel@tonic-gate } 17357c478bd9Sstevel@tonic-gate 17367c478bd9Sstevel@tonic-gate /* Returns the vfs_mntpt. Caller must call refstr_rele() when finished. */ 17377c478bd9Sstevel@tonic-gate 17387c478bd9Sstevel@tonic-gate refstr_t * 17397c478bd9Sstevel@tonic-gate vfs_getmntpoint(const struct vfs *vfsp) 17407c478bd9Sstevel@tonic-gate { 17417c478bd9Sstevel@tonic-gate refstr_t *mntpt; 17427c478bd9Sstevel@tonic-gate 17437c478bd9Sstevel@tonic-gate vfs_list_read_lock(); 17447c478bd9Sstevel@tonic-gate mntpt = vfsp->vfs_mntpt; 17457c478bd9Sstevel@tonic-gate refstr_hold(mntpt); 17467c478bd9Sstevel@tonic-gate vfs_list_unlock(); 17477c478bd9Sstevel@tonic-gate 17487c478bd9Sstevel@tonic-gate return (mntpt); 17497c478bd9Sstevel@tonic-gate } 17507c478bd9Sstevel@tonic-gate 17517c478bd9Sstevel@tonic-gate /* 17527c478bd9Sstevel@tonic-gate * Create an empty options table with enough empty slots to hold all 17537c478bd9Sstevel@tonic-gate * The options in the options string passed as an argument. 17547c478bd9Sstevel@tonic-gate * Potentially prepend another options table. 17557c478bd9Sstevel@tonic-gate * 17567c478bd9Sstevel@tonic-gate * Note: caller is responsible for locking the vfs list, if needed, 17577c478bd9Sstevel@tonic-gate * to protect mops. 17587c478bd9Sstevel@tonic-gate */ 17597c478bd9Sstevel@tonic-gate static void 17607c478bd9Sstevel@tonic-gate vfs_createopttbl_extend(mntopts_t *mops, const char *opts, 17617c478bd9Sstevel@tonic-gate const mntopts_t *mtmpl) 17627c478bd9Sstevel@tonic-gate { 17637c478bd9Sstevel@tonic-gate const char *s = opts; 17647c478bd9Sstevel@tonic-gate uint_t count; 17657c478bd9Sstevel@tonic-gate 17667c478bd9Sstevel@tonic-gate if (opts == NULL || *opts == '\0') { 17677c478bd9Sstevel@tonic-gate count = 0; 17687c478bd9Sstevel@tonic-gate } else { 17697c478bd9Sstevel@tonic-gate count = 1; 17707c478bd9Sstevel@tonic-gate 17717c478bd9Sstevel@tonic-gate /* 17727c478bd9Sstevel@tonic-gate * Count number of options in the string 17737c478bd9Sstevel@tonic-gate */ 17747c478bd9Sstevel@tonic-gate for (s = strchr(s, ','); s != NULL; s = strchr(s, ',')) { 17757c478bd9Sstevel@tonic-gate count++; 17767c478bd9Sstevel@tonic-gate s++; 17777c478bd9Sstevel@tonic-gate } 17787c478bd9Sstevel@tonic-gate } 17797c478bd9Sstevel@tonic-gate vfs_copyopttbl_extend(mtmpl, mops, count); 17807c478bd9Sstevel@tonic-gate } 17817c478bd9Sstevel@tonic-gate 17827c478bd9Sstevel@tonic-gate /* 17837c478bd9Sstevel@tonic-gate * Create an empty options table with enough empty slots to hold all 17847c478bd9Sstevel@tonic-gate * The options in the options string passed as an argument. 17857c478bd9Sstevel@tonic-gate * 17867c478bd9Sstevel@tonic-gate * This function is *not* for general use by filesystems. 17877c478bd9Sstevel@tonic-gate * 17887c478bd9Sstevel@tonic-gate * Note: caller is responsible for locking the vfs list, if needed, 17897c478bd9Sstevel@tonic-gate * to protect mops. 17907c478bd9Sstevel@tonic-gate */ 17917c478bd9Sstevel@tonic-gate void 17927c478bd9Sstevel@tonic-gate vfs_createopttbl(mntopts_t *mops, const char *opts) 17937c478bd9Sstevel@tonic-gate { 17947c478bd9Sstevel@tonic-gate vfs_createopttbl_extend(mops, opts, NULL); 17957c478bd9Sstevel@tonic-gate } 17967c478bd9Sstevel@tonic-gate 17977c478bd9Sstevel@tonic-gate 17987c478bd9Sstevel@tonic-gate /* 17997c478bd9Sstevel@tonic-gate * Swap two mount options tables 18007c478bd9Sstevel@tonic-gate */ 18017c478bd9Sstevel@tonic-gate static void 18027c478bd9Sstevel@tonic-gate vfs_swapopttbl_nolock(mntopts_t *optbl1, mntopts_t *optbl2) 18037c478bd9Sstevel@tonic-gate { 18047c478bd9Sstevel@tonic-gate uint_t tmpcnt; 18057c478bd9Sstevel@tonic-gate mntopt_t *tmplist; 18067c478bd9Sstevel@tonic-gate 18077c478bd9Sstevel@tonic-gate tmpcnt = optbl2->mo_count; 18087c478bd9Sstevel@tonic-gate tmplist = optbl2->mo_list; 18097c478bd9Sstevel@tonic-gate optbl2->mo_count = optbl1->mo_count; 18107c478bd9Sstevel@tonic-gate optbl2->mo_list = optbl1->mo_list; 18117c478bd9Sstevel@tonic-gate optbl1->mo_count = tmpcnt; 18127c478bd9Sstevel@tonic-gate optbl1->mo_list = tmplist; 18137c478bd9Sstevel@tonic-gate } 18147c478bd9Sstevel@tonic-gate 18157c478bd9Sstevel@tonic-gate static void 18167c478bd9Sstevel@tonic-gate vfs_swapopttbl(mntopts_t *optbl1, mntopts_t *optbl2) 18177c478bd9Sstevel@tonic-gate { 18187c478bd9Sstevel@tonic-gate vfs_list_lock(); 18197c478bd9Sstevel@tonic-gate vfs_swapopttbl_nolock(optbl1, optbl2); 18207c478bd9Sstevel@tonic-gate vfs_mnttab_modtimeupd(); 18217c478bd9Sstevel@tonic-gate vfs_list_unlock(); 18227c478bd9Sstevel@tonic-gate } 18237c478bd9Sstevel@tonic-gate 18247c478bd9Sstevel@tonic-gate static char ** 18257c478bd9Sstevel@tonic-gate vfs_copycancelopt_extend(char **const moc, int extend) 18267c478bd9Sstevel@tonic-gate { 18277c478bd9Sstevel@tonic-gate int i = 0; 18287c478bd9Sstevel@tonic-gate int j; 18297c478bd9Sstevel@tonic-gate char **result; 18307c478bd9Sstevel@tonic-gate 18317c478bd9Sstevel@tonic-gate if (moc != NULL) { 18327c478bd9Sstevel@tonic-gate for (; moc[i] != NULL; i++) 18337c478bd9Sstevel@tonic-gate /* count number of options to cancel */; 18347c478bd9Sstevel@tonic-gate } 18357c478bd9Sstevel@tonic-gate 18367c478bd9Sstevel@tonic-gate if (i + extend == 0) 18377c478bd9Sstevel@tonic-gate return (NULL); 18387c478bd9Sstevel@tonic-gate 18397c478bd9Sstevel@tonic-gate result = kmem_alloc((i + extend + 1) * sizeof (char *), KM_SLEEP); 18407c478bd9Sstevel@tonic-gate 18417c478bd9Sstevel@tonic-gate for (j = 0; j < i; j++) { 18427c478bd9Sstevel@tonic-gate result[j] = kmem_alloc(strlen(moc[j]) + 1, KM_SLEEP); 18437c478bd9Sstevel@tonic-gate (void) strcpy(result[j], moc[j]); 18447c478bd9Sstevel@tonic-gate } 18457c478bd9Sstevel@tonic-gate for (; j <= i + extend; j++) 18467c478bd9Sstevel@tonic-gate result[j] = NULL; 18477c478bd9Sstevel@tonic-gate 18487c478bd9Sstevel@tonic-gate return (result); 18497c478bd9Sstevel@tonic-gate } 18507c478bd9Sstevel@tonic-gate 18517c478bd9Sstevel@tonic-gate static void 18527c478bd9Sstevel@tonic-gate vfs_copyopt(const mntopt_t *s, mntopt_t *d) 18537c478bd9Sstevel@tonic-gate { 18547c478bd9Sstevel@tonic-gate char *sp, *dp; 18557c478bd9Sstevel@tonic-gate 18567c478bd9Sstevel@tonic-gate d->mo_flags = s->mo_flags; 18577c478bd9Sstevel@tonic-gate d->mo_data = s->mo_data; 18587c478bd9Sstevel@tonic-gate sp = s->mo_name; 18597c478bd9Sstevel@tonic-gate if (sp != NULL) { 18607c478bd9Sstevel@tonic-gate dp = kmem_alloc(strlen(sp) + 1, KM_SLEEP); 18617c478bd9Sstevel@tonic-gate (void) strcpy(dp, sp); 18627c478bd9Sstevel@tonic-gate d->mo_name = dp; 18637c478bd9Sstevel@tonic-gate } else { 18647c478bd9Sstevel@tonic-gate d->mo_name = NULL; /* should never happen */ 18657c478bd9Sstevel@tonic-gate } 18667c478bd9Sstevel@tonic-gate 18677c478bd9Sstevel@tonic-gate d->mo_cancel = vfs_copycancelopt_extend(s->mo_cancel, 0); 18687c478bd9Sstevel@tonic-gate 18697c478bd9Sstevel@tonic-gate sp = s->mo_arg; 18707c478bd9Sstevel@tonic-gate if (sp != NULL) { 18717c478bd9Sstevel@tonic-gate dp = kmem_alloc(strlen(sp) + 1, KM_SLEEP); 18727c478bd9Sstevel@tonic-gate (void) strcpy(dp, sp); 18737c478bd9Sstevel@tonic-gate d->mo_arg = dp; 18747c478bd9Sstevel@tonic-gate } else { 18757c478bd9Sstevel@tonic-gate d->mo_arg = NULL; 18767c478bd9Sstevel@tonic-gate } 18777c478bd9Sstevel@tonic-gate } 18787c478bd9Sstevel@tonic-gate 18797c478bd9Sstevel@tonic-gate /* 18807c478bd9Sstevel@tonic-gate * Copy a mount options table, possibly allocating some spare 18817c478bd9Sstevel@tonic-gate * slots at the end. It is permissible to copy_extend the NULL table. 18827c478bd9Sstevel@tonic-gate */ 18837c478bd9Sstevel@tonic-gate static void 18847c478bd9Sstevel@tonic-gate vfs_copyopttbl_extend(const mntopts_t *smo, mntopts_t *dmo, int extra) 18857c478bd9Sstevel@tonic-gate { 18867c478bd9Sstevel@tonic-gate uint_t i, count; 18877c478bd9Sstevel@tonic-gate mntopt_t *motbl; 18887c478bd9Sstevel@tonic-gate 18897c478bd9Sstevel@tonic-gate /* 18907c478bd9Sstevel@tonic-gate * Clear out any existing stuff in the options table being initialized 18917c478bd9Sstevel@tonic-gate */ 18927c478bd9Sstevel@tonic-gate vfs_freeopttbl(dmo); 18937c478bd9Sstevel@tonic-gate count = (smo == NULL) ? 0 : smo->mo_count; 18947c478bd9Sstevel@tonic-gate if ((count + extra) == 0) /* nothing to do */ 18957c478bd9Sstevel@tonic-gate return; 18967c478bd9Sstevel@tonic-gate dmo->mo_count = count + extra; 18977c478bd9Sstevel@tonic-gate motbl = kmem_zalloc((count + extra) * sizeof (mntopt_t), KM_SLEEP); 18987c478bd9Sstevel@tonic-gate dmo->mo_list = motbl; 18997c478bd9Sstevel@tonic-gate for (i = 0; i < count; i++) { 19007c478bd9Sstevel@tonic-gate vfs_copyopt(&smo->mo_list[i], &motbl[i]); 19017c478bd9Sstevel@tonic-gate } 19027c478bd9Sstevel@tonic-gate for (i = count; i < count + extra; i++) { 19037c478bd9Sstevel@tonic-gate motbl[i].mo_flags = MO_EMPTY; 19047c478bd9Sstevel@tonic-gate } 19057c478bd9Sstevel@tonic-gate } 19067c478bd9Sstevel@tonic-gate 19077c478bd9Sstevel@tonic-gate /* 19087c478bd9Sstevel@tonic-gate * Copy a mount options table. 19097c478bd9Sstevel@tonic-gate * 19107c478bd9Sstevel@tonic-gate * This function is *not* for general use by filesystems. 19117c478bd9Sstevel@tonic-gate * 19127c478bd9Sstevel@tonic-gate * Note: caller is responsible for locking the vfs list, if needed, 19137c478bd9Sstevel@tonic-gate * to protect smo and dmo. 19147c478bd9Sstevel@tonic-gate */ 19157c478bd9Sstevel@tonic-gate void 19167c478bd9Sstevel@tonic-gate vfs_copyopttbl(const mntopts_t *smo, mntopts_t *dmo) 19177c478bd9Sstevel@tonic-gate { 19187c478bd9Sstevel@tonic-gate vfs_copyopttbl_extend(smo, dmo, 0); 19197c478bd9Sstevel@tonic-gate } 19207c478bd9Sstevel@tonic-gate 19217c478bd9Sstevel@tonic-gate static char ** 19227c478bd9Sstevel@tonic-gate vfs_mergecancelopts(const mntopt_t *mop1, const mntopt_t *mop2) 19237c478bd9Sstevel@tonic-gate { 19247c478bd9Sstevel@tonic-gate int c1 = 0; 19257c478bd9Sstevel@tonic-gate int c2 = 0; 19267c478bd9Sstevel@tonic-gate char **result; 19277c478bd9Sstevel@tonic-gate char **sp1, **sp2, **dp; 19287c478bd9Sstevel@tonic-gate 19297c478bd9Sstevel@tonic-gate /* 19307c478bd9Sstevel@tonic-gate * First we count both lists of cancel options. 19317c478bd9Sstevel@tonic-gate * If either is NULL or has no elements, we return a copy of 19327c478bd9Sstevel@tonic-gate * the other. 19337c478bd9Sstevel@tonic-gate */ 19347c478bd9Sstevel@tonic-gate if (mop1->mo_cancel != NULL) { 19357c478bd9Sstevel@tonic-gate for (; mop1->mo_cancel[c1] != NULL; c1++) 19367c478bd9Sstevel@tonic-gate /* count cancel options in mop1 */; 19377c478bd9Sstevel@tonic-gate } 19387c478bd9Sstevel@tonic-gate 19397c478bd9Sstevel@tonic-gate if (c1 == 0) 19407c478bd9Sstevel@tonic-gate return (vfs_copycancelopt_extend(mop2->mo_cancel, 0)); 19417c478bd9Sstevel@tonic-gate 19427c478bd9Sstevel@tonic-gate if (mop2->mo_cancel != NULL) { 19437c478bd9Sstevel@tonic-gate for (; mop2->mo_cancel[c2] != NULL; c2++) 19447c478bd9Sstevel@tonic-gate /* count cancel options in mop2 */; 19457c478bd9Sstevel@tonic-gate } 19467c478bd9Sstevel@tonic-gate 19477c478bd9Sstevel@tonic-gate result = vfs_copycancelopt_extend(mop1->mo_cancel, c2); 19487c478bd9Sstevel@tonic-gate 19497c478bd9Sstevel@tonic-gate if (c2 == 0) 19507c478bd9Sstevel@tonic-gate return (result); 19517c478bd9Sstevel@tonic-gate 19527c478bd9Sstevel@tonic-gate /* 19537c478bd9Sstevel@tonic-gate * When we get here, we've got two sets of cancel options; 19547c478bd9Sstevel@tonic-gate * we need to merge the two sets. We know that the result 19557c478bd9Sstevel@tonic-gate * array has "c1+c2+1" entries and in the end we might shrink 19567c478bd9Sstevel@tonic-gate * it. 19577c478bd9Sstevel@tonic-gate * Result now has a copy of the c1 entries from mop1; we'll 19587c478bd9Sstevel@tonic-gate * now lookup all the entries of mop2 in mop1 and copy it if 19597c478bd9Sstevel@tonic-gate * it is unique. 19607c478bd9Sstevel@tonic-gate * This operation is O(n^2) but it's only called once per 19617c478bd9Sstevel@tonic-gate * filesystem per duplicate option. This is a situation 19627c478bd9Sstevel@tonic-gate * which doesn't arise with the filesystems in ON and 19637c478bd9Sstevel@tonic-gate * n is generally 1. 19647c478bd9Sstevel@tonic-gate */ 19657c478bd9Sstevel@tonic-gate 19667c478bd9Sstevel@tonic-gate dp = &result[c1]; 19677c478bd9Sstevel@tonic-gate for (sp2 = mop2->mo_cancel; *sp2 != NULL; sp2++) { 19687c478bd9Sstevel@tonic-gate for (sp1 = mop1->mo_cancel; *sp1 != NULL; sp1++) { 19697c478bd9Sstevel@tonic-gate if (strcmp(*sp1, *sp2) == 0) 19707c478bd9Sstevel@tonic-gate break; 19717c478bd9Sstevel@tonic-gate } 19727c478bd9Sstevel@tonic-gate if (*sp1 == NULL) { 19737c478bd9Sstevel@tonic-gate /* 19747c478bd9Sstevel@tonic-gate * Option *sp2 not found in mop1, so copy it. 19757c478bd9Sstevel@tonic-gate * The calls to vfs_copycancelopt_extend() 19767c478bd9Sstevel@tonic-gate * guarantee that there's enough room. 19777c478bd9Sstevel@tonic-gate */ 19787c478bd9Sstevel@tonic-gate *dp = kmem_alloc(strlen(*sp2) + 1, KM_SLEEP); 19797c478bd9Sstevel@tonic-gate (void) strcpy(*dp++, *sp2); 19807c478bd9Sstevel@tonic-gate } 19817c478bd9Sstevel@tonic-gate } 19827c478bd9Sstevel@tonic-gate if (dp != &result[c1+c2]) { 19837c478bd9Sstevel@tonic-gate size_t bytes = (dp - result + 1) * sizeof (char *); 19847c478bd9Sstevel@tonic-gate char **nres = kmem_alloc(bytes, KM_SLEEP); 19857c478bd9Sstevel@tonic-gate 19867c478bd9Sstevel@tonic-gate bcopy(result, nres, bytes); 19877c478bd9Sstevel@tonic-gate kmem_free(result, (c1 + c2 + 1) * sizeof (char *)); 19887c478bd9Sstevel@tonic-gate result = nres; 19897c478bd9Sstevel@tonic-gate } 19907c478bd9Sstevel@tonic-gate return (result); 19917c478bd9Sstevel@tonic-gate } 19927c478bd9Sstevel@tonic-gate 19937c478bd9Sstevel@tonic-gate /* 19947c478bd9Sstevel@tonic-gate * Merge two mount option tables (outer and inner) into one. This is very 19957c478bd9Sstevel@tonic-gate * similar to "merging" global variables and automatic variables in C. 19967c478bd9Sstevel@tonic-gate * 19977c478bd9Sstevel@tonic-gate * This isn't (and doesn't have to be) fast. 19987c478bd9Sstevel@tonic-gate * 19997c478bd9Sstevel@tonic-gate * This function is *not* for general use by filesystems. 20007c478bd9Sstevel@tonic-gate * 20017c478bd9Sstevel@tonic-gate * Note: caller is responsible for locking the vfs list, if needed, 20027c478bd9Sstevel@tonic-gate * to protect omo, imo & dmo. 20037c478bd9Sstevel@tonic-gate */ 20047c478bd9Sstevel@tonic-gate void 20057c478bd9Sstevel@tonic-gate vfs_mergeopttbl(const mntopts_t *omo, const mntopts_t *imo, mntopts_t *dmo) 20067c478bd9Sstevel@tonic-gate { 20077c478bd9Sstevel@tonic-gate uint_t i, count; 20087c478bd9Sstevel@tonic-gate mntopt_t *mop, *motbl; 20097c478bd9Sstevel@tonic-gate uint_t freeidx; 20107c478bd9Sstevel@tonic-gate 20117c478bd9Sstevel@tonic-gate /* 20127c478bd9Sstevel@tonic-gate * First determine how much space we need to allocate. 20137c478bd9Sstevel@tonic-gate */ 20147c478bd9Sstevel@tonic-gate count = omo->mo_count; 20157c478bd9Sstevel@tonic-gate for (i = 0; i < imo->mo_count; i++) { 20167c478bd9Sstevel@tonic-gate if (imo->mo_list[i].mo_flags & MO_EMPTY) 20177c478bd9Sstevel@tonic-gate continue; 20187c478bd9Sstevel@tonic-gate if (vfs_hasopt(omo, imo->mo_list[i].mo_name) == NULL) 20197c478bd9Sstevel@tonic-gate count++; 20207c478bd9Sstevel@tonic-gate } 20217c478bd9Sstevel@tonic-gate ASSERT(count >= omo->mo_count && 20227c478bd9Sstevel@tonic-gate count <= omo->mo_count + imo->mo_count); 20237c478bd9Sstevel@tonic-gate motbl = kmem_alloc(count * sizeof (mntopt_t), KM_SLEEP); 20247c478bd9Sstevel@tonic-gate for (i = 0; i < omo->mo_count; i++) 20257c478bd9Sstevel@tonic-gate vfs_copyopt(&omo->mo_list[i], &motbl[i]); 20267c478bd9Sstevel@tonic-gate freeidx = omo->mo_count; 20277c478bd9Sstevel@tonic-gate for (i = 0; i < imo->mo_count; i++) { 20287c478bd9Sstevel@tonic-gate if (imo->mo_list[i].mo_flags & MO_EMPTY) 20297c478bd9Sstevel@tonic-gate continue; 20307c478bd9Sstevel@tonic-gate if ((mop = vfs_hasopt(omo, imo->mo_list[i].mo_name)) != NULL) { 20317c478bd9Sstevel@tonic-gate char **newcanp; 20327c478bd9Sstevel@tonic-gate uint_t index = mop - omo->mo_list; 20337c478bd9Sstevel@tonic-gate 20347c478bd9Sstevel@tonic-gate newcanp = vfs_mergecancelopts(mop, &motbl[index]); 20357c478bd9Sstevel@tonic-gate 20367c478bd9Sstevel@tonic-gate vfs_freeopt(&motbl[index]); 20377c478bd9Sstevel@tonic-gate vfs_copyopt(&imo->mo_list[i], &motbl[index]); 20387c478bd9Sstevel@tonic-gate 20397c478bd9Sstevel@tonic-gate vfs_freecancelopt(motbl[index].mo_cancel); 20407c478bd9Sstevel@tonic-gate motbl[index].mo_cancel = newcanp; 20417c478bd9Sstevel@tonic-gate } else { 20427c478bd9Sstevel@tonic-gate /* 20437c478bd9Sstevel@tonic-gate * If it's a new option, just copy it over to the first 20447c478bd9Sstevel@tonic-gate * free location. 20457c478bd9Sstevel@tonic-gate */ 20467c478bd9Sstevel@tonic-gate vfs_copyopt(&imo->mo_list[i], &motbl[freeidx++]); 20477c478bd9Sstevel@tonic-gate } 20487c478bd9Sstevel@tonic-gate } 20497c478bd9Sstevel@tonic-gate dmo->mo_count = count; 20507c478bd9Sstevel@tonic-gate dmo->mo_list = motbl; 20517c478bd9Sstevel@tonic-gate } 20527c478bd9Sstevel@tonic-gate 20537c478bd9Sstevel@tonic-gate /* 20547c478bd9Sstevel@tonic-gate * Functions to set and clear mount options in a mount options table. 20557c478bd9Sstevel@tonic-gate */ 20567c478bd9Sstevel@tonic-gate 20577c478bd9Sstevel@tonic-gate /* 20587c478bd9Sstevel@tonic-gate * Clear a mount option, if it exists. 20597c478bd9Sstevel@tonic-gate * 20607c478bd9Sstevel@tonic-gate * The update_mnttab arg indicates whether mops is part of a vfs that is on 20617c478bd9Sstevel@tonic-gate * the vfs list. 20627c478bd9Sstevel@tonic-gate */ 20637c478bd9Sstevel@tonic-gate static void 20647c478bd9Sstevel@tonic-gate vfs_clearmntopt_nolock(mntopts_t *mops, const char *opt, int update_mnttab) 20657c478bd9Sstevel@tonic-gate { 20667c478bd9Sstevel@tonic-gate struct mntopt *mop; 20677c478bd9Sstevel@tonic-gate uint_t i, count; 20687c478bd9Sstevel@tonic-gate 20697c478bd9Sstevel@tonic-gate ASSERT(!update_mnttab || RW_WRITE_HELD(&vfslist)); 20707c478bd9Sstevel@tonic-gate 20717c478bd9Sstevel@tonic-gate count = mops->mo_count; 20727c478bd9Sstevel@tonic-gate for (i = 0; i < count; i++) { 20737c478bd9Sstevel@tonic-gate mop = &mops->mo_list[i]; 20747c478bd9Sstevel@tonic-gate 20757c478bd9Sstevel@tonic-gate if (mop->mo_flags & MO_EMPTY) 20767c478bd9Sstevel@tonic-gate continue; 20777c478bd9Sstevel@tonic-gate if (strcmp(opt, mop->mo_name)) 20787c478bd9Sstevel@tonic-gate continue; 20797c478bd9Sstevel@tonic-gate mop->mo_flags &= ~MO_SET; 20807c478bd9Sstevel@tonic-gate if (mop->mo_arg != NULL) { 20817c478bd9Sstevel@tonic-gate kmem_free(mop->mo_arg, strlen(mop->mo_arg) + 1); 20827c478bd9Sstevel@tonic-gate } 20837c478bd9Sstevel@tonic-gate mop->mo_arg = NULL; 20847c478bd9Sstevel@tonic-gate if (update_mnttab) 20857c478bd9Sstevel@tonic-gate vfs_mnttab_modtimeupd(); 20867c478bd9Sstevel@tonic-gate break; 20877c478bd9Sstevel@tonic-gate } 20887c478bd9Sstevel@tonic-gate } 20897c478bd9Sstevel@tonic-gate 20907c478bd9Sstevel@tonic-gate void 20917c478bd9Sstevel@tonic-gate vfs_clearmntopt(struct vfs *vfsp, const char *opt) 20927c478bd9Sstevel@tonic-gate { 20937c478bd9Sstevel@tonic-gate int gotlock = 0; 20947c478bd9Sstevel@tonic-gate 20957c478bd9Sstevel@tonic-gate if (VFS_ON_LIST(vfsp)) { 20967c478bd9Sstevel@tonic-gate gotlock = 1; 20977c478bd9Sstevel@tonic-gate vfs_list_lock(); 20987c478bd9Sstevel@tonic-gate } 20997c478bd9Sstevel@tonic-gate vfs_clearmntopt_nolock(&vfsp->vfs_mntopts, opt, gotlock); 21007c478bd9Sstevel@tonic-gate if (gotlock) 21017c478bd9Sstevel@tonic-gate vfs_list_unlock(); 21027c478bd9Sstevel@tonic-gate } 21037c478bd9Sstevel@tonic-gate 21047c478bd9Sstevel@tonic-gate 21057c478bd9Sstevel@tonic-gate /* 21067c478bd9Sstevel@tonic-gate * Set a mount option on. If it's not found in the table, it's silently 21077c478bd9Sstevel@tonic-gate * ignored. If the option has MO_IGNORE set, it is still set unless the 21087c478bd9Sstevel@tonic-gate * VFS_NOFORCEOPT bit is set in the flags. Also, VFS_DISPLAY/VFS_NODISPLAY flag 21097c478bd9Sstevel@tonic-gate * bits can be used to toggle the MO_NODISPLAY bit for the option. 21107c478bd9Sstevel@tonic-gate * If the VFS_CREATEOPT flag bit is set then the first option slot with 21117c478bd9Sstevel@tonic-gate * MO_EMPTY set is created as the option passed in. 21127c478bd9Sstevel@tonic-gate * 21137c478bd9Sstevel@tonic-gate * The update_mnttab arg indicates whether mops is part of a vfs that is on 21147c478bd9Sstevel@tonic-gate * the vfs list. 21157c478bd9Sstevel@tonic-gate */ 21167c478bd9Sstevel@tonic-gate static void 21177c478bd9Sstevel@tonic-gate vfs_setmntopt_nolock(mntopts_t *mops, const char *opt, 21187c478bd9Sstevel@tonic-gate const char *arg, int flags, int update_mnttab) 21197c478bd9Sstevel@tonic-gate { 21207c478bd9Sstevel@tonic-gate mntopt_t *mop; 21217c478bd9Sstevel@tonic-gate uint_t i, count; 21227c478bd9Sstevel@tonic-gate char *sp; 21237c478bd9Sstevel@tonic-gate 21247c478bd9Sstevel@tonic-gate ASSERT(!update_mnttab || RW_WRITE_HELD(&vfslist)); 21257c478bd9Sstevel@tonic-gate 21267c478bd9Sstevel@tonic-gate if (flags & VFS_CREATEOPT) { 21277c478bd9Sstevel@tonic-gate if (vfs_hasopt(mops, opt) != NULL) { 21287c478bd9Sstevel@tonic-gate flags &= ~VFS_CREATEOPT; 21297c478bd9Sstevel@tonic-gate } 21307c478bd9Sstevel@tonic-gate } 21317c478bd9Sstevel@tonic-gate count = mops->mo_count; 21327c478bd9Sstevel@tonic-gate for (i = 0; i < count; i++) { 21337c478bd9Sstevel@tonic-gate mop = &mops->mo_list[i]; 21347c478bd9Sstevel@tonic-gate 21357c478bd9Sstevel@tonic-gate if (mop->mo_flags & MO_EMPTY) { 21367c478bd9Sstevel@tonic-gate if ((flags & VFS_CREATEOPT) == 0) 21377c478bd9Sstevel@tonic-gate continue; 21387c478bd9Sstevel@tonic-gate sp = kmem_alloc(strlen(opt) + 1, KM_SLEEP); 21397c478bd9Sstevel@tonic-gate (void) strcpy(sp, opt); 21407c478bd9Sstevel@tonic-gate mop->mo_name = sp; 21417c478bd9Sstevel@tonic-gate if (arg != NULL) 21427c478bd9Sstevel@tonic-gate mop->mo_flags = MO_HASVALUE; 21437c478bd9Sstevel@tonic-gate else 21447c478bd9Sstevel@tonic-gate mop->mo_flags = 0; 21457c478bd9Sstevel@tonic-gate } else if (strcmp(opt, mop->mo_name)) { 21467c478bd9Sstevel@tonic-gate continue; 21477c478bd9Sstevel@tonic-gate } 21487c478bd9Sstevel@tonic-gate if ((mop->mo_flags & MO_IGNORE) && (flags & VFS_NOFORCEOPT)) 21497c478bd9Sstevel@tonic-gate break; 21507c478bd9Sstevel@tonic-gate if (arg != NULL && (mop->mo_flags & MO_HASVALUE) != 0) { 21517c478bd9Sstevel@tonic-gate sp = kmem_alloc(strlen(arg) + 1, KM_SLEEP); 21527c478bd9Sstevel@tonic-gate (void) strcpy(sp, arg); 21537c478bd9Sstevel@tonic-gate } else { 21547c478bd9Sstevel@tonic-gate sp = NULL; 21557c478bd9Sstevel@tonic-gate } 21567c478bd9Sstevel@tonic-gate if (mop->mo_arg != NULL) 21577c478bd9Sstevel@tonic-gate kmem_free(mop->mo_arg, strlen(mop->mo_arg) + 1); 21587c478bd9Sstevel@tonic-gate mop->mo_arg = sp; 21597c478bd9Sstevel@tonic-gate if (flags & VFS_DISPLAY) 21607c478bd9Sstevel@tonic-gate mop->mo_flags &= ~MO_NODISPLAY; 21617c478bd9Sstevel@tonic-gate if (flags & VFS_NODISPLAY) 21627c478bd9Sstevel@tonic-gate mop->mo_flags |= MO_NODISPLAY; 21637c478bd9Sstevel@tonic-gate mop->mo_flags |= MO_SET; 21647c478bd9Sstevel@tonic-gate if (mop->mo_cancel != NULL) { 21657c478bd9Sstevel@tonic-gate char **cp; 21667c478bd9Sstevel@tonic-gate 21677c478bd9Sstevel@tonic-gate for (cp = mop->mo_cancel; *cp != NULL; cp++) 21687c478bd9Sstevel@tonic-gate vfs_clearmntopt_nolock(mops, *cp, 0); 21697c478bd9Sstevel@tonic-gate } 21707c478bd9Sstevel@tonic-gate if (update_mnttab) 21717c478bd9Sstevel@tonic-gate vfs_mnttab_modtimeupd(); 21727c478bd9Sstevel@tonic-gate break; 21737c478bd9Sstevel@tonic-gate } 21747c478bd9Sstevel@tonic-gate } 21757c478bd9Sstevel@tonic-gate 21767c478bd9Sstevel@tonic-gate void 21777c478bd9Sstevel@tonic-gate vfs_setmntopt(struct vfs *vfsp, const char *opt, const char *arg, int flags) 21787c478bd9Sstevel@tonic-gate { 21797c478bd9Sstevel@tonic-gate int gotlock = 0; 21807c478bd9Sstevel@tonic-gate 21817c478bd9Sstevel@tonic-gate if (VFS_ON_LIST(vfsp)) { 21827c478bd9Sstevel@tonic-gate gotlock = 1; 21837c478bd9Sstevel@tonic-gate vfs_list_lock(); 21847c478bd9Sstevel@tonic-gate } 21857c478bd9Sstevel@tonic-gate vfs_setmntopt_nolock(&vfsp->vfs_mntopts, opt, arg, flags, gotlock); 21867c478bd9Sstevel@tonic-gate if (gotlock) 21877c478bd9Sstevel@tonic-gate vfs_list_unlock(); 21887c478bd9Sstevel@tonic-gate } 21897c478bd9Sstevel@tonic-gate 21907c478bd9Sstevel@tonic-gate 21917c478bd9Sstevel@tonic-gate /* 21927c478bd9Sstevel@tonic-gate * Add a "tag" option to a mounted file system's options list. 21937c478bd9Sstevel@tonic-gate * 21947c478bd9Sstevel@tonic-gate * Note: caller is responsible for locking the vfs list, if needed, 21957c478bd9Sstevel@tonic-gate * to protect mops. 21967c478bd9Sstevel@tonic-gate */ 21977c478bd9Sstevel@tonic-gate static mntopt_t * 21987c478bd9Sstevel@tonic-gate vfs_addtag(mntopts_t *mops, const char *tag) 21997c478bd9Sstevel@tonic-gate { 22007c478bd9Sstevel@tonic-gate uint_t count; 22017c478bd9Sstevel@tonic-gate mntopt_t *mop, *motbl; 22027c478bd9Sstevel@tonic-gate 22037c478bd9Sstevel@tonic-gate count = mops->mo_count + 1; 22047c478bd9Sstevel@tonic-gate motbl = kmem_zalloc(count * sizeof (mntopt_t), KM_SLEEP); 22057c478bd9Sstevel@tonic-gate if (mops->mo_count) { 22067c478bd9Sstevel@tonic-gate size_t len = (count - 1) * sizeof (mntopt_t); 22077c478bd9Sstevel@tonic-gate 22087c478bd9Sstevel@tonic-gate bcopy(mops->mo_list, motbl, len); 22097c478bd9Sstevel@tonic-gate kmem_free(mops->mo_list, len); 22107c478bd9Sstevel@tonic-gate } 22117c478bd9Sstevel@tonic-gate mops->mo_count = count; 22127c478bd9Sstevel@tonic-gate mops->mo_list = motbl; 22137c478bd9Sstevel@tonic-gate mop = &motbl[count - 1]; 22147c478bd9Sstevel@tonic-gate mop->mo_flags = MO_TAG; 22157c478bd9Sstevel@tonic-gate mop->mo_name = kmem_alloc(strlen(tag) + 1, KM_SLEEP); 22167c478bd9Sstevel@tonic-gate (void) strcpy(mop->mo_name, tag); 22177c478bd9Sstevel@tonic-gate return (mop); 22187c478bd9Sstevel@tonic-gate } 22197c478bd9Sstevel@tonic-gate 22207c478bd9Sstevel@tonic-gate /* 22217c478bd9Sstevel@tonic-gate * Allow users to set arbitrary "tags" in a vfs's mount options. 22227c478bd9Sstevel@tonic-gate * Broader use within the kernel is discouraged. 22237c478bd9Sstevel@tonic-gate */ 22247c478bd9Sstevel@tonic-gate int 22257c478bd9Sstevel@tonic-gate vfs_settag(uint_t major, uint_t minor, const char *mntpt, const char *tag, 22267c478bd9Sstevel@tonic-gate cred_t *cr) 22277c478bd9Sstevel@tonic-gate { 22287c478bd9Sstevel@tonic-gate vfs_t *vfsp; 22297c478bd9Sstevel@tonic-gate mntopts_t *mops; 22307c478bd9Sstevel@tonic-gate mntopt_t *mop; 22317c478bd9Sstevel@tonic-gate int found = 0; 22327c478bd9Sstevel@tonic-gate dev_t dev = makedevice(major, minor); 22337c478bd9Sstevel@tonic-gate int err = 0; 22347c478bd9Sstevel@tonic-gate char *buf = kmem_alloc(MAX_MNTOPT_STR, KM_SLEEP); 22357c478bd9Sstevel@tonic-gate 22367c478bd9Sstevel@tonic-gate /* 22377c478bd9Sstevel@tonic-gate * Find the desired mounted file system 22387c478bd9Sstevel@tonic-gate */ 22397c478bd9Sstevel@tonic-gate vfs_list_lock(); 22407c478bd9Sstevel@tonic-gate vfsp = rootvfs; 22417c478bd9Sstevel@tonic-gate do { 22427c478bd9Sstevel@tonic-gate if (vfsp->vfs_dev == dev && 22437c478bd9Sstevel@tonic-gate strcmp(mntpt, refstr_value(vfsp->vfs_mntpt)) == 0) { 22447c478bd9Sstevel@tonic-gate found = 1; 22457c478bd9Sstevel@tonic-gate break; 22467c478bd9Sstevel@tonic-gate } 22477c478bd9Sstevel@tonic-gate vfsp = vfsp->vfs_next; 22487c478bd9Sstevel@tonic-gate } while (vfsp != rootvfs); 22497c478bd9Sstevel@tonic-gate 22507c478bd9Sstevel@tonic-gate if (!found) { 22517c478bd9Sstevel@tonic-gate err = EINVAL; 22527c478bd9Sstevel@tonic-gate goto out; 22537c478bd9Sstevel@tonic-gate } 22547c478bd9Sstevel@tonic-gate err = secpolicy_fs_config(cr, vfsp); 22557c478bd9Sstevel@tonic-gate if (err != 0) 22567c478bd9Sstevel@tonic-gate goto out; 22577c478bd9Sstevel@tonic-gate 22587c478bd9Sstevel@tonic-gate mops = &vfsp->vfs_mntopts; 22597c478bd9Sstevel@tonic-gate /* 22607c478bd9Sstevel@tonic-gate * Add tag if it doesn't already exist 22617c478bd9Sstevel@tonic-gate */ 22627c478bd9Sstevel@tonic-gate if ((mop = vfs_hasopt(mops, tag)) == NULL) { 22637c478bd9Sstevel@tonic-gate int len; 22647c478bd9Sstevel@tonic-gate 22657c478bd9Sstevel@tonic-gate (void) vfs_buildoptionstr(mops, buf, MAX_MNTOPT_STR); 22667c478bd9Sstevel@tonic-gate len = strlen(buf); 22677c478bd9Sstevel@tonic-gate if (len + strlen(tag) + 2 > MAX_MNTOPT_STR) { 22687c478bd9Sstevel@tonic-gate err = ENAMETOOLONG; 22697c478bd9Sstevel@tonic-gate goto out; 22707c478bd9Sstevel@tonic-gate } 22717c478bd9Sstevel@tonic-gate mop = vfs_addtag(mops, tag); 22727c478bd9Sstevel@tonic-gate } 22737c478bd9Sstevel@tonic-gate if ((mop->mo_flags & MO_TAG) == 0) { 22747c478bd9Sstevel@tonic-gate err = EINVAL; 22757c478bd9Sstevel@tonic-gate goto out; 22767c478bd9Sstevel@tonic-gate } 22777c478bd9Sstevel@tonic-gate vfs_setmntopt_nolock(mops, tag, NULL, 0, 1); 22787c478bd9Sstevel@tonic-gate out: 22797c478bd9Sstevel@tonic-gate vfs_list_unlock(); 22807c478bd9Sstevel@tonic-gate kmem_free(buf, MAX_MNTOPT_STR); 22817c478bd9Sstevel@tonic-gate return (err); 22827c478bd9Sstevel@tonic-gate } 22837c478bd9Sstevel@tonic-gate 22847c478bd9Sstevel@tonic-gate /* 22857c478bd9Sstevel@tonic-gate * Allow users to remove arbitrary "tags" in a vfs's mount options. 22867c478bd9Sstevel@tonic-gate * Broader use within the kernel is discouraged. 22877c478bd9Sstevel@tonic-gate */ 22887c478bd9Sstevel@tonic-gate int 22897c478bd9Sstevel@tonic-gate vfs_clrtag(uint_t major, uint_t minor, const char *mntpt, const char *tag, 22907c478bd9Sstevel@tonic-gate cred_t *cr) 22917c478bd9Sstevel@tonic-gate { 22927c478bd9Sstevel@tonic-gate vfs_t *vfsp; 22937c478bd9Sstevel@tonic-gate mntopt_t *mop; 22947c478bd9Sstevel@tonic-gate int found = 0; 22957c478bd9Sstevel@tonic-gate dev_t dev = makedevice(major, minor); 22967c478bd9Sstevel@tonic-gate int err = 0; 22977c478bd9Sstevel@tonic-gate 22987c478bd9Sstevel@tonic-gate /* 22997c478bd9Sstevel@tonic-gate * Find the desired mounted file system 23007c478bd9Sstevel@tonic-gate */ 23017c478bd9Sstevel@tonic-gate vfs_list_lock(); 23027c478bd9Sstevel@tonic-gate vfsp = rootvfs; 23037c478bd9Sstevel@tonic-gate do { 23047c478bd9Sstevel@tonic-gate if (vfsp->vfs_dev == dev && 23057c478bd9Sstevel@tonic-gate strcmp(mntpt, refstr_value(vfsp->vfs_mntpt)) == 0) { 23067c478bd9Sstevel@tonic-gate found = 1; 23077c478bd9Sstevel@tonic-gate break; 23087c478bd9Sstevel@tonic-gate } 23097c478bd9Sstevel@tonic-gate vfsp = vfsp->vfs_next; 23107c478bd9Sstevel@tonic-gate } while (vfsp != rootvfs); 23117c478bd9Sstevel@tonic-gate 23127c478bd9Sstevel@tonic-gate if (!found) { 23137c478bd9Sstevel@tonic-gate err = EINVAL; 23147c478bd9Sstevel@tonic-gate goto out; 23157c478bd9Sstevel@tonic-gate } 23167c478bd9Sstevel@tonic-gate err = secpolicy_fs_config(cr, vfsp); 23177c478bd9Sstevel@tonic-gate if (err != 0) 23187c478bd9Sstevel@tonic-gate goto out; 23197c478bd9Sstevel@tonic-gate 23207c478bd9Sstevel@tonic-gate if ((mop = vfs_hasopt(&vfsp->vfs_mntopts, tag)) == NULL) { 23217c478bd9Sstevel@tonic-gate err = EINVAL; 23227c478bd9Sstevel@tonic-gate goto out; 23237c478bd9Sstevel@tonic-gate } 23247c478bd9Sstevel@tonic-gate if ((mop->mo_flags & MO_TAG) == 0) { 23257c478bd9Sstevel@tonic-gate err = EINVAL; 23267c478bd9Sstevel@tonic-gate goto out; 23277c478bd9Sstevel@tonic-gate } 23287c478bd9Sstevel@tonic-gate vfs_clearmntopt_nolock(&vfsp->vfs_mntopts, tag, 1); 23297c478bd9Sstevel@tonic-gate out: 23307c478bd9Sstevel@tonic-gate vfs_list_unlock(); 23317c478bd9Sstevel@tonic-gate return (err); 23327c478bd9Sstevel@tonic-gate } 23337c478bd9Sstevel@tonic-gate 23347c478bd9Sstevel@tonic-gate /* 23357c478bd9Sstevel@tonic-gate * Function to parse an option string and fill in a mount options table. 23367c478bd9Sstevel@tonic-gate * Unknown options are silently ignored. The input option string is modified 23377c478bd9Sstevel@tonic-gate * by replacing separators with nulls. If the create flag is set, options 23387c478bd9Sstevel@tonic-gate * not found in the table are just added on the fly. The table must have 23397c478bd9Sstevel@tonic-gate * an option slot marked MO_EMPTY to add an option on the fly. 23407c478bd9Sstevel@tonic-gate * 23417c478bd9Sstevel@tonic-gate * This function is *not* for general use by filesystems. 23427c478bd9Sstevel@tonic-gate * 23437c478bd9Sstevel@tonic-gate * Note: caller is responsible for locking the vfs list, if needed, 23447c478bd9Sstevel@tonic-gate * to protect mops.. 23457c478bd9Sstevel@tonic-gate */ 23467c478bd9Sstevel@tonic-gate void 23477c478bd9Sstevel@tonic-gate vfs_parsemntopts(mntopts_t *mops, char *osp, int create) 23487c478bd9Sstevel@tonic-gate { 23497c478bd9Sstevel@tonic-gate char *s = osp, *p, *nextop, *valp, *cp, *ep; 23507c478bd9Sstevel@tonic-gate int setflg = VFS_NOFORCEOPT; 23517c478bd9Sstevel@tonic-gate 23527c478bd9Sstevel@tonic-gate if (osp == NULL) 23537c478bd9Sstevel@tonic-gate return; 23547c478bd9Sstevel@tonic-gate while (*s != '\0') { 23557c478bd9Sstevel@tonic-gate p = strchr(s, ','); /* find next option */ 23567c478bd9Sstevel@tonic-gate if (p == NULL) { 23577c478bd9Sstevel@tonic-gate cp = NULL; 23587c478bd9Sstevel@tonic-gate p = s + strlen(s); 23597c478bd9Sstevel@tonic-gate } else { 23607c478bd9Sstevel@tonic-gate cp = p; /* save location of comma */ 23617c478bd9Sstevel@tonic-gate *p++ = '\0'; /* mark end and point to next option */ 23627c478bd9Sstevel@tonic-gate } 23637c478bd9Sstevel@tonic-gate nextop = p; 23647c478bd9Sstevel@tonic-gate p = strchr(s, '='); /* look for value */ 23657c478bd9Sstevel@tonic-gate if (p == NULL) { 23667c478bd9Sstevel@tonic-gate valp = NULL; /* no value supplied */ 23677c478bd9Sstevel@tonic-gate } else { 23687c478bd9Sstevel@tonic-gate ep = p; /* save location of equals */ 23697c478bd9Sstevel@tonic-gate *p++ = '\0'; /* end option and point to value */ 23707c478bd9Sstevel@tonic-gate valp = p; 23717c478bd9Sstevel@tonic-gate } 23727c478bd9Sstevel@tonic-gate /* 23737c478bd9Sstevel@tonic-gate * set option into options table 23747c478bd9Sstevel@tonic-gate */ 23757c478bd9Sstevel@tonic-gate if (create) 23767c478bd9Sstevel@tonic-gate setflg |= VFS_CREATEOPT; 23777c478bd9Sstevel@tonic-gate vfs_setmntopt_nolock(mops, s, valp, setflg, 0); 23787c478bd9Sstevel@tonic-gate if (cp != NULL) 23797c478bd9Sstevel@tonic-gate *cp = ','; /* restore the comma */ 23807c478bd9Sstevel@tonic-gate if (valp != NULL) 23817c478bd9Sstevel@tonic-gate *ep = '='; /* restore the equals */ 23827c478bd9Sstevel@tonic-gate s = nextop; 23837c478bd9Sstevel@tonic-gate } 23847c478bd9Sstevel@tonic-gate } 23857c478bd9Sstevel@tonic-gate 23867c478bd9Sstevel@tonic-gate /* 23877c478bd9Sstevel@tonic-gate * Function to inquire if an option exists in a mount options table. 23887c478bd9Sstevel@tonic-gate * Returns a pointer to the option if it exists, else NULL. 23897c478bd9Sstevel@tonic-gate * 23907c478bd9Sstevel@tonic-gate * This function is *not* for general use by filesystems. 23917c478bd9Sstevel@tonic-gate * 23927c478bd9Sstevel@tonic-gate * Note: caller is responsible for locking the vfs list, if needed, 23937c478bd9Sstevel@tonic-gate * to protect mops. 23947c478bd9Sstevel@tonic-gate */ 23957c478bd9Sstevel@tonic-gate struct mntopt * 23967c478bd9Sstevel@tonic-gate vfs_hasopt(const mntopts_t *mops, const char *opt) 23977c478bd9Sstevel@tonic-gate { 23987c478bd9Sstevel@tonic-gate struct mntopt *mop; 23997c478bd9Sstevel@tonic-gate uint_t i, count; 24007c478bd9Sstevel@tonic-gate 24017c478bd9Sstevel@tonic-gate count = mops->mo_count; 24027c478bd9Sstevel@tonic-gate for (i = 0; i < count; i++) { 24037c478bd9Sstevel@tonic-gate mop = &mops->mo_list[i]; 24047c478bd9Sstevel@tonic-gate 24057c478bd9Sstevel@tonic-gate if (mop->mo_flags & MO_EMPTY) 24067c478bd9Sstevel@tonic-gate continue; 24077c478bd9Sstevel@tonic-gate if (strcmp(opt, mop->mo_name) == 0) 24087c478bd9Sstevel@tonic-gate return (mop); 24097c478bd9Sstevel@tonic-gate } 24107c478bd9Sstevel@tonic-gate return (NULL); 24117c478bd9Sstevel@tonic-gate } 24127c478bd9Sstevel@tonic-gate 24137c478bd9Sstevel@tonic-gate /* 24147c478bd9Sstevel@tonic-gate * Function to inquire if an option is set in a mount options table. 24157c478bd9Sstevel@tonic-gate * Returns non-zero if set and fills in the arg pointer with a pointer to 24167c478bd9Sstevel@tonic-gate * the argument string or NULL if there is no argument string. 24177c478bd9Sstevel@tonic-gate */ 24187c478bd9Sstevel@tonic-gate static int 24197c478bd9Sstevel@tonic-gate vfs_optionisset_nolock(const mntopts_t *mops, const char *opt, char **argp) 24207c478bd9Sstevel@tonic-gate { 24217c478bd9Sstevel@tonic-gate struct mntopt *mop; 24227c478bd9Sstevel@tonic-gate uint_t i, count; 24237c478bd9Sstevel@tonic-gate 24247c478bd9Sstevel@tonic-gate count = mops->mo_count; 24257c478bd9Sstevel@tonic-gate for (i = 0; i < count; i++) { 24267c478bd9Sstevel@tonic-gate mop = &mops->mo_list[i]; 24277c478bd9Sstevel@tonic-gate 24287c478bd9Sstevel@tonic-gate if (mop->mo_flags & MO_EMPTY) 24297c478bd9Sstevel@tonic-gate continue; 24307c478bd9Sstevel@tonic-gate if (strcmp(opt, mop->mo_name)) 24317c478bd9Sstevel@tonic-gate continue; 24327c478bd9Sstevel@tonic-gate if ((mop->mo_flags & MO_SET) == 0) 24337c478bd9Sstevel@tonic-gate return (0); 24347c478bd9Sstevel@tonic-gate if (argp != NULL && (mop->mo_flags & MO_HASVALUE) != 0) 24357c478bd9Sstevel@tonic-gate *argp = mop->mo_arg; 24367c478bd9Sstevel@tonic-gate return (1); 24377c478bd9Sstevel@tonic-gate } 24387c478bd9Sstevel@tonic-gate return (0); 24397c478bd9Sstevel@tonic-gate } 24407c478bd9Sstevel@tonic-gate 24417c478bd9Sstevel@tonic-gate 24427c478bd9Sstevel@tonic-gate int 24437c478bd9Sstevel@tonic-gate vfs_optionisset(const struct vfs *vfsp, const char *opt, char **argp) 24447c478bd9Sstevel@tonic-gate { 24457c478bd9Sstevel@tonic-gate int ret; 24467c478bd9Sstevel@tonic-gate 24477c478bd9Sstevel@tonic-gate vfs_list_read_lock(); 24487c478bd9Sstevel@tonic-gate ret = vfs_optionisset_nolock(&vfsp->vfs_mntopts, opt, argp); 24497c478bd9Sstevel@tonic-gate vfs_list_unlock(); 24507c478bd9Sstevel@tonic-gate return (ret); 24517c478bd9Sstevel@tonic-gate } 24527c478bd9Sstevel@tonic-gate 24537c478bd9Sstevel@tonic-gate 24547c478bd9Sstevel@tonic-gate /* 24557c478bd9Sstevel@tonic-gate * Construct a comma separated string of the options set in the given 24567c478bd9Sstevel@tonic-gate * mount table, return the string in the given buffer. Return non-zero if 24577c478bd9Sstevel@tonic-gate * the buffer would overflow. 24587c478bd9Sstevel@tonic-gate * 24597c478bd9Sstevel@tonic-gate * This function is *not* for general use by filesystems. 24607c478bd9Sstevel@tonic-gate * 24617c478bd9Sstevel@tonic-gate * Note: caller is responsible for locking the vfs list, if needed, 24627c478bd9Sstevel@tonic-gate * to protect mp. 24637c478bd9Sstevel@tonic-gate */ 24647c478bd9Sstevel@tonic-gate int 24657c478bd9Sstevel@tonic-gate vfs_buildoptionstr(const mntopts_t *mp, char *buf, int len) 24667c478bd9Sstevel@tonic-gate { 24677c478bd9Sstevel@tonic-gate char *cp; 24687c478bd9Sstevel@tonic-gate uint_t i; 24697c478bd9Sstevel@tonic-gate 24707c478bd9Sstevel@tonic-gate buf[0] = '\0'; 24717c478bd9Sstevel@tonic-gate cp = buf; 24727c478bd9Sstevel@tonic-gate for (i = 0; i < mp->mo_count; i++) { 24737c478bd9Sstevel@tonic-gate struct mntopt *mop; 24747c478bd9Sstevel@tonic-gate 24757c478bd9Sstevel@tonic-gate mop = &mp->mo_list[i]; 24767c478bd9Sstevel@tonic-gate if (mop->mo_flags & MO_SET) { 24777c478bd9Sstevel@tonic-gate int optlen, comma = 0; 24787c478bd9Sstevel@tonic-gate 24797c478bd9Sstevel@tonic-gate if (buf[0] != '\0') 24807c478bd9Sstevel@tonic-gate comma = 1; 24817c478bd9Sstevel@tonic-gate optlen = strlen(mop->mo_name); 24827c478bd9Sstevel@tonic-gate if (strlen(buf) + comma + optlen + 1 > len) 24837c478bd9Sstevel@tonic-gate goto err; 24847c478bd9Sstevel@tonic-gate if (comma) 24857c478bd9Sstevel@tonic-gate *cp++ = ','; 24867c478bd9Sstevel@tonic-gate (void) strcpy(cp, mop->mo_name); 24877c478bd9Sstevel@tonic-gate cp += optlen; 24887c478bd9Sstevel@tonic-gate /* 24897c478bd9Sstevel@tonic-gate * Append option value if there is one 24907c478bd9Sstevel@tonic-gate */ 24917c478bd9Sstevel@tonic-gate if (mop->mo_arg != NULL) { 24927c478bd9Sstevel@tonic-gate int arglen; 24937c478bd9Sstevel@tonic-gate 24947c478bd9Sstevel@tonic-gate arglen = strlen(mop->mo_arg); 24957c478bd9Sstevel@tonic-gate if (strlen(buf) + arglen + 2 > len) 24967c478bd9Sstevel@tonic-gate goto err; 24977c478bd9Sstevel@tonic-gate *cp++ = '='; 24987c478bd9Sstevel@tonic-gate (void) strcpy(cp, mop->mo_arg); 24997c478bd9Sstevel@tonic-gate cp += arglen; 25007c478bd9Sstevel@tonic-gate } 25017c478bd9Sstevel@tonic-gate } 25027c478bd9Sstevel@tonic-gate } 25037c478bd9Sstevel@tonic-gate return (0); 25047c478bd9Sstevel@tonic-gate err: 25057c478bd9Sstevel@tonic-gate return (EOVERFLOW); 25067c478bd9Sstevel@tonic-gate } 25077c478bd9Sstevel@tonic-gate 25087c478bd9Sstevel@tonic-gate static void 25097c478bd9Sstevel@tonic-gate vfs_freecancelopt(char **moc) 25107c478bd9Sstevel@tonic-gate { 25117c478bd9Sstevel@tonic-gate if (moc != NULL) { 25127c478bd9Sstevel@tonic-gate int ccnt = 0; 25137c478bd9Sstevel@tonic-gate char **cp; 25147c478bd9Sstevel@tonic-gate 25157c478bd9Sstevel@tonic-gate for (cp = moc; *cp != NULL; cp++) { 25167c478bd9Sstevel@tonic-gate kmem_free(*cp, strlen(*cp) + 1); 25177c478bd9Sstevel@tonic-gate ccnt++; 25187c478bd9Sstevel@tonic-gate } 25197c478bd9Sstevel@tonic-gate kmem_free(moc, (ccnt + 1) * sizeof (char *)); 25207c478bd9Sstevel@tonic-gate } 25217c478bd9Sstevel@tonic-gate } 25227c478bd9Sstevel@tonic-gate 25237c478bd9Sstevel@tonic-gate static void 25247c478bd9Sstevel@tonic-gate vfs_freeopt(mntopt_t *mop) 25257c478bd9Sstevel@tonic-gate { 25267c478bd9Sstevel@tonic-gate if (mop->mo_name != NULL) 25277c478bd9Sstevel@tonic-gate kmem_free(mop->mo_name, strlen(mop->mo_name) + 1); 25287c478bd9Sstevel@tonic-gate 25297c478bd9Sstevel@tonic-gate vfs_freecancelopt(mop->mo_cancel); 25307c478bd9Sstevel@tonic-gate 25317c478bd9Sstevel@tonic-gate if (mop->mo_arg != NULL) 25327c478bd9Sstevel@tonic-gate kmem_free(mop->mo_arg, strlen(mop->mo_arg) + 1); 25337c478bd9Sstevel@tonic-gate } 25347c478bd9Sstevel@tonic-gate 25357c478bd9Sstevel@tonic-gate /* 25367c478bd9Sstevel@tonic-gate * Free a mount options table 25377c478bd9Sstevel@tonic-gate * 25387c478bd9Sstevel@tonic-gate * This function is *not* for general use by filesystems. 25397c478bd9Sstevel@tonic-gate * 25407c478bd9Sstevel@tonic-gate * Note: caller is responsible for locking the vfs list, if needed, 25417c478bd9Sstevel@tonic-gate * to protect mp. 25427c478bd9Sstevel@tonic-gate */ 25437c478bd9Sstevel@tonic-gate void 25447c478bd9Sstevel@tonic-gate vfs_freeopttbl(mntopts_t *mp) 25457c478bd9Sstevel@tonic-gate { 25467c478bd9Sstevel@tonic-gate uint_t i, count; 25477c478bd9Sstevel@tonic-gate 25487c478bd9Sstevel@tonic-gate count = mp->mo_count; 25497c478bd9Sstevel@tonic-gate for (i = 0; i < count; i++) { 25507c478bd9Sstevel@tonic-gate vfs_freeopt(&mp->mo_list[i]); 25517c478bd9Sstevel@tonic-gate } 25527c478bd9Sstevel@tonic-gate if (count) { 25537c478bd9Sstevel@tonic-gate kmem_free(mp->mo_list, sizeof (mntopt_t) * count); 25547c478bd9Sstevel@tonic-gate mp->mo_count = 0; 25557c478bd9Sstevel@tonic-gate mp->mo_list = NULL; 25567c478bd9Sstevel@tonic-gate } 25577c478bd9Sstevel@tonic-gate } 25587c478bd9Sstevel@tonic-gate 25597c478bd9Sstevel@tonic-gate /* 25607c478bd9Sstevel@tonic-gate * Free any mnttab information recorded in the vfs struct. 25617c478bd9Sstevel@tonic-gate * The vfs must not be on the vfs list. 25627c478bd9Sstevel@tonic-gate */ 25637c478bd9Sstevel@tonic-gate static void 25647c478bd9Sstevel@tonic-gate vfs_freemnttab(struct vfs *vfsp) 25657c478bd9Sstevel@tonic-gate { 25667c478bd9Sstevel@tonic-gate ASSERT(!VFS_ON_LIST(vfsp)); 25677c478bd9Sstevel@tonic-gate 25687c478bd9Sstevel@tonic-gate /* 25697c478bd9Sstevel@tonic-gate * Free device and mount point information 25707c478bd9Sstevel@tonic-gate */ 25717c478bd9Sstevel@tonic-gate if (vfsp->vfs_mntpt != NULL) { 25727c478bd9Sstevel@tonic-gate refstr_rele(vfsp->vfs_mntpt); 25737c478bd9Sstevel@tonic-gate vfsp->vfs_mntpt = NULL; 25747c478bd9Sstevel@tonic-gate } 25757c478bd9Sstevel@tonic-gate if (vfsp->vfs_resource != NULL) { 25767c478bd9Sstevel@tonic-gate refstr_rele(vfsp->vfs_resource); 25777c478bd9Sstevel@tonic-gate vfsp->vfs_resource = NULL; 25787c478bd9Sstevel@tonic-gate } 25797c478bd9Sstevel@tonic-gate /* 25807c478bd9Sstevel@tonic-gate * Now free mount options information 25817c478bd9Sstevel@tonic-gate */ 25827c478bd9Sstevel@tonic-gate vfs_freeopttbl(&vfsp->vfs_mntopts); 25837c478bd9Sstevel@tonic-gate } 25847c478bd9Sstevel@tonic-gate 25857c478bd9Sstevel@tonic-gate /* 25867c478bd9Sstevel@tonic-gate * Return the last mnttab modification time 25877c478bd9Sstevel@tonic-gate */ 25887c478bd9Sstevel@tonic-gate void 25897c478bd9Sstevel@tonic-gate vfs_mnttab_modtime(timespec_t *ts) 25907c478bd9Sstevel@tonic-gate { 25917c478bd9Sstevel@tonic-gate ASSERT(RW_LOCK_HELD(&vfslist)); 25927c478bd9Sstevel@tonic-gate *ts = vfs_mnttab_mtime; 25937c478bd9Sstevel@tonic-gate } 25947c478bd9Sstevel@tonic-gate 25957c478bd9Sstevel@tonic-gate /* 25967c478bd9Sstevel@tonic-gate * See if mnttab is changed 25977c478bd9Sstevel@tonic-gate */ 25987c478bd9Sstevel@tonic-gate void 25997c478bd9Sstevel@tonic-gate vfs_mnttab_poll(timespec_t *old, struct pollhead **phpp) 26007c478bd9Sstevel@tonic-gate { 26017c478bd9Sstevel@tonic-gate int changed; 26027c478bd9Sstevel@tonic-gate 26037c478bd9Sstevel@tonic-gate *phpp = (struct pollhead *)NULL; 26047c478bd9Sstevel@tonic-gate 26057c478bd9Sstevel@tonic-gate /* 26067c478bd9Sstevel@tonic-gate * Note: don't grab vfs list lock before accessing vfs_mnttab_mtime. 26077c478bd9Sstevel@tonic-gate * Can lead to deadlock against vfs_mnttab_modtimeupd(). It is safe 26087c478bd9Sstevel@tonic-gate * to not grab the vfs list lock because tv_sec is monotonically 26097c478bd9Sstevel@tonic-gate * increasing. 26107c478bd9Sstevel@tonic-gate */ 26117c478bd9Sstevel@tonic-gate 26127c478bd9Sstevel@tonic-gate changed = (old->tv_nsec != vfs_mnttab_mtime.tv_nsec) || 26137c478bd9Sstevel@tonic-gate (old->tv_sec != vfs_mnttab_mtime.tv_sec); 26147c478bd9Sstevel@tonic-gate if (!changed) { 26157c478bd9Sstevel@tonic-gate *phpp = &vfs_pollhd; 26167c478bd9Sstevel@tonic-gate } 26177c478bd9Sstevel@tonic-gate } 26187c478bd9Sstevel@tonic-gate 26197c478bd9Sstevel@tonic-gate /* 26207c478bd9Sstevel@tonic-gate * Update the mnttab modification time and wake up any waiters for 26217c478bd9Sstevel@tonic-gate * mnttab changes 26227c478bd9Sstevel@tonic-gate */ 26237c478bd9Sstevel@tonic-gate void 26247c478bd9Sstevel@tonic-gate vfs_mnttab_modtimeupd() 26257c478bd9Sstevel@tonic-gate { 26267c478bd9Sstevel@tonic-gate hrtime_t oldhrt, newhrt; 26277c478bd9Sstevel@tonic-gate 26287c478bd9Sstevel@tonic-gate ASSERT(RW_WRITE_HELD(&vfslist)); 26297c478bd9Sstevel@tonic-gate oldhrt = ts2hrt(&vfs_mnttab_mtime); 26307c478bd9Sstevel@tonic-gate gethrestime(&vfs_mnttab_mtime); 26317c478bd9Sstevel@tonic-gate newhrt = ts2hrt(&vfs_mnttab_mtime); 26327c478bd9Sstevel@tonic-gate if (oldhrt == (hrtime_t)0) 26337c478bd9Sstevel@tonic-gate vfs_mnttab_ctime = vfs_mnttab_mtime; 26347c478bd9Sstevel@tonic-gate /* 26357c478bd9Sstevel@tonic-gate * Attempt to provide unique mtime (like uniqtime but not). 26367c478bd9Sstevel@tonic-gate */ 26377c478bd9Sstevel@tonic-gate if (newhrt == oldhrt) { 26387c478bd9Sstevel@tonic-gate newhrt++; 26397c478bd9Sstevel@tonic-gate hrt2ts(newhrt, &vfs_mnttab_mtime); 26407c478bd9Sstevel@tonic-gate } 26417c478bd9Sstevel@tonic-gate pollwakeup(&vfs_pollhd, (short)POLLRDBAND); 26427c478bd9Sstevel@tonic-gate } 26437c478bd9Sstevel@tonic-gate 26447c478bd9Sstevel@tonic-gate int 26457c478bd9Sstevel@tonic-gate dounmount(struct vfs *vfsp, int flag, cred_t *cr) 26467c478bd9Sstevel@tonic-gate { 26477c478bd9Sstevel@tonic-gate vnode_t *coveredvp; 26487c478bd9Sstevel@tonic-gate int error; 26495a59a8b3Srsb extern void teardown_vopstats(vfs_t *); 26507c478bd9Sstevel@tonic-gate 26517c478bd9Sstevel@tonic-gate /* 26527c478bd9Sstevel@tonic-gate * Get covered vnode. This will be NULL if the vfs is not linked 26537c478bd9Sstevel@tonic-gate * into the file system name space (i.e., domount() with MNT_NOSPICE). 26547c478bd9Sstevel@tonic-gate */ 26557c478bd9Sstevel@tonic-gate coveredvp = vfsp->vfs_vnodecovered; 26567c478bd9Sstevel@tonic-gate ASSERT(coveredvp == NULL || vn_vfswlock_held(coveredvp)); 26577c478bd9Sstevel@tonic-gate 26587c478bd9Sstevel@tonic-gate /* 26597c478bd9Sstevel@tonic-gate * Purge all dnlc entries for this vfs. 26607c478bd9Sstevel@tonic-gate */ 26617c478bd9Sstevel@tonic-gate (void) dnlc_purge_vfsp(vfsp, 0); 26627c478bd9Sstevel@tonic-gate 26637c478bd9Sstevel@tonic-gate /* For forcible umount, skip VFS_SYNC() since it may hang */ 26647c478bd9Sstevel@tonic-gate if ((flag & MS_FORCE) == 0) 26657c478bd9Sstevel@tonic-gate (void) VFS_SYNC(vfsp, 0, cr); 26667c478bd9Sstevel@tonic-gate 26677c478bd9Sstevel@tonic-gate /* 26687c478bd9Sstevel@tonic-gate * Lock the vfs to maintain fs status quo during unmount. This 26697c478bd9Sstevel@tonic-gate * has to be done after the sync because ufs_update tries to acquire 26707c478bd9Sstevel@tonic-gate * the vfs_reflock. 26717c478bd9Sstevel@tonic-gate */ 26727c478bd9Sstevel@tonic-gate vfs_lock_wait(vfsp); 26737c478bd9Sstevel@tonic-gate 26747c478bd9Sstevel@tonic-gate if (error = VFS_UNMOUNT(vfsp, flag, cr)) { 26757c478bd9Sstevel@tonic-gate vfs_unlock(vfsp); 26767c478bd9Sstevel@tonic-gate if (coveredvp != NULL) 26777c478bd9Sstevel@tonic-gate vn_vfsunlock(coveredvp); 26787c478bd9Sstevel@tonic-gate } else if (coveredvp != NULL) { 26795a59a8b3Srsb teardown_vopstats(vfsp); 26807c478bd9Sstevel@tonic-gate /* 26817c478bd9Sstevel@tonic-gate * vfs_remove() will do a VN_RELE(vfsp->vfs_vnodecovered) 26827c478bd9Sstevel@tonic-gate * when it frees vfsp so we do a VN_HOLD() so we can 26837c478bd9Sstevel@tonic-gate * continue to use coveredvp afterwards. 26847c478bd9Sstevel@tonic-gate */ 26857c478bd9Sstevel@tonic-gate VN_HOLD(coveredvp); 26867c478bd9Sstevel@tonic-gate vfs_remove(vfsp); 26877c478bd9Sstevel@tonic-gate vn_vfsunlock(coveredvp); 26887c478bd9Sstevel@tonic-gate VN_RELE(coveredvp); 26897c478bd9Sstevel@tonic-gate } else { 26905a59a8b3Srsb teardown_vopstats(vfsp); 26917c478bd9Sstevel@tonic-gate /* 26927c478bd9Sstevel@tonic-gate * Release the reference to vfs that is not linked 26937c478bd9Sstevel@tonic-gate * into the name space. 26947c478bd9Sstevel@tonic-gate */ 26957c478bd9Sstevel@tonic-gate vfs_unlock(vfsp); 26967c478bd9Sstevel@tonic-gate VFS_RELE(vfsp); 26977c478bd9Sstevel@tonic-gate } 26987c478bd9Sstevel@tonic-gate return (error); 26997c478bd9Sstevel@tonic-gate } 27007c478bd9Sstevel@tonic-gate 27017c478bd9Sstevel@tonic-gate 27027c478bd9Sstevel@tonic-gate /* 27037c478bd9Sstevel@tonic-gate * Vfs_unmountall() is called by uadmin() to unmount all 27047c478bd9Sstevel@tonic-gate * mounted file systems (except the root file system) during shutdown. 27057c478bd9Sstevel@tonic-gate * It follows the existing locking protocol when traversing the vfs list 27067c478bd9Sstevel@tonic-gate * to sync and unmount vfses. Even though there should be no 27077c478bd9Sstevel@tonic-gate * other thread running while the system is shutting down, it is prudent 27087c478bd9Sstevel@tonic-gate * to still follow the locking protocol. 27097c478bd9Sstevel@tonic-gate */ 27107c478bd9Sstevel@tonic-gate void 27117c478bd9Sstevel@tonic-gate vfs_unmountall(void) 27127c478bd9Sstevel@tonic-gate { 27137c478bd9Sstevel@tonic-gate struct vfs *vfsp; 27147c478bd9Sstevel@tonic-gate struct vfs *prev_vfsp = NULL; 27157c478bd9Sstevel@tonic-gate int error; 27167c478bd9Sstevel@tonic-gate 27177c478bd9Sstevel@tonic-gate /* 27187c478bd9Sstevel@tonic-gate * Toss all dnlc entries now so that the per-vfs sync 27197c478bd9Sstevel@tonic-gate * and unmount operations don't have to slog through 27207c478bd9Sstevel@tonic-gate * a bunch of uninteresting vnodes over and over again. 27217c478bd9Sstevel@tonic-gate */ 27227c478bd9Sstevel@tonic-gate dnlc_purge(); 27237c478bd9Sstevel@tonic-gate 27247c478bd9Sstevel@tonic-gate vfs_list_lock(); 27257c478bd9Sstevel@tonic-gate for (vfsp = rootvfs->vfs_prev; vfsp != rootvfs; vfsp = prev_vfsp) { 27267c478bd9Sstevel@tonic-gate prev_vfsp = vfsp->vfs_prev; 27277c478bd9Sstevel@tonic-gate 27287c478bd9Sstevel@tonic-gate if (vfs_lock(vfsp) != 0) 27297c478bd9Sstevel@tonic-gate continue; 27307c478bd9Sstevel@tonic-gate error = vn_vfswlock(vfsp->vfs_vnodecovered); 27317c478bd9Sstevel@tonic-gate vfs_unlock(vfsp); 27327c478bd9Sstevel@tonic-gate if (error) 27337c478bd9Sstevel@tonic-gate continue; 27347c478bd9Sstevel@tonic-gate 27357c478bd9Sstevel@tonic-gate vfs_list_unlock(); 27367c478bd9Sstevel@tonic-gate 27377c478bd9Sstevel@tonic-gate (void) VFS_SYNC(vfsp, SYNC_CLOSE, CRED()); 27387c478bd9Sstevel@tonic-gate (void) dounmount(vfsp, 0, CRED()); 27397c478bd9Sstevel@tonic-gate 27407c478bd9Sstevel@tonic-gate /* 27417c478bd9Sstevel@tonic-gate * Since we dropped the vfslist lock above we must 27427c478bd9Sstevel@tonic-gate * verify that next_vfsp still exists, else start over. 27437c478bd9Sstevel@tonic-gate */ 27447c478bd9Sstevel@tonic-gate vfs_list_lock(); 27457c478bd9Sstevel@tonic-gate for (vfsp = rootvfs->vfs_prev; 27467c478bd9Sstevel@tonic-gate vfsp != rootvfs; vfsp = vfsp->vfs_prev) 27477c478bd9Sstevel@tonic-gate if (vfsp == prev_vfsp) 27487c478bd9Sstevel@tonic-gate break; 27497c478bd9Sstevel@tonic-gate if (vfsp == rootvfs && prev_vfsp != rootvfs) 27507c478bd9Sstevel@tonic-gate prev_vfsp = rootvfs->vfs_prev; 27517c478bd9Sstevel@tonic-gate } 27527c478bd9Sstevel@tonic-gate vfs_list_unlock(); 27537c478bd9Sstevel@tonic-gate } 27547c478bd9Sstevel@tonic-gate 27557c478bd9Sstevel@tonic-gate /* 27567c478bd9Sstevel@tonic-gate * Called to add an entry to the end of the vfs mount in progress list 27577c478bd9Sstevel@tonic-gate */ 27587c478bd9Sstevel@tonic-gate void 27597c478bd9Sstevel@tonic-gate vfs_addmip(dev_t dev, struct vfs *vfsp) 27607c478bd9Sstevel@tonic-gate { 27617c478bd9Sstevel@tonic-gate struct ipmnt *mipp; 27627c478bd9Sstevel@tonic-gate 27637c478bd9Sstevel@tonic-gate mipp = (struct ipmnt *)kmem_alloc(sizeof (struct ipmnt), KM_SLEEP); 27647c478bd9Sstevel@tonic-gate mipp->mip_next = NULL; 27657c478bd9Sstevel@tonic-gate mipp->mip_dev = dev; 27667c478bd9Sstevel@tonic-gate mipp->mip_vfsp = vfsp; 27677c478bd9Sstevel@tonic-gate mutex_enter(&vfs_miplist_mutex); 27687c478bd9Sstevel@tonic-gate if (vfs_miplist_end != NULL) 27697c478bd9Sstevel@tonic-gate vfs_miplist_end->mip_next = mipp; 27707c478bd9Sstevel@tonic-gate else 27717c478bd9Sstevel@tonic-gate vfs_miplist = mipp; 27727c478bd9Sstevel@tonic-gate vfs_miplist_end = mipp; 27737c478bd9Sstevel@tonic-gate mutex_exit(&vfs_miplist_mutex); 27747c478bd9Sstevel@tonic-gate } 27757c478bd9Sstevel@tonic-gate 27767c478bd9Sstevel@tonic-gate /* 27777c478bd9Sstevel@tonic-gate * Called to remove an entry from the mount in progress list 27787c478bd9Sstevel@tonic-gate * Either because the mount completed or it failed. 27797c478bd9Sstevel@tonic-gate */ 27807c478bd9Sstevel@tonic-gate void 27817c478bd9Sstevel@tonic-gate vfs_delmip(struct vfs *vfsp) 27827c478bd9Sstevel@tonic-gate { 27837c478bd9Sstevel@tonic-gate struct ipmnt *mipp, *mipprev; 27847c478bd9Sstevel@tonic-gate 27857c478bd9Sstevel@tonic-gate mutex_enter(&vfs_miplist_mutex); 27867c478bd9Sstevel@tonic-gate mipprev = NULL; 27877c478bd9Sstevel@tonic-gate for (mipp = vfs_miplist; 27887c478bd9Sstevel@tonic-gate mipp && mipp->mip_vfsp != vfsp; mipp = mipp->mip_next) { 27897c478bd9Sstevel@tonic-gate mipprev = mipp; 27907c478bd9Sstevel@tonic-gate } 27917c478bd9Sstevel@tonic-gate if (mipp == NULL) 27927c478bd9Sstevel@tonic-gate return; /* shouldn't happen */ 27937c478bd9Sstevel@tonic-gate if (mipp == vfs_miplist_end) 27947c478bd9Sstevel@tonic-gate vfs_miplist_end = mipprev; 27957c478bd9Sstevel@tonic-gate if (mipprev == NULL) 27967c478bd9Sstevel@tonic-gate vfs_miplist = mipp->mip_next; 27977c478bd9Sstevel@tonic-gate else 27987c478bd9Sstevel@tonic-gate mipprev->mip_next = mipp->mip_next; 27997c478bd9Sstevel@tonic-gate mutex_exit(&vfs_miplist_mutex); 28007c478bd9Sstevel@tonic-gate kmem_free(mipp, sizeof (struct ipmnt)); 28017c478bd9Sstevel@tonic-gate } 28027c478bd9Sstevel@tonic-gate 28037c478bd9Sstevel@tonic-gate /* 28047c478bd9Sstevel@tonic-gate * vfs_add is called by a specific filesystem's mount routine to add 28057c478bd9Sstevel@tonic-gate * the new vfs into the vfs list/hash and to cover the mounted-on vnode. 28067c478bd9Sstevel@tonic-gate * The vfs should already have been locked by the caller. 28077c478bd9Sstevel@tonic-gate * 28087c478bd9Sstevel@tonic-gate * coveredvp is NULL if this is the root. 28097c478bd9Sstevel@tonic-gate */ 28107c478bd9Sstevel@tonic-gate void 28117c478bd9Sstevel@tonic-gate vfs_add(vnode_t *coveredvp, struct vfs *vfsp, int mflag) 28127c478bd9Sstevel@tonic-gate { 28137c478bd9Sstevel@tonic-gate int newflag; 28147c478bd9Sstevel@tonic-gate 28157c478bd9Sstevel@tonic-gate ASSERT(vfs_lock_held(vfsp)); 28167c478bd9Sstevel@tonic-gate VFS_HOLD(vfsp); 28177c478bd9Sstevel@tonic-gate newflag = vfsp->vfs_flag; 28187c478bd9Sstevel@tonic-gate if (mflag & MS_RDONLY) 28197c478bd9Sstevel@tonic-gate newflag |= VFS_RDONLY; 28207c478bd9Sstevel@tonic-gate else 28217c478bd9Sstevel@tonic-gate newflag &= ~VFS_RDONLY; 28227c478bd9Sstevel@tonic-gate if (mflag & MS_NOSUID) 28237c478bd9Sstevel@tonic-gate newflag |= (VFS_NOSETUID|VFS_NODEVICES); 28247c478bd9Sstevel@tonic-gate else 28257c478bd9Sstevel@tonic-gate newflag &= ~(VFS_NOSETUID|VFS_NODEVICES); 28267c478bd9Sstevel@tonic-gate if (mflag & MS_NOMNTTAB) 28277c478bd9Sstevel@tonic-gate newflag |= VFS_NOMNTTAB; 28287c478bd9Sstevel@tonic-gate else 28297c478bd9Sstevel@tonic-gate newflag &= ~VFS_NOMNTTAB; 28307c478bd9Sstevel@tonic-gate 28317c478bd9Sstevel@tonic-gate if (coveredvp != NULL) { 28327c478bd9Sstevel@tonic-gate ASSERT(vn_vfswlock_held(coveredvp)); 28337c478bd9Sstevel@tonic-gate coveredvp->v_vfsmountedhere = vfsp; 28347c478bd9Sstevel@tonic-gate VN_HOLD(coveredvp); 28357c478bd9Sstevel@tonic-gate } 28367c478bd9Sstevel@tonic-gate vfsp->vfs_vnodecovered = coveredvp; 28377c478bd9Sstevel@tonic-gate vfsp->vfs_flag = newflag; 28387c478bd9Sstevel@tonic-gate 28397c478bd9Sstevel@tonic-gate vfs_list_add(vfsp); 28407c478bd9Sstevel@tonic-gate } 28417c478bd9Sstevel@tonic-gate 28427c478bd9Sstevel@tonic-gate /* 28437c478bd9Sstevel@tonic-gate * Remove a vfs from the vfs list, null out the pointer from the 28447c478bd9Sstevel@tonic-gate * covered vnode to the vfs (v_vfsmountedhere), and null out the pointer 28457c478bd9Sstevel@tonic-gate * from the vfs to the covered vnode (vfs_vnodecovered). Release the 28467c478bd9Sstevel@tonic-gate * reference to the vfs and to the covered vnode. 28477c478bd9Sstevel@tonic-gate * 28487c478bd9Sstevel@tonic-gate * Called from dounmount after it's confirmed with the file system 28497c478bd9Sstevel@tonic-gate * that the unmount is legal. 28507c478bd9Sstevel@tonic-gate */ 28517c478bd9Sstevel@tonic-gate void 28527c478bd9Sstevel@tonic-gate vfs_remove(struct vfs *vfsp) 28537c478bd9Sstevel@tonic-gate { 28547c478bd9Sstevel@tonic-gate vnode_t *vp; 28557c478bd9Sstevel@tonic-gate 28567c478bd9Sstevel@tonic-gate ASSERT(vfs_lock_held(vfsp)); 28577c478bd9Sstevel@tonic-gate 28587c478bd9Sstevel@tonic-gate /* 28597c478bd9Sstevel@tonic-gate * Can't unmount root. Should never happen because fs will 28607c478bd9Sstevel@tonic-gate * be busy. 28617c478bd9Sstevel@tonic-gate */ 28627c478bd9Sstevel@tonic-gate if (vfsp == rootvfs) 28637c478bd9Sstevel@tonic-gate cmn_err(CE_PANIC, "vfs_remove: unmounting root"); 28647c478bd9Sstevel@tonic-gate 28657c478bd9Sstevel@tonic-gate vfs_list_remove(vfsp); 28667c478bd9Sstevel@tonic-gate 28677c478bd9Sstevel@tonic-gate /* 28687c478bd9Sstevel@tonic-gate * Unhook from the file system name space. 28697c478bd9Sstevel@tonic-gate */ 28707c478bd9Sstevel@tonic-gate vp = vfsp->vfs_vnodecovered; 28717c478bd9Sstevel@tonic-gate ASSERT(vn_vfswlock_held(vp)); 28727c478bd9Sstevel@tonic-gate vp->v_vfsmountedhere = NULL; 28737c478bd9Sstevel@tonic-gate vfsp->vfs_vnodecovered = NULL; 28747c478bd9Sstevel@tonic-gate VN_RELE(vp); 28757c478bd9Sstevel@tonic-gate 28767c478bd9Sstevel@tonic-gate /* 28777c478bd9Sstevel@tonic-gate * Release lock and wakeup anybody waiting. 28787c478bd9Sstevel@tonic-gate */ 28797c478bd9Sstevel@tonic-gate vfs_unlock(vfsp); 28807c478bd9Sstevel@tonic-gate VFS_RELE(vfsp); 28817c478bd9Sstevel@tonic-gate } 28827c478bd9Sstevel@tonic-gate 28837c478bd9Sstevel@tonic-gate /* 28847c478bd9Sstevel@tonic-gate * Lock a filesystem to prevent access to it while mounting, 28857c478bd9Sstevel@tonic-gate * unmounting and syncing. Return EBUSY immediately if lock 28867c478bd9Sstevel@tonic-gate * can't be acquired. 28877c478bd9Sstevel@tonic-gate */ 28887c478bd9Sstevel@tonic-gate int 28897c478bd9Sstevel@tonic-gate vfs_lock(vfs_t *vfsp) 28907c478bd9Sstevel@tonic-gate { 28917c478bd9Sstevel@tonic-gate vn_vfslocks_entry_t *vpvfsentry; 28927c478bd9Sstevel@tonic-gate 28937c478bd9Sstevel@tonic-gate vpvfsentry = vn_vfslocks_getlock(vfsp); 28947c478bd9Sstevel@tonic-gate if (rwst_tryenter(&vpvfsentry->ve_lock, RW_WRITER)) 28957c478bd9Sstevel@tonic-gate return (0); 28967c478bd9Sstevel@tonic-gate 28977c478bd9Sstevel@tonic-gate vn_vfslocks_rele(vpvfsentry); 28987c478bd9Sstevel@tonic-gate return (EBUSY); 28997c478bd9Sstevel@tonic-gate } 29007c478bd9Sstevel@tonic-gate 29017c478bd9Sstevel@tonic-gate int 29027c478bd9Sstevel@tonic-gate vfs_rlock(vfs_t *vfsp) 29037c478bd9Sstevel@tonic-gate { 29047c478bd9Sstevel@tonic-gate vn_vfslocks_entry_t *vpvfsentry; 29057c478bd9Sstevel@tonic-gate 29067c478bd9Sstevel@tonic-gate vpvfsentry = vn_vfslocks_getlock(vfsp); 29077c478bd9Sstevel@tonic-gate 29087c478bd9Sstevel@tonic-gate if (rwst_tryenter(&vpvfsentry->ve_lock, RW_READER)) 29097c478bd9Sstevel@tonic-gate return (0); 29107c478bd9Sstevel@tonic-gate 29117c478bd9Sstevel@tonic-gate vn_vfslocks_rele(vpvfsentry); 29127c478bd9Sstevel@tonic-gate return (EBUSY); 29137c478bd9Sstevel@tonic-gate } 29147c478bd9Sstevel@tonic-gate 29157c478bd9Sstevel@tonic-gate void 29167c478bd9Sstevel@tonic-gate vfs_lock_wait(vfs_t *vfsp) 29177c478bd9Sstevel@tonic-gate { 29187c478bd9Sstevel@tonic-gate vn_vfslocks_entry_t *vpvfsentry; 29197c478bd9Sstevel@tonic-gate 29207c478bd9Sstevel@tonic-gate vpvfsentry = vn_vfslocks_getlock(vfsp); 29217c478bd9Sstevel@tonic-gate rwst_enter(&vpvfsentry->ve_lock, RW_WRITER); 29227c478bd9Sstevel@tonic-gate } 29237c478bd9Sstevel@tonic-gate 29247c478bd9Sstevel@tonic-gate void 29257c478bd9Sstevel@tonic-gate vfs_rlock_wait(vfs_t *vfsp) 29267c478bd9Sstevel@tonic-gate { 29277c478bd9Sstevel@tonic-gate vn_vfslocks_entry_t *vpvfsentry; 29287c478bd9Sstevel@tonic-gate 29297c478bd9Sstevel@tonic-gate vpvfsentry = vn_vfslocks_getlock(vfsp); 29307c478bd9Sstevel@tonic-gate rwst_enter(&vpvfsentry->ve_lock, RW_READER); 29317c478bd9Sstevel@tonic-gate } 29327c478bd9Sstevel@tonic-gate 29337c478bd9Sstevel@tonic-gate /* 29347c478bd9Sstevel@tonic-gate * Unlock a locked filesystem. 29357c478bd9Sstevel@tonic-gate */ 29367c478bd9Sstevel@tonic-gate void 29377c478bd9Sstevel@tonic-gate vfs_unlock(vfs_t *vfsp) 29387c478bd9Sstevel@tonic-gate { 29397c478bd9Sstevel@tonic-gate vn_vfslocks_entry_t *vpvfsentry; 29407c478bd9Sstevel@tonic-gate 29417c478bd9Sstevel@tonic-gate /* 29427c478bd9Sstevel@tonic-gate * vfs_unlock will mimic sema_v behaviour to fix 4748018. 29437c478bd9Sstevel@tonic-gate * And these changes should remain for the patch changes as it is. 29447c478bd9Sstevel@tonic-gate */ 29457c478bd9Sstevel@tonic-gate if (panicstr) 29467c478bd9Sstevel@tonic-gate return; 29477c478bd9Sstevel@tonic-gate 29487c478bd9Sstevel@tonic-gate /* 29497c478bd9Sstevel@tonic-gate * ve_refcount needs to be dropped twice here. 29507c478bd9Sstevel@tonic-gate * 1. To release refernce after a call to vfs_locks_getlock() 29517c478bd9Sstevel@tonic-gate * 2. To release the reference from the locking routines like 29527c478bd9Sstevel@tonic-gate * vfs_rlock_wait/vfs_wlock_wait/vfs_wlock etc,. 29537c478bd9Sstevel@tonic-gate */ 29547c478bd9Sstevel@tonic-gate 29557c478bd9Sstevel@tonic-gate vpvfsentry = vn_vfslocks_getlock(vfsp); 29567c478bd9Sstevel@tonic-gate vn_vfslocks_rele(vpvfsentry); 29577c478bd9Sstevel@tonic-gate 29587c478bd9Sstevel@tonic-gate rwst_exit(&vpvfsentry->ve_lock); 29597c478bd9Sstevel@tonic-gate vn_vfslocks_rele(vpvfsentry); 29607c478bd9Sstevel@tonic-gate } 29617c478bd9Sstevel@tonic-gate 29627c478bd9Sstevel@tonic-gate /* 29637c478bd9Sstevel@tonic-gate * Utility routine that allows a filesystem to construct its 29647c478bd9Sstevel@tonic-gate * fsid in "the usual way" - by munging some underlying dev_t and 29657c478bd9Sstevel@tonic-gate * the filesystem type number into the 64-bit fsid. Note that 29667c478bd9Sstevel@tonic-gate * this implicitly relies on dev_t persistence to make filesystem 29677c478bd9Sstevel@tonic-gate * id's persistent. 29687c478bd9Sstevel@tonic-gate * 29697c478bd9Sstevel@tonic-gate * There's nothing to prevent an individual fs from constructing its 29707c478bd9Sstevel@tonic-gate * fsid in a different way, and indeed they should. 29717c478bd9Sstevel@tonic-gate * 29727c478bd9Sstevel@tonic-gate * Since we want fsids to be 32-bit quantities (so that they can be 29737c478bd9Sstevel@tonic-gate * exported identically by either 32-bit or 64-bit APIs, as well as 29747c478bd9Sstevel@tonic-gate * the fact that fsid's are "known" to NFS), we compress the device 29757c478bd9Sstevel@tonic-gate * number given down to 32-bits, and panic if that isn't possible. 29767c478bd9Sstevel@tonic-gate */ 29777c478bd9Sstevel@tonic-gate void 29787c478bd9Sstevel@tonic-gate vfs_make_fsid(fsid_t *fsi, dev_t dev, int val) 29797c478bd9Sstevel@tonic-gate { 29807c478bd9Sstevel@tonic-gate if (!cmpldev((dev32_t *)&fsi->val[0], dev)) 29817c478bd9Sstevel@tonic-gate panic("device number too big for fsid!"); 29827c478bd9Sstevel@tonic-gate fsi->val[1] = val; 29837c478bd9Sstevel@tonic-gate } 29847c478bd9Sstevel@tonic-gate 29857c478bd9Sstevel@tonic-gate int 29867c478bd9Sstevel@tonic-gate vfs_lock_held(vfs_t *vfsp) 29877c478bd9Sstevel@tonic-gate { 29887c478bd9Sstevel@tonic-gate int held; 29897c478bd9Sstevel@tonic-gate vn_vfslocks_entry_t *vpvfsentry; 29907c478bd9Sstevel@tonic-gate 29917c478bd9Sstevel@tonic-gate /* 29927c478bd9Sstevel@tonic-gate * vfs_lock_held will mimic sema_held behaviour 29937c478bd9Sstevel@tonic-gate * if panicstr is set. And these changes should remain 29947c478bd9Sstevel@tonic-gate * for the patch changes as it is. 29957c478bd9Sstevel@tonic-gate */ 29967c478bd9Sstevel@tonic-gate if (panicstr) 29977c478bd9Sstevel@tonic-gate return (1); 29987c478bd9Sstevel@tonic-gate 29997c478bd9Sstevel@tonic-gate vpvfsentry = vn_vfslocks_getlock(vfsp); 30007c478bd9Sstevel@tonic-gate held = rwst_lock_held(&vpvfsentry->ve_lock, RW_WRITER); 30017c478bd9Sstevel@tonic-gate 30027c478bd9Sstevel@tonic-gate vn_vfslocks_rele(vpvfsentry); 30037c478bd9Sstevel@tonic-gate return (held); 30047c478bd9Sstevel@tonic-gate } 30057c478bd9Sstevel@tonic-gate 30067c478bd9Sstevel@tonic-gate struct _kthread * 30077c478bd9Sstevel@tonic-gate vfs_lock_owner(vfs_t *vfsp) 30087c478bd9Sstevel@tonic-gate { 30097c478bd9Sstevel@tonic-gate struct _kthread *owner; 30107c478bd9Sstevel@tonic-gate vn_vfslocks_entry_t *vpvfsentry; 30117c478bd9Sstevel@tonic-gate 30127c478bd9Sstevel@tonic-gate /* 30137c478bd9Sstevel@tonic-gate * vfs_wlock_held will mimic sema_held behaviour 30147c478bd9Sstevel@tonic-gate * if panicstr is set. And these changes should remain 30157c478bd9Sstevel@tonic-gate * for the patch changes as it is. 30167c478bd9Sstevel@tonic-gate */ 30177c478bd9Sstevel@tonic-gate if (panicstr) 30187c478bd9Sstevel@tonic-gate return (NULL); 30197c478bd9Sstevel@tonic-gate 30207c478bd9Sstevel@tonic-gate vpvfsentry = vn_vfslocks_getlock(vfsp); 30217c478bd9Sstevel@tonic-gate owner = rwst_owner(&vpvfsentry->ve_lock); 30227c478bd9Sstevel@tonic-gate 30237c478bd9Sstevel@tonic-gate vn_vfslocks_rele(vpvfsentry); 30247c478bd9Sstevel@tonic-gate return (owner); 30257c478bd9Sstevel@tonic-gate } 30267c478bd9Sstevel@tonic-gate 30277c478bd9Sstevel@tonic-gate /* 30287c478bd9Sstevel@tonic-gate * vfs list locking. 30297c478bd9Sstevel@tonic-gate * 30307c478bd9Sstevel@tonic-gate * Rather than manipulate the vfslist lock directly, we abstract into lock 30317c478bd9Sstevel@tonic-gate * and unlock routines to allow the locking implementation to be changed for 30327c478bd9Sstevel@tonic-gate * clustering. 30337c478bd9Sstevel@tonic-gate * 30347c478bd9Sstevel@tonic-gate * Whenever the vfs list is modified through its hash links, the overall list 30357c478bd9Sstevel@tonic-gate * lock must be obtained before locking the relevant hash bucket. But to see 30367c478bd9Sstevel@tonic-gate * whether a given vfs is on the list, it suffices to obtain the lock for the 30377c478bd9Sstevel@tonic-gate * hash bucket without getting the overall list lock. (See getvfs() below.) 30387c478bd9Sstevel@tonic-gate */ 30397c478bd9Sstevel@tonic-gate 30407c478bd9Sstevel@tonic-gate void 30417c478bd9Sstevel@tonic-gate vfs_list_lock() 30427c478bd9Sstevel@tonic-gate { 30437c478bd9Sstevel@tonic-gate rw_enter(&vfslist, RW_WRITER); 30447c478bd9Sstevel@tonic-gate } 30457c478bd9Sstevel@tonic-gate 30467c478bd9Sstevel@tonic-gate void 30477c478bd9Sstevel@tonic-gate vfs_list_read_lock() 30487c478bd9Sstevel@tonic-gate { 30497c478bd9Sstevel@tonic-gate rw_enter(&vfslist, RW_READER); 30507c478bd9Sstevel@tonic-gate } 30517c478bd9Sstevel@tonic-gate 30527c478bd9Sstevel@tonic-gate void 30537c478bd9Sstevel@tonic-gate vfs_list_unlock() 30547c478bd9Sstevel@tonic-gate { 30557c478bd9Sstevel@tonic-gate rw_exit(&vfslist); 30567c478bd9Sstevel@tonic-gate } 30577c478bd9Sstevel@tonic-gate 30587c478bd9Sstevel@tonic-gate /* 30597c478bd9Sstevel@tonic-gate * Low level worker routines for adding entries to and removing entries from 30607c478bd9Sstevel@tonic-gate * the vfs list. 30617c478bd9Sstevel@tonic-gate */ 30627c478bd9Sstevel@tonic-gate 30637c478bd9Sstevel@tonic-gate static void 30647c478bd9Sstevel@tonic-gate vfs_hash_add(struct vfs *vfsp, int insert_at_head) 30657c478bd9Sstevel@tonic-gate { 30667c478bd9Sstevel@tonic-gate int vhno; 30677c478bd9Sstevel@tonic-gate struct vfs **hp; 30687c478bd9Sstevel@tonic-gate dev_t dev; 30697c478bd9Sstevel@tonic-gate 30707c478bd9Sstevel@tonic-gate ASSERT(RW_WRITE_HELD(&vfslist)); 30717c478bd9Sstevel@tonic-gate 30727c478bd9Sstevel@tonic-gate dev = expldev(vfsp->vfs_fsid.val[0]); 30737c478bd9Sstevel@tonic-gate vhno = VFSHASH(getmajor(dev), getminor(dev)); 30747c478bd9Sstevel@tonic-gate 30757c478bd9Sstevel@tonic-gate mutex_enter(&rvfs_list[vhno].rvfs_lock); 30767c478bd9Sstevel@tonic-gate 30777c478bd9Sstevel@tonic-gate /* 30787c478bd9Sstevel@tonic-gate * Link into the hash table, inserting it at the end, so that LOFS 30797c478bd9Sstevel@tonic-gate * with the same fsid as UFS (or other) file systems will not hide the 30807c478bd9Sstevel@tonic-gate * UFS. 30817c478bd9Sstevel@tonic-gate */ 30827c478bd9Sstevel@tonic-gate if (insert_at_head) { 30837c478bd9Sstevel@tonic-gate vfsp->vfs_hash = rvfs_list[vhno].rvfs_head; 30847c478bd9Sstevel@tonic-gate rvfs_list[vhno].rvfs_head = vfsp; 30857c478bd9Sstevel@tonic-gate } else { 30867c478bd9Sstevel@tonic-gate for (hp = &rvfs_list[vhno].rvfs_head; *hp != NULL; 30877c478bd9Sstevel@tonic-gate hp = &(*hp)->vfs_hash) 30887c478bd9Sstevel@tonic-gate continue; 30897c478bd9Sstevel@tonic-gate /* 30907c478bd9Sstevel@tonic-gate * hp now contains the address of the pointer to update 30917c478bd9Sstevel@tonic-gate * to effect the insertion. 30927c478bd9Sstevel@tonic-gate */ 30937c478bd9Sstevel@tonic-gate vfsp->vfs_hash = NULL; 30947c478bd9Sstevel@tonic-gate *hp = vfsp; 30957c478bd9Sstevel@tonic-gate } 30967c478bd9Sstevel@tonic-gate 30977c478bd9Sstevel@tonic-gate rvfs_list[vhno].rvfs_len++; 30987c478bd9Sstevel@tonic-gate mutex_exit(&rvfs_list[vhno].rvfs_lock); 30997c478bd9Sstevel@tonic-gate } 31007c478bd9Sstevel@tonic-gate 31017c478bd9Sstevel@tonic-gate 31027c478bd9Sstevel@tonic-gate static void 31037c478bd9Sstevel@tonic-gate vfs_hash_remove(struct vfs *vfsp) 31047c478bd9Sstevel@tonic-gate { 31057c478bd9Sstevel@tonic-gate int vhno; 31067c478bd9Sstevel@tonic-gate struct vfs *tvfsp; 31077c478bd9Sstevel@tonic-gate dev_t dev; 31087c478bd9Sstevel@tonic-gate 31097c478bd9Sstevel@tonic-gate ASSERT(RW_WRITE_HELD(&vfslist)); 31107c478bd9Sstevel@tonic-gate 31117c478bd9Sstevel@tonic-gate dev = expldev(vfsp->vfs_fsid.val[0]); 31127c478bd9Sstevel@tonic-gate vhno = VFSHASH(getmajor(dev), getminor(dev)); 31137c478bd9Sstevel@tonic-gate 31147c478bd9Sstevel@tonic-gate mutex_enter(&rvfs_list[vhno].rvfs_lock); 31157c478bd9Sstevel@tonic-gate 31167c478bd9Sstevel@tonic-gate /* 31177c478bd9Sstevel@tonic-gate * Remove from hash. 31187c478bd9Sstevel@tonic-gate */ 31197c478bd9Sstevel@tonic-gate if (rvfs_list[vhno].rvfs_head == vfsp) { 31207c478bd9Sstevel@tonic-gate rvfs_list[vhno].rvfs_head = vfsp->vfs_hash; 31217c478bd9Sstevel@tonic-gate rvfs_list[vhno].rvfs_len--; 31227c478bd9Sstevel@tonic-gate goto foundit; 31237c478bd9Sstevel@tonic-gate } 31247c478bd9Sstevel@tonic-gate for (tvfsp = rvfs_list[vhno].rvfs_head; tvfsp != NULL; 31257c478bd9Sstevel@tonic-gate tvfsp = tvfsp->vfs_hash) { 31267c478bd9Sstevel@tonic-gate if (tvfsp->vfs_hash == vfsp) { 31277c478bd9Sstevel@tonic-gate tvfsp->vfs_hash = vfsp->vfs_hash; 31287c478bd9Sstevel@tonic-gate rvfs_list[vhno].rvfs_len--; 31297c478bd9Sstevel@tonic-gate goto foundit; 31307c478bd9Sstevel@tonic-gate } 31317c478bd9Sstevel@tonic-gate } 31327c478bd9Sstevel@tonic-gate cmn_err(CE_WARN, "vfs_list_remove: vfs not found in hash"); 31337c478bd9Sstevel@tonic-gate 31347c478bd9Sstevel@tonic-gate foundit: 31357c478bd9Sstevel@tonic-gate 31367c478bd9Sstevel@tonic-gate mutex_exit(&rvfs_list[vhno].rvfs_lock); 31377c478bd9Sstevel@tonic-gate } 31387c478bd9Sstevel@tonic-gate 31397c478bd9Sstevel@tonic-gate 31407c478bd9Sstevel@tonic-gate void 31417c478bd9Sstevel@tonic-gate vfs_list_add(struct vfs *vfsp) 31427c478bd9Sstevel@tonic-gate { 31437c478bd9Sstevel@tonic-gate zone_t *zone; 31447c478bd9Sstevel@tonic-gate 31457c478bd9Sstevel@tonic-gate /* 31467c478bd9Sstevel@tonic-gate * The zone that owns the mount is the one that performed the mount. 31477c478bd9Sstevel@tonic-gate * Note that this isn't necessarily the same as the zone mounted into. 31487c478bd9Sstevel@tonic-gate * The corresponding zone_rele() will be done when the vfs_t is 31497c478bd9Sstevel@tonic-gate * being free'd. 31507c478bd9Sstevel@tonic-gate */ 31517c478bd9Sstevel@tonic-gate vfsp->vfs_zone = curproc->p_zone; 31527c478bd9Sstevel@tonic-gate zone_hold(vfsp->vfs_zone); 31537c478bd9Sstevel@tonic-gate 31547c478bd9Sstevel@tonic-gate /* 31557c478bd9Sstevel@tonic-gate * Find the zone mounted into, and put this mount on its vfs list. 31567c478bd9Sstevel@tonic-gate */ 31577c478bd9Sstevel@tonic-gate zone = zone_find_by_path(refstr_value(vfsp->vfs_mntpt)); 31587c478bd9Sstevel@tonic-gate ASSERT(zone != NULL); 31597c478bd9Sstevel@tonic-gate /* 31607c478bd9Sstevel@tonic-gate * Special casing for the root vfs. This structure is allocated 31617c478bd9Sstevel@tonic-gate * statically and hooked onto rootvfs at link time. During the 31627c478bd9Sstevel@tonic-gate * vfs_mountroot call at system startup time, the root file system's 31637c478bd9Sstevel@tonic-gate * VFS_MOUNTROOT routine will call vfs_add with this root vfs struct 31647c478bd9Sstevel@tonic-gate * as argument. The code below must detect and handle this special 31657c478bd9Sstevel@tonic-gate * case. The only apparent justification for this special casing is 31667c478bd9Sstevel@tonic-gate * to ensure that the root file system appears at the head of the 31677c478bd9Sstevel@tonic-gate * list. 31687c478bd9Sstevel@tonic-gate * 31697c478bd9Sstevel@tonic-gate * XXX: I'm assuming that it's ok to do normal list locking when 31707c478bd9Sstevel@tonic-gate * adding the entry for the root file system (this used to be 31717c478bd9Sstevel@tonic-gate * done with no locks held). 31727c478bd9Sstevel@tonic-gate */ 31737c478bd9Sstevel@tonic-gate vfs_list_lock(); 31747c478bd9Sstevel@tonic-gate /* 31757c478bd9Sstevel@tonic-gate * Link into the vfs list proper. 31767c478bd9Sstevel@tonic-gate */ 31777c478bd9Sstevel@tonic-gate if (vfsp == &root) { 31787c478bd9Sstevel@tonic-gate /* 31797c478bd9Sstevel@tonic-gate * Assert: This vfs is already on the list as its first entry. 31807c478bd9Sstevel@tonic-gate * Thus, there's nothing to do. 31817c478bd9Sstevel@tonic-gate */ 31827c478bd9Sstevel@tonic-gate ASSERT(rootvfs == vfsp); 31837c478bd9Sstevel@tonic-gate /* 31847c478bd9Sstevel@tonic-gate * Add it to the head of the global zone's vfslist. 31857c478bd9Sstevel@tonic-gate */ 31867c478bd9Sstevel@tonic-gate ASSERT(zone == global_zone); 31877c478bd9Sstevel@tonic-gate ASSERT(zone->zone_vfslist == NULL); 31887c478bd9Sstevel@tonic-gate zone->zone_vfslist = vfsp; 31897c478bd9Sstevel@tonic-gate } else { 31907c478bd9Sstevel@tonic-gate /* 31917c478bd9Sstevel@tonic-gate * Link to end of list using vfs_prev (as rootvfs is now a 31927c478bd9Sstevel@tonic-gate * doubly linked circular list) so list is in mount order for 31937c478bd9Sstevel@tonic-gate * mnttab use. 31947c478bd9Sstevel@tonic-gate */ 31957c478bd9Sstevel@tonic-gate rootvfs->vfs_prev->vfs_next = vfsp; 31967c478bd9Sstevel@tonic-gate vfsp->vfs_prev = rootvfs->vfs_prev; 31977c478bd9Sstevel@tonic-gate rootvfs->vfs_prev = vfsp; 31987c478bd9Sstevel@tonic-gate vfsp->vfs_next = rootvfs; 31997c478bd9Sstevel@tonic-gate 32007c478bd9Sstevel@tonic-gate /* 32017c478bd9Sstevel@tonic-gate * Do it again for the zone-private list (which may be NULL). 32027c478bd9Sstevel@tonic-gate */ 32037c478bd9Sstevel@tonic-gate if (zone->zone_vfslist == NULL) { 32047c478bd9Sstevel@tonic-gate ASSERT(zone != global_zone); 32057c478bd9Sstevel@tonic-gate zone->zone_vfslist = vfsp; 32067c478bd9Sstevel@tonic-gate } else { 32077c478bd9Sstevel@tonic-gate zone->zone_vfslist->vfs_zone_prev->vfs_zone_next = vfsp; 32087c478bd9Sstevel@tonic-gate vfsp->vfs_zone_prev = zone->zone_vfslist->vfs_zone_prev; 32097c478bd9Sstevel@tonic-gate zone->zone_vfslist->vfs_zone_prev = vfsp; 32107c478bd9Sstevel@tonic-gate vfsp->vfs_zone_next = zone->zone_vfslist; 32117c478bd9Sstevel@tonic-gate } 32127c478bd9Sstevel@tonic-gate } 32137c478bd9Sstevel@tonic-gate 32147c478bd9Sstevel@tonic-gate /* 32157c478bd9Sstevel@tonic-gate * Link into the hash table, inserting it at the end, so that LOFS 32167c478bd9Sstevel@tonic-gate * with the same fsid as UFS (or other) file systems will not hide 32177c478bd9Sstevel@tonic-gate * the UFS. 32187c478bd9Sstevel@tonic-gate */ 32197c478bd9Sstevel@tonic-gate vfs_hash_add(vfsp, 0); 32207c478bd9Sstevel@tonic-gate 32217c478bd9Sstevel@tonic-gate /* 32227c478bd9Sstevel@tonic-gate * update the mnttab modification time 32237c478bd9Sstevel@tonic-gate */ 32247c478bd9Sstevel@tonic-gate vfs_mnttab_modtimeupd(); 32257c478bd9Sstevel@tonic-gate vfs_list_unlock(); 32267c478bd9Sstevel@tonic-gate zone_rele(zone); 32277c478bd9Sstevel@tonic-gate } 32287c478bd9Sstevel@tonic-gate 32297c478bd9Sstevel@tonic-gate void 32307c478bd9Sstevel@tonic-gate vfs_list_remove(struct vfs *vfsp) 32317c478bd9Sstevel@tonic-gate { 32327c478bd9Sstevel@tonic-gate zone_t *zone; 32337c478bd9Sstevel@tonic-gate 32347c478bd9Sstevel@tonic-gate zone = zone_find_by_path(refstr_value(vfsp->vfs_mntpt)); 32357c478bd9Sstevel@tonic-gate ASSERT(zone != NULL); 32367c478bd9Sstevel@tonic-gate /* 32377c478bd9Sstevel@tonic-gate * Callers are responsible for preventing attempts to unmount the 32387c478bd9Sstevel@tonic-gate * root. 32397c478bd9Sstevel@tonic-gate */ 32407c478bd9Sstevel@tonic-gate ASSERT(vfsp != rootvfs); 32417c478bd9Sstevel@tonic-gate 32427c478bd9Sstevel@tonic-gate vfs_list_lock(); 32437c478bd9Sstevel@tonic-gate 32447c478bd9Sstevel@tonic-gate /* 32457c478bd9Sstevel@tonic-gate * Remove from hash. 32467c478bd9Sstevel@tonic-gate */ 32477c478bd9Sstevel@tonic-gate vfs_hash_remove(vfsp); 32487c478bd9Sstevel@tonic-gate 32497c478bd9Sstevel@tonic-gate /* 32507c478bd9Sstevel@tonic-gate * Remove from vfs list. 32517c478bd9Sstevel@tonic-gate */ 32527c478bd9Sstevel@tonic-gate vfsp->vfs_prev->vfs_next = vfsp->vfs_next; 32537c478bd9Sstevel@tonic-gate vfsp->vfs_next->vfs_prev = vfsp->vfs_prev; 32547c478bd9Sstevel@tonic-gate vfsp->vfs_next = vfsp->vfs_prev = NULL; 32557c478bd9Sstevel@tonic-gate 32567c478bd9Sstevel@tonic-gate /* 32577c478bd9Sstevel@tonic-gate * Remove from zone-specific vfs list. 32587c478bd9Sstevel@tonic-gate */ 32597c478bd9Sstevel@tonic-gate if (zone->zone_vfslist == vfsp) 32607c478bd9Sstevel@tonic-gate zone->zone_vfslist = vfsp->vfs_zone_next; 32617c478bd9Sstevel@tonic-gate 32627c478bd9Sstevel@tonic-gate if (vfsp->vfs_zone_next == vfsp) { 32637c478bd9Sstevel@tonic-gate ASSERT(vfsp->vfs_zone_prev == vfsp); 32647c478bd9Sstevel@tonic-gate ASSERT(zone->zone_vfslist == vfsp); 32657c478bd9Sstevel@tonic-gate zone->zone_vfslist = NULL; 32667c478bd9Sstevel@tonic-gate } 32677c478bd9Sstevel@tonic-gate 32687c478bd9Sstevel@tonic-gate vfsp->vfs_zone_prev->vfs_zone_next = vfsp->vfs_zone_next; 32697c478bd9Sstevel@tonic-gate vfsp->vfs_zone_next->vfs_zone_prev = vfsp->vfs_zone_prev; 32707c478bd9Sstevel@tonic-gate vfsp->vfs_zone_next = vfsp->vfs_zone_prev = NULL; 32717c478bd9Sstevel@tonic-gate 32727c478bd9Sstevel@tonic-gate /* 32737c478bd9Sstevel@tonic-gate * update the mnttab modification time 32747c478bd9Sstevel@tonic-gate */ 32757c478bd9Sstevel@tonic-gate vfs_mnttab_modtimeupd(); 32767c478bd9Sstevel@tonic-gate vfs_list_unlock(); 32777c478bd9Sstevel@tonic-gate zone_rele(zone); 32787c478bd9Sstevel@tonic-gate } 32797c478bd9Sstevel@tonic-gate 32807c478bd9Sstevel@tonic-gate struct vfs * 32817c478bd9Sstevel@tonic-gate getvfs(fsid_t *fsid) 32827c478bd9Sstevel@tonic-gate { 32837c478bd9Sstevel@tonic-gate struct vfs *vfsp; 32847c478bd9Sstevel@tonic-gate int val0 = fsid->val[0]; 32857c478bd9Sstevel@tonic-gate int val1 = fsid->val[1]; 32867c478bd9Sstevel@tonic-gate dev_t dev = expldev(val0); 32877c478bd9Sstevel@tonic-gate int vhno = VFSHASH(getmajor(dev), getminor(dev)); 32887c478bd9Sstevel@tonic-gate kmutex_t *hmp = &rvfs_list[vhno].rvfs_lock; 32897c478bd9Sstevel@tonic-gate 32907c478bd9Sstevel@tonic-gate mutex_enter(hmp); 32917c478bd9Sstevel@tonic-gate for (vfsp = rvfs_list[vhno].rvfs_head; vfsp; vfsp = vfsp->vfs_hash) { 32927c478bd9Sstevel@tonic-gate if (vfsp->vfs_fsid.val[0] == val0 && 32937c478bd9Sstevel@tonic-gate vfsp->vfs_fsid.val[1] == val1) { 32947c478bd9Sstevel@tonic-gate VFS_HOLD(vfsp); 32957c478bd9Sstevel@tonic-gate mutex_exit(hmp); 32967c478bd9Sstevel@tonic-gate return (vfsp); 32977c478bd9Sstevel@tonic-gate } 32987c478bd9Sstevel@tonic-gate } 32997c478bd9Sstevel@tonic-gate mutex_exit(hmp); 33007c478bd9Sstevel@tonic-gate return (NULL); 33017c478bd9Sstevel@tonic-gate } 33027c478bd9Sstevel@tonic-gate 33037c478bd9Sstevel@tonic-gate /* 33047c478bd9Sstevel@tonic-gate * Search the vfs mount in progress list for a specified device/vfs entry. 33057c478bd9Sstevel@tonic-gate * Returns 0 if the first entry in the list that the device matches has the 33067c478bd9Sstevel@tonic-gate * given vfs pointer as well. If the device matches but a different vfs 33077c478bd9Sstevel@tonic-gate * pointer is encountered in the list before the given vfs pointer then 33087c478bd9Sstevel@tonic-gate * a 1 is returned. 33097c478bd9Sstevel@tonic-gate */ 33107c478bd9Sstevel@tonic-gate 33117c478bd9Sstevel@tonic-gate int 33127c478bd9Sstevel@tonic-gate vfs_devmounting(dev_t dev, struct vfs *vfsp) 33137c478bd9Sstevel@tonic-gate { 33147c478bd9Sstevel@tonic-gate int retval = 0; 33157c478bd9Sstevel@tonic-gate struct ipmnt *mipp; 33167c478bd9Sstevel@tonic-gate 33177c478bd9Sstevel@tonic-gate mutex_enter(&vfs_miplist_mutex); 33187c478bd9Sstevel@tonic-gate for (mipp = vfs_miplist; mipp != NULL; mipp = mipp->mip_next) { 33197c478bd9Sstevel@tonic-gate if (mipp->mip_dev == dev) { 33207c478bd9Sstevel@tonic-gate if (mipp->mip_vfsp != vfsp) 33217c478bd9Sstevel@tonic-gate retval = 1; 33227c478bd9Sstevel@tonic-gate break; 33237c478bd9Sstevel@tonic-gate } 33247c478bd9Sstevel@tonic-gate } 33257c478bd9Sstevel@tonic-gate mutex_exit(&vfs_miplist_mutex); 33267c478bd9Sstevel@tonic-gate return (retval); 33277c478bd9Sstevel@tonic-gate } 33287c478bd9Sstevel@tonic-gate 33297c478bd9Sstevel@tonic-gate /* 33307c478bd9Sstevel@tonic-gate * Search the vfs list for a specified device. Returns 1, if entry is found 33317c478bd9Sstevel@tonic-gate * or 0 if no suitable entry is found. 33327c478bd9Sstevel@tonic-gate */ 33337c478bd9Sstevel@tonic-gate 33347c478bd9Sstevel@tonic-gate int 33357c478bd9Sstevel@tonic-gate vfs_devismounted(dev_t dev) 33367c478bd9Sstevel@tonic-gate { 33377c478bd9Sstevel@tonic-gate struct vfs *vfsp; 33387c478bd9Sstevel@tonic-gate int found; 33397c478bd9Sstevel@tonic-gate 33407c478bd9Sstevel@tonic-gate vfs_list_read_lock(); 33417c478bd9Sstevel@tonic-gate vfsp = rootvfs; 33427c478bd9Sstevel@tonic-gate found = 0; 33437c478bd9Sstevel@tonic-gate do { 33447c478bd9Sstevel@tonic-gate if (vfsp->vfs_dev == dev) { 33457c478bd9Sstevel@tonic-gate found = 1; 33467c478bd9Sstevel@tonic-gate break; 33477c478bd9Sstevel@tonic-gate } 33487c478bd9Sstevel@tonic-gate vfsp = vfsp->vfs_next; 33497c478bd9Sstevel@tonic-gate } while (vfsp != rootvfs); 33507c478bd9Sstevel@tonic-gate 33517c478bd9Sstevel@tonic-gate vfs_list_unlock(); 33527c478bd9Sstevel@tonic-gate return (found); 33537c478bd9Sstevel@tonic-gate } 33547c478bd9Sstevel@tonic-gate 33557c478bd9Sstevel@tonic-gate /* 33567c478bd9Sstevel@tonic-gate * Search the vfs list for a specified device. Returns a pointer to it 33577c478bd9Sstevel@tonic-gate * or NULL if no suitable entry is found. The caller of this routine 33587c478bd9Sstevel@tonic-gate * is responsible for releasing the returned vfs pointer. 33597c478bd9Sstevel@tonic-gate */ 33607c478bd9Sstevel@tonic-gate struct vfs * 33617c478bd9Sstevel@tonic-gate vfs_dev2vfsp(dev_t dev) 33627c478bd9Sstevel@tonic-gate { 33637c478bd9Sstevel@tonic-gate struct vfs *vfsp; 33647c478bd9Sstevel@tonic-gate int found; 33657c478bd9Sstevel@tonic-gate 33667c478bd9Sstevel@tonic-gate vfs_list_read_lock(); 33677c478bd9Sstevel@tonic-gate vfsp = rootvfs; 33687c478bd9Sstevel@tonic-gate found = 0; 33697c478bd9Sstevel@tonic-gate do { 33707c478bd9Sstevel@tonic-gate /* 33717c478bd9Sstevel@tonic-gate * The following could be made more efficient by making 33727c478bd9Sstevel@tonic-gate * the entire loop use vfs_zone_next if the call is from 33737c478bd9Sstevel@tonic-gate * a zone. The only callers, however, ustat(2) and 33747c478bd9Sstevel@tonic-gate * umount2(2), don't seem to justify the added 33757c478bd9Sstevel@tonic-gate * complexity at present. 33767c478bd9Sstevel@tonic-gate */ 33777c478bd9Sstevel@tonic-gate if (vfsp->vfs_dev == dev && 33787c478bd9Sstevel@tonic-gate ZONE_PATH_VISIBLE(refstr_value(vfsp->vfs_mntpt), 33797c478bd9Sstevel@tonic-gate curproc->p_zone)) { 33807c478bd9Sstevel@tonic-gate VFS_HOLD(vfsp); 33817c478bd9Sstevel@tonic-gate found = 1; 33827c478bd9Sstevel@tonic-gate break; 33837c478bd9Sstevel@tonic-gate } 33847c478bd9Sstevel@tonic-gate vfsp = vfsp->vfs_next; 33857c478bd9Sstevel@tonic-gate } while (vfsp != rootvfs); 33867c478bd9Sstevel@tonic-gate vfs_list_unlock(); 33877c478bd9Sstevel@tonic-gate return (found ? vfsp: NULL); 33887c478bd9Sstevel@tonic-gate } 33897c478bd9Sstevel@tonic-gate 33907c478bd9Sstevel@tonic-gate /* 33917c478bd9Sstevel@tonic-gate * Search the vfs list for a specified mntpoint. Returns a pointer to it 33927c478bd9Sstevel@tonic-gate * or NULL if no suitable entry is found. The caller of this routine 33937c478bd9Sstevel@tonic-gate * is responsible for releasing the returned vfs pointer. 33947c478bd9Sstevel@tonic-gate * 33957c478bd9Sstevel@tonic-gate * Note that if multiple mntpoints match, the last one matching is 33967c478bd9Sstevel@tonic-gate * returned in an attempt to return the "top" mount when overlay 33977c478bd9Sstevel@tonic-gate * mounts are covering the same mount point. This is accomplished by starting 33987c478bd9Sstevel@tonic-gate * at the end of the list and working our way backwards, stopping at the first 33997c478bd9Sstevel@tonic-gate * matching mount. 34007c478bd9Sstevel@tonic-gate */ 34017c478bd9Sstevel@tonic-gate struct vfs * 34027c478bd9Sstevel@tonic-gate vfs_mntpoint2vfsp(const char *mp) 34037c478bd9Sstevel@tonic-gate { 34047c478bd9Sstevel@tonic-gate struct vfs *vfsp; 34057c478bd9Sstevel@tonic-gate struct vfs *retvfsp = NULL; 34067c478bd9Sstevel@tonic-gate zone_t *zone = curproc->p_zone; 34077c478bd9Sstevel@tonic-gate struct vfs *list; 34087c478bd9Sstevel@tonic-gate 34097c478bd9Sstevel@tonic-gate vfs_list_read_lock(); 34107c478bd9Sstevel@tonic-gate if (getzoneid() == GLOBAL_ZONEID) { 34117c478bd9Sstevel@tonic-gate /* 34127c478bd9Sstevel@tonic-gate * The global zone may see filesystems in any zone. 34137c478bd9Sstevel@tonic-gate */ 34147c478bd9Sstevel@tonic-gate vfsp = rootvfs->vfs_prev; 34157c478bd9Sstevel@tonic-gate do { 34167c478bd9Sstevel@tonic-gate if (strcmp(refstr_value(vfsp->vfs_mntpt), mp) == 0) { 34177c478bd9Sstevel@tonic-gate retvfsp = vfsp; 34187c478bd9Sstevel@tonic-gate break; 34197c478bd9Sstevel@tonic-gate } 34207c478bd9Sstevel@tonic-gate vfsp = vfsp->vfs_prev; 34217c478bd9Sstevel@tonic-gate } while (vfsp != rootvfs->vfs_prev); 34227c478bd9Sstevel@tonic-gate } else if ((list = zone->zone_vfslist) != NULL) { 34237c478bd9Sstevel@tonic-gate const char *mntpt; 34247c478bd9Sstevel@tonic-gate 34257c478bd9Sstevel@tonic-gate vfsp = list->vfs_zone_prev; 34267c478bd9Sstevel@tonic-gate do { 34277c478bd9Sstevel@tonic-gate mntpt = refstr_value(vfsp->vfs_mntpt); 34287c478bd9Sstevel@tonic-gate mntpt = ZONE_PATH_TRANSLATE(mntpt, zone); 34297c478bd9Sstevel@tonic-gate if (strcmp(mntpt, mp) == 0) { 34307c478bd9Sstevel@tonic-gate retvfsp = vfsp; 34317c478bd9Sstevel@tonic-gate break; 34327c478bd9Sstevel@tonic-gate } 34337c478bd9Sstevel@tonic-gate vfsp = vfsp->vfs_zone_prev; 34347c478bd9Sstevel@tonic-gate } while (vfsp != list->vfs_zone_prev); 34357c478bd9Sstevel@tonic-gate } 34367c478bd9Sstevel@tonic-gate if (retvfsp) 34377c478bd9Sstevel@tonic-gate VFS_HOLD(retvfsp); 34387c478bd9Sstevel@tonic-gate vfs_list_unlock(); 34397c478bd9Sstevel@tonic-gate return (retvfsp); 34407c478bd9Sstevel@tonic-gate } 34417c478bd9Sstevel@tonic-gate 34427c478bd9Sstevel@tonic-gate /* 34437c478bd9Sstevel@tonic-gate * Search the vfs list for a specified vfsops. 34447c478bd9Sstevel@tonic-gate * if vfs entry is found then return 1, else 0. 34457c478bd9Sstevel@tonic-gate */ 34467c478bd9Sstevel@tonic-gate int 34477c478bd9Sstevel@tonic-gate vfs_opsinuse(vfsops_t *ops) 34487c478bd9Sstevel@tonic-gate { 34497c478bd9Sstevel@tonic-gate struct vfs *vfsp; 34507c478bd9Sstevel@tonic-gate int found; 34517c478bd9Sstevel@tonic-gate 34527c478bd9Sstevel@tonic-gate vfs_list_read_lock(); 34537c478bd9Sstevel@tonic-gate vfsp = rootvfs; 34547c478bd9Sstevel@tonic-gate found = 0; 34557c478bd9Sstevel@tonic-gate do { 34567c478bd9Sstevel@tonic-gate if (vfs_getops(vfsp) == ops) { 34577c478bd9Sstevel@tonic-gate found = 1; 34587c478bd9Sstevel@tonic-gate break; 34597c478bd9Sstevel@tonic-gate } 34607c478bd9Sstevel@tonic-gate vfsp = vfsp->vfs_next; 34617c478bd9Sstevel@tonic-gate } while (vfsp != rootvfs); 34627c478bd9Sstevel@tonic-gate vfs_list_unlock(); 34637c478bd9Sstevel@tonic-gate return (found); 34647c478bd9Sstevel@tonic-gate } 34657c478bd9Sstevel@tonic-gate 34667c478bd9Sstevel@tonic-gate /* 34677c478bd9Sstevel@tonic-gate * Allocate an entry in vfssw for a file system type 34687c478bd9Sstevel@tonic-gate */ 34697c478bd9Sstevel@tonic-gate struct vfssw * 34707c478bd9Sstevel@tonic-gate allocate_vfssw(char *type) 34717c478bd9Sstevel@tonic-gate { 34727c478bd9Sstevel@tonic-gate struct vfssw *vswp; 34737c478bd9Sstevel@tonic-gate 34747c478bd9Sstevel@tonic-gate if (type[0] == '\0' || strlen(type) + 1 > _ST_FSTYPSZ) { 34757c478bd9Sstevel@tonic-gate /* 34767c478bd9Sstevel@tonic-gate * The vfssw table uses the empty string to identify an 34777c478bd9Sstevel@tonic-gate * available entry; we cannot add any type which has 34787c478bd9Sstevel@tonic-gate * a leading NUL. The string length is limited to 34797c478bd9Sstevel@tonic-gate * the size of the st_fstype array in struct stat. 34807c478bd9Sstevel@tonic-gate */ 34817c478bd9Sstevel@tonic-gate return (NULL); 34827c478bd9Sstevel@tonic-gate } 34837c478bd9Sstevel@tonic-gate 34847c478bd9Sstevel@tonic-gate ASSERT(VFSSW_WRITE_LOCKED()); 34857c478bd9Sstevel@tonic-gate for (vswp = &vfssw[1]; vswp < &vfssw[nfstype]; vswp++) 34867c478bd9Sstevel@tonic-gate if (!ALLOCATED_VFSSW(vswp)) { 34877c478bd9Sstevel@tonic-gate vswp->vsw_name = kmem_alloc(strlen(type) + 1, KM_SLEEP); 34887c478bd9Sstevel@tonic-gate (void) strcpy(vswp->vsw_name, type); 34897c478bd9Sstevel@tonic-gate ASSERT(vswp->vsw_count == 0); 34907c478bd9Sstevel@tonic-gate vswp->vsw_count = 1; 34917c478bd9Sstevel@tonic-gate mutex_init(&vswp->vsw_lock, NULL, MUTEX_DEFAULT, NULL); 34927c478bd9Sstevel@tonic-gate return (vswp); 34937c478bd9Sstevel@tonic-gate } 34947c478bd9Sstevel@tonic-gate return (NULL); 34957c478bd9Sstevel@tonic-gate } 34967c478bd9Sstevel@tonic-gate 34977c478bd9Sstevel@tonic-gate /* 34987c478bd9Sstevel@tonic-gate * Impose additional layer of translation between vfstype names 34997c478bd9Sstevel@tonic-gate * and module names in the filesystem. 35007c478bd9Sstevel@tonic-gate */ 35017c478bd9Sstevel@tonic-gate static char * 35027c478bd9Sstevel@tonic-gate vfs_to_modname(char *vfstype) 35037c478bd9Sstevel@tonic-gate { 35047c478bd9Sstevel@tonic-gate if (strcmp(vfstype, "proc") == 0) { 35057c478bd9Sstevel@tonic-gate vfstype = "procfs"; 35067c478bd9Sstevel@tonic-gate } else if (strcmp(vfstype, "fd") == 0) { 35077c478bd9Sstevel@tonic-gate vfstype = "fdfs"; 35087c478bd9Sstevel@tonic-gate } else if (strncmp(vfstype, "nfs", 3) == 0) { 35097c478bd9Sstevel@tonic-gate vfstype = "nfs"; 35107c478bd9Sstevel@tonic-gate } 35117c478bd9Sstevel@tonic-gate 35127c478bd9Sstevel@tonic-gate return (vfstype); 35137c478bd9Sstevel@tonic-gate } 35147c478bd9Sstevel@tonic-gate 35157c478bd9Sstevel@tonic-gate /* 35167c478bd9Sstevel@tonic-gate * Find a vfssw entry given a file system type name. 35177c478bd9Sstevel@tonic-gate * Try to autoload the filesystem if it's not found. 35187c478bd9Sstevel@tonic-gate * If it's installed, return the vfssw locked to prevent unloading. 35197c478bd9Sstevel@tonic-gate */ 35207c478bd9Sstevel@tonic-gate struct vfssw * 35217c478bd9Sstevel@tonic-gate vfs_getvfssw(char *type) 35227c478bd9Sstevel@tonic-gate { 35237c478bd9Sstevel@tonic-gate struct vfssw *vswp; 35247c478bd9Sstevel@tonic-gate char *modname; 35257c478bd9Sstevel@tonic-gate 35267c478bd9Sstevel@tonic-gate RLOCK_VFSSW(); 35277c478bd9Sstevel@tonic-gate vswp = vfs_getvfsswbyname(type); 35287c478bd9Sstevel@tonic-gate modname = vfs_to_modname(type); 35297c478bd9Sstevel@tonic-gate 35307c478bd9Sstevel@tonic-gate if (rootdir == NULL) { 35317c478bd9Sstevel@tonic-gate /* 35327c478bd9Sstevel@tonic-gate * If we haven't yet loaded the root file system, then our 35337c478bd9Sstevel@tonic-gate * _init won't be called until later. Allocate vfssw entry, 35347c478bd9Sstevel@tonic-gate * because mod_installfs won't be called. 35357c478bd9Sstevel@tonic-gate */ 35367c478bd9Sstevel@tonic-gate if (vswp == NULL) { 35377c478bd9Sstevel@tonic-gate RUNLOCK_VFSSW(); 35387c478bd9Sstevel@tonic-gate WLOCK_VFSSW(); 35397c478bd9Sstevel@tonic-gate if ((vswp = vfs_getvfsswbyname(type)) == NULL) { 35407c478bd9Sstevel@tonic-gate if ((vswp = allocate_vfssw(type)) == NULL) { 35417c478bd9Sstevel@tonic-gate WUNLOCK_VFSSW(); 35427c478bd9Sstevel@tonic-gate return (NULL); 35437c478bd9Sstevel@tonic-gate } 35447c478bd9Sstevel@tonic-gate } 35457c478bd9Sstevel@tonic-gate WUNLOCK_VFSSW(); 35467c478bd9Sstevel@tonic-gate RLOCK_VFSSW(); 35477c478bd9Sstevel@tonic-gate } 35487c478bd9Sstevel@tonic-gate if (!VFS_INSTALLED(vswp)) { 35497c478bd9Sstevel@tonic-gate RUNLOCK_VFSSW(); 35507c478bd9Sstevel@tonic-gate (void) modloadonly("fs", modname); 35517c478bd9Sstevel@tonic-gate } else 35527c478bd9Sstevel@tonic-gate RUNLOCK_VFSSW(); 35537c478bd9Sstevel@tonic-gate return (vswp); 35547c478bd9Sstevel@tonic-gate } 35557c478bd9Sstevel@tonic-gate 35567c478bd9Sstevel@tonic-gate /* 35577c478bd9Sstevel@tonic-gate * Try to load the filesystem. Before calling modload(), we drop 35587c478bd9Sstevel@tonic-gate * our lock on the VFS switch table, and pick it up after the 35597c478bd9Sstevel@tonic-gate * module is loaded. However, there is a potential race: the 35607c478bd9Sstevel@tonic-gate * module could be unloaded after the call to modload() completes 35617c478bd9Sstevel@tonic-gate * but before we pick up the lock and drive on. Therefore, 35627c478bd9Sstevel@tonic-gate * we keep reloading the module until we've loaded the module 35637c478bd9Sstevel@tonic-gate * _and_ we have the lock on the VFS switch table. 35647c478bd9Sstevel@tonic-gate */ 35657c478bd9Sstevel@tonic-gate while (vswp == NULL || !VFS_INSTALLED(vswp)) { 35667c478bd9Sstevel@tonic-gate RUNLOCK_VFSSW(); 35677c478bd9Sstevel@tonic-gate if (modload("fs", modname) == -1) 35687c478bd9Sstevel@tonic-gate return (NULL); 35697c478bd9Sstevel@tonic-gate RLOCK_VFSSW(); 35707c478bd9Sstevel@tonic-gate if (vswp == NULL) 35717c478bd9Sstevel@tonic-gate if ((vswp = vfs_getvfsswbyname(type)) == NULL) 35727c478bd9Sstevel@tonic-gate break; 35737c478bd9Sstevel@tonic-gate } 35747c478bd9Sstevel@tonic-gate RUNLOCK_VFSSW(); 35757c478bd9Sstevel@tonic-gate 35767c478bd9Sstevel@tonic-gate return (vswp); 35777c478bd9Sstevel@tonic-gate } 35787c478bd9Sstevel@tonic-gate 35797c478bd9Sstevel@tonic-gate /* 35807c478bd9Sstevel@tonic-gate * Find a vfssw entry given a file system type name. 35817c478bd9Sstevel@tonic-gate */ 35827c478bd9Sstevel@tonic-gate struct vfssw * 35837c478bd9Sstevel@tonic-gate vfs_getvfsswbyname(char *type) 35847c478bd9Sstevel@tonic-gate { 35857c478bd9Sstevel@tonic-gate struct vfssw *vswp; 35867c478bd9Sstevel@tonic-gate 35877c478bd9Sstevel@tonic-gate ASSERT(VFSSW_LOCKED()); 35887c478bd9Sstevel@tonic-gate if (type == NULL || *type == '\0') 35897c478bd9Sstevel@tonic-gate return (NULL); 35907c478bd9Sstevel@tonic-gate 35917c478bd9Sstevel@tonic-gate for (vswp = &vfssw[1]; vswp < &vfssw[nfstype]; vswp++) { 35927c478bd9Sstevel@tonic-gate if (strcmp(type, vswp->vsw_name) == 0) { 35937c478bd9Sstevel@tonic-gate vfs_refvfssw(vswp); 35947c478bd9Sstevel@tonic-gate return (vswp); 35957c478bd9Sstevel@tonic-gate } 35967c478bd9Sstevel@tonic-gate } 35977c478bd9Sstevel@tonic-gate 35987c478bd9Sstevel@tonic-gate return (NULL); 35997c478bd9Sstevel@tonic-gate } 36007c478bd9Sstevel@tonic-gate 36017c478bd9Sstevel@tonic-gate /* 36027c478bd9Sstevel@tonic-gate * Find a vfssw entry given a set of vfsops. 36037c478bd9Sstevel@tonic-gate */ 36047c478bd9Sstevel@tonic-gate struct vfssw * 36057c478bd9Sstevel@tonic-gate vfs_getvfsswbyvfsops(vfsops_t *vfsops) 36067c478bd9Sstevel@tonic-gate { 36077c478bd9Sstevel@tonic-gate struct vfssw *vswp; 36087c478bd9Sstevel@tonic-gate 36097c478bd9Sstevel@tonic-gate RLOCK_VFSSW(); 36107c478bd9Sstevel@tonic-gate for (vswp = &vfssw[1]; vswp < &vfssw[nfstype]; vswp++) { 36117c478bd9Sstevel@tonic-gate if (ALLOCATED_VFSSW(vswp) && &vswp->vsw_vfsops == vfsops) { 36127c478bd9Sstevel@tonic-gate vfs_refvfssw(vswp); 36137c478bd9Sstevel@tonic-gate RUNLOCK_VFSSW(); 36147c478bd9Sstevel@tonic-gate return (vswp); 36157c478bd9Sstevel@tonic-gate } 36167c478bd9Sstevel@tonic-gate } 36177c478bd9Sstevel@tonic-gate RUNLOCK_VFSSW(); 36187c478bd9Sstevel@tonic-gate 36197c478bd9Sstevel@tonic-gate return (NULL); 36207c478bd9Sstevel@tonic-gate } 36217c478bd9Sstevel@tonic-gate 36227c478bd9Sstevel@tonic-gate /* 36237c478bd9Sstevel@tonic-gate * Reference a vfssw entry. 36247c478bd9Sstevel@tonic-gate */ 36257c478bd9Sstevel@tonic-gate void 36267c478bd9Sstevel@tonic-gate vfs_refvfssw(struct vfssw *vswp) 36277c478bd9Sstevel@tonic-gate { 36287c478bd9Sstevel@tonic-gate 36297c478bd9Sstevel@tonic-gate mutex_enter(&vswp->vsw_lock); 36307c478bd9Sstevel@tonic-gate vswp->vsw_count++; 36317c478bd9Sstevel@tonic-gate mutex_exit(&vswp->vsw_lock); 36327c478bd9Sstevel@tonic-gate } 36337c478bd9Sstevel@tonic-gate 36347c478bd9Sstevel@tonic-gate /* 36357c478bd9Sstevel@tonic-gate * Unreference a vfssw entry. 36367c478bd9Sstevel@tonic-gate */ 36377c478bd9Sstevel@tonic-gate void 36387c478bd9Sstevel@tonic-gate vfs_unrefvfssw(struct vfssw *vswp) 36397c478bd9Sstevel@tonic-gate { 36407c478bd9Sstevel@tonic-gate 36417c478bd9Sstevel@tonic-gate mutex_enter(&vswp->vsw_lock); 36427c478bd9Sstevel@tonic-gate vswp->vsw_count--; 36437c478bd9Sstevel@tonic-gate mutex_exit(&vswp->vsw_lock); 36447c478bd9Sstevel@tonic-gate } 36457c478bd9Sstevel@tonic-gate 36467c478bd9Sstevel@tonic-gate int sync_timeout = 30; /* timeout for syncing a page during panic */ 36477c478bd9Sstevel@tonic-gate int sync_timeleft; /* portion of sync_timeout remaining */ 36487c478bd9Sstevel@tonic-gate 36497c478bd9Sstevel@tonic-gate static int sync_retries = 20; /* number of retries when not making progress */ 36507c478bd9Sstevel@tonic-gate static int sync_triesleft; /* portion of sync_retries remaining */ 36517c478bd9Sstevel@tonic-gate 36527c478bd9Sstevel@tonic-gate static pgcnt_t old_pgcnt, new_pgcnt; 36537c478bd9Sstevel@tonic-gate static int new_bufcnt, old_bufcnt; 36547c478bd9Sstevel@tonic-gate 36557c478bd9Sstevel@tonic-gate /* 36567c478bd9Sstevel@tonic-gate * Sync all of the mounted filesystems, and then wait for the actual i/o to 36577c478bd9Sstevel@tonic-gate * complete. We wait by counting the number of dirty pages and buffers, 36587c478bd9Sstevel@tonic-gate * pushing them out using bio_busy() and page_busy(), and then counting again. 36597c478bd9Sstevel@tonic-gate * This routine is used during both the uadmin A_SHUTDOWN code as well as 36607c478bd9Sstevel@tonic-gate * the SYNC phase of the panic code (see comments in panic.c). It should only 36617c478bd9Sstevel@tonic-gate * be used after some higher-level mechanism has quiesced the system so that 36627c478bd9Sstevel@tonic-gate * new writes are not being initiated while we are waiting for completion. 36637c478bd9Sstevel@tonic-gate * 36647c478bd9Sstevel@tonic-gate * To ensure finite running time, our algorithm uses two timeout mechanisms: 36657c478bd9Sstevel@tonic-gate * sync_timeleft (a timer implemented by the omnipresent deadman() cyclic), and 36667c478bd9Sstevel@tonic-gate * sync_triesleft (a progress counter used by the vfs_syncall() loop below). 36677c478bd9Sstevel@tonic-gate * Together these ensure that syncing completes if our i/o paths are stuck. 36687c478bd9Sstevel@tonic-gate * The counters are declared above so they can be found easily in the debugger. 36697c478bd9Sstevel@tonic-gate * 36707c478bd9Sstevel@tonic-gate * The sync_timeleft counter is reset by bio_busy() and page_busy() using the 36717c478bd9Sstevel@tonic-gate * vfs_syncprogress() subroutine whenever we make progress through the lists of 36727c478bd9Sstevel@tonic-gate * pages and buffers. It is decremented and expired by the deadman() cyclic. 36737c478bd9Sstevel@tonic-gate * When vfs_syncall() decides it is done, we disable the deadman() counter by 36747c478bd9Sstevel@tonic-gate * setting sync_timeleft to zero. This timer guards against vfs_syncall() 36757c478bd9Sstevel@tonic-gate * deadlocking or hanging inside of a broken filesystem or driver routine. 36767c478bd9Sstevel@tonic-gate * 36777c478bd9Sstevel@tonic-gate * The sync_triesleft counter is updated by vfs_syncall() itself. If we make 36787c478bd9Sstevel@tonic-gate * sync_retries consecutive calls to bio_busy() and page_busy() without 36797c478bd9Sstevel@tonic-gate * decreasing either the number of dirty buffers or dirty pages below the 36807c478bd9Sstevel@tonic-gate * lowest count we have seen so far, we give up and return from vfs_syncall(). 36817c478bd9Sstevel@tonic-gate * 36827c478bd9Sstevel@tonic-gate * Each loop iteration ends with a call to delay() one second to allow time for 36837c478bd9Sstevel@tonic-gate * i/o completion and to permit the user time to read our progress messages. 36847c478bd9Sstevel@tonic-gate */ 36857c478bd9Sstevel@tonic-gate void 36867c478bd9Sstevel@tonic-gate vfs_syncall(void) 36877c478bd9Sstevel@tonic-gate { 36887c478bd9Sstevel@tonic-gate if (rootdir == NULL && !modrootloaded) 36897c478bd9Sstevel@tonic-gate return; /* panic during boot - no filesystems yet */ 36907c478bd9Sstevel@tonic-gate 36917c478bd9Sstevel@tonic-gate printf("syncing file systems..."); 36927c478bd9Sstevel@tonic-gate vfs_syncprogress(); 36937c478bd9Sstevel@tonic-gate sync(); 36947c478bd9Sstevel@tonic-gate 36957c478bd9Sstevel@tonic-gate vfs_syncprogress(); 36967c478bd9Sstevel@tonic-gate sync_triesleft = sync_retries; 36977c478bd9Sstevel@tonic-gate 36987c478bd9Sstevel@tonic-gate old_bufcnt = new_bufcnt = INT_MAX; 36997c478bd9Sstevel@tonic-gate old_pgcnt = new_pgcnt = ULONG_MAX; 37007c478bd9Sstevel@tonic-gate 37017c478bd9Sstevel@tonic-gate while (sync_triesleft > 0) { 37027c478bd9Sstevel@tonic-gate old_bufcnt = MIN(old_bufcnt, new_bufcnt); 37037c478bd9Sstevel@tonic-gate old_pgcnt = MIN(old_pgcnt, new_pgcnt); 37047c478bd9Sstevel@tonic-gate 37057c478bd9Sstevel@tonic-gate new_bufcnt = bio_busy(B_TRUE); 37067c478bd9Sstevel@tonic-gate new_pgcnt = page_busy(B_TRUE); 37077c478bd9Sstevel@tonic-gate vfs_syncprogress(); 37087c478bd9Sstevel@tonic-gate 37097c478bd9Sstevel@tonic-gate if (new_bufcnt == 0 && new_pgcnt == 0) 37107c478bd9Sstevel@tonic-gate break; 37117c478bd9Sstevel@tonic-gate 37127c478bd9Sstevel@tonic-gate if (new_bufcnt < old_bufcnt || new_pgcnt < old_pgcnt) 37137c478bd9Sstevel@tonic-gate sync_triesleft = sync_retries; 37147c478bd9Sstevel@tonic-gate else 37157c478bd9Sstevel@tonic-gate sync_triesleft--; 37167c478bd9Sstevel@tonic-gate 37177c478bd9Sstevel@tonic-gate if (new_bufcnt) 37187c478bd9Sstevel@tonic-gate printf(" [%d]", new_bufcnt); 37197c478bd9Sstevel@tonic-gate if (new_pgcnt) 37207c478bd9Sstevel@tonic-gate printf(" %lu", new_pgcnt); 37217c478bd9Sstevel@tonic-gate 37227c478bd9Sstevel@tonic-gate delay(hz); 37237c478bd9Sstevel@tonic-gate } 37247c478bd9Sstevel@tonic-gate 37257c478bd9Sstevel@tonic-gate if (new_bufcnt != 0 || new_pgcnt != 0) 37267c478bd9Sstevel@tonic-gate printf(" done (not all i/o completed)\n"); 37277c478bd9Sstevel@tonic-gate else 37287c478bd9Sstevel@tonic-gate printf(" done\n"); 37297c478bd9Sstevel@tonic-gate 37307c478bd9Sstevel@tonic-gate sync_timeleft = 0; 37317c478bd9Sstevel@tonic-gate delay(hz); 37327c478bd9Sstevel@tonic-gate } 37337c478bd9Sstevel@tonic-gate 37347c478bd9Sstevel@tonic-gate /* 37357c478bd9Sstevel@tonic-gate * If we are in the middle of the sync phase of panic, reset sync_timeleft to 37367c478bd9Sstevel@tonic-gate * sync_timeout to indicate that we are making progress and the deadman() 37377c478bd9Sstevel@tonic-gate * omnipresent cyclic should not yet time us out. Note that it is safe to 37387c478bd9Sstevel@tonic-gate * store to sync_timeleft here since the deadman() is firing at high-level 37397c478bd9Sstevel@tonic-gate * on top of us. If we are racing with the deadman(), either the deadman() 37407c478bd9Sstevel@tonic-gate * will decrement the old value and then we will reset it, or we will 37417c478bd9Sstevel@tonic-gate * reset it and then the deadman() will immediately decrement it. In either 37427c478bd9Sstevel@tonic-gate * case, correct behavior results. 37437c478bd9Sstevel@tonic-gate */ 37447c478bd9Sstevel@tonic-gate void 37457c478bd9Sstevel@tonic-gate vfs_syncprogress(void) 37467c478bd9Sstevel@tonic-gate { 37477c478bd9Sstevel@tonic-gate if (panicstr) 37487c478bd9Sstevel@tonic-gate sync_timeleft = sync_timeout; 37497c478bd9Sstevel@tonic-gate } 37507c478bd9Sstevel@tonic-gate 37517c478bd9Sstevel@tonic-gate /* 37527c478bd9Sstevel@tonic-gate * Map VFS flags to statvfs flags. These shouldn't really be separate 37537c478bd9Sstevel@tonic-gate * flags at all. 37547c478bd9Sstevel@tonic-gate */ 37557c478bd9Sstevel@tonic-gate uint_t 37567c478bd9Sstevel@tonic-gate vf_to_stf(uint_t vf) 37577c478bd9Sstevel@tonic-gate { 37587c478bd9Sstevel@tonic-gate uint_t stf = 0; 37597c478bd9Sstevel@tonic-gate 37607c478bd9Sstevel@tonic-gate if (vf & VFS_RDONLY) 37617c478bd9Sstevel@tonic-gate stf |= ST_RDONLY; 37627c478bd9Sstevel@tonic-gate if (vf & VFS_NOSETUID) 37637c478bd9Sstevel@tonic-gate stf |= ST_NOSUID; 37647c478bd9Sstevel@tonic-gate if (vf & VFS_NOTRUNC) 37657c478bd9Sstevel@tonic-gate stf |= ST_NOTRUNC; 37667c478bd9Sstevel@tonic-gate 37677c478bd9Sstevel@tonic-gate return (stf); 37687c478bd9Sstevel@tonic-gate } 37697c478bd9Sstevel@tonic-gate 37707c478bd9Sstevel@tonic-gate /* 37717c478bd9Sstevel@tonic-gate * Use old-style function prototype for vfsstray() so 37727c478bd9Sstevel@tonic-gate * that we can use it anywhere in the vfsops structure. 37737c478bd9Sstevel@tonic-gate */ 37747c478bd9Sstevel@tonic-gate int vfsstray(); 37757c478bd9Sstevel@tonic-gate 37767c478bd9Sstevel@tonic-gate /* 37777c478bd9Sstevel@tonic-gate * Entries for (illegal) fstype 0. 37787c478bd9Sstevel@tonic-gate */ 37797c478bd9Sstevel@tonic-gate /* ARGSUSED */ 37807c478bd9Sstevel@tonic-gate int 37817c478bd9Sstevel@tonic-gate vfsstray_sync(struct vfs *vfsp, short arg, struct cred *cr) 37827c478bd9Sstevel@tonic-gate { 37837c478bd9Sstevel@tonic-gate cmn_err(CE_PANIC, "stray vfs operation"); 37847c478bd9Sstevel@tonic-gate return (0); 37857c478bd9Sstevel@tonic-gate } 37867c478bd9Sstevel@tonic-gate 37877c478bd9Sstevel@tonic-gate vfsops_t vfs_strayops = { 37887c478bd9Sstevel@tonic-gate vfsstray, 37897c478bd9Sstevel@tonic-gate vfsstray, 37907c478bd9Sstevel@tonic-gate vfsstray, 37917c478bd9Sstevel@tonic-gate vfsstray, 37927c478bd9Sstevel@tonic-gate vfsstray_sync, 37937c478bd9Sstevel@tonic-gate vfsstray, 37947c478bd9Sstevel@tonic-gate vfsstray, 37957c478bd9Sstevel@tonic-gate vfsstray 37967c478bd9Sstevel@tonic-gate }; 37977c478bd9Sstevel@tonic-gate 37987c478bd9Sstevel@tonic-gate /* 37997c478bd9Sstevel@tonic-gate * Entries for (illegal) fstype 0. 38007c478bd9Sstevel@tonic-gate */ 38017c478bd9Sstevel@tonic-gate int 38027c478bd9Sstevel@tonic-gate vfsstray(void) 38037c478bd9Sstevel@tonic-gate { 38047c478bd9Sstevel@tonic-gate cmn_err(CE_PANIC, "stray vfs operation"); 38057c478bd9Sstevel@tonic-gate return (0); 38067c478bd9Sstevel@tonic-gate } 38077c478bd9Sstevel@tonic-gate 38087c478bd9Sstevel@tonic-gate /* 38097c478bd9Sstevel@tonic-gate * Support for dealing with forced UFS unmount and its interaction with 38107c478bd9Sstevel@tonic-gate * LOFS. Could be used by any filesystem. 38117c478bd9Sstevel@tonic-gate * See bug 1203132. 38127c478bd9Sstevel@tonic-gate */ 38137c478bd9Sstevel@tonic-gate int 38147c478bd9Sstevel@tonic-gate vfs_EIO(void) 38157c478bd9Sstevel@tonic-gate { 38167c478bd9Sstevel@tonic-gate return (EIO); 38177c478bd9Sstevel@tonic-gate } 38187c478bd9Sstevel@tonic-gate 38197c478bd9Sstevel@tonic-gate /* 38207c478bd9Sstevel@tonic-gate * We've gotta define the op for sync separately, since the compiler gets 38217c478bd9Sstevel@tonic-gate * confused if we mix and match ANSI and normal style prototypes when 38227c478bd9Sstevel@tonic-gate * a "short" argument is present and spits out a warning. 38237c478bd9Sstevel@tonic-gate */ 38247c478bd9Sstevel@tonic-gate /*ARGSUSED*/ 38257c478bd9Sstevel@tonic-gate int 38267c478bd9Sstevel@tonic-gate vfs_EIO_sync(struct vfs *vfsp, short arg, struct cred *cr) 38277c478bd9Sstevel@tonic-gate { 38287c478bd9Sstevel@tonic-gate return (EIO); 38297c478bd9Sstevel@tonic-gate } 38307c478bd9Sstevel@tonic-gate 38317c478bd9Sstevel@tonic-gate vfs_t EIO_vfs; 38327c478bd9Sstevel@tonic-gate vfsops_t *EIO_vfsops; 38337c478bd9Sstevel@tonic-gate 38347c478bd9Sstevel@tonic-gate /* 38357c478bd9Sstevel@tonic-gate * Called from startup() to initialize all loaded vfs's 38367c478bd9Sstevel@tonic-gate */ 38377c478bd9Sstevel@tonic-gate void 38387c478bd9Sstevel@tonic-gate vfsinit(void) 38397c478bd9Sstevel@tonic-gate { 38407c478bd9Sstevel@tonic-gate struct vfssw *vswp; 38417c478bd9Sstevel@tonic-gate int error; 384282c7f3c4Srsb extern int vopstats_enabled; 38435a59a8b3Srsb extern void vopstats_startup(); 38447c478bd9Sstevel@tonic-gate 38457c478bd9Sstevel@tonic-gate static const fs_operation_def_t EIO_vfsops_template[] = { 38467c478bd9Sstevel@tonic-gate VFSNAME_MOUNT, vfs_EIO, 38477c478bd9Sstevel@tonic-gate VFSNAME_UNMOUNT, vfs_EIO, 38487c478bd9Sstevel@tonic-gate VFSNAME_ROOT, vfs_EIO, 38497c478bd9Sstevel@tonic-gate VFSNAME_STATVFS, vfs_EIO, 38507c478bd9Sstevel@tonic-gate VFSNAME_SYNC, (fs_generic_func_p) vfs_EIO_sync, 38517c478bd9Sstevel@tonic-gate VFSNAME_VGET, vfs_EIO, 38527c478bd9Sstevel@tonic-gate VFSNAME_MOUNTROOT, vfs_EIO, 38537c478bd9Sstevel@tonic-gate VFSNAME_FREEVFS, vfs_EIO, 38547c478bd9Sstevel@tonic-gate VFSNAME_VNSTATE, vfs_EIO, 38557c478bd9Sstevel@tonic-gate NULL, NULL 38567c478bd9Sstevel@tonic-gate }; 38577c478bd9Sstevel@tonic-gate 38587c478bd9Sstevel@tonic-gate 38597c478bd9Sstevel@tonic-gate /* Initialize the vnode cache (file systems may use it during init). */ 38607c478bd9Sstevel@tonic-gate 38617c478bd9Sstevel@tonic-gate vn_create_cache(); 38627c478bd9Sstevel@tonic-gate 38637c478bd9Sstevel@tonic-gate /* Setup event monitor framework */ 38647c478bd9Sstevel@tonic-gate 38657c478bd9Sstevel@tonic-gate fem_init(); 38667c478bd9Sstevel@tonic-gate 38677c478bd9Sstevel@tonic-gate /* Initialize the dummy stray file system type. */ 38687c478bd9Sstevel@tonic-gate 38697c478bd9Sstevel@tonic-gate vfssw[0].vsw_vfsops = vfs_strayops; 38707c478bd9Sstevel@tonic-gate 38717c478bd9Sstevel@tonic-gate /* Initialize the dummy EIO file system. */ 38727c478bd9Sstevel@tonic-gate error = vfs_makefsops(EIO_vfsops_template, &EIO_vfsops); 38737c478bd9Sstevel@tonic-gate if (error != 0) { 38747c478bd9Sstevel@tonic-gate cmn_err(CE_WARN, "vfsinit: bad EIO vfs ops template"); 38757c478bd9Sstevel@tonic-gate /* Shouldn't happen, but not bad enough to panic */ 38767c478bd9Sstevel@tonic-gate } 38777c478bd9Sstevel@tonic-gate 38787c478bd9Sstevel@tonic-gate VFS_INIT(&EIO_vfs, EIO_vfsops, (caddr_t)NULL); 38797c478bd9Sstevel@tonic-gate 38807c478bd9Sstevel@tonic-gate /* 38817c478bd9Sstevel@tonic-gate * Default EIO_vfs.vfs_flag to VFS_UNMOUNTED so a lookup 38827c478bd9Sstevel@tonic-gate * on this vfs can immediately notice it's invalid. 38837c478bd9Sstevel@tonic-gate */ 38847c478bd9Sstevel@tonic-gate EIO_vfs.vfs_flag |= VFS_UNMOUNTED; 38857c478bd9Sstevel@tonic-gate 38867c478bd9Sstevel@tonic-gate /* 38877c478bd9Sstevel@tonic-gate * Call the init routines of non-loadable filesystems only. 38887c478bd9Sstevel@tonic-gate * Filesystems which are loaded as separate modules will be 38897c478bd9Sstevel@tonic-gate * initialized by the module loading code instead. 38907c478bd9Sstevel@tonic-gate */ 38917c478bd9Sstevel@tonic-gate 38927c478bd9Sstevel@tonic-gate for (vswp = &vfssw[1]; vswp < &vfssw[nfstype]; vswp++) { 38937c478bd9Sstevel@tonic-gate RLOCK_VFSSW(); 38947c478bd9Sstevel@tonic-gate if (vswp->vsw_init != NULL) 38957c478bd9Sstevel@tonic-gate (*vswp->vsw_init)(vswp - vfssw, vswp->vsw_name); 38967c478bd9Sstevel@tonic-gate RUNLOCK_VFSSW(); 38977c478bd9Sstevel@tonic-gate } 38985a59a8b3Srsb 38995a59a8b3Srsb vopstats_startup(); 390082c7f3c4Srsb 390182c7f3c4Srsb if (vopstats_enabled) { 390282c7f3c4Srsb /* EIO_vfs can collect stats, but we don't retrieve them */ 390382c7f3c4Srsb initialize_vopstats(&EIO_vfs.vfs_vopstats); 390482c7f3c4Srsb EIO_vfs.vfs_fstypevsp = NULL; 390582c7f3c4Srsb EIO_vfs.vfs_vskap = NULL; 390682c7f3c4Srsb EIO_vfs.vfs_flag |= VFS_STATS; 390782c7f3c4Srsb } 39087c478bd9Sstevel@tonic-gate } 39097c478bd9Sstevel@tonic-gate 39107c478bd9Sstevel@tonic-gate /* 39117c478bd9Sstevel@tonic-gate * Increments the vfs reference count by one atomically. 39127c478bd9Sstevel@tonic-gate */ 39137c478bd9Sstevel@tonic-gate void 39147c478bd9Sstevel@tonic-gate vfs_hold(vfs_t *vfsp) 39157c478bd9Sstevel@tonic-gate { 39167c478bd9Sstevel@tonic-gate atomic_add_32(&vfsp->vfs_count, 1); 39177c478bd9Sstevel@tonic-gate ASSERT(vfsp->vfs_count != 0); 39187c478bd9Sstevel@tonic-gate } 39197c478bd9Sstevel@tonic-gate 39207c478bd9Sstevel@tonic-gate /* 39217c478bd9Sstevel@tonic-gate * Decrements the vfs reference count by one atomically. When 39227c478bd9Sstevel@tonic-gate * vfs reference count becomes zero, it calls the file system 39237c478bd9Sstevel@tonic-gate * specific vfs_freevfs() to free up the resources. 39247c478bd9Sstevel@tonic-gate */ 39257c478bd9Sstevel@tonic-gate void 39267c478bd9Sstevel@tonic-gate vfs_rele(vfs_t *vfsp) 39277c478bd9Sstevel@tonic-gate { 39287c478bd9Sstevel@tonic-gate ASSERT(vfsp->vfs_count != 0); 39297c478bd9Sstevel@tonic-gate if (atomic_add_32_nv(&vfsp->vfs_count, -1) == 0) { 39307c478bd9Sstevel@tonic-gate VFS_FREEVFS(vfsp); 39317c478bd9Sstevel@tonic-gate if (vfsp->vfs_zone) 39327c478bd9Sstevel@tonic-gate zone_rele(vfsp->vfs_zone); 39337c478bd9Sstevel@tonic-gate vfs_freemnttab(vfsp); 3934ddfcde86Srsb if (vfsp->vfs_implp) 3935ddfcde86Srsb vfsimpl_teardown(vfsp); 39367c478bd9Sstevel@tonic-gate sema_destroy(&vfsp->vfs_reflock); 39377c478bd9Sstevel@tonic-gate kmem_free(vfsp, sizeof (*vfsp)); 39387c478bd9Sstevel@tonic-gate } 39397c478bd9Sstevel@tonic-gate } 39407c478bd9Sstevel@tonic-gate 39417c478bd9Sstevel@tonic-gate /* 39427c478bd9Sstevel@tonic-gate * Generic operations vector support. 39437c478bd9Sstevel@tonic-gate * 39447c478bd9Sstevel@tonic-gate * This is used to build operations vectors for both the vfs and vnode. 39457c478bd9Sstevel@tonic-gate * It's normally called only when a file system is loaded. 39467c478bd9Sstevel@tonic-gate * 39477c478bd9Sstevel@tonic-gate * There are many possible algorithms for this, including the following: 39487c478bd9Sstevel@tonic-gate * 39497c478bd9Sstevel@tonic-gate * (1) scan the list of known operations; for each, see if the file system 39507c478bd9Sstevel@tonic-gate * includes an entry for it, and fill it in as appropriate. 39517c478bd9Sstevel@tonic-gate * 39527c478bd9Sstevel@tonic-gate * (2) set up defaults for all known operations. scan the list of ops 39537c478bd9Sstevel@tonic-gate * supplied by the file system; for each which is both supplied and 39547c478bd9Sstevel@tonic-gate * known, fill it in. 39557c478bd9Sstevel@tonic-gate * 39567c478bd9Sstevel@tonic-gate * (3) sort the lists of known ops & supplied ops; scan the list, filling 39577c478bd9Sstevel@tonic-gate * in entries as we go. 39587c478bd9Sstevel@tonic-gate * 39597c478bd9Sstevel@tonic-gate * we choose (1) for simplicity, and because performance isn't critical here. 39607c478bd9Sstevel@tonic-gate * note that (2) could be sped up using a precomputed hash table on known ops. 39617c478bd9Sstevel@tonic-gate * (3) could be faster than either, but only if the lists were very large or 39627c478bd9Sstevel@tonic-gate * supplied in sorted order. 39637c478bd9Sstevel@tonic-gate * 39647c478bd9Sstevel@tonic-gate */ 39657c478bd9Sstevel@tonic-gate 39667c478bd9Sstevel@tonic-gate int 39677c478bd9Sstevel@tonic-gate fs_build_vector(void *vector, int *unused_ops, 39687c478bd9Sstevel@tonic-gate const fs_operation_trans_def_t *translation, 39697c478bd9Sstevel@tonic-gate const fs_operation_def_t *operations) 39707c478bd9Sstevel@tonic-gate { 39717c478bd9Sstevel@tonic-gate int i, num_trans, num_ops, used; 39727c478bd9Sstevel@tonic-gate 39737c478bd9Sstevel@tonic-gate /* Count the number of translations and the number of supplied */ 39747c478bd9Sstevel@tonic-gate /* operations. */ 39757c478bd9Sstevel@tonic-gate 39767c478bd9Sstevel@tonic-gate { 39777c478bd9Sstevel@tonic-gate const fs_operation_trans_def_t *p; 39787c478bd9Sstevel@tonic-gate 39797c478bd9Sstevel@tonic-gate for (num_trans = 0, p = translation; 39807c478bd9Sstevel@tonic-gate p->name != NULL; 39817c478bd9Sstevel@tonic-gate num_trans++, p++) 39827c478bd9Sstevel@tonic-gate ; 39837c478bd9Sstevel@tonic-gate } 39847c478bd9Sstevel@tonic-gate 39857c478bd9Sstevel@tonic-gate { 39867c478bd9Sstevel@tonic-gate const fs_operation_def_t *p; 39877c478bd9Sstevel@tonic-gate 39887c478bd9Sstevel@tonic-gate for (num_ops = 0, p = operations; 39897c478bd9Sstevel@tonic-gate p->name != NULL; 39907c478bd9Sstevel@tonic-gate num_ops++, p++) 39917c478bd9Sstevel@tonic-gate ; 39927c478bd9Sstevel@tonic-gate } 39937c478bd9Sstevel@tonic-gate 39947c478bd9Sstevel@tonic-gate /* Walk through each operation known to our caller. There will be */ 39957c478bd9Sstevel@tonic-gate /* one entry in the supplied "translation table" for each. */ 39967c478bd9Sstevel@tonic-gate 39977c478bd9Sstevel@tonic-gate used = 0; 39987c478bd9Sstevel@tonic-gate 39997c478bd9Sstevel@tonic-gate for (i = 0; i < num_trans; i++) { 40007c478bd9Sstevel@tonic-gate int j, found; 40017c478bd9Sstevel@tonic-gate char *curname; 40027c478bd9Sstevel@tonic-gate fs_generic_func_p result; 40037c478bd9Sstevel@tonic-gate fs_generic_func_p *location; 40047c478bd9Sstevel@tonic-gate 40057c478bd9Sstevel@tonic-gate curname = translation[i].name; 40067c478bd9Sstevel@tonic-gate 40077c478bd9Sstevel@tonic-gate /* Look for a matching operation in the list supplied by the */ 40087c478bd9Sstevel@tonic-gate /* file system. */ 40097c478bd9Sstevel@tonic-gate 40107c478bd9Sstevel@tonic-gate found = 0; 40117c478bd9Sstevel@tonic-gate 40127c478bd9Sstevel@tonic-gate for (j = 0; j < num_ops; j++) { 40137c478bd9Sstevel@tonic-gate if (strcmp(operations[j].name, curname) == 0) { 40147c478bd9Sstevel@tonic-gate used++; 40157c478bd9Sstevel@tonic-gate found = 1; 40167c478bd9Sstevel@tonic-gate break; 40177c478bd9Sstevel@tonic-gate } 40187c478bd9Sstevel@tonic-gate } 40197c478bd9Sstevel@tonic-gate 40207c478bd9Sstevel@tonic-gate /* If the file system is using a "placeholder" for default */ 40217c478bd9Sstevel@tonic-gate /* or error functions, grab the appropriate function out of */ 40227c478bd9Sstevel@tonic-gate /* the translation table. If the file system didn't supply */ 40237c478bd9Sstevel@tonic-gate /* this operation at all, use the default function. */ 40247c478bd9Sstevel@tonic-gate 40257c478bd9Sstevel@tonic-gate if (found) { 40267c478bd9Sstevel@tonic-gate result = operations[j].func; 40277c478bd9Sstevel@tonic-gate if (result == fs_default) { 40287c478bd9Sstevel@tonic-gate result = translation[i].defaultFunc; 40297c478bd9Sstevel@tonic-gate } else if (result == fs_error) { 40307c478bd9Sstevel@tonic-gate result = translation[i].errorFunc; 40317c478bd9Sstevel@tonic-gate } else if (result == NULL) { 40327c478bd9Sstevel@tonic-gate /* Null values are PROHIBITED */ 40337c478bd9Sstevel@tonic-gate return (EINVAL); 40347c478bd9Sstevel@tonic-gate } 40357c478bd9Sstevel@tonic-gate } else { 40367c478bd9Sstevel@tonic-gate result = translation[i].defaultFunc; 40377c478bd9Sstevel@tonic-gate } 40387c478bd9Sstevel@tonic-gate 40397c478bd9Sstevel@tonic-gate /* Now store the function into the operations vector. */ 40407c478bd9Sstevel@tonic-gate 40417c478bd9Sstevel@tonic-gate location = (fs_generic_func_p *) 40427c478bd9Sstevel@tonic-gate (((char *)vector) + translation[i].offset); 40437c478bd9Sstevel@tonic-gate 40447c478bd9Sstevel@tonic-gate *location = result; 40457c478bd9Sstevel@tonic-gate } 40467c478bd9Sstevel@tonic-gate 40477c478bd9Sstevel@tonic-gate *unused_ops = num_ops - used; 40487c478bd9Sstevel@tonic-gate 40497c478bd9Sstevel@tonic-gate return (0); 40507c478bd9Sstevel@tonic-gate } 40517c478bd9Sstevel@tonic-gate 40527c478bd9Sstevel@tonic-gate /* Placeholder functions, should never be called. */ 40537c478bd9Sstevel@tonic-gate 40547c478bd9Sstevel@tonic-gate int 40557c478bd9Sstevel@tonic-gate fs_error(void) 40567c478bd9Sstevel@tonic-gate { 40577c478bd9Sstevel@tonic-gate cmn_err(CE_PANIC, "fs_error called"); 40587c478bd9Sstevel@tonic-gate return (0); 40597c478bd9Sstevel@tonic-gate } 40607c478bd9Sstevel@tonic-gate 40617c478bd9Sstevel@tonic-gate int 40627c478bd9Sstevel@tonic-gate fs_default(void) 40637c478bd9Sstevel@tonic-gate { 40647c478bd9Sstevel@tonic-gate cmn_err(CE_PANIC, "fs_default called"); 40657c478bd9Sstevel@tonic-gate return (0); 40667c478bd9Sstevel@tonic-gate } 40677c478bd9Sstevel@tonic-gate 40687c478bd9Sstevel@tonic-gate #ifdef __sparc 40697c478bd9Sstevel@tonic-gate 40707c478bd9Sstevel@tonic-gate /* 40717c478bd9Sstevel@tonic-gate * Part of the implementation of booting off a mirrored root 40727c478bd9Sstevel@tonic-gate * involves a change of dev_t for the root device. To 40737c478bd9Sstevel@tonic-gate * accomplish this, first remove the existing hash table 40747c478bd9Sstevel@tonic-gate * entry for the root device, convert to the new dev_t, 40757c478bd9Sstevel@tonic-gate * then re-insert in the hash table at the head of the list. 40767c478bd9Sstevel@tonic-gate */ 40777c478bd9Sstevel@tonic-gate void 40787c478bd9Sstevel@tonic-gate vfs_root_redev(vfs_t *vfsp, dev_t ndev, int fstype) 40797c478bd9Sstevel@tonic-gate { 40807c478bd9Sstevel@tonic-gate vfs_list_lock(); 40817c478bd9Sstevel@tonic-gate 40827c478bd9Sstevel@tonic-gate vfs_hash_remove(vfsp); 40837c478bd9Sstevel@tonic-gate 40847c478bd9Sstevel@tonic-gate vfsp->vfs_dev = ndev; 40857c478bd9Sstevel@tonic-gate vfs_make_fsid(&vfsp->vfs_fsid, ndev, fstype); 40867c478bd9Sstevel@tonic-gate 40877c478bd9Sstevel@tonic-gate vfs_hash_add(vfsp, 1); 40887c478bd9Sstevel@tonic-gate 40897c478bd9Sstevel@tonic-gate vfs_list_unlock(); 40907c478bd9Sstevel@tonic-gate } 40917c478bd9Sstevel@tonic-gate 40927c478bd9Sstevel@tonic-gate #else /* x86 NEWBOOT */ 40937c478bd9Sstevel@tonic-gate 40947c478bd9Sstevel@tonic-gate int 40957c478bd9Sstevel@tonic-gate rootconf() 40967c478bd9Sstevel@tonic-gate { 40977c478bd9Sstevel@tonic-gate int error; 40987c478bd9Sstevel@tonic-gate struct vfssw *vsw; 40997c478bd9Sstevel@tonic-gate extern void pm_init(); 41007c478bd9Sstevel@tonic-gate char *fstyp; 41017c478bd9Sstevel@tonic-gate 41027c478bd9Sstevel@tonic-gate fstyp = getrootfs(); 41037c478bd9Sstevel@tonic-gate 41047c478bd9Sstevel@tonic-gate if (error = clboot_rootconf()) 41057c478bd9Sstevel@tonic-gate return (error); 41067c478bd9Sstevel@tonic-gate 41077c478bd9Sstevel@tonic-gate if (modload("fs", fstyp) == -1) 41087c478bd9Sstevel@tonic-gate cmn_err(CE_PANIC, "Cannot _init %s module\n", fstyp); 41097c478bd9Sstevel@tonic-gate 41107c478bd9Sstevel@tonic-gate RLOCK_VFSSW(); 41117c478bd9Sstevel@tonic-gate vsw = vfs_getvfsswbyname(fstyp); 41127c478bd9Sstevel@tonic-gate RUNLOCK_VFSSW(); 41137c478bd9Sstevel@tonic-gate VFS_INIT(rootvfs, &vsw->vsw_vfsops, 0); 41147c478bd9Sstevel@tonic-gate VFS_HOLD(rootvfs); 41157c478bd9Sstevel@tonic-gate 41167c478bd9Sstevel@tonic-gate /* always mount readonly first */ 41177c478bd9Sstevel@tonic-gate rootvfs->vfs_flag |= VFS_RDONLY; 41187c478bd9Sstevel@tonic-gate 41197c478bd9Sstevel@tonic-gate pm_init(); 41207c478bd9Sstevel@tonic-gate 41217c478bd9Sstevel@tonic-gate if (netboot) 41227c478bd9Sstevel@tonic-gate (void) strplumb(); 41237c478bd9Sstevel@tonic-gate 41247c478bd9Sstevel@tonic-gate error = VFS_MOUNTROOT(rootvfs, ROOT_INIT); 41257c478bd9Sstevel@tonic-gate vfs_unrefvfssw(vsw); 41267c478bd9Sstevel@tonic-gate rootdev = rootvfs->vfs_dev; 41277c478bd9Sstevel@tonic-gate 41287c478bd9Sstevel@tonic-gate if (error) 41297c478bd9Sstevel@tonic-gate cmn_err(CE_PANIC, "cannot mount root path %s", svm_bootpath); 41307c478bd9Sstevel@tonic-gate return (error); 41317c478bd9Sstevel@tonic-gate } 41327c478bd9Sstevel@tonic-gate 41337c478bd9Sstevel@tonic-gate /* 41347c478bd9Sstevel@tonic-gate * XXX this is called by nfs only and should probably be removed 41357c478bd9Sstevel@tonic-gate * If booted with ASKNAME, prompt on the console for a filesystem 41367c478bd9Sstevel@tonic-gate * name and return it. 41377c478bd9Sstevel@tonic-gate */ 41387c478bd9Sstevel@tonic-gate void 41397c478bd9Sstevel@tonic-gate getfsname(char *askfor, char *name, size_t namelen) 41407c478bd9Sstevel@tonic-gate { 41417c478bd9Sstevel@tonic-gate if (boothowto & RB_ASKNAME) { 41427c478bd9Sstevel@tonic-gate printf("%s name: ", askfor); 41437c478bd9Sstevel@tonic-gate console_gets(name, namelen); 41447c478bd9Sstevel@tonic-gate } 41457c478bd9Sstevel@tonic-gate } 41467c478bd9Sstevel@tonic-gate 41477c478bd9Sstevel@tonic-gate /* 41487c478bd9Sstevel@tonic-gate * If server_path exists, then we are booting a diskless 41497c478bd9Sstevel@tonic-gate * client. Otherwise, we default to ufs. Zfs should perhaps be 41507c478bd9Sstevel@tonic-gate * another property. 41517c478bd9Sstevel@tonic-gate */ 41527c478bd9Sstevel@tonic-gate static char * 41537c478bd9Sstevel@tonic-gate getrootfs(void) 41547c478bd9Sstevel@tonic-gate { 41557c478bd9Sstevel@tonic-gate extern char *strplumb_get_netdev_path(void); 41567c478bd9Sstevel@tonic-gate char *propstr = NULL; 41577c478bd9Sstevel@tonic-gate 41587c478bd9Sstevel@tonic-gate /* check fstype property; it should be nfsdyn for diskless */ 41597c478bd9Sstevel@tonic-gate if (ddi_prop_lookup_string(DDI_DEV_T_ANY, ddi_root_node(), 41607c478bd9Sstevel@tonic-gate DDI_PROP_DONTPASS, "fstype", &propstr) 41617c478bd9Sstevel@tonic-gate == DDI_SUCCESS) { 41627c478bd9Sstevel@tonic-gate (void) strncpy(rootfs.bo_fstype, propstr, BO_MAXFSNAME); 41637c478bd9Sstevel@tonic-gate ddi_prop_free(propstr); 41647c478bd9Sstevel@tonic-gate } 41657c478bd9Sstevel@tonic-gate 41667c478bd9Sstevel@tonic-gate if (strncmp(rootfs.bo_fstype, "nfs", 3) != 0) 41677c478bd9Sstevel@tonic-gate return (rootfs.bo_fstype); 41687c478bd9Sstevel@tonic-gate 41697c478bd9Sstevel@tonic-gate ++netboot; 41707c478bd9Sstevel@tonic-gate /* check if path to network interface is specified in bootpath */ 41717c478bd9Sstevel@tonic-gate if (ddi_prop_lookup_string(DDI_DEV_T_ANY, ddi_root_node(), 41727c478bd9Sstevel@tonic-gate DDI_PROP_DONTPASS, "bootpath", &propstr) 41737c478bd9Sstevel@tonic-gate == DDI_SUCCESS) { 41747c478bd9Sstevel@tonic-gate (void) strncpy(rootfs.bo_name, propstr, BO_MAXOBJNAME); 41757c478bd9Sstevel@tonic-gate ddi_prop_free(propstr); 41767c478bd9Sstevel@tonic-gate } else { 41777c478bd9Sstevel@tonic-gate /* attempt to determine netdev_path via boot_mac address */ 41787c478bd9Sstevel@tonic-gate netdev_path = strplumb_get_netdev_path(); 41797c478bd9Sstevel@tonic-gate if (netdev_path == NULL) 41807c478bd9Sstevel@tonic-gate cmn_err(CE_PANIC, 41817c478bd9Sstevel@tonic-gate "Cannot find boot network interface\n"); 41827c478bd9Sstevel@tonic-gate (void) strncpy(rootfs.bo_name, netdev_path, BO_MAXOBJNAME); 41837c478bd9Sstevel@tonic-gate } 41847c478bd9Sstevel@tonic-gate return ("nfs"); 41857c478bd9Sstevel@tonic-gate } 41867c478bd9Sstevel@tonic-gate #endif 4187