xref: /netbsd/usr.bin/config/sem.c (revision 7b7c582a)
1*7b7c582aScube /*	$NetBSD: sem.c,v 1.7 2005/09/30 22:51:46 cube 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>
525ecc953bSthorpej #include "defs.h"
535ecc953bSthorpej #include "sem.h"
545ecc953bSthorpej 
555ecc953bSthorpej /*
565ecc953bSthorpej  * config semantics.
575ecc953bSthorpej  */
585ecc953bSthorpej 
595ecc953bSthorpej #define	NAMESIZE	100	/* local name buffers */
605ecc953bSthorpej 
615ecc953bSthorpej const char *s_ifnet;		/* magic attribute */
625ecc953bSthorpej const char *s_qmark;
635ecc953bSthorpej const char *s_none;
645ecc953bSthorpej 
655ecc953bSthorpej static struct hashtab *cfhashtab;	/* for config lookup */
665ecc953bSthorpej struct hashtab *devitab;		/* etc */
675ecc953bSthorpej 
685ecc953bSthorpej static struct attr errattr;
695ecc953bSthorpej static struct devbase errdev;
705ecc953bSthorpej static struct deva errdeva;
715ecc953bSthorpej 
725ecc953bSthorpej static int has_errobj(struct nvlist *, void *);
735ecc953bSthorpej static struct nvlist *addtoattr(struct nvlist *, struct devbase *);
745ecc953bSthorpej static int resolve(struct nvlist **, const char *, const char *,
755ecc953bSthorpej 		   struct nvlist *, int);
765ecc953bSthorpej static struct pspec *getpspec(struct attr *, struct devbase *, int);
775ecc953bSthorpej static struct devi *newdevi(const char *, int, struct devbase *d);
785ecc953bSthorpej static struct devi *getdevi(const char *);
79c130d400Scube static void remove_devi(struct devi *);
805ecc953bSthorpej static const char *concat(const char *, int);
815ecc953bSthorpej static char *extend(char *, const char *);
825ecc953bSthorpej static int split(const char *, size_t, char *, size_t, int *);
835ecc953bSthorpej static void selectbase(struct devbase *, struct deva *);
845ecc953bSthorpej static int onlist(struct nvlist *, void *);
855ecc953bSthorpej static const char **fixloc(const char *, struct attr *, struct nvlist *);
865ecc953bSthorpej static const char *makedevstr(int, int);
875ecc953bSthorpej static const char *major2name(int);
885ecc953bSthorpej static int dev2major(struct devbase *);
895ecc953bSthorpej 
905ecc953bSthorpej extern const char *yyfile;
915ecc953bSthorpej 
925ecc953bSthorpej void
935ecc953bSthorpej initsem(void)
945ecc953bSthorpej {
955ecc953bSthorpej 
965ecc953bSthorpej 	attrtab = ht_new();
975ecc953bSthorpej 	errattr.a_name = "<internal>";
985ecc953bSthorpej 
995ecc953bSthorpej 	TAILQ_INIT(&allbases);
1005ecc953bSthorpej 
1015ecc953bSthorpej 	TAILQ_INIT(&alldevas);
1025ecc953bSthorpej 
1035ecc953bSthorpej 	TAILQ_INIT(&allpspecs);
1045ecc953bSthorpej 
1055ecc953bSthorpej 	cfhashtab = ht_new();
1065ecc953bSthorpej 	TAILQ_INIT(&allcf);
1075ecc953bSthorpej 
1085ecc953bSthorpej 	TAILQ_INIT(&alldevi);
1095ecc953bSthorpej 	errdev.d_name = "<internal>";
1105ecc953bSthorpej 
1115ecc953bSthorpej 	TAILQ_INIT(&allpseudo);
1125ecc953bSthorpej 
1135ecc953bSthorpej 	TAILQ_INIT(&alldevms);
1145ecc953bSthorpej 
1155ecc953bSthorpej 	s_ifnet = intern("ifnet");
1165ecc953bSthorpej 	s_qmark = intern("?");
1175ecc953bSthorpej 	s_none = intern("none");
1185ecc953bSthorpej }
1195ecc953bSthorpej 
1205ecc953bSthorpej /* Name of include file just ended (set in scan.l) */
1215ecc953bSthorpej extern const char *lastfile;
1225ecc953bSthorpej 
1235ecc953bSthorpej void
1245ecc953bSthorpej enddefs(void)
1255ecc953bSthorpej {
1265ecc953bSthorpej 	struct devbase *dev;
1275ecc953bSthorpej 
1285ecc953bSthorpej 	TAILQ_FOREACH(dev, &allbases, d_next) {
1295ecc953bSthorpej 		if (!dev->d_isdef) {
1305ecc953bSthorpej 			(void)fprintf(stderr,
1315ecc953bSthorpej 			    "%s: device `%s' used but not defined\n",
1325ecc953bSthorpej 			    lastfile, dev->d_name);
1335ecc953bSthorpej 			errors++;
1345ecc953bSthorpej 			continue;
1355ecc953bSthorpej 		}
1365ecc953bSthorpej 	}
1375ecc953bSthorpej 	if (errors) {
1385ecc953bSthorpej 		(void)fprintf(stderr, "*** Stop.\n");
1395ecc953bSthorpej 		exit(1);
1405ecc953bSthorpej 	}
1415ecc953bSthorpej }
1425ecc953bSthorpej 
1435ecc953bSthorpej void
1445ecc953bSthorpej setdefmaxusers(int min, int def, int max)
1455ecc953bSthorpej {
1465ecc953bSthorpej 
1475ecc953bSthorpej 	if (min < 1 || min > def || def > max)
1485ecc953bSthorpej 		error("maxusers must have 1 <= min (%d) <= default (%d) <= max (%d)", min, def, max);
1495ecc953bSthorpej 	else {
1505ecc953bSthorpej 		minmaxusers = min;
1515ecc953bSthorpej 		defmaxusers = def;
1525ecc953bSthorpej 		maxmaxusers = max;
1535ecc953bSthorpej 	}
1545ecc953bSthorpej }
1555ecc953bSthorpej 
1565ecc953bSthorpej void
1575ecc953bSthorpej setmaxusers(int n)
1585ecc953bSthorpej {
1595ecc953bSthorpej 
1605ecc953bSthorpej 	if (maxusers != 0) {
1615ecc953bSthorpej 		error("duplicate maxusers parameter");
1625ecc953bSthorpej 		return;
1635ecc953bSthorpej 	}
1645ecc953bSthorpej 	maxusers = n;
1655ecc953bSthorpej 	if (n < minmaxusers) {
1665ecc953bSthorpej 		error("warning: minimum of %d maxusers assumed", minmaxusers);
1675ecc953bSthorpej 		errors--;	/* take it away */
1685ecc953bSthorpej 		maxusers = minmaxusers;
1695ecc953bSthorpej 	} else if (n > maxmaxusers) {
1705ecc953bSthorpej 		error("warning: maxusers (%d) > %d", n, maxmaxusers);
1715ecc953bSthorpej 		errors--;
1725ecc953bSthorpej 	}
1735ecc953bSthorpej }
1745ecc953bSthorpej 
1755ecc953bSthorpej void
1765ecc953bSthorpej setident(const char *i)
1775ecc953bSthorpej {
1785ecc953bSthorpej 
1795ecc953bSthorpej 	ident = intern(i);
1805ecc953bSthorpej }
1815ecc953bSthorpej 
1825ecc953bSthorpej /*
1835ecc953bSthorpej  * Define an attribute, optionally with an interface (a locator list)
1845ecc953bSthorpej  * and a set of attribute-dependencies.
1855ecc953bSthorpej  *
1865ecc953bSthorpej  * Attribute dependencies MAY NOT be interface attributes.
1875ecc953bSthorpej  *
1885ecc953bSthorpej  * Since an empty locator list is logically different from "no interface",
1895ecc953bSthorpej  * all locator lists include a dummy head node, which we discard here.
1905ecc953bSthorpej  */
1915ecc953bSthorpej int
1925ecc953bSthorpej defattr(const char *name, struct nvlist *locs, struct nvlist *deps,
1935ecc953bSthorpej     int devclass)
1945ecc953bSthorpej {
1955ecc953bSthorpej 	struct attr *a, *dep;
1965ecc953bSthorpej 	struct nvlist *nv;
1975ecc953bSthorpej 	int len;
1985ecc953bSthorpej 
1995ecc953bSthorpej 	if (locs != NULL && devclass)
2005ecc953bSthorpej 		panic("defattr(%s): locators and devclass", name);
2015ecc953bSthorpej 
2025ecc953bSthorpej 	if (deps != NULL && devclass)
2035ecc953bSthorpej 		panic("defattr(%s): dependencies and devclass", name);
2045ecc953bSthorpej 
2055ecc953bSthorpej 	/*
2065ecc953bSthorpej 	 * If this attribute depends on any others, make sure none of
2075ecc953bSthorpej 	 * the dependencies are interface attributes.
2085ecc953bSthorpej 	 */
2095ecc953bSthorpej 	for (nv = deps; nv != NULL; nv = nv->nv_next) {
2105ecc953bSthorpej 		dep = nv->nv_ptr;
2115ecc953bSthorpej 		if (dep->a_iattr) {
2125ecc953bSthorpej 			error("`%s' dependency `%s' is an interface attribute",
2135ecc953bSthorpej 			    name, dep->a_name);
2145ecc953bSthorpej 			return (1);
2155ecc953bSthorpej 		}
2165ecc953bSthorpej 	}
2175ecc953bSthorpej 
2185ecc953bSthorpej 	a = ecalloc(1, sizeof *a);
2195ecc953bSthorpej 	if (ht_insert(attrtab, name, a)) {
2205ecc953bSthorpej 		free(a);
2215ecc953bSthorpej 		error("attribute `%s' already defined", name);
2225ecc953bSthorpej 		nvfreel(locs);
2235ecc953bSthorpej 		return (1);
2245ecc953bSthorpej 	}
2255ecc953bSthorpej 
2265ecc953bSthorpej 	a->a_name = name;
2275ecc953bSthorpej 	if (locs != NULL) {
2285ecc953bSthorpej 		a->a_iattr = 1;
2295ecc953bSthorpej 		a->a_locs = locs->nv_next;
2305ecc953bSthorpej 		nvfree(locs);
2315ecc953bSthorpej 	} else {
2325ecc953bSthorpej 		a->a_iattr = 0;
2335ecc953bSthorpej 		a->a_locs = NULL;
2345ecc953bSthorpej 	}
2355ecc953bSthorpej 	if (devclass) {
2365ecc953bSthorpej 		size_t l = strlen(name) + 4;
2375ecc953bSthorpej 		char *classenum = alloca(l), *cp;
2385ecc953bSthorpej 		int errored = 0;
2395ecc953bSthorpej 
2405ecc953bSthorpej 		strlcpy(classenum, "DV_", l);
2415ecc953bSthorpej 		strlcat(classenum, name, l);
2425ecc953bSthorpej 		for (cp = classenum + 3; *cp; cp++) {
2435ecc953bSthorpej 			if (!errored &&
2445ecc953bSthorpej 			    (!isalnum((unsigned char)*cp) ||
2455ecc953bSthorpej 			      (isalpha((unsigned char)*cp) && !islower((unsigned char)*cp)))) {
2465ecc953bSthorpej 				error("device class names must be lower-case alphanumeric characters");
2475ecc953bSthorpej 				errored = 1;
2485ecc953bSthorpej 			}
2495ecc953bSthorpej 			*cp = toupper((unsigned char)*cp);
2505ecc953bSthorpej 		}
2515ecc953bSthorpej 		a->a_devclass = intern(classenum);
2525ecc953bSthorpej 	} else
2535ecc953bSthorpej 		a->a_devclass = NULL;
2545ecc953bSthorpej 	len = 0;
2555ecc953bSthorpej 	for (nv = a->a_locs; nv != NULL; nv = nv->nv_next)
2565ecc953bSthorpej 		len++;
2575ecc953bSthorpej 	a->a_loclen = len;
2585ecc953bSthorpej 	a->a_devs = NULL;
2595ecc953bSthorpej 	a->a_refs = NULL;
2605ecc953bSthorpej 	a->a_deps = deps;
2615ecc953bSthorpej 	a->a_expanding = 0;
2625ecc953bSthorpej 
2635ecc953bSthorpej 	/* Expand the attribute to check for cycles in the graph. */
2645ecc953bSthorpej 	expandattr(a, NULL);
2655ecc953bSthorpej 
2665ecc953bSthorpej 	return (0);
2675ecc953bSthorpej }
2685ecc953bSthorpej 
2695ecc953bSthorpej /*
2705ecc953bSthorpej  * Return true if the given `error object' is embedded in the given
2715ecc953bSthorpej  * pointer list.
2725ecc953bSthorpej  */
2735ecc953bSthorpej static int
2745ecc953bSthorpej has_errobj(struct nvlist *nv, void *obj)
2755ecc953bSthorpej {
2765ecc953bSthorpej 
2775ecc953bSthorpej 	for (; nv != NULL; nv = nv->nv_next)
2785ecc953bSthorpej 		if (nv->nv_ptr == obj)
2795ecc953bSthorpej 			return (1);
2805ecc953bSthorpej 	return (0);
2815ecc953bSthorpej }
2825ecc953bSthorpej 
2835ecc953bSthorpej /*
2845ecc953bSthorpej  * Return true if the given attribute is embedded in the given
2855ecc953bSthorpej  * pointer list.
2865ecc953bSthorpej  */
2875ecc953bSthorpej int
2885ecc953bSthorpej has_attr(struct nvlist *nv, const char *attr)
2895ecc953bSthorpej {
2905ecc953bSthorpej 	struct attr *a;
2915ecc953bSthorpej 
2925ecc953bSthorpej 	if ((a = getattr(attr)) == NULL)
2935ecc953bSthorpej 		return (0);
2945ecc953bSthorpej 
2955ecc953bSthorpej 	for (; nv != NULL; nv = nv->nv_next)
2965ecc953bSthorpej 		if (nv->nv_ptr == a)
2975ecc953bSthorpej 			return (1);
2985ecc953bSthorpej 	return (0);
2995ecc953bSthorpej }
3005ecc953bSthorpej 
3015ecc953bSthorpej /*
3025ecc953bSthorpej  * Add a device base to a list in an attribute (actually, to any list).
3035ecc953bSthorpej  * Note that this does not check for duplicates, and does reverse the
3045ecc953bSthorpej  * list order, but no one cares anyway.
3055ecc953bSthorpej  */
3065ecc953bSthorpej static struct nvlist *
3075ecc953bSthorpej addtoattr(struct nvlist *l, struct devbase *dev)
3085ecc953bSthorpej {
3095ecc953bSthorpej 	struct nvlist *n;
3105ecc953bSthorpej 
3115ecc953bSthorpej 	n = newnv(NULL, NULL, dev, 0, l);
3125ecc953bSthorpej 	return (n);
3135ecc953bSthorpej }
3145ecc953bSthorpej 
3155ecc953bSthorpej /*
3165ecc953bSthorpej  * Define a device.  This may (or may not) also define an interface
3175ecc953bSthorpej  * attribute and/or refer to existing attributes.
3185ecc953bSthorpej  */
3195ecc953bSthorpej void
3205ecc953bSthorpej defdev(struct devbase *dev, struct nvlist *loclist, struct nvlist *attrs,
3215ecc953bSthorpej        int ispseudo)
3225ecc953bSthorpej {
3235ecc953bSthorpej 	struct nvlist *nv;
3245ecc953bSthorpej 	struct attr *a;
3255ecc953bSthorpej 
3265ecc953bSthorpej 	if (dev == &errdev)
3275ecc953bSthorpej 		goto bad;
3285ecc953bSthorpej 	if (dev->d_isdef) {
3295ecc953bSthorpej 		error("redefinition of `%s'", dev->d_name);
3305ecc953bSthorpej 		goto bad;
3315ecc953bSthorpej 	}
3325ecc953bSthorpej 
3335ecc953bSthorpej 	dev->d_isdef = 1;
3345ecc953bSthorpej 	if (has_errobj(attrs, &errattr))
3355ecc953bSthorpej 		goto bad;
3365ecc953bSthorpej 
3375ecc953bSthorpej 	/*
3385ecc953bSthorpej 	 * Handle implicit attribute definition from locator list.  Do
3395ecc953bSthorpej 	 * this before scanning the `at' list so that we can have, e.g.:
3405ecc953bSthorpej 	 *	device foo at other, foo { slot = -1 }
3415ecc953bSthorpej 	 * (where you can plug in a foo-bus extender to a foo-bus).
3425ecc953bSthorpej 	 */
3435ecc953bSthorpej 	if (loclist != NULL) {
3445ecc953bSthorpej 		nv = loclist;
3455ecc953bSthorpej 		loclist = NULL;	/* defattr disposes of them for us */
3465ecc953bSthorpej 		if (defattr(dev->d_name, nv, NULL, 0))
3475ecc953bSthorpej 			goto bad;
3485ecc953bSthorpej 		attrs = newnv(dev->d_name, NULL, getattr(dev->d_name), 0,
3495ecc953bSthorpej 		    attrs);
350c130d400Scube 
351c130d400Scube 		/*
352c130d400Scube 		 * Pseudo-devices can have children.  Consider them as
353c130d400Scube 		 * attaching at root.
354c130d400Scube 		 */
355c130d400Scube 		if (ispseudo)
356c130d400Scube 			ht_insert(devroottab, dev->d_name, dev);
3575ecc953bSthorpej 	}
3585ecc953bSthorpej 
3595ecc953bSthorpej 	/* Committed!  Set up fields. */
3605ecc953bSthorpej 	dev->d_ispseudo = ispseudo;
3615ecc953bSthorpej 	dev->d_attrs = attrs;
3625ecc953bSthorpej 	dev->d_classattr = NULL;		/* for now */
3635ecc953bSthorpej 
3645ecc953bSthorpej 	/*
3655ecc953bSthorpej 	 * For each interface attribute this device refers to, add this
3665ecc953bSthorpej 	 * device to its reference list.  This makes, e.g., finding all
3675ecc953bSthorpej 	 * "scsi"s easier.
3685ecc953bSthorpej 	 *
3695ecc953bSthorpej 	 * While looking through the attributes, set up the device
3705ecc953bSthorpej 	 * class if any are devclass attributes (and error out if the
3715ecc953bSthorpej 	 * device has two classes).
3725ecc953bSthorpej 	 */
3735ecc953bSthorpej 	for (nv = attrs; nv != NULL; nv = nv->nv_next) {
3745ecc953bSthorpej 		a = nv->nv_ptr;
3755ecc953bSthorpej 		if (a->a_iattr)
3765ecc953bSthorpej 			a->a_refs = addtoattr(a->a_refs, dev);
3775ecc953bSthorpej 		if (a->a_devclass != NULL) {
3785ecc953bSthorpej 			if (dev->d_classattr != NULL) {
3795ecc953bSthorpej 				error("device `%s' has multiple classes (`%s' and `%s')",
3805ecc953bSthorpej 				    dev->d_name, dev->d_classattr->a_name,
3815ecc953bSthorpej 				    a->a_name);
3825ecc953bSthorpej 			}
3835ecc953bSthorpej 			dev->d_classattr = a;
3845ecc953bSthorpej 		}
3855ecc953bSthorpej 	}
3865ecc953bSthorpej 	return;
3875ecc953bSthorpej  bad:
3885ecc953bSthorpej 	nvfreel(loclist);
3895ecc953bSthorpej 	nvfreel(attrs);
3905ecc953bSthorpej }
3915ecc953bSthorpej 
3925ecc953bSthorpej /*
3935ecc953bSthorpej  * Look up a devbase.  Also makes sure it is a reasonable name,
3945ecc953bSthorpej  * i.e., does not end in a digit or contain special characters.
3955ecc953bSthorpej  */
3965ecc953bSthorpej struct devbase *
3975ecc953bSthorpej getdevbase(const char *name)
3985ecc953bSthorpej {
3995ecc953bSthorpej 	u_char *p;
4005ecc953bSthorpej 	struct devbase *dev;
4015ecc953bSthorpej 
4025ecc953bSthorpej 	p = (u_char *)name;
4035ecc953bSthorpej 	if (!isalpha(*p))
4045ecc953bSthorpej 		goto badname;
4055ecc953bSthorpej 	while (*++p) {
4065ecc953bSthorpej 		if (!isalnum(*p) && *p != '_')
4075ecc953bSthorpej 			goto badname;
4085ecc953bSthorpej 	}
4095ecc953bSthorpej 	if (isdigit(*--p)) {
4105ecc953bSthorpej  badname:
4115ecc953bSthorpej 		error("bad device base name `%s'", name);
4125ecc953bSthorpej 		return (&errdev);
4135ecc953bSthorpej 	}
4145ecc953bSthorpej 	dev = ht_lookup(devbasetab, name);
4155ecc953bSthorpej 	if (dev == NULL) {
4165ecc953bSthorpej 		dev = ecalloc(1, sizeof *dev);
4175ecc953bSthorpej 		dev->d_name = name;
4185ecc953bSthorpej 		dev->d_isdef = 0;
4195ecc953bSthorpej 		dev->d_major = NODEV;
4205ecc953bSthorpej 		dev->d_attrs = NULL;
4215ecc953bSthorpej 		dev->d_ihead = NULL;
4225ecc953bSthorpej 		dev->d_ipp = &dev->d_ihead;
4235ecc953bSthorpej 		dev->d_ahead = NULL;
4245ecc953bSthorpej 		dev->d_app = &dev->d_ahead;
4255ecc953bSthorpej 		dev->d_umax = 0;
4265ecc953bSthorpej 		TAILQ_INSERT_TAIL(&allbases, dev, d_next);
4275ecc953bSthorpej 		if (ht_insert(devbasetab, name, dev))
4285ecc953bSthorpej 			panic("getdevbase(%s)", name);
4295ecc953bSthorpej 	}
4305ecc953bSthorpej 	return (dev);
4315ecc953bSthorpej }
4325ecc953bSthorpej 
4335ecc953bSthorpej /*
4345ecc953bSthorpej  * Define some of a device's allowable parent attachments.
4355ecc953bSthorpej  * There may be a list of (plain) attributes.
4365ecc953bSthorpej  */
4375ecc953bSthorpej void
4385ecc953bSthorpej defdevattach(struct deva *deva, struct devbase *dev, struct nvlist *atlist,
4395ecc953bSthorpej 	     struct nvlist *attrs)
4405ecc953bSthorpej {
4415ecc953bSthorpej 	struct nvlist *nv;
4425ecc953bSthorpej 	struct attr *a;
4435ecc953bSthorpej 	struct deva *da;
4445ecc953bSthorpej 
4455ecc953bSthorpej 	if (dev == &errdev)
4465ecc953bSthorpej 		goto bad;
4475ecc953bSthorpej 	if (deva == NULL)
4485ecc953bSthorpej 		deva = getdevattach(dev->d_name);
4495ecc953bSthorpej 	if (deva == &errdeva)
4505ecc953bSthorpej 		goto bad;
4515ecc953bSthorpej 	if (!dev->d_isdef) {
4525ecc953bSthorpej 		error("attaching undefined device `%s'", dev->d_name);
4535ecc953bSthorpej 		goto bad;
4545ecc953bSthorpej 	}
4555ecc953bSthorpej 	if (deva->d_isdef) {
4565ecc953bSthorpej 		error("redefinition of `%s'", deva->d_name);
4575ecc953bSthorpej 		goto bad;
4585ecc953bSthorpej 	}
4595ecc953bSthorpej 	if (dev->d_ispseudo) {
4605ecc953bSthorpej 		error("pseudo-devices can't attach");
4615ecc953bSthorpej 		goto bad;
4625ecc953bSthorpej 	}
4635ecc953bSthorpej 
4645ecc953bSthorpej 	deva->d_isdef = 1;
4655ecc953bSthorpej 	if (has_errobj(attrs, &errattr))
4665ecc953bSthorpej 		goto bad;
4675ecc953bSthorpej 	for (nv = attrs; nv != NULL; nv = nv->nv_next) {
4685ecc953bSthorpej 		a = nv->nv_ptr;
4695ecc953bSthorpej 		if (a == &errattr)
4705ecc953bSthorpej 			continue;		/* already complained */
4715ecc953bSthorpej 		if (a->a_iattr || a->a_devclass != NULL)
4725ecc953bSthorpej 			error("`%s' is not a plain attribute", a->a_name);
4735ecc953bSthorpej 	}
4745ecc953bSthorpej 
4755ecc953bSthorpej 	/* Committed!  Set up fields. */
4765ecc953bSthorpej 	deva->d_attrs = attrs;
4775ecc953bSthorpej 	deva->d_atlist = atlist;
4785ecc953bSthorpej 	deva->d_devbase = dev;
4795ecc953bSthorpej 
4805ecc953bSthorpej 	/*
4815ecc953bSthorpej 	 * Turn the `at' list into interface attributes (map each
4825ecc953bSthorpej 	 * nv_name to an attribute, or to NULL for root), and add
4835ecc953bSthorpej 	 * this device to those attributes, so that children can
4845ecc953bSthorpej 	 * be listed at this particular device if they are supported
4855ecc953bSthorpej 	 * by that attribute.
4865ecc953bSthorpej 	 */
4875ecc953bSthorpej 	for (nv = atlist; nv != NULL; nv = nv->nv_next) {
4885ecc953bSthorpej 		if (nv->nv_name == NULL)
4895ecc953bSthorpej 			nv->nv_ptr = a = NULL;	/* at root */
4905ecc953bSthorpej 		else
4915ecc953bSthorpej 			nv->nv_ptr = a = getattr(nv->nv_name);
4925ecc953bSthorpej 		if (a == &errattr)
4935ecc953bSthorpej 			continue;		/* already complained */
4945ecc953bSthorpej 
4955ecc953bSthorpej 		/*
4965ecc953bSthorpej 		 * Make sure that an attachment spec doesn't
4975ecc953bSthorpej 		 * already say how to attach to this attribute.
4985ecc953bSthorpej 		 */
4995ecc953bSthorpej 		for (da = dev->d_ahead; da != NULL; da = da->d_bsame)
5005ecc953bSthorpej 			if (onlist(da->d_atlist, a))
5015ecc953bSthorpej 				error("attach at `%s' already done by `%s'",
5025ecc953bSthorpej 				     a ? a->a_name : "root", da->d_name);
5035ecc953bSthorpej 
504c130d400Scube 		if (a == NULL) {
505c130d400Scube 			ht_insert(devroottab, dev->d_name, dev);
5065ecc953bSthorpej 			continue;		/* at root; don't add */
507c130d400Scube 		}
5085ecc953bSthorpej 		if (!a->a_iattr)
5095ecc953bSthorpej 			error("%s cannot be at plain attribute `%s'",
5105ecc953bSthorpej 			    dev->d_name, a->a_name);
5115ecc953bSthorpej 		else
5125ecc953bSthorpej 			a->a_devs = addtoattr(a->a_devs, dev);
5135ecc953bSthorpej 	}
5145ecc953bSthorpej 
5155ecc953bSthorpej 	/* attach to parent */
5165ecc953bSthorpej 	*dev->d_app = deva;
5175ecc953bSthorpej 	dev->d_app = &deva->d_bsame;
5185ecc953bSthorpej 	return;
5195ecc953bSthorpej  bad:
5205ecc953bSthorpej 	nvfreel(atlist);
5215ecc953bSthorpej 	nvfreel(attrs);
5225ecc953bSthorpej }
5235ecc953bSthorpej 
5245ecc953bSthorpej /*
5255ecc953bSthorpej  * Look up a device attachment.  Also makes sure it is a reasonable
5265ecc953bSthorpej  * name, i.e., does not contain digits or special characters.
5275ecc953bSthorpej  */
5285ecc953bSthorpej struct deva *
5295ecc953bSthorpej getdevattach(const char *name)
5305ecc953bSthorpej {
5315ecc953bSthorpej 	u_char *p;
5325ecc953bSthorpej 	struct deva *deva;
5335ecc953bSthorpej 
5345ecc953bSthorpej 	p = (u_char *)name;
5355ecc953bSthorpej 	if (!isalpha(*p))
5365ecc953bSthorpej 		goto badname;
5375ecc953bSthorpej 	while (*++p) {
5385ecc953bSthorpej 		if (!isalnum(*p) && *p != '_')
5395ecc953bSthorpej 			goto badname;
5405ecc953bSthorpej 	}
5415ecc953bSthorpej 	if (isdigit(*--p)) {
5425ecc953bSthorpej  badname:
5435ecc953bSthorpej 		error("bad device attachment name `%s'", name);
5445ecc953bSthorpej 		return (&errdeva);
5455ecc953bSthorpej 	}
5465ecc953bSthorpej 	deva = ht_lookup(devatab, name);
5475ecc953bSthorpej 	if (deva == NULL) {
5485ecc953bSthorpej 		deva = ecalloc(1, sizeof *deva);
5495ecc953bSthorpej 		deva->d_name = name;
5505ecc953bSthorpej 		deva->d_bsame = NULL;
5515ecc953bSthorpej 		deva->d_isdef = 0;
5525ecc953bSthorpej 		deva->d_devbase = NULL;
5535ecc953bSthorpej 		deva->d_atlist = NULL;
5545ecc953bSthorpej 		deva->d_attrs = NULL;
5555ecc953bSthorpej 		deva->d_ihead = NULL;
5565ecc953bSthorpej 		deva->d_ipp = &deva->d_ihead;
5575ecc953bSthorpej 		TAILQ_INSERT_TAIL(&alldevas, deva, d_next);
5585ecc953bSthorpej 		if (ht_insert(devatab, name, deva))
5595ecc953bSthorpej 			panic("getdeva(%s)", name);
5605ecc953bSthorpej 	}
5615ecc953bSthorpej 	return (deva);
5625ecc953bSthorpej }
5635ecc953bSthorpej 
5645ecc953bSthorpej /*
5655ecc953bSthorpej  * Look up an attribute.
5665ecc953bSthorpej  */
5675ecc953bSthorpej struct attr *
5685ecc953bSthorpej getattr(const char *name)
5695ecc953bSthorpej {
5705ecc953bSthorpej 	struct attr *a;
5715ecc953bSthorpej 
5725ecc953bSthorpej 	if ((a = ht_lookup(attrtab, name)) == NULL) {
5735ecc953bSthorpej 		error("undefined attribute `%s'", name);
5745ecc953bSthorpej 		a = &errattr;
5755ecc953bSthorpej 	}
5765ecc953bSthorpej 	return (a);
5775ecc953bSthorpej }
5785ecc953bSthorpej 
5795ecc953bSthorpej /*
5805ecc953bSthorpej  * Recursively expand an attribute and its dependencies, checking for
5815ecc953bSthorpej  * cycles, and invoking a callback for each attribute found.
5825ecc953bSthorpej  */
5835ecc953bSthorpej void
5845ecc953bSthorpej expandattr(struct attr *a, void (*callback)(struct attr *))
5855ecc953bSthorpej {
5865ecc953bSthorpej 	struct nvlist *nv;
5875ecc953bSthorpej 	struct attr *dep;
5885ecc953bSthorpej 
5895ecc953bSthorpej 	if (a->a_expanding) {
5905ecc953bSthorpej 		error("circular dependency on attribute `%s'", a->a_name);
5915ecc953bSthorpej 		return;
5925ecc953bSthorpej 	}
5935ecc953bSthorpej 
5945ecc953bSthorpej 	a->a_expanding = 1;
5955ecc953bSthorpej 
5965ecc953bSthorpej 	/* First expand all of this attribute's dependencies. */
5975ecc953bSthorpej 	for (nv = a->a_deps; nv != NULL; nv = nv->nv_next) {
5985ecc953bSthorpej 		dep = nv->nv_ptr;
5995ecc953bSthorpej 		expandattr(dep, callback);
6005ecc953bSthorpej 	}
6015ecc953bSthorpej 
6025ecc953bSthorpej 	/* ...and now invoke the callback for ourself. */
6035ecc953bSthorpej 	if (callback != NULL)
6045ecc953bSthorpej 		(*callback)(a);
6055ecc953bSthorpej 
6065ecc953bSthorpej 	a->a_expanding = 0;
6075ecc953bSthorpej }
6085ecc953bSthorpej 
6095ecc953bSthorpej /*
6105ecc953bSthorpej  * Set the major device number for a device, so that it can be used
6115ecc953bSthorpej  * as a root/dumps "on" device in a configuration.
6125ecc953bSthorpej  */
6135ecc953bSthorpej void
6145ecc953bSthorpej setmajor(struct devbase *d, int n)
6155ecc953bSthorpej {
6165ecc953bSthorpej 
6175ecc953bSthorpej 	if (d != &errdev && d->d_major != NODEV)
6185ecc953bSthorpej 		error("device `%s' is already major %d",
6195ecc953bSthorpej 		    d->d_name, d->d_major);
6205ecc953bSthorpej 	else
6215ecc953bSthorpej 		d->d_major = n;
6225ecc953bSthorpej }
6235ecc953bSthorpej 
6245ecc953bSthorpej const char *
6255ecc953bSthorpej major2name(int maj)
6265ecc953bSthorpej {
6275ecc953bSthorpej 	struct devbase *dev;
6285ecc953bSthorpej 	struct devm *dm;
6295ecc953bSthorpej 
6305ecc953bSthorpej 	if (!do_devsw) {
6315ecc953bSthorpej 		TAILQ_FOREACH(dev, &allbases, d_next) {
6325ecc953bSthorpej 			if (dev->d_major == maj)
6335ecc953bSthorpej 				return (dev->d_name);
6345ecc953bSthorpej 		}
6355ecc953bSthorpej 	} else {
6365ecc953bSthorpej 		TAILQ_FOREACH(dm, &alldevms, dm_next) {
6375ecc953bSthorpej 			if (dm->dm_bmajor == maj)
6385ecc953bSthorpej 				return (dm->dm_name);
6395ecc953bSthorpej 		}
6405ecc953bSthorpej 	}
6415ecc953bSthorpej 	return (NULL);
6425ecc953bSthorpej }
6435ecc953bSthorpej 
6445ecc953bSthorpej int
6455ecc953bSthorpej dev2major(struct devbase *dev)
6465ecc953bSthorpej {
6475ecc953bSthorpej 	struct devm *dm;
6485ecc953bSthorpej 
6495ecc953bSthorpej 	if (!do_devsw)
6505ecc953bSthorpej 		return (dev->d_major);
6515ecc953bSthorpej 
6525ecc953bSthorpej 	TAILQ_FOREACH(dm, &alldevms, dm_next) {
6535ecc953bSthorpej 		if (strcmp(dm->dm_name, dev->d_name) == 0)
6545ecc953bSthorpej 			return (dm->dm_bmajor);
6555ecc953bSthorpej 	}
6565ecc953bSthorpej 	return (NODEV);
6575ecc953bSthorpej }
6585ecc953bSthorpej 
6595ecc953bSthorpej /*
6605ecc953bSthorpej  * Make a string description of the device at maj/min.
6615ecc953bSthorpej  */
6625ecc953bSthorpej static const char *
6635ecc953bSthorpej makedevstr(int maj, int min)
6645ecc953bSthorpej {
6655ecc953bSthorpej 	const char *devname;
6665ecc953bSthorpej 	char buf[32];
6675ecc953bSthorpej 
6685ecc953bSthorpej 	devname = major2name(maj);
6695ecc953bSthorpej 	if (devname == NULL)
6705ecc953bSthorpej 		(void)snprintf(buf, sizeof(buf), "<%d/%d>", maj, min);
6715ecc953bSthorpej 	else
6725ecc953bSthorpej 		(void)snprintf(buf, sizeof(buf), "%s%d%c", devname,
6735ecc953bSthorpej 		    min / maxpartitions, (min % maxpartitions) + 'a');
6745ecc953bSthorpej 
6755ecc953bSthorpej 	return (intern(buf));
6765ecc953bSthorpej }
6775ecc953bSthorpej 
6785ecc953bSthorpej /*
6795ecc953bSthorpej  * Map things like "ra0b" => makedev(major("ra"), 0*maxpartitions + 'b'-'a').
6805ecc953bSthorpej  * Handle the case where the device number is given but there is no
6815ecc953bSthorpej  * corresponding name, and map NULL to the default.
6825ecc953bSthorpej  */
6835ecc953bSthorpej static int
6845ecc953bSthorpej resolve(struct nvlist **nvp, const char *name, const char *what,
6855ecc953bSthorpej 	struct nvlist *dflt, int part)
6865ecc953bSthorpej {
6875ecc953bSthorpej 	struct nvlist *nv;
6885ecc953bSthorpej 	struct devbase *dev;
6895ecc953bSthorpej 	const char *cp;
6905ecc953bSthorpej 	int maj, min, i, l;
6915ecc953bSthorpej 	int unit;
6925ecc953bSthorpej 	char buf[NAMESIZE];
6935ecc953bSthorpej 
6945ecc953bSthorpej 	if ((u_int)(part -= 'a') >= maxpartitions)
6955ecc953bSthorpej 		panic("resolve");
6965ecc953bSthorpej 	if ((nv = *nvp) == NULL) {
6975ecc953bSthorpej 		dev_t	d = NODEV;
6985ecc953bSthorpej 		/*
6995ecc953bSthorpej 		 * Apply default.  Easiest to do this by number.
7005ecc953bSthorpej 		 * Make sure to retain NODEVness, if this is dflt's disposition.
7015ecc953bSthorpej 		 */
7025ecc953bSthorpej 		if (dflt->nv_int != NODEV) {
7035ecc953bSthorpej 			maj = major(dflt->nv_int);
7045ecc953bSthorpej 			min = ((minor(dflt->nv_int) / maxpartitions) *
7055ecc953bSthorpej 			    maxpartitions) + part;
7065ecc953bSthorpej 			d = makedev(maj, min);
7075ecc953bSthorpej 			cp = makedevstr(maj, min);
7085ecc953bSthorpej 		} else
7095ecc953bSthorpej 			cp = NULL;
7105ecc953bSthorpej 		*nvp = nv = newnv(NULL, cp, NULL, d, NULL);
7115ecc953bSthorpej 	}
7125ecc953bSthorpej 	if (nv->nv_int != NODEV) {
7135ecc953bSthorpej 		/*
7145ecc953bSthorpej 		 * By the numbers.  Find the appropriate major number
7155ecc953bSthorpej 		 * to make a name.
7165ecc953bSthorpej 		 */
7175ecc953bSthorpej 		maj = major(nv->nv_int);
7185ecc953bSthorpej 		min = minor(nv->nv_int);
7195ecc953bSthorpej 		nv->nv_str = makedevstr(maj, min);
7205ecc953bSthorpej 		return (0);
7215ecc953bSthorpej 	}
7225ecc953bSthorpej 
7235ecc953bSthorpej 	if (nv->nv_str == NULL || nv->nv_str == s_qmark)
7245ecc953bSthorpej 		/*
7255ecc953bSthorpej 		 * Wildcarded or unspecified; leave it as NODEV.
7265ecc953bSthorpej 		 */
7275ecc953bSthorpej 		return (0);
7285ecc953bSthorpej 
7295ecc953bSthorpej 	/*
7305ecc953bSthorpej 	 * The normal case: things like "ra2b".  Check for partition
7315ecc953bSthorpej 	 * suffix, remove it if there, and split into name ("ra") and
7325ecc953bSthorpej 	 * unit (2).
7335ecc953bSthorpej 	 */
7345ecc953bSthorpej 	l = i = strlen(nv->nv_str);
7355ecc953bSthorpej 	cp = &nv->nv_str[l];
7365ecc953bSthorpej 	if (l > 1 && *--cp >= 'a' && *cp < 'a' + maxpartitions &&
7375ecc953bSthorpej 	    isdigit((unsigned char)cp[-1])) {
7385ecc953bSthorpej 		l--;
7395ecc953bSthorpej 		part = *cp - 'a';
7405ecc953bSthorpej 	}
7415ecc953bSthorpej 	cp = nv->nv_str;
7425ecc953bSthorpej 	if (split(cp, l, buf, sizeof buf, &unit)) {
7435ecc953bSthorpej 		error("%s: invalid %s device name `%s'", name, what, cp);
7445ecc953bSthorpej 		return (1);
7455ecc953bSthorpej 	}
7465ecc953bSthorpej 	dev = ht_lookup(devbasetab, intern(buf));
7475ecc953bSthorpej 	if (dev == NULL) {
7485ecc953bSthorpej 		error("%s: device `%s' does not exist", name, buf);
7495ecc953bSthorpej 		return (1);
7505ecc953bSthorpej 	}
7515ecc953bSthorpej 
7525ecc953bSthorpej 	/*
7535ecc953bSthorpej 	 * Check for the magic network interface attribute, and
7545ecc953bSthorpej 	 * don't bother making a device number.
7555ecc953bSthorpej 	 */
7565ecc953bSthorpej 	if (has_attr(dev->d_attrs, s_ifnet)) {
7575ecc953bSthorpej 		nv->nv_int = NODEV;
7585ecc953bSthorpej 		nv->nv_ifunit = unit;	/* XXX XXX XXX */
7595ecc953bSthorpej 	} else {
7605ecc953bSthorpej 		maj = dev2major(dev);
7615ecc953bSthorpej 		if (maj == NODEV) {
7625ecc953bSthorpej 			error("%s: can't make %s device from `%s'",
7635ecc953bSthorpej 			    name, what, nv->nv_str);
7645ecc953bSthorpej 			return (1);
7655ecc953bSthorpej 		}
7665ecc953bSthorpej 		nv->nv_int = makedev(maj, unit * maxpartitions + part);
7675ecc953bSthorpej 	}
7685ecc953bSthorpej 
7695ecc953bSthorpej 	nv->nv_name = dev->d_name;
7705ecc953bSthorpej 	return (0);
7715ecc953bSthorpej }
7725ecc953bSthorpej 
7735ecc953bSthorpej /*
7745ecc953bSthorpej  * Add a completed configuration to the list.
7755ecc953bSthorpej  */
7765ecc953bSthorpej void
7775ecc953bSthorpej addconf(struct config *cf0)
7785ecc953bSthorpej {
7795ecc953bSthorpej 	struct config *cf;
7805ecc953bSthorpej 	struct nvlist *nv;
7815ecc953bSthorpej 	const char *name;
7825ecc953bSthorpej 
7835ecc953bSthorpej 	name = cf0->cf_name;
7845ecc953bSthorpej 	cf = ecalloc(1, sizeof *cf);
7855ecc953bSthorpej 	if (ht_insert(cfhashtab, name, cf)) {
7865ecc953bSthorpej 		error("configuration `%s' already defined", name);
7875ecc953bSthorpej 		free(cf);
7885ecc953bSthorpej 		goto bad;
7895ecc953bSthorpej 	}
7905ecc953bSthorpej 	*cf = *cf0;
7915ecc953bSthorpej 
7925ecc953bSthorpej 	/*
7935ecc953bSthorpej 	 * Resolve the root device.
7945ecc953bSthorpej 	 */
7955ecc953bSthorpej 	if (cf->cf_root->nv_str != s_qmark) {
7965ecc953bSthorpej 		nv = cf->cf_root;
7975ecc953bSthorpej 		if (nv == NULL) {
7985ecc953bSthorpej 			error("%s: no root device specified", name);
7995ecc953bSthorpej 			goto bad;
8005ecc953bSthorpej 		}
8015ecc953bSthorpej 		if (resolve(&cf->cf_root, name, "root", nv, 'a'))
8025ecc953bSthorpej 			goto bad;
8035ecc953bSthorpej 	}
8045ecc953bSthorpej 
8055ecc953bSthorpej 	/*
8065ecc953bSthorpej 	 * Resolve the dump device.
8075ecc953bSthorpej 	 */
8085ecc953bSthorpej 	if (cf->cf_dump == NULL || cf->cf_dump->nv_str == s_qmark) {
8095ecc953bSthorpej 		/*
8105ecc953bSthorpej 		 * Wildcarded dump device is equivalent to unspecified.
8115ecc953bSthorpej 		 */
8125ecc953bSthorpej 		cf->cf_dump = NULL;
8135ecc953bSthorpej 	} else if (cf->cf_dump->nv_str == s_none) {
8145ecc953bSthorpej 		/*
8155ecc953bSthorpej 		 * Operator has requested that no dump device should be
8165ecc953bSthorpej 		 * configured; do nothing.
8175ecc953bSthorpej 		 */
8185ecc953bSthorpej 	} else {
8195ecc953bSthorpej 		if (resolve(&cf->cf_dump, name, "dumps", cf->cf_dump, 'b'))
8205ecc953bSthorpej 			goto bad;
8215ecc953bSthorpej 	}
8225ecc953bSthorpej 
8235ecc953bSthorpej 	/* Wildcarded fstype is `unspecified'. */
8245ecc953bSthorpej 	if (cf->cf_fstype == s_qmark)
8255ecc953bSthorpej 		cf->cf_fstype = NULL;
8265ecc953bSthorpej 
8275ecc953bSthorpej 	TAILQ_INSERT_TAIL(&allcf, cf, cf_next);
8285ecc953bSthorpej 	return;
8295ecc953bSthorpej  bad:
8305ecc953bSthorpej 	nvfreel(cf0->cf_root);
8315ecc953bSthorpej 	nvfreel(cf0->cf_dump);
8325ecc953bSthorpej }
8335ecc953bSthorpej 
8345ecc953bSthorpej void
8355ecc953bSthorpej setconf(struct nvlist **npp, const char *what, struct nvlist *v)
8365ecc953bSthorpej {
8375ecc953bSthorpej 
8385ecc953bSthorpej 	if (*npp != NULL) {
8395ecc953bSthorpej 		error("duplicate %s specification", what);
8405ecc953bSthorpej 		nvfreel(v);
8415ecc953bSthorpej 	} else
8425ecc953bSthorpej 		*npp = v;
8435ecc953bSthorpej }
8445ecc953bSthorpej 
8455ecc953bSthorpej void
8465ecc953bSthorpej setfstype(const char **fstp, const char *v)
8475ecc953bSthorpej {
8485ecc953bSthorpej 
8495ecc953bSthorpej 	if (*fstp != NULL) {
8505ecc953bSthorpej 		error("multiple fstype specifications");
8515ecc953bSthorpej 		return;
8525ecc953bSthorpej 	}
8535ecc953bSthorpej 
8545ecc953bSthorpej 	if (v != s_qmark && OPT_FSOPT(v)) {
8555ecc953bSthorpej 		error("\"%s\" is not a configured file system", v);
8565ecc953bSthorpej 		return;
8575ecc953bSthorpej 	}
8585ecc953bSthorpej 
8595ecc953bSthorpej 	*fstp = v;
8605ecc953bSthorpej }
8615ecc953bSthorpej 
8625ecc953bSthorpej static struct devi *
8635ecc953bSthorpej newdevi(const char *name, int unit, struct devbase *d)
8645ecc953bSthorpej {
8655ecc953bSthorpej 	struct devi *i;
8665ecc953bSthorpej 
8675ecc953bSthorpej 	i = ecalloc(1, sizeof *i);
8685ecc953bSthorpej 	i->i_name = name;
8695ecc953bSthorpej 	i->i_unit = unit;
8705ecc953bSthorpej 	i->i_base = d;
8715ecc953bSthorpej 	i->i_bsame = NULL;
8725ecc953bSthorpej 	i->i_asame = NULL;
8735ecc953bSthorpej 	i->i_alias = NULL;
8745ecc953bSthorpej 	i->i_at = NULL;
8755ecc953bSthorpej 	i->i_pspec = NULL;
8765ecc953bSthorpej 	i->i_atdeva = NULL;
8775ecc953bSthorpej 	i->i_locs = NULL;
8785ecc953bSthorpej 	i->i_cfflags = 0;
8795ecc953bSthorpej 	i->i_lineno = currentline();
880c130d400Scube 	i->i_active = 0;
8815ecc953bSthorpej 	if (unit >= d->d_umax)
8825ecc953bSthorpej 		d->d_umax = unit + 1;
8835ecc953bSthorpej 	return (i);
8845ecc953bSthorpej }
8855ecc953bSthorpej 
8865ecc953bSthorpej /*
8875ecc953bSthorpej  * Add the named device as attaching to the named attribute (or perhaps
8885ecc953bSthorpej  * another device instead) plus unit number.
8895ecc953bSthorpej  */
8905ecc953bSthorpej void
8915ecc953bSthorpej adddev(const char *name, const char *at, struct nvlist *loclist, int flags)
8925ecc953bSthorpej {
8935ecc953bSthorpej 	struct devi *i;		/* the new instance */
8945ecc953bSthorpej 	struct pspec *p;	/* and its pspec */
8955ecc953bSthorpej 	struct attr *attr;	/* attribute that allows attach */
8965ecc953bSthorpej 	struct devbase *ib;	/* i->i_base */
8975ecc953bSthorpej 	struct devbase *ab;	/* not NULL => at another dev */
8985ecc953bSthorpej 	struct nvlist *nv;
8995ecc953bSthorpej 	struct deva *iba;	/* devbase attachment used */
9005ecc953bSthorpej 	const char *cp;
9015ecc953bSthorpej 	int atunit;
9025ecc953bSthorpej 	char atbuf[NAMESIZE];
9035ecc953bSthorpej 	int hit;
9045ecc953bSthorpej 
9055ecc953bSthorpej 	ab = NULL;
9065ecc953bSthorpej 	iba = NULL;
9075ecc953bSthorpej 	if (at == NULL) {
9085ecc953bSthorpej 		/* "at root" */
9095ecc953bSthorpej 		p = NULL;
9105ecc953bSthorpej 		if ((i = getdevi(name)) == NULL)
9115ecc953bSthorpej 			goto bad;
9125ecc953bSthorpej 		/*
9135ecc953bSthorpej 		 * Must warn about i_unit > 0 later, after taking care of
9145ecc953bSthorpej 		 * the STAR cases (we could do non-star's here but why
9155ecc953bSthorpej 		 * bother?).  Make sure this device can be at root.
9165ecc953bSthorpej 		 */
9175ecc953bSthorpej 		ib = i->i_base;
9185ecc953bSthorpej 		hit = 0;
9195ecc953bSthorpej 		for (iba = ib->d_ahead; iba != NULL; iba = iba->d_bsame)
9205ecc953bSthorpej 			if (onlist(iba->d_atlist, NULL)) {
9215ecc953bSthorpej 				hit = 1;
9225ecc953bSthorpej 				break;
9235ecc953bSthorpej 			}
9245ecc953bSthorpej 		if (!hit) {
9255ecc953bSthorpej 			error("`%s' cannot attach to the root", ib->d_name);
9265ecc953bSthorpej 			goto bad;
9275ecc953bSthorpej 		}
9285ecc953bSthorpej 		attr = &errattr;	/* a convenient "empty" attr */
9295ecc953bSthorpej 	} else {
9305ecc953bSthorpej 		if (split(at, strlen(at), atbuf, sizeof atbuf, &atunit)) {
9315ecc953bSthorpej 			error("invalid attachment name `%s'", at);
9325ecc953bSthorpej 			/* (void)getdevi(name); -- ??? */
9335ecc953bSthorpej 			goto bad;
9345ecc953bSthorpej 		}
9355ecc953bSthorpej 		if ((i = getdevi(name)) == NULL)
9365ecc953bSthorpej 			goto bad;
9375ecc953bSthorpej 		ib = i->i_base;
9385ecc953bSthorpej 
9395ecc953bSthorpej 		/*
9405ecc953bSthorpej 		 * Devices can attach to two types of things: Attributes,
9415ecc953bSthorpej 		 * and other devices (which have the appropriate attributes
9425ecc953bSthorpej 		 * to allow attachment).
9435ecc953bSthorpej 		 *
9445ecc953bSthorpej 		 * (1) If we're attached to an attribute, then we don't need
9455ecc953bSthorpej 		 *     look at the parent base device to see what attributes
9465ecc953bSthorpej 		 *     it has, and make sure that we can attach to them.
9475ecc953bSthorpej 		 *
9485ecc953bSthorpej 		 * (2) If we're attached to a real device (i.e. named in
9495ecc953bSthorpej 		 *     the config file), we want to remember that so that
9505ecc953bSthorpej 		 *     at cross-check time, if the device we're attached to
9515ecc953bSthorpej 		 *     is missing but other devices which also provide the
9525ecc953bSthorpej 		 *     attribute are present, we don't get a false "OK."
9535ecc953bSthorpej 		 *
9545ecc953bSthorpej 		 * (3) If the thing we're attached to is an attribute
9555ecc953bSthorpej 		 *     but is actually named in the config file, we still
9565ecc953bSthorpej 		 *     have to remember its devbase.
9575ecc953bSthorpej 		 */
9585ecc953bSthorpej 		cp = intern(atbuf);
9595ecc953bSthorpej 
9605ecc953bSthorpej 		/* Figure out parent's devbase, to satisfy case (3). */
9615ecc953bSthorpej 		ab = ht_lookup(devbasetab, cp);
9625ecc953bSthorpej 
9635ecc953bSthorpej 		/* Find out if it's an attribute. */
9645ecc953bSthorpej 		attr = ht_lookup(attrtab, cp);
9655ecc953bSthorpej 
9665ecc953bSthorpej 		/* Make sure we're _really_ attached to the attr.  Case (1). */
9675ecc953bSthorpej 		if (attr != NULL && onlist(attr->a_devs, ib))
9685ecc953bSthorpej 			goto findattachment;
9695ecc953bSthorpej 
9705ecc953bSthorpej 		/*
9715ecc953bSthorpej 		 * Else a real device, and not just an attribute.  Case (2).
9725ecc953bSthorpej 		 *
9735ecc953bSthorpej 		 * Have to work a bit harder to see whether we have
9745ecc953bSthorpej 		 * something like "tg0 at esp0" (where esp is merely
9755ecc953bSthorpej 		 * not an attribute) or "tg0 at nonesuch0" (where
9765ecc953bSthorpej 		 * nonesuch is not even a device).
9775ecc953bSthorpej 		 */
9785ecc953bSthorpej 		if (ab == NULL) {
9795ecc953bSthorpej 			error("%s at %s: `%s' unknown",
9805ecc953bSthorpej 			    name, at, atbuf);
9815ecc953bSthorpej 			goto bad;
9825ecc953bSthorpej 		}
9835ecc953bSthorpej 
9845ecc953bSthorpej 		/*
9855ecc953bSthorpej 		 * See if the named parent carries an attribute
9865ecc953bSthorpej 		 * that allows it to supervise device ib.
9875ecc953bSthorpej 		 */
9885ecc953bSthorpej 		for (nv = ab->d_attrs; nv != NULL; nv = nv->nv_next) {
9895ecc953bSthorpej 			attr = nv->nv_ptr;
9905ecc953bSthorpej 			if (onlist(attr->a_devs, ib))
9915ecc953bSthorpej 				goto findattachment;
9925ecc953bSthorpej 		}
9935ecc953bSthorpej 		error("`%s' cannot attach to `%s'", ib->d_name, atbuf);
9945ecc953bSthorpej 		goto bad;
9955ecc953bSthorpej 
9965ecc953bSthorpej  findattachment:
9975ecc953bSthorpej 		/*
9985ecc953bSthorpej 		 * Find the parent spec.  If a matching one has not yet been
9995ecc953bSthorpej 		 * created, create one.
10005ecc953bSthorpej 		 */
10015ecc953bSthorpej 		p = getpspec(attr, ab, atunit);
10025ecc953bSthorpej 		p->p_devs = newnv(NULL, NULL, i, 0, p->p_devs);
10035ecc953bSthorpej 
10045ecc953bSthorpej 		/* find out which attachment it uses */
10055ecc953bSthorpej 		hit = 0;
10065ecc953bSthorpej 		for (iba = ib->d_ahead; iba != NULL; iba = iba->d_bsame)
10075ecc953bSthorpej 			if (onlist(iba->d_atlist, attr)) {
10085ecc953bSthorpej 				hit = 1;
10095ecc953bSthorpej 				break;
10105ecc953bSthorpej 			}
10115ecc953bSthorpej 		if (!hit)
10125ecc953bSthorpej 			panic("adddev: can't figure out attachment");
10135ecc953bSthorpej 	}
10145ecc953bSthorpej 	if ((i->i_locs = fixloc(name, attr, loclist)) == NULL)
10155ecc953bSthorpej 		goto bad;
10165ecc953bSthorpej 	i->i_at = at;
10175ecc953bSthorpej 	i->i_pspec = p;
10185ecc953bSthorpej 	i->i_atdeva = iba;
10195ecc953bSthorpej 	i->i_cfflags = flags;
10205ecc953bSthorpej 
10215ecc953bSthorpej 	*iba->d_ipp = i;
10225ecc953bSthorpej 	iba->d_ipp = &i->i_asame;
10235ecc953bSthorpej 
10245ecc953bSthorpej 	/* all done, fall into ... */
10255ecc953bSthorpej  bad:
10265ecc953bSthorpej 	nvfreel(loclist);
10275ecc953bSthorpej 	return;
10285ecc953bSthorpej }
10295ecc953bSthorpej 
10305ecc953bSthorpej void
1031*7b7c582aScube deldevi(const char *name, const char *at)
10325ecc953bSthorpej {
1033*7b7c582aScube 	struct devi *firsti, *i;
10345ecc953bSthorpej 	struct devbase *d;
10355ecc953bSthorpej 	int unit;
10365ecc953bSthorpej 	char base[NAMESIZE];
10375ecc953bSthorpej 
10385ecc953bSthorpej 	if (split(name, strlen(name), base, sizeof base, &unit)) {
10395ecc953bSthorpej 		error("invalid device name `%s'", name);
10405ecc953bSthorpej 		return;
10415ecc953bSthorpej 	}
10425ecc953bSthorpej 	d = ht_lookup(devbasetab, intern(base));
10435ecc953bSthorpej 	if (d == NULL) {
10445ecc953bSthorpej 		error("%s: unknown device `%s'", name, base);
10455ecc953bSthorpej 		return;
10465ecc953bSthorpej 	}
10475ecc953bSthorpej 	if (d->d_ispseudo) {
10485ecc953bSthorpej 		error("%s: %s is a pseudo-device", name, base);
10495ecc953bSthorpej 		return;
10505ecc953bSthorpej 	}
10515ecc953bSthorpej 	if ((firsti = ht_lookup(devitab, name)) == NULL) {
10525ecc953bSthorpej 		error("`%s' not defined", name);
10535ecc953bSthorpej 		return;
10545ecc953bSthorpej 	}
1055*7b7c582aScube 	if (at == NULL && firsti->i_at == NULL) {
1056e499d8b5Scube 		/* 'at root' */
1057*7b7c582aScube 		remove_devi(firsti);
1058*7b7c582aScube 		return;
1059*7b7c582aScube 	} else if (at != NULL)
1060*7b7c582aScube 		for (i = firsti; i != NULL; i = i->i_alias)
10615ecc953bSthorpej 			if (strcmp(at, i->i_at) == 0) {
1062*7b7c582aScube 				remove_devi(i);
10635ecc953bSthorpej 				return;
10645ecc953bSthorpej 			}
1065*7b7c582aScube 	error("`%s' at `%s' not found", name, at ? at : "root");
1066e499d8b5Scube }
10675ecc953bSthorpej 
1068*7b7c582aScube static void
1069*7b7c582aScube remove_devi(struct devi *i)
1070*7b7c582aScube {
1071*7b7c582aScube 	struct devbase *d = i->i_base;
1072*7b7c582aScube 	struct devi *f, *j, **ppi;
1073*7b7c582aScube 	struct deva *iba;
1074*7b7c582aScube 
1075*7b7c582aScube 	f = ht_lookup(devitab, i->i_name);
1076*7b7c582aScube 
1077e499d8b5Scube 	/*
1078e499d8b5Scube 	 * We have the device instance, i.
1079e499d8b5Scube 	 * We have to:
1080e499d8b5Scube 	 *   - delete the alias
1081e499d8b5Scube 	 *
1082e499d8b5Scube 	 *      If the devi was an alias of an already listed devi, all is
1083e499d8b5Scube 	 *      good we don't have to do more.
1084e499d8b5Scube 	 *      If it was the first alias, we have to replace i's entry in
1085e499d8b5Scube 	 *      d's list by its first alias.
1086e499d8b5Scube 	 *      If it was the only entry, we must remove i's entry from d's
1087e499d8b5Scube 	 *      list.
1088e499d8b5Scube 	 */
1089*7b7c582aScube 	if (i != f) {
1090*7b7c582aScube 		for (j = f; j->i_alias != i; j = j->i_alias);
1091*7b7c582aScube 		j->i_alias = i->i_alias;
10923b405775Scube 	} else {
10933b405775Scube 		if (i->i_alias == NULL) {
1094e499d8b5Scube 			/* No alias, must unlink the entry from devitab */
1095*7b7c582aScube 			ht_remove(devitab, i->i_name);
1096*7b7c582aScube 			j = i->i_bsame;
10973b405775Scube 		} else {
1098e499d8b5Scube 			/* Or have the first alias replace i in d's list */
1099e499d8b5Scube 			i->i_alias->i_bsame = i->i_bsame;
1100*7b7c582aScube 			j = i->i_alias;
1101*7b7c582aScube 			if (i == f)
1102*7b7c582aScube 				ht_replace(devitab, i->i_name, i->i_alias);
11033b405775Scube 		}
11043b405775Scube 
1105e499d8b5Scube 		/*
1106e499d8b5Scube 		 *   - remove/replace the instance from the devbase's list
1107e499d8b5Scube 		 *
1108e499d8b5Scube 		 * A double-linked list would make this much easier.  Oh, well,
1109e499d8b5Scube 		 * what is done is done.
1110e499d8b5Scube 		 */
1111e499d8b5Scube 		for (ppi = &d->d_ihead;
1112e499d8b5Scube 		    *ppi != NULL && *ppi != i && (*ppi)->i_bsame != i;
1113e499d8b5Scube 		    ppi = &(*ppi)->i_bsame);
1114e499d8b5Scube 		if (*ppi == NULL)
1115c3414672Scube 			panic("deldev: dev (%s) doesn't list the devi"
1116c3414672Scube 			    " (%s at %s)", d->d_name, i->i_name, i->i_at);
1117*7b7c582aScube 		f = *ppi;
1118*7b7c582aScube 		if (f == i)
1119c3414672Scube 			/* That implies d->d_ihead == i */
1120*7b7c582aScube 			*ppi = j;
1121e499d8b5Scube 		else
1122*7b7c582aScube 			(*ppi)->i_bsame = j;
1123e499d8b5Scube 		if (d->d_ipp == &i->i_bsame) {
11243b405775Scube 			if (i->i_alias == NULL) {
1125*7b7c582aScube 				if (f == i)
1126e499d8b5Scube 					d->d_ipp = &d->d_ihead;
1127e499d8b5Scube 				else
1128*7b7c582aScube 					d->d_ipp = &f->i_bsame;
11293b405775Scube 			} else
11303b405775Scube 				d->d_ipp = &i->i_alias->i_bsame;
1131e499d8b5Scube 		}
1132e499d8b5Scube 	}
1133e499d8b5Scube 	/*
1134e499d8b5Scube 	 *   - delete the attachment instance
1135e499d8b5Scube 	 */
1136e499d8b5Scube 	iba = i->i_atdeva;
1137e499d8b5Scube 	for (ppi = &iba->d_ihead;
1138e499d8b5Scube 	    *ppi != NULL && *ppi != i && (*ppi)->i_asame != i;
1139e499d8b5Scube 	    ppi = &(*ppi)->i_asame);
1140e499d8b5Scube 	if (*ppi == NULL)
1141e499d8b5Scube 		panic("deldev: deva (%s) doesn't list the devi (%s)",
1142e499d8b5Scube 		    iba->d_name, i->i_name);
1143*7b7c582aScube 	f = *ppi;
1144*7b7c582aScube 	if (f == i)
1145c3414672Scube 		/* That implies iba->d_ihead == i */
1146e499d8b5Scube 		*ppi = i->i_asame;
1147e499d8b5Scube 	else
1148e499d8b5Scube 		(*ppi)->i_asame = i->i_asame;
1149e499d8b5Scube 	if (iba->d_ipp == &i->i_asame) {
1150*7b7c582aScube 		if (f == i)
1151e499d8b5Scube 			iba->d_ipp = &iba->d_ihead;
1152e499d8b5Scube 		else
1153*7b7c582aScube 			iba->d_ipp = &f->i_asame;
1154e499d8b5Scube 	}
1155e499d8b5Scube 	/*
1156e499d8b5Scube 	 *   - delete the pspec
1157e499d8b5Scube 	 */
1158e499d8b5Scube 	if (i->i_pspec) {
1159e499d8b5Scube 		struct pspec *p = i->i_pspec;
1160e499d8b5Scube 		struct nvlist *nv, *onv;
1161e499d8b5Scube 
1162e499d8b5Scube 		/* Double-linked nvlist anyone? */
1163e499d8b5Scube 		for (nv = p->p_devs; nv->nv_ptr != NULL; nv = nv->nv_next) {
1164e499d8b5Scube 			if (nv->nv_next && nv->nv_next->nv_ptr == i) {
1165e499d8b5Scube 				onv = nv->nv_next;
1166e499d8b5Scube 				nv->nv_next = onv->nv_next;
1167e499d8b5Scube 				nvfree(onv);
1168e499d8b5Scube 				break;
1169878c29f5Scube 			} if (nv->nv_ptr == i) {
1170e499d8b5Scube 				/* nv is p->p_devs in that case */
1171e499d8b5Scube 				p->p_devs = nv->nv_next;
1172e499d8b5Scube 				nvfree(nv);
1173e499d8b5Scube 				break;
1174e499d8b5Scube 			}
1175e499d8b5Scube 		}
1176e499d8b5Scube 		if (p->p_devs == NULL)
1177e499d8b5Scube 			TAILQ_REMOVE(&allpspecs, p, p_list);
1178e499d8b5Scube 	}
1179e499d8b5Scube 	/*
1180e499d8b5Scube 	 *   - delete the alldevi entry
1181e499d8b5Scube 	 */
1182e499d8b5Scube 	TAILQ_REMOVE(&alldevi, i, i_next);
1183e499d8b5Scube 	ndevi--;
1184*7b7c582aScube 	free(i);
1185e499d8b5Scube 	/*
1186e499d8b5Scube 	 *   - reconstuct d->d_umax
1187e499d8b5Scube 	 */
1188e499d8b5Scube 	d->d_umax = 0;
1189e499d8b5Scube 	for (i = d->d_ihead; i != NULL; i = i->i_bsame)
1190e499d8b5Scube 		if (i->i_unit >= d->d_umax)
1191e499d8b5Scube 			d->d_umax = i->i_unit + 1;
11925ecc953bSthorpej }
11935ecc953bSthorpej 
11945ecc953bSthorpej void
1195*7b7c582aScube deldeva(const char *at)
1196*7b7c582aScube {
1197*7b7c582aScube 	int unit;
1198*7b7c582aScube 	const char *cp;
1199*7b7c582aScube 	struct devbase *d, *ad;
1200*7b7c582aScube 	struct devi *i, *j;
1201*7b7c582aScube 	struct attr *a;
1202*7b7c582aScube 	struct pspec *p;
1203*7b7c582aScube 	struct nvlist *nv, *stack = NULL;
1204*7b7c582aScube 
1205*7b7c582aScube 	if (at == NULL) {
1206*7b7c582aScube 		TAILQ_FOREACH(i, &alldevi, i_next)
1207*7b7c582aScube 			if (i->i_at == NULL)
1208*7b7c582aScube 				stack = newnv(NULL, NULL, i, 0, stack);
1209*7b7c582aScube 	} else {
1210*7b7c582aScube 		int l;
1211*7b7c582aScube 
1212*7b7c582aScube 		l = strlen(at) - 1;
1213*7b7c582aScube 		if (at[l] == '?' || isdigit((unsigned char)at[l])) {
1214*7b7c582aScube 			char base[NAMESIZE];
1215*7b7c582aScube 
1216*7b7c582aScube 			if (split(at, l+1, base, sizeof base, &unit)) {
1217*7b7c582aScube 				error("invalid attachment name `%s'", at);
1218*7b7c582aScube 				return;
1219*7b7c582aScube 			}
1220*7b7c582aScube 			cp = intern(base);
1221*7b7c582aScube 		} else {
1222*7b7c582aScube 			cp = intern(at);
1223*7b7c582aScube 			unit = STAR;
1224*7b7c582aScube 		}
1225*7b7c582aScube 
1226*7b7c582aScube 		ad = ht_lookup(devbasetab, cp);
1227*7b7c582aScube 		a = ht_lookup(attrtab, cp);
1228*7b7c582aScube 		if (a == NULL) {
1229*7b7c582aScube 			error("unknown attachment attribute or device `%s'",
1230*7b7c582aScube 			    cp);
1231*7b7c582aScube 			return;
1232*7b7c582aScube 		}
1233*7b7c582aScube 		if (!a->a_iattr) {
1234*7b7c582aScube 			error("plain attribute `%s' cannot have children",
1235*7b7c582aScube 			    a->a_name);
1236*7b7c582aScube 			return;
1237*7b7c582aScube 		}
1238*7b7c582aScube 
1239*7b7c582aScube 		/*
1240*7b7c582aScube 		 * remove_devi() makes changes to the devbase's list and the
1241*7b7c582aScube 		 * alias list, * so the actual deletion of the instances must
1242*7b7c582aScube 		 * be delayed.
1243*7b7c582aScube 		 */
1244*7b7c582aScube 		for (nv = a->a_devs; nv != NULL; nv = nv->nv_next) {
1245*7b7c582aScube 			d = nv->nv_ptr;
1246*7b7c582aScube 			for (i = d->d_ihead; i != NULL; i = i->i_bsame)
1247*7b7c582aScube 				for (j = i; j != NULL; j = j->i_alias) {
1248*7b7c582aScube 					/* Ignore devices at root */
1249*7b7c582aScube 					if (j->i_at == NULL)
1250*7b7c582aScube 						continue;
1251*7b7c582aScube 					p = j->i_pspec;
1252*7b7c582aScube 					/*
1253*7b7c582aScube 					 * There are three cases:
1254*7b7c582aScube 					 *
1255*7b7c582aScube 					 * 1.  unit is not STAR.  Consider 'at'
1256*7b7c582aScube 					 *     to be explicit, even if it
1257*7b7c582aScube 					 *     references an interface
1258*7b7c582aScube 					 *     attribute.
1259*7b7c582aScube 					 *
1260*7b7c582aScube 					 * 2.  unit is STAR and 'at' references
1261*7b7c582aScube 					 *     a real device.  Look for pspec
1262*7b7c582aScube 					 *     that have a matching p_atdev
1263*7b7c582aScube 					 *     field.
1264*7b7c582aScube 					 *
1265*7b7c582aScube 					 * 3.  unit is STAR and 'at' references
1266*7b7c582aScube 					 *     an interface attribute.  Look
1267*7b7c582aScube 					 *     for pspec that have a matching
1268*7b7c582aScube 					 *     p_iattr field.
1269*7b7c582aScube 					 */
1270*7b7c582aScube 					if ((unit != STAR &&        /* Case */
1271*7b7c582aScube 					     !strcmp(j->i_at, at)) ||  /* 1 */
1272*7b7c582aScube 					    (unit == STAR &&
1273*7b7c582aScube 					     ((ad != NULL &&        /* Case */
1274*7b7c582aScube 					       p->p_atdev == ad) ||    /* 2 */
1275*7b7c582aScube 					      (ad == NULL &&        /* Case */
1276*7b7c582aScube 					       p->p_iattr == a))))     /* 3 */
1277*7b7c582aScube 						stack = newnv(NULL, NULL, j, 0,
1278*7b7c582aScube 						    stack);
1279*7b7c582aScube 				}
1280*7b7c582aScube 		}
1281*7b7c582aScube 	}
1282*7b7c582aScube 
1283*7b7c582aScube 	for (nv = stack; nv != NULL; nv = nv->nv_next)
1284*7b7c582aScube 		remove_devi(nv->nv_ptr);
1285*7b7c582aScube }
1286*7b7c582aScube 
1287*7b7c582aScube void
1288*7b7c582aScube deldev(const char *name)
1289*7b7c582aScube {
1290*7b7c582aScube 	int l;
1291*7b7c582aScube 	struct devi *firsti, *i;
1292*7b7c582aScube 	struct nvlist *nv, *stack = NULL;
1293*7b7c582aScube 
1294*7b7c582aScube 	l = strlen(name) - 1;
1295*7b7c582aScube 	if (name[l] == '*' || isdigit((unsigned char)name[l])) {
1296*7b7c582aScube 		/* `no mydev0' or `no mydev*' */
1297*7b7c582aScube 		firsti = ht_lookup(devitab, name);
1298*7b7c582aScube 		if (firsti == NULL) {
1299*7b7c582aScube 			error("unknown instance %s", name);
1300*7b7c582aScube 			return;
1301*7b7c582aScube 		}
1302*7b7c582aScube 		for (i = firsti; i != NULL; i = i->i_alias)
1303*7b7c582aScube 			stack = newnv(NULL, NULL, i, 0, stack);
1304*7b7c582aScube 	} else {
1305*7b7c582aScube 		struct devbase *d = ht_lookup(devbasetab, name);
1306*7b7c582aScube 
1307*7b7c582aScube 		if (d == NULL) {
1308*7b7c582aScube 			error("unknown device %s", name);
1309*7b7c582aScube 			return;
1310*7b7c582aScube 		}
1311*7b7c582aScube 
1312*7b7c582aScube 		for (firsti = d->d_ihead; firsti != NULL;
1313*7b7c582aScube 		    firsti = firsti->i_bsame)
1314*7b7c582aScube 			for (i = firsti; i != NULL; i = i->i_alias)
1315*7b7c582aScube 				stack = newnv(NULL, NULL, i, 0, stack);
1316*7b7c582aScube 	}
1317*7b7c582aScube 
1318*7b7c582aScube 	for (nv = stack; nv != NULL; nv = nv->nv_next)
1319*7b7c582aScube 		remove_devi(nv->nv_ptr);
1320*7b7c582aScube }
1321*7b7c582aScube 
1322*7b7c582aScube void
13235ecc953bSthorpej addpseudo(const char *name, int number)
13245ecc953bSthorpej {
13255ecc953bSthorpej 	struct devbase *d;
13265ecc953bSthorpej 	struct devi *i;
13275ecc953bSthorpej 
13285ecc953bSthorpej 	d = ht_lookup(devbasetab, name);
13295ecc953bSthorpej 	if (d == NULL) {
13305ecc953bSthorpej 		error("undefined pseudo-device %s", name);
13315ecc953bSthorpej 		return;
13325ecc953bSthorpej 	}
13335ecc953bSthorpej 	if (!d->d_ispseudo) {
13345ecc953bSthorpej 		error("%s is a real device, not a pseudo-device", name);
13355ecc953bSthorpej 		return;
13365ecc953bSthorpej 	}
13375ecc953bSthorpej 	if (ht_lookup(devitab, name) != NULL) {
13385ecc953bSthorpej 		error("`%s' already defined", name);
13395ecc953bSthorpej 		return;
13405ecc953bSthorpej 	}
13415ecc953bSthorpej 	i = newdevi(name, number - 1, d);	/* foo 16 => "foo0..foo15" */
13425ecc953bSthorpej 	if (ht_insert(devitab, name, i))
13435ecc953bSthorpej 		panic("addpseudo(%s)", name);
1344*7b7c582aScube 	/* Useful to retrieve the instance from the devbase */
1345*7b7c582aScube 	d->d_ihead = i;
1346*7b7c582aScube 	i->i_active = 1;
13475ecc953bSthorpej 	TAILQ_INSERT_TAIL(&allpseudo, i, i_next);
13485ecc953bSthorpej }
13495ecc953bSthorpej 
13505ecc953bSthorpej void
13515ecc953bSthorpej delpseudo(const char *name)
13525ecc953bSthorpej {
13535ecc953bSthorpej 	struct devbase *d;
13545ecc953bSthorpej 	struct devi *i;
13555ecc953bSthorpej 
13565ecc953bSthorpej 	d = ht_lookup(devbasetab, name);
13575ecc953bSthorpej 	if (d == NULL) {
13585ecc953bSthorpej 		error("undefined pseudo-device %s", name);
13595ecc953bSthorpej 		return;
13605ecc953bSthorpej 	}
13615ecc953bSthorpej 	if (!d->d_ispseudo) {
13625ecc953bSthorpej 		error("%s is a real device, not a pseudo-device", name);
13635ecc953bSthorpej 		return;
13645ecc953bSthorpej 	}
13655ecc953bSthorpej 	if ((i = ht_lookup(devitab, name)) == NULL) {
13665ecc953bSthorpej 		error("`%s' not defined", name);
13675ecc953bSthorpej 		return;
13685ecc953bSthorpej 	}
13695ecc953bSthorpej 	d->d_umax = 0;		/* clear neads-count entries */
13705ecc953bSthorpej 	TAILQ_REMOVE(&allpseudo, i, i_next);
13715ecc953bSthorpej 	if (ht_remove(devitab, name))
13725ecc953bSthorpej 		panic("delpseudo(%s) - can't remove from devitab", name);
13735ecc953bSthorpej }
13745ecc953bSthorpej 
13755ecc953bSthorpej void
13765ecc953bSthorpej adddevm(const char *name, int cmajor, int bmajor, struct nvlist *options)
13775ecc953bSthorpej {
13785ecc953bSthorpej 	struct devm *dm;
13795ecc953bSthorpej 
13805ecc953bSthorpej 	if (cmajor < -1 || cmajor >= 4096) {
13815ecc953bSthorpej 		error("character major %d is invalid", cmajor);
13825ecc953bSthorpej 		nvfreel(options);
13835ecc953bSthorpej 		return;
13845ecc953bSthorpej 	}
13855ecc953bSthorpej 
13865ecc953bSthorpej 	if (bmajor < -1 || bmajor >= 4096) {
13875ecc953bSthorpej 		error("block major %d is invalid", bmajor);
13885ecc953bSthorpej 		nvfreel(options);
13895ecc953bSthorpej 		return;
13905ecc953bSthorpej 	}
13915ecc953bSthorpej 	if (cmajor == -1 && bmajor == -1) {
13925ecc953bSthorpej 		error("both character/block majors are not specified");
13935ecc953bSthorpej 		nvfreel(options);
13945ecc953bSthorpej 		return;
13955ecc953bSthorpej 	}
13965ecc953bSthorpej 
13975ecc953bSthorpej 	dm = ecalloc(1, sizeof(*dm));
13985ecc953bSthorpej 	dm->dm_srcfile = yyfile;
13995ecc953bSthorpej 	dm->dm_srcline = currentline();
14005ecc953bSthorpej 	dm->dm_name = name;
14015ecc953bSthorpej 	dm->dm_cmajor = cmajor;
14025ecc953bSthorpej 	dm->dm_bmajor = bmajor;
14035ecc953bSthorpej 	dm->dm_opts = options;
14045ecc953bSthorpej 
14055ecc953bSthorpej 	TAILQ_INSERT_TAIL(&alldevms, dm, dm_next);
14065ecc953bSthorpej 
14075ecc953bSthorpej 	maxcdevm = MAX(maxcdevm, dm->dm_cmajor);
14085ecc953bSthorpej 	maxbdevm = MAX(maxbdevm, dm->dm_bmajor);
14095ecc953bSthorpej }
14105ecc953bSthorpej 
14115ecc953bSthorpej void
14125ecc953bSthorpej fixdevis(void)
14135ecc953bSthorpej {
14145ecc953bSthorpej 	struct devi *i;
14155ecc953bSthorpej 
14165ecc953bSthorpej 	TAILQ_FOREACH(i, &alldevi, i_next)
1417c130d400Scube 		if (i->i_active)
14185ecc953bSthorpej 			selectbase(i->i_base, i->i_atdeva);
1419c130d400Scube 		else
1420c130d400Scube 			/*
1421c130d400Scube 			 * At this point, we can't have instances for which
1422c130d400Scube 			 * i_at or i_pspec are NULL.
1423c130d400Scube 			 */
1424c130d400Scube 			(void)fprintf(stderr,
1425c130d400Scube 			    "%s:%d: `%s at %s' is orphaned"
1426c130d400Scube 			    " (%s `%s' found)\n", conffile, i->i_lineno,
1427c130d400Scube 			    i->i_name, i->i_at, i->i_pspec->p_atunit == WILD ?
1428c130d400Scube 			    "nothing matching" : "no", i->i_at);
14295ecc953bSthorpej 
14305ecc953bSthorpej 	TAILQ_FOREACH(i, &allpseudo, i_next)
1431c130d400Scube 		if (i->i_active)
14325ecc953bSthorpej 			selectbase(i->i_base, NULL);
14335ecc953bSthorpej }
14345ecc953bSthorpej 
14355ecc953bSthorpej /*
14365ecc953bSthorpej  * Look up a parent spec, creating a new one if it does not exist.
14375ecc953bSthorpej  */
14385ecc953bSthorpej static struct pspec *
14395ecc953bSthorpej getpspec(struct attr *attr, struct devbase *ab, int atunit)
14405ecc953bSthorpej {
14415ecc953bSthorpej 	struct pspec *p;
14425ecc953bSthorpej 
14435ecc953bSthorpej 	TAILQ_FOREACH(p, &allpspecs, p_list) {
14445ecc953bSthorpej 		if (p->p_iattr == attr &&
14455ecc953bSthorpej 		    p->p_atdev == ab &&
14465ecc953bSthorpej 		    p->p_atunit == atunit)
14475ecc953bSthorpej 			return (p);
14485ecc953bSthorpej 	}
14495ecc953bSthorpej 
14505ecc953bSthorpej 	p = ecalloc(1, sizeof(*p));
14515ecc953bSthorpej 
14525ecc953bSthorpej 	p->p_iattr = attr;
14535ecc953bSthorpej 	p->p_atdev = ab;
14545ecc953bSthorpej 	p->p_atunit = atunit;
14555ecc953bSthorpej 	p->p_inst = npspecs++;
1456c130d400Scube 	p->p_active = 0;
14575ecc953bSthorpej 
14585ecc953bSthorpej 	TAILQ_INSERT_TAIL(&allpspecs, p, p_list);
14595ecc953bSthorpej 
14605ecc953bSthorpej 	return (p);
14615ecc953bSthorpej }
14625ecc953bSthorpej 
14635ecc953bSthorpej /*
14645ecc953bSthorpej  * Define a new instance of a specific device.
14655ecc953bSthorpej  */
14665ecc953bSthorpej static struct devi *
14675ecc953bSthorpej getdevi(const char *name)
14685ecc953bSthorpej {
14695ecc953bSthorpej 	struct devi *i, *firsti;
14705ecc953bSthorpej 	struct devbase *d;
14715ecc953bSthorpej 	int unit;
14725ecc953bSthorpej 	char base[NAMESIZE];
14735ecc953bSthorpej 
14745ecc953bSthorpej 	if (split(name, strlen(name), base, sizeof base, &unit)) {
14755ecc953bSthorpej 		error("invalid device name `%s'", name);
14765ecc953bSthorpej 		return (NULL);
14775ecc953bSthorpej 	}
14785ecc953bSthorpej 	d = ht_lookup(devbasetab, intern(base));
14795ecc953bSthorpej 	if (d == NULL) {
14805ecc953bSthorpej 		error("%s: unknown device `%s'", name, base);
14815ecc953bSthorpej 		return (NULL);
14825ecc953bSthorpej 	}
14835ecc953bSthorpej 	if (d->d_ispseudo) {
14845ecc953bSthorpej 		error("%s: %s is a pseudo-device", name, base);
14855ecc953bSthorpej 		return (NULL);
14865ecc953bSthorpej 	}
14875ecc953bSthorpej 	firsti = ht_lookup(devitab, name);
14885ecc953bSthorpej 	i = newdevi(name, unit, d);
14895ecc953bSthorpej 	if (firsti == NULL) {
14905ecc953bSthorpej 		if (ht_insert(devitab, name, i))
14915ecc953bSthorpej 			panic("getdevi(%s)", name);
14925ecc953bSthorpej 		*d->d_ipp = i;
14935ecc953bSthorpej 		d->d_ipp = &i->i_bsame;
14945ecc953bSthorpej 	} else {
14955ecc953bSthorpej 		while (firsti->i_alias)
14965ecc953bSthorpej 			firsti = firsti->i_alias;
14975ecc953bSthorpej 		firsti->i_alias = i;
14985ecc953bSthorpej 	}
14995ecc953bSthorpej 	TAILQ_INSERT_TAIL(&alldevi, i, i_next);
15005ecc953bSthorpej 	ndevi++;
15015ecc953bSthorpej 	return (i);
15025ecc953bSthorpej }
15035ecc953bSthorpej 
15045ecc953bSthorpej static const char *
15055ecc953bSthorpej concat(const char *name, int c)
15065ecc953bSthorpej {
15075ecc953bSthorpej 	int len;
15085ecc953bSthorpej 	char buf[NAMESIZE];
15095ecc953bSthorpej 
15105ecc953bSthorpej 	len = strlen(name);
15115ecc953bSthorpej 	if (len + 2 > sizeof(buf)) {
15125ecc953bSthorpej 		error("device name `%s%c' too long", name, c);
15135ecc953bSthorpej 		len = sizeof(buf) - 2;
15145ecc953bSthorpej 	}
15155ecc953bSthorpej 	memmove(buf, name, len);
15165ecc953bSthorpej 	buf[len] = c;
15175ecc953bSthorpej 	buf[len + 1] = 0;
15185ecc953bSthorpej 	return (intern(buf));
15195ecc953bSthorpej }
15205ecc953bSthorpej 
15215ecc953bSthorpej const char *
15225ecc953bSthorpej starref(const char *name)
15235ecc953bSthorpej {
15245ecc953bSthorpej 
15255ecc953bSthorpej 	return (concat(name, '*'));
15265ecc953bSthorpej }
15275ecc953bSthorpej 
15285ecc953bSthorpej const char *
15295ecc953bSthorpej wildref(const char *name)
15305ecc953bSthorpej {
15315ecc953bSthorpej 
15325ecc953bSthorpej 	return (concat(name, '?'));
15335ecc953bSthorpej }
15345ecc953bSthorpej 
15355ecc953bSthorpej /*
15365ecc953bSthorpej  * Split a name like "foo0" into base name (foo) and unit number (0).
15375ecc953bSthorpej  * Return 0 on success.  To make this useful for names like "foo0a",
15385ecc953bSthorpej  * the length of the "foo0" part is one of the arguments.
15395ecc953bSthorpej  */
15405ecc953bSthorpej static int
15415ecc953bSthorpej split(const char *name, size_t nlen, char *base, size_t bsize, int *aunit)
15425ecc953bSthorpej {
15435ecc953bSthorpej 	const char *cp;
15445ecc953bSthorpej 	int c, l;
15455ecc953bSthorpej 
15465ecc953bSthorpej 	l = nlen;
15475ecc953bSthorpej 	if (l < 2 || l >= bsize || isdigit((unsigned char)*name))
15485ecc953bSthorpej 		return (1);
15495ecc953bSthorpej 	c = (u_char)name[--l];
15505ecc953bSthorpej 	if (!isdigit(c)) {
15515ecc953bSthorpej 		if (c == '*')
15525ecc953bSthorpej 			*aunit = STAR;
15535ecc953bSthorpej 		else if (c == '?')
15545ecc953bSthorpej 			*aunit = WILD;
15555ecc953bSthorpej 		else
15565ecc953bSthorpej 			return (1);
15575ecc953bSthorpej 	} else {
15585ecc953bSthorpej 		cp = &name[l];
15595ecc953bSthorpej 		while (isdigit((unsigned char)cp[-1]))
15605ecc953bSthorpej 			l--, cp--;
15615ecc953bSthorpej 		*aunit = atoi(cp);
15625ecc953bSthorpej 	}
15635ecc953bSthorpej 	memmove(base, name, l);
15645ecc953bSthorpej 	base[l] = 0;
15655ecc953bSthorpej 	return (0);
15665ecc953bSthorpej }
15675ecc953bSthorpej 
15685ecc953bSthorpej void
15695ecc953bSthorpej selectattr(struct attr *a)
15705ecc953bSthorpej {
15715ecc953bSthorpej 
15725ecc953bSthorpej 	(void)ht_insert(selecttab, a->a_name, (char *)a->a_name);
15735ecc953bSthorpej }
15745ecc953bSthorpej 
15755ecc953bSthorpej /*
15765ecc953bSthorpej  * We have an instance of the base foo, so select it and all its
15775ecc953bSthorpej  * attributes for "optional foo".
15785ecc953bSthorpej  */
15795ecc953bSthorpej static void
15805ecc953bSthorpej selectbase(struct devbase *d, struct deva *da)
15815ecc953bSthorpej {
15825ecc953bSthorpej 	struct attr *a;
15835ecc953bSthorpej 	struct nvlist *nv;
15845ecc953bSthorpej 
15855ecc953bSthorpej 	(void)ht_insert(selecttab, d->d_name, (char *)d->d_name);
15865ecc953bSthorpej 	for (nv = d->d_attrs; nv != NULL; nv = nv->nv_next) {
15875ecc953bSthorpej 		a = nv->nv_ptr;
15885ecc953bSthorpej 		expandattr(a, selectattr);
15895ecc953bSthorpej 	}
15905ecc953bSthorpej 	if (da != NULL) {
15915ecc953bSthorpej 		(void)ht_insert(selecttab, da->d_name, (char *)da->d_name);
15925ecc953bSthorpej 		for (nv = da->d_attrs; nv != NULL; nv = nv->nv_next) {
15935ecc953bSthorpej 			a = nv->nv_ptr;
15945ecc953bSthorpej 			expandattr(a, selectattr);
15955ecc953bSthorpej 		}
15965ecc953bSthorpej 	}
15975ecc953bSthorpej }
15985ecc953bSthorpej 
15995ecc953bSthorpej /*
16005ecc953bSthorpej  * Is the given pointer on the given list of pointers?
16015ecc953bSthorpej  */
16025ecc953bSthorpej static int
16035ecc953bSthorpej onlist(struct nvlist *nv, void *ptr)
16045ecc953bSthorpej {
16055ecc953bSthorpej 	for (; nv != NULL; nv = nv->nv_next)
16065ecc953bSthorpej 		if (nv->nv_ptr == ptr)
16075ecc953bSthorpej 			return (1);
16085ecc953bSthorpej 	return (0);
16095ecc953bSthorpej }
16105ecc953bSthorpej 
16115ecc953bSthorpej static char *
16125ecc953bSthorpej extend(char *p, const char *name)
16135ecc953bSthorpej {
16145ecc953bSthorpej 	int l;
16155ecc953bSthorpej 
16165ecc953bSthorpej 	l = strlen(name);
16175ecc953bSthorpej 	memmove(p, name, l);
16185ecc953bSthorpej 	p += l;
16195ecc953bSthorpej 	*p++ = ',';
16205ecc953bSthorpej 	*p++ = ' ';
16215ecc953bSthorpej 	return (p);
16225ecc953bSthorpej }
16235ecc953bSthorpej 
16245ecc953bSthorpej /*
16255ecc953bSthorpej  * Check that we got all required locators, and default any that are
16265ecc953bSthorpej  * given as "?" and have defaults.  Return 0 on success.
16275ecc953bSthorpej  */
16285ecc953bSthorpej static const char **
16295ecc953bSthorpej fixloc(const char *name, struct attr *attr, struct nvlist *got)
16305ecc953bSthorpej {
16315ecc953bSthorpej 	struct nvlist *m, *n;
16325ecc953bSthorpej 	int ord;
16335ecc953bSthorpej 	const char **lp;
16345ecc953bSthorpej 	int nmissing, nextra, nnodefault;
16355ecc953bSthorpej 	char *mp, *ep, *ndp;
16365ecc953bSthorpej 	char missing[1000], extra[1000], nodefault[1000];
16375ecc953bSthorpej 	static const char *nullvec[1];
16385ecc953bSthorpej 
16395ecc953bSthorpej 	/*
16405ecc953bSthorpej 	 * Look for all required locators, and number the given ones
16415ecc953bSthorpej 	 * according to the required order.  While we are numbering,
16425ecc953bSthorpej 	 * set default values for defaulted locators.
16435ecc953bSthorpej 	 */
16445ecc953bSthorpej 	if (attr->a_loclen == 0)	/* e.g., "at root" */
16455ecc953bSthorpej 		lp = nullvec;
16465ecc953bSthorpej 	else
16475ecc953bSthorpej 		lp = emalloc((attr->a_loclen + 1) * sizeof(const char *));
16485ecc953bSthorpej 	for (n = got; n != NULL; n = n->nv_next)
16495ecc953bSthorpej 		n->nv_int = -1;
16505ecc953bSthorpej 	nmissing = 0;
16515ecc953bSthorpej 	mp = missing;
16525ecc953bSthorpej 	/* yes, this is O(mn), but m and n should be small */
16535ecc953bSthorpej 	for (ord = 0, m = attr->a_locs; m != NULL; m = m->nv_next, ord++) {
16545ecc953bSthorpej 		for (n = got; n != NULL; n = n->nv_next) {
16555ecc953bSthorpej 			if (n->nv_name == m->nv_name) {
16565ecc953bSthorpej 				n->nv_int = ord;
16575ecc953bSthorpej 				break;
16585ecc953bSthorpej 			}
16595ecc953bSthorpej 		}
16605ecc953bSthorpej 		if (n == NULL && m->nv_int == 0) {
16615ecc953bSthorpej 			nmissing++;
16625ecc953bSthorpej 			mp = extend(mp, m->nv_name);
16635ecc953bSthorpej 		}
16645ecc953bSthorpej 		lp[ord] = m->nv_str;
16655ecc953bSthorpej 	}
16665ecc953bSthorpej 	if (ord != attr->a_loclen)
16675ecc953bSthorpej 		panic("fixloc");
16685ecc953bSthorpej 	lp[ord] = NULL;
16695ecc953bSthorpej 	nextra = 0;
16705ecc953bSthorpej 	ep = extra;
16715ecc953bSthorpej 	nnodefault = 0;
16725ecc953bSthorpej 	ndp = nodefault;
16735ecc953bSthorpej 	for (n = got; n != NULL; n = n->nv_next) {
16745ecc953bSthorpej 		if (n->nv_int >= 0) {
16755ecc953bSthorpej 			if (n->nv_str != NULL)
16765ecc953bSthorpej 				lp[n->nv_int] = n->nv_str;
16775ecc953bSthorpej 			else if (lp[n->nv_int] == NULL) {
16785ecc953bSthorpej 				nnodefault++;
16795ecc953bSthorpej 				ndp = extend(ndp, n->nv_name);
16805ecc953bSthorpej 			}
16815ecc953bSthorpej 		} else {
16825ecc953bSthorpej 			nextra++;
16835ecc953bSthorpej 			ep = extend(ep, n->nv_name);
16845ecc953bSthorpej 		}
16855ecc953bSthorpej 	}
16865ecc953bSthorpej 	if (nextra) {
16875ecc953bSthorpej 		ep[-2] = 0;	/* kill ", " */
16885ecc953bSthorpej 		error("%s: extraneous locator%s: %s",
16895ecc953bSthorpej 		    name, nextra > 1 ? "s" : "", extra);
16905ecc953bSthorpej 	}
16915ecc953bSthorpej 	if (nmissing) {
16925ecc953bSthorpej 		mp[-2] = 0;
16935ecc953bSthorpej 		error("%s: must specify %s", name, missing);
16945ecc953bSthorpej 	}
16955ecc953bSthorpej 	if (nnodefault) {
16965ecc953bSthorpej 		ndp[-2] = 0;
16975ecc953bSthorpej 		error("%s: cannot wildcard %s", name, nodefault);
16985ecc953bSthorpej 	}
16995ecc953bSthorpej 	if (nmissing || nnodefault) {
17005ecc953bSthorpej 		free(lp);
17015ecc953bSthorpej 		lp = NULL;
17025ecc953bSthorpej 	}
17035ecc953bSthorpej 	return (lp);
17045ecc953bSthorpej }
1705