xref: /netbsd/usr.bin/config/sem.c (revision bc707469)
1*bc707469Suebayasi /*	$NetBSD: sem.c,v 1.60 2014/10/11 15:20:36 uebayasi Exp $	*/
25ecc953bSthorpej 
35ecc953bSthorpej /*
45ecc953bSthorpej  * Copyright (c) 1992, 1993
55ecc953bSthorpej  *	The Regents of the University of California.  All rights reserved.
65ecc953bSthorpej  *
75ecc953bSthorpej  * This software was developed by the Computer Systems Engineering group
85ecc953bSthorpej  * at Lawrence Berkeley Laboratory under DARPA contract BG 91-66 and
95ecc953bSthorpej  * contributed to Berkeley.
105ecc953bSthorpej  *
115ecc953bSthorpej  * All advertising materials mentioning features or use of this software
125ecc953bSthorpej  * must display the following acknowledgement:
135ecc953bSthorpej  *	This product includes software developed by the University of
145ecc953bSthorpej  *	California, Lawrence Berkeley Laboratories.
155ecc953bSthorpej  *
165ecc953bSthorpej  * Redistribution and use in source and binary forms, with or without
175ecc953bSthorpej  * modification, are permitted provided that the following conditions
185ecc953bSthorpej  * are met:
195ecc953bSthorpej  * 1. Redistributions of source code must retain the above copyright
205ecc953bSthorpej  *    notice, this list of conditions and the following disclaimer.
215ecc953bSthorpej  * 2. Redistributions in binary form must reproduce the above copyright
225ecc953bSthorpej  *    notice, this list of conditions and the following disclaimer in the
235ecc953bSthorpej  *    documentation and/or other materials provided with the distribution.
245ecc953bSthorpej  * 3. Neither the name of the University nor the names of its contributors
255ecc953bSthorpej  *    may be used to endorse or promote products derived from this software
265ecc953bSthorpej  *    without specific prior written permission.
275ecc953bSthorpej  *
285ecc953bSthorpej  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
295ecc953bSthorpej  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
305ecc953bSthorpej  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
315ecc953bSthorpej  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
325ecc953bSthorpej  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
335ecc953bSthorpej  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
345ecc953bSthorpej  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
355ecc953bSthorpej  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
365ecc953bSthorpej  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
375ecc953bSthorpej  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
385ecc953bSthorpej  * SUCH DAMAGE.
395ecc953bSthorpej  *
405ecc953bSthorpej  *	from: @(#)sem.c	8.1 (Berkeley) 6/6/93
415ecc953bSthorpej  */
425ecc953bSthorpej 
435ecc953bSthorpej #if HAVE_NBTOOL_CONFIG_H
445ecc953bSthorpej #include "nbtool_config.h"
455ecc953bSthorpej #endif
465ecc953bSthorpej 
475ecc953bSthorpej #include <sys/param.h>
485ecc953bSthorpej #include <ctype.h>
495ecc953bSthorpej #include <stdio.h>
505ecc953bSthorpej #include <stdlib.h>
515ecc953bSthorpej #include <string.h>
52d0fb8901Schristos #include <util.h>
535ecc953bSthorpej #include "defs.h"
545ecc953bSthorpej #include "sem.h"
555ecc953bSthorpej 
565ecc953bSthorpej /*
575ecc953bSthorpej  * config semantics.
585ecc953bSthorpej  */
595ecc953bSthorpej 
605ecc953bSthorpej #define	NAMESIZE	100	/* local name buffers */
615ecc953bSthorpej 
625ecc953bSthorpej const char *s_ifnet;		/* magic attribute */
635ecc953bSthorpej const char *s_qmark;
645ecc953bSthorpej const char *s_none;
655ecc953bSthorpej 
665ecc953bSthorpej static struct hashtab *cfhashtab;	/* for config lookup */
675ecc953bSthorpej struct hashtab *devitab;		/* etc */
687c7d91e6Suebayasi struct attr allattr;
695ecc953bSthorpej 
705ecc953bSthorpej static struct attr errattr;
715ecc953bSthorpej static struct devbase errdev;
725ecc953bSthorpej static struct deva errdeva;
735ecc953bSthorpej 
744caf067bSdholland static int has_errobj(struct attrlist *, struct attr *);
755ecc953bSthorpej static struct nvlist *addtoattr(struct nvlist *, struct devbase *);
765ecc953bSthorpej static int resolve(struct nvlist **, const char *, const char *,
775ecc953bSthorpej 		   struct nvlist *, int);
785ecc953bSthorpej static struct pspec *getpspec(struct attr *, struct devbase *, int);
795ecc953bSthorpej static struct devi *newdevi(const char *, int, struct devbase *d);
805ecc953bSthorpej static struct devi *getdevi(const char *);
81c130d400Scube static void remove_devi(struct devi *);
825ecc953bSthorpej static const char *concat(const char *, int);
835ecc953bSthorpej static char *extend(char *, const char *);
845ecc953bSthorpej static int split(const char *, size_t, char *, size_t, int *);
855ecc953bSthorpej static void selectbase(struct devbase *, struct deva *);
8616a8771bSdholland static const char **fixloc(const char *, struct attr *, struct loclist *);
87d767912bSdrochner static const char *makedevstr(devmajor_t, devminor_t);
88d767912bSdrochner static const char *major2name(devmajor_t);
89d767912bSdrochner static devmajor_t dev2major(struct devbase *);
905ecc953bSthorpej 
915ecc953bSthorpej extern const char *yyfile;
927aa6070dScube extern int vflag;
935ecc953bSthorpej 
945ecc953bSthorpej void
955ecc953bSthorpej initsem(void)
965ecc953bSthorpej {
975ecc953bSthorpej 
985ecc953bSthorpej 	attrtab = ht_new();
997c7d91e6Suebayasi 
1007c7d91e6Suebayasi 	allattr.a_name = "netbsd";
1017c7d91e6Suebayasi 	TAILQ_INIT(&allattr.a_files);
1027c7d91e6Suebayasi 	(void)ht_insert(attrtab, allattr.a_name, &allattr);
103cd06fea3Suebayasi 	selectattr(&allattr);
1047c7d91e6Suebayasi 
1055ecc953bSthorpej 	errattr.a_name = "<internal>";
1065ecc953bSthorpej 
1075ecc953bSthorpej 	TAILQ_INIT(&allbases);
1085ecc953bSthorpej 
1095ecc953bSthorpej 	TAILQ_INIT(&alldevas);
1105ecc953bSthorpej 
1115ecc953bSthorpej 	TAILQ_INIT(&allpspecs);
1125ecc953bSthorpej 
1135ecc953bSthorpej 	cfhashtab = ht_new();
1145ecc953bSthorpej 	TAILQ_INIT(&allcf);
1155ecc953bSthorpej 
1165ecc953bSthorpej 	TAILQ_INIT(&alldevi);
1175ecc953bSthorpej 	errdev.d_name = "<internal>";
1185ecc953bSthorpej 
1195ecc953bSthorpej 	TAILQ_INIT(&allpseudo);
1205ecc953bSthorpej 
1215ecc953bSthorpej 	TAILQ_INIT(&alldevms);
1225ecc953bSthorpej 
1235ecc953bSthorpej 	s_ifnet = intern("ifnet");
1245ecc953bSthorpej 	s_qmark = intern("?");
1255ecc953bSthorpej 	s_none = intern("none");
1265ecc953bSthorpej }
1275ecc953bSthorpej 
1285ecc953bSthorpej /* Name of include file just ended (set in scan.l) */
1295ecc953bSthorpej extern const char *lastfile;
1305ecc953bSthorpej 
131a87832feSuebayasi static struct attr *
132da706167Suebayasi finddep(struct attr *a, const char *name)
133da706167Suebayasi {
134da706167Suebayasi 	struct attrlist *al;
135da706167Suebayasi 
136da706167Suebayasi 	for (al = a->a_deps; al != NULL; al = al->al_next) {
137da706167Suebayasi 		struct attr *this = al->al_this;
138da706167Suebayasi 		if (strcmp(this->a_name, name) == 0)
139da706167Suebayasi 			return this;
140da706167Suebayasi 	}
141da706167Suebayasi 	return NULL;
142da706167Suebayasi }
143da706167Suebayasi 
144da706167Suebayasi static void
145*bc707469Suebayasi mergedeps(const char *devname, const char *name)
146da706167Suebayasi {
147da706167Suebayasi 	struct attr *a, *newa;
148da706167Suebayasi 
149*bc707469Suebayasi 	CFGDBG(4, "merging attr `%s' to devbase `%s'", name, devname);
150*bc707469Suebayasi 	a = refattr(devname);
151da706167Suebayasi 	if (finddep(a, name) == NULL) {
152da706167Suebayasi 		newa = refattr(name);
153da706167Suebayasi 		a->a_deps = attrlist_cons(a->a_deps, newa);
154da706167Suebayasi 		CFGDBG(3, "attr `%s' merged to attr `%s'", newa->a_name,
155da706167Suebayasi 		    a->a_name);
156da706167Suebayasi 	}
157da706167Suebayasi }
158da706167Suebayasi 
159da706167Suebayasi static void
160da706167Suebayasi fixdev(struct devbase *dev)
161da706167Suebayasi {
162da706167Suebayasi 	struct attrlist *al;
163da706167Suebayasi 	struct attr *devattr, *a;
164da706167Suebayasi 
165da706167Suebayasi 	devattr = refattr(dev->d_name);
166da706167Suebayasi 	if (devattr->a_devclass)
167a87832feSuebayasi 		panic("%s: dev %s is devclass!", __func__, devattr->a_name);
168da706167Suebayasi 
169c4bac1d0Suebayasi 	CFGDBG(4, "fixing devbase `%s'", dev->d_name);
170da706167Suebayasi 	for (al = dev->d_attrs; al != NULL; al = al->al_next) {
171da706167Suebayasi 		a = al->al_this;
172*bc707469Suebayasi 		CFGDBG(4, "fixing devbase `%s' attr `%s'", dev->d_name, a->a_name);
173da706167Suebayasi 		if (a->a_iattr) {
174da706167Suebayasi 			a->a_refs = addtoattr(a->a_refs, dev);
175c4bac1d0Suebayasi 			CFGDBG(3, "device `%s' has iattr `%s'", dev->d_name,
176c4bac1d0Suebayasi 			    a->a_name);
177da706167Suebayasi 		} else if (a->a_devclass != NULL) {
178c5a6c986Suebayasi 			if (dev->d_classattr != NULL && dev->d_classattr != a) {
179da706167Suebayasi 				cfgwarn("device `%s' has multiple classes "
180da706167Suebayasi 				    "(`%s' and `%s')",
181da706167Suebayasi 				    dev->d_name, dev->d_classattr->a_name,
182da706167Suebayasi 				    a->a_name);
183da706167Suebayasi 			}
184c5a6c986Suebayasi 			if (dev->d_classattr == NULL) {
185da706167Suebayasi 				dev->d_classattr = a;
186c4bac1d0Suebayasi 				CFGDBG(3, "device `%s' is devclass `%s'", dev->d_name,
187c4bac1d0Suebayasi 				    a->a_name);
188c5a6c986Suebayasi 			}
189da706167Suebayasi 		} else {
190da706167Suebayasi 			if (strcmp(dev->d_name, a->a_name) != 0) {
191*bc707469Suebayasi 				mergedeps(dev->d_name, a->a_name);
192da706167Suebayasi 			}
193da706167Suebayasi 		}
194da706167Suebayasi 	}
195da706167Suebayasi }
196da706167Suebayasi 
1975ecc953bSthorpej void
1985ecc953bSthorpej enddefs(void)
1995ecc953bSthorpej {
2005ecc953bSthorpej 	struct devbase *dev;
2015ecc953bSthorpej 
202c4bac1d0Suebayasi 	yyfile = "enddefs";
203c4bac1d0Suebayasi 
2045ecc953bSthorpej 	TAILQ_FOREACH(dev, &allbases, d_next) {
2055ecc953bSthorpej 		if (!dev->d_isdef) {
2065ecc953bSthorpej 			(void)fprintf(stderr,
2075ecc953bSthorpej 			    "%s: device `%s' used but not defined\n",
2085ecc953bSthorpej 			    lastfile, dev->d_name);
2095ecc953bSthorpej 			errors++;
2105ecc953bSthorpej 			continue;
2115ecc953bSthorpej 		}
212*bc707469Suebayasi 		fixdev(dev);
2135ecc953bSthorpej 	}
2145ecc953bSthorpej 	if (errors) {
2155ecc953bSthorpej 		(void)fprintf(stderr, "*** Stop.\n");
2165ecc953bSthorpej 		exit(1);
2175ecc953bSthorpej 	}
2185ecc953bSthorpej }
2195ecc953bSthorpej 
2205ecc953bSthorpej void
2215ecc953bSthorpej setdefmaxusers(int min, int def, int max)
2225ecc953bSthorpej {
2235ecc953bSthorpej 
2245ecc953bSthorpej 	if (min < 1 || min > def || def > max)
225c7295a4cSchristos 		cfgerror("maxusers must have 1 <= min (%d) <= default (%d) "
226c7295a4cSchristos 		    "<= max (%d)", min, def, max);
2275ecc953bSthorpej 	else {
2285ecc953bSthorpej 		minmaxusers = min;
2295ecc953bSthorpej 		defmaxusers = def;
2305ecc953bSthorpej 		maxmaxusers = max;
2315ecc953bSthorpej 	}
2325ecc953bSthorpej }
2335ecc953bSthorpej 
2345ecc953bSthorpej void
2355ecc953bSthorpej setmaxusers(int n)
2365ecc953bSthorpej {
2375ecc953bSthorpej 
238895e5687Scube 	if (maxusers == n) {
239c7295a4cSchristos 		cfgerror("duplicate maxusers parameter");
2405ecc953bSthorpej 		return;
2415ecc953bSthorpej 	}
242895e5687Scube 	if (vflag && maxusers != 0)
243c7295a4cSchristos 		cfgwarn("warning: maxusers already defined");
2445ecc953bSthorpej 	maxusers = n;
2455ecc953bSthorpej 	if (n < minmaxusers) {
246c7295a4cSchristos 		cfgerror("warning: minimum of %d maxusers assumed",
247c7295a4cSchristos 		    minmaxusers);
2485ecc953bSthorpej 		errors--;	/* take it away */
2495ecc953bSthorpej 		maxusers = minmaxusers;
2505ecc953bSthorpej 	} else if (n > maxmaxusers) {
251c7295a4cSchristos 		cfgerror("warning: maxusers (%d) > %d", n, maxmaxusers);
2525ecc953bSthorpej 		errors--;
2535ecc953bSthorpej 	}
2545ecc953bSthorpej }
2555ecc953bSthorpej 
2565ecc953bSthorpej void
2575ecc953bSthorpej setident(const char *i)
2585ecc953bSthorpej {
2595ecc953bSthorpej 
2604a7be1f9Smrg 	if (i)
2615ecc953bSthorpej 		ident = intern(i);
2624a7be1f9Smrg 	else
2634a7be1f9Smrg 		ident = NULL;
2645ecc953bSthorpej }
2655ecc953bSthorpej 
2665ecc953bSthorpej /*
2675ecc953bSthorpej  * Define an attribute, optionally with an interface (a locator list)
2685ecc953bSthorpej  * and a set of attribute-dependencies.
2695ecc953bSthorpej  *
2705ecc953bSthorpej  * Attribute dependencies MAY NOT be interface attributes.
2715ecc953bSthorpej  *
2725ecc953bSthorpej  * Since an empty locator list is logically different from "no interface",
2735ecc953bSthorpej  * all locator lists include a dummy head node, which we discard here.
2745ecc953bSthorpej  */
2755ecc953bSthorpej int
276bb4307a6Suebayasi defattr0(const char *name, struct loclist *locs, struct attrlist *deps,
277bb4307a6Suebayasi     int devclass)
278bb4307a6Suebayasi {
279bb4307a6Suebayasi 
280bb4307a6Suebayasi 	if (locs != NULL)
281bb4307a6Suebayasi 		return defiattr(name, locs, deps, devclass);
282bb4307a6Suebayasi 	else if (devclass)
283bb4307a6Suebayasi 		return defdevclass(name, locs, deps, devclass);
284bb4307a6Suebayasi 	else
285bb4307a6Suebayasi 		return defattr(name, locs, deps, devclass);
286bb4307a6Suebayasi }
287bb4307a6Suebayasi 
288bb4307a6Suebayasi int
28916a8771bSdholland defattr(const char *name, struct loclist *locs, struct attrlist *deps,
2905ecc953bSthorpej     int devclass)
2915ecc953bSthorpej {
2925ecc953bSthorpej 	struct attr *a, *dep;
2934caf067bSdholland 	struct attrlist *al;
2945ecc953bSthorpej 
2955ecc953bSthorpej 	/*
2965ecc953bSthorpej 	 * If this attribute depends on any others, make sure none of
2975ecc953bSthorpej 	 * the dependencies are interface attributes.
2985ecc953bSthorpej 	 */
2994caf067bSdholland 	for (al = deps; al != NULL; al = al->al_next) {
3004caf067bSdholland 		dep = al->al_this;
3015ecc953bSthorpej 		if (dep->a_iattr) {
302c7295a4cSchristos 			cfgerror("`%s' dependency `%s' is an interface "
303c7295a4cSchristos 			    "attribute", name, dep->a_name);
3045ecc953bSthorpej 			return (1);
3055ecc953bSthorpej 		}
306*bc707469Suebayasi 		CFGDBG(2, "attr `%s' depends on attr `%s'", name, dep->a_name);
3075ecc953bSthorpej 	}
3085ecc953bSthorpej 
309bb52c144Suebayasi 	if (getrefattr(name, &a)) {
310c7295a4cSchristos 		cfgerror("attribute `%s' already defined", name);
31116a8771bSdholland 		loclist_destroy(locs);
3125ecc953bSthorpej 		return (1);
3135ecc953bSthorpej 	}
314bb52c144Suebayasi 	if (a == NULL)
315bb52c144Suebayasi 		a = mkattr(name);
3165ecc953bSthorpej 
317a949e288Suebayasi 	a->a_deps = deps;
318bb4307a6Suebayasi 	expandattr(a, NULL);
3192f2f3382Suebayasi 	CFGDBG(3, "attr `%s' defined", a->a_name);
320bb4307a6Suebayasi 
321bb4307a6Suebayasi 	return (0);
322bb4307a6Suebayasi }
323a949e288Suebayasi 
3242f2f3382Suebayasi struct attr *
3252f2f3382Suebayasi mkattr(const char *name)
3262f2f3382Suebayasi {
3272f2f3382Suebayasi 	struct attr *a;
3282f2f3382Suebayasi 
3292f2f3382Suebayasi 	a = ecalloc(1, sizeof *a);
3302f2f3382Suebayasi 	if (ht_insert(attrtab, name, a)) {
3312f2f3382Suebayasi 		free(a);
3322f2f3382Suebayasi 		return NULL;
3332f2f3382Suebayasi 	}
3342f2f3382Suebayasi 	a->a_name = name;
3352f2f3382Suebayasi 	TAILQ_INIT(&a->a_files);
3362f2f3382Suebayasi 	CFGDBG(3, "attr `%s' allocated", name);
3372f2f3382Suebayasi 
3382f2f3382Suebayasi 	return a;
3392f2f3382Suebayasi }
3402f2f3382Suebayasi 
341a949e288Suebayasi /* "interface attribute" initialization */
342bb4307a6Suebayasi int
343bb4307a6Suebayasi defiattr(const char *name, struct loclist *locs, struct attrlist *deps,
344bb4307a6Suebayasi     int devclass)
345bb4307a6Suebayasi {
346bb4307a6Suebayasi 	struct attr *a;
347bb4307a6Suebayasi 	int len;
348bb4307a6Suebayasi 	struct loclist *ll;
349bb4307a6Suebayasi 
350bb4307a6Suebayasi 	if (devclass)
351bb4307a6Suebayasi 		panic("defattr(%s): locators and devclass", name);
352bb4307a6Suebayasi 
353bb4307a6Suebayasi 	if (defattr(name, locs, deps, devclass) != 0)
354bb4307a6Suebayasi 		return (1);
355bb4307a6Suebayasi 
356bb4307a6Suebayasi 	a = getattr(name);
3575ecc953bSthorpej 	a->a_iattr = 1;
35816a8771bSdholland 	/* unwrap */
35916a8771bSdholland 	a->a_locs = locs->ll_next;
36016a8771bSdholland 	locs->ll_next = NULL;
36116a8771bSdholland 	loclist_destroy(locs);
362a949e288Suebayasi 	len = 0;
363a949e288Suebayasi 	for (ll = a->a_locs; ll != NULL; ll = ll->ll_next)
364a949e288Suebayasi 		len++;
365a949e288Suebayasi 	a->a_loclen = len;
366bb4307a6Suebayasi 	if (deps)
367bb4307a6Suebayasi 		CFGDBG(2, "attr `%s' iface with deps", a->a_name);
368bb4307a6Suebayasi 	return (0);
3695ecc953bSthorpej }
370a949e288Suebayasi 
371a949e288Suebayasi /* "device class" initialization */
372bb4307a6Suebayasi int
373bb4307a6Suebayasi defdevclass(const char *name, struct loclist *locs, struct attrlist *deps,
374bb4307a6Suebayasi     int devclass)
375bb4307a6Suebayasi {
376bb4307a6Suebayasi 	struct attr *a;
377bbfbbde1Schristos 	char classenum[256], *cp;
3785ecc953bSthorpej 	int errored = 0;
3795ecc953bSthorpej 
380bb4307a6Suebayasi 	if (deps)
381bb4307a6Suebayasi 		panic("defattr(%s): dependencies and devclass", name);
382bb4307a6Suebayasi 
383bb4307a6Suebayasi 	if (defattr(name, locs, deps, devclass) != 0)
384bb4307a6Suebayasi 		return (1);
385bb4307a6Suebayasi 
386bb4307a6Suebayasi 	a = getattr(name);
387bbfbbde1Schristos 	(void)snprintf(classenum, sizeof(classenum), "DV_%s", name);
3885ecc953bSthorpej 	for (cp = classenum + 3; *cp; cp++) {
3895ecc953bSthorpej 		if (!errored &&
3905ecc953bSthorpej 		    (!isalnum((unsigned char)*cp) ||
3915ecc953bSthorpej 		      (isalpha((unsigned char)*cp) && !islower((unsigned char)*cp)))) {
392c7295a4cSchristos 			cfgerror("device class names must be "
393c7295a4cSchristos 			    "lower-case alphanumeric characters");
3945ecc953bSthorpej 			errored = 1;
3955ecc953bSthorpej 		}
3965ecc953bSthorpej 		*cp = toupper((unsigned char)*cp);
3975ecc953bSthorpej 	}
3985ecc953bSthorpej 	a->a_devclass = intern(classenum);
3995ecc953bSthorpej 
4005ecc953bSthorpej 	return (0);
4015ecc953bSthorpej }
4025ecc953bSthorpej 
4035ecc953bSthorpej /*
4045ecc953bSthorpej  * Return true if the given `error object' is embedded in the given
4055ecc953bSthorpej  * pointer list.
4065ecc953bSthorpej  */
4075ecc953bSthorpej static int
4084caf067bSdholland has_errobj(struct attrlist *al, struct attr *obj)
4095ecc953bSthorpej {
4105ecc953bSthorpej 
4114caf067bSdholland 	for (; al != NULL; al = al->al_next)
4124caf067bSdholland 		if (al->al_this == obj)
4135ecc953bSthorpej 			return (1);
4145ecc953bSthorpej 	return (0);
4155ecc953bSthorpej }
4165ecc953bSthorpej 
4175ecc953bSthorpej /*
4185ecc953bSthorpej  * Return true if the given attribute is embedded in the given
4195ecc953bSthorpej  * pointer list.
4205ecc953bSthorpej  */
4215ecc953bSthorpej int
4224caf067bSdholland has_attr(struct attrlist *al, const char *attr)
4235ecc953bSthorpej {
4245ecc953bSthorpej 	struct attr *a;
4255ecc953bSthorpej 
4265ecc953bSthorpej 	if ((a = getattr(attr)) == NULL)
4275ecc953bSthorpej 		return (0);
4285ecc953bSthorpej 
4294caf067bSdholland 	for (; al != NULL; al = al->al_next)
4304caf067bSdholland 		if (al->al_this == a)
4315ecc953bSthorpej 			return (1);
4325ecc953bSthorpej 	return (0);
4335ecc953bSthorpej }
4345ecc953bSthorpej 
4355ecc953bSthorpej /*
4365ecc953bSthorpej  * Add a device base to a list in an attribute (actually, to any list).
4375ecc953bSthorpej  * Note that this does not check for duplicates, and does reverse the
4385ecc953bSthorpej  * list order, but no one cares anyway.
4395ecc953bSthorpej  */
4405ecc953bSthorpej static struct nvlist *
4415ecc953bSthorpej addtoattr(struct nvlist *l, struct devbase *dev)
4425ecc953bSthorpej {
4435ecc953bSthorpej 	struct nvlist *n;
4445ecc953bSthorpej 
4455ecc953bSthorpej 	n = newnv(NULL, NULL, dev, 0, l);
4465ecc953bSthorpej 	return (n);
4475ecc953bSthorpej }
4485ecc953bSthorpej 
4495ecc953bSthorpej /*
4505ecc953bSthorpej  * Define a device.  This may (or may not) also define an interface
4515ecc953bSthorpej  * attribute and/or refer to existing attributes.
4525ecc953bSthorpej  */
4535ecc953bSthorpej void
45416a8771bSdholland defdev(struct devbase *dev, struct loclist *loclist, struct attrlist *attrs,
4555ecc953bSthorpej        int ispseudo)
4565ecc953bSthorpej {
45716a8771bSdholland 	struct loclist *ll;
4584caf067bSdholland 	struct attrlist *al;
459*bc707469Suebayasi 	struct attr *a;
4605ecc953bSthorpej 
4615ecc953bSthorpej 	if (dev == &errdev)
4625ecc953bSthorpej 		goto bad;
4635ecc953bSthorpej 	if (dev->d_isdef) {
464c7295a4cSchristos 		cfgerror("redefinition of `%s'", dev->d_name);
4655ecc953bSthorpej 		goto bad;
4665ecc953bSthorpej 	}
4675ecc953bSthorpej 
4685ecc953bSthorpej 	dev->d_isdef = 1;
4695ecc953bSthorpej 	if (has_errobj(attrs, &errattr))
4705ecc953bSthorpej 		goto bad;
4715ecc953bSthorpej 
4725ecc953bSthorpej 	/*
4735ecc953bSthorpej 	 * Handle implicit attribute definition from locator list.  Do
4745ecc953bSthorpej 	 * this before scanning the `at' list so that we can have, e.g.:
4755ecc953bSthorpej 	 *	device foo at other, foo { slot = -1 }
4765ecc953bSthorpej 	 * (where you can plug in a foo-bus extender to a foo-bus).
4775ecc953bSthorpej 	 */
4785ecc953bSthorpej 	if (loclist != NULL) {
47916a8771bSdholland 		ll = loclist;
4805ecc953bSthorpej 		loclist = NULL;	/* defattr disposes of them for us */
481bb4307a6Suebayasi 		if (defiattr(dev->d_name, ll, NULL, 0))
4825ecc953bSthorpej 			goto bad;
4834caf067bSdholland 		attrs = attrlist_cons(attrs, getattr(dev->d_name));
4844caf067bSdholland 		/* This used to be stored but was never used */
4854caf067bSdholland 		/* attrs->al_name = dev->d_name; */
486c454f920Scube 	}
487c454f920Scube 
488c130d400Scube 	/*
489c130d400Scube 	 * Pseudo-devices can have children.  Consider them as
490c130d400Scube 	 * attaching at root.
491c130d400Scube 	 */
492c454f920Scube 	if (ispseudo) {
4934caf067bSdholland 		for (al = attrs; al != NULL; al = al->al_next)
4944caf067bSdholland 			if (al->al_this->a_iattr)
495c454f920Scube 				break;
4964caf067bSdholland 		if (al != NULL) {
497b66156c7Sdrochner 			if (ispseudo < 2) {
498b66156c7Sdrochner 				if (version >= 20080610)
499b66156c7Sdrochner 					cfgerror("interface attribute on "
500b66156c7Sdrochner 					 "non-device pseudo `%s'", dev->d_name);
501b66156c7Sdrochner 				else {
502b66156c7Sdrochner 					ispseudo = 2;
503b66156c7Sdrochner 				}
504b66156c7Sdrochner 			}
505c130d400Scube 			ht_insert(devroottab, dev->d_name, dev);
5065ecc953bSthorpej 		}
507b66156c7Sdrochner 	}
5085ecc953bSthorpej 
5095ecc953bSthorpej 	/* Committed!  Set up fields. */
5105ecc953bSthorpej 	dev->d_ispseudo = ispseudo;
5115ecc953bSthorpej 	dev->d_attrs = attrs;
5125ecc953bSthorpej 	dev->d_classattr = NULL;		/* for now */
513da706167Suebayasi 	CFGDBG(3, "dev `%s' defined", dev->d_name);
5145ecc953bSthorpej 
5155ecc953bSthorpej 	/*
516a2dd9676Suebayasi 	 * Implicit attribute definition for device.
517a2dd9676Suebayasi 	 */
518*bc707469Suebayasi 	a = refattr(dev->d_name);
519a2dd9676Suebayasi 
520a2dd9676Suebayasi 	/*
5215ecc953bSthorpej 	 * For each interface attribute this device refers to, add this
5225ecc953bSthorpej 	 * device to its reference list.  This makes, e.g., finding all
5235ecc953bSthorpej 	 * "scsi"s easier.
5245ecc953bSthorpej 	 *
5255ecc953bSthorpej 	 * While looking through the attributes, set up the device
5265ecc953bSthorpej 	 * class if any are devclass attributes (and error out if the
5275ecc953bSthorpej 	 * device has two classes).
5285ecc953bSthorpej 	 */
5294caf067bSdholland 	for (al = attrs; al != NULL; al = al->al_next) {
530da706167Suebayasi 		/*
531da706167Suebayasi 		 * Implicit attribute definition for device dependencies.
532da706167Suebayasi 		 */
533*bc707469Suebayasi 		refattr(al->al_this->a_name);
534*bc707469Suebayasi 		CFGDBG(2, "device `%s' depends on attr `%s'", dev->d_name,
535*bc707469Suebayasi 		    al->al_this->a_name);
5365ecc953bSthorpej 	}
5375ecc953bSthorpej 	return;
5385ecc953bSthorpej  bad:
53916a8771bSdholland 	loclist_destroy(loclist);
5404caf067bSdholland 	attrlist_destroyall(attrs);
5415ecc953bSthorpej }
5425ecc953bSthorpej 
5435ecc953bSthorpej /*
5445ecc953bSthorpej  * Look up a devbase.  Also makes sure it is a reasonable name,
5455ecc953bSthorpej  * i.e., does not end in a digit or contain special characters.
5465ecc953bSthorpej  */
5475ecc953bSthorpej struct devbase *
5485ecc953bSthorpej getdevbase(const char *name)
5495ecc953bSthorpej {
550c7295a4cSchristos 	const u_char *p;
5515ecc953bSthorpej 	struct devbase *dev;
5525ecc953bSthorpej 
553c7295a4cSchristos 	p = (const u_char *)name;
5545ecc953bSthorpej 	if (!isalpha(*p))
5555ecc953bSthorpej 		goto badname;
5565ecc953bSthorpej 	while (*++p) {
5575ecc953bSthorpej 		if (!isalnum(*p) && *p != '_')
5585ecc953bSthorpej 			goto badname;
5595ecc953bSthorpej 	}
5605ecc953bSthorpej 	if (isdigit(*--p)) {
5615ecc953bSthorpej  badname:
562c7295a4cSchristos 		cfgerror("bad device base name `%s'", name);
5635ecc953bSthorpej 		return (&errdev);
5645ecc953bSthorpej 	}
5655ecc953bSthorpej 	dev = ht_lookup(devbasetab, name);
5665ecc953bSthorpej 	if (dev == NULL) {
5675ecc953bSthorpej 		dev = ecalloc(1, sizeof *dev);
5685ecc953bSthorpej 		dev->d_name = name;
5695ecc953bSthorpej 		dev->d_isdef = 0;
570d767912bSdrochner 		dev->d_major = NODEVMAJOR;
5715ecc953bSthorpej 		dev->d_attrs = NULL;
5725ecc953bSthorpej 		dev->d_ihead = NULL;
5735ecc953bSthorpej 		dev->d_ipp = &dev->d_ihead;
5745ecc953bSthorpej 		dev->d_ahead = NULL;
5755ecc953bSthorpej 		dev->d_app = &dev->d_ahead;
5765ecc953bSthorpej 		dev->d_umax = 0;
5775ecc953bSthorpej 		TAILQ_INSERT_TAIL(&allbases, dev, d_next);
5785ecc953bSthorpej 		if (ht_insert(devbasetab, name, dev))
5795ecc953bSthorpej 			panic("getdevbase(%s)", name);
580da706167Suebayasi 		CFGDBG(3, "devbase defined `%s'", dev->d_name);
5815ecc953bSthorpej 	}
5825ecc953bSthorpej 	return (dev);
5835ecc953bSthorpej }
5845ecc953bSthorpej 
5855ecc953bSthorpej /*
5865ecc953bSthorpej  * Define some of a device's allowable parent attachments.
5875ecc953bSthorpej  * There may be a list of (plain) attributes.
5885ecc953bSthorpej  */
5895ecc953bSthorpej void
5905ecc953bSthorpej defdevattach(struct deva *deva, struct devbase *dev, struct nvlist *atlist,
5914caf067bSdholland 	     struct attrlist *attrs)
5925ecc953bSthorpej {
5935ecc953bSthorpej 	struct nvlist *nv;
5944caf067bSdholland 	struct attrlist *al;
5955ecc953bSthorpej 	struct attr *a;
5965ecc953bSthorpej 	struct deva *da;
5975ecc953bSthorpej 
5985ecc953bSthorpej 	if (dev == &errdev)
5995ecc953bSthorpej 		goto bad;
6005ecc953bSthorpej 	if (deva == NULL)
6015ecc953bSthorpej 		deva = getdevattach(dev->d_name);
6025ecc953bSthorpej 	if (deva == &errdeva)
6035ecc953bSthorpej 		goto bad;
6045ecc953bSthorpej 	if (!dev->d_isdef) {
605c7295a4cSchristos 		cfgerror("attaching undefined device `%s'", dev->d_name);
6065ecc953bSthorpej 		goto bad;
6075ecc953bSthorpej 	}
6085ecc953bSthorpej 	if (deva->d_isdef) {
609c7295a4cSchristos 		cfgerror("redefinition of `%s'", deva->d_name);
6105ecc953bSthorpej 		goto bad;
6115ecc953bSthorpej 	}
6125ecc953bSthorpej 	if (dev->d_ispseudo) {
613c7295a4cSchristos 		cfgerror("pseudo-devices can't attach");
6145ecc953bSthorpej 		goto bad;
6155ecc953bSthorpej 	}
6165ecc953bSthorpej 
6175ecc953bSthorpej 	deva->d_isdef = 1;
6185ecc953bSthorpej 	if (has_errobj(attrs, &errattr))
6195ecc953bSthorpej 		goto bad;
6204caf067bSdholland 	for (al = attrs; al != NULL; al = al->al_next) {
6214caf067bSdholland 		a = al->al_this;
6225ecc953bSthorpej 		if (a == &errattr)
6235ecc953bSthorpej 			continue;		/* already complained */
6245ecc953bSthorpej 		if (a->a_iattr || a->a_devclass != NULL)
625c7295a4cSchristos 			cfgerror("`%s' is not a plain attribute", a->a_name);
6265ecc953bSthorpej 	}
6275ecc953bSthorpej 
6285ecc953bSthorpej 	/* Committed!  Set up fields. */
6295ecc953bSthorpej 	deva->d_attrs = attrs;
6305ecc953bSthorpej 	deva->d_atlist = atlist;
6315ecc953bSthorpej 	deva->d_devbase = dev;
6322f2f3382Suebayasi 	CFGDBG(3, "deva `%s' defined", deva->d_name);
6332f2f3382Suebayasi 
6342f2f3382Suebayasi 	/*
635a5a68b71Suebayasi 	 * Implicit attribute definition for device attachment.
6362f2f3382Suebayasi 	 */
6372f2f3382Suebayasi 	refattr(deva->d_name);
6385ecc953bSthorpej 
6395ecc953bSthorpej 	/*
6405ecc953bSthorpej 	 * Turn the `at' list into interface attributes (map each
6415ecc953bSthorpej 	 * nv_name to an attribute, or to NULL for root), and add
6425ecc953bSthorpej 	 * this device to those attributes, so that children can
6435ecc953bSthorpej 	 * be listed at this particular device if they are supported
6445ecc953bSthorpej 	 * by that attribute.
6455ecc953bSthorpej 	 */
6465ecc953bSthorpej 	for (nv = atlist; nv != NULL; nv = nv->nv_next) {
6475ecc953bSthorpej 		if (nv->nv_name == NULL)
6485ecc953bSthorpej 			nv->nv_ptr = a = NULL;	/* at root */
6495ecc953bSthorpej 		else
6505ecc953bSthorpej 			nv->nv_ptr = a = getattr(nv->nv_name);
6515ecc953bSthorpej 		if (a == &errattr)
6525ecc953bSthorpej 			continue;		/* already complained */
6535ecc953bSthorpej 
6545ecc953bSthorpej 		/*
6555ecc953bSthorpej 		 * Make sure that an attachment spec doesn't
6565ecc953bSthorpej 		 * already say how to attach to this attribute.
6575ecc953bSthorpej 		 */
6585ecc953bSthorpej 		for (da = dev->d_ahead; da != NULL; da = da->d_bsame)
6595ecc953bSthorpej 			if (onlist(da->d_atlist, a))
660c7295a4cSchristos 				cfgerror("attach at `%s' already done by `%s'",
6615ecc953bSthorpej 				     a ? a->a_name : "root", da->d_name);
6625ecc953bSthorpej 
663c130d400Scube 		if (a == NULL) {
664c130d400Scube 			ht_insert(devroottab, dev->d_name, dev);
6655ecc953bSthorpej 			continue;		/* at root; don't add */
666c130d400Scube 		}
6675ecc953bSthorpej 		if (!a->a_iattr)
668c7295a4cSchristos 			cfgerror("%s cannot be at plain attribute `%s'",
6695ecc953bSthorpej 			    dev->d_name, a->a_name);
6705ecc953bSthorpej 		else
6715ecc953bSthorpej 			a->a_devs = addtoattr(a->a_devs, dev);
6725ecc953bSthorpej 	}
6735ecc953bSthorpej 
6745ecc953bSthorpej 	/* attach to parent */
6755ecc953bSthorpej 	*dev->d_app = deva;
6765ecc953bSthorpej 	dev->d_app = &deva->d_bsame;
6775ecc953bSthorpej 	return;
6785ecc953bSthorpej  bad:
6795ecc953bSthorpej 	nvfreel(atlist);
6804caf067bSdholland 	attrlist_destroyall(attrs);
6815ecc953bSthorpej }
6825ecc953bSthorpej 
6835ecc953bSthorpej /*
6845ecc953bSthorpej  * Look up a device attachment.  Also makes sure it is a reasonable
6855ecc953bSthorpej  * name, i.e., does not contain digits or special characters.
6865ecc953bSthorpej  */
6875ecc953bSthorpej struct deva *
6885ecc953bSthorpej getdevattach(const char *name)
6895ecc953bSthorpej {
690c7295a4cSchristos 	const u_char *p;
6915ecc953bSthorpej 	struct deva *deva;
6925ecc953bSthorpej 
693c7295a4cSchristos 	p = (const u_char *)name;
6945ecc953bSthorpej 	if (!isalpha(*p))
6955ecc953bSthorpej 		goto badname;
6965ecc953bSthorpej 	while (*++p) {
6975ecc953bSthorpej 		if (!isalnum(*p) && *p != '_')
6985ecc953bSthorpej 			goto badname;
6995ecc953bSthorpej 	}
7005ecc953bSthorpej 	if (isdigit(*--p)) {
7015ecc953bSthorpej  badname:
702c7295a4cSchristos 		cfgerror("bad device attachment name `%s'", name);
7035ecc953bSthorpej 		return (&errdeva);
7045ecc953bSthorpej 	}
7055ecc953bSthorpej 	deva = ht_lookup(devatab, name);
7065ecc953bSthorpej 	if (deva == NULL) {
7075ecc953bSthorpej 		deva = ecalloc(1, sizeof *deva);
7085ecc953bSthorpej 		deva->d_name = name;
7095ecc953bSthorpej 		deva->d_bsame = NULL;
7105ecc953bSthorpej 		deva->d_isdef = 0;
7115ecc953bSthorpej 		deva->d_devbase = NULL;
7125ecc953bSthorpej 		deva->d_atlist = NULL;
7135ecc953bSthorpej 		deva->d_attrs = NULL;
7145ecc953bSthorpej 		deva->d_ihead = NULL;
7155ecc953bSthorpej 		deva->d_ipp = &deva->d_ihead;
7165ecc953bSthorpej 		TAILQ_INSERT_TAIL(&alldevas, deva, d_next);
7175ecc953bSthorpej 		if (ht_insert(devatab, name, deva))
7185ecc953bSthorpej 			panic("getdeva(%s)", name);
7195ecc953bSthorpej 	}
7205ecc953bSthorpej 	return (deva);
7215ecc953bSthorpej }
7225ecc953bSthorpej 
7235ecc953bSthorpej /*
7245ecc953bSthorpej  * Look up an attribute.
7255ecc953bSthorpej  */
7265ecc953bSthorpej struct attr *
7275ecc953bSthorpej getattr(const char *name)
7285ecc953bSthorpej {
7295ecc953bSthorpej 	struct attr *a;
7305ecc953bSthorpej 
7315ecc953bSthorpej 	if ((a = ht_lookup(attrtab, name)) == NULL) {
732c7295a4cSchristos 		cfgerror("undefined attribute `%s'", name);
7335ecc953bSthorpej 		a = &errattr;
7345ecc953bSthorpej 	}
7355ecc953bSthorpej 	return (a);
7365ecc953bSthorpej }
7375ecc953bSthorpej 
7385ecc953bSthorpej /*
7392f2f3382Suebayasi  * Implicit attribute definition.
7402f2f3382Suebayasi  */
74151deed3eSuebayasi struct attr *
7422f2f3382Suebayasi refattr(const char *name)
7432f2f3382Suebayasi {
74451deed3eSuebayasi 	struct attr *a;
7452f2f3382Suebayasi 
74651deed3eSuebayasi 	if ((a = ht_lookup(attrtab, name)) == NULL)
74751deed3eSuebayasi 		a = mkattr(name);
74851deed3eSuebayasi 	return a;
7492f2f3382Suebayasi }
7502f2f3382Suebayasi 
751bb52c144Suebayasi int
752bb52c144Suebayasi getrefattr(const char *name, struct attr **ra)
753bb52c144Suebayasi {
754bb52c144Suebayasi 	struct attr *a;
755bb52c144Suebayasi 
756bb52c144Suebayasi 	a = ht_lookup(attrtab, name);
757bb52c144Suebayasi 	if (a == NULL) {
758bb52c144Suebayasi 		*ra = NULL;
759bb52c144Suebayasi 		return (0);
760bb52c144Suebayasi 	}
761bb52c144Suebayasi 	/*
762bb52c144Suebayasi 	 * Check if the existing attr is only referenced, not really defined.
763bb52c144Suebayasi 	 */
764bb52c144Suebayasi 	if (a->a_deps == NULL &&
765bb52c144Suebayasi 	    a->a_iattr == 0 &&
766bb52c144Suebayasi 	    a->a_devclass == 0) {
767bb52c144Suebayasi 		*ra = a;
768bb52c144Suebayasi 		return (0);
769bb52c144Suebayasi 	}
770bb52c144Suebayasi 	return (1);
771bb52c144Suebayasi }
772bb52c144Suebayasi 
7732f2f3382Suebayasi /*
7745ecc953bSthorpej  * Recursively expand an attribute and its dependencies, checking for
7755ecc953bSthorpej  * cycles, and invoking a callback for each attribute found.
7765ecc953bSthorpej  */
7775ecc953bSthorpej void
7785ecc953bSthorpej expandattr(struct attr *a, void (*callback)(struct attr *))
7795ecc953bSthorpej {
7804caf067bSdholland 	struct attrlist *al;
7815ecc953bSthorpej 	struct attr *dep;
7825ecc953bSthorpej 
7835ecc953bSthorpej 	if (a->a_expanding) {
784c7295a4cSchristos 		cfgerror("circular dependency on attribute `%s'", a->a_name);
7855ecc953bSthorpej 		return;
7865ecc953bSthorpej 	}
7875ecc953bSthorpej 
7885ecc953bSthorpej 	a->a_expanding = 1;
7895ecc953bSthorpej 
7905ecc953bSthorpej 	/* First expand all of this attribute's dependencies. */
7914caf067bSdholland 	for (al = a->a_deps; al != NULL; al = al->al_next) {
7924caf067bSdholland 		dep = al->al_this;
7935ecc953bSthorpej 		expandattr(dep, callback);
7945ecc953bSthorpej 	}
7955ecc953bSthorpej 
7965ecc953bSthorpej 	/* ...and now invoke the callback for ourself. */
7975ecc953bSthorpej 	if (callback != NULL)
7985ecc953bSthorpej 		(*callback)(a);
7995ecc953bSthorpej 
8005ecc953bSthorpej 	a->a_expanding = 0;
8015ecc953bSthorpej }
8025ecc953bSthorpej 
8035ecc953bSthorpej /*
8045ecc953bSthorpej  * Set the major device number for a device, so that it can be used
8055ecc953bSthorpej  * as a root/dumps "on" device in a configuration.
8065ecc953bSthorpej  */
8075ecc953bSthorpej void
808d767912bSdrochner setmajor(struct devbase *d, devmajor_t n)
8095ecc953bSthorpej {
8105ecc953bSthorpej 
811d767912bSdrochner 	if (d != &errdev && d->d_major != NODEVMAJOR)
812d767912bSdrochner 		cfgerror("device `%s' is already major %d",
813d767912bSdrochner 		    d->d_name, d->d_major);
8145ecc953bSthorpej 	else
8155ecc953bSthorpej 		d->d_major = n;
8165ecc953bSthorpej }
8175ecc953bSthorpej 
8185ecc953bSthorpej const char *
819d767912bSdrochner major2name(devmajor_t maj)
8205ecc953bSthorpej {
8215ecc953bSthorpej 	struct devbase *dev;
8225ecc953bSthorpej 	struct devm *dm;
8235ecc953bSthorpej 
8245ecc953bSthorpej 	if (!do_devsw) {
8255ecc953bSthorpej 		TAILQ_FOREACH(dev, &allbases, d_next) {
8265ecc953bSthorpej 			if (dev->d_major == maj)
8275ecc953bSthorpej 				return (dev->d_name);
8285ecc953bSthorpej 		}
8295ecc953bSthorpej 	} else {
8305ecc953bSthorpej 		TAILQ_FOREACH(dm, &alldevms, dm_next) {
8315ecc953bSthorpej 			if (dm->dm_bmajor == maj)
8325ecc953bSthorpej 				return (dm->dm_name);
8335ecc953bSthorpej 		}
8345ecc953bSthorpej 	}
8355ecc953bSthorpej 	return (NULL);
8365ecc953bSthorpej }
8375ecc953bSthorpej 
838d767912bSdrochner devmajor_t
8395ecc953bSthorpej dev2major(struct devbase *dev)
8405ecc953bSthorpej {
8415ecc953bSthorpej 	struct devm *dm;
8425ecc953bSthorpej 
8435ecc953bSthorpej 	if (!do_devsw)
8445ecc953bSthorpej 		return (dev->d_major);
8455ecc953bSthorpej 
8465ecc953bSthorpej 	TAILQ_FOREACH(dm, &alldevms, dm_next) {
8475ecc953bSthorpej 		if (strcmp(dm->dm_name, dev->d_name) == 0)
8485ecc953bSthorpej 			return (dm->dm_bmajor);
8495ecc953bSthorpej 	}
850d767912bSdrochner 	return (NODEVMAJOR);
8515ecc953bSthorpej }
8525ecc953bSthorpej 
8535ecc953bSthorpej /*
8545ecc953bSthorpej  * Make a string description of the device at maj/min.
8555ecc953bSthorpej  */
8565ecc953bSthorpej static const char *
857d767912bSdrochner makedevstr(devmajor_t maj, devminor_t min)
8585ecc953bSthorpej {
859c7295a4cSchristos 	const char *devicename;
8605ecc953bSthorpej 	char buf[32];
8615ecc953bSthorpej 
862c7295a4cSchristos 	devicename = major2name(maj);
863c7295a4cSchristos 	if (devicename == NULL)
864d767912bSdrochner 		(void)snprintf(buf, sizeof(buf), "<%d/%d>", maj, min);
8655ecc953bSthorpej 	else
866d767912bSdrochner 		(void)snprintf(buf, sizeof(buf), "%s%d%c", devicename,
867d767912bSdrochner 		    min / maxpartitions, (min % maxpartitions) + 'a');
8685ecc953bSthorpej 
8695ecc953bSthorpej 	return (intern(buf));
8705ecc953bSthorpej }
8715ecc953bSthorpej 
8725ecc953bSthorpej /*
8735ecc953bSthorpej  * Map things like "ra0b" => makedev(major("ra"), 0*maxpartitions + 'b'-'a').
8745ecc953bSthorpej  * Handle the case where the device number is given but there is no
8755ecc953bSthorpej  * corresponding name, and map NULL to the default.
8765ecc953bSthorpej  */
8775ecc953bSthorpej static int
8785ecc953bSthorpej resolve(struct nvlist **nvp, const char *name, const char *what,
8795ecc953bSthorpej 	struct nvlist *dflt, int part)
8805ecc953bSthorpej {
8815ecc953bSthorpej 	struct nvlist *nv;
8825ecc953bSthorpej 	struct devbase *dev;
8835ecc953bSthorpej 	const char *cp;
884d767912bSdrochner 	devmajor_t maj;
885d767912bSdrochner 	devminor_t min;
8860001b928Schristos 	int i, l;
8875ecc953bSthorpej 	int unit;
8885ecc953bSthorpej 	char buf[NAMESIZE];
8895ecc953bSthorpej 
8905cc303e1Slukem 	if ((part -= 'a') >= maxpartitions || part < 0)
8915ecc953bSthorpej 		panic("resolve");
8925ecc953bSthorpej 	if ((nv = *nvp) == NULL) {
8935ecc953bSthorpej 		dev_t	d = NODEV;
8945ecc953bSthorpej 		/*
8955ecc953bSthorpej 		 * Apply default.  Easiest to do this by number.
8965ecc953bSthorpej 		 * Make sure to retain NODEVness, if this is dflt's disposition.
8975ecc953bSthorpej 		 */
8985cc303e1Slukem 		if ((dev_t)dflt->nv_num != NODEV) {
8990001b928Schristos 			maj = major(dflt->nv_num);
9000001b928Schristos 			min = ((minor(dflt->nv_num) / maxpartitions) *
9015ecc953bSthorpej 			    maxpartitions) + part;
9025ecc953bSthorpej 			d = makedev(maj, min);
9035ecc953bSthorpej 			cp = makedevstr(maj, min);
9045ecc953bSthorpej 		} else
9055ecc953bSthorpej 			cp = NULL;
9065ecc953bSthorpej 		*nvp = nv = newnv(NULL, cp, NULL, d, NULL);
9075ecc953bSthorpej 	}
9085cc303e1Slukem 	if ((dev_t)nv->nv_num != NODEV) {
9095ecc953bSthorpej 		/*
9105ecc953bSthorpej 		 * By the numbers.  Find the appropriate major number
9115ecc953bSthorpej 		 * to make a name.
9125ecc953bSthorpej 		 */
9130001b928Schristos 		maj = major(nv->nv_num);
9140001b928Schristos 		min = minor(nv->nv_num);
9155ecc953bSthorpej 		nv->nv_str = makedevstr(maj, min);
9165ecc953bSthorpej 		return (0);
9175ecc953bSthorpej 	}
9185ecc953bSthorpej 
9195ecc953bSthorpej 	if (nv->nv_str == NULL || nv->nv_str == s_qmark)
9205ecc953bSthorpej 		/*
9215ecc953bSthorpej 		 * Wildcarded or unspecified; leave it as NODEV.
9225ecc953bSthorpej 		 */
9235ecc953bSthorpej 		return (0);
9245ecc953bSthorpej 
9255ecc953bSthorpej 	/*
9265ecc953bSthorpej 	 * The normal case: things like "ra2b".  Check for partition
9275ecc953bSthorpej 	 * suffix, remove it if there, and split into name ("ra") and
9285ecc953bSthorpej 	 * unit (2).
9295ecc953bSthorpej 	 */
9305ecc953bSthorpej 	l = i = strlen(nv->nv_str);
9315ecc953bSthorpej 	cp = &nv->nv_str[l];
9325ecc953bSthorpej 	if (l > 1 && *--cp >= 'a' && *cp < 'a' + maxpartitions &&
9335ecc953bSthorpej 	    isdigit((unsigned char)cp[-1])) {
9345ecc953bSthorpej 		l--;
9355ecc953bSthorpej 		part = *cp - 'a';
9365ecc953bSthorpej 	}
9375ecc953bSthorpej 	cp = nv->nv_str;
9385ecc953bSthorpej 	if (split(cp, l, buf, sizeof buf, &unit)) {
939c7295a4cSchristos 		cfgerror("%s: invalid %s device name `%s'", name, what, cp);
9405ecc953bSthorpej 		return (1);
9415ecc953bSthorpej 	}
9425ecc953bSthorpej 	dev = ht_lookup(devbasetab, intern(buf));
9435ecc953bSthorpej 	if (dev == NULL) {
944c7295a4cSchristos 		cfgerror("%s: device `%s' does not exist", name, buf);
9455ecc953bSthorpej 		return (1);
9465ecc953bSthorpej 	}
9475ecc953bSthorpej 
9485ecc953bSthorpej 	/*
9495ecc953bSthorpej 	 * Check for the magic network interface attribute, and
9505ecc953bSthorpej 	 * don't bother making a device number.
9515ecc953bSthorpej 	 */
9525ecc953bSthorpej 	if (has_attr(dev->d_attrs, s_ifnet)) {
9530001b928Schristos 		nv->nv_num = NODEV;
9545ecc953bSthorpej 		nv->nv_ifunit = unit;	/* XXX XXX XXX */
9555ecc953bSthorpej 	} else {
9565ecc953bSthorpej 		maj = dev2major(dev);
9575cc303e1Slukem 		if (maj == NODEVMAJOR) {
958c7295a4cSchristos 			cfgerror("%s: can't make %s device from `%s'",
9595ecc953bSthorpej 			    name, what, nv->nv_str);
9605ecc953bSthorpej 			return (1);
9615ecc953bSthorpej 		}
9620001b928Schristos 		nv->nv_num = makedev(maj, unit * maxpartitions + part);
9635ecc953bSthorpej 	}
9645ecc953bSthorpej 
9655ecc953bSthorpej 	nv->nv_name = dev->d_name;
9665ecc953bSthorpej 	return (0);
9675ecc953bSthorpej }
9685ecc953bSthorpej 
9695ecc953bSthorpej /*
9705ecc953bSthorpej  * Add a completed configuration to the list.
9715ecc953bSthorpej  */
9725ecc953bSthorpej void
9735ecc953bSthorpej addconf(struct config *cf0)
9745ecc953bSthorpej {
9755ecc953bSthorpej 	struct config *cf;
9765ecc953bSthorpej 	const char *name;
9775ecc953bSthorpej 
9785ecc953bSthorpej 	name = cf0->cf_name;
9795ecc953bSthorpej 	cf = ecalloc(1, sizeof *cf);
9805ecc953bSthorpej 	if (ht_insert(cfhashtab, name, cf)) {
981c7295a4cSchristos 		cfgerror("configuration `%s' already defined", name);
9825ecc953bSthorpej 		free(cf);
9835ecc953bSthorpej 		goto bad;
9845ecc953bSthorpej 	}
9855ecc953bSthorpej 	*cf = *cf0;
9865ecc953bSthorpej 
9875ecc953bSthorpej 	/*
9885ecc953bSthorpej 	 * Resolve the root device.
9895ecc953bSthorpej 	 */
990cd429362Serh 	if (cf->cf_root == NULL) {
991c7295a4cSchristos 		cfgerror("%s: no root device specified", name);
9925ecc953bSthorpej 		goto bad;
9935ecc953bSthorpej 	}
994cd429362Serh 	if (cf->cf_root && cf->cf_root->nv_str != s_qmark) {
995cd429362Serh 		struct nvlist *nv;
996cd429362Serh 		nv = cf->cf_root;
9975ecc953bSthorpej 		if (resolve(&cf->cf_root, name, "root", nv, 'a'))
9985ecc953bSthorpej 			goto bad;
9995ecc953bSthorpej 	}
10005ecc953bSthorpej 
10015ecc953bSthorpej 	/*
10025ecc953bSthorpej 	 * Resolve the dump device.
10035ecc953bSthorpej 	 */
10045ecc953bSthorpej 	if (cf->cf_dump == NULL || cf->cf_dump->nv_str == s_qmark) {
10055ecc953bSthorpej 		/*
10065ecc953bSthorpej 		 * Wildcarded dump device is equivalent to unspecified.
10075ecc953bSthorpej 		 */
10085ecc953bSthorpej 		cf->cf_dump = NULL;
10095ecc953bSthorpej 	} else if (cf->cf_dump->nv_str == s_none) {
10105ecc953bSthorpej 		/*
10115ecc953bSthorpej 		 * Operator has requested that no dump device should be
10125ecc953bSthorpej 		 * configured; do nothing.
10135ecc953bSthorpej 		 */
10145ecc953bSthorpej 	} else {
10155ecc953bSthorpej 		if (resolve(&cf->cf_dump, name, "dumps", cf->cf_dump, 'b'))
10165ecc953bSthorpej 			goto bad;
10175ecc953bSthorpej 	}
10185ecc953bSthorpej 
10195ecc953bSthorpej 	/* Wildcarded fstype is `unspecified'. */
10205ecc953bSthorpej 	if (cf->cf_fstype == s_qmark)
10215ecc953bSthorpej 		cf->cf_fstype = NULL;
10225ecc953bSthorpej 
10235ecc953bSthorpej 	TAILQ_INSERT_TAIL(&allcf, cf, cf_next);
10245ecc953bSthorpej 	return;
10255ecc953bSthorpej  bad:
10265ecc953bSthorpej 	nvfreel(cf0->cf_root);
10275ecc953bSthorpej 	nvfreel(cf0->cf_dump);
10285ecc953bSthorpej }
10295ecc953bSthorpej 
10305ecc953bSthorpej void
10315ecc953bSthorpej setconf(struct nvlist **npp, const char *what, struct nvlist *v)
10325ecc953bSthorpej {
10335ecc953bSthorpej 
10345ecc953bSthorpej 	if (*npp != NULL) {
1035c7295a4cSchristos 		cfgerror("duplicate %s specification", what);
10365ecc953bSthorpej 		nvfreel(v);
10375ecc953bSthorpej 	} else
10385ecc953bSthorpej 		*npp = v;
10395ecc953bSthorpej }
10405ecc953bSthorpej 
10415ecc953bSthorpej void
104242b52b8aScube delconf(const char *name)
104342b52b8aScube {
104442b52b8aScube 	struct config *cf;
104542b52b8aScube 
104642b52b8aScube 	if (ht_lookup(cfhashtab, name) == NULL) {
1047c7295a4cSchristos 		cfgerror("configuration `%s' undefined", name);
104842b52b8aScube 		return;
104942b52b8aScube 	}
105042b52b8aScube 	(void)ht_remove(cfhashtab, name);
105142b52b8aScube 
105242b52b8aScube 	TAILQ_FOREACH(cf, &allcf, cf_next)
105342b52b8aScube 		if (!strcmp(cf->cf_name, name))
105442b52b8aScube 			break;
105542b52b8aScube 	if (cf == NULL)
105642b52b8aScube 		panic("lost configuration `%s'", name);
105742b52b8aScube 
105842b52b8aScube 	TAILQ_REMOVE(&allcf, cf, cf_next);
105942b52b8aScube }
106042b52b8aScube 
106142b52b8aScube void
10625ecc953bSthorpej setfstype(const char **fstp, const char *v)
10635ecc953bSthorpej {
10645ecc953bSthorpej 
10655ecc953bSthorpej 	if (*fstp != NULL) {
1066c7295a4cSchristos 		cfgerror("multiple fstype specifications");
10675ecc953bSthorpej 		return;
10685ecc953bSthorpej 	}
10695ecc953bSthorpej 
10705ecc953bSthorpej 	if (v != s_qmark && OPT_FSOPT(v)) {
1071c7295a4cSchristos 		cfgerror("\"%s\" is not a configured file system", v);
10725ecc953bSthorpej 		return;
10735ecc953bSthorpej 	}
10745ecc953bSthorpej 
10755ecc953bSthorpej 	*fstp = v;
10765ecc953bSthorpej }
10775ecc953bSthorpej 
10785ecc953bSthorpej static struct devi *
10795ecc953bSthorpej newdevi(const char *name, int unit, struct devbase *d)
10805ecc953bSthorpej {
10815ecc953bSthorpej 	struct devi *i;
10825ecc953bSthorpej 
10835ecc953bSthorpej 	i = ecalloc(1, sizeof *i);
10845ecc953bSthorpej 	i->i_name = name;
10855ecc953bSthorpej 	i->i_unit = unit;
10865ecc953bSthorpej 	i->i_base = d;
10875ecc953bSthorpej 	i->i_bsame = NULL;
10885ecc953bSthorpej 	i->i_asame = NULL;
10895ecc953bSthorpej 	i->i_alias = NULL;
10905ecc953bSthorpej 	i->i_at = NULL;
10915ecc953bSthorpej 	i->i_pspec = NULL;
10925ecc953bSthorpej 	i->i_atdeva = NULL;
10935ecc953bSthorpej 	i->i_locs = NULL;
10945ecc953bSthorpej 	i->i_cfflags = 0;
10955ecc953bSthorpej 	i->i_lineno = currentline();
10960dbd1c0eScube 	i->i_srcfile = yyfile;
10977aa6070dScube 	i->i_active = DEVI_ORPHAN; /* Proper analysis comes later */
1098a31ff6b4Scube 	i->i_level = devilevel;
109990ac64deSpooka 	i->i_pseudoroot = 0;
11005ecc953bSthorpej 	if (unit >= d->d_umax)
11015ecc953bSthorpej 		d->d_umax = unit + 1;
11025ecc953bSthorpej 	return (i);
11035ecc953bSthorpej }
11045ecc953bSthorpej 
11055ecc953bSthorpej /*
11065ecc953bSthorpej  * Add the named device as attaching to the named attribute (or perhaps
11075ecc953bSthorpej  * another device instead) plus unit number.
11085ecc953bSthorpej  */
11095ecc953bSthorpej void
111016a8771bSdholland adddev(const char *name, const char *at, struct loclist *loclist, int flags)
11115ecc953bSthorpej {
11125ecc953bSthorpej 	struct devi *i;		/* the new instance */
11135ecc953bSthorpej 	struct pspec *p;	/* and its pspec */
11145ecc953bSthorpej 	struct attr *attr;	/* attribute that allows attach */
11155ecc953bSthorpej 	struct devbase *ib;	/* i->i_base */
11165ecc953bSthorpej 	struct devbase *ab;	/* not NULL => at another dev */
11174caf067bSdholland 	struct attrlist *al;
11185ecc953bSthorpej 	struct deva *iba;	/* devbase attachment used */
11195ecc953bSthorpej 	const char *cp;
11205ecc953bSthorpej 	int atunit;
11215ecc953bSthorpej 	char atbuf[NAMESIZE];
11225ecc953bSthorpej 	int hit;
11235ecc953bSthorpej 
11245ecc953bSthorpej 	ab = NULL;
11255ecc953bSthorpej 	iba = NULL;
11265ecc953bSthorpej 	if (at == NULL) {
11275ecc953bSthorpej 		/* "at root" */
11285ecc953bSthorpej 		p = NULL;
11295ecc953bSthorpej 		if ((i = getdevi(name)) == NULL)
11305ecc953bSthorpej 			goto bad;
11315ecc953bSthorpej 		/*
11325ecc953bSthorpej 		 * Must warn about i_unit > 0 later, after taking care of
11335ecc953bSthorpej 		 * the STAR cases (we could do non-star's here but why
11345ecc953bSthorpej 		 * bother?).  Make sure this device can be at root.
11355ecc953bSthorpej 		 */
11365ecc953bSthorpej 		ib = i->i_base;
11375ecc953bSthorpej 		hit = 0;
11385ecc953bSthorpej 		for (iba = ib->d_ahead; iba != NULL; iba = iba->d_bsame)
11395ecc953bSthorpej 			if (onlist(iba->d_atlist, NULL)) {
11405ecc953bSthorpej 				hit = 1;
11415ecc953bSthorpej 				break;
11425ecc953bSthorpej 			}
11435ecc953bSthorpej 		if (!hit) {
1144c7295a4cSchristos 			cfgerror("`%s' cannot attach to the root", ib->d_name);
11455ec393e9Scube 			i->i_active = DEVI_BROKEN;
11465ecc953bSthorpej 			goto bad;
11475ecc953bSthorpej 		}
11485ecc953bSthorpej 		attr = &errattr;	/* a convenient "empty" attr */
11495ecc953bSthorpej 	} else {
11505ecc953bSthorpej 		if (split(at, strlen(at), atbuf, sizeof atbuf, &atunit)) {
1151c7295a4cSchristos 			cfgerror("invalid attachment name `%s'", at);
11525ecc953bSthorpej 			/* (void)getdevi(name); -- ??? */
11535ecc953bSthorpej 			goto bad;
11545ecc953bSthorpej 		}
11555ecc953bSthorpej 		if ((i = getdevi(name)) == NULL)
11565ecc953bSthorpej 			goto bad;
11575ecc953bSthorpej 		ib = i->i_base;
11585ecc953bSthorpej 
11595ecc953bSthorpej 		/*
11605ecc953bSthorpej 		 * Devices can attach to two types of things: Attributes,
11615ecc953bSthorpej 		 * and other devices (which have the appropriate attributes
11625ecc953bSthorpej 		 * to allow attachment).
11635ecc953bSthorpej 		 *
11645ecc953bSthorpej 		 * (1) If we're attached to an attribute, then we don't need
11655ecc953bSthorpej 		 *     look at the parent base device to see what attributes
11665ecc953bSthorpej 		 *     it has, and make sure that we can attach to them.
11675ecc953bSthorpej 		 *
11685ecc953bSthorpej 		 * (2) If we're attached to a real device (i.e. named in
11695ecc953bSthorpej 		 *     the config file), we want to remember that so that
11705ecc953bSthorpej 		 *     at cross-check time, if the device we're attached to
11715ecc953bSthorpej 		 *     is missing but other devices which also provide the
11725ecc953bSthorpej 		 *     attribute are present, we don't get a false "OK."
11735ecc953bSthorpej 		 *
11745ecc953bSthorpej 		 * (3) If the thing we're attached to is an attribute
11755ecc953bSthorpej 		 *     but is actually named in the config file, we still
11765ecc953bSthorpej 		 *     have to remember its devbase.
11775ecc953bSthorpej 		 */
11785ecc953bSthorpej 		cp = intern(atbuf);
11795ecc953bSthorpej 
11805ecc953bSthorpej 		/* Figure out parent's devbase, to satisfy case (3). */
11815ecc953bSthorpej 		ab = ht_lookup(devbasetab, cp);
11825ecc953bSthorpej 
11835ecc953bSthorpej 		/* Find out if it's an attribute. */
11845ecc953bSthorpej 		attr = ht_lookup(attrtab, cp);
11855ecc953bSthorpej 
11865ecc953bSthorpej 		/* Make sure we're _really_ attached to the attr.  Case (1). */
11875ecc953bSthorpej 		if (attr != NULL && onlist(attr->a_devs, ib))
11885ecc953bSthorpej 			goto findattachment;
11895ecc953bSthorpej 
11905ecc953bSthorpej 		/*
11915ecc953bSthorpej 		 * Else a real device, and not just an attribute.  Case (2).
11925ecc953bSthorpej 		 *
11935ecc953bSthorpej 		 * Have to work a bit harder to see whether we have
11945ecc953bSthorpej 		 * something like "tg0 at esp0" (where esp is merely
11955ecc953bSthorpej 		 * not an attribute) or "tg0 at nonesuch0" (where
11965ecc953bSthorpej 		 * nonesuch is not even a device).
11975ecc953bSthorpej 		 */
11985ecc953bSthorpej 		if (ab == NULL) {
1199c7295a4cSchristos 			cfgerror("%s at %s: `%s' unknown",
12005ecc953bSthorpej 			    name, at, atbuf);
12015ec393e9Scube 			i->i_active = DEVI_BROKEN;
12025ecc953bSthorpej 			goto bad;
12035ecc953bSthorpej 		}
12045ecc953bSthorpej 
12055ecc953bSthorpej 		/*
12065ecc953bSthorpej 		 * See if the named parent carries an attribute
12075ecc953bSthorpej 		 * that allows it to supervise device ib.
12085ecc953bSthorpej 		 */
12094caf067bSdholland 		for (al = ab->d_attrs; al != NULL; al = al->al_next) {
12104caf067bSdholland 			attr = al->al_this;
12115ecc953bSthorpej 			if (onlist(attr->a_devs, ib))
12125ecc953bSthorpej 				goto findattachment;
12135ecc953bSthorpej 		}
1214c7295a4cSchristos 		cfgerror("`%s' cannot attach to `%s'", ib->d_name, atbuf);
12155ec393e9Scube 		i->i_active = DEVI_BROKEN;
12165ecc953bSthorpej 		goto bad;
12175ecc953bSthorpej 
12185ecc953bSthorpej  findattachment:
12195ecc953bSthorpej 		/*
12205ecc953bSthorpej 		 * Find the parent spec.  If a matching one has not yet been
12215ecc953bSthorpej 		 * created, create one.
12225ecc953bSthorpej 		 */
12235ecc953bSthorpej 		p = getpspec(attr, ab, atunit);
12245ecc953bSthorpej 		p->p_devs = newnv(NULL, NULL, i, 0, p->p_devs);
12255ecc953bSthorpej 
12265ecc953bSthorpej 		/* find out which attachment it uses */
12275ecc953bSthorpej 		hit = 0;
12285ecc953bSthorpej 		for (iba = ib->d_ahead; iba != NULL; iba = iba->d_bsame)
12295ecc953bSthorpej 			if (onlist(iba->d_atlist, attr)) {
12305ecc953bSthorpej 				hit = 1;
12315ecc953bSthorpej 				break;
12325ecc953bSthorpej 			}
12335ecc953bSthorpej 		if (!hit)
12345ecc953bSthorpej 			panic("adddev: can't figure out attachment");
12355ecc953bSthorpej 	}
12365ec393e9Scube 	if ((i->i_locs = fixloc(name, attr, loclist)) == NULL) {
12375ec393e9Scube 		i->i_active = DEVI_BROKEN;
12385ecc953bSthorpej 		goto bad;
12395ec393e9Scube 	}
12405ecc953bSthorpej 	i->i_at = at;
12415ecc953bSthorpej 	i->i_pspec = p;
12425ecc953bSthorpej 	i->i_atdeva = iba;
12435ecc953bSthorpej 	i->i_cfflags = flags;
1244*bc707469Suebayasi 	CFGDBG(3, "devi `%s' added", i->i_name);
12455ecc953bSthorpej 
12465ecc953bSthorpej 	*iba->d_ipp = i;
12475ecc953bSthorpej 	iba->d_ipp = &i->i_asame;
12485ecc953bSthorpej 
12495ecc953bSthorpej 	/* all done, fall into ... */
12505ecc953bSthorpej  bad:
125116a8771bSdholland 	loclist_destroy(loclist);
12525ecc953bSthorpej 	return;
12535ecc953bSthorpej }
12545ecc953bSthorpej 
12555ecc953bSthorpej void
12567b7c582aScube deldevi(const char *name, const char *at)
12575ecc953bSthorpej {
12587b7c582aScube 	struct devi *firsti, *i;
12595ecc953bSthorpej 	struct devbase *d;
12605ecc953bSthorpej 	int unit;
12615ecc953bSthorpej 	char base[NAMESIZE];
12625ecc953bSthorpej 
12635ecc953bSthorpej 	if (split(name, strlen(name), base, sizeof base, &unit)) {
1264c7295a4cSchristos 		cfgerror("invalid device name `%s'", name);
12655ecc953bSthorpej 		return;
12665ecc953bSthorpej 	}
12675ecc953bSthorpej 	d = ht_lookup(devbasetab, intern(base));
12685ecc953bSthorpej 	if (d == NULL) {
1269c7295a4cSchristos 		cfgerror("%s: unknown device `%s'", name, base);
12705ecc953bSthorpej 		return;
12715ecc953bSthorpej 	}
12725ecc953bSthorpej 	if (d->d_ispseudo) {
1273c7295a4cSchristos 		cfgerror("%s: %s is a pseudo-device", name, base);
12745ecc953bSthorpej 		return;
12755ecc953bSthorpej 	}
12765ecc953bSthorpej 	if ((firsti = ht_lookup(devitab, name)) == NULL) {
1277c7295a4cSchristos 		cfgerror("`%s' not defined", name);
12785ecc953bSthorpej 		return;
12795ecc953bSthorpej 	}
12807b7c582aScube 	if (at == NULL && firsti->i_at == NULL) {
1281e499d8b5Scube 		/* 'at root' */
12827b7c582aScube 		remove_devi(firsti);
12837b7c582aScube 		return;
12847b7c582aScube 	} else if (at != NULL)
12857b7c582aScube 		for (i = firsti; i != NULL; i = i->i_alias)
1286bfc250f2Scube 			if (i->i_active != DEVI_BROKEN &&
1287bfc250f2Scube 			    strcmp(at, i->i_at) == 0) {
12887b7c582aScube 				remove_devi(i);
12895ecc953bSthorpej 				return;
12905ecc953bSthorpej 			}
1291c7295a4cSchristos 	cfgerror("`%s' at `%s' not found", name, at ? at : "root");
1292e499d8b5Scube }
12935ecc953bSthorpej 
12947b7c582aScube static void
12957b7c582aScube remove_devi(struct devi *i)
12967b7c582aScube {
12977b7c582aScube 	struct devbase *d = i->i_base;
12987b7c582aScube 	struct devi *f, *j, **ppi;
12997b7c582aScube 	struct deva *iba;
13007b7c582aScube 
13017b7c582aScube 	f = ht_lookup(devitab, i->i_name);
13026a6299ebScube 	if (f == NULL)
13036a6299ebScube 		panic("remove_devi(): instance %s disappeared from devitab",
13046a6299ebScube 		    i->i_name);
13057b7c582aScube 
1306bfc250f2Scube 	if (i->i_active == DEVI_BROKEN) {
1307bfc250f2Scube 		cfgerror("not removing broken instance `%s'", i->i_name);
1308bfc250f2Scube 		return;
1309bfc250f2Scube 	}
1310bfc250f2Scube 
1311e499d8b5Scube 	/*
1312e499d8b5Scube 	 * We have the device instance, i.
1313e499d8b5Scube 	 * We have to:
1314e499d8b5Scube 	 *   - delete the alias
1315e499d8b5Scube 	 *
1316e499d8b5Scube 	 *      If the devi was an alias of an already listed devi, all is
1317e499d8b5Scube 	 *      good we don't have to do more.
1318e499d8b5Scube 	 *      If it was the first alias, we have to replace i's entry in
1319e499d8b5Scube 	 *      d's list by its first alias.
1320e499d8b5Scube 	 *      If it was the only entry, we must remove i's entry from d's
1321e499d8b5Scube 	 *      list.
1322e499d8b5Scube 	 */
13237b7c582aScube 	if (i != f) {
13247b7c582aScube 		for (j = f; j->i_alias != i; j = j->i_alias);
13257b7c582aScube 		j->i_alias = i->i_alias;
13263b405775Scube 	} else {
13273b405775Scube 		if (i->i_alias == NULL) {
1328e499d8b5Scube 			/* No alias, must unlink the entry from devitab */
13297b7c582aScube 			ht_remove(devitab, i->i_name);
13307b7c582aScube 			j = i->i_bsame;
13313b405775Scube 		} else {
1332e499d8b5Scube 			/* Or have the first alias replace i in d's list */
1333e499d8b5Scube 			i->i_alias->i_bsame = i->i_bsame;
13347b7c582aScube 			j = i->i_alias;
13357b7c582aScube 			if (i == f)
13367b7c582aScube 				ht_replace(devitab, i->i_name, i->i_alias);
13373b405775Scube 		}
13383b405775Scube 
1339e499d8b5Scube 		/*
1340e499d8b5Scube 		 *   - remove/replace the instance from the devbase's list
1341e499d8b5Scube 		 *
1342e499d8b5Scube 		 * A double-linked list would make this much easier.  Oh, well,
1343e499d8b5Scube 		 * what is done is done.
1344e499d8b5Scube 		 */
1345e499d8b5Scube 		for (ppi = &d->d_ihead;
1346e499d8b5Scube 		    *ppi != NULL && *ppi != i && (*ppi)->i_bsame != i;
1347e499d8b5Scube 		    ppi = &(*ppi)->i_bsame);
1348e499d8b5Scube 		if (*ppi == NULL)
1349c3414672Scube 			panic("deldev: dev (%s) doesn't list the devi"
1350c3414672Scube 			    " (%s at %s)", d->d_name, i->i_name, i->i_at);
13517b7c582aScube 		f = *ppi;
13527b7c582aScube 		if (f == i)
1353c3414672Scube 			/* That implies d->d_ihead == i */
13547b7c582aScube 			*ppi = j;
1355e499d8b5Scube 		else
13567b7c582aScube 			(*ppi)->i_bsame = j;
1357e499d8b5Scube 		if (d->d_ipp == &i->i_bsame) {
13583b405775Scube 			if (i->i_alias == NULL) {
13597b7c582aScube 				if (f == i)
1360e499d8b5Scube 					d->d_ipp = &d->d_ihead;
1361e499d8b5Scube 				else
13627b7c582aScube 					d->d_ipp = &f->i_bsame;
13633b405775Scube 			} else
13643b405775Scube 				d->d_ipp = &i->i_alias->i_bsame;
1365e499d8b5Scube 		}
1366e499d8b5Scube 	}
1367e499d8b5Scube 	/*
1368e499d8b5Scube 	 *   - delete the attachment instance
1369e499d8b5Scube 	 */
1370e499d8b5Scube 	iba = i->i_atdeva;
1371e499d8b5Scube 	for (ppi = &iba->d_ihead;
1372e499d8b5Scube 	    *ppi != NULL && *ppi != i && (*ppi)->i_asame != i;
1373e499d8b5Scube 	    ppi = &(*ppi)->i_asame);
1374e499d8b5Scube 	if (*ppi == NULL)
1375e499d8b5Scube 		panic("deldev: deva (%s) doesn't list the devi (%s)",
1376e499d8b5Scube 		    iba->d_name, i->i_name);
13777b7c582aScube 	f = *ppi;
13787b7c582aScube 	if (f == i)
1379c3414672Scube 		/* That implies iba->d_ihead == i */
1380e499d8b5Scube 		*ppi = i->i_asame;
1381e499d8b5Scube 	else
1382e499d8b5Scube 		(*ppi)->i_asame = i->i_asame;
1383e499d8b5Scube 	if (iba->d_ipp == &i->i_asame) {
13847b7c582aScube 		if (f == i)
1385e499d8b5Scube 			iba->d_ipp = &iba->d_ihead;
1386e499d8b5Scube 		else
13877b7c582aScube 			iba->d_ipp = &f->i_asame;
1388e499d8b5Scube 	}
1389e499d8b5Scube 	/*
1390e499d8b5Scube 	 *   - delete the pspec
1391e499d8b5Scube 	 */
1392e499d8b5Scube 	if (i->i_pspec) {
1393e499d8b5Scube 		struct pspec *p = i->i_pspec;
1394e499d8b5Scube 		struct nvlist *nv, *onv;
1395e499d8b5Scube 
1396e499d8b5Scube 		/* Double-linked nvlist anyone? */
1397c0024066Scube 		for (nv = p->p_devs; nv->nv_next != NULL; nv = nv->nv_next) {
1398e499d8b5Scube 			if (nv->nv_next && nv->nv_next->nv_ptr == i) {
1399e499d8b5Scube 				onv = nv->nv_next;
1400e499d8b5Scube 				nv->nv_next = onv->nv_next;
1401e499d8b5Scube 				nvfree(onv);
1402e499d8b5Scube 				break;
1403c0024066Scube 			}
1404c0024066Scube 			if (nv->nv_ptr == i) {
1405e499d8b5Scube 				/* nv is p->p_devs in that case */
1406e499d8b5Scube 				p->p_devs = nv->nv_next;
1407e499d8b5Scube 				nvfree(nv);
1408e499d8b5Scube 				break;
1409e499d8b5Scube 			}
1410e499d8b5Scube 		}
1411e499d8b5Scube 		if (p->p_devs == NULL)
1412e499d8b5Scube 			TAILQ_REMOVE(&allpspecs, p, p_list);
1413e499d8b5Scube 	}
1414e499d8b5Scube 	/*
1415e499d8b5Scube 	 *   - delete the alldevi entry
1416e499d8b5Scube 	 */
1417e499d8b5Scube 	TAILQ_REMOVE(&alldevi, i, i_next);
1418e499d8b5Scube 	ndevi--;
14197aa6070dScube 	/*
14207aa6070dScube 	 * Put it in deaddevitab
1421a31ff6b4Scube 	 *
1422a31ff6b4Scube 	 * Each time a devi is removed, devilevel is increased so that later on
1423a31ff6b4Scube 	 * it is possible to tell if an instance was added before or after the
1424a31ff6b4Scube 	 * removal of its parent.
1425a31ff6b4Scube 	 *
1426a31ff6b4Scube 	 * For active instances, i_level contains the number of devi removed so
1427a31ff6b4Scube 	 * far, and for dead devis, it contains its index.
14287aa6070dScube 	 */
1429a31ff6b4Scube 	i->i_level = devilevel++;
14307aa6070dScube 	i->i_alias = NULL;
14317aa6070dScube 	f = ht_lookup(deaddevitab, i->i_name);
14327aa6070dScube 	if (f == NULL) {
14337aa6070dScube 		if (ht_insert(deaddevitab, i->i_name, i))
14347aa6070dScube 			panic("remove_devi(%s) - can't add to deaddevitab",
14357aa6070dScube 			    i->i_name);
14367aa6070dScube 	} else {
14377aa6070dScube 		for (j = f; j->i_alias != NULL; j = j->i_alias);
14387aa6070dScube 		j->i_alias = i;
14397aa6070dScube 	}
1440e499d8b5Scube 	/*
14415d1e8b27Swiz 	 *   - reconstruct d->d_umax
1442e499d8b5Scube 	 */
1443e499d8b5Scube 	d->d_umax = 0;
1444e499d8b5Scube 	for (i = d->d_ihead; i != NULL; i = i->i_bsame)
1445e499d8b5Scube 		if (i->i_unit >= d->d_umax)
1446e499d8b5Scube 			d->d_umax = i->i_unit + 1;
14475ecc953bSthorpej }
14485ecc953bSthorpej 
14495ecc953bSthorpej void
14507b7c582aScube deldeva(const char *at)
14517b7c582aScube {
14527b7c582aScube 	int unit;
14537b7c582aScube 	const char *cp;
14547b7c582aScube 	struct devbase *d, *ad;
14557b7c582aScube 	struct devi *i, *j;
14567b7c582aScube 	struct attr *a;
14577b7c582aScube 	struct pspec *p;
14587b7c582aScube 	struct nvlist *nv, *stack = NULL;
14597b7c582aScube 
14607b7c582aScube 	if (at == NULL) {
14617b7c582aScube 		TAILQ_FOREACH(i, &alldevi, i_next)
14627b7c582aScube 			if (i->i_at == NULL)
14637b7c582aScube 				stack = newnv(NULL, NULL, i, 0, stack);
14647b7c582aScube 	} else {
14657b7c582aScube 		int l;
14667b7c582aScube 
14677b7c582aScube 		l = strlen(at) - 1;
14687b7c582aScube 		if (at[l] == '?' || isdigit((unsigned char)at[l])) {
14697b7c582aScube 			char base[NAMESIZE];
14707b7c582aScube 
14717b7c582aScube 			if (split(at, l+1, base, sizeof base, &unit)) {
1472c7295a4cSchristos 				cfgerror("invalid attachment name `%s'", at);
14737b7c582aScube 				return;
14747b7c582aScube 			}
14757b7c582aScube 			cp = intern(base);
14767b7c582aScube 		} else {
14777b7c582aScube 			cp = intern(at);
14787b7c582aScube 			unit = STAR;
14797b7c582aScube 		}
14807b7c582aScube 
14817b7c582aScube 		ad = ht_lookup(devbasetab, cp);
14827b7c582aScube 		a = ht_lookup(attrtab, cp);
14837b7c582aScube 		if (a == NULL) {
1484c7295a4cSchristos 			cfgerror("unknown attachment attribute or device `%s'",
14857b7c582aScube 			    cp);
14867b7c582aScube 			return;
14877b7c582aScube 		}
14887b7c582aScube 		if (!a->a_iattr) {
1489c7295a4cSchristos 			cfgerror("plain attribute `%s' cannot have children",
14907b7c582aScube 			    a->a_name);
14917b7c582aScube 			return;
14927b7c582aScube 		}
14937b7c582aScube 
14947b7c582aScube 		/*
14957b7c582aScube 		 * remove_devi() makes changes to the devbase's list and the
14967b7c582aScube 		 * alias list, * so the actual deletion of the instances must
14977b7c582aScube 		 * be delayed.
14987b7c582aScube 		 */
14997b7c582aScube 		for (nv = a->a_devs; nv != NULL; nv = nv->nv_next) {
15007b7c582aScube 			d = nv->nv_ptr;
15017b7c582aScube 			for (i = d->d_ihead; i != NULL; i = i->i_bsame)
15027b7c582aScube 				for (j = i; j != NULL; j = j->i_alias) {
15037b7c582aScube 					/* Ignore devices at root */
15047b7c582aScube 					if (j->i_at == NULL)
15057b7c582aScube 						continue;
15067b7c582aScube 					p = j->i_pspec;
15077b7c582aScube 					/*
15087b7c582aScube 					 * There are three cases:
15097b7c582aScube 					 *
15107b7c582aScube 					 * 1.  unit is not STAR.  Consider 'at'
15117b7c582aScube 					 *     to be explicit, even if it
15127b7c582aScube 					 *     references an interface
15137b7c582aScube 					 *     attribute.
15147b7c582aScube 					 *
15157b7c582aScube 					 * 2.  unit is STAR and 'at' references
15167b7c582aScube 					 *     a real device.  Look for pspec
15177b7c582aScube 					 *     that have a matching p_atdev
15187b7c582aScube 					 *     field.
15197b7c582aScube 					 *
15207b7c582aScube 					 * 3.  unit is STAR and 'at' references
15217b7c582aScube 					 *     an interface attribute.  Look
15227b7c582aScube 					 *     for pspec that have a matching
15237b7c582aScube 					 *     p_iattr field.
15247b7c582aScube 					 */
15257b7c582aScube 					if ((unit != STAR &&        /* Case */
15267b7c582aScube 					     !strcmp(j->i_at, at)) ||  /* 1 */
15277b7c582aScube 					    (unit == STAR &&
15287b7c582aScube 					     ((ad != NULL &&        /* Case */
15297b7c582aScube 					       p->p_atdev == ad) ||    /* 2 */
15307b7c582aScube 					      (ad == NULL &&        /* Case */
15317b7c582aScube 					       p->p_iattr == a))))     /* 3 */
15327b7c582aScube 						stack = newnv(NULL, NULL, j, 0,
15337b7c582aScube 						    stack);
15347b7c582aScube 				}
15357b7c582aScube 		}
15367b7c582aScube 	}
15377b7c582aScube 
15387b7c582aScube 	for (nv = stack; nv != NULL; nv = nv->nv_next)
15397b7c582aScube 		remove_devi(nv->nv_ptr);
1540e50e4ee4Scube 	nvfreel(stack);
15417b7c582aScube }
15427b7c582aScube 
15437b7c582aScube void
15447b7c582aScube deldev(const char *name)
15457b7c582aScube {
15467b7c582aScube 	int l;
15477b7c582aScube 	struct devi *firsti, *i;
15487b7c582aScube 	struct nvlist *nv, *stack = NULL;
15497b7c582aScube 
15507b7c582aScube 	l = strlen(name) - 1;
15517b7c582aScube 	if (name[l] == '*' || isdigit((unsigned char)name[l])) {
15527b7c582aScube 		/* `no mydev0' or `no mydev*' */
15537b7c582aScube 		firsti = ht_lookup(devitab, name);
15547b7c582aScube 		if (firsti == NULL) {
1555c7295a4cSchristos 			cfgerror("unknown instance %s", name);
15567b7c582aScube 			return;
15577b7c582aScube 		}
15587b7c582aScube 		for (i = firsti; i != NULL; i = i->i_alias)
15597b7c582aScube 			stack = newnv(NULL, NULL, i, 0, stack);
15607b7c582aScube 	} else {
15617b7c582aScube 		struct devbase *d = ht_lookup(devbasetab, name);
15627b7c582aScube 
15637b7c582aScube 		if (d == NULL) {
1564c7295a4cSchristos 			cfgerror("unknown device %s", name);
15657b7c582aScube 			return;
15667b7c582aScube 		}
156771af9028Scube 		if (d->d_ispseudo) {
1568c7295a4cSchristos 			cfgerror("%s is a pseudo-device; "
156971af9028Scube 			    "use \"no pseudo-device %s\" instead", name,
157071af9028Scube 			    name);
157171af9028Scube 			return;
157271af9028Scube 		}
15737b7c582aScube 
15747b7c582aScube 		for (firsti = d->d_ihead; firsti != NULL;
15757b7c582aScube 		    firsti = firsti->i_bsame)
15767b7c582aScube 			for (i = firsti; i != NULL; i = i->i_alias)
15777b7c582aScube 				stack = newnv(NULL, NULL, i, 0, stack);
15787b7c582aScube 	}
15797b7c582aScube 
15807b7c582aScube 	for (nv = stack; nv != NULL; nv = nv->nv_next)
15817b7c582aScube 		remove_devi(nv->nv_ptr);
1582e50e4ee4Scube 	nvfreel(stack);
15837b7c582aScube }
15847b7c582aScube 
158500ed8a38Spooka /*
158600ed8a38Spooka  * Insert given device "name" into devroottab.  In case "name"
158700ed8a38Spooka  * designates a pure interface attribute, create a fake device
158800ed8a38Spooka  * instance for the attribute and insert that into the roottab
158900ed8a38Spooka  * (this scheme avoids mucking around with the orphanage analysis).
159000ed8a38Spooka  */
15917b7c582aScube void
159290ac64deSpooka addpseudoroot(const char *name)
159390ac64deSpooka {
1594194e1c80Spooka 	char buf[NAMESIZE];
1595194e1c80Spooka 	int unit;
1596194e1c80Spooka 	struct attr *attr;
159790ac64deSpooka 	struct devi *i;
159890ac64deSpooka 	struct deva *iba;
159990ac64deSpooka 	struct devbase *ib;
160090ac64deSpooka 
1601194e1c80Spooka 	if (split(name, strlen(name), buf, sizeof(buf), &unit)) {
1602194e1c80Spooka 		cfgerror("invalid pseudo-root name `%s'", name);
1603194e1c80Spooka 		return;
1604194e1c80Spooka 	}
1605194e1c80Spooka 
1606194e1c80Spooka 	/*
160700ed8a38Spooka 	 * Prefer device because devices with locators define an
160800ed8a38Spooka 	 * implicit interface attribute.  However, if a device is
160900ed8a38Spooka 	 * not available, try to attach to the interface attribute.
161000ed8a38Spooka 	 * This makes sure adddev() doesn't get confused when we
161100ed8a38Spooka 	 * are really attaching to a device (alternatively we maybe
161200ed8a38Spooka 	 * could specify a non-NULL atlist to defdevattach() below).
1613194e1c80Spooka 	 */
161400ed8a38Spooka 	ib = ht_lookup(devbasetab, intern(buf));
161500ed8a38Spooka 	if (ib == NULL) {
1616194e1c80Spooka 		struct devbase *fakedev;
1617194e1c80Spooka 		char fakename[NAMESIZE];
1618194e1c80Spooka 
161900ed8a38Spooka 		attr = ht_lookup(attrtab, intern(buf));
162000ed8a38Spooka 		if (!(attr && attr->a_iattr)) {
162100ed8a38Spooka 			cfgerror("pseudo-root `%s' not available", name);
162200ed8a38Spooka 			return;
162300ed8a38Spooka 		}
162400ed8a38Spooka 
1625194e1c80Spooka 		/*
1626194e1c80Spooka 		 * here we cheat a bit: create a fake devbase with the
1627194e1c80Spooka 		 * interface attribute and instantiate it.  quick, cheap,
1628194e1c80Spooka 		 * dirty & bad for you, much like the stuff in the fridge.
1629194e1c80Spooka 		 * and, it works, since the pseudoroot device is not included
1630194e1c80Spooka 		 * in ioconf, just used by config to make sure we start from
1631194e1c80Spooka 		 * the right place.
1632194e1c80Spooka 		 */
163300ed8a38Spooka 		snprintf(fakename, sizeof(fakename), "%s_devattrs", buf);
1634194e1c80Spooka 		fakedev = getdevbase(intern(fakename));
1635194e1c80Spooka 		fakedev->d_isdef = 1;
1636194e1c80Spooka 		fakedev->d_ispseudo = 0;
16374caf067bSdholland 		fakedev->d_attrs = attrlist_cons(NULL, attr);
1638194e1c80Spooka 		defdevattach(NULL, fakedev, NULL, NULL);
1639194e1c80Spooka 
1640194e1c80Spooka 		if (unit == STAR)
1641194e1c80Spooka 			snprintf(buf, sizeof(buf), "%s*", fakename);
1642194e1c80Spooka 		else
1643194e1c80Spooka 			snprintf(buf, sizeof(buf), "%s%d", fakename, unit);
1644194e1c80Spooka 		name = buf;
1645194e1c80Spooka 	}
1646194e1c80Spooka 
1647194e1c80Spooka 	/* ok, everything should be set up, so instantiate a fake device */
164890ac64deSpooka 	i = getdevi(name);
164990ac64deSpooka 	if (i == NULL)
165000ed8a38Spooka 		panic("device `%s' expected to be present", name);
165190ac64deSpooka 	ib = i->i_base;
1652194e1c80Spooka 	iba = ib->d_ahead;
165390ac64deSpooka 
165490ac64deSpooka 	i->i_atdeva = iba;
165590ac64deSpooka 	i->i_cfflags = 0;
165690ac64deSpooka 	i->i_locs = fixloc(name, &errattr, NULL);
165790ac64deSpooka 	i->i_pseudoroot = 1;
165890ac64deSpooka 	i->i_active = DEVI_ORPHAN; /* set active by kill_orphans() */
165990ac64deSpooka 
166090ac64deSpooka 	*iba->d_ipp = i;
166190ac64deSpooka 	iba->d_ipp = &i->i_asame;
166290ac64deSpooka 
166390ac64deSpooka 	ht_insert(devroottab, ib->d_name, ib);
166490ac64deSpooka }
166590ac64deSpooka 
166690ac64deSpooka void
16675ecc953bSthorpej addpseudo(const char *name, int number)
16685ecc953bSthorpej {
16695ecc953bSthorpej 	struct devbase *d;
16705ecc953bSthorpej 	struct devi *i;
16715ecc953bSthorpej 
16725ecc953bSthorpej 	d = ht_lookup(devbasetab, name);
16735ecc953bSthorpej 	if (d == NULL) {
1674c7295a4cSchristos 		cfgerror("undefined pseudo-device %s", name);
16755ecc953bSthorpej 		return;
16765ecc953bSthorpej 	}
16775ecc953bSthorpej 	if (!d->d_ispseudo) {
1678c7295a4cSchristos 		cfgerror("%s is a real device, not a pseudo-device", name);
16795ecc953bSthorpej 		return;
16805ecc953bSthorpej 	}
16815ecc953bSthorpej 	if (ht_lookup(devitab, name) != NULL) {
1682c7295a4cSchristos 		cfgerror("`%s' already defined", name);
16835ecc953bSthorpej 		return;
16845ecc953bSthorpej 	}
16855ecc953bSthorpej 	i = newdevi(name, number - 1, d);	/* foo 16 => "foo0..foo15" */
16865ecc953bSthorpej 	if (ht_insert(devitab, name, i))
16875ecc953bSthorpej 		panic("addpseudo(%s)", name);
16887b7c582aScube 	/* Useful to retrieve the instance from the devbase */
16897b7c582aScube 	d->d_ihead = i;
16907aa6070dScube 	i->i_active = DEVI_ACTIVE;
16915ecc953bSthorpej 	TAILQ_INSERT_TAIL(&allpseudo, i, i_next);
16925ecc953bSthorpej }
16935ecc953bSthorpej 
16945ecc953bSthorpej void
16955ecc953bSthorpej delpseudo(const char *name)
16965ecc953bSthorpej {
16975ecc953bSthorpej 	struct devbase *d;
16985ecc953bSthorpej 	struct devi *i;
16995ecc953bSthorpej 
17005ecc953bSthorpej 	d = ht_lookup(devbasetab, name);
17015ecc953bSthorpej 	if (d == NULL) {
1702c7295a4cSchristos 		cfgerror("undefined pseudo-device %s", name);
17035ecc953bSthorpej 		return;
17045ecc953bSthorpej 	}
17055ecc953bSthorpej 	if (!d->d_ispseudo) {
1706c7295a4cSchristos 		cfgerror("%s is a real device, not a pseudo-device", name);
17075ecc953bSthorpej 		return;
17085ecc953bSthorpej 	}
17095ecc953bSthorpej 	if ((i = ht_lookup(devitab, name)) == NULL) {
1710c7295a4cSchristos 		cfgerror("`%s' not defined", name);
17115ecc953bSthorpej 		return;
17125ecc953bSthorpej 	}
17135ecc953bSthorpej 	d->d_umax = 0;		/* clear neads-count entries */
17147aa6070dScube 	d->d_ihead = NULL;	/* make sure it won't be considered active */
17155ecc953bSthorpej 	TAILQ_REMOVE(&allpseudo, i, i_next);
17165ecc953bSthorpej 	if (ht_remove(devitab, name))
17175ecc953bSthorpej 		panic("delpseudo(%s) - can't remove from devitab", name);
17187aa6070dScube 	if (ht_insert(deaddevitab, name, i))
17197aa6070dScube 		panic("delpseudo(%s) - can't add to deaddevitab", name);
17205ecc953bSthorpej }
17215ecc953bSthorpej 
17225ecc953bSthorpej void
1723d767912bSdrochner adddevm(const char *name, devmajor_t cmajor, devmajor_t bmajor,
17249483bda7Sdholland 	struct condexpr *cond, struct nvlist *nv_nodes)
17255ecc953bSthorpej {
17265ecc953bSthorpej 	struct devm *dm;
17275ecc953bSthorpej 
1728d767912bSdrochner 	if (cmajor != NODEVMAJOR && (cmajor < 0 || cmajor >= 4096)) {
1729c7295a4cSchristos 		cfgerror("character major %d is invalid", cmajor);
17309483bda7Sdholland 		condexpr_destroy(cond);
17313da3ab25Spooka 		nvfreel(nv_nodes);
17325ecc953bSthorpej 		return;
17335ecc953bSthorpej 	}
17345ecc953bSthorpej 
1735d767912bSdrochner 	if (bmajor != NODEVMAJOR && (bmajor < 0 || bmajor >= 4096)) {
1736c7295a4cSchristos 		cfgerror("block major %d is invalid", bmajor);
17379483bda7Sdholland 		condexpr_destroy(cond);
17383da3ab25Spooka 		nvfreel(nv_nodes);
17395ecc953bSthorpej 		return;
17405ecc953bSthorpej 	}
1741d767912bSdrochner 	if (cmajor == NODEVMAJOR && bmajor == NODEVMAJOR) {
1742c7295a4cSchristos 		cfgerror("both character/block majors are not specified");
17439483bda7Sdholland 		condexpr_destroy(cond);
17443da3ab25Spooka 		nvfreel(nv_nodes);
17455ecc953bSthorpej 		return;
17465ecc953bSthorpej 	}
17475ecc953bSthorpej 
17485ecc953bSthorpej 	dm = ecalloc(1, sizeof(*dm));
17495ecc953bSthorpej 	dm->dm_srcfile = yyfile;
17505ecc953bSthorpej 	dm->dm_srcline = currentline();
17515ecc953bSthorpej 	dm->dm_name = name;
17525ecc953bSthorpej 	dm->dm_cmajor = cmajor;
17535ecc953bSthorpej 	dm->dm_bmajor = bmajor;
17549483bda7Sdholland 	dm->dm_opts = cond;
17553da3ab25Spooka 	dm->dm_devnodes = nv_nodes;
17565ecc953bSthorpej 
17575ecc953bSthorpej 	TAILQ_INSERT_TAIL(&alldevms, dm, dm_next);
17585ecc953bSthorpej 
17595ecc953bSthorpej 	maxcdevm = MAX(maxcdevm, dm->dm_cmajor);
17605ecc953bSthorpej 	maxbdevm = MAX(maxbdevm, dm->dm_bmajor);
17615ecc953bSthorpej }
17625ecc953bSthorpej 
17637aa6070dScube int
17645ecc953bSthorpej fixdevis(void)
17655ecc953bSthorpej {
17665ecc953bSthorpej 	struct devi *i;
17677aa6070dScube 	int error = 0;
17685ecc953bSthorpej 
1769*bc707469Suebayasi 	TAILQ_FOREACH(i, &alldevi, i_next) {
1770*bc707469Suebayasi 		CFGDBG(3, "fixing devis `%s'", i->i_name);
17717aa6070dScube 		if (i->i_active == DEVI_ACTIVE)
17725ecc953bSthorpej 			selectbase(i->i_base, i->i_atdeva);
17737aa6070dScube 		else if (i->i_active == DEVI_ORPHAN) {
1774c130d400Scube 			/*
1775c130d400Scube 			 * At this point, we can't have instances for which
1776c130d400Scube 			 * i_at or i_pspec are NULL.
1777c130d400Scube 			 */
17787aa6070dScube 			++error;
1779c7295a4cSchristos 			cfgxerror(i->i_srcfile, i->i_lineno,
17800dbd1c0eScube 			    "`%s at %s' is orphaned (%s `%s' found)",
1781c130d400Scube 			    i->i_name, i->i_at, i->i_pspec->p_atunit == WILD ?
1782c130d400Scube 			    "nothing matching" : "no", i->i_at);
17837aa6070dScube 		} else if (vflag && i->i_active == DEVI_IGNORED)
1784c7295a4cSchristos 			cfgxwarn(i->i_srcfile, i->i_lineno, "ignoring "
1785c7295a4cSchristos 			    "explicitly orphaned instance `%s at %s'",
1786c7295a4cSchristos 			    i->i_name, i->i_at);
1787*bc707469Suebayasi 	}
17887aa6070dScube 
17897aa6070dScube 	if (error)
17907aa6070dScube 		return error;
17915ecc953bSthorpej 
17925ecc953bSthorpej 	TAILQ_FOREACH(i, &allpseudo, i_next)
17937aa6070dScube 		if (i->i_active == DEVI_ACTIVE)
17945ecc953bSthorpej 			selectbase(i->i_base, NULL);
17957aa6070dScube 	return 0;
17965ecc953bSthorpej }
17975ecc953bSthorpej 
17985ecc953bSthorpej /*
17995ecc953bSthorpej  * Look up a parent spec, creating a new one if it does not exist.
18005ecc953bSthorpej  */
18015ecc953bSthorpej static struct pspec *
18025ecc953bSthorpej getpspec(struct attr *attr, struct devbase *ab, int atunit)
18035ecc953bSthorpej {
18045ecc953bSthorpej 	struct pspec *p;
18055ecc953bSthorpej 
18065ecc953bSthorpej 	TAILQ_FOREACH(p, &allpspecs, p_list) {
18075ecc953bSthorpej 		if (p->p_iattr == attr &&
18085ecc953bSthorpej 		    p->p_atdev == ab &&
18095ecc953bSthorpej 		    p->p_atunit == atunit)
18105ecc953bSthorpej 			return (p);
18115ecc953bSthorpej 	}
18125ecc953bSthorpej 
18135ecc953bSthorpej 	p = ecalloc(1, sizeof(*p));
18145ecc953bSthorpej 
18155ecc953bSthorpej 	p->p_iattr = attr;
18165ecc953bSthorpej 	p->p_atdev = ab;
18175ecc953bSthorpej 	p->p_atunit = atunit;
18185ecc953bSthorpej 	p->p_inst = npspecs++;
1819c130d400Scube 	p->p_active = 0;
18205ecc953bSthorpej 
18215ecc953bSthorpej 	TAILQ_INSERT_TAIL(&allpspecs, p, p_list);
18225ecc953bSthorpej 
18235ecc953bSthorpej 	return (p);
18245ecc953bSthorpej }
18255ecc953bSthorpej 
18265ecc953bSthorpej /*
18275ecc953bSthorpej  * Define a new instance of a specific device.
18285ecc953bSthorpej  */
18295ecc953bSthorpej static struct devi *
18305ecc953bSthorpej getdevi(const char *name)
18315ecc953bSthorpej {
18325ecc953bSthorpej 	struct devi *i, *firsti;
18335ecc953bSthorpej 	struct devbase *d;
18345ecc953bSthorpej 	int unit;
18355ecc953bSthorpej 	char base[NAMESIZE];
18365ecc953bSthorpej 
18375ecc953bSthorpej 	if (split(name, strlen(name), base, sizeof base, &unit)) {
1838c7295a4cSchristos 		cfgerror("invalid device name `%s'", name);
18395ecc953bSthorpej 		return (NULL);
18405ecc953bSthorpej 	}
18415ecc953bSthorpej 	d = ht_lookup(devbasetab, intern(base));
18425ecc953bSthorpej 	if (d == NULL) {
1843c7295a4cSchristos 		cfgerror("%s: unknown device `%s'", name, base);
18445ecc953bSthorpej 		return (NULL);
18455ecc953bSthorpej 	}
18465ecc953bSthorpej 	if (d->d_ispseudo) {
1847c7295a4cSchristos 		cfgerror("%s: %s is a pseudo-device", name, base);
18485ecc953bSthorpej 		return (NULL);
18495ecc953bSthorpej 	}
18505ecc953bSthorpej 	firsti = ht_lookup(devitab, name);
18515ecc953bSthorpej 	i = newdevi(name, unit, d);
18525ecc953bSthorpej 	if (firsti == NULL) {
18535ecc953bSthorpej 		if (ht_insert(devitab, name, i))
18545ecc953bSthorpej 			panic("getdevi(%s)", name);
18555ecc953bSthorpej 		*d->d_ipp = i;
18565ecc953bSthorpej 		d->d_ipp = &i->i_bsame;
18575ecc953bSthorpej 	} else {
18585ecc953bSthorpej 		while (firsti->i_alias)
18595ecc953bSthorpej 			firsti = firsti->i_alias;
18605ecc953bSthorpej 		firsti->i_alias = i;
18615ecc953bSthorpej 	}
18625ecc953bSthorpej 	TAILQ_INSERT_TAIL(&alldevi, i, i_next);
18635ecc953bSthorpej 	ndevi++;
18645ecc953bSthorpej 	return (i);
18655ecc953bSthorpej }
18665ecc953bSthorpej 
18675ecc953bSthorpej static const char *
18685ecc953bSthorpej concat(const char *name, int c)
18695ecc953bSthorpej {
1870c7295a4cSchristos 	size_t len;
18715ecc953bSthorpej 	char buf[NAMESIZE];
18725ecc953bSthorpej 
18735ecc953bSthorpej 	len = strlen(name);
18745ecc953bSthorpej 	if (len + 2 > sizeof(buf)) {
1875c7295a4cSchristos 		cfgerror("device name `%s%c' too long", name, c);
18765ecc953bSthorpej 		len = sizeof(buf) - 2;
18775ecc953bSthorpej 	}
18785ecc953bSthorpej 	memmove(buf, name, len);
18795ecc953bSthorpej 	buf[len] = c;
18805ecc953bSthorpej 	buf[len + 1] = 0;
18815ecc953bSthorpej 	return (intern(buf));
18825ecc953bSthorpej }
18835ecc953bSthorpej 
18845ecc953bSthorpej const char *
18855ecc953bSthorpej starref(const char *name)
18865ecc953bSthorpej {
18875ecc953bSthorpej 
18885ecc953bSthorpej 	return (concat(name, '*'));
18895ecc953bSthorpej }
18905ecc953bSthorpej 
18915ecc953bSthorpej const char *
18925ecc953bSthorpej wildref(const char *name)
18935ecc953bSthorpej {
18945ecc953bSthorpej 
18955ecc953bSthorpej 	return (concat(name, '?'));
18965ecc953bSthorpej }
18975ecc953bSthorpej 
18985ecc953bSthorpej /*
18995ecc953bSthorpej  * Split a name like "foo0" into base name (foo) and unit number (0).
19005ecc953bSthorpej  * Return 0 on success.  To make this useful for names like "foo0a",
19015ecc953bSthorpej  * the length of the "foo0" part is one of the arguments.
19025ecc953bSthorpej  */
19035ecc953bSthorpej static int
19045ecc953bSthorpej split(const char *name, size_t nlen, char *base, size_t bsize, int *aunit)
19055ecc953bSthorpej {
19065ecc953bSthorpej 	const char *cp;
1907c7295a4cSchristos 	int c;
1908c7295a4cSchristos 	size_t l;
19095ecc953bSthorpej 
19105ecc953bSthorpej 	l = nlen;
19115ecc953bSthorpej 	if (l < 2 || l >= bsize || isdigit((unsigned char)*name))
19125ecc953bSthorpej 		return (1);
19135ecc953bSthorpej 	c = (u_char)name[--l];
19145ecc953bSthorpej 	if (!isdigit(c)) {
19155ecc953bSthorpej 		if (c == '*')
19165ecc953bSthorpej 			*aunit = STAR;
19175ecc953bSthorpej 		else if (c == '?')
19185ecc953bSthorpej 			*aunit = WILD;
19195ecc953bSthorpej 		else
19205ecc953bSthorpej 			return (1);
19215ecc953bSthorpej 	} else {
19225ecc953bSthorpej 		cp = &name[l];
19235ecc953bSthorpej 		while (isdigit((unsigned char)cp[-1]))
19245ecc953bSthorpej 			l--, cp--;
19255ecc953bSthorpej 		*aunit = atoi(cp);
19265ecc953bSthorpej 	}
19275ecc953bSthorpej 	memmove(base, name, l);
19285ecc953bSthorpej 	base[l] = 0;
19295ecc953bSthorpej 	return (0);
19305ecc953bSthorpej }
19315ecc953bSthorpej 
19325ecc953bSthorpej void
19335ecc953bSthorpej selectattr(struct attr *a)
19345ecc953bSthorpej {
19353a03bee6Suebayasi 	struct attrlist *al;
19363a03bee6Suebayasi 	struct attr *dep;
19375ecc953bSthorpej 
19383a03bee6Suebayasi 	for (al = a->a_deps; al != NULL; al = al->al_next) {
19393a03bee6Suebayasi 		dep = al->al_this;
19403a03bee6Suebayasi 		selectattr(dep);
19413a03bee6Suebayasi 	}
1942c7295a4cSchristos 	(void)ht_insert(selecttab, a->a_name, __UNCONST(a->a_name));
1943b599bf99Suebayasi 	CFGDBG(3, "attr selected `%s'", a->a_name);
19445ecc953bSthorpej }
19455ecc953bSthorpej 
19465ecc953bSthorpej /*
19475ecc953bSthorpej  * We have an instance of the base foo, so select it and all its
19485ecc953bSthorpej  * attributes for "optional foo".
19495ecc953bSthorpej  */
19505ecc953bSthorpej static void
19515ecc953bSthorpej selectbase(struct devbase *d, struct deva *da)
19525ecc953bSthorpej {
19535ecc953bSthorpej 	struct attr *a;
19544caf067bSdholland 	struct attrlist *al;
19555ecc953bSthorpej 
1956c7295a4cSchristos 	(void)ht_insert(selecttab, d->d_name, __UNCONST(d->d_name));
1957b599bf99Suebayasi 	CFGDBG(3, "devbase selected `%s'", d->d_name);
19584caf067bSdholland 	for (al = d->d_attrs; al != NULL; al = al->al_next) {
19594caf067bSdholland 		a = al->al_this;
19605ecc953bSthorpej 		expandattr(a, selectattr);
19615ecc953bSthorpej 	}
1962da706167Suebayasi 
1963da706167Suebayasi 	struct attr *devattr;
1964da706167Suebayasi 	devattr = refattr(d->d_name);
1965da706167Suebayasi 	expandattr(devattr, selectattr);
1966da706167Suebayasi 
19675ecc953bSthorpej 	if (da != NULL) {
1968c7295a4cSchristos 		(void)ht_insert(selecttab, da->d_name, __UNCONST(da->d_name));
1969b599bf99Suebayasi 		CFGDBG(3, "devattr selected `%s'", da->d_name);
19704caf067bSdholland 		for (al = da->d_attrs; al != NULL; al = al->al_next) {
19714caf067bSdholland 			a = al->al_this;
19725ecc953bSthorpej 			expandattr(a, selectattr);
19735ecc953bSthorpej 		}
19745ecc953bSthorpej 	}
1975c4bac1d0Suebayasi 
1976c4bac1d0Suebayasi 	fixdev(d);
19775ecc953bSthorpej }
19785ecc953bSthorpej 
19795ecc953bSthorpej /*
19805ecc953bSthorpej  * Is the given pointer on the given list of pointers?
19815ecc953bSthorpej  */
198259c94545Scube int
19835ecc953bSthorpej onlist(struct nvlist *nv, void *ptr)
19845ecc953bSthorpej {
19855ecc953bSthorpej 	for (; nv != NULL; nv = nv->nv_next)
19865ecc953bSthorpej 		if (nv->nv_ptr == ptr)
19875ecc953bSthorpej 			return (1);
19885ecc953bSthorpej 	return (0);
19895ecc953bSthorpej }
19905ecc953bSthorpej 
19915ecc953bSthorpej static char *
19925ecc953bSthorpej extend(char *p, const char *name)
19935ecc953bSthorpej {
1994c7295a4cSchristos 	size_t l;
19955ecc953bSthorpej 
19965ecc953bSthorpej 	l = strlen(name);
19975ecc953bSthorpej 	memmove(p, name, l);
19985ecc953bSthorpej 	p += l;
19995ecc953bSthorpej 	*p++ = ',';
20005ecc953bSthorpej 	*p++ = ' ';
20015ecc953bSthorpej 	return (p);
20025ecc953bSthorpej }
20035ecc953bSthorpej 
20045ecc953bSthorpej /*
20055ecc953bSthorpej  * Check that we got all required locators, and default any that are
20065ecc953bSthorpej  * given as "?" and have defaults.  Return 0 on success.
20075ecc953bSthorpej  */
20085ecc953bSthorpej static const char **
200916a8771bSdholland fixloc(const char *name, struct attr *attr, struct loclist *got)
20105ecc953bSthorpej {
201116a8771bSdholland 	struct loclist *m, *n;
20125ecc953bSthorpej 	int ord;
20135ecc953bSthorpej 	const char **lp;
20145ecc953bSthorpej 	int nmissing, nextra, nnodefault;
20155ecc953bSthorpej 	char *mp, *ep, *ndp;
20165ecc953bSthorpej 	char missing[1000], extra[1000], nodefault[1000];
20175ecc953bSthorpej 	static const char *nullvec[1];
20185ecc953bSthorpej 
20195ecc953bSthorpej 	/*
20205ecc953bSthorpej 	 * Look for all required locators, and number the given ones
20215ecc953bSthorpej 	 * according to the required order.  While we are numbering,
20225ecc953bSthorpej 	 * set default values for defaulted locators.
20235ecc953bSthorpej 	 */
20245ecc953bSthorpej 	if (attr->a_loclen == 0)	/* e.g., "at root" */
20255ecc953bSthorpej 		lp = nullvec;
20265ecc953bSthorpej 	else
20275ecc953bSthorpej 		lp = emalloc((attr->a_loclen + 1) * sizeof(const char *));
202816a8771bSdholland 	for (n = got; n != NULL; n = n->ll_next)
202916a8771bSdholland 		n->ll_num = -1;
20305ecc953bSthorpej 	nmissing = 0;
20315ecc953bSthorpej 	mp = missing;
20325ecc953bSthorpej 	/* yes, this is O(mn), but m and n should be small */
203316a8771bSdholland 	for (ord = 0, m = attr->a_locs; m != NULL; m = m->ll_next, ord++) {
203416a8771bSdholland 		for (n = got; n != NULL; n = n->ll_next) {
203516a8771bSdholland 			if (n->ll_name == m->ll_name) {
203616a8771bSdholland 				n->ll_num = ord;
20375ecc953bSthorpej 				break;
20385ecc953bSthorpej 			}
20395ecc953bSthorpej 		}
204016a8771bSdholland 		if (n == NULL && m->ll_num == 0) {
20415ecc953bSthorpej 			nmissing++;
204216a8771bSdholland 			mp = extend(mp, m->ll_name);
20435ecc953bSthorpej 		}
204416a8771bSdholland 		lp[ord] = m->ll_string;
20455ecc953bSthorpej 	}
20465ecc953bSthorpej 	if (ord != attr->a_loclen)
20475ecc953bSthorpej 		panic("fixloc");
20485ecc953bSthorpej 	lp[ord] = NULL;
20495ecc953bSthorpej 	nextra = 0;
20505ecc953bSthorpej 	ep = extra;
20515ecc953bSthorpej 	nnodefault = 0;
20525ecc953bSthorpej 	ndp = nodefault;
205316a8771bSdholland 	for (n = got; n != NULL; n = n->ll_next) {
205416a8771bSdholland 		if (n->ll_num >= 0) {
205516a8771bSdholland 			if (n->ll_string != NULL)
205616a8771bSdholland 				lp[n->ll_num] = n->ll_string;
205716a8771bSdholland 			else if (lp[n->ll_num] == NULL) {
20585ecc953bSthorpej 				nnodefault++;
205916a8771bSdholland 				ndp = extend(ndp, n->ll_name);
20605ecc953bSthorpej 			}
20615ecc953bSthorpej 		} else {
20625ecc953bSthorpej 			nextra++;
206316a8771bSdholland 			ep = extend(ep, n->ll_name);
20645ecc953bSthorpej 		}
20655ecc953bSthorpej 	}
20665ecc953bSthorpej 	if (nextra) {
20675ecc953bSthorpej 		ep[-2] = 0;	/* kill ", " */
2068c7295a4cSchristos 		cfgerror("%s: extraneous locator%s: %s",
20695ecc953bSthorpej 		    name, nextra > 1 ? "s" : "", extra);
20705ecc953bSthorpej 	}
20715ecc953bSthorpej 	if (nmissing) {
20725ecc953bSthorpej 		mp[-2] = 0;
2073c7295a4cSchristos 		cfgerror("%s: must specify %s", name, missing);
20745ecc953bSthorpej 	}
20755ecc953bSthorpej 	if (nnodefault) {
20765ecc953bSthorpej 		ndp[-2] = 0;
2077c7295a4cSchristos 		cfgerror("%s: cannot wildcard %s", name, nodefault);
20785ecc953bSthorpej 	}
20795ecc953bSthorpej 	if (nmissing || nnodefault) {
20805ecc953bSthorpej 		free(lp);
20815ecc953bSthorpej 		lp = NULL;
20825ecc953bSthorpej 	}
20835ecc953bSthorpej 	return (lp);
20845ecc953bSthorpej }
2085437f8925Scube 
2086437f8925Scube void
2087437f8925Scube setversion(int newver)
2088437f8925Scube {
2089437f8925Scube 	if (newver > CONFIG_VERSION)
2090c7295a4cSchristos 		cfgerror("your sources require a newer version of config(1) "
2091437f8925Scube 		    "-- please rebuild it.");
2092437f8925Scube 	else if (newver < CONFIG_MINVERSION)
2093c7295a4cSchristos 		cfgerror("your sources are out of date -- please update.");
2094437f8925Scube 	else
2095437f8925Scube 		version = newver;
2096437f8925Scube }
2097