12621Sllai1 /* 22621Sllai1 * CDDL HEADER START 32621Sllai1 * 42621Sllai1 * The contents of this file are subject to the terms of the 52621Sllai1 * Common Development and Distribution License (the "License"). 62621Sllai1 * You may not use this file except in compliance with the License. 72621Sllai1 * 82621Sllai1 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 92621Sllai1 * or http://www.opensolaris.org/os/licensing. 102621Sllai1 * See the License for the specific language governing permissions 112621Sllai1 * and limitations under the License. 122621Sllai1 * 132621Sllai1 * When distributing Covered Code, include this CDDL HEADER in each 142621Sllai1 * file and include the License file at usr/src/OPENSOLARIS.LICENSE. 152621Sllai1 * If applicable, add the following below this CDDL HEADER, with the 162621Sllai1 * fields enclosed by brackets "[]" replaced with your own identifying 172621Sllai1 * information: Portions Copyright [yyyy] [name of copyright owner] 182621Sllai1 * 192621Sllai1 * CDDL HEADER END 202621Sllai1 */ 212621Sllai1 /* 225895Syz147064 * Copyright 2008 Sun Microsystems, Inc. All rights reserved. 232621Sllai1 * Use is subject to license terms. 242621Sllai1 */ 252621Sllai1 262621Sllai1 /* 272621Sllai1 * utility routines for the /dev fs 282621Sllai1 */ 292621Sllai1 302621Sllai1 #include <sys/types.h> 312621Sllai1 #include <sys/param.h> 322621Sllai1 #include <sys/t_lock.h> 332621Sllai1 #include <sys/systm.h> 342621Sllai1 #include <sys/sysmacros.h> 352621Sllai1 #include <sys/user.h> 362621Sllai1 #include <sys/time.h> 372621Sllai1 #include <sys/vfs.h> 382621Sllai1 #include <sys/vnode.h> 392621Sllai1 #include <sys/file.h> 402621Sllai1 #include <sys/fcntl.h> 412621Sllai1 #include <sys/flock.h> 422621Sllai1 #include <sys/kmem.h> 432621Sllai1 #include <sys/uio.h> 442621Sllai1 #include <sys/errno.h> 452621Sllai1 #include <sys/stat.h> 462621Sllai1 #include <sys/cred.h> 472621Sllai1 #include <sys/dirent.h> 482621Sllai1 #include <sys/pathname.h> 492621Sllai1 #include <sys/cmn_err.h> 502621Sllai1 #include <sys/debug.h> 512621Sllai1 #include <sys/mode.h> 522621Sllai1 #include <sys/policy.h> 532621Sllai1 #include <fs/fs_subr.h> 542621Sllai1 #include <sys/mount.h> 552621Sllai1 #include <sys/fs/snode.h> 562621Sllai1 #include <sys/fs/dv_node.h> 572621Sllai1 #include <sys/fs/sdev_impl.h> 582621Sllai1 #include <sys/fs/sdev_node.h> 592621Sllai1 #include <sys/sunndi.h> 602621Sllai1 #include <sys/sunmdi.h> 612621Sllai1 #include <sys/conf.h> 622621Sllai1 #include <sys/proc.h> 632621Sllai1 #include <sys/user.h> 642621Sllai1 #include <sys/modctl.h> 652621Sllai1 662621Sllai1 #ifdef DEBUG 672621Sllai1 int sdev_debug = 0x00000001; 682621Sllai1 int sdev_debug_cache_flags = 0; 692621Sllai1 #endif 702621Sllai1 712621Sllai1 /* 722621Sllai1 * globals 732621Sllai1 */ 742621Sllai1 /* prototype memory vattrs */ 752621Sllai1 vattr_t sdev_vattr_dir = { 762621Sllai1 AT_TYPE|AT_MODE|AT_UID|AT_GID, /* va_mask */ 772621Sllai1 VDIR, /* va_type */ 782621Sllai1 SDEV_DIRMODE_DEFAULT, /* va_mode */ 792621Sllai1 SDEV_UID_DEFAULT, /* va_uid */ 802621Sllai1 SDEV_GID_DEFAULT, /* va_gid */ 812621Sllai1 0, /* va_fsid */ 822621Sllai1 0, /* va_nodeid */ 832621Sllai1 0, /* va_nlink */ 842621Sllai1 0, /* va_size */ 852621Sllai1 0, /* va_atime */ 862621Sllai1 0, /* va_mtime */ 872621Sllai1 0, /* va_ctime */ 882621Sllai1 0, /* va_rdev */ 892621Sllai1 0, /* va_blksize */ 902621Sllai1 0, /* va_nblocks */ 912621Sllai1 0 /* va_vcode */ 922621Sllai1 }; 932621Sllai1 942621Sllai1 vattr_t sdev_vattr_lnk = { 952621Sllai1 AT_TYPE|AT_MODE, /* va_mask */ 962621Sllai1 VLNK, /* va_type */ 972621Sllai1 SDEV_LNKMODE_DEFAULT, /* va_mode */ 982621Sllai1 SDEV_UID_DEFAULT, /* va_uid */ 992621Sllai1 SDEV_GID_DEFAULT, /* va_gid */ 1002621Sllai1 0, /* va_fsid */ 1012621Sllai1 0, /* va_nodeid */ 1022621Sllai1 0, /* va_nlink */ 1032621Sllai1 0, /* va_size */ 1042621Sllai1 0, /* va_atime */ 1052621Sllai1 0, /* va_mtime */ 1062621Sllai1 0, /* va_ctime */ 1072621Sllai1 0, /* va_rdev */ 1082621Sllai1 0, /* va_blksize */ 1092621Sllai1 0, /* va_nblocks */ 1102621Sllai1 0 /* va_vcode */ 1112621Sllai1 }; 1122621Sllai1 1132621Sllai1 vattr_t sdev_vattr_blk = { 1142621Sllai1 AT_TYPE|AT_MODE|AT_UID|AT_GID, /* va_mask */ 1152621Sllai1 VBLK, /* va_type */ 1162621Sllai1 S_IFBLK | SDEV_DEVMODE_DEFAULT, /* va_mode */ 1172621Sllai1 SDEV_UID_DEFAULT, /* va_uid */ 1182621Sllai1 SDEV_GID_DEFAULT, /* va_gid */ 1192621Sllai1 0, /* va_fsid */ 1202621Sllai1 0, /* va_nodeid */ 1212621Sllai1 0, /* va_nlink */ 1222621Sllai1 0, /* va_size */ 1232621Sllai1 0, /* va_atime */ 1242621Sllai1 0, /* va_mtime */ 1252621Sllai1 0, /* va_ctime */ 1262621Sllai1 0, /* va_rdev */ 1272621Sllai1 0, /* va_blksize */ 1282621Sllai1 0, /* va_nblocks */ 1292621Sllai1 0 /* va_vcode */ 1302621Sllai1 }; 1312621Sllai1 1322621Sllai1 vattr_t sdev_vattr_chr = { 1332621Sllai1 AT_TYPE|AT_MODE|AT_UID|AT_GID, /* va_mask */ 1342621Sllai1 VCHR, /* va_type */ 1352621Sllai1 S_IFCHR | SDEV_DEVMODE_DEFAULT, /* va_mode */ 1362621Sllai1 SDEV_UID_DEFAULT, /* va_uid */ 1372621Sllai1 SDEV_GID_DEFAULT, /* va_gid */ 1382621Sllai1 0, /* va_fsid */ 1392621Sllai1 0, /* va_nodeid */ 1402621Sllai1 0, /* va_nlink */ 1412621Sllai1 0, /* va_size */ 1422621Sllai1 0, /* va_atime */ 1432621Sllai1 0, /* va_mtime */ 1442621Sllai1 0, /* va_ctime */ 1452621Sllai1 0, /* va_rdev */ 1462621Sllai1 0, /* va_blksize */ 1472621Sllai1 0, /* va_nblocks */ 1482621Sllai1 0 /* va_vcode */ 1492621Sllai1 }; 1502621Sllai1 1512621Sllai1 kmem_cache_t *sdev_node_cache; /* sdev_node cache */ 1522621Sllai1 int devtype; /* fstype */ 1532621Sllai1 1542621Sllai1 struct devname_ops *devname_ns_ops; /* default name service directory ops */ 1552621Sllai1 kmutex_t devname_nsmaps_lock; /* protect devname_nsmaps */ 1562621Sllai1 1572621Sllai1 /* static */ 1582621Sllai1 static struct devname_nsmap *devname_nsmaps = NULL; 1592621Sllai1 /* contents from /etc/dev/devname_master */ 1602621Sllai1 static int devname_nsmaps_invalidated = 0; /* "devfsadm -m" has run */ 1612621Sllai1 1622621Sllai1 static struct vnodeops *sdev_get_vop(struct sdev_node *); 1632621Sllai1 static void sdev_set_no_nocache(struct sdev_node *); 1642621Sllai1 static int sdev_get_moduleops(struct sdev_node *); 1652621Sllai1 static fs_operation_def_t *sdev_merge_vtab(const fs_operation_def_t []); 1662621Sllai1 static void sdev_free_vtab(fs_operation_def_t *); 1672621Sllai1 1682621Sllai1 static void 1692621Sllai1 sdev_prof_free(struct sdev_node *dv) 1702621Sllai1 { 1712621Sllai1 ASSERT(!SDEV_IS_GLOBAL(dv)); 1722621Sllai1 if (dv->sdev_prof.dev_name) 1732621Sllai1 nvlist_free(dv->sdev_prof.dev_name); 1742621Sllai1 if (dv->sdev_prof.dev_map) 1752621Sllai1 nvlist_free(dv->sdev_prof.dev_map); 1762621Sllai1 if (dv->sdev_prof.dev_symlink) 1772621Sllai1 nvlist_free(dv->sdev_prof.dev_symlink); 1782621Sllai1 if (dv->sdev_prof.dev_glob_incdir) 1792621Sllai1 nvlist_free(dv->sdev_prof.dev_glob_incdir); 1802621Sllai1 if (dv->sdev_prof.dev_glob_excdir) 1812621Sllai1 nvlist_free(dv->sdev_prof.dev_glob_excdir); 1822621Sllai1 bzero(&dv->sdev_prof, sizeof (dv->sdev_prof)); 1832621Sllai1 } 1842621Sllai1 1856712Stomee /* sdev_node cache constructor */ 1862621Sllai1 /*ARGSUSED1*/ 1872621Sllai1 static int 1882621Sllai1 i_sdev_node_ctor(void *buf, void *cfarg, int flag) 1892621Sllai1 { 1902621Sllai1 struct sdev_node *dv = (struct sdev_node *)buf; 1912621Sllai1 struct vnode *vp; 1922621Sllai1 1932621Sllai1 bzero(buf, sizeof (struct sdev_node)); 1946712Stomee vp = dv->sdev_vnode = vn_alloc(flag); 1956712Stomee if (vp == NULL) { 1966712Stomee return (-1); 1976712Stomee } 1986712Stomee vp->v_data = dv; 1992621Sllai1 rw_init(&dv->sdev_contents, NULL, RW_DEFAULT, NULL); 2002621Sllai1 return (0); 2012621Sllai1 } 2022621Sllai1 2036712Stomee /* sdev_node cache destructor */ 2042621Sllai1 /*ARGSUSED1*/ 2052621Sllai1 static void 2062621Sllai1 i_sdev_node_dtor(void *buf, void *arg) 2072621Sllai1 { 2082621Sllai1 struct sdev_node *dv = (struct sdev_node *)buf; 2092621Sllai1 struct vnode *vp = SDEVTOV(dv); 2102621Sllai1 2112621Sllai1 rw_destroy(&dv->sdev_contents); 2122621Sllai1 vn_free(vp); 2132621Sllai1 } 2142621Sllai1 2152621Sllai1 /* initialize sdev_node cache */ 2162621Sllai1 void 2172621Sllai1 sdev_node_cache_init() 2182621Sllai1 { 2192621Sllai1 int flags = 0; 2202621Sllai1 2212621Sllai1 #ifdef DEBUG 2222621Sllai1 flags = sdev_debug_cache_flags; 2232621Sllai1 if (flags) 2242621Sllai1 sdcmn_err(("cache debug flags 0x%x\n", flags)); 2252621Sllai1 #endif /* DEBUG */ 2262621Sllai1 2272621Sllai1 ASSERT(sdev_node_cache == NULL); 2282621Sllai1 sdev_node_cache = kmem_cache_create("sdev_node_cache", 2292621Sllai1 sizeof (struct sdev_node), 0, i_sdev_node_ctor, i_sdev_node_dtor, 2302621Sllai1 NULL, NULL, NULL, flags); 2312621Sllai1 } 2322621Sllai1 2332621Sllai1 /* destroy sdev_node cache */ 2342621Sllai1 void 2352621Sllai1 sdev_node_cache_fini() 2362621Sllai1 { 2372621Sllai1 ASSERT(sdev_node_cache != NULL); 2382621Sllai1 kmem_cache_destroy(sdev_node_cache); 2392621Sllai1 sdev_node_cache = NULL; 2402621Sllai1 } 2412621Sllai1 2426260Sjg /* 2436260Sjg * Compare two nodes lexographically to balance avl tree 2446260Sjg */ 2456260Sjg static int 2466260Sjg sdev_compare_nodes(const struct sdev_node *dv1, const struct sdev_node *dv2) 2476260Sjg { 2486260Sjg int rv; 2496260Sjg if ((rv = strcmp(dv1->sdev_name, dv2->sdev_name)) == 0) 2506260Sjg return (0); 2516260Sjg return ((rv < 0) ? -1 : 1); 2526260Sjg } 2536260Sjg 2542621Sllai1 void 2552621Sllai1 sdev_set_nodestate(struct sdev_node *dv, sdev_node_state_t state) 2562621Sllai1 { 2572621Sllai1 ASSERT(dv); 2582621Sllai1 ASSERT(RW_WRITE_HELD(&dv->sdev_contents)); 2592621Sllai1 dv->sdev_state = state; 2602621Sllai1 } 2612621Sllai1 2622621Sllai1 static void 2632621Sllai1 sdev_attrinit(struct sdev_node *dv, vattr_t *vap) 2642621Sllai1 { 2652621Sllai1 timestruc_t now; 2662621Sllai1 2672621Sllai1 ASSERT(vap); 2682621Sllai1 2692621Sllai1 dv->sdev_attr = kmem_zalloc(sizeof (struct vattr), KM_SLEEP); 2702621Sllai1 *dv->sdev_attr = *vap; 2712621Sllai1 2722621Sllai1 dv->sdev_attr->va_mode = MAKEIMODE(vap->va_type, vap->va_mode); 2732621Sllai1 2742621Sllai1 gethrestime(&now); 2752621Sllai1 dv->sdev_attr->va_atime = now; 2762621Sllai1 dv->sdev_attr->va_mtime = now; 2772621Sllai1 dv->sdev_attr->va_ctime = now; 2782621Sllai1 } 2792621Sllai1 2802621Sllai1 /* alloc and initialize a sdev_node */ 2812621Sllai1 int 2822621Sllai1 sdev_nodeinit(struct sdev_node *ddv, char *nm, struct sdev_node **newdv, 2832621Sllai1 vattr_t *vap) 2842621Sllai1 { 2852621Sllai1 struct sdev_node *dv = NULL; 2862621Sllai1 struct vnode *vp; 2872621Sllai1 size_t nmlen, len; 2882621Sllai1 devname_handle_t *dhl; 2892621Sllai1 2902621Sllai1 nmlen = strlen(nm) + 1; 2912621Sllai1 if (nmlen > MAXNAMELEN) { 2922621Sllai1 sdcmn_err9(("sdev_nodeinit: node name %s" 2932621Sllai1 " too long\n", nm)); 2942621Sllai1 *newdv = NULL; 2952621Sllai1 return (ENAMETOOLONG); 2962621Sllai1 } 2972621Sllai1 2982621Sllai1 dv = kmem_cache_alloc(sdev_node_cache, KM_SLEEP); 2992621Sllai1 3002621Sllai1 dv->sdev_name = kmem_alloc(nmlen, KM_SLEEP); 3012621Sllai1 bcopy(nm, dv->sdev_name, nmlen); 3022621Sllai1 dv->sdev_namelen = nmlen - 1; /* '\0' not included */ 3032621Sllai1 len = strlen(ddv->sdev_path) + strlen(nm) + 2; 3042621Sllai1 dv->sdev_path = kmem_alloc(len, KM_SLEEP); 3052621Sllai1 (void) snprintf(dv->sdev_path, len, "%s/%s", ddv->sdev_path, nm); 3062621Sllai1 /* overwritten for VLNK nodes */ 3072621Sllai1 dv->sdev_symlink = NULL; 3082621Sllai1 3092621Sllai1 vp = SDEVTOV(dv); 3102621Sllai1 vn_reinit(vp); 3112621Sllai1 vp->v_vfsp = SDEVTOV(ddv)->v_vfsp; 3122621Sllai1 if (vap) 3132621Sllai1 vp->v_type = vap->va_type; 3142621Sllai1 3152621Sllai1 /* 3162621Sllai1 * initialized to the parent's vnodeops. 3172621Sllai1 * maybe overwriten for a VDIR 3182621Sllai1 */ 3192621Sllai1 vn_setops(vp, vn_getops(SDEVTOV(ddv))); 3202621Sllai1 vn_exists(vp); 3212621Sllai1 3222621Sllai1 dv->sdev_dotdot = NULL; 3232621Sllai1 dv->sdev_attrvp = NULL; 3242621Sllai1 if (vap) { 3252621Sllai1 sdev_attrinit(dv, vap); 3262621Sllai1 } else { 3272621Sllai1 dv->sdev_attr = NULL; 3282621Sllai1 } 3292621Sllai1 3302621Sllai1 dv->sdev_ino = sdev_mkino(dv); 3312621Sllai1 dv->sdev_nlink = 0; /* updated on insert */ 3322621Sllai1 dv->sdev_flags = ddv->sdev_flags; /* inherit from the parent first */ 3332621Sllai1 dv->sdev_flags |= SDEV_BUILD; 3342621Sllai1 mutex_init(&dv->sdev_lookup_lock, NULL, MUTEX_DEFAULT, NULL); 3352621Sllai1 cv_init(&dv->sdev_lookup_cv, NULL, CV_DEFAULT, NULL); 3362621Sllai1 if (SDEV_IS_GLOBAL(ddv)) { 3372621Sllai1 dv->sdev_flags |= SDEV_GLOBAL; 3382621Sllai1 dv->sdev_mapinfo = NULL; 3392621Sllai1 dhl = &(dv->sdev_handle); 3402621Sllai1 dhl->dh_data = dv; 3412621Sllai1 dhl->dh_spec = DEVNAME_NS_NONE; 3422621Sllai1 dhl->dh_args = NULL; 3432621Sllai1 sdev_set_no_nocache(dv); 3442621Sllai1 dv->sdev_gdir_gen = 0; 3452621Sllai1 } else { 3462621Sllai1 dv->sdev_flags &= ~SDEV_GLOBAL; 3472621Sllai1 dv->sdev_origin = NULL; /* set later */ 3482621Sllai1 bzero(&dv->sdev_prof, sizeof (dv->sdev_prof)); 3492621Sllai1 dv->sdev_ldir_gen = 0; 3502621Sllai1 dv->sdev_devtree_gen = 0; 3512621Sllai1 } 3522621Sllai1 3532621Sllai1 rw_enter(&dv->sdev_contents, RW_WRITER); 3542621Sllai1 sdev_set_nodestate(dv, SDEV_INIT); 3552621Sllai1 rw_exit(&dv->sdev_contents); 3562621Sllai1 *newdv = dv; 3572621Sllai1 3582621Sllai1 return (0); 3592621Sllai1 } 3602621Sllai1 3612621Sllai1 /* 3622621Sllai1 * transition a sdev_node into SDEV_READY state 3632621Sllai1 */ 3642621Sllai1 int 3652621Sllai1 sdev_nodeready(struct sdev_node *dv, struct vattr *vap, struct vnode *avp, 3662621Sllai1 void *args, struct cred *cred) 3672621Sllai1 { 3682621Sllai1 int error = 0; 3692621Sllai1 struct vnode *vp = SDEVTOV(dv); 3702621Sllai1 vtype_t type; 3712621Sllai1 3722621Sllai1 ASSERT(dv && (dv->sdev_state != SDEV_READY) && vap); 3732621Sllai1 3742621Sllai1 type = vap->va_type; 3752621Sllai1 vp->v_type = type; 3762621Sllai1 vp->v_rdev = vap->va_rdev; 3772621Sllai1 rw_enter(&dv->sdev_contents, RW_WRITER); 3782621Sllai1 if (type == VDIR) { 3792621Sllai1 dv->sdev_nlink = 2; 3802621Sllai1 dv->sdev_flags &= ~SDEV_PERSIST; 3812621Sllai1 dv->sdev_flags &= ~SDEV_DYNAMIC; 3822621Sllai1 vn_setops(vp, sdev_get_vop(dv)); /* from internal vtab */ 3832621Sllai1 error = sdev_get_moduleops(dv); /* from plug-in module */ 3842621Sllai1 ASSERT(dv->sdev_dotdot); 3852621Sllai1 ASSERT(SDEVTOV(dv->sdev_dotdot)->v_type == VDIR); 3862621Sllai1 vp->v_rdev = SDEVTOV(dv->sdev_dotdot)->v_rdev; 3876260Sjg avl_create(&dv->sdev_entries, 3886260Sjg (int (*)(const void *, const void *))sdev_compare_nodes, 3896260Sjg sizeof (struct sdev_node), 3906260Sjg offsetof(struct sdev_node, sdev_avllink)); 3912621Sllai1 } else if (type == VLNK) { 3922621Sllai1 ASSERT(args); 3932621Sllai1 dv->sdev_nlink = 1; 3942621Sllai1 dv->sdev_symlink = i_ddi_strdup((char *)args, KM_SLEEP); 3952621Sllai1 } else { 3962621Sllai1 dv->sdev_nlink = 1; 3972621Sllai1 } 3982621Sllai1 3992621Sllai1 if (!(SDEV_IS_GLOBAL(dv))) { 4002621Sllai1 dv->sdev_origin = (struct sdev_node *)args; 4012621Sllai1 dv->sdev_flags &= ~SDEV_PERSIST; 4022621Sllai1 } 4032621Sllai1 4042621Sllai1 /* 4052621Sllai1 * shadow node is created here OR 4062621Sllai1 * if failed (indicated by dv->sdev_attrvp == NULL), 4072621Sllai1 * created later in sdev_setattr 4082621Sllai1 */ 4092621Sllai1 if (avp) { 4102621Sllai1 dv->sdev_attrvp = avp; 4112621Sllai1 } else { 4122621Sllai1 if (dv->sdev_attr == NULL) 4132621Sllai1 sdev_attrinit(dv, vap); 4142621Sllai1 else 4152621Sllai1 *dv->sdev_attr = *vap; 4162621Sllai1 4172621Sllai1 if ((SDEV_IS_PERSIST(dv) && (dv->sdev_attrvp == NULL)) || 4182621Sllai1 ((SDEVTOV(dv)->v_type == VDIR) && 4196335Sjg (dv->sdev_attrvp == NULL))) { 4202621Sllai1 error = sdev_shadow_node(dv, cred); 4216335Sjg } 4222621Sllai1 } 4232621Sllai1 4246335Sjg if (error == 0) { 4256335Sjg /* transition to READY state */ 4266335Sjg sdev_set_nodestate(dv, SDEV_READY); 4276335Sjg sdev_nc_node_exists(dv); 4286335Sjg } else { 4296335Sjg sdev_set_nodestate(dv, SDEV_ZOMBIE); 4306335Sjg } 4312621Sllai1 rw_exit(&dv->sdev_contents); 4322621Sllai1 return (error); 4332621Sllai1 } 4342621Sllai1 4352621Sllai1 /* 4362621Sllai1 * setting ZOMBIE state 4372621Sllai1 */ 4382621Sllai1 static int 4392621Sllai1 sdev_nodezombied(struct sdev_node *dv) 4402621Sllai1 { 4412621Sllai1 rw_enter(&dv->sdev_contents, RW_WRITER); 4422621Sllai1 sdev_set_nodestate(dv, SDEV_ZOMBIE); 4432621Sllai1 rw_exit(&dv->sdev_contents); 4442621Sllai1 return (0); 4452621Sllai1 } 4462621Sllai1 4472621Sllai1 /* 4482621Sllai1 * Build the VROOT sdev_node. 4492621Sllai1 */ 4502621Sllai1 /*ARGSUSED*/ 4512621Sllai1 struct sdev_node * 4522621Sllai1 sdev_mkroot(struct vfs *vfsp, dev_t devdev, struct vnode *mvp, 4532621Sllai1 struct vnode *avp, struct cred *cred) 4542621Sllai1 { 4552621Sllai1 struct sdev_node *dv; 4562621Sllai1 struct vnode *vp; 4572621Sllai1 char devdir[] = "/dev"; 4582621Sllai1 4592621Sllai1 ASSERT(sdev_node_cache != NULL); 4602621Sllai1 ASSERT(avp); 4612621Sllai1 dv = kmem_cache_alloc(sdev_node_cache, KM_SLEEP); 4622621Sllai1 vp = SDEVTOV(dv); 4632621Sllai1 vn_reinit(vp); 4642621Sllai1 vp->v_flag |= VROOT; 4652621Sllai1 vp->v_vfsp = vfsp; 4662621Sllai1 vp->v_type = VDIR; 4672621Sllai1 vp->v_rdev = devdev; 4682621Sllai1 vn_setops(vp, sdev_vnodeops); /* apply the default vnodeops at /dev */ 4692621Sllai1 vn_exists(vp); 4702621Sllai1 4712621Sllai1 if (vfsp->vfs_mntpt) 4722621Sllai1 dv->sdev_name = i_ddi_strdup( 4732621Sllai1 (char *)refstr_value(vfsp->vfs_mntpt), KM_SLEEP); 4742621Sllai1 else 4752621Sllai1 /* vfs_mountdev1 set mount point later */ 4762621Sllai1 dv->sdev_name = i_ddi_strdup("/dev", KM_SLEEP); 4772621Sllai1 dv->sdev_namelen = strlen(dv->sdev_name); /* '\0' not included */ 4782621Sllai1 dv->sdev_path = i_ddi_strdup(devdir, KM_SLEEP); 4792621Sllai1 dv->sdev_ino = SDEV_ROOTINO; 4802621Sllai1 dv->sdev_nlink = 2; /* name + . (no sdev_insert) */ 4812621Sllai1 dv->sdev_dotdot = dv; /* .. == self */ 4822621Sllai1 dv->sdev_attrvp = avp; 4832621Sllai1 dv->sdev_attr = NULL; 4842621Sllai1 mutex_init(&dv->sdev_lookup_lock, NULL, MUTEX_DEFAULT, NULL); 4852621Sllai1 cv_init(&dv->sdev_lookup_cv, NULL, CV_DEFAULT, NULL); 4862621Sllai1 if (strcmp(dv->sdev_name, "/dev") == 0) { 4872621Sllai1 mutex_init(&devname_nsmaps_lock, NULL, MUTEX_DEFAULT, NULL); 4882621Sllai1 dv->sdev_mapinfo = NULL; 4892621Sllai1 dv->sdev_flags = SDEV_BUILD|SDEV_GLOBAL|SDEV_PERSIST; 4902621Sllai1 bzero(&dv->sdev_handle, sizeof (dv->sdev_handle)); 4912621Sllai1 dv->sdev_gdir_gen = 0; 4922621Sllai1 } else { 4932621Sllai1 dv->sdev_flags = SDEV_BUILD; 4942621Sllai1 dv->sdev_flags &= ~SDEV_PERSIST; 4952621Sllai1 bzero(&dv->sdev_prof, sizeof (dv->sdev_prof)); 4962621Sllai1 dv->sdev_ldir_gen = 0; 4972621Sllai1 dv->sdev_devtree_gen = 0; 4982621Sllai1 } 4992621Sllai1 5006260Sjg avl_create(&dv->sdev_entries, 5016260Sjg (int (*)(const void *, const void *))sdev_compare_nodes, 5026260Sjg sizeof (struct sdev_node), 5036260Sjg offsetof(struct sdev_node, sdev_avllink)); 5046260Sjg 5052621Sllai1 rw_enter(&dv->sdev_contents, RW_WRITER); 5062621Sllai1 sdev_set_nodestate(dv, SDEV_READY); 5072621Sllai1 rw_exit(&dv->sdev_contents); 5082621Sllai1 sdev_nc_node_exists(dv); 5092621Sllai1 return (dv); 5102621Sllai1 } 5112621Sllai1 5122621Sllai1 /* 5132621Sllai1 * 1. load the module 5142621Sllai1 * 2. modload invokes sdev_module_register, which in turn sets 5152621Sllai1 * the dv->sdev_mapinfo->dir_ops 5162621Sllai1 * 5172621Sllai1 * note: locking order: 5182621Sllai1 * dv->sdev_contents -> map->dir_lock 5192621Sllai1 */ 5202621Sllai1 static int 5212621Sllai1 sdev_get_moduleops(struct sdev_node *dv) 5222621Sllai1 { 5232621Sllai1 int error = 0; 5242621Sllai1 struct devname_nsmap *map = NULL; 5252621Sllai1 char *module; 5262621Sllai1 char *path; 5272621Sllai1 int load = 1; 5282621Sllai1 5292621Sllai1 ASSERT(SDEVTOV(dv)->v_type == VDIR); 5302621Sllai1 5312621Sllai1 if (devname_nsmaps == NULL) 5322621Sllai1 return (0); 5332621Sllai1 5342621Sllai1 if (!sdev_nsmaps_loaded() && !sdev_nsmaps_reloaded()) 5352621Sllai1 return (0); 5362621Sllai1 5372621Sllai1 5382621Sllai1 path = dv->sdev_path; 5392621Sllai1 if ((map = sdev_get_nsmap_by_dir(path, 0))) { 5402621Sllai1 rw_enter(&map->dir_lock, RW_READER); 5412621Sllai1 if (map->dir_invalid) { 5422621Sllai1 if (map->dir_module && map->dir_newmodule && 5432621Sllai1 (strcmp(map->dir_module, 5446065Scth map->dir_newmodule) == 0)) { 5452621Sllai1 load = 0; 5462621Sllai1 } 5472621Sllai1 sdev_replace_nsmap(map, map->dir_newmodule, 5482621Sllai1 map->dir_newmap); 5492621Sllai1 } 5502621Sllai1 5512621Sllai1 module = map->dir_module; 5522621Sllai1 if (module && load) { 5532621Sllai1 sdcmn_err6(("sdev_get_moduleops: " 5542621Sllai1 "load module %s", module)); 5552621Sllai1 rw_exit(&map->dir_lock); 5562621Sllai1 error = modload("devname", module); 5572621Sllai1 sdcmn_err6(("sdev_get_moduleops: error %d\n", error)); 5582621Sllai1 if (error < 0) { 5592621Sllai1 return (-1); 5602621Sllai1 } 5612621Sllai1 } else if (module == NULL) { 5622621Sllai1 /* 5632621Sllai1 * loading the module ops for name services 5642621Sllai1 */ 5652621Sllai1 if (devname_ns_ops == NULL) { 5662621Sllai1 sdcmn_err6(( 5672621Sllai1 "sdev_get_moduleops: modload default\n")); 5682621Sllai1 error = modload("devname", DEVNAME_NSCONFIG); 5692621Sllai1 sdcmn_err6(( 5702621Sllai1 "sdev_get_moduleops: error %d\n", error)); 5712621Sllai1 if (error < 0) { 5722621Sllai1 return (-1); 5732621Sllai1 } 5742621Sllai1 } 5752621Sllai1 5762621Sllai1 if (!rw_tryupgrade(&map->dir_lock)) { 5772621Sllai1 rw_exit(&map->dir_lock); 5782621Sllai1 rw_enter(&map->dir_lock, RW_WRITER); 5792621Sllai1 } 5802621Sllai1 ASSERT(devname_ns_ops); 5812621Sllai1 map->dir_ops = devname_ns_ops; 5822621Sllai1 rw_exit(&map->dir_lock); 5832621Sllai1 } 5842621Sllai1 } 5852621Sllai1 5862621Sllai1 dv->sdev_mapinfo = map; 5872621Sllai1 return (0); 5882621Sllai1 } 5892621Sllai1 5902621Sllai1 /* directory dependent vop table */ 5912621Sllai1 struct sdev_vop_table { 5922621Sllai1 char *vt_name; /* subdirectory name */ 5932621Sllai1 const fs_operation_def_t *vt_service; /* vnodeops table */ 5942621Sllai1 struct vnodeops *vt_vops; /* constructed vop */ 5952621Sllai1 struct vnodeops **vt_global_vops; /* global container for vop */ 5962621Sllai1 int (*vt_vtor)(struct sdev_node *); /* validate sdev_node */ 5972621Sllai1 int vt_flags; 5982621Sllai1 }; 5992621Sllai1 6002621Sllai1 /* 6012621Sllai1 * A nice improvement would be to provide a plug-in mechanism 6022621Sllai1 * for this table instead of a const table. 6032621Sllai1 */ 6042621Sllai1 static struct sdev_vop_table vtab[] = 6052621Sllai1 { 6062621Sllai1 { "pts", devpts_vnodeops_tbl, NULL, &devpts_vnodeops, devpts_validate, 6072621Sllai1 SDEV_DYNAMIC | SDEV_VTOR }, 6082621Sllai1 609*7688SAaron.Zang@Sun.COM { "vt", devvt_vnodeops_tbl, NULL, &devvt_vnodeops, devvt_validate, 610*7688SAaron.Zang@Sun.COM SDEV_DYNAMIC | SDEV_VTOR }, 611*7688SAaron.Zang@Sun.COM 6122621Sllai1 { "zcons", NULL, NULL, NULL, NULL, SDEV_NO_NCACHE }, 6132621Sllai1 6145895Syz147064 { "net", devnet_vnodeops_tbl, NULL, &devnet_vnodeops, devnet_validate, 6155895Syz147064 SDEV_DYNAMIC | SDEV_VTOR }, 6165895Syz147064 6172621Sllai1 { NULL, NULL, NULL, NULL, NULL, 0} 6182621Sllai1 }; 6192621Sllai1 6202621Sllai1 6212621Sllai1 /* 6222621Sllai1 * sets a directory's vnodeops if the directory is in the vtab; 6232621Sllai1 */ 6242621Sllai1 static struct vnodeops * 6252621Sllai1 sdev_get_vop(struct sdev_node *dv) 6262621Sllai1 { 6272621Sllai1 int i; 6282621Sllai1 char *path; 6292621Sllai1 6302621Sllai1 path = dv->sdev_path; 6312621Sllai1 ASSERT(path); 6322621Sllai1 6332621Sllai1 /* gets the relative path to /dev/ */ 6342621Sllai1 path += 5; 6352621Sllai1 6362621Sllai1 /* gets the vtab entry if matches */ 6372621Sllai1 for (i = 0; vtab[i].vt_name; i++) { 6382621Sllai1 if (strcmp(vtab[i].vt_name, path) != 0) 6392621Sllai1 continue; 6402621Sllai1 dv->sdev_flags |= vtab[i].vt_flags; 6412621Sllai1 6422621Sllai1 if (vtab[i].vt_vops) { 6432621Sllai1 if (vtab[i].vt_global_vops) 6442621Sllai1 *(vtab[i].vt_global_vops) = vtab[i].vt_vops; 6452621Sllai1 return (vtab[i].vt_vops); 6462621Sllai1 } 6472621Sllai1 6482621Sllai1 if (vtab[i].vt_service) { 6492621Sllai1 fs_operation_def_t *templ; 6502621Sllai1 templ = sdev_merge_vtab(vtab[i].vt_service); 6512621Sllai1 if (vn_make_ops(vtab[i].vt_name, 6522621Sllai1 (const fs_operation_def_t *)templ, 6532621Sllai1 &vtab[i].vt_vops) != 0) { 6542621Sllai1 cmn_err(CE_PANIC, "%s: malformed vnode ops\n", 6552621Sllai1 vtab[i].vt_name); 6562621Sllai1 /*NOTREACHED*/ 6572621Sllai1 } 6582621Sllai1 if (vtab[i].vt_global_vops) { 6592621Sllai1 *(vtab[i].vt_global_vops) = vtab[i].vt_vops; 6602621Sllai1 } 6612621Sllai1 sdev_free_vtab(templ); 6622621Sllai1 return (vtab[i].vt_vops); 6632621Sllai1 } 6642621Sllai1 return (sdev_vnodeops); 6652621Sllai1 } 6662621Sllai1 6672621Sllai1 /* child inherits the persistence of the parent */ 6682621Sllai1 if (SDEV_IS_PERSIST(dv->sdev_dotdot)) 6692621Sllai1 dv->sdev_flags |= SDEV_PERSIST; 6702621Sllai1 6712621Sllai1 return (sdev_vnodeops); 6722621Sllai1 } 6732621Sllai1 6742621Sllai1 static void 6752621Sllai1 sdev_set_no_nocache(struct sdev_node *dv) 6762621Sllai1 { 6772621Sllai1 int i; 6782621Sllai1 char *path; 6792621Sllai1 6802621Sllai1 ASSERT(dv->sdev_path); 6812621Sllai1 path = dv->sdev_path + strlen("/dev/"); 6822621Sllai1 6832621Sllai1 for (i = 0; vtab[i].vt_name; i++) { 6842621Sllai1 if (strcmp(vtab[i].vt_name, path) == 0) { 6852621Sllai1 if (vtab[i].vt_flags & SDEV_NO_NCACHE) 6862621Sllai1 dv->sdev_flags |= SDEV_NO_NCACHE; 6872621Sllai1 break; 6882621Sllai1 } 6892621Sllai1 } 6902621Sllai1 } 6912621Sllai1 6922621Sllai1 void * 6932621Sllai1 sdev_get_vtor(struct sdev_node *dv) 6942621Sllai1 { 6952621Sllai1 int i; 6962621Sllai1 6972621Sllai1 for (i = 0; vtab[i].vt_name; i++) { 6982621Sllai1 if (strcmp(vtab[i].vt_name, dv->sdev_name) != 0) 6992621Sllai1 continue; 7002621Sllai1 return ((void *)vtab[i].vt_vtor); 7012621Sllai1 } 7022621Sllai1 return (NULL); 7032621Sllai1 } 7042621Sllai1 7052621Sllai1 /* 7062621Sllai1 * Build the base root inode 7072621Sllai1 */ 7082621Sllai1 ino_t 7092621Sllai1 sdev_mkino(struct sdev_node *dv) 7102621Sllai1 { 7112621Sllai1 ino_t ino; 7122621Sllai1 7132621Sllai1 /* 7142621Sllai1 * for now, follow the lead of tmpfs here 7152621Sllai1 * need to someday understand the requirements here 7162621Sllai1 */ 7172621Sllai1 ino = (ino_t)(uint32_t)((uintptr_t)dv >> 3); 7182621Sllai1 ino += SDEV_ROOTINO + 1; 7192621Sllai1 7202621Sllai1 return (ino); 7212621Sllai1 } 7222621Sllai1 7232621Sllai1 static int 7242621Sllai1 sdev_getlink(struct vnode *linkvp, char **link) 7252621Sllai1 { 7262621Sllai1 int err; 7272621Sllai1 char *buf; 7282621Sllai1 struct uio uio = {0}; 7292621Sllai1 struct iovec iov = {0}; 7302621Sllai1 7312621Sllai1 if (linkvp == NULL) 7322621Sllai1 return (ENOENT); 7332621Sllai1 ASSERT(linkvp->v_type == VLNK); 7342621Sllai1 7352621Sllai1 buf = kmem_zalloc(MAXPATHLEN, KM_SLEEP); 7362621Sllai1 iov.iov_base = buf; 7372621Sllai1 iov.iov_len = MAXPATHLEN; 7382621Sllai1 uio.uio_iov = &iov; 7392621Sllai1 uio.uio_iovcnt = 1; 7402621Sllai1 uio.uio_resid = MAXPATHLEN; 7412621Sllai1 uio.uio_segflg = UIO_SYSSPACE; 7422621Sllai1 uio.uio_llimit = MAXOFFSET_T; 7432621Sllai1 7445331Samw err = VOP_READLINK(linkvp, &uio, kcred, NULL); 7452621Sllai1 if (err) { 7462621Sllai1 cmn_err(CE_WARN, "readlink %s failed in dev\n", buf); 7472621Sllai1 kmem_free(buf, MAXPATHLEN); 7482621Sllai1 return (ENOENT); 7492621Sllai1 } 7502621Sllai1 7512621Sllai1 /* mission complete */ 7522621Sllai1 *link = i_ddi_strdup(buf, KM_SLEEP); 7532621Sllai1 kmem_free(buf, MAXPATHLEN); 7542621Sllai1 return (0); 7552621Sllai1 } 7562621Sllai1 7572621Sllai1 /* 7582621Sllai1 * A convenient wrapper to get the devfs node vnode for a device 7592621Sllai1 * minor functionality: readlink() of a /dev symlink 7602621Sllai1 * Place the link into dv->sdev_symlink 7612621Sllai1 */ 7622621Sllai1 static int 7632621Sllai1 sdev_follow_link(struct sdev_node *dv) 7642621Sllai1 { 7652621Sllai1 int err; 7662621Sllai1 struct vnode *linkvp; 7672621Sllai1 char *link = NULL; 7682621Sllai1 7692621Sllai1 linkvp = SDEVTOV(dv); 7702621Sllai1 if (linkvp == NULL) 7712621Sllai1 return (ENOENT); 7722621Sllai1 ASSERT(linkvp->v_type == VLNK); 7732621Sllai1 err = sdev_getlink(linkvp, &link); 7742621Sllai1 if (err) { 7752621Sllai1 (void) sdev_nodezombied(dv); 7762621Sllai1 dv->sdev_symlink = NULL; 7772621Sllai1 return (ENOENT); 7782621Sllai1 } 7792621Sllai1 7802621Sllai1 ASSERT(link != NULL); 7812621Sllai1 dv->sdev_symlink = link; 7822621Sllai1 return (0); 7832621Sllai1 } 7842621Sllai1 7852621Sllai1 static int 7862621Sllai1 sdev_node_check(struct sdev_node *dv, struct vattr *nvap, void *nargs) 7872621Sllai1 { 7882621Sllai1 vtype_t otype = SDEVTOV(dv)->v_type; 7892621Sllai1 7902621Sllai1 /* 7912621Sllai1 * existing sdev_node has a different type. 7922621Sllai1 */ 7932621Sllai1 if (otype != nvap->va_type) { 7942621Sllai1 sdcmn_err9(("sdev_node_check: existing node " 7952621Sllai1 " %s type %d does not match new node type %d\n", 7962621Sllai1 dv->sdev_name, otype, nvap->va_type)); 7972621Sllai1 return (EEXIST); 7982621Sllai1 } 7992621Sllai1 8002621Sllai1 /* 8012621Sllai1 * For a symlink, the target should be the same. 8022621Sllai1 */ 8032621Sllai1 if (otype == VLNK) { 8042621Sllai1 ASSERT(nargs != NULL); 8052621Sllai1 ASSERT(dv->sdev_symlink != NULL); 8062621Sllai1 if (strcmp(dv->sdev_symlink, (char *)nargs) != 0) { 8072621Sllai1 sdcmn_err9(("sdev_node_check: existing node " 8082621Sllai1 " %s has different symlink %s as new node " 8092621Sllai1 " %s\n", dv->sdev_name, dv->sdev_symlink, 8102621Sllai1 (char *)nargs)); 8112621Sllai1 return (EEXIST); 8122621Sllai1 } 8132621Sllai1 } 8142621Sllai1 8152621Sllai1 return (0); 8162621Sllai1 } 8172621Sllai1 8182621Sllai1 /* 8192621Sllai1 * sdev_mknode - a wrapper for sdev_nodeinit(), sdev_nodeready() 8202621Sllai1 * 8212621Sllai1 * arguments: 8222621Sllai1 * - ddv (parent) 8232621Sllai1 * - nm (child name) 8242621Sllai1 * - newdv (sdev_node for nm is returned here) 8252621Sllai1 * - vap (vattr for the node to be created, va_type should be set. 8266335Sjg * - avp (attribute vnode) 8272621Sllai1 * the defaults should be used if unknown) 8282621Sllai1 * - cred 8292621Sllai1 * - args 8302621Sllai1 * . tnm (for VLNK) 8312621Sllai1 * . global sdev_node (for !SDEV_GLOBAL) 8322621Sllai1 * - state: SDEV_INIT, SDEV_READY 8332621Sllai1 * 8342621Sllai1 * only ddv, nm, newddv, vap, cred are required for sdev_mknode(SDEV_INIT) 8352621Sllai1 * 8362621Sllai1 * NOTE: directory contents writers lock needs to be held before 8372621Sllai1 * calling this routine. 8382621Sllai1 */ 8392621Sllai1 int 8402621Sllai1 sdev_mknode(struct sdev_node *ddv, char *nm, struct sdev_node **newdv, 8412621Sllai1 struct vattr *vap, struct vnode *avp, void *args, struct cred *cred, 8422621Sllai1 sdev_node_state_t state) 8432621Sllai1 { 8442621Sllai1 int error = 0; 8452621Sllai1 sdev_node_state_t node_state; 8462621Sllai1 struct sdev_node *dv = NULL; 8472621Sllai1 8482621Sllai1 ASSERT(state != SDEV_ZOMBIE); 8492621Sllai1 ASSERT(RW_WRITE_HELD(&ddv->sdev_contents)); 8502621Sllai1 8512621Sllai1 if (*newdv) { 8522621Sllai1 dv = *newdv; 8532621Sllai1 } else { 8542621Sllai1 /* allocate and initialize a sdev_node */ 8552621Sllai1 if (ddv->sdev_state == SDEV_ZOMBIE) { 8562621Sllai1 sdcmn_err9(("sdev_mknode: parent %s ZOMBIEd\n", 8572621Sllai1 ddv->sdev_path)); 8582621Sllai1 return (ENOENT); 8592621Sllai1 } 8602621Sllai1 8612621Sllai1 error = sdev_nodeinit(ddv, nm, &dv, vap); 8622621Sllai1 if (error != 0) { 8632621Sllai1 sdcmn_err9(("sdev_mknode: error %d," 8642621Sllai1 " name %s can not be initialized\n", 8652621Sllai1 error, nm)); 8666335Sjg return (error); 8672621Sllai1 } 8682621Sllai1 ASSERT(dv); 8692621Sllai1 8702621Sllai1 /* insert into the directory cache */ 8712621Sllai1 error = sdev_cache_update(ddv, &dv, nm, SDEV_CACHE_ADD); 8722621Sllai1 if (error) { 8732621Sllai1 sdcmn_err9(("sdev_mknode: node %s can not" 8742621Sllai1 " be added into directory cache\n", nm)); 8752621Sllai1 return (ENOENT); 8762621Sllai1 } 8772621Sllai1 } 8782621Sllai1 8792621Sllai1 ASSERT(dv); 8802621Sllai1 node_state = dv->sdev_state; 8812621Sllai1 ASSERT(node_state != SDEV_ZOMBIE); 8822621Sllai1 8832621Sllai1 if (state == SDEV_READY) { 8842621Sllai1 switch (node_state) { 8852621Sllai1 case SDEV_INIT: 8862621Sllai1 error = sdev_nodeready(dv, vap, avp, args, cred); 8872621Sllai1 if (error) { 8882621Sllai1 sdcmn_err9(("sdev_mknode: node %s can NOT" 8892621Sllai1 " be transitioned into READY state, " 8902621Sllai1 "error %d\n", nm, error)); 8912621Sllai1 } 8922621Sllai1 break; 8932621Sllai1 case SDEV_READY: 8942621Sllai1 /* 8952621Sllai1 * Do some sanity checking to make sure 8962621Sllai1 * the existing sdev_node is what has been 8972621Sllai1 * asked for. 8982621Sllai1 */ 8992621Sllai1 error = sdev_node_check(dv, vap, args); 9002621Sllai1 break; 9012621Sllai1 default: 9022621Sllai1 break; 9032621Sllai1 } 9042621Sllai1 } 9052621Sllai1 9062621Sllai1 if (!error) { 9072621Sllai1 *newdv = dv; 9082621Sllai1 ASSERT((*newdv)->sdev_state != SDEV_ZOMBIE); 9092621Sllai1 } else { 9102621Sllai1 SDEV_SIMPLE_RELE(dv); 9112621Sllai1 *newdv = NULL; 9122621Sllai1 } 9132621Sllai1 9142621Sllai1 return (error); 9152621Sllai1 } 9162621Sllai1 9172621Sllai1 /* 9186335Sjg * convenient wrapper to change vp's ATIME, CTIME and MTIME 9192621Sllai1 */ 9202621Sllai1 void 9212621Sllai1 sdev_update_timestamps(struct vnode *vp, cred_t *cred, uint_t mask) 9222621Sllai1 { 9232621Sllai1 struct vattr attr; 9242621Sllai1 timestruc_t now; 9252621Sllai1 int err; 9262621Sllai1 9272621Sllai1 ASSERT(vp); 9282621Sllai1 gethrestime(&now); 9292621Sllai1 if (mask & AT_CTIME) 9302621Sllai1 attr.va_ctime = now; 9312621Sllai1 if (mask & AT_MTIME) 9322621Sllai1 attr.va_mtime = now; 9332621Sllai1 if (mask & AT_ATIME) 9342621Sllai1 attr.va_atime = now; 9352621Sllai1 9362621Sllai1 attr.va_mask = (mask & AT_TIMES); 9372621Sllai1 err = VOP_SETATTR(vp, &attr, 0, cred, NULL); 9382621Sllai1 if (err && (err != EROFS)) { 9392621Sllai1 sdcmn_err(("update timestamps error %d\n", err)); 9402621Sllai1 } 9412621Sllai1 } 9422621Sllai1 9432621Sllai1 /* 9442621Sllai1 * the backing store vnode is released here 9452621Sllai1 */ 9462621Sllai1 /*ARGSUSED1*/ 9472621Sllai1 void 9482621Sllai1 sdev_nodedestroy(struct sdev_node *dv, uint_t flags) 9492621Sllai1 { 9502621Sllai1 /* no references */ 9512621Sllai1 ASSERT(dv->sdev_nlink == 0); 9522621Sllai1 9532621Sllai1 if (dv->sdev_attrvp != NULLVP) { 9542621Sllai1 VN_RELE(dv->sdev_attrvp); 9552621Sllai1 /* 9562621Sllai1 * reset the attrvp so that no more 9572621Sllai1 * references can be made on this already 9582621Sllai1 * vn_rele() vnode 9592621Sllai1 */ 9602621Sllai1 dv->sdev_attrvp = NULLVP; 9612621Sllai1 } 9622621Sllai1 9632621Sllai1 if (dv->sdev_attr != NULL) { 9642621Sllai1 kmem_free(dv->sdev_attr, sizeof (struct vattr)); 9652621Sllai1 dv->sdev_attr = NULL; 9662621Sllai1 } 9672621Sllai1 9682621Sllai1 if (dv->sdev_name != NULL) { 9692621Sllai1 kmem_free(dv->sdev_name, dv->sdev_namelen + 1); 9702621Sllai1 dv->sdev_name = NULL; 9712621Sllai1 } 9722621Sllai1 9732621Sllai1 if (dv->sdev_symlink != NULL) { 9742621Sllai1 kmem_free(dv->sdev_symlink, strlen(dv->sdev_symlink) + 1); 9752621Sllai1 dv->sdev_symlink = NULL; 9762621Sllai1 } 9772621Sllai1 9782621Sllai1 if (dv->sdev_path) { 9792621Sllai1 kmem_free(dv->sdev_path, strlen(dv->sdev_path) + 1); 9802621Sllai1 dv->sdev_path = NULL; 9812621Sllai1 } 9822621Sllai1 9832621Sllai1 if (!SDEV_IS_GLOBAL(dv)) 9842621Sllai1 sdev_prof_free(dv); 9852621Sllai1 9866260Sjg if (SDEVTOV(dv)->v_type == VDIR) { 9876260Sjg ASSERT(SDEV_FIRST_ENTRY(dv) == NULL); 9886260Sjg avl_destroy(&dv->sdev_entries); 9896260Sjg } 9906260Sjg 9912621Sllai1 mutex_destroy(&dv->sdev_lookup_lock); 9922621Sllai1 cv_destroy(&dv->sdev_lookup_cv); 9932621Sllai1 9942621Sllai1 /* return node to initial state as per constructor */ 9952621Sllai1 (void) memset((void *)&dv->sdev_instance_data, 0, 9962621Sllai1 sizeof (dv->sdev_instance_data)); 9972621Sllai1 vn_invalid(SDEVTOV(dv)); 9982621Sllai1 kmem_cache_free(sdev_node_cache, dv); 9992621Sllai1 } 10002621Sllai1 10012621Sllai1 /* 10022621Sllai1 * DIRECTORY CACHE lookup 10032621Sllai1 */ 10042621Sllai1 struct sdev_node * 10052621Sllai1 sdev_findbyname(struct sdev_node *ddv, char *nm) 10062621Sllai1 { 10072621Sllai1 struct sdev_node *dv; 10086260Sjg struct sdev_node dvtmp; 10096260Sjg avl_index_t where; 10102621Sllai1 10112621Sllai1 ASSERT(RW_LOCK_HELD(&ddv->sdev_contents)); 10126260Sjg 10136260Sjg dvtmp.sdev_name = nm; 10146260Sjg dv = avl_find(&ddv->sdev_entries, &dvtmp, &where); 10156260Sjg if (dv) { 10166260Sjg ASSERT(dv->sdev_dotdot == ddv); 10176260Sjg ASSERT(strcmp(dv->sdev_name, nm) == 0); 10186347Sjg SDEV_HOLD(dv); 10196347Sjg return (dv); 10202621Sllai1 } 10212621Sllai1 return (NULL); 10222621Sllai1 } 10232621Sllai1 10242621Sllai1 /* 10252621Sllai1 * Inserts a new sdev_node in a parent directory 10262621Sllai1 */ 10272621Sllai1 void 10282621Sllai1 sdev_direnter(struct sdev_node *ddv, struct sdev_node *dv) 10292621Sllai1 { 10306260Sjg avl_index_t where; 10316260Sjg 10322621Sllai1 ASSERT(RW_WRITE_HELD(&ddv->sdev_contents)); 10332621Sllai1 ASSERT(SDEVTOV(ddv)->v_type == VDIR); 10342621Sllai1 ASSERT(ddv->sdev_nlink >= 2); 10352621Sllai1 ASSERT(dv->sdev_nlink == 0); 10362621Sllai1 10372621Sllai1 dv->sdev_dotdot = ddv; 10386260Sjg VERIFY(avl_find(&ddv->sdev_entries, dv, &where) == NULL); 10396260Sjg avl_insert(&ddv->sdev_entries, dv, where); 10402621Sllai1 ddv->sdev_nlink++; 10412621Sllai1 } 10422621Sllai1 10432621Sllai1 /* 10442621Sllai1 * The following check is needed because while sdev_nodes are linked 10452621Sllai1 * in SDEV_INIT state, they have their link counts incremented only 10462621Sllai1 * in SDEV_READY state. 10472621Sllai1 */ 10482621Sllai1 static void 10492621Sllai1 decr_link(struct sdev_node *dv) 10502621Sllai1 { 10512621Sllai1 if (dv->sdev_state != SDEV_INIT) 10522621Sllai1 dv->sdev_nlink--; 10532621Sllai1 else 10542621Sllai1 ASSERT(dv->sdev_nlink == 0); 10552621Sllai1 } 10562621Sllai1 10572621Sllai1 /* 10582621Sllai1 * Delete an existing dv from directory cache 10592621Sllai1 * 10602621Sllai1 * In the case of a node is still held by non-zero reference count, 10612621Sllai1 * the node is put into ZOMBIE state. Once the reference count 10622621Sllai1 * reaches "0", the node is unlinked and destroyed, 10632621Sllai1 * in sdev_inactive(). 10642621Sllai1 */ 10652621Sllai1 static int 10662621Sllai1 sdev_dirdelete(struct sdev_node *ddv, struct sdev_node *dv) 10672621Sllai1 { 10682621Sllai1 struct vnode *vp; 10692621Sllai1 10702621Sllai1 ASSERT(RW_WRITE_HELD(&ddv->sdev_contents)); 10712621Sllai1 10722621Sllai1 vp = SDEVTOV(dv); 10732621Sllai1 mutex_enter(&vp->v_lock); 10742621Sllai1 10752621Sllai1 /* dv is held still */ 10762621Sllai1 if (vp->v_count > 1) { 10772621Sllai1 rw_enter(&dv->sdev_contents, RW_WRITER); 10782621Sllai1 if (dv->sdev_state == SDEV_READY) { 10792621Sllai1 sdcmn_err9(( 10802621Sllai1 "sdev_delete: node %s busy with count %d\n", 10812621Sllai1 dv->sdev_name, vp->v_count)); 10822621Sllai1 dv->sdev_state = SDEV_ZOMBIE; 10832621Sllai1 } 10842621Sllai1 rw_exit(&dv->sdev_contents); 10852621Sllai1 --vp->v_count; 10862621Sllai1 mutex_exit(&vp->v_lock); 10872621Sllai1 return (EBUSY); 10882621Sllai1 } 10892621Sllai1 ASSERT(vp->v_count == 1); 10902621Sllai1 10912621Sllai1 /* unlink from the memory cache */ 10922621Sllai1 ddv->sdev_nlink--; /* .. to above */ 10932621Sllai1 if (vp->v_type == VDIR) { 10942621Sllai1 decr_link(dv); /* . to self */ 10952621Sllai1 } 10962621Sllai1 10976260Sjg avl_remove(&ddv->sdev_entries, dv); 10982621Sllai1 decr_link(dv); /* name, back to zero */ 10992621Sllai1 vp->v_count--; 11002621Sllai1 mutex_exit(&vp->v_lock); 11012621Sllai1 11022621Sllai1 /* destroy the node */ 11032621Sllai1 sdev_nodedestroy(dv, 0); 11042621Sllai1 return (0); 11052621Sllai1 } 11062621Sllai1 11072621Sllai1 /* 11082621Sllai1 * check if the source is in the path of the target 11092621Sllai1 * 11102621Sllai1 * source and target are different 11112621Sllai1 */ 11122621Sllai1 /*ARGSUSED2*/ 11132621Sllai1 static int 11142621Sllai1 sdev_checkpath(struct sdev_node *sdv, struct sdev_node *tdv, struct cred *cred) 11152621Sllai1 { 11162621Sllai1 int error = 0; 11172621Sllai1 struct sdev_node *dotdot, *dir; 11182621Sllai1 11192621Sllai1 dotdot = tdv->sdev_dotdot; 11202621Sllai1 ASSERT(dotdot); 11212621Sllai1 11222621Sllai1 /* fs root */ 11232621Sllai1 if (dotdot == tdv) { 11242621Sllai1 return (0); 11252621Sllai1 } 11262621Sllai1 11272621Sllai1 for (;;) { 11282621Sllai1 /* 11292621Sllai1 * avoid error cases like 11302621Sllai1 * mv a a/b 11312621Sllai1 * mv a a/b/c 11322621Sllai1 * etc. 11332621Sllai1 */ 11342621Sllai1 if (dotdot == sdv) { 11352621Sllai1 error = EINVAL; 11362621Sllai1 break; 11372621Sllai1 } 11382621Sllai1 11392621Sllai1 dir = dotdot; 11402621Sllai1 dotdot = dir->sdev_dotdot; 11412621Sllai1 11422621Sllai1 /* done checking because root is reached */ 11432621Sllai1 if (dir == dotdot) { 11442621Sllai1 break; 11452621Sllai1 } 11462621Sllai1 } 11472621Sllai1 return (error); 11482621Sllai1 } 11492621Sllai1 11502621Sllai1 int 11512621Sllai1 sdev_rnmnode(struct sdev_node *oddv, struct sdev_node *odv, 11522621Sllai1 struct sdev_node *nddv, struct sdev_node **ndvp, char *nnm, 11532621Sllai1 struct cred *cred) 11542621Sllai1 { 11552621Sllai1 int error = 0; 11562621Sllai1 struct vnode *ovp = SDEVTOV(odv); 11572621Sllai1 struct vnode *nvp; 11582621Sllai1 struct vattr vattr; 11592621Sllai1 int doingdir = (ovp->v_type == VDIR); 11602621Sllai1 char *link = NULL; 11612729Sllai1 int samedir = (oddv == nddv) ? 1 : 0; 11622729Sllai1 int bkstore = 0; 11632729Sllai1 struct sdev_node *idv = NULL; 11642729Sllai1 struct sdev_node *ndv = NULL; 11652729Sllai1 timestruc_t now; 11662729Sllai1 11672729Sllai1 vattr.va_mask = AT_MODE|AT_UID|AT_GID; 11685331Samw error = VOP_GETATTR(ovp, &vattr, 0, cred, NULL); 11692729Sllai1 if (error) 11702729Sllai1 return (error); 11712729Sllai1 11722729Sllai1 if (!samedir) 11732729Sllai1 rw_enter(&oddv->sdev_contents, RW_WRITER); 11742729Sllai1 rw_enter(&nddv->sdev_contents, RW_WRITER); 11752729Sllai1 11762729Sllai1 /* 11772729Sllai1 * the source may have been deleted by another thread before 11782729Sllai1 * we gets here. 11792729Sllai1 */ 11802729Sllai1 if (odv->sdev_state != SDEV_READY) { 11812729Sllai1 error = ENOENT; 11822729Sllai1 goto err_out; 11832729Sllai1 } 11842729Sllai1 11852729Sllai1 if (doingdir && (odv == nddv)) { 11862729Sllai1 error = EINVAL; 11872729Sllai1 goto err_out; 11882729Sllai1 } 11892621Sllai1 11902621Sllai1 /* 11912621Sllai1 * If renaming a directory, and the parents are different (".." must be 11922621Sllai1 * changed) then the source dir must not be in the dir hierarchy above 11932621Sllai1 * the target since it would orphan everything below the source dir. 11942621Sllai1 */ 11952621Sllai1 if (doingdir && (oddv != nddv)) { 11962621Sllai1 error = sdev_checkpath(odv, nddv, cred); 11972621Sllai1 if (error) 11982729Sllai1 goto err_out; 11992621Sllai1 } 12002621Sllai1 12012729Sllai1 /* destination existing */ 12022621Sllai1 if (*ndvp) { 12032621Sllai1 nvp = SDEVTOV(*ndvp); 12042621Sllai1 ASSERT(nvp); 12052621Sllai1 12062621Sllai1 /* handling renaming to itself */ 12072729Sllai1 if (odv == *ndvp) { 12082729Sllai1 error = 0; 12092729Sllai1 goto err_out; 12102729Sllai1 } 12112729Sllai1 12122729Sllai1 if (nvp->v_type == VDIR) { 12132729Sllai1 if (!doingdir) { 12142729Sllai1 error = EISDIR; 12152729Sllai1 goto err_out; 12162729Sllai1 } 12172729Sllai1 12182729Sllai1 if (vn_vfswlock(nvp)) { 12192729Sllai1 error = EBUSY; 12202729Sllai1 goto err_out; 12212729Sllai1 } 12222729Sllai1 12232729Sllai1 if (vn_mountedvfs(nvp) != NULL) { 12242729Sllai1 vn_vfsunlock(nvp); 12252729Sllai1 error = EBUSY; 12262729Sllai1 goto err_out; 12272729Sllai1 } 12282729Sllai1 12292729Sllai1 /* in case dir1 exists in dir2 and "mv dir1 dir2" */ 12302729Sllai1 if ((*ndvp)->sdev_nlink > 2) { 12312729Sllai1 vn_vfsunlock(nvp); 12322729Sllai1 error = EEXIST; 12332729Sllai1 goto err_out; 12342729Sllai1 } 12352729Sllai1 vn_vfsunlock(nvp); 12362729Sllai1 12372729Sllai1 (void) sdev_dirdelete(nddv, *ndvp); 12382729Sllai1 *ndvp = NULL; 12396335Sjg ASSERT(nddv->sdev_attrvp); 12402729Sllai1 error = VOP_RMDIR(nddv->sdev_attrvp, nnm, 12416065Scth nddv->sdev_attrvp, cred, NULL, 0); 12422729Sllai1 if (error) 12432729Sllai1 goto err_out; 12442729Sllai1 } else { 12452729Sllai1 if (doingdir) { 12462729Sllai1 error = ENOTDIR; 12472729Sllai1 goto err_out; 12482729Sllai1 } 12492729Sllai1 12502729Sllai1 if (SDEV_IS_PERSIST((*ndvp))) { 12512729Sllai1 bkstore = 1; 12522729Sllai1 } 12532621Sllai1 12542621Sllai1 /* 12552729Sllai1 * get rid of the node from the directory cache 12562729Sllai1 * note, in case EBUSY is returned, the ZOMBIE 12572729Sllai1 * node is taken care in sdev_mknode. 12582621Sllai1 */ 12592729Sllai1 (void) sdev_dirdelete(nddv, *ndvp); 12602729Sllai1 *ndvp = NULL; 12612729Sllai1 if (bkstore) { 12626335Sjg ASSERT(nddv->sdev_attrvp); 12632729Sllai1 error = VOP_REMOVE(nddv->sdev_attrvp, 12645331Samw nnm, cred, NULL, 0); 12652729Sllai1 if (error) 12666065Scth goto err_out; 12672621Sllai1 } 12682621Sllai1 } 12692621Sllai1 } 12702621Sllai1 12712621Sllai1 /* fix the source for a symlink */ 12722621Sllai1 if (vattr.va_type == VLNK) { 12732621Sllai1 if (odv->sdev_symlink == NULL) { 12742621Sllai1 error = sdev_follow_link(odv); 12752729Sllai1 if (error) { 12762729Sllai1 error = ENOENT; 12772729Sllai1 goto err_out; 12782729Sllai1 } 12792621Sllai1 } 12802621Sllai1 ASSERT(odv->sdev_symlink); 12812621Sllai1 link = i_ddi_strdup(odv->sdev_symlink, KM_SLEEP); 12822621Sllai1 } 12832621Sllai1 12842729Sllai1 /* 12852729Sllai1 * make a fresh node from the source attrs 12862729Sllai1 */ 12872729Sllai1 ASSERT(RW_WRITE_HELD(&nddv->sdev_contents)); 12882729Sllai1 error = sdev_mknode(nddv, nnm, ndvp, &vattr, 12892729Sllai1 NULL, (void *)link, cred, SDEV_READY); 12902621Sllai1 12912621Sllai1 if (link) 12922621Sllai1 kmem_free(link, strlen(link) + 1); 12932621Sllai1 12942729Sllai1 if (error) 12952729Sllai1 goto err_out; 12962729Sllai1 ASSERT(*ndvp); 12972729Sllai1 ASSERT((*ndvp)->sdev_state == SDEV_READY); 12982729Sllai1 12992729Sllai1 /* move dir contents */ 13002729Sllai1 if (doingdir) { 13016260Sjg for (idv = SDEV_FIRST_ENTRY(odv); idv; 13026260Sjg idv = SDEV_NEXT_ENTRY(odv, idv)) { 13032729Sllai1 error = sdev_rnmnode(odv, idv, 13042729Sllai1 (struct sdev_node *)(*ndvp), &ndv, 13052729Sllai1 idv->sdev_name, cred); 13062729Sllai1 if (error) 13072729Sllai1 goto err_out; 13082729Sllai1 ndv = NULL; 13092729Sllai1 } 13102729Sllai1 } 13112729Sllai1 13122729Sllai1 if ((*ndvp)->sdev_attrvp) { 13132729Sllai1 sdev_update_timestamps((*ndvp)->sdev_attrvp, kcred, 13142729Sllai1 AT_CTIME|AT_ATIME); 13152729Sllai1 } else { 13162729Sllai1 ASSERT((*ndvp)->sdev_attr); 13172729Sllai1 gethrestime(&now); 13182729Sllai1 (*ndvp)->sdev_attr->va_ctime = now; 13192729Sllai1 (*ndvp)->sdev_attr->va_atime = now; 13202729Sllai1 } 13212729Sllai1 13222729Sllai1 if (nddv->sdev_attrvp) { 13232729Sllai1 sdev_update_timestamps(nddv->sdev_attrvp, kcred, 13242729Sllai1 AT_MTIME|AT_ATIME); 13252729Sllai1 } else { 13262729Sllai1 ASSERT(nddv->sdev_attr); 13272729Sllai1 gethrestime(&now); 13282729Sllai1 nddv->sdev_attr->va_mtime = now; 13292729Sllai1 nddv->sdev_attr->va_atime = now; 13302729Sllai1 } 13312729Sllai1 rw_exit(&nddv->sdev_contents); 13322729Sllai1 if (!samedir) 13332729Sllai1 rw_exit(&oddv->sdev_contents); 13342729Sllai1 13352621Sllai1 SDEV_RELE(*ndvp); 13362729Sllai1 return (error); 13372729Sllai1 13382729Sllai1 err_out: 13392729Sllai1 rw_exit(&nddv->sdev_contents); 13402729Sllai1 if (!samedir) 13412729Sllai1 rw_exit(&oddv->sdev_contents); 13422729Sllai1 return (error); 13432621Sllai1 } 13442621Sllai1 13452621Sllai1 /* 13462621Sllai1 * Merge sdev_node specific information into an attribute structure. 13472621Sllai1 * 13482621Sllai1 * note: sdev_node is not locked here 13492621Sllai1 */ 13502621Sllai1 void 13512621Sllai1 sdev_vattr_merge(struct sdev_node *dv, struct vattr *vap) 13522621Sllai1 { 13532621Sllai1 struct vnode *vp = SDEVTOV(dv); 13542621Sllai1 13552621Sllai1 vap->va_nlink = dv->sdev_nlink; 13562621Sllai1 vap->va_nodeid = dv->sdev_ino; 13572621Sllai1 vap->va_fsid = SDEVTOV(dv->sdev_dotdot)->v_rdev; 13582621Sllai1 vap->va_type = vp->v_type; 13592621Sllai1 13602621Sllai1 if (vp->v_type == VDIR) { 13612621Sllai1 vap->va_rdev = 0; 13622621Sllai1 vap->va_fsid = vp->v_rdev; 13632621Sllai1 } else if (vp->v_type == VLNK) { 13642621Sllai1 vap->va_rdev = 0; 13652621Sllai1 vap->va_mode &= ~S_IFMT; 13662621Sllai1 vap->va_mode |= S_IFLNK; 13672621Sllai1 } else if ((vp->v_type == VCHR) || (vp->v_type == VBLK)) { 13682621Sllai1 vap->va_rdev = vp->v_rdev; 13692621Sllai1 vap->va_mode &= ~S_IFMT; 13702621Sllai1 if (vap->va_type == VCHR) 13712621Sllai1 vap->va_mode |= S_IFCHR; 13722621Sllai1 else 13732621Sllai1 vap->va_mode |= S_IFBLK; 13742621Sllai1 } else { 13752621Sllai1 vap->va_rdev = 0; 13762621Sllai1 } 13772621Sllai1 } 13782621Sllai1 13792621Sllai1 static struct vattr * 13802621Sllai1 sdev_getdefault_attr(enum vtype type) 13812621Sllai1 { 13822621Sllai1 if (type == VDIR) 13832621Sllai1 return (&sdev_vattr_dir); 13842621Sllai1 else if (type == VCHR) 13852621Sllai1 return (&sdev_vattr_chr); 13862621Sllai1 else if (type == VBLK) 13872621Sllai1 return (&sdev_vattr_blk); 13882621Sllai1 else if (type == VLNK) 13892621Sllai1 return (&sdev_vattr_lnk); 13902621Sllai1 else 13912621Sllai1 return (NULL); 13922621Sllai1 } 13932621Sllai1 int 13942621Sllai1 sdev_to_vp(struct sdev_node *dv, struct vnode **vpp) 13952621Sllai1 { 13962621Sllai1 int rv = 0; 13972621Sllai1 struct vnode *vp = SDEVTOV(dv); 13982621Sllai1 13992621Sllai1 switch (vp->v_type) { 14002621Sllai1 case VCHR: 14012621Sllai1 case VBLK: 14022621Sllai1 /* 14032621Sllai1 * If vnode is a device, return special vnode instead 14042621Sllai1 * (though it knows all about -us- via sp->s_realvp) 14052621Sllai1 */ 14062621Sllai1 *vpp = specvp(vp, vp->v_rdev, vp->v_type, kcred); 14072621Sllai1 VN_RELE(vp); 14082621Sllai1 if (*vpp == NULLVP) 14092621Sllai1 rv = ENOSYS; 14102621Sllai1 break; 14112621Sllai1 default: /* most types are returned as is */ 14122621Sllai1 *vpp = vp; 14132621Sllai1 break; 14142621Sllai1 } 14152621Sllai1 return (rv); 14162621Sllai1 } 14172621Sllai1 14182621Sllai1 /* 14192621Sllai1 * loopback into sdev_lookup() 14202621Sllai1 */ 14212621Sllai1 static struct vnode * 14222621Sllai1 devname_find_by_devpath(char *devpath, struct vattr *vattr) 14232621Sllai1 { 14242621Sllai1 int error = 0; 14252621Sllai1 struct vnode *vp; 14262621Sllai1 14272621Sllai1 error = lookupname(devpath, UIO_SYSSPACE, NO_FOLLOW, NULLVPP, &vp); 14282621Sllai1 if (error) { 14292621Sllai1 return (NULL); 14302621Sllai1 } 14312621Sllai1 14322621Sllai1 if (vattr) 14335331Samw (void) VOP_GETATTR(vp, vattr, 0, kcred, NULL); 14342621Sllai1 return (vp); 14352621Sllai1 } 14362621Sllai1 14372621Sllai1 /* 14382621Sllai1 * the junction between devname and devfs 14392621Sllai1 */ 14402621Sllai1 static struct vnode * 14412621Sllai1 devname_configure_by_path(char *physpath, struct vattr *vattr) 14422621Sllai1 { 14432621Sllai1 int error = 0; 14442621Sllai1 struct vnode *vp; 14452621Sllai1 14462729Sllai1 ASSERT(strncmp(physpath, "/devices/", sizeof ("/devices/") - 1) 14472621Sllai1 == 0); 14482621Sllai1 14492621Sllai1 error = devfs_lookupname(physpath + sizeof ("/devices/") - 1, 14502621Sllai1 NULLVPP, &vp); 14512621Sllai1 if (error != 0) { 14522621Sllai1 if (error == ENODEV) { 14532621Sllai1 cmn_err(CE_CONT, "%s: not found (line %d)\n", 14542621Sllai1 physpath, __LINE__); 14552621Sllai1 } 14562621Sllai1 14572621Sllai1 return (NULL); 14582621Sllai1 } 14592621Sllai1 14602621Sllai1 if (vattr) 14615331Samw (void) VOP_GETATTR(vp, vattr, 0, kcred, NULL); 14622621Sllai1 return (vp); 14632621Sllai1 } 14642621Sllai1 14652621Sllai1 /* 14662621Sllai1 * junction between devname and root file system, e.g. ufs 14672621Sllai1 */ 14682621Sllai1 int 14692621Sllai1 devname_backstore_lookup(struct sdev_node *ddv, char *nm, struct vnode **rvp) 14702621Sllai1 { 14712621Sllai1 struct vnode *rdvp = ddv->sdev_attrvp; 14722621Sllai1 int rval = 0; 14732621Sllai1 14742621Sllai1 ASSERT(rdvp); 14752621Sllai1 14765331Samw rval = VOP_LOOKUP(rdvp, nm, rvp, NULL, 0, NULL, kcred, NULL, NULL, 14775331Samw NULL); 14782621Sllai1 return (rval); 14792621Sllai1 } 14802621Sllai1 14812621Sllai1 static int 14822621Sllai1 sdev_filldir_from_store(struct sdev_node *ddv, int dlen, struct cred *cred) 14832621Sllai1 { 14842621Sllai1 struct sdev_node *dv = NULL; 14852621Sllai1 char *nm; 14862621Sllai1 struct vnode *dirvp; 14872621Sllai1 int error; 14882621Sllai1 vnode_t *vp; 14892621Sllai1 int eof; 14902621Sllai1 struct iovec iov; 14912621Sllai1 struct uio uio; 14922621Sllai1 struct dirent64 *dp; 14932621Sllai1 dirent64_t *dbuf; 14942621Sllai1 size_t dbuflen; 14952621Sllai1 struct vattr vattr; 14962621Sllai1 char *link = NULL; 14972621Sllai1 14982621Sllai1 if (ddv->sdev_attrvp == NULL) 14992621Sllai1 return (0); 15002621Sllai1 if (!(ddv->sdev_flags & SDEV_BUILD)) 15012621Sllai1 return (0); 15022621Sllai1 15032621Sllai1 dirvp = ddv->sdev_attrvp; 15042621Sllai1 VN_HOLD(dirvp); 15052621Sllai1 dbuf = kmem_zalloc(dlen, KM_SLEEP); 15062621Sllai1 15072621Sllai1 uio.uio_iov = &iov; 15082621Sllai1 uio.uio_iovcnt = 1; 15092621Sllai1 uio.uio_segflg = UIO_SYSSPACE; 15102621Sllai1 uio.uio_fmode = 0; 15112621Sllai1 uio.uio_extflg = UIO_COPY_CACHED; 15122621Sllai1 uio.uio_loffset = 0; 15132621Sllai1 uio.uio_llimit = MAXOFFSET_T; 15142621Sllai1 15152621Sllai1 eof = 0; 15162621Sllai1 error = 0; 15172621Sllai1 while (!error && !eof) { 15182621Sllai1 uio.uio_resid = dlen; 15192621Sllai1 iov.iov_base = (char *)dbuf; 15202621Sllai1 iov.iov_len = dlen; 15212621Sllai1 (void) VOP_RWLOCK(dirvp, V_WRITELOCK_FALSE, NULL); 15225331Samw error = VOP_READDIR(dirvp, &uio, kcred, &eof, NULL, 0); 15232621Sllai1 VOP_RWUNLOCK(dirvp, V_WRITELOCK_FALSE, NULL); 15242621Sllai1 15252621Sllai1 dbuflen = dlen - uio.uio_resid; 15262621Sllai1 if (error || dbuflen == 0) 15272621Sllai1 break; 15282621Sllai1 15292621Sllai1 if (!(ddv->sdev_flags & SDEV_BUILD)) { 15302621Sllai1 error = 0; 15312621Sllai1 break; 15322621Sllai1 } 15332621Sllai1 15342621Sllai1 for (dp = dbuf; ((intptr_t)dp < 15352621Sllai1 (intptr_t)dbuf + dbuflen); 15362621Sllai1 dp = (dirent64_t *)((intptr_t)dp + dp->d_reclen)) { 15372621Sllai1 nm = dp->d_name; 15382621Sllai1 15392621Sllai1 if (strcmp(nm, ".") == 0 || 15402621Sllai1 strcmp(nm, "..") == 0) 15412621Sllai1 continue; 15422621Sllai1 15432621Sllai1 vp = NULLVP; 15442621Sllai1 dv = sdev_cache_lookup(ddv, nm); 15452621Sllai1 if (dv) { 15462621Sllai1 if (dv->sdev_state != SDEV_ZOMBIE) { 15472621Sllai1 SDEV_SIMPLE_RELE(dv); 15482621Sllai1 } else { 15492621Sllai1 /* 15502621Sllai1 * A ZOMBIE node may not have been 15512621Sllai1 * cleaned up from the backing store, 15522621Sllai1 * bypass this entry in this case, 15532621Sllai1 * and clean it up from the directory 15542621Sllai1 * cache if this is the last call. 15552621Sllai1 */ 15562621Sllai1 (void) sdev_dirdelete(ddv, dv); 15572621Sllai1 } 15582621Sllai1 continue; 15592621Sllai1 } 15602621Sllai1 15612621Sllai1 /* refill the cache if not already */ 15622621Sllai1 error = devname_backstore_lookup(ddv, nm, &vp); 15632621Sllai1 if (error) 15642621Sllai1 continue; 15652621Sllai1 15662621Sllai1 vattr.va_mask = AT_MODE|AT_UID|AT_GID; 15675331Samw error = VOP_GETATTR(vp, &vattr, 0, cred, NULL); 15682621Sllai1 if (error) 15692621Sllai1 continue; 15702621Sllai1 15712621Sllai1 if (vattr.va_type == VLNK) { 15722621Sllai1 error = sdev_getlink(vp, &link); 15732621Sllai1 if (error) { 15742621Sllai1 continue; 15752621Sllai1 } 15762621Sllai1 ASSERT(link != NULL); 15772621Sllai1 } 15782621Sllai1 15792621Sllai1 if (!rw_tryupgrade(&ddv->sdev_contents)) { 15802621Sllai1 rw_exit(&ddv->sdev_contents); 15812621Sllai1 rw_enter(&ddv->sdev_contents, RW_WRITER); 15822621Sllai1 } 15832621Sllai1 error = sdev_mknode(ddv, nm, &dv, &vattr, vp, link, 15842621Sllai1 cred, SDEV_READY); 15852621Sllai1 rw_downgrade(&ddv->sdev_contents); 15862621Sllai1 15872621Sllai1 if (link != NULL) { 15882621Sllai1 kmem_free(link, strlen(link) + 1); 15892621Sllai1 link = NULL; 15902621Sllai1 } 15912621Sllai1 15922621Sllai1 if (!error) { 15932621Sllai1 ASSERT(dv); 15942621Sllai1 ASSERT(dv->sdev_state != SDEV_ZOMBIE); 15952621Sllai1 SDEV_SIMPLE_RELE(dv); 15962621Sllai1 } 15972621Sllai1 vp = NULL; 15982621Sllai1 dv = NULL; 15992621Sllai1 } 16002621Sllai1 } 16012621Sllai1 16022621Sllai1 done: 16032621Sllai1 VN_RELE(dirvp); 16042621Sllai1 kmem_free(dbuf, dlen); 16052621Sllai1 16062621Sllai1 return (error); 16072621Sllai1 } 16082621Sllai1 16093843Sjg void 16102621Sllai1 sdev_filldir_dynamic(struct sdev_node *ddv) 16112621Sllai1 { 16122621Sllai1 int error; 16132621Sllai1 int i; 16142621Sllai1 struct vattr *vap; 16152621Sllai1 char *nm = NULL; 16162621Sllai1 struct sdev_node *dv = NULL; 16172621Sllai1 16183843Sjg ASSERT(RW_WRITE_HELD(&ddv->sdev_contents)); 16193843Sjg ASSERT((ddv->sdev_flags & SDEV_BUILD)); 16202621Sllai1 16212621Sllai1 vap = sdev_getdefault_attr(VDIR); 16222621Sllai1 for (i = 0; vtab[i].vt_name != NULL; i++) { 16232621Sllai1 nm = vtab[i].vt_name; 16242621Sllai1 ASSERT(RW_WRITE_HELD(&ddv->sdev_contents)); 16253843Sjg dv = NULL; 16262621Sllai1 error = sdev_mknode(ddv, nm, &dv, vap, NULL, 16272621Sllai1 NULL, kcred, SDEV_READY); 16283843Sjg if (error) { 16293843Sjg cmn_err(CE_WARN, "%s/%s: error %d\n", 16303843Sjg ddv->sdev_name, nm, error); 16313843Sjg } else { 16323843Sjg ASSERT(dv); 16333843Sjg ASSERT(dv->sdev_state != SDEV_ZOMBIE); 16343843Sjg SDEV_SIMPLE_RELE(dv); 16353843Sjg } 16362621Sllai1 } 16372621Sllai1 } 16382621Sllai1 16392621Sllai1 /* 16402621Sllai1 * Creating a backing store entry based on sdev_attr. 16412621Sllai1 * This is called either as part of node creation in a persistent directory 16422621Sllai1 * or from setattr/setsecattr to persist access attributes across reboot. 16432621Sllai1 */ 16442621Sllai1 int 16452621Sllai1 sdev_shadow_node(struct sdev_node *dv, struct cred *cred) 16462621Sllai1 { 16472621Sllai1 int error = 0; 16482621Sllai1 struct vnode *dvp = SDEVTOV(dv->sdev_dotdot); 16492621Sllai1 struct vnode *rdvp = VTOSDEV(dvp)->sdev_attrvp; 16502621Sllai1 struct vattr *vap = dv->sdev_attr; 16512621Sllai1 char *nm = dv->sdev_name; 16522621Sllai1 struct vnode *tmpvp, **rvp = &tmpvp, *rrvp = NULL; 16532621Sllai1 16542621Sllai1 ASSERT(dv && dv->sdev_name && rdvp); 16552621Sllai1 ASSERT(RW_WRITE_HELD(&dv->sdev_contents) && dv->sdev_attrvp == NULL); 16562621Sllai1 16572621Sllai1 lookup: 16582621Sllai1 /* try to find it in the backing store */ 16595331Samw error = VOP_LOOKUP(rdvp, nm, rvp, NULL, 0, NULL, cred, NULL, NULL, 16605331Samw NULL); 16612621Sllai1 if (error == 0) { 16625331Samw if (VOP_REALVP(*rvp, &rrvp, NULL) == 0) { 16632621Sllai1 VN_HOLD(rrvp); 16642621Sllai1 VN_RELE(*rvp); 16652621Sllai1 *rvp = rrvp; 16662621Sllai1 } 16672621Sllai1 16682621Sllai1 kmem_free(dv->sdev_attr, sizeof (vattr_t)); 16692621Sllai1 dv->sdev_attr = NULL; 16702621Sllai1 dv->sdev_attrvp = *rvp; 16712621Sllai1 return (0); 16722621Sllai1 } 16732621Sllai1 16742621Sllai1 /* let's try to persist the node */ 16752621Sllai1 gethrestime(&vap->va_atime); 16762621Sllai1 vap->va_mtime = vap->va_atime; 16772621Sllai1 vap->va_ctime = vap->va_atime; 16782621Sllai1 vap->va_mask |= AT_TYPE|AT_MODE; 16792621Sllai1 switch (vap->va_type) { 16802621Sllai1 case VDIR: 16815331Samw error = VOP_MKDIR(rdvp, nm, vap, rvp, cred, NULL, 0, NULL); 16822621Sllai1 sdcmn_err9(("sdev_shadow_node: mkdir vp %p error %d\n", 16832621Sllai1 (void *)(*rvp), error)); 16842621Sllai1 break; 16852621Sllai1 case VCHR: 16862621Sllai1 case VBLK: 16872621Sllai1 case VREG: 16882621Sllai1 case VDOOR: 16892621Sllai1 error = VOP_CREATE(rdvp, nm, vap, NONEXCL, VREAD|VWRITE, 16905331Samw rvp, cred, 0, NULL, NULL); 16912621Sllai1 sdcmn_err9(("sdev_shadow_node: create vp %p, error %d\n", 16922621Sllai1 (void *)(*rvp), error)); 16932621Sllai1 if (!error) 16942621Sllai1 VN_RELE(*rvp); 16952621Sllai1 break; 16962621Sllai1 case VLNK: 16972621Sllai1 ASSERT(dv->sdev_symlink); 16985331Samw error = VOP_SYMLINK(rdvp, nm, vap, dv->sdev_symlink, cred, 16995331Samw NULL, 0); 17002621Sllai1 sdcmn_err9(("sdev_shadow_node: create symlink error %d\n", 17012621Sllai1 error)); 17022621Sllai1 break; 17032621Sllai1 default: 17042621Sllai1 cmn_err(CE_PANIC, "dev: %s: sdev_shadow_node " 17052621Sllai1 "create\n", nm); 17062621Sllai1 /*NOTREACHED*/ 17072621Sllai1 } 17082621Sllai1 17092621Sllai1 /* go back to lookup to factor out spec node and set attrvp */ 17102621Sllai1 if (error == 0) 17112621Sllai1 goto lookup; 17122621Sllai1 17136335Sjg sdcmn_err(("cannot persist %s - error %d\n", dv->sdev_path, error)); 17142621Sllai1 return (error); 17152621Sllai1 } 17162621Sllai1 17172621Sllai1 static int 17182621Sllai1 sdev_cache_add(struct sdev_node *ddv, struct sdev_node **dv, char *nm) 17192621Sllai1 { 17202621Sllai1 int error = 0; 17212621Sllai1 struct sdev_node *dup = NULL; 17222621Sllai1 17232621Sllai1 ASSERT(RW_WRITE_HELD(&ddv->sdev_contents)); 17242621Sllai1 if ((dup = sdev_findbyname(ddv, nm)) == NULL) { 17252621Sllai1 sdev_direnter(ddv, *dv); 17262621Sllai1 } else { 17272621Sllai1 if (dup->sdev_state == SDEV_ZOMBIE) { 17282621Sllai1 error = sdev_dirdelete(ddv, dup); 17292621Sllai1 /* 17302621Sllai1 * The ZOMBIE node is still hanging 17312621Sllai1 * around with more than one reference counts. 17322621Sllai1 * Fail the new node creation so that 17332621Sllai1 * the directory cache won't have 17342621Sllai1 * duplicate entries for the same named node 17352621Sllai1 */ 17362621Sllai1 if (error == EBUSY) { 17372621Sllai1 SDEV_SIMPLE_RELE(*dv); 17382621Sllai1 sdev_nodedestroy(*dv, 0); 17392621Sllai1 *dv = NULL; 17402621Sllai1 return (error); 17412621Sllai1 } 17422621Sllai1 sdev_direnter(ddv, *dv); 17432621Sllai1 } else { 17442621Sllai1 ASSERT((*dv)->sdev_state != SDEV_ZOMBIE); 17452621Sllai1 SDEV_SIMPLE_RELE(*dv); 17462621Sllai1 sdev_nodedestroy(*dv, 0); 17472621Sllai1 *dv = dup; 17482621Sllai1 } 17492621Sllai1 } 17502621Sllai1 17512621Sllai1 return (0); 17522621Sllai1 } 17532621Sllai1 17542621Sllai1 static int 17552621Sllai1 sdev_cache_delete(struct sdev_node *ddv, struct sdev_node **dv) 17562621Sllai1 { 17572621Sllai1 ASSERT(RW_WRITE_HELD(&ddv->sdev_contents)); 17582621Sllai1 return (sdev_dirdelete(ddv, *dv)); 17592621Sllai1 } 17602621Sllai1 17612621Sllai1 /* 17622621Sllai1 * update the in-core directory cache 17632621Sllai1 */ 17642621Sllai1 int 17652621Sllai1 sdev_cache_update(struct sdev_node *ddv, struct sdev_node **dv, char *nm, 17662621Sllai1 sdev_cache_ops_t ops) 17672621Sllai1 { 17682621Sllai1 int error = 0; 17692621Sllai1 17702621Sllai1 ASSERT((SDEV_HELD(*dv))); 17712621Sllai1 17722621Sllai1 ASSERT(RW_WRITE_HELD(&ddv->sdev_contents)); 17732621Sllai1 switch (ops) { 17742621Sllai1 case SDEV_CACHE_ADD: 17752621Sllai1 error = sdev_cache_add(ddv, dv, nm); 17762621Sllai1 break; 17772621Sllai1 case SDEV_CACHE_DELETE: 17782621Sllai1 error = sdev_cache_delete(ddv, dv); 17792621Sllai1 break; 17802621Sllai1 default: 17812621Sllai1 break; 17822621Sllai1 } 17832621Sllai1 17842621Sllai1 return (error); 17852621Sllai1 } 17862621Sllai1 17872621Sllai1 /* 17885331Samw * retrieve the named entry from the directory cache 17892621Sllai1 */ 17902621Sllai1 struct sdev_node * 17912621Sllai1 sdev_cache_lookup(struct sdev_node *ddv, char *nm) 17922621Sllai1 { 17932621Sllai1 struct sdev_node *dv = NULL; 17942621Sllai1 17952621Sllai1 ASSERT(RW_LOCK_HELD(&ddv->sdev_contents)); 17962621Sllai1 dv = sdev_findbyname(ddv, nm); 17972621Sllai1 17982621Sllai1 return (dv); 17992621Sllai1 } 18002621Sllai1 18012621Sllai1 /* 18022621Sllai1 * Implicit reconfig for nodes constructed by a link generator 18032621Sllai1 * Start devfsadm if needed, or if devfsadm is in progress, 18042621Sllai1 * prepare to block on devfsadm either completing or 18052621Sllai1 * constructing the desired node. As devfsadmd is global 18062621Sllai1 * in scope, constructing all necessary nodes, we only 18072621Sllai1 * need to initiate it once. 18082621Sllai1 */ 18092621Sllai1 static int 18102621Sllai1 sdev_call_devfsadmd(struct sdev_node *ddv, struct sdev_node *dv, char *nm) 18112621Sllai1 { 18122621Sllai1 int error = 0; 18132621Sllai1 18142621Sllai1 if (DEVNAME_DEVFSADM_IS_RUNNING(devfsadm_state)) { 18152621Sllai1 sdcmn_err6(("lookup: waiting for %s/%s, 0x%x\n", 18162621Sllai1 ddv->sdev_name, nm, devfsadm_state)); 18172621Sllai1 mutex_enter(&dv->sdev_lookup_lock); 18182621Sllai1 SDEV_BLOCK_OTHERS(dv, (SDEV_LOOKUP | SDEV_LGWAITING)); 18192621Sllai1 mutex_exit(&dv->sdev_lookup_lock); 18202621Sllai1 error = 0; 18212621Sllai1 } else if (!DEVNAME_DEVFSADM_HAS_RUN(devfsadm_state)) { 18222621Sllai1 sdcmn_err6(("lookup %s/%s starting devfsadm, 0x%x\n", 18236065Scth ddv->sdev_name, nm, devfsadm_state)); 18242621Sllai1 18252621Sllai1 sdev_devfsadmd_thread(ddv, dv, kcred); 18262621Sllai1 mutex_enter(&dv->sdev_lookup_lock); 18272621Sllai1 SDEV_BLOCK_OTHERS(dv, 18282621Sllai1 (SDEV_LOOKUP | SDEV_LGWAITING)); 18292621Sllai1 mutex_exit(&dv->sdev_lookup_lock); 18302621Sllai1 error = 0; 18312621Sllai1 } else { 18322621Sllai1 error = -1; 18332621Sllai1 } 18342621Sllai1 18352621Sllai1 return (error); 18362621Sllai1 } 18372621Sllai1 18382621Sllai1 static int 18392621Sllai1 sdev_call_modulelookup(struct sdev_node *ddv, struct sdev_node **dvp, char *nm, 18402621Sllai1 int (*fn)(char *, devname_handle_t *, struct cred *), struct cred *cred) 18412621Sllai1 { 18422621Sllai1 struct vnode *rvp = NULL; 18432621Sllai1 int error = 0; 18442621Sllai1 struct vattr *vap; 18452621Sllai1 devname_spec_t spec; 18462621Sllai1 devname_handle_t *hdl; 18472621Sllai1 void *args = NULL; 18482621Sllai1 struct sdev_node *dv = *dvp; 18492621Sllai1 18502621Sllai1 ASSERT(dv && ddv); 18512621Sllai1 hdl = &(dv->sdev_handle); 18522621Sllai1 ASSERT(hdl->dh_data == dv); 18532621Sllai1 mutex_enter(&dv->sdev_lookup_lock); 18542621Sllai1 SDEV_BLOCK_OTHERS(dv, SDEV_LOOKUP); 18552621Sllai1 mutex_exit(&dv->sdev_lookup_lock); 18562621Sllai1 error = (*fn)(nm, hdl, cred); 18572621Sllai1 if (error) { 18582621Sllai1 return (error); 18592621Sllai1 } 18602621Sllai1 18612621Sllai1 spec = hdl->dh_spec; 18622621Sllai1 args = hdl->dh_args; 18632621Sllai1 ASSERT(args); 18642621Sllai1 18652621Sllai1 switch (spec) { 18662621Sllai1 case DEVNAME_NS_PATH: 18672621Sllai1 /* 18682621Sllai1 * symlink of: 18692621Sllai1 * /dev/dir/nm -> /device/... 18702621Sllai1 */ 18712621Sllai1 rvp = devname_configure_by_path((char *)args, NULL); 18722621Sllai1 break; 18732621Sllai1 case DEVNAME_NS_DEV: 18742621Sllai1 /* 18752621Sllai1 * symlink of: 18762621Sllai1 * /dev/dir/nm -> /dev/... 18772621Sllai1 */ 18782621Sllai1 rvp = devname_find_by_devpath((char *)args, NULL); 18792621Sllai1 break; 18802621Sllai1 default: 18812621Sllai1 if (args) 18822621Sllai1 kmem_free((char *)args, strlen(args) + 1); 18832621Sllai1 return (ENOENT); 18842621Sllai1 18852621Sllai1 } 18862621Sllai1 18872621Sllai1 if (rvp == NULL) { 18882621Sllai1 if (args) 18892621Sllai1 kmem_free((char *)args, strlen(args) + 1); 18902621Sllai1 return (ENOENT); 18912621Sllai1 } else { 18922621Sllai1 vap = sdev_getdefault_attr(VLNK); 18932621Sllai1 ASSERT(RW_READ_HELD(&ddv->sdev_contents)); 18942621Sllai1 /* 18952621Sllai1 * Could sdev_mknode return a different dv_node 18962621Sllai1 * once the lock is dropped? 18972621Sllai1 */ 18982621Sllai1 if (!rw_tryupgrade(&ddv->sdev_contents)) { 18992621Sllai1 rw_exit(&ddv->sdev_contents); 19002621Sllai1 rw_enter(&ddv->sdev_contents, RW_WRITER); 19012621Sllai1 } 19022621Sllai1 error = sdev_mknode(ddv, nm, &dv, vap, NULL, args, cred, 19032621Sllai1 SDEV_READY); 19042621Sllai1 rw_downgrade(&ddv->sdev_contents); 19052621Sllai1 if (error) { 19062621Sllai1 if (args) 19072621Sllai1 kmem_free((char *)args, strlen(args) + 1); 19082621Sllai1 return (error); 19092621Sllai1 } else { 19102621Sllai1 mutex_enter(&dv->sdev_lookup_lock); 19112621Sllai1 SDEV_UNBLOCK_OTHERS(dv, SDEV_LOOKUP); 19122621Sllai1 mutex_exit(&dv->sdev_lookup_lock); 19132621Sllai1 error = 0; 19142621Sllai1 } 19152621Sllai1 } 19162621Sllai1 19172621Sllai1 if (args) 19182621Sllai1 kmem_free((char *)args, strlen(args) + 1); 19192621Sllai1 19202621Sllai1 *dvp = dv; 19212621Sllai1 return (0); 19222621Sllai1 } 19232621Sllai1 19242621Sllai1 /* 19252621Sllai1 * Support for specialized device naming construction mechanisms 19262621Sllai1 */ 19272621Sllai1 static int 19282621Sllai1 sdev_call_dircallback(struct sdev_node *ddv, struct sdev_node **dvp, char *nm, 19292621Sllai1 int (*callback)(struct sdev_node *, char *, void **, struct cred *, 19302621Sllai1 void *, char *), int flags, struct cred *cred) 19312621Sllai1 { 19322621Sllai1 int rv = 0; 19332621Sllai1 char *physpath = NULL; 19342621Sllai1 struct vnode *rvp = NULL; 19352621Sllai1 struct vattr vattr; 19362621Sllai1 struct vattr *vap; 19372621Sllai1 struct sdev_node *dv = *dvp; 19382621Sllai1 19392621Sllai1 mutex_enter(&dv->sdev_lookup_lock); 19402621Sllai1 SDEV_BLOCK_OTHERS(dv, SDEV_LOOKUP); 19412621Sllai1 mutex_exit(&dv->sdev_lookup_lock); 19422621Sllai1 19432621Sllai1 /* for non-devfsadm devices */ 19442621Sllai1 if (flags & SDEV_PATH) { 19452621Sllai1 physpath = kmem_zalloc(MAXPATHLEN, KM_SLEEP); 19462621Sllai1 rv = callback(ddv, nm, (void *)&physpath, kcred, NULL, 19472621Sllai1 NULL); 19482621Sllai1 if (rv) { 19492621Sllai1 kmem_free(physpath, MAXPATHLEN); 19502621Sllai1 return (-1); 19512621Sllai1 } 19522621Sllai1 19532621Sllai1 rvp = devname_configure_by_path(physpath, NULL); 19542621Sllai1 if (rvp == NULL) { 19552621Sllai1 sdcmn_err3(("devname_configure_by_path: " 19562621Sllai1 "failed for /dev/%s/%s\n", 19572621Sllai1 ddv->sdev_name, nm)); 19582621Sllai1 kmem_free(physpath, MAXPATHLEN); 19592621Sllai1 rv = -1; 19602621Sllai1 } else { 19612621Sllai1 vap = sdev_getdefault_attr(VLNK); 19622621Sllai1 ASSERT(RW_READ_HELD(&ddv->sdev_contents)); 19632621Sllai1 19642621Sllai1 /* 19652621Sllai1 * Sdev_mknode may return back a different sdev_node 19662621Sllai1 * that was created by another thread that 19672621Sllai1 * raced to the directroy cache before this thread. 19682621Sllai1 * 19692621Sllai1 * With current directory cache mechanism 19702621Sllai1 * (linked list with the sdev_node name as 19712621Sllai1 * the entity key), this is a way to make sure 19722621Sllai1 * only one entry exists for the same name 19732621Sllai1 * in the same directory. The outcome is 19742621Sllai1 * the winner wins. 19752621Sllai1 */ 19762621Sllai1 if (!rw_tryupgrade(&ddv->sdev_contents)) { 19772621Sllai1 rw_exit(&ddv->sdev_contents); 19782621Sllai1 rw_enter(&ddv->sdev_contents, RW_WRITER); 19792621Sllai1 } 19802621Sllai1 rv = sdev_mknode(ddv, nm, &dv, vap, NULL, 19812621Sllai1 (void *)physpath, cred, SDEV_READY); 19822621Sllai1 rw_downgrade(&ddv->sdev_contents); 19832621Sllai1 kmem_free(physpath, MAXPATHLEN); 19842621Sllai1 if (rv) { 19852621Sllai1 return (rv); 19862621Sllai1 } else { 19872621Sllai1 mutex_enter(&dv->sdev_lookup_lock); 19882621Sllai1 SDEV_UNBLOCK_OTHERS(dv, SDEV_LOOKUP); 19892621Sllai1 mutex_exit(&dv->sdev_lookup_lock); 19902621Sllai1 return (0); 19912621Sllai1 } 19922621Sllai1 } 1993*7688SAaron.Zang@Sun.COM } else if (flags & SDEV_VLINK) { 1994*7688SAaron.Zang@Sun.COM physpath = kmem_zalloc(MAXPATHLEN, KM_SLEEP); 1995*7688SAaron.Zang@Sun.COM rv = callback(ddv, nm, (void *)&physpath, kcred, NULL, 1996*7688SAaron.Zang@Sun.COM NULL); 1997*7688SAaron.Zang@Sun.COM if (rv) { 1998*7688SAaron.Zang@Sun.COM kmem_free(physpath, MAXPATHLEN); 1999*7688SAaron.Zang@Sun.COM return (-1); 2000*7688SAaron.Zang@Sun.COM } 2001*7688SAaron.Zang@Sun.COM 2002*7688SAaron.Zang@Sun.COM vap = sdev_getdefault_attr(VLNK); 2003*7688SAaron.Zang@Sun.COM vap->va_size = strlen(physpath); 2004*7688SAaron.Zang@Sun.COM ASSERT(RW_READ_HELD(&ddv->sdev_contents)); 2005*7688SAaron.Zang@Sun.COM 2006*7688SAaron.Zang@Sun.COM if (!rw_tryupgrade(&ddv->sdev_contents)) { 2007*7688SAaron.Zang@Sun.COM rw_exit(&ddv->sdev_contents); 2008*7688SAaron.Zang@Sun.COM rw_enter(&ddv->sdev_contents, RW_WRITER); 2009*7688SAaron.Zang@Sun.COM } 2010*7688SAaron.Zang@Sun.COM rv = sdev_mknode(ddv, nm, &dv, vap, NULL, 2011*7688SAaron.Zang@Sun.COM (void *)physpath, cred, SDEV_READY); 2012*7688SAaron.Zang@Sun.COM rw_downgrade(&ddv->sdev_contents); 2013*7688SAaron.Zang@Sun.COM kmem_free(physpath, MAXPATHLEN); 2014*7688SAaron.Zang@Sun.COM if (rv) 2015*7688SAaron.Zang@Sun.COM return (rv); 2016*7688SAaron.Zang@Sun.COM 2017*7688SAaron.Zang@Sun.COM mutex_enter(&dv->sdev_lookup_lock); 2018*7688SAaron.Zang@Sun.COM SDEV_UNBLOCK_OTHERS(dv, SDEV_LOOKUP); 2019*7688SAaron.Zang@Sun.COM mutex_exit(&dv->sdev_lookup_lock); 2020*7688SAaron.Zang@Sun.COM return (0); 20212621Sllai1 } else if (flags & SDEV_VNODE) { 20222621Sllai1 /* 20232621Sllai1 * DBNR has its own way to create the device 20242621Sllai1 * and return a backing store vnode in rvp 20252621Sllai1 */ 20262621Sllai1 ASSERT(callback); 20272621Sllai1 rv = callback(ddv, nm, (void *)&rvp, kcred, NULL, NULL); 20282621Sllai1 if (rv || (rvp == NULL)) { 20292621Sllai1 sdcmn_err3(("devname_lookup_func: SDEV_VNODE " 20302621Sllai1 "callback failed \n")); 20312621Sllai1 return (-1); 20322621Sllai1 } 20332621Sllai1 vap = sdev_getdefault_attr(rvp->v_type); 20342621Sllai1 if (vap == NULL) 20352621Sllai1 return (-1); 20362621Sllai1 20372621Sllai1 ASSERT(RW_READ_HELD(&ddv->sdev_contents)); 20382621Sllai1 if (!rw_tryupgrade(&ddv->sdev_contents)) { 20392621Sllai1 rw_exit(&ddv->sdev_contents); 20402621Sllai1 rw_enter(&ddv->sdev_contents, RW_WRITER); 20412621Sllai1 } 20422621Sllai1 rv = sdev_mknode(ddv, nm, &dv, vap, rvp, NULL, 20432621Sllai1 cred, SDEV_READY); 20442621Sllai1 rw_downgrade(&ddv->sdev_contents); 20452621Sllai1 if (rv) 20462621Sllai1 return (rv); 20472621Sllai1 20482621Sllai1 mutex_enter(&dv->sdev_lookup_lock); 20492621Sllai1 SDEV_UNBLOCK_OTHERS(dv, SDEV_LOOKUP); 20502621Sllai1 mutex_exit(&dv->sdev_lookup_lock); 20512621Sllai1 return (0); 20522621Sllai1 } else if (flags & SDEV_VATTR) { 20532621Sllai1 /* 20542621Sllai1 * /dev/pts 20552621Sllai1 * 20562621Sllai1 * DBNR has its own way to create the device 20572621Sllai1 * "0" is returned upon success. 20582621Sllai1 * 20592621Sllai1 * callback is responsible to set the basic attributes, 20602621Sllai1 * e.g. va_type/va_uid/va_gid/ 20612621Sllai1 * dev_t if VCHR or VBLK/ 20622621Sllai1 */ 20632621Sllai1 ASSERT(callback); 20642621Sllai1 rv = callback(ddv, nm, (void *)&vattr, kcred, NULL, NULL); 20652621Sllai1 if (rv) { 20662621Sllai1 sdcmn_err3(("devname_lookup_func: SDEV_NONE " 20672621Sllai1 "callback failed \n")); 20682621Sllai1 return (-1); 20692621Sllai1 } 20702621Sllai1 20712621Sllai1 ASSERT(RW_READ_HELD(&ddv->sdev_contents)); 20722621Sllai1 if (!rw_tryupgrade(&ddv->sdev_contents)) { 20732621Sllai1 rw_exit(&ddv->sdev_contents); 20742621Sllai1 rw_enter(&ddv->sdev_contents, RW_WRITER); 20752621Sllai1 } 20762621Sllai1 rv = sdev_mknode(ddv, nm, &dv, &vattr, NULL, NULL, 20772621Sllai1 cred, SDEV_READY); 20782621Sllai1 rw_downgrade(&ddv->sdev_contents); 20792621Sllai1 20802621Sllai1 if (rv) 20812621Sllai1 return (rv); 20822621Sllai1 20832621Sllai1 mutex_enter(&dv->sdev_lookup_lock); 20842621Sllai1 SDEV_UNBLOCK_OTHERS(dv, SDEV_LOOKUP); 20852621Sllai1 mutex_exit(&dv->sdev_lookup_lock); 20862621Sllai1 return (0); 20872621Sllai1 } else { 20882621Sllai1 impossible(("lookup: %s/%s by %s not supported (%d)\n", 20892621Sllai1 SDEVTOV(ddv)->v_path, nm, curproc->p_user.u_comm, 20902621Sllai1 __LINE__)); 20912621Sllai1 rv = -1; 20922621Sllai1 } 20932621Sllai1 20942621Sllai1 *dvp = dv; 20952621Sllai1 return (rv); 20962621Sllai1 } 20972621Sllai1 20982621Sllai1 static int 20992621Sllai1 is_devfsadm_thread(char *exec_name) 21002621Sllai1 { 21012621Sllai1 /* 21022621Sllai1 * note: because devfsadmd -> /usr/sbin/devfsadm 21032621Sllai1 * it is safe to use "devfsadm" to capture the lookups 21042621Sllai1 * from devfsadm and its daemon version. 21052621Sllai1 */ 21062621Sllai1 if (strcmp(exec_name, "devfsadm") == 0) 21072621Sllai1 return (1); 21082621Sllai1 return (0); 21092621Sllai1 } 21102621Sllai1 21112621Sllai1 21122621Sllai1 /* 21132621Sllai1 * Lookup Order: 21142621Sllai1 * sdev_node cache; 21152621Sllai1 * backing store (SDEV_PERSIST); 21162621Sllai1 * DBNR: a. dir_ops implemented in the loadable modules; 21172621Sllai1 * b. vnode ops in vtab. 21182621Sllai1 */ 21192621Sllai1 int 21202621Sllai1 devname_lookup_func(struct sdev_node *ddv, char *nm, struct vnode **vpp, 21212621Sllai1 struct cred *cred, int (*callback)(struct sdev_node *, char *, void **, 21222621Sllai1 struct cred *, void *, char *), int flags) 21232621Sllai1 { 21242621Sllai1 int rv = 0, nmlen; 21252621Sllai1 struct vnode *rvp = NULL; 21262621Sllai1 struct sdev_node *dv = NULL; 21272621Sllai1 int retried = 0; 21282621Sllai1 int error = 0; 21292621Sllai1 struct devname_nsmap *map = NULL; 21302621Sllai1 struct devname_ops *dirops = NULL; 21312621Sllai1 int (*fn)(char *, devname_handle_t *, struct cred *) = NULL; 21322621Sllai1 struct vattr vattr; 21332621Sllai1 char *lookup_thread = curproc->p_user.u_comm; 21342621Sllai1 int failed_flags = 0; 21352621Sllai1 int (*vtor)(struct sdev_node *) = NULL; 21362621Sllai1 int state; 21372621Sllai1 int parent_state; 21382621Sllai1 char *link = NULL; 21392621Sllai1 21402621Sllai1 if (SDEVTOV(ddv)->v_type != VDIR) 21412621Sllai1 return (ENOTDIR); 21422621Sllai1 21432621Sllai1 /* 21442621Sllai1 * Empty name or ., return node itself. 21452621Sllai1 */ 21462621Sllai1 nmlen = strlen(nm); 21472621Sllai1 if ((nmlen == 0) || ((nmlen == 1) && (nm[0] == '.'))) { 21482621Sllai1 *vpp = SDEVTOV(ddv); 21492621Sllai1 VN_HOLD(*vpp); 21502621Sllai1 return (0); 21512621Sllai1 } 21522621Sllai1 21532621Sllai1 /* 21542621Sllai1 * .., return the parent directory 21552621Sllai1 */ 21562621Sllai1 if ((nmlen == 2) && (strcmp(nm, "..") == 0)) { 21572621Sllai1 *vpp = SDEVTOV(ddv->sdev_dotdot); 21582621Sllai1 VN_HOLD(*vpp); 21592621Sllai1 return (0); 21602621Sllai1 } 21612621Sllai1 21622621Sllai1 rw_enter(&ddv->sdev_contents, RW_READER); 21632621Sllai1 if (ddv->sdev_flags & SDEV_VTOR) { 21642621Sllai1 vtor = (int (*)(struct sdev_node *))sdev_get_vtor(ddv); 21652621Sllai1 ASSERT(vtor); 21662621Sllai1 } 21672621Sllai1 21682621Sllai1 tryagain: 21692621Sllai1 /* 21702621Sllai1 * (a) directory cache lookup: 21712621Sllai1 */ 21722621Sllai1 ASSERT(RW_READ_HELD(&ddv->sdev_contents)); 21732621Sllai1 parent_state = ddv->sdev_state; 21742621Sllai1 dv = sdev_cache_lookup(ddv, nm); 21752621Sllai1 if (dv) { 21762621Sllai1 state = dv->sdev_state; 21772621Sllai1 switch (state) { 21782621Sllai1 case SDEV_INIT: 21792621Sllai1 if (is_devfsadm_thread(lookup_thread)) 21802621Sllai1 break; 21812621Sllai1 21822621Sllai1 /* ZOMBIED parent won't allow node creation */ 21832621Sllai1 if (parent_state == SDEV_ZOMBIE) { 21842621Sllai1 SD_TRACE_FAILED_LOOKUP(ddv, nm, 21852621Sllai1 retried); 21862621Sllai1 goto nolock_notfound; 21872621Sllai1 } 21882621Sllai1 21892621Sllai1 mutex_enter(&dv->sdev_lookup_lock); 21902621Sllai1 /* compensate the threads started after devfsadm */ 21912621Sllai1 if (DEVNAME_DEVFSADM_IS_RUNNING(devfsadm_state) && 21922621Sllai1 !(SDEV_IS_LOOKUP(dv))) 21932621Sllai1 SDEV_BLOCK_OTHERS(dv, 21942621Sllai1 (SDEV_LOOKUP | SDEV_LGWAITING)); 21952621Sllai1 21962621Sllai1 if (SDEV_IS_LOOKUP(dv)) { 21972621Sllai1 failed_flags |= SLF_REBUILT; 21982621Sllai1 rw_exit(&ddv->sdev_contents); 21992621Sllai1 error = sdev_wait4lookup(dv, SDEV_LOOKUP); 22002621Sllai1 mutex_exit(&dv->sdev_lookup_lock); 22012621Sllai1 rw_enter(&ddv->sdev_contents, RW_READER); 22022621Sllai1 22032621Sllai1 if (error != 0) { 22042621Sllai1 SD_TRACE_FAILED_LOOKUP(ddv, nm, 22052621Sllai1 retried); 22062621Sllai1 goto nolock_notfound; 22072621Sllai1 } 22082621Sllai1 22092621Sllai1 state = dv->sdev_state; 22102621Sllai1 if (state == SDEV_INIT) { 22112621Sllai1 SD_TRACE_FAILED_LOOKUP(ddv, nm, 22122621Sllai1 retried); 22132621Sllai1 goto nolock_notfound; 22142621Sllai1 } else if (state == SDEV_READY) { 22152621Sllai1 goto found; 22162621Sllai1 } else if (state == SDEV_ZOMBIE) { 22172621Sllai1 rw_exit(&ddv->sdev_contents); 22182621Sllai1 SD_TRACE_FAILED_LOOKUP(ddv, nm, 22192621Sllai1 retried); 22202621Sllai1 SDEV_RELE(dv); 22212621Sllai1 goto lookup_failed; 22222621Sllai1 } 22232621Sllai1 } else { 22242621Sllai1 mutex_exit(&dv->sdev_lookup_lock); 22252621Sllai1 } 22262621Sllai1 break; 22272621Sllai1 case SDEV_READY: 22282621Sllai1 goto found; 22292621Sllai1 case SDEV_ZOMBIE: 22302621Sllai1 rw_exit(&ddv->sdev_contents); 22312621Sllai1 SD_TRACE_FAILED_LOOKUP(ddv, nm, retried); 22322621Sllai1 SDEV_RELE(dv); 22332621Sllai1 goto lookup_failed; 22342621Sllai1 default: 22352621Sllai1 rw_exit(&ddv->sdev_contents); 22362621Sllai1 SD_TRACE_FAILED_LOOKUP(ddv, nm, retried); 22372621Sllai1 sdev_lookup_failed(ddv, nm, failed_flags); 22382621Sllai1 *vpp = NULLVP; 22392621Sllai1 return (ENOENT); 22402621Sllai1 } 22412621Sllai1 } 22422621Sllai1 ASSERT(RW_READ_HELD(&ddv->sdev_contents)); 22432621Sllai1 22442621Sllai1 /* 22452621Sllai1 * ZOMBIED parent does not allow new node creation. 22462621Sllai1 * bail out early 22472621Sllai1 */ 22482621Sllai1 if (parent_state == SDEV_ZOMBIE) { 22492621Sllai1 rw_exit(&ddv->sdev_contents); 22502621Sllai1 *vpp = NULL; 22512621Sllai1 SD_TRACE_FAILED_LOOKUP(ddv, nm, retried); 22522621Sllai1 return (ENOENT); 22532621Sllai1 } 22542621Sllai1 22552621Sllai1 /* 22562621Sllai1 * (b0): backing store lookup 22572621Sllai1 * SDEV_PERSIST is default except: 22582621Sllai1 * 1) pts nodes 22592621Sllai1 * 2) non-chmod'ed local nodes 22602621Sllai1 */ 22612621Sllai1 if (SDEV_IS_PERSIST(ddv)) { 22622621Sllai1 error = devname_backstore_lookup(ddv, nm, &rvp); 22632621Sllai1 22642621Sllai1 if (!error) { 22652621Sllai1 sdcmn_err3(("devname_backstore_lookup: " 22662621Sllai1 "found attrvp %p for %s\n", (void *)rvp, nm)); 22672621Sllai1 22682621Sllai1 vattr.va_mask = AT_MODE|AT_UID|AT_GID; 22695331Samw error = VOP_GETATTR(rvp, &vattr, 0, cred, NULL); 22702621Sllai1 if (error) { 22712621Sllai1 rw_exit(&ddv->sdev_contents); 22722621Sllai1 if (dv) 22732621Sllai1 SDEV_RELE(dv); 22742621Sllai1 SD_TRACE_FAILED_LOOKUP(ddv, nm, retried); 22752621Sllai1 sdev_lookup_failed(ddv, nm, failed_flags); 22762621Sllai1 *vpp = NULLVP; 22772621Sllai1 return (ENOENT); 22782621Sllai1 } 22792621Sllai1 22802621Sllai1 if (vattr.va_type == VLNK) { 22812621Sllai1 error = sdev_getlink(rvp, &link); 22822621Sllai1 if (error) { 22832621Sllai1 rw_exit(&ddv->sdev_contents); 22842621Sllai1 if (dv) 22852621Sllai1 SDEV_RELE(dv); 22862621Sllai1 SD_TRACE_FAILED_LOOKUP(ddv, nm, 22872621Sllai1 retried); 22882621Sllai1 sdev_lookup_failed(ddv, nm, 22892621Sllai1 failed_flags); 22902621Sllai1 *vpp = NULLVP; 22912621Sllai1 return (ENOENT); 22922621Sllai1 } 22932621Sllai1 ASSERT(link != NULL); 22942621Sllai1 } 22952621Sllai1 22962621Sllai1 if (!rw_tryupgrade(&ddv->sdev_contents)) { 22972621Sllai1 rw_exit(&ddv->sdev_contents); 22982621Sllai1 rw_enter(&ddv->sdev_contents, RW_WRITER); 22992621Sllai1 } 23002621Sllai1 error = sdev_mknode(ddv, nm, &dv, &vattr, 23012621Sllai1 rvp, link, cred, SDEV_READY); 23022621Sllai1 rw_downgrade(&ddv->sdev_contents); 23032621Sllai1 23042621Sllai1 if (link != NULL) { 23052621Sllai1 kmem_free(link, strlen(link) + 1); 23062621Sllai1 link = NULL; 23072621Sllai1 } 23082621Sllai1 23092621Sllai1 if (error) { 23102621Sllai1 SD_TRACE_FAILED_LOOKUP(ddv, nm, retried); 23112621Sllai1 rw_exit(&ddv->sdev_contents); 23122621Sllai1 if (dv) 23132621Sllai1 SDEV_RELE(dv); 23142621Sllai1 goto lookup_failed; 23152621Sllai1 } else { 23162621Sllai1 goto found; 23172621Sllai1 } 23182621Sllai1 } else if (retried) { 23192621Sllai1 rw_exit(&ddv->sdev_contents); 23202621Sllai1 sdcmn_err3(("retry of lookup of %s/%s: failed\n", 23212621Sllai1 ddv->sdev_name, nm)); 23222621Sllai1 if (dv) 23232621Sllai1 SDEV_RELE(dv); 23242621Sllai1 SD_TRACE_FAILED_LOOKUP(ddv, nm, retried); 23252621Sllai1 sdev_lookup_failed(ddv, nm, failed_flags); 23262621Sllai1 *vpp = NULLVP; 23272621Sllai1 return (ENOENT); 23282621Sllai1 } 23292621Sllai1 } 23302621Sllai1 23312621Sllai1 23322621Sllai1 /* first thread that is doing the lookup on this node */ 23332621Sllai1 if (!dv) { 23342621Sllai1 if (!rw_tryupgrade(&ddv->sdev_contents)) { 23352621Sllai1 rw_exit(&ddv->sdev_contents); 23362621Sllai1 rw_enter(&ddv->sdev_contents, RW_WRITER); 23372621Sllai1 } 23382621Sllai1 error = sdev_mknode(ddv, nm, &dv, NULL, NULL, NULL, 23392621Sllai1 cred, SDEV_INIT); 23402621Sllai1 if (!dv) { 23412621Sllai1 rw_exit(&ddv->sdev_contents); 23422621Sllai1 SD_TRACE_FAILED_LOOKUP(ddv, nm, retried); 23432621Sllai1 sdev_lookup_failed(ddv, nm, failed_flags); 23442621Sllai1 *vpp = NULLVP; 23452621Sllai1 return (ENOENT); 23462621Sllai1 } 23472621Sllai1 rw_downgrade(&ddv->sdev_contents); 23482621Sllai1 } 23492621Sllai1 ASSERT(dv); 23502621Sllai1 ASSERT(SDEV_HELD(dv)); 23512621Sllai1 23522621Sllai1 if (SDEV_IS_NO_NCACHE(dv)) { 23532621Sllai1 failed_flags |= SLF_NO_NCACHE; 23542621Sllai1 } 23552621Sllai1 23562621Sllai1 if (SDEV_IS_GLOBAL(ddv)) { 23572621Sllai1 map = sdev_get_map(ddv, 1); 23582621Sllai1 dirops = map ? map->dir_ops : NULL; 23592621Sllai1 fn = dirops ? dirops->devnops_lookup : NULL; 23602621Sllai1 } 23612621Sllai1 23622621Sllai1 /* 23632621Sllai1 * (b1) invoking devfsadm once per life time for devfsadm nodes 23642621Sllai1 */ 23652621Sllai1 if ((fn == NULL) && !callback) { 23662621Sllai1 23672621Sllai1 if (sdev_reconfig_boot || !i_ddi_io_initialized() || 23682621Sllai1 SDEV_IS_DYNAMIC(ddv) || SDEV_IS_NO_NCACHE(dv) || 23692621Sllai1 ((moddebug & MODDEBUG_FINI_EBUSY) != 0)) { 23702621Sllai1 ASSERT(SDEV_HELD(dv)); 23712621Sllai1 SD_TRACE_FAILED_LOOKUP(ddv, nm, retried); 23722621Sllai1 goto nolock_notfound; 23732621Sllai1 } 23742621Sllai1 23752621Sllai1 /* 23762621Sllai1 * filter out known non-existent devices recorded 23772621Sllai1 * during initial reconfiguration boot for which 23782621Sllai1 * reconfig should not be done and lookup may 23792621Sllai1 * be short-circuited now. 23802621Sllai1 */ 23812621Sllai1 if (sdev_lookup_filter(ddv, nm)) { 23822621Sllai1 SD_TRACE_FAILED_LOOKUP(ddv, nm, retried); 23832621Sllai1 goto nolock_notfound; 23842621Sllai1 } 23852621Sllai1 23862621Sllai1 /* bypassing devfsadm internal nodes */ 23872621Sllai1 if (is_devfsadm_thread(lookup_thread)) { 23882621Sllai1 SD_TRACE_FAILED_LOOKUP(ddv, nm, retried); 23892621Sllai1 goto nolock_notfound; 23902621Sllai1 } 23912621Sllai1 23922621Sllai1 if (sdev_reconfig_disable) { 23932621Sllai1 SD_TRACE_FAILED_LOOKUP(ddv, nm, retried); 23942621Sllai1 goto nolock_notfound; 23952621Sllai1 } 23962621Sllai1 23972621Sllai1 error = sdev_call_devfsadmd(ddv, dv, nm); 23982621Sllai1 if (error == 0) { 23992621Sllai1 sdcmn_err8(("lookup of %s/%s by %s: reconfig\n", 24002621Sllai1 ddv->sdev_name, nm, curproc->p_user.u_comm)); 24012621Sllai1 if (sdev_reconfig_verbose) { 24022621Sllai1 cmn_err(CE_CONT, 24032621Sllai1 "?lookup of %s/%s by %s: reconfig\n", 24042621Sllai1 ddv->sdev_name, nm, curproc->p_user.u_comm); 24052621Sllai1 } 24062621Sllai1 retried = 1; 24072621Sllai1 failed_flags |= SLF_REBUILT; 24082621Sllai1 ASSERT(dv->sdev_state != SDEV_ZOMBIE); 24092621Sllai1 SDEV_SIMPLE_RELE(dv); 24102621Sllai1 goto tryagain; 24112621Sllai1 } else { 24122621Sllai1 SD_TRACE_FAILED_LOOKUP(ddv, nm, retried); 24132621Sllai1 goto nolock_notfound; 24142621Sllai1 } 24152621Sllai1 } 24162621Sllai1 24172621Sllai1 /* 24182621Sllai1 * (b2) Directory Based Name Resolution (DBNR): 24192621Sllai1 * ddv - parent 24202621Sllai1 * nm - /dev/(ddv->sdev_name)/nm 24212621Sllai1 * 24222621Sllai1 * note: module vnode ops take precedence than the build-in ones 24232621Sllai1 */ 24242621Sllai1 if (fn) { 24252621Sllai1 error = sdev_call_modulelookup(ddv, &dv, nm, fn, cred); 24262621Sllai1 if (error) { 24272621Sllai1 SD_TRACE_FAILED_LOOKUP(ddv, nm, retried); 24282621Sllai1 goto notfound; 24292621Sllai1 } else { 24302621Sllai1 goto found; 24312621Sllai1 } 24322621Sllai1 } else if (callback) { 24332621Sllai1 error = sdev_call_dircallback(ddv, &dv, nm, callback, 24342621Sllai1 flags, cred); 24352621Sllai1 if (error == 0) { 24362621Sllai1 goto found; 24372621Sllai1 } else { 24382621Sllai1 SD_TRACE_FAILED_LOOKUP(ddv, nm, retried); 24392621Sllai1 goto notfound; 24402621Sllai1 } 24412621Sllai1 } 24422621Sllai1 ASSERT(rvp); 24432621Sllai1 24442621Sllai1 found: 24452621Sllai1 ASSERT(!(dv->sdev_flags & SDEV_STALE)); 24462621Sllai1 ASSERT(dv->sdev_state == SDEV_READY); 24472621Sllai1 if (vtor) { 24482621Sllai1 /* 24492621Sllai1 * Check validity of returned node 24502621Sllai1 */ 24512621Sllai1 switch (vtor(dv)) { 24522621Sllai1 case SDEV_VTOR_VALID: 24532621Sllai1 break; 24542621Sllai1 case SDEV_VTOR_INVALID: 24552621Sllai1 SD_TRACE_FAILED_LOOKUP(ddv, nm, retried); 24562621Sllai1 sdcmn_err7(("lookup: destroy invalid " 24572621Sllai1 "node: %s(%p)\n", dv->sdev_name, (void *)dv)); 24582621Sllai1 goto nolock_notfound; 24592621Sllai1 case SDEV_VTOR_SKIP: 24602621Sllai1 sdcmn_err7(("lookup: node not applicable - " 24612621Sllai1 "skipping: %s(%p)\n", dv->sdev_name, (void *)dv)); 24622621Sllai1 rw_exit(&ddv->sdev_contents); 24632621Sllai1 SD_TRACE_FAILED_LOOKUP(ddv, nm, retried); 24642621Sllai1 SDEV_RELE(dv); 24652621Sllai1 goto lookup_failed; 24662621Sllai1 default: 24672621Sllai1 cmn_err(CE_PANIC, 24682621Sllai1 "dev fs: validator failed: %s(%p)\n", 24692621Sllai1 dv->sdev_name, (void *)dv); 24702621Sllai1 break; 24712621Sllai1 /*NOTREACHED*/ 24722621Sllai1 } 24732621Sllai1 } 24742621Sllai1 24752621Sllai1 if ((SDEVTOV(dv)->v_type == VDIR) && SDEV_IS_GLOBAL(dv)) { 24762621Sllai1 rw_enter(&dv->sdev_contents, RW_READER); 24772621Sllai1 (void) sdev_get_map(dv, 1); 24782621Sllai1 rw_exit(&dv->sdev_contents); 24792621Sllai1 } 24802621Sllai1 rw_exit(&ddv->sdev_contents); 24812621Sllai1 rv = sdev_to_vp(dv, vpp); 24822621Sllai1 sdcmn_err3(("devname_lookup_func: returning vp %p v_count %d state %d " 24832621Sllai1 "for nm %s, error %d\n", (void *)*vpp, (*vpp)->v_count, 24842621Sllai1 dv->sdev_state, nm, rv)); 24852621Sllai1 return (rv); 24862621Sllai1 24872621Sllai1 notfound: 24882621Sllai1 mutex_enter(&dv->sdev_lookup_lock); 24892621Sllai1 SDEV_UNBLOCK_OTHERS(dv, SDEV_LOOKUP); 24902621Sllai1 mutex_exit(&dv->sdev_lookup_lock); 24912621Sllai1 nolock_notfound: 24922621Sllai1 /* 24932621Sllai1 * Destroy the node that is created for synchronization purposes. 24942621Sllai1 */ 24952621Sllai1 sdcmn_err3(("devname_lookup_func: %s with state %d\n", 24962621Sllai1 nm, dv->sdev_state)); 24972621Sllai1 ASSERT(RW_READ_HELD(&ddv->sdev_contents)); 24982621Sllai1 if (dv->sdev_state == SDEV_INIT) { 24992621Sllai1 if (!rw_tryupgrade(&ddv->sdev_contents)) { 25002621Sllai1 rw_exit(&ddv->sdev_contents); 25012621Sllai1 rw_enter(&ddv->sdev_contents, RW_WRITER); 25022621Sllai1 } 25032621Sllai1 25042621Sllai1 /* 25052621Sllai1 * Node state may have changed during the lock 25062621Sllai1 * changes. Re-check. 25072621Sllai1 */ 25082621Sllai1 if (dv->sdev_state == SDEV_INIT) { 25092621Sllai1 (void) sdev_dirdelete(ddv, dv); 25102621Sllai1 rw_exit(&ddv->sdev_contents); 25112621Sllai1 sdev_lookup_failed(ddv, nm, failed_flags); 25122621Sllai1 *vpp = NULL; 25132621Sllai1 return (ENOENT); 25142621Sllai1 } 25152621Sllai1 } 25162621Sllai1 25172621Sllai1 rw_exit(&ddv->sdev_contents); 25182621Sllai1 SDEV_RELE(dv); 25192621Sllai1 25202621Sllai1 lookup_failed: 25212621Sllai1 sdev_lookup_failed(ddv, nm, failed_flags); 25222621Sllai1 *vpp = NULL; 25232621Sllai1 return (ENOENT); 25242621Sllai1 } 25252621Sllai1 25262621Sllai1 /* 25272621Sllai1 * Given a directory node, mark all nodes beneath as 25282621Sllai1 * STALE, i.e. nodes that don't exist as far as new 25296347Sjg * consumers are concerned. Remove them from the 25306347Sjg * list of directory entries so that no lookup or 25316347Sjg * directory traversal will find them. The node 25326347Sjg * not deallocated so existing holds are not affected. 25332621Sllai1 */ 25342621Sllai1 void 25352621Sllai1 sdev_stale(struct sdev_node *ddv) 25362621Sllai1 { 25372621Sllai1 struct sdev_node *dv; 25382621Sllai1 struct vnode *vp; 25392621Sllai1 25402621Sllai1 ASSERT(SDEVTOV(ddv)->v_type == VDIR); 25412621Sllai1 25422621Sllai1 rw_enter(&ddv->sdev_contents, RW_WRITER); 25436260Sjg for (dv = SDEV_FIRST_ENTRY(ddv); dv; dv = SDEV_NEXT_ENTRY(ddv, dv)) { 25442621Sllai1 vp = SDEVTOV(dv); 25452621Sllai1 if (vp->v_type == VDIR) 25462621Sllai1 sdev_stale(dv); 25472621Sllai1 25482621Sllai1 sdcmn_err9(("sdev_stale: setting stale %s\n", 25496347Sjg dv->sdev_path)); 25502621Sllai1 dv->sdev_flags |= SDEV_STALE; 25516347Sjg avl_remove(&ddv->sdev_entries, dv); 25522621Sllai1 } 25532621Sllai1 ddv->sdev_flags |= SDEV_BUILD; 25542621Sllai1 rw_exit(&ddv->sdev_contents); 25552621Sllai1 } 25562621Sllai1 25572621Sllai1 /* 25582621Sllai1 * Given a directory node, clean out all the nodes beneath. 25592621Sllai1 * If expr is specified, clean node with names matching expr. 25602621Sllai1 * If SDEV_ENFORCE is specified in flags, busy nodes are made stale, 25612621Sllai1 * so they are excluded from future lookups. 25622621Sllai1 */ 25632621Sllai1 int 25642621Sllai1 sdev_cleandir(struct sdev_node *ddv, char *expr, uint_t flags) 25652621Sllai1 { 25662621Sllai1 int error = 0; 25672621Sllai1 int busy = 0; 25682621Sllai1 struct vnode *vp; 25692621Sllai1 struct sdev_node *dv, *next = NULL; 25702621Sllai1 int bkstore = 0; 25712621Sllai1 int len = 0; 25722621Sllai1 char *bks_name = NULL; 25732621Sllai1 25742621Sllai1 ASSERT(SDEVTOV(ddv)->v_type == VDIR); 25752621Sllai1 25762621Sllai1 /* 25772621Sllai1 * We try our best to destroy all unused sdev_node's 25782621Sllai1 */ 25792621Sllai1 rw_enter(&ddv->sdev_contents, RW_WRITER); 25806260Sjg for (dv = SDEV_FIRST_ENTRY(ddv); dv; dv = next) { 25816260Sjg next = SDEV_NEXT_ENTRY(ddv, dv); 25822621Sllai1 vp = SDEVTOV(dv); 25832621Sllai1 25842621Sllai1 if (expr && gmatch(dv->sdev_name, expr) == 0) 25852621Sllai1 continue; 25862621Sllai1 25872621Sllai1 if (vp->v_type == VDIR && 25882621Sllai1 sdev_cleandir(dv, NULL, flags) != 0) { 25892621Sllai1 sdcmn_err9(("sdev_cleandir: dir %s busy\n", 25902621Sllai1 dv->sdev_name)); 25912621Sllai1 busy++; 25922621Sllai1 continue; 25932621Sllai1 } 25942621Sllai1 25952621Sllai1 if (vp->v_count > 0 && (flags & SDEV_ENFORCE) == 0) { 25962621Sllai1 sdcmn_err9(("sdev_cleandir: dir %s busy\n", 25972621Sllai1 dv->sdev_name)); 25982621Sllai1 busy++; 25992621Sllai1 continue; 26002621Sllai1 } 26012621Sllai1 26022621Sllai1 /* 26032621Sllai1 * at this point, either dv is not held or SDEV_ENFORCE 26042621Sllai1 * is specified. In either case, dv needs to be deleted 26052621Sllai1 */ 26062621Sllai1 SDEV_HOLD(dv); 26072621Sllai1 26082621Sllai1 bkstore = SDEV_IS_PERSIST(dv) ? 1 : 0; 26092621Sllai1 if (bkstore && (vp->v_type == VDIR)) 26102621Sllai1 bkstore += 1; 26112621Sllai1 26122621Sllai1 if (bkstore) { 26132621Sllai1 len = strlen(dv->sdev_name) + 1; 26142621Sllai1 bks_name = kmem_alloc(len, KM_SLEEP); 26152621Sllai1 bcopy(dv->sdev_name, bks_name, len); 26162621Sllai1 } 26172621Sllai1 26182621Sllai1 error = sdev_dirdelete(ddv, dv); 26192621Sllai1 26202621Sllai1 if (error == EBUSY) { 26212621Sllai1 sdcmn_err9(("sdev_cleandir: dir busy\n")); 26222621Sllai1 busy++; 26232621Sllai1 } 26242621Sllai1 26252621Sllai1 /* take care the backing store clean up */ 26262621Sllai1 if (bkstore && (error == 0)) { 26272621Sllai1 ASSERT(bks_name); 26282621Sllai1 ASSERT(ddv->sdev_attrvp); 26292621Sllai1 26302621Sllai1 if (bkstore == 1) { 26312621Sllai1 error = VOP_REMOVE(ddv->sdev_attrvp, 26325331Samw bks_name, kcred, NULL, 0); 26332621Sllai1 } else if (bkstore == 2) { 26342621Sllai1 error = VOP_RMDIR(ddv->sdev_attrvp, 26355331Samw bks_name, ddv->sdev_attrvp, kcred, NULL, 0); 26362621Sllai1 } 26372621Sllai1 26382621Sllai1 /* do not propagate the backing store errors */ 26392621Sllai1 if (error) { 26402621Sllai1 sdcmn_err9(("sdev_cleandir: backing store" 26412621Sllai1 "not cleaned\n")); 26422621Sllai1 error = 0; 26432621Sllai1 } 26442621Sllai1 26452621Sllai1 bkstore = 0; 26462621Sllai1 kmem_free(bks_name, len); 26472621Sllai1 bks_name = NULL; 26482621Sllai1 len = 0; 26492621Sllai1 } 26502621Sllai1 } 26512621Sllai1 26522621Sllai1 ddv->sdev_flags |= SDEV_BUILD; 26532621Sllai1 rw_exit(&ddv->sdev_contents); 26542621Sllai1 26552621Sllai1 if (busy) { 26562621Sllai1 error = EBUSY; 26572621Sllai1 } 26582621Sllai1 26592621Sllai1 return (error); 26602621Sllai1 } 26612621Sllai1 26622621Sllai1 /* 26632621Sllai1 * a convenient wrapper for readdir() funcs 26642621Sllai1 */ 26652621Sllai1 size_t 26662621Sllai1 add_dir_entry(dirent64_t *de, char *nm, size_t size, ino_t ino, offset_t off) 26672621Sllai1 { 26682621Sllai1 size_t reclen = DIRENT64_RECLEN(strlen(nm)); 26692621Sllai1 if (reclen > size) 26702621Sllai1 return (0); 26712621Sllai1 26722621Sllai1 de->d_ino = (ino64_t)ino; 26732621Sllai1 de->d_off = (off64_t)off + 1; 26742621Sllai1 de->d_reclen = (ushort_t)reclen; 26752621Sllai1 (void) strncpy(de->d_name, nm, DIRENT64_NAMELEN(reclen)); 26762621Sllai1 return (reclen); 26772621Sllai1 } 26782621Sllai1 26792621Sllai1 /* 26802621Sllai1 * sdev_mount service routines 26812621Sllai1 */ 26822621Sllai1 int 26832621Sllai1 sdev_copyin_mountargs(struct mounta *uap, struct sdev_mountargs *args) 26842621Sllai1 { 26852621Sllai1 int error; 26862621Sllai1 26872621Sllai1 if (uap->datalen != sizeof (*args)) 26882621Sllai1 return (EINVAL); 26892621Sllai1 26902621Sllai1 if (error = copyin(uap->dataptr, args, sizeof (*args))) { 26912621Sllai1 cmn_err(CE_WARN, "sdev_copyin_mountargs: can not" 26922621Sllai1 "get user data. error %d\n", error); 26932621Sllai1 return (EFAULT); 26942621Sllai1 } 26952621Sllai1 26962621Sllai1 return (0); 26972621Sllai1 } 26982621Sllai1 26992621Sllai1 #ifdef nextdp 27002621Sllai1 #undef nextdp 27012621Sllai1 #endif 27023133Sjg #define nextdp(dp) ((struct dirent64 *) \ 27033133Sjg (intptr_t)((char *)(dp) + (dp)->d_reclen)) 27042621Sllai1 27052621Sllai1 /* 27062621Sllai1 * readdir helper func 27072621Sllai1 */ 27082621Sllai1 int 27092621Sllai1 devname_readdir_func(vnode_t *vp, uio_t *uiop, cred_t *cred, int *eofp, 27102621Sllai1 int flags) 27112621Sllai1 { 27122621Sllai1 struct sdev_node *ddv = VTOSDEV(vp); 27132621Sllai1 struct sdev_node *dv; 27142621Sllai1 dirent64_t *dp; 27152621Sllai1 ulong_t outcount = 0; 27162621Sllai1 size_t namelen; 27172621Sllai1 ulong_t alloc_count; 27182621Sllai1 void *outbuf; 27192621Sllai1 struct iovec *iovp; 27202621Sllai1 int error = 0; 27212621Sllai1 size_t reclen; 27222621Sllai1 offset_t diroff; 27232621Sllai1 offset_t soff; 27242621Sllai1 int this_reclen; 27252621Sllai1 struct devname_nsmap *map = NULL; 27262621Sllai1 struct devname_ops *dirops = NULL; 27272621Sllai1 int (*fn)(devname_handle_t *, struct cred *) = NULL; 27282621Sllai1 int (*vtor)(struct sdev_node *) = NULL; 27292621Sllai1 struct vattr attr; 27302621Sllai1 timestruc_t now; 27312621Sllai1 27322621Sllai1 ASSERT(ddv->sdev_attr || ddv->sdev_attrvp); 27332621Sllai1 ASSERT(RW_READ_HELD(&ddv->sdev_contents)); 27342621Sllai1 27352621Sllai1 if (uiop->uio_loffset >= MAXOFF_T) { 27362621Sllai1 if (eofp) 27372621Sllai1 *eofp = 1; 27382621Sllai1 return (0); 27392621Sllai1 } 27402621Sllai1 27412621Sllai1 if (uiop->uio_iovcnt != 1) 27422621Sllai1 return (EINVAL); 27432621Sllai1 27442621Sllai1 if (vp->v_type != VDIR) 27452621Sllai1 return (ENOTDIR); 27462621Sllai1 27472621Sllai1 if (ddv->sdev_flags & SDEV_VTOR) { 27482621Sllai1 vtor = (int (*)(struct sdev_node *))sdev_get_vtor(ddv); 27492621Sllai1 ASSERT(vtor); 27502621Sllai1 } 27512621Sllai1 27522621Sllai1 if (eofp != NULL) 27532621Sllai1 *eofp = 0; 27542621Sllai1 27553133Sjg soff = uiop->uio_loffset; 27562621Sllai1 iovp = uiop->uio_iov; 27572621Sllai1 alloc_count = iovp->iov_len; 27582621Sllai1 dp = outbuf = kmem_alloc(alloc_count, KM_SLEEP); 27592621Sllai1 outcount = 0; 27602621Sllai1 27612621Sllai1 if (ddv->sdev_state == SDEV_ZOMBIE) 27622621Sllai1 goto get_cache; 27632621Sllai1 27642679Sszhou if (SDEV_IS_GLOBAL(ddv)) { 27652621Sllai1 map = sdev_get_map(ddv, 0); 27662621Sllai1 dirops = map ? map->dir_ops : NULL; 27672621Sllai1 fn = dirops ? dirops->devnops_readdir : NULL; 27682621Sllai1 27692621Sllai1 if (map && map->dir_map) { 27702621Sllai1 /* 27712621Sllai1 * load the name mapping rule database 27722621Sllai1 * through invoking devfsadm and symlink 27732621Sllai1 * all the entries in the map 27742621Sllai1 */ 27752621Sllai1 devname_rdr_result_t rdr_result; 27762621Sllai1 int do_thread = 0; 27772621Sllai1 27782621Sllai1 rw_enter(&map->dir_lock, RW_READER); 27792621Sllai1 do_thread = map->dir_maploaded ? 0 : 1; 27802621Sllai1 rw_exit(&map->dir_lock); 27812621Sllai1 27822621Sllai1 if (do_thread) { 27832621Sllai1 mutex_enter(&ddv->sdev_lookup_lock); 27842621Sllai1 SDEV_BLOCK_OTHERS(ddv, SDEV_READDIR); 27852621Sllai1 mutex_exit(&ddv->sdev_lookup_lock); 27862621Sllai1 27872621Sllai1 sdev_dispatch_to_nsrdr_thread(ddv, 27882621Sllai1 map->dir_map, &rdr_result); 27892621Sllai1 } 27902621Sllai1 } else if ((sdev_boot_state == SDEV_BOOT_STATE_COMPLETE) && 27912621Sllai1 !sdev_reconfig_boot && (flags & SDEV_BROWSE) && 27922621Sllai1 !SDEV_IS_DYNAMIC(ddv) && !SDEV_IS_NO_NCACHE(ddv) && 27932621Sllai1 ((moddebug & MODDEBUG_FINI_EBUSY) == 0) && 27942621Sllai1 !DEVNAME_DEVFSADM_HAS_RUN(devfsadm_state) && 27952621Sllai1 !DEVNAME_DEVFSADM_IS_RUNNING(devfsadm_state) && 27962621Sllai1 !sdev_reconfig_disable) { 27972621Sllai1 /* 27982621Sllai1 * invoking "devfsadm" to do system device reconfig 27992621Sllai1 */ 28002621Sllai1 mutex_enter(&ddv->sdev_lookup_lock); 28012621Sllai1 SDEV_BLOCK_OTHERS(ddv, 28022621Sllai1 (SDEV_READDIR|SDEV_LGWAITING)); 28032621Sllai1 mutex_exit(&ddv->sdev_lookup_lock); 28042621Sllai1 28052621Sllai1 sdcmn_err8(("readdir of %s by %s: reconfig\n", 28062621Sllai1 ddv->sdev_path, curproc->p_user.u_comm)); 28072621Sllai1 if (sdev_reconfig_verbose) { 28082621Sllai1 cmn_err(CE_CONT, 28092621Sllai1 "?readdir of %s by %s: reconfig\n", 28102621Sllai1 ddv->sdev_path, curproc->p_user.u_comm); 28112621Sllai1 } 28122621Sllai1 28132621Sllai1 sdev_devfsadmd_thread(ddv, NULL, kcred); 28142621Sllai1 } else if (DEVNAME_DEVFSADM_IS_RUNNING(devfsadm_state)) { 28152621Sllai1 /* 28162621Sllai1 * compensate the "ls" started later than "devfsadm" 28172621Sllai1 */ 28182621Sllai1 mutex_enter(&ddv->sdev_lookup_lock); 28192621Sllai1 SDEV_BLOCK_OTHERS(ddv, (SDEV_READDIR|SDEV_LGWAITING)); 28202621Sllai1 mutex_exit(&ddv->sdev_lookup_lock); 28212621Sllai1 } 28222621Sllai1 28232621Sllai1 /* 28242621Sllai1 * release the contents lock so that 28253843Sjg * the cache may be updated by devfsadmd 28262621Sllai1 */ 28272621Sllai1 rw_exit(&ddv->sdev_contents); 28282621Sllai1 mutex_enter(&ddv->sdev_lookup_lock); 28292621Sllai1 if (SDEV_IS_READDIR(ddv)) 28302621Sllai1 (void) sdev_wait4lookup(ddv, SDEV_READDIR); 28312621Sllai1 mutex_exit(&ddv->sdev_lookup_lock); 28322621Sllai1 rw_enter(&ddv->sdev_contents, RW_READER); 28332621Sllai1 28342621Sllai1 sdcmn_err4(("readdir of directory %s by %s\n", 28352621Sllai1 ddv->sdev_name, curproc->p_user.u_comm)); 28363843Sjg if (ddv->sdev_flags & SDEV_BUILD) { 28372621Sllai1 if (SDEV_IS_PERSIST(ddv)) { 28382621Sllai1 error = sdev_filldir_from_store(ddv, 28392621Sllai1 alloc_count, cred); 28402621Sllai1 } 28413843Sjg ddv->sdev_flags &= ~SDEV_BUILD; 28422621Sllai1 } 28432621Sllai1 } 28442621Sllai1 28452621Sllai1 get_cache: 28462621Sllai1 /* handle "." and ".." */ 28472621Sllai1 diroff = 0; 28482621Sllai1 if (soff == 0) { 28492621Sllai1 /* first time */ 28502621Sllai1 this_reclen = DIRENT64_RECLEN(1); 28512621Sllai1 if (alloc_count < this_reclen) { 28522621Sllai1 error = EINVAL; 28532621Sllai1 goto done; 28542621Sllai1 } 28552621Sllai1 28562621Sllai1 dp->d_ino = (ino64_t)ddv->sdev_ino; 28572621Sllai1 dp->d_off = (off64_t)1; 28582621Sllai1 dp->d_reclen = (ushort_t)this_reclen; 28592621Sllai1 28602621Sllai1 (void) strncpy(dp->d_name, ".", 28612621Sllai1 DIRENT64_NAMELEN(this_reclen)); 28622621Sllai1 outcount += dp->d_reclen; 28632621Sllai1 dp = nextdp(dp); 28642621Sllai1 } 28652621Sllai1 28662621Sllai1 diroff++; 28672621Sllai1 if (soff <= 1) { 28682621Sllai1 this_reclen = DIRENT64_RECLEN(2); 28692621Sllai1 if (alloc_count < outcount + this_reclen) { 28702621Sllai1 error = EINVAL; 28712621Sllai1 goto done; 28722621Sllai1 } 28732621Sllai1 28742621Sllai1 dp->d_reclen = (ushort_t)this_reclen; 28752621Sllai1 dp->d_ino = (ino64_t)ddv->sdev_dotdot->sdev_ino; 28762621Sllai1 dp->d_off = (off64_t)2; 28772621Sllai1 28782621Sllai1 (void) strncpy(dp->d_name, "..", 28792621Sllai1 DIRENT64_NAMELEN(this_reclen)); 28802621Sllai1 outcount += dp->d_reclen; 28812621Sllai1 28822621Sllai1 dp = nextdp(dp); 28832621Sllai1 } 28842621Sllai1 28852621Sllai1 28862621Sllai1 /* gets the cache */ 28872621Sllai1 diroff++; 28886260Sjg for (dv = SDEV_FIRST_ENTRY(ddv); dv; 28896260Sjg dv = SDEV_NEXT_ENTRY(ddv, dv), diroff++) { 28902621Sllai1 sdcmn_err3(("sdev_readdir: diroff %lld soff %lld for '%s' \n", 28912621Sllai1 diroff, soff, dv->sdev_name)); 28922621Sllai1 28932621Sllai1 /* bypassing pre-matured nodes */ 28942621Sllai1 if (diroff < soff || (dv->sdev_state != SDEV_READY)) { 28952621Sllai1 sdcmn_err3(("sdev_readdir: pre-mature node " 28962621Sllai1 "%s\n", dv->sdev_name)); 28972621Sllai1 continue; 28982621Sllai1 } 28992621Sllai1 29002621Sllai1 /* 29012621Sllai1 * Check validity of node 29022621Sllai1 */ 29032621Sllai1 if (vtor) { 29042621Sllai1 switch (vtor(dv)) { 29052621Sllai1 case SDEV_VTOR_VALID: 29062621Sllai1 break; 29072621Sllai1 case SDEV_VTOR_INVALID: 29082621Sllai1 case SDEV_VTOR_SKIP: 29092621Sllai1 continue; 29102621Sllai1 default: 29112621Sllai1 cmn_err(CE_PANIC, 29122621Sllai1 "dev fs: validator failed: %s(%p)\n", 29132621Sllai1 dv->sdev_name, (void *)dv); 29142621Sllai1 break; 29152621Sllai1 /*NOTREACHED*/ 29162621Sllai1 } 29172621Sllai1 } 29182621Sllai1 29192621Sllai1 /* 29202621Sllai1 * call back into the module for the validity/bookkeeping 29212621Sllai1 * of this entry 29222621Sllai1 */ 29232621Sllai1 if (fn) { 29242621Sllai1 error = (*fn)(&(dv->sdev_handle), cred); 29252621Sllai1 if (error) { 29262621Sllai1 sdcmn_err4(("sdev_readdir: module did not " 29272621Sllai1 "validate %s\n", dv->sdev_name)); 29282621Sllai1 continue; 29292621Sllai1 } 29302621Sllai1 } 29312621Sllai1 29322621Sllai1 namelen = strlen(dv->sdev_name); 29332621Sllai1 reclen = DIRENT64_RECLEN(namelen); 29342621Sllai1 if (outcount + reclen > alloc_count) { 29352621Sllai1 goto full; 29362621Sllai1 } 29372621Sllai1 dp->d_reclen = (ushort_t)reclen; 29382621Sllai1 dp->d_ino = (ino64_t)dv->sdev_ino; 29392621Sllai1 dp->d_off = (off64_t)diroff + 1; 29402621Sllai1 (void) strncpy(dp->d_name, dv->sdev_name, 29412621Sllai1 DIRENT64_NAMELEN(reclen)); 29422621Sllai1 outcount += reclen; 29432621Sllai1 dp = nextdp(dp); 29442621Sllai1 } 29452621Sllai1 29462621Sllai1 full: 29472621Sllai1 sdcmn_err4(("sdev_readdir: moving %lu bytes: " 29482621Sllai1 "diroff %lld, soff %lld, dv %p\n", outcount, diroff, soff, 29492621Sllai1 (void *)dv)); 29502621Sllai1 29512621Sllai1 if (outcount) 29522621Sllai1 error = uiomove(outbuf, outcount, UIO_READ, uiop); 29532621Sllai1 29542621Sllai1 if (!error) { 29553133Sjg uiop->uio_loffset = diroff; 29562621Sllai1 if (eofp) 29572621Sllai1 *eofp = dv ? 0 : 1; 29582621Sllai1 } 29592621Sllai1 29602621Sllai1 29612621Sllai1 if (ddv->sdev_attrvp) { 29622621Sllai1 gethrestime(&now); 29632621Sllai1 attr.va_ctime = now; 29642621Sllai1 attr.va_atime = now; 29652621Sllai1 attr.va_mask = AT_CTIME|AT_ATIME; 29662621Sllai1 29672621Sllai1 (void) VOP_SETATTR(ddv->sdev_attrvp, &attr, 0, kcred, NULL); 29682621Sllai1 } 29692621Sllai1 done: 29702621Sllai1 kmem_free(outbuf, alloc_count); 29712621Sllai1 return (error); 29722621Sllai1 } 29732621Sllai1 29742621Sllai1 29752621Sllai1 static int 29762621Sllai1 sdev_modctl_lookup(const char *path, vnode_t **r_vp) 29772621Sllai1 { 29782621Sllai1 vnode_t *vp; 29792621Sllai1 vnode_t *cvp; 29802621Sllai1 struct sdev_node *svp; 29812621Sllai1 char *nm; 29822621Sllai1 struct pathname pn; 29832621Sllai1 int error; 29842621Sllai1 int persisted = 0; 29852621Sllai1 29862621Sllai1 if (error = pn_get((char *)path, UIO_SYSSPACE, &pn)) 29872621Sllai1 return (error); 29882621Sllai1 nm = kmem_alloc(MAXNAMELEN, KM_SLEEP); 29892621Sllai1 29902621Sllai1 vp = rootdir; 29912621Sllai1 VN_HOLD(vp); 29922621Sllai1 29932621Sllai1 while (pn_pathleft(&pn)) { 29942621Sllai1 ASSERT(vp->v_type == VDIR); 29952621Sllai1 (void) pn_getcomponent(&pn, nm); 29965331Samw error = VOP_LOOKUP(vp, nm, &cvp, NULL, 0, NULL, kcred, NULL, 29975331Samw NULL, NULL); 29982621Sllai1 VN_RELE(vp); 29992621Sllai1 30002621Sllai1 if (error) 30012621Sllai1 break; 30022621Sllai1 30032621Sllai1 /* traverse mount points encountered on our journey */ 30042621Sllai1 if (vn_ismntpt(cvp) && (error = traverse(&cvp)) != 0) { 30052621Sllai1 VN_RELE(cvp); 30062621Sllai1 break; 30072621Sllai1 } 30082621Sllai1 30092621Sllai1 /* 30102621Sllai1 * Direct the operation to the persisting filesystem 30112621Sllai1 * underlying /dev. Bail if we encounter a 30122621Sllai1 * non-persistent dev entity here. 30132621Sllai1 */ 30142621Sllai1 if (cvp->v_vfsp->vfs_fstype == devtype) { 30152621Sllai1 30162621Sllai1 if ((VTOSDEV(cvp)->sdev_flags & SDEV_PERSIST) == 0) { 30172621Sllai1 error = ENOENT; 30182621Sllai1 VN_RELE(cvp); 30192621Sllai1 break; 30202621Sllai1 } 30212621Sllai1 30222621Sllai1 if (VTOSDEV(cvp) == NULL) { 30232621Sllai1 error = ENOENT; 30242621Sllai1 VN_RELE(cvp); 30252621Sllai1 break; 30262621Sllai1 } 30272621Sllai1 svp = VTOSDEV(cvp); 30282621Sllai1 if ((vp = svp->sdev_attrvp) == NULL) { 30292621Sllai1 error = ENOENT; 30302621Sllai1 VN_RELE(cvp); 30312621Sllai1 break; 30322621Sllai1 } 30332621Sllai1 persisted = 1; 30342621Sllai1 VN_HOLD(vp); 30352621Sllai1 VN_RELE(cvp); 30362621Sllai1 cvp = vp; 30372621Sllai1 } 30382621Sllai1 30392621Sllai1 vp = cvp; 30402621Sllai1 pn_skipslash(&pn); 30412621Sllai1 } 30422621Sllai1 30432621Sllai1 kmem_free(nm, MAXNAMELEN); 30442621Sllai1 pn_free(&pn); 30452621Sllai1 30462621Sllai1 if (error) 30472621Sllai1 return (error); 30482621Sllai1 30492621Sllai1 /* 30502621Sllai1 * Only return persisted nodes in the filesystem underlying /dev. 30512621Sllai1 */ 30522621Sllai1 if (!persisted) { 30532621Sllai1 VN_RELE(vp); 30542621Sllai1 return (ENOENT); 30552621Sllai1 } 30562621Sllai1 30572621Sllai1 *r_vp = vp; 30582621Sllai1 return (0); 30592621Sllai1 } 30602621Sllai1 30612621Sllai1 int 30622621Sllai1 sdev_modctl_readdir(const char *dir, char ***dirlistp, 30636065Scth int *npathsp, int *npathsp_alloc, int checking_empty) 30642621Sllai1 { 30652621Sllai1 char **pathlist = NULL; 30662621Sllai1 char **newlist = NULL; 30672621Sllai1 int npaths = 0; 30682621Sllai1 int npaths_alloc = 0; 30692621Sllai1 dirent64_t *dbuf = NULL; 30702621Sllai1 int n; 30712621Sllai1 char *s; 30722621Sllai1 int error; 30732621Sllai1 vnode_t *vp; 30742621Sllai1 int eof; 30752621Sllai1 struct iovec iov; 30762621Sllai1 struct uio uio; 30772621Sllai1 struct dirent64 *dp; 30782621Sllai1 size_t dlen; 30792621Sllai1 size_t dbuflen; 30802621Sllai1 int ndirents = 64; 30812621Sllai1 char *nm; 30822621Sllai1 30832621Sllai1 error = sdev_modctl_lookup(dir, &vp); 30842621Sllai1 sdcmn_err11(("modctl readdir: %s by %s: %s\n", 30852621Sllai1 dir, curproc->p_user.u_comm, 30862621Sllai1 (error == 0) ? "ok" : "failed")); 30872621Sllai1 if (error) 30882621Sllai1 return (error); 30892621Sllai1 30902621Sllai1 dlen = ndirents * (sizeof (*dbuf)); 30912621Sllai1 dbuf = kmem_alloc(dlen, KM_SLEEP); 30922621Sllai1 30932621Sllai1 uio.uio_iov = &iov; 30942621Sllai1 uio.uio_iovcnt = 1; 30952621Sllai1 uio.uio_segflg = UIO_SYSSPACE; 30962621Sllai1 uio.uio_fmode = 0; 30972621Sllai1 uio.uio_extflg = UIO_COPY_CACHED; 30982621Sllai1 uio.uio_loffset = 0; 30992621Sllai1 uio.uio_llimit = MAXOFFSET_T; 31002621Sllai1 31012621Sllai1 eof = 0; 31022621Sllai1 error = 0; 31032621Sllai1 while (!error && !eof) { 31042621Sllai1 uio.uio_resid = dlen; 31052621Sllai1 iov.iov_base = (char *)dbuf; 31062621Sllai1 iov.iov_len = dlen; 31072621Sllai1 31082621Sllai1 (void) VOP_RWLOCK(vp, V_WRITELOCK_FALSE, NULL); 31095331Samw error = VOP_READDIR(vp, &uio, kcred, &eof, NULL, 0); 31102621Sllai1 VOP_RWUNLOCK(vp, V_WRITELOCK_FALSE, NULL); 31112621Sllai1 31122621Sllai1 dbuflen = dlen - uio.uio_resid; 31132621Sllai1 31142621Sllai1 if (error || dbuflen == 0) 31152621Sllai1 break; 31162621Sllai1 31172621Sllai1 for (dp = dbuf; ((intptr_t)dp < (intptr_t)dbuf + dbuflen); 31186065Scth dp = (dirent64_t *)((intptr_t)dp + dp->d_reclen)) { 31192621Sllai1 31202621Sllai1 nm = dp->d_name; 31212621Sllai1 31222621Sllai1 if (strcmp(nm, ".") == 0 || strcmp(nm, "..") == 0) 31232621Sllai1 continue; 31242621Sllai1 if (npaths == npaths_alloc) { 31252621Sllai1 npaths_alloc += 64; 31262621Sllai1 newlist = (char **) 31272621Sllai1 kmem_zalloc((npaths_alloc + 1) * 31286065Scth sizeof (char *), KM_SLEEP); 31292621Sllai1 if (pathlist) { 31302621Sllai1 bcopy(pathlist, newlist, 31312621Sllai1 npaths * sizeof (char *)); 31322621Sllai1 kmem_free(pathlist, 31332621Sllai1 (npaths + 1) * sizeof (char *)); 31342621Sllai1 } 31352621Sllai1 pathlist = newlist; 31362621Sllai1 } 31372621Sllai1 n = strlen(nm) + 1; 31382621Sllai1 s = kmem_alloc(n, KM_SLEEP); 31392621Sllai1 bcopy(nm, s, n); 31402621Sllai1 pathlist[npaths++] = s; 31412621Sllai1 sdcmn_err11((" %s/%s\n", dir, s)); 31426065Scth 31436065Scth /* if checking empty, one entry is as good as many */ 31446065Scth if (checking_empty) { 31456065Scth eof = 1; 31466065Scth break; 31476065Scth } 31482621Sllai1 } 31492621Sllai1 } 31502621Sllai1 31512621Sllai1 exit: 31522621Sllai1 VN_RELE(vp); 31532621Sllai1 31542621Sllai1 if (dbuf) 31552621Sllai1 kmem_free(dbuf, dlen); 31562621Sllai1 31572621Sllai1 if (error) 31582621Sllai1 return (error); 31592621Sllai1 31602621Sllai1 *dirlistp = pathlist; 31612621Sllai1 *npathsp = npaths; 31622621Sllai1 *npathsp_alloc = npaths_alloc; 31632621Sllai1 31642621Sllai1 return (0); 31652621Sllai1 } 31662621Sllai1 31672621Sllai1 void 31682621Sllai1 sdev_modctl_readdir_free(char **pathlist, int npaths, int npaths_alloc) 31692621Sllai1 { 31702621Sllai1 int i, n; 31712621Sllai1 31722621Sllai1 for (i = 0; i < npaths; i++) { 31732621Sllai1 n = strlen(pathlist[i]) + 1; 31742621Sllai1 kmem_free(pathlist[i], n); 31752621Sllai1 } 31762621Sllai1 31772621Sllai1 kmem_free(pathlist, (npaths_alloc + 1) * sizeof (char *)); 31782621Sllai1 } 31792621Sllai1 31802621Sllai1 int 31812621Sllai1 sdev_modctl_devexists(const char *path) 31822621Sllai1 { 31832621Sllai1 vnode_t *vp; 31842621Sllai1 int error; 31852621Sllai1 31862621Sllai1 error = sdev_modctl_lookup(path, &vp); 31872621Sllai1 sdcmn_err11(("modctl dev exists: %s by %s: %s\n", 31882621Sllai1 path, curproc->p_user.u_comm, 31892621Sllai1 (error == 0) ? "ok" : "failed")); 31902621Sllai1 if (error == 0) 31912621Sllai1 VN_RELE(vp); 31922621Sllai1 31932621Sllai1 return (error); 31942621Sllai1 } 31952621Sllai1 31962621Sllai1 void 31972621Sllai1 sdev_update_newnsmap(struct devname_nsmap *map, char *module, char *mapname) 31982621Sllai1 { 31992621Sllai1 rw_enter(&map->dir_lock, RW_WRITER); 32002621Sllai1 if (module) { 32012621Sllai1 ASSERT(map->dir_newmodule == NULL); 32022621Sllai1 map->dir_newmodule = i_ddi_strdup(module, KM_SLEEP); 32032621Sllai1 } 32042621Sllai1 if (mapname) { 32052621Sllai1 ASSERT(map->dir_newmap == NULL); 32062621Sllai1 map->dir_newmap = i_ddi_strdup(mapname, KM_SLEEP); 32072621Sllai1 } 32082621Sllai1 32092621Sllai1 map->dir_invalid = 1; 32102621Sllai1 rw_exit(&map->dir_lock); 32112621Sllai1 } 32122621Sllai1 32132621Sllai1 void 32142621Sllai1 sdev_replace_nsmap(struct devname_nsmap *map, char *module, char *mapname) 32152621Sllai1 { 32162621Sllai1 char *old_module = NULL; 32172621Sllai1 char *old_map = NULL; 32182621Sllai1 32192621Sllai1 ASSERT(RW_LOCK_HELD(&map->dir_lock)); 32202621Sllai1 if (!rw_tryupgrade(&map->dir_lock)) { 32212621Sllai1 rw_exit(&map->dir_lock); 32222621Sllai1 rw_enter(&map->dir_lock, RW_WRITER); 32232621Sllai1 } 32242621Sllai1 32252621Sllai1 old_module = map->dir_module; 32262621Sllai1 if (module) { 32272621Sllai1 if (old_module && strcmp(old_module, module) != 0) { 32282621Sllai1 kmem_free(old_module, strlen(old_module) + 1); 32292621Sllai1 } 32302621Sllai1 map->dir_module = module; 32312621Sllai1 map->dir_newmodule = NULL; 32322621Sllai1 } 32332621Sllai1 32342621Sllai1 old_map = map->dir_map; 32352621Sllai1 if (mapname) { 32362621Sllai1 if (old_map && strcmp(old_map, mapname) != 0) { 32372621Sllai1 kmem_free(old_map, strlen(old_map) + 1); 32382621Sllai1 } 32392621Sllai1 32402621Sllai1 map->dir_map = mapname; 32412621Sllai1 map->dir_newmap = NULL; 32422621Sllai1 } 32432621Sllai1 map->dir_maploaded = 0; 32442621Sllai1 map->dir_invalid = 0; 32452621Sllai1 rw_downgrade(&map->dir_lock); 32462621Sllai1 } 32472621Sllai1 32482621Sllai1 /* 32492621Sllai1 * dir_name should have at least one attribute, 32502621Sllai1 * dir_module 32512621Sllai1 * or dir_map 32522621Sllai1 * or both 32532621Sllai1 * caller holds the devname_nsmaps_lock 32542621Sllai1 */ 32552621Sllai1 void 32562621Sllai1 sdev_insert_nsmap(char *dir_name, char *dir_module, char *dir_map) 32572621Sllai1 { 32582621Sllai1 struct devname_nsmap *map; 32592621Sllai1 int len = 0; 32602621Sllai1 32612621Sllai1 ASSERT(dir_name); 32622621Sllai1 ASSERT(dir_module || dir_map); 32632621Sllai1 ASSERT(MUTEX_HELD(&devname_nsmaps_lock)); 32642621Sllai1 32652621Sllai1 if (map = sdev_get_nsmap_by_dir(dir_name, 1)) { 32662621Sllai1 sdev_update_newnsmap(map, dir_module, dir_map); 32672621Sllai1 return; 32682621Sllai1 } 32692621Sllai1 32702621Sllai1 map = (struct devname_nsmap *)kmem_zalloc(sizeof (*map), KM_SLEEP); 32712621Sllai1 map->dir_name = i_ddi_strdup(dir_name, KM_SLEEP); 32722621Sllai1 if (dir_module) { 32732621Sllai1 map->dir_module = i_ddi_strdup(dir_module, KM_SLEEP); 32742621Sllai1 } 32752621Sllai1 32762621Sllai1 if (dir_map) { 32772621Sllai1 if (dir_map[0] != '/') { 32782621Sllai1 len = strlen(ETC_DEV_DIR) + strlen(dir_map) + 2; 32792621Sllai1 map->dir_map = kmem_zalloc(len, KM_SLEEP); 32802621Sllai1 (void) snprintf(map->dir_map, len, "%s/%s", ETC_DEV_DIR, 32812621Sllai1 dir_map); 32822621Sllai1 } else { 32832621Sllai1 map->dir_map = i_ddi_strdup(dir_map, KM_SLEEP); 32842621Sllai1 } 32852621Sllai1 } 32862621Sllai1 32872621Sllai1 map->dir_ops = NULL; 32882621Sllai1 map->dir_maploaded = 0; 32892621Sllai1 map->dir_invalid = 0; 32902621Sllai1 rw_init(&map->dir_lock, NULL, RW_DEFAULT, NULL); 32912621Sllai1 32922621Sllai1 map->next = devname_nsmaps; 32932621Sllai1 map->prev = NULL; 32942621Sllai1 if (devname_nsmaps) { 32952621Sllai1 devname_nsmaps->prev = map; 32962621Sllai1 } 32972621Sllai1 devname_nsmaps = map; 32982621Sllai1 } 32992621Sllai1 33002621Sllai1 struct devname_nsmap * 33012621Sllai1 sdev_get_nsmap_by_dir(char *dir_path, int locked) 33022621Sllai1 { 33032621Sllai1 struct devname_nsmap *map = NULL; 33042621Sllai1 33052621Sllai1 if (!locked) 33062621Sllai1 mutex_enter(&devname_nsmaps_lock); 33072621Sllai1 for (map = devname_nsmaps; map; map = map->next) { 33082621Sllai1 sdcmn_err6(("sdev_get_nsmap_by_dir: dir %s\n", map->dir_name)); 33092621Sllai1 if (strcmp(map->dir_name, dir_path) == 0) { 33102621Sllai1 if (!locked) 33112621Sllai1 mutex_exit(&devname_nsmaps_lock); 33122621Sllai1 return (map); 33132621Sllai1 } 33142621Sllai1 } 33152621Sllai1 if (!locked) 33162621Sllai1 mutex_exit(&devname_nsmaps_lock); 33172621Sllai1 return (NULL); 33182621Sllai1 } 33192621Sllai1 33202621Sllai1 struct devname_nsmap * 33212621Sllai1 sdev_get_nsmap_by_module(char *mod_name) 33222621Sllai1 { 33232621Sllai1 struct devname_nsmap *map = NULL; 33242621Sllai1 33252621Sllai1 mutex_enter(&devname_nsmaps_lock); 33262621Sllai1 for (map = devname_nsmaps; map; map = map->next) { 33272621Sllai1 sdcmn_err7(("sdev_get_nsmap_by_module: module %s\n", 33282621Sllai1 map->dir_module)); 33292621Sllai1 if (map->dir_module && strcmp(map->dir_module, mod_name) == 0) { 33302621Sllai1 mutex_exit(&devname_nsmaps_lock); 33312621Sllai1 return (map); 33322621Sllai1 } 33332621Sllai1 } 33342621Sllai1 mutex_exit(&devname_nsmaps_lock); 33352621Sllai1 return (NULL); 33362621Sllai1 } 33372621Sllai1 33382621Sllai1 void 33392621Sllai1 sdev_invalidate_nsmaps() 33402621Sllai1 { 33412621Sllai1 struct devname_nsmap *map = NULL; 33422621Sllai1 33432621Sllai1 ASSERT(MUTEX_HELD(&devname_nsmaps_lock)); 33442621Sllai1 33452621Sllai1 if (devname_nsmaps == NULL) 33462621Sllai1 return; 33472621Sllai1 33482621Sllai1 for (map = devname_nsmaps; map; map = map->next) { 33492621Sllai1 rw_enter(&map->dir_lock, RW_WRITER); 33502621Sllai1 map->dir_invalid = 1; 33512621Sllai1 rw_exit(&map->dir_lock); 33522621Sllai1 } 33532621Sllai1 devname_nsmaps_invalidated = 1; 33542621Sllai1 } 33552621Sllai1 33562621Sllai1 33572621Sllai1 int 33582621Sllai1 sdev_nsmaps_loaded() 33592621Sllai1 { 33602621Sllai1 int ret = 0; 33612621Sllai1 33622621Sllai1 mutex_enter(&devname_nsmaps_lock); 33632621Sllai1 if (devname_nsmaps_loaded) 33642621Sllai1 ret = 1; 33652621Sllai1 33662621Sllai1 mutex_exit(&devname_nsmaps_lock); 33672621Sllai1 return (ret); 33682621Sllai1 } 33692621Sllai1 33702621Sllai1 int 33712621Sllai1 sdev_nsmaps_reloaded() 33722621Sllai1 { 33732621Sllai1 int ret = 0; 33742621Sllai1 33752621Sllai1 mutex_enter(&devname_nsmaps_lock); 33762621Sllai1 if (devname_nsmaps_invalidated) 33772621Sllai1 ret = 1; 33782621Sllai1 33792621Sllai1 mutex_exit(&devname_nsmaps_lock); 33802621Sllai1 return (ret); 33812621Sllai1 } 33822621Sllai1 33832621Sllai1 static void 33842621Sllai1 sdev_free_nsmap(struct devname_nsmap *map) 33852621Sllai1 { 33862621Sllai1 ASSERT(map); 33872621Sllai1 if (map->dir_name) 33882621Sllai1 kmem_free(map->dir_name, strlen(map->dir_name) + 1); 33892621Sllai1 if (map->dir_module) 33902621Sllai1 kmem_free(map->dir_module, strlen(map->dir_module) + 1); 33912621Sllai1 if (map->dir_map) 33922621Sllai1 kmem_free(map->dir_map, strlen(map->dir_map) + 1); 33932621Sllai1 rw_destroy(&map->dir_lock); 33942621Sllai1 kmem_free(map, sizeof (*map)); 33952621Sllai1 } 33962621Sllai1 33972621Sllai1 void 33982621Sllai1 sdev_validate_nsmaps() 33992621Sllai1 { 34002621Sllai1 struct devname_nsmap *map = NULL; 34012621Sllai1 struct devname_nsmap *oldmap = NULL; 34022621Sllai1 34032621Sllai1 ASSERT(MUTEX_HELD(&devname_nsmaps_lock)); 34042621Sllai1 map = devname_nsmaps; 34052621Sllai1 while (map) { 34062621Sllai1 rw_enter(&map->dir_lock, RW_READER); 34072621Sllai1 if ((map->dir_invalid == 1) && (map->dir_newmodule == NULL) && 34082621Sllai1 (map->dir_newmap == NULL)) { 34092621Sllai1 oldmap = map; 34102621Sllai1 rw_exit(&map->dir_lock); 34112621Sllai1 if (map->prev) 34122621Sllai1 map->prev->next = oldmap->next; 34132621Sllai1 if (map == devname_nsmaps) 34142621Sllai1 devname_nsmaps = oldmap->next; 34152621Sllai1 34162621Sllai1 map = oldmap->next; 34172621Sllai1 if (map) 34182621Sllai1 map->prev = oldmap->prev; 34192621Sllai1 sdev_free_nsmap(oldmap); 34202621Sllai1 oldmap = NULL; 34212621Sllai1 } else { 34222621Sllai1 rw_exit(&map->dir_lock); 34232621Sllai1 map = map->next; 34242621Sllai1 } 34252621Sllai1 } 34262621Sllai1 devname_nsmaps_invalidated = 0; 34272621Sllai1 } 34282621Sllai1 34292621Sllai1 static int 34302621Sllai1 sdev_map_is_invalid(struct devname_nsmap *map) 34312621Sllai1 { 34322621Sllai1 int ret = 0; 34332621Sllai1 34342621Sllai1 ASSERT(map); 34352621Sllai1 rw_enter(&map->dir_lock, RW_READER); 34362621Sllai1 if (map->dir_invalid) 34372621Sllai1 ret = 1; 34382621Sllai1 rw_exit(&map->dir_lock); 34392621Sllai1 return (ret); 34402621Sllai1 } 34412621Sllai1 34422621Sllai1 static int 34432621Sllai1 sdev_check_map(struct devname_nsmap *map) 34442621Sllai1 { 34452621Sllai1 struct devname_nsmap *mapp; 34462621Sllai1 34472621Sllai1 mutex_enter(&devname_nsmaps_lock); 34482621Sllai1 if (devname_nsmaps == NULL) { 34492621Sllai1 mutex_exit(&devname_nsmaps_lock); 34502621Sllai1 return (1); 34512621Sllai1 } 34522621Sllai1 34532621Sllai1 for (mapp = devname_nsmaps; mapp; mapp = mapp->next) { 34542621Sllai1 if (mapp == map) { 34552621Sllai1 mutex_exit(&devname_nsmaps_lock); 34562621Sllai1 return (0); 34572621Sllai1 } 34582621Sllai1 } 34592621Sllai1 34602621Sllai1 mutex_exit(&devname_nsmaps_lock); 34612621Sllai1 return (1); 34622621Sllai1 34632621Sllai1 } 34642621Sllai1 34652621Sllai1 struct devname_nsmap * 34662621Sllai1 sdev_get_map(struct sdev_node *dv, int validate) 34672621Sllai1 { 34682621Sllai1 struct devname_nsmap *map; 34692621Sllai1 int error; 34702621Sllai1 34712621Sllai1 ASSERT(RW_READ_HELD(&dv->sdev_contents)); 34722621Sllai1 map = dv->sdev_mapinfo; 34732621Sllai1 if (map && sdev_check_map(map)) { 34742621Sllai1 if (!rw_tryupgrade(&dv->sdev_contents)) { 34752621Sllai1 rw_exit(&dv->sdev_contents); 34762621Sllai1 rw_enter(&dv->sdev_contents, RW_WRITER); 34772621Sllai1 } 34782621Sllai1 dv->sdev_mapinfo = NULL; 34792621Sllai1 rw_downgrade(&dv->sdev_contents); 34802621Sllai1 return (NULL); 34812621Sllai1 } 34822621Sllai1 34832621Sllai1 if (validate && (!map || (map && sdev_map_is_invalid(map)))) { 34842621Sllai1 if (!rw_tryupgrade(&dv->sdev_contents)) { 34852621Sllai1 rw_exit(&dv->sdev_contents); 34862621Sllai1 rw_enter(&dv->sdev_contents, RW_WRITER); 34872621Sllai1 } 34882621Sllai1 error = sdev_get_moduleops(dv); 34892621Sllai1 if (!error) 34902621Sllai1 map = dv->sdev_mapinfo; 34912621Sllai1 rw_downgrade(&dv->sdev_contents); 34922621Sllai1 } 34932621Sllai1 return (map); 34942621Sllai1 } 34952621Sllai1 34962621Sllai1 extern int sdev_vnodeops_tbl_size; 34972621Sllai1 34982621Sllai1 /* 34992621Sllai1 * construct a new template with overrides from vtab 35002621Sllai1 */ 35012621Sllai1 static fs_operation_def_t * 35022621Sllai1 sdev_merge_vtab(const fs_operation_def_t tab[]) 35032621Sllai1 { 35042621Sllai1 fs_operation_def_t *new; 35052621Sllai1 const fs_operation_def_t *tab_entry; 35062621Sllai1 35072621Sllai1 /* make a copy of standard vnode ops table */ 35082621Sllai1 new = kmem_alloc(sdev_vnodeops_tbl_size, KM_SLEEP); 35092621Sllai1 bcopy((void *)sdev_vnodeops_tbl, new, sdev_vnodeops_tbl_size); 35102621Sllai1 35112621Sllai1 /* replace the overrides from tab */ 35122621Sllai1 for (tab_entry = tab; tab_entry->name != NULL; tab_entry++) { 35132621Sllai1 fs_operation_def_t *std_entry = new; 35142621Sllai1 while (std_entry->name) { 35152621Sllai1 if (strcmp(tab_entry->name, std_entry->name) == 0) { 35162621Sllai1 std_entry->func = tab_entry->func; 35172621Sllai1 break; 35182621Sllai1 } 35192621Sllai1 std_entry++; 35202621Sllai1 } 35212621Sllai1 if (std_entry->name == NULL) 35222621Sllai1 cmn_err(CE_NOTE, "sdev_merge_vtab: entry %s unused.", 35232621Sllai1 tab_entry->name); 35242621Sllai1 } 35252621Sllai1 35262621Sllai1 return (new); 35272621Sllai1 } 35282621Sllai1 35292621Sllai1 /* free memory allocated by sdev_merge_vtab */ 35302621Sllai1 static void 35312621Sllai1 sdev_free_vtab(fs_operation_def_t *new) 35322621Sllai1 { 35332621Sllai1 kmem_free(new, sdev_vnodeops_tbl_size); 35342621Sllai1 } 35352621Sllai1 35362621Sllai1 void 35372621Sllai1 devname_get_vnode(devname_handle_t *hdl, vnode_t **vpp) 35382621Sllai1 { 35392621Sllai1 struct sdev_node *dv = hdl->dh_data; 35402621Sllai1 35412621Sllai1 ASSERT(dv); 35422621Sllai1 35432621Sllai1 rw_enter(&dv->sdev_contents, RW_READER); 35442621Sllai1 *vpp = SDEVTOV(dv); 35452621Sllai1 rw_exit(&dv->sdev_contents); 35462621Sllai1 } 35472621Sllai1 35482621Sllai1 int 35492621Sllai1 devname_get_path(devname_handle_t *hdl, char **path) 35502621Sllai1 { 35512621Sllai1 struct sdev_node *dv = hdl->dh_data; 35522621Sllai1 35532621Sllai1 ASSERT(dv); 35542621Sllai1 35552621Sllai1 rw_enter(&dv->sdev_contents, RW_READER); 35562621Sllai1 *path = dv->sdev_path; 35572621Sllai1 rw_exit(&dv->sdev_contents); 35582621Sllai1 return (0); 35592621Sllai1 } 35602621Sllai1 35612621Sllai1 int 35622621Sllai1 devname_get_name(devname_handle_t *hdl, char **entry) 35632621Sllai1 { 35642621Sllai1 struct sdev_node *dv = hdl->dh_data; 35652621Sllai1 35662621Sllai1 ASSERT(dv); 35672621Sllai1 rw_enter(&dv->sdev_contents, RW_READER); 35682621Sllai1 *entry = dv->sdev_name; 35692621Sllai1 rw_exit(&dv->sdev_contents); 35702621Sllai1 return (0); 35712621Sllai1 } 35722621Sllai1 35732621Sllai1 void 35742621Sllai1 devname_get_dir_vnode(devname_handle_t *hdl, vnode_t **vpp) 35752621Sllai1 { 35762621Sllai1 struct sdev_node *dv = hdl->dh_data->sdev_dotdot; 35772621Sllai1 35782621Sllai1 ASSERT(dv); 35792621Sllai1 35802621Sllai1 rw_enter(&dv->sdev_contents, RW_READER); 35812621Sllai1 *vpp = SDEVTOV(dv); 35822621Sllai1 rw_exit(&dv->sdev_contents); 35832621Sllai1 } 35842621Sllai1 35852621Sllai1 int 35862621Sllai1 devname_get_dir_path(devname_handle_t *hdl, char **path) 35872621Sllai1 { 35882621Sllai1 struct sdev_node *dv = hdl->dh_data->sdev_dotdot; 35892621Sllai1 35902621Sllai1 ASSERT(dv); 35912621Sllai1 rw_enter(&dv->sdev_contents, RW_READER); 35922621Sllai1 *path = dv->sdev_path; 35932621Sllai1 rw_exit(&dv->sdev_contents); 35942621Sllai1 return (0); 35952621Sllai1 } 35962621Sllai1 35972621Sllai1 int 35982621Sllai1 devname_get_dir_name(devname_handle_t *hdl, char **entry) 35992621Sllai1 { 36002621Sllai1 struct sdev_node *dv = hdl->dh_data->sdev_dotdot; 36012621Sllai1 36022621Sllai1 ASSERT(dv); 36032621Sllai1 rw_enter(&dv->sdev_contents, RW_READER); 36042621Sllai1 *entry = dv->sdev_name; 36052621Sllai1 rw_exit(&dv->sdev_contents); 36062621Sllai1 return (0); 36072621Sllai1 } 36082621Sllai1 36092621Sllai1 int 36102621Sllai1 devname_get_dir_nsmap(devname_handle_t *hdl, struct devname_nsmap **map) 36112621Sllai1 { 36122621Sllai1 struct sdev_node *dv = hdl->dh_data->sdev_dotdot; 36132621Sllai1 36142621Sllai1 ASSERT(dv); 36152621Sllai1 rw_enter(&dv->sdev_contents, RW_READER); 36162621Sllai1 *map = dv->sdev_mapinfo; 36172621Sllai1 rw_exit(&dv->sdev_contents); 36182621Sllai1 return (0); 36192621Sllai1 } 36202621Sllai1 36212621Sllai1 int 36222621Sllai1 devname_get_dir_handle(devname_handle_t *hdl, devname_handle_t **dir_hdl) 36232621Sllai1 { 36242621Sllai1 struct sdev_node *dv = hdl->dh_data->sdev_dotdot; 36252621Sllai1 36262621Sllai1 ASSERT(dv); 36272621Sllai1 rw_enter(&dv->sdev_contents, RW_READER); 36282621Sllai1 *dir_hdl = &(dv->sdev_handle); 36292621Sllai1 rw_exit(&dv->sdev_contents); 36302621Sllai1 return (0); 36312621Sllai1 } 36322621Sllai1 36332621Sllai1 void 36342621Sllai1 devname_set_nodetype(devname_handle_t *hdl, void *args, int spec) 36352621Sllai1 { 36362621Sllai1 struct sdev_node *dv = hdl->dh_data; 36372621Sllai1 36382621Sllai1 ASSERT(dv); 36392621Sllai1 rw_enter(&dv->sdev_contents, RW_WRITER); 36402621Sllai1 hdl->dh_spec = (devname_spec_t)spec; 36412621Sllai1 hdl->dh_args = (void *)i_ddi_strdup((char *)args, KM_SLEEP); 36422621Sllai1 rw_exit(&dv->sdev_contents); 36432621Sllai1 } 36442621Sllai1 36452621Sllai1 /* 36462621Sllai1 * a generic setattr() function 36472621Sllai1 * 36482621Sllai1 * note: flags only supports AT_UID and AT_GID. 36492621Sllai1 * Future enhancements can be done for other types, e.g. AT_MODE 36502621Sllai1 */ 36512621Sllai1 int 36522621Sllai1 devname_setattr_func(struct vnode *vp, struct vattr *vap, int flags, 36532621Sllai1 struct cred *cred, int (*callback)(struct sdev_node *, struct vattr *, 36542621Sllai1 int), int protocol) 36552621Sllai1 { 36562621Sllai1 struct sdev_node *dv = VTOSDEV(vp); 36572621Sllai1 struct sdev_node *parent = dv->sdev_dotdot; 36582621Sllai1 struct vattr *get; 36592621Sllai1 uint_t mask = vap->va_mask; 36602621Sllai1 int error; 36612621Sllai1 36622621Sllai1 /* some sanity checks */ 36632621Sllai1 if (vap->va_mask & AT_NOSET) 36642621Sllai1 return (EINVAL); 36652621Sllai1 36662621Sllai1 if (vap->va_mask & AT_SIZE) { 36672621Sllai1 if (vp->v_type == VDIR) { 36682621Sllai1 return (EISDIR); 36692621Sllai1 } 36702621Sllai1 } 36712621Sllai1 36722621Sllai1 /* no need to set attribute, but do not fail either */ 36732621Sllai1 ASSERT(parent); 36742621Sllai1 rw_enter(&parent->sdev_contents, RW_READER); 36752621Sllai1 if (dv->sdev_state == SDEV_ZOMBIE) { 36762621Sllai1 rw_exit(&parent->sdev_contents); 36772621Sllai1 return (0); 36782621Sllai1 } 36792621Sllai1 36802621Sllai1 /* If backing store exists, just set it. */ 36812621Sllai1 if (dv->sdev_attrvp) { 36822621Sllai1 rw_exit(&parent->sdev_contents); 36832621Sllai1 return (VOP_SETATTR(dv->sdev_attrvp, vap, flags, cred, NULL)); 36842621Sllai1 } 36852621Sllai1 36862621Sllai1 /* 36872621Sllai1 * Otherwise, for nodes with the persistence attribute, create it. 36882621Sllai1 */ 36892621Sllai1 ASSERT(dv->sdev_attr); 36902621Sllai1 if (SDEV_IS_PERSIST(dv) || 36912621Sllai1 ((vap->va_mask & ~AT_TIMES) != 0 && !SDEV_IS_DYNAMIC(dv))) { 36922621Sllai1 sdev_vattr_merge(dv, vap); 36932621Sllai1 rw_enter(&dv->sdev_contents, RW_WRITER); 36942621Sllai1 error = sdev_shadow_node(dv, cred); 36952621Sllai1 rw_exit(&dv->sdev_contents); 36962621Sllai1 rw_exit(&parent->sdev_contents); 36972621Sllai1 36982621Sllai1 if (error) 36992621Sllai1 return (error); 37002621Sllai1 return (VOP_SETATTR(dv->sdev_attrvp, vap, flags, cred, NULL)); 37012621Sllai1 } 37022621Sllai1 37032621Sllai1 37042621Sllai1 /* 37052621Sllai1 * sdev_attr was allocated in sdev_mknode 37062621Sllai1 */ 37072621Sllai1 rw_enter(&dv->sdev_contents, RW_WRITER); 37085331Samw error = secpolicy_vnode_setattr(cred, vp, vap, 37095331Samw dv->sdev_attr, flags, sdev_unlocked_access, dv); 37102621Sllai1 if (error) { 37112621Sllai1 rw_exit(&dv->sdev_contents); 37122621Sllai1 rw_exit(&parent->sdev_contents); 37132621Sllai1 return (error); 37142621Sllai1 } 37152621Sllai1 37162621Sllai1 get = dv->sdev_attr; 37172621Sllai1 if (mask & AT_MODE) { 37182621Sllai1 get->va_mode &= S_IFMT; 37192621Sllai1 get->va_mode |= vap->va_mode & ~S_IFMT; 37202621Sllai1 } 37212621Sllai1 37222621Sllai1 if ((mask & AT_UID) || (mask & AT_GID)) { 37232621Sllai1 if (mask & AT_UID) 37242621Sllai1 get->va_uid = vap->va_uid; 37252621Sllai1 if (mask & AT_GID) 37262621Sllai1 get->va_gid = vap->va_gid; 37272621Sllai1 /* 37282621Sllai1 * a callback must be provided if the protocol is set 37292621Sllai1 */ 37302621Sllai1 if ((protocol & AT_UID) || (protocol & AT_GID)) { 37312621Sllai1 ASSERT(callback); 37322621Sllai1 error = callback(dv, get, protocol); 37332621Sllai1 if (error) { 37342621Sllai1 rw_exit(&dv->sdev_contents); 37352621Sllai1 rw_exit(&parent->sdev_contents); 37362621Sllai1 return (error); 37372621Sllai1 } 37382621Sllai1 } 37392621Sllai1 } 37402621Sllai1 37412621Sllai1 if (mask & AT_ATIME) 37422621Sllai1 get->va_atime = vap->va_atime; 37432621Sllai1 if (mask & AT_MTIME) 37442621Sllai1 get->va_mtime = vap->va_mtime; 37452621Sllai1 if (mask & (AT_MODE | AT_UID | AT_GID | AT_CTIME)) { 37462621Sllai1 gethrestime(&get->va_ctime); 37472621Sllai1 } 37482621Sllai1 37492621Sllai1 sdev_vattr_merge(dv, get); 37502621Sllai1 rw_exit(&dv->sdev_contents); 37512621Sllai1 rw_exit(&parent->sdev_contents); 37522621Sllai1 return (0); 37532621Sllai1 } 37545895Syz147064 37555895Syz147064 /* 37565895Syz147064 * a generic inactive() function 37575895Syz147064 */ 37585895Syz147064 void 37595895Syz147064 devname_inactive_func(struct vnode *vp, struct cred *cred, 37605895Syz147064 void (*callback)(struct vnode *)) 37615895Syz147064 { 37625895Syz147064 int clean; 37635895Syz147064 struct sdev_node *dv = VTOSDEV(vp); 37645895Syz147064 struct sdev_node *ddv = dv->sdev_dotdot; 37655895Syz147064 int state; 37665895Syz147064 struct devname_nsmap *map = NULL; 37675895Syz147064 struct devname_ops *dirops = NULL; 37685895Syz147064 void (*fn)(devname_handle_t *, struct cred *) = NULL; 37695895Syz147064 37705895Syz147064 rw_enter(&ddv->sdev_contents, RW_WRITER); 37715895Syz147064 state = dv->sdev_state; 37725895Syz147064 37735895Syz147064 mutex_enter(&vp->v_lock); 37745895Syz147064 ASSERT(vp->v_count >= 1); 37755895Syz147064 37765895Syz147064 if (vp->v_count == 1 && callback != NULL) 37775895Syz147064 callback(vp); 37785895Syz147064 37795895Syz147064 clean = (vp->v_count == 1) && (state == SDEV_ZOMBIE); 37805895Syz147064 37815895Syz147064 /* 37825895Syz147064 * last ref count on the ZOMBIE node is released. 37835895Syz147064 * clean up the sdev_node, and 37845895Syz147064 * release the hold on the backing store node so that 37855895Syz147064 * the ZOMBIE backing stores also cleaned out. 37865895Syz147064 */ 37875895Syz147064 if (clean) { 37885895Syz147064 ASSERT(ddv); 37895895Syz147064 if (SDEV_IS_GLOBAL(dv)) { 37905895Syz147064 map = ddv->sdev_mapinfo; 37915895Syz147064 dirops = map ? map->dir_ops : NULL; 37925895Syz147064 if (dirops && (fn = dirops->devnops_inactive)) 37935895Syz147064 (*fn)(&(dv->sdev_handle), cred); 37945895Syz147064 } 37955895Syz147064 37965895Syz147064 ddv->sdev_nlink--; 37975895Syz147064 if (vp->v_type == VDIR) { 37985895Syz147064 dv->sdev_nlink--; 37995895Syz147064 } 38006347Sjg if ((dv->sdev_flags & SDEV_STALE) == 0) 38016347Sjg avl_remove(&ddv->sdev_entries, dv); 38025895Syz147064 dv->sdev_nlink--; 38035895Syz147064 --vp->v_count; 38045895Syz147064 mutex_exit(&vp->v_lock); 38055895Syz147064 sdev_nodedestroy(dv, 0); 38065895Syz147064 } else { 38075895Syz147064 --vp->v_count; 38085895Syz147064 mutex_exit(&vp->v_lock); 38095895Syz147064 } 38105895Syz147064 rw_exit(&ddv->sdev_contents); 38115895Syz147064 } 3812