xref: /titanic_44/usr/src/lib/libdevinfo/devinfo_devperm.c (revision ceeba6f9f0adf370c2a0f5c81a0d6ef1ba146cb4)
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
5facf4a8dSllai1  * Common Development and Distribution License (the "License").
6facf4a8dSllai1  * 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*ceeba6f9Srui zang - Sun Microsystems - Beijing China  * Copyright (c) 2003, 2010, Oracle and/or its affiliates. All rights reserved.
237c478bd9Sstevel@tonic-gate  */
247c478bd9Sstevel@tonic-gate 
254bc0a2efScasper #define	_POSIX_PTHREAD_SEMANTICS	/* for getgrnam_r */
267c478bd9Sstevel@tonic-gate #ifdef lint
277c478bd9Sstevel@tonic-gate #define	_REENTRANT			/* for strtok_r */
287c478bd9Sstevel@tonic-gate #endif
297c478bd9Sstevel@tonic-gate 
307c478bd9Sstevel@tonic-gate #include <stdio.h>
317c478bd9Sstevel@tonic-gate #include <stdlib.h>
321ca93273Seota #include <ctype.h>
337c478bd9Sstevel@tonic-gate #include <string.h>
347c478bd9Sstevel@tonic-gate #include <unistd.h>
357c478bd9Sstevel@tonic-gate #include <dirent.h>
367c478bd9Sstevel@tonic-gate #include <errno.h>
377c478bd9Sstevel@tonic-gate #include <grp.h>
387c478bd9Sstevel@tonic-gate #include <pwd.h>
397c478bd9Sstevel@tonic-gate #include <nss_dbdefs.h>
407c478bd9Sstevel@tonic-gate #include <stdarg.h>
417c478bd9Sstevel@tonic-gate #include <syslog.h>
427c478bd9Sstevel@tonic-gate #include <sys/acl.h>
437c478bd9Sstevel@tonic-gate #include <sys/types.h>
447c478bd9Sstevel@tonic-gate #include <sys/stat.h>
457c478bd9Sstevel@tonic-gate #include <sys/ddi.h>
467c478bd9Sstevel@tonic-gate #include <sys/sunddi.h>
477c478bd9Sstevel@tonic-gate #include <sys/devinfo_impl.h>
487c478bd9Sstevel@tonic-gate #include <sys/hwconf.h>
497c478bd9Sstevel@tonic-gate #include <sys/modctl.h>
507c478bd9Sstevel@tonic-gate #include <libnvpair.h>
517c478bd9Sstevel@tonic-gate #include <device_info.h>
527c478bd9Sstevel@tonic-gate #include <regex.h>
537c478bd9Sstevel@tonic-gate #include <strings.h>
547c478bd9Sstevel@tonic-gate #include <libdevinfo.h>
55c0eb16d4Sjg #include <zone.h>
56aecfc01dSrui zang - Sun Microsystems - Beijing China #include <fcntl.h>
57aecfc01dSrui zang - Sun Microsystems - Beijing China #include <utmpx.h>
587c478bd9Sstevel@tonic-gate 
597c478bd9Sstevel@tonic-gate extern int is_minor_node(const char *, const char **);
607c478bd9Sstevel@tonic-gate 
61aecfc01dSrui zang - Sun Microsystems - Beijing China static int is_login_user(uid_t);
627c478bd9Sstevel@tonic-gate static int logindevperm(const char *, uid_t, gid_t, void (*)());
637c478bd9Sstevel@tonic-gate static int dir_dev_acc(char *, char *, uid_t, gid_t, mode_t, char *line,
647c478bd9Sstevel@tonic-gate 	void (*)());
657c478bd9Sstevel@tonic-gate static int setdevaccess(char *, uid_t, gid_t, mode_t, void (*)());
667c478bd9Sstevel@tonic-gate static void logerror(char *);
677c478bd9Sstevel@tonic-gate 
681ca93273Seota static int is_blank(char *);
691ca93273Seota 
707c478bd9Sstevel@tonic-gate #define	MAX_LINELEN	256
717c478bd9Sstevel@tonic-gate #define	LOGINDEVPERM	"/etc/logindevperm"
727c478bd9Sstevel@tonic-gate #define	DIRWILD		"/*"			/* directory wildcard */
737c478bd9Sstevel@tonic-gate #define	DIRWLDLEN	2			/* strlen(DIRWILD) */
747c478bd9Sstevel@tonic-gate 
757c478bd9Sstevel@tonic-gate /*
767c478bd9Sstevel@tonic-gate  * Revoke all access to a device node and make sure that there are
777c478bd9Sstevel@tonic-gate  * no interposed streams devices attached.  Must be called before a
787c478bd9Sstevel@tonic-gate  * device is actually opened.
797c478bd9Sstevel@tonic-gate  * When fdetach is called, the underlying device node is revealed; it
807c478bd9Sstevel@tonic-gate  * will have the previous owner and that owner can re-attach; so we
817c478bd9Sstevel@tonic-gate  * retry until we win.
827c478bd9Sstevel@tonic-gate  * Ignore non-existent devices.
837c478bd9Sstevel@tonic-gate  */
847c478bd9Sstevel@tonic-gate static int
857c478bd9Sstevel@tonic-gate setdevaccess(char *dev, uid_t uid, gid_t gid, mode_t mode,
867c478bd9Sstevel@tonic-gate     void (*errmsg)(char *))
877c478bd9Sstevel@tonic-gate {
887c478bd9Sstevel@tonic-gate 	int err = 0, local_errno;
897c478bd9Sstevel@tonic-gate 	char errstring[MAX_LINELEN];
9018c2aff7Sartem 	struct stat st;
917c478bd9Sstevel@tonic-gate 
927c478bd9Sstevel@tonic-gate 	if (chown(dev, uid, gid) == -1) {
937c478bd9Sstevel@tonic-gate 		if (errno == ENOENT)	/* no such file */
947c478bd9Sstevel@tonic-gate 			return (0);
957c478bd9Sstevel@tonic-gate 		err = -1;
96c4ca7dc0Sfrits 		local_errno = errno;
977c478bd9Sstevel@tonic-gate 	}
987c478bd9Sstevel@tonic-gate 
9918c2aff7Sartem 	/*
10018c2aff7Sartem 	 * don't fdetach block devices, as it will unmount them
10118c2aff7Sartem 	 */
10218c2aff7Sartem 	if (!((stat(dev, &st) == 0) && ((st.st_mode & S_IFMT) == S_IFBLK))) {
1037c478bd9Sstevel@tonic-gate 		while (fdetach(dev) == 0) {
1047c478bd9Sstevel@tonic-gate 			if (chown(dev, uid, gid) == -1) {
1057c478bd9Sstevel@tonic-gate 				err = -1;
1067c478bd9Sstevel@tonic-gate 				local_errno = errno;
1077c478bd9Sstevel@tonic-gate 			}
1087c478bd9Sstevel@tonic-gate 		}
1097c478bd9Sstevel@tonic-gate 		if (err && errmsg) {
1107c478bd9Sstevel@tonic-gate 			(void) snprintf(errstring, MAX_LINELEN,
1117c478bd9Sstevel@tonic-gate 			    "failed to chown device %s: %s\n",
1127c478bd9Sstevel@tonic-gate 			    dev, strerror(local_errno));
1137c478bd9Sstevel@tonic-gate 			(*errmsg)(errstring);
1147c478bd9Sstevel@tonic-gate 		}
11518c2aff7Sartem 	}
1167c478bd9Sstevel@tonic-gate 
117fa9e4066Sahrens 	/*
118fa9e4066Sahrens 	 * strip_acl sets an acl and changes the files owner/group
119fa9e4066Sahrens 	 */
120fa9e4066Sahrens 	err = acl_strip(dev, uid, gid, mode);
1217c478bd9Sstevel@tonic-gate 
122fa9e4066Sahrens 	if (err != 0) {
1237c478bd9Sstevel@tonic-gate 		/*
1247c478bd9Sstevel@tonic-gate 		 * If the file system returned ENOSYS, we know that it
1257c478bd9Sstevel@tonic-gate 		 * doesn't support ACLs, therefore, we must assume that
1267c478bd9Sstevel@tonic-gate 		 * there were no ACLs to remove in the first place.
1277c478bd9Sstevel@tonic-gate 		 */
128facf4a8dSllai1 		err = 0;
1297c478bd9Sstevel@tonic-gate 		if (errno != ENOSYS) {
1307c478bd9Sstevel@tonic-gate 			err = -1;
1317c478bd9Sstevel@tonic-gate 
1327c478bd9Sstevel@tonic-gate 			if (errmsg) {
1337c478bd9Sstevel@tonic-gate 				(void) snprintf(errstring, MAX_LINELEN,
1347c478bd9Sstevel@tonic-gate 				    "failed to set acl on device %s: %s\n",
1357c478bd9Sstevel@tonic-gate 				    dev, strerror(errno));
1367c478bd9Sstevel@tonic-gate 				(*errmsg)(errstring);
1377c478bd9Sstevel@tonic-gate 			}
1387c478bd9Sstevel@tonic-gate 		}
1397c478bd9Sstevel@tonic-gate 		if (chmod(dev, mode) == -1) {
1407c478bd9Sstevel@tonic-gate 			err = -1;
1417c478bd9Sstevel@tonic-gate 			if (errmsg) {
1427c478bd9Sstevel@tonic-gate 				(void) snprintf(errstring, MAX_LINELEN,
1437c478bd9Sstevel@tonic-gate 				    "failed to chmod device %s: %s\n",
1447c478bd9Sstevel@tonic-gate 				    dev, strerror(errno));
1457c478bd9Sstevel@tonic-gate 				(*errmsg)(errstring);
1467c478bd9Sstevel@tonic-gate 			}
1477c478bd9Sstevel@tonic-gate 		}
148fa9e4066Sahrens 	}
1497c478bd9Sstevel@tonic-gate 
1507c478bd9Sstevel@tonic-gate 	return (err);
1517c478bd9Sstevel@tonic-gate }
1527c478bd9Sstevel@tonic-gate 
1537c478bd9Sstevel@tonic-gate /*
1547c478bd9Sstevel@tonic-gate  * logindevperm - change owner/group/permissions of devices
1557c478bd9Sstevel@tonic-gate  * list in /etc/logindevperm.
1567c478bd9Sstevel@tonic-gate  */
1577c478bd9Sstevel@tonic-gate static int
1587c478bd9Sstevel@tonic-gate logindevperm(const char *ttyn, uid_t uid, gid_t gid, void (*errmsg)(char *))
1597c478bd9Sstevel@tonic-gate {
1607c478bd9Sstevel@tonic-gate 	int err = 0, lineno = 0;
1617c478bd9Sstevel@tonic-gate 	const char *field_delims = " \t\n";
1627c478bd9Sstevel@tonic-gate 	char line[MAX_LINELEN], errstring[MAX_LINELEN];
1637c478bd9Sstevel@tonic-gate 	char saveline[MAX_LINELEN];
1647c478bd9Sstevel@tonic-gate 	char *console;
1657c478bd9Sstevel@tonic-gate 	char *mode_str;
1667c478bd9Sstevel@tonic-gate 	char *dev_list;
1677c478bd9Sstevel@tonic-gate 	char *device;
1687c478bd9Sstevel@tonic-gate 	char *ptr;
1697c478bd9Sstevel@tonic-gate 	int mode;
1707c478bd9Sstevel@tonic-gate 	FILE *fp;
171*ceeba6f9Srui zang - Sun Microsystems - Beijing China 	char ttyn_path[PATH_MAX + 1];
172*ceeba6f9Srui zang - Sun Microsystems - Beijing China 	int n;
1737c478bd9Sstevel@tonic-gate 
1747c478bd9Sstevel@tonic-gate 	if ((fp = fopen(LOGINDEVPERM, "r")) == NULL) {
1757c478bd9Sstevel@tonic-gate 		if (errmsg) {
1767c478bd9Sstevel@tonic-gate 			(void) snprintf(errstring, MAX_LINELEN,
1777c478bd9Sstevel@tonic-gate 			    LOGINDEVPERM ": open failed: %s\n",
1787c478bd9Sstevel@tonic-gate 			    strerror(errno));
1797c478bd9Sstevel@tonic-gate 			(*errmsg)(errstring);
1807c478bd9Sstevel@tonic-gate 		}
1817c478bd9Sstevel@tonic-gate 		return (-1);
1827c478bd9Sstevel@tonic-gate 	}
1837c478bd9Sstevel@tonic-gate 
184*ceeba6f9Srui zang - Sun Microsystems - Beijing China 	if ((n = resolvepath(ttyn, ttyn_path, PATH_MAX)) == -1)
185*ceeba6f9Srui zang - Sun Microsystems - Beijing China 		return (-1);
186*ceeba6f9Srui zang - Sun Microsystems - Beijing China 	ttyn_path[n] = '\0';
187*ceeba6f9Srui zang - Sun Microsystems - Beijing China 
1887c478bd9Sstevel@tonic-gate 	while (fgets(line, MAX_LINELEN, fp) != NULL) {
1897c478bd9Sstevel@tonic-gate 		char *last;
190*ceeba6f9Srui zang - Sun Microsystems - Beijing China 		char tmp[PATH_MAX + 1];
191*ceeba6f9Srui zang - Sun Microsystems - Beijing China 
1927c478bd9Sstevel@tonic-gate 		lineno++;
1937c478bd9Sstevel@tonic-gate 
1947c478bd9Sstevel@tonic-gate 		if ((ptr = strchr(line, '#')) != NULL)
1957c478bd9Sstevel@tonic-gate 			*ptr = '\0';	/* handle comments */
1967c478bd9Sstevel@tonic-gate 
1977c478bd9Sstevel@tonic-gate 		(void) strcpy(saveline, line);
1987c478bd9Sstevel@tonic-gate 
1997c478bd9Sstevel@tonic-gate 		console = strtok_r(line, field_delims, &last);
2007c478bd9Sstevel@tonic-gate 		if (console == NULL)
2017c478bd9Sstevel@tonic-gate 			continue;	/* ignore blank lines */
2027c478bd9Sstevel@tonic-gate 
203*ceeba6f9Srui zang - Sun Microsystems - Beijing China 		if ((n = resolvepath(console, tmp, PATH_MAX)) == -1)
204*ceeba6f9Srui zang - Sun Microsystems - Beijing China 			continue;
205*ceeba6f9Srui zang - Sun Microsystems - Beijing China 		tmp[n] = '\0';
206*ceeba6f9Srui zang - Sun Microsystems - Beijing China 
207*ceeba6f9Srui zang - Sun Microsystems - Beijing China 		if (strcmp(ttyn_path, tmp) != 0)
208*ceeba6f9Srui zang - Sun Microsystems - Beijing China 			continue;
2097c478bd9Sstevel@tonic-gate 
2107c478bd9Sstevel@tonic-gate 		mode_str = strtok_r(last, field_delims, &last);
2117c478bd9Sstevel@tonic-gate 		if (mode_str == NULL) {
2127c478bd9Sstevel@tonic-gate 			err = -1;	/* invalid entry, skip */
2137c478bd9Sstevel@tonic-gate 			if (errmsg) {
2147c478bd9Sstevel@tonic-gate 				(void) snprintf(errstring, MAX_LINELEN,
2157c478bd9Sstevel@tonic-gate 				    LOGINDEVPERM
2167c478bd9Sstevel@tonic-gate 				    ": line %d, invalid entry -- %s\n",
2177c478bd9Sstevel@tonic-gate 				    lineno, line);
2187c478bd9Sstevel@tonic-gate 				(*errmsg)(errstring);
2197c478bd9Sstevel@tonic-gate 			}
2207c478bd9Sstevel@tonic-gate 			continue;
2217c478bd9Sstevel@tonic-gate 		}
2227c478bd9Sstevel@tonic-gate 
2237c478bd9Sstevel@tonic-gate 		/* convert string to octal value */
2247c478bd9Sstevel@tonic-gate 		mode = strtol(mode_str, &ptr, 8);
2257c478bd9Sstevel@tonic-gate 		if (mode < 0 || mode > 0777 || *ptr != '\0') {
2267c478bd9Sstevel@tonic-gate 			err = -1;	/* invalid mode, skip */
2277c478bd9Sstevel@tonic-gate 			if (errmsg) {
2287c478bd9Sstevel@tonic-gate 				(void) snprintf(errstring, MAX_LINELEN,
2297c478bd9Sstevel@tonic-gate 				    LOGINDEVPERM
2307c478bd9Sstevel@tonic-gate 				    ": line %d, invalid mode -- %s\n",
2317c478bd9Sstevel@tonic-gate 				    lineno, mode_str);
2327c478bd9Sstevel@tonic-gate 				(*errmsg)(errstring);
2337c478bd9Sstevel@tonic-gate 			}
2347c478bd9Sstevel@tonic-gate 			continue;
2357c478bd9Sstevel@tonic-gate 		}
2367c478bd9Sstevel@tonic-gate 
2377c478bd9Sstevel@tonic-gate 		dev_list = strtok_r(last, field_delims, &last);
2387c478bd9Sstevel@tonic-gate 		if (dev_list == NULL) {
2397c478bd9Sstevel@tonic-gate 			err = -1;	/* empty device list, skip */
2407c478bd9Sstevel@tonic-gate 			if (errmsg) {
2417c478bd9Sstevel@tonic-gate 				(void) snprintf(errstring, MAX_LINELEN,
2427c478bd9Sstevel@tonic-gate 				    LOGINDEVPERM
2437c478bd9Sstevel@tonic-gate 				    ": line %d, empty device list -- %s\n",
2447c478bd9Sstevel@tonic-gate 				    lineno, line);
2457c478bd9Sstevel@tonic-gate 				(*errmsg)(errstring);
2467c478bd9Sstevel@tonic-gate 			}
2477c478bd9Sstevel@tonic-gate 			continue;
2487c478bd9Sstevel@tonic-gate 		}
2497c478bd9Sstevel@tonic-gate 
2507c478bd9Sstevel@tonic-gate 		device = strtok_r(dev_list, ":", &last);
2517c478bd9Sstevel@tonic-gate 		while (device != NULL) {
2527c478bd9Sstevel@tonic-gate 			if ((device[0] != '/') || (strlen(device) <= 1))  {
2537c478bd9Sstevel@tonic-gate 				err = -1;
2547c478bd9Sstevel@tonic-gate 			} else if (dir_dev_acc("/", &device[1], uid, gid, mode,
2557c478bd9Sstevel@tonic-gate 			    saveline, errmsg)) {
2567c478bd9Sstevel@tonic-gate 				err = -1;
2577c478bd9Sstevel@tonic-gate 			}
2587c478bd9Sstevel@tonic-gate 			device = strtok_r(last, ":", &last);
2597c478bd9Sstevel@tonic-gate 		}
2607c478bd9Sstevel@tonic-gate 	}
2617c478bd9Sstevel@tonic-gate 	(void) fclose(fp);
2627c478bd9Sstevel@tonic-gate 	return (err);
2637c478bd9Sstevel@tonic-gate }
2647c478bd9Sstevel@tonic-gate 
2657c478bd9Sstevel@tonic-gate /*
2667c478bd9Sstevel@tonic-gate  * returns 0 if resolved, -1 otherwise.
2677c478bd9Sstevel@tonic-gate  * devpath: Absolute path to /dev link
2687c478bd9Sstevel@tonic-gate  * devfs_path: Returns malloced string: /devices path w/out "/devices"
2697c478bd9Sstevel@tonic-gate  */
2707e3e5701SJan Parcel int
2717e3e5701SJan Parcel devfs_resolve_link(char *devpath, char **devfs_path)
2727c478bd9Sstevel@tonic-gate {
2737c478bd9Sstevel@tonic-gate 	char contents[PATH_MAX + 1];
2747c478bd9Sstevel@tonic-gate 	char stage_link[PATH_MAX + 1];
2757c478bd9Sstevel@tonic-gate 	char *ptr;
2767c478bd9Sstevel@tonic-gate 	int linksize;
2777c478bd9Sstevel@tonic-gate 	char *slashdev = "/dev/";
2787c478bd9Sstevel@tonic-gate 
2797c478bd9Sstevel@tonic-gate 	if (devfs_path) {
2807c478bd9Sstevel@tonic-gate 		*devfs_path = NULL;
2817c478bd9Sstevel@tonic-gate 	}
2827c478bd9Sstevel@tonic-gate 
2837c478bd9Sstevel@tonic-gate 	linksize = readlink(devpath, contents, PATH_MAX);
2847c478bd9Sstevel@tonic-gate 
2857c478bd9Sstevel@tonic-gate 	if (linksize <= 0) {
2867c478bd9Sstevel@tonic-gate 		return (-1);
2877c478bd9Sstevel@tonic-gate 	} else {
2887c478bd9Sstevel@tonic-gate 		contents[linksize] = '\0';
2897c478bd9Sstevel@tonic-gate 	}
2907c478bd9Sstevel@tonic-gate 
2917c478bd9Sstevel@tonic-gate 	/*
2927c478bd9Sstevel@tonic-gate 	 * if the link contents is not a minor node assume
2937c478bd9Sstevel@tonic-gate 	 * that link contents is really a pointer to another
2947c478bd9Sstevel@tonic-gate 	 * link, and if so recurse and read its link contents.
2957c478bd9Sstevel@tonic-gate 	 */
2967c478bd9Sstevel@tonic-gate 	if (is_minor_node((const char *)contents, (const char **)&ptr) !=
2977c478bd9Sstevel@tonic-gate 	    1) {
2987c478bd9Sstevel@tonic-gate 		if (strncmp(contents, slashdev, strlen(slashdev)) == 0)  {
2997c478bd9Sstevel@tonic-gate 			/* absolute path, starting with /dev */
3007c478bd9Sstevel@tonic-gate 			(void) strcpy(stage_link, contents);
3017c478bd9Sstevel@tonic-gate 		} else {
3027c478bd9Sstevel@tonic-gate 			/* relative path, prefix devpath */
3037c478bd9Sstevel@tonic-gate 			if ((ptr = strrchr(devpath, '/')) == NULL) {
3047c478bd9Sstevel@tonic-gate 				/* invalid link */
3057c478bd9Sstevel@tonic-gate 				return (-1);
3067c478bd9Sstevel@tonic-gate 			}
3077c478bd9Sstevel@tonic-gate 			*ptr = '\0';
3087c478bd9Sstevel@tonic-gate 			(void) strcpy(stage_link, devpath);
3097c478bd9Sstevel@tonic-gate 			*ptr = '/';
3107c478bd9Sstevel@tonic-gate 			(void) strcat(stage_link, "/");
3117c478bd9Sstevel@tonic-gate 			(void) strcat(stage_link, contents);
3127c478bd9Sstevel@tonic-gate 
3137c478bd9Sstevel@tonic-gate 		}
3147e3e5701SJan Parcel 		return (devfs_resolve_link(stage_link, devfs_path));
3157c478bd9Sstevel@tonic-gate 	}
3167c478bd9Sstevel@tonic-gate 
3177c478bd9Sstevel@tonic-gate 	if (devfs_path) {
3187c478bd9Sstevel@tonic-gate 		*devfs_path = strdup(ptr);
3197c478bd9Sstevel@tonic-gate 		if (*devfs_path == NULL) {
3207c478bd9Sstevel@tonic-gate 			return (-1);
3217c478bd9Sstevel@tonic-gate 		}
3227c478bd9Sstevel@tonic-gate 	}
3237c478bd9Sstevel@tonic-gate 
3247c478bd9Sstevel@tonic-gate 	return (0);
3257c478bd9Sstevel@tonic-gate }
3267c478bd9Sstevel@tonic-gate 
3277c478bd9Sstevel@tonic-gate /*
3287c478bd9Sstevel@tonic-gate  * check a logindevperm line for a driver list and match this against
3297c478bd9Sstevel@tonic-gate  * the driver of the minor node
3307c478bd9Sstevel@tonic-gate  * returns 0 if no drivers were specified or a driver match
3317c478bd9Sstevel@tonic-gate  */
3327c478bd9Sstevel@tonic-gate static int
3337c478bd9Sstevel@tonic-gate check_driver_match(char *path, char *line)
3347c478bd9Sstevel@tonic-gate {
3357c478bd9Sstevel@tonic-gate 	char *drv, *driver, *lasts;
3367c478bd9Sstevel@tonic-gate 	char *devfs_path = NULL;
3377c478bd9Sstevel@tonic-gate 	char saveline[MAX_LINELEN];
3387c478bd9Sstevel@tonic-gate 	char *p;
3397c478bd9Sstevel@tonic-gate 
3407e3e5701SJan Parcel 	if (devfs_resolve_link(path, &devfs_path) == 0) {
3417c478bd9Sstevel@tonic-gate 		char *p;
3427c478bd9Sstevel@tonic-gate 		char pwd_buf[PATH_MAX];
3437c478bd9Sstevel@tonic-gate 		di_node_t node;
3447c478bd9Sstevel@tonic-gate 
3457c478bd9Sstevel@tonic-gate 		/* truncate on : so we can take a snapshot */
3467c478bd9Sstevel@tonic-gate 		(void) strcpy(pwd_buf, devfs_path);
3477c478bd9Sstevel@tonic-gate 		p = strrchr(pwd_buf, ':');
3487c478bd9Sstevel@tonic-gate 		*p = '\0';
3497c478bd9Sstevel@tonic-gate 
3507c478bd9Sstevel@tonic-gate 		node = di_init(pwd_buf, DINFOMINOR);
3517c478bd9Sstevel@tonic-gate 		free(devfs_path);
3527c478bd9Sstevel@tonic-gate 
3537c478bd9Sstevel@tonic-gate 		if (node) {
3547c478bd9Sstevel@tonic-gate 			drv = di_driver_name(node);
3557c478bd9Sstevel@tonic-gate 			di_fini(node);
3567c478bd9Sstevel@tonic-gate 		} else {
3577c478bd9Sstevel@tonic-gate 			return (0);
3587c478bd9Sstevel@tonic-gate 		}
3597c478bd9Sstevel@tonic-gate 	} else {
3607c478bd9Sstevel@tonic-gate 		return (0);
3617c478bd9Sstevel@tonic-gate 	}
3627c478bd9Sstevel@tonic-gate 
3637c478bd9Sstevel@tonic-gate 	(void) strcpy(saveline, line);
3647c478bd9Sstevel@tonic-gate 
3657c478bd9Sstevel@tonic-gate 	p = strstr(saveline, "driver");
3667c478bd9Sstevel@tonic-gate 	if (p == NULL) {
3677c478bd9Sstevel@tonic-gate 		return (0);
3687c478bd9Sstevel@tonic-gate 	}
3697c478bd9Sstevel@tonic-gate 
3707c478bd9Sstevel@tonic-gate 	driver = strtok_r(p, "=", &lasts);
3717c478bd9Sstevel@tonic-gate 	if (driver) {
3727c478bd9Sstevel@tonic-gate 		if (strcmp(driver, "driver") == 0) {
3737c478bd9Sstevel@tonic-gate 			driver = strtok_r(NULL, ", \t\n", &lasts);
3747c478bd9Sstevel@tonic-gate 			while (driver) {
3757c478bd9Sstevel@tonic-gate 				if (strcmp(driver, drv) == 0) {
3767c478bd9Sstevel@tonic-gate 					return (0);
3777c478bd9Sstevel@tonic-gate 				}
3787c478bd9Sstevel@tonic-gate 				driver = strtok_r(NULL, ", \t\n", &lasts);
3797c478bd9Sstevel@tonic-gate 			}
3807c478bd9Sstevel@tonic-gate 		}
3817c478bd9Sstevel@tonic-gate 	}
3827c478bd9Sstevel@tonic-gate 
3837c478bd9Sstevel@tonic-gate 	return (-1);
3847c478bd9Sstevel@tonic-gate }
3857c478bd9Sstevel@tonic-gate 
3867c478bd9Sstevel@tonic-gate /*
387aecfc01dSrui zang - Sun Microsystems - Beijing China  * Check whether the user has logged onto "/dev/console" or "/dev/vt/#".
388aecfc01dSrui zang - Sun Microsystems - Beijing China  */
389aecfc01dSrui zang - Sun Microsystems - Beijing China static int
390aecfc01dSrui zang - Sun Microsystems - Beijing China is_login_user(uid_t uid)
391aecfc01dSrui zang - Sun Microsystems - Beijing China {
392aecfc01dSrui zang - Sun Microsystems - Beijing China 	int changed = 0;
393aecfc01dSrui zang - Sun Microsystems - Beijing China 	struct passwd pwd, *ppwd;
394aecfc01dSrui zang - Sun Microsystems - Beijing China 	char pwd_buf[NSS_BUFLEN_PASSWD];
395aecfc01dSrui zang - Sun Microsystems - Beijing China 	struct utmpx *utx;
396aecfc01dSrui zang - Sun Microsystems - Beijing China 
397aecfc01dSrui zang - Sun Microsystems - Beijing China 	if ((getpwuid_r(uid, &pwd, pwd_buf, NSS_BUFLEN_PASSWD, &ppwd))) {
398aecfc01dSrui zang - Sun Microsystems - Beijing China 		return (0);
399aecfc01dSrui zang - Sun Microsystems - Beijing China 	}
400aecfc01dSrui zang - Sun Microsystems - Beijing China 
401aecfc01dSrui zang - Sun Microsystems - Beijing China 	setutxent();
402aecfc01dSrui zang - Sun Microsystems - Beijing China 	while ((utx = getutxent()) != NULL) {
403aecfc01dSrui zang - Sun Microsystems - Beijing China 		if (utx->ut_type == USER_PROCESS &&
404aecfc01dSrui zang - Sun Microsystems - Beijing China 		    strncmp(utx->ut_user, ppwd->pw_name,
405aecfc01dSrui zang - Sun Microsystems - Beijing China 		    strlen(ppwd->pw_name)) == 0 && (strncmp(utx->ut_line,
406aecfc01dSrui zang - Sun Microsystems - Beijing China 		    "console", strlen("console")) == 0 || strncmp(utx->ut_line,
407aecfc01dSrui zang - Sun Microsystems - Beijing China 		    "vt", strlen("vt")) == 0)) {
408aecfc01dSrui zang - Sun Microsystems - Beijing China 
409aecfc01dSrui zang - Sun Microsystems - Beijing China 			changed = 1;
410aecfc01dSrui zang - Sun Microsystems - Beijing China 			break;
411aecfc01dSrui zang - Sun Microsystems - Beijing China 		}
412aecfc01dSrui zang - Sun Microsystems - Beijing China 	}
413aecfc01dSrui zang - Sun Microsystems - Beijing China 	endutxent();
414aecfc01dSrui zang - Sun Microsystems - Beijing China 
415aecfc01dSrui zang - Sun Microsystems - Beijing China 	return (changed);
416aecfc01dSrui zang - Sun Microsystems - Beijing China }
417aecfc01dSrui zang - Sun Microsystems - Beijing China 
418aecfc01dSrui zang - Sun Microsystems - Beijing China /*
4197c478bd9Sstevel@tonic-gate  * Apply owner/group/perms to all files (except "." and "..")
4207c478bd9Sstevel@tonic-gate  * in a directory.
4217c478bd9Sstevel@tonic-gate  * This function is recursive. We start with "/" and the rest of the pathname
4227c478bd9Sstevel@tonic-gate  * in left_to_do argument, and we walk the entire pathname which may contain
4237c478bd9Sstevel@tonic-gate  * regular expressions or '*' for each directory name or basename.
4247c478bd9Sstevel@tonic-gate  */
4257c478bd9Sstevel@tonic-gate static int
4267c478bd9Sstevel@tonic-gate dir_dev_acc(char *path, char *left_to_do, uid_t uid, gid_t gid, mode_t mode,
4277c478bd9Sstevel@tonic-gate     char *line, void (*errmsg)(char *))
4287c478bd9Sstevel@tonic-gate {
4297c478bd9Sstevel@tonic-gate 	struct stat stat_buf;
4307c478bd9Sstevel@tonic-gate 	int err = 0;
431c4ca7dc0Sfrits 	char errstring[MAX_LINELEN];
432facf4a8dSllai1 	char *p;
433facf4a8dSllai1 	regex_t regex;
434facf4a8dSllai1 	int alwaysmatch = 0;
435facf4a8dSllai1 	char *match;
436facf4a8dSllai1 	char *name, *newpath, *remainder_path;
437facf4a8dSllai1 	finddevhdl_t handle;
438facf4a8dSllai1 
439facf4a8dSllai1 	/*
440c0eb16d4Sjg 	 * Determine if the search needs to be performed via finddev,
441c0eb16d4Sjg 	 * which returns only persisted names in the global /dev, or
442c0eb16d4Sjg 	 * readdir, for paths other than /dev and non-global zones.
443c0eb16d4Sjg 	 * This use of finddev avoids triggering potential implicit
444c0eb16d4Sjg 	 * reconfig for names managed by logindevperm but not present
445c0eb16d4Sjg 	 * on the system.
446facf4a8dSllai1 	 */
44773de625bSjg 	if (!device_exists(path)) {
448facf4a8dSllai1 		return (-1);
449facf4a8dSllai1 	}
4507c478bd9Sstevel@tonic-gate 	if (stat(path, &stat_buf) == -1) {
451c4ca7dc0Sfrits 		/*
452c4ca7dc0Sfrits 		 * ENOENT errors are expected errors when there are
453c4ca7dc0Sfrits 		 * dangling /dev device links. Ignore them silently
454c4ca7dc0Sfrits 		 */
455c4ca7dc0Sfrits 		if (errno == ENOENT) {
456c4ca7dc0Sfrits 			return (0);
457c4ca7dc0Sfrits 		}
458c4ca7dc0Sfrits 		if (errmsg) {
459c4ca7dc0Sfrits 			(void) snprintf(errstring, MAX_LINELEN,
460c4ca7dc0Sfrits 			    "failed to stat %s: %s\n", path,
461c4ca7dc0Sfrits 			    strerror(errno));
462c4ca7dc0Sfrits 			(*errmsg)(errstring);
463c4ca7dc0Sfrits 		}
4647c478bd9Sstevel@tonic-gate 		return (-1);
4657c478bd9Sstevel@tonic-gate 	} else {
4667c478bd9Sstevel@tonic-gate 		if (!S_ISDIR(stat_buf.st_mode)) {
4677c478bd9Sstevel@tonic-gate 			if (strlen(left_to_do) == 0) {
4687c478bd9Sstevel@tonic-gate 				/* finally check the driver matches */
4697c478bd9Sstevel@tonic-gate 				if (check_driver_match(path, line) == 0) {
470aecfc01dSrui zang - Sun Microsystems - Beijing China 					/*
471aecfc01dSrui zang - Sun Microsystems - Beijing China 					 * if the owner of device has been
472aecfc01dSrui zang - Sun Microsystems - Beijing China 					 * login, the ownership and mode
473aecfc01dSrui zang - Sun Microsystems - Beijing China 					 * should be set already. in
474aecfc01dSrui zang - Sun Microsystems - Beijing China 					 * this case, do not set the
475aecfc01dSrui zang - Sun Microsystems - Beijing China 					 * permissions.
476aecfc01dSrui zang - Sun Microsystems - Beijing China 					 */
477aecfc01dSrui zang - Sun Microsystems - Beijing China 					if (is_login_user(stat_buf.st_uid)) {
478aecfc01dSrui zang - Sun Microsystems - Beijing China 
479aecfc01dSrui zang - Sun Microsystems - Beijing China 						return (0);
480aecfc01dSrui zang - Sun Microsystems - Beijing China 					}
4817c478bd9Sstevel@tonic-gate 					/* we are done, set the permissions */
4827c478bd9Sstevel@tonic-gate 					if (setdevaccess(path,
4837c478bd9Sstevel@tonic-gate 					    uid, gid, mode, errmsg)) {
4847c478bd9Sstevel@tonic-gate 
4857c478bd9Sstevel@tonic-gate 						return (-1);
4867c478bd9Sstevel@tonic-gate 					}
4877c478bd9Sstevel@tonic-gate 				}
4887c478bd9Sstevel@tonic-gate 			}
4897c478bd9Sstevel@tonic-gate 			return (0);
4907c478bd9Sstevel@tonic-gate 		}
4917c478bd9Sstevel@tonic-gate 	}
4927c478bd9Sstevel@tonic-gate 
493facf4a8dSllai1 	if (finddev_readdir(path, &handle) != 0)
494facf4a8dSllai1 		return (0);
495facf4a8dSllai1 
496facf4a8dSllai1 	p = strchr(left_to_do, '/');
497facf4a8dSllai1 	alwaysmatch = 0;
4987c478bd9Sstevel@tonic-gate 
4997c478bd9Sstevel@tonic-gate 	newpath = (char *)malloc(MAXPATHLEN);
5007c478bd9Sstevel@tonic-gate 	if (newpath == NULL) {
50173de625bSjg 		finddev_close(handle);
5027c478bd9Sstevel@tonic-gate 		return (-1);
5037c478bd9Sstevel@tonic-gate 	}
5046f1fe223Srm88369 	match = (char *)calloc(MAXPATHLEN + 2, 1);
5057c478bd9Sstevel@tonic-gate 	if (match == NULL) {
50673de625bSjg 		finddev_close(handle);
5077c478bd9Sstevel@tonic-gate 		free(newpath);
5087c478bd9Sstevel@tonic-gate 		return (-1);
5097c478bd9Sstevel@tonic-gate 	}
5107c478bd9Sstevel@tonic-gate 
5116f1fe223Srm88369 	/* transform pattern into ^pattern$ for exact match */
5126f1fe223Srm88369 	if (snprintf(match, MAXPATHLEN + 2, "^%.*s$",
5136f1fe223Srm88369 	    p ? (p - left_to_do) : strlen(left_to_do), left_to_do) >=
5146f1fe223Srm88369 	    MAXPATHLEN + 2) {
5156f1fe223Srm88369 		finddev_close(handle);
5166f1fe223Srm88369 		free(newpath);
5176f1fe223Srm88369 		free(match);
5186f1fe223Srm88369 		return (-1);
5197c478bd9Sstevel@tonic-gate 	}
5207c478bd9Sstevel@tonic-gate 
5216f1fe223Srm88369 	if (strcmp(match, "^*$") == 0) {
5227c478bd9Sstevel@tonic-gate 		alwaysmatch = 1;
5237c478bd9Sstevel@tonic-gate 	} else {
5247c478bd9Sstevel@tonic-gate 		if (regcomp(&regex, match, REG_EXTENDED) != 0) {
5257c478bd9Sstevel@tonic-gate 			free(newpath);
5267c478bd9Sstevel@tonic-gate 			free(match);
52773de625bSjg 			finddev_close(handle);
5287c478bd9Sstevel@tonic-gate 			return (-1);
5297c478bd9Sstevel@tonic-gate 		}
5307c478bd9Sstevel@tonic-gate 	}
5317c478bd9Sstevel@tonic-gate 
53273de625bSjg 	while ((name = (char *)finddev_next(handle)) != NULL) {
5337c478bd9Sstevel@tonic-gate 		if (alwaysmatch ||
5347c478bd9Sstevel@tonic-gate 		    regexec(&regex, name, 0, NULL, 0) == 0) {
5357c478bd9Sstevel@tonic-gate 			if (strcmp(path, "/") == 0) {
5367c478bd9Sstevel@tonic-gate 				(void) snprintf(newpath,
5377c478bd9Sstevel@tonic-gate 				    MAXPATHLEN, "%s%s", path, name);
5387c478bd9Sstevel@tonic-gate 			} else {
5397c478bd9Sstevel@tonic-gate 				(void) snprintf(newpath,
5407c478bd9Sstevel@tonic-gate 				    MAXPATHLEN, "%s/%s", path, name);
5417c478bd9Sstevel@tonic-gate 			}
5427c478bd9Sstevel@tonic-gate 
5437c478bd9Sstevel@tonic-gate 			/*
5447c478bd9Sstevel@tonic-gate 			 * recurse but adjust what is still left to do
5457c478bd9Sstevel@tonic-gate 			 */
5467c478bd9Sstevel@tonic-gate 			remainder_path = (p ?
5477c478bd9Sstevel@tonic-gate 			    left_to_do + (p - left_to_do) + 1 :
5487c478bd9Sstevel@tonic-gate 			    &left_to_do[strlen(left_to_do)]);
5497c478bd9Sstevel@tonic-gate 			if (dir_dev_acc(newpath, remainder_path,
5507c478bd9Sstevel@tonic-gate 			    uid, gid, mode, line, errmsg)) {
5517c478bd9Sstevel@tonic-gate 				err = -1;
5527c478bd9Sstevel@tonic-gate 			}
5537c478bd9Sstevel@tonic-gate 		}
5547c478bd9Sstevel@tonic-gate 	}
555facf4a8dSllai1 
556facf4a8dSllai1 	finddev_close(handle);
5577c478bd9Sstevel@tonic-gate 	free(newpath);
5587c478bd9Sstevel@tonic-gate 	free(match);
5597c478bd9Sstevel@tonic-gate 	if (!alwaysmatch) {
5607c478bd9Sstevel@tonic-gate 		regfree(&regex);
5617c478bd9Sstevel@tonic-gate 	}
5627c478bd9Sstevel@tonic-gate 
5637c478bd9Sstevel@tonic-gate 	return (err);
5647c478bd9Sstevel@tonic-gate }
5657c478bd9Sstevel@tonic-gate 
5667c478bd9Sstevel@tonic-gate /*
5677c478bd9Sstevel@tonic-gate  * di_devperm_login - modify access of devices in /etc/logindevperm
5687c478bd9Sstevel@tonic-gate  * by changing owner/group/permissions to that of ttyn.
5697c478bd9Sstevel@tonic-gate  */
5707c478bd9Sstevel@tonic-gate int
5717c478bd9Sstevel@tonic-gate di_devperm_login(const char *ttyn, uid_t uid, gid_t gid,
5727c478bd9Sstevel@tonic-gate     void (*errmsg)(char *))
5737c478bd9Sstevel@tonic-gate {
5747c478bd9Sstevel@tonic-gate 	int err;
5757c478bd9Sstevel@tonic-gate 	struct group grp, *grpp;
5767c478bd9Sstevel@tonic-gate 	gid_t tty_gid;
5777c478bd9Sstevel@tonic-gate 	char grbuf[NSS_BUFLEN_GROUP];
5787c478bd9Sstevel@tonic-gate 
5797c478bd9Sstevel@tonic-gate 	if (errmsg == NULL)
5807c478bd9Sstevel@tonic-gate 		errmsg = logerror;
5817c478bd9Sstevel@tonic-gate 
5827c478bd9Sstevel@tonic-gate 	if (ttyn == NULL) {
5837c478bd9Sstevel@tonic-gate 		(*errmsg)("di_devperm_login: NULL tty device\n");
5847c478bd9Sstevel@tonic-gate 		return (-1);
5857c478bd9Sstevel@tonic-gate 	}
5867c478bd9Sstevel@tonic-gate 
5877c478bd9Sstevel@tonic-gate 	if (getgrnam_r("tty", &grp, grbuf, NSS_BUFLEN_GROUP, &grpp) != 0) {
5887c478bd9Sstevel@tonic-gate 		tty_gid = grpp->gr_gid;
5897c478bd9Sstevel@tonic-gate 	} else {
5907c478bd9Sstevel@tonic-gate 		/*
5917c478bd9Sstevel@tonic-gate 		 * this should never happen, but if it does set
5927c478bd9Sstevel@tonic-gate 		 * group to tty's traditional value.
5937c478bd9Sstevel@tonic-gate 		 */
5947c478bd9Sstevel@tonic-gate 		tty_gid = 7;
5957c478bd9Sstevel@tonic-gate 	}
5967c478bd9Sstevel@tonic-gate 
5977c478bd9Sstevel@tonic-gate 	/* set the login console device permission */
5987c478bd9Sstevel@tonic-gate 	err = setdevaccess((char *)ttyn, uid, tty_gid,
5997c478bd9Sstevel@tonic-gate 	    S_IRUSR|S_IWUSR|S_IWGRP, errmsg);
6007c478bd9Sstevel@tonic-gate 	if (err) {
6017c478bd9Sstevel@tonic-gate 		return (err);
6027c478bd9Sstevel@tonic-gate 	}
6037c478bd9Sstevel@tonic-gate 
6047c478bd9Sstevel@tonic-gate 	/* set the device permissions */
6057c478bd9Sstevel@tonic-gate 	return (logindevperm(ttyn, uid, gid, errmsg));
6067c478bd9Sstevel@tonic-gate }
6077c478bd9Sstevel@tonic-gate 
6087c478bd9Sstevel@tonic-gate /*
6097c478bd9Sstevel@tonic-gate  * di_devperm_logout - clean up access of devices in /etc/logindevperm
6107c478bd9Sstevel@tonic-gate  * by resetting owner/group/permissions.
6117c478bd9Sstevel@tonic-gate  */
6127c478bd9Sstevel@tonic-gate int
6137c478bd9Sstevel@tonic-gate di_devperm_logout(const char *ttyn)
6147c478bd9Sstevel@tonic-gate {
6157c478bd9Sstevel@tonic-gate 	struct passwd *pwd;
6167c478bd9Sstevel@tonic-gate 	uid_t root_uid;
6177c478bd9Sstevel@tonic-gate 	gid_t root_gid;
6187c478bd9Sstevel@tonic-gate 
6197c478bd9Sstevel@tonic-gate 	if (ttyn == NULL)
6207c478bd9Sstevel@tonic-gate 		return (-1);
6217c478bd9Sstevel@tonic-gate 
6227c478bd9Sstevel@tonic-gate 	pwd = getpwnam("root");
6237c478bd9Sstevel@tonic-gate 	if (pwd != NULL) {
6247c478bd9Sstevel@tonic-gate 		root_uid = pwd->pw_uid;
6257c478bd9Sstevel@tonic-gate 		root_gid = pwd->pw_gid;
6267c478bd9Sstevel@tonic-gate 	} else {
6277c478bd9Sstevel@tonic-gate 		/*
6287c478bd9Sstevel@tonic-gate 		 * this should never happen, but if it does set user
6297c478bd9Sstevel@tonic-gate 		 * and group to root's traditional values.
6307c478bd9Sstevel@tonic-gate 		 */
6317c478bd9Sstevel@tonic-gate 		root_uid = 0;
6327c478bd9Sstevel@tonic-gate 		root_gid = 0;
6337c478bd9Sstevel@tonic-gate 	}
6347c478bd9Sstevel@tonic-gate 
6357c478bd9Sstevel@tonic-gate 	return (logindevperm(ttyn, root_uid, root_gid, NULL));
6367c478bd9Sstevel@tonic-gate }
6377c478bd9Sstevel@tonic-gate 
6387c478bd9Sstevel@tonic-gate static void
6397c478bd9Sstevel@tonic-gate logerror(char *errstring)
6407c478bd9Sstevel@tonic-gate {
6417c478bd9Sstevel@tonic-gate 	syslog(LOG_AUTH | LOG_CRIT, "%s", errstring);
6427c478bd9Sstevel@tonic-gate }
6437c478bd9Sstevel@tonic-gate 
6447c478bd9Sstevel@tonic-gate 
6457c478bd9Sstevel@tonic-gate /*
6467c478bd9Sstevel@tonic-gate  * Tokens are separated by ' ', '\t', ':', '=', '&', '|', ';', '\n', or '\0'
6477c478bd9Sstevel@tonic-gate  */
6487c478bd9Sstevel@tonic-gate static int
6497c478bd9Sstevel@tonic-gate getnexttoken(char *next, char **nextp, char **tokenpp, char *tchar)
6507c478bd9Sstevel@tonic-gate {
6517c478bd9Sstevel@tonic-gate 	char *cp;
6527c478bd9Sstevel@tonic-gate 	char *cp1;
6537c478bd9Sstevel@tonic-gate 	char *tokenp;
6547c478bd9Sstevel@tonic-gate 
6557c478bd9Sstevel@tonic-gate 	cp = next;
6567c478bd9Sstevel@tonic-gate 	while (*cp == ' ' || *cp == '\t') {
6577c478bd9Sstevel@tonic-gate 		cp++;			/* skip leading spaces */
6587c478bd9Sstevel@tonic-gate 	}
6597c478bd9Sstevel@tonic-gate 	tokenp = cp;			/* start of token */
6607c478bd9Sstevel@tonic-gate 	while (*cp != '\0' && *cp != '\n' && *cp != ' ' && *cp != '\t' &&
6617c478bd9Sstevel@tonic-gate 	    *cp != ':' && *cp != '=' && *cp != '&' &&
6627c478bd9Sstevel@tonic-gate 	    *cp != '|' && *cp != ';') {
6637c478bd9Sstevel@tonic-gate 		cp++;			/* point to next character */
6647c478bd9Sstevel@tonic-gate 	}
6657c478bd9Sstevel@tonic-gate 	/*
6667c478bd9Sstevel@tonic-gate 	 * If terminating character is a space or tab, look ahead to see if
6677c478bd9Sstevel@tonic-gate 	 * there's another terminator that's not a space or a tab.
6687c478bd9Sstevel@tonic-gate 	 * (This code handles trailing spaces.)
6697c478bd9Sstevel@tonic-gate 	 */
6707c478bd9Sstevel@tonic-gate 	if (*cp == ' ' || *cp == '\t') {
6717c478bd9Sstevel@tonic-gate 		cp1 = cp;
6727c478bd9Sstevel@tonic-gate 		while (*++cp1 == ' ' || *cp1 == '\t')
6737c478bd9Sstevel@tonic-gate 			;
6747c478bd9Sstevel@tonic-gate 		if (*cp1 == '=' || *cp1 == ':' || *cp1 == '&' || *cp1 == '|' ||
6757c478bd9Sstevel@tonic-gate 		    *cp1 == ';' || *cp1 == '\n' || *cp1 == '\0') {
6767c478bd9Sstevel@tonic-gate 			*cp = NULL;	/* terminate token */
6777c478bd9Sstevel@tonic-gate 			cp = cp1;
6787c478bd9Sstevel@tonic-gate 		}
6797c478bd9Sstevel@tonic-gate 	}
6807c478bd9Sstevel@tonic-gate 	if (tchar != NULL) {
6817c478bd9Sstevel@tonic-gate 		*tchar = *cp;		/* save terminating character */
6827c478bd9Sstevel@tonic-gate 		if (*tchar == '\0') {
6837c478bd9Sstevel@tonic-gate 			*tchar = '\n';
6847c478bd9Sstevel@tonic-gate 		}
6857c478bd9Sstevel@tonic-gate 	}
6867c478bd9Sstevel@tonic-gate 	*cp++ = '\0';			/* terminate token, point to next */
6877c478bd9Sstevel@tonic-gate 	*nextp = cp;			/* set pointer to next character */
6887c478bd9Sstevel@tonic-gate 	if (cp - tokenp - 1 == 0) {
6897c478bd9Sstevel@tonic-gate 		return (0);
6907c478bd9Sstevel@tonic-gate 	}
6917c478bd9Sstevel@tonic-gate 	*tokenpp = tokenp;
6927c478bd9Sstevel@tonic-gate 	return (1);
6937c478bd9Sstevel@tonic-gate }
6947c478bd9Sstevel@tonic-gate 
6957c478bd9Sstevel@tonic-gate /*
6967c478bd9Sstevel@tonic-gate  * get a decimal octal or hex number. Handle '~' for one's complement.
6977c478bd9Sstevel@tonic-gate  */
6987c478bd9Sstevel@tonic-gate static int
6997c478bd9Sstevel@tonic-gate getvalue(char *token, int *valuep)
7007c478bd9Sstevel@tonic-gate {
7017c478bd9Sstevel@tonic-gate 	int radix;
7027c478bd9Sstevel@tonic-gate 	int retval = 0;
7037c478bd9Sstevel@tonic-gate 	int onescompl = 0;
7047c478bd9Sstevel@tonic-gate 	int negate = 0;
7057c478bd9Sstevel@tonic-gate 	char c;
7067c478bd9Sstevel@tonic-gate 
7077c478bd9Sstevel@tonic-gate 	if (*token == '~') {
7087c478bd9Sstevel@tonic-gate 		onescompl++; /* perform one's complement on result */
7097c478bd9Sstevel@tonic-gate 		token++;
7107c478bd9Sstevel@tonic-gate 	} else if (*token == '-') {
7117c478bd9Sstevel@tonic-gate 		negate++;
7127c478bd9Sstevel@tonic-gate 		token++;
7137c478bd9Sstevel@tonic-gate 	}
7147c478bd9Sstevel@tonic-gate 	if (*token == '0') {
7157c478bd9Sstevel@tonic-gate 		token++;
7167c478bd9Sstevel@tonic-gate 		c = *token;
7177c478bd9Sstevel@tonic-gate 
7187c478bd9Sstevel@tonic-gate 		if (c == '\0') {
7197c478bd9Sstevel@tonic-gate 			*valuep = 0;	/* value is 0 */
7207c478bd9Sstevel@tonic-gate 			return (0);
7217c478bd9Sstevel@tonic-gate 		}
7227c478bd9Sstevel@tonic-gate 
7237c478bd9Sstevel@tonic-gate 		if (c == 'x' || c == 'X') {
7247c478bd9Sstevel@tonic-gate 			radix = 16;
7257c478bd9Sstevel@tonic-gate 			token++;
7267c478bd9Sstevel@tonic-gate 		} else {
7277c478bd9Sstevel@tonic-gate 			radix = 8;
7287c478bd9Sstevel@tonic-gate 		}
7297c478bd9Sstevel@tonic-gate 	} else
7307c478bd9Sstevel@tonic-gate 		radix = 10;
7317c478bd9Sstevel@tonic-gate 
7327c478bd9Sstevel@tonic-gate 	while ((c = *token++)) {
7337c478bd9Sstevel@tonic-gate 		switch (radix) {
7347c478bd9Sstevel@tonic-gate 		case 8:
7357c478bd9Sstevel@tonic-gate 			if (c >= '0' && c <= '7') {
7367c478bd9Sstevel@tonic-gate 				c -= '0';
7377c478bd9Sstevel@tonic-gate 			} else {
7387c478bd9Sstevel@tonic-gate 				/* invalid number */
7397c478bd9Sstevel@tonic-gate 				return (0);
7407c478bd9Sstevel@tonic-gate 			}
7417c478bd9Sstevel@tonic-gate 			retval = (retval << 3) + c;
7427c478bd9Sstevel@tonic-gate 			break;
7437c478bd9Sstevel@tonic-gate 		case 10:
7447c478bd9Sstevel@tonic-gate 			if (c >= '0' && c <= '9') {
7457c478bd9Sstevel@tonic-gate 				c -= '0';
7467c478bd9Sstevel@tonic-gate 			} else {
7477c478bd9Sstevel@tonic-gate 				/* invalid number */
7487c478bd9Sstevel@tonic-gate 				return (0);
7497c478bd9Sstevel@tonic-gate 			}
7507c478bd9Sstevel@tonic-gate 			retval = (retval * 10) + c;
7517c478bd9Sstevel@tonic-gate 			break;
7527c478bd9Sstevel@tonic-gate 		case 16:
7537c478bd9Sstevel@tonic-gate 			if (c >= 'a' && c <= 'f') {
7547c478bd9Sstevel@tonic-gate 				c = c - 'a' + 10;
7557c478bd9Sstevel@tonic-gate 			} else if (c >= 'A' && c <= 'F') {
7567c478bd9Sstevel@tonic-gate 				c = c - 'A' + 10;
7577c478bd9Sstevel@tonic-gate 			} else if (c >= '0' && c <= '9') {
7587c478bd9Sstevel@tonic-gate 				c -= '0';
7597c478bd9Sstevel@tonic-gate 			} else {
7607c478bd9Sstevel@tonic-gate 				/* invalid number */
7617c478bd9Sstevel@tonic-gate 				return (0);
7627c478bd9Sstevel@tonic-gate 			}
7637c478bd9Sstevel@tonic-gate 			retval = (retval << 4) + c;
7647c478bd9Sstevel@tonic-gate 			break;
7657c478bd9Sstevel@tonic-gate 		}
7667c478bd9Sstevel@tonic-gate 	}
7677c478bd9Sstevel@tonic-gate 	if (onescompl) {
7687c478bd9Sstevel@tonic-gate 		retval = ~retval;
7697c478bd9Sstevel@tonic-gate 	}
7707c478bd9Sstevel@tonic-gate 	if (negate) {
7717c478bd9Sstevel@tonic-gate 		retval = -retval;
7727c478bd9Sstevel@tonic-gate 	}
7737c478bd9Sstevel@tonic-gate 	*valuep = retval;
7747c478bd9Sstevel@tonic-gate 	return (1);
7757c478bd9Sstevel@tonic-gate }
7767c478bd9Sstevel@tonic-gate 
7777c478bd9Sstevel@tonic-gate /*
7787c478bd9Sstevel@tonic-gate  * Read /etc/minor_perm, return mperm list of entries
7797c478bd9Sstevel@tonic-gate  */
7807c478bd9Sstevel@tonic-gate struct mperm *
7817c478bd9Sstevel@tonic-gate i_devfs_read_minor_perm(char *drvname, void (*errcb)(minorperm_err_t, int))
7827c478bd9Sstevel@tonic-gate {
7837c478bd9Sstevel@tonic-gate 	FILE *pfd;
7847c478bd9Sstevel@tonic-gate 	struct mperm *mp;
7857c478bd9Sstevel@tonic-gate 	char line[MAX_MINOR_PERM_LINE];
7867c478bd9Sstevel@tonic-gate 	char *cp, *p, t;
7877c478bd9Sstevel@tonic-gate 	struct mperm *minor_perms = NULL;
7887c478bd9Sstevel@tonic-gate 	struct mperm *mptail = NULL;
7897c478bd9Sstevel@tonic-gate 	struct passwd *pw;
7907c478bd9Sstevel@tonic-gate 	struct group *gp;
7917c478bd9Sstevel@tonic-gate 	uid_t root_uid;
7927c478bd9Sstevel@tonic-gate 	gid_t sys_gid;
7937c478bd9Sstevel@tonic-gate 	int ln = 0;
7947c478bd9Sstevel@tonic-gate 
7957c478bd9Sstevel@tonic-gate 	/*
7967c478bd9Sstevel@tonic-gate 	 * Get root/sys ids, these being the most common
7977c478bd9Sstevel@tonic-gate 	 */
7987c478bd9Sstevel@tonic-gate 	if ((pw = getpwnam(DEFAULT_DEV_USER)) != NULL) {
7997c478bd9Sstevel@tonic-gate 		root_uid = pw->pw_uid;
8007c478bd9Sstevel@tonic-gate 	} else {
8017c478bd9Sstevel@tonic-gate 		(*errcb)(MP_CANT_FIND_USER_ERR, 0);
8027c478bd9Sstevel@tonic-gate 		root_uid = (uid_t)0;	/* assume 0 is root */
8037c478bd9Sstevel@tonic-gate 	}
8047c478bd9Sstevel@tonic-gate 	if ((gp = getgrnam(DEFAULT_DEV_GROUP)) != NULL) {
8057c478bd9Sstevel@tonic-gate 		sys_gid = gp->gr_gid;
8067c478bd9Sstevel@tonic-gate 	} else {
8077c478bd9Sstevel@tonic-gate 		(*errcb)(MP_CANT_FIND_GROUP_ERR, 0);
8087c478bd9Sstevel@tonic-gate 		sys_gid = (gid_t)3;	/* assume 3 is sys */
8097c478bd9Sstevel@tonic-gate 	}
8107c478bd9Sstevel@tonic-gate 
8117c478bd9Sstevel@tonic-gate 	if ((pfd = fopen(MINOR_PERM_FILE, "r")) == NULL) {
8127c478bd9Sstevel@tonic-gate 		(*errcb)(MP_FOPEN_ERR, errno);
8137c478bd9Sstevel@tonic-gate 		return (NULL);
8147c478bd9Sstevel@tonic-gate 	}
8151ca93273Seota 	while (fgets(line, MAX_MINOR_PERM_LINE, pfd) != NULL) {
8167c478bd9Sstevel@tonic-gate 		ln++;
8171ca93273Seota 		/* cut off comments starting with '#' */
8181ca93273Seota 		if ((cp = strchr(line, '#')) != NULL)
8191ca93273Seota 			*cp = '\0';
8201ca93273Seota 		/* ignore comment or blank lines */
8211ca93273Seota 		if (is_blank(line))
8221ca93273Seota 			continue;
8237c478bd9Sstevel@tonic-gate 		mp = (struct mperm *)calloc(1, sizeof (struct mperm));
8247c478bd9Sstevel@tonic-gate 		if (mp == NULL) {
8257c478bd9Sstevel@tonic-gate 			(*errcb)(MP_ALLOC_ERR, sizeof (struct mperm));
8267c478bd9Sstevel@tonic-gate 			continue;
8277c478bd9Sstevel@tonic-gate 		}
8287c478bd9Sstevel@tonic-gate 		cp = line;
8291ca93273Seota 		/* sanity-check */
8307c478bd9Sstevel@tonic-gate 		if (getnexttoken(cp, &cp, &p, &t) == 0) {
8317c478bd9Sstevel@tonic-gate 			(*errcb)(MP_IGNORING_LINE_ERR, ln);
8327c478bd9Sstevel@tonic-gate 			devfs_free_minor_perm(mp);
8337c478bd9Sstevel@tonic-gate 			continue;
8347c478bd9Sstevel@tonic-gate 		}
8357c478bd9Sstevel@tonic-gate 		mp->mp_drvname = strdup(p);
8367c478bd9Sstevel@tonic-gate 		if (mp->mp_drvname == NULL) {
8377c478bd9Sstevel@tonic-gate 			(*errcb)(MP_ALLOC_ERR, strlen(p)+1);
8387c478bd9Sstevel@tonic-gate 			devfs_free_minor_perm(mp);
8397c478bd9Sstevel@tonic-gate 			continue;
8407c478bd9Sstevel@tonic-gate 		} else if (t == '\n' || t == '\0') {
8417c478bd9Sstevel@tonic-gate 			(*errcb)(MP_IGNORING_LINE_ERR, ln);
8427c478bd9Sstevel@tonic-gate 			devfs_free_minor_perm(mp);
8437c478bd9Sstevel@tonic-gate 			continue;
8447c478bd9Sstevel@tonic-gate 		}
8457c478bd9Sstevel@tonic-gate 		if (t == ':') {
8467c478bd9Sstevel@tonic-gate 			if (getnexttoken(cp, &cp, &p, &t) == 0) {
8477c478bd9Sstevel@tonic-gate 				(*errcb)(MP_IGNORING_LINE_ERR, ln);
8487c478bd9Sstevel@tonic-gate 				devfs_free_minor_perm(mp);
8497c478bd9Sstevel@tonic-gate 			}
8507c478bd9Sstevel@tonic-gate 			mp->mp_minorname = strdup(p);
8517c478bd9Sstevel@tonic-gate 			if (mp->mp_minorname == NULL) {
8527c478bd9Sstevel@tonic-gate 				(*errcb)(MP_ALLOC_ERR, strlen(p)+1);
8537c478bd9Sstevel@tonic-gate 				devfs_free_minor_perm(mp);
8547c478bd9Sstevel@tonic-gate 				continue;
8557c478bd9Sstevel@tonic-gate 			}
8567c478bd9Sstevel@tonic-gate 		} else {
8577c478bd9Sstevel@tonic-gate 			mp->mp_minorname = NULL;
8587c478bd9Sstevel@tonic-gate 		}
8597c478bd9Sstevel@tonic-gate 
8607c478bd9Sstevel@tonic-gate 		if (t == '\n' || t == '\0') {
8617c478bd9Sstevel@tonic-gate 			devfs_free_minor_perm(mp);
8627c478bd9Sstevel@tonic-gate 			(*errcb)(MP_IGNORING_LINE_ERR, ln);
8637c478bd9Sstevel@tonic-gate 			continue;
8647c478bd9Sstevel@tonic-gate 		}
8657c478bd9Sstevel@tonic-gate 		if (getnexttoken(cp, &cp, &p, &t) == 0) {
8667c478bd9Sstevel@tonic-gate 			goto link;
8677c478bd9Sstevel@tonic-gate 		}
8687c478bd9Sstevel@tonic-gate 		if (getvalue(p, (int *)&mp->mp_mode) == 0) {
8697c478bd9Sstevel@tonic-gate 			goto link;
8707c478bd9Sstevel@tonic-gate 		}
8717c478bd9Sstevel@tonic-gate 		if (t == '\n' || t == '\0') {	/* no owner or group */
8727c478bd9Sstevel@tonic-gate 			goto link;
8737c478bd9Sstevel@tonic-gate 		}
8747c478bd9Sstevel@tonic-gate 		if (getnexttoken(cp, &cp, &p, &t) == 0) {
8757c478bd9Sstevel@tonic-gate 			goto link;
8767c478bd9Sstevel@tonic-gate 		}
8777c478bd9Sstevel@tonic-gate 		mp->mp_owner = strdup(p);
8787c478bd9Sstevel@tonic-gate 		if (mp->mp_owner == NULL) {
8797c478bd9Sstevel@tonic-gate 			(*errcb)(MP_ALLOC_ERR, strlen(p)+1);
8807c478bd9Sstevel@tonic-gate 			devfs_free_minor_perm(mp);
8817c478bd9Sstevel@tonic-gate 			continue;
8827c478bd9Sstevel@tonic-gate 		} else if (t == '\n' || t == '\0') {	/* no group */
8837c478bd9Sstevel@tonic-gate 			goto link;
8847c478bd9Sstevel@tonic-gate 		}
8857c478bd9Sstevel@tonic-gate 		if (getnexttoken(cp, &cp, &p, 0) == 0) {
8867c478bd9Sstevel@tonic-gate 			goto link;
8877c478bd9Sstevel@tonic-gate 		}
8887c478bd9Sstevel@tonic-gate 		mp->mp_group = strdup(p);
8897c478bd9Sstevel@tonic-gate 		if (mp->mp_group == NULL) {
8907c478bd9Sstevel@tonic-gate 			(*errcb)(MP_ALLOC_ERR, strlen(p)+1);
8917c478bd9Sstevel@tonic-gate 			devfs_free_minor_perm(mp);
8927c478bd9Sstevel@tonic-gate 			continue;
8937c478bd9Sstevel@tonic-gate 		}
8947c478bd9Sstevel@tonic-gate link:
8957c478bd9Sstevel@tonic-gate 		if (drvname != NULL) {
8967c478bd9Sstevel@tonic-gate 			/*
8977c478bd9Sstevel@tonic-gate 			 * We only want the minor perm entry for a
8987c478bd9Sstevel@tonic-gate 			 * the named driver.  The driver name is the
8997c478bd9Sstevel@tonic-gate 			 * minor in the clone case.
9007c478bd9Sstevel@tonic-gate 			 */
9017c478bd9Sstevel@tonic-gate 			if (strcmp(mp->mp_drvname, "clone") == 0) {
9027c478bd9Sstevel@tonic-gate 				if (mp->mp_minorname == NULL ||
9037c478bd9Sstevel@tonic-gate 				    strcmp(drvname, mp->mp_minorname) != 0) {
9047c478bd9Sstevel@tonic-gate 					devfs_free_minor_perm(mp);
9057c478bd9Sstevel@tonic-gate 					continue;
9067c478bd9Sstevel@tonic-gate 				}
9077c478bd9Sstevel@tonic-gate 			} else {
9087c478bd9Sstevel@tonic-gate 				if (strcmp(drvname, mp->mp_drvname) != 0) {
9097c478bd9Sstevel@tonic-gate 					devfs_free_minor_perm(mp);
9107c478bd9Sstevel@tonic-gate 					continue;
9117c478bd9Sstevel@tonic-gate 				}
9127c478bd9Sstevel@tonic-gate 			}
9137c478bd9Sstevel@tonic-gate 		}
9147c478bd9Sstevel@tonic-gate 		if (minor_perms == NULL) {
9157c478bd9Sstevel@tonic-gate 			minor_perms = mp;
9167c478bd9Sstevel@tonic-gate 		} else {
9177c478bd9Sstevel@tonic-gate 			mptail->mp_next = mp;
9187c478bd9Sstevel@tonic-gate 		}
9197c478bd9Sstevel@tonic-gate 		mptail = mp;
9207c478bd9Sstevel@tonic-gate 
9217c478bd9Sstevel@tonic-gate 		/*
9227c478bd9Sstevel@tonic-gate 		 * Compute the uid's and gid's here - there are
9237c478bd9Sstevel@tonic-gate 		 * fewer lines in the /etc/minor_perm file than there
9247c478bd9Sstevel@tonic-gate 		 * are devices to be stat(2)ed.  And almost every
9257c478bd9Sstevel@tonic-gate 		 * device is 'root sys'.  See 1135520.
9267c478bd9Sstevel@tonic-gate 		 */
9277c478bd9Sstevel@tonic-gate 		if (mp->mp_owner == NULL ||
9287c478bd9Sstevel@tonic-gate 		    strcmp(mp->mp_owner, DEFAULT_DEV_USER) == 0 ||
9297c478bd9Sstevel@tonic-gate 		    (pw = getpwnam(mp->mp_owner)) == NULL) {
9307c478bd9Sstevel@tonic-gate 			mp->mp_uid = root_uid;
9317c478bd9Sstevel@tonic-gate 		} else {
9327c478bd9Sstevel@tonic-gate 			mp->mp_uid = pw->pw_uid;
9337c478bd9Sstevel@tonic-gate 		}
9347c478bd9Sstevel@tonic-gate 
9357c478bd9Sstevel@tonic-gate 		if (mp->mp_group == NULL ||
9367c478bd9Sstevel@tonic-gate 		    strcmp(mp->mp_group, DEFAULT_DEV_GROUP) == 0 ||
9377c478bd9Sstevel@tonic-gate 		    (gp = getgrnam(mp->mp_group)) == NULL) {
9387c478bd9Sstevel@tonic-gate 			mp->mp_gid = sys_gid;
9397c478bd9Sstevel@tonic-gate 		} else {
9407c478bd9Sstevel@tonic-gate 			mp->mp_gid = gp->gr_gid;
9417c478bd9Sstevel@tonic-gate 		}
9427c478bd9Sstevel@tonic-gate 	}
9437c478bd9Sstevel@tonic-gate 
9447c478bd9Sstevel@tonic-gate 	if (fclose(pfd) == EOF) {
9457c478bd9Sstevel@tonic-gate 		(*errcb)(MP_FCLOSE_ERR, errno);
9467c478bd9Sstevel@tonic-gate 	}
9477c478bd9Sstevel@tonic-gate 
9487c478bd9Sstevel@tonic-gate 	return (minor_perms);
9497c478bd9Sstevel@tonic-gate }
9507c478bd9Sstevel@tonic-gate 
9517c478bd9Sstevel@tonic-gate struct mperm *
9527c478bd9Sstevel@tonic-gate devfs_read_minor_perm(void (*errcb)(minorperm_err_t, int))
9537c478bd9Sstevel@tonic-gate {
9547c478bd9Sstevel@tonic-gate 	return (i_devfs_read_minor_perm(NULL, errcb));
9557c478bd9Sstevel@tonic-gate }
9567c478bd9Sstevel@tonic-gate 
9577c478bd9Sstevel@tonic-gate static struct mperm *
9587c478bd9Sstevel@tonic-gate i_devfs_read_minor_perm_by_driver(char *drvname,
9597c478bd9Sstevel@tonic-gate 	void (*errcb)(minorperm_err_t mp_err, int key))
9607c478bd9Sstevel@tonic-gate {
9617c478bd9Sstevel@tonic-gate 	return (i_devfs_read_minor_perm(drvname, errcb));
9627c478bd9Sstevel@tonic-gate }
9637c478bd9Sstevel@tonic-gate 
9647c478bd9Sstevel@tonic-gate /*
9657c478bd9Sstevel@tonic-gate  * Free mperm list of entries
9667c478bd9Sstevel@tonic-gate  */
9677c478bd9Sstevel@tonic-gate void
9687c478bd9Sstevel@tonic-gate devfs_free_minor_perm(struct mperm *mplist)
9697c478bd9Sstevel@tonic-gate {
9707c478bd9Sstevel@tonic-gate 	struct mperm *mp, *next;
9717c478bd9Sstevel@tonic-gate 
9727c478bd9Sstevel@tonic-gate 	for (mp = mplist; mp != NULL; mp = next) {
9737c478bd9Sstevel@tonic-gate 		next = mp->mp_next;
9747c478bd9Sstevel@tonic-gate 
9757c478bd9Sstevel@tonic-gate 		if (mp->mp_drvname)
9767c478bd9Sstevel@tonic-gate 			free(mp->mp_drvname);
9777c478bd9Sstevel@tonic-gate 		if (mp->mp_minorname)
9787c478bd9Sstevel@tonic-gate 			free(mp->mp_minorname);
9797c478bd9Sstevel@tonic-gate 		if (mp->mp_owner)
9807c478bd9Sstevel@tonic-gate 			free(mp->mp_owner);
9817c478bd9Sstevel@tonic-gate 		if (mp->mp_group)
9827c478bd9Sstevel@tonic-gate 			free(mp->mp_group);
9837c478bd9Sstevel@tonic-gate 		free(mp);
9847c478bd9Sstevel@tonic-gate 	}
9857c478bd9Sstevel@tonic-gate }
9867c478bd9Sstevel@tonic-gate 
9877c478bd9Sstevel@tonic-gate static int
9887c478bd9Sstevel@tonic-gate i_devfs_add_perm_entry(nvlist_t *nvl, struct mperm *mp)
9897c478bd9Sstevel@tonic-gate {
9907c478bd9Sstevel@tonic-gate 	int err;
9917c478bd9Sstevel@tonic-gate 
9927c478bd9Sstevel@tonic-gate 	err = nvlist_add_string(nvl, mp->mp_drvname, mp->mp_minorname);
9937c478bd9Sstevel@tonic-gate 	if (err != 0)
9947c478bd9Sstevel@tonic-gate 		return (err);
9957c478bd9Sstevel@tonic-gate 
9967c478bd9Sstevel@tonic-gate 	err = nvlist_add_int32(nvl, "mode", (int32_t)mp->mp_mode);
9977c478bd9Sstevel@tonic-gate 	if (err != 0)
9987c478bd9Sstevel@tonic-gate 		return (err);
9997c478bd9Sstevel@tonic-gate 
1000811e5678Scasper 	err = nvlist_add_uint32(nvl, "uid", mp->mp_uid);
10017c478bd9Sstevel@tonic-gate 	if (err != 0)
10027c478bd9Sstevel@tonic-gate 		return (err);
10037c478bd9Sstevel@tonic-gate 
1004811e5678Scasper 	err = nvlist_add_uint32(nvl, "gid", mp->mp_gid);
10057c478bd9Sstevel@tonic-gate 	return (err);
10067c478bd9Sstevel@tonic-gate }
10077c478bd9Sstevel@tonic-gate 
10087c478bd9Sstevel@tonic-gate static nvlist_t *
10097c478bd9Sstevel@tonic-gate i_devfs_minor_perm_nvlist(struct mperm *mplist,
10107c478bd9Sstevel@tonic-gate 	void (*errcb)(minorperm_err_t, int))
10117c478bd9Sstevel@tonic-gate {
10127c478bd9Sstevel@tonic-gate 	int err;
10137c478bd9Sstevel@tonic-gate 	struct mperm *mp;
10147c478bd9Sstevel@tonic-gate 	nvlist_t *nvl = NULL;
10157c478bd9Sstevel@tonic-gate 
10167c478bd9Sstevel@tonic-gate 	if ((err = nvlist_alloc(&nvl, 0, 0)) != 0) {
10177c478bd9Sstevel@tonic-gate 		(*errcb)(MP_NVLIST_ERR, err);
10187c478bd9Sstevel@tonic-gate 		return (NULL);
10197c478bd9Sstevel@tonic-gate 	}
10207c478bd9Sstevel@tonic-gate 
10217c478bd9Sstevel@tonic-gate 	for (mp = mplist; mp != NULL; mp = mp->mp_next) {
10227c478bd9Sstevel@tonic-gate 		if ((err = i_devfs_add_perm_entry(nvl, mp)) != 0) {
10237c478bd9Sstevel@tonic-gate 			(*errcb)(MP_NVLIST_ERR, err);
10247c478bd9Sstevel@tonic-gate 			nvlist_free(nvl);
10257c478bd9Sstevel@tonic-gate 			return (NULL);
10267c478bd9Sstevel@tonic-gate 		}
10277c478bd9Sstevel@tonic-gate 	}
10287c478bd9Sstevel@tonic-gate 
10297c478bd9Sstevel@tonic-gate 	return (nvl);
10307c478bd9Sstevel@tonic-gate }
10317c478bd9Sstevel@tonic-gate 
10327c478bd9Sstevel@tonic-gate /*
10337c478bd9Sstevel@tonic-gate  * Load all minor perm entries into the kernel
10347c478bd9Sstevel@tonic-gate  * Done at boot time via devfsadm
10357c478bd9Sstevel@tonic-gate  */
10367c478bd9Sstevel@tonic-gate int
10377c478bd9Sstevel@tonic-gate devfs_load_minor_perm(struct mperm *mplist,
10387c478bd9Sstevel@tonic-gate 	void (*errcb)(minorperm_err_t, int))
10397c478bd9Sstevel@tonic-gate {
10407c478bd9Sstevel@tonic-gate 	int err;
10417c478bd9Sstevel@tonic-gate 	char *buf = NULL;
10427c478bd9Sstevel@tonic-gate 	size_t buflen;
10437c478bd9Sstevel@tonic-gate 	nvlist_t *nvl;
10447c478bd9Sstevel@tonic-gate 
10457c478bd9Sstevel@tonic-gate 	nvl = i_devfs_minor_perm_nvlist(mplist, errcb);
10467c478bd9Sstevel@tonic-gate 	if (nvl == NULL)
10477c478bd9Sstevel@tonic-gate 		return (-1);
10487c478bd9Sstevel@tonic-gate 
10497c478bd9Sstevel@tonic-gate 	if (nvlist_pack(nvl, &buf, &buflen, NV_ENCODE_NATIVE, 0) != 0) {
10507c478bd9Sstevel@tonic-gate 		nvlist_free(nvl);
10517c478bd9Sstevel@tonic-gate 		return (-1);
10527c478bd9Sstevel@tonic-gate 	}
10537c478bd9Sstevel@tonic-gate 
10547c478bd9Sstevel@tonic-gate 	err = modctl(MODLOADMINORPERM, buf, buflen);
10557c478bd9Sstevel@tonic-gate 	nvlist_free(nvl);
10567c478bd9Sstevel@tonic-gate 	free(buf);
10577c478bd9Sstevel@tonic-gate 
10587c478bd9Sstevel@tonic-gate 	return (err);
10597c478bd9Sstevel@tonic-gate }
10607c478bd9Sstevel@tonic-gate 
10617c478bd9Sstevel@tonic-gate /*
10627c478bd9Sstevel@tonic-gate  * Add/remove minor perm entry for a driver
10637c478bd9Sstevel@tonic-gate  */
10647c478bd9Sstevel@tonic-gate static int
10657c478bd9Sstevel@tonic-gate i_devfs_update_minor_perm(char *drv, int ctl,
10667c478bd9Sstevel@tonic-gate 	void (*errcb)(minorperm_err_t, int))
10677c478bd9Sstevel@tonic-gate {
10687c478bd9Sstevel@tonic-gate 	int err;
10697c478bd9Sstevel@tonic-gate 	char *buf;
10707c478bd9Sstevel@tonic-gate 	size_t buflen;
10717c478bd9Sstevel@tonic-gate 	nvlist_t *nvl;
10727c478bd9Sstevel@tonic-gate 	struct mperm *mplist;
10737c478bd9Sstevel@tonic-gate 
10747c478bd9Sstevel@tonic-gate 	mplist = i_devfs_read_minor_perm_by_driver(drv, errcb);
10757c478bd9Sstevel@tonic-gate 
10767c478bd9Sstevel@tonic-gate 	nvl = i_devfs_minor_perm_nvlist(mplist, errcb);
10777c478bd9Sstevel@tonic-gate 	if (nvl == NULL)
10787c478bd9Sstevel@tonic-gate 		return (-1);
10797c478bd9Sstevel@tonic-gate 
10807c478bd9Sstevel@tonic-gate 	buf = NULL;
10817c478bd9Sstevel@tonic-gate 	if (nvlist_pack(nvl, &buf, &buflen, NV_ENCODE_NATIVE, 0) != 0) {
10827c478bd9Sstevel@tonic-gate 		nvlist_free(nvl);
10837c478bd9Sstevel@tonic-gate 		return (-1);
10847c478bd9Sstevel@tonic-gate 	}
10857c478bd9Sstevel@tonic-gate 
10867c478bd9Sstevel@tonic-gate 	err = modctl(ctl, buf, buflen);
10877c478bd9Sstevel@tonic-gate 	nvlist_free(nvl);
10887c478bd9Sstevel@tonic-gate 	devfs_free_minor_perm(mplist);
10897c478bd9Sstevel@tonic-gate 	free(buf);
10907c478bd9Sstevel@tonic-gate 
10917c478bd9Sstevel@tonic-gate 	return (err);
10927c478bd9Sstevel@tonic-gate }
10937c478bd9Sstevel@tonic-gate 
10947c478bd9Sstevel@tonic-gate int
10957c478bd9Sstevel@tonic-gate devfs_add_minor_perm(char *drv,
10967c478bd9Sstevel@tonic-gate 	void (*errcb)(minorperm_err_t, int))
10977c478bd9Sstevel@tonic-gate {
10987c478bd9Sstevel@tonic-gate 	return (i_devfs_update_minor_perm(drv, MODADDMINORPERM, errcb));
10997c478bd9Sstevel@tonic-gate }
11007c478bd9Sstevel@tonic-gate 
11017c478bd9Sstevel@tonic-gate int
11027c478bd9Sstevel@tonic-gate devfs_rm_minor_perm(char *drv,
11037c478bd9Sstevel@tonic-gate 	void (*errcb)(minorperm_err_t, int))
11047c478bd9Sstevel@tonic-gate {
11057c478bd9Sstevel@tonic-gate 	return (i_devfs_update_minor_perm(drv, MODREMMINORPERM, errcb));
11067c478bd9Sstevel@tonic-gate }
11071ca93273Seota 
11081ca93273Seota /*
11091ca93273Seota  * is_blank() returns 1 (true) if a line specified is composed of
11101ca93273Seota  * whitespace characters only. otherwise, it returns 0 (false).
11111ca93273Seota  *
11121ca93273Seota  * Note. the argument (line) must be null-terminated.
11131ca93273Seota  */
11141ca93273Seota static int
11151ca93273Seota is_blank(char *line)
11161ca93273Seota {
11171ca93273Seota 	for (/* nothing */; *line != '\0'; line++)
11181ca93273Seota 		if (!isspace(*line))
11191ca93273Seota 			return (0);
11201ca93273Seota 	return (1);
11211ca93273Seota }
1122