xref: /netbsd/usr.bin/config/sem.c (revision 2f2f3382)
1*2f2f3382Suebayasi /*	$NetBSD: sem.c,v 1.50 2014/10/10 06:59:38 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 
1315ecc953bSthorpej void
1325ecc953bSthorpej enddefs(void)
1335ecc953bSthorpej {
1345ecc953bSthorpej 	struct devbase *dev;
1355ecc953bSthorpej 
1365ecc953bSthorpej 	TAILQ_FOREACH(dev, &allbases, d_next) {
1375ecc953bSthorpej 		if (!dev->d_isdef) {
1385ecc953bSthorpej 			(void)fprintf(stderr,
1395ecc953bSthorpej 			    "%s: device `%s' used but not defined\n",
1405ecc953bSthorpej 			    lastfile, dev->d_name);
1415ecc953bSthorpej 			errors++;
1425ecc953bSthorpej 			continue;
1435ecc953bSthorpej 		}
1445ecc953bSthorpej 	}
1455ecc953bSthorpej 	if (errors) {
1465ecc953bSthorpej 		(void)fprintf(stderr, "*** Stop.\n");
1475ecc953bSthorpej 		exit(1);
1485ecc953bSthorpej 	}
1495ecc953bSthorpej }
1505ecc953bSthorpej 
1515ecc953bSthorpej void
1525ecc953bSthorpej setdefmaxusers(int min, int def, int max)
1535ecc953bSthorpej {
1545ecc953bSthorpej 
1555ecc953bSthorpej 	if (min < 1 || min > def || def > max)
156c7295a4cSchristos 		cfgerror("maxusers must have 1 <= min (%d) <= default (%d) "
157c7295a4cSchristos 		    "<= max (%d)", min, def, max);
1585ecc953bSthorpej 	else {
1595ecc953bSthorpej 		minmaxusers = min;
1605ecc953bSthorpej 		defmaxusers = def;
1615ecc953bSthorpej 		maxmaxusers = max;
1625ecc953bSthorpej 	}
1635ecc953bSthorpej }
1645ecc953bSthorpej 
1655ecc953bSthorpej void
1665ecc953bSthorpej setmaxusers(int n)
1675ecc953bSthorpej {
1685ecc953bSthorpej 
169895e5687Scube 	if (maxusers == n) {
170c7295a4cSchristos 		cfgerror("duplicate maxusers parameter");
1715ecc953bSthorpej 		return;
1725ecc953bSthorpej 	}
173895e5687Scube 	if (vflag && maxusers != 0)
174c7295a4cSchristos 		cfgwarn("warning: maxusers already defined");
1755ecc953bSthorpej 	maxusers = n;
1765ecc953bSthorpej 	if (n < minmaxusers) {
177c7295a4cSchristos 		cfgerror("warning: minimum of %d maxusers assumed",
178c7295a4cSchristos 		    minmaxusers);
1795ecc953bSthorpej 		errors--;	/* take it away */
1805ecc953bSthorpej 		maxusers = minmaxusers;
1815ecc953bSthorpej 	} else if (n > maxmaxusers) {
182c7295a4cSchristos 		cfgerror("warning: maxusers (%d) > %d", n, maxmaxusers);
1835ecc953bSthorpej 		errors--;
1845ecc953bSthorpej 	}
1855ecc953bSthorpej }
1865ecc953bSthorpej 
1875ecc953bSthorpej void
1885ecc953bSthorpej setident(const char *i)
1895ecc953bSthorpej {
1905ecc953bSthorpej 
1914a7be1f9Smrg 	if (i)
1925ecc953bSthorpej 		ident = intern(i);
1934a7be1f9Smrg 	else
1944a7be1f9Smrg 		ident = NULL;
1955ecc953bSthorpej }
1965ecc953bSthorpej 
1975ecc953bSthorpej /*
1985ecc953bSthorpej  * Define an attribute, optionally with an interface (a locator list)
1995ecc953bSthorpej  * and a set of attribute-dependencies.
2005ecc953bSthorpej  *
2015ecc953bSthorpej  * Attribute dependencies MAY NOT be interface attributes.
2025ecc953bSthorpej  *
2035ecc953bSthorpej  * Since an empty locator list is logically different from "no interface",
2045ecc953bSthorpej  * all locator lists include a dummy head node, which we discard here.
2055ecc953bSthorpej  */
2065ecc953bSthorpej int
207bb4307a6Suebayasi defattr0(const char *name, struct loclist *locs, struct attrlist *deps,
208bb4307a6Suebayasi     int devclass)
209bb4307a6Suebayasi {
210bb4307a6Suebayasi 
211bb4307a6Suebayasi 	if (locs != NULL)
212bb4307a6Suebayasi 		return defiattr(name, locs, deps, devclass);
213bb4307a6Suebayasi 	else if (devclass)
214bb4307a6Suebayasi 		return defdevclass(name, locs, deps, devclass);
215bb4307a6Suebayasi 	else
216bb4307a6Suebayasi 		return defattr(name, locs, deps, devclass);
217bb4307a6Suebayasi }
218bb4307a6Suebayasi 
219bb4307a6Suebayasi int
22016a8771bSdholland defattr(const char *name, struct loclist *locs, struct attrlist *deps,
2215ecc953bSthorpej     int devclass)
2225ecc953bSthorpej {
2235ecc953bSthorpej 	struct attr *a, *dep;
2244caf067bSdholland 	struct attrlist *al;
2255ecc953bSthorpej 
2265ecc953bSthorpej 	/*
2275ecc953bSthorpej 	 * If this attribute depends on any others, make sure none of
2285ecc953bSthorpej 	 * the dependencies are interface attributes.
2295ecc953bSthorpej 	 */
2304caf067bSdholland 	for (al = deps; al != NULL; al = al->al_next) {
2314caf067bSdholland 		dep = al->al_this;
2325ecc953bSthorpej 		if (dep->a_iattr) {
233c7295a4cSchristos 			cfgerror("`%s' dependency `%s' is an interface "
234c7295a4cSchristos 			    "attribute", name, dep->a_name);
2355ecc953bSthorpej 			return (1);
2365ecc953bSthorpej 		}
2375ecc953bSthorpej 	}
2385ecc953bSthorpej 
239*2f2f3382Suebayasi 	a = mkattr(name);
240*2f2f3382Suebayasi 	if (a == NULL) {
241c7295a4cSchristos 		cfgerror("attribute `%s' already defined", name);
24216a8771bSdholland 		loclist_destroy(locs);
2435ecc953bSthorpej 		return (1);
2445ecc953bSthorpej 	}
2455ecc953bSthorpej 
246a949e288Suebayasi 	a->a_deps = deps;
247bb4307a6Suebayasi 	expandattr(a, NULL);
248*2f2f3382Suebayasi 	CFGDBG(3, "attr `%s' defined", a->a_name);
249bb4307a6Suebayasi 
250bb4307a6Suebayasi 	return (0);
251bb4307a6Suebayasi }
252a949e288Suebayasi 
253*2f2f3382Suebayasi struct attr *
254*2f2f3382Suebayasi mkattr(const char *name)
255*2f2f3382Suebayasi {
256*2f2f3382Suebayasi 	struct attr *a;
257*2f2f3382Suebayasi 
258*2f2f3382Suebayasi 	a = ecalloc(1, sizeof *a);
259*2f2f3382Suebayasi 	if (ht_insert(attrtab, name, a)) {
260*2f2f3382Suebayasi 		free(a);
261*2f2f3382Suebayasi 		return NULL;
262*2f2f3382Suebayasi 	}
263*2f2f3382Suebayasi 	a->a_name = name;
264*2f2f3382Suebayasi 	TAILQ_INIT(&a->a_files);
265*2f2f3382Suebayasi 	CFGDBG(3, "attr `%s' allocated", name);
266*2f2f3382Suebayasi 
267*2f2f3382Suebayasi 	return a;
268*2f2f3382Suebayasi }
269*2f2f3382Suebayasi 
270a949e288Suebayasi /* "interface attribute" initialization */
271bb4307a6Suebayasi int
272bb4307a6Suebayasi defiattr(const char *name, struct loclist *locs, struct attrlist *deps,
273bb4307a6Suebayasi     int devclass)
274bb4307a6Suebayasi {
275bb4307a6Suebayasi 	struct attr *a;
276bb4307a6Suebayasi 	int len;
277bb4307a6Suebayasi 	struct loclist *ll;
278bb4307a6Suebayasi 
279bb4307a6Suebayasi 	if (devclass)
280bb4307a6Suebayasi 		panic("defattr(%s): locators and devclass", name);
281bb4307a6Suebayasi 
282bb4307a6Suebayasi 	if (defattr(name, locs, deps, devclass) != 0)
283bb4307a6Suebayasi 		return (1);
284bb4307a6Suebayasi 
285bb4307a6Suebayasi 	a = getattr(name);
2865ecc953bSthorpej 	a->a_iattr = 1;
28716a8771bSdholland 	/* unwrap */
28816a8771bSdholland 	a->a_locs = locs->ll_next;
28916a8771bSdholland 	locs->ll_next = NULL;
29016a8771bSdholland 	loclist_destroy(locs);
291a949e288Suebayasi 	len = 0;
292a949e288Suebayasi 	for (ll = a->a_locs; ll != NULL; ll = ll->ll_next)
293a949e288Suebayasi 		len++;
294a949e288Suebayasi 	a->a_loclen = len;
295bb4307a6Suebayasi 	if (deps)
296bb4307a6Suebayasi 		CFGDBG(2, "attr `%s' iface with deps", a->a_name);
297bb4307a6Suebayasi 	return (0);
2985ecc953bSthorpej }
299a949e288Suebayasi 
300a949e288Suebayasi /* "device class" initialization */
301bb4307a6Suebayasi int
302bb4307a6Suebayasi defdevclass(const char *name, struct loclist *locs, struct attrlist *deps,
303bb4307a6Suebayasi     int devclass)
304bb4307a6Suebayasi {
305bb4307a6Suebayasi 	struct attr *a;
306bbfbbde1Schristos 	char classenum[256], *cp;
3075ecc953bSthorpej 	int errored = 0;
3085ecc953bSthorpej 
309bb4307a6Suebayasi 	if (deps)
310bb4307a6Suebayasi 		panic("defattr(%s): dependencies and devclass", name);
311bb4307a6Suebayasi 
312bb4307a6Suebayasi 	if (defattr(name, locs, deps, devclass) != 0)
313bb4307a6Suebayasi 		return (1);
314bb4307a6Suebayasi 
315bb4307a6Suebayasi 	a = getattr(name);
316bbfbbde1Schristos 	(void)snprintf(classenum, sizeof(classenum), "DV_%s", name);
3175ecc953bSthorpej 	for (cp = classenum + 3; *cp; cp++) {
3185ecc953bSthorpej 		if (!errored &&
3195ecc953bSthorpej 		    (!isalnum((unsigned char)*cp) ||
3205ecc953bSthorpej 		      (isalpha((unsigned char)*cp) && !islower((unsigned char)*cp)))) {
321c7295a4cSchristos 			cfgerror("device class names must be "
322c7295a4cSchristos 			    "lower-case alphanumeric characters");
3235ecc953bSthorpej 			errored = 1;
3245ecc953bSthorpej 		}
3255ecc953bSthorpej 		*cp = toupper((unsigned char)*cp);
3265ecc953bSthorpej 	}
3275ecc953bSthorpej 	a->a_devclass = intern(classenum);
3285ecc953bSthorpej 
3295ecc953bSthorpej 	return (0);
3305ecc953bSthorpej }
3315ecc953bSthorpej 
3325ecc953bSthorpej /*
3335ecc953bSthorpej  * Return true if the given `error object' is embedded in the given
3345ecc953bSthorpej  * pointer list.
3355ecc953bSthorpej  */
3365ecc953bSthorpej static int
3374caf067bSdholland has_errobj(struct attrlist *al, struct attr *obj)
3385ecc953bSthorpej {
3395ecc953bSthorpej 
3404caf067bSdholland 	for (; al != NULL; al = al->al_next)
3414caf067bSdholland 		if (al->al_this == obj)
3425ecc953bSthorpej 			return (1);
3435ecc953bSthorpej 	return (0);
3445ecc953bSthorpej }
3455ecc953bSthorpej 
3465ecc953bSthorpej /*
3475ecc953bSthorpej  * Return true if the given attribute is embedded in the given
3485ecc953bSthorpej  * pointer list.
3495ecc953bSthorpej  */
3505ecc953bSthorpej int
3514caf067bSdholland has_attr(struct attrlist *al, const char *attr)
3525ecc953bSthorpej {
3535ecc953bSthorpej 	struct attr *a;
3545ecc953bSthorpej 
3555ecc953bSthorpej 	if ((a = getattr(attr)) == NULL)
3565ecc953bSthorpej 		return (0);
3575ecc953bSthorpej 
3584caf067bSdholland 	for (; al != NULL; al = al->al_next)
3594caf067bSdholland 		if (al->al_this == a)
3605ecc953bSthorpej 			return (1);
3615ecc953bSthorpej 	return (0);
3625ecc953bSthorpej }
3635ecc953bSthorpej 
3645ecc953bSthorpej /*
3655ecc953bSthorpej  * Add a device base to a list in an attribute (actually, to any list).
3665ecc953bSthorpej  * Note that this does not check for duplicates, and does reverse the
3675ecc953bSthorpej  * list order, but no one cares anyway.
3685ecc953bSthorpej  */
3695ecc953bSthorpej static struct nvlist *
3705ecc953bSthorpej addtoattr(struct nvlist *l, struct devbase *dev)
3715ecc953bSthorpej {
3725ecc953bSthorpej 	struct nvlist *n;
3735ecc953bSthorpej 
3745ecc953bSthorpej 	n = newnv(NULL, NULL, dev, 0, l);
3755ecc953bSthorpej 	return (n);
3765ecc953bSthorpej }
3775ecc953bSthorpej 
3785ecc953bSthorpej /*
3795ecc953bSthorpej  * Define a device.  This may (or may not) also define an interface
3805ecc953bSthorpej  * attribute and/or refer to existing attributes.
3815ecc953bSthorpej  */
3825ecc953bSthorpej void
38316a8771bSdholland defdev(struct devbase *dev, struct loclist *loclist, struct attrlist *attrs,
3845ecc953bSthorpej        int ispseudo)
3855ecc953bSthorpej {
38616a8771bSdholland 	struct loclist *ll;
3874caf067bSdholland 	struct attrlist *al;
3885ecc953bSthorpej 	struct attr *a;
3895ecc953bSthorpej 
3905ecc953bSthorpej 	if (dev == &errdev)
3915ecc953bSthorpej 		goto bad;
3925ecc953bSthorpej 	if (dev->d_isdef) {
393c7295a4cSchristos 		cfgerror("redefinition of `%s'", dev->d_name);
3945ecc953bSthorpej 		goto bad;
3955ecc953bSthorpej 	}
3965ecc953bSthorpej 
3975ecc953bSthorpej 	dev->d_isdef = 1;
3985ecc953bSthorpej 	if (has_errobj(attrs, &errattr))
3995ecc953bSthorpej 		goto bad;
4005ecc953bSthorpej 
4015ecc953bSthorpej 	/*
4025ecc953bSthorpej 	 * Handle implicit attribute definition from locator list.  Do
4035ecc953bSthorpej 	 * this before scanning the `at' list so that we can have, e.g.:
4045ecc953bSthorpej 	 *	device foo at other, foo { slot = -1 }
4055ecc953bSthorpej 	 * (where you can plug in a foo-bus extender to a foo-bus).
4065ecc953bSthorpej 	 */
4075ecc953bSthorpej 	if (loclist != NULL) {
40816a8771bSdholland 		ll = loclist;
4095ecc953bSthorpej 		loclist = NULL;	/* defattr disposes of them for us */
410bb4307a6Suebayasi 		if (defiattr(dev->d_name, ll, NULL, 0))
4115ecc953bSthorpej 			goto bad;
4124caf067bSdholland 		attrs = attrlist_cons(attrs, getattr(dev->d_name));
4134caf067bSdholland 		/* This used to be stored but was never used */
4144caf067bSdholland 		/* attrs->al_name = dev->d_name; */
415c454f920Scube 	}
416c454f920Scube 
417c130d400Scube 	/*
418c130d400Scube 	 * Pseudo-devices can have children.  Consider them as
419c130d400Scube 	 * attaching at root.
420c130d400Scube 	 */
421c454f920Scube 	if (ispseudo) {
4224caf067bSdholland 		for (al = attrs; al != NULL; al = al->al_next)
4234caf067bSdholland 			if (al->al_this->a_iattr)
424c454f920Scube 				break;
4254caf067bSdholland 		if (al != NULL) {
426b66156c7Sdrochner 			if (ispseudo < 2) {
427b66156c7Sdrochner 				if (version >= 20080610)
428b66156c7Sdrochner 					cfgerror("interface attribute on "
429b66156c7Sdrochner 					 "non-device pseudo `%s'", dev->d_name);
430b66156c7Sdrochner 				else {
431b66156c7Sdrochner 					ispseudo = 2;
432b66156c7Sdrochner 				}
433b66156c7Sdrochner 			}
434c130d400Scube 			ht_insert(devroottab, dev->d_name, dev);
4355ecc953bSthorpej 		}
436b66156c7Sdrochner 	}
4375ecc953bSthorpej 
4385ecc953bSthorpej 	/* Committed!  Set up fields. */
4395ecc953bSthorpej 	dev->d_ispseudo = ispseudo;
4405ecc953bSthorpej 	dev->d_attrs = attrs;
4415ecc953bSthorpej 	dev->d_classattr = NULL;		/* for now */
4425ecc953bSthorpej 
4435ecc953bSthorpej 	/*
4445ecc953bSthorpej 	 * For each interface attribute this device refers to, add this
4455ecc953bSthorpej 	 * device to its reference list.  This makes, e.g., finding all
4465ecc953bSthorpej 	 * "scsi"s easier.
4475ecc953bSthorpej 	 *
4485ecc953bSthorpej 	 * While looking through the attributes, set up the device
4495ecc953bSthorpej 	 * class if any are devclass attributes (and error out if the
4505ecc953bSthorpej 	 * device has two classes).
4515ecc953bSthorpej 	 */
4524caf067bSdholland 	for (al = attrs; al != NULL; al = al->al_next) {
4534caf067bSdholland 		a = al->al_this;
4545ecc953bSthorpej 		if (a->a_iattr)
4555ecc953bSthorpej 			a->a_refs = addtoattr(a->a_refs, dev);
4565ecc953bSthorpej 		if (a->a_devclass != NULL) {
4575ecc953bSthorpej 			if (dev->d_classattr != NULL) {
458c7295a4cSchristos 				cfgerror("device `%s' has multiple classes "
459c7295a4cSchristos 				    "(`%s' and `%s')",
4605ecc953bSthorpej 				    dev->d_name, dev->d_classattr->a_name,
4615ecc953bSthorpej 				    a->a_name);
4625ecc953bSthorpej 			}
4635ecc953bSthorpej 			dev->d_classattr = a;
4645ecc953bSthorpej 		}
4655ecc953bSthorpej 	}
4665ecc953bSthorpej 	return;
4675ecc953bSthorpej  bad:
46816a8771bSdholland 	loclist_destroy(loclist);
4694caf067bSdholland 	attrlist_destroyall(attrs);
4705ecc953bSthorpej }
4715ecc953bSthorpej 
4725ecc953bSthorpej /*
4735ecc953bSthorpej  * Look up a devbase.  Also makes sure it is a reasonable name,
4745ecc953bSthorpej  * i.e., does not end in a digit or contain special characters.
4755ecc953bSthorpej  */
4765ecc953bSthorpej struct devbase *
4775ecc953bSthorpej getdevbase(const char *name)
4785ecc953bSthorpej {
479c7295a4cSchristos 	const u_char *p;
4805ecc953bSthorpej 	struct devbase *dev;
4815ecc953bSthorpej 
482c7295a4cSchristos 	p = (const u_char *)name;
4835ecc953bSthorpej 	if (!isalpha(*p))
4845ecc953bSthorpej 		goto badname;
4855ecc953bSthorpej 	while (*++p) {
4865ecc953bSthorpej 		if (!isalnum(*p) && *p != '_')
4875ecc953bSthorpej 			goto badname;
4885ecc953bSthorpej 	}
4895ecc953bSthorpej 	if (isdigit(*--p)) {
4905ecc953bSthorpej  badname:
491c7295a4cSchristos 		cfgerror("bad device base name `%s'", name);
4925ecc953bSthorpej 		return (&errdev);
4935ecc953bSthorpej 	}
4945ecc953bSthorpej 	dev = ht_lookup(devbasetab, name);
4955ecc953bSthorpej 	if (dev == NULL) {
4965ecc953bSthorpej 		dev = ecalloc(1, sizeof *dev);
4975ecc953bSthorpej 		dev->d_name = name;
4985ecc953bSthorpej 		dev->d_isdef = 0;
499d767912bSdrochner 		dev->d_major = NODEVMAJOR;
5005ecc953bSthorpej 		dev->d_attrs = NULL;
5015ecc953bSthorpej 		dev->d_ihead = NULL;
5025ecc953bSthorpej 		dev->d_ipp = &dev->d_ihead;
5035ecc953bSthorpej 		dev->d_ahead = NULL;
5045ecc953bSthorpej 		dev->d_app = &dev->d_ahead;
5055ecc953bSthorpej 		dev->d_umax = 0;
5065ecc953bSthorpej 		TAILQ_INSERT_TAIL(&allbases, dev, d_next);
5075ecc953bSthorpej 		if (ht_insert(devbasetab, name, dev))
5085ecc953bSthorpej 			panic("getdevbase(%s)", name);
5095ecc953bSthorpej 	}
5105ecc953bSthorpej 	return (dev);
5115ecc953bSthorpej }
5125ecc953bSthorpej 
5135ecc953bSthorpej /*
5145ecc953bSthorpej  * Define some of a device's allowable parent attachments.
5155ecc953bSthorpej  * There may be a list of (plain) attributes.
5165ecc953bSthorpej  */
5175ecc953bSthorpej void
5185ecc953bSthorpej defdevattach(struct deva *deva, struct devbase *dev, struct nvlist *atlist,
5194caf067bSdholland 	     struct attrlist *attrs)
5205ecc953bSthorpej {
5215ecc953bSthorpej 	struct nvlist *nv;
5224caf067bSdholland 	struct attrlist *al;
5235ecc953bSthorpej 	struct attr *a;
5245ecc953bSthorpej 	struct deva *da;
5255ecc953bSthorpej 
5265ecc953bSthorpej 	if (dev == &errdev)
5275ecc953bSthorpej 		goto bad;
5285ecc953bSthorpej 	if (deva == NULL)
5295ecc953bSthorpej 		deva = getdevattach(dev->d_name);
5305ecc953bSthorpej 	if (deva == &errdeva)
5315ecc953bSthorpej 		goto bad;
5325ecc953bSthorpej 	if (!dev->d_isdef) {
533c7295a4cSchristos 		cfgerror("attaching undefined device `%s'", dev->d_name);
5345ecc953bSthorpej 		goto bad;
5355ecc953bSthorpej 	}
5365ecc953bSthorpej 	if (deva->d_isdef) {
537c7295a4cSchristos 		cfgerror("redefinition of `%s'", deva->d_name);
5385ecc953bSthorpej 		goto bad;
5395ecc953bSthorpej 	}
5405ecc953bSthorpej 	if (dev->d_ispseudo) {
541c7295a4cSchristos 		cfgerror("pseudo-devices can't attach");
5425ecc953bSthorpej 		goto bad;
5435ecc953bSthorpej 	}
5445ecc953bSthorpej 
5455ecc953bSthorpej 	deva->d_isdef = 1;
5465ecc953bSthorpej 	if (has_errobj(attrs, &errattr))
5475ecc953bSthorpej 		goto bad;
5484caf067bSdholland 	for (al = attrs; al != NULL; al = al->al_next) {
5494caf067bSdholland 		a = al->al_this;
5505ecc953bSthorpej 		if (a == &errattr)
5515ecc953bSthorpej 			continue;		/* already complained */
5525ecc953bSthorpej 		if (a->a_iattr || a->a_devclass != NULL)
553c7295a4cSchristos 			cfgerror("`%s' is not a plain attribute", a->a_name);
5545ecc953bSthorpej 	}
5555ecc953bSthorpej 
5565ecc953bSthorpej 	/* Committed!  Set up fields. */
5575ecc953bSthorpej 	deva->d_attrs = attrs;
5585ecc953bSthorpej 	deva->d_atlist = atlist;
5595ecc953bSthorpej 	deva->d_devbase = dev;
560*2f2f3382Suebayasi 	CFGDBG(3, "deva `%s' defined", deva->d_name);
561*2f2f3382Suebayasi 
562*2f2f3382Suebayasi 	/*
563*2f2f3382Suebayasi 	 * Implicit attribute definition.
564*2f2f3382Suebayasi 	 */
565*2f2f3382Suebayasi 	refattr(deva->d_name);
5665ecc953bSthorpej 
5675ecc953bSthorpej 	/*
5685ecc953bSthorpej 	 * Turn the `at' list into interface attributes (map each
5695ecc953bSthorpej 	 * nv_name to an attribute, or to NULL for root), and add
5705ecc953bSthorpej 	 * this device to those attributes, so that children can
5715ecc953bSthorpej 	 * be listed at this particular device if they are supported
5725ecc953bSthorpej 	 * by that attribute.
5735ecc953bSthorpej 	 */
5745ecc953bSthorpej 	for (nv = atlist; nv != NULL; nv = nv->nv_next) {
5755ecc953bSthorpej 		if (nv->nv_name == NULL)
5765ecc953bSthorpej 			nv->nv_ptr = a = NULL;	/* at root */
5775ecc953bSthorpej 		else
5785ecc953bSthorpej 			nv->nv_ptr = a = getattr(nv->nv_name);
5795ecc953bSthorpej 		if (a == &errattr)
5805ecc953bSthorpej 			continue;		/* already complained */
5815ecc953bSthorpej 
5825ecc953bSthorpej 		/*
5835ecc953bSthorpej 		 * Make sure that an attachment spec doesn't
5845ecc953bSthorpej 		 * already say how to attach to this attribute.
5855ecc953bSthorpej 		 */
5865ecc953bSthorpej 		for (da = dev->d_ahead; da != NULL; da = da->d_bsame)
5875ecc953bSthorpej 			if (onlist(da->d_atlist, a))
588c7295a4cSchristos 				cfgerror("attach at `%s' already done by `%s'",
5895ecc953bSthorpej 				     a ? a->a_name : "root", da->d_name);
5905ecc953bSthorpej 
591c130d400Scube 		if (a == NULL) {
592c130d400Scube 			ht_insert(devroottab, dev->d_name, dev);
5935ecc953bSthorpej 			continue;		/* at root; don't add */
594c130d400Scube 		}
5955ecc953bSthorpej 		if (!a->a_iattr)
596c7295a4cSchristos 			cfgerror("%s cannot be at plain attribute `%s'",
5975ecc953bSthorpej 			    dev->d_name, a->a_name);
5985ecc953bSthorpej 		else
5995ecc953bSthorpej 			a->a_devs = addtoattr(a->a_devs, dev);
6005ecc953bSthorpej 	}
6015ecc953bSthorpej 
6025ecc953bSthorpej 	/* attach to parent */
6035ecc953bSthorpej 	*dev->d_app = deva;
6045ecc953bSthorpej 	dev->d_app = &deva->d_bsame;
6055ecc953bSthorpej 	return;
6065ecc953bSthorpej  bad:
6075ecc953bSthorpej 	nvfreel(atlist);
6084caf067bSdholland 	attrlist_destroyall(attrs);
6095ecc953bSthorpej }
6105ecc953bSthorpej 
6115ecc953bSthorpej /*
6125ecc953bSthorpej  * Look up a device attachment.  Also makes sure it is a reasonable
6135ecc953bSthorpej  * name, i.e., does not contain digits or special characters.
6145ecc953bSthorpej  */
6155ecc953bSthorpej struct deva *
6165ecc953bSthorpej getdevattach(const char *name)
6175ecc953bSthorpej {
618c7295a4cSchristos 	const u_char *p;
6195ecc953bSthorpej 	struct deva *deva;
6205ecc953bSthorpej 
621c7295a4cSchristos 	p = (const u_char *)name;
6225ecc953bSthorpej 	if (!isalpha(*p))
6235ecc953bSthorpej 		goto badname;
6245ecc953bSthorpej 	while (*++p) {
6255ecc953bSthorpej 		if (!isalnum(*p) && *p != '_')
6265ecc953bSthorpej 			goto badname;
6275ecc953bSthorpej 	}
6285ecc953bSthorpej 	if (isdigit(*--p)) {
6295ecc953bSthorpej  badname:
630c7295a4cSchristos 		cfgerror("bad device attachment name `%s'", name);
6315ecc953bSthorpej 		return (&errdeva);
6325ecc953bSthorpej 	}
6335ecc953bSthorpej 	deva = ht_lookup(devatab, name);
6345ecc953bSthorpej 	if (deva == NULL) {
6355ecc953bSthorpej 		deva = ecalloc(1, sizeof *deva);
6365ecc953bSthorpej 		deva->d_name = name;
6375ecc953bSthorpej 		deva->d_bsame = NULL;
6385ecc953bSthorpej 		deva->d_isdef = 0;
6395ecc953bSthorpej 		deva->d_devbase = NULL;
6405ecc953bSthorpej 		deva->d_atlist = NULL;
6415ecc953bSthorpej 		deva->d_attrs = NULL;
6425ecc953bSthorpej 		deva->d_ihead = NULL;
6435ecc953bSthorpej 		deva->d_ipp = &deva->d_ihead;
6445ecc953bSthorpej 		TAILQ_INSERT_TAIL(&alldevas, deva, d_next);
6455ecc953bSthorpej 		if (ht_insert(devatab, name, deva))
6465ecc953bSthorpej 			panic("getdeva(%s)", name);
6475ecc953bSthorpej 	}
6485ecc953bSthorpej 	return (deva);
6495ecc953bSthorpej }
6505ecc953bSthorpej 
6515ecc953bSthorpej /*
6525ecc953bSthorpej  * Look up an attribute.
6535ecc953bSthorpej  */
6545ecc953bSthorpej struct attr *
6555ecc953bSthorpej getattr(const char *name)
6565ecc953bSthorpej {
6575ecc953bSthorpej 	struct attr *a;
6585ecc953bSthorpej 
6595ecc953bSthorpej 	if ((a = ht_lookup(attrtab, name)) == NULL) {
660c7295a4cSchristos 		cfgerror("undefined attribute `%s'", name);
6615ecc953bSthorpej 		a = &errattr;
6625ecc953bSthorpej 	}
6635ecc953bSthorpej 	return (a);
6645ecc953bSthorpej }
6655ecc953bSthorpej 
6665ecc953bSthorpej /*
667*2f2f3382Suebayasi  * Implicit attribute definition.
668*2f2f3382Suebayasi  */
669*2f2f3382Suebayasi void
670*2f2f3382Suebayasi refattr(const char *name)
671*2f2f3382Suebayasi {
672*2f2f3382Suebayasi 
673*2f2f3382Suebayasi 	if ((ht_lookup(attrtab, name)) == NULL)
674*2f2f3382Suebayasi 		(void)mkattr(name);
675*2f2f3382Suebayasi }
676*2f2f3382Suebayasi 
677*2f2f3382Suebayasi /*
6785ecc953bSthorpej  * Recursively expand an attribute and its dependencies, checking for
6795ecc953bSthorpej  * cycles, and invoking a callback for each attribute found.
6805ecc953bSthorpej  */
6815ecc953bSthorpej void
6825ecc953bSthorpej expandattr(struct attr *a, void (*callback)(struct attr *))
6835ecc953bSthorpej {
6844caf067bSdholland 	struct attrlist *al;
6855ecc953bSthorpej 	struct attr *dep;
6865ecc953bSthorpej 
6875ecc953bSthorpej 	if (a->a_expanding) {
688c7295a4cSchristos 		cfgerror("circular dependency on attribute `%s'", a->a_name);
6895ecc953bSthorpej 		return;
6905ecc953bSthorpej 	}
6915ecc953bSthorpej 
6925ecc953bSthorpej 	a->a_expanding = 1;
6935ecc953bSthorpej 
6945ecc953bSthorpej 	/* First expand all of this attribute's dependencies. */
6954caf067bSdholland 	for (al = a->a_deps; al != NULL; al = al->al_next) {
6964caf067bSdholland 		dep = al->al_this;
6975ecc953bSthorpej 		expandattr(dep, callback);
6985ecc953bSthorpej 	}
6995ecc953bSthorpej 
7005ecc953bSthorpej 	/* ...and now invoke the callback for ourself. */
7015ecc953bSthorpej 	if (callback != NULL)
7025ecc953bSthorpej 		(*callback)(a);
7035ecc953bSthorpej 
7045ecc953bSthorpej 	a->a_expanding = 0;
7055ecc953bSthorpej }
7065ecc953bSthorpej 
7075ecc953bSthorpej /*
7085ecc953bSthorpej  * Set the major device number for a device, so that it can be used
7095ecc953bSthorpej  * as a root/dumps "on" device in a configuration.
7105ecc953bSthorpej  */
7115ecc953bSthorpej void
712d767912bSdrochner setmajor(struct devbase *d, devmajor_t n)
7135ecc953bSthorpej {
7145ecc953bSthorpej 
715d767912bSdrochner 	if (d != &errdev && d->d_major != NODEVMAJOR)
716d767912bSdrochner 		cfgerror("device `%s' is already major %d",
717d767912bSdrochner 		    d->d_name, d->d_major);
7185ecc953bSthorpej 	else
7195ecc953bSthorpej 		d->d_major = n;
7205ecc953bSthorpej }
7215ecc953bSthorpej 
7225ecc953bSthorpej const char *
723d767912bSdrochner major2name(devmajor_t maj)
7245ecc953bSthorpej {
7255ecc953bSthorpej 	struct devbase *dev;
7265ecc953bSthorpej 	struct devm *dm;
7275ecc953bSthorpej 
7285ecc953bSthorpej 	if (!do_devsw) {
7295ecc953bSthorpej 		TAILQ_FOREACH(dev, &allbases, d_next) {
7305ecc953bSthorpej 			if (dev->d_major == maj)
7315ecc953bSthorpej 				return (dev->d_name);
7325ecc953bSthorpej 		}
7335ecc953bSthorpej 	} else {
7345ecc953bSthorpej 		TAILQ_FOREACH(dm, &alldevms, dm_next) {
7355ecc953bSthorpej 			if (dm->dm_bmajor == maj)
7365ecc953bSthorpej 				return (dm->dm_name);
7375ecc953bSthorpej 		}
7385ecc953bSthorpej 	}
7395ecc953bSthorpej 	return (NULL);
7405ecc953bSthorpej }
7415ecc953bSthorpej 
742d767912bSdrochner devmajor_t
7435ecc953bSthorpej dev2major(struct devbase *dev)
7445ecc953bSthorpej {
7455ecc953bSthorpej 	struct devm *dm;
7465ecc953bSthorpej 
7475ecc953bSthorpej 	if (!do_devsw)
7485ecc953bSthorpej 		return (dev->d_major);
7495ecc953bSthorpej 
7505ecc953bSthorpej 	TAILQ_FOREACH(dm, &alldevms, dm_next) {
7515ecc953bSthorpej 		if (strcmp(dm->dm_name, dev->d_name) == 0)
7525ecc953bSthorpej 			return (dm->dm_bmajor);
7535ecc953bSthorpej 	}
754d767912bSdrochner 	return (NODEVMAJOR);
7555ecc953bSthorpej }
7565ecc953bSthorpej 
7575ecc953bSthorpej /*
7585ecc953bSthorpej  * Make a string description of the device at maj/min.
7595ecc953bSthorpej  */
7605ecc953bSthorpej static const char *
761d767912bSdrochner makedevstr(devmajor_t maj, devminor_t min)
7625ecc953bSthorpej {
763c7295a4cSchristos 	const char *devicename;
7645ecc953bSthorpej 	char buf[32];
7655ecc953bSthorpej 
766c7295a4cSchristos 	devicename = major2name(maj);
767c7295a4cSchristos 	if (devicename == NULL)
768d767912bSdrochner 		(void)snprintf(buf, sizeof(buf), "<%d/%d>", maj, min);
7695ecc953bSthorpej 	else
770d767912bSdrochner 		(void)snprintf(buf, sizeof(buf), "%s%d%c", devicename,
771d767912bSdrochner 		    min / maxpartitions, (min % maxpartitions) + 'a');
7725ecc953bSthorpej 
7735ecc953bSthorpej 	return (intern(buf));
7745ecc953bSthorpej }
7755ecc953bSthorpej 
7765ecc953bSthorpej /*
7775ecc953bSthorpej  * Map things like "ra0b" => makedev(major("ra"), 0*maxpartitions + 'b'-'a').
7785ecc953bSthorpej  * Handle the case where the device number is given but there is no
7795ecc953bSthorpej  * corresponding name, and map NULL to the default.
7805ecc953bSthorpej  */
7815ecc953bSthorpej static int
7825ecc953bSthorpej resolve(struct nvlist **nvp, const char *name, const char *what,
7835ecc953bSthorpej 	struct nvlist *dflt, int part)
7845ecc953bSthorpej {
7855ecc953bSthorpej 	struct nvlist *nv;
7865ecc953bSthorpej 	struct devbase *dev;
7875ecc953bSthorpej 	const char *cp;
788d767912bSdrochner 	devmajor_t maj;
789d767912bSdrochner 	devminor_t min;
7900001b928Schristos 	int i, l;
7915ecc953bSthorpej 	int unit;
7925ecc953bSthorpej 	char buf[NAMESIZE];
7935ecc953bSthorpej 
7945cc303e1Slukem 	if ((part -= 'a') >= maxpartitions || part < 0)
7955ecc953bSthorpej 		panic("resolve");
7965ecc953bSthorpej 	if ((nv = *nvp) == NULL) {
7975ecc953bSthorpej 		dev_t	d = NODEV;
7985ecc953bSthorpej 		/*
7995ecc953bSthorpej 		 * Apply default.  Easiest to do this by number.
8005ecc953bSthorpej 		 * Make sure to retain NODEVness, if this is dflt's disposition.
8015ecc953bSthorpej 		 */
8025cc303e1Slukem 		if ((dev_t)dflt->nv_num != NODEV) {
8030001b928Schristos 			maj = major(dflt->nv_num);
8040001b928Schristos 			min = ((minor(dflt->nv_num) / maxpartitions) *
8055ecc953bSthorpej 			    maxpartitions) + part;
8065ecc953bSthorpej 			d = makedev(maj, min);
8075ecc953bSthorpej 			cp = makedevstr(maj, min);
8085ecc953bSthorpej 		} else
8095ecc953bSthorpej 			cp = NULL;
8105ecc953bSthorpej 		*nvp = nv = newnv(NULL, cp, NULL, d, NULL);
8115ecc953bSthorpej 	}
8125cc303e1Slukem 	if ((dev_t)nv->nv_num != NODEV) {
8135ecc953bSthorpej 		/*
8145ecc953bSthorpej 		 * By the numbers.  Find the appropriate major number
8155ecc953bSthorpej 		 * to make a name.
8165ecc953bSthorpej 		 */
8170001b928Schristos 		maj = major(nv->nv_num);
8180001b928Schristos 		min = minor(nv->nv_num);
8195ecc953bSthorpej 		nv->nv_str = makedevstr(maj, min);
8205ecc953bSthorpej 		return (0);
8215ecc953bSthorpej 	}
8225ecc953bSthorpej 
8235ecc953bSthorpej 	if (nv->nv_str == NULL || nv->nv_str == s_qmark)
8245ecc953bSthorpej 		/*
8255ecc953bSthorpej 		 * Wildcarded or unspecified; leave it as NODEV.
8265ecc953bSthorpej 		 */
8275ecc953bSthorpej 		return (0);
8285ecc953bSthorpej 
8295ecc953bSthorpej 	/*
8305ecc953bSthorpej 	 * The normal case: things like "ra2b".  Check for partition
8315ecc953bSthorpej 	 * suffix, remove it if there, and split into name ("ra") and
8325ecc953bSthorpej 	 * unit (2).
8335ecc953bSthorpej 	 */
8345ecc953bSthorpej 	l = i = strlen(nv->nv_str);
8355ecc953bSthorpej 	cp = &nv->nv_str[l];
8365ecc953bSthorpej 	if (l > 1 && *--cp >= 'a' && *cp < 'a' + maxpartitions &&
8375ecc953bSthorpej 	    isdigit((unsigned char)cp[-1])) {
8385ecc953bSthorpej 		l--;
8395ecc953bSthorpej 		part = *cp - 'a';
8405ecc953bSthorpej 	}
8415ecc953bSthorpej 	cp = nv->nv_str;
8425ecc953bSthorpej 	if (split(cp, l, buf, sizeof buf, &unit)) {
843c7295a4cSchristos 		cfgerror("%s: invalid %s device name `%s'", name, what, cp);
8445ecc953bSthorpej 		return (1);
8455ecc953bSthorpej 	}
8465ecc953bSthorpej 	dev = ht_lookup(devbasetab, intern(buf));
8475ecc953bSthorpej 	if (dev == NULL) {
848c7295a4cSchristos 		cfgerror("%s: device `%s' does not exist", name, buf);
8495ecc953bSthorpej 		return (1);
8505ecc953bSthorpej 	}
8515ecc953bSthorpej 
8525ecc953bSthorpej 	/*
8535ecc953bSthorpej 	 * Check for the magic network interface attribute, and
8545ecc953bSthorpej 	 * don't bother making a device number.
8555ecc953bSthorpej 	 */
8565ecc953bSthorpej 	if (has_attr(dev->d_attrs, s_ifnet)) {
8570001b928Schristos 		nv->nv_num = NODEV;
8585ecc953bSthorpej 		nv->nv_ifunit = unit;	/* XXX XXX XXX */
8595ecc953bSthorpej 	} else {
8605ecc953bSthorpej 		maj = dev2major(dev);
8615cc303e1Slukem 		if (maj == NODEVMAJOR) {
862c7295a4cSchristos 			cfgerror("%s: can't make %s device from `%s'",
8635ecc953bSthorpej 			    name, what, nv->nv_str);
8645ecc953bSthorpej 			return (1);
8655ecc953bSthorpej 		}
8660001b928Schristos 		nv->nv_num = makedev(maj, unit * maxpartitions + part);
8675ecc953bSthorpej 	}
8685ecc953bSthorpej 
8695ecc953bSthorpej 	nv->nv_name = dev->d_name;
8705ecc953bSthorpej 	return (0);
8715ecc953bSthorpej }
8725ecc953bSthorpej 
8735ecc953bSthorpej /*
8745ecc953bSthorpej  * Add a completed configuration to the list.
8755ecc953bSthorpej  */
8765ecc953bSthorpej void
8775ecc953bSthorpej addconf(struct config *cf0)
8785ecc953bSthorpej {
8795ecc953bSthorpej 	struct config *cf;
8805ecc953bSthorpej 	const char *name;
8815ecc953bSthorpej 
8825ecc953bSthorpej 	name = cf0->cf_name;
8835ecc953bSthorpej 	cf = ecalloc(1, sizeof *cf);
8845ecc953bSthorpej 	if (ht_insert(cfhashtab, name, cf)) {
885c7295a4cSchristos 		cfgerror("configuration `%s' already defined", name);
8865ecc953bSthorpej 		free(cf);
8875ecc953bSthorpej 		goto bad;
8885ecc953bSthorpej 	}
8895ecc953bSthorpej 	*cf = *cf0;
8905ecc953bSthorpej 
8915ecc953bSthorpej 	/*
8925ecc953bSthorpej 	 * Resolve the root device.
8935ecc953bSthorpej 	 */
894cd429362Serh 	if (cf->cf_root == NULL) {
895c7295a4cSchristos 		cfgerror("%s: no root device specified", name);
8965ecc953bSthorpej 		goto bad;
8975ecc953bSthorpej 	}
898cd429362Serh 	if (cf->cf_root && cf->cf_root->nv_str != s_qmark) {
899cd429362Serh 		struct nvlist *nv;
900cd429362Serh 		nv = cf->cf_root;
9015ecc953bSthorpej 		if (resolve(&cf->cf_root, name, "root", nv, 'a'))
9025ecc953bSthorpej 			goto bad;
9035ecc953bSthorpej 	}
9045ecc953bSthorpej 
9055ecc953bSthorpej 	/*
9065ecc953bSthorpej 	 * Resolve the dump device.
9075ecc953bSthorpej 	 */
9085ecc953bSthorpej 	if (cf->cf_dump == NULL || cf->cf_dump->nv_str == s_qmark) {
9095ecc953bSthorpej 		/*
9105ecc953bSthorpej 		 * Wildcarded dump device is equivalent to unspecified.
9115ecc953bSthorpej 		 */
9125ecc953bSthorpej 		cf->cf_dump = NULL;
9135ecc953bSthorpej 	} else if (cf->cf_dump->nv_str == s_none) {
9145ecc953bSthorpej 		/*
9155ecc953bSthorpej 		 * Operator has requested that no dump device should be
9165ecc953bSthorpej 		 * configured; do nothing.
9175ecc953bSthorpej 		 */
9185ecc953bSthorpej 	} else {
9195ecc953bSthorpej 		if (resolve(&cf->cf_dump, name, "dumps", cf->cf_dump, 'b'))
9205ecc953bSthorpej 			goto bad;
9215ecc953bSthorpej 	}
9225ecc953bSthorpej 
9235ecc953bSthorpej 	/* Wildcarded fstype is `unspecified'. */
9245ecc953bSthorpej 	if (cf->cf_fstype == s_qmark)
9255ecc953bSthorpej 		cf->cf_fstype = NULL;
9265ecc953bSthorpej 
9275ecc953bSthorpej 	TAILQ_INSERT_TAIL(&allcf, cf, cf_next);
9285ecc953bSthorpej 	return;
9295ecc953bSthorpej  bad:
9305ecc953bSthorpej 	nvfreel(cf0->cf_root);
9315ecc953bSthorpej 	nvfreel(cf0->cf_dump);
9325ecc953bSthorpej }
9335ecc953bSthorpej 
9345ecc953bSthorpej void
9355ecc953bSthorpej setconf(struct nvlist **npp, const char *what, struct nvlist *v)
9365ecc953bSthorpej {
9375ecc953bSthorpej 
9385ecc953bSthorpej 	if (*npp != NULL) {
939c7295a4cSchristos 		cfgerror("duplicate %s specification", what);
9405ecc953bSthorpej 		nvfreel(v);
9415ecc953bSthorpej 	} else
9425ecc953bSthorpej 		*npp = v;
9435ecc953bSthorpej }
9445ecc953bSthorpej 
9455ecc953bSthorpej void
94642b52b8aScube delconf(const char *name)
94742b52b8aScube {
94842b52b8aScube 	struct config *cf;
94942b52b8aScube 
95042b52b8aScube 	if (ht_lookup(cfhashtab, name) == NULL) {
951c7295a4cSchristos 		cfgerror("configuration `%s' undefined", name);
95242b52b8aScube 		return;
95342b52b8aScube 	}
95442b52b8aScube 	(void)ht_remove(cfhashtab, name);
95542b52b8aScube 
95642b52b8aScube 	TAILQ_FOREACH(cf, &allcf, cf_next)
95742b52b8aScube 		if (!strcmp(cf->cf_name, name))
95842b52b8aScube 			break;
95942b52b8aScube 	if (cf == NULL)
96042b52b8aScube 		panic("lost configuration `%s'", name);
96142b52b8aScube 
96242b52b8aScube 	TAILQ_REMOVE(&allcf, cf, cf_next);
96342b52b8aScube }
96442b52b8aScube 
96542b52b8aScube void
9665ecc953bSthorpej setfstype(const char **fstp, const char *v)
9675ecc953bSthorpej {
9685ecc953bSthorpej 
9695ecc953bSthorpej 	if (*fstp != NULL) {
970c7295a4cSchristos 		cfgerror("multiple fstype specifications");
9715ecc953bSthorpej 		return;
9725ecc953bSthorpej 	}
9735ecc953bSthorpej 
9745ecc953bSthorpej 	if (v != s_qmark && OPT_FSOPT(v)) {
975c7295a4cSchristos 		cfgerror("\"%s\" is not a configured file system", v);
9765ecc953bSthorpej 		return;
9775ecc953bSthorpej 	}
9785ecc953bSthorpej 
9795ecc953bSthorpej 	*fstp = v;
9805ecc953bSthorpej }
9815ecc953bSthorpej 
9825ecc953bSthorpej static struct devi *
9835ecc953bSthorpej newdevi(const char *name, int unit, struct devbase *d)
9845ecc953bSthorpej {
9855ecc953bSthorpej 	struct devi *i;
9865ecc953bSthorpej 
9875ecc953bSthorpej 	i = ecalloc(1, sizeof *i);
9885ecc953bSthorpej 	i->i_name = name;
9895ecc953bSthorpej 	i->i_unit = unit;
9905ecc953bSthorpej 	i->i_base = d;
9915ecc953bSthorpej 	i->i_bsame = NULL;
9925ecc953bSthorpej 	i->i_asame = NULL;
9935ecc953bSthorpej 	i->i_alias = NULL;
9945ecc953bSthorpej 	i->i_at = NULL;
9955ecc953bSthorpej 	i->i_pspec = NULL;
9965ecc953bSthorpej 	i->i_atdeva = NULL;
9975ecc953bSthorpej 	i->i_locs = NULL;
9985ecc953bSthorpej 	i->i_cfflags = 0;
9995ecc953bSthorpej 	i->i_lineno = currentline();
10000dbd1c0eScube 	i->i_srcfile = yyfile;
10017aa6070dScube 	i->i_active = DEVI_ORPHAN; /* Proper analysis comes later */
1002a31ff6b4Scube 	i->i_level = devilevel;
100390ac64deSpooka 	i->i_pseudoroot = 0;
10045ecc953bSthorpej 	if (unit >= d->d_umax)
10055ecc953bSthorpej 		d->d_umax = unit + 1;
10065ecc953bSthorpej 	return (i);
10075ecc953bSthorpej }
10085ecc953bSthorpej 
10095ecc953bSthorpej /*
10105ecc953bSthorpej  * Add the named device as attaching to the named attribute (or perhaps
10115ecc953bSthorpej  * another device instead) plus unit number.
10125ecc953bSthorpej  */
10135ecc953bSthorpej void
101416a8771bSdholland adddev(const char *name, const char *at, struct loclist *loclist, int flags)
10155ecc953bSthorpej {
10165ecc953bSthorpej 	struct devi *i;		/* the new instance */
10175ecc953bSthorpej 	struct pspec *p;	/* and its pspec */
10185ecc953bSthorpej 	struct attr *attr;	/* attribute that allows attach */
10195ecc953bSthorpej 	struct devbase *ib;	/* i->i_base */
10205ecc953bSthorpej 	struct devbase *ab;	/* not NULL => at another dev */
10214caf067bSdholland 	struct attrlist *al;
10225ecc953bSthorpej 	struct deva *iba;	/* devbase attachment used */
10235ecc953bSthorpej 	const char *cp;
10245ecc953bSthorpej 	int atunit;
10255ecc953bSthorpej 	char atbuf[NAMESIZE];
10265ecc953bSthorpej 	int hit;
10275ecc953bSthorpej 
10285ecc953bSthorpej 	ab = NULL;
10295ecc953bSthorpej 	iba = NULL;
10305ecc953bSthorpej 	if (at == NULL) {
10315ecc953bSthorpej 		/* "at root" */
10325ecc953bSthorpej 		p = NULL;
10335ecc953bSthorpej 		if ((i = getdevi(name)) == NULL)
10345ecc953bSthorpej 			goto bad;
10355ecc953bSthorpej 		/*
10365ecc953bSthorpej 		 * Must warn about i_unit > 0 later, after taking care of
10375ecc953bSthorpej 		 * the STAR cases (we could do non-star's here but why
10385ecc953bSthorpej 		 * bother?).  Make sure this device can be at root.
10395ecc953bSthorpej 		 */
10405ecc953bSthorpej 		ib = i->i_base;
10415ecc953bSthorpej 		hit = 0;
10425ecc953bSthorpej 		for (iba = ib->d_ahead; iba != NULL; iba = iba->d_bsame)
10435ecc953bSthorpej 			if (onlist(iba->d_atlist, NULL)) {
10445ecc953bSthorpej 				hit = 1;
10455ecc953bSthorpej 				break;
10465ecc953bSthorpej 			}
10475ecc953bSthorpej 		if (!hit) {
1048c7295a4cSchristos 			cfgerror("`%s' cannot attach to the root", ib->d_name);
10495ec393e9Scube 			i->i_active = DEVI_BROKEN;
10505ecc953bSthorpej 			goto bad;
10515ecc953bSthorpej 		}
10525ecc953bSthorpej 		attr = &errattr;	/* a convenient "empty" attr */
10535ecc953bSthorpej 	} else {
10545ecc953bSthorpej 		if (split(at, strlen(at), atbuf, sizeof atbuf, &atunit)) {
1055c7295a4cSchristos 			cfgerror("invalid attachment name `%s'", at);
10565ecc953bSthorpej 			/* (void)getdevi(name); -- ??? */
10575ecc953bSthorpej 			goto bad;
10585ecc953bSthorpej 		}
10595ecc953bSthorpej 		if ((i = getdevi(name)) == NULL)
10605ecc953bSthorpej 			goto bad;
10615ecc953bSthorpej 		ib = i->i_base;
10625ecc953bSthorpej 
10635ecc953bSthorpej 		/*
10645ecc953bSthorpej 		 * Devices can attach to two types of things: Attributes,
10655ecc953bSthorpej 		 * and other devices (which have the appropriate attributes
10665ecc953bSthorpej 		 * to allow attachment).
10675ecc953bSthorpej 		 *
10685ecc953bSthorpej 		 * (1) If we're attached to an attribute, then we don't need
10695ecc953bSthorpej 		 *     look at the parent base device to see what attributes
10705ecc953bSthorpej 		 *     it has, and make sure that we can attach to them.
10715ecc953bSthorpej 		 *
10725ecc953bSthorpej 		 * (2) If we're attached to a real device (i.e. named in
10735ecc953bSthorpej 		 *     the config file), we want to remember that so that
10745ecc953bSthorpej 		 *     at cross-check time, if the device we're attached to
10755ecc953bSthorpej 		 *     is missing but other devices which also provide the
10765ecc953bSthorpej 		 *     attribute are present, we don't get a false "OK."
10775ecc953bSthorpej 		 *
10785ecc953bSthorpej 		 * (3) If the thing we're attached to is an attribute
10795ecc953bSthorpej 		 *     but is actually named in the config file, we still
10805ecc953bSthorpej 		 *     have to remember its devbase.
10815ecc953bSthorpej 		 */
10825ecc953bSthorpej 		cp = intern(atbuf);
10835ecc953bSthorpej 
10845ecc953bSthorpej 		/* Figure out parent's devbase, to satisfy case (3). */
10855ecc953bSthorpej 		ab = ht_lookup(devbasetab, cp);
10865ecc953bSthorpej 
10875ecc953bSthorpej 		/* Find out if it's an attribute. */
10885ecc953bSthorpej 		attr = ht_lookup(attrtab, cp);
10895ecc953bSthorpej 
10905ecc953bSthorpej 		/* Make sure we're _really_ attached to the attr.  Case (1). */
10915ecc953bSthorpej 		if (attr != NULL && onlist(attr->a_devs, ib))
10925ecc953bSthorpej 			goto findattachment;
10935ecc953bSthorpej 
10945ecc953bSthorpej 		/*
10955ecc953bSthorpej 		 * Else a real device, and not just an attribute.  Case (2).
10965ecc953bSthorpej 		 *
10975ecc953bSthorpej 		 * Have to work a bit harder to see whether we have
10985ecc953bSthorpej 		 * something like "tg0 at esp0" (where esp is merely
10995ecc953bSthorpej 		 * not an attribute) or "tg0 at nonesuch0" (where
11005ecc953bSthorpej 		 * nonesuch is not even a device).
11015ecc953bSthorpej 		 */
11025ecc953bSthorpej 		if (ab == NULL) {
1103c7295a4cSchristos 			cfgerror("%s at %s: `%s' unknown",
11045ecc953bSthorpej 			    name, at, atbuf);
11055ec393e9Scube 			i->i_active = DEVI_BROKEN;
11065ecc953bSthorpej 			goto bad;
11075ecc953bSthorpej 		}
11085ecc953bSthorpej 
11095ecc953bSthorpej 		/*
11105ecc953bSthorpej 		 * See if the named parent carries an attribute
11115ecc953bSthorpej 		 * that allows it to supervise device ib.
11125ecc953bSthorpej 		 */
11134caf067bSdholland 		for (al = ab->d_attrs; al != NULL; al = al->al_next) {
11144caf067bSdholland 			attr = al->al_this;
11155ecc953bSthorpej 			if (onlist(attr->a_devs, ib))
11165ecc953bSthorpej 				goto findattachment;
11175ecc953bSthorpej 		}
1118c7295a4cSchristos 		cfgerror("`%s' cannot attach to `%s'", ib->d_name, atbuf);
11195ec393e9Scube 		i->i_active = DEVI_BROKEN;
11205ecc953bSthorpej 		goto bad;
11215ecc953bSthorpej 
11225ecc953bSthorpej  findattachment:
11235ecc953bSthorpej 		/*
11245ecc953bSthorpej 		 * Find the parent spec.  If a matching one has not yet been
11255ecc953bSthorpej 		 * created, create one.
11265ecc953bSthorpej 		 */
11275ecc953bSthorpej 		p = getpspec(attr, ab, atunit);
11285ecc953bSthorpej 		p->p_devs = newnv(NULL, NULL, i, 0, p->p_devs);
11295ecc953bSthorpej 
11305ecc953bSthorpej 		/* find out which attachment it uses */
11315ecc953bSthorpej 		hit = 0;
11325ecc953bSthorpej 		for (iba = ib->d_ahead; iba != NULL; iba = iba->d_bsame)
11335ecc953bSthorpej 			if (onlist(iba->d_atlist, attr)) {
11345ecc953bSthorpej 				hit = 1;
11355ecc953bSthorpej 				break;
11365ecc953bSthorpej 			}
11375ecc953bSthorpej 		if (!hit)
11385ecc953bSthorpej 			panic("adddev: can't figure out attachment");
11395ecc953bSthorpej 	}
11405ec393e9Scube 	if ((i->i_locs = fixloc(name, attr, loclist)) == NULL) {
11415ec393e9Scube 		i->i_active = DEVI_BROKEN;
11425ecc953bSthorpej 		goto bad;
11435ec393e9Scube 	}
11445ecc953bSthorpej 	i->i_at = at;
11455ecc953bSthorpej 	i->i_pspec = p;
11465ecc953bSthorpej 	i->i_atdeva = iba;
11475ecc953bSthorpej 	i->i_cfflags = flags;
11485ecc953bSthorpej 
11495ecc953bSthorpej 	*iba->d_ipp = i;
11505ecc953bSthorpej 	iba->d_ipp = &i->i_asame;
11515ecc953bSthorpej 
11525ecc953bSthorpej 	/* all done, fall into ... */
11535ecc953bSthorpej  bad:
115416a8771bSdholland 	loclist_destroy(loclist);
11555ecc953bSthorpej 	return;
11565ecc953bSthorpej }
11575ecc953bSthorpej 
11585ecc953bSthorpej void
11597b7c582aScube deldevi(const char *name, const char *at)
11605ecc953bSthorpej {
11617b7c582aScube 	struct devi *firsti, *i;
11625ecc953bSthorpej 	struct devbase *d;
11635ecc953bSthorpej 	int unit;
11645ecc953bSthorpej 	char base[NAMESIZE];
11655ecc953bSthorpej 
11665ecc953bSthorpej 	if (split(name, strlen(name), base, sizeof base, &unit)) {
1167c7295a4cSchristos 		cfgerror("invalid device name `%s'", name);
11685ecc953bSthorpej 		return;
11695ecc953bSthorpej 	}
11705ecc953bSthorpej 	d = ht_lookup(devbasetab, intern(base));
11715ecc953bSthorpej 	if (d == NULL) {
1172c7295a4cSchristos 		cfgerror("%s: unknown device `%s'", name, base);
11735ecc953bSthorpej 		return;
11745ecc953bSthorpej 	}
11755ecc953bSthorpej 	if (d->d_ispseudo) {
1176c7295a4cSchristos 		cfgerror("%s: %s is a pseudo-device", name, base);
11775ecc953bSthorpej 		return;
11785ecc953bSthorpej 	}
11795ecc953bSthorpej 	if ((firsti = ht_lookup(devitab, name)) == NULL) {
1180c7295a4cSchristos 		cfgerror("`%s' not defined", name);
11815ecc953bSthorpej 		return;
11825ecc953bSthorpej 	}
11837b7c582aScube 	if (at == NULL && firsti->i_at == NULL) {
1184e499d8b5Scube 		/* 'at root' */
11857b7c582aScube 		remove_devi(firsti);
11867b7c582aScube 		return;
11877b7c582aScube 	} else if (at != NULL)
11887b7c582aScube 		for (i = firsti; i != NULL; i = i->i_alias)
1189bfc250f2Scube 			if (i->i_active != DEVI_BROKEN &&
1190bfc250f2Scube 			    strcmp(at, i->i_at) == 0) {
11917b7c582aScube 				remove_devi(i);
11925ecc953bSthorpej 				return;
11935ecc953bSthorpej 			}
1194c7295a4cSchristos 	cfgerror("`%s' at `%s' not found", name, at ? at : "root");
1195e499d8b5Scube }
11965ecc953bSthorpej 
11977b7c582aScube static void
11987b7c582aScube remove_devi(struct devi *i)
11997b7c582aScube {
12007b7c582aScube 	struct devbase *d = i->i_base;
12017b7c582aScube 	struct devi *f, *j, **ppi;
12027b7c582aScube 	struct deva *iba;
12037b7c582aScube 
12047b7c582aScube 	f = ht_lookup(devitab, i->i_name);
12056a6299ebScube 	if (f == NULL)
12066a6299ebScube 		panic("remove_devi(): instance %s disappeared from devitab",
12076a6299ebScube 		    i->i_name);
12087b7c582aScube 
1209bfc250f2Scube 	if (i->i_active == DEVI_BROKEN) {
1210bfc250f2Scube 		cfgerror("not removing broken instance `%s'", i->i_name);
1211bfc250f2Scube 		return;
1212bfc250f2Scube 	}
1213bfc250f2Scube 
1214e499d8b5Scube 	/*
1215e499d8b5Scube 	 * We have the device instance, i.
1216e499d8b5Scube 	 * We have to:
1217e499d8b5Scube 	 *   - delete the alias
1218e499d8b5Scube 	 *
1219e499d8b5Scube 	 *      If the devi was an alias of an already listed devi, all is
1220e499d8b5Scube 	 *      good we don't have to do more.
1221e499d8b5Scube 	 *      If it was the first alias, we have to replace i's entry in
1222e499d8b5Scube 	 *      d's list by its first alias.
1223e499d8b5Scube 	 *      If it was the only entry, we must remove i's entry from d's
1224e499d8b5Scube 	 *      list.
1225e499d8b5Scube 	 */
12267b7c582aScube 	if (i != f) {
12277b7c582aScube 		for (j = f; j->i_alias != i; j = j->i_alias);
12287b7c582aScube 		j->i_alias = i->i_alias;
12293b405775Scube 	} else {
12303b405775Scube 		if (i->i_alias == NULL) {
1231e499d8b5Scube 			/* No alias, must unlink the entry from devitab */
12327b7c582aScube 			ht_remove(devitab, i->i_name);
12337b7c582aScube 			j = i->i_bsame;
12343b405775Scube 		} else {
1235e499d8b5Scube 			/* Or have the first alias replace i in d's list */
1236e499d8b5Scube 			i->i_alias->i_bsame = i->i_bsame;
12377b7c582aScube 			j = i->i_alias;
12387b7c582aScube 			if (i == f)
12397b7c582aScube 				ht_replace(devitab, i->i_name, i->i_alias);
12403b405775Scube 		}
12413b405775Scube 
1242e499d8b5Scube 		/*
1243e499d8b5Scube 		 *   - remove/replace the instance from the devbase's list
1244e499d8b5Scube 		 *
1245e499d8b5Scube 		 * A double-linked list would make this much easier.  Oh, well,
1246e499d8b5Scube 		 * what is done is done.
1247e499d8b5Scube 		 */
1248e499d8b5Scube 		for (ppi = &d->d_ihead;
1249e499d8b5Scube 		    *ppi != NULL && *ppi != i && (*ppi)->i_bsame != i;
1250e499d8b5Scube 		    ppi = &(*ppi)->i_bsame);
1251e499d8b5Scube 		if (*ppi == NULL)
1252c3414672Scube 			panic("deldev: dev (%s) doesn't list the devi"
1253c3414672Scube 			    " (%s at %s)", d->d_name, i->i_name, i->i_at);
12547b7c582aScube 		f = *ppi;
12557b7c582aScube 		if (f == i)
1256c3414672Scube 			/* That implies d->d_ihead == i */
12577b7c582aScube 			*ppi = j;
1258e499d8b5Scube 		else
12597b7c582aScube 			(*ppi)->i_bsame = j;
1260e499d8b5Scube 		if (d->d_ipp == &i->i_bsame) {
12613b405775Scube 			if (i->i_alias == NULL) {
12627b7c582aScube 				if (f == i)
1263e499d8b5Scube 					d->d_ipp = &d->d_ihead;
1264e499d8b5Scube 				else
12657b7c582aScube 					d->d_ipp = &f->i_bsame;
12663b405775Scube 			} else
12673b405775Scube 				d->d_ipp = &i->i_alias->i_bsame;
1268e499d8b5Scube 		}
1269e499d8b5Scube 	}
1270e499d8b5Scube 	/*
1271e499d8b5Scube 	 *   - delete the attachment instance
1272e499d8b5Scube 	 */
1273e499d8b5Scube 	iba = i->i_atdeva;
1274e499d8b5Scube 	for (ppi = &iba->d_ihead;
1275e499d8b5Scube 	    *ppi != NULL && *ppi != i && (*ppi)->i_asame != i;
1276e499d8b5Scube 	    ppi = &(*ppi)->i_asame);
1277e499d8b5Scube 	if (*ppi == NULL)
1278e499d8b5Scube 		panic("deldev: deva (%s) doesn't list the devi (%s)",
1279e499d8b5Scube 		    iba->d_name, i->i_name);
12807b7c582aScube 	f = *ppi;
12817b7c582aScube 	if (f == i)
1282c3414672Scube 		/* That implies iba->d_ihead == i */
1283e499d8b5Scube 		*ppi = i->i_asame;
1284e499d8b5Scube 	else
1285e499d8b5Scube 		(*ppi)->i_asame = i->i_asame;
1286e499d8b5Scube 	if (iba->d_ipp == &i->i_asame) {
12877b7c582aScube 		if (f == i)
1288e499d8b5Scube 			iba->d_ipp = &iba->d_ihead;
1289e499d8b5Scube 		else
12907b7c582aScube 			iba->d_ipp = &f->i_asame;
1291e499d8b5Scube 	}
1292e499d8b5Scube 	/*
1293e499d8b5Scube 	 *   - delete the pspec
1294e499d8b5Scube 	 */
1295e499d8b5Scube 	if (i->i_pspec) {
1296e499d8b5Scube 		struct pspec *p = i->i_pspec;
1297e499d8b5Scube 		struct nvlist *nv, *onv;
1298e499d8b5Scube 
1299e499d8b5Scube 		/* Double-linked nvlist anyone? */
1300c0024066Scube 		for (nv = p->p_devs; nv->nv_next != NULL; nv = nv->nv_next) {
1301e499d8b5Scube 			if (nv->nv_next && nv->nv_next->nv_ptr == i) {
1302e499d8b5Scube 				onv = nv->nv_next;
1303e499d8b5Scube 				nv->nv_next = onv->nv_next;
1304e499d8b5Scube 				nvfree(onv);
1305e499d8b5Scube 				break;
1306c0024066Scube 			}
1307c0024066Scube 			if (nv->nv_ptr == i) {
1308e499d8b5Scube 				/* nv is p->p_devs in that case */
1309e499d8b5Scube 				p->p_devs = nv->nv_next;
1310e499d8b5Scube 				nvfree(nv);
1311e499d8b5Scube 				break;
1312e499d8b5Scube 			}
1313e499d8b5Scube 		}
1314e499d8b5Scube 		if (p->p_devs == NULL)
1315e499d8b5Scube 			TAILQ_REMOVE(&allpspecs, p, p_list);
1316e499d8b5Scube 	}
1317e499d8b5Scube 	/*
1318e499d8b5Scube 	 *   - delete the alldevi entry
1319e499d8b5Scube 	 */
1320e499d8b5Scube 	TAILQ_REMOVE(&alldevi, i, i_next);
1321e499d8b5Scube 	ndevi--;
13227aa6070dScube 	/*
13237aa6070dScube 	 * Put it in deaddevitab
1324a31ff6b4Scube 	 *
1325a31ff6b4Scube 	 * Each time a devi is removed, devilevel is increased so that later on
1326a31ff6b4Scube 	 * it is possible to tell if an instance was added before or after the
1327a31ff6b4Scube 	 * removal of its parent.
1328a31ff6b4Scube 	 *
1329a31ff6b4Scube 	 * For active instances, i_level contains the number of devi removed so
1330a31ff6b4Scube 	 * far, and for dead devis, it contains its index.
13317aa6070dScube 	 */
1332a31ff6b4Scube 	i->i_level = devilevel++;
13337aa6070dScube 	i->i_alias = NULL;
13347aa6070dScube 	f = ht_lookup(deaddevitab, i->i_name);
13357aa6070dScube 	if (f == NULL) {
13367aa6070dScube 		if (ht_insert(deaddevitab, i->i_name, i))
13377aa6070dScube 			panic("remove_devi(%s) - can't add to deaddevitab",
13387aa6070dScube 			    i->i_name);
13397aa6070dScube 	} else {
13407aa6070dScube 		for (j = f; j->i_alias != NULL; j = j->i_alias);
13417aa6070dScube 		j->i_alias = i;
13427aa6070dScube 	}
1343e499d8b5Scube 	/*
13445d1e8b27Swiz 	 *   - reconstruct d->d_umax
1345e499d8b5Scube 	 */
1346e499d8b5Scube 	d->d_umax = 0;
1347e499d8b5Scube 	for (i = d->d_ihead; i != NULL; i = i->i_bsame)
1348e499d8b5Scube 		if (i->i_unit >= d->d_umax)
1349e499d8b5Scube 			d->d_umax = i->i_unit + 1;
13505ecc953bSthorpej }
13515ecc953bSthorpej 
13525ecc953bSthorpej void
13537b7c582aScube deldeva(const char *at)
13547b7c582aScube {
13557b7c582aScube 	int unit;
13567b7c582aScube 	const char *cp;
13577b7c582aScube 	struct devbase *d, *ad;
13587b7c582aScube 	struct devi *i, *j;
13597b7c582aScube 	struct attr *a;
13607b7c582aScube 	struct pspec *p;
13617b7c582aScube 	struct nvlist *nv, *stack = NULL;
13627b7c582aScube 
13637b7c582aScube 	if (at == NULL) {
13647b7c582aScube 		TAILQ_FOREACH(i, &alldevi, i_next)
13657b7c582aScube 			if (i->i_at == NULL)
13667b7c582aScube 				stack = newnv(NULL, NULL, i, 0, stack);
13677b7c582aScube 	} else {
13687b7c582aScube 		int l;
13697b7c582aScube 
13707b7c582aScube 		l = strlen(at) - 1;
13717b7c582aScube 		if (at[l] == '?' || isdigit((unsigned char)at[l])) {
13727b7c582aScube 			char base[NAMESIZE];
13737b7c582aScube 
13747b7c582aScube 			if (split(at, l+1, base, sizeof base, &unit)) {
1375c7295a4cSchristos 				cfgerror("invalid attachment name `%s'", at);
13767b7c582aScube 				return;
13777b7c582aScube 			}
13787b7c582aScube 			cp = intern(base);
13797b7c582aScube 		} else {
13807b7c582aScube 			cp = intern(at);
13817b7c582aScube 			unit = STAR;
13827b7c582aScube 		}
13837b7c582aScube 
13847b7c582aScube 		ad = ht_lookup(devbasetab, cp);
13857b7c582aScube 		a = ht_lookup(attrtab, cp);
13867b7c582aScube 		if (a == NULL) {
1387c7295a4cSchristos 			cfgerror("unknown attachment attribute or device `%s'",
13887b7c582aScube 			    cp);
13897b7c582aScube 			return;
13907b7c582aScube 		}
13917b7c582aScube 		if (!a->a_iattr) {
1392c7295a4cSchristos 			cfgerror("plain attribute `%s' cannot have children",
13937b7c582aScube 			    a->a_name);
13947b7c582aScube 			return;
13957b7c582aScube 		}
13967b7c582aScube 
13977b7c582aScube 		/*
13987b7c582aScube 		 * remove_devi() makes changes to the devbase's list and the
13997b7c582aScube 		 * alias list, * so the actual deletion of the instances must
14007b7c582aScube 		 * be delayed.
14017b7c582aScube 		 */
14027b7c582aScube 		for (nv = a->a_devs; nv != NULL; nv = nv->nv_next) {
14037b7c582aScube 			d = nv->nv_ptr;
14047b7c582aScube 			for (i = d->d_ihead; i != NULL; i = i->i_bsame)
14057b7c582aScube 				for (j = i; j != NULL; j = j->i_alias) {
14067b7c582aScube 					/* Ignore devices at root */
14077b7c582aScube 					if (j->i_at == NULL)
14087b7c582aScube 						continue;
14097b7c582aScube 					p = j->i_pspec;
14107b7c582aScube 					/*
14117b7c582aScube 					 * There are three cases:
14127b7c582aScube 					 *
14137b7c582aScube 					 * 1.  unit is not STAR.  Consider 'at'
14147b7c582aScube 					 *     to be explicit, even if it
14157b7c582aScube 					 *     references an interface
14167b7c582aScube 					 *     attribute.
14177b7c582aScube 					 *
14187b7c582aScube 					 * 2.  unit is STAR and 'at' references
14197b7c582aScube 					 *     a real device.  Look for pspec
14207b7c582aScube 					 *     that have a matching p_atdev
14217b7c582aScube 					 *     field.
14227b7c582aScube 					 *
14237b7c582aScube 					 * 3.  unit is STAR and 'at' references
14247b7c582aScube 					 *     an interface attribute.  Look
14257b7c582aScube 					 *     for pspec that have a matching
14267b7c582aScube 					 *     p_iattr field.
14277b7c582aScube 					 */
14287b7c582aScube 					if ((unit != STAR &&        /* Case */
14297b7c582aScube 					     !strcmp(j->i_at, at)) ||  /* 1 */
14307b7c582aScube 					    (unit == STAR &&
14317b7c582aScube 					     ((ad != NULL &&        /* Case */
14327b7c582aScube 					       p->p_atdev == ad) ||    /* 2 */
14337b7c582aScube 					      (ad == NULL &&        /* Case */
14347b7c582aScube 					       p->p_iattr == a))))     /* 3 */
14357b7c582aScube 						stack = newnv(NULL, NULL, j, 0,
14367b7c582aScube 						    stack);
14377b7c582aScube 				}
14387b7c582aScube 		}
14397b7c582aScube 	}
14407b7c582aScube 
14417b7c582aScube 	for (nv = stack; nv != NULL; nv = nv->nv_next)
14427b7c582aScube 		remove_devi(nv->nv_ptr);
1443e50e4ee4Scube 	nvfreel(stack);
14447b7c582aScube }
14457b7c582aScube 
14467b7c582aScube void
14477b7c582aScube deldev(const char *name)
14487b7c582aScube {
14497b7c582aScube 	int l;
14507b7c582aScube 	struct devi *firsti, *i;
14517b7c582aScube 	struct nvlist *nv, *stack = NULL;
14527b7c582aScube 
14537b7c582aScube 	l = strlen(name) - 1;
14547b7c582aScube 	if (name[l] == '*' || isdigit((unsigned char)name[l])) {
14557b7c582aScube 		/* `no mydev0' or `no mydev*' */
14567b7c582aScube 		firsti = ht_lookup(devitab, name);
14577b7c582aScube 		if (firsti == NULL) {
1458c7295a4cSchristos 			cfgerror("unknown instance %s", name);
14597b7c582aScube 			return;
14607b7c582aScube 		}
14617b7c582aScube 		for (i = firsti; i != NULL; i = i->i_alias)
14627b7c582aScube 			stack = newnv(NULL, NULL, i, 0, stack);
14637b7c582aScube 	} else {
14647b7c582aScube 		struct devbase *d = ht_lookup(devbasetab, name);
14657b7c582aScube 
14667b7c582aScube 		if (d == NULL) {
1467c7295a4cSchristos 			cfgerror("unknown device %s", name);
14687b7c582aScube 			return;
14697b7c582aScube 		}
147071af9028Scube 		if (d->d_ispseudo) {
1471c7295a4cSchristos 			cfgerror("%s is a pseudo-device; "
147271af9028Scube 			    "use \"no pseudo-device %s\" instead", name,
147371af9028Scube 			    name);
147471af9028Scube 			return;
147571af9028Scube 		}
14767b7c582aScube 
14777b7c582aScube 		for (firsti = d->d_ihead; firsti != NULL;
14787b7c582aScube 		    firsti = firsti->i_bsame)
14797b7c582aScube 			for (i = firsti; i != NULL; i = i->i_alias)
14807b7c582aScube 				stack = newnv(NULL, NULL, i, 0, stack);
14817b7c582aScube 	}
14827b7c582aScube 
14837b7c582aScube 	for (nv = stack; nv != NULL; nv = nv->nv_next)
14847b7c582aScube 		remove_devi(nv->nv_ptr);
1485e50e4ee4Scube 	nvfreel(stack);
14867b7c582aScube }
14877b7c582aScube 
148800ed8a38Spooka /*
148900ed8a38Spooka  * Insert given device "name" into devroottab.  In case "name"
149000ed8a38Spooka  * designates a pure interface attribute, create a fake device
149100ed8a38Spooka  * instance for the attribute and insert that into the roottab
149200ed8a38Spooka  * (this scheme avoids mucking around with the orphanage analysis).
149300ed8a38Spooka  */
14947b7c582aScube void
149590ac64deSpooka addpseudoroot(const char *name)
149690ac64deSpooka {
1497194e1c80Spooka 	char buf[NAMESIZE];
1498194e1c80Spooka 	int unit;
1499194e1c80Spooka 	struct attr *attr;
150090ac64deSpooka 	struct devi *i;
150190ac64deSpooka 	struct deva *iba;
150290ac64deSpooka 	struct devbase *ib;
150390ac64deSpooka 
1504194e1c80Spooka 	if (split(name, strlen(name), buf, sizeof(buf), &unit)) {
1505194e1c80Spooka 		cfgerror("invalid pseudo-root name `%s'", name);
1506194e1c80Spooka 		return;
1507194e1c80Spooka 	}
1508194e1c80Spooka 
1509194e1c80Spooka 	/*
151000ed8a38Spooka 	 * Prefer device because devices with locators define an
151100ed8a38Spooka 	 * implicit interface attribute.  However, if a device is
151200ed8a38Spooka 	 * not available, try to attach to the interface attribute.
151300ed8a38Spooka 	 * This makes sure adddev() doesn't get confused when we
151400ed8a38Spooka 	 * are really attaching to a device (alternatively we maybe
151500ed8a38Spooka 	 * could specify a non-NULL atlist to defdevattach() below).
1516194e1c80Spooka 	 */
151700ed8a38Spooka 	ib = ht_lookup(devbasetab, intern(buf));
151800ed8a38Spooka 	if (ib == NULL) {
1519194e1c80Spooka 		struct devbase *fakedev;
1520194e1c80Spooka 		char fakename[NAMESIZE];
1521194e1c80Spooka 
152200ed8a38Spooka 		attr = ht_lookup(attrtab, intern(buf));
152300ed8a38Spooka 		if (!(attr && attr->a_iattr)) {
152400ed8a38Spooka 			cfgerror("pseudo-root `%s' not available", name);
152500ed8a38Spooka 			return;
152600ed8a38Spooka 		}
152700ed8a38Spooka 
1528194e1c80Spooka 		/*
1529194e1c80Spooka 		 * here we cheat a bit: create a fake devbase with the
1530194e1c80Spooka 		 * interface attribute and instantiate it.  quick, cheap,
1531194e1c80Spooka 		 * dirty & bad for you, much like the stuff in the fridge.
1532194e1c80Spooka 		 * and, it works, since the pseudoroot device is not included
1533194e1c80Spooka 		 * in ioconf, just used by config to make sure we start from
1534194e1c80Spooka 		 * the right place.
1535194e1c80Spooka 		 */
153600ed8a38Spooka 		snprintf(fakename, sizeof(fakename), "%s_devattrs", buf);
1537194e1c80Spooka 		fakedev = getdevbase(intern(fakename));
1538194e1c80Spooka 		fakedev->d_isdef = 1;
1539194e1c80Spooka 		fakedev->d_ispseudo = 0;
15404caf067bSdholland 		fakedev->d_attrs = attrlist_cons(NULL, attr);
1541194e1c80Spooka 		defdevattach(NULL, fakedev, NULL, NULL);
1542194e1c80Spooka 
1543194e1c80Spooka 		if (unit == STAR)
1544194e1c80Spooka 			snprintf(buf, sizeof(buf), "%s*", fakename);
1545194e1c80Spooka 		else
1546194e1c80Spooka 			snprintf(buf, sizeof(buf), "%s%d", fakename, unit);
1547194e1c80Spooka 		name = buf;
1548194e1c80Spooka 	}
1549194e1c80Spooka 
1550194e1c80Spooka 	/* ok, everything should be set up, so instantiate a fake device */
155190ac64deSpooka 	i = getdevi(name);
155290ac64deSpooka 	if (i == NULL)
155300ed8a38Spooka 		panic("device `%s' expected to be present", name);
155490ac64deSpooka 	ib = i->i_base;
1555194e1c80Spooka 	iba = ib->d_ahead;
155690ac64deSpooka 
155790ac64deSpooka 	i->i_atdeva = iba;
155890ac64deSpooka 	i->i_cfflags = 0;
155990ac64deSpooka 	i->i_locs = fixloc(name, &errattr, NULL);
156090ac64deSpooka 	i->i_pseudoroot = 1;
156190ac64deSpooka 	i->i_active = DEVI_ORPHAN; /* set active by kill_orphans() */
156290ac64deSpooka 
156390ac64deSpooka 	*iba->d_ipp = i;
156490ac64deSpooka 	iba->d_ipp = &i->i_asame;
156590ac64deSpooka 
156690ac64deSpooka 	ht_insert(devroottab, ib->d_name, ib);
156790ac64deSpooka }
156890ac64deSpooka 
156990ac64deSpooka void
15705ecc953bSthorpej addpseudo(const char *name, int number)
15715ecc953bSthorpej {
15725ecc953bSthorpej 	struct devbase *d;
15735ecc953bSthorpej 	struct devi *i;
15745ecc953bSthorpej 
15755ecc953bSthorpej 	d = ht_lookup(devbasetab, name);
15765ecc953bSthorpej 	if (d == NULL) {
1577c7295a4cSchristos 		cfgerror("undefined pseudo-device %s", name);
15785ecc953bSthorpej 		return;
15795ecc953bSthorpej 	}
15805ecc953bSthorpej 	if (!d->d_ispseudo) {
1581c7295a4cSchristos 		cfgerror("%s is a real device, not a pseudo-device", name);
15825ecc953bSthorpej 		return;
15835ecc953bSthorpej 	}
15845ecc953bSthorpej 	if (ht_lookup(devitab, name) != NULL) {
1585c7295a4cSchristos 		cfgerror("`%s' already defined", name);
15865ecc953bSthorpej 		return;
15875ecc953bSthorpej 	}
15885ecc953bSthorpej 	i = newdevi(name, number - 1, d);	/* foo 16 => "foo0..foo15" */
15895ecc953bSthorpej 	if (ht_insert(devitab, name, i))
15905ecc953bSthorpej 		panic("addpseudo(%s)", name);
15917b7c582aScube 	/* Useful to retrieve the instance from the devbase */
15927b7c582aScube 	d->d_ihead = i;
15937aa6070dScube 	i->i_active = DEVI_ACTIVE;
15945ecc953bSthorpej 	TAILQ_INSERT_TAIL(&allpseudo, i, i_next);
15955ecc953bSthorpej }
15965ecc953bSthorpej 
15975ecc953bSthorpej void
15985ecc953bSthorpej delpseudo(const char *name)
15995ecc953bSthorpej {
16005ecc953bSthorpej 	struct devbase *d;
16015ecc953bSthorpej 	struct devi *i;
16025ecc953bSthorpej 
16035ecc953bSthorpej 	d = ht_lookup(devbasetab, name);
16045ecc953bSthorpej 	if (d == NULL) {
1605c7295a4cSchristos 		cfgerror("undefined pseudo-device %s", name);
16065ecc953bSthorpej 		return;
16075ecc953bSthorpej 	}
16085ecc953bSthorpej 	if (!d->d_ispseudo) {
1609c7295a4cSchristos 		cfgerror("%s is a real device, not a pseudo-device", name);
16105ecc953bSthorpej 		return;
16115ecc953bSthorpej 	}
16125ecc953bSthorpej 	if ((i = ht_lookup(devitab, name)) == NULL) {
1613c7295a4cSchristos 		cfgerror("`%s' not defined", name);
16145ecc953bSthorpej 		return;
16155ecc953bSthorpej 	}
16165ecc953bSthorpej 	d->d_umax = 0;		/* clear neads-count entries */
16177aa6070dScube 	d->d_ihead = NULL;	/* make sure it won't be considered active */
16185ecc953bSthorpej 	TAILQ_REMOVE(&allpseudo, i, i_next);
16195ecc953bSthorpej 	if (ht_remove(devitab, name))
16205ecc953bSthorpej 		panic("delpseudo(%s) - can't remove from devitab", name);
16217aa6070dScube 	if (ht_insert(deaddevitab, name, i))
16227aa6070dScube 		panic("delpseudo(%s) - can't add to deaddevitab", name);
16235ecc953bSthorpej }
16245ecc953bSthorpej 
16255ecc953bSthorpej void
1626d767912bSdrochner adddevm(const char *name, devmajor_t cmajor, devmajor_t bmajor,
16279483bda7Sdholland 	struct condexpr *cond, struct nvlist *nv_nodes)
16285ecc953bSthorpej {
16295ecc953bSthorpej 	struct devm *dm;
16305ecc953bSthorpej 
1631d767912bSdrochner 	if (cmajor != NODEVMAJOR && (cmajor < 0 || cmajor >= 4096)) {
1632c7295a4cSchristos 		cfgerror("character major %d is invalid", cmajor);
16339483bda7Sdholland 		condexpr_destroy(cond);
16343da3ab25Spooka 		nvfreel(nv_nodes);
16355ecc953bSthorpej 		return;
16365ecc953bSthorpej 	}
16375ecc953bSthorpej 
1638d767912bSdrochner 	if (bmajor != NODEVMAJOR && (bmajor < 0 || bmajor >= 4096)) {
1639c7295a4cSchristos 		cfgerror("block major %d is invalid", bmajor);
16409483bda7Sdholland 		condexpr_destroy(cond);
16413da3ab25Spooka 		nvfreel(nv_nodes);
16425ecc953bSthorpej 		return;
16435ecc953bSthorpej 	}
1644d767912bSdrochner 	if (cmajor == NODEVMAJOR && bmajor == NODEVMAJOR) {
1645c7295a4cSchristos 		cfgerror("both character/block majors are not specified");
16469483bda7Sdholland 		condexpr_destroy(cond);
16473da3ab25Spooka 		nvfreel(nv_nodes);
16485ecc953bSthorpej 		return;
16495ecc953bSthorpej 	}
16505ecc953bSthorpej 
16515ecc953bSthorpej 	dm = ecalloc(1, sizeof(*dm));
16525ecc953bSthorpej 	dm->dm_srcfile = yyfile;
16535ecc953bSthorpej 	dm->dm_srcline = currentline();
16545ecc953bSthorpej 	dm->dm_name = name;
16555ecc953bSthorpej 	dm->dm_cmajor = cmajor;
16565ecc953bSthorpej 	dm->dm_bmajor = bmajor;
16579483bda7Sdholland 	dm->dm_opts = cond;
16583da3ab25Spooka 	dm->dm_devnodes = nv_nodes;
16595ecc953bSthorpej 
16605ecc953bSthorpej 	TAILQ_INSERT_TAIL(&alldevms, dm, dm_next);
16615ecc953bSthorpej 
16625ecc953bSthorpej 	maxcdevm = MAX(maxcdevm, dm->dm_cmajor);
16635ecc953bSthorpej 	maxbdevm = MAX(maxbdevm, dm->dm_bmajor);
16645ecc953bSthorpej }
16655ecc953bSthorpej 
16667aa6070dScube int
16675ecc953bSthorpej fixdevis(void)
16685ecc953bSthorpej {
16695ecc953bSthorpej 	struct devi *i;
16707aa6070dScube 	int error = 0;
16715ecc953bSthorpej 
16725ecc953bSthorpej 	TAILQ_FOREACH(i, &alldevi, i_next)
16737aa6070dScube 		if (i->i_active == DEVI_ACTIVE)
16745ecc953bSthorpej 			selectbase(i->i_base, i->i_atdeva);
16757aa6070dScube 		else if (i->i_active == DEVI_ORPHAN) {
1676c130d400Scube 			/*
1677c130d400Scube 			 * At this point, we can't have instances for which
1678c130d400Scube 			 * i_at or i_pspec are NULL.
1679c130d400Scube 			 */
16807aa6070dScube 			++error;
1681c7295a4cSchristos 			cfgxerror(i->i_srcfile, i->i_lineno,
16820dbd1c0eScube 			    "`%s at %s' is orphaned (%s `%s' found)",
1683c130d400Scube 			    i->i_name, i->i_at, i->i_pspec->p_atunit == WILD ?
1684c130d400Scube 			    "nothing matching" : "no", i->i_at);
16857aa6070dScube 		} else if (vflag && i->i_active == DEVI_IGNORED)
1686c7295a4cSchristos 			cfgxwarn(i->i_srcfile, i->i_lineno, "ignoring "
1687c7295a4cSchristos 			    "explicitly orphaned instance `%s at %s'",
1688c7295a4cSchristos 			    i->i_name, i->i_at);
16897aa6070dScube 
16907aa6070dScube 	if (error)
16917aa6070dScube 		return error;
16925ecc953bSthorpej 
16935ecc953bSthorpej 	TAILQ_FOREACH(i, &allpseudo, i_next)
16947aa6070dScube 		if (i->i_active == DEVI_ACTIVE)
16955ecc953bSthorpej 			selectbase(i->i_base, NULL);
16967aa6070dScube 	return 0;
16975ecc953bSthorpej }
16985ecc953bSthorpej 
16995ecc953bSthorpej /*
17005ecc953bSthorpej  * Look up a parent spec, creating a new one if it does not exist.
17015ecc953bSthorpej  */
17025ecc953bSthorpej static struct pspec *
17035ecc953bSthorpej getpspec(struct attr *attr, struct devbase *ab, int atunit)
17045ecc953bSthorpej {
17055ecc953bSthorpej 	struct pspec *p;
17065ecc953bSthorpej 
17075ecc953bSthorpej 	TAILQ_FOREACH(p, &allpspecs, p_list) {
17085ecc953bSthorpej 		if (p->p_iattr == attr &&
17095ecc953bSthorpej 		    p->p_atdev == ab &&
17105ecc953bSthorpej 		    p->p_atunit == atunit)
17115ecc953bSthorpej 			return (p);
17125ecc953bSthorpej 	}
17135ecc953bSthorpej 
17145ecc953bSthorpej 	p = ecalloc(1, sizeof(*p));
17155ecc953bSthorpej 
17165ecc953bSthorpej 	p->p_iattr = attr;
17175ecc953bSthorpej 	p->p_atdev = ab;
17185ecc953bSthorpej 	p->p_atunit = atunit;
17195ecc953bSthorpej 	p->p_inst = npspecs++;
1720c130d400Scube 	p->p_active = 0;
17215ecc953bSthorpej 
17225ecc953bSthorpej 	TAILQ_INSERT_TAIL(&allpspecs, p, p_list);
17235ecc953bSthorpej 
17245ecc953bSthorpej 	return (p);
17255ecc953bSthorpej }
17265ecc953bSthorpej 
17275ecc953bSthorpej /*
17285ecc953bSthorpej  * Define a new instance of a specific device.
17295ecc953bSthorpej  */
17305ecc953bSthorpej static struct devi *
17315ecc953bSthorpej getdevi(const char *name)
17325ecc953bSthorpej {
17335ecc953bSthorpej 	struct devi *i, *firsti;
17345ecc953bSthorpej 	struct devbase *d;
17355ecc953bSthorpej 	int unit;
17365ecc953bSthorpej 	char base[NAMESIZE];
17375ecc953bSthorpej 
17385ecc953bSthorpej 	if (split(name, strlen(name), base, sizeof base, &unit)) {
1739c7295a4cSchristos 		cfgerror("invalid device name `%s'", name);
17405ecc953bSthorpej 		return (NULL);
17415ecc953bSthorpej 	}
17425ecc953bSthorpej 	d = ht_lookup(devbasetab, intern(base));
17435ecc953bSthorpej 	if (d == NULL) {
1744c7295a4cSchristos 		cfgerror("%s: unknown device `%s'", name, base);
17455ecc953bSthorpej 		return (NULL);
17465ecc953bSthorpej 	}
17475ecc953bSthorpej 	if (d->d_ispseudo) {
1748c7295a4cSchristos 		cfgerror("%s: %s is a pseudo-device", name, base);
17495ecc953bSthorpej 		return (NULL);
17505ecc953bSthorpej 	}
17515ecc953bSthorpej 	firsti = ht_lookup(devitab, name);
17525ecc953bSthorpej 	i = newdevi(name, unit, d);
17535ecc953bSthorpej 	if (firsti == NULL) {
17545ecc953bSthorpej 		if (ht_insert(devitab, name, i))
17555ecc953bSthorpej 			panic("getdevi(%s)", name);
17565ecc953bSthorpej 		*d->d_ipp = i;
17575ecc953bSthorpej 		d->d_ipp = &i->i_bsame;
17585ecc953bSthorpej 	} else {
17595ecc953bSthorpej 		while (firsti->i_alias)
17605ecc953bSthorpej 			firsti = firsti->i_alias;
17615ecc953bSthorpej 		firsti->i_alias = i;
17625ecc953bSthorpej 	}
17635ecc953bSthorpej 	TAILQ_INSERT_TAIL(&alldevi, i, i_next);
17645ecc953bSthorpej 	ndevi++;
17655ecc953bSthorpej 	return (i);
17665ecc953bSthorpej }
17675ecc953bSthorpej 
17685ecc953bSthorpej static const char *
17695ecc953bSthorpej concat(const char *name, int c)
17705ecc953bSthorpej {
1771c7295a4cSchristos 	size_t len;
17725ecc953bSthorpej 	char buf[NAMESIZE];
17735ecc953bSthorpej 
17745ecc953bSthorpej 	len = strlen(name);
17755ecc953bSthorpej 	if (len + 2 > sizeof(buf)) {
1776c7295a4cSchristos 		cfgerror("device name `%s%c' too long", name, c);
17775ecc953bSthorpej 		len = sizeof(buf) - 2;
17785ecc953bSthorpej 	}
17795ecc953bSthorpej 	memmove(buf, name, len);
17805ecc953bSthorpej 	buf[len] = c;
17815ecc953bSthorpej 	buf[len + 1] = 0;
17825ecc953bSthorpej 	return (intern(buf));
17835ecc953bSthorpej }
17845ecc953bSthorpej 
17855ecc953bSthorpej const char *
17865ecc953bSthorpej starref(const char *name)
17875ecc953bSthorpej {
17885ecc953bSthorpej 
17895ecc953bSthorpej 	return (concat(name, '*'));
17905ecc953bSthorpej }
17915ecc953bSthorpej 
17925ecc953bSthorpej const char *
17935ecc953bSthorpej wildref(const char *name)
17945ecc953bSthorpej {
17955ecc953bSthorpej 
17965ecc953bSthorpej 	return (concat(name, '?'));
17975ecc953bSthorpej }
17985ecc953bSthorpej 
17995ecc953bSthorpej /*
18005ecc953bSthorpej  * Split a name like "foo0" into base name (foo) and unit number (0).
18015ecc953bSthorpej  * Return 0 on success.  To make this useful for names like "foo0a",
18025ecc953bSthorpej  * the length of the "foo0" part is one of the arguments.
18035ecc953bSthorpej  */
18045ecc953bSthorpej static int
18055ecc953bSthorpej split(const char *name, size_t nlen, char *base, size_t bsize, int *aunit)
18065ecc953bSthorpej {
18075ecc953bSthorpej 	const char *cp;
1808c7295a4cSchristos 	int c;
1809c7295a4cSchristos 	size_t l;
18105ecc953bSthorpej 
18115ecc953bSthorpej 	l = nlen;
18125ecc953bSthorpej 	if (l < 2 || l >= bsize || isdigit((unsigned char)*name))
18135ecc953bSthorpej 		return (1);
18145ecc953bSthorpej 	c = (u_char)name[--l];
18155ecc953bSthorpej 	if (!isdigit(c)) {
18165ecc953bSthorpej 		if (c == '*')
18175ecc953bSthorpej 			*aunit = STAR;
18185ecc953bSthorpej 		else if (c == '?')
18195ecc953bSthorpej 			*aunit = WILD;
18205ecc953bSthorpej 		else
18215ecc953bSthorpej 			return (1);
18225ecc953bSthorpej 	} else {
18235ecc953bSthorpej 		cp = &name[l];
18245ecc953bSthorpej 		while (isdigit((unsigned char)cp[-1]))
18255ecc953bSthorpej 			l--, cp--;
18265ecc953bSthorpej 		*aunit = atoi(cp);
18275ecc953bSthorpej 	}
18285ecc953bSthorpej 	memmove(base, name, l);
18295ecc953bSthorpej 	base[l] = 0;
18305ecc953bSthorpej 	return (0);
18315ecc953bSthorpej }
18325ecc953bSthorpej 
18335ecc953bSthorpej void
18345ecc953bSthorpej selectattr(struct attr *a)
18355ecc953bSthorpej {
18365ecc953bSthorpej 
1837c7295a4cSchristos 	(void)ht_insert(selecttab, a->a_name, __UNCONST(a->a_name));
1838b599bf99Suebayasi 	CFGDBG(3, "attr selected `%s'", a->a_name);
18395ecc953bSthorpej }
18405ecc953bSthorpej 
18415ecc953bSthorpej /*
18425ecc953bSthorpej  * We have an instance of the base foo, so select it and all its
18435ecc953bSthorpej  * attributes for "optional foo".
18445ecc953bSthorpej  */
18455ecc953bSthorpej static void
18465ecc953bSthorpej selectbase(struct devbase *d, struct deva *da)
18475ecc953bSthorpej {
18485ecc953bSthorpej 	struct attr *a;
18494caf067bSdholland 	struct attrlist *al;
18505ecc953bSthorpej 
1851c7295a4cSchristos 	(void)ht_insert(selecttab, d->d_name, __UNCONST(d->d_name));
1852b599bf99Suebayasi 	CFGDBG(3, "devbase selected `%s'", d->d_name);
18534caf067bSdholland 	for (al = d->d_attrs; al != NULL; al = al->al_next) {
18544caf067bSdholland 		a = al->al_this;
18555ecc953bSthorpej 		expandattr(a, selectattr);
18565ecc953bSthorpej 	}
18575ecc953bSthorpej 	if (da != NULL) {
1858c7295a4cSchristos 		(void)ht_insert(selecttab, da->d_name, __UNCONST(da->d_name));
1859b599bf99Suebayasi 		CFGDBG(3, "devattr selected `%s'", da->d_name);
18604caf067bSdholland 		for (al = da->d_attrs; al != NULL; al = al->al_next) {
18614caf067bSdholland 			a = al->al_this;
18625ecc953bSthorpej 			expandattr(a, selectattr);
18635ecc953bSthorpej 		}
18645ecc953bSthorpej 	}
18655ecc953bSthorpej }
18665ecc953bSthorpej 
18675ecc953bSthorpej /*
18685ecc953bSthorpej  * Is the given pointer on the given list of pointers?
18695ecc953bSthorpej  */
187059c94545Scube int
18715ecc953bSthorpej onlist(struct nvlist *nv, void *ptr)
18725ecc953bSthorpej {
18735ecc953bSthorpej 	for (; nv != NULL; nv = nv->nv_next)
18745ecc953bSthorpej 		if (nv->nv_ptr == ptr)
18755ecc953bSthorpej 			return (1);
18765ecc953bSthorpej 	return (0);
18775ecc953bSthorpej }
18785ecc953bSthorpej 
18795ecc953bSthorpej static char *
18805ecc953bSthorpej extend(char *p, const char *name)
18815ecc953bSthorpej {
1882c7295a4cSchristos 	size_t l;
18835ecc953bSthorpej 
18845ecc953bSthorpej 	l = strlen(name);
18855ecc953bSthorpej 	memmove(p, name, l);
18865ecc953bSthorpej 	p += l;
18875ecc953bSthorpej 	*p++ = ',';
18885ecc953bSthorpej 	*p++ = ' ';
18895ecc953bSthorpej 	return (p);
18905ecc953bSthorpej }
18915ecc953bSthorpej 
18925ecc953bSthorpej /*
18935ecc953bSthorpej  * Check that we got all required locators, and default any that are
18945ecc953bSthorpej  * given as "?" and have defaults.  Return 0 on success.
18955ecc953bSthorpej  */
18965ecc953bSthorpej static const char **
189716a8771bSdholland fixloc(const char *name, struct attr *attr, struct loclist *got)
18985ecc953bSthorpej {
189916a8771bSdholland 	struct loclist *m, *n;
19005ecc953bSthorpej 	int ord;
19015ecc953bSthorpej 	const char **lp;
19025ecc953bSthorpej 	int nmissing, nextra, nnodefault;
19035ecc953bSthorpej 	char *mp, *ep, *ndp;
19045ecc953bSthorpej 	char missing[1000], extra[1000], nodefault[1000];
19055ecc953bSthorpej 	static const char *nullvec[1];
19065ecc953bSthorpej 
19075ecc953bSthorpej 	/*
19085ecc953bSthorpej 	 * Look for all required locators, and number the given ones
19095ecc953bSthorpej 	 * according to the required order.  While we are numbering,
19105ecc953bSthorpej 	 * set default values for defaulted locators.
19115ecc953bSthorpej 	 */
19125ecc953bSthorpej 	if (attr->a_loclen == 0)	/* e.g., "at root" */
19135ecc953bSthorpej 		lp = nullvec;
19145ecc953bSthorpej 	else
19155ecc953bSthorpej 		lp = emalloc((attr->a_loclen + 1) * sizeof(const char *));
191616a8771bSdholland 	for (n = got; n != NULL; n = n->ll_next)
191716a8771bSdholland 		n->ll_num = -1;
19185ecc953bSthorpej 	nmissing = 0;
19195ecc953bSthorpej 	mp = missing;
19205ecc953bSthorpej 	/* yes, this is O(mn), but m and n should be small */
192116a8771bSdholland 	for (ord = 0, m = attr->a_locs; m != NULL; m = m->ll_next, ord++) {
192216a8771bSdholland 		for (n = got; n != NULL; n = n->ll_next) {
192316a8771bSdholland 			if (n->ll_name == m->ll_name) {
192416a8771bSdholland 				n->ll_num = ord;
19255ecc953bSthorpej 				break;
19265ecc953bSthorpej 			}
19275ecc953bSthorpej 		}
192816a8771bSdholland 		if (n == NULL && m->ll_num == 0) {
19295ecc953bSthorpej 			nmissing++;
193016a8771bSdholland 			mp = extend(mp, m->ll_name);
19315ecc953bSthorpej 		}
193216a8771bSdholland 		lp[ord] = m->ll_string;
19335ecc953bSthorpej 	}
19345ecc953bSthorpej 	if (ord != attr->a_loclen)
19355ecc953bSthorpej 		panic("fixloc");
19365ecc953bSthorpej 	lp[ord] = NULL;
19375ecc953bSthorpej 	nextra = 0;
19385ecc953bSthorpej 	ep = extra;
19395ecc953bSthorpej 	nnodefault = 0;
19405ecc953bSthorpej 	ndp = nodefault;
194116a8771bSdholland 	for (n = got; n != NULL; n = n->ll_next) {
194216a8771bSdholland 		if (n->ll_num >= 0) {
194316a8771bSdholland 			if (n->ll_string != NULL)
194416a8771bSdholland 				lp[n->ll_num] = n->ll_string;
194516a8771bSdholland 			else if (lp[n->ll_num] == NULL) {
19465ecc953bSthorpej 				nnodefault++;
194716a8771bSdholland 				ndp = extend(ndp, n->ll_name);
19485ecc953bSthorpej 			}
19495ecc953bSthorpej 		} else {
19505ecc953bSthorpej 			nextra++;
195116a8771bSdholland 			ep = extend(ep, n->ll_name);
19525ecc953bSthorpej 		}
19535ecc953bSthorpej 	}
19545ecc953bSthorpej 	if (nextra) {
19555ecc953bSthorpej 		ep[-2] = 0;	/* kill ", " */
1956c7295a4cSchristos 		cfgerror("%s: extraneous locator%s: %s",
19575ecc953bSthorpej 		    name, nextra > 1 ? "s" : "", extra);
19585ecc953bSthorpej 	}
19595ecc953bSthorpej 	if (nmissing) {
19605ecc953bSthorpej 		mp[-2] = 0;
1961c7295a4cSchristos 		cfgerror("%s: must specify %s", name, missing);
19625ecc953bSthorpej 	}
19635ecc953bSthorpej 	if (nnodefault) {
19645ecc953bSthorpej 		ndp[-2] = 0;
1965c7295a4cSchristos 		cfgerror("%s: cannot wildcard %s", name, nodefault);
19665ecc953bSthorpej 	}
19675ecc953bSthorpej 	if (nmissing || nnodefault) {
19685ecc953bSthorpej 		free(lp);
19695ecc953bSthorpej 		lp = NULL;
19705ecc953bSthorpej 	}
19715ecc953bSthorpej 	return (lp);
19725ecc953bSthorpej }
1973437f8925Scube 
1974437f8925Scube void
1975437f8925Scube setversion(int newver)
1976437f8925Scube {
1977437f8925Scube 	if (newver > CONFIG_VERSION)
1978c7295a4cSchristos 		cfgerror("your sources require a newer version of config(1) "
1979437f8925Scube 		    "-- please rebuild it.");
1980437f8925Scube 	else if (newver < CONFIG_MINVERSION)
1981c7295a4cSchristos 		cfgerror("your sources are out of date -- please update.");
1982437f8925Scube 	else
1983437f8925Scube 		version = newver;
1984437f8925Scube }
1985