xref: /titanic_50/usr/src/lib/libdiskmgt/common/findevs.c (revision 42f64fdbffcd3ad730bd3433d19783aa06628d44)
17c478bd9Sstevel@tonic-gate /*
27c478bd9Sstevel@tonic-gate  * CDDL HEADER START
37c478bd9Sstevel@tonic-gate  *
47c478bd9Sstevel@tonic-gate  * The contents of this file are subject to the terms of the
518c2aff7Sartem  * Common Development and Distribution License (the "License").
618c2aff7Sartem  * You may not use this file except in compliance with the License.
77c478bd9Sstevel@tonic-gate  *
87c478bd9Sstevel@tonic-gate  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
97c478bd9Sstevel@tonic-gate  * or http://www.opensolaris.org/os/licensing.
107c478bd9Sstevel@tonic-gate  * See the License for the specific language governing permissions
117c478bd9Sstevel@tonic-gate  * and limitations under the License.
127c478bd9Sstevel@tonic-gate  *
137c478bd9Sstevel@tonic-gate  * When distributing Covered Code, include this CDDL HEADER in each
147c478bd9Sstevel@tonic-gate  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
157c478bd9Sstevel@tonic-gate  * If applicable, add the following below this CDDL HEADER, with the
167c478bd9Sstevel@tonic-gate  * fields enclosed by brackets "[]" replaced with your own identifying
177c478bd9Sstevel@tonic-gate  * information: Portions Copyright [yyyy] [name of copyright owner]
187c478bd9Sstevel@tonic-gate  *
197c478bd9Sstevel@tonic-gate  * CDDL HEADER END
207c478bd9Sstevel@tonic-gate  */
217c478bd9Sstevel@tonic-gate /*
22*42f64fdbSSarah Jelinek  * Copyright 2010 Sun Microsystems, Inc.  All rights reserved.
237c478bd9Sstevel@tonic-gate  * Use is subject to license terms.
247c478bd9Sstevel@tonic-gate  */
257c478bd9Sstevel@tonic-gate 
267c478bd9Sstevel@tonic-gate #include <fcntl.h>
277c478bd9Sstevel@tonic-gate #include <libdevinfo.h>
287c478bd9Sstevel@tonic-gate #include <stdio.h>
297c478bd9Sstevel@tonic-gate #include <stdlib.h>
307c478bd9Sstevel@tonic-gate #include <string.h>
317c478bd9Sstevel@tonic-gate #include <sys/stat.h>
327c478bd9Sstevel@tonic-gate #include <sys/sunddi.h>
337c478bd9Sstevel@tonic-gate #include <sys/types.h>
34681d9761SEric Taylor #include <sys/mkdev.h>
357c478bd9Sstevel@tonic-gate #include <ctype.h>
367c478bd9Sstevel@tonic-gate #include <libgen.h>
377c478bd9Sstevel@tonic-gate #include <unistd.h>
387c478bd9Sstevel@tonic-gate #include <devid.h>
39e7cbe64fSgw25295 #include <sys/fs/zfs.h>
407c478bd9Sstevel@tonic-gate 
417c478bd9Sstevel@tonic-gate #include "libdiskmgt.h"
427c478bd9Sstevel@tonic-gate #include "disks_private.h"
437c478bd9Sstevel@tonic-gate 
447c478bd9Sstevel@tonic-gate #define	CLUSTER_DEV	"did"
457c478bd9Sstevel@tonic-gate 
467c478bd9Sstevel@tonic-gate /* specify which disk links to use in the /dev directory */
477c478bd9Sstevel@tonic-gate #define	DEVLINK_REGEX		"rdsk/.*"
487c478bd9Sstevel@tonic-gate #define	DEVLINK_FLOPPY_REGEX	"rdiskette[0-9]"
497c478bd9Sstevel@tonic-gate #define	DEVLINK_DID_REGEX	"did/rdsk/.*"
507c478bd9Sstevel@tonic-gate 
517c478bd9Sstevel@tonic-gate #define	FLOPPY_NAME	"rdiskette"
527c478bd9Sstevel@tonic-gate 
537c478bd9Sstevel@tonic-gate #define	MAXPROPLEN		1024
547c478bd9Sstevel@tonic-gate #define	DEVICE_ID_PROP		"devid"
557c478bd9Sstevel@tonic-gate #define	PROD_ID_PROP		"inquiry-product-id"
567c478bd9Sstevel@tonic-gate #define	PROD_ID_USB_PROP	"usb-product-name"
577c478bd9Sstevel@tonic-gate #define	REMOVABLE_PROP		"removable-media"
580167b58cScg149915 #define	HOTPLUGGABLE_PROP	"hotpluggable"
597c478bd9Sstevel@tonic-gate #define	SCSI_OPTIONS_PROP	"scsi-options"
607c478bd9Sstevel@tonic-gate #define	VENDOR_ID_PROP		"inquiry-vendor-id"
617c478bd9Sstevel@tonic-gate #define	VENDOR_ID_USB_PROP	"usb-vendor-name"
627c478bd9Sstevel@tonic-gate #define	WWN_PROP		"node-wwn"
637c478bd9Sstevel@tonic-gate 
647c478bd9Sstevel@tonic-gate static char *ctrltypes[] = {
657c478bd9Sstevel@tonic-gate 	DDI_NT_SCSI_NEXUS,
667c478bd9Sstevel@tonic-gate 	DDI_NT_SCSI_ATTACHMENT_POINT,
677c478bd9Sstevel@tonic-gate 	DDI_NT_FC_ATTACHMENT_POINT,
687c478bd9Sstevel@tonic-gate 	NULL
697c478bd9Sstevel@tonic-gate };
707c478bd9Sstevel@tonic-gate 
717c478bd9Sstevel@tonic-gate static char *bustypes[] = {
727c478bd9Sstevel@tonic-gate 	"sbus",
737c478bd9Sstevel@tonic-gate 	"pci",
747c478bd9Sstevel@tonic-gate 	"usb",
757c478bd9Sstevel@tonic-gate 	NULL
767c478bd9Sstevel@tonic-gate };
777c478bd9Sstevel@tonic-gate 
787c478bd9Sstevel@tonic-gate static bus_t		*add_bus(struct search_args *args, di_node_t node,
797c478bd9Sstevel@tonic-gate 			    di_minor_t minor, controller_t *cp);
807c478bd9Sstevel@tonic-gate static int		add_cluster_devs(di_node_t node, di_minor_t minor,
817c478bd9Sstevel@tonic-gate 			    void *arg);
827c478bd9Sstevel@tonic-gate static controller_t	*add_controller(struct search_args *args,
837c478bd9Sstevel@tonic-gate 			    di_node_t node, di_minor_t minor);
847c478bd9Sstevel@tonic-gate static int		add_devpath(di_devlink_t devlink, void *arg);
857c478bd9Sstevel@tonic-gate static int		add_devs(di_node_t node, di_minor_t minor, void *arg);
867c478bd9Sstevel@tonic-gate static int		add_disk2controller(disk_t *diskp,
877c478bd9Sstevel@tonic-gate 			    struct search_args *args);
887c478bd9Sstevel@tonic-gate static int		add_disk2path(disk_t *dp, path_t *pp,
897c478bd9Sstevel@tonic-gate 			    di_path_state_t st, char *wwn);
907c478bd9Sstevel@tonic-gate static int		add_int2array(int p, int **parray);
917c478bd9Sstevel@tonic-gate static int		add_ptr2array(void *p, void ***parray);
927c478bd9Sstevel@tonic-gate static char		*bus_type(di_node_t node, di_minor_t minor,
937c478bd9Sstevel@tonic-gate 			    di_prom_handle_t ph);
94*42f64fdbSSarah Jelinek static void		remove_controller(controller_t *cp,
957c478bd9Sstevel@tonic-gate 			    controller_t *currp);
967c478bd9Sstevel@tonic-gate static void		clean_paths(struct search_args *args);
977c478bd9Sstevel@tonic-gate static disk_t		*create_disk(char *deviceid, char *kernel_name,
987c478bd9Sstevel@tonic-gate 			    struct search_args *args);
997c478bd9Sstevel@tonic-gate static char		*ctype(di_node_t node, di_minor_t minor);
10097ab9a43SJohn Levon static boolean_t	disk_is_cdrom(const char *type);
1017c478bd9Sstevel@tonic-gate static alias_t		*find_alias(disk_t *diskp, char *kernel_name);
1027c478bd9Sstevel@tonic-gate static bus_t		*find_bus(struct search_args *args, char *name);
1037c478bd9Sstevel@tonic-gate static controller_t	*find_controller(struct search_args *args, char *name);
1047c478bd9Sstevel@tonic-gate static int		fix_cluster_devpath(di_devlink_t devlink, void *arg);
1057c478bd9Sstevel@tonic-gate static disk_t		*get_disk_by_deviceid(disk_t *listp, char *devid);
1067c478bd9Sstevel@tonic-gate static void		get_disk_name_from_path(char *path, char *name,
1077c478bd9Sstevel@tonic-gate 			    int size);
1087c478bd9Sstevel@tonic-gate static char		*get_byte_prop(char *prop_name, di_node_t node);
1097c478bd9Sstevel@tonic-gate static di_node_t	get_parent_bus(di_node_t node,
1107c478bd9Sstevel@tonic-gate 			    struct search_args *args);
1117c478bd9Sstevel@tonic-gate static int		get_prom_int(char *prop_name, di_node_t node,
1127c478bd9Sstevel@tonic-gate 			    di_prom_handle_t ph);
1137c478bd9Sstevel@tonic-gate static char		*get_prom_str(char *prop_name, di_node_t node,
1147c478bd9Sstevel@tonic-gate 			    di_prom_handle_t ph);
1157c478bd9Sstevel@tonic-gate static int		get_prop(char *prop_name, di_node_t node);
1167c478bd9Sstevel@tonic-gate static char		*get_str_prop(char *prop_name, di_node_t node);
1177c478bd9Sstevel@tonic-gate static int		have_disk(struct search_args *args, char *devid,
1187c478bd9Sstevel@tonic-gate 			    char *kernel_name, disk_t **diskp);
1197c478bd9Sstevel@tonic-gate static int		is_cluster_disk(di_node_t node, di_minor_t minor);
1207c478bd9Sstevel@tonic-gate static int		is_ctds(char *name);
1217c478bd9Sstevel@tonic-gate static int		is_drive(di_minor_t minor);
122e7cbe64fSgw25295 static int		is_zvol(di_node_t node, di_minor_t minor);
1237c478bd9Sstevel@tonic-gate static int		is_HBA(di_node_t node, di_minor_t minor);
1247c478bd9Sstevel@tonic-gate static int		new_alias(disk_t *diskp, char *kernel_path,
1257c478bd9Sstevel@tonic-gate 			    char *devlink_path, struct search_args *args);
1267c478bd9Sstevel@tonic-gate static int		new_devpath(alias_t *ap, char *devpath);
1277c478bd9Sstevel@tonic-gate static path_t		*new_path(controller_t *cp, disk_t *diskp,
1287c478bd9Sstevel@tonic-gate 			    di_node_t node, di_path_state_t st, char *wwn);
1297c478bd9Sstevel@tonic-gate static void		remove_invalid_controller(char *name,
1307c478bd9Sstevel@tonic-gate 			    controller_t *currp, struct search_args *args);
1317c478bd9Sstevel@tonic-gate static char		*str_case_index(register char *s1, register char *s2);
1327c478bd9Sstevel@tonic-gate 
1337c478bd9Sstevel@tonic-gate /*
1347c478bd9Sstevel@tonic-gate  * The functions in this file do a dev tree walk to build up a model of the
1357c478bd9Sstevel@tonic-gate  * disks, controllers and paths on the system.  This model is returned in the
1367c478bd9Sstevel@tonic-gate  * args->disk_listp and args->controller_listp members of the args param.
1377c478bd9Sstevel@tonic-gate  * There is no global data for this file so it is thread safe.  It is up to
1387c478bd9Sstevel@tonic-gate  * the caller to merge the resulting model with any existing model that is
1397c478bd9Sstevel@tonic-gate  * cached.  The caller must also free the memory for this model when it is
1407c478bd9Sstevel@tonic-gate  * no longer needed.
1417c478bd9Sstevel@tonic-gate  */
1427c478bd9Sstevel@tonic-gate void
1437c478bd9Sstevel@tonic-gate findevs(struct search_args *args)
1447c478bd9Sstevel@tonic-gate {
1457c478bd9Sstevel@tonic-gate 	uint_t			flags;
1467c478bd9Sstevel@tonic-gate 	di_node_t		di_root;
1477c478bd9Sstevel@tonic-gate 
1487c478bd9Sstevel@tonic-gate 	args->dev_walk_status = 0;
1497c478bd9Sstevel@tonic-gate 	args->disk_listp = NULL;
1507c478bd9Sstevel@tonic-gate 	args->controller_listp = NULL;
1517c478bd9Sstevel@tonic-gate 	args->bus_listp = NULL;
1527c478bd9Sstevel@tonic-gate 
1537c478bd9Sstevel@tonic-gate 	args->handle = di_devlink_init(NULL, 0);
1547c478bd9Sstevel@tonic-gate 
1557c478bd9Sstevel@tonic-gate 	/*
1567c478bd9Sstevel@tonic-gate 	 * Have to make several passes at this with the new devfs caching.
1577c478bd9Sstevel@tonic-gate 	 * First, we find non-mpxio devices. Then we find mpxio/multipath
1587c478bd9Sstevel@tonic-gate 	 * devices. Finally, we get cluster devices.
1597c478bd9Sstevel@tonic-gate 	 */
1607c478bd9Sstevel@tonic-gate 	flags = DINFOCACHE;
1617c478bd9Sstevel@tonic-gate 	di_root = di_init("/", flags);
1627c478bd9Sstevel@tonic-gate 	args->ph = di_prom_init();
1637c478bd9Sstevel@tonic-gate 	(void) di_walk_minor(di_root, NULL, 0, args, add_devs);
1647c478bd9Sstevel@tonic-gate 	di_fini(di_root);
1657c478bd9Sstevel@tonic-gate 
1667c478bd9Sstevel@tonic-gate 	flags = DINFOCPYALL | DINFOPATH;
1677c478bd9Sstevel@tonic-gate 	di_root = di_init("/", flags);
1687c478bd9Sstevel@tonic-gate 	(void) di_walk_minor(di_root, NULL, 0, args, add_devs);
1697c478bd9Sstevel@tonic-gate 	di_fini(di_root);
1707c478bd9Sstevel@tonic-gate 
1717c478bd9Sstevel@tonic-gate 	/* do another pass to clean up cluster devpaths */
1727c478bd9Sstevel@tonic-gate 	flags = DINFOCACHE;
1737c478bd9Sstevel@tonic-gate 	di_root = di_init("/", flags);
1747c478bd9Sstevel@tonic-gate 	(void) di_walk_minor(di_root, DDI_PSEUDO, 0, args, add_cluster_devs);
1757c478bd9Sstevel@tonic-gate 	if (args->ph != DI_PROM_HANDLE_NIL) {
1767c478bd9Sstevel@tonic-gate 		(void) di_prom_fini(args->ph);
1777c478bd9Sstevel@tonic-gate 	}
1787c478bd9Sstevel@tonic-gate 	di_fini(di_root);
1797c478bd9Sstevel@tonic-gate 
1807c478bd9Sstevel@tonic-gate 	(void) di_devlink_fini(&(args->handle));
1817c478bd9Sstevel@tonic-gate 
1827c478bd9Sstevel@tonic-gate 	clean_paths(args);
1837c478bd9Sstevel@tonic-gate }
1847c478bd9Sstevel@tonic-gate 
1857c478bd9Sstevel@tonic-gate /*
1867c478bd9Sstevel@tonic-gate  * Definitions of private functions
1877c478bd9Sstevel@tonic-gate  */
1887c478bd9Sstevel@tonic-gate 
1897c478bd9Sstevel@tonic-gate static bus_t *
1907c478bd9Sstevel@tonic-gate add_bus(struct search_args *args, di_node_t node, di_minor_t minor,
1917c478bd9Sstevel@tonic-gate 	controller_t *cp)
1927c478bd9Sstevel@tonic-gate {
1937c478bd9Sstevel@tonic-gate 	char		*btype;
1947c478bd9Sstevel@tonic-gate 	char		*devpath;
1957c478bd9Sstevel@tonic-gate 	bus_t		*bp;
1967c478bd9Sstevel@tonic-gate 	char		kstat_name[MAXPATHLEN];
1977c478bd9Sstevel@tonic-gate 	di_node_t	pnode;
1987c478bd9Sstevel@tonic-gate 
1997c478bd9Sstevel@tonic-gate 	if (node == DI_NODE_NIL) {
2007c478bd9Sstevel@tonic-gate 		return (NULL);
2017c478bd9Sstevel@tonic-gate 	}
2027c478bd9Sstevel@tonic-gate 
2037c478bd9Sstevel@tonic-gate 	if ((btype = bus_type(node, minor, args->ph)) == NULL) {
2047c478bd9Sstevel@tonic-gate 		return (add_bus(args, di_parent_node(node),
2057c478bd9Sstevel@tonic-gate 		    di_minor_next(di_parent_node(node), NULL), cp));
2067c478bd9Sstevel@tonic-gate 	}
2077c478bd9Sstevel@tonic-gate 
2087c478bd9Sstevel@tonic-gate 	devpath = di_devfs_path(node);
2097c478bd9Sstevel@tonic-gate 
2107c478bd9Sstevel@tonic-gate 	if ((bp = find_bus(args, devpath)) != NULL) {
2117c478bd9Sstevel@tonic-gate 		di_devfs_path_free((void *) devpath);
2127c478bd9Sstevel@tonic-gate 
2137c478bd9Sstevel@tonic-gate 		if (cp != NULL) {
214*42f64fdbSSarah Jelinek 			if (add_ptr2array(cp,
215*42f64fdbSSarah Jelinek 			    (void ***)&bp->controllers) != 0) {
2167c478bd9Sstevel@tonic-gate 				args->dev_walk_status = ENOMEM;
2177c478bd9Sstevel@tonic-gate 				return (NULL);
2187c478bd9Sstevel@tonic-gate 			}
2197c478bd9Sstevel@tonic-gate 		}
2207c478bd9Sstevel@tonic-gate 		return (bp);
2217c478bd9Sstevel@tonic-gate 	}
2227c478bd9Sstevel@tonic-gate 
2237c478bd9Sstevel@tonic-gate 	/* Special handling for root node. */
2247c478bd9Sstevel@tonic-gate 	if (strcmp(devpath, "/") == 0) {
2257c478bd9Sstevel@tonic-gate 		di_devfs_path_free((void *) devpath);
2267c478bd9Sstevel@tonic-gate 		return (NULL);
2277c478bd9Sstevel@tonic-gate 	}
2287c478bd9Sstevel@tonic-gate 
2297c478bd9Sstevel@tonic-gate 	if (dm_debug) {
2307c478bd9Sstevel@tonic-gate 		(void) fprintf(stderr, "INFO: add_bus %s\n", devpath);
2317c478bd9Sstevel@tonic-gate 	}
2327c478bd9Sstevel@tonic-gate 
2337c478bd9Sstevel@tonic-gate 	bp = (bus_t *)calloc(1, sizeof (bus_t));
2347c478bd9Sstevel@tonic-gate 	if (bp == NULL) {
2357c478bd9Sstevel@tonic-gate 		return (NULL);
2367c478bd9Sstevel@tonic-gate 	}
2377c478bd9Sstevel@tonic-gate 
2387c478bd9Sstevel@tonic-gate 	bp->name = strdup(devpath);
2397c478bd9Sstevel@tonic-gate 	di_devfs_path_free((void *) devpath);
2407c478bd9Sstevel@tonic-gate 	if (bp->name == NULL) {
2417c478bd9Sstevel@tonic-gate 		args->dev_walk_status = ENOMEM;
2427c478bd9Sstevel@tonic-gate 		cache_free_bus(bp);
2437c478bd9Sstevel@tonic-gate 		return (NULL);
2447c478bd9Sstevel@tonic-gate 	}
2457c478bd9Sstevel@tonic-gate 
2467c478bd9Sstevel@tonic-gate 	bp->btype = strdup(btype);
2477c478bd9Sstevel@tonic-gate 	if (bp->btype == NULL) {
2487c478bd9Sstevel@tonic-gate 		args->dev_walk_status = ENOMEM;
2497c478bd9Sstevel@tonic-gate 		cache_free_bus(bp);
2507c478bd9Sstevel@tonic-gate 		return (NULL);
2517c478bd9Sstevel@tonic-gate 	}
2527c478bd9Sstevel@tonic-gate 
2537c478bd9Sstevel@tonic-gate 	(void) snprintf(kstat_name, sizeof (kstat_name), "%s%d",
2547c478bd9Sstevel@tonic-gate 	    di_node_name(node), di_instance(node));
2557c478bd9Sstevel@tonic-gate 
2567c478bd9Sstevel@tonic-gate 	if ((bp->kstat_name = strdup(kstat_name)) == NULL) {
2577c478bd9Sstevel@tonic-gate 		args->dev_walk_status = ENOMEM;
2587c478bd9Sstevel@tonic-gate 		cache_free_bus(bp);
2597c478bd9Sstevel@tonic-gate 		return (NULL);
2607c478bd9Sstevel@tonic-gate 	}
2617c478bd9Sstevel@tonic-gate 
2627c478bd9Sstevel@tonic-gate 	/* if parent node is a bus, get its name */
2637c478bd9Sstevel@tonic-gate 	if ((pnode = get_parent_bus(node, args)) != NULL) {
2647c478bd9Sstevel@tonic-gate 		devpath = di_devfs_path(pnode);
2657c478bd9Sstevel@tonic-gate 		bp->pname = strdup(devpath);
2667c478bd9Sstevel@tonic-gate 		di_devfs_path_free((void *) devpath);
2677c478bd9Sstevel@tonic-gate 		if (bp->pname == NULL) {
2687c478bd9Sstevel@tonic-gate 			args->dev_walk_status = ENOMEM;
2697c478bd9Sstevel@tonic-gate 			cache_free_bus(bp);
2707c478bd9Sstevel@tonic-gate 			return (NULL);
2717c478bd9Sstevel@tonic-gate 		}
2727c478bd9Sstevel@tonic-gate 
2737c478bd9Sstevel@tonic-gate 	} else {
2747c478bd9Sstevel@tonic-gate 		bp->pname = NULL;
2757c478bd9Sstevel@tonic-gate 	}
2767c478bd9Sstevel@tonic-gate 
2777c478bd9Sstevel@tonic-gate 	bp->freq = get_prom_int("clock-frequency", node, args->ph);
2787c478bd9Sstevel@tonic-gate 
2797c478bd9Sstevel@tonic-gate 	bp->controllers = (controller_t **)calloc(1, sizeof (controller_t *));
2807c478bd9Sstevel@tonic-gate 	if (bp->controllers == NULL) {
2817c478bd9Sstevel@tonic-gate 		args->dev_walk_status = ENOMEM;
2827c478bd9Sstevel@tonic-gate 		cache_free_bus(bp);
2837c478bd9Sstevel@tonic-gate 		return (NULL);
2847c478bd9Sstevel@tonic-gate 	}
2857c478bd9Sstevel@tonic-gate 	bp->controllers[0] = NULL;
2867c478bd9Sstevel@tonic-gate 
2877c478bd9Sstevel@tonic-gate 	if (cp != NULL) {
2887c478bd9Sstevel@tonic-gate 		if (add_ptr2array(cp, (void ***)&bp->controllers) != 0) {
2897c478bd9Sstevel@tonic-gate 			args->dev_walk_status = ENOMEM;
2907c478bd9Sstevel@tonic-gate 			return (NULL);
2917c478bd9Sstevel@tonic-gate 		}
2927c478bd9Sstevel@tonic-gate 	}
2937c478bd9Sstevel@tonic-gate 
2947c478bd9Sstevel@tonic-gate 	bp->next = args->bus_listp;
2957c478bd9Sstevel@tonic-gate 	args->bus_listp = bp;
2967c478bd9Sstevel@tonic-gate 
2977c478bd9Sstevel@tonic-gate 	return (bp);
2987c478bd9Sstevel@tonic-gate }
2997c478bd9Sstevel@tonic-gate 
3007c478bd9Sstevel@tonic-gate static int
3017c478bd9Sstevel@tonic-gate add_cluster_devs(di_node_t node, di_minor_t minor, void *arg)
3027c478bd9Sstevel@tonic-gate {
3037c478bd9Sstevel@tonic-gate 	struct search_args	*args;
3047c478bd9Sstevel@tonic-gate 	char			*devpath;
3057c478bd9Sstevel@tonic-gate 	char			slice_path[MAXPATHLEN];
3067c478bd9Sstevel@tonic-gate 	int			result = DI_WALK_CONTINUE;
3077c478bd9Sstevel@tonic-gate 
3087c478bd9Sstevel@tonic-gate 	if (!is_cluster_disk(node, minor)) {
3097c478bd9Sstevel@tonic-gate 		return (DI_WALK_CONTINUE);
3107c478bd9Sstevel@tonic-gate 	}
3117c478bd9Sstevel@tonic-gate 
3127c478bd9Sstevel@tonic-gate 	args = (struct search_args *)arg;
3137c478bd9Sstevel@tonic-gate 
3147c478bd9Sstevel@tonic-gate 	if (dm_debug > 1) {
3157c478bd9Sstevel@tonic-gate 		/* This is all just debugging code */
3167c478bd9Sstevel@tonic-gate 		char	*devpath;
3177c478bd9Sstevel@tonic-gate 		char	dev_name[MAXPATHLEN];
3187c478bd9Sstevel@tonic-gate 
3197c478bd9Sstevel@tonic-gate 		devpath = di_devfs_path(node);
3207c478bd9Sstevel@tonic-gate 		(void) snprintf(dev_name, sizeof (dev_name), "%s:%s", devpath,
3217c478bd9Sstevel@tonic-gate 		    di_minor_name(minor));
3227c478bd9Sstevel@tonic-gate 		di_devfs_path_free((void *) devpath);
3237c478bd9Sstevel@tonic-gate 
3247c478bd9Sstevel@tonic-gate 		(void) fprintf(stderr, "INFO: cluster dev: %s\n", dev_name);
3257c478bd9Sstevel@tonic-gate 	}
3267c478bd9Sstevel@tonic-gate 
3277c478bd9Sstevel@tonic-gate 	args->node = node;
3287c478bd9Sstevel@tonic-gate 	args->minor = minor;
3297c478bd9Sstevel@tonic-gate 	args->dev_walk_status = 0;
3307c478bd9Sstevel@tonic-gate 
3317c478bd9Sstevel@tonic-gate 	/*
3327c478bd9Sstevel@tonic-gate 	 * Fix the devpaths for the cluster drive.
3337c478bd9Sstevel@tonic-gate 	 *
3347c478bd9Sstevel@tonic-gate 	 * We will come through here once for each raw slice device name.
3357c478bd9Sstevel@tonic-gate 	 */
3367c478bd9Sstevel@tonic-gate 	devpath = di_devfs_path(node);
3377c478bd9Sstevel@tonic-gate 	(void) snprintf(slice_path, sizeof (slice_path), "%s:%s", devpath,
3387c478bd9Sstevel@tonic-gate 	    di_minor_name(minor));
3397c478bd9Sstevel@tonic-gate 	di_devfs_path_free((void *) devpath);
3407c478bd9Sstevel@tonic-gate 
3417c478bd9Sstevel@tonic-gate 	/* Walk the /dev tree to get the cluster devlinks. */
3427c478bd9Sstevel@tonic-gate 	(void) di_devlink_walk(args->handle, DEVLINK_DID_REGEX, slice_path,
3437c478bd9Sstevel@tonic-gate 	    DI_PRIMARY_LINK, arg, fix_cluster_devpath);
3447c478bd9Sstevel@tonic-gate 
3457c478bd9Sstevel@tonic-gate 	if (args->dev_walk_status != 0) {
3467c478bd9Sstevel@tonic-gate 		result = DI_WALK_TERMINATE;
3477c478bd9Sstevel@tonic-gate 	}
3487c478bd9Sstevel@tonic-gate 
3497c478bd9Sstevel@tonic-gate 	return (result);
3507c478bd9Sstevel@tonic-gate }
3517c478bd9Sstevel@tonic-gate 
3527c478bd9Sstevel@tonic-gate static controller_t *
3537c478bd9Sstevel@tonic-gate add_controller(struct search_args *args, di_node_t node, di_minor_t minor)
3547c478bd9Sstevel@tonic-gate {
3557c478bd9Sstevel@tonic-gate 	char		*devpath;
3567c478bd9Sstevel@tonic-gate 	controller_t	*cp;
3577c478bd9Sstevel@tonic-gate 	char		kstat_name[MAXPATHLEN];
3587c478bd9Sstevel@tonic-gate 	char		*c_type = DM_CTYPE_UNKNOWN;
3597c478bd9Sstevel@tonic-gate 
3607c478bd9Sstevel@tonic-gate 	devpath = di_devfs_path(node);
3617c478bd9Sstevel@tonic-gate 
3627c478bd9Sstevel@tonic-gate 	if ((cp = find_controller(args, devpath)) != NULL) {
3637c478bd9Sstevel@tonic-gate 		di_devfs_path_free((void *) devpath);
3647c478bd9Sstevel@tonic-gate 		return (cp);
3657c478bd9Sstevel@tonic-gate 	}
3667c478bd9Sstevel@tonic-gate 
3677c478bd9Sstevel@tonic-gate 	/* Special handling for fp attachment node. */
3687c478bd9Sstevel@tonic-gate 	if (strcmp(di_node_name(node), "fp") == 0) {
3697c478bd9Sstevel@tonic-gate 		di_node_t pnode;
3707c478bd9Sstevel@tonic-gate 
3717c478bd9Sstevel@tonic-gate 		pnode = di_parent_node(node);
3727c478bd9Sstevel@tonic-gate 		if (pnode != DI_NODE_NIL) {
3737c478bd9Sstevel@tonic-gate 			di_devfs_path_free((void *) devpath);
3747c478bd9Sstevel@tonic-gate 			devpath = di_devfs_path(pnode);
3757c478bd9Sstevel@tonic-gate 
3767c478bd9Sstevel@tonic-gate 			if ((cp = find_controller(args, devpath)) != NULL) {
3777c478bd9Sstevel@tonic-gate 				di_devfs_path_free((void *) devpath);
3787c478bd9Sstevel@tonic-gate 				return (cp);
3797c478bd9Sstevel@tonic-gate 			}
3807c478bd9Sstevel@tonic-gate 
3817c478bd9Sstevel@tonic-gate 			/* not in the list, create it */
3827c478bd9Sstevel@tonic-gate 			node = pnode;
3837c478bd9Sstevel@tonic-gate 			c_type = DM_CTYPE_FIBRE;
3847c478bd9Sstevel@tonic-gate 		}
3857c478bd9Sstevel@tonic-gate 	}
3867c478bd9Sstevel@tonic-gate 
3877c478bd9Sstevel@tonic-gate 	if (dm_debug) {
3887c478bd9Sstevel@tonic-gate 		(void) fprintf(stderr, "INFO: add_controller %s\n", devpath);
3897c478bd9Sstevel@tonic-gate 	}
3907c478bd9Sstevel@tonic-gate 
3917c478bd9Sstevel@tonic-gate 	cp = (controller_t *)calloc(1, sizeof (controller_t));
3927c478bd9Sstevel@tonic-gate 	if (cp == NULL) {
3937c478bd9Sstevel@tonic-gate 		return (NULL);
3947c478bd9Sstevel@tonic-gate 	}
3957c478bd9Sstevel@tonic-gate 
3967c478bd9Sstevel@tonic-gate 	cp->name = strdup(devpath);
3977c478bd9Sstevel@tonic-gate 	di_devfs_path_free((void *) devpath);
3987c478bd9Sstevel@tonic-gate 	if (cp->name == NULL) {
3997c478bd9Sstevel@tonic-gate 		cache_free_controller(cp);
4007c478bd9Sstevel@tonic-gate 		return (NULL);
4017c478bd9Sstevel@tonic-gate 	}
4027c478bd9Sstevel@tonic-gate 
4037c478bd9Sstevel@tonic-gate 	if (strcmp(c_type, DM_CTYPE_UNKNOWN) == 0) {
4047c478bd9Sstevel@tonic-gate 		c_type = ctype(node, minor);
4057c478bd9Sstevel@tonic-gate 	}
4067c478bd9Sstevel@tonic-gate 	cp->ctype = c_type;
4077c478bd9Sstevel@tonic-gate 
4087c478bd9Sstevel@tonic-gate 	(void) snprintf(kstat_name, sizeof (kstat_name), "%s%d",
4097c478bd9Sstevel@tonic-gate 	    di_node_name(node), di_instance(node));
4107c478bd9Sstevel@tonic-gate 
4117c478bd9Sstevel@tonic-gate 	if ((cp->kstat_name = strdup(kstat_name)) == NULL) {
4127c478bd9Sstevel@tonic-gate 		cache_free_controller(cp);
4137c478bd9Sstevel@tonic-gate 		return (NULL);
4147c478bd9Sstevel@tonic-gate 	}
4157c478bd9Sstevel@tonic-gate 
4167c478bd9Sstevel@tonic-gate 	if (libdiskmgt_str_eq(cp->ctype, "scsi")) {
4177c478bd9Sstevel@tonic-gate 		cp->scsi_options = get_prop(SCSI_OPTIONS_PROP, node);
4187c478bd9Sstevel@tonic-gate 	}
4197c478bd9Sstevel@tonic-gate 
4207c478bd9Sstevel@tonic-gate 	if (libdiskmgt_str_eq(di_node_name(node), "scsi_vhci")) {
4217c478bd9Sstevel@tonic-gate 		cp->multiplex = 1;
4227c478bd9Sstevel@tonic-gate 	} else {
4237c478bd9Sstevel@tonic-gate 		cp->multiplex = 0;
4247c478bd9Sstevel@tonic-gate 	}
4257c478bd9Sstevel@tonic-gate 
4267c478bd9Sstevel@tonic-gate 	cp->freq = get_prom_int("clock-frequency", node, args->ph);
4277c478bd9Sstevel@tonic-gate 
4287c478bd9Sstevel@tonic-gate 	cp->disks = (disk_t **)calloc(1, sizeof (disk_t *));
4297c478bd9Sstevel@tonic-gate 	if (cp->disks == NULL) {
4307c478bd9Sstevel@tonic-gate 		cache_free_controller(cp);
4317c478bd9Sstevel@tonic-gate 		return (NULL);
4327c478bd9Sstevel@tonic-gate 	}
4337c478bd9Sstevel@tonic-gate 	cp->disks[0] = NULL;
4347c478bd9Sstevel@tonic-gate 
4357c478bd9Sstevel@tonic-gate 	cp->next = args->controller_listp;
4367c478bd9Sstevel@tonic-gate 	args->controller_listp = cp;
4377c478bd9Sstevel@tonic-gate 
4387c478bd9Sstevel@tonic-gate 	cp->bus = add_bus(args, di_parent_node(node),
4397c478bd9Sstevel@tonic-gate 	    di_minor_next(di_parent_node(node), NULL), cp);
4407c478bd9Sstevel@tonic-gate 
4417c478bd9Sstevel@tonic-gate 	return (cp);
4427c478bd9Sstevel@tonic-gate }
4437c478bd9Sstevel@tonic-gate 
4447c478bd9Sstevel@tonic-gate static int
4457c478bd9Sstevel@tonic-gate add_devpath(di_devlink_t devlink, void *arg)
4467c478bd9Sstevel@tonic-gate {
4477c478bd9Sstevel@tonic-gate 	struct search_args *args;
4487c478bd9Sstevel@tonic-gate 	char		*devidstr;
4497c478bd9Sstevel@tonic-gate 	disk_t		*diskp;
4507c478bd9Sstevel@tonic-gate 	char		kernel_name[MAXPATHLEN];
4517c478bd9Sstevel@tonic-gate 
4527c478bd9Sstevel@tonic-gate 	args =	(struct search_args *)arg;
4537c478bd9Sstevel@tonic-gate 
4547c478bd9Sstevel@tonic-gate 	/*
4557c478bd9Sstevel@tonic-gate 	 * Get the diskp value from calling have_disk. Can either be found
4567c478bd9Sstevel@tonic-gate 	 * by kernel name or devid.
4577c478bd9Sstevel@tonic-gate 	 */
4587c478bd9Sstevel@tonic-gate 
4597c478bd9Sstevel@tonic-gate 	diskp = NULL;
4607c478bd9Sstevel@tonic-gate 	devidstr = get_str_prop(DEVICE_ID_PROP, args->node);
4617c478bd9Sstevel@tonic-gate 	(void) snprintf(kernel_name, sizeof (kernel_name), "%s%d",
4627c478bd9Sstevel@tonic-gate 	    di_node_name(args->node), di_instance(args->node));
4637c478bd9Sstevel@tonic-gate 
4647c478bd9Sstevel@tonic-gate 	(void) have_disk(args, devidstr, kernel_name, &diskp);
4657c478bd9Sstevel@tonic-gate 
4667c478bd9Sstevel@tonic-gate 	/*
4677c478bd9Sstevel@tonic-gate 	 * The devlink_path is usually of the form /dev/rdsk/c0t0d0s0.
4687c478bd9Sstevel@tonic-gate 	 * For diskettes it is /dev/rdiskette*.
4697c478bd9Sstevel@tonic-gate 	 * On Intel we would also get each fdisk partition as well
4707c478bd9Sstevel@tonic-gate 	 * (e.g. /dev/rdsk/c0t0d0p0).
4717c478bd9Sstevel@tonic-gate 	 */
4727c478bd9Sstevel@tonic-gate 	if (diskp != NULL) {
4737c478bd9Sstevel@tonic-gate 		alias_t	*ap;
4747c478bd9Sstevel@tonic-gate 		char	*devlink_path;
4757c478bd9Sstevel@tonic-gate 
4767c478bd9Sstevel@tonic-gate 		if (diskp->drv_type != DM_DT_FLOPPY) {
4777c478bd9Sstevel@tonic-gate 			/*
478*42f64fdbSSarah Jelinek 			 * Add other controllers for multipath disks.
479*42f64fdbSSarah Jelinek 			 * This will have no effect if the controller
480*42f64fdbSSarah Jelinek 			 * relationship is already set up.
4817c478bd9Sstevel@tonic-gate 			 */
4827c478bd9Sstevel@tonic-gate 			if (add_disk2controller(diskp, args) != 0) {
4837c478bd9Sstevel@tonic-gate 				args->dev_walk_status = ENOMEM;
4847c478bd9Sstevel@tonic-gate 			}
4857c478bd9Sstevel@tonic-gate 		}
4867c478bd9Sstevel@tonic-gate 
4877c478bd9Sstevel@tonic-gate 		(void) snprintf(kernel_name, sizeof (kernel_name), "%s%d",
4887c478bd9Sstevel@tonic-gate 		    di_node_name(args->node), di_instance(args->node));
4897c478bd9Sstevel@tonic-gate 		devlink_path = (char *)di_devlink_path(devlink);
4907c478bd9Sstevel@tonic-gate 
4917c478bd9Sstevel@tonic-gate 		if (dm_debug > 1) {
492*42f64fdbSSarah Jelinek 			(void) fprintf(stderr,
493*42f64fdbSSarah Jelinek 			    "INFO:     devpath %s\n", devlink_path);
4947c478bd9Sstevel@tonic-gate 		}
4957c478bd9Sstevel@tonic-gate 
4967c478bd9Sstevel@tonic-gate 		if ((ap = find_alias(diskp, kernel_name)) == NULL) {
497*42f64fdbSSarah Jelinek 			if (new_alias(diskp, kernel_name, devlink_path,
498*42f64fdbSSarah Jelinek 			    args) != 0) {
4997c478bd9Sstevel@tonic-gate 				args->dev_walk_status = ENOMEM;
5007c478bd9Sstevel@tonic-gate 			}
5017c478bd9Sstevel@tonic-gate 		} else {
5027c478bd9Sstevel@tonic-gate 			/*
503*42f64fdbSSarah Jelinek 			 * It is possible that we have already added this
504*42f64fdbSSarah Jelinek 			 * devpath.  Do not add it again. new_devpath will
505*42f64fdbSSarah Jelinek 			 * return a 0 if found, and not add the path.
5067c478bd9Sstevel@tonic-gate 			 */
5077c478bd9Sstevel@tonic-gate 			if (new_devpath(ap, devlink_path) != 0) {
5087c478bd9Sstevel@tonic-gate 				args->dev_walk_status = ENOMEM;
5097c478bd9Sstevel@tonic-gate 			}
5107c478bd9Sstevel@tonic-gate 		}
5117c478bd9Sstevel@tonic-gate 	}
5127c478bd9Sstevel@tonic-gate 
5137c478bd9Sstevel@tonic-gate 	return (DI_WALK_CONTINUE);
5147c478bd9Sstevel@tonic-gate }
5157c478bd9Sstevel@tonic-gate 
5167c478bd9Sstevel@tonic-gate static int
5177c478bd9Sstevel@tonic-gate add_devs(di_node_t node, di_minor_t minor, void *arg)
5187c478bd9Sstevel@tonic-gate {
5197c478bd9Sstevel@tonic-gate 	struct search_args	*args;
5207c478bd9Sstevel@tonic-gate 	int result = DI_WALK_CONTINUE;
5217c478bd9Sstevel@tonic-gate 
5227c478bd9Sstevel@tonic-gate 	args = (struct search_args *)arg;
5237c478bd9Sstevel@tonic-gate 
5247c478bd9Sstevel@tonic-gate 	if (dm_debug > 1) {
5257c478bd9Sstevel@tonic-gate 		/* This is all just debugging code */
5267c478bd9Sstevel@tonic-gate 		char	*devpath;
5277c478bd9Sstevel@tonic-gate 		char	dev_name[MAXPATHLEN];
5287c478bd9Sstevel@tonic-gate 
5297c478bd9Sstevel@tonic-gate 		devpath = di_devfs_path(node);
5307c478bd9Sstevel@tonic-gate 		(void) snprintf(dev_name, sizeof (dev_name), "%s:%s", devpath,
5317c478bd9Sstevel@tonic-gate 		    di_minor_name(minor));
5327c478bd9Sstevel@tonic-gate 		di_devfs_path_free((void *) devpath);
5337c478bd9Sstevel@tonic-gate 
5347c478bd9Sstevel@tonic-gate 		(void) fprintf(stderr,
5357c478bd9Sstevel@tonic-gate 		    "INFO: dev: %s, node: %s%d, minor: 0x%x, type: %s\n",
536*42f64fdbSSarah Jelinek 		    dev_name, di_node_name(node), di_instance(node),
5377c478bd9Sstevel@tonic-gate 		    di_minor_spectype(minor),
5387c478bd9Sstevel@tonic-gate 		    (di_minor_nodetype(minor) != NULL ?
5397c478bd9Sstevel@tonic-gate 		    di_minor_nodetype(minor) : "NULL"));
5407c478bd9Sstevel@tonic-gate 	}
5417c478bd9Sstevel@tonic-gate 
5427c478bd9Sstevel@tonic-gate 	if (bus_type(node, minor, args->ph) != NULL) {
5437c478bd9Sstevel@tonic-gate 		if (add_bus(args, node, minor, NULL) == NULL) {
5447c478bd9Sstevel@tonic-gate 			args->dev_walk_status = ENOMEM;
5457c478bd9Sstevel@tonic-gate 			result = DI_WALK_TERMINATE;
5467c478bd9Sstevel@tonic-gate 		}
5477c478bd9Sstevel@tonic-gate 
5487c478bd9Sstevel@tonic-gate 	} else if (is_HBA(node, minor)) {
5497c478bd9Sstevel@tonic-gate 		if (add_controller(args, node, minor) == NULL) {
5507c478bd9Sstevel@tonic-gate 			args->dev_walk_status = ENOMEM;
5517c478bd9Sstevel@tonic-gate 			result = DI_WALK_TERMINATE;
5527c478bd9Sstevel@tonic-gate 		}
5537c478bd9Sstevel@tonic-gate 
554e7cbe64fSgw25295 	} else if (di_minor_spectype(minor) == S_IFCHR &&
555e7cbe64fSgw25295 	    (is_drive(minor) || is_zvol(node, minor))) {
5567c478bd9Sstevel@tonic-gate 		char	*devidstr;
5577c478bd9Sstevel@tonic-gate 		char	kernel_name[MAXPATHLEN];
5587c478bd9Sstevel@tonic-gate 		disk_t	*diskp;
5597c478bd9Sstevel@tonic-gate 
5607c478bd9Sstevel@tonic-gate 		(void) snprintf(kernel_name, sizeof (kernel_name), "%s%d",
5617c478bd9Sstevel@tonic-gate 		    di_node_name(node), di_instance(node));
5627c478bd9Sstevel@tonic-gate 		devidstr = get_str_prop(DEVICE_ID_PROP, node);
5637c478bd9Sstevel@tonic-gate 
5647c478bd9Sstevel@tonic-gate 		args->node = node;
5657c478bd9Sstevel@tonic-gate 		args->minor = minor;
566*42f64fdbSSarah Jelinek 		/*
567*42f64fdbSSarah Jelinek 		 * Check if we already got this disk and
568*42f64fdbSSarah Jelinek 		 * this is another slice.
569*42f64fdbSSarah Jelinek 		 */
5707c478bd9Sstevel@tonic-gate 		if (!have_disk(args, devidstr, kernel_name, &diskp)) {
5717c478bd9Sstevel@tonic-gate 			args->dev_walk_status = 0;
572*42f64fdbSSarah Jelinek 			/*
573*42f64fdbSSarah Jelinek 			 * This is a newly found disk, create the
574*42f64fdbSSarah Jelinek 			 * disk structure.
575*42f64fdbSSarah Jelinek 			 */
5767c478bd9Sstevel@tonic-gate 			diskp = create_disk(devidstr, kernel_name, args);
5777c478bd9Sstevel@tonic-gate 			if (diskp == NULL) {
5787c478bd9Sstevel@tonic-gate 				args->dev_walk_status = ENOMEM;
5797c478bd9Sstevel@tonic-gate 			}
5807c478bd9Sstevel@tonic-gate 
5817c478bd9Sstevel@tonic-gate 			if (diskp->drv_type != DM_DT_FLOPPY) {
5827c478bd9Sstevel@tonic-gate 				/* add the controller relationship */
5837c478bd9Sstevel@tonic-gate 				if (args->dev_walk_status == 0) {
584*42f64fdbSSarah Jelinek 					if (add_disk2controller(diskp,
585*42f64fdbSSarah Jelinek 					    args) != 0) {
5867c478bd9Sstevel@tonic-gate 						args->dev_walk_status = ENOMEM;
5877c478bd9Sstevel@tonic-gate 					}
5887c478bd9Sstevel@tonic-gate 				}
5897c478bd9Sstevel@tonic-gate 			}
5907c478bd9Sstevel@tonic-gate 		}
591681d9761SEric Taylor 		if (is_zvol(node, minor)) {
592681d9761SEric Taylor 			char zvdsk[MAXNAMELEN];
593681d9761SEric Taylor 			char *str;
594681d9761SEric Taylor 			alias_t *ap;
595681d9761SEric Taylor 
596681d9761SEric Taylor 			if (di_prop_lookup_strings(di_minor_devt(minor),
597681d9761SEric Taylor 			    node, "name", &str) == -1)
598681d9761SEric Taylor 				return (DI_WALK_CONTINUE);
599681d9761SEric Taylor 			(void) snprintf(zvdsk, MAXNAMELEN, "/dev/zvol/rdsk/%s",
600681d9761SEric Taylor 			    str);
601681d9761SEric Taylor 			if ((ap = find_alias(diskp, kernel_name)) == NULL) {
602681d9761SEric Taylor 				if (new_alias(diskp, kernel_name,
603681d9761SEric Taylor 				    zvdsk, args) != 0) {
604681d9761SEric Taylor 					args->dev_walk_status = ENOMEM;
605681d9761SEric Taylor 				}
606681d9761SEric Taylor 			} else {
607681d9761SEric Taylor 				/*
608*42f64fdbSSarah Jelinek 				 * It is possible that we have already added
609*42f64fdbSSarah Jelinek 				 * this devpath.
610*42f64fdbSSarah Jelinek 				 * Do not add it again. new_devpath will
611*42f64fdbSSarah Jelinek 				 * return a 0 if found, and not add the path.
612681d9761SEric Taylor 				 */
613681d9761SEric Taylor 				if (new_devpath(ap, zvdsk) != 0) {
614681d9761SEric Taylor 					args->dev_walk_status = ENOMEM;
615681d9761SEric Taylor 				}
616681d9761SEric Taylor 			}
617681d9761SEric Taylor 		}
6187c478bd9Sstevel@tonic-gate 
6197c478bd9Sstevel@tonic-gate 		/* Add the devpaths for the drive. */
6207c478bd9Sstevel@tonic-gate 		if (args->dev_walk_status == 0) {
6217c478bd9Sstevel@tonic-gate 			char	*devpath;
6227c478bd9Sstevel@tonic-gate 			char	slice_path[MAXPATHLEN];
6237c478bd9Sstevel@tonic-gate 			char	*pattern;
6247c478bd9Sstevel@tonic-gate 
6257c478bd9Sstevel@tonic-gate 			/*
626*42f64fdbSSarah Jelinek 			 * We will come through here once for each of
627*42f64fdbSSarah Jelinek 			 * the raw slice device names.
6287c478bd9Sstevel@tonic-gate 			 */
6297c478bd9Sstevel@tonic-gate 			devpath = di_devfs_path(node);
630*42f64fdbSSarah Jelinek 			(void) snprintf(slice_path,
631*42f64fdbSSarah Jelinek 			    sizeof (slice_path), "%s:%s",
6327c478bd9Sstevel@tonic-gate 			    devpath, di_minor_name(minor));
6337c478bd9Sstevel@tonic-gate 			di_devfs_path_free((void *) devpath);
6347c478bd9Sstevel@tonic-gate 
635*42f64fdbSSarah Jelinek 			if (libdiskmgt_str_eq(di_minor_nodetype(minor),
636*42f64fdbSSarah Jelinek 			    DDI_NT_FD)) {
6377c478bd9Sstevel@tonic-gate 				pattern = DEVLINK_FLOPPY_REGEX;
6387c478bd9Sstevel@tonic-gate 			} else {
6397c478bd9Sstevel@tonic-gate 				pattern = DEVLINK_REGEX;
6407c478bd9Sstevel@tonic-gate 			}
6417c478bd9Sstevel@tonic-gate 
6427c478bd9Sstevel@tonic-gate 			/* Walk the /dev tree to get the devlinks. */
643*42f64fdbSSarah Jelinek 			(void) di_devlink_walk(args->handle, pattern,
644*42f64fdbSSarah Jelinek 			    slice_path, DI_PRIMARY_LINK, arg, add_devpath);
6457c478bd9Sstevel@tonic-gate 		}
6467c478bd9Sstevel@tonic-gate 
6477c478bd9Sstevel@tonic-gate 		if (args->dev_walk_status != 0) {
6487c478bd9Sstevel@tonic-gate 			result = DI_WALK_TERMINATE;
6497c478bd9Sstevel@tonic-gate 		}
6507c478bd9Sstevel@tonic-gate 	}
6517c478bd9Sstevel@tonic-gate 
6527c478bd9Sstevel@tonic-gate 	return (result);
6537c478bd9Sstevel@tonic-gate }
6547c478bd9Sstevel@tonic-gate 
6557c478bd9Sstevel@tonic-gate static int
6567c478bd9Sstevel@tonic-gate add_disk2controller(disk_t *diskp, struct search_args *args)
6577c478bd9Sstevel@tonic-gate {
6587c478bd9Sstevel@tonic-gate 	di_node_t	pnode;
6597c478bd9Sstevel@tonic-gate 	controller_t	*cp;
6607c478bd9Sstevel@tonic-gate 	di_minor_t	minor;
6617c478bd9Sstevel@tonic-gate 	di_node_t	node;
6627c478bd9Sstevel@tonic-gate 	int		i;
6637c478bd9Sstevel@tonic-gate 
6647c478bd9Sstevel@tonic-gate 	node = args->node;
6657c478bd9Sstevel@tonic-gate 
6667c478bd9Sstevel@tonic-gate 	pnode = di_parent_node(node);
6677c478bd9Sstevel@tonic-gate 	if (pnode == DI_NODE_NIL) {
6687c478bd9Sstevel@tonic-gate 		return (0);
6697c478bd9Sstevel@tonic-gate 	}
6707c478bd9Sstevel@tonic-gate 
6717c478bd9Sstevel@tonic-gate 	minor = di_minor_next(pnode, NULL);
6727c478bd9Sstevel@tonic-gate 	if (minor == NULL) {
6737c478bd9Sstevel@tonic-gate 		return (0);
6747c478bd9Sstevel@tonic-gate 	}
6757c478bd9Sstevel@tonic-gate 
6767c478bd9Sstevel@tonic-gate 	if ((cp = add_controller(args, pnode, minor)) == NULL) {
6777c478bd9Sstevel@tonic-gate 		return (ENOMEM);
6787c478bd9Sstevel@tonic-gate 	}
6797c478bd9Sstevel@tonic-gate 
6807c478bd9Sstevel@tonic-gate 	/* check if the disk <-> ctrl assoc is already there */
6817c478bd9Sstevel@tonic-gate 	for (i = 0; diskp->controllers[i]; i++) {
6827c478bd9Sstevel@tonic-gate 		if (cp == diskp->controllers[i]) {
6837c478bd9Sstevel@tonic-gate 			return (0);
6847c478bd9Sstevel@tonic-gate 		}
6857c478bd9Sstevel@tonic-gate 	}
6867c478bd9Sstevel@tonic-gate 
6877c478bd9Sstevel@tonic-gate 	/* this is a new controller for this disk */
6887c478bd9Sstevel@tonic-gate 
6897c478bd9Sstevel@tonic-gate 	/* add the disk to the controlller */
6907c478bd9Sstevel@tonic-gate 	if (add_ptr2array(diskp, (void ***)&cp->disks) != 0) {
6917c478bd9Sstevel@tonic-gate 		return (ENOMEM);
6927c478bd9Sstevel@tonic-gate 	}
6937c478bd9Sstevel@tonic-gate 
6947c478bd9Sstevel@tonic-gate 	/* add the controlller to the disk */
6957c478bd9Sstevel@tonic-gate 	if (add_ptr2array(cp, (void ***)&diskp->controllers) != 0) {
6967c478bd9Sstevel@tonic-gate 		return (ENOMEM);
6977c478bd9Sstevel@tonic-gate 	}
6987c478bd9Sstevel@tonic-gate 
6997c478bd9Sstevel@tonic-gate 	/*
7007c478bd9Sstevel@tonic-gate 	 * Set up paths for mpxio controlled drives.
7017c478bd9Sstevel@tonic-gate 	 */
7027c478bd9Sstevel@tonic-gate 	if (libdiskmgt_str_eq(di_node_name(pnode), "scsi_vhci")) {
7037c478bd9Sstevel@tonic-gate 		/* note: mpxio di_path stuff is all consolidation private */
7047c478bd9Sstevel@tonic-gate 		di_path_t   pi = DI_PATH_NIL;
7057c478bd9Sstevel@tonic-gate 
706*42f64fdbSSarah Jelinek 		while (
707*42f64fdbSSarah Jelinek 		    (pi = di_path_client_next_path(node, pi)) != DI_PATH_NIL) {
7087c478bd9Sstevel@tonic-gate 			int	cnt;
7097c478bd9Sstevel@tonic-gate 			uchar_t	*bytes;
7107c478bd9Sstevel@tonic-gate 			char	str[MAXPATHLEN];
7117c478bd9Sstevel@tonic-gate 			char	*wwn;
7127c478bd9Sstevel@tonic-gate 
7137c478bd9Sstevel@tonic-gate 			di_node_t phci_node = di_path_phci_node(pi);
7147c478bd9Sstevel@tonic-gate 
7157c478bd9Sstevel@tonic-gate 			/* get the node wwn */
7167c478bd9Sstevel@tonic-gate 			cnt = di_path_prop_lookup_bytes(pi, WWN_PROP, &bytes);
7177c478bd9Sstevel@tonic-gate 			wwn = NULL;
7187c478bd9Sstevel@tonic-gate 			if (cnt > 0) {
7197c478bd9Sstevel@tonic-gate 				int	i;
7207c478bd9Sstevel@tonic-gate 				str[0] = 0;
7217c478bd9Sstevel@tonic-gate 
722*42f64fdbSSarah Jelinek 				for (i = 0; i < cnt; i++) {
723*42f64fdbSSarah Jelinek 					/*
724*42f64fdbSSarah Jelinek 					 * A byte is only 2 hex chars + null.
725*42f64fdbSSarah Jelinek 					 */
726*42f64fdbSSarah Jelinek 					char bstr[8];
727*42f64fdbSSarah Jelinek 
728*42f64fdbSSarah Jelinek 					(void) snprintf(bstr,
729*42f64fdbSSarah Jelinek 					    sizeof (bstr), "%.2x", bytes[i]);
7307c478bd9Sstevel@tonic-gate 					(void) strlcat(str, bstr, sizeof (str));
7317c478bd9Sstevel@tonic-gate 				}
7327c478bd9Sstevel@tonic-gate 				wwn = str;
7337c478bd9Sstevel@tonic-gate 			}
7347c478bd9Sstevel@tonic-gate 
735*42f64fdbSSarah Jelinek 			if (new_path(cp, diskp, phci_node,
736*42f64fdbSSarah Jelinek 			    di_path_state(pi), wwn) == NULL) {
7377c478bd9Sstevel@tonic-gate 				return (ENOMEM);
7387c478bd9Sstevel@tonic-gate 			}
7397c478bd9Sstevel@tonic-gate 		}
7407c478bd9Sstevel@tonic-gate 	}
7417c478bd9Sstevel@tonic-gate 
7427c478bd9Sstevel@tonic-gate 	return (0);
7437c478bd9Sstevel@tonic-gate }
7447c478bd9Sstevel@tonic-gate 
7457c478bd9Sstevel@tonic-gate static int
7467c478bd9Sstevel@tonic-gate add_disk2path(disk_t *dp, path_t *pp, di_path_state_t st, char *wwn)
7477c478bd9Sstevel@tonic-gate {
7487c478bd9Sstevel@tonic-gate 	/* add the disk to the path */
7497c478bd9Sstevel@tonic-gate 	if (add_ptr2array(dp, (void ***)&pp->disks) != 0) {
7507c478bd9Sstevel@tonic-gate 		cache_free_path(pp);
7517c478bd9Sstevel@tonic-gate 		return (0);
7527c478bd9Sstevel@tonic-gate 	}
7537c478bd9Sstevel@tonic-gate 
7547c478bd9Sstevel@tonic-gate 	/* add the path to the disk */
7557c478bd9Sstevel@tonic-gate 	if (add_ptr2array(pp, (void ***)&dp->paths) != 0) {
7567c478bd9Sstevel@tonic-gate 		cache_free_path(pp);
7577c478bd9Sstevel@tonic-gate 		return (0);
7587c478bd9Sstevel@tonic-gate 	}
7597c478bd9Sstevel@tonic-gate 
7607c478bd9Sstevel@tonic-gate 	/* add the path state for this disk */
7617c478bd9Sstevel@tonic-gate 	if (add_int2array(st, &pp->states) != 0) {
7627c478bd9Sstevel@tonic-gate 		cache_free_path(pp);
7637c478bd9Sstevel@tonic-gate 		return (0);
7647c478bd9Sstevel@tonic-gate 	}
7657c478bd9Sstevel@tonic-gate 
7667c478bd9Sstevel@tonic-gate 	/* add the path state for this disk */
7677c478bd9Sstevel@tonic-gate 	if (wwn != NULL) {
7687c478bd9Sstevel@tonic-gate 		char	*wp;
7697c478bd9Sstevel@tonic-gate 
7707c478bd9Sstevel@tonic-gate 		if ((wp = strdup(wwn)) != NULL) {
7717c478bd9Sstevel@tonic-gate 			if (add_ptr2array(wp, (void ***)(&pp->wwns)) != 0) {
7727c478bd9Sstevel@tonic-gate 				cache_free_path(pp);
7737c478bd9Sstevel@tonic-gate 				return (0);
7747c478bd9Sstevel@tonic-gate 			}
7757c478bd9Sstevel@tonic-gate 		}
7767c478bd9Sstevel@tonic-gate 	}
7777c478bd9Sstevel@tonic-gate 
7787c478bd9Sstevel@tonic-gate 	return (1);
7797c478bd9Sstevel@tonic-gate }
7807c478bd9Sstevel@tonic-gate 
7817c478bd9Sstevel@tonic-gate static int
7827c478bd9Sstevel@tonic-gate add_int2array(int p, int **parray)
7837c478bd9Sstevel@tonic-gate {
7847c478bd9Sstevel@tonic-gate 	int		i;
7857c478bd9Sstevel@tonic-gate 	int		cnt;
7867c478bd9Sstevel@tonic-gate 	int		*pa;
7877c478bd9Sstevel@tonic-gate 	int		*new_array;
7887c478bd9Sstevel@tonic-gate 
7897c478bd9Sstevel@tonic-gate 	pa = *parray;
7907c478bd9Sstevel@tonic-gate 
7917c478bd9Sstevel@tonic-gate 	cnt = 0;
7927c478bd9Sstevel@tonic-gate 	if (pa != NULL) {
793602ca9eaScth 		for (; pa[cnt] != -1; cnt++)
794602ca9eaScth 			;
7957c478bd9Sstevel@tonic-gate 	}
7967c478bd9Sstevel@tonic-gate 
7977c478bd9Sstevel@tonic-gate 	new_array = (int *)calloc(cnt + 2, sizeof (int *));
7987c478bd9Sstevel@tonic-gate 	if (new_array == NULL) {
7997c478bd9Sstevel@tonic-gate 		return (ENOMEM);
8007c478bd9Sstevel@tonic-gate 	}
8017c478bd9Sstevel@tonic-gate 
8027c478bd9Sstevel@tonic-gate 	/* copy the existing array */
8037c478bd9Sstevel@tonic-gate 	for (i = 0; i < cnt; i++) {
8047c478bd9Sstevel@tonic-gate 		new_array[i] = pa[i];
8057c478bd9Sstevel@tonic-gate 	}
8067c478bd9Sstevel@tonic-gate 
8077c478bd9Sstevel@tonic-gate 	new_array[i] = p;
8087c478bd9Sstevel@tonic-gate 	new_array[i + 1] = -1;
8097c478bd9Sstevel@tonic-gate 
8107c478bd9Sstevel@tonic-gate 	free(pa);
8117c478bd9Sstevel@tonic-gate 	*parray = new_array;
8127c478bd9Sstevel@tonic-gate 
8137c478bd9Sstevel@tonic-gate 	return (0);
8147c478bd9Sstevel@tonic-gate }
8157c478bd9Sstevel@tonic-gate 
8167c478bd9Sstevel@tonic-gate static int
8177c478bd9Sstevel@tonic-gate add_ptr2array(void *p, void ***parray)
8187c478bd9Sstevel@tonic-gate {
8197c478bd9Sstevel@tonic-gate 	int		i;
8207c478bd9Sstevel@tonic-gate 	int		cnt;
8217c478bd9Sstevel@tonic-gate 	void		**pa;
8227c478bd9Sstevel@tonic-gate 	void		**new_array;
8237c478bd9Sstevel@tonic-gate 
8247c478bd9Sstevel@tonic-gate 	pa = *parray;
8257c478bd9Sstevel@tonic-gate 
8267c478bd9Sstevel@tonic-gate 	cnt = 0;
8277c478bd9Sstevel@tonic-gate 	if (pa != NULL) {
828602ca9eaScth 		for (; pa[cnt]; cnt++)
829602ca9eaScth 			;
8307c478bd9Sstevel@tonic-gate 	}
8317c478bd9Sstevel@tonic-gate 
8327c478bd9Sstevel@tonic-gate 	new_array = (void **)calloc(cnt + 2, sizeof (void *));
8337c478bd9Sstevel@tonic-gate 	if (new_array == NULL) {
8347c478bd9Sstevel@tonic-gate 		return (ENOMEM);
8357c478bd9Sstevel@tonic-gate 	}
8367c478bd9Sstevel@tonic-gate 
8377c478bd9Sstevel@tonic-gate 	/* copy the existing array */
8387c478bd9Sstevel@tonic-gate 	for (i = 0; i < cnt; i++) {
8397c478bd9Sstevel@tonic-gate 		new_array[i] = pa[i];
8407c478bd9Sstevel@tonic-gate 	}
8417c478bd9Sstevel@tonic-gate 
8427c478bd9Sstevel@tonic-gate 	new_array[i] = p;
8437c478bd9Sstevel@tonic-gate 	new_array[i + 1] = NULL;
8447c478bd9Sstevel@tonic-gate 
8457c478bd9Sstevel@tonic-gate 	free(pa);
8467c478bd9Sstevel@tonic-gate 	*parray = new_array;
8477c478bd9Sstevel@tonic-gate 
8487c478bd9Sstevel@tonic-gate 	return (0);
8497c478bd9Sstevel@tonic-gate }
8507c478bd9Sstevel@tonic-gate 
8517c478bd9Sstevel@tonic-gate /*
852*42f64fdbSSarah Jelinek  * This function checks to see if a controller has other associations
853*42f64fdbSSarah Jelinek  * that may be valid. If we are calling this function, we have found that
854*42f64fdbSSarah Jelinek  * a controller for an mpxio device is showing up independently of the
855*42f64fdbSSarah Jelinek  * mpxio controller, noted as /scsi_vhci. This can happen with some FC
856*42f64fdbSSarah Jelinek  * cards that have inbound management devices that show up as well, with
857*42f64fdbSSarah Jelinek  * the real controller data associated. We do not want to display these
858*42f64fdbSSarah Jelinek  * 'devices' as real devices in libdiskmgt.
8597c478bd9Sstevel@tonic-gate  */
860*42f64fdbSSarah Jelinek static void
861*42f64fdbSSarah Jelinek remove_controller(controller_t *cp, controller_t *currp)
8627c478bd9Sstevel@tonic-gate {
863*42f64fdbSSarah Jelinek 	disk_t *dp;
864*42f64fdbSSarah Jelinek 	int	i;
865*42f64fdbSSarah Jelinek 
8667c478bd9Sstevel@tonic-gate 	if (cp == currp) {
867*42f64fdbSSarah Jelinek 		if (dm_debug) {
868*42f64fdbSSarah Jelinek 			(void) fprintf(stderr, "ERROR: removing current"
869*42f64fdbSSarah Jelinek 			    " controller\n");
870*42f64fdbSSarah Jelinek 		}
871*42f64fdbSSarah Jelinek 		return;
8727c478bd9Sstevel@tonic-gate 	}
8737c478bd9Sstevel@tonic-gate 
8747c478bd9Sstevel@tonic-gate 	if (cp->disks != NULL && cp->disks[0] != NULL) {
875*42f64fdbSSarah Jelinek 		if (dm_debug) {
8767c478bd9Sstevel@tonic-gate 			(void) fprintf(stderr,
877*42f64fdbSSarah Jelinek 			    "INFO: removing inbound management controller"
878*42f64fdbSSarah Jelinek 			    " with disk ptrs.\n");
8797c478bd9Sstevel@tonic-gate 		}
880*42f64fdbSSarah Jelinek 		/*
881*42f64fdbSSarah Jelinek 		 * loop through the disks and remove the reference to the
882*42f64fdbSSarah Jelinek 		 * controller for this disk structure. The disk itself
883*42f64fdbSSarah Jelinek 		 * is still a valid device, the controller being removed
884*42f64fdbSSarah Jelinek 		 * is a 'path' so any disk that has a reference to it
885*42f64fdbSSarah Jelinek 		 * as a controller needs to have this reference removed.
886*42f64fdbSSarah Jelinek 		 */
887*42f64fdbSSarah Jelinek 		dp = cp->disks[0];
888*42f64fdbSSarah Jelinek 		while (dp != NULL) {
889*42f64fdbSSarah Jelinek 			for (i = 0; dp->controllers[i]; i++) {
890*42f64fdbSSarah Jelinek 				if (libdiskmgt_str_eq(dp->controllers[i]->name,
891*42f64fdbSSarah Jelinek 				    cp->name)) {
892*42f64fdbSSarah Jelinek 					int j;
893*42f64fdbSSarah Jelinek 
894*42f64fdbSSarah Jelinek 					for (j = i; dp->controllers[j]; j++) {
895*42f64fdbSSarah Jelinek 						dp->controllers[j] =
896*42f64fdbSSarah Jelinek 						    dp->controllers[j + 1];
897*42f64fdbSSarah Jelinek 					}
898*42f64fdbSSarah Jelinek 				}
899*42f64fdbSSarah Jelinek 			}
900*42f64fdbSSarah Jelinek 			dp = dp->next;
901*42f64fdbSSarah Jelinek 		}
902*42f64fdbSSarah Jelinek 	}
903*42f64fdbSSarah Jelinek 	/*
904*42f64fdbSSarah Jelinek 	 * Paths are removed with the call to cache_free_controller()
905*42f64fdbSSarah Jelinek 	 * below.
906*42f64fdbSSarah Jelinek 	 */
9077c478bd9Sstevel@tonic-gate 
9087c478bd9Sstevel@tonic-gate 	if (cp->paths != NULL && cp->paths[0] != NULL) {
909*42f64fdbSSarah Jelinek 		if (dm_debug) {
9107c478bd9Sstevel@tonic-gate 			(void) fprintf(stderr,
911*42f64fdbSSarah Jelinek 			    "INFO: removing inbound management controller"
912*42f64fdbSSarah Jelinek 			    " with path ptrs. \n");
9137c478bd9Sstevel@tonic-gate 		}
9147c478bd9Sstevel@tonic-gate 	}
915*42f64fdbSSarah Jelinek 	cache_free_controller(cp);
9167c478bd9Sstevel@tonic-gate }
9177c478bd9Sstevel@tonic-gate 
9187c478bd9Sstevel@tonic-gate /*
9197c478bd9Sstevel@tonic-gate  * If we have a controller in the list that is really a path then we need to
9207c478bd9Sstevel@tonic-gate  * take that controller out of the list since nodes that are paths are not
9217c478bd9Sstevel@tonic-gate  * considered to be controllers.
9227c478bd9Sstevel@tonic-gate  */
9237c478bd9Sstevel@tonic-gate static void
9247c478bd9Sstevel@tonic-gate clean_paths(struct search_args *args)
9257c478bd9Sstevel@tonic-gate {
9267c478bd9Sstevel@tonic-gate 	controller_t	*cp;
9277c478bd9Sstevel@tonic-gate 
9287c478bd9Sstevel@tonic-gate 	cp = args->controller_listp;
9297c478bd9Sstevel@tonic-gate 	while (cp != NULL) {
9307c478bd9Sstevel@tonic-gate 		path_t	**pp;
9317c478bd9Sstevel@tonic-gate 
9327c478bd9Sstevel@tonic-gate 		pp = cp->paths;
9337c478bd9Sstevel@tonic-gate 		if (pp != NULL) {
9347c478bd9Sstevel@tonic-gate 			int i;
9357c478bd9Sstevel@tonic-gate 
9367c478bd9Sstevel@tonic-gate 			for (i = 0; pp[i]; i++) {
937*42f64fdbSSarah Jelinek 				remove_invalid_controller(pp[i]->name, cp,
938*42f64fdbSSarah Jelinek 				    args);
9397c478bd9Sstevel@tonic-gate 			}
9407c478bd9Sstevel@tonic-gate 		}
9417c478bd9Sstevel@tonic-gate 		cp = cp->next;
9427c478bd9Sstevel@tonic-gate 	}
9437c478bd9Sstevel@tonic-gate }
9447c478bd9Sstevel@tonic-gate 
9457c478bd9Sstevel@tonic-gate static disk_t *
9467c478bd9Sstevel@tonic-gate create_disk(char *deviceid, char *kernel_name, struct search_args *args)
9477c478bd9Sstevel@tonic-gate {
9487c478bd9Sstevel@tonic-gate 	disk_t	*diskp;
9497c478bd9Sstevel@tonic-gate 	char	*type;
9507c478bd9Sstevel@tonic-gate 	char	*prod_id;
9517c478bd9Sstevel@tonic-gate 	char	*vendor_id;
9527c478bd9Sstevel@tonic-gate 
9537c478bd9Sstevel@tonic-gate 	if (dm_debug) {
9547c478bd9Sstevel@tonic-gate 		(void) fprintf(stderr, "INFO: create_disk %s\n", kernel_name);
9557c478bd9Sstevel@tonic-gate 	}
9567c478bd9Sstevel@tonic-gate 
9577c478bd9Sstevel@tonic-gate 	diskp = calloc(1, sizeof (disk_t));
9587c478bd9Sstevel@tonic-gate 	if (diskp == NULL) {
9597c478bd9Sstevel@tonic-gate 		return (NULL);
9607c478bd9Sstevel@tonic-gate 	}
9617c478bd9Sstevel@tonic-gate 
9627c478bd9Sstevel@tonic-gate 	diskp->controllers = (controller_t **)
9637c478bd9Sstevel@tonic-gate 	    calloc(1, sizeof (controller_t *));
9647c478bd9Sstevel@tonic-gate 	if (diskp->controllers == NULL) {
9657c478bd9Sstevel@tonic-gate 		cache_free_disk(diskp);
9667c478bd9Sstevel@tonic-gate 		return (NULL);
9677c478bd9Sstevel@tonic-gate 	}
9687c478bd9Sstevel@tonic-gate 	diskp->controllers[0] = NULL;
9697c478bd9Sstevel@tonic-gate 
9707c478bd9Sstevel@tonic-gate 	diskp->devid = NULL;
9717c478bd9Sstevel@tonic-gate 	if (deviceid != NULL) {
9727c478bd9Sstevel@tonic-gate 		if ((diskp->device_id = strdup(deviceid)) == NULL) {
9737c478bd9Sstevel@tonic-gate 			cache_free_disk(diskp);
9747c478bd9Sstevel@tonic-gate 			return (NULL);
9757c478bd9Sstevel@tonic-gate 		}
9767c478bd9Sstevel@tonic-gate 		(void) devid_str_decode(deviceid, &(diskp->devid), NULL);
9777c478bd9Sstevel@tonic-gate 	}
9787c478bd9Sstevel@tonic-gate 
9797c478bd9Sstevel@tonic-gate 	if (kernel_name != NULL) {
9807c478bd9Sstevel@tonic-gate 		diskp->kernel_name = strdup(kernel_name);
9817c478bd9Sstevel@tonic-gate 		if (diskp->kernel_name == NULL) {
9827c478bd9Sstevel@tonic-gate 			cache_free_disk(diskp);
9837c478bd9Sstevel@tonic-gate 			return (NULL);
9847c478bd9Sstevel@tonic-gate 		}
9857c478bd9Sstevel@tonic-gate 	}
9867c478bd9Sstevel@tonic-gate 
9877c478bd9Sstevel@tonic-gate 	diskp->paths = NULL;
9887c478bd9Sstevel@tonic-gate 	diskp->aliases = NULL;
9897c478bd9Sstevel@tonic-gate 
9907c478bd9Sstevel@tonic-gate 	diskp->cd_rom = 0;
9917c478bd9Sstevel@tonic-gate 	diskp->rpm = 0;
9927c478bd9Sstevel@tonic-gate 	type = di_minor_nodetype(args->minor);
9937c478bd9Sstevel@tonic-gate 
9947c478bd9Sstevel@tonic-gate 	prod_id = get_str_prop(PROD_ID_PROP, args->node);
9957c478bd9Sstevel@tonic-gate 	if (prod_id != NULL) {
9967c478bd9Sstevel@tonic-gate 		if ((diskp->product_id = strdup(prod_id)) == NULL) {
9977c478bd9Sstevel@tonic-gate 			cache_free_disk(diskp);
9987c478bd9Sstevel@tonic-gate 			return (NULL);
9997c478bd9Sstevel@tonic-gate 		}
10007c478bd9Sstevel@tonic-gate 	} else {
10017c478bd9Sstevel@tonic-gate 		prod_id = get_str_prop(PROD_ID_USB_PROP, args->node);
10027c478bd9Sstevel@tonic-gate 		if (prod_id != NULL) {
10037c478bd9Sstevel@tonic-gate 			if ((diskp->product_id = strdup(prod_id)) == NULL) {
10047c478bd9Sstevel@tonic-gate 				cache_free_disk(diskp);
10057c478bd9Sstevel@tonic-gate 				return (NULL);
10067c478bd9Sstevel@tonic-gate 			}
10077c478bd9Sstevel@tonic-gate 		}
10087c478bd9Sstevel@tonic-gate 	}
10097c478bd9Sstevel@tonic-gate 
10107c478bd9Sstevel@tonic-gate 	vendor_id = get_str_prop(VENDOR_ID_PROP, args->node);
10117c478bd9Sstevel@tonic-gate 	if (vendor_id != NULL) {
10127c478bd9Sstevel@tonic-gate 		if ((diskp->vendor_id = strdup(vendor_id)) == NULL) {
10137c478bd9Sstevel@tonic-gate 			cache_free_disk(diskp);
10147c478bd9Sstevel@tonic-gate 			return (NULL);
10157c478bd9Sstevel@tonic-gate 		}
10167c478bd9Sstevel@tonic-gate 	} else {
10177c478bd9Sstevel@tonic-gate 		vendor_id = get_str_prop(VENDOR_ID_PROP, args->node);
10187c478bd9Sstevel@tonic-gate 		if (vendor_id != NULL) {
10197c478bd9Sstevel@tonic-gate 			if ((diskp->vendor_id = strdup(vendor_id)) == NULL) {
10207c478bd9Sstevel@tonic-gate 				cache_free_disk(diskp);
10217c478bd9Sstevel@tonic-gate 				return (NULL);
10227c478bd9Sstevel@tonic-gate 			}
10237c478bd9Sstevel@tonic-gate 		}
10247c478bd9Sstevel@tonic-gate 	}
10257c478bd9Sstevel@tonic-gate 
10267c478bd9Sstevel@tonic-gate 	/*
10277c478bd9Sstevel@tonic-gate 	 * DVD, CD-ROM, CD-RW, MO, etc. are all reported as CD-ROMS.
10287c478bd9Sstevel@tonic-gate 	 * We try to use uscsi later to determine the real type.
10297c478bd9Sstevel@tonic-gate 	 * The cd_rom flag tells us that the kernel categorized the drive
10307c478bd9Sstevel@tonic-gate 	 * as a CD-ROM.  We leave the drv_type as UKNOWN for now.
10317c478bd9Sstevel@tonic-gate 	 * The combination of the cd_rom flag being set with the drv_type of
10327c478bd9Sstevel@tonic-gate 	 * unknown is what triggers the uscsi probe in drive.c.
10337c478bd9Sstevel@tonic-gate 	 */
10347c478bd9Sstevel@tonic-gate 	if (disk_is_cdrom(type)) {
10357c478bd9Sstevel@tonic-gate 		diskp->drv_type = DM_DT_UNKNOWN;
10367c478bd9Sstevel@tonic-gate 		diskp->cd_rom = 1;
10377c478bd9Sstevel@tonic-gate 		diskp->removable = 1;
10387c478bd9Sstevel@tonic-gate 	} else if (libdiskmgt_str_eq(type, DDI_NT_FD)) {
10397c478bd9Sstevel@tonic-gate 		diskp->drv_type = DM_DT_FLOPPY;
10407c478bd9Sstevel@tonic-gate 		diskp->removable = 1;
10417c478bd9Sstevel@tonic-gate 	} else {
10427c478bd9Sstevel@tonic-gate 		/* not a "CD-ROM" or Floppy */
10437c478bd9Sstevel@tonic-gate 		diskp->removable = get_prop(REMOVABLE_PROP, args->node);
10440167b58cScg149915 
10450167b58cScg149915 		if (diskp->removable == -1) {
10467c478bd9Sstevel@tonic-gate 			diskp->removable = 0;
10473e1bd7a2Ssjelinek #if defined(i386) || defined(__amd64)
10487c478bd9Sstevel@tonic-gate 			/*
1049*42f64fdbSSarah Jelinek 			 * x86 does not have removable property.
1050*42f64fdbSSarah Jelinek 			 * Check for common removable drives, zip & jaz,
1051*42f64fdbSSarah Jelinek 			 * and mark those correctly.
10527c478bd9Sstevel@tonic-gate 			 */
10537c478bd9Sstevel@tonic-gate 			if (vendor_id != NULL && prod_id != NULL) {
1054*42f64fdbSSarah Jelinek 				if (str_case_index(vendor_id,
1055*42f64fdbSSarah Jelinek 				    "iomega") != NULL) {
1056*42f64fdbSSarah Jelinek 					if (str_case_index(prod_id,
1057*42f64fdbSSarah Jelinek 					    "jaz") != NULL) {
10587c478bd9Sstevel@tonic-gate 						diskp->removable = 1;
1059*42f64fdbSSarah Jelinek 					} else if (str_case_index(prod_id,
1060*42f64fdbSSarah Jelinek 					    "zip") != NULL) {
10617c478bd9Sstevel@tonic-gate 						diskp->removable = 1;
10627c478bd9Sstevel@tonic-gate 					}
10637c478bd9Sstevel@tonic-gate 				}
10647c478bd9Sstevel@tonic-gate 			}
10657c478bd9Sstevel@tonic-gate #endif
10667c478bd9Sstevel@tonic-gate 		}
10677c478bd9Sstevel@tonic-gate 
10687c478bd9Sstevel@tonic-gate 		if (diskp->removable) {
10697c478bd9Sstevel@tonic-gate 			/*
10707c478bd9Sstevel@tonic-gate 			 * For removable jaz or zip drives there is no way
1071*42f64fdbSSarah Jelinek 			 * to get the drive type unless media is inserted,so
1072*42f64fdbSSarah Jelinek 			 * we look at the product-id for a hint.
10737c478bd9Sstevel@tonic-gate 			 */
10747c478bd9Sstevel@tonic-gate 			diskp->drv_type = DM_DT_UNKNOWN;
10757c478bd9Sstevel@tonic-gate 
10767c478bd9Sstevel@tonic-gate 			if (prod_id != NULL) {
10777c478bd9Sstevel@tonic-gate 				if (str_case_index(prod_id, "jaz") != NULL) {
10787c478bd9Sstevel@tonic-gate 					diskp->drv_type = DM_DT_JAZ;
1079*42f64fdbSSarah Jelinek 				} else if (str_case_index(prod_id,
1080*42f64fdbSSarah Jelinek 				    "zip") != NULL) {
10817c478bd9Sstevel@tonic-gate 					diskp->drv_type = DM_DT_ZIP;
10827c478bd9Sstevel@tonic-gate 				}
10837c478bd9Sstevel@tonic-gate 			}
10847c478bd9Sstevel@tonic-gate 		} else {
10857c478bd9Sstevel@tonic-gate 			diskp->drv_type = DM_DT_FIXED;
10867c478bd9Sstevel@tonic-gate 		}
10877c478bd9Sstevel@tonic-gate 	}
10887c478bd9Sstevel@tonic-gate 
10897c478bd9Sstevel@tonic-gate 	diskp->next = args->disk_listp;
10907c478bd9Sstevel@tonic-gate 	args->disk_listp = diskp;
10917c478bd9Sstevel@tonic-gate 
10927c478bd9Sstevel@tonic-gate 	return (diskp);
10937c478bd9Sstevel@tonic-gate }
10947c478bd9Sstevel@tonic-gate 
10957c478bd9Sstevel@tonic-gate static char *
10967c478bd9Sstevel@tonic-gate ctype(di_node_t node, di_minor_t minor)
10977c478bd9Sstevel@tonic-gate {
10987c478bd9Sstevel@tonic-gate 	char	*type;
10997c478bd9Sstevel@tonic-gate 	char	*name;
11007c478bd9Sstevel@tonic-gate 
11017c478bd9Sstevel@tonic-gate 	type = di_minor_nodetype(minor);
11027c478bd9Sstevel@tonic-gate 	name = di_node_name(node);
11037c478bd9Sstevel@tonic-gate 
11047c478bd9Sstevel@tonic-gate 	/* IDE disks use SCSI nexus as the type, so handle this special case */
11057c478bd9Sstevel@tonic-gate 	if (libdiskmgt_str_eq(name, "ide")) {
11067c478bd9Sstevel@tonic-gate 		return (DM_CTYPE_ATA);
11077c478bd9Sstevel@tonic-gate 	}
11087c478bd9Sstevel@tonic-gate 
11097c478bd9Sstevel@tonic-gate 	if (libdiskmgt_str_eq(di_minor_name(minor), "scsa2usb")) {
11107c478bd9Sstevel@tonic-gate 		return (DM_CTYPE_USB);
11117c478bd9Sstevel@tonic-gate 	}
11127c478bd9Sstevel@tonic-gate 
11137c478bd9Sstevel@tonic-gate 	if (libdiskmgt_str_eq(type, DDI_NT_SCSI_NEXUS) ||
11147c478bd9Sstevel@tonic-gate 	    libdiskmgt_str_eq(type, DDI_NT_SCSI_ATTACHMENT_POINT)) {
11157c478bd9Sstevel@tonic-gate 			return (DM_CTYPE_SCSI);
11167c478bd9Sstevel@tonic-gate 	}
11177c478bd9Sstevel@tonic-gate 
11187c478bd9Sstevel@tonic-gate 	if (libdiskmgt_str_eq(type, DDI_NT_FC_ATTACHMENT_POINT)) {
11197c478bd9Sstevel@tonic-gate 		return (DM_CTYPE_FIBRE);
11207c478bd9Sstevel@tonic-gate 	}
11217c478bd9Sstevel@tonic-gate 
11227c478bd9Sstevel@tonic-gate 	if (libdiskmgt_str_eq(type, DDI_NT_NEXUS) &&
11237c478bd9Sstevel@tonic-gate 	    libdiskmgt_str_eq(name, "fp")) {
11247c478bd9Sstevel@tonic-gate 		return (DM_CTYPE_FIBRE);
11257c478bd9Sstevel@tonic-gate 	}
11267c478bd9Sstevel@tonic-gate 
11277c478bd9Sstevel@tonic-gate 	if (libdiskmgt_str_eq(type, DDI_PSEUDO) &&
11287c478bd9Sstevel@tonic-gate 	    libdiskmgt_str_eq(name, "ide")) {
11297c478bd9Sstevel@tonic-gate 		return (DM_CTYPE_ATA);
11307c478bd9Sstevel@tonic-gate 	}
11317c478bd9Sstevel@tonic-gate 
11327c478bd9Sstevel@tonic-gate 	return (DM_CTYPE_UNKNOWN);
11337c478bd9Sstevel@tonic-gate }
11347c478bd9Sstevel@tonic-gate 
11357c478bd9Sstevel@tonic-gate static boolean_t
113697ab9a43SJohn Levon disk_is_cdrom(const char *type)
11377c478bd9Sstevel@tonic-gate {
113897ab9a43SJohn Levon 	return (strncmp(type, DDI_NT_CD, strlen(DDI_NT_CD)) == 0);
11397c478bd9Sstevel@tonic-gate }
11407c478bd9Sstevel@tonic-gate 
11417c478bd9Sstevel@tonic-gate static alias_t *
11427c478bd9Sstevel@tonic-gate find_alias(disk_t *diskp, char *kernel_name)
11437c478bd9Sstevel@tonic-gate {
11447c478bd9Sstevel@tonic-gate 	alias_t	*ap;
11457c478bd9Sstevel@tonic-gate 
11467c478bd9Sstevel@tonic-gate 	ap = diskp->aliases;
11477c478bd9Sstevel@tonic-gate 	while (ap != NULL) {
11487c478bd9Sstevel@tonic-gate 		if (libdiskmgt_str_eq(ap->kstat_name, kernel_name)) {
11497c478bd9Sstevel@tonic-gate 			return (ap);
11507c478bd9Sstevel@tonic-gate 		}
11517c478bd9Sstevel@tonic-gate 		ap = ap->next;
11527c478bd9Sstevel@tonic-gate 	}
11537c478bd9Sstevel@tonic-gate 
11547c478bd9Sstevel@tonic-gate 	return (NULL);
11557c478bd9Sstevel@tonic-gate }
11567c478bd9Sstevel@tonic-gate 
11577c478bd9Sstevel@tonic-gate static bus_t *
11587c478bd9Sstevel@tonic-gate find_bus(struct search_args *args, char *name)
11597c478bd9Sstevel@tonic-gate {
11607c478bd9Sstevel@tonic-gate 	bus_t *listp;
11617c478bd9Sstevel@tonic-gate 
11627c478bd9Sstevel@tonic-gate 	listp = args->bus_listp;
11637c478bd9Sstevel@tonic-gate 	while (listp != NULL) {
11647c478bd9Sstevel@tonic-gate 		if (libdiskmgt_str_eq(listp->name, name)) {
11657c478bd9Sstevel@tonic-gate 			return (listp);
11667c478bd9Sstevel@tonic-gate 		}
11677c478bd9Sstevel@tonic-gate 		listp = listp->next;
11687c478bd9Sstevel@tonic-gate 	}
11697c478bd9Sstevel@tonic-gate 
11707c478bd9Sstevel@tonic-gate 	return (NULL);
11717c478bd9Sstevel@tonic-gate }
11727c478bd9Sstevel@tonic-gate 
11737c478bd9Sstevel@tonic-gate static controller_t *
11747c478bd9Sstevel@tonic-gate find_controller(struct search_args *args, char *name)
11757c478bd9Sstevel@tonic-gate {
11767c478bd9Sstevel@tonic-gate 	controller_t *listp;
11777c478bd9Sstevel@tonic-gate 
11787c478bd9Sstevel@tonic-gate 	listp = args->controller_listp;
11797c478bd9Sstevel@tonic-gate 	while (listp != NULL) {
11807c478bd9Sstevel@tonic-gate 		if (libdiskmgt_str_eq(listp->name, name)) {
11817c478bd9Sstevel@tonic-gate 			return (listp);
11827c478bd9Sstevel@tonic-gate 		}
11837c478bd9Sstevel@tonic-gate 		listp = listp->next;
11847c478bd9Sstevel@tonic-gate 	}
11857c478bd9Sstevel@tonic-gate 
11867c478bd9Sstevel@tonic-gate 	return (NULL);
11877c478bd9Sstevel@tonic-gate }
11887c478bd9Sstevel@tonic-gate 
11897c478bd9Sstevel@tonic-gate static int
11907c478bd9Sstevel@tonic-gate fix_cluster_devpath(di_devlink_t devlink, void *arg)
11917c478bd9Sstevel@tonic-gate {
11927c478bd9Sstevel@tonic-gate 	int			fd;
11937c478bd9Sstevel@tonic-gate 	struct search_args	*args;
11947c478bd9Sstevel@tonic-gate 	char			*devlink_path;
11957c478bd9Sstevel@tonic-gate 	disk_t			*diskp = NULL;
11967c478bd9Sstevel@tonic-gate 	alias_t			*ap = NULL;
11977c478bd9Sstevel@tonic-gate 
11987c478bd9Sstevel@tonic-gate 	/*
11997c478bd9Sstevel@tonic-gate 	 * The devlink_path is of the form /dev/did/rdsk/d1s0.
12007c478bd9Sstevel@tonic-gate 	 */
12017c478bd9Sstevel@tonic-gate 
12027c478bd9Sstevel@tonic-gate 	args =	(struct search_args *)arg;
12037c478bd9Sstevel@tonic-gate 
12047c478bd9Sstevel@tonic-gate 	/* Find the disk by the deviceid we read from the cluster disk. */
12057c478bd9Sstevel@tonic-gate 	devlink_path = (char *)di_devlink_path(devlink);
12067c478bd9Sstevel@tonic-gate 	if (devlink_path == NULL) {
12077c478bd9Sstevel@tonic-gate 		return (DI_WALK_CONTINUE);
12087c478bd9Sstevel@tonic-gate 	}
12097c478bd9Sstevel@tonic-gate 
12107c478bd9Sstevel@tonic-gate 	if ((fd = open(devlink_path, O_RDONLY|O_NDELAY)) >= 0) {
12117c478bd9Sstevel@tonic-gate 		ddi_devid_t	devid;
12127c478bd9Sstevel@tonic-gate 
12137c478bd9Sstevel@tonic-gate 		if (dm_debug > 1) {
12147c478bd9Sstevel@tonic-gate 			(void) fprintf(stderr, "INFO:     cluster devpath %s\n",
12157c478bd9Sstevel@tonic-gate 			    devlink_path);
12167c478bd9Sstevel@tonic-gate 		}
12177c478bd9Sstevel@tonic-gate 
12187c478bd9Sstevel@tonic-gate 		if (devid_get(fd, &devid) == 0) {
12197c478bd9Sstevel@tonic-gate 			char *minor;
12207c478bd9Sstevel@tonic-gate 			char *devidstr;
12217c478bd9Sstevel@tonic-gate 
12227c478bd9Sstevel@tonic-gate 			minor = di_minor_name(args->minor);
12237c478bd9Sstevel@tonic-gate 
1224*42f64fdbSSarah Jelinek 			if ((devidstr =
1225*42f64fdbSSarah Jelinek 			    devid_str_encode(devid, minor)) != NULL) {
1226*42f64fdbSSarah Jelinek 				diskp = get_disk_by_deviceid(args->disk_listp,
1227*42f64fdbSSarah Jelinek 				    devidstr);
12287c478bd9Sstevel@tonic-gate 				/*
1229*42f64fdbSSarah Jelinek 				 * This really shouldn't happen, since
1230*42f64fdbSSarah Jelinek 				 * we should have found all of the disks
1231*42f64fdbSSarah Jelinek 				 * during our first pass through
12327c478bd9Sstevel@tonic-gate 				 * the dev tree, but just in case...
12337c478bd9Sstevel@tonic-gate 				 */
12347c478bd9Sstevel@tonic-gate 				if (diskp == NULL) {
12357c478bd9Sstevel@tonic-gate 					if (dm_debug > 1) {
12367c478bd9Sstevel@tonic-gate 						(void) fprintf(stderr,
1237*42f64fdbSSarah Jelinek 						    "INFO:    cluster create"
1238*42f64fdbSSarah Jelinek 						    " disk\n");
12397c478bd9Sstevel@tonic-gate 					}
12407c478bd9Sstevel@tonic-gate 
1241*42f64fdbSSarah Jelinek 					diskp = create_disk(devidstr,
1242*42f64fdbSSarah Jelinek 					    NULL, args);
12437c478bd9Sstevel@tonic-gate 					if (diskp == NULL) {
12447c478bd9Sstevel@tonic-gate 						args->dev_walk_status = ENOMEM;
12457c478bd9Sstevel@tonic-gate 					}
12467c478bd9Sstevel@tonic-gate 
12477c478bd9Sstevel@tonic-gate 					/* add the controller relationship */
12487c478bd9Sstevel@tonic-gate 					if (args->dev_walk_status == 0) {
1249*42f64fdbSSarah Jelinek 						if (add_disk2controller(diskp,
1250*42f64fdbSSarah Jelinek 						    args) != 0) {
1251*42f64fdbSSarah Jelinek 							args->dev_walk_status
1252*42f64fdbSSarah Jelinek 							    = ENOMEM;
12537c478bd9Sstevel@tonic-gate 						}
12547c478bd9Sstevel@tonic-gate 					}
12557c478bd9Sstevel@tonic-gate 
1256*42f64fdbSSarah Jelinek 					if (new_alias(diskp, NULL,
1257*42f64fdbSSarah Jelinek 					    devlink_path, args) != 0) {
12587c478bd9Sstevel@tonic-gate 						args->dev_walk_status = ENOMEM;
12597c478bd9Sstevel@tonic-gate 					}
12607c478bd9Sstevel@tonic-gate 				}
12617c478bd9Sstevel@tonic-gate 				devid_str_free(devidstr);
12627c478bd9Sstevel@tonic-gate 			}
12637c478bd9Sstevel@tonic-gate 			devid_free(devid);
12647c478bd9Sstevel@tonic-gate 		}
12657c478bd9Sstevel@tonic-gate 		(void) close(fd);
12667c478bd9Sstevel@tonic-gate 	}
12677c478bd9Sstevel@tonic-gate 
12687c478bd9Sstevel@tonic-gate 
12697c478bd9Sstevel@tonic-gate 	if (diskp != NULL) {
12707c478bd9Sstevel@tonic-gate 		if (dm_debug > 1) {
1271*42f64fdbSSarah Jelinek 			(void) fprintf(stderr, "INFO:     cluster found"
1272*42f64fdbSSarah Jelinek 			    " disk\n");
12737c478bd9Sstevel@tonic-gate 		}
12747c478bd9Sstevel@tonic-gate 		ap = diskp->aliases;
12757c478bd9Sstevel@tonic-gate 	}
12767c478bd9Sstevel@tonic-gate 
12777c478bd9Sstevel@tonic-gate 	if (ap != NULL) {
1278*42f64fdbSSarah Jelinek 		/*
1279*42f64fdbSSarah Jelinek 		 * NOTE: if ap->next != NULL have cluster
1280*42f64fdbSSarah Jelinek 		 * disks w/ multiple paths.
1281*42f64fdbSSarah Jelinek 		 */
12827c478bd9Sstevel@tonic-gate 
12837c478bd9Sstevel@tonic-gate 		if (!ap->cluster) {
12847c478bd9Sstevel@tonic-gate 			char	*basep;
12857c478bd9Sstevel@tonic-gate 			char	*namep;
12867c478bd9Sstevel@tonic-gate 			int	cnt = 0;
12877c478bd9Sstevel@tonic-gate 			int	size;
12887c478bd9Sstevel@tonic-gate 			char	alias[MAXPATHLEN];
12897c478bd9Sstevel@tonic-gate 
12907c478bd9Sstevel@tonic-gate 			/*
1291*42f64fdbSSarah Jelinek 			 * First time; save the /dev/rdsk devpaths and
1292*42f64fdbSSarah Jelinek 			 * update the alias info with the new alias name.
12937c478bd9Sstevel@tonic-gate 			 */
12947c478bd9Sstevel@tonic-gate 			ap->orig_paths = ap->devpaths;
12957c478bd9Sstevel@tonic-gate 			ap->devpaths = NULL;
12967c478bd9Sstevel@tonic-gate 
12977c478bd9Sstevel@tonic-gate 			free(ap->alias);
12987c478bd9Sstevel@tonic-gate 
12997c478bd9Sstevel@tonic-gate 			/* get the new cluster alias name */
13007c478bd9Sstevel@tonic-gate 			basep = strrchr(devlink_path, '/');
13017c478bd9Sstevel@tonic-gate 			if (basep == NULL) {
13027c478bd9Sstevel@tonic-gate 				basep = devlink_path;
13037c478bd9Sstevel@tonic-gate 			} else {
13047c478bd9Sstevel@tonic-gate 				basep++;
13057c478bd9Sstevel@tonic-gate 			}
13067c478bd9Sstevel@tonic-gate 			size = sizeof (alias) - 1;
13077c478bd9Sstevel@tonic-gate 			namep = alias;
1308*42f64fdbSSarah Jelinek 
13097c478bd9Sstevel@tonic-gate 			while (*basep != 0 && *basep != 's' && cnt < size) {
13107c478bd9Sstevel@tonic-gate 				*namep++ = *basep++;
13117c478bd9Sstevel@tonic-gate 				cnt++;
13127c478bd9Sstevel@tonic-gate 			}
13137c478bd9Sstevel@tonic-gate 			*namep = 0;
13147c478bd9Sstevel@tonic-gate 
13157c478bd9Sstevel@tonic-gate 			if ((ap->alias = strdup(alias)) == NULL) {
13167c478bd9Sstevel@tonic-gate 				args->dev_walk_status = ENOMEM;
13177c478bd9Sstevel@tonic-gate 			}
13187c478bd9Sstevel@tonic-gate 
13197c478bd9Sstevel@tonic-gate 			ap->cluster = 1;
13207c478bd9Sstevel@tonic-gate 		}
13217c478bd9Sstevel@tonic-gate 
13227c478bd9Sstevel@tonic-gate 		if (new_devpath(ap, devlink_path) != 0) {
13237c478bd9Sstevel@tonic-gate 			args->dev_walk_status = ENOMEM;
13247c478bd9Sstevel@tonic-gate 		}
13257c478bd9Sstevel@tonic-gate 	}
13267c478bd9Sstevel@tonic-gate 
13277c478bd9Sstevel@tonic-gate 	return (DI_WALK_CONTINUE);
13287c478bd9Sstevel@tonic-gate }
13297c478bd9Sstevel@tonic-gate 
13307c478bd9Sstevel@tonic-gate /*
13317c478bd9Sstevel@tonic-gate  * Check if we have the drive in our list, based upon the device id.
13327c478bd9Sstevel@tonic-gate  * We got the device id from the dev tree walk.  This is encoded
13337c478bd9Sstevel@tonic-gate  * using devid_str_encode(3DEVID).   In order to check the device ids we need
13347c478bd9Sstevel@tonic-gate  * to use the devid_compare(3DEVID) function, so we need to decode the
13357c478bd9Sstevel@tonic-gate  * string representation of the device id.
13367c478bd9Sstevel@tonic-gate  */
13377c478bd9Sstevel@tonic-gate static disk_t *
13387c478bd9Sstevel@tonic-gate get_disk_by_deviceid(disk_t *listp, char *devidstr)
13397c478bd9Sstevel@tonic-gate {
13407c478bd9Sstevel@tonic-gate 	ddi_devid_t	devid;
13417c478bd9Sstevel@tonic-gate 
13427c478bd9Sstevel@tonic-gate 	if (devidstr == NULL || devid_str_decode(devidstr, &devid, NULL) != 0) {
13437c478bd9Sstevel@tonic-gate 		return (NULL);
13447c478bd9Sstevel@tonic-gate 	}
13457c478bd9Sstevel@tonic-gate 
13467c478bd9Sstevel@tonic-gate 	while (listp != NULL) {
13477c478bd9Sstevel@tonic-gate 		if (listp->devid != NULL &&
13487c478bd9Sstevel@tonic-gate 		    devid_compare(listp->devid, devid) == 0) {
13497c478bd9Sstevel@tonic-gate 			break;
13507c478bd9Sstevel@tonic-gate 		}
13517c478bd9Sstevel@tonic-gate 		listp = listp->next;
13527c478bd9Sstevel@tonic-gate 	}
13537c478bd9Sstevel@tonic-gate 
13547c478bd9Sstevel@tonic-gate 	devid_free(devid);
13557c478bd9Sstevel@tonic-gate 	return (listp);
13567c478bd9Sstevel@tonic-gate }
13577c478bd9Sstevel@tonic-gate 
13587c478bd9Sstevel@tonic-gate /*
13597c478bd9Sstevel@tonic-gate  * Get the base disk name with no path prefix and no slice (if there is one).
13607c478bd9Sstevel@tonic-gate  * The name parameter should be big enough to hold the name.
13617c478bd9Sstevel@tonic-gate  * This handles diskette names ok (/dev/rdiskette0) since there is no slice,
13627c478bd9Sstevel@tonic-gate  * and converts the raw diskette name.
13637c478bd9Sstevel@tonic-gate  * But, we don't know how to strip off the slice from third party drive
13647c478bd9Sstevel@tonic-gate  * names.  That just means that their drive name will include a slice on
13657c478bd9Sstevel@tonic-gate  * it.
13667c478bd9Sstevel@tonic-gate  */
13677c478bd9Sstevel@tonic-gate static void
13687c478bd9Sstevel@tonic-gate get_disk_name_from_path(char *path, char *name, int size)
13697c478bd9Sstevel@tonic-gate {
13707c478bd9Sstevel@tonic-gate 	char		*basep;
13717c478bd9Sstevel@tonic-gate 	int		cnt = 0;
13727c478bd9Sstevel@tonic-gate 
13737c478bd9Sstevel@tonic-gate 	basep = strrchr(path, '/');
13747c478bd9Sstevel@tonic-gate 	if (basep == NULL) {
13757c478bd9Sstevel@tonic-gate 		basep = path;
13767c478bd9Sstevel@tonic-gate 	} else {
13777c478bd9Sstevel@tonic-gate 		basep++;
13787c478bd9Sstevel@tonic-gate 	}
13797c478bd9Sstevel@tonic-gate 
13807c478bd9Sstevel@tonic-gate 	size = size - 1;	/* leave room for terminating 0 */
13817c478bd9Sstevel@tonic-gate 
13827c478bd9Sstevel@tonic-gate 	if (is_ctds(basep)) {
13837c478bd9Sstevel@tonic-gate 		while (*basep != 0 && *basep != 's' && cnt < size) {
13847c478bd9Sstevel@tonic-gate 			*name++ = *basep++;
13857c478bd9Sstevel@tonic-gate 				cnt++;
13867c478bd9Sstevel@tonic-gate 		}
13877c478bd9Sstevel@tonic-gate 		*name = 0;
13887c478bd9Sstevel@tonic-gate 	} else {
1389*42f64fdbSSarah Jelinek 		if (strncmp(basep, FLOPPY_NAME,
1390*42f64fdbSSarah Jelinek 		    sizeof (FLOPPY_NAME) - 1) == 0) {
13917c478bd9Sstevel@tonic-gate 			/*
13927c478bd9Sstevel@tonic-gate 			 * a floppy, convert rdiskette name to diskette name,
13937c478bd9Sstevel@tonic-gate 			 * by skipping over the 'r' for raw diskette
13947c478bd9Sstevel@tonic-gate 			 */
13957c478bd9Sstevel@tonic-gate 			basep++;
13967c478bd9Sstevel@tonic-gate 		}
13977c478bd9Sstevel@tonic-gate 
13987c478bd9Sstevel@tonic-gate 		/* not a ctds name, just copy it */
13997c478bd9Sstevel@tonic-gate 		(void) strlcpy(name, basep, size);
14007c478bd9Sstevel@tonic-gate 	}
14017c478bd9Sstevel@tonic-gate }
14027c478bd9Sstevel@tonic-gate 
14037c478bd9Sstevel@tonic-gate static char *
14047c478bd9Sstevel@tonic-gate get_byte_prop(char *prop_name, di_node_t node)
14057c478bd9Sstevel@tonic-gate {
14067c478bd9Sstevel@tonic-gate 	int	cnt;
14077c478bd9Sstevel@tonic-gate 	uchar_t	*bytes;
14087c478bd9Sstevel@tonic-gate 	int	i;
14097c478bd9Sstevel@tonic-gate 	char	str[MAXPATHLEN];
14107c478bd9Sstevel@tonic-gate 
14117c478bd9Sstevel@tonic-gate 	cnt = di_prop_lookup_bytes(DDI_DEV_T_ANY, node, prop_name, &bytes);
14127c478bd9Sstevel@tonic-gate 	if (cnt < 1) {
14137c478bd9Sstevel@tonic-gate 		return (NULL);
14147c478bd9Sstevel@tonic-gate 	}
14157c478bd9Sstevel@tonic-gate 
14167c478bd9Sstevel@tonic-gate 	str[0] = 0;
14177c478bd9Sstevel@tonic-gate 	for (i = 0; i < cnt; i++) {
14187c478bd9Sstevel@tonic-gate 		char bstr[8];	/* a byte is only 2 hex chars + null */
14197c478bd9Sstevel@tonic-gate 
14207c478bd9Sstevel@tonic-gate 		(void) snprintf(bstr, sizeof (bstr), "%.2x", bytes[i]);
14217c478bd9Sstevel@tonic-gate 		(void) strlcat(str, bstr, sizeof (str));
14227c478bd9Sstevel@tonic-gate 	}
14237c478bd9Sstevel@tonic-gate 	return (strdup(str));
14247c478bd9Sstevel@tonic-gate }
14257c478bd9Sstevel@tonic-gate 
14267c478bd9Sstevel@tonic-gate static di_node_t
14277c478bd9Sstevel@tonic-gate get_parent_bus(di_node_t node, struct search_args *args)
14287c478bd9Sstevel@tonic-gate {
14297c478bd9Sstevel@tonic-gate 	di_node_t pnode;
14307c478bd9Sstevel@tonic-gate 
14317c478bd9Sstevel@tonic-gate 	pnode = di_parent_node(node);
14327c478bd9Sstevel@tonic-gate 	if (pnode == DI_NODE_NIL) {
14337c478bd9Sstevel@tonic-gate 		return (NULL);
14347c478bd9Sstevel@tonic-gate 	}
14357c478bd9Sstevel@tonic-gate 
14367c478bd9Sstevel@tonic-gate 	if (bus_type(pnode, di_minor_next(pnode, NULL), args->ph) != NULL) {
14377c478bd9Sstevel@tonic-gate 		return (pnode);
14387c478bd9Sstevel@tonic-gate 	}
14397c478bd9Sstevel@tonic-gate 
14407c478bd9Sstevel@tonic-gate 	return (get_parent_bus(pnode, args));
14417c478bd9Sstevel@tonic-gate }
14427c478bd9Sstevel@tonic-gate 
14437c478bd9Sstevel@tonic-gate static int
14447c478bd9Sstevel@tonic-gate get_prom_int(char *prop_name, di_node_t node, di_prom_handle_t ph)
14457c478bd9Sstevel@tonic-gate {
14467c478bd9Sstevel@tonic-gate 	int *n;
14477c478bd9Sstevel@tonic-gate 
14487c478bd9Sstevel@tonic-gate 	if (di_prom_prop_lookup_ints(ph, node, prop_name, &n) == 1) {
14497c478bd9Sstevel@tonic-gate 		return (*n);
14507c478bd9Sstevel@tonic-gate 	}
14517c478bd9Sstevel@tonic-gate 
14527c478bd9Sstevel@tonic-gate 	return (0);
14537c478bd9Sstevel@tonic-gate }
14547c478bd9Sstevel@tonic-gate 
14557c478bd9Sstevel@tonic-gate static char *
14567c478bd9Sstevel@tonic-gate get_prom_str(char *prop_name, di_node_t node, di_prom_handle_t ph)
14577c478bd9Sstevel@tonic-gate {
14587c478bd9Sstevel@tonic-gate 	char *str;
14597c478bd9Sstevel@tonic-gate 
14607c478bd9Sstevel@tonic-gate 	if (di_prom_prop_lookup_strings(ph, node, prop_name, &str) == 1) {
14617c478bd9Sstevel@tonic-gate 		return (str);
14627c478bd9Sstevel@tonic-gate 	}
14637c478bd9Sstevel@tonic-gate 
14647c478bd9Sstevel@tonic-gate 	return (NULL);
14657c478bd9Sstevel@tonic-gate }
14667c478bd9Sstevel@tonic-gate 
14677c478bd9Sstevel@tonic-gate /*
14687c478bd9Sstevel@tonic-gate  * Get one of the positive int or boolean properties.
14697c478bd9Sstevel@tonic-gate  */
14707c478bd9Sstevel@tonic-gate static int
14717c478bd9Sstevel@tonic-gate get_prop(char *prop_name, di_node_t node)
14727c478bd9Sstevel@tonic-gate {
14737c478bd9Sstevel@tonic-gate 	int num;
14747c478bd9Sstevel@tonic-gate 	int *ip;
14757c478bd9Sstevel@tonic-gate 
14767c478bd9Sstevel@tonic-gate 	if ((num = di_prop_lookup_ints(DDI_DEV_T_ANY, node, prop_name, &ip))
14777c478bd9Sstevel@tonic-gate 	    >= 0) {
14787c478bd9Sstevel@tonic-gate 		if (num == 0) {
14797c478bd9Sstevel@tonic-gate 			/* boolean */
14807c478bd9Sstevel@tonic-gate 			return (1);
14817c478bd9Sstevel@tonic-gate 		} else if (num == 1) {
14827c478bd9Sstevel@tonic-gate 			/* single int */
14837c478bd9Sstevel@tonic-gate 			return (*ip);
14847c478bd9Sstevel@tonic-gate 		}
14857c478bd9Sstevel@tonic-gate 	}
14867c478bd9Sstevel@tonic-gate 	return (-1);
14877c478bd9Sstevel@tonic-gate }
14887c478bd9Sstevel@tonic-gate 
14897c478bd9Sstevel@tonic-gate static char *
14907c478bd9Sstevel@tonic-gate get_str_prop(char *prop_name, di_node_t node)
14917c478bd9Sstevel@tonic-gate {
14927c478bd9Sstevel@tonic-gate 	char *str;
14937c478bd9Sstevel@tonic-gate 
14947c478bd9Sstevel@tonic-gate 	if (di_prop_lookup_strings(DDI_DEV_T_ANY, node, prop_name, &str) == 1) {
14957c478bd9Sstevel@tonic-gate 		return (str);
14967c478bd9Sstevel@tonic-gate 	}
14977c478bd9Sstevel@tonic-gate 
14987c478bd9Sstevel@tonic-gate 	return (NULL);
14997c478bd9Sstevel@tonic-gate }
15007c478bd9Sstevel@tonic-gate 
15017c478bd9Sstevel@tonic-gate /*
15027c478bd9Sstevel@tonic-gate  * Check if we have the drive in our list, based upon the device id, if the
15037c478bd9Sstevel@tonic-gate  * drive has a device id, or the kernel name, if it doesn't have a device id.
15047c478bd9Sstevel@tonic-gate  */
15057c478bd9Sstevel@tonic-gate static int
15067c478bd9Sstevel@tonic-gate have_disk(struct search_args *args, char *devidstr, char *kernel_name,
15077c478bd9Sstevel@tonic-gate     disk_t **diskp)
15087c478bd9Sstevel@tonic-gate {
15097c478bd9Sstevel@tonic-gate 	disk_t *listp;
15107c478bd9Sstevel@tonic-gate 
15117c478bd9Sstevel@tonic-gate 	*diskp = NULL;
15127c478bd9Sstevel@tonic-gate 	listp = args->disk_listp;
15137c478bd9Sstevel@tonic-gate 	if (devidstr != NULL) {
15147c478bd9Sstevel@tonic-gate 		if ((*diskp = get_disk_by_deviceid(listp, devidstr)) != NULL) {
15157c478bd9Sstevel@tonic-gate 			return (1);
15167c478bd9Sstevel@tonic-gate 		}
15177c478bd9Sstevel@tonic-gate 
15187c478bd9Sstevel@tonic-gate 	} else {
15197c478bd9Sstevel@tonic-gate 		/* no devid, try matching the kernel names on the drives */
15207c478bd9Sstevel@tonic-gate 		while (listp != NULL) {
1521*42f64fdbSSarah Jelinek 			if (libdiskmgt_str_eq(kernel_name,
1522*42f64fdbSSarah Jelinek 			    listp->kernel_name)) {
15237c478bd9Sstevel@tonic-gate 				*diskp = listp;
15247c478bd9Sstevel@tonic-gate 				return (1);
15257c478bd9Sstevel@tonic-gate 			}
15267c478bd9Sstevel@tonic-gate 			listp = listp->next;
15277c478bd9Sstevel@tonic-gate 		}
15287c478bd9Sstevel@tonic-gate 	}
15297c478bd9Sstevel@tonic-gate 	return (0);
15307c478bd9Sstevel@tonic-gate }
15317c478bd9Sstevel@tonic-gate 
15327c478bd9Sstevel@tonic-gate static char *
15337c478bd9Sstevel@tonic-gate bus_type(di_node_t node, di_minor_t minor, di_prom_handle_t ph)
15347c478bd9Sstevel@tonic-gate {
15357c478bd9Sstevel@tonic-gate 	char	*type;
15367c478bd9Sstevel@tonic-gate 	int	i;
15377c478bd9Sstevel@tonic-gate 
15387c478bd9Sstevel@tonic-gate 	type = get_prom_str("device_type", node, ph);
15397c478bd9Sstevel@tonic-gate 	if (type == NULL) {
15407c478bd9Sstevel@tonic-gate 		type = di_node_name(node);
15417c478bd9Sstevel@tonic-gate 	}
15427c478bd9Sstevel@tonic-gate 
15437c478bd9Sstevel@tonic-gate 	for (i = 0; bustypes[i]; i++) {
15447c478bd9Sstevel@tonic-gate 		if (libdiskmgt_str_eq(type, bustypes[i])) {
15457c478bd9Sstevel@tonic-gate 			return (type);
15467c478bd9Sstevel@tonic-gate 		}
15477c478bd9Sstevel@tonic-gate 	}
15487c478bd9Sstevel@tonic-gate 
15497c478bd9Sstevel@tonic-gate 	if (minor != NULL && strcmp(di_minor_nodetype(minor),
15507c478bd9Sstevel@tonic-gate 	    DDI_NT_USB_ATTACHMENT_POINT) == 0) {
15517c478bd9Sstevel@tonic-gate 		return ("usb");
15527c478bd9Sstevel@tonic-gate 	}
15537c478bd9Sstevel@tonic-gate 
15547c478bd9Sstevel@tonic-gate 	return (NULL);
15557c478bd9Sstevel@tonic-gate }
15567c478bd9Sstevel@tonic-gate 
15577c478bd9Sstevel@tonic-gate static int
15587c478bd9Sstevel@tonic-gate is_cluster_disk(di_node_t node, di_minor_t minor)
15597c478bd9Sstevel@tonic-gate {
15607c478bd9Sstevel@tonic-gate 	if (di_minor_spectype(minor) == S_IFCHR &&
15617c478bd9Sstevel@tonic-gate 	    libdiskmgt_str_eq(di_minor_nodetype(minor), DDI_PSEUDO) &&
15627c478bd9Sstevel@tonic-gate 	    libdiskmgt_str_eq(di_node_name(node), CLUSTER_DEV)) {
15637c478bd9Sstevel@tonic-gate 		return (1);
15647c478bd9Sstevel@tonic-gate 	}
15657c478bd9Sstevel@tonic-gate 
15667c478bd9Sstevel@tonic-gate 	return (0);
15677c478bd9Sstevel@tonic-gate }
15687c478bd9Sstevel@tonic-gate 
15697c478bd9Sstevel@tonic-gate /*
15707c478bd9Sstevel@tonic-gate  * If the input name is in c[t]ds format then return 1, otherwise return 0.
15717c478bd9Sstevel@tonic-gate  */
15727c478bd9Sstevel@tonic-gate static int
15737c478bd9Sstevel@tonic-gate is_ctds(char *name)
15747c478bd9Sstevel@tonic-gate {
15757c478bd9Sstevel@tonic-gate 	char	*p;
15767c478bd9Sstevel@tonic-gate 
15777c478bd9Sstevel@tonic-gate 	p = name;
15787c478bd9Sstevel@tonic-gate 
15797c478bd9Sstevel@tonic-gate 	if (*p++ != 'c') {
15807c478bd9Sstevel@tonic-gate 		return (0);
15817c478bd9Sstevel@tonic-gate 	}
15827c478bd9Sstevel@tonic-gate 	/* skip controller digits */
15837c478bd9Sstevel@tonic-gate 	while (isdigit(*p)) {
15847c478bd9Sstevel@tonic-gate 		p++;
15857c478bd9Sstevel@tonic-gate 	}
15867c478bd9Sstevel@tonic-gate 
15877c478bd9Sstevel@tonic-gate 	/* handle optional target */
15887c478bd9Sstevel@tonic-gate 	if (*p == 't') {
15897c478bd9Sstevel@tonic-gate 		p++;
15907c478bd9Sstevel@tonic-gate 		/* skip over target */
15917c478bd9Sstevel@tonic-gate 		while (isdigit(*p) || isupper(*p)) {
15927c478bd9Sstevel@tonic-gate 			p++;
15937c478bd9Sstevel@tonic-gate 		}
15947c478bd9Sstevel@tonic-gate 	}
15957c478bd9Sstevel@tonic-gate 
15967c478bd9Sstevel@tonic-gate 	if (*p++ != 'd') {
15977c478bd9Sstevel@tonic-gate 		return (0);
15987c478bd9Sstevel@tonic-gate 	}
15997c478bd9Sstevel@tonic-gate 	while (isdigit(*p)) {
16007c478bd9Sstevel@tonic-gate 		p++;
16017c478bd9Sstevel@tonic-gate 	}
16027c478bd9Sstevel@tonic-gate 
16037c478bd9Sstevel@tonic-gate 	if (*p++ != 's') {
16047c478bd9Sstevel@tonic-gate 		return (0);
16057c478bd9Sstevel@tonic-gate 	}
16067c478bd9Sstevel@tonic-gate 
16077c478bd9Sstevel@tonic-gate 	/* check the slice number */
16087c478bd9Sstevel@tonic-gate 	while (isdigit(*p)) {
16097c478bd9Sstevel@tonic-gate 		p++;
16107c478bd9Sstevel@tonic-gate 	}
16117c478bd9Sstevel@tonic-gate 
16127c478bd9Sstevel@tonic-gate 	if (*p != 0) {
16137c478bd9Sstevel@tonic-gate 		return (0);
16147c478bd9Sstevel@tonic-gate 	}
16157c478bd9Sstevel@tonic-gate 
16167c478bd9Sstevel@tonic-gate 	return (1);
16177c478bd9Sstevel@tonic-gate }
16187c478bd9Sstevel@tonic-gate 
16197c478bd9Sstevel@tonic-gate static int
16207c478bd9Sstevel@tonic-gate is_drive(di_minor_t minor)
16217c478bd9Sstevel@tonic-gate {
162297ab9a43SJohn Levon 	return (strncmp(di_minor_nodetype(minor), DDI_NT_BLOCK,
162397ab9a43SJohn Levon 	    strlen(DDI_NT_BLOCK)) == 0);
16247c478bd9Sstevel@tonic-gate }
16257c478bd9Sstevel@tonic-gate 
16267c478bd9Sstevel@tonic-gate static int
1627e7cbe64fSgw25295 is_zvol(di_node_t node, di_minor_t minor)
1628e7cbe64fSgw25295 {
1629e7cbe64fSgw25295 	if ((strncmp(di_node_name(node), ZFS_DRIVER, 3) == 0) &&
1630681d9761SEric Taylor 	    minor(di_minor_devt(minor)))
1631e7cbe64fSgw25295 		return (1);
1632e7cbe64fSgw25295 	return (0);
1633e7cbe64fSgw25295 }
1634e7cbe64fSgw25295 
1635e7cbe64fSgw25295 static int
16367c478bd9Sstevel@tonic-gate is_HBA(di_node_t node, di_minor_t minor)
16377c478bd9Sstevel@tonic-gate {
16387c478bd9Sstevel@tonic-gate 	char	*type;
16397c478bd9Sstevel@tonic-gate 	char	*name;
16407c478bd9Sstevel@tonic-gate 	int	type_index;
16417c478bd9Sstevel@tonic-gate 
16427c478bd9Sstevel@tonic-gate 	type = di_minor_nodetype(minor);
16437c478bd9Sstevel@tonic-gate 	type_index = 0;
16447c478bd9Sstevel@tonic-gate 
16457c478bd9Sstevel@tonic-gate 	while (ctrltypes[type_index] != NULL) {
16467c478bd9Sstevel@tonic-gate 		if (libdiskmgt_str_eq(type, ctrltypes[type_index])) {
16477c478bd9Sstevel@tonic-gate 			return (1);
16487c478bd9Sstevel@tonic-gate 		}
16497c478bd9Sstevel@tonic-gate 		type_index++;
16507c478bd9Sstevel@tonic-gate 	}
16517c478bd9Sstevel@tonic-gate 
16527c478bd9Sstevel@tonic-gate 	name = di_node_name(node);
16537c478bd9Sstevel@tonic-gate 	if (libdiskmgt_str_eq(type, DDI_PSEUDO) &&
16547c478bd9Sstevel@tonic-gate 	    libdiskmgt_str_eq(name, "ide")) {
16557c478bd9Sstevel@tonic-gate 		return (1);
16567c478bd9Sstevel@tonic-gate 	}
16577c478bd9Sstevel@tonic-gate 
16587c478bd9Sstevel@tonic-gate 	return (0);
16597c478bd9Sstevel@tonic-gate }
16607c478bd9Sstevel@tonic-gate 
16617c478bd9Sstevel@tonic-gate static int
16627c478bd9Sstevel@tonic-gate new_alias(disk_t *diskp, char *kernel_name, char *devlink_path,
16637c478bd9Sstevel@tonic-gate 	struct search_args *args)
16647c478bd9Sstevel@tonic-gate {
16657c478bd9Sstevel@tonic-gate 	alias_t		*aliasp;
16667c478bd9Sstevel@tonic-gate 	char		alias[MAXPATHLEN];
16677c478bd9Sstevel@tonic-gate 	di_node_t	pnode;
16687c478bd9Sstevel@tonic-gate 
16697c478bd9Sstevel@tonic-gate 	aliasp = malloc(sizeof (alias_t));
16707c478bd9Sstevel@tonic-gate 	if (aliasp == NULL) {
16717c478bd9Sstevel@tonic-gate 		return (ENOMEM);
16727c478bd9Sstevel@tonic-gate 	}
16737c478bd9Sstevel@tonic-gate 
16747c478bd9Sstevel@tonic-gate 	aliasp->alias = NULL;
16757c478bd9Sstevel@tonic-gate 	aliasp->kstat_name = NULL;
16767c478bd9Sstevel@tonic-gate 	aliasp->wwn = NULL;
16777c478bd9Sstevel@tonic-gate 	aliasp->devpaths = NULL;
16787c478bd9Sstevel@tonic-gate 	aliasp->orig_paths = NULL;
16797c478bd9Sstevel@tonic-gate 
16807c478bd9Sstevel@tonic-gate 	get_disk_name_from_path(devlink_path, alias, sizeof (alias));
16817c478bd9Sstevel@tonic-gate 
16827c478bd9Sstevel@tonic-gate 	aliasp->alias = strdup(alias);
16837c478bd9Sstevel@tonic-gate 	if (aliasp->alias == NULL) {
16847c478bd9Sstevel@tonic-gate 		cache_free_alias(aliasp);
16857c478bd9Sstevel@tonic-gate 		return (ENOMEM);
16867c478bd9Sstevel@tonic-gate 	}
16877c478bd9Sstevel@tonic-gate 
16887c478bd9Sstevel@tonic-gate 	if (kernel_name != NULL) {
16897c478bd9Sstevel@tonic-gate 		aliasp->kstat_name = strdup(kernel_name);
16907c478bd9Sstevel@tonic-gate 		if (aliasp->kstat_name == NULL) {
16917c478bd9Sstevel@tonic-gate 			cache_free_alias(aliasp);
16927c478bd9Sstevel@tonic-gate 			return (ENOMEM);
16937c478bd9Sstevel@tonic-gate 		}
16947c478bd9Sstevel@tonic-gate 	} else {
16957c478bd9Sstevel@tonic-gate 		aliasp->kstat_name = NULL;
16967c478bd9Sstevel@tonic-gate 	}
16977c478bd9Sstevel@tonic-gate 
16987c478bd9Sstevel@tonic-gate 	aliasp->cluster = 0;
16997c478bd9Sstevel@tonic-gate 	aliasp->lun = get_prop(DM_LUN, args->node);
17007c478bd9Sstevel@tonic-gate 	aliasp->target = get_prop(DM_TARGET, args->node);
17017c478bd9Sstevel@tonic-gate 	aliasp->wwn = get_byte_prop(WWN_PROP, args->node);
17027c478bd9Sstevel@tonic-gate 
17037c478bd9Sstevel@tonic-gate 	pnode = di_parent_node(args->node);
17047c478bd9Sstevel@tonic-gate 	if (pnode != DI_NODE_NIL) {
17057c478bd9Sstevel@tonic-gate 		char prop_name[MAXPROPLEN];
17067c478bd9Sstevel@tonic-gate 
17077c478bd9Sstevel@tonic-gate 		(void) snprintf(prop_name, sizeof (prop_name),
17087c478bd9Sstevel@tonic-gate 		    "target%d-sync-speed", aliasp->target);
17097c478bd9Sstevel@tonic-gate 		diskp->sync_speed = get_prop(prop_name, pnode);
17107c478bd9Sstevel@tonic-gate 		(void) snprintf(prop_name, sizeof (prop_name), "target%d-wide",
17117c478bd9Sstevel@tonic-gate 		    aliasp->target);
17127c478bd9Sstevel@tonic-gate 		diskp->wide = get_prop(prop_name, pnode);
17137c478bd9Sstevel@tonic-gate 	}
17147c478bd9Sstevel@tonic-gate 
17157c478bd9Sstevel@tonic-gate 	if (new_devpath(aliasp, devlink_path) != 0) {
17167c478bd9Sstevel@tonic-gate 		cache_free_alias(aliasp);
17177c478bd9Sstevel@tonic-gate 		return (ENOMEM);
17187c478bd9Sstevel@tonic-gate 	}
17197c478bd9Sstevel@tonic-gate 
17207c478bd9Sstevel@tonic-gate 	aliasp->next = diskp->aliases;
17217c478bd9Sstevel@tonic-gate 	diskp->aliases = aliasp;
17227c478bd9Sstevel@tonic-gate 
17237c478bd9Sstevel@tonic-gate 	return (0);
17247c478bd9Sstevel@tonic-gate }
17257c478bd9Sstevel@tonic-gate 
17267c478bd9Sstevel@tonic-gate /*
17277c478bd9Sstevel@tonic-gate  * Append the new devpath to the end of the devpath list.  This is important
17287c478bd9Sstevel@tonic-gate  * since we may want to use the order of the devpaths to match up the vtoc
17297c478bd9Sstevel@tonic-gate  * entries.
17307c478bd9Sstevel@tonic-gate  */
17317c478bd9Sstevel@tonic-gate static int
17327c478bd9Sstevel@tonic-gate new_devpath(alias_t *ap, char *devpath)
17337c478bd9Sstevel@tonic-gate {
17347c478bd9Sstevel@tonic-gate 	slice_t	*newdp;
17357c478bd9Sstevel@tonic-gate 	slice_t *alistp;
17367c478bd9Sstevel@tonic-gate 
17377c478bd9Sstevel@tonic-gate 	/*
17387c478bd9Sstevel@tonic-gate 	 * First, search the alias list to be sure that this devpath is
17397c478bd9Sstevel@tonic-gate 	 * not already there.
17407c478bd9Sstevel@tonic-gate 	 */
17417c478bd9Sstevel@tonic-gate 
17427c478bd9Sstevel@tonic-gate 	for (alistp = ap->devpaths; alistp != NULL; alistp = alistp->next) {
17437c478bd9Sstevel@tonic-gate 		if (libdiskmgt_str_eq(alistp->devpath, devpath)) {
17447c478bd9Sstevel@tonic-gate 			return (0);
17457c478bd9Sstevel@tonic-gate 		}
17467c478bd9Sstevel@tonic-gate 	}
17477c478bd9Sstevel@tonic-gate 
17487c478bd9Sstevel@tonic-gate 	/*
17497c478bd9Sstevel@tonic-gate 	 * Otherwise, not found so add this new devpath to the list.
17507c478bd9Sstevel@tonic-gate 	 */
17517c478bd9Sstevel@tonic-gate 
17527c478bd9Sstevel@tonic-gate 	newdp = malloc(sizeof (slice_t));
17537c478bd9Sstevel@tonic-gate 	if (newdp == NULL) {
17547c478bd9Sstevel@tonic-gate 		return (ENOMEM);
17557c478bd9Sstevel@tonic-gate 	}
17567c478bd9Sstevel@tonic-gate 
17577c478bd9Sstevel@tonic-gate 	newdp->devpath = strdup(devpath);
17587c478bd9Sstevel@tonic-gate 	if (newdp->devpath == NULL) {
17597c478bd9Sstevel@tonic-gate 		free(newdp);
17607c478bd9Sstevel@tonic-gate 		return (ENOMEM);
17617c478bd9Sstevel@tonic-gate 	}
17627c478bd9Sstevel@tonic-gate 	newdp->slice_num = -1;
17637c478bd9Sstevel@tonic-gate 	newdp->next = NULL;
17647c478bd9Sstevel@tonic-gate 
17657c478bd9Sstevel@tonic-gate 	if (ap->devpaths == NULL) {
17667c478bd9Sstevel@tonic-gate 		ap->devpaths = newdp;
17677c478bd9Sstevel@tonic-gate 	} else {
17687c478bd9Sstevel@tonic-gate 		/* append the devpath to the end of the list */
17697c478bd9Sstevel@tonic-gate 		slice_t	*dp;
17707c478bd9Sstevel@tonic-gate 
17717c478bd9Sstevel@tonic-gate 		dp = ap->devpaths;
17727c478bd9Sstevel@tonic-gate 		while (dp->next != NULL) {
17737c478bd9Sstevel@tonic-gate 			dp = dp->next;
17747c478bd9Sstevel@tonic-gate 		}
17757c478bd9Sstevel@tonic-gate 
17767c478bd9Sstevel@tonic-gate 		dp->next = newdp;
17777c478bd9Sstevel@tonic-gate 	}
17787c478bd9Sstevel@tonic-gate 
17797c478bd9Sstevel@tonic-gate 	return (0);
17807c478bd9Sstevel@tonic-gate }
17817c478bd9Sstevel@tonic-gate 
17827c478bd9Sstevel@tonic-gate static path_t *
17837c478bd9Sstevel@tonic-gate new_path(controller_t *cp, disk_t *dp, di_node_t node, di_path_state_t st,
17847c478bd9Sstevel@tonic-gate 	char *wwn)
17857c478bd9Sstevel@tonic-gate {
17867c478bd9Sstevel@tonic-gate 	char		*devpath;
17877c478bd9Sstevel@tonic-gate 	path_t		*pp;
17887c478bd9Sstevel@tonic-gate 	di_minor_t	minor;
17897c478bd9Sstevel@tonic-gate 
17907c478bd9Sstevel@tonic-gate 	/* Special handling for fp attachment node. */
17917c478bd9Sstevel@tonic-gate 	if (strcmp(di_node_name(node), "fp") == 0) {
17927c478bd9Sstevel@tonic-gate 		di_node_t pnode;
17937c478bd9Sstevel@tonic-gate 
17947c478bd9Sstevel@tonic-gate 		pnode = di_parent_node(node);
17957c478bd9Sstevel@tonic-gate 		if (pnode != DI_NODE_NIL) {
17967c478bd9Sstevel@tonic-gate 			node = pnode;
17977c478bd9Sstevel@tonic-gate 		}
17987c478bd9Sstevel@tonic-gate 	}
17997c478bd9Sstevel@tonic-gate 
18007c478bd9Sstevel@tonic-gate 	devpath = di_devfs_path(node);
18017c478bd9Sstevel@tonic-gate 
18027c478bd9Sstevel@tonic-gate 	/* check if the path is already there */
18037c478bd9Sstevel@tonic-gate 	pp = NULL;
18047c478bd9Sstevel@tonic-gate 	if (cp->paths != NULL) {
18057c478bd9Sstevel@tonic-gate 		int i;
18067c478bd9Sstevel@tonic-gate 
18077c478bd9Sstevel@tonic-gate 		for (i = 0; cp->paths[i]; i++) {
18087c478bd9Sstevel@tonic-gate 			if (libdiskmgt_str_eq(devpath, cp->paths[i]->name)) {
18097c478bd9Sstevel@tonic-gate 				pp = cp->paths[i];
18107c478bd9Sstevel@tonic-gate 				break;
18117c478bd9Sstevel@tonic-gate 			}
18127c478bd9Sstevel@tonic-gate 		}
18137c478bd9Sstevel@tonic-gate 	}
18147c478bd9Sstevel@tonic-gate 
18157c478bd9Sstevel@tonic-gate 	if (pp != NULL) {
18167c478bd9Sstevel@tonic-gate 		/* the path exists, add this disk to it */
18177c478bd9Sstevel@tonic-gate 
18187c478bd9Sstevel@tonic-gate 		di_devfs_path_free((void *) devpath);
18197c478bd9Sstevel@tonic-gate 		if (!add_disk2path(dp, pp, st, wwn)) {
18207c478bd9Sstevel@tonic-gate 			return (NULL);
18217c478bd9Sstevel@tonic-gate 		}
18227c478bd9Sstevel@tonic-gate 		return (pp);
18237c478bd9Sstevel@tonic-gate 	}
18247c478bd9Sstevel@tonic-gate 
18257c478bd9Sstevel@tonic-gate 	/* create a new path */
18267c478bd9Sstevel@tonic-gate 
18277c478bd9Sstevel@tonic-gate 	pp = calloc(1, sizeof (path_t));
18287c478bd9Sstevel@tonic-gate 	if (pp == NULL) {
18297c478bd9Sstevel@tonic-gate 		di_devfs_path_free((void *) devpath);
18307c478bd9Sstevel@tonic-gate 		return (NULL);
18317c478bd9Sstevel@tonic-gate 	}
18327c478bd9Sstevel@tonic-gate 
18337c478bd9Sstevel@tonic-gate 	pp->name = strdup(devpath);
18347c478bd9Sstevel@tonic-gate 	di_devfs_path_free((void *) devpath);
18357c478bd9Sstevel@tonic-gate 	if (pp->name == NULL) {
18367c478bd9Sstevel@tonic-gate 		cache_free_path(pp);
18377c478bd9Sstevel@tonic-gate 		return (NULL);
18387c478bd9Sstevel@tonic-gate 	}
18397c478bd9Sstevel@tonic-gate 
18407c478bd9Sstevel@tonic-gate 	/* add the disk to the path */
18417c478bd9Sstevel@tonic-gate 	if (!add_disk2path(dp, pp, st, wwn)) {
18427c478bd9Sstevel@tonic-gate 		return (NULL);
18437c478bd9Sstevel@tonic-gate 	}
18447c478bd9Sstevel@tonic-gate 
18457c478bd9Sstevel@tonic-gate 	/* add the path to the controller */
18467c478bd9Sstevel@tonic-gate 	if (add_ptr2array(pp, (void ***)&cp->paths) != 0) {
18477c478bd9Sstevel@tonic-gate 		cache_free_path(pp);
18487c478bd9Sstevel@tonic-gate 		return (NULL);
18497c478bd9Sstevel@tonic-gate 	}
18507c478bd9Sstevel@tonic-gate 
18517c478bd9Sstevel@tonic-gate 	/* add the controller to the path */
18527c478bd9Sstevel@tonic-gate 	pp->controller = cp;
18537c478bd9Sstevel@tonic-gate 
18547c478bd9Sstevel@tonic-gate 	minor = di_minor_next(node, NULL);
18557c478bd9Sstevel@tonic-gate 	if (minor != NULL) {
18567c478bd9Sstevel@tonic-gate 		pp->ctype = ctype(node, minor);
18577c478bd9Sstevel@tonic-gate 	} else {
18587c478bd9Sstevel@tonic-gate 		pp->ctype = DM_CTYPE_UNKNOWN;
18597c478bd9Sstevel@tonic-gate 	}
18607c478bd9Sstevel@tonic-gate 
18617c478bd9Sstevel@tonic-gate 	return (pp);
18627c478bd9Sstevel@tonic-gate }
18637c478bd9Sstevel@tonic-gate 
18647c478bd9Sstevel@tonic-gate /*
18657c478bd9Sstevel@tonic-gate  * We pass in the current controller pointer (currp) so we can double check
18667c478bd9Sstevel@tonic-gate  * that we aren't corrupting the list by removing the element we are on.  This
18677c478bd9Sstevel@tonic-gate  * should never happen, but it doesn't hurt to double check.
18687c478bd9Sstevel@tonic-gate  */
18697c478bd9Sstevel@tonic-gate static void
18707c478bd9Sstevel@tonic-gate remove_invalid_controller(char *name, controller_t *currp,
18717c478bd9Sstevel@tonic-gate     struct search_args *args)
18727c478bd9Sstevel@tonic-gate {
18737c478bd9Sstevel@tonic-gate 	controller_t *cp;
18747c478bd9Sstevel@tonic-gate 	bus_t *bp;
18757c478bd9Sstevel@tonic-gate 	controller_t *prevp;
18767c478bd9Sstevel@tonic-gate 
18777c478bd9Sstevel@tonic-gate 	bp = args->bus_listp;
18787c478bd9Sstevel@tonic-gate 	while (bp != NULL) {
18797c478bd9Sstevel@tonic-gate 		int i;
18807c478bd9Sstevel@tonic-gate 
18817c478bd9Sstevel@tonic-gate 		for (i = 0; bp->controllers[i]; i++) {
18827c478bd9Sstevel@tonic-gate 			if (libdiskmgt_str_eq(bp->controllers[i]->name, name)) {
18837c478bd9Sstevel@tonic-gate 				int j;
1884*42f64fdbSSarah Jelinek 				/*
1885*42f64fdbSSarah Jelinek 				 * remove pointer to invalid controller.
1886*42f64fdbSSarah Jelinek 				 * (it is a path)
1887*42f64fdbSSarah Jelinek 				 */
18887c478bd9Sstevel@tonic-gate 				for (j = i; bp->controllers[j]; j++) {
1889*42f64fdbSSarah Jelinek 					bp->controllers[j] =
1890*42f64fdbSSarah Jelinek 					    bp->controllers[j + 1];
18917c478bd9Sstevel@tonic-gate 				}
18927c478bd9Sstevel@tonic-gate 			}
18937c478bd9Sstevel@tonic-gate 		}
18947c478bd9Sstevel@tonic-gate 		bp = bp->next;
18957c478bd9Sstevel@tonic-gate 	}
18967c478bd9Sstevel@tonic-gate 
18977c478bd9Sstevel@tonic-gate 	if (args->controller_listp == NULL) {
18987c478bd9Sstevel@tonic-gate 		return;
18997c478bd9Sstevel@tonic-gate 	}
19007c478bd9Sstevel@tonic-gate 
19017c478bd9Sstevel@tonic-gate 	cp = args->controller_listp;
19027c478bd9Sstevel@tonic-gate 	if (libdiskmgt_str_eq(cp->name, name)) {
19037c478bd9Sstevel@tonic-gate 		args->controller_listp = cp->next;
1904*42f64fdbSSarah Jelinek 		if (dm_debug) {
1905*42f64fdbSSarah Jelinek 			(void) fprintf(stderr,
1906*42f64fdbSSarah Jelinek 			    "INFO: Removed controller %s from list\n",
1907*42f64fdbSSarah Jelinek 			    cp->name);
19087c478bd9Sstevel@tonic-gate 		}
1909*42f64fdbSSarah Jelinek 		remove_controller(cp, currp);
19107c478bd9Sstevel@tonic-gate 		return;
19117c478bd9Sstevel@tonic-gate 	}
19127c478bd9Sstevel@tonic-gate 
19137c478bd9Sstevel@tonic-gate 	prevp = cp;
19147c478bd9Sstevel@tonic-gate 	cp = cp->next;
19157c478bd9Sstevel@tonic-gate 	while (cp != NULL) {
19167c478bd9Sstevel@tonic-gate 		if (libdiskmgt_str_eq(cp->name, name)) {
1917*42f64fdbSSarah Jelinek 			if (dm_debug) {
1918*42f64fdbSSarah Jelinek 				(void) fprintf(stderr,
1919*42f64fdbSSarah Jelinek 				    "INFO: Removed controller %s from list\n",
1920*42f64fdbSSarah Jelinek 				    cp->name);
19217c478bd9Sstevel@tonic-gate 			}
1922*42f64fdbSSarah Jelinek 			prevp->next = cp->next;
1923*42f64fdbSSarah Jelinek 			remove_controller(cp, currp);
19247c478bd9Sstevel@tonic-gate 			return;
19257c478bd9Sstevel@tonic-gate 		}
19267c478bd9Sstevel@tonic-gate 		prevp = cp;
19277c478bd9Sstevel@tonic-gate 		cp = cp->next;
19287c478bd9Sstevel@tonic-gate 	}
19297c478bd9Sstevel@tonic-gate }
19307c478bd9Sstevel@tonic-gate 
19317c478bd9Sstevel@tonic-gate /*
19327c478bd9Sstevel@tonic-gate  * This is the standard strstr code modified for case independence.
19337c478bd9Sstevel@tonic-gate  */
19347c478bd9Sstevel@tonic-gate static char *
19357c478bd9Sstevel@tonic-gate str_case_index(register char *s1, register char *s2)
19367c478bd9Sstevel@tonic-gate {
19377c478bd9Sstevel@tonic-gate 	uint_t s2len = strlen(s2); /* length of the second string */
19387c478bd9Sstevel@tonic-gate 
19397c478bd9Sstevel@tonic-gate 	/* If the length of the second string is 0, return the first arg. */
19407c478bd9Sstevel@tonic-gate 	if (s2len == 0) {
19417c478bd9Sstevel@tonic-gate 		return (s1);
19427c478bd9Sstevel@tonic-gate 	}
19437c478bd9Sstevel@tonic-gate 
19447c478bd9Sstevel@tonic-gate 	while (strlen(s1) >= s2len) {
19457c478bd9Sstevel@tonic-gate 		if (strncasecmp(s1, s2, s2len) == 0) {
19467c478bd9Sstevel@tonic-gate 			return (s1);
19477c478bd9Sstevel@tonic-gate 		}
19487c478bd9Sstevel@tonic-gate 		s1++;
19497c478bd9Sstevel@tonic-gate 	}
19507c478bd9Sstevel@tonic-gate 	return (NULL);
19517c478bd9Sstevel@tonic-gate }
1952