xref: /illumos-gate/usr/src/cmd/devfsadm/misc_link.c (revision 7bebe46c)
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
525cf1a30Sjl  * Common Development and Distribution License (the "License").
625cf1a30Sjl  * 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 /*
224bff34e3Sthurlow  * Copyright 2008 Sun Microsystems, Inc.  All rights reserved.
237c478bd9Sstevel@tonic-gate  * Use is subject to license terms.
247c478bd9Sstevel@tonic-gate  */
257c478bd9Sstevel@tonic-gate 
267c478bd9Sstevel@tonic-gate #pragma ident	"%Z%%M%	%I%	%E% SMI"
277c478bd9Sstevel@tonic-gate 
287c478bd9Sstevel@tonic-gate #include <regex.h>
297c478bd9Sstevel@tonic-gate #include <devfsadm.h>
307c478bd9Sstevel@tonic-gate #include <stdio.h>
317c478bd9Sstevel@tonic-gate #include <strings.h>
327c478bd9Sstevel@tonic-gate #include <stdlib.h>
337c478bd9Sstevel@tonic-gate #include <limits.h>
347c478bd9Sstevel@tonic-gate #include <sys/zone.h>
357c478bd9Sstevel@tonic-gate #include <sys/zcons.h>
367c478bd9Sstevel@tonic-gate #include <sys/cpuid_drv.h>
377c478bd9Sstevel@tonic-gate 
387c478bd9Sstevel@tonic-gate static int display(di_minor_t minor, di_node_t node);
397c478bd9Sstevel@tonic-gate static int parallel(di_minor_t minor, di_node_t node);
407c478bd9Sstevel@tonic-gate static int node_slash_minor(di_minor_t minor, di_node_t node);
417c478bd9Sstevel@tonic-gate static int driver_minor(di_minor_t minor, di_node_t node);
427c478bd9Sstevel@tonic-gate static int node_name(di_minor_t minor, di_node_t node);
437c478bd9Sstevel@tonic-gate static int minor_name(di_minor_t minor, di_node_t node);
44516fc7f3Shx static int wifi_minor_name(di_minor_t minor, di_node_t node);
457c478bd9Sstevel@tonic-gate static int conskbd(di_minor_t minor, di_node_t node);
467c478bd9Sstevel@tonic-gate static int consms(di_minor_t minor, di_node_t node);
477c478bd9Sstevel@tonic-gate static int power_button(di_minor_t minor, di_node_t node);
487c478bd9Sstevel@tonic-gate static int fc_port(di_minor_t minor, di_node_t node);
497c478bd9Sstevel@tonic-gate static int printer_create(di_minor_t minor, di_node_t node);
507c478bd9Sstevel@tonic-gate static int se_hdlc_create(di_minor_t minor, di_node_t node);
517c478bd9Sstevel@tonic-gate static int ppm(di_minor_t minor, di_node_t node);
527c478bd9Sstevel@tonic-gate static int gpio(di_minor_t minor, di_node_t node);
537c478bd9Sstevel@tonic-gate static int av_create(di_minor_t minor, di_node_t node);
547c478bd9Sstevel@tonic-gate static int tsalarm_create(di_minor_t minor, di_node_t node);
55e3f8e17dSsc static int ntwdt_create(di_minor_t minor, di_node_t node);
567c478bd9Sstevel@tonic-gate static int zcons_create(di_minor_t minor, di_node_t node);
577c478bd9Sstevel@tonic-gate static int cpuid(di_minor_t minor, di_node_t node);
587c478bd9Sstevel@tonic-gate static int glvc(di_minor_t minor, di_node_t node);
597c478bd9Sstevel@tonic-gate static int ses_callback(di_minor_t minor, di_node_t node);
6025cf1a30Sjl static int kmdrv_create(di_minor_t minor, di_node_t node);
617c478bd9Sstevel@tonic-gate 
627c478bd9Sstevel@tonic-gate static devfsadm_create_t misc_cbt[] = {
63facf4a8dSllai 	{ "pseudo", "ddi_pseudo", "(^sad$)",
647c478bd9Sstevel@tonic-gate 	    TYPE_EXACT | DRV_RE, ILEVEL_0, node_slash_minor
657c478bd9Sstevel@tonic-gate 	},
667c478bd9Sstevel@tonic-gate 	{ "pseudo", "ddi_pseudo", "zsh",
677c478bd9Sstevel@tonic-gate 	    TYPE_EXACT | DRV_EXACT, ILEVEL_0, driver_minor
687c478bd9Sstevel@tonic-gate 	},
697c478bd9Sstevel@tonic-gate 	{ "network", "ddi_network", NULL,
707c478bd9Sstevel@tonic-gate 	    TYPE_EXACT, ILEVEL_0, minor_name
717c478bd9Sstevel@tonic-gate 	},
72516fc7f3Shx 	{ "wifi", "ddi_network:wifi", NULL,
73516fc7f3Shx 	    TYPE_EXACT, ILEVEL_0, wifi_minor_name
74516fc7f3Shx 	},
757c478bd9Sstevel@tonic-gate 	{ "display", "ddi_display", NULL,
767c478bd9Sstevel@tonic-gate 	    TYPE_EXACT, ILEVEL_0, display
777c478bd9Sstevel@tonic-gate 	},
787c478bd9Sstevel@tonic-gate 	{ "parallel", "ddi_parallel", NULL,
797c478bd9Sstevel@tonic-gate 	    TYPE_EXACT, ILEVEL_0, parallel
807c478bd9Sstevel@tonic-gate 	},
817c478bd9Sstevel@tonic-gate 	{ "enclosure", DDI_NT_SCSI_ENCLOSURE, NULL,
827c478bd9Sstevel@tonic-gate 	    TYPE_EXACT, ILEVEL_0, ses_callback
837c478bd9Sstevel@tonic-gate 	},
847c478bd9Sstevel@tonic-gate 	{ "pseudo", "ddi_pseudo", "(^winlock$)|(^pm$)",
857c478bd9Sstevel@tonic-gate 	    TYPE_EXACT | DRV_RE, ILEVEL_0, node_name
867c478bd9Sstevel@tonic-gate 	},
877c478bd9Sstevel@tonic-gate 	{ "pseudo", "ddi_pseudo", "conskbd",
887c478bd9Sstevel@tonic-gate 	    TYPE_EXACT | DRV_EXACT, ILEVEL_0, conskbd
897c478bd9Sstevel@tonic-gate 	},
907c478bd9Sstevel@tonic-gate 	{ "pseudo", "ddi_pseudo", "consms",
917c478bd9Sstevel@tonic-gate 	    TYPE_EXACT | DRV_EXACT, ILEVEL_0, consms
927c478bd9Sstevel@tonic-gate 	},
937c478bd9Sstevel@tonic-gate 	{ "pseudo", "ddi_pseudo", "rsm",
947c478bd9Sstevel@tonic-gate 	    TYPE_EXACT | DRV_EXACT, ILEVEL_0, minor_name
957c478bd9Sstevel@tonic-gate 	},
967c478bd9Sstevel@tonic-gate 	{ "pseudo", "ddi_pseudo",
977c478bd9Sstevel@tonic-gate 	    "(^lockstat$)|(^SUNW,rtvc$)|(^vol$)|(^log$)|(^sy$)|"
987c478bd9Sstevel@tonic-gate 	    "(^ksyms$)|(^clone$)|(^tl$)|(^tnf$)|(^kstat$)|(^mdesc$)|"
997c478bd9Sstevel@tonic-gate 	    "(^eeprom$)|(^ptsl$)|(^mm$)|(^wc$)|(^dump$)|(^cn$)|(^lo$)|(^ptm$)|"
1007c478bd9Sstevel@tonic-gate 	    "(^ptc$)|(^openeepr$)|(^poll$)|(^sysmsg$)|(^random$)|(^trapstat$)|"
1017c478bd9Sstevel@tonic-gate 	    "(^cryptoadm$)|(^crypto$)|(^pool$)|(^poolctl$)|(^bl$)|(^kmdb$)|"
1028b464eb8Smec 	    "(^sysevent$)|(^kssl$)|(^physmem$)",
1037c478bd9Sstevel@tonic-gate 	    TYPE_EXACT | DRV_RE, ILEVEL_1, minor_name
1047c478bd9Sstevel@tonic-gate 	},
1057c478bd9Sstevel@tonic-gate 	{ "pseudo", "ddi_pseudo",
1067c478bd9Sstevel@tonic-gate 	    "(^ip$)|(^tcp$)|(^udp$)|(^icmp$)|(^sctp$)|"
1077c478bd9Sstevel@tonic-gate 	    "(^ip6$)|(^tcp6$)|(^udp6$)|(^icmp6$)|(^sctp6$)|"
1087c478bd9Sstevel@tonic-gate 	    "(^rts$)|(^arp$)|(^ipsecah$)|(^ipsecesp$)|(^keysock$)|(^spdsock$)|"
10974e20cfeSnh 	    "(^nca$)|(^rds$)|(^sdp$)",
1107c478bd9Sstevel@tonic-gate 	    TYPE_EXACT | DRV_RE, ILEVEL_1, minor_name
1117c478bd9Sstevel@tonic-gate 	},
1127c478bd9Sstevel@tonic-gate 	{ "pseudo", "ddi_pseudo",
113381a2a9aSdr 	    "(^ipf$)|(^ipnat$)|(^ipstate$)|(^ipauth$)|"
1147c478bd9Sstevel@tonic-gate 	    "(^ipsync$)|(^ipscan$)|(^iplookup$)",
1157c478bd9Sstevel@tonic-gate 	    TYPE_EXACT | DRV_RE, ILEVEL_0, minor_name,
1167c478bd9Sstevel@tonic-gate 	},
1177c478bd9Sstevel@tonic-gate 	{ "pseudo", "ddi_pseudo",
1187c478bd9Sstevel@tonic-gate 	    "(^kdmouse$)|(^logi$)|(^rootprop$)|(^msm$)",
1197c478bd9Sstevel@tonic-gate 	    TYPE_EXACT | DRV_RE, ILEVEL_0, node_name
1207c478bd9Sstevel@tonic-gate 	},
1217c478bd9Sstevel@tonic-gate 	{ "pseudo", "ddi_pseudo", "tod",
1227c478bd9Sstevel@tonic-gate 	    TYPE_EXACT | DRV_EXACT, ILEVEL_0, node_name
1237c478bd9Sstevel@tonic-gate 	},
1247c478bd9Sstevel@tonic-gate 	{ "pseudo", "ddi_pseudo", "envctrl(two)?",
1257c478bd9Sstevel@tonic-gate 	    TYPE_EXACT | DRV_RE, ILEVEL_1, minor_name,
1267c478bd9Sstevel@tonic-gate 	},
1277c478bd9Sstevel@tonic-gate 	{ "pseudo", "ddi_pseudo", "fcode",
1287c478bd9Sstevel@tonic-gate 	    TYPE_EXACT | DRV_RE, ILEVEL_0, minor_name,
1297c478bd9Sstevel@tonic-gate 	},
1307c478bd9Sstevel@tonic-gate 	{ "power_button", "ddi_power_button", NULL,
1317c478bd9Sstevel@tonic-gate 	    TYPE_EXACT, ILEVEL_0, power_button,
1327c478bd9Sstevel@tonic-gate 	},
1337c478bd9Sstevel@tonic-gate 	{ "FC port", "ddi_ctl:devctl", "fp",
1347c478bd9Sstevel@tonic-gate 	    TYPE_EXACT | DRV_EXACT, ILEVEL_0, fc_port
1357c478bd9Sstevel@tonic-gate 	},
1367c478bd9Sstevel@tonic-gate 	{ "printer", "ddi_printer", NULL,
1377c478bd9Sstevel@tonic-gate 	    TYPE_EXACT, ILEVEL_0, printer_create
1387c478bd9Sstevel@tonic-gate 	},
1397c478bd9Sstevel@tonic-gate 	{ "pseudo", "ddi_pseudo", "se",
1407c478bd9Sstevel@tonic-gate 	    TYPE_EXACT | DRV_EXACT, ILEVEL_0, se_hdlc_create
1417c478bd9Sstevel@tonic-gate 	},
1427c478bd9Sstevel@tonic-gate 	{ "ppm",  "ddi_ppm", NULL,
1437c478bd9Sstevel@tonic-gate 	    TYPE_EXACT, ILEVEL_0, ppm
1447c478bd9Sstevel@tonic-gate 	},
1457c478bd9Sstevel@tonic-gate 	{ "pseudo", "ddi_pseudo", "gpio_87317",
1467c478bd9Sstevel@tonic-gate 	    TYPE_EXACT | DRV_EXACT, ILEVEL_0, gpio
1477c478bd9Sstevel@tonic-gate 	},
1487c478bd9Sstevel@tonic-gate 	{ "pseudo", "ddi_pseudo", "sckmdrv",
14925cf1a30Sjl 	    TYPE_EXACT | DRV_RE, ILEVEL_0, kmdrv_create,
15025cf1a30Sjl 	},
15125cf1a30Sjl 	{ "pseudo", "ddi_pseudo", "oplkmdrv",
15225cf1a30Sjl 	    TYPE_EXACT | DRV_RE, ILEVEL_0, kmdrv_create,
1537c478bd9Sstevel@tonic-gate 	},
1547c478bd9Sstevel@tonic-gate 	{ "av", "^ddi_av:(isoch|async)$", NULL,
1557c478bd9Sstevel@tonic-gate 	    TYPE_RE, ILEVEL_0, av_create,
1567c478bd9Sstevel@tonic-gate 	},
1577c478bd9Sstevel@tonic-gate 	{ "pseudo", "ddi_pseudo", "tsalarm",
1587c478bd9Sstevel@tonic-gate 	    TYPE_EXACT | DRV_RE, ILEVEL_0, tsalarm_create,
1597c478bd9Sstevel@tonic-gate 	},
160e3f8e17dSsc 	{ "pseudo", "ddi_pseudo", "ntwdt",
161e3f8e17dSsc 	    TYPE_EXACT | DRV_RE, ILEVEL_0, ntwdt_create,
162e3f8e17dSsc 	},
1637c478bd9Sstevel@tonic-gate 	{ "pseudo", "ddi_pseudo", "daplt",
1647c478bd9Sstevel@tonic-gate 	    TYPE_EXACT | DRV_EXACT, ILEVEL_0, minor_name
1657c478bd9Sstevel@tonic-gate 	},
1667c478bd9Sstevel@tonic-gate 	{ "pseudo", "ddi_pseudo", "zcons",
1677c478bd9Sstevel@tonic-gate 	    TYPE_EXACT | DRV_EXACT, ILEVEL_0, zcons_create,
1687c478bd9Sstevel@tonic-gate 	},
1697c478bd9Sstevel@tonic-gate 	{ "pseudo", "ddi_pseudo", CPUID_DRIVER_NAME,
1707c478bd9Sstevel@tonic-gate 	    TYPE_EXACT | DRV_EXACT, ILEVEL_0, cpuid,
1717c478bd9Sstevel@tonic-gate 	},
1727c478bd9Sstevel@tonic-gate 	{ "pseudo", "ddi_pseudo", "glvc",
1737c478bd9Sstevel@tonic-gate 	    TYPE_EXACT | DRV_EXACT, ILEVEL_0, glvc,
1747c478bd9Sstevel@tonic-gate 	},
17525cf1a30Sjl 	{ "pseudo", "ddi_pseudo", "dm2s",
17625cf1a30Sjl 	    TYPE_EXACT | DRV_EXACT, ILEVEL_0, minor_name,
17725cf1a30Sjl 	},
1784bff34e3Sthurlow 	{ "pseudo", "ddi_pseudo", "nsmb",
1794bff34e3Sthurlow 	    TYPE_EXACT | DRV_RE, ILEVEL_1, minor_name,
1804bff34e3Sthurlow 	},
181*7bebe46cSjc 	{ "pseudo", "ddi_pseudo", "mem_cache",
182*7bebe46cSjc 	    TYPE_EXACT | DRV_RE, ILEVEL_1, minor_name,
183*7bebe46cSjc 	},
1847c478bd9Sstevel@tonic-gate };
1857c478bd9Sstevel@tonic-gate 
1867c478bd9Sstevel@tonic-gate DEVFSADM_CREATE_INIT_V0(misc_cbt);
1877c478bd9Sstevel@tonic-gate 
1887c478bd9Sstevel@tonic-gate static devfsadm_remove_t misc_remove_cbt[] = {
1897c478bd9Sstevel@tonic-gate 	{ "pseudo", "^profile$",
1907c478bd9Sstevel@tonic-gate 	    RM_PRE | RM_ALWAYS, ILEVEL_0, devfsadm_rm_all
1917c478bd9Sstevel@tonic-gate 	},
1927c478bd9Sstevel@tonic-gate 	{ "pseudo", "^rsm$",
1937c478bd9Sstevel@tonic-gate 	    RM_PRE | RM_ALWAYS, ILEVEL_0, devfsadm_rm_all
1947c478bd9Sstevel@tonic-gate 	},
1957c478bd9Sstevel@tonic-gate 	{ "printer", "^printers/[0-9]+$",
1967c478bd9Sstevel@tonic-gate 	    RM_PRE | RM_HOT | RM_ALWAYS, ILEVEL_0, devfsadm_rm_all
1977c478bd9Sstevel@tonic-gate 	},
1987c478bd9Sstevel@tonic-gate 	{ "av", "^av/[0-9]+/(async|isoch)$",
1997c478bd9Sstevel@tonic-gate 	    RM_PRE | RM_HOT | RM_ALWAYS, ILEVEL_0, devfsadm_rm_all
2007c478bd9Sstevel@tonic-gate 	},
2017c478bd9Sstevel@tonic-gate 	{ "pseudo", "^daplt$",
2027c478bd9Sstevel@tonic-gate 	    RM_PRE | RM_ALWAYS, ILEVEL_0, devfsadm_rm_all
2037c478bd9Sstevel@tonic-gate 	},
2047c478bd9Sstevel@tonic-gate 	{ "pseudo", "^zcons/" ZONENAME_REGEXP "/(" ZCONS_MASTER_NAME "|"
2057c478bd9Sstevel@tonic-gate 		ZCONS_SLAVE_NAME ")$",
2067c478bd9Sstevel@tonic-gate 	    RM_PRE | RM_HOT | RM_ALWAYS, ILEVEL_0, devfsadm_rm_all
2077c478bd9Sstevel@tonic-gate 	},
208843e1988Sjohnlev 	{ "pseudo", "^" CPUID_SELF_NAME "$", RM_ALWAYS | RM_PRE | RM_HOT,
2097c478bd9Sstevel@tonic-gate 	    ILEVEL_0, devfsadm_rm_all
2107c478bd9Sstevel@tonic-gate 	},
2117c478bd9Sstevel@tonic-gate 	{ "enclosure", "^es/ses[0-9]+$", RM_POST,
2127c478bd9Sstevel@tonic-gate 		ILEVEL_0, devfsadm_rm_all
213edd26dc5Sdr 	},
214edd26dc5Sdr 	{ "pseudo", "^pfil$",
215edd26dc5Sdr 	    RM_PRE | RM_ALWAYS, ILEVEL_0, devfsadm_rm_all
2167c478bd9Sstevel@tonic-gate 	}
2177c478bd9Sstevel@tonic-gate };
2187c478bd9Sstevel@tonic-gate 
2197c478bd9Sstevel@tonic-gate /* Rules for gpio devices */
2207c478bd9Sstevel@tonic-gate static devfsadm_enumerate_t gpio_rules[1] =
2217c478bd9Sstevel@tonic-gate 	{"^gpio([0-9]+)$", 1, MATCH_ALL};
2227c478bd9Sstevel@tonic-gate 
2237c478bd9Sstevel@tonic-gate DEVFSADM_REMOVE_INIT_V0(misc_remove_cbt);
2247c478bd9Sstevel@tonic-gate 
2257c478bd9Sstevel@tonic-gate /*
2267c478bd9Sstevel@tonic-gate  * Handles minor node type "ddi_display".
2277c478bd9Sstevel@tonic-gate  *
2287c478bd9Sstevel@tonic-gate  * type=ddi_display fbs/\M0 fb\N0
2297c478bd9Sstevel@tonic-gate  */
2307c478bd9Sstevel@tonic-gate static int
2317c478bd9Sstevel@tonic-gate display(di_minor_t minor, di_node_t node)
2327c478bd9Sstevel@tonic-gate {
2337c478bd9Sstevel@tonic-gate 	char l_path[PATH_MAX + 1], contents[PATH_MAX + 1], *buf;
2347c478bd9Sstevel@tonic-gate 	devfsadm_enumerate_t rules[1] = {"^fb([0-9]+)$", 1, MATCH_ALL};
2357c478bd9Sstevel@tonic-gate 	char *mn = di_minor_name(minor);
2367c478bd9Sstevel@tonic-gate 
2377c478bd9Sstevel@tonic-gate 	/* create fbs/\M0 primary link */
2387c478bd9Sstevel@tonic-gate 	(void) strcpy(l_path, "fbs/");
2397c478bd9Sstevel@tonic-gate 	(void) strcat(l_path, mn);
2407c478bd9Sstevel@tonic-gate 	(void) devfsadm_mklink(l_path, node, minor, 0);
2417c478bd9Sstevel@tonic-gate 
2427c478bd9Sstevel@tonic-gate 	/* create fb\N0 which links to fbs/\M0 */
2437c478bd9Sstevel@tonic-gate 	if (devfsadm_enumerate_int(l_path, 0, &buf, rules, 1)) {
2447c478bd9Sstevel@tonic-gate 		return (DEVFSADM_CONTINUE);
2457c478bd9Sstevel@tonic-gate 	}
2467c478bd9Sstevel@tonic-gate 	(void) strcpy(contents, l_path);
2477c478bd9Sstevel@tonic-gate 	(void) strcpy(l_path, "fb");
2487c478bd9Sstevel@tonic-gate 	(void) strcat(l_path, buf);
2497c478bd9Sstevel@tonic-gate 	free(buf);
2507c478bd9Sstevel@tonic-gate 	(void) devfsadm_secondary_link(l_path, contents, 0);
2517c478bd9Sstevel@tonic-gate 	return (DEVFSADM_CONTINUE);
2527c478bd9Sstevel@tonic-gate }
2537c478bd9Sstevel@tonic-gate 
2547c478bd9Sstevel@tonic-gate /*
2557c478bd9Sstevel@tonic-gate  * Handles minor node type "ddi_parallel".
2567c478bd9Sstevel@tonic-gate  * type=ddi_parallel;name=mcpp     mcpp\N0
2577c478bd9Sstevel@tonic-gate  */
2587c478bd9Sstevel@tonic-gate static int
2597c478bd9Sstevel@tonic-gate parallel(di_minor_t minor, di_node_t node)
2607c478bd9Sstevel@tonic-gate {
2617c478bd9Sstevel@tonic-gate 	char path[PATH_MAX + 1], *buf;
2627c478bd9Sstevel@tonic-gate 	devfsadm_enumerate_t rules[1] = {"mcpp([0-9]+)$", 1, MATCH_ALL};
2637c478bd9Sstevel@tonic-gate 
2647c478bd9Sstevel@tonic-gate 
2657c478bd9Sstevel@tonic-gate 	if (strcmp(di_node_name(node), "mcpp") != 0) {
2667c478bd9Sstevel@tonic-gate 		return (DEVFSADM_CONTINUE);
2677c478bd9Sstevel@tonic-gate 	}
2687c478bd9Sstevel@tonic-gate 
2697c478bd9Sstevel@tonic-gate 	if (NULL == (buf = di_devfs_path(node))) {
2707c478bd9Sstevel@tonic-gate 		return (DEVFSADM_CONTINUE);
2717c478bd9Sstevel@tonic-gate 	}
2727c478bd9Sstevel@tonic-gate 
2737c478bd9Sstevel@tonic-gate 	(void) snprintf(path, sizeof (path), "%s:%s",
2747c478bd9Sstevel@tonic-gate 	    buf, di_minor_name(minor));
2757c478bd9Sstevel@tonic-gate 
2767c478bd9Sstevel@tonic-gate 	di_devfs_path_free(buf);
2777c478bd9Sstevel@tonic-gate 
2787c478bd9Sstevel@tonic-gate 	if (devfsadm_enumerate_int(path, 0, &buf, rules, 1)) {
2797c478bd9Sstevel@tonic-gate 		return (DEVFSADM_CONTINUE);
2807c478bd9Sstevel@tonic-gate 	}
2817c478bd9Sstevel@tonic-gate 	(void) snprintf(path, sizeof (path), "mcpp%s", buf);
2827c478bd9Sstevel@tonic-gate 	free(buf);
2837c478bd9Sstevel@tonic-gate 
2847c478bd9Sstevel@tonic-gate 	(void) devfsadm_mklink(path, node, minor, 0);
2857c478bd9Sstevel@tonic-gate 	return (DEVFSADM_CONTINUE);
2867c478bd9Sstevel@tonic-gate }
2877c478bd9Sstevel@tonic-gate 
2887c478bd9Sstevel@tonic-gate static int
2897c478bd9Sstevel@tonic-gate ses_callback(di_minor_t minor, di_node_t node)
2907c478bd9Sstevel@tonic-gate {
2917c478bd9Sstevel@tonic-gate 	char l_path[PATH_MAX];
2927c478bd9Sstevel@tonic-gate 	char *buf;
2937c478bd9Sstevel@tonic-gate 	char *devfspath;
2947c478bd9Sstevel@tonic-gate 	char p_path[PATH_MAX];
2957c478bd9Sstevel@tonic-gate 	devfsadm_enumerate_t re[] = {"^es$/^ses([0-9]+)$", 1, MATCH_ALL};
2967c478bd9Sstevel@tonic-gate 
2977c478bd9Sstevel@tonic-gate 	/* find devices path -- need to free mem */
2987c478bd9Sstevel@tonic-gate 	if (NULL == (devfspath = di_devfs_path(node))) {
2997c478bd9Sstevel@tonic-gate 		return (DEVFSADM_CONTINUE);
3007c478bd9Sstevel@tonic-gate 	}
3017c478bd9Sstevel@tonic-gate 
3027c478bd9Sstevel@tonic-gate 	(void) snprintf(p_path, sizeof (p_path), "%s:%s", devfspath,
3037c478bd9Sstevel@tonic-gate 	    di_minor_name(minor));
3047c478bd9Sstevel@tonic-gate 
3057c478bd9Sstevel@tonic-gate 
3067c478bd9Sstevel@tonic-gate 	/* find next number to use; buf is an ascii number */
3077c478bd9Sstevel@tonic-gate 	if (devfsadm_enumerate_int(p_path, 0, &buf, re, 1)) {
3087c478bd9Sstevel@tonic-gate 		/* free memory */
3097c478bd9Sstevel@tonic-gate 		di_devfs_path_free(devfspath);
3107c478bd9Sstevel@tonic-gate 		return (DEVFSADM_CONTINUE);
3117c478bd9Sstevel@tonic-gate 	}
3127c478bd9Sstevel@tonic-gate 
3137c478bd9Sstevel@tonic-gate 	(void) snprintf(l_path, sizeof (l_path), "es/ses%s", buf);
3147c478bd9Sstevel@tonic-gate 
3157c478bd9Sstevel@tonic-gate 	(void) devfsadm_mklink(l_path, node, minor, 0);
3167c478bd9Sstevel@tonic-gate 	/* free memory */
3177c478bd9Sstevel@tonic-gate 	free(buf);
3187c478bd9Sstevel@tonic-gate 	di_devfs_path_free(devfspath);
3197c478bd9Sstevel@tonic-gate 	return (DEVFSADM_CONTINUE);
3207c478bd9Sstevel@tonic-gate 
3217c478bd9Sstevel@tonic-gate }
3227c478bd9Sstevel@tonic-gate 
3237c478bd9Sstevel@tonic-gate static int
3247c478bd9Sstevel@tonic-gate node_slash_minor(di_minor_t minor, di_node_t node)
3257c478bd9Sstevel@tonic-gate {
3267c478bd9Sstevel@tonic-gate 
3277c478bd9Sstevel@tonic-gate 	char path[PATH_MAX + 1];
3287c478bd9Sstevel@tonic-gate 
3297c478bd9Sstevel@tonic-gate 	(void) strcpy(path, di_node_name(node));
3307c478bd9Sstevel@tonic-gate 	(void) strcat(path, "/");
3317c478bd9Sstevel@tonic-gate 	(void) strcat(path, di_minor_name(minor));
3327c478bd9Sstevel@tonic-gate 	(void) devfsadm_mklink(path, node, minor, 0);
3337c478bd9Sstevel@tonic-gate 	return (DEVFSADM_CONTINUE);
3347c478bd9Sstevel@tonic-gate }
3357c478bd9Sstevel@tonic-gate 
3367c478bd9Sstevel@tonic-gate static int
3377c478bd9Sstevel@tonic-gate driver_minor(di_minor_t minor, di_node_t node)
3387c478bd9Sstevel@tonic-gate {
3397c478bd9Sstevel@tonic-gate 	char path[PATH_MAX + 1];
3407c478bd9Sstevel@tonic-gate 
3417c478bd9Sstevel@tonic-gate 	(void) strcpy(path, di_driver_name(node));
3427c478bd9Sstevel@tonic-gate 	(void) strcat(path, di_minor_name(minor));
3437c478bd9Sstevel@tonic-gate 	(void) devfsadm_mklink(path, node, minor, 0);
3447c478bd9Sstevel@tonic-gate 	return (DEVFSADM_CONTINUE);
3457c478bd9Sstevel@tonic-gate }
3467c478bd9Sstevel@tonic-gate 
3477c478bd9Sstevel@tonic-gate /*
3487c478bd9Sstevel@tonic-gate  * Handles links of the form:
3497c478bd9Sstevel@tonic-gate  * type=ddi_pseudo;name=xyz  \D
3507c478bd9Sstevel@tonic-gate  */
3517c478bd9Sstevel@tonic-gate static int
3527c478bd9Sstevel@tonic-gate node_name(di_minor_t minor, di_node_t node)
3537c478bd9Sstevel@tonic-gate {
3547c478bd9Sstevel@tonic-gate 	(void) devfsadm_mklink(di_node_name(node), node, minor, 0);
3557c478bd9Sstevel@tonic-gate 	return (DEVFSADM_CONTINUE);
3567c478bd9Sstevel@tonic-gate }
3577c478bd9Sstevel@tonic-gate 
3587c478bd9Sstevel@tonic-gate /*
3597c478bd9Sstevel@tonic-gate  * Handles links of the form:
3607c478bd9Sstevel@tonic-gate  * type=ddi_pseudo;name=xyz  \M0
3617c478bd9Sstevel@tonic-gate  */
3627c478bd9Sstevel@tonic-gate static int
3637c478bd9Sstevel@tonic-gate minor_name(di_minor_t minor, di_node_t node)
3647c478bd9Sstevel@tonic-gate {
3657c478bd9Sstevel@tonic-gate 	char *mn = di_minor_name(minor);
3667c478bd9Sstevel@tonic-gate 
3677c478bd9Sstevel@tonic-gate 	(void) devfsadm_mklink(mn, node, minor, 0);
3687c478bd9Sstevel@tonic-gate 	if (strcmp(mn, "icmp") == 0) {
3697c478bd9Sstevel@tonic-gate 		(void) devfsadm_mklink("rawip", node, minor, 0);
3707c478bd9Sstevel@tonic-gate 	}
3717c478bd9Sstevel@tonic-gate 	if (strcmp(mn, "icmp6") == 0) {
3727c478bd9Sstevel@tonic-gate 		(void) devfsadm_mklink("rawip6", node, minor, 0);
3737c478bd9Sstevel@tonic-gate 	}
3747c478bd9Sstevel@tonic-gate 	if (strcmp(mn, "ipf") == 0) {
3757c478bd9Sstevel@tonic-gate 		(void) devfsadm_mklink("ipl", node, minor, 0);
3767c478bd9Sstevel@tonic-gate 	}
3777c478bd9Sstevel@tonic-gate 	return (DEVFSADM_CONTINUE);
3787c478bd9Sstevel@tonic-gate }
3797c478bd9Sstevel@tonic-gate 
380516fc7f3Shx /*
381516fc7f3Shx  * create links at /dev/wifi for wifi minor node
382516fc7f3Shx  */
383516fc7f3Shx static int
384516fc7f3Shx wifi_minor_name(di_minor_t minor, di_node_t node)
385516fc7f3Shx {
386516fc7f3Shx 	char buf[256];
387516fc7f3Shx 	char *mn = di_minor_name(minor);
388516fc7f3Shx 
389516fc7f3Shx 	(void) snprintf(buf, sizeof (buf), "%s%s", "wifi/", mn);
390516fc7f3Shx 	(void) devfsadm_mklink(buf, node, minor, 0);
391516fc7f3Shx 
392516fc7f3Shx 	return (DEVFSADM_CONTINUE);
393516fc7f3Shx }
3947c478bd9Sstevel@tonic-gate 
3957c478bd9Sstevel@tonic-gate static int
3967c478bd9Sstevel@tonic-gate conskbd(di_minor_t minor, di_node_t node)
3977c478bd9Sstevel@tonic-gate {
3987c478bd9Sstevel@tonic-gate 	(void) devfsadm_mklink("kbd", node, minor, 0);
3997c478bd9Sstevel@tonic-gate 	return (DEVFSADM_CONTINUE);
4007c478bd9Sstevel@tonic-gate }
4017c478bd9Sstevel@tonic-gate 
4027c478bd9Sstevel@tonic-gate static int
4037c478bd9Sstevel@tonic-gate consms(di_minor_t minor, di_node_t node)
4047c478bd9Sstevel@tonic-gate {
4057c478bd9Sstevel@tonic-gate 	(void) devfsadm_mklink("mouse", node, minor, 0);
4067c478bd9Sstevel@tonic-gate 	return (DEVFSADM_CONTINUE);
4077c478bd9Sstevel@tonic-gate }
4087c478bd9Sstevel@tonic-gate 
4097c478bd9Sstevel@tonic-gate static int
4107c478bd9Sstevel@tonic-gate power_button(di_minor_t minor, di_node_t node)
4117c478bd9Sstevel@tonic-gate {
4127c478bd9Sstevel@tonic-gate 	(void) devfsadm_mklink("power_button", node, minor, 0);
4137c478bd9Sstevel@tonic-gate 	return (DEVFSADM_CONTINUE);
4147c478bd9Sstevel@tonic-gate }
4157c478bd9Sstevel@tonic-gate 
4167c478bd9Sstevel@tonic-gate static int
4177c478bd9Sstevel@tonic-gate fc_port(di_minor_t minor, di_node_t node)
4187c478bd9Sstevel@tonic-gate {
4197c478bd9Sstevel@tonic-gate 	devfsadm_enumerate_t rules[1] = {"fc/fp([0-9]+)$", 1, MATCH_ALL};
4207c478bd9Sstevel@tonic-gate 	char *buf, path[PATH_MAX + 1];
4217c478bd9Sstevel@tonic-gate 	char *ptr;
4227c478bd9Sstevel@tonic-gate 
4237c478bd9Sstevel@tonic-gate 	if (NULL == (ptr = di_devfs_path(node))) {
4247c478bd9Sstevel@tonic-gate 		return (DEVFSADM_CONTINUE);
4257c478bd9Sstevel@tonic-gate 	}
4267c478bd9Sstevel@tonic-gate 
4277c478bd9Sstevel@tonic-gate 	(void) strcpy(path, ptr);
4287c478bd9Sstevel@tonic-gate 	(void) strcat(path, ":");
4297c478bd9Sstevel@tonic-gate 	(void) strcat(path, di_minor_name(minor));
4307c478bd9Sstevel@tonic-gate 
4317c478bd9Sstevel@tonic-gate 	di_devfs_path_free(ptr);
4327c478bd9Sstevel@tonic-gate 
4337c478bd9Sstevel@tonic-gate 	if (devfsadm_enumerate_int(path, 0, &buf, rules, 1) != 0) {
4347c478bd9Sstevel@tonic-gate 		return (DEVFSADM_CONTINUE);
4357c478bd9Sstevel@tonic-gate 	}
4367c478bd9Sstevel@tonic-gate 
4377c478bd9Sstevel@tonic-gate 	(void) strcpy(path, "fc/fp");
4387c478bd9Sstevel@tonic-gate 	(void) strcat(path, buf);
4397c478bd9Sstevel@tonic-gate 	free(buf);
4407c478bd9Sstevel@tonic-gate 
4417c478bd9Sstevel@tonic-gate 	(void) devfsadm_mklink(path, node, minor, 0);
4427c478bd9Sstevel@tonic-gate 	return (DEVFSADM_CONTINUE);
4437c478bd9Sstevel@tonic-gate }
4447c478bd9Sstevel@tonic-gate 
4457c478bd9Sstevel@tonic-gate /*
4467c478bd9Sstevel@tonic-gate  * Handles:
4477c478bd9Sstevel@tonic-gate  *	minor node type "ddi_printer".
4487c478bd9Sstevel@tonic-gate  * 	rules of the form: type=ddi_printer;name=bpp  \M0
4497c478bd9Sstevel@tonic-gate  */
4507c478bd9Sstevel@tonic-gate static int
4517c478bd9Sstevel@tonic-gate printer_create(di_minor_t minor, di_node_t node)
4527c478bd9Sstevel@tonic-gate {
4537c478bd9Sstevel@tonic-gate 	char *mn;
4547c478bd9Sstevel@tonic-gate 	char path[PATH_MAX + 1], *buf;
4557c478bd9Sstevel@tonic-gate 	devfsadm_enumerate_t rules[1] = {"^printers$/^([0-9]+)$", 1, MATCH_ALL};
4567c478bd9Sstevel@tonic-gate 
4577c478bd9Sstevel@tonic-gate 	mn = di_minor_name(minor);
4587c478bd9Sstevel@tonic-gate 
4597c478bd9Sstevel@tonic-gate 	if (strcmp(di_driver_name(node), "bpp") == 0) {
4607c478bd9Sstevel@tonic-gate 		(void) devfsadm_mklink(mn, node, minor, 0);
4617c478bd9Sstevel@tonic-gate 	}
4627c478bd9Sstevel@tonic-gate 
4637c478bd9Sstevel@tonic-gate 	if (NULL == (buf = di_devfs_path(node))) {
4647c478bd9Sstevel@tonic-gate 		return (DEVFSADM_CONTINUE);
4657c478bd9Sstevel@tonic-gate 	}
4667c478bd9Sstevel@tonic-gate 
4677c478bd9Sstevel@tonic-gate 	(void) snprintf(path, sizeof (path), "%s:%s", buf, mn);
4687c478bd9Sstevel@tonic-gate 	di_devfs_path_free(buf);
4697c478bd9Sstevel@tonic-gate 
4707c478bd9Sstevel@tonic-gate 	if (devfsadm_enumerate_int(path, 0, &buf, rules, 1)) {
4717c478bd9Sstevel@tonic-gate 		return (DEVFSADM_CONTINUE);
4727c478bd9Sstevel@tonic-gate 	}
4737c478bd9Sstevel@tonic-gate 
4747c478bd9Sstevel@tonic-gate 	(void) snprintf(path, sizeof (path), "printers/%s", buf);
4757c478bd9Sstevel@tonic-gate 	free(buf);
4767c478bd9Sstevel@tonic-gate 
4777c478bd9Sstevel@tonic-gate 	(void) devfsadm_mklink(path, node, minor, 0);
4787c478bd9Sstevel@tonic-gate 
4797c478bd9Sstevel@tonic-gate 	return (DEVFSADM_CONTINUE);
4807c478bd9Sstevel@tonic-gate }
4817c478bd9Sstevel@tonic-gate 
4827c478bd9Sstevel@tonic-gate /*
4837c478bd9Sstevel@tonic-gate  * Handles links of the form:
4847c478bd9Sstevel@tonic-gate  * type=ddi_pseudo;name=se;minor2=hdlc	se_hdlc\N0
4857c478bd9Sstevel@tonic-gate  * type=ddi_pseudo;name=serial;minor2=hdlc	se_hdlc\N0
4867c478bd9Sstevel@tonic-gate  */
4877c478bd9Sstevel@tonic-gate static int
4887c478bd9Sstevel@tonic-gate se_hdlc_create(di_minor_t minor, di_node_t node)
4897c478bd9Sstevel@tonic-gate {
4907c478bd9Sstevel@tonic-gate 	devfsadm_enumerate_t rules[1] = {"^se_hdlc([0-9]+)$", 1, MATCH_ALL};
4917c478bd9Sstevel@tonic-gate 	char *buf, path[PATH_MAX + 1];
4927c478bd9Sstevel@tonic-gate 	char *ptr;
4937c478bd9Sstevel@tonic-gate 	char *mn;
4947c478bd9Sstevel@tonic-gate 
4957c478bd9Sstevel@tonic-gate 	mn = di_minor_name(minor);
4967c478bd9Sstevel@tonic-gate 
4977c478bd9Sstevel@tonic-gate 	/* minor node should be of the form: "?,hdlc" */
4987c478bd9Sstevel@tonic-gate 	if (strcmp(mn + 1, ",hdlc") != 0) {
4997c478bd9Sstevel@tonic-gate 		return (DEVFSADM_CONTINUE);
5007c478bd9Sstevel@tonic-gate 	}
5017c478bd9Sstevel@tonic-gate 
5027c478bd9Sstevel@tonic-gate 	if (NULL == (ptr = di_devfs_path(node))) {
5037c478bd9Sstevel@tonic-gate 		return (DEVFSADM_CONTINUE);
5047c478bd9Sstevel@tonic-gate 	}
5057c478bd9Sstevel@tonic-gate 
5067c478bd9Sstevel@tonic-gate 	(void) strcpy(path, ptr);
5077c478bd9Sstevel@tonic-gate 	(void) strcat(path, ":");
5087c478bd9Sstevel@tonic-gate 	(void) strcat(path, mn);
5097c478bd9Sstevel@tonic-gate 
5107c478bd9Sstevel@tonic-gate 	di_devfs_path_free(ptr);
5117c478bd9Sstevel@tonic-gate 
5127c478bd9Sstevel@tonic-gate 	if (devfsadm_enumerate_int(path, 0, &buf, rules, 1) != 0) {
5137c478bd9Sstevel@tonic-gate 		return (DEVFSADM_CONTINUE);
5147c478bd9Sstevel@tonic-gate 	}
5157c478bd9Sstevel@tonic-gate 
5167c478bd9Sstevel@tonic-gate 	(void) strcpy(path, "se_hdlc");
5177c478bd9Sstevel@tonic-gate 	(void) strcat(path, buf);
5187c478bd9Sstevel@tonic-gate 	free(buf);
5197c478bd9Sstevel@tonic-gate 
5207c478bd9Sstevel@tonic-gate 	(void) devfsadm_mklink(path, node, minor, 0);
5217c478bd9Sstevel@tonic-gate 
5227c478bd9Sstevel@tonic-gate 	return (DEVFSADM_CONTINUE);
5237c478bd9Sstevel@tonic-gate }
5247c478bd9Sstevel@tonic-gate 
5257c478bd9Sstevel@tonic-gate static int
5267c478bd9Sstevel@tonic-gate gpio(di_minor_t minor, di_node_t node)
5277c478bd9Sstevel@tonic-gate {
5287c478bd9Sstevel@tonic-gate 	char l_path[PATH_MAX], p_path[PATH_MAX], *buf, *devfspath;
5297c478bd9Sstevel@tonic-gate 	char *minor_nm, *drvr_nm;
5307c478bd9Sstevel@tonic-gate 
5317c478bd9Sstevel@tonic-gate 
5327c478bd9Sstevel@tonic-gate 	minor_nm = di_minor_name(minor);
5337c478bd9Sstevel@tonic-gate 	drvr_nm = di_driver_name(node);
5347c478bd9Sstevel@tonic-gate 	if ((minor_nm == NULL) || (drvr_nm == NULL)) {
5357c478bd9Sstevel@tonic-gate 		return (DEVFSADM_CONTINUE);
5367c478bd9Sstevel@tonic-gate 	}
5377c478bd9Sstevel@tonic-gate 
5387c478bd9Sstevel@tonic-gate 	devfspath = di_devfs_path(node);
5397c478bd9Sstevel@tonic-gate 
5407c478bd9Sstevel@tonic-gate 	(void) strcpy(p_path, devfspath);
5417c478bd9Sstevel@tonic-gate 	(void) strcat(p_path, ":");
5427c478bd9Sstevel@tonic-gate 	(void) strcat(p_path, minor_nm);
5437c478bd9Sstevel@tonic-gate 	di_devfs_path_free(devfspath);
5447c478bd9Sstevel@tonic-gate 
5457c478bd9Sstevel@tonic-gate 	/* build the physical path from the components */
5467c478bd9Sstevel@tonic-gate 	if (devfsadm_enumerate_int(p_path, 0, &buf, gpio_rules, 1)) {
5477c478bd9Sstevel@tonic-gate 		return (DEVFSADM_CONTINUE);
5487c478bd9Sstevel@tonic-gate 	}
5497c478bd9Sstevel@tonic-gate 
5507c478bd9Sstevel@tonic-gate 	(void) snprintf(l_path, sizeof (l_path), "%s%s", "gpio", buf);
5517c478bd9Sstevel@tonic-gate 
5527c478bd9Sstevel@tonic-gate 	free(buf);
5537c478bd9Sstevel@tonic-gate 
5547c478bd9Sstevel@tonic-gate 	(void) devfsadm_mklink(l_path, node, minor, 0);
5557c478bd9Sstevel@tonic-gate 
5567c478bd9Sstevel@tonic-gate 	return (DEVFSADM_CONTINUE);
5577c478bd9Sstevel@tonic-gate }
5587c478bd9Sstevel@tonic-gate 
5597c478bd9Sstevel@tonic-gate /*
5607c478bd9Sstevel@tonic-gate  * Creates /dev/ppm nodes for Platform Specific PM module
5617c478bd9Sstevel@tonic-gate  */
5627c478bd9Sstevel@tonic-gate static int
5637c478bd9Sstevel@tonic-gate ppm(di_minor_t minor, di_node_t node)
5647c478bd9Sstevel@tonic-gate {
5657c478bd9Sstevel@tonic-gate 	(void) devfsadm_mklink("ppm", node, minor, 0);
5667c478bd9Sstevel@tonic-gate 	return (DEVFSADM_CONTINUE);
5677c478bd9Sstevel@tonic-gate }
5687c478bd9Sstevel@tonic-gate 
5697c478bd9Sstevel@tonic-gate /*
5707c478bd9Sstevel@tonic-gate  * Handles:
5717c478bd9Sstevel@tonic-gate  *	/dev/av/[0-9]+/(async|isoch)
5727c478bd9Sstevel@tonic-gate  */
5737c478bd9Sstevel@tonic-gate static int
5747c478bd9Sstevel@tonic-gate av_create(di_minor_t minor, di_node_t node)
5757c478bd9Sstevel@tonic-gate {
5767c478bd9Sstevel@tonic-gate 	devfsadm_enumerate_t rules[1] = {"^av$/^([0-9]+)$", 1, MATCH_ADDR};
5777c478bd9Sstevel@tonic-gate 	char	*minor_str;
5787c478bd9Sstevel@tonic-gate 	char	path[PATH_MAX + 1];
5797c478bd9Sstevel@tonic-gate 	char	*buf;
5807c478bd9Sstevel@tonic-gate 
5817c478bd9Sstevel@tonic-gate 	if ((buf = di_devfs_path(node)) == NULL) {
5827c478bd9Sstevel@tonic-gate 		return (DEVFSADM_CONTINUE);
5837c478bd9Sstevel@tonic-gate 	}
5847c478bd9Sstevel@tonic-gate 
5857c478bd9Sstevel@tonic-gate 	minor_str = di_minor_name(minor);
5867c478bd9Sstevel@tonic-gate 	(void) snprintf(path, sizeof (path), "%s:%s", buf, minor_str);
5877c478bd9Sstevel@tonic-gate 	di_devfs_path_free(buf);
5887c478bd9Sstevel@tonic-gate 
5897c478bd9Sstevel@tonic-gate 	if (devfsadm_enumerate_int(path, 0, &buf, rules, 1)) {
5907c478bd9Sstevel@tonic-gate 		return (DEVFSADM_CONTINUE);
5917c478bd9Sstevel@tonic-gate 	}
5927c478bd9Sstevel@tonic-gate 
5937c478bd9Sstevel@tonic-gate 	(void) snprintf(path, sizeof (path), "av/%s/%s", buf, minor_str);
5947c478bd9Sstevel@tonic-gate 	free(buf);
5957c478bd9Sstevel@tonic-gate 
5967c478bd9Sstevel@tonic-gate 	(void) devfsadm_mklink(path, node, minor, 0);
5977c478bd9Sstevel@tonic-gate 
5987c478bd9Sstevel@tonic-gate 	return (DEVFSADM_CONTINUE);
5997c478bd9Sstevel@tonic-gate }
6007c478bd9Sstevel@tonic-gate 
6017c478bd9Sstevel@tonic-gate /*
6027c478bd9Sstevel@tonic-gate  * Creates /dev/lom and /dev/tsalarm:ctl for tsalarm node
6037c478bd9Sstevel@tonic-gate  */
6047c478bd9Sstevel@tonic-gate static int
6057c478bd9Sstevel@tonic-gate tsalarm_create(di_minor_t minor, di_node_t node)
6067c478bd9Sstevel@tonic-gate {
6077c478bd9Sstevel@tonic-gate 	char buf[PATH_MAX + 1];
6087c478bd9Sstevel@tonic-gate 	char *mn = di_minor_name(minor);
6097c478bd9Sstevel@tonic-gate 
6107c478bd9Sstevel@tonic-gate 	(void) snprintf(buf, sizeof (buf), "%s%s", di_node_name(node), ":ctl");
6117c478bd9Sstevel@tonic-gate 
6127c478bd9Sstevel@tonic-gate 	(void) devfsadm_mklink(mn, node, minor, 0);
6137c478bd9Sstevel@tonic-gate 	(void) devfsadm_mklink(buf, node, minor, 0);
6147c478bd9Sstevel@tonic-gate 
6157c478bd9Sstevel@tonic-gate 	return (DEVFSADM_CONTINUE);
616e3f8e17dSsc }
617e3f8e17dSsc 
618e3f8e17dSsc /*
619e3f8e17dSsc  * Creates /dev/ntwdt for ntwdt node
620e3f8e17dSsc  */
621e3f8e17dSsc static int
622e3f8e17dSsc ntwdt_create(di_minor_t minor, di_node_t node)
623e3f8e17dSsc {
624e3f8e17dSsc 	(void) devfsadm_mklink("ntwdt", node, minor, 0);
625e3f8e17dSsc 	return (DEVFSADM_CONTINUE);
6267c478bd9Sstevel@tonic-gate }
6277c478bd9Sstevel@tonic-gate 
6287c478bd9Sstevel@tonic-gate static int
6297c478bd9Sstevel@tonic-gate zcons_create(di_minor_t minor, di_node_t node)
6307c478bd9Sstevel@tonic-gate {
6317c478bd9Sstevel@tonic-gate 	char	*minor_str;
6327c478bd9Sstevel@tonic-gate 	char	*zonename;
6337c478bd9Sstevel@tonic-gate 	char	path[MAXPATHLEN];
6347c478bd9Sstevel@tonic-gate 
6357c478bd9Sstevel@tonic-gate 	minor_str = di_minor_name(minor);
6367c478bd9Sstevel@tonic-gate 
6377c478bd9Sstevel@tonic-gate 	if (di_prop_lookup_strings(DDI_DEV_T_ANY, node, "zonename",
6387c478bd9Sstevel@tonic-gate 	    &zonename) == -1) {
6397c478bd9Sstevel@tonic-gate 		return (DEVFSADM_CONTINUE);
6407c478bd9Sstevel@tonic-gate 	}
6417c478bd9Sstevel@tonic-gate 
6427c478bd9Sstevel@tonic-gate 	(void) snprintf(path, sizeof (path), "zcons/%s/%s", zonename,
6437c478bd9Sstevel@tonic-gate 	    minor_str);
6447c478bd9Sstevel@tonic-gate 	(void) devfsadm_mklink(path, node, minor, 0);
6457c478bd9Sstevel@tonic-gate 
6467c478bd9Sstevel@tonic-gate 	return (DEVFSADM_CONTINUE);
6477c478bd9Sstevel@tonic-gate }
6487c478bd9Sstevel@tonic-gate 
6497c478bd9Sstevel@tonic-gate /*
6507c478bd9Sstevel@tonic-gate  *	/dev/cpu/self/cpuid 	->	/devices/pseudo/cpuid@0:self
6517c478bd9Sstevel@tonic-gate  */
6527c478bd9Sstevel@tonic-gate static int
6537c478bd9Sstevel@tonic-gate cpuid(di_minor_t minor, di_node_t node)
6547c478bd9Sstevel@tonic-gate {
6557c478bd9Sstevel@tonic-gate 	(void) devfsadm_mklink(CPUID_SELF_NAME, node, minor, 0);
6567c478bd9Sstevel@tonic-gate 	return (DEVFSADM_CONTINUE);
6577c478bd9Sstevel@tonic-gate }
6587c478bd9Sstevel@tonic-gate 
6597c478bd9Sstevel@tonic-gate /*
6607c478bd9Sstevel@tonic-gate  * For device
6617c478bd9Sstevel@tonic-gate  *      /dev/spfma -> /devices/virtual-devices/fma@5:glvc
6627c478bd9Sstevel@tonic-gate  */
6637c478bd9Sstevel@tonic-gate static int
6647c478bd9Sstevel@tonic-gate glvc(di_minor_t minor, di_node_t node)
6657c478bd9Sstevel@tonic-gate {
6667c478bd9Sstevel@tonic-gate 	char node_name[MAXNAMELEN + 1];
6677c478bd9Sstevel@tonic-gate 
6687c478bd9Sstevel@tonic-gate 	(void) strcpy(node_name, di_node_name(node));
6697c478bd9Sstevel@tonic-gate 
6707c478bd9Sstevel@tonic-gate 	if (strncmp(node_name, "fma", 3) == 0) {
6717c478bd9Sstevel@tonic-gate 		/* Only one fma channel */
6727c478bd9Sstevel@tonic-gate 		(void) devfsadm_mklink("spfma", node, minor, 0);
6737c478bd9Sstevel@tonic-gate 	}
6747c478bd9Sstevel@tonic-gate 	return (DEVFSADM_CONTINUE);
6757c478bd9Sstevel@tonic-gate }
67625cf1a30Sjl 
67725cf1a30Sjl /*
67825cf1a30Sjl  * Handles links of the form:
67925cf1a30Sjl  * type=ddi_pseudo;name=sckmdrv		kmdrv\M0
68025cf1a30Sjl  * type=ddi_pseudo;name=oplkmdrv	kmdrv\M0
68125cf1a30Sjl  */
68225cf1a30Sjl static int
68325cf1a30Sjl kmdrv_create(di_minor_t minor, di_node_t node)
68425cf1a30Sjl {
68525cf1a30Sjl 
68625cf1a30Sjl 	(void) devfsadm_mklink("kmdrv", node, minor, 0);
68725cf1a30Sjl 	return (DEVFSADM_CONTINUE);
68825cf1a30Sjl }
689