xref: /onnv-gate/usr/src/uts/common/os/driver_lyr.c (revision 11958:575ffe1e978d)
10Sstevel@tonic-gate /*
20Sstevel@tonic-gate  * CDDL HEADER START
30Sstevel@tonic-gate  *
40Sstevel@tonic-gate  * The contents of this file are subject to the terms of the
54582Scth  * Common Development and Distribution License (the "License").
64582Scth  * You may not use this file except in compliance with the License.
70Sstevel@tonic-gate  *
80Sstevel@tonic-gate  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
90Sstevel@tonic-gate  * or http://www.opensolaris.org/os/licensing.
100Sstevel@tonic-gate  * See the License for the specific language governing permissions
110Sstevel@tonic-gate  * and limitations under the License.
120Sstevel@tonic-gate  *
130Sstevel@tonic-gate  * When distributing Covered Code, include this CDDL HEADER in each
140Sstevel@tonic-gate  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
150Sstevel@tonic-gate  * If applicable, add the following below this CDDL HEADER, with the
160Sstevel@tonic-gate  * fields enclosed by brackets "[]" replaced with your own identifying
170Sstevel@tonic-gate  * information: Portions Copyright [yyyy] [name of copyright owner]
180Sstevel@tonic-gate  *
190Sstevel@tonic-gate  * CDDL HEADER END
200Sstevel@tonic-gate  */
210Sstevel@tonic-gate /*
22*11958SGeorge.Wilson@Sun.COM  * Copyright 2010 Sun Microsystems, Inc.  All rights reserved.
230Sstevel@tonic-gate  * Use is subject to license terms.
240Sstevel@tonic-gate  */
250Sstevel@tonic-gate 
260Sstevel@tonic-gate /*
270Sstevel@tonic-gate  * Layered driver support.
280Sstevel@tonic-gate  */
290Sstevel@tonic-gate 
300Sstevel@tonic-gate #include <sys/atomic.h>
310Sstevel@tonic-gate #include <sys/types.h>
320Sstevel@tonic-gate #include <sys/t_lock.h>
330Sstevel@tonic-gate #include <sys/param.h>
340Sstevel@tonic-gate #include <sys/conf.h>
350Sstevel@tonic-gate #include <sys/systm.h>
360Sstevel@tonic-gate #include <sys/sysmacros.h>
370Sstevel@tonic-gate #include <sys/buf.h>
380Sstevel@tonic-gate #include <sys/cred.h>
390Sstevel@tonic-gate #include <sys/uio.h>
400Sstevel@tonic-gate #include <sys/vnode.h>
410Sstevel@tonic-gate #include <sys/fs/snode.h>
420Sstevel@tonic-gate #include <sys/open.h>
430Sstevel@tonic-gate #include <sys/kmem.h>
440Sstevel@tonic-gate #include <sys/file.h>
450Sstevel@tonic-gate #include <sys/bootconf.h>
460Sstevel@tonic-gate #include <sys/pathname.h>
470Sstevel@tonic-gate #include <sys/bitmap.h>
480Sstevel@tonic-gate #include <sys/stat.h>
490Sstevel@tonic-gate #include <sys/dditypes.h>
500Sstevel@tonic-gate #include <sys/ddi_impldefs.h>
510Sstevel@tonic-gate #include <sys/ddi.h>
520Sstevel@tonic-gate #include <sys/sunddi.h>
530Sstevel@tonic-gate #include <sys/sunndi.h>
540Sstevel@tonic-gate #include <sys/esunddi.h>
550Sstevel@tonic-gate #include <sys/autoconf.h>
560Sstevel@tonic-gate #include <sys/sunldi.h>
570Sstevel@tonic-gate #include <sys/sunldi_impl.h>
580Sstevel@tonic-gate #include <sys/errno.h>
590Sstevel@tonic-gate #include <sys/debug.h>
600Sstevel@tonic-gate #include <sys/modctl.h>
610Sstevel@tonic-gate #include <sys/var.h>
620Sstevel@tonic-gate #include <vm/seg_vn.h>
630Sstevel@tonic-gate 
640Sstevel@tonic-gate #include <sys/stropts.h>
650Sstevel@tonic-gate #include <sys/strsubr.h>
660Sstevel@tonic-gate #include <sys/socket.h>
670Sstevel@tonic-gate #include <sys/socketvar.h>
680Sstevel@tonic-gate #include <sys/kstr.h>
690Sstevel@tonic-gate 
704845Svikram /*
714845Svikram  * Device contract related
724845Svikram  */
734845Svikram #include <sys/contract_impl.h>
744845Svikram #include <sys/contract/device_impl.h>
750Sstevel@tonic-gate 
760Sstevel@tonic-gate /*
770Sstevel@tonic-gate  * Define macros to manipulate snode, vnode, and open device flags
780Sstevel@tonic-gate  */
790Sstevel@tonic-gate #define	VTYP_VALID(i)	(((i) == VCHR) || ((i) == VBLK))
800Sstevel@tonic-gate #define	VTYP_TO_OTYP(i)	(((i) == VCHR) ? OTYP_CHR : OTYP_BLK)
810Sstevel@tonic-gate #define	VTYP_TO_STYP(i)	(((i) == VCHR) ? S_IFCHR : S_IFBLK)
820Sstevel@tonic-gate 
830Sstevel@tonic-gate #define	OTYP_VALID(i)	(((i) == OTYP_CHR) || ((i) == OTYP_BLK))
840Sstevel@tonic-gate #define	OTYP_TO_VTYP(i)	(((i) == OTYP_CHR) ? VCHR : VBLK)
850Sstevel@tonic-gate #define	OTYP_TO_STYP(i)	(((i) == OTYP_CHR) ? S_IFCHR : S_IFBLK)
860Sstevel@tonic-gate 
870Sstevel@tonic-gate #define	STYP_VALID(i)	(((i) == S_IFCHR) || ((i) == S_IFBLK))
880Sstevel@tonic-gate #define	STYP_TO_VTYP(i)	(((i) == S_IFCHR) ? VCHR : VBLK)
890Sstevel@tonic-gate 
900Sstevel@tonic-gate /*
910Sstevel@tonic-gate  * Define macros for accessing layered driver hash structures
920Sstevel@tonic-gate  */
930Sstevel@tonic-gate #define	LH_HASH(vp)		(handle_hash_func(vp) % LH_HASH_SZ)
940Sstevel@tonic-gate #define	LI_HASH(mid, dip, dev)	(ident_hash_func(mid, dip, dev) % LI_HASH_SZ)
950Sstevel@tonic-gate 
960Sstevel@tonic-gate /*
970Sstevel@tonic-gate  * Define layered handle flags used in the lh_type field
980Sstevel@tonic-gate  */
990Sstevel@tonic-gate #define	LH_STREAM	(0x1)	/* handle to a streams device */
1000Sstevel@tonic-gate #define	LH_CBDEV	(0x2)	/* handle to a char/block device */
1010Sstevel@tonic-gate 
1020Sstevel@tonic-gate /*
1034845Svikram  * Define macro for devid property lookups
1040Sstevel@tonic-gate  */
1050Sstevel@tonic-gate #define	DEVID_PROP_FLAGS	(DDI_PROP_DONTPASS | \
1060Sstevel@tonic-gate 				DDI_PROP_TYPE_STRING|DDI_PROP_CANSLEEP)
1070Sstevel@tonic-gate 
1084845Svikram /*
1094845Svikram  * Dummy string for NDI events
1104845Svikram  */
1114845Svikram #define	NDI_EVENT_SERVICE	"NDI_EVENT_SERVICE"
1124845Svikram 
1134845Svikram static void ldi_ev_lock(void);
1144845Svikram static void ldi_ev_unlock(void);
1154845Svikram 
1164845Svikram #ifdef	LDI_OBSOLETE_EVENT
1174845Svikram int ldi_remove_event_handler(ldi_handle_t lh, ldi_callback_id_t id);
1184845Svikram #endif
1194845Svikram 
1200Sstevel@tonic-gate 
1210Sstevel@tonic-gate /*
1220Sstevel@tonic-gate  * globals
1230Sstevel@tonic-gate  */
1240Sstevel@tonic-gate static kmutex_t			ldi_ident_hash_lock[LI_HASH_SZ];
1250Sstevel@tonic-gate static struct ldi_ident		*ldi_ident_hash[LI_HASH_SZ];
1260Sstevel@tonic-gate 
1270Sstevel@tonic-gate static kmutex_t			ldi_handle_hash_lock[LH_HASH_SZ];
1280Sstevel@tonic-gate static struct ldi_handle	*ldi_handle_hash[LH_HASH_SZ];
1290Sstevel@tonic-gate static size_t			ldi_handle_hash_count;
1300Sstevel@tonic-gate 
1314845Svikram static struct ldi_ev_callback_list ldi_ev_callback_list;
1324845Svikram 
1334845Svikram static uint32_t ldi_ev_id_pool = 0;
1344845Svikram 
1354845Svikram struct ldi_ev_cookie {
1364845Svikram 	char *ck_evname;
1374845Svikram 	uint_t ck_sync;
1384845Svikram 	uint_t ck_ctype;
1394845Svikram };
1404845Svikram 
1414845Svikram static struct ldi_ev_cookie ldi_ev_cookies[] = {
1424845Svikram 	{ LDI_EV_OFFLINE, 1, CT_DEV_EV_OFFLINE},
1434845Svikram 	{ LDI_EV_DEGRADE, 0, CT_DEV_EV_DEGRADED},
1444845Svikram 	{ NULL}			/* must terminate list */
1454845Svikram };
1464845Svikram 
1470Sstevel@tonic-gate void
1480Sstevel@tonic-gate ldi_init(void)
1490Sstevel@tonic-gate {
1500Sstevel@tonic-gate 	int i;
1510Sstevel@tonic-gate 
1520Sstevel@tonic-gate 	ldi_handle_hash_count = 0;
1530Sstevel@tonic-gate 	for (i = 0; i < LH_HASH_SZ; i++) {
1540Sstevel@tonic-gate 		mutex_init(&ldi_handle_hash_lock[i], NULL, MUTEX_DEFAULT, NULL);
1550Sstevel@tonic-gate 		ldi_handle_hash[i] = NULL;
1560Sstevel@tonic-gate 	}
1570Sstevel@tonic-gate 	for (i = 0; i < LI_HASH_SZ; i++) {
1580Sstevel@tonic-gate 		mutex_init(&ldi_ident_hash_lock[i], NULL, MUTEX_DEFAULT, NULL);
1590Sstevel@tonic-gate 		ldi_ident_hash[i] = NULL;
1600Sstevel@tonic-gate 	}
1614845Svikram 
1624845Svikram 	/*
1634845Svikram 	 * Initialize the LDI event subsystem
1644845Svikram 	 */
1654845Svikram 	mutex_init(&ldi_ev_callback_list.le_lock, NULL, MUTEX_DEFAULT, NULL);
1664845Svikram 	cv_init(&ldi_ev_callback_list.le_cv, NULL, CV_DEFAULT, NULL);
1674845Svikram 	ldi_ev_callback_list.le_busy = 0;
1684845Svikram 	ldi_ev_callback_list.le_thread = NULL;
1694845Svikram 	list_create(&ldi_ev_callback_list.le_head,
1704845Svikram 	    sizeof (ldi_ev_callback_impl_t),
1714845Svikram 	    offsetof(ldi_ev_callback_impl_t, lec_list));
1720Sstevel@tonic-gate }
1730Sstevel@tonic-gate 
1740Sstevel@tonic-gate /*
1750Sstevel@tonic-gate  * LDI ident manipulation functions
1760Sstevel@tonic-gate  */
1770Sstevel@tonic-gate static uint_t
1780Sstevel@tonic-gate ident_hash_func(modid_t modid, dev_info_t *dip, dev_t dev)
1790Sstevel@tonic-gate {
1800Sstevel@tonic-gate 	if (dip != NULL) {
1810Sstevel@tonic-gate 		uintptr_t k = (uintptr_t)dip;
1820Sstevel@tonic-gate 		k >>= (int)highbit(sizeof (struct dev_info));
1830Sstevel@tonic-gate 		return ((uint_t)k);
1840Sstevel@tonic-gate 	} else if (dev != DDI_DEV_T_NONE) {
1850Sstevel@tonic-gate 		return (modid + getminor(dev) + getmajor(dev));
1860Sstevel@tonic-gate 	} else {
1870Sstevel@tonic-gate 		return (modid);
1880Sstevel@tonic-gate 	}
1890Sstevel@tonic-gate }
1900Sstevel@tonic-gate 
1910Sstevel@tonic-gate static struct ldi_ident **
1920Sstevel@tonic-gate ident_find_ref_nolock(modid_t modid, dev_info_t *dip, dev_t dev, major_t major)
1930Sstevel@tonic-gate {
1940Sstevel@tonic-gate 	struct ldi_ident	**lipp = NULL;
1950Sstevel@tonic-gate 	uint_t			index = LI_HASH(modid, dip, dev);
1960Sstevel@tonic-gate 
1970Sstevel@tonic-gate 	ASSERT(MUTEX_HELD(&ldi_ident_hash_lock[index]));
1980Sstevel@tonic-gate 
1990Sstevel@tonic-gate 	for (lipp = &(ldi_ident_hash[index]);
2000Sstevel@tonic-gate 	    (*lipp != NULL);
2010Sstevel@tonic-gate 	    lipp = &((*lipp)->li_next)) {
2020Sstevel@tonic-gate 		if (((*lipp)->li_modid == modid) &&
2030Sstevel@tonic-gate 		    ((*lipp)->li_major == major) &&
2040Sstevel@tonic-gate 		    ((*lipp)->li_dip == dip) &&
2050Sstevel@tonic-gate 		    ((*lipp)->li_dev == dev))
2060Sstevel@tonic-gate 			break;
2070Sstevel@tonic-gate 	}
2080Sstevel@tonic-gate 
2090Sstevel@tonic-gate 	ASSERT(lipp != NULL);
2100Sstevel@tonic-gate 	return (lipp);
2110Sstevel@tonic-gate }
2120Sstevel@tonic-gate 
2130Sstevel@tonic-gate static struct ldi_ident *
2140Sstevel@tonic-gate ident_alloc(char *mod_name, dev_info_t *dip, dev_t dev, major_t major)
2150Sstevel@tonic-gate {
2160Sstevel@tonic-gate 	struct ldi_ident	*lip, **lipp;
2170Sstevel@tonic-gate 	modid_t			modid;
2180Sstevel@tonic-gate 	uint_t			index;
2190Sstevel@tonic-gate 
2200Sstevel@tonic-gate 	ASSERT(mod_name != NULL);
2210Sstevel@tonic-gate 
2220Sstevel@tonic-gate 	/* get the module id */
2230Sstevel@tonic-gate 	modid = mod_name_to_modid(mod_name);
2240Sstevel@tonic-gate 	ASSERT(modid != -1);
2250Sstevel@tonic-gate 
2260Sstevel@tonic-gate 	/* allocate a new ident in case we need it */
2270Sstevel@tonic-gate 	lip = kmem_zalloc(sizeof (*lip), KM_SLEEP);
2280Sstevel@tonic-gate 
2290Sstevel@tonic-gate 	/* search the hash for a matching ident */
2300Sstevel@tonic-gate 	index = LI_HASH(modid, dip, dev);
2310Sstevel@tonic-gate 	mutex_enter(&ldi_ident_hash_lock[index]);
2320Sstevel@tonic-gate 	lipp = ident_find_ref_nolock(modid, dip, dev, major);
2330Sstevel@tonic-gate 
2340Sstevel@tonic-gate 	if (*lipp != NULL) {
2359297SJerry.Gilliam@Sun.COM 		/* we found an ident in the hash */
2360Sstevel@tonic-gate 		ASSERT(strcmp((*lipp)->li_modname, mod_name) == 0);
2370Sstevel@tonic-gate 		(*lipp)->li_ref++;
2380Sstevel@tonic-gate 		mutex_exit(&ldi_ident_hash_lock[index]);
2390Sstevel@tonic-gate 		kmem_free(lip, sizeof (struct ldi_ident));
2400Sstevel@tonic-gate 		return (*lipp);
2410Sstevel@tonic-gate 	}
2420Sstevel@tonic-gate 
2430Sstevel@tonic-gate 	/* initialize the new ident */
2440Sstevel@tonic-gate 	lip->li_next = NULL;
2450Sstevel@tonic-gate 	lip->li_ref = 1;
2460Sstevel@tonic-gate 	lip->li_modid = modid;
2470Sstevel@tonic-gate 	lip->li_major = major;
2480Sstevel@tonic-gate 	lip->li_dip = dip;
2490Sstevel@tonic-gate 	lip->li_dev = dev;
2500Sstevel@tonic-gate 	(void) strncpy(lip->li_modname, mod_name, sizeof (lip->li_modname) - 1);
2510Sstevel@tonic-gate 
2520Sstevel@tonic-gate 	/* add it to the ident hash */
2530Sstevel@tonic-gate 	lip->li_next = ldi_ident_hash[index];
2540Sstevel@tonic-gate 	ldi_ident_hash[index] = lip;
2550Sstevel@tonic-gate 
2560Sstevel@tonic-gate 	mutex_exit(&ldi_ident_hash_lock[index]);
2570Sstevel@tonic-gate 	return (lip);
2580Sstevel@tonic-gate }
2590Sstevel@tonic-gate 
2600Sstevel@tonic-gate static void
2610Sstevel@tonic-gate ident_hold(struct ldi_ident *lip)
2620Sstevel@tonic-gate {
2630Sstevel@tonic-gate 	uint_t			index;
2640Sstevel@tonic-gate 
2650Sstevel@tonic-gate 	ASSERT(lip != NULL);
2660Sstevel@tonic-gate 	index = LI_HASH(lip->li_modid, lip->li_dip, lip->li_dev);
2670Sstevel@tonic-gate 	mutex_enter(&ldi_ident_hash_lock[index]);
2680Sstevel@tonic-gate 	ASSERT(lip->li_ref > 0);
2690Sstevel@tonic-gate 	lip->li_ref++;
2700Sstevel@tonic-gate 	mutex_exit(&ldi_ident_hash_lock[index]);
2710Sstevel@tonic-gate }
2720Sstevel@tonic-gate 
2730Sstevel@tonic-gate static void
2740Sstevel@tonic-gate ident_release(struct ldi_ident *lip)
2750Sstevel@tonic-gate {
2760Sstevel@tonic-gate 	struct ldi_ident	**lipp;
2770Sstevel@tonic-gate 	uint_t			index;
2780Sstevel@tonic-gate 
2790Sstevel@tonic-gate 	ASSERT(lip != NULL);
2800Sstevel@tonic-gate 	index = LI_HASH(lip->li_modid, lip->li_dip, lip->li_dev);
2810Sstevel@tonic-gate 	mutex_enter(&ldi_ident_hash_lock[index]);
2820Sstevel@tonic-gate 
2830Sstevel@tonic-gate 	ASSERT(lip->li_ref > 0);
2840Sstevel@tonic-gate 	if (--lip->li_ref > 0) {
2850Sstevel@tonic-gate 		/* there are more references to this ident */
2860Sstevel@tonic-gate 		mutex_exit(&ldi_ident_hash_lock[index]);
2870Sstevel@tonic-gate 		return;
2880Sstevel@tonic-gate 	}
2890Sstevel@tonic-gate 
2900Sstevel@tonic-gate 	/* this was the last reference/open for this ident.  free it. */
2910Sstevel@tonic-gate 	lipp = ident_find_ref_nolock(
2920Sstevel@tonic-gate 	    lip->li_modid, lip->li_dip, lip->li_dev, lip->li_major);
2930Sstevel@tonic-gate 
2940Sstevel@tonic-gate 	ASSERT((lipp != NULL) && (*lipp != NULL));
2950Sstevel@tonic-gate 	*lipp = lip->li_next;
2960Sstevel@tonic-gate 	mutex_exit(&ldi_ident_hash_lock[index]);
2970Sstevel@tonic-gate 	kmem_free(lip, sizeof (struct ldi_ident));
2980Sstevel@tonic-gate }
2990Sstevel@tonic-gate 
3000Sstevel@tonic-gate /*
3010Sstevel@tonic-gate  * LDI handle manipulation functions
3020Sstevel@tonic-gate  */
3030Sstevel@tonic-gate static uint_t
3040Sstevel@tonic-gate handle_hash_func(void *vp)
3050Sstevel@tonic-gate {
3060Sstevel@tonic-gate 	uintptr_t k = (uintptr_t)vp;
3070Sstevel@tonic-gate 	k >>= (int)highbit(sizeof (vnode_t));
3080Sstevel@tonic-gate 	return ((uint_t)k);
3090Sstevel@tonic-gate }
3100Sstevel@tonic-gate 
3110Sstevel@tonic-gate static struct ldi_handle **
3120Sstevel@tonic-gate handle_find_ref_nolock(vnode_t *vp, struct ldi_ident *ident)
3130Sstevel@tonic-gate {
3140Sstevel@tonic-gate 	struct ldi_handle	**lhpp = NULL;
3150Sstevel@tonic-gate 	uint_t			index = LH_HASH(vp);
3160Sstevel@tonic-gate 
3170Sstevel@tonic-gate 	ASSERT(MUTEX_HELD(&ldi_handle_hash_lock[index]));
3180Sstevel@tonic-gate 
3190Sstevel@tonic-gate 	for (lhpp = &(ldi_handle_hash[index]);
3200Sstevel@tonic-gate 	    (*lhpp != NULL);
3210Sstevel@tonic-gate 	    lhpp = &((*lhpp)->lh_next)) {
3220Sstevel@tonic-gate 		if (((*lhpp)->lh_ident == ident) &&
3230Sstevel@tonic-gate 		    ((*lhpp)->lh_vp == vp))
3240Sstevel@tonic-gate 			break;
3250Sstevel@tonic-gate 	}
3260Sstevel@tonic-gate 
3270Sstevel@tonic-gate 	ASSERT(lhpp != NULL);
3280Sstevel@tonic-gate 	return (lhpp);
3290Sstevel@tonic-gate }
3300Sstevel@tonic-gate 
3310Sstevel@tonic-gate static struct ldi_handle *
3320Sstevel@tonic-gate handle_find(vnode_t *vp, struct ldi_ident *ident)
3330Sstevel@tonic-gate {
3340Sstevel@tonic-gate 	struct ldi_handle	**lhpp;
3350Sstevel@tonic-gate 	int			index = LH_HASH(vp);
3360Sstevel@tonic-gate 
3370Sstevel@tonic-gate 	mutex_enter(&ldi_handle_hash_lock[index]);
3380Sstevel@tonic-gate 	lhpp = handle_find_ref_nolock(vp, ident);
3390Sstevel@tonic-gate 	mutex_exit(&ldi_handle_hash_lock[index]);
3400Sstevel@tonic-gate 	ASSERT(lhpp != NULL);
3410Sstevel@tonic-gate 	return (*lhpp);
3420Sstevel@tonic-gate }
3430Sstevel@tonic-gate 
3440Sstevel@tonic-gate static struct ldi_handle *
3450Sstevel@tonic-gate handle_alloc(vnode_t *vp, struct ldi_ident *ident)
3460Sstevel@tonic-gate {
3470Sstevel@tonic-gate 	struct ldi_handle	*lhp, **lhpp;
3480Sstevel@tonic-gate 	uint_t			index;
3490Sstevel@tonic-gate 
3500Sstevel@tonic-gate 	ASSERT((vp != NULL) && (ident != NULL));
3510Sstevel@tonic-gate 
3520Sstevel@tonic-gate 	/* allocate a new handle in case we need it */
3530Sstevel@tonic-gate 	lhp = kmem_zalloc(sizeof (*lhp), KM_SLEEP);
3540Sstevel@tonic-gate 
3550Sstevel@tonic-gate 	/* search the hash for a matching handle */
3560Sstevel@tonic-gate 	index = LH_HASH(vp);
3570Sstevel@tonic-gate 	mutex_enter(&ldi_handle_hash_lock[index]);
3580Sstevel@tonic-gate 	lhpp = handle_find_ref_nolock(vp, ident);
3590Sstevel@tonic-gate 
3600Sstevel@tonic-gate 	if (*lhpp != NULL) {
3610Sstevel@tonic-gate 		/* we found a handle in the hash */
3620Sstevel@tonic-gate 		(*lhpp)->lh_ref++;
3630Sstevel@tonic-gate 		mutex_exit(&ldi_handle_hash_lock[index]);
3640Sstevel@tonic-gate 
3650Sstevel@tonic-gate 		LDI_ALLOCFREE((CE_WARN, "ldi handle alloc: dup "
3664582Scth 		    "lh=0x%p, ident=0x%p, vp=0x%p, drv=%s, minor=0x%x",
3674582Scth 		    (void *)*lhpp, (void *)ident, (void *)vp,
3684582Scth 		    mod_major_to_name(getmajor(vp->v_rdev)),
3694582Scth 		    getminor(vp->v_rdev)));
3700Sstevel@tonic-gate 
3710Sstevel@tonic-gate 		kmem_free(lhp, sizeof (struct ldi_handle));
3720Sstevel@tonic-gate 		return (*lhpp);
3730Sstevel@tonic-gate 	}
3740Sstevel@tonic-gate 
3750Sstevel@tonic-gate 	/* initialize the new handle */
3760Sstevel@tonic-gate 	lhp->lh_ref = 1;
3770Sstevel@tonic-gate 	lhp->lh_vp = vp;
3780Sstevel@tonic-gate 	lhp->lh_ident = ident;
3794845Svikram #ifdef	LDI_OBSOLETE_EVENT
3800Sstevel@tonic-gate 	mutex_init(lhp->lh_lock, NULL, MUTEX_DEFAULT, NULL);
3814845Svikram #endif
3820Sstevel@tonic-gate 
3830Sstevel@tonic-gate 	/* set the device type for this handle */
3840Sstevel@tonic-gate 	lhp->lh_type = 0;
38510079SGarrett.Damore@Sun.COM 	if (vp->v_stream) {
3860Sstevel@tonic-gate 		ASSERT(vp->v_type == VCHR);
3870Sstevel@tonic-gate 		lhp->lh_type |= LH_STREAM;
3880Sstevel@tonic-gate 	} else {
3890Sstevel@tonic-gate 		lhp->lh_type |= LH_CBDEV;
3900Sstevel@tonic-gate 	}
3910Sstevel@tonic-gate 
3920Sstevel@tonic-gate 	/* get holds on other objects */
3930Sstevel@tonic-gate 	ident_hold(ident);
3940Sstevel@tonic-gate 	ASSERT(vp->v_count >= 1);
3950Sstevel@tonic-gate 	VN_HOLD(vp);
3960Sstevel@tonic-gate 
3970Sstevel@tonic-gate 	/* add it to the handle hash */
3980Sstevel@tonic-gate 	lhp->lh_next = ldi_handle_hash[index];
3990Sstevel@tonic-gate 	ldi_handle_hash[index] = lhp;
4000Sstevel@tonic-gate 	atomic_add_long(&ldi_handle_hash_count, 1);
4010Sstevel@tonic-gate 
4020Sstevel@tonic-gate 	LDI_ALLOCFREE((CE_WARN, "ldi handle alloc: new "
4034582Scth 	    "lh=0x%p, ident=0x%p, vp=0x%p, drv=%s, minor=0x%x",
4044582Scth 	    (void *)lhp, (void *)ident, (void *)vp,
4054582Scth 	    mod_major_to_name(getmajor(vp->v_rdev)),
4064582Scth 	    getminor(vp->v_rdev)));
4070Sstevel@tonic-gate 
4080Sstevel@tonic-gate 	mutex_exit(&ldi_handle_hash_lock[index]);
4090Sstevel@tonic-gate 	return (lhp);
4100Sstevel@tonic-gate }
4110Sstevel@tonic-gate 
4120Sstevel@tonic-gate static void
4130Sstevel@tonic-gate handle_release(struct ldi_handle *lhp)
4140Sstevel@tonic-gate {
4150Sstevel@tonic-gate 	struct ldi_handle	**lhpp;
4160Sstevel@tonic-gate 	uint_t			index;
4170Sstevel@tonic-gate 
4180Sstevel@tonic-gate 	ASSERT(lhp != NULL);
4190Sstevel@tonic-gate 
4200Sstevel@tonic-gate 	index = LH_HASH(lhp->lh_vp);
4210Sstevel@tonic-gate 	mutex_enter(&ldi_handle_hash_lock[index]);
4220Sstevel@tonic-gate 
4230Sstevel@tonic-gate 	LDI_ALLOCFREE((CE_WARN, "ldi handle release: "
4244582Scth 	    "lh=0x%p, ident=0x%p, vp=0x%p, drv=%s, minor=0x%x",
4254582Scth 	    (void *)lhp, (void *)lhp->lh_ident, (void *)lhp->lh_vp,
4264582Scth 	    mod_major_to_name(getmajor(lhp->lh_vp->v_rdev)),
4274582Scth 	    getminor(lhp->lh_vp->v_rdev)));
4280Sstevel@tonic-gate 
4290Sstevel@tonic-gate 	ASSERT(lhp->lh_ref > 0);
4300Sstevel@tonic-gate 	if (--lhp->lh_ref > 0) {
4310Sstevel@tonic-gate 		/* there are more references to this handle */
4320Sstevel@tonic-gate 		mutex_exit(&ldi_handle_hash_lock[index]);
4330Sstevel@tonic-gate 		return;
4340Sstevel@tonic-gate 	}
4350Sstevel@tonic-gate 
4360Sstevel@tonic-gate 	/* this was the last reference/open for this handle.  free it. */
4370Sstevel@tonic-gate 	lhpp = handle_find_ref_nolock(lhp->lh_vp, lhp->lh_ident);
4380Sstevel@tonic-gate 	ASSERT((lhpp != NULL) && (*lhpp != NULL));
4390Sstevel@tonic-gate 	*lhpp = lhp->lh_next;
4400Sstevel@tonic-gate 	atomic_add_long(&ldi_handle_hash_count, -1);
4410Sstevel@tonic-gate 	mutex_exit(&ldi_handle_hash_lock[index]);
4420Sstevel@tonic-gate 
4430Sstevel@tonic-gate 	VN_RELE(lhp->lh_vp);
4440Sstevel@tonic-gate 	ident_release(lhp->lh_ident);
4454845Svikram #ifdef	LDI_OBSOLETE_EVENT
4460Sstevel@tonic-gate 	mutex_destroy(lhp->lh_lock);
4474845Svikram #endif
4480Sstevel@tonic-gate 	kmem_free(lhp, sizeof (struct ldi_handle));
4490Sstevel@tonic-gate }
4500Sstevel@tonic-gate 
4514845Svikram #ifdef	LDI_OBSOLETE_EVENT
4520Sstevel@tonic-gate /*
4530Sstevel@tonic-gate  * LDI event manipulation functions
4540Sstevel@tonic-gate  */
4550Sstevel@tonic-gate static void
4560Sstevel@tonic-gate handle_event_add(ldi_event_t *lep)
4570Sstevel@tonic-gate {
4580Sstevel@tonic-gate 	struct ldi_handle *lhp = lep->le_lhp;
4590Sstevel@tonic-gate 
4600Sstevel@tonic-gate 	ASSERT(lhp != NULL);
4610Sstevel@tonic-gate 
4620Sstevel@tonic-gate 	mutex_enter(lhp->lh_lock);
4630Sstevel@tonic-gate 	if (lhp->lh_events == NULL) {
4640Sstevel@tonic-gate 		lhp->lh_events = lep;
4650Sstevel@tonic-gate 		mutex_exit(lhp->lh_lock);
4660Sstevel@tonic-gate 		return;
4670Sstevel@tonic-gate 	}
4680Sstevel@tonic-gate 
4690Sstevel@tonic-gate 	lep->le_next = lhp->lh_events;
4700Sstevel@tonic-gate 	lhp->lh_events->le_prev = lep;
4710Sstevel@tonic-gate 	lhp->lh_events = lep;
4720Sstevel@tonic-gate 	mutex_exit(lhp->lh_lock);
4730Sstevel@tonic-gate }
4740Sstevel@tonic-gate 
4750Sstevel@tonic-gate static void
4760Sstevel@tonic-gate handle_event_remove(ldi_event_t *lep)
4770Sstevel@tonic-gate {
4780Sstevel@tonic-gate 	struct ldi_handle *lhp = lep->le_lhp;
4790Sstevel@tonic-gate 
4800Sstevel@tonic-gate 	ASSERT(lhp != NULL);
4810Sstevel@tonic-gate 
4820Sstevel@tonic-gate 	mutex_enter(lhp->lh_lock);
4830Sstevel@tonic-gate 	if (lep->le_prev)
4840Sstevel@tonic-gate 		lep->le_prev->le_next = lep->le_next;
4850Sstevel@tonic-gate 	if (lep->le_next)
4860Sstevel@tonic-gate 		lep->le_next->le_prev = lep->le_prev;
4870Sstevel@tonic-gate 	if (lhp->lh_events == lep)
4880Sstevel@tonic-gate 		lhp->lh_events = lep->le_next;
4890Sstevel@tonic-gate 	mutex_exit(lhp->lh_lock);
4900Sstevel@tonic-gate 
4910Sstevel@tonic-gate }
4920Sstevel@tonic-gate 
4930Sstevel@tonic-gate static void
4940Sstevel@tonic-gate i_ldi_callback(dev_info_t *dip, ddi_eventcookie_t event_cookie,
4950Sstevel@tonic-gate     void *arg, void *bus_impldata)
4960Sstevel@tonic-gate {
4970Sstevel@tonic-gate 	ldi_event_t *lep = (ldi_event_t *)arg;
4980Sstevel@tonic-gate 
4990Sstevel@tonic-gate 	ASSERT(lep != NULL);
5000Sstevel@tonic-gate 
5010Sstevel@tonic-gate 	LDI_EVENTCB((CE_NOTE, "%s: dip=0x%p, "
5020Sstevel@tonic-gate 	    "event_cookie=0x%p, ldi_eventp=0x%p", "i_ldi_callback",
5030Sstevel@tonic-gate 	    (void *)dip, (void *)event_cookie, (void *)lep));
5040Sstevel@tonic-gate 
5050Sstevel@tonic-gate 	lep->le_handler(lep->le_lhp, event_cookie, lep->le_arg, bus_impldata);
5060Sstevel@tonic-gate }
5074845Svikram #endif
5080Sstevel@tonic-gate 
5090Sstevel@tonic-gate /*
5100Sstevel@tonic-gate  * LDI open helper functions
5110Sstevel@tonic-gate  */
5120Sstevel@tonic-gate 
5130Sstevel@tonic-gate /* get a vnode to a device by dev_t and otyp */
5140Sstevel@tonic-gate static int
5150Sstevel@tonic-gate ldi_vp_from_dev(dev_t dev, int otyp, vnode_t **vpp)
5160Sstevel@tonic-gate {
5170Sstevel@tonic-gate 	dev_info_t		*dip;
5180Sstevel@tonic-gate 	vnode_t			*vp;
5190Sstevel@tonic-gate 
5200Sstevel@tonic-gate 	/* sanity check required input parameters */
5210Sstevel@tonic-gate 	if ((dev == DDI_DEV_T_NONE) || (!OTYP_VALID(otyp)) || (vpp == NULL))
5220Sstevel@tonic-gate 		return (EINVAL);
5230Sstevel@tonic-gate 
5240Sstevel@tonic-gate 	if ((dip = e_ddi_hold_devi_by_dev(dev, 0)) == NULL)
5250Sstevel@tonic-gate 		return (ENODEV);
5260Sstevel@tonic-gate 
5270Sstevel@tonic-gate 	vp = makespecvp(dev, OTYP_TO_VTYP(otyp));
5280Sstevel@tonic-gate 	spec_assoc_vp_with_devi(vp, dip);
5290Sstevel@tonic-gate 	ddi_release_devi(dip);  /* from e_ddi_hold_devi_by_dev */
5300Sstevel@tonic-gate 
5310Sstevel@tonic-gate 	*vpp = vp;
5320Sstevel@tonic-gate 	return (0);
5330Sstevel@tonic-gate }
5340Sstevel@tonic-gate 
5350Sstevel@tonic-gate /* get a vnode to a device by pathname */
536*11958SGeorge.Wilson@Sun.COM int
5370Sstevel@tonic-gate ldi_vp_from_name(char *path, vnode_t **vpp)
5380Sstevel@tonic-gate {
5390Sstevel@tonic-gate 	vnode_t			*vp = NULL;
5400Sstevel@tonic-gate 	int			ret;
5410Sstevel@tonic-gate 
5420Sstevel@tonic-gate 	/* sanity check required input parameters */
5430Sstevel@tonic-gate 	if ((path == NULL) || (vpp == NULL))
5440Sstevel@tonic-gate 		return (EINVAL);
5450Sstevel@tonic-gate 
5460Sstevel@tonic-gate 	if (modrootloaded) {
5470Sstevel@tonic-gate 		cred_t *saved_cred = curthread->t_cred;
5480Sstevel@tonic-gate 
5490Sstevel@tonic-gate 		/* we don't want lookupname to fail because of credentials */
5500Sstevel@tonic-gate 		curthread->t_cred = kcred;
551538Sedp 
552538Sedp 		/*
553538Sedp 		 * all lookups should be done in the global zone.  but
554538Sedp 		 * lookupnameat() won't actually do this if an absolute
555538Sedp 		 * path is passed in.  since the ldi interfaces require an
556538Sedp 		 * absolute path we pass lookupnameat() a pointer to
557538Sedp 		 * the character after the leading '/' and tell it to
558538Sedp 		 * start searching at the current system root directory.
559538Sedp 		 */
560538Sedp 		ASSERT(*path == '/');
561538Sedp 		ret = lookupnameat(path + 1, UIO_SYSSPACE, FOLLOW, NULLVPP,
562538Sedp 		    &vp, rootdir);
563538Sedp 
564538Sedp 		/* restore this threads credentials */
5650Sstevel@tonic-gate 		curthread->t_cred = saved_cred;
5660Sstevel@tonic-gate 
5670Sstevel@tonic-gate 		if (ret == 0) {
5680Sstevel@tonic-gate 			if (!vn_matchops(vp, spec_getvnodeops()) ||
5690Sstevel@tonic-gate 			    !VTYP_VALID(vp->v_type)) {
5700Sstevel@tonic-gate 				VN_RELE(vp);
5710Sstevel@tonic-gate 				return (ENXIO);
5720Sstevel@tonic-gate 			}
5730Sstevel@tonic-gate 		}
5740Sstevel@tonic-gate 	}
5750Sstevel@tonic-gate 
5760Sstevel@tonic-gate 	if (vp == NULL) {
5770Sstevel@tonic-gate 		dev_info_t	*dip;
5780Sstevel@tonic-gate 		dev_t		dev;
5790Sstevel@tonic-gate 		int		spec_type;
5800Sstevel@tonic-gate 
5810Sstevel@tonic-gate 		/*
5820Sstevel@tonic-gate 		 * Root is not mounted, the minor node is not specified,
5830Sstevel@tonic-gate 		 * or an OBP path has been specified.
5840Sstevel@tonic-gate 		 */
5850Sstevel@tonic-gate 
5860Sstevel@tonic-gate 		/*
5870Sstevel@tonic-gate 		 * Determine if path can be pruned to produce an
5880Sstevel@tonic-gate 		 * OBP or devfs path for resolve_pathname.
5890Sstevel@tonic-gate 		 */
5900Sstevel@tonic-gate 		if (strncmp(path, "/devices/", 9) == 0)
5910Sstevel@tonic-gate 			path += strlen("/devices");
5920Sstevel@tonic-gate 
5930Sstevel@tonic-gate 		/*
5940Sstevel@tonic-gate 		 * if no minor node was specified the DEFAULT minor node
5950Sstevel@tonic-gate 		 * will be returned.  if there is no DEFAULT minor node
5960Sstevel@tonic-gate 		 * one will be fabricated of type S_IFCHR with the minor
5970Sstevel@tonic-gate 		 * number equal to the instance number.
5980Sstevel@tonic-gate 		 */
5990Sstevel@tonic-gate 		ret = resolve_pathname(path, &dip, &dev, &spec_type);
6000Sstevel@tonic-gate 		if (ret != 0)
6010Sstevel@tonic-gate 			return (ENODEV);
6020Sstevel@tonic-gate 
6030Sstevel@tonic-gate 		ASSERT(STYP_VALID(spec_type));
6040Sstevel@tonic-gate 		vp = makespecvp(dev, STYP_TO_VTYP(spec_type));
6050Sstevel@tonic-gate 		spec_assoc_vp_with_devi(vp, dip);
6060Sstevel@tonic-gate 		ddi_release_devi(dip);
6070Sstevel@tonic-gate 	}
6080Sstevel@tonic-gate 
6090Sstevel@tonic-gate 	*vpp = vp;
6100Sstevel@tonic-gate 	return (0);
6110Sstevel@tonic-gate }
6120Sstevel@tonic-gate 
6130Sstevel@tonic-gate static int
6140Sstevel@tonic-gate ldi_devid_match(ddi_devid_t devid, dev_info_t *dip, dev_t dev)
6150Sstevel@tonic-gate {
6160Sstevel@tonic-gate 	char		*devidstr;
6170Sstevel@tonic-gate 	ddi_prop_t	*propp;
6180Sstevel@tonic-gate 
6190Sstevel@tonic-gate 	/* convert devid as a string property */
6200Sstevel@tonic-gate 	if ((devidstr = ddi_devid_str_encode(devid, NULL)) == NULL)
6210Sstevel@tonic-gate 		return (0);
6220Sstevel@tonic-gate 
6230Sstevel@tonic-gate 	/*
6240Sstevel@tonic-gate 	 * Search for the devid.  For speed and ease in locking this
6250Sstevel@tonic-gate 	 * code directly uses the property implementation.  See
6260Sstevel@tonic-gate 	 * ddi_common_devid_to_devlist() for a comment as to why.
6270Sstevel@tonic-gate 	 */
6280Sstevel@tonic-gate 	mutex_enter(&(DEVI(dip)->devi_lock));
6290Sstevel@tonic-gate 
6300Sstevel@tonic-gate 	/* check if there is a DDI_DEV_T_NONE devid property */
6310Sstevel@tonic-gate 	propp = i_ddi_prop_search(DDI_DEV_T_NONE,
6320Sstevel@tonic-gate 	    DEVID_PROP_NAME, DEVID_PROP_FLAGS, &DEVI(dip)->devi_hw_prop_ptr);
6330Sstevel@tonic-gate 	if (propp != NULL) {
6340Sstevel@tonic-gate 		if (ddi_devid_str_compare(propp->prop_val, devidstr) == 0) {
6350Sstevel@tonic-gate 			/* a DDI_DEV_T_NONE devid exists and matchs */
6360Sstevel@tonic-gate 			mutex_exit(&(DEVI(dip)->devi_lock));
6370Sstevel@tonic-gate 			ddi_devid_str_free(devidstr);
6380Sstevel@tonic-gate 			return (1);
6390Sstevel@tonic-gate 		} else {
6400Sstevel@tonic-gate 			/* a DDI_DEV_T_NONE devid exists and doesn't match */
6410Sstevel@tonic-gate 			mutex_exit(&(DEVI(dip)->devi_lock));
6420Sstevel@tonic-gate 			ddi_devid_str_free(devidstr);
6430Sstevel@tonic-gate 			return (0);
6440Sstevel@tonic-gate 		}
6450Sstevel@tonic-gate 	}
6460Sstevel@tonic-gate 
6470Sstevel@tonic-gate 	/* check if there is a devt specific devid property */
6480Sstevel@tonic-gate 	propp = i_ddi_prop_search(dev,
6490Sstevel@tonic-gate 	    DEVID_PROP_NAME, DEVID_PROP_FLAGS, &(DEVI(dip)->devi_hw_prop_ptr));
6500Sstevel@tonic-gate 	if (propp != NULL) {
6510Sstevel@tonic-gate 		if (ddi_devid_str_compare(propp->prop_val, devidstr) == 0) {
6520Sstevel@tonic-gate 			/* a devt specific devid exists and matchs */
6530Sstevel@tonic-gate 			mutex_exit(&(DEVI(dip)->devi_lock));
6540Sstevel@tonic-gate 			ddi_devid_str_free(devidstr);
6550Sstevel@tonic-gate 			return (1);
6560Sstevel@tonic-gate 		} else {
6570Sstevel@tonic-gate 			/* a devt specific devid exists and doesn't match */
6580Sstevel@tonic-gate 			mutex_exit(&(DEVI(dip)->devi_lock));
6590Sstevel@tonic-gate 			ddi_devid_str_free(devidstr);
6600Sstevel@tonic-gate 			return (0);
6610Sstevel@tonic-gate 		}
6620Sstevel@tonic-gate 	}
6630Sstevel@tonic-gate 
6640Sstevel@tonic-gate 	/* we didn't find any devids associated with the device */
6650Sstevel@tonic-gate 	mutex_exit(&(DEVI(dip)->devi_lock));
6660Sstevel@tonic-gate 	ddi_devid_str_free(devidstr);
6670Sstevel@tonic-gate 	return (0);
6680Sstevel@tonic-gate }
6690Sstevel@tonic-gate 
6700Sstevel@tonic-gate /* get a handle to a device by devid and minor name */
671*11958SGeorge.Wilson@Sun.COM int
6720Sstevel@tonic-gate ldi_vp_from_devid(ddi_devid_t devid, char *minor_name, vnode_t **vpp)
6730Sstevel@tonic-gate {
6740Sstevel@tonic-gate 	dev_info_t		*dip;
6750Sstevel@tonic-gate 	vnode_t			*vp;
6760Sstevel@tonic-gate 	int			ret, i, ndevs, styp;
6770Sstevel@tonic-gate 	dev_t			dev, *devs;
6780Sstevel@tonic-gate 
6790Sstevel@tonic-gate 	/* sanity check required input parameters */
6800Sstevel@tonic-gate 	if ((devid == NULL) || (minor_name == NULL) || (vpp == NULL))
6810Sstevel@tonic-gate 		return (EINVAL);
6820Sstevel@tonic-gate 
6830Sstevel@tonic-gate 	ret = ddi_lyr_devid_to_devlist(devid, minor_name, &ndevs, &devs);
6840Sstevel@tonic-gate 	if ((ret != DDI_SUCCESS) || (ndevs <= 0))
6850Sstevel@tonic-gate 		return (ENODEV);
6860Sstevel@tonic-gate 
6870Sstevel@tonic-gate 	for (i = 0; i < ndevs; i++) {
6880Sstevel@tonic-gate 		dev = devs[i];
6890Sstevel@tonic-gate 
6900Sstevel@tonic-gate 		if ((dip = e_ddi_hold_devi_by_dev(dev, 0)) == NULL)
6910Sstevel@tonic-gate 			continue;
6920Sstevel@tonic-gate 
6930Sstevel@tonic-gate 		/*
6940Sstevel@tonic-gate 		 * now we have to verify that the devid of the disk
6950Sstevel@tonic-gate 		 * still matches what was requested.
6960Sstevel@tonic-gate 		 *
6970Sstevel@tonic-gate 		 * we have to do this because the devid could have
6980Sstevel@tonic-gate 		 * changed between the call to ddi_lyr_devid_to_devlist()
6990Sstevel@tonic-gate 		 * and e_ddi_hold_devi_by_dev().  this is because when
7000Sstevel@tonic-gate 		 * ddi_lyr_devid_to_devlist() returns a list of devts
7010Sstevel@tonic-gate 		 * there is no kind of hold on those devts so a device
7020Sstevel@tonic-gate 		 * could have been replaced out from under us in the
7030Sstevel@tonic-gate 		 * interim.
7040Sstevel@tonic-gate 		 */
7050Sstevel@tonic-gate 		if ((i_ddi_minorname_to_devtspectype(dip, minor_name,
7060Sstevel@tonic-gate 		    NULL, &styp) == DDI_SUCCESS) &&
7070Sstevel@tonic-gate 		    ldi_devid_match(devid, dip, dev))
7080Sstevel@tonic-gate 			break;
7090Sstevel@tonic-gate 
7100Sstevel@tonic-gate 		ddi_release_devi(dip);	/* from e_ddi_hold_devi_by_dev() */
7110Sstevel@tonic-gate 	}
7120Sstevel@tonic-gate 
7130Sstevel@tonic-gate 	ddi_lyr_free_devlist(devs, ndevs);
7140Sstevel@tonic-gate 
7150Sstevel@tonic-gate 	if (i == ndevs)
7160Sstevel@tonic-gate 		return (ENODEV);
7170Sstevel@tonic-gate 
7180Sstevel@tonic-gate 	ASSERT(STYP_VALID(styp));
7190Sstevel@tonic-gate 	vp = makespecvp(dev, STYP_TO_VTYP(styp));
7200Sstevel@tonic-gate 	spec_assoc_vp_with_devi(vp, dip);
7210Sstevel@tonic-gate 	ddi_release_devi(dip);		/* from e_ddi_hold_devi_by_dev */
7220Sstevel@tonic-gate 
7230Sstevel@tonic-gate 	*vpp = vp;
7240Sstevel@tonic-gate 	return (0);
7250Sstevel@tonic-gate }
7260Sstevel@tonic-gate 
7270Sstevel@tonic-gate /* given a vnode, open a device */
7280Sstevel@tonic-gate static int
7290Sstevel@tonic-gate ldi_open_by_vp(vnode_t **vpp, int flag, cred_t *cr,
7300Sstevel@tonic-gate     ldi_handle_t *lhp, struct ldi_ident *li)
7310Sstevel@tonic-gate {
7320Sstevel@tonic-gate 	struct ldi_handle	*nlhp;
7330Sstevel@tonic-gate 	vnode_t			*vp;
7340Sstevel@tonic-gate 	int			err;
7350Sstevel@tonic-gate 
7360Sstevel@tonic-gate 	ASSERT((vpp != NULL) && (*vpp != NULL));
7370Sstevel@tonic-gate 	ASSERT((lhp != NULL) && (li != NULL));
7380Sstevel@tonic-gate 
7390Sstevel@tonic-gate 	vp = *vpp;
7400Sstevel@tonic-gate 	/* if the vnode passed in is not a device, then bail */
7410Sstevel@tonic-gate 	if (!vn_matchops(vp, spec_getvnodeops()) || !VTYP_VALID(vp->v_type))
7420Sstevel@tonic-gate 		return (ENXIO);
7430Sstevel@tonic-gate 
7440Sstevel@tonic-gate 	/*
7450Sstevel@tonic-gate 	 * the caller may have specified a node that
7460Sstevel@tonic-gate 	 * doesn't have cb_ops defined.  the ldi doesn't yet
7470Sstevel@tonic-gate 	 * support opening devices without a valid cb_ops.
7480Sstevel@tonic-gate 	 */
7490Sstevel@tonic-gate 	if (devopsp[getmajor(vp->v_rdev)]->devo_cb_ops == NULL)
7500Sstevel@tonic-gate 		return (ENXIO);
7510Sstevel@tonic-gate 
7520Sstevel@tonic-gate 	/* open the device */
7535331Samw 	if ((err = VOP_OPEN(&vp, flag | FKLYR, cr, NULL)) != 0)
7540Sstevel@tonic-gate 		return (err);
7550Sstevel@tonic-gate 
7560Sstevel@tonic-gate 	/* possible clone open, make sure that we still have a spec node */
7570Sstevel@tonic-gate 	ASSERT(vn_matchops(vp, spec_getvnodeops()));
7580Sstevel@tonic-gate 
7590Sstevel@tonic-gate 	nlhp = handle_alloc(vp, li);
7600Sstevel@tonic-gate 
7610Sstevel@tonic-gate 	if (vp != *vpp) {
7620Sstevel@tonic-gate 		/*
7630Sstevel@tonic-gate 		 * allocating the layered handle took a new hold on the vnode
7640Sstevel@tonic-gate 		 * so we can release the hold that was returned by the clone
7650Sstevel@tonic-gate 		 * open
7660Sstevel@tonic-gate 		 */
7670Sstevel@tonic-gate 		LDI_OPENCLOSE((CE_WARN, "%s: lh=0x%p",
7684582Scth 		    "ldi clone open", (void *)nlhp));
7690Sstevel@tonic-gate 	} else {
7700Sstevel@tonic-gate 		LDI_OPENCLOSE((CE_WARN, "%s: lh=0x%p",
7714582Scth 		    "ldi open", (void *)nlhp));
7720Sstevel@tonic-gate 	}
7730Sstevel@tonic-gate 
7740Sstevel@tonic-gate 	*vpp = vp;
7750Sstevel@tonic-gate 	*lhp = (ldi_handle_t)nlhp;
7760Sstevel@tonic-gate 	return (0);
7770Sstevel@tonic-gate }
7780Sstevel@tonic-gate 
7790Sstevel@tonic-gate /* Call a drivers prop_op(9E) interface */
7800Sstevel@tonic-gate static int
7810Sstevel@tonic-gate i_ldi_prop_op(dev_t dev, dev_info_t *dip, ddi_prop_op_t prop_op,
7820Sstevel@tonic-gate     int flags, char *name, caddr_t valuep, int *lengthp)
7830Sstevel@tonic-gate {
7840Sstevel@tonic-gate 	struct dev_ops	*ops = NULL;
7850Sstevel@tonic-gate 	int		res;
7860Sstevel@tonic-gate 
7870Sstevel@tonic-gate 	ASSERT((dip != NULL) && (name != NULL));
7880Sstevel@tonic-gate 	ASSERT((prop_op == PROP_LEN) || (valuep != NULL));
7890Sstevel@tonic-gate 	ASSERT(lengthp != NULL);
7900Sstevel@tonic-gate 
7910Sstevel@tonic-gate 	/*
7920Sstevel@tonic-gate 	 * we can only be invoked after a driver has been opened and
7930Sstevel@tonic-gate 	 * someone has a layered handle to it, so there had better be
7940Sstevel@tonic-gate 	 * a valid ops vector.
7950Sstevel@tonic-gate 	 */
7960Sstevel@tonic-gate 	ops = DEVI(dip)->devi_ops;
7970Sstevel@tonic-gate 	ASSERT(ops && ops->devo_cb_ops);
7980Sstevel@tonic-gate 
7990Sstevel@tonic-gate 	/*
8000Sstevel@tonic-gate 	 * Some nexus drivers incorrectly set cb_prop_op to nodev,
8010Sstevel@tonic-gate 	 * nulldev or even NULL.
8020Sstevel@tonic-gate 	 */
8030Sstevel@tonic-gate 	if ((ops->devo_cb_ops->cb_prop_op == nodev) ||
8040Sstevel@tonic-gate 	    (ops->devo_cb_ops->cb_prop_op == nulldev) ||
8050Sstevel@tonic-gate 	    (ops->devo_cb_ops->cb_prop_op == NULL)) {
8060Sstevel@tonic-gate 		return (DDI_PROP_NOT_FOUND);
8070Sstevel@tonic-gate 	}
8080Sstevel@tonic-gate 
8090Sstevel@tonic-gate 	/* check if this is actually DDI_DEV_T_ANY query */
8100Sstevel@tonic-gate 	if (flags & LDI_DEV_T_ANY) {
8110Sstevel@tonic-gate 		flags &= ~LDI_DEV_T_ANY;
8120Sstevel@tonic-gate 		dev = DDI_DEV_T_ANY;
8130Sstevel@tonic-gate 	}
8140Sstevel@tonic-gate 
8150Sstevel@tonic-gate 	res = cdev_prop_op(dev, dip, prop_op, flags, name, valuep, lengthp);
8160Sstevel@tonic-gate 	return (res);
8170Sstevel@tonic-gate }
8180Sstevel@tonic-gate 
8190Sstevel@tonic-gate static void
8200Sstevel@tonic-gate i_ldi_prop_op_free(struct prop_driver_data *pdd)
8210Sstevel@tonic-gate {
8220Sstevel@tonic-gate 	kmem_free(pdd, pdd->pdd_size);
8230Sstevel@tonic-gate }
8240Sstevel@tonic-gate 
8250Sstevel@tonic-gate static caddr_t
8260Sstevel@tonic-gate i_ldi_prop_op_alloc(int prop_len)
8270Sstevel@tonic-gate {
8280Sstevel@tonic-gate 	struct prop_driver_data	*pdd;
8290Sstevel@tonic-gate 	int			pdd_size;
8300Sstevel@tonic-gate 
8310Sstevel@tonic-gate 	pdd_size = sizeof (struct prop_driver_data) + prop_len;
8320Sstevel@tonic-gate 	pdd = kmem_alloc(pdd_size, KM_SLEEP);
8330Sstevel@tonic-gate 	pdd->pdd_size = pdd_size;
8340Sstevel@tonic-gate 	pdd->pdd_prop_free = i_ldi_prop_op_free;
8350Sstevel@tonic-gate 	return ((caddr_t)&pdd[1]);
8360Sstevel@tonic-gate }
8370Sstevel@tonic-gate 
8380Sstevel@tonic-gate /*
8390Sstevel@tonic-gate  * i_ldi_prop_op_typed() is a wrapper for i_ldi_prop_op that is used
8400Sstevel@tonic-gate  * by the typed ldi property lookup interfaces.
8410Sstevel@tonic-gate  */
8420Sstevel@tonic-gate static int
8430Sstevel@tonic-gate i_ldi_prop_op_typed(dev_t dev, dev_info_t *dip, int flags, char *name,
8440Sstevel@tonic-gate     caddr_t *datap, int *lengthp, int elem_size)
8450Sstevel@tonic-gate {
8460Sstevel@tonic-gate 	caddr_t	prop_val;
8470Sstevel@tonic-gate 	int	prop_len, res;
8480Sstevel@tonic-gate 
8490Sstevel@tonic-gate 	ASSERT((dip != NULL) && (name != NULL));
8500Sstevel@tonic-gate 	ASSERT((datap != NULL) && (lengthp != NULL));
8510Sstevel@tonic-gate 
8520Sstevel@tonic-gate 	/*
8530Sstevel@tonic-gate 	 * first call the drivers prop_op() interface to allow it
8540Sstevel@tonic-gate 	 * it to override default property values.
8550Sstevel@tonic-gate 	 */
8560Sstevel@tonic-gate 	res = i_ldi_prop_op(dev, dip, PROP_LEN,
8570Sstevel@tonic-gate 	    flags | DDI_PROP_DYNAMIC, name, NULL, &prop_len);
8580Sstevel@tonic-gate 	if (res != DDI_PROP_SUCCESS)
8590Sstevel@tonic-gate 		return (DDI_PROP_NOT_FOUND);
8600Sstevel@tonic-gate 
8610Sstevel@tonic-gate 	/* sanity check the property length */
8620Sstevel@tonic-gate 	if (prop_len == 0) {
8630Sstevel@tonic-gate 		/*
8640Sstevel@tonic-gate 		 * the ddi typed interfaces don't allow a drivers to
8650Sstevel@tonic-gate 		 * create properties with a length of 0.  so we should
8660Sstevel@tonic-gate 		 * prevent drivers from returning 0 length dynamic
8670Sstevel@tonic-gate 		 * properties for typed property lookups.
8680Sstevel@tonic-gate 		 */
8690Sstevel@tonic-gate 		return (DDI_PROP_NOT_FOUND);
8700Sstevel@tonic-gate 	}
8710Sstevel@tonic-gate 
8720Sstevel@tonic-gate 	/* sanity check the property length against the element size */
8730Sstevel@tonic-gate 	if (elem_size && ((prop_len % elem_size) != 0))
8740Sstevel@tonic-gate 		return (DDI_PROP_NOT_FOUND);
8750Sstevel@tonic-gate 
8760Sstevel@tonic-gate 	/*
8770Sstevel@tonic-gate 	 * got it.  now allocate a prop_driver_data struct so that the
8780Sstevel@tonic-gate 	 * user can free the property via ddi_prop_free().
8790Sstevel@tonic-gate 	 */
8800Sstevel@tonic-gate 	prop_val = i_ldi_prop_op_alloc(prop_len);
8810Sstevel@tonic-gate 
8820Sstevel@tonic-gate 	/* lookup the property again, this time get the value */
8830Sstevel@tonic-gate 	res = i_ldi_prop_op(dev, dip, PROP_LEN_AND_VAL_BUF,
8840Sstevel@tonic-gate 	    flags | DDI_PROP_DYNAMIC, name, prop_val, &prop_len);
8850Sstevel@tonic-gate 	if (res != DDI_PROP_SUCCESS) {
8860Sstevel@tonic-gate 		ddi_prop_free(prop_val);
8870Sstevel@tonic-gate 		return (DDI_PROP_NOT_FOUND);
8880Sstevel@tonic-gate 	}
8890Sstevel@tonic-gate 
8900Sstevel@tonic-gate 	/* sanity check the property length */
8910Sstevel@tonic-gate 	if (prop_len == 0) {
8920Sstevel@tonic-gate 		ddi_prop_free(prop_val);
8930Sstevel@tonic-gate 		return (DDI_PROP_NOT_FOUND);
8940Sstevel@tonic-gate 	}
8950Sstevel@tonic-gate 
8960Sstevel@tonic-gate 	/* sanity check the property length against the element size */
8970Sstevel@tonic-gate 	if (elem_size && ((prop_len % elem_size) != 0)) {
8980Sstevel@tonic-gate 		ddi_prop_free(prop_val);
8990Sstevel@tonic-gate 		return (DDI_PROP_NOT_FOUND);
9000Sstevel@tonic-gate 	}
9010Sstevel@tonic-gate 
9020Sstevel@tonic-gate 	/*
9030Sstevel@tonic-gate 	 * return the prop_driver_data struct and, optionally, the length
9040Sstevel@tonic-gate 	 * of the data.
9050Sstevel@tonic-gate 	 */
9060Sstevel@tonic-gate 	*datap = prop_val;
9070Sstevel@tonic-gate 	*lengthp = prop_len;
9080Sstevel@tonic-gate 
9090Sstevel@tonic-gate 	return (DDI_PROP_SUCCESS);
9100Sstevel@tonic-gate }
9110Sstevel@tonic-gate 
9120Sstevel@tonic-gate /*
9130Sstevel@tonic-gate  * i_check_string looks at a string property and makes sure its
9140Sstevel@tonic-gate  * a valid null terminated string
9150Sstevel@tonic-gate  */
9160Sstevel@tonic-gate static int
9170Sstevel@tonic-gate i_check_string(char *str, int prop_len)
9180Sstevel@tonic-gate {
9190Sstevel@tonic-gate 	int i;
9200Sstevel@tonic-gate 
9210Sstevel@tonic-gate 	ASSERT(str != NULL);
9220Sstevel@tonic-gate 
9230Sstevel@tonic-gate 	for (i = 0; i < prop_len; i++) {
9240Sstevel@tonic-gate 		if (str[i] == '\0')
9250Sstevel@tonic-gate 			return (0);
9260Sstevel@tonic-gate 	}
9270Sstevel@tonic-gate 	return (1);
9280Sstevel@tonic-gate }
9290Sstevel@tonic-gate 
9300Sstevel@tonic-gate /*
9310Sstevel@tonic-gate  * i_pack_string_array takes a a string array property that is represented
9325331Samw  * as a concatenation of strings (with the NULL character included for
9330Sstevel@tonic-gate  * each string) and converts it into a format that can be returned by
9340Sstevel@tonic-gate  * ldi_prop_lookup_string_array.
9350Sstevel@tonic-gate  */
9360Sstevel@tonic-gate static int
9370Sstevel@tonic-gate i_pack_string_array(char *str_concat, int prop_len,
9380Sstevel@tonic-gate     char ***str_arrayp, int *nelemp)
9390Sstevel@tonic-gate {
9400Sstevel@tonic-gate 	int i, nelem, pack_size;
9410Sstevel@tonic-gate 	char **str_array, *strptr;
9420Sstevel@tonic-gate 
9430Sstevel@tonic-gate 	/*
9440Sstevel@tonic-gate 	 * first we need to sanity check the input string array.
9450Sstevel@tonic-gate 	 * in essence this can be done my making sure that the last
9460Sstevel@tonic-gate 	 * character of the array passed in is null.  (meaning the last
9470Sstevel@tonic-gate 	 * string in the array is NULL terminated.
9480Sstevel@tonic-gate 	 */
9490Sstevel@tonic-gate 	if (str_concat[prop_len - 1] != '\0')
9500Sstevel@tonic-gate 		return (1);
9510Sstevel@tonic-gate 
9520Sstevel@tonic-gate 	/* now let's count the number of strings in the array */
9530Sstevel@tonic-gate 	for (nelem = i = 0; i < prop_len; i++)
9540Sstevel@tonic-gate 		if (str_concat[i] == '\0')
9550Sstevel@tonic-gate 			nelem++;
9560Sstevel@tonic-gate 	ASSERT(nelem >= 1);
9570Sstevel@tonic-gate 
9580Sstevel@tonic-gate 	/* now let's allocate memory for the new packed property */
9590Sstevel@tonic-gate 	pack_size = (sizeof (char *) * (nelem + 1)) + prop_len;
9600Sstevel@tonic-gate 	str_array = (char **)i_ldi_prop_op_alloc(pack_size);
9610Sstevel@tonic-gate 
9620Sstevel@tonic-gate 	/* let's copy the actual string data into the new property */
9630Sstevel@tonic-gate 	strptr = (char *)&(str_array[nelem + 1]);
9640Sstevel@tonic-gate 	bcopy(str_concat, strptr, prop_len);
9650Sstevel@tonic-gate 
9660Sstevel@tonic-gate 	/* now initialize the string array pointers */
9670Sstevel@tonic-gate 	for (i = 0; i < nelem; i++) {
9680Sstevel@tonic-gate 		str_array[i] = strptr;
9690Sstevel@tonic-gate 		strptr += strlen(strptr) + 1;
9700Sstevel@tonic-gate 	}
9710Sstevel@tonic-gate 	str_array[nelem] = NULL;
9720Sstevel@tonic-gate 
9730Sstevel@tonic-gate 	/* set the return values */
9740Sstevel@tonic-gate 	*str_arrayp = str_array;
9750Sstevel@tonic-gate 	*nelemp = nelem;
9760Sstevel@tonic-gate 
9770Sstevel@tonic-gate 	return (0);
9780Sstevel@tonic-gate }
9790Sstevel@tonic-gate 
9800Sstevel@tonic-gate 
9810Sstevel@tonic-gate /*
9820Sstevel@tonic-gate  * LDI Project private device usage interfaces
9830Sstevel@tonic-gate  */
9840Sstevel@tonic-gate 
9850Sstevel@tonic-gate /*
9860Sstevel@tonic-gate  * Get a count of how many devices are currentl open by different consumers
9870Sstevel@tonic-gate  */
9880Sstevel@tonic-gate int
9890Sstevel@tonic-gate ldi_usage_count()
9900Sstevel@tonic-gate {
9910Sstevel@tonic-gate 	return (ldi_handle_hash_count);
9920Sstevel@tonic-gate }
9930Sstevel@tonic-gate 
9940Sstevel@tonic-gate static void
9950Sstevel@tonic-gate ldi_usage_walker_tgt_helper(ldi_usage_t *ldi_usage, vnode_t *vp)
9960Sstevel@tonic-gate {
9970Sstevel@tonic-gate 	dev_info_t	*dip;
9980Sstevel@tonic-gate 	dev_t		dev;
9990Sstevel@tonic-gate 
10000Sstevel@tonic-gate 	ASSERT(STYP_VALID(VTYP_TO_STYP(vp->v_type)));
10010Sstevel@tonic-gate 
10020Sstevel@tonic-gate 	/* get the target devt */
10030Sstevel@tonic-gate 	dev = vp->v_rdev;
10040Sstevel@tonic-gate 
10050Sstevel@tonic-gate 	/* try to get the target dip */
10060Sstevel@tonic-gate 	dip = VTOCS(vp)->s_dip;
10070Sstevel@tonic-gate 	if (dip != NULL) {
10080Sstevel@tonic-gate 		e_ddi_hold_devi(dip);
10090Sstevel@tonic-gate 	} else if (dev != DDI_DEV_T_NONE) {
10100Sstevel@tonic-gate 		dip = e_ddi_hold_devi_by_dev(dev, 0);
10110Sstevel@tonic-gate 	}
10120Sstevel@tonic-gate 
10130Sstevel@tonic-gate 	/* set the target information */
10140Sstevel@tonic-gate 	ldi_usage->tgt_name = mod_major_to_name(getmajor(dev));
10150Sstevel@tonic-gate 	ldi_usage->tgt_modid = mod_name_to_modid(ldi_usage->tgt_name);
10160Sstevel@tonic-gate 	ldi_usage->tgt_devt = dev;
10170Sstevel@tonic-gate 	ldi_usage->tgt_spec_type = VTYP_TO_STYP(vp->v_type);
10180Sstevel@tonic-gate 	ldi_usage->tgt_dip = dip;
10190Sstevel@tonic-gate }
10200Sstevel@tonic-gate 
10210Sstevel@tonic-gate 
10220Sstevel@tonic-gate static int
10230Sstevel@tonic-gate ldi_usage_walker_helper(struct ldi_ident *lip, vnode_t *vp,
10240Sstevel@tonic-gate     void *arg, int (*callback)(const ldi_usage_t *, void *))
10250Sstevel@tonic-gate {
10260Sstevel@tonic-gate 	ldi_usage_t	ldi_usage;
10270Sstevel@tonic-gate 	struct devnames	*dnp;
10280Sstevel@tonic-gate 	dev_info_t	*dip;
10290Sstevel@tonic-gate 	major_t		major;
10300Sstevel@tonic-gate 	dev_t		dev;
10310Sstevel@tonic-gate 	int		ret = LDI_USAGE_CONTINUE;
10320Sstevel@tonic-gate 
10330Sstevel@tonic-gate 	/* set the target device information */
10340Sstevel@tonic-gate 	ldi_usage_walker_tgt_helper(&ldi_usage, vp);
10350Sstevel@tonic-gate 
10360Sstevel@tonic-gate 	/* get the source devt */
10370Sstevel@tonic-gate 	dev = lip->li_dev;
10380Sstevel@tonic-gate 
10390Sstevel@tonic-gate 	/* try to get the source dip */
10400Sstevel@tonic-gate 	dip = lip->li_dip;
10410Sstevel@tonic-gate 	if (dip != NULL) {
10420Sstevel@tonic-gate 		e_ddi_hold_devi(dip);
10430Sstevel@tonic-gate 	} else if (dev != DDI_DEV_T_NONE) {
10440Sstevel@tonic-gate 		dip = e_ddi_hold_devi_by_dev(dev, 0);
10450Sstevel@tonic-gate 	}
10460Sstevel@tonic-gate 
10470Sstevel@tonic-gate 	/* set the valid source information */
10480Sstevel@tonic-gate 	ldi_usage.src_modid = lip->li_modid;
10490Sstevel@tonic-gate 	ldi_usage.src_name = lip->li_modname;
10500Sstevel@tonic-gate 	ldi_usage.src_devt = dev;
10510Sstevel@tonic-gate 	ldi_usage.src_dip = dip;
10520Sstevel@tonic-gate 
10530Sstevel@tonic-gate 	/*
10540Sstevel@tonic-gate 	 * if the source ident represents either:
10550Sstevel@tonic-gate 	 *
10560Sstevel@tonic-gate 	 * - a kernel module (and not a device or device driver)
10570Sstevel@tonic-gate 	 * - a device node
10580Sstevel@tonic-gate 	 *
10590Sstevel@tonic-gate 	 * then we currently have all the info we need to report the
10600Sstevel@tonic-gate 	 * usage information so invoke the callback function.
10610Sstevel@tonic-gate 	 */
10620Sstevel@tonic-gate 	if (((lip->li_major == -1) && (dev == DDI_DEV_T_NONE)) ||
10630Sstevel@tonic-gate 	    (dip != NULL)) {
10640Sstevel@tonic-gate 		ret = callback(&ldi_usage, arg);
10650Sstevel@tonic-gate 		if (dip != NULL)
10660Sstevel@tonic-gate 			ddi_release_devi(dip);
10670Sstevel@tonic-gate 		if (ldi_usage.tgt_dip != NULL)
10680Sstevel@tonic-gate 			ddi_release_devi(ldi_usage.tgt_dip);
10690Sstevel@tonic-gate 		return (ret);
10700Sstevel@tonic-gate 	}
10710Sstevel@tonic-gate 
10720Sstevel@tonic-gate 	/*
10730Sstevel@tonic-gate 	 * now this is kinda gross.
10740Sstevel@tonic-gate 	 *
10750Sstevel@tonic-gate 	 * what we do here is attempt to associate every device instance
10760Sstevel@tonic-gate 	 * of the source driver on the system with the open target driver.
10770Sstevel@tonic-gate 	 * we do this because we don't know which instance of the device
10780Sstevel@tonic-gate 	 * could potentially access the lower device so we assume that all
10790Sstevel@tonic-gate 	 * the instances could access it.
10800Sstevel@tonic-gate 	 *
10810Sstevel@tonic-gate 	 * there are two ways we could have gotten here:
10820Sstevel@tonic-gate 	 *
10830Sstevel@tonic-gate 	 * 1) this layered ident represents one created using only a
10840Sstevel@tonic-gate 	 *    major number or a driver module name.  this means that when
10850Sstevel@tonic-gate 	 *    it was created we could not associate it with a particular
10860Sstevel@tonic-gate 	 *    dev_t or device instance.
10870Sstevel@tonic-gate 	 *
10880Sstevel@tonic-gate 	 *    when could this possibly happen you ask?
10890Sstevel@tonic-gate 	 *
10900Sstevel@tonic-gate 	 *    a perfect example of this is streams persistent links.
10910Sstevel@tonic-gate 	 *    when a persistant streams link is formed we can't associate
10920Sstevel@tonic-gate 	 *    the lower device stream with any particular upper device
10930Sstevel@tonic-gate 	 *    stream or instance.  this is because any particular upper
10940Sstevel@tonic-gate 	 *    device stream could be closed, then another could be
10950Sstevel@tonic-gate 	 *    opened with a different dev_t and device instance, and it
10960Sstevel@tonic-gate 	 *    would still have access to the lower linked stream.
10970Sstevel@tonic-gate 	 *
10980Sstevel@tonic-gate 	 *    since any instance of the upper streams driver could
10990Sstevel@tonic-gate 	 *    potentially access the lower stream whenever it wants,
11000Sstevel@tonic-gate 	 *    we represent that here by associating the opened lower
11010Sstevel@tonic-gate 	 *    device with every existing device instance of the upper
11020Sstevel@tonic-gate 	 *    streams driver.
11030Sstevel@tonic-gate 	 *
11040Sstevel@tonic-gate 	 * 2) This case should really never happen but we'll include it
11050Sstevel@tonic-gate 	 *    for completeness.
11060Sstevel@tonic-gate 	 *
11070Sstevel@tonic-gate 	 *    it's possible that we could have gotten here because we
11080Sstevel@tonic-gate 	 *    have a dev_t for the upper device but we couldn't find a
11090Sstevel@tonic-gate 	 *    dip associated with that dev_t.
11100Sstevel@tonic-gate 	 *
11110Sstevel@tonic-gate 	 *    the only types of devices that have dev_t without an
11120Sstevel@tonic-gate 	 *    associated dip are unbound DLPIv2 network devices.  These
11130Sstevel@tonic-gate 	 *    types of devices exist to be able to attach a stream to any
11140Sstevel@tonic-gate 	 *    instance of a hardware network device.  since these types of
11150Sstevel@tonic-gate 	 *    devices are usually hardware devices they should never
11160Sstevel@tonic-gate 	 *    really have other devices open.
11170Sstevel@tonic-gate 	 */
11180Sstevel@tonic-gate 	if (dev != DDI_DEV_T_NONE)
11190Sstevel@tonic-gate 		major = getmajor(dev);
11200Sstevel@tonic-gate 	else
11210Sstevel@tonic-gate 		major = lip->li_major;
11220Sstevel@tonic-gate 
11230Sstevel@tonic-gate 	ASSERT((major >= 0) && (major < devcnt));
11240Sstevel@tonic-gate 
11250Sstevel@tonic-gate 	dnp = &devnamesp[major];
11260Sstevel@tonic-gate 	LOCK_DEV_OPS(&dnp->dn_lock);
11270Sstevel@tonic-gate 	dip = dnp->dn_head;
11280Sstevel@tonic-gate 	while ((dip) && (ret == LDI_USAGE_CONTINUE)) {
11290Sstevel@tonic-gate 		e_ddi_hold_devi(dip);
11300Sstevel@tonic-gate 		UNLOCK_DEV_OPS(&dnp->dn_lock);
11310Sstevel@tonic-gate 
11320Sstevel@tonic-gate 		/* set the source dip */
11330Sstevel@tonic-gate 		ldi_usage.src_dip = dip;
11340Sstevel@tonic-gate 
11350Sstevel@tonic-gate 		/* invoke the callback function */
11360Sstevel@tonic-gate 		ret = callback(&ldi_usage, arg);
11370Sstevel@tonic-gate 
11380Sstevel@tonic-gate 		LOCK_DEV_OPS(&dnp->dn_lock);
11390Sstevel@tonic-gate 		ddi_release_devi(dip);
11400Sstevel@tonic-gate 		dip = ddi_get_next(dip);
11410Sstevel@tonic-gate 	}
11420Sstevel@tonic-gate 	UNLOCK_DEV_OPS(&dnp->dn_lock);
11430Sstevel@tonic-gate 
11440Sstevel@tonic-gate 	/* if there was a target dip, release it */
11450Sstevel@tonic-gate 	if (ldi_usage.tgt_dip != NULL)
11460Sstevel@tonic-gate 		ddi_release_devi(ldi_usage.tgt_dip);
11470Sstevel@tonic-gate 
11480Sstevel@tonic-gate 	return (ret);
11490Sstevel@tonic-gate }
11500Sstevel@tonic-gate 
11510Sstevel@tonic-gate /*
11520Sstevel@tonic-gate  * ldi_usage_walker() - this walker reports LDI kernel device usage
11530Sstevel@tonic-gate  * information via the callback() callback function.  the LDI keeps track
11540Sstevel@tonic-gate  * of what devices are being accessed in its own internal data structures.
11550Sstevel@tonic-gate  * this function walks those data structures to determine device usage.
11560Sstevel@tonic-gate  */
11570Sstevel@tonic-gate void
11580Sstevel@tonic-gate ldi_usage_walker(void *arg, int (*callback)(const ldi_usage_t *, void *))
11590Sstevel@tonic-gate {
11600Sstevel@tonic-gate 	struct ldi_handle	*lhp;
11610Sstevel@tonic-gate 	struct ldi_ident	*lip;
11620Sstevel@tonic-gate 	vnode_t			*vp;
11630Sstevel@tonic-gate 	int			i;
11640Sstevel@tonic-gate 	int			ret = LDI_USAGE_CONTINUE;
11650Sstevel@tonic-gate 
11660Sstevel@tonic-gate 	for (i = 0; i < LH_HASH_SZ; i++) {
11670Sstevel@tonic-gate 		mutex_enter(&ldi_handle_hash_lock[i]);
11680Sstevel@tonic-gate 
11690Sstevel@tonic-gate 		lhp = ldi_handle_hash[i];
11700Sstevel@tonic-gate 		while ((lhp != NULL) && (ret == LDI_USAGE_CONTINUE)) {
11710Sstevel@tonic-gate 			lip = lhp->lh_ident;
11720Sstevel@tonic-gate 			vp = lhp->lh_vp;
11730Sstevel@tonic-gate 
11740Sstevel@tonic-gate 			/* invoke the devinfo callback function */
11750Sstevel@tonic-gate 			ret = ldi_usage_walker_helper(lip, vp, arg, callback);
11760Sstevel@tonic-gate 
11770Sstevel@tonic-gate 			lhp = lhp->lh_next;
11780Sstevel@tonic-gate 		}
11790Sstevel@tonic-gate 		mutex_exit(&ldi_handle_hash_lock[i]);
11800Sstevel@tonic-gate 
11810Sstevel@tonic-gate 		if (ret != LDI_USAGE_CONTINUE)
11820Sstevel@tonic-gate 			break;
11830Sstevel@tonic-gate 	}
11840Sstevel@tonic-gate }
11850Sstevel@tonic-gate 
11860Sstevel@tonic-gate /*
11870Sstevel@tonic-gate  * LDI Project private interfaces (streams linking interfaces)
11880Sstevel@tonic-gate  *
11890Sstevel@tonic-gate  * Streams supports a type of built in device layering via linking.
11900Sstevel@tonic-gate  * Certain types of streams drivers can be streams multiplexors.
11910Sstevel@tonic-gate  * A streams multiplexor supports the I_LINK/I_PLINK operation.
11920Sstevel@tonic-gate  * These operations allows other streams devices to be linked under the
11930Sstevel@tonic-gate  * multiplexor.  By definition all streams multiplexors are devices
11940Sstevel@tonic-gate  * so this linking is a type of device layering where the multiplexor
11950Sstevel@tonic-gate  * device is layered on top of the device linked below it.
11960Sstevel@tonic-gate  */
11970Sstevel@tonic-gate 
11980Sstevel@tonic-gate /*
11990Sstevel@tonic-gate  * ldi_mlink_lh() is invoked when streams are linked using LDI handles.
12000Sstevel@tonic-gate  * It is not used for normal I_LINKs and I_PLINKs using file descriptors.
12010Sstevel@tonic-gate  *
12020Sstevel@tonic-gate  * The streams framework keeps track of links via the file_t of the lower
12030Sstevel@tonic-gate  * stream.  The LDI keeps track of devices using a vnode.  In the case
12040Sstevel@tonic-gate  * of a streams link created via an LDI handle, fnk_lh() allocates
12050Sstevel@tonic-gate  * a file_t that the streams framework can use to track the linkage.
12060Sstevel@tonic-gate  */
12070Sstevel@tonic-gate int
12080Sstevel@tonic-gate ldi_mlink_lh(vnode_t *vp, int cmd, intptr_t arg, cred_t *crp, int *rvalp)
12090Sstevel@tonic-gate {
12100Sstevel@tonic-gate 	struct ldi_handle	*lhp = (struct ldi_handle *)arg;
12110Sstevel@tonic-gate 	vnode_t			*vpdown;
12120Sstevel@tonic-gate 	file_t			*fpdown;
12130Sstevel@tonic-gate 	int			err;
12140Sstevel@tonic-gate 
12150Sstevel@tonic-gate 	if (lhp == NULL)
12160Sstevel@tonic-gate 		return (EINVAL);
12170Sstevel@tonic-gate 
12180Sstevel@tonic-gate 	vpdown = lhp->lh_vp;
12190Sstevel@tonic-gate 	ASSERT(vn_matchops(vpdown, spec_getvnodeops()));
12200Sstevel@tonic-gate 	ASSERT(cmd == _I_PLINK_LH);
12210Sstevel@tonic-gate 
12220Sstevel@tonic-gate 	/*
12230Sstevel@tonic-gate 	 * create a new lower vnode and a file_t that points to it,
12240Sstevel@tonic-gate 	 * streams linking requires a file_t.  falloc() returns with
12250Sstevel@tonic-gate 	 * fpdown locked.
12260Sstevel@tonic-gate 	 */
12270Sstevel@tonic-gate 	VN_HOLD(vpdown);
12280Sstevel@tonic-gate 	(void) falloc(vpdown, FREAD|FWRITE, &fpdown, NULL);
12290Sstevel@tonic-gate 	mutex_exit(&fpdown->f_tlock);
12300Sstevel@tonic-gate 
12310Sstevel@tonic-gate 	/* try to establish the link */
12320Sstevel@tonic-gate 	err = mlink_file(vp, I_PLINK, fpdown, crp, rvalp, 1);
12330Sstevel@tonic-gate 
12340Sstevel@tonic-gate 	if (err != 0) {
12350Sstevel@tonic-gate 		/* the link failed, free the file_t and release the vnode */
12360Sstevel@tonic-gate 		mutex_enter(&fpdown->f_tlock);
12370Sstevel@tonic-gate 		unfalloc(fpdown);
12380Sstevel@tonic-gate 		VN_RELE(vpdown);
12390Sstevel@tonic-gate 	}
12400Sstevel@tonic-gate 
12410Sstevel@tonic-gate 	return (err);
12420Sstevel@tonic-gate }
12430Sstevel@tonic-gate 
12440Sstevel@tonic-gate /*
12455331Samw  * ldi_mlink_fp() is invoked for all successful streams linkages created
12460Sstevel@tonic-gate  * via I_LINK and I_PLINK.  ldi_mlink_fp() records the linkage information
12470Sstevel@tonic-gate  * in its internal state so that the devinfo snapshot code has some
12480Sstevel@tonic-gate  * observability into streams device linkage information.
12490Sstevel@tonic-gate  */
12500Sstevel@tonic-gate void
12510Sstevel@tonic-gate ldi_mlink_fp(struct stdata *stp, file_t *fpdown, int lhlink, int type)
12520Sstevel@tonic-gate {
12530Sstevel@tonic-gate 	vnode_t			*vp = fpdown->f_vnode;
12540Sstevel@tonic-gate 	struct snode		*sp, *csp;
12550Sstevel@tonic-gate 	ldi_ident_t		li;
12560Sstevel@tonic-gate 	major_t			major;
12570Sstevel@tonic-gate 	int			ret;
12580Sstevel@tonic-gate 
12590Sstevel@tonic-gate 	/* if the lower stream is not a device then return */
12600Sstevel@tonic-gate 	if (!vn_matchops(vp, spec_getvnodeops()))
12610Sstevel@tonic-gate 		return;
12620Sstevel@tonic-gate 
12630Sstevel@tonic-gate 	ASSERT(!servicing_interrupt());
12640Sstevel@tonic-gate 
12650Sstevel@tonic-gate 	LDI_STREAMS_LNK((CE_NOTE, "%s: linking streams "
12664582Scth 	    "stp=0x%p, fpdown=0x%p", "ldi_mlink_fp",
12674582Scth 	    (void *)stp, (void *)fpdown));
12680Sstevel@tonic-gate 
12690Sstevel@tonic-gate 	sp = VTOS(vp);
12700Sstevel@tonic-gate 	csp = VTOS(sp->s_commonvp);
12710Sstevel@tonic-gate 
12720Sstevel@tonic-gate 	/* check if this was a plink via a layered handle */
12730Sstevel@tonic-gate 	if (lhlink) {
12740Sstevel@tonic-gate 		/*
12750Sstevel@tonic-gate 		 * increment the common snode s_count.
12760Sstevel@tonic-gate 		 *
12770Sstevel@tonic-gate 		 * this is done because after the link operation there
12780Sstevel@tonic-gate 		 * are two ways that s_count can be decremented.
12790Sstevel@tonic-gate 		 *
12800Sstevel@tonic-gate 		 * when the layered handle used to create the link is
12810Sstevel@tonic-gate 		 * closed, spec_close() is called and it will decrement
12820Sstevel@tonic-gate 		 * s_count in the common snode.  if we don't increment
12830Sstevel@tonic-gate 		 * s_count here then this could cause spec_close() to
12840Sstevel@tonic-gate 		 * actually close the device while it's still linked
12850Sstevel@tonic-gate 		 * under a multiplexer.
12860Sstevel@tonic-gate 		 *
12870Sstevel@tonic-gate 		 * also, when the lower stream is unlinked, closef() is
12880Sstevel@tonic-gate 		 * called for the file_t associated with this snode.
12890Sstevel@tonic-gate 		 * closef() will call spec_close(), which will decrement
12900Sstevel@tonic-gate 		 * s_count.  if we dont't increment s_count here then this
12910Sstevel@tonic-gate 		 * could cause spec_close() to actually close the device
12920Sstevel@tonic-gate 		 * while there may still be valid layered handles
12930Sstevel@tonic-gate 		 * pointing to it.
12940Sstevel@tonic-gate 		 */
12950Sstevel@tonic-gate 		mutex_enter(&csp->s_lock);
12960Sstevel@tonic-gate 		ASSERT(csp->s_count >= 1);
12970Sstevel@tonic-gate 		csp->s_count++;
12980Sstevel@tonic-gate 		mutex_exit(&csp->s_lock);
12990Sstevel@tonic-gate 
13000Sstevel@tonic-gate 		/*
13010Sstevel@tonic-gate 		 * decrement the f_count.
13020Sstevel@tonic-gate 		 * this is done because the layered driver framework does
13030Sstevel@tonic-gate 		 * not actually cache a copy of the file_t allocated to
13040Sstevel@tonic-gate 		 * do the link.  this is done here instead of in ldi_mlink_lh()
13050Sstevel@tonic-gate 		 * because there is a window in ldi_mlink_lh() between where
13060Sstevel@tonic-gate 		 * milnk_file() returns and we would decrement the f_count
13070Sstevel@tonic-gate 		 * when the stream could be unlinked.
13080Sstevel@tonic-gate 		 */
13090Sstevel@tonic-gate 		mutex_enter(&fpdown->f_tlock);
13100Sstevel@tonic-gate 		fpdown->f_count--;
13110Sstevel@tonic-gate 		mutex_exit(&fpdown->f_tlock);
13120Sstevel@tonic-gate 	}
13130Sstevel@tonic-gate 
13140Sstevel@tonic-gate 	/*
13150Sstevel@tonic-gate 	 * NOTE: here we rely on the streams subsystem not allowing
13160Sstevel@tonic-gate 	 * a stream to be multiplexed more than once.  if this
13170Sstevel@tonic-gate 	 * changes, we break.
13180Sstevel@tonic-gate 	 *
13190Sstevel@tonic-gate 	 * mark the snode/stream as multiplexed
13200Sstevel@tonic-gate 	 */
13210Sstevel@tonic-gate 	mutex_enter(&sp->s_lock);
13220Sstevel@tonic-gate 	ASSERT(!(sp->s_flag & SMUXED));
13230Sstevel@tonic-gate 	sp->s_flag |= SMUXED;
13240Sstevel@tonic-gate 	mutex_exit(&sp->s_lock);
13250Sstevel@tonic-gate 
13260Sstevel@tonic-gate 	/* get a layered ident for the upper stream */
13270Sstevel@tonic-gate 	if (type == LINKNORMAL) {
13280Sstevel@tonic-gate 		/*
13290Sstevel@tonic-gate 		 * if the link is not persistant then we can associate
13300Sstevel@tonic-gate 		 * the upper stream with a dev_t.  this is because the
13310Sstevel@tonic-gate 		 * upper stream is associated with a vnode, which is
13320Sstevel@tonic-gate 		 * associated with a dev_t and this binding can't change
13330Sstevel@tonic-gate 		 * during the life of the stream.  since the link isn't
13340Sstevel@tonic-gate 		 * persistant once the stream is destroyed the link is
13350Sstevel@tonic-gate 		 * destroyed.  so the dev_t will be valid for the life
13360Sstevel@tonic-gate 		 * of the link.
13370Sstevel@tonic-gate 		 */
13380Sstevel@tonic-gate 		ret = ldi_ident_from_stream(getendq(stp->sd_wrq), &li);
13390Sstevel@tonic-gate 	} else {
13400Sstevel@tonic-gate 		/*
13410Sstevel@tonic-gate 		 * if the link is persistant we can only associate the
13420Sstevel@tonic-gate 		 * link with a driver (and not a dev_t.)  this is
13430Sstevel@tonic-gate 		 * because subsequent opens of the upper device may result
13440Sstevel@tonic-gate 		 * in a different stream (and dev_t) having access to
13450Sstevel@tonic-gate 		 * the lower stream.
13460Sstevel@tonic-gate 		 *
13470Sstevel@tonic-gate 		 * for example, if the upper stream is closed after the
13480Sstevel@tonic-gate 		 * persistant link operation is compleated, a subsequent
13490Sstevel@tonic-gate 		 * open of the upper device will create a new stream which
13500Sstevel@tonic-gate 		 * may have a different dev_t and an unlink operation
13510Sstevel@tonic-gate 		 * can be performed using this new upper stream.
13520Sstevel@tonic-gate 		 */
13530Sstevel@tonic-gate 		ASSERT(type == LINKPERSIST);
13540Sstevel@tonic-gate 		major = getmajor(stp->sd_vnode->v_rdev);
13550Sstevel@tonic-gate 		ret = ldi_ident_from_major(major, &li);
13560Sstevel@tonic-gate 	}
13570Sstevel@tonic-gate 
13580Sstevel@tonic-gate 	ASSERT(ret == 0);
13590Sstevel@tonic-gate 	(void) handle_alloc(vp, (struct ldi_ident *)li);
13600Sstevel@tonic-gate 	ldi_ident_release(li);
13610Sstevel@tonic-gate }
13620Sstevel@tonic-gate 
13630Sstevel@tonic-gate void
13640Sstevel@tonic-gate ldi_munlink_fp(struct stdata *stp, file_t *fpdown, int type)
13650Sstevel@tonic-gate {
13660Sstevel@tonic-gate 	struct ldi_handle	*lhp;
13670Sstevel@tonic-gate 	vnode_t			*vp = (vnode_t *)fpdown->f_vnode;
13680Sstevel@tonic-gate 	struct snode		*sp;
13690Sstevel@tonic-gate 	ldi_ident_t		li;
13700Sstevel@tonic-gate 	major_t			major;
13710Sstevel@tonic-gate 	int			ret;
13720Sstevel@tonic-gate 
13730Sstevel@tonic-gate 	/* if the lower stream is not a device then return */
13740Sstevel@tonic-gate 	if (!vn_matchops(vp, spec_getvnodeops()))
13750Sstevel@tonic-gate 		return;
13760Sstevel@tonic-gate 
13770Sstevel@tonic-gate 	ASSERT(!servicing_interrupt());
13780Sstevel@tonic-gate 	ASSERT((type == LINKNORMAL) || (type == LINKPERSIST));
13790Sstevel@tonic-gate 
13800Sstevel@tonic-gate 	LDI_STREAMS_LNK((CE_NOTE, "%s: unlinking streams "
13814582Scth 	    "stp=0x%p, fpdown=0x%p", "ldi_munlink_fp",
13824582Scth 	    (void *)stp, (void *)fpdown));
13830Sstevel@tonic-gate 
13840Sstevel@tonic-gate 	/*
13850Sstevel@tonic-gate 	 * NOTE: here we rely on the streams subsystem not allowing
13860Sstevel@tonic-gate 	 * a stream to be multiplexed more than once.  if this
13870Sstevel@tonic-gate 	 * changes, we break.
13880Sstevel@tonic-gate 	 *
13890Sstevel@tonic-gate 	 * mark the snode/stream as not multiplexed
13900Sstevel@tonic-gate 	 */
13910Sstevel@tonic-gate 	sp = VTOS(vp);
13920Sstevel@tonic-gate 	mutex_enter(&sp->s_lock);
13930Sstevel@tonic-gate 	ASSERT(sp->s_flag & SMUXED);
13940Sstevel@tonic-gate 	sp->s_flag &= ~SMUXED;
13950Sstevel@tonic-gate 	mutex_exit(&sp->s_lock);
13960Sstevel@tonic-gate 
13970Sstevel@tonic-gate 	/*
13980Sstevel@tonic-gate 	 * clear the owner for this snode
13990Sstevel@tonic-gate 	 * see the comment in ldi_mlink_fp() for information about how
14000Sstevel@tonic-gate 	 * the ident is allocated
14010Sstevel@tonic-gate 	 */
14020Sstevel@tonic-gate 	if (type == LINKNORMAL) {
14030Sstevel@tonic-gate 		ret = ldi_ident_from_stream(getendq(stp->sd_wrq), &li);
14040Sstevel@tonic-gate 	} else {
14050Sstevel@tonic-gate 		ASSERT(type == LINKPERSIST);
14060Sstevel@tonic-gate 		major = getmajor(stp->sd_vnode->v_rdev);
14070Sstevel@tonic-gate 		ret = ldi_ident_from_major(major, &li);
14080Sstevel@tonic-gate 	}
14090Sstevel@tonic-gate 
14100Sstevel@tonic-gate 	ASSERT(ret == 0);
14110Sstevel@tonic-gate 	lhp = handle_find(vp, (struct ldi_ident *)li);
14120Sstevel@tonic-gate 	handle_release(lhp);
14130Sstevel@tonic-gate 	ldi_ident_release(li);
14140Sstevel@tonic-gate }
14150Sstevel@tonic-gate 
14160Sstevel@tonic-gate /*
14170Sstevel@tonic-gate  * LDI Consolidation private interfaces
14180Sstevel@tonic-gate  */
14190Sstevel@tonic-gate int
14200Sstevel@tonic-gate ldi_ident_from_mod(struct modlinkage *modlp, ldi_ident_t *lip)
14210Sstevel@tonic-gate {
14220Sstevel@tonic-gate 	struct modctl		*modp;
14230Sstevel@tonic-gate 	major_t			major;
14240Sstevel@tonic-gate 	char			*name;
14250Sstevel@tonic-gate 
14260Sstevel@tonic-gate 	if ((modlp == NULL) || (lip == NULL))
14270Sstevel@tonic-gate 		return (EINVAL);
14280Sstevel@tonic-gate 
14290Sstevel@tonic-gate 	ASSERT(!servicing_interrupt());
14300Sstevel@tonic-gate 
14310Sstevel@tonic-gate 	modp = mod_getctl(modlp);
14320Sstevel@tonic-gate 	if (modp == NULL)
14330Sstevel@tonic-gate 		return (EINVAL);
14340Sstevel@tonic-gate 	name = modp->mod_modname;
14350Sstevel@tonic-gate 	if (name == NULL)
14360Sstevel@tonic-gate 		return (EINVAL);
14370Sstevel@tonic-gate 	major = mod_name_to_major(name);
14380Sstevel@tonic-gate 
14390Sstevel@tonic-gate 	*lip = (ldi_ident_t)ident_alloc(name, NULL, DDI_DEV_T_NONE, major);
14400Sstevel@tonic-gate 
14410Sstevel@tonic-gate 	LDI_ALLOCFREE((CE_WARN, "%s: li=0x%p, mod=%s",
14424582Scth 	    "ldi_ident_from_mod", (void *)*lip, name));
14430Sstevel@tonic-gate 
14440Sstevel@tonic-gate 	return (0);
14450Sstevel@tonic-gate }
14460Sstevel@tonic-gate 
14470Sstevel@tonic-gate ldi_ident_t
14480Sstevel@tonic-gate ldi_ident_from_anon()
14490Sstevel@tonic-gate {
14500Sstevel@tonic-gate 	ldi_ident_t	lip;
14510Sstevel@tonic-gate 
14520Sstevel@tonic-gate 	ASSERT(!servicing_interrupt());
14530Sstevel@tonic-gate 
14540Sstevel@tonic-gate 	lip = (ldi_ident_t)ident_alloc("genunix", NULL, DDI_DEV_T_NONE, -1);
14550Sstevel@tonic-gate 
14560Sstevel@tonic-gate 	LDI_ALLOCFREE((CE_WARN, "%s: li=0x%p, mod=%s",
14574582Scth 	    "ldi_ident_from_anon", (void *)lip, "genunix"));
14580Sstevel@tonic-gate 
14590Sstevel@tonic-gate 	return (lip);
14600Sstevel@tonic-gate }
14610Sstevel@tonic-gate 
14620Sstevel@tonic-gate 
14630Sstevel@tonic-gate /*
14640Sstevel@tonic-gate  * LDI Public interfaces
14650Sstevel@tonic-gate  */
14660Sstevel@tonic-gate int
14670Sstevel@tonic-gate ldi_ident_from_stream(struct queue *sq, ldi_ident_t *lip)
14680Sstevel@tonic-gate {
14690Sstevel@tonic-gate 	struct stdata		*stp;
14700Sstevel@tonic-gate 	dev_t			dev;
14710Sstevel@tonic-gate 	char			*name;
14720Sstevel@tonic-gate 
14730Sstevel@tonic-gate 	if ((sq == NULL) || (lip == NULL))
14740Sstevel@tonic-gate 		return (EINVAL);
14750Sstevel@tonic-gate 
14760Sstevel@tonic-gate 	ASSERT(!servicing_interrupt());
14770Sstevel@tonic-gate 
14780Sstevel@tonic-gate 	stp = sq->q_stream;
14790Sstevel@tonic-gate 	if (!vn_matchops(stp->sd_vnode, spec_getvnodeops()))
14800Sstevel@tonic-gate 		return (EINVAL);
14810Sstevel@tonic-gate 
14820Sstevel@tonic-gate 	dev = stp->sd_vnode->v_rdev;
14830Sstevel@tonic-gate 	name = mod_major_to_name(getmajor(dev));
14840Sstevel@tonic-gate 	if (name == NULL)
14850Sstevel@tonic-gate 		return (EINVAL);
14860Sstevel@tonic-gate 	*lip = (ldi_ident_t)ident_alloc(name, NULL, dev, -1);
14870Sstevel@tonic-gate 
14880Sstevel@tonic-gate 	LDI_ALLOCFREE((CE_WARN,
14894582Scth 	    "%s: li=0x%p, mod=%s, minor=0x%x, stp=0x%p",
14904582Scth 	    "ldi_ident_from_stream", (void *)*lip, name, getminor(dev),
14914582Scth 	    (void *)stp));
14920Sstevel@tonic-gate 
14930Sstevel@tonic-gate 	return (0);
14940Sstevel@tonic-gate }
14950Sstevel@tonic-gate 
14960Sstevel@tonic-gate int
14970Sstevel@tonic-gate ldi_ident_from_dev(dev_t dev, ldi_ident_t *lip)
14980Sstevel@tonic-gate {
14990Sstevel@tonic-gate 	char			*name;
15000Sstevel@tonic-gate 
15010Sstevel@tonic-gate 	if (lip == NULL)
15020Sstevel@tonic-gate 		return (EINVAL);
15030Sstevel@tonic-gate 
15040Sstevel@tonic-gate 	ASSERT(!servicing_interrupt());
15050Sstevel@tonic-gate 
15060Sstevel@tonic-gate 	name = mod_major_to_name(getmajor(dev));
15070Sstevel@tonic-gate 	if (name == NULL)
15080Sstevel@tonic-gate 		return (EINVAL);
15090Sstevel@tonic-gate 	*lip = (ldi_ident_t)ident_alloc(name, NULL, dev, -1);
15100Sstevel@tonic-gate 
15110Sstevel@tonic-gate 	LDI_ALLOCFREE((CE_WARN,
15124582Scth 	    "%s: li=0x%p, mod=%s, minor=0x%x",
15134582Scth 	    "ldi_ident_from_dev", (void *)*lip, name, getminor(dev)));
15140Sstevel@tonic-gate 
15150Sstevel@tonic-gate 	return (0);
15160Sstevel@tonic-gate }
15170Sstevel@tonic-gate 
15180Sstevel@tonic-gate int
15190Sstevel@tonic-gate ldi_ident_from_dip(dev_info_t *dip, ldi_ident_t *lip)
15200Sstevel@tonic-gate {
15210Sstevel@tonic-gate 	struct dev_info		*devi = (struct dev_info *)dip;
15220Sstevel@tonic-gate 	char			*name;
15230Sstevel@tonic-gate 
15240Sstevel@tonic-gate 	if ((dip == NULL) || (lip == NULL))
15250Sstevel@tonic-gate 		return (EINVAL);
15260Sstevel@tonic-gate 
15270Sstevel@tonic-gate 	ASSERT(!servicing_interrupt());
15280Sstevel@tonic-gate 
15290Sstevel@tonic-gate 	name = mod_major_to_name(devi->devi_major);
15300Sstevel@tonic-gate 	if (name == NULL)
15310Sstevel@tonic-gate 		return (EINVAL);
15320Sstevel@tonic-gate 	*lip = (ldi_ident_t)ident_alloc(name, dip, DDI_DEV_T_NONE, -1);
15330Sstevel@tonic-gate 
15340Sstevel@tonic-gate 	LDI_ALLOCFREE((CE_WARN,
15354582Scth 	    "%s: li=0x%p, mod=%s, dip=0x%p",
15364582Scth 	    "ldi_ident_from_dip", (void *)*lip, name, (void *)devi));
15370Sstevel@tonic-gate 
15380Sstevel@tonic-gate 	return (0);
15390Sstevel@tonic-gate }
15400Sstevel@tonic-gate 
15410Sstevel@tonic-gate int
15420Sstevel@tonic-gate ldi_ident_from_major(major_t major, ldi_ident_t *lip)
15430Sstevel@tonic-gate {
15440Sstevel@tonic-gate 	char			*name;
15450Sstevel@tonic-gate 
15460Sstevel@tonic-gate 	if (lip == NULL)
15470Sstevel@tonic-gate 		return (EINVAL);
15480Sstevel@tonic-gate 
15490Sstevel@tonic-gate 	ASSERT(!servicing_interrupt());
15500Sstevel@tonic-gate 
15510Sstevel@tonic-gate 	name = mod_major_to_name(major);
15520Sstevel@tonic-gate 	if (name == NULL)
15530Sstevel@tonic-gate 		return (EINVAL);
15540Sstevel@tonic-gate 	*lip = (ldi_ident_t)ident_alloc(name, NULL, DDI_DEV_T_NONE, major);
15550Sstevel@tonic-gate 
15560Sstevel@tonic-gate 	LDI_ALLOCFREE((CE_WARN,
15574582Scth 	    "%s: li=0x%p, mod=%s",
15584582Scth 	    "ldi_ident_from_major", (void *)*lip, name));
15590Sstevel@tonic-gate 
15600Sstevel@tonic-gate 	return (0);
15610Sstevel@tonic-gate }
15620Sstevel@tonic-gate 
15630Sstevel@tonic-gate void
15640Sstevel@tonic-gate ldi_ident_release(ldi_ident_t li)
15650Sstevel@tonic-gate {
15660Sstevel@tonic-gate 	struct ldi_ident	*ident = (struct ldi_ident *)li;
15670Sstevel@tonic-gate 	char			*name;
15680Sstevel@tonic-gate 
15690Sstevel@tonic-gate 	if (li == NULL)
15700Sstevel@tonic-gate 		return;
15710Sstevel@tonic-gate 
15720Sstevel@tonic-gate 	ASSERT(!servicing_interrupt());
15730Sstevel@tonic-gate 
15740Sstevel@tonic-gate 	name = ident->li_modname;
15750Sstevel@tonic-gate 
15760Sstevel@tonic-gate 	LDI_ALLOCFREE((CE_WARN,
15774582Scth 	    "%s: li=0x%p, mod=%s",
15784582Scth 	    "ldi_ident_release", (void *)li, name));
15790Sstevel@tonic-gate 
15800Sstevel@tonic-gate 	ident_release((struct ldi_ident *)li);
15810Sstevel@tonic-gate }
15820Sstevel@tonic-gate 
15830Sstevel@tonic-gate /* get a handle to a device by dev_t and otyp */
15840Sstevel@tonic-gate int
15850Sstevel@tonic-gate ldi_open_by_dev(dev_t *devp, int otyp, int flag, cred_t *cr,
15860Sstevel@tonic-gate     ldi_handle_t *lhp, ldi_ident_t li)
15870Sstevel@tonic-gate {
15880Sstevel@tonic-gate 	struct ldi_ident	*lip = (struct ldi_ident *)li;
15894582Scth 	int			ret;
15900Sstevel@tonic-gate 	vnode_t			*vp;
15910Sstevel@tonic-gate 
15920Sstevel@tonic-gate 	/* sanity check required input parameters */
15930Sstevel@tonic-gate 	if ((devp == NULL) || (!OTYP_VALID(otyp)) || (cr == NULL) ||
15940Sstevel@tonic-gate 	    (lhp == NULL) || (lip == NULL))
15950Sstevel@tonic-gate 		return (EINVAL);
15960Sstevel@tonic-gate 
15970Sstevel@tonic-gate 	ASSERT(!servicing_interrupt());
15980Sstevel@tonic-gate 
15990Sstevel@tonic-gate 	if ((ret = ldi_vp_from_dev(*devp, otyp, &vp)) != 0)
16000Sstevel@tonic-gate 		return (ret);
16010Sstevel@tonic-gate 
16020Sstevel@tonic-gate 	if ((ret = ldi_open_by_vp(&vp, flag, cr, lhp, lip)) == 0) {
16030Sstevel@tonic-gate 		*devp = vp->v_rdev;
16040Sstevel@tonic-gate 	}
16050Sstevel@tonic-gate 	VN_RELE(vp);
16060Sstevel@tonic-gate 
16070Sstevel@tonic-gate 	return (ret);
16080Sstevel@tonic-gate }
16090Sstevel@tonic-gate 
16100Sstevel@tonic-gate /* get a handle to a device by pathname */
16110Sstevel@tonic-gate int
16120Sstevel@tonic-gate ldi_open_by_name(char *pathname, int flag, cred_t *cr,
16130Sstevel@tonic-gate     ldi_handle_t *lhp, ldi_ident_t li)
16140Sstevel@tonic-gate {
16150Sstevel@tonic-gate 	struct ldi_ident	*lip = (struct ldi_ident *)li;
16164582Scth 	int			ret;
16170Sstevel@tonic-gate 	vnode_t			*vp;
16180Sstevel@tonic-gate 
16190Sstevel@tonic-gate 	/* sanity check required input parameters */
16200Sstevel@tonic-gate 	if ((pathname == NULL) || (*pathname != '/') ||
16210Sstevel@tonic-gate 	    (cr == NULL) || (lhp == NULL) || (lip == NULL))
16220Sstevel@tonic-gate 		return (EINVAL);
16230Sstevel@tonic-gate 
16240Sstevel@tonic-gate 	ASSERT(!servicing_interrupt());
16250Sstevel@tonic-gate 
16260Sstevel@tonic-gate 	if ((ret = ldi_vp_from_name(pathname, &vp)) != 0)
16270Sstevel@tonic-gate 		return (ret);
16280Sstevel@tonic-gate 
16290Sstevel@tonic-gate 	ret = ldi_open_by_vp(&vp, flag, cr, lhp, lip);
16300Sstevel@tonic-gate 	VN_RELE(vp);
16310Sstevel@tonic-gate 
16320Sstevel@tonic-gate 	return (ret);
16330Sstevel@tonic-gate }
16340Sstevel@tonic-gate 
16350Sstevel@tonic-gate /* get a handle to a device by devid and minor_name */
16360Sstevel@tonic-gate int
16370Sstevel@tonic-gate ldi_open_by_devid(ddi_devid_t devid, char *minor_name,
16380Sstevel@tonic-gate     int flag, cred_t *cr, ldi_handle_t *lhp, ldi_ident_t li)
16390Sstevel@tonic-gate {
16400Sstevel@tonic-gate 	struct ldi_ident	*lip = (struct ldi_ident *)li;
16410Sstevel@tonic-gate 	int			ret;
16420Sstevel@tonic-gate 	vnode_t			*vp;
16430Sstevel@tonic-gate 
16440Sstevel@tonic-gate 	/* sanity check required input parameters */
16450Sstevel@tonic-gate 	if ((minor_name == NULL) || (cr == NULL) ||
16460Sstevel@tonic-gate 	    (lhp == NULL) || (lip == NULL))
16470Sstevel@tonic-gate 		return (EINVAL);
16480Sstevel@tonic-gate 
16490Sstevel@tonic-gate 	ASSERT(!servicing_interrupt());
16500Sstevel@tonic-gate 
16510Sstevel@tonic-gate 	if ((ret = ldi_vp_from_devid(devid, minor_name, &vp)) != 0)
16520Sstevel@tonic-gate 		return (ret);
16530Sstevel@tonic-gate 
16540Sstevel@tonic-gate 	ret = ldi_open_by_vp(&vp, flag, cr, lhp, lip);
16550Sstevel@tonic-gate 	VN_RELE(vp);
16560Sstevel@tonic-gate 
16570Sstevel@tonic-gate 	return (ret);
16580Sstevel@tonic-gate }
16590Sstevel@tonic-gate 
16600Sstevel@tonic-gate int
16610Sstevel@tonic-gate ldi_close(ldi_handle_t lh, int flag, cred_t *cr)
16620Sstevel@tonic-gate {
16630Sstevel@tonic-gate 	struct ldi_handle	*handlep = (struct ldi_handle *)lh;
16640Sstevel@tonic-gate 	struct ldi_event	*lep;
16654582Scth 	int			err = 0;
16664845Svikram 	int			notify = 0;
16674845Svikram 	list_t			*listp;
16684845Svikram 	ldi_ev_callback_impl_t	*lecp;
16690Sstevel@tonic-gate 
16700Sstevel@tonic-gate 	if (lh == NULL)
16710Sstevel@tonic-gate 		return (EINVAL);
16720Sstevel@tonic-gate 
16730Sstevel@tonic-gate 	ASSERT(!servicing_interrupt());
16740Sstevel@tonic-gate 
16754845Svikram #ifdef	LDI_OBSOLETE_EVENT
16764845Svikram 
16770Sstevel@tonic-gate 	/*
16780Sstevel@tonic-gate 	 * Any event handlers should have been unregistered by the
16790Sstevel@tonic-gate 	 * time ldi_close() is called.  If they haven't then it's a
16800Sstevel@tonic-gate 	 * bug.
16810Sstevel@tonic-gate 	 *
16820Sstevel@tonic-gate 	 * In a debug kernel we'll panic to make the problem obvious.
16830Sstevel@tonic-gate 	 */
16840Sstevel@tonic-gate 	ASSERT(handlep->lh_events == NULL);
16850Sstevel@tonic-gate 
16860Sstevel@tonic-gate 	/*
16870Sstevel@tonic-gate 	 * On a production kernel we'll "do the right thing" (unregister
16880Sstevel@tonic-gate 	 * the event handlers) and then complain about having to do the
16890Sstevel@tonic-gate 	 * work ourselves.
16900Sstevel@tonic-gate 	 */
16910Sstevel@tonic-gate 	while ((lep = handlep->lh_events) != NULL) {
16920Sstevel@tonic-gate 		err = 1;
16930Sstevel@tonic-gate 		(void) ldi_remove_event_handler(lh, (ldi_callback_id_t)lep);
16940Sstevel@tonic-gate 	}
16950Sstevel@tonic-gate 	if (err) {
16960Sstevel@tonic-gate 		struct ldi_ident *lip = handlep->lh_ident;
16970Sstevel@tonic-gate 		ASSERT(lip != NULL);
16980Sstevel@tonic-gate 		cmn_err(CE_NOTE, "ldi err: %s "
16990Sstevel@tonic-gate 		    "failed to unregister layered event handlers before "
17000Sstevel@tonic-gate 		    "closing devices", lip->li_modname);
17010Sstevel@tonic-gate 	}
17024845Svikram #endif
17030Sstevel@tonic-gate 
17040Sstevel@tonic-gate 	/* do a layered close on the device */
17055331Samw 	err = VOP_CLOSE(handlep->lh_vp, flag | FKLYR, 1, (offset_t)0, cr, NULL);
17060Sstevel@tonic-gate 
17070Sstevel@tonic-gate 	LDI_OPENCLOSE((CE_WARN, "%s: lh=0x%p", "ldi close", (void *)lh));
17080Sstevel@tonic-gate 
17090Sstevel@tonic-gate 	/*
17104845Svikram 	 * Search the event callback list for callbacks with this
17114845Svikram 	 * handle. There are 2 cases
17124845Svikram 	 * 1. Called in the context of a notify. The handle consumer
17134845Svikram 	 *    is releasing its hold on the device to allow a reconfiguration
17144845Svikram 	 *    of the device. Simply NULL out the handle and the notify callback.
17154845Svikram 	 *    The finalize callback is still available so that the consumer
17164845Svikram 	 *    knows of the final disposition of the device.
17174845Svikram 	 * 2. Not called in the context of notify. NULL out the handle as well
17184845Svikram 	 *    as the notify and finalize callbacks. Since the consumer has
17194845Svikram 	 *    closed the handle, we assume it is not interested in the
17204845Svikram 	 *    notify and finalize callbacks.
17214845Svikram 	 */
17224845Svikram 	ldi_ev_lock();
17234845Svikram 
17244845Svikram 	if (handlep->lh_flags & LH_FLAGS_NOTIFY)
17254845Svikram 		notify = 1;
17264845Svikram 	listp = &ldi_ev_callback_list.le_head;
17274845Svikram 	for (lecp = list_head(listp); lecp; lecp = list_next(listp, lecp)) {
17284845Svikram 		if (lecp->lec_lhp != handlep)
17294845Svikram 			continue;
17304845Svikram 		lecp->lec_lhp = NULL;
17314845Svikram 		lecp->lec_notify = NULL;
17324845Svikram 		LDI_EVDBG((CE_NOTE, "ldi_close: NULLed lh and notify"));
17334845Svikram 		if (!notify) {
17344845Svikram 			LDI_EVDBG((CE_NOTE, "ldi_close: NULLed finalize"));
17354845Svikram 			lecp->lec_finalize = NULL;
17364845Svikram 		}
17374845Svikram 	}
17384845Svikram 
17394845Svikram 	if (notify)
17404845Svikram 		handlep->lh_flags &= ~LH_FLAGS_NOTIFY;
17414845Svikram 	ldi_ev_unlock();
17424845Svikram 
17434845Svikram 	/*
17440Sstevel@tonic-gate 	 * Free the handle even if the device close failed.  why?
17450Sstevel@tonic-gate 	 *
17460Sstevel@tonic-gate 	 * If the device close failed we can't really make assumptions
17470Sstevel@tonic-gate 	 * about the devices state so we shouldn't allow access to the
17480Sstevel@tonic-gate 	 * device via this handle any more.  If the device consumer wants
17490Sstevel@tonic-gate 	 * to access the device again they should open it again.
17500Sstevel@tonic-gate 	 *
17510Sstevel@tonic-gate 	 * This is the same way file/device close failures are handled
17520Sstevel@tonic-gate 	 * in other places like spec_close() and closeandsetf().
17530Sstevel@tonic-gate 	 */
17540Sstevel@tonic-gate 	handle_release(handlep);
17550Sstevel@tonic-gate 	return (err);
17560Sstevel@tonic-gate }
17570Sstevel@tonic-gate 
17580Sstevel@tonic-gate int
17590Sstevel@tonic-gate ldi_read(ldi_handle_t lh, struct uio *uiop, cred_t *credp)
17600Sstevel@tonic-gate {
17610Sstevel@tonic-gate 	struct ldi_handle	*handlep = (struct ldi_handle *)lh;
17620Sstevel@tonic-gate 	vnode_t			*vp;
17630Sstevel@tonic-gate 	dev_t			dev;
17640Sstevel@tonic-gate 	int			ret;
17650Sstevel@tonic-gate 
17660Sstevel@tonic-gate 	if (lh == NULL)
17670Sstevel@tonic-gate 		return (EINVAL);
17680Sstevel@tonic-gate 
17690Sstevel@tonic-gate 	vp = handlep->lh_vp;
17700Sstevel@tonic-gate 	dev = vp->v_rdev;
17710Sstevel@tonic-gate 	if (handlep->lh_type & LH_CBDEV) {
17720Sstevel@tonic-gate 		ret = cdev_read(dev, uiop, credp);
17730Sstevel@tonic-gate 	} else if (handlep->lh_type & LH_STREAM) {
17740Sstevel@tonic-gate 		ret = strread(vp, uiop, credp);
17750Sstevel@tonic-gate 	} else {
17760Sstevel@tonic-gate 		return (ENOTSUP);
17770Sstevel@tonic-gate 	}
17780Sstevel@tonic-gate 	return (ret);
17790Sstevel@tonic-gate }
17800Sstevel@tonic-gate 
17810Sstevel@tonic-gate int
17820Sstevel@tonic-gate ldi_write(ldi_handle_t lh, struct uio *uiop, cred_t *credp)
17830Sstevel@tonic-gate {
17840Sstevel@tonic-gate 	struct ldi_handle	*handlep = (struct ldi_handle *)lh;
17850Sstevel@tonic-gate 	vnode_t			*vp;
17860Sstevel@tonic-gate 	dev_t			dev;
17870Sstevel@tonic-gate 	int			ret;
17880Sstevel@tonic-gate 
17890Sstevel@tonic-gate 	if (lh == NULL)
17900Sstevel@tonic-gate 		return (EINVAL);
17910Sstevel@tonic-gate 
17920Sstevel@tonic-gate 	vp = handlep->lh_vp;
17930Sstevel@tonic-gate 	dev = vp->v_rdev;
17940Sstevel@tonic-gate 	if (handlep->lh_type & LH_CBDEV) {
17950Sstevel@tonic-gate 		ret = cdev_write(dev, uiop, credp);
17960Sstevel@tonic-gate 	} else if (handlep->lh_type & LH_STREAM) {
17970Sstevel@tonic-gate 		ret = strwrite(vp, uiop, credp);
17980Sstevel@tonic-gate 	} else {
17990Sstevel@tonic-gate 		return (ENOTSUP);
18000Sstevel@tonic-gate 	}
18010Sstevel@tonic-gate 	return (ret);
18020Sstevel@tonic-gate }
18030Sstevel@tonic-gate 
18040Sstevel@tonic-gate int
18050Sstevel@tonic-gate ldi_get_size(ldi_handle_t lh, uint64_t *sizep)
18060Sstevel@tonic-gate {
18074582Scth 	int			otyp;
18080Sstevel@tonic-gate 	uint_t			value;
18090Sstevel@tonic-gate 	int64_t			drv_prop64;
18100Sstevel@tonic-gate 	struct ldi_handle	*handlep = (struct ldi_handle *)lh;
18114582Scth 	uint_t			blksize;
18124582Scth 	int			blkshift;
18130Sstevel@tonic-gate 
18140Sstevel@tonic-gate 
18150Sstevel@tonic-gate 	if ((lh == NULL) || (sizep == NULL))
18160Sstevel@tonic-gate 		return (DDI_FAILURE);
18170Sstevel@tonic-gate 
18180Sstevel@tonic-gate 	if (handlep->lh_type & LH_STREAM)
18190Sstevel@tonic-gate 		return (DDI_FAILURE);
18200Sstevel@tonic-gate 
18210Sstevel@tonic-gate 	/*
18220Sstevel@tonic-gate 	 * Determine device type (char or block).
18230Sstevel@tonic-gate 	 * Character devices support Size/size
18240Sstevel@tonic-gate 	 * property value. Block devices may support
18250Sstevel@tonic-gate 	 * Nblocks/nblocks or Size/size property value.
18260Sstevel@tonic-gate 	 */
18270Sstevel@tonic-gate 	if ((ldi_get_otyp(lh, &otyp)) != 0)
18280Sstevel@tonic-gate 		return (DDI_FAILURE);
18290Sstevel@tonic-gate 
18300Sstevel@tonic-gate 	if (otyp == OTYP_BLK) {
18310Sstevel@tonic-gate 		if (ldi_prop_exists(lh,
18324582Scth 		    DDI_PROP_DONTPASS | DDI_PROP_NOTPROM, "Nblocks")) {
18330Sstevel@tonic-gate 
18340Sstevel@tonic-gate 			drv_prop64 = ldi_prop_get_int64(lh,
18350Sstevel@tonic-gate 			    DDI_PROP_DONTPASS | DDI_PROP_NOTPROM,
18360Sstevel@tonic-gate 			    "Nblocks", 0);
18374582Scth 			blksize = ldi_prop_get_int(lh,
18384582Scth 			    DDI_PROP_DONTPASS | DDI_PROP_NOTPROM,
18394582Scth 			    "blksize", DEV_BSIZE);
18404582Scth 			if (blksize == DEV_BSIZE)
18414582Scth 				blksize = ldi_prop_get_int(lh, LDI_DEV_T_ANY |
18424582Scth 				    DDI_PROP_DONTPASS | DDI_PROP_NOTPROM,
18434582Scth 				    "device-blksize", DEV_BSIZE);
18444582Scth 
18454582Scth 			/* blksize must be a power of two */
18464582Scth 			ASSERT(BIT_ONLYONESET(blksize));
18474582Scth 			blkshift = highbit(blksize) - 1;
18484582Scth 
18494582Scth 			/*
18504582Scth 			 * We don't support Nblocks values that don't have
18514582Scth 			 * an accurate uint64_t byte count representation.
18524582Scth 			 */
18534582Scth 			if ((uint64_t)drv_prop64 >= (UINT64_MAX >> blkshift))
18544582Scth 				return (DDI_FAILURE);
18554582Scth 
18564582Scth 			*sizep = (uint64_t)
18574582Scth 			    (((u_offset_t)drv_prop64) << blkshift);
18580Sstevel@tonic-gate 			return (DDI_SUCCESS);
18590Sstevel@tonic-gate 		}
18600Sstevel@tonic-gate 
18610Sstevel@tonic-gate 		if (ldi_prop_exists(lh,
18624582Scth 		    DDI_PROP_DONTPASS | DDI_PROP_NOTPROM, "nblocks")) {
18630Sstevel@tonic-gate 
18640Sstevel@tonic-gate 			value = ldi_prop_get_int(lh,
18650Sstevel@tonic-gate 			    DDI_PROP_DONTPASS | DDI_PROP_NOTPROM,
18660Sstevel@tonic-gate 			    "nblocks", 0);
18674582Scth 			blksize = ldi_prop_get_int(lh,
18684582Scth 			    DDI_PROP_DONTPASS | DDI_PROP_NOTPROM,
18694582Scth 			    "blksize", DEV_BSIZE);
18704582Scth 			if (blksize == DEV_BSIZE)
18714582Scth 				blksize = ldi_prop_get_int(lh, LDI_DEV_T_ANY |
18724582Scth 				    DDI_PROP_DONTPASS | DDI_PROP_NOTPROM,
18734582Scth 				    "device-blksize", DEV_BSIZE);
18744582Scth 
18754582Scth 			/* blksize must be a power of two */
18764582Scth 			ASSERT(BIT_ONLYONESET(blksize));
18774582Scth 			blkshift = highbit(blksize) - 1;
18784582Scth 
18794582Scth 			/*
18804582Scth 			 * We don't support nblocks values that don't have an
18814582Scth 			 * accurate uint64_t byte count representation.
18824582Scth 			 */
18834582Scth 			if ((uint64_t)value >= (UINT64_MAX >> blkshift))
18844582Scth 				return (DDI_FAILURE);
18854582Scth 
18864582Scth 			*sizep = (uint64_t)
18874582Scth 			    (((u_offset_t)value) << blkshift);
18880Sstevel@tonic-gate 			return (DDI_SUCCESS);
18890Sstevel@tonic-gate 		}
18900Sstevel@tonic-gate 	}
18910Sstevel@tonic-gate 
18920Sstevel@tonic-gate 	if (ldi_prop_exists(lh,
18934582Scth 	    DDI_PROP_DONTPASS | DDI_PROP_NOTPROM, "Size")) {
18940Sstevel@tonic-gate 
18950Sstevel@tonic-gate 		drv_prop64 = ldi_prop_get_int64(lh,
18960Sstevel@tonic-gate 		    DDI_PROP_DONTPASS | DDI_PROP_NOTPROM, "Size", 0);
18970Sstevel@tonic-gate 		*sizep = (uint64_t)drv_prop64;
18980Sstevel@tonic-gate 		return (DDI_SUCCESS);
18990Sstevel@tonic-gate 	}
19000Sstevel@tonic-gate 
19010Sstevel@tonic-gate 	if (ldi_prop_exists(lh,
19024582Scth 	    DDI_PROP_DONTPASS | DDI_PROP_NOTPROM, "size")) {
19030Sstevel@tonic-gate 
19040Sstevel@tonic-gate 		value = ldi_prop_get_int(lh,
19050Sstevel@tonic-gate 		    DDI_PROP_DONTPASS | DDI_PROP_NOTPROM, "size", 0);
19060Sstevel@tonic-gate 		*sizep = (uint64_t)value;
19070Sstevel@tonic-gate 		return (DDI_SUCCESS);
19080Sstevel@tonic-gate 	}
19090Sstevel@tonic-gate 
19100Sstevel@tonic-gate 	/* unable to determine device size */
19110Sstevel@tonic-gate 	return (DDI_FAILURE);
19120Sstevel@tonic-gate }
19130Sstevel@tonic-gate 
19140Sstevel@tonic-gate int
19150Sstevel@tonic-gate ldi_ioctl(ldi_handle_t lh, int cmd, intptr_t arg, int mode,
19160Sstevel@tonic-gate 	cred_t *cr, int *rvalp)
19170Sstevel@tonic-gate {
19180Sstevel@tonic-gate 	struct ldi_handle	*handlep = (struct ldi_handle *)lh;
19190Sstevel@tonic-gate 	vnode_t			*vp;
19200Sstevel@tonic-gate 	dev_t			dev;
19210Sstevel@tonic-gate 	int			ret, copymode;
19220Sstevel@tonic-gate 
19230Sstevel@tonic-gate 	if (lh == NULL)
19240Sstevel@tonic-gate 		return (EINVAL);
19250Sstevel@tonic-gate 
19260Sstevel@tonic-gate 	/*
19270Sstevel@tonic-gate 	 * if the data pointed to by arg is located in the kernel then
19280Sstevel@tonic-gate 	 * make sure the FNATIVE flag is set.
19290Sstevel@tonic-gate 	 */
19300Sstevel@tonic-gate 	if (mode & FKIOCTL)
19310Sstevel@tonic-gate 		mode = (mode & ~FMODELS) | FNATIVE | FKIOCTL;
19320Sstevel@tonic-gate 
19330Sstevel@tonic-gate 	vp = handlep->lh_vp;
19340Sstevel@tonic-gate 	dev = vp->v_rdev;
19350Sstevel@tonic-gate 	if (handlep->lh_type & LH_CBDEV) {
19360Sstevel@tonic-gate 		ret = cdev_ioctl(dev, cmd, arg, mode, cr, rvalp);
19370Sstevel@tonic-gate 	} else if (handlep->lh_type & LH_STREAM) {
19380Sstevel@tonic-gate 		copymode = (mode & FKIOCTL) ? K_TO_K : U_TO_K;
19390Sstevel@tonic-gate 
19400Sstevel@tonic-gate 		/*
19410Sstevel@tonic-gate 		 * if we get an I_PLINK from within the kernel the
19420Sstevel@tonic-gate 		 * arg is a layered handle pointer instead of
19430Sstevel@tonic-gate 		 * a file descriptor, so we translate this ioctl
19440Sstevel@tonic-gate 		 * into a private one that can handle this.
19450Sstevel@tonic-gate 		 */
19460Sstevel@tonic-gate 		if ((mode & FKIOCTL) && (cmd == I_PLINK))
19470Sstevel@tonic-gate 			cmd = _I_PLINK_LH;
19480Sstevel@tonic-gate 
19490Sstevel@tonic-gate 		ret = strioctl(vp, cmd, arg, mode, copymode, cr, rvalp);
19500Sstevel@tonic-gate 	} else {
19510Sstevel@tonic-gate 		return (ENOTSUP);
19520Sstevel@tonic-gate 	}
19530Sstevel@tonic-gate 
19540Sstevel@tonic-gate 	return (ret);
19550Sstevel@tonic-gate }
19560Sstevel@tonic-gate 
19570Sstevel@tonic-gate int
19580Sstevel@tonic-gate ldi_poll(ldi_handle_t lh, short events, int anyyet, short *reventsp,
19590Sstevel@tonic-gate     struct pollhead **phpp)
19600Sstevel@tonic-gate {
19610Sstevel@tonic-gate 	struct ldi_handle	*handlep = (struct ldi_handle *)lh;
19620Sstevel@tonic-gate 	vnode_t			*vp;
19630Sstevel@tonic-gate 	dev_t			dev;
19640Sstevel@tonic-gate 	int			ret;
19650Sstevel@tonic-gate 
19660Sstevel@tonic-gate 	if (lh == NULL)
19670Sstevel@tonic-gate 		return (EINVAL);
19680Sstevel@tonic-gate 
19690Sstevel@tonic-gate 	vp = handlep->lh_vp;
19700Sstevel@tonic-gate 	dev = vp->v_rdev;
19710Sstevel@tonic-gate 	if (handlep->lh_type & LH_CBDEV) {
19720Sstevel@tonic-gate 		ret = cdev_poll(dev, events, anyyet, reventsp, phpp);
19730Sstevel@tonic-gate 	} else if (handlep->lh_type & LH_STREAM) {
19740Sstevel@tonic-gate 		ret = strpoll(vp->v_stream, events, anyyet, reventsp, phpp);
19750Sstevel@tonic-gate 	} else {
19760Sstevel@tonic-gate 		return (ENOTSUP);
19770Sstevel@tonic-gate 	}
19780Sstevel@tonic-gate 
19790Sstevel@tonic-gate 	return (ret);
19800Sstevel@tonic-gate }
19810Sstevel@tonic-gate 
19820Sstevel@tonic-gate int
19830Sstevel@tonic-gate ldi_prop_op(ldi_handle_t lh, ddi_prop_op_t prop_op,
19840Sstevel@tonic-gate 	int flags, char *name, caddr_t valuep, int *length)
19850Sstevel@tonic-gate {
19860Sstevel@tonic-gate 	struct ldi_handle	*handlep = (struct ldi_handle *)lh;
19870Sstevel@tonic-gate 	dev_t			dev;
19880Sstevel@tonic-gate 	dev_info_t		*dip;
19890Sstevel@tonic-gate 	int			ret;
19900Sstevel@tonic-gate 	struct snode		*csp;
19910Sstevel@tonic-gate 
19920Sstevel@tonic-gate 	if ((lh == NULL) || (name == NULL) || (strlen(name) == 0))
19930Sstevel@tonic-gate 		return (DDI_PROP_INVAL_ARG);
19940Sstevel@tonic-gate 
19950Sstevel@tonic-gate 	if ((prop_op != PROP_LEN) && (valuep == NULL))
19960Sstevel@tonic-gate 		return (DDI_PROP_INVAL_ARG);
19970Sstevel@tonic-gate 
19980Sstevel@tonic-gate 	if (length == NULL)
19990Sstevel@tonic-gate 		return (DDI_PROP_INVAL_ARG);
20000Sstevel@tonic-gate 
20010Sstevel@tonic-gate 	/*
20020Sstevel@tonic-gate 	 * try to find the associated dip,
20030Sstevel@tonic-gate 	 * this places a hold on the driver
20040Sstevel@tonic-gate 	 */
20050Sstevel@tonic-gate 	dev = handlep->lh_vp->v_rdev;
20060Sstevel@tonic-gate 
20070Sstevel@tonic-gate 	csp = VTOCS(handlep->lh_vp);
20080Sstevel@tonic-gate 	mutex_enter(&csp->s_lock);
20090Sstevel@tonic-gate 	if ((dip = csp->s_dip) != NULL)
20100Sstevel@tonic-gate 		e_ddi_hold_devi(dip);
20110Sstevel@tonic-gate 	mutex_exit(&csp->s_lock);
20120Sstevel@tonic-gate 	if (dip == NULL)
20130Sstevel@tonic-gate 		dip = e_ddi_hold_devi_by_dev(dev, 0);
20140Sstevel@tonic-gate 
20150Sstevel@tonic-gate 	if (dip == NULL)
20160Sstevel@tonic-gate 		return (DDI_PROP_NOT_FOUND);
20170Sstevel@tonic-gate 
20180Sstevel@tonic-gate 	ret = i_ldi_prop_op(dev, dip, prop_op, flags, name, valuep, length);
20190Sstevel@tonic-gate 	ddi_release_devi(dip);
20200Sstevel@tonic-gate 
20210Sstevel@tonic-gate 	return (ret);
20220Sstevel@tonic-gate }
20230Sstevel@tonic-gate 
20240Sstevel@tonic-gate int
20250Sstevel@tonic-gate ldi_strategy(ldi_handle_t lh, struct buf *bp)
20260Sstevel@tonic-gate {
20270Sstevel@tonic-gate 	struct ldi_handle	*handlep = (struct ldi_handle *)lh;
20280Sstevel@tonic-gate 	dev_t			dev;
20290Sstevel@tonic-gate 
20300Sstevel@tonic-gate 	if ((lh == NULL) || (bp == NULL))
20310Sstevel@tonic-gate 		return (EINVAL);
20320Sstevel@tonic-gate 
20330Sstevel@tonic-gate 	/* this entry point is only supported for cb devices */
20340Sstevel@tonic-gate 	dev = handlep->lh_vp->v_rdev;
20350Sstevel@tonic-gate 	if (!(handlep->lh_type & LH_CBDEV))
20360Sstevel@tonic-gate 		return (ENOTSUP);
20370Sstevel@tonic-gate 
20380Sstevel@tonic-gate 	bp->b_edev = dev;
20390Sstevel@tonic-gate 	bp->b_dev = cmpdev(dev);
20400Sstevel@tonic-gate 	return (bdev_strategy(bp));
20410Sstevel@tonic-gate }
20420Sstevel@tonic-gate 
20430Sstevel@tonic-gate int
20440Sstevel@tonic-gate ldi_dump(ldi_handle_t lh, caddr_t addr, daddr_t blkno, int nblk)
20450Sstevel@tonic-gate {
20460Sstevel@tonic-gate 	struct ldi_handle	*handlep = (struct ldi_handle *)lh;
20470Sstevel@tonic-gate 	dev_t			dev;
20480Sstevel@tonic-gate 
20490Sstevel@tonic-gate 	if (lh == NULL)
20500Sstevel@tonic-gate 		return (EINVAL);
20510Sstevel@tonic-gate 
20520Sstevel@tonic-gate 	/* this entry point is only supported for cb devices */
20530Sstevel@tonic-gate 	dev = handlep->lh_vp->v_rdev;
20540Sstevel@tonic-gate 	if (!(handlep->lh_type & LH_CBDEV))
20550Sstevel@tonic-gate 		return (ENOTSUP);
20560Sstevel@tonic-gate 
20570Sstevel@tonic-gate 	return (bdev_dump(dev, addr, blkno, nblk));
20580Sstevel@tonic-gate }
20590Sstevel@tonic-gate 
20600Sstevel@tonic-gate int
20610Sstevel@tonic-gate ldi_devmap(ldi_handle_t lh, devmap_cookie_t dhp, offset_t off,
20620Sstevel@tonic-gate     size_t len, size_t *maplen, uint_t model)
20630Sstevel@tonic-gate {
20640Sstevel@tonic-gate 	struct ldi_handle	*handlep = (struct ldi_handle *)lh;
20650Sstevel@tonic-gate 	dev_t			dev;
20660Sstevel@tonic-gate 
20670Sstevel@tonic-gate 	if (lh == NULL)
20680Sstevel@tonic-gate 		return (EINVAL);
20690Sstevel@tonic-gate 
20700Sstevel@tonic-gate 	/* this entry point is only supported for cb devices */
20710Sstevel@tonic-gate 	dev = handlep->lh_vp->v_rdev;
20720Sstevel@tonic-gate 	if (!(handlep->lh_type & LH_CBDEV))
20730Sstevel@tonic-gate 		return (ENOTSUP);
20740Sstevel@tonic-gate 
20750Sstevel@tonic-gate 	return (cdev_devmap(dev, dhp, off, len, maplen, model));
20760Sstevel@tonic-gate }
20770Sstevel@tonic-gate 
20780Sstevel@tonic-gate int
20790Sstevel@tonic-gate ldi_aread(ldi_handle_t lh, struct aio_req *aio_reqp, cred_t *cr)
20800Sstevel@tonic-gate {
20810Sstevel@tonic-gate 	struct ldi_handle	*handlep = (struct ldi_handle *)lh;
20820Sstevel@tonic-gate 	dev_t			dev;
20830Sstevel@tonic-gate 	struct cb_ops		*cb;
20840Sstevel@tonic-gate 
20850Sstevel@tonic-gate 	if (lh == NULL)
20860Sstevel@tonic-gate 		return (EINVAL);
20870Sstevel@tonic-gate 
20880Sstevel@tonic-gate 	/* this entry point is only supported for cb devices */
20890Sstevel@tonic-gate 	if (!(handlep->lh_type & LH_CBDEV))
20900Sstevel@tonic-gate 		return (ENOTSUP);
20910Sstevel@tonic-gate 
20920Sstevel@tonic-gate 	/*
20930Sstevel@tonic-gate 	 * Kaio is only supported on block devices.
20940Sstevel@tonic-gate 	 */
20950Sstevel@tonic-gate 	dev = handlep->lh_vp->v_rdev;
20960Sstevel@tonic-gate 	cb = devopsp[getmajor(dev)]->devo_cb_ops;
20970Sstevel@tonic-gate 	if (cb->cb_strategy == nodev || cb->cb_strategy == NULL)
20980Sstevel@tonic-gate 		return (ENOTSUP);
20990Sstevel@tonic-gate 
21000Sstevel@tonic-gate 	if (cb->cb_aread == NULL)
21010Sstevel@tonic-gate 		return (ENOTSUP);
21020Sstevel@tonic-gate 
21030Sstevel@tonic-gate 	return (cb->cb_aread(dev, aio_reqp, cr));
21040Sstevel@tonic-gate }
21050Sstevel@tonic-gate 
21060Sstevel@tonic-gate int
21070Sstevel@tonic-gate ldi_awrite(ldi_handle_t lh, struct aio_req *aio_reqp, cred_t *cr)
21080Sstevel@tonic-gate {
21090Sstevel@tonic-gate 	struct ldi_handle	*handlep = (struct ldi_handle *)lh;
21100Sstevel@tonic-gate 	struct cb_ops		*cb;
21110Sstevel@tonic-gate 	dev_t			dev;
21120Sstevel@tonic-gate 
21130Sstevel@tonic-gate 	if (lh == NULL)
21140Sstevel@tonic-gate 		return (EINVAL);
21150Sstevel@tonic-gate 
21160Sstevel@tonic-gate 	/* this entry point is only supported for cb devices */
21170Sstevel@tonic-gate 	if (!(handlep->lh_type & LH_CBDEV))
21180Sstevel@tonic-gate 		return (ENOTSUP);
21190Sstevel@tonic-gate 
21200Sstevel@tonic-gate 	/*
21210Sstevel@tonic-gate 	 * Kaio is only supported on block devices.
21220Sstevel@tonic-gate 	 */
21230Sstevel@tonic-gate 	dev = handlep->lh_vp->v_rdev;
21240Sstevel@tonic-gate 	cb = devopsp[getmajor(dev)]->devo_cb_ops;
21250Sstevel@tonic-gate 	if (cb->cb_strategy == nodev || cb->cb_strategy == NULL)
21260Sstevel@tonic-gate 		return (ENOTSUP);
21270Sstevel@tonic-gate 
21280Sstevel@tonic-gate 	if (cb->cb_awrite == NULL)
21290Sstevel@tonic-gate 		return (ENOTSUP);
21300Sstevel@tonic-gate 
21310Sstevel@tonic-gate 	return (cb->cb_awrite(dev, aio_reqp, cr));
21320Sstevel@tonic-gate }
21330Sstevel@tonic-gate 
21340Sstevel@tonic-gate int
21350Sstevel@tonic-gate ldi_putmsg(ldi_handle_t lh, mblk_t *smp)
21360Sstevel@tonic-gate {
21370Sstevel@tonic-gate 	struct ldi_handle	*handlep = (struct ldi_handle *)lh;
21380Sstevel@tonic-gate 	int			ret;
21390Sstevel@tonic-gate 
21400Sstevel@tonic-gate 	if ((lh == NULL) || (smp == NULL))
21410Sstevel@tonic-gate 		return (EINVAL);
21420Sstevel@tonic-gate 
21430Sstevel@tonic-gate 	if (!(handlep->lh_type & LH_STREAM)) {
21440Sstevel@tonic-gate 		freemsg(smp);
21450Sstevel@tonic-gate 		return (ENOTSUP);
21460Sstevel@tonic-gate 	}
21470Sstevel@tonic-gate 
21488778SErik.Nordmark@Sun.COM 	/*
21498778SErik.Nordmark@Sun.COM 	 * If we don't have db_credp, set it. Note that we can not be called
21508778SErik.Nordmark@Sun.COM 	 * from interrupt context.
21518778SErik.Nordmark@Sun.COM 	 */
21528778SErik.Nordmark@Sun.COM 	if (msg_getcred(smp, NULL) == NULL)
21538778SErik.Nordmark@Sun.COM 		mblk_setcred(smp, CRED(), curproc->p_pid);
21548778SErik.Nordmark@Sun.COM 
21550Sstevel@tonic-gate 	/* Send message while honoring flow control */
21560Sstevel@tonic-gate 	ret = kstrputmsg(handlep->lh_vp, smp, NULL, 0, 0,
21574582Scth 	    MSG_BAND | MSG_HOLDSIG | MSG_IGNERROR, 0);
21580Sstevel@tonic-gate 
21590Sstevel@tonic-gate 	return (ret);
21600Sstevel@tonic-gate }
21610Sstevel@tonic-gate 
21620Sstevel@tonic-gate int
21630Sstevel@tonic-gate ldi_getmsg(ldi_handle_t lh, mblk_t **rmp, timestruc_t *timeo)
21640Sstevel@tonic-gate {
21650Sstevel@tonic-gate 	struct ldi_handle	*handlep = (struct ldi_handle *)lh;
21660Sstevel@tonic-gate 	clock_t			timout; /* milliseconds */
21670Sstevel@tonic-gate 	uchar_t			pri;
21680Sstevel@tonic-gate 	rval_t			rval;
21690Sstevel@tonic-gate 	int			ret, pflag;
21700Sstevel@tonic-gate 
21710Sstevel@tonic-gate 
21720Sstevel@tonic-gate 	if (lh == NULL)
21730Sstevel@tonic-gate 		return (EINVAL);
21740Sstevel@tonic-gate 
21750Sstevel@tonic-gate 	if (!(handlep->lh_type & LH_STREAM))
21760Sstevel@tonic-gate 		return (ENOTSUP);
21770Sstevel@tonic-gate 
21780Sstevel@tonic-gate 	/* Convert from nanoseconds to milliseconds */
21790Sstevel@tonic-gate 	if (timeo != NULL) {
21800Sstevel@tonic-gate 		timout = timeo->tv_sec * 1000 + timeo->tv_nsec / 1000000;
21810Sstevel@tonic-gate 		if (timout > INT_MAX)
21820Sstevel@tonic-gate 			return (EINVAL);
21830Sstevel@tonic-gate 	} else
21840Sstevel@tonic-gate 		timout = -1;
21850Sstevel@tonic-gate 
21860Sstevel@tonic-gate 	/* Wait for timeout millseconds for a message */
21870Sstevel@tonic-gate 	pflag = MSG_ANY;
21880Sstevel@tonic-gate 	pri = 0;
21890Sstevel@tonic-gate 	*rmp = NULL;
21900Sstevel@tonic-gate 	ret = kstrgetmsg(handlep->lh_vp,
21914582Scth 	    rmp, NULL, &pri, &pflag, timout, &rval);
21920Sstevel@tonic-gate 	return (ret);
21930Sstevel@tonic-gate }
21940Sstevel@tonic-gate 
21950Sstevel@tonic-gate int
21960Sstevel@tonic-gate ldi_get_dev(ldi_handle_t lh, dev_t *devp)
21970Sstevel@tonic-gate {
21980Sstevel@tonic-gate 	struct ldi_handle	*handlep = (struct ldi_handle *)lh;
21990Sstevel@tonic-gate 
22000Sstevel@tonic-gate 	if ((lh == NULL) || (devp == NULL))
22010Sstevel@tonic-gate 		return (EINVAL);
22020Sstevel@tonic-gate 
22030Sstevel@tonic-gate 	*devp = handlep->lh_vp->v_rdev;
22040Sstevel@tonic-gate 	return (0);
22050Sstevel@tonic-gate }
22060Sstevel@tonic-gate 
22070Sstevel@tonic-gate int
22080Sstevel@tonic-gate ldi_get_otyp(ldi_handle_t lh, int *otyp)
22090Sstevel@tonic-gate {
22100Sstevel@tonic-gate 	struct ldi_handle	*handlep = (struct ldi_handle *)lh;
22110Sstevel@tonic-gate 
22120Sstevel@tonic-gate 	if ((lh == NULL) || (otyp == NULL))
22130Sstevel@tonic-gate 		return (EINVAL);
22140Sstevel@tonic-gate 
22150Sstevel@tonic-gate 	*otyp = VTYP_TO_OTYP(handlep->lh_vp->v_type);
22160Sstevel@tonic-gate 	return (0);
22170Sstevel@tonic-gate }
22180Sstevel@tonic-gate 
22190Sstevel@tonic-gate int
22200Sstevel@tonic-gate ldi_get_devid(ldi_handle_t lh, ddi_devid_t *devid)
22210Sstevel@tonic-gate {
22220Sstevel@tonic-gate 	struct ldi_handle	*handlep = (struct ldi_handle *)lh;
22230Sstevel@tonic-gate 	int			ret;
22240Sstevel@tonic-gate 	dev_t			dev;
22250Sstevel@tonic-gate 
22260Sstevel@tonic-gate 	if ((lh == NULL) || (devid == NULL))
22270Sstevel@tonic-gate 		return (EINVAL);
22280Sstevel@tonic-gate 
22290Sstevel@tonic-gate 	dev = handlep->lh_vp->v_rdev;
22300Sstevel@tonic-gate 
22310Sstevel@tonic-gate 	ret = ddi_lyr_get_devid(dev, devid);
22320Sstevel@tonic-gate 	if (ret != DDI_SUCCESS)
22330Sstevel@tonic-gate 		return (ENOTSUP);
22340Sstevel@tonic-gate 
22350Sstevel@tonic-gate 	return (0);
22360Sstevel@tonic-gate }
22370Sstevel@tonic-gate 
22380Sstevel@tonic-gate int
22390Sstevel@tonic-gate ldi_get_minor_name(ldi_handle_t lh, char **minor_name)
22400Sstevel@tonic-gate {
22410Sstevel@tonic-gate 	struct ldi_handle	*handlep = (struct ldi_handle *)lh;
22420Sstevel@tonic-gate 	int			ret, otyp;
22430Sstevel@tonic-gate 	dev_t			dev;
22440Sstevel@tonic-gate 
22450Sstevel@tonic-gate 	if ((lh == NULL) || (minor_name == NULL))
22460Sstevel@tonic-gate 		return (EINVAL);
22470Sstevel@tonic-gate 
22480Sstevel@tonic-gate 	dev = handlep->lh_vp->v_rdev;
22490Sstevel@tonic-gate 	otyp = VTYP_TO_OTYP(handlep->lh_vp->v_type);
22500Sstevel@tonic-gate 
22510Sstevel@tonic-gate 	ret = ddi_lyr_get_minor_name(dev, OTYP_TO_STYP(otyp), minor_name);
22520Sstevel@tonic-gate 	if (ret != DDI_SUCCESS)
22530Sstevel@tonic-gate 		return (ENOTSUP);
22540Sstevel@tonic-gate 
22550Sstevel@tonic-gate 	return (0);
22560Sstevel@tonic-gate }
22570Sstevel@tonic-gate 
22580Sstevel@tonic-gate int
22590Sstevel@tonic-gate ldi_prop_lookup_int_array(ldi_handle_t lh,
22600Sstevel@tonic-gate     uint_t flags, char *name, int **data, uint_t *nelements)
22610Sstevel@tonic-gate {
22620Sstevel@tonic-gate 	struct ldi_handle	*handlep = (struct ldi_handle *)lh;
22630Sstevel@tonic-gate 	dev_info_t		*dip;
22640Sstevel@tonic-gate 	dev_t			dev;
22650Sstevel@tonic-gate 	int			res;
22660Sstevel@tonic-gate 	struct snode		*csp;
22670Sstevel@tonic-gate 
22680Sstevel@tonic-gate 	if ((lh == NULL) || (name == NULL) || (strlen(name) == 0))
22690Sstevel@tonic-gate 		return (DDI_PROP_INVAL_ARG);
22700Sstevel@tonic-gate 
22710Sstevel@tonic-gate 	dev = handlep->lh_vp->v_rdev;
22720Sstevel@tonic-gate 
22730Sstevel@tonic-gate 	csp = VTOCS(handlep->lh_vp);
22740Sstevel@tonic-gate 	mutex_enter(&csp->s_lock);
22750Sstevel@tonic-gate 	if ((dip = csp->s_dip) != NULL)
22760Sstevel@tonic-gate 		e_ddi_hold_devi(dip);
22770Sstevel@tonic-gate 	mutex_exit(&csp->s_lock);
22780Sstevel@tonic-gate 	if (dip == NULL)
22790Sstevel@tonic-gate 		dip = e_ddi_hold_devi_by_dev(dev, 0);
22800Sstevel@tonic-gate 
22810Sstevel@tonic-gate 	if (dip == NULL) {
22820Sstevel@tonic-gate 		flags |= DDI_UNBND_DLPI2;
22830Sstevel@tonic-gate 	} else if (flags & LDI_DEV_T_ANY) {
22840Sstevel@tonic-gate 		flags &= ~LDI_DEV_T_ANY;
22850Sstevel@tonic-gate 		dev = DDI_DEV_T_ANY;
22860Sstevel@tonic-gate 	}
22870Sstevel@tonic-gate 
22880Sstevel@tonic-gate 	if (dip != NULL) {
22890Sstevel@tonic-gate 		int *prop_val, prop_len;
22900Sstevel@tonic-gate 
22910Sstevel@tonic-gate 		res = i_ldi_prop_op_typed(dev, dip, flags, name,
22920Sstevel@tonic-gate 		    (caddr_t *)&prop_val, &prop_len, sizeof (int));
22930Sstevel@tonic-gate 
22940Sstevel@tonic-gate 		/* if we got it then return it */
22950Sstevel@tonic-gate 		if (res == DDI_PROP_SUCCESS) {
22960Sstevel@tonic-gate 			*nelements = prop_len / sizeof (int);
22970Sstevel@tonic-gate 			*data = prop_val;
22980Sstevel@tonic-gate 
22990Sstevel@tonic-gate 			ddi_release_devi(dip);
23000Sstevel@tonic-gate 			return (res);
23010Sstevel@tonic-gate 		}
23020Sstevel@tonic-gate 	}
23030Sstevel@tonic-gate 
23040Sstevel@tonic-gate 	/* call the normal property interfaces */
23050Sstevel@tonic-gate 	res = ddi_prop_lookup_int_array(dev, dip, flags,
23060Sstevel@tonic-gate 	    name, data, nelements);
23070Sstevel@tonic-gate 
23080Sstevel@tonic-gate 	if (dip != NULL)
23090Sstevel@tonic-gate 		ddi_release_devi(dip);
23100Sstevel@tonic-gate 
23110Sstevel@tonic-gate 	return (res);
23120Sstevel@tonic-gate }
23130Sstevel@tonic-gate 
23140Sstevel@tonic-gate int
23150Sstevel@tonic-gate ldi_prop_lookup_int64_array(ldi_handle_t lh,
23160Sstevel@tonic-gate     uint_t flags, char *name, int64_t **data, uint_t *nelements)
23170Sstevel@tonic-gate {
23180Sstevel@tonic-gate 	struct ldi_handle	*handlep = (struct ldi_handle *)lh;
23190Sstevel@tonic-gate 	dev_info_t		*dip;
23200Sstevel@tonic-gate 	dev_t			dev;
23210Sstevel@tonic-gate 	int			res;
23220Sstevel@tonic-gate 	struct snode		*csp;
23230Sstevel@tonic-gate 
23240Sstevel@tonic-gate 	if ((lh == NULL) || (name == NULL) || (strlen(name) == 0))
23250Sstevel@tonic-gate 		return (DDI_PROP_INVAL_ARG);
23260Sstevel@tonic-gate 
23270Sstevel@tonic-gate 	dev = handlep->lh_vp->v_rdev;
23280Sstevel@tonic-gate 
23290Sstevel@tonic-gate 	csp = VTOCS(handlep->lh_vp);
23300Sstevel@tonic-gate 	mutex_enter(&csp->s_lock);
23310Sstevel@tonic-gate 	if ((dip = csp->s_dip) != NULL)
23320Sstevel@tonic-gate 		e_ddi_hold_devi(dip);
23330Sstevel@tonic-gate 	mutex_exit(&csp->s_lock);
23340Sstevel@tonic-gate 	if (dip == NULL)
23350Sstevel@tonic-gate 		dip = e_ddi_hold_devi_by_dev(dev, 0);
23360Sstevel@tonic-gate 
23370Sstevel@tonic-gate 	if (dip == NULL) {
23380Sstevel@tonic-gate 		flags |= DDI_UNBND_DLPI2;
23390Sstevel@tonic-gate 	} else if (flags & LDI_DEV_T_ANY) {
23400Sstevel@tonic-gate 		flags &= ~LDI_DEV_T_ANY;
23410Sstevel@tonic-gate 		dev = DDI_DEV_T_ANY;
23420Sstevel@tonic-gate 	}
23430Sstevel@tonic-gate 
23440Sstevel@tonic-gate 	if (dip != NULL) {
23450Sstevel@tonic-gate 		int64_t	*prop_val;
23460Sstevel@tonic-gate 		int	prop_len;
23470Sstevel@tonic-gate 
23480Sstevel@tonic-gate 		res = i_ldi_prop_op_typed(dev, dip, flags, name,
23490Sstevel@tonic-gate 		    (caddr_t *)&prop_val, &prop_len, sizeof (int64_t));
23500Sstevel@tonic-gate 
23510Sstevel@tonic-gate 		/* if we got it then return it */
23520Sstevel@tonic-gate 		if (res == DDI_PROP_SUCCESS) {
23530Sstevel@tonic-gate 			*nelements = prop_len / sizeof (int64_t);
23540Sstevel@tonic-gate 			*data = prop_val;
23550Sstevel@tonic-gate 
23560Sstevel@tonic-gate 			ddi_release_devi(dip);
23570Sstevel@tonic-gate 			return (res);
23580Sstevel@tonic-gate 		}
23590Sstevel@tonic-gate 	}
23600Sstevel@tonic-gate 
23610Sstevel@tonic-gate 	/* call the normal property interfaces */
23620Sstevel@tonic-gate 	res = ddi_prop_lookup_int64_array(dev, dip, flags,
23630Sstevel@tonic-gate 	    name, data, nelements);
23640Sstevel@tonic-gate 
23650Sstevel@tonic-gate 	if (dip != NULL)
23660Sstevel@tonic-gate 		ddi_release_devi(dip);
23670Sstevel@tonic-gate 
23680Sstevel@tonic-gate 	return (res);
23690Sstevel@tonic-gate }
23700Sstevel@tonic-gate 
23710Sstevel@tonic-gate int
23720Sstevel@tonic-gate ldi_prop_lookup_string_array(ldi_handle_t lh,
23730Sstevel@tonic-gate     uint_t flags, char *name, char ***data, uint_t *nelements)
23740Sstevel@tonic-gate {
23750Sstevel@tonic-gate 	struct ldi_handle	*handlep = (struct ldi_handle *)lh;
23760Sstevel@tonic-gate 	dev_info_t		*dip;
23770Sstevel@tonic-gate 	dev_t			dev;
23780Sstevel@tonic-gate 	int			res;
23790Sstevel@tonic-gate 	struct snode		*csp;
23800Sstevel@tonic-gate 
23810Sstevel@tonic-gate 	if ((lh == NULL) || (name == NULL) || (strlen(name) == 0))
23820Sstevel@tonic-gate 		return (DDI_PROP_INVAL_ARG);
23830Sstevel@tonic-gate 
23840Sstevel@tonic-gate 	dev = handlep->lh_vp->v_rdev;
23850Sstevel@tonic-gate 
23860Sstevel@tonic-gate 	csp = VTOCS(handlep->lh_vp);
23870Sstevel@tonic-gate 	mutex_enter(&csp->s_lock);
23880Sstevel@tonic-gate 	if ((dip = csp->s_dip) != NULL)
23890Sstevel@tonic-gate 		e_ddi_hold_devi(dip);
23900Sstevel@tonic-gate 	mutex_exit(&csp->s_lock);
23910Sstevel@tonic-gate 	if (dip == NULL)
23920Sstevel@tonic-gate 		dip = e_ddi_hold_devi_by_dev(dev, 0);
23930Sstevel@tonic-gate 
23940Sstevel@tonic-gate 	if (dip == NULL) {
23950Sstevel@tonic-gate 		flags |= DDI_UNBND_DLPI2;
23960Sstevel@tonic-gate 	} else if (flags & LDI_DEV_T_ANY) {
23970Sstevel@tonic-gate 		flags &= ~LDI_DEV_T_ANY;
23980Sstevel@tonic-gate 		dev = DDI_DEV_T_ANY;
23990Sstevel@tonic-gate 	}
24000Sstevel@tonic-gate 
24010Sstevel@tonic-gate 	if (dip != NULL) {
24020Sstevel@tonic-gate 		char	*prop_val;
24030Sstevel@tonic-gate 		int	prop_len;
24040Sstevel@tonic-gate 
24050Sstevel@tonic-gate 		res = i_ldi_prop_op_typed(dev, dip, flags, name,
24060Sstevel@tonic-gate 		    (caddr_t *)&prop_val, &prop_len, 0);
24070Sstevel@tonic-gate 
24080Sstevel@tonic-gate 		/* if we got it then return it */
24090Sstevel@tonic-gate 		if (res == DDI_PROP_SUCCESS) {
24100Sstevel@tonic-gate 			char	**str_array;
24110Sstevel@tonic-gate 			int	nelem;
24120Sstevel@tonic-gate 
24130Sstevel@tonic-gate 			/*
24140Sstevel@tonic-gate 			 * pack the returned string array into the format
24150Sstevel@tonic-gate 			 * our callers expect
24160Sstevel@tonic-gate 			 */
24170Sstevel@tonic-gate 			if (i_pack_string_array(prop_val, prop_len,
24184582Scth 			    &str_array, &nelem) == 0) {
24190Sstevel@tonic-gate 
24200Sstevel@tonic-gate 				*data = str_array;
24210Sstevel@tonic-gate 				*nelements = nelem;
24220Sstevel@tonic-gate 
24230Sstevel@tonic-gate 				ddi_prop_free(prop_val);
24240Sstevel@tonic-gate 				ddi_release_devi(dip);
24250Sstevel@tonic-gate 				return (res);
24260Sstevel@tonic-gate 			}
24270Sstevel@tonic-gate 
24280Sstevel@tonic-gate 			/*
24290Sstevel@tonic-gate 			 * the format of the returned property must have
24300Sstevel@tonic-gate 			 * been bad so throw it out
24310Sstevel@tonic-gate 			 */
24320Sstevel@tonic-gate 			ddi_prop_free(prop_val);
24330Sstevel@tonic-gate 		}
24340Sstevel@tonic-gate 	}
24350Sstevel@tonic-gate 
24360Sstevel@tonic-gate 	/* call the normal property interfaces */
24370Sstevel@tonic-gate 	res = ddi_prop_lookup_string_array(dev, dip, flags,
24380Sstevel@tonic-gate 	    name, data, nelements);
24390Sstevel@tonic-gate 
24400Sstevel@tonic-gate 	if (dip != NULL)
24410Sstevel@tonic-gate 		ddi_release_devi(dip);
24420Sstevel@tonic-gate 
24430Sstevel@tonic-gate 	return (res);
24440Sstevel@tonic-gate }
24450Sstevel@tonic-gate 
24460Sstevel@tonic-gate int
24470Sstevel@tonic-gate ldi_prop_lookup_string(ldi_handle_t lh,
24480Sstevel@tonic-gate     uint_t flags, char *name, char **data)
24490Sstevel@tonic-gate {
24500Sstevel@tonic-gate 	struct ldi_handle	*handlep = (struct ldi_handle *)lh;
24510Sstevel@tonic-gate 	dev_info_t		*dip;
24520Sstevel@tonic-gate 	dev_t			dev;
24530Sstevel@tonic-gate 	int			res;
24540Sstevel@tonic-gate 	struct snode		*csp;
24550Sstevel@tonic-gate 
24560Sstevel@tonic-gate 	if ((lh == NULL) || (name == NULL) || (strlen(name) == 0))
24570Sstevel@tonic-gate 		return (DDI_PROP_INVAL_ARG);
24580Sstevel@tonic-gate 
24590Sstevel@tonic-gate 	dev = handlep->lh_vp->v_rdev;
24600Sstevel@tonic-gate 
24610Sstevel@tonic-gate 	csp = VTOCS(handlep->lh_vp);
24620Sstevel@tonic-gate 	mutex_enter(&csp->s_lock);
24630Sstevel@tonic-gate 	if ((dip = csp->s_dip) != NULL)
24640Sstevel@tonic-gate 		e_ddi_hold_devi(dip);
24650Sstevel@tonic-gate 	mutex_exit(&csp->s_lock);
24660Sstevel@tonic-gate 	if (dip == NULL)
24670Sstevel@tonic-gate 		dip = e_ddi_hold_devi_by_dev(dev, 0);
24680Sstevel@tonic-gate 
24690Sstevel@tonic-gate 	if (dip == NULL) {
24700Sstevel@tonic-gate 		flags |= DDI_UNBND_DLPI2;
24710Sstevel@tonic-gate 	} else if (flags & LDI_DEV_T_ANY) {
24720Sstevel@tonic-gate 		flags &= ~LDI_DEV_T_ANY;
24730Sstevel@tonic-gate 		dev = DDI_DEV_T_ANY;
24740Sstevel@tonic-gate 	}
24750Sstevel@tonic-gate 
24760Sstevel@tonic-gate 	if (dip != NULL) {
24770Sstevel@tonic-gate 		char	*prop_val;
24780Sstevel@tonic-gate 		int	prop_len;
24790Sstevel@tonic-gate 
24800Sstevel@tonic-gate 		res = i_ldi_prop_op_typed(dev, dip, flags, name,
24810Sstevel@tonic-gate 		    (caddr_t *)&prop_val, &prop_len, 0);
24820Sstevel@tonic-gate 
24830Sstevel@tonic-gate 		/* if we got it then return it */
24840Sstevel@tonic-gate 		if (res == DDI_PROP_SUCCESS) {
24850Sstevel@tonic-gate 			/*
24860Sstevel@tonic-gate 			 * sanity check the vaule returned.
24870Sstevel@tonic-gate 			 */
24880Sstevel@tonic-gate 			if (i_check_string(prop_val, prop_len)) {
24890Sstevel@tonic-gate 				ddi_prop_free(prop_val);
24900Sstevel@tonic-gate 			} else {
24910Sstevel@tonic-gate 				*data = prop_val;
24920Sstevel@tonic-gate 				ddi_release_devi(dip);
24930Sstevel@tonic-gate 				return (res);
24940Sstevel@tonic-gate 			}
24950Sstevel@tonic-gate 		}
24960Sstevel@tonic-gate 	}
24970Sstevel@tonic-gate 
24980Sstevel@tonic-gate 	/* call the normal property interfaces */
24990Sstevel@tonic-gate 	res = ddi_prop_lookup_string(dev, dip, flags, name, data);
25000Sstevel@tonic-gate 
25010Sstevel@tonic-gate 	if (dip != NULL)
25020Sstevel@tonic-gate 		ddi_release_devi(dip);
25030Sstevel@tonic-gate 
25040Sstevel@tonic-gate #ifdef DEBUG
25050Sstevel@tonic-gate 	if (res == DDI_PROP_SUCCESS) {
25060Sstevel@tonic-gate 		/*
25070Sstevel@tonic-gate 		 * keep ourselves honest
25080Sstevel@tonic-gate 		 * make sure the framework returns strings in the
25090Sstevel@tonic-gate 		 * same format as we're demanding from drivers.
25100Sstevel@tonic-gate 		 */
25110Sstevel@tonic-gate 		struct prop_driver_data	*pdd;
25120Sstevel@tonic-gate 		int			pdd_prop_size;
25130Sstevel@tonic-gate 
25140Sstevel@tonic-gate 		pdd = ((struct prop_driver_data *)(*data)) - 1;
25150Sstevel@tonic-gate 		pdd_prop_size = pdd->pdd_size -
25160Sstevel@tonic-gate 		    sizeof (struct prop_driver_data);
25170Sstevel@tonic-gate 		ASSERT(i_check_string(*data, pdd_prop_size) == 0);
25180Sstevel@tonic-gate 	}
25190Sstevel@tonic-gate #endif /* DEBUG */
25200Sstevel@tonic-gate 
25210Sstevel@tonic-gate 	return (res);
25220Sstevel@tonic-gate }
25230Sstevel@tonic-gate 
25240Sstevel@tonic-gate int
25250Sstevel@tonic-gate ldi_prop_lookup_byte_array(ldi_handle_t lh,
25260Sstevel@tonic-gate     uint_t flags, char *name, uchar_t **data, uint_t *nelements)
25270Sstevel@tonic-gate {
25280Sstevel@tonic-gate 	struct ldi_handle	*handlep = (struct ldi_handle *)lh;
25290Sstevel@tonic-gate 	dev_info_t		*dip;
25300Sstevel@tonic-gate 	dev_t			dev;
25310Sstevel@tonic-gate 	int			res;
25320Sstevel@tonic-gate 	struct snode		*csp;
25330Sstevel@tonic-gate 
25340Sstevel@tonic-gate 	if ((lh == NULL) || (name == NULL) || (strlen(name) == 0))
25350Sstevel@tonic-gate 		return (DDI_PROP_INVAL_ARG);
25360Sstevel@tonic-gate 
25370Sstevel@tonic-gate 	dev = handlep->lh_vp->v_rdev;
25380Sstevel@tonic-gate 
25390Sstevel@tonic-gate 	csp = VTOCS(handlep->lh_vp);
25400Sstevel@tonic-gate 	mutex_enter(&csp->s_lock);
25410Sstevel@tonic-gate 	if ((dip = csp->s_dip) != NULL)
25420Sstevel@tonic-gate 		e_ddi_hold_devi(dip);
25430Sstevel@tonic-gate 	mutex_exit(&csp->s_lock);
25440Sstevel@tonic-gate 	if (dip == NULL)
25450Sstevel@tonic-gate 		dip = e_ddi_hold_devi_by_dev(dev, 0);
25460Sstevel@tonic-gate 
25470Sstevel@tonic-gate 	if (dip == NULL) {
25480Sstevel@tonic-gate 		flags |= DDI_UNBND_DLPI2;
25490Sstevel@tonic-gate 	} else if (flags & LDI_DEV_T_ANY) {
25500Sstevel@tonic-gate 		flags &= ~LDI_DEV_T_ANY;
25510Sstevel@tonic-gate 		dev = DDI_DEV_T_ANY;
25520Sstevel@tonic-gate 	}
25530Sstevel@tonic-gate 
25540Sstevel@tonic-gate 	if (dip != NULL) {
25550Sstevel@tonic-gate 		uchar_t	*prop_val;
25560Sstevel@tonic-gate 		int	prop_len;
25570Sstevel@tonic-gate 
25580Sstevel@tonic-gate 		res = i_ldi_prop_op_typed(dev, dip, flags, name,
25590Sstevel@tonic-gate 		    (caddr_t *)&prop_val, &prop_len, sizeof (uchar_t));
25600Sstevel@tonic-gate 
25610Sstevel@tonic-gate 		/* if we got it then return it */
25620Sstevel@tonic-gate 		if (res == DDI_PROP_SUCCESS) {
25630Sstevel@tonic-gate 			*nelements = prop_len / sizeof (uchar_t);
25640Sstevel@tonic-gate 			*data = prop_val;
25650Sstevel@tonic-gate 
25660Sstevel@tonic-gate 			ddi_release_devi(dip);
25670Sstevel@tonic-gate 			return (res);
25680Sstevel@tonic-gate 		}
25690Sstevel@tonic-gate 	}
25700Sstevel@tonic-gate 
25710Sstevel@tonic-gate 	/* call the normal property interfaces */
25720Sstevel@tonic-gate 	res = ddi_prop_lookup_byte_array(dev, dip, flags,
25730Sstevel@tonic-gate 	    name, data, nelements);
25740Sstevel@tonic-gate 
25750Sstevel@tonic-gate 	if (dip != NULL)
25760Sstevel@tonic-gate 		ddi_release_devi(dip);
25770Sstevel@tonic-gate 
25780Sstevel@tonic-gate 	return (res);
25790Sstevel@tonic-gate }
25800Sstevel@tonic-gate 
25810Sstevel@tonic-gate int
25820Sstevel@tonic-gate ldi_prop_get_int(ldi_handle_t lh,
25830Sstevel@tonic-gate     uint_t flags, char *name, int defvalue)
25840Sstevel@tonic-gate {
25850Sstevel@tonic-gate 	struct ldi_handle	*handlep = (struct ldi_handle *)lh;
25860Sstevel@tonic-gate 	dev_info_t		*dip;
25870Sstevel@tonic-gate 	dev_t			dev;
25880Sstevel@tonic-gate 	int			res;
25890Sstevel@tonic-gate 	struct snode		*csp;
25900Sstevel@tonic-gate 
25910Sstevel@tonic-gate 	if ((lh == NULL) || (name == NULL) || (strlen(name) == 0))
25920Sstevel@tonic-gate 		return (defvalue);
25930Sstevel@tonic-gate 
25940Sstevel@tonic-gate 	dev = handlep->lh_vp->v_rdev;
25950Sstevel@tonic-gate 
25960Sstevel@tonic-gate 	csp = VTOCS(handlep->lh_vp);
25970Sstevel@tonic-gate 	mutex_enter(&csp->s_lock);
25980Sstevel@tonic-gate 	if ((dip = csp->s_dip) != NULL)
25990Sstevel@tonic-gate 		e_ddi_hold_devi(dip);
26000Sstevel@tonic-gate 	mutex_exit(&csp->s_lock);
26010Sstevel@tonic-gate 	if (dip == NULL)
26020Sstevel@tonic-gate 		dip = e_ddi_hold_devi_by_dev(dev, 0);
26030Sstevel@tonic-gate 
26040Sstevel@tonic-gate 	if (dip == NULL) {
26050Sstevel@tonic-gate 		flags |= DDI_UNBND_DLPI2;
26060Sstevel@tonic-gate 	} else if (flags & LDI_DEV_T_ANY) {
26070Sstevel@tonic-gate 		flags &= ~LDI_DEV_T_ANY;
26080Sstevel@tonic-gate 		dev = DDI_DEV_T_ANY;
26090Sstevel@tonic-gate 	}
26100Sstevel@tonic-gate 
26110Sstevel@tonic-gate 	if (dip != NULL) {
26120Sstevel@tonic-gate 		int	prop_val;
26130Sstevel@tonic-gate 		int	prop_len;
26140Sstevel@tonic-gate 
26150Sstevel@tonic-gate 		/*
26160Sstevel@tonic-gate 		 * first call the drivers prop_op interface to allow it
26170Sstevel@tonic-gate 		 * it to override default property values.
26180Sstevel@tonic-gate 		 */
26190Sstevel@tonic-gate 		prop_len = sizeof (int);
26200Sstevel@tonic-gate 		res = i_ldi_prop_op(dev, dip, PROP_LEN_AND_VAL_BUF,
26210Sstevel@tonic-gate 		    flags | DDI_PROP_DYNAMIC, name,
26220Sstevel@tonic-gate 		    (caddr_t)&prop_val, &prop_len);
26230Sstevel@tonic-gate 
26240Sstevel@tonic-gate 		/* if we got it then return it */
26250Sstevel@tonic-gate 		if ((res == DDI_PROP_SUCCESS) &&
26260Sstevel@tonic-gate 		    (prop_len == sizeof (int))) {
26270Sstevel@tonic-gate 			res = prop_val;
26280Sstevel@tonic-gate 			ddi_release_devi(dip);
26290Sstevel@tonic-gate 			return (res);
26300Sstevel@tonic-gate 		}
26310Sstevel@tonic-gate 	}
26320Sstevel@tonic-gate 
26330Sstevel@tonic-gate 	/* call the normal property interfaces */
26340Sstevel@tonic-gate 	res = ddi_prop_get_int(dev, dip, flags, name, defvalue);
26350Sstevel@tonic-gate 
26360Sstevel@tonic-gate 	if (dip != NULL)
26370Sstevel@tonic-gate 		ddi_release_devi(dip);
26380Sstevel@tonic-gate 
26390Sstevel@tonic-gate 	return (res);
26400Sstevel@tonic-gate }
26410Sstevel@tonic-gate 
26420Sstevel@tonic-gate int64_t
26430Sstevel@tonic-gate ldi_prop_get_int64(ldi_handle_t lh,
26440Sstevel@tonic-gate     uint_t flags, char *name, int64_t defvalue)
26450Sstevel@tonic-gate {
26460Sstevel@tonic-gate 	struct ldi_handle	*handlep = (struct ldi_handle *)lh;
26470Sstevel@tonic-gate 	dev_info_t		*dip;
26480Sstevel@tonic-gate 	dev_t			dev;
26490Sstevel@tonic-gate 	int64_t			res;
26500Sstevel@tonic-gate 	struct snode		*csp;
26510Sstevel@tonic-gate 
26520Sstevel@tonic-gate 	if ((lh == NULL) || (name == NULL) || (strlen(name) == 0))
26530Sstevel@tonic-gate 		return (defvalue);
26540Sstevel@tonic-gate 
26550Sstevel@tonic-gate 	dev = handlep->lh_vp->v_rdev;
26560Sstevel@tonic-gate 
26570Sstevel@tonic-gate 	csp = VTOCS(handlep->lh_vp);
26580Sstevel@tonic-gate 	mutex_enter(&csp->s_lock);
26590Sstevel@tonic-gate 	if ((dip = csp->s_dip) != NULL)
26600Sstevel@tonic-gate 		e_ddi_hold_devi(dip);
26610Sstevel@tonic-gate 	mutex_exit(&csp->s_lock);
26620Sstevel@tonic-gate 	if (dip == NULL)
26630Sstevel@tonic-gate 		dip = e_ddi_hold_devi_by_dev(dev, 0);
26640Sstevel@tonic-gate 
26650Sstevel@tonic-gate 	if (dip == NULL) {
26660Sstevel@tonic-gate 		flags |= DDI_UNBND_DLPI2;
26670Sstevel@tonic-gate 	} else if (flags & LDI_DEV_T_ANY) {
26680Sstevel@tonic-gate 		flags &= ~LDI_DEV_T_ANY;
26690Sstevel@tonic-gate 		dev = DDI_DEV_T_ANY;
26700Sstevel@tonic-gate 	}
26710Sstevel@tonic-gate 
26720Sstevel@tonic-gate 	if (dip != NULL) {
26730Sstevel@tonic-gate 		int64_t	prop_val;
26740Sstevel@tonic-gate 		int	prop_len;
26750Sstevel@tonic-gate 
26760Sstevel@tonic-gate 		/*
26770Sstevel@tonic-gate 		 * first call the drivers prop_op interface to allow it
26780Sstevel@tonic-gate 		 * it to override default property values.
26790Sstevel@tonic-gate 		 */
26800Sstevel@tonic-gate 		prop_len = sizeof (int64_t);
26810Sstevel@tonic-gate 		res = i_ldi_prop_op(dev, dip, PROP_LEN_AND_VAL_BUF,
26820Sstevel@tonic-gate 		    flags | DDI_PROP_DYNAMIC, name,
26830Sstevel@tonic-gate 		    (caddr_t)&prop_val, &prop_len);
26840Sstevel@tonic-gate 
26850Sstevel@tonic-gate 		/* if we got it then return it */
26860Sstevel@tonic-gate 		if ((res == DDI_PROP_SUCCESS) &&
26870Sstevel@tonic-gate 		    (prop_len == sizeof (int64_t))) {
26880Sstevel@tonic-gate 			res = prop_val;
26890Sstevel@tonic-gate 			ddi_release_devi(dip);
26900Sstevel@tonic-gate 			return (res);
26910Sstevel@tonic-gate 		}
26920Sstevel@tonic-gate 	}
26930Sstevel@tonic-gate 
26940Sstevel@tonic-gate 	/* call the normal property interfaces */
26950Sstevel@tonic-gate 	res = ddi_prop_get_int64(dev, dip, flags, name, defvalue);
26960Sstevel@tonic-gate 
26970Sstevel@tonic-gate 	if (dip != NULL)
26980Sstevel@tonic-gate 		ddi_release_devi(dip);
26990Sstevel@tonic-gate 
27000Sstevel@tonic-gate 	return (res);
27010Sstevel@tonic-gate }
27020Sstevel@tonic-gate 
27030Sstevel@tonic-gate int
27040Sstevel@tonic-gate ldi_prop_exists(ldi_handle_t lh, uint_t flags, char *name)
27050Sstevel@tonic-gate {
27060Sstevel@tonic-gate 	struct ldi_handle	*handlep = (struct ldi_handle *)lh;
27074582Scth 	dev_info_t		*dip;
27084582Scth 	dev_t			dev;
27090Sstevel@tonic-gate 	int			res, prop_len;
27100Sstevel@tonic-gate 	struct snode		*csp;
27110Sstevel@tonic-gate 
27120Sstevel@tonic-gate 	if ((lh == NULL) || (name == NULL) || (strlen(name) == 0))
27130Sstevel@tonic-gate 		return (0);
27140Sstevel@tonic-gate 
27150Sstevel@tonic-gate 	dev = handlep->lh_vp->v_rdev;
27160Sstevel@tonic-gate 
27170Sstevel@tonic-gate 	csp = VTOCS(handlep->lh_vp);
27180Sstevel@tonic-gate 	mutex_enter(&csp->s_lock);
27190Sstevel@tonic-gate 	if ((dip = csp->s_dip) != NULL)
27200Sstevel@tonic-gate 		e_ddi_hold_devi(dip);
27210Sstevel@tonic-gate 	mutex_exit(&csp->s_lock);
27220Sstevel@tonic-gate 	if (dip == NULL)
27230Sstevel@tonic-gate 		dip = e_ddi_hold_devi_by_dev(dev, 0);
27240Sstevel@tonic-gate 
27250Sstevel@tonic-gate 	/* if NULL dip, prop does NOT exist */
27260Sstevel@tonic-gate 	if (dip == NULL)
27270Sstevel@tonic-gate 		return (0);
27280Sstevel@tonic-gate 
27290Sstevel@tonic-gate 	if (flags & LDI_DEV_T_ANY) {
27300Sstevel@tonic-gate 		flags &= ~LDI_DEV_T_ANY;
27310Sstevel@tonic-gate 		dev = DDI_DEV_T_ANY;
27320Sstevel@tonic-gate 	}
27330Sstevel@tonic-gate 
27340Sstevel@tonic-gate 	/*
27350Sstevel@tonic-gate 	 * first call the drivers prop_op interface to allow it
27360Sstevel@tonic-gate 	 * it to override default property values.
27370Sstevel@tonic-gate 	 */
27380Sstevel@tonic-gate 	res = i_ldi_prop_op(dev, dip, PROP_LEN,
27390Sstevel@tonic-gate 	    flags | DDI_PROP_DYNAMIC, name, NULL, &prop_len);
27400Sstevel@tonic-gate 
27410Sstevel@tonic-gate 	if (res == DDI_PROP_SUCCESS) {
27420Sstevel@tonic-gate 		ddi_release_devi(dip);
27430Sstevel@tonic-gate 		return (1);
27440Sstevel@tonic-gate 	}
27450Sstevel@tonic-gate 
27460Sstevel@tonic-gate 	/* call the normal property interfaces */
27470Sstevel@tonic-gate 	res = ddi_prop_exists(dev, dip, flags, name);
27480Sstevel@tonic-gate 
27490Sstevel@tonic-gate 	ddi_release_devi(dip);
27500Sstevel@tonic-gate 	return (res);
27510Sstevel@tonic-gate }
27520Sstevel@tonic-gate 
27534845Svikram #ifdef	LDI_OBSOLETE_EVENT
27544845Svikram 
27550Sstevel@tonic-gate int
27560Sstevel@tonic-gate ldi_get_eventcookie(ldi_handle_t lh, char *name, ddi_eventcookie_t *ecp)
27570Sstevel@tonic-gate {
27580Sstevel@tonic-gate 	struct ldi_handle	*handlep = (struct ldi_handle *)lh;
27590Sstevel@tonic-gate 	dev_info_t		*dip;
27600Sstevel@tonic-gate 	dev_t			dev;
27610Sstevel@tonic-gate 	int			res;
27620Sstevel@tonic-gate 	struct snode		*csp;
27630Sstevel@tonic-gate 
27640Sstevel@tonic-gate 	if ((lh == NULL) || (name == NULL) ||
27650Sstevel@tonic-gate 	    (strlen(name) == 0) || (ecp == NULL)) {
27660Sstevel@tonic-gate 		return (DDI_FAILURE);
27670Sstevel@tonic-gate 	}
27680Sstevel@tonic-gate 
27690Sstevel@tonic-gate 	ASSERT(!servicing_interrupt());
27700Sstevel@tonic-gate 
27710Sstevel@tonic-gate 	dev = handlep->lh_vp->v_rdev;
27720Sstevel@tonic-gate 
27730Sstevel@tonic-gate 	csp = VTOCS(handlep->lh_vp);
27740Sstevel@tonic-gate 	mutex_enter(&csp->s_lock);
27750Sstevel@tonic-gate 	if ((dip = csp->s_dip) != NULL)
27760Sstevel@tonic-gate 		e_ddi_hold_devi(dip);
27770Sstevel@tonic-gate 	mutex_exit(&csp->s_lock);
27780Sstevel@tonic-gate 	if (dip == NULL)
27790Sstevel@tonic-gate 		dip = e_ddi_hold_devi_by_dev(dev, 0);
27800Sstevel@tonic-gate 
27810Sstevel@tonic-gate 	if (dip == NULL)
27820Sstevel@tonic-gate 		return (DDI_FAILURE);
27830Sstevel@tonic-gate 
27840Sstevel@tonic-gate 	LDI_EVENTCB((CE_NOTE, "%s: event_name=%s, "
27850Sstevel@tonic-gate 	    "dip=0x%p, event_cookiep=0x%p", "ldi_get_eventcookie",
27860Sstevel@tonic-gate 	    name, (void *)dip, (void *)ecp));
27870Sstevel@tonic-gate 
27880Sstevel@tonic-gate 	res = ddi_get_eventcookie(dip, name, ecp);
27890Sstevel@tonic-gate 
27900Sstevel@tonic-gate 	ddi_release_devi(dip);
27910Sstevel@tonic-gate 	return (res);
27920Sstevel@tonic-gate }
27930Sstevel@tonic-gate 
27940Sstevel@tonic-gate int
27950Sstevel@tonic-gate ldi_add_event_handler(ldi_handle_t lh, ddi_eventcookie_t ec,
27960Sstevel@tonic-gate     void (*handler)(ldi_handle_t, ddi_eventcookie_t, void *, void *),
27970Sstevel@tonic-gate     void *arg, ldi_callback_id_t *id)
27980Sstevel@tonic-gate {
27990Sstevel@tonic-gate 	struct ldi_handle	*handlep = (struct ldi_handle *)lh;
28000Sstevel@tonic-gate 	struct ldi_event	*lep;
28010Sstevel@tonic-gate 	dev_info_t		*dip;
28020Sstevel@tonic-gate 	dev_t			dev;
28030Sstevel@tonic-gate 	int			res;
28040Sstevel@tonic-gate 	struct snode		*csp;
28050Sstevel@tonic-gate 
28060Sstevel@tonic-gate 	if ((lh == NULL) || (ec == NULL) || (handler == NULL) || (id == NULL))
28070Sstevel@tonic-gate 		return (DDI_FAILURE);
28080Sstevel@tonic-gate 
28090Sstevel@tonic-gate 	ASSERT(!servicing_interrupt());
28100Sstevel@tonic-gate 
28110Sstevel@tonic-gate 	dev = handlep->lh_vp->v_rdev;
28120Sstevel@tonic-gate 
28130Sstevel@tonic-gate 	csp = VTOCS(handlep->lh_vp);
28140Sstevel@tonic-gate 	mutex_enter(&csp->s_lock);
28150Sstevel@tonic-gate 	if ((dip = csp->s_dip) != NULL)
28160Sstevel@tonic-gate 		e_ddi_hold_devi(dip);
28170Sstevel@tonic-gate 	mutex_exit(&csp->s_lock);
28180Sstevel@tonic-gate 	if (dip == NULL)
28190Sstevel@tonic-gate 		dip = e_ddi_hold_devi_by_dev(dev, 0);
28200Sstevel@tonic-gate 
28210Sstevel@tonic-gate 	if (dip == NULL)
28220Sstevel@tonic-gate 		return (DDI_FAILURE);
28230Sstevel@tonic-gate 
28240Sstevel@tonic-gate 	lep = kmem_zalloc(sizeof (struct ldi_event), KM_SLEEP);
28250Sstevel@tonic-gate 	lep->le_lhp = handlep;
28260Sstevel@tonic-gate 	lep->le_arg = arg;
28270Sstevel@tonic-gate 	lep->le_handler = handler;
28280Sstevel@tonic-gate 
28290Sstevel@tonic-gate 	if ((res = ddi_add_event_handler(dip, ec, i_ldi_callback,
28300Sstevel@tonic-gate 	    (void *)lep, &lep->le_id)) != DDI_SUCCESS) {
28310Sstevel@tonic-gate 		LDI_EVENTCB((CE_WARN, "%s: unable to add"
28320Sstevel@tonic-gate 		    "event callback", "ldi_add_event_handler"));
28330Sstevel@tonic-gate 		ddi_release_devi(dip);
28340Sstevel@tonic-gate 		kmem_free(lep, sizeof (struct ldi_event));
28350Sstevel@tonic-gate 		return (res);
28360Sstevel@tonic-gate 	}
28370Sstevel@tonic-gate 
28380Sstevel@tonic-gate 	*id = (ldi_callback_id_t)lep;
28390Sstevel@tonic-gate 
28400Sstevel@tonic-gate 	LDI_EVENTCB((CE_NOTE, "%s: dip=0x%p, event=0x%p, "
28410Sstevel@tonic-gate 	    "ldi_eventp=0x%p, cb_id=0x%p", "ldi_add_event_handler",
28420Sstevel@tonic-gate 	    (void *)dip, (void *)ec, (void *)lep, (void *)id));
28430Sstevel@tonic-gate 
28440Sstevel@tonic-gate 	handle_event_add(lep);
28450Sstevel@tonic-gate 	ddi_release_devi(dip);
28460Sstevel@tonic-gate 	return (res);
28470Sstevel@tonic-gate }
28480Sstevel@tonic-gate 
28490Sstevel@tonic-gate int
28500Sstevel@tonic-gate ldi_remove_event_handler(ldi_handle_t lh, ldi_callback_id_t id)
28510Sstevel@tonic-gate {
28520Sstevel@tonic-gate 	ldi_event_t		*lep = (ldi_event_t *)id;
28530Sstevel@tonic-gate 	int			res;
28540Sstevel@tonic-gate 
28550Sstevel@tonic-gate 	if ((lh == NULL) || (id == NULL))
28560Sstevel@tonic-gate 		return (DDI_FAILURE);
28570Sstevel@tonic-gate 
28580Sstevel@tonic-gate 	ASSERT(!servicing_interrupt());
28590Sstevel@tonic-gate 
28600Sstevel@tonic-gate 	if ((res = ddi_remove_event_handler(lep->le_id))
28610Sstevel@tonic-gate 	    != DDI_SUCCESS) {
28620Sstevel@tonic-gate 		LDI_EVENTCB((CE_WARN, "%s: unable to remove "
28630Sstevel@tonic-gate 		    "event callback", "ldi_remove_event_handler"));
28640Sstevel@tonic-gate 		return (res);
28650Sstevel@tonic-gate 	}
28660Sstevel@tonic-gate 
28670Sstevel@tonic-gate 	handle_event_remove(lep);
28680Sstevel@tonic-gate 	kmem_free(lep, sizeof (struct ldi_event));
28690Sstevel@tonic-gate 	return (res);
28700Sstevel@tonic-gate }
28714845Svikram 
28724845Svikram #endif
28734845Svikram 
28744845Svikram /*
28754845Svikram  * Here are some definitions of terms used in the following LDI events
28764845Svikram  * code:
28774845Svikram  *
28784845Svikram  * "LDI events" AKA "native events": These are events defined by the
28794845Svikram  * "new" LDI event framework. These events are serviced by the LDI event
28804845Svikram  * framework itself and thus are native to it.
28814845Svikram  *
28824845Svikram  * "LDI contract events": These are contract events that correspond to the
28834845Svikram  *  LDI events. This mapping of LDI events to contract events is defined by
28844845Svikram  * the ldi_ev_cookies[] array above.
28854845Svikram  *
28864845Svikram  * NDI events: These are events which are serviced by the NDI event subsystem.
28874845Svikram  * LDI subsystem just provides a thin wrapper around the NDI event interfaces
28885331Samw  * These events are therefore *not* native events.
28894845Svikram  */
28904845Svikram 
28914845Svikram static int
28924845Svikram ldi_native_event(const char *evname)
28934845Svikram {
28944845Svikram 	int i;
28954845Svikram 
28964845Svikram 	LDI_EVTRC((CE_NOTE, "ldi_native_event: entered: ev=%s", evname));
28974845Svikram 
28984845Svikram 	for (i = 0; ldi_ev_cookies[i].ck_evname != NULL; i++) {
28994845Svikram 		if (strcmp(ldi_ev_cookies[i].ck_evname, evname) == 0)
29004845Svikram 			return (1);
29014845Svikram 	}
29024845Svikram 
29034845Svikram 	return (0);
29044845Svikram }
29054845Svikram 
29064845Svikram static uint_t
29074845Svikram ldi_ev_sync_event(const char *evname)
29084845Svikram {
29094845Svikram 	int i;
29104845Svikram 
29114845Svikram 	ASSERT(ldi_native_event(evname));
29124845Svikram 
29134845Svikram 	LDI_EVTRC((CE_NOTE, "ldi_ev_sync_event: entered: %s", evname));
29144845Svikram 
29154845Svikram 	for (i = 0; ldi_ev_cookies[i].ck_evname != NULL; i++) {
29164845Svikram 		if (strcmp(ldi_ev_cookies[i].ck_evname, evname) == 0)
29174845Svikram 			return (ldi_ev_cookies[i].ck_sync);
29184845Svikram 	}
29194845Svikram 
29204845Svikram 	/*
29214845Svikram 	 * This should never happen until non-contract based
29224845Svikram 	 * LDI events are introduced. If that happens, we will
29234845Svikram 	 * use a "special" token to indicate that there are no
29244845Svikram 	 * contracts corresponding to this LDI event.
29254845Svikram 	 */
29264845Svikram 	cmn_err(CE_PANIC, "Unknown LDI event: %s", evname);
29274845Svikram 
29284845Svikram 	return (0);
29294845Svikram }
29304845Svikram 
29314845Svikram static uint_t
29324845Svikram ldi_contract_event(const char *evname)
29334845Svikram {
29344845Svikram 	int i;
29354845Svikram 
29364845Svikram 	ASSERT(ldi_native_event(evname));
29374845Svikram 
29384845Svikram 	LDI_EVTRC((CE_NOTE, "ldi_contract_event: entered: %s", evname));
29394845Svikram 
29404845Svikram 	for (i = 0; ldi_ev_cookies[i].ck_evname != NULL; i++) {
29414845Svikram 		if (strcmp(ldi_ev_cookies[i].ck_evname, evname) == 0)
29424845Svikram 			return (ldi_ev_cookies[i].ck_ctype);
29434845Svikram 	}
29444845Svikram 
29454845Svikram 	/*
29464845Svikram 	 * This should never happen until non-contract based
29474845Svikram 	 * LDI events are introduced. If that happens, we will
29484845Svikram 	 * use a "special" token to indicate that there are no
29494845Svikram 	 * contracts corresponding to this LDI event.
29504845Svikram 	 */
29514845Svikram 	cmn_err(CE_PANIC, "Unknown LDI event: %s", evname);
29524845Svikram 
29534845Svikram 	return (0);
29544845Svikram }
29554845Svikram 
29564845Svikram char *
29574845Svikram ldi_ev_get_type(ldi_ev_cookie_t cookie)
29584845Svikram {
29594845Svikram 	int i;
29604845Svikram 	struct ldi_ev_cookie *cookie_impl = (struct ldi_ev_cookie *)cookie;
29614845Svikram 
29624845Svikram 	for (i = 0; ldi_ev_cookies[i].ck_evname != NULL; i++) {
29634845Svikram 		if (&ldi_ev_cookies[i] == cookie_impl) {
29644845Svikram 			LDI_EVTRC((CE_NOTE, "ldi_ev_get_type: LDI: %s",
29654845Svikram 			    ldi_ev_cookies[i].ck_evname));
29664845Svikram 			return (ldi_ev_cookies[i].ck_evname);
29674845Svikram 		}
29684845Svikram 	}
29694845Svikram 
29704845Svikram 	/*
29714845Svikram 	 * Not an LDI native event. Must be NDI event service.
29724845Svikram 	 * Just return a generic string
29734845Svikram 	 */
29744845Svikram 	LDI_EVTRC((CE_NOTE, "ldi_ev_get_type: is NDI"));
29754845Svikram 	return (NDI_EVENT_SERVICE);
29764845Svikram }
29774845Svikram 
29784845Svikram static int
29794845Svikram ldi_native_cookie(ldi_ev_cookie_t cookie)
29804845Svikram {
29814845Svikram 	int i;
29824845Svikram 	struct ldi_ev_cookie *cookie_impl = (struct ldi_ev_cookie *)cookie;
29834845Svikram 
29844845Svikram 	for (i = 0; ldi_ev_cookies[i].ck_evname != NULL; i++) {
29854845Svikram 		if (&ldi_ev_cookies[i] == cookie_impl) {
29864845Svikram 			LDI_EVTRC((CE_NOTE, "ldi_native_cookie: native LDI"));
29874845Svikram 			return (1);
29884845Svikram 		}
29894845Svikram 	}
29904845Svikram 
29914845Svikram 	LDI_EVTRC((CE_NOTE, "ldi_native_cookie: is NDI"));
29924845Svikram 	return (0);
29934845Svikram }
29944845Svikram 
29954845Svikram static ldi_ev_cookie_t
29964845Svikram ldi_get_native_cookie(const char *evname)
29974845Svikram {
29984845Svikram 	int i;
29994845Svikram 
30004845Svikram 	for (i = 0; ldi_ev_cookies[i].ck_evname != NULL; i++) {
30014845Svikram 		if (strcmp(ldi_ev_cookies[i].ck_evname, evname) == 0) {
30024845Svikram 			LDI_EVTRC((CE_NOTE, "ldi_get_native_cookie: found"));
30034845Svikram 			return ((ldi_ev_cookie_t)&ldi_ev_cookies[i]);
30044845Svikram 		}
30054845Svikram 	}
30064845Svikram 
30074845Svikram 	LDI_EVTRC((CE_NOTE, "ldi_get_native_cookie: NOT found"));
30084845Svikram 	return (NULL);
30094845Svikram }
30104845Svikram 
30114845Svikram /*
30124845Svikram  * ldi_ev_lock() needs to be recursive, since layered drivers may call
30134845Svikram  * other LDI interfaces (such as ldi_close() from within the context of
30144845Svikram  * a notify callback. Since the notify callback is called with the
30154845Svikram  * ldi_ev_lock() held and ldi_close() also grabs ldi_ev_lock, the lock needs
30164845Svikram  * to be recursive.
30174845Svikram  */
30184845Svikram static void
30194845Svikram ldi_ev_lock(void)
30204845Svikram {
30214845Svikram 	LDI_EVTRC((CE_NOTE, "ldi_ev_lock: entered"));
30224845Svikram 
30234845Svikram 	mutex_enter(&ldi_ev_callback_list.le_lock);
30244845Svikram 	if (ldi_ev_callback_list.le_thread == curthread) {
30254845Svikram 		ASSERT(ldi_ev_callback_list.le_busy >= 1);
30264845Svikram 		ldi_ev_callback_list.le_busy++;
30274845Svikram 	} else {
30284845Svikram 		while (ldi_ev_callback_list.le_busy)
30294845Svikram 			cv_wait(&ldi_ev_callback_list.le_cv,
30304845Svikram 			    &ldi_ev_callback_list.le_lock);
30314845Svikram 		ASSERT(ldi_ev_callback_list.le_thread == NULL);
30324845Svikram 		ldi_ev_callback_list.le_busy = 1;
30334845Svikram 		ldi_ev_callback_list.le_thread = curthread;
30344845Svikram 	}
30354845Svikram 	mutex_exit(&ldi_ev_callback_list.le_lock);
30364845Svikram 
30374845Svikram 	LDI_EVTRC((CE_NOTE, "ldi_ev_lock: exit"));
30384845Svikram }
30394845Svikram 
30404845Svikram static void
30414845Svikram ldi_ev_unlock(void)
30424845Svikram {
30434845Svikram 	LDI_EVTRC((CE_NOTE, "ldi_ev_unlock: entered"));
30444845Svikram 	mutex_enter(&ldi_ev_callback_list.le_lock);
30454845Svikram 	ASSERT(ldi_ev_callback_list.le_thread == curthread);
30464845Svikram 	ASSERT(ldi_ev_callback_list.le_busy >= 1);
30474845Svikram 
30484845Svikram 	ldi_ev_callback_list.le_busy--;
30494845Svikram 	if (ldi_ev_callback_list.le_busy == 0) {
30504845Svikram 		ldi_ev_callback_list.le_thread = NULL;
30514845Svikram 		cv_signal(&ldi_ev_callback_list.le_cv);
30524845Svikram 	}
30534845Svikram 	mutex_exit(&ldi_ev_callback_list.le_lock);
30544845Svikram 	LDI_EVTRC((CE_NOTE, "ldi_ev_unlock: exit"));
30554845Svikram }
30564845Svikram 
30574845Svikram int
30584845Svikram ldi_ev_get_cookie(ldi_handle_t lh, char *evname, ldi_ev_cookie_t *cookiep)
30594845Svikram {
30604845Svikram 	struct ldi_handle	*handlep = (struct ldi_handle *)lh;
30614845Svikram 	dev_info_t		*dip;
30624845Svikram 	dev_t			dev;
30634845Svikram 	int			res;
30644845Svikram 	struct snode		*csp;
30654845Svikram 	ddi_eventcookie_t	ddi_cookie;
30664845Svikram 	ldi_ev_cookie_t		tcookie;
30674845Svikram 
30684845Svikram 	LDI_EVDBG((CE_NOTE, "ldi_ev_get_cookie: entered: evname=%s",
30694845Svikram 	    evname ? evname : "<NULL>"));
30704845Svikram 
30714845Svikram 	if (lh == NULL || evname == NULL ||
30724845Svikram 	    strlen(evname) == 0 || cookiep == NULL) {
30734845Svikram 		LDI_EVDBG((CE_NOTE, "ldi_ev_get_cookie: invalid args"));
30744845Svikram 		return (LDI_EV_FAILURE);
30754845Svikram 	}
30764845Svikram 
30774845Svikram 	*cookiep = NULL;
30784845Svikram 
30794845Svikram 	/*
30804845Svikram 	 * First check if it is a LDI native event
30814845Svikram 	 */
30824845Svikram 	tcookie = ldi_get_native_cookie(evname);
30834845Svikram 	if (tcookie) {
30844845Svikram 		LDI_EVDBG((CE_NOTE, "ldi_ev_get_cookie: got native cookie"));
30854845Svikram 		*cookiep = tcookie;
30864845Svikram 		return (LDI_EV_SUCCESS);
30874845Svikram 	}
30884845Svikram 
30894845Svikram 	/*
30904845Svikram 	 * Not a LDI native event. Try NDI event services
30914845Svikram 	 */
30924845Svikram 
30934845Svikram 	dev = handlep->lh_vp->v_rdev;
30944845Svikram 
30954845Svikram 	csp = VTOCS(handlep->lh_vp);
30964845Svikram 	mutex_enter(&csp->s_lock);
30974845Svikram 	if ((dip = csp->s_dip) != NULL)
30984845Svikram 		e_ddi_hold_devi(dip);
30994845Svikram 	mutex_exit(&csp->s_lock);
31004845Svikram 	if (dip == NULL)
31014845Svikram 		dip = e_ddi_hold_devi_by_dev(dev, 0);
31024845Svikram 
31034845Svikram 	if (dip == NULL) {
31044845Svikram 		cmn_err(CE_WARN, "ldi_ev_get_cookie: No devinfo node for LDI "
31054845Svikram 		    "handle: %p", (void *)handlep);
31064845Svikram 		return (LDI_EV_FAILURE);
31074845Svikram 	}
31084845Svikram 
31094845Svikram 	LDI_EVDBG((CE_NOTE, "Calling ddi_get_eventcookie: dip=%p, ev=%s",
31104845Svikram 	    (void *)dip, evname));
31114845Svikram 
31124845Svikram 	res = ddi_get_eventcookie(dip, evname, &ddi_cookie);
31134845Svikram 
31144845Svikram 	ddi_release_devi(dip);
31154845Svikram 
31164845Svikram 	if (res == DDI_SUCCESS) {
31174845Svikram 		LDI_EVDBG((CE_NOTE, "ldi_ev_get_cookie: NDI cookie found"));
31184845Svikram 		*cookiep = (ldi_ev_cookie_t)ddi_cookie;
31194845Svikram 		return (LDI_EV_SUCCESS);
31204845Svikram 	} else {
31214845Svikram 		LDI_EVDBG((CE_WARN, "ldi_ev_get_cookie: NDI cookie: failed"));
31224845Svikram 		return (LDI_EV_FAILURE);
31234845Svikram 	}
31244845Svikram }
31254845Svikram 
31264845Svikram /*ARGSUSED*/
31274845Svikram static void
31284845Svikram i_ldi_ev_callback(dev_info_t *dip, ddi_eventcookie_t event_cookie,
31294845Svikram     void *arg, void *ev_data)
31304845Svikram {
31314845Svikram 	ldi_ev_callback_impl_t *lecp = (ldi_ev_callback_impl_t *)arg;
31324845Svikram 
31334845Svikram 	ASSERT(lecp != NULL);
31344845Svikram 	ASSERT(!ldi_native_cookie(lecp->lec_cookie));
31354845Svikram 	ASSERT(lecp->lec_lhp);
31364845Svikram 	ASSERT(lecp->lec_notify == NULL);
31374845Svikram 	ASSERT(lecp->lec_finalize);
31384845Svikram 
31394845Svikram 	LDI_EVDBG((CE_NOTE, "i_ldi_ev_callback: ldh=%p, cookie=%p, arg=%p, "
31404845Svikram 	    "ev_data=%p", (void *)lecp->lec_lhp, (void *)event_cookie,
31414845Svikram 	    (void *)lecp->lec_arg, (void *)ev_data));
31424845Svikram 
31434845Svikram 	lecp->lec_finalize(lecp->lec_lhp, (ldi_ev_cookie_t)event_cookie,
31444845Svikram 	    lecp->lec_arg, ev_data);
31454845Svikram }
31464845Svikram 
31474845Svikram int
31484845Svikram ldi_ev_register_callbacks(ldi_handle_t lh, ldi_ev_cookie_t cookie,
31494845Svikram     ldi_ev_callback_t *callb, void *arg, ldi_callback_id_t *id)
31504845Svikram {
31514845Svikram 	struct ldi_handle	*lhp = (struct ldi_handle *)lh;
31524845Svikram 	ldi_ev_callback_impl_t	*lecp;
31534845Svikram 	dev_t			dev;
31544845Svikram 	struct snode		*csp;
31554845Svikram 	dev_info_t		*dip;
31564845Svikram 	int			ddi_event;
31574845Svikram 
31584845Svikram 	ASSERT(!servicing_interrupt());
31594845Svikram 
31604845Svikram 	if (lh == NULL || cookie == NULL || callb == NULL || id == NULL) {
31614845Svikram 		LDI_EVDBG((CE_NOTE, "ldi_ev_register_callbacks: Invalid args"));
31624845Svikram 		return (LDI_EV_FAILURE);
31634845Svikram 	}
31644845Svikram 
31654845Svikram 	if (callb->cb_vers != LDI_EV_CB_VERS) {
31664845Svikram 		LDI_EVDBG((CE_NOTE, "ldi_ev_register_callbacks: Invalid vers"));
31674845Svikram 		return (LDI_EV_FAILURE);
31684845Svikram 	}
31694845Svikram 
31704845Svikram 	if (callb->cb_notify == NULL && callb->cb_finalize == NULL) {
31714845Svikram 		LDI_EVDBG((CE_NOTE, "ldi_ev_register_callbacks: NULL callb"));
31724845Svikram 		return (LDI_EV_FAILURE);
31734845Svikram 	}
31744845Svikram 
31754845Svikram 	*id = 0;
31764845Svikram 
31774845Svikram 	dev = lhp->lh_vp->v_rdev;
31784845Svikram 	csp = VTOCS(lhp->lh_vp);
31794845Svikram 	mutex_enter(&csp->s_lock);
31804845Svikram 	if ((dip = csp->s_dip) != NULL)
31814845Svikram 		e_ddi_hold_devi(dip);
31824845Svikram 	mutex_exit(&csp->s_lock);
31834845Svikram 	if (dip == NULL)
31844845Svikram 		dip = e_ddi_hold_devi_by_dev(dev, 0);
31854845Svikram 
31864845Svikram 	if (dip == NULL) {
31874845Svikram 		cmn_err(CE_WARN, "ldi_ev_register: No devinfo node for "
31884845Svikram 		    "LDI handle: %p", (void *)lhp);
31894845Svikram 		return (LDI_EV_FAILURE);
31904845Svikram 	}
31914845Svikram 
31924845Svikram 	lecp = kmem_zalloc(sizeof (ldi_ev_callback_impl_t), KM_SLEEP);
31934845Svikram 
31944845Svikram 	ddi_event = 0;
31954845Svikram 	if (!ldi_native_cookie(cookie)) {
31964845Svikram 		if (callb->cb_notify || callb->cb_finalize == NULL) {
31974845Svikram 			/*
31984845Svikram 			 * NDI event services only accept finalize
31994845Svikram 			 */
32004845Svikram 			cmn_err(CE_WARN, "%s: module: %s: NDI event cookie. "
32014845Svikram 			    "Only finalize"
32024845Svikram 			    " callback supported with this cookie",
32034845Svikram 			    "ldi_ev_register_callbacks",
32044845Svikram 			    lhp->lh_ident->li_modname);
32054845Svikram 			kmem_free(lecp, sizeof (ldi_ev_callback_impl_t));
32064845Svikram 			ddi_release_devi(dip);
32074845Svikram 			return (LDI_EV_FAILURE);
32084845Svikram 		}
32094845Svikram 
32104845Svikram 		if (ddi_add_event_handler(dip, (ddi_eventcookie_t)cookie,
32114845Svikram 		    i_ldi_ev_callback, (void *)lecp,
32124845Svikram 		    (ddi_callback_id_t *)&lecp->lec_id)
32134845Svikram 		    != DDI_SUCCESS) {
32144845Svikram 			kmem_free(lecp, sizeof (ldi_ev_callback_impl_t));
32154845Svikram 			ddi_release_devi(dip);
32164845Svikram 			LDI_EVDBG((CE_NOTE, "ldi_ev_register_callbacks(): "
32174845Svikram 			    "ddi_add_event_handler failed"));
32184845Svikram 			return (LDI_EV_FAILURE);
32194845Svikram 		}
32204845Svikram 		ddi_event = 1;
32214845Svikram 		LDI_EVDBG((CE_NOTE, "ldi_ev_register_callbacks(): "
32224845Svikram 		    "ddi_add_event_handler success"));
32234845Svikram 	}
32244845Svikram 
32254845Svikram 
32264845Svikram 
32274845Svikram 	ldi_ev_lock();
32284845Svikram 
32294845Svikram 	/*
32304845Svikram 	 * Add the notify/finalize callback to the LDI's list of callbacks.
32314845Svikram 	 */
32324845Svikram 	lecp->lec_lhp = lhp;
32334845Svikram 	lecp->lec_dev = lhp->lh_vp->v_rdev;
323410079SGarrett.Damore@Sun.COM 	lecp->lec_spec = VTYP_TO_STYP(lhp->lh_vp->v_type);
32354845Svikram 	lecp->lec_notify = callb->cb_notify;
32364845Svikram 	lecp->lec_finalize = callb->cb_finalize;
32374845Svikram 	lecp->lec_arg = arg;
32384845Svikram 	lecp->lec_cookie = cookie;
32394845Svikram 	if (!ddi_event)
32404845Svikram 		lecp->lec_id = (void *)(uintptr_t)(++ldi_ev_id_pool);
32414845Svikram 	else
32424845Svikram 		ASSERT(lecp->lec_id);
32434845Svikram 	lecp->lec_dip = dip;
32444845Svikram 	list_insert_tail(&ldi_ev_callback_list.le_head, lecp);
32454845Svikram 
32464845Svikram 	*id = (ldi_callback_id_t)lecp->lec_id;
32474845Svikram 
32484845Svikram 	ldi_ev_unlock();
32494845Svikram 
32504845Svikram 	ddi_release_devi(dip);
32514845Svikram 
32524845Svikram 	LDI_EVDBG((CE_NOTE, "ldi_ev_register_callbacks: registered "
32534845Svikram 	    "notify/finalize"));
32544845Svikram 
32554845Svikram 	return (LDI_EV_SUCCESS);
32564845Svikram }
32574845Svikram 
32584845Svikram static int
32594845Svikram ldi_ev_device_match(ldi_ev_callback_impl_t *lecp, dev_info_t *dip,
32604845Svikram     dev_t dev, int spec_type)
32614845Svikram {
32624845Svikram 	ASSERT(lecp);
32634845Svikram 	ASSERT(dip);
32644845Svikram 	ASSERT(dev != DDI_DEV_T_NONE);
32654845Svikram 	ASSERT(dev != NODEV);
32664845Svikram 	ASSERT((dev == DDI_DEV_T_ANY && spec_type == 0) ||
32674845Svikram 	    (spec_type == S_IFCHR || spec_type == S_IFBLK));
32684845Svikram 	ASSERT(lecp->lec_dip);
32694845Svikram 	ASSERT(lecp->lec_spec == S_IFCHR || lecp->lec_spec == S_IFBLK);
32704845Svikram 	ASSERT(lecp->lec_dev != DDI_DEV_T_ANY);
32714845Svikram 	ASSERT(lecp->lec_dev != DDI_DEV_T_NONE);
32724845Svikram 	ASSERT(lecp->lec_dev != NODEV);
32734845Svikram 
32744845Svikram 	if (dip != lecp->lec_dip)
32754845Svikram 		return (0);
32764845Svikram 
32774845Svikram 	if (dev != DDI_DEV_T_ANY) {
32784845Svikram 		if (dev != lecp->lec_dev || spec_type != lecp->lec_spec)
32794845Svikram 			return (0);
32804845Svikram 	}
32814845Svikram 
32824845Svikram 	LDI_EVTRC((CE_NOTE, "ldi_ev_device_match: MATCH dip=%p", (void *)dip));
32834845Svikram 
32844845Svikram 	return (1);
32854845Svikram }
32864845Svikram 
32874845Svikram /*
32884845Svikram  * LDI framework function to post a "notify" event to all layered drivers
32894845Svikram  * that have registered for that event
32904845Svikram  *
32914845Svikram  * Returns:
32924845Svikram  *		LDI_EV_SUCCESS - registered callbacks allow event
32934845Svikram  *		LDI_EV_FAILURE - registered callbacks block event
32944845Svikram  *		LDI_EV_NONE    - No matching LDI callbacks
32954845Svikram  *
32964845Svikram  * This function is *not* to be called by layered drivers. It is for I/O
32974845Svikram  * framework code in Solaris, such as the I/O retire code and DR code
32984845Svikram  * to call while servicing a device event such as offline or degraded.
32994845Svikram  */
33004845Svikram int
33014845Svikram ldi_invoke_notify(dev_info_t *dip, dev_t dev, int spec_type, char *event,
33024845Svikram     void *ev_data)
33034845Svikram {
33044845Svikram 	ldi_ev_callback_impl_t *lecp;
33054845Svikram 	list_t	*listp;
33064845Svikram 	int	ret;
33074845Svikram 	char	*lec_event;
33084845Svikram 
33094845Svikram 	ASSERT(dip);
33104845Svikram 	ASSERT(dev != DDI_DEV_T_NONE);
33114845Svikram 	ASSERT(dev != NODEV);
33124845Svikram 	ASSERT((dev == DDI_DEV_T_ANY && spec_type == 0) ||
33134845Svikram 	    (spec_type == S_IFCHR || spec_type == S_IFBLK));
33144845Svikram 	ASSERT(event);
33154845Svikram 	ASSERT(ldi_native_event(event));
33164845Svikram 	ASSERT(ldi_ev_sync_event(event));
33174845Svikram 
33184845Svikram 	LDI_EVDBG((CE_NOTE, "ldi_invoke_notify(): entered: dip=%p, ev=%s",
33194845Svikram 	    (void *)dip, event));
33204845Svikram 
33214845Svikram 	ret = LDI_EV_NONE;
33224845Svikram 	ldi_ev_lock();
33234845Svikram 	listp = &ldi_ev_callback_list.le_head;
33244845Svikram 	for (lecp = list_head(listp); lecp; lecp = list_next(listp, lecp)) {
33254845Svikram 
33264845Svikram 		/* Check if matching device */
33274845Svikram 		if (!ldi_ev_device_match(lecp, dip, dev, spec_type))
33284845Svikram 			continue;
33294845Svikram 
33304845Svikram 		if (lecp->lec_lhp == NULL) {
33314845Svikram 			/*
33324845Svikram 			 * Consumer has unregistered the handle and so
33334845Svikram 			 * is no longer interested in notify events.
33344845Svikram 			 */
33354845Svikram 			LDI_EVDBG((CE_NOTE, "ldi_invoke_notify(): No LDI "
33364845Svikram 			    "handle, skipping"));
33374845Svikram 			continue;
33384845Svikram 		}
33394845Svikram 
33404845Svikram 		if (lecp->lec_notify == NULL) {
33414845Svikram 			LDI_EVDBG((CE_NOTE, "ldi_invoke_notify(): No notify "
33424845Svikram 			    "callback. skipping"));
33434845Svikram 			continue;	/* not interested in notify */
33444845Svikram 		}
33454845Svikram 
33464845Svikram 		/*
33474845Svikram 		 * Check if matching event
33484845Svikram 		 */
33494845Svikram 		lec_event = ldi_ev_get_type(lecp->lec_cookie);
33504845Svikram 		if (strcmp(event, lec_event) != 0) {
33514845Svikram 			LDI_EVDBG((CE_NOTE, "ldi_invoke_notify(): Not matching"
33524845Svikram 			    " event {%s,%s}. skipping", event, lec_event));
33534845Svikram 			continue;
33544845Svikram 		}
33554845Svikram 
33564845Svikram 		lecp->lec_lhp->lh_flags |= LH_FLAGS_NOTIFY;
33574845Svikram 		if (lecp->lec_notify(lecp->lec_lhp, lecp->lec_cookie,
33584845Svikram 		    lecp->lec_arg, ev_data) != LDI_EV_SUCCESS) {
33594845Svikram 			ret = LDI_EV_FAILURE;
33604845Svikram 			LDI_EVDBG((CE_NOTE, "ldi_invoke_notify(): notify"
33614845Svikram 			    " FAILURE"));
33624845Svikram 			break;
33634845Svikram 		}
33644845Svikram 
33654845Svikram 		/* We have a matching callback that allows the event to occur */
33664845Svikram 		ret = LDI_EV_SUCCESS;
33674845Svikram 
33684845Svikram 		LDI_EVDBG((CE_NOTE, "ldi_invoke_notify(): 1 consumer success"));
33694845Svikram 	}
33704845Svikram 
33714845Svikram 	if (ret != LDI_EV_FAILURE)
33724845Svikram 		goto out;
33734845Svikram 
33744845Svikram 	LDI_EVDBG((CE_NOTE, "ldi_invoke_notify(): undoing notify"));
33754845Svikram 
33764845Svikram 	/*
33774845Svikram 	 * Undo notifies already sent
33784845Svikram 	 */
33794845Svikram 	lecp = list_prev(listp, lecp);
33804845Svikram 	for (; lecp; lecp = list_prev(listp, lecp)) {
33814845Svikram 
33824845Svikram 		/*
33834845Svikram 		 * Check if matching device
33844845Svikram 		 */
33854845Svikram 		if (!ldi_ev_device_match(lecp, dip, dev, spec_type))
33864845Svikram 			continue;
33874845Svikram 
33884845Svikram 
33894845Svikram 		if (lecp->lec_finalize == NULL) {
33904845Svikram 			LDI_EVDBG((CE_NOTE, "ldi_invoke_notify(): no finalize, "
33914845Svikram 			    "skipping"));
33924845Svikram 			continue;	/* not interested in finalize */
33934845Svikram 		}
33944845Svikram 
33954845Svikram 		/*
33964845Svikram 		 * it is possible that in response to a notify event a
33974845Svikram 		 * layered driver closed its LDI handle so it is ok
33984845Svikram 		 * to have a NULL LDI handle for finalize. The layered
33994845Svikram 		 * driver is expected to maintain state in its "arg"
34004845Svikram 		 * parameter to keep track of the closed device.
34014845Svikram 		 */
34024845Svikram 
34034845Svikram 		/* Check if matching event */
34044845Svikram 		lec_event = ldi_ev_get_type(lecp->lec_cookie);
34054845Svikram 		if (strcmp(event, lec_event) != 0) {
34064845Svikram 			LDI_EVDBG((CE_NOTE, "ldi_invoke_notify(): not matching "
34074845Svikram 			    "event: %s,%s, skipping", event, lec_event));
34084845Svikram 			continue;
34094845Svikram 		}
34104845Svikram 
34114845Svikram 		LDI_EVDBG((CE_NOTE, "ldi_invoke_notify(): calling finalize"));
34124845Svikram 
34134845Svikram 		lecp->lec_finalize(lecp->lec_lhp, lecp->lec_cookie,
34144845Svikram 		    LDI_EV_FAILURE, lecp->lec_arg, ev_data);
34154845Svikram 
34164845Svikram 		/*
34174845Svikram 		 * If LDI native event and LDI handle closed in context
34184845Svikram 		 * of notify, NULL out the finalize callback as we have
34194845Svikram 		 * already called the 1 finalize above allowed in this situation
34204845Svikram 		 */
34214845Svikram 		if (lecp->lec_lhp == NULL &&
34224845Svikram 		    ldi_native_cookie(lecp->lec_cookie)) {
34234845Svikram 			LDI_EVDBG((CE_NOTE,
34244845Svikram 			    "ldi_invoke_notify(): NULL-ing finalize after "
34254845Svikram 			    "calling 1 finalize following ldi_close"));
34264845Svikram 			lecp->lec_finalize = NULL;
34274845Svikram 		}
34284845Svikram 	}
34294845Svikram 
34304845Svikram out:
34314845Svikram 	ldi_ev_unlock();
34324845Svikram 
34334845Svikram 	if (ret == LDI_EV_NONE) {
34344845Svikram 		LDI_EVDBG((CE_NOTE, "ldi_invoke_notify(): no matching "
34354845Svikram 		    "LDI callbacks"));
34364845Svikram 	}
34374845Svikram 
34384845Svikram 	return (ret);
34394845Svikram }
34404845Svikram 
34414845Svikram /*
34424845Svikram  * Framework function to be called from a layered driver to propagate
34434845Svikram  * LDI "notify" events to exported minors.
34444845Svikram  *
34454845Svikram  * This function is a public interface exported by the LDI framework
34464845Svikram  * for use by layered drivers to propagate device events up the software
34474845Svikram  * stack.
34484845Svikram  */
34494845Svikram int
34504845Svikram ldi_ev_notify(dev_info_t *dip, minor_t minor, int spec_type,
34514845Svikram     ldi_ev_cookie_t cookie, void *ev_data)
34524845Svikram {
34534845Svikram 	char		*evname = ldi_ev_get_type(cookie);
34544845Svikram 	uint_t		ct_evtype;
34554845Svikram 	dev_t		dev;
34564845Svikram 	major_t		major;
34574845Svikram 	int		retc;
34584845Svikram 	int		retl;
34594845Svikram 
34604845Svikram 	ASSERT(spec_type == S_IFBLK || spec_type == S_IFCHR);
34614845Svikram 	ASSERT(dip);
34624845Svikram 	ASSERT(ldi_native_cookie(cookie));
34634845Svikram 
34644845Svikram 	LDI_EVDBG((CE_NOTE, "ldi_ev_notify(): entered: event=%s, dip=%p",
34654845Svikram 	    evname, (void *)dip));
34664845Svikram 
34674845Svikram 	if (!ldi_ev_sync_event(evname)) {
34684845Svikram 		cmn_err(CE_PANIC, "ldi_ev_notify(): %s not a "
34694845Svikram 		    "negotiatable event", evname);
34704845Svikram 		return (LDI_EV_SUCCESS);
34714845Svikram 	}
34724845Svikram 
34734845Svikram 	major = ddi_driver_major(dip);
34747009Scth 	if (major == DDI_MAJOR_T_NONE) {
34754845Svikram 		char *path = kmem_alloc(MAXPATHLEN, KM_SLEEP);
34764845Svikram 		(void) ddi_pathname(dip, path);
34774845Svikram 		cmn_err(CE_WARN, "ldi_ev_notify: cannot derive major number "
34784845Svikram 		    "for device %s", path);
34794845Svikram 		kmem_free(path, MAXPATHLEN);
34804845Svikram 		return (LDI_EV_FAILURE);
34814845Svikram 	}
34824845Svikram 	dev = makedevice(major, minor);
34834845Svikram 
34844845Svikram 	/*
34854845Svikram 	 * Generate negotiation contract events on contracts (if any) associated
34864845Svikram 	 * with this minor.
34874845Svikram 	 */
34884845Svikram 	LDI_EVDBG((CE_NOTE, "ldi_ev_notify(): calling contract nego."));
34894845Svikram 	ct_evtype = ldi_contract_event(evname);
34904845Svikram 	retc = contract_device_negotiate(dip, dev, spec_type, ct_evtype);
34914845Svikram 	if (retc == CT_NACK) {
34924845Svikram 		LDI_EVDBG((CE_NOTE, "ldi_ev_notify(): contract neg. NACK"));
34934845Svikram 		return (LDI_EV_FAILURE);
34944845Svikram 	}
34954845Svikram 
34964845Svikram 	LDI_EVDBG((CE_NOTE, "ldi_ev_notify(): LDI invoke notify"));
34974845Svikram 	retl = ldi_invoke_notify(dip, dev, spec_type, evname, ev_data);
34984845Svikram 	if (retl == LDI_EV_FAILURE) {
34994845Svikram 		LDI_EVDBG((CE_NOTE, "ldi_ev_notify(): ldi_invoke_notify "
35004845Svikram 		    "returned FAILURE. Calling contract negend"));
35014845Svikram 		contract_device_negend(dip, dev, spec_type, CT_EV_FAILURE);
35024845Svikram 		return (LDI_EV_FAILURE);
35034845Svikram 	}
35044845Svikram 
35054845Svikram 	/*
35064845Svikram 	 * The very fact that we are here indicates that there is a
35074845Svikram 	 * LDI callback (and hence a constraint) for the retire of the
35084845Svikram 	 * HW device. So we just return success even if there are no
35094845Svikram 	 * contracts or LDI callbacks against the minors layered on top
35104845Svikram 	 * of the HW minors
35114845Svikram 	 */
35124845Svikram 	LDI_EVDBG((CE_NOTE, "ldi_ev_notify(): returning SUCCESS"));
35134845Svikram 	return (LDI_EV_SUCCESS);
35144845Svikram }
35154845Svikram 
35164845Svikram /*
35174845Svikram  * LDI framework function to invoke "finalize" callbacks for all layered
35184845Svikram  * drivers that have registered callbacks for that event.
35194845Svikram  *
35204845Svikram  * This function is *not* to be called by layered drivers. It is for I/O
35214845Svikram  * framework code in Solaris, such as the I/O retire code and DR code
35224845Svikram  * to call while servicing a device event such as offline or degraded.
35234845Svikram  */
35244845Svikram void
35254845Svikram ldi_invoke_finalize(dev_info_t *dip, dev_t dev, int spec_type, char *event,
35264845Svikram     int ldi_result, void *ev_data)
35274845Svikram {
35284845Svikram 	ldi_ev_callback_impl_t *lecp;
35294845Svikram 	list_t	*listp;
35304845Svikram 	char	*lec_event;
35314845Svikram 	int	found = 0;
35324845Svikram 
35334845Svikram 	ASSERT(dip);
35344845Svikram 	ASSERT(dev != DDI_DEV_T_NONE);
35354845Svikram 	ASSERT(dev != NODEV);
35364845Svikram 	ASSERT((dev == DDI_DEV_T_ANY && spec_type == 0) ||
35374845Svikram 	    (spec_type == S_IFCHR || spec_type == S_IFBLK));
35384845Svikram 	ASSERT(event);
35394845Svikram 	ASSERT(ldi_native_event(event));
35404845Svikram 	ASSERT(ldi_result == LDI_EV_SUCCESS || ldi_result == LDI_EV_FAILURE);
35414845Svikram 
35424845Svikram 	LDI_EVDBG((CE_NOTE, "ldi_invoke_finalize(): entered: dip=%p, result=%d"
35434845Svikram 	    " event=%s", (void *)dip, ldi_result, event));
35444845Svikram 
35454845Svikram 	ldi_ev_lock();
35464845Svikram 	listp = &ldi_ev_callback_list.le_head;
35474845Svikram 	for (lecp = list_head(listp); lecp; lecp = list_next(listp, lecp)) {
35484845Svikram 
35494845Svikram 		if (lecp->lec_finalize == NULL) {
35504845Svikram 			LDI_EVDBG((CE_NOTE, "ldi_invoke_finalize(): No "
35514845Svikram 			    "finalize. Skipping"));
35524845Svikram 			continue;	/* Not interested in finalize */
35534845Svikram 		}
35544845Svikram 
35554845Svikram 		/*
35564845Svikram 		 * Check if matching device
35574845Svikram 		 */
35584845Svikram 		if (!ldi_ev_device_match(lecp, dip, dev, spec_type))
35594845Svikram 			continue;
35604845Svikram 
35614845Svikram 		/*
35624845Svikram 		 * It is valid for the LDI handle to be NULL during finalize.
35634845Svikram 		 * The layered driver may have done an LDI close in the notify
35644845Svikram 		 * callback.
35654845Svikram 		 */
35664845Svikram 
35674845Svikram 		/*
35684845Svikram 		 * Check if matching event
35694845Svikram 		 */
35704845Svikram 		lec_event = ldi_ev_get_type(lecp->lec_cookie);
35714845Svikram 		if (strcmp(event, lec_event) != 0) {
35724845Svikram 			LDI_EVDBG((CE_NOTE, "ldi_invoke_finalize(): Not "
35734845Svikram 			    "matching event {%s,%s}. Skipping",
35744845Svikram 			    event, lec_event));
35754845Svikram 			continue;
35764845Svikram 		}
35774845Svikram 
35784845Svikram 		LDI_EVDBG((CE_NOTE, "ldi_invoke_finalize(): calling finalize"));
35794845Svikram 
35804845Svikram 		found = 1;
35814845Svikram 
35824845Svikram 		lecp->lec_finalize(lecp->lec_lhp, lecp->lec_cookie,
35834845Svikram 		    ldi_result, lecp->lec_arg, ev_data);
35844845Svikram 
35854845Svikram 		/*
35864845Svikram 		 * If LDI native event and LDI handle closed in context
35874845Svikram 		 * of notify, NULL out the finalize callback as we have
35884845Svikram 		 * already called the 1 finalize above allowed in this situation
35894845Svikram 		 */
35904845Svikram 		if (lecp->lec_lhp == NULL &&
35914845Svikram 		    ldi_native_cookie(lecp->lec_cookie)) {
35924845Svikram 			LDI_EVDBG((CE_NOTE,
35934845Svikram 			    "ldi_invoke_finalize(): NULLing finalize after "
35944845Svikram 			    "calling 1 finalize following ldi_close"));
35954845Svikram 			lecp->lec_finalize = NULL;
35964845Svikram 		}
35974845Svikram 	}
35984845Svikram 	ldi_ev_unlock();
35994845Svikram 
36004845Svikram 	if (found)
36014845Svikram 		return;
36024845Svikram 
36034845Svikram 	LDI_EVDBG((CE_NOTE, "ldi_invoke_finalize(): no matching callbacks"));
36044845Svikram }
36054845Svikram 
36064845Svikram /*
36074845Svikram  * Framework function to be called from a layered driver to propagate
36084845Svikram  * LDI "finalize" events to exported minors.
36094845Svikram  *
36104845Svikram  * This function is a public interface exported by the LDI framework
36114845Svikram  * for use by layered drivers to propagate device events up the software
36124845Svikram  * stack.
36134845Svikram  */
36144845Svikram void
36154845Svikram ldi_ev_finalize(dev_info_t *dip, minor_t minor, int spec_type, int ldi_result,
36164845Svikram     ldi_ev_cookie_t cookie, void *ev_data)
36174845Svikram {
36184845Svikram 	dev_t dev;
36194845Svikram 	major_t major;
36204845Svikram 	char *evname;
36214845Svikram 	int ct_result = (ldi_result == LDI_EV_SUCCESS) ?
36224845Svikram 	    CT_EV_SUCCESS : CT_EV_FAILURE;
36234845Svikram 	uint_t ct_evtype;
36244845Svikram 
36254845Svikram 	ASSERT(dip);
36264845Svikram 	ASSERT(spec_type == S_IFBLK || spec_type == S_IFCHR);
36274845Svikram 	ASSERT(ldi_result == LDI_EV_SUCCESS || ldi_result == LDI_EV_FAILURE);
36284845Svikram 	ASSERT(ldi_native_cookie(cookie));
36294845Svikram 
36304845Svikram 	LDI_EVDBG((CE_NOTE, "ldi_ev_finalize: entered: dip=%p", (void *)dip));
36314845Svikram 
36324845Svikram 	major = ddi_driver_major(dip);
36337009Scth 	if (major == DDI_MAJOR_T_NONE) {
36344845Svikram 		char *path = kmem_alloc(MAXPATHLEN, KM_SLEEP);
36354845Svikram 		(void) ddi_pathname(dip, path);
36364845Svikram 		cmn_err(CE_WARN, "ldi_ev_finalize: cannot derive major number "
36374845Svikram 		    "for device %s", path);
36384845Svikram 		kmem_free(path, MAXPATHLEN);
36394845Svikram 		return;
36404845Svikram 	}
36414845Svikram 	dev = makedevice(major, minor);
36424845Svikram 
36434845Svikram 	evname = ldi_ev_get_type(cookie);
36444845Svikram 
36454845Svikram 	LDI_EVDBG((CE_NOTE, "ldi_ev_finalize: calling contracts"));
36464845Svikram 	ct_evtype = ldi_contract_event(evname);
36474845Svikram 	contract_device_finalize(dip, dev, spec_type, ct_evtype, ct_result);
36484845Svikram 
36494845Svikram 	LDI_EVDBG((CE_NOTE, "ldi_ev_finalize: calling ldi_invoke_finalize"));
36504845Svikram 	ldi_invoke_finalize(dip, dev, spec_type, evname, ldi_result, ev_data);
36514845Svikram }
36524845Svikram 
36534845Svikram int
36544845Svikram ldi_ev_remove_callbacks(ldi_callback_id_t id)
36554845Svikram {
36564845Svikram 	ldi_ev_callback_impl_t	*lecp;
36574845Svikram 	ldi_ev_callback_impl_t	*next;
36584845Svikram 	ldi_ev_callback_impl_t	*found;
36594845Svikram 	list_t			*listp;
36604845Svikram 
36614845Svikram 	ASSERT(!servicing_interrupt());
36624845Svikram 
36634845Svikram 	if (id == 0) {
36644845Svikram 		cmn_err(CE_WARN, "ldi_ev_remove_callbacks: Invalid ID 0");
36654845Svikram 		return (LDI_EV_FAILURE);
36664845Svikram 	}
36674845Svikram 
36684845Svikram 	LDI_EVDBG((CE_NOTE, "ldi_ev_remove_callbacks: entered: id=%p",
36694845Svikram 	    (void *)id));
36704845Svikram 
36714845Svikram 	ldi_ev_lock();
36724845Svikram 
36734845Svikram 	listp = &ldi_ev_callback_list.le_head;
36744845Svikram 	next = found = NULL;
36754845Svikram 	for (lecp = list_head(listp); lecp; lecp = next) {
36764845Svikram 		next = list_next(listp, lecp);
36774845Svikram 		if (lecp->lec_id == id) {
36784845Svikram 			ASSERT(found == NULL);
36794845Svikram 			list_remove(listp, lecp);
36804845Svikram 			found = lecp;
36814845Svikram 		}
36824845Svikram 	}
36834845Svikram 	ldi_ev_unlock();
36844845Svikram 
36854845Svikram 	if (found == NULL) {
36864845Svikram 		cmn_err(CE_WARN, "No LDI event handler for id (%p)",
36874845Svikram 		    (void *)id);
36884845Svikram 		return (LDI_EV_SUCCESS);
36894845Svikram 	}
36904845Svikram 
36914845Svikram 	if (!ldi_native_cookie(found->lec_cookie)) {
36924845Svikram 		ASSERT(found->lec_notify == NULL);
36934845Svikram 		if (ddi_remove_event_handler((ddi_callback_id_t)id)
36944845Svikram 		    != DDI_SUCCESS) {
36954845Svikram 			cmn_err(CE_WARN, "failed to remove NDI event handler "
36964845Svikram 			    "for id (%p)", (void *)id);
36974845Svikram 			ldi_ev_lock();
36984845Svikram 			list_insert_tail(listp, found);
36994845Svikram 			ldi_ev_unlock();
37004845Svikram 			return (LDI_EV_FAILURE);
37014845Svikram 		}
37024845Svikram 		LDI_EVDBG((CE_NOTE, "ldi_ev_remove_callbacks: NDI event "
37034845Svikram 		    "service removal succeeded"));
37044845Svikram 	} else {
37054845Svikram 		LDI_EVDBG((CE_NOTE, "ldi_ev_remove_callbacks: removed "
37064845Svikram 		    "LDI native callbacks"));
37074845Svikram 	}
37084845Svikram 	kmem_free(found, sizeof (ldi_ev_callback_impl_t));
37094845Svikram 
37104845Svikram 	return (LDI_EV_SUCCESS);
37114845Svikram }
3712