1*7aa6070dScube /* $NetBSD: sem.c,v 1.8 2005/10/01 23:30:37 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; 91*7aa6070dScube extern int vflag; 925ecc953bSthorpej 935ecc953bSthorpej void 945ecc953bSthorpej initsem(void) 955ecc953bSthorpej { 965ecc953bSthorpej 975ecc953bSthorpej attrtab = ht_new(); 985ecc953bSthorpej errattr.a_name = "<internal>"; 995ecc953bSthorpej 1005ecc953bSthorpej TAILQ_INIT(&allbases); 1015ecc953bSthorpej 1025ecc953bSthorpej TAILQ_INIT(&alldevas); 1035ecc953bSthorpej 1045ecc953bSthorpej TAILQ_INIT(&allpspecs); 1055ecc953bSthorpej 1065ecc953bSthorpej cfhashtab = ht_new(); 1075ecc953bSthorpej TAILQ_INIT(&allcf); 1085ecc953bSthorpej 1095ecc953bSthorpej TAILQ_INIT(&alldevi); 1105ecc953bSthorpej errdev.d_name = "<internal>"; 1115ecc953bSthorpej 1125ecc953bSthorpej TAILQ_INIT(&allpseudo); 1135ecc953bSthorpej 1145ecc953bSthorpej TAILQ_INIT(&alldevms); 1155ecc953bSthorpej 1165ecc953bSthorpej s_ifnet = intern("ifnet"); 1175ecc953bSthorpej s_qmark = intern("?"); 1185ecc953bSthorpej s_none = intern("none"); 1195ecc953bSthorpej } 1205ecc953bSthorpej 1215ecc953bSthorpej /* Name of include file just ended (set in scan.l) */ 1225ecc953bSthorpej extern const char *lastfile; 1235ecc953bSthorpej 1245ecc953bSthorpej void 1255ecc953bSthorpej enddefs(void) 1265ecc953bSthorpej { 1275ecc953bSthorpej struct devbase *dev; 1285ecc953bSthorpej 1295ecc953bSthorpej TAILQ_FOREACH(dev, &allbases, d_next) { 1305ecc953bSthorpej if (!dev->d_isdef) { 1315ecc953bSthorpej (void)fprintf(stderr, 1325ecc953bSthorpej "%s: device `%s' used but not defined\n", 1335ecc953bSthorpej lastfile, dev->d_name); 1345ecc953bSthorpej errors++; 1355ecc953bSthorpej continue; 1365ecc953bSthorpej } 1375ecc953bSthorpej } 1385ecc953bSthorpej if (errors) { 1395ecc953bSthorpej (void)fprintf(stderr, "*** Stop.\n"); 1405ecc953bSthorpej exit(1); 1415ecc953bSthorpej } 1425ecc953bSthorpej } 1435ecc953bSthorpej 1445ecc953bSthorpej void 1455ecc953bSthorpej setdefmaxusers(int min, int def, int max) 1465ecc953bSthorpej { 1475ecc953bSthorpej 1485ecc953bSthorpej if (min < 1 || min > def || def > max) 1495ecc953bSthorpej error("maxusers must have 1 <= min (%d) <= default (%d) <= max (%d)", min, def, max); 1505ecc953bSthorpej else { 1515ecc953bSthorpej minmaxusers = min; 1525ecc953bSthorpej defmaxusers = def; 1535ecc953bSthorpej maxmaxusers = max; 1545ecc953bSthorpej } 1555ecc953bSthorpej } 1565ecc953bSthorpej 1575ecc953bSthorpej void 1585ecc953bSthorpej setmaxusers(int n) 1595ecc953bSthorpej { 1605ecc953bSthorpej 1615ecc953bSthorpej if (maxusers != 0) { 1625ecc953bSthorpej error("duplicate maxusers parameter"); 1635ecc953bSthorpej return; 1645ecc953bSthorpej } 1655ecc953bSthorpej maxusers = n; 1665ecc953bSthorpej if (n < minmaxusers) { 1675ecc953bSthorpej error("warning: minimum of %d maxusers assumed", minmaxusers); 1685ecc953bSthorpej errors--; /* take it away */ 1695ecc953bSthorpej maxusers = minmaxusers; 1705ecc953bSthorpej } else if (n > maxmaxusers) { 1715ecc953bSthorpej error("warning: maxusers (%d) > %d", n, maxmaxusers); 1725ecc953bSthorpej errors--; 1735ecc953bSthorpej } 1745ecc953bSthorpej } 1755ecc953bSthorpej 1765ecc953bSthorpej void 1775ecc953bSthorpej setident(const char *i) 1785ecc953bSthorpej { 1795ecc953bSthorpej 1805ecc953bSthorpej ident = intern(i); 1815ecc953bSthorpej } 1825ecc953bSthorpej 1835ecc953bSthorpej /* 1845ecc953bSthorpej * Define an attribute, optionally with an interface (a locator list) 1855ecc953bSthorpej * and a set of attribute-dependencies. 1865ecc953bSthorpej * 1875ecc953bSthorpej * Attribute dependencies MAY NOT be interface attributes. 1885ecc953bSthorpej * 1895ecc953bSthorpej * Since an empty locator list is logically different from "no interface", 1905ecc953bSthorpej * all locator lists include a dummy head node, which we discard here. 1915ecc953bSthorpej */ 1925ecc953bSthorpej int 1935ecc953bSthorpej defattr(const char *name, struct nvlist *locs, struct nvlist *deps, 1945ecc953bSthorpej int devclass) 1955ecc953bSthorpej { 1965ecc953bSthorpej struct attr *a, *dep; 1975ecc953bSthorpej struct nvlist *nv; 1985ecc953bSthorpej int len; 1995ecc953bSthorpej 2005ecc953bSthorpej if (locs != NULL && devclass) 2015ecc953bSthorpej panic("defattr(%s): locators and devclass", name); 2025ecc953bSthorpej 2035ecc953bSthorpej if (deps != NULL && devclass) 2045ecc953bSthorpej panic("defattr(%s): dependencies and devclass", name); 2055ecc953bSthorpej 2065ecc953bSthorpej /* 2075ecc953bSthorpej * If this attribute depends on any others, make sure none of 2085ecc953bSthorpej * the dependencies are interface attributes. 2095ecc953bSthorpej */ 2105ecc953bSthorpej for (nv = deps; nv != NULL; nv = nv->nv_next) { 2115ecc953bSthorpej dep = nv->nv_ptr; 2125ecc953bSthorpej if (dep->a_iattr) { 2135ecc953bSthorpej error("`%s' dependency `%s' is an interface attribute", 2145ecc953bSthorpej name, dep->a_name); 2155ecc953bSthorpej return (1); 2165ecc953bSthorpej } 2175ecc953bSthorpej } 2185ecc953bSthorpej 2195ecc953bSthorpej a = ecalloc(1, sizeof *a); 2205ecc953bSthorpej if (ht_insert(attrtab, name, a)) { 2215ecc953bSthorpej free(a); 2225ecc953bSthorpej error("attribute `%s' already defined", name); 2235ecc953bSthorpej nvfreel(locs); 2245ecc953bSthorpej return (1); 2255ecc953bSthorpej } 2265ecc953bSthorpej 2275ecc953bSthorpej a->a_name = name; 2285ecc953bSthorpej if (locs != NULL) { 2295ecc953bSthorpej a->a_iattr = 1; 2305ecc953bSthorpej a->a_locs = locs->nv_next; 2315ecc953bSthorpej nvfree(locs); 2325ecc953bSthorpej } else { 2335ecc953bSthorpej a->a_iattr = 0; 2345ecc953bSthorpej a->a_locs = NULL; 2355ecc953bSthorpej } 2365ecc953bSthorpej if (devclass) { 2375ecc953bSthorpej size_t l = strlen(name) + 4; 2385ecc953bSthorpej char *classenum = alloca(l), *cp; 2395ecc953bSthorpej int errored = 0; 2405ecc953bSthorpej 2415ecc953bSthorpej strlcpy(classenum, "DV_", l); 2425ecc953bSthorpej strlcat(classenum, name, l); 2435ecc953bSthorpej for (cp = classenum + 3; *cp; cp++) { 2445ecc953bSthorpej if (!errored && 2455ecc953bSthorpej (!isalnum((unsigned char)*cp) || 2465ecc953bSthorpej (isalpha((unsigned char)*cp) && !islower((unsigned char)*cp)))) { 2475ecc953bSthorpej error("device class names must be lower-case alphanumeric characters"); 2485ecc953bSthorpej errored = 1; 2495ecc953bSthorpej } 2505ecc953bSthorpej *cp = toupper((unsigned char)*cp); 2515ecc953bSthorpej } 2525ecc953bSthorpej a->a_devclass = intern(classenum); 2535ecc953bSthorpej } else 2545ecc953bSthorpej a->a_devclass = NULL; 2555ecc953bSthorpej len = 0; 2565ecc953bSthorpej for (nv = a->a_locs; nv != NULL; nv = nv->nv_next) 2575ecc953bSthorpej len++; 2585ecc953bSthorpej a->a_loclen = len; 2595ecc953bSthorpej a->a_devs = NULL; 2605ecc953bSthorpej a->a_refs = NULL; 2615ecc953bSthorpej a->a_deps = deps; 2625ecc953bSthorpej a->a_expanding = 0; 2635ecc953bSthorpej 2645ecc953bSthorpej /* Expand the attribute to check for cycles in the graph. */ 2655ecc953bSthorpej expandattr(a, NULL); 2665ecc953bSthorpej 2675ecc953bSthorpej return (0); 2685ecc953bSthorpej } 2695ecc953bSthorpej 2705ecc953bSthorpej /* 2715ecc953bSthorpej * Return true if the given `error object' is embedded in the given 2725ecc953bSthorpej * pointer list. 2735ecc953bSthorpej */ 2745ecc953bSthorpej static int 2755ecc953bSthorpej has_errobj(struct nvlist *nv, void *obj) 2765ecc953bSthorpej { 2775ecc953bSthorpej 2785ecc953bSthorpej for (; nv != NULL; nv = nv->nv_next) 2795ecc953bSthorpej if (nv->nv_ptr == obj) 2805ecc953bSthorpej return (1); 2815ecc953bSthorpej return (0); 2825ecc953bSthorpej } 2835ecc953bSthorpej 2845ecc953bSthorpej /* 2855ecc953bSthorpej * Return true if the given attribute is embedded in the given 2865ecc953bSthorpej * pointer list. 2875ecc953bSthorpej */ 2885ecc953bSthorpej int 2895ecc953bSthorpej has_attr(struct nvlist *nv, const char *attr) 2905ecc953bSthorpej { 2915ecc953bSthorpej struct attr *a; 2925ecc953bSthorpej 2935ecc953bSthorpej if ((a = getattr(attr)) == NULL) 2945ecc953bSthorpej return (0); 2955ecc953bSthorpej 2965ecc953bSthorpej for (; nv != NULL; nv = nv->nv_next) 2975ecc953bSthorpej if (nv->nv_ptr == a) 2985ecc953bSthorpej return (1); 2995ecc953bSthorpej return (0); 3005ecc953bSthorpej } 3015ecc953bSthorpej 3025ecc953bSthorpej /* 3035ecc953bSthorpej * Add a device base to a list in an attribute (actually, to any list). 3045ecc953bSthorpej * Note that this does not check for duplicates, and does reverse the 3055ecc953bSthorpej * list order, but no one cares anyway. 3065ecc953bSthorpej */ 3075ecc953bSthorpej static struct nvlist * 3085ecc953bSthorpej addtoattr(struct nvlist *l, struct devbase *dev) 3095ecc953bSthorpej { 3105ecc953bSthorpej struct nvlist *n; 3115ecc953bSthorpej 3125ecc953bSthorpej n = newnv(NULL, NULL, dev, 0, l); 3135ecc953bSthorpej return (n); 3145ecc953bSthorpej } 3155ecc953bSthorpej 3165ecc953bSthorpej /* 3175ecc953bSthorpej * Define a device. This may (or may not) also define an interface 3185ecc953bSthorpej * attribute and/or refer to existing attributes. 3195ecc953bSthorpej */ 3205ecc953bSthorpej void 3215ecc953bSthorpej defdev(struct devbase *dev, struct nvlist *loclist, struct nvlist *attrs, 3225ecc953bSthorpej int ispseudo) 3235ecc953bSthorpej { 3245ecc953bSthorpej struct nvlist *nv; 3255ecc953bSthorpej struct attr *a; 3265ecc953bSthorpej 3275ecc953bSthorpej if (dev == &errdev) 3285ecc953bSthorpej goto bad; 3295ecc953bSthorpej if (dev->d_isdef) { 3305ecc953bSthorpej error("redefinition of `%s'", dev->d_name); 3315ecc953bSthorpej goto bad; 3325ecc953bSthorpej } 3335ecc953bSthorpej 3345ecc953bSthorpej dev->d_isdef = 1; 3355ecc953bSthorpej if (has_errobj(attrs, &errattr)) 3365ecc953bSthorpej goto bad; 3375ecc953bSthorpej 3385ecc953bSthorpej /* 3395ecc953bSthorpej * Handle implicit attribute definition from locator list. Do 3405ecc953bSthorpej * this before scanning the `at' list so that we can have, e.g.: 3415ecc953bSthorpej * device foo at other, foo { slot = -1 } 3425ecc953bSthorpej * (where you can plug in a foo-bus extender to a foo-bus). 3435ecc953bSthorpej */ 3445ecc953bSthorpej if (loclist != NULL) { 3455ecc953bSthorpej nv = loclist; 3465ecc953bSthorpej loclist = NULL; /* defattr disposes of them for us */ 3475ecc953bSthorpej if (defattr(dev->d_name, nv, NULL, 0)) 3485ecc953bSthorpej goto bad; 3495ecc953bSthorpej attrs = newnv(dev->d_name, NULL, getattr(dev->d_name), 0, 3505ecc953bSthorpej attrs); 351c130d400Scube 352c130d400Scube /* 353c130d400Scube * Pseudo-devices can have children. Consider them as 354c130d400Scube * attaching at root. 355c130d400Scube */ 356c130d400Scube if (ispseudo) 357c130d400Scube ht_insert(devroottab, dev->d_name, dev); 3585ecc953bSthorpej } 3595ecc953bSthorpej 3605ecc953bSthorpej /* Committed! Set up fields. */ 3615ecc953bSthorpej dev->d_ispseudo = ispseudo; 3625ecc953bSthorpej dev->d_attrs = attrs; 3635ecc953bSthorpej dev->d_classattr = NULL; /* for now */ 3645ecc953bSthorpej 3655ecc953bSthorpej /* 3665ecc953bSthorpej * For each interface attribute this device refers to, add this 3675ecc953bSthorpej * device to its reference list. This makes, e.g., finding all 3685ecc953bSthorpej * "scsi"s easier. 3695ecc953bSthorpej * 3705ecc953bSthorpej * While looking through the attributes, set up the device 3715ecc953bSthorpej * class if any are devclass attributes (and error out if the 3725ecc953bSthorpej * device has two classes). 3735ecc953bSthorpej */ 3745ecc953bSthorpej for (nv = attrs; nv != NULL; nv = nv->nv_next) { 3755ecc953bSthorpej a = nv->nv_ptr; 3765ecc953bSthorpej if (a->a_iattr) 3775ecc953bSthorpej a->a_refs = addtoattr(a->a_refs, dev); 3785ecc953bSthorpej if (a->a_devclass != NULL) { 3795ecc953bSthorpej if (dev->d_classattr != NULL) { 3805ecc953bSthorpej error("device `%s' has multiple classes (`%s' and `%s')", 3815ecc953bSthorpej dev->d_name, dev->d_classattr->a_name, 3825ecc953bSthorpej a->a_name); 3835ecc953bSthorpej } 3845ecc953bSthorpej dev->d_classattr = a; 3855ecc953bSthorpej } 3865ecc953bSthorpej } 3875ecc953bSthorpej return; 3885ecc953bSthorpej bad: 3895ecc953bSthorpej nvfreel(loclist); 3905ecc953bSthorpej nvfreel(attrs); 3915ecc953bSthorpej } 3925ecc953bSthorpej 3935ecc953bSthorpej /* 3945ecc953bSthorpej * Look up a devbase. Also makes sure it is a reasonable name, 3955ecc953bSthorpej * i.e., does not end in a digit or contain special characters. 3965ecc953bSthorpej */ 3975ecc953bSthorpej struct devbase * 3985ecc953bSthorpej getdevbase(const char *name) 3995ecc953bSthorpej { 4005ecc953bSthorpej u_char *p; 4015ecc953bSthorpej struct devbase *dev; 4025ecc953bSthorpej 4035ecc953bSthorpej p = (u_char *)name; 4045ecc953bSthorpej if (!isalpha(*p)) 4055ecc953bSthorpej goto badname; 4065ecc953bSthorpej while (*++p) { 4075ecc953bSthorpej if (!isalnum(*p) && *p != '_') 4085ecc953bSthorpej goto badname; 4095ecc953bSthorpej } 4105ecc953bSthorpej if (isdigit(*--p)) { 4115ecc953bSthorpej badname: 4125ecc953bSthorpej error("bad device base name `%s'", name); 4135ecc953bSthorpej return (&errdev); 4145ecc953bSthorpej } 4155ecc953bSthorpej dev = ht_lookup(devbasetab, name); 4165ecc953bSthorpej if (dev == NULL) { 4175ecc953bSthorpej dev = ecalloc(1, sizeof *dev); 4185ecc953bSthorpej dev->d_name = name; 4195ecc953bSthorpej dev->d_isdef = 0; 4205ecc953bSthorpej dev->d_major = NODEV; 4215ecc953bSthorpej dev->d_attrs = NULL; 4225ecc953bSthorpej dev->d_ihead = NULL; 4235ecc953bSthorpej dev->d_ipp = &dev->d_ihead; 4245ecc953bSthorpej dev->d_ahead = NULL; 4255ecc953bSthorpej dev->d_app = &dev->d_ahead; 4265ecc953bSthorpej dev->d_umax = 0; 4275ecc953bSthorpej TAILQ_INSERT_TAIL(&allbases, dev, d_next); 4285ecc953bSthorpej if (ht_insert(devbasetab, name, dev)) 4295ecc953bSthorpej panic("getdevbase(%s)", name); 4305ecc953bSthorpej } 4315ecc953bSthorpej return (dev); 4325ecc953bSthorpej } 4335ecc953bSthorpej 4345ecc953bSthorpej /* 4355ecc953bSthorpej * Define some of a device's allowable parent attachments. 4365ecc953bSthorpej * There may be a list of (plain) attributes. 4375ecc953bSthorpej */ 4385ecc953bSthorpej void 4395ecc953bSthorpej defdevattach(struct deva *deva, struct devbase *dev, struct nvlist *atlist, 4405ecc953bSthorpej struct nvlist *attrs) 4415ecc953bSthorpej { 4425ecc953bSthorpej struct nvlist *nv; 4435ecc953bSthorpej struct attr *a; 4445ecc953bSthorpej struct deva *da; 4455ecc953bSthorpej 4465ecc953bSthorpej if (dev == &errdev) 4475ecc953bSthorpej goto bad; 4485ecc953bSthorpej if (deva == NULL) 4495ecc953bSthorpej deva = getdevattach(dev->d_name); 4505ecc953bSthorpej if (deva == &errdeva) 4515ecc953bSthorpej goto bad; 4525ecc953bSthorpej if (!dev->d_isdef) { 4535ecc953bSthorpej error("attaching undefined device `%s'", dev->d_name); 4545ecc953bSthorpej goto bad; 4555ecc953bSthorpej } 4565ecc953bSthorpej if (deva->d_isdef) { 4575ecc953bSthorpej error("redefinition of `%s'", deva->d_name); 4585ecc953bSthorpej goto bad; 4595ecc953bSthorpej } 4605ecc953bSthorpej if (dev->d_ispseudo) { 4615ecc953bSthorpej error("pseudo-devices can't attach"); 4625ecc953bSthorpej goto bad; 4635ecc953bSthorpej } 4645ecc953bSthorpej 4655ecc953bSthorpej deva->d_isdef = 1; 4665ecc953bSthorpej if (has_errobj(attrs, &errattr)) 4675ecc953bSthorpej goto bad; 4685ecc953bSthorpej for (nv = attrs; nv != NULL; nv = nv->nv_next) { 4695ecc953bSthorpej a = nv->nv_ptr; 4705ecc953bSthorpej if (a == &errattr) 4715ecc953bSthorpej continue; /* already complained */ 4725ecc953bSthorpej if (a->a_iattr || a->a_devclass != NULL) 4735ecc953bSthorpej error("`%s' is not a plain attribute", a->a_name); 4745ecc953bSthorpej } 4755ecc953bSthorpej 4765ecc953bSthorpej /* Committed! Set up fields. */ 4775ecc953bSthorpej deva->d_attrs = attrs; 4785ecc953bSthorpej deva->d_atlist = atlist; 4795ecc953bSthorpej deva->d_devbase = dev; 4805ecc953bSthorpej 4815ecc953bSthorpej /* 4825ecc953bSthorpej * Turn the `at' list into interface attributes (map each 4835ecc953bSthorpej * nv_name to an attribute, or to NULL for root), and add 4845ecc953bSthorpej * this device to those attributes, so that children can 4855ecc953bSthorpej * be listed at this particular device if they are supported 4865ecc953bSthorpej * by that attribute. 4875ecc953bSthorpej */ 4885ecc953bSthorpej for (nv = atlist; nv != NULL; nv = nv->nv_next) { 4895ecc953bSthorpej if (nv->nv_name == NULL) 4905ecc953bSthorpej nv->nv_ptr = a = NULL; /* at root */ 4915ecc953bSthorpej else 4925ecc953bSthorpej nv->nv_ptr = a = getattr(nv->nv_name); 4935ecc953bSthorpej if (a == &errattr) 4945ecc953bSthorpej continue; /* already complained */ 4955ecc953bSthorpej 4965ecc953bSthorpej /* 4975ecc953bSthorpej * Make sure that an attachment spec doesn't 4985ecc953bSthorpej * already say how to attach to this attribute. 4995ecc953bSthorpej */ 5005ecc953bSthorpej for (da = dev->d_ahead; da != NULL; da = da->d_bsame) 5015ecc953bSthorpej if (onlist(da->d_atlist, a)) 5025ecc953bSthorpej error("attach at `%s' already done by `%s'", 5035ecc953bSthorpej a ? a->a_name : "root", da->d_name); 5045ecc953bSthorpej 505c130d400Scube if (a == NULL) { 506c130d400Scube ht_insert(devroottab, dev->d_name, dev); 5075ecc953bSthorpej continue; /* at root; don't add */ 508c130d400Scube } 5095ecc953bSthorpej if (!a->a_iattr) 5105ecc953bSthorpej error("%s cannot be at plain attribute `%s'", 5115ecc953bSthorpej dev->d_name, a->a_name); 5125ecc953bSthorpej else 5135ecc953bSthorpej a->a_devs = addtoattr(a->a_devs, dev); 5145ecc953bSthorpej } 5155ecc953bSthorpej 5165ecc953bSthorpej /* attach to parent */ 5175ecc953bSthorpej *dev->d_app = deva; 5185ecc953bSthorpej dev->d_app = &deva->d_bsame; 5195ecc953bSthorpej return; 5205ecc953bSthorpej bad: 5215ecc953bSthorpej nvfreel(atlist); 5225ecc953bSthorpej nvfreel(attrs); 5235ecc953bSthorpej } 5245ecc953bSthorpej 5255ecc953bSthorpej /* 5265ecc953bSthorpej * Look up a device attachment. Also makes sure it is a reasonable 5275ecc953bSthorpej * name, i.e., does not contain digits or special characters. 5285ecc953bSthorpej */ 5295ecc953bSthorpej struct deva * 5305ecc953bSthorpej getdevattach(const char *name) 5315ecc953bSthorpej { 5325ecc953bSthorpej u_char *p; 5335ecc953bSthorpej struct deva *deva; 5345ecc953bSthorpej 5355ecc953bSthorpej p = (u_char *)name; 5365ecc953bSthorpej if (!isalpha(*p)) 5375ecc953bSthorpej goto badname; 5385ecc953bSthorpej while (*++p) { 5395ecc953bSthorpej if (!isalnum(*p) && *p != '_') 5405ecc953bSthorpej goto badname; 5415ecc953bSthorpej } 5425ecc953bSthorpej if (isdigit(*--p)) { 5435ecc953bSthorpej badname: 5445ecc953bSthorpej error("bad device attachment name `%s'", name); 5455ecc953bSthorpej return (&errdeva); 5465ecc953bSthorpej } 5475ecc953bSthorpej deva = ht_lookup(devatab, name); 5485ecc953bSthorpej if (deva == NULL) { 5495ecc953bSthorpej deva = ecalloc(1, sizeof *deva); 5505ecc953bSthorpej deva->d_name = name; 5515ecc953bSthorpej deva->d_bsame = NULL; 5525ecc953bSthorpej deva->d_isdef = 0; 5535ecc953bSthorpej deva->d_devbase = NULL; 5545ecc953bSthorpej deva->d_atlist = NULL; 5555ecc953bSthorpej deva->d_attrs = NULL; 5565ecc953bSthorpej deva->d_ihead = NULL; 5575ecc953bSthorpej deva->d_ipp = &deva->d_ihead; 5585ecc953bSthorpej TAILQ_INSERT_TAIL(&alldevas, deva, d_next); 5595ecc953bSthorpej if (ht_insert(devatab, name, deva)) 5605ecc953bSthorpej panic("getdeva(%s)", name); 5615ecc953bSthorpej } 5625ecc953bSthorpej return (deva); 5635ecc953bSthorpej } 5645ecc953bSthorpej 5655ecc953bSthorpej /* 5665ecc953bSthorpej * Look up an attribute. 5675ecc953bSthorpej */ 5685ecc953bSthorpej struct attr * 5695ecc953bSthorpej getattr(const char *name) 5705ecc953bSthorpej { 5715ecc953bSthorpej struct attr *a; 5725ecc953bSthorpej 5735ecc953bSthorpej if ((a = ht_lookup(attrtab, name)) == NULL) { 5745ecc953bSthorpej error("undefined attribute `%s'", name); 5755ecc953bSthorpej a = &errattr; 5765ecc953bSthorpej } 5775ecc953bSthorpej return (a); 5785ecc953bSthorpej } 5795ecc953bSthorpej 5805ecc953bSthorpej /* 5815ecc953bSthorpej * Recursively expand an attribute and its dependencies, checking for 5825ecc953bSthorpej * cycles, and invoking a callback for each attribute found. 5835ecc953bSthorpej */ 5845ecc953bSthorpej void 5855ecc953bSthorpej expandattr(struct attr *a, void (*callback)(struct attr *)) 5865ecc953bSthorpej { 5875ecc953bSthorpej struct nvlist *nv; 5885ecc953bSthorpej struct attr *dep; 5895ecc953bSthorpej 5905ecc953bSthorpej if (a->a_expanding) { 5915ecc953bSthorpej error("circular dependency on attribute `%s'", a->a_name); 5925ecc953bSthorpej return; 5935ecc953bSthorpej } 5945ecc953bSthorpej 5955ecc953bSthorpej a->a_expanding = 1; 5965ecc953bSthorpej 5975ecc953bSthorpej /* First expand all of this attribute's dependencies. */ 5985ecc953bSthorpej for (nv = a->a_deps; nv != NULL; nv = nv->nv_next) { 5995ecc953bSthorpej dep = nv->nv_ptr; 6005ecc953bSthorpej expandattr(dep, callback); 6015ecc953bSthorpej } 6025ecc953bSthorpej 6035ecc953bSthorpej /* ...and now invoke the callback for ourself. */ 6045ecc953bSthorpej if (callback != NULL) 6055ecc953bSthorpej (*callback)(a); 6065ecc953bSthorpej 6075ecc953bSthorpej a->a_expanding = 0; 6085ecc953bSthorpej } 6095ecc953bSthorpej 6105ecc953bSthorpej /* 6115ecc953bSthorpej * Set the major device number for a device, so that it can be used 6125ecc953bSthorpej * as a root/dumps "on" device in a configuration. 6135ecc953bSthorpej */ 6145ecc953bSthorpej void 6155ecc953bSthorpej setmajor(struct devbase *d, int n) 6165ecc953bSthorpej { 6175ecc953bSthorpej 6185ecc953bSthorpej if (d != &errdev && d->d_major != NODEV) 6195ecc953bSthorpej error("device `%s' is already major %d", 6205ecc953bSthorpej d->d_name, d->d_major); 6215ecc953bSthorpej else 6225ecc953bSthorpej d->d_major = n; 6235ecc953bSthorpej } 6245ecc953bSthorpej 6255ecc953bSthorpej const char * 6265ecc953bSthorpej major2name(int maj) 6275ecc953bSthorpej { 6285ecc953bSthorpej struct devbase *dev; 6295ecc953bSthorpej struct devm *dm; 6305ecc953bSthorpej 6315ecc953bSthorpej if (!do_devsw) { 6325ecc953bSthorpej TAILQ_FOREACH(dev, &allbases, d_next) { 6335ecc953bSthorpej if (dev->d_major == maj) 6345ecc953bSthorpej return (dev->d_name); 6355ecc953bSthorpej } 6365ecc953bSthorpej } else { 6375ecc953bSthorpej TAILQ_FOREACH(dm, &alldevms, dm_next) { 6385ecc953bSthorpej if (dm->dm_bmajor == maj) 6395ecc953bSthorpej return (dm->dm_name); 6405ecc953bSthorpej } 6415ecc953bSthorpej } 6425ecc953bSthorpej return (NULL); 6435ecc953bSthorpej } 6445ecc953bSthorpej 6455ecc953bSthorpej int 6465ecc953bSthorpej dev2major(struct devbase *dev) 6475ecc953bSthorpej { 6485ecc953bSthorpej struct devm *dm; 6495ecc953bSthorpej 6505ecc953bSthorpej if (!do_devsw) 6515ecc953bSthorpej return (dev->d_major); 6525ecc953bSthorpej 6535ecc953bSthorpej TAILQ_FOREACH(dm, &alldevms, dm_next) { 6545ecc953bSthorpej if (strcmp(dm->dm_name, dev->d_name) == 0) 6555ecc953bSthorpej return (dm->dm_bmajor); 6565ecc953bSthorpej } 6575ecc953bSthorpej return (NODEV); 6585ecc953bSthorpej } 6595ecc953bSthorpej 6605ecc953bSthorpej /* 6615ecc953bSthorpej * Make a string description of the device at maj/min. 6625ecc953bSthorpej */ 6635ecc953bSthorpej static const char * 6645ecc953bSthorpej makedevstr(int maj, int min) 6655ecc953bSthorpej { 6665ecc953bSthorpej const char *devname; 6675ecc953bSthorpej char buf[32]; 6685ecc953bSthorpej 6695ecc953bSthorpej devname = major2name(maj); 6705ecc953bSthorpej if (devname == NULL) 6715ecc953bSthorpej (void)snprintf(buf, sizeof(buf), "<%d/%d>", maj, min); 6725ecc953bSthorpej else 6735ecc953bSthorpej (void)snprintf(buf, sizeof(buf), "%s%d%c", devname, 6745ecc953bSthorpej min / maxpartitions, (min % maxpartitions) + 'a'); 6755ecc953bSthorpej 6765ecc953bSthorpej return (intern(buf)); 6775ecc953bSthorpej } 6785ecc953bSthorpej 6795ecc953bSthorpej /* 6805ecc953bSthorpej * Map things like "ra0b" => makedev(major("ra"), 0*maxpartitions + 'b'-'a'). 6815ecc953bSthorpej * Handle the case where the device number is given but there is no 6825ecc953bSthorpej * corresponding name, and map NULL to the default. 6835ecc953bSthorpej */ 6845ecc953bSthorpej static int 6855ecc953bSthorpej resolve(struct nvlist **nvp, const char *name, const char *what, 6865ecc953bSthorpej struct nvlist *dflt, int part) 6875ecc953bSthorpej { 6885ecc953bSthorpej struct nvlist *nv; 6895ecc953bSthorpej struct devbase *dev; 6905ecc953bSthorpej const char *cp; 6915ecc953bSthorpej int maj, min, i, l; 6925ecc953bSthorpej int unit; 6935ecc953bSthorpej char buf[NAMESIZE]; 6945ecc953bSthorpej 6955ecc953bSthorpej if ((u_int)(part -= 'a') >= maxpartitions) 6965ecc953bSthorpej panic("resolve"); 6975ecc953bSthorpej if ((nv = *nvp) == NULL) { 6985ecc953bSthorpej dev_t d = NODEV; 6995ecc953bSthorpej /* 7005ecc953bSthorpej * Apply default. Easiest to do this by number. 7015ecc953bSthorpej * Make sure to retain NODEVness, if this is dflt's disposition. 7025ecc953bSthorpej */ 7035ecc953bSthorpej if (dflt->nv_int != NODEV) { 7045ecc953bSthorpej maj = major(dflt->nv_int); 7055ecc953bSthorpej min = ((minor(dflt->nv_int) / maxpartitions) * 7065ecc953bSthorpej maxpartitions) + part; 7075ecc953bSthorpej d = makedev(maj, min); 7085ecc953bSthorpej cp = makedevstr(maj, min); 7095ecc953bSthorpej } else 7105ecc953bSthorpej cp = NULL; 7115ecc953bSthorpej *nvp = nv = newnv(NULL, cp, NULL, d, NULL); 7125ecc953bSthorpej } 7135ecc953bSthorpej if (nv->nv_int != NODEV) { 7145ecc953bSthorpej /* 7155ecc953bSthorpej * By the numbers. Find the appropriate major number 7165ecc953bSthorpej * to make a name. 7175ecc953bSthorpej */ 7185ecc953bSthorpej maj = major(nv->nv_int); 7195ecc953bSthorpej min = minor(nv->nv_int); 7205ecc953bSthorpej nv->nv_str = makedevstr(maj, min); 7215ecc953bSthorpej return (0); 7225ecc953bSthorpej } 7235ecc953bSthorpej 7245ecc953bSthorpej if (nv->nv_str == NULL || nv->nv_str == s_qmark) 7255ecc953bSthorpej /* 7265ecc953bSthorpej * Wildcarded or unspecified; leave it as NODEV. 7275ecc953bSthorpej */ 7285ecc953bSthorpej return (0); 7295ecc953bSthorpej 7305ecc953bSthorpej /* 7315ecc953bSthorpej * The normal case: things like "ra2b". Check for partition 7325ecc953bSthorpej * suffix, remove it if there, and split into name ("ra") and 7335ecc953bSthorpej * unit (2). 7345ecc953bSthorpej */ 7355ecc953bSthorpej l = i = strlen(nv->nv_str); 7365ecc953bSthorpej cp = &nv->nv_str[l]; 7375ecc953bSthorpej if (l > 1 && *--cp >= 'a' && *cp < 'a' + maxpartitions && 7385ecc953bSthorpej isdigit((unsigned char)cp[-1])) { 7395ecc953bSthorpej l--; 7405ecc953bSthorpej part = *cp - 'a'; 7415ecc953bSthorpej } 7425ecc953bSthorpej cp = nv->nv_str; 7435ecc953bSthorpej if (split(cp, l, buf, sizeof buf, &unit)) { 7445ecc953bSthorpej error("%s: invalid %s device name `%s'", name, what, cp); 7455ecc953bSthorpej return (1); 7465ecc953bSthorpej } 7475ecc953bSthorpej dev = ht_lookup(devbasetab, intern(buf)); 7485ecc953bSthorpej if (dev == NULL) { 7495ecc953bSthorpej error("%s: device `%s' does not exist", name, buf); 7505ecc953bSthorpej return (1); 7515ecc953bSthorpej } 7525ecc953bSthorpej 7535ecc953bSthorpej /* 7545ecc953bSthorpej * Check for the magic network interface attribute, and 7555ecc953bSthorpej * don't bother making a device number. 7565ecc953bSthorpej */ 7575ecc953bSthorpej if (has_attr(dev->d_attrs, s_ifnet)) { 7585ecc953bSthorpej nv->nv_int = NODEV; 7595ecc953bSthorpej nv->nv_ifunit = unit; /* XXX XXX XXX */ 7605ecc953bSthorpej } else { 7615ecc953bSthorpej maj = dev2major(dev); 7625ecc953bSthorpej if (maj == NODEV) { 7635ecc953bSthorpej error("%s: can't make %s device from `%s'", 7645ecc953bSthorpej name, what, nv->nv_str); 7655ecc953bSthorpej return (1); 7665ecc953bSthorpej } 7675ecc953bSthorpej nv->nv_int = makedev(maj, unit * maxpartitions + part); 7685ecc953bSthorpej } 7695ecc953bSthorpej 7705ecc953bSthorpej nv->nv_name = dev->d_name; 7715ecc953bSthorpej return (0); 7725ecc953bSthorpej } 7735ecc953bSthorpej 7745ecc953bSthorpej /* 7755ecc953bSthorpej * Add a completed configuration to the list. 7765ecc953bSthorpej */ 7775ecc953bSthorpej void 7785ecc953bSthorpej addconf(struct config *cf0) 7795ecc953bSthorpej { 7805ecc953bSthorpej struct config *cf; 7815ecc953bSthorpej struct nvlist *nv; 7825ecc953bSthorpej const char *name; 7835ecc953bSthorpej 7845ecc953bSthorpej name = cf0->cf_name; 7855ecc953bSthorpej cf = ecalloc(1, sizeof *cf); 7865ecc953bSthorpej if (ht_insert(cfhashtab, name, cf)) { 7875ecc953bSthorpej error("configuration `%s' already defined", name); 7885ecc953bSthorpej free(cf); 7895ecc953bSthorpej goto bad; 7905ecc953bSthorpej } 7915ecc953bSthorpej *cf = *cf0; 7925ecc953bSthorpej 7935ecc953bSthorpej /* 7945ecc953bSthorpej * Resolve the root device. 7955ecc953bSthorpej */ 7965ecc953bSthorpej if (cf->cf_root->nv_str != s_qmark) { 7975ecc953bSthorpej nv = cf->cf_root; 7985ecc953bSthorpej if (nv == NULL) { 7995ecc953bSthorpej error("%s: no root device specified", name); 8005ecc953bSthorpej goto bad; 8015ecc953bSthorpej } 8025ecc953bSthorpej if (resolve(&cf->cf_root, name, "root", nv, 'a')) 8035ecc953bSthorpej goto bad; 8045ecc953bSthorpej } 8055ecc953bSthorpej 8065ecc953bSthorpej /* 8075ecc953bSthorpej * Resolve the dump device. 8085ecc953bSthorpej */ 8095ecc953bSthorpej if (cf->cf_dump == NULL || cf->cf_dump->nv_str == s_qmark) { 8105ecc953bSthorpej /* 8115ecc953bSthorpej * Wildcarded dump device is equivalent to unspecified. 8125ecc953bSthorpej */ 8135ecc953bSthorpej cf->cf_dump = NULL; 8145ecc953bSthorpej } else if (cf->cf_dump->nv_str == s_none) { 8155ecc953bSthorpej /* 8165ecc953bSthorpej * Operator has requested that no dump device should be 8175ecc953bSthorpej * configured; do nothing. 8185ecc953bSthorpej */ 8195ecc953bSthorpej } else { 8205ecc953bSthorpej if (resolve(&cf->cf_dump, name, "dumps", cf->cf_dump, 'b')) 8215ecc953bSthorpej goto bad; 8225ecc953bSthorpej } 8235ecc953bSthorpej 8245ecc953bSthorpej /* Wildcarded fstype is `unspecified'. */ 8255ecc953bSthorpej if (cf->cf_fstype == s_qmark) 8265ecc953bSthorpej cf->cf_fstype = NULL; 8275ecc953bSthorpej 8285ecc953bSthorpej TAILQ_INSERT_TAIL(&allcf, cf, cf_next); 8295ecc953bSthorpej return; 8305ecc953bSthorpej bad: 8315ecc953bSthorpej nvfreel(cf0->cf_root); 8325ecc953bSthorpej nvfreel(cf0->cf_dump); 8335ecc953bSthorpej } 8345ecc953bSthorpej 8355ecc953bSthorpej void 8365ecc953bSthorpej setconf(struct nvlist **npp, const char *what, struct nvlist *v) 8375ecc953bSthorpej { 8385ecc953bSthorpej 8395ecc953bSthorpej if (*npp != NULL) { 8405ecc953bSthorpej error("duplicate %s specification", what); 8415ecc953bSthorpej nvfreel(v); 8425ecc953bSthorpej } else 8435ecc953bSthorpej *npp = v; 8445ecc953bSthorpej } 8455ecc953bSthorpej 8465ecc953bSthorpej void 8475ecc953bSthorpej setfstype(const char **fstp, const char *v) 8485ecc953bSthorpej { 8495ecc953bSthorpej 8505ecc953bSthorpej if (*fstp != NULL) { 8515ecc953bSthorpej error("multiple fstype specifications"); 8525ecc953bSthorpej return; 8535ecc953bSthorpej } 8545ecc953bSthorpej 8555ecc953bSthorpej if (v != s_qmark && OPT_FSOPT(v)) { 8565ecc953bSthorpej error("\"%s\" is not a configured file system", v); 8575ecc953bSthorpej return; 8585ecc953bSthorpej } 8595ecc953bSthorpej 8605ecc953bSthorpej *fstp = v; 8615ecc953bSthorpej } 8625ecc953bSthorpej 8635ecc953bSthorpej static struct devi * 8645ecc953bSthorpej newdevi(const char *name, int unit, struct devbase *d) 8655ecc953bSthorpej { 8665ecc953bSthorpej struct devi *i; 8675ecc953bSthorpej 8685ecc953bSthorpej i = ecalloc(1, sizeof *i); 8695ecc953bSthorpej i->i_name = name; 8705ecc953bSthorpej i->i_unit = unit; 8715ecc953bSthorpej i->i_base = d; 8725ecc953bSthorpej i->i_bsame = NULL; 8735ecc953bSthorpej i->i_asame = NULL; 8745ecc953bSthorpej i->i_alias = NULL; 8755ecc953bSthorpej i->i_at = NULL; 8765ecc953bSthorpej i->i_pspec = NULL; 8775ecc953bSthorpej i->i_atdeva = NULL; 8785ecc953bSthorpej i->i_locs = NULL; 8795ecc953bSthorpej i->i_cfflags = 0; 8805ecc953bSthorpej i->i_lineno = currentline(); 881*7aa6070dScube i->i_active = DEVI_ORPHAN; /* Proper analysis comes later */ 8825ecc953bSthorpej if (unit >= d->d_umax) 8835ecc953bSthorpej d->d_umax = unit + 1; 8845ecc953bSthorpej return (i); 8855ecc953bSthorpej } 8865ecc953bSthorpej 8875ecc953bSthorpej /* 8885ecc953bSthorpej * Add the named device as attaching to the named attribute (or perhaps 8895ecc953bSthorpej * another device instead) plus unit number. 8905ecc953bSthorpej */ 8915ecc953bSthorpej void 8925ecc953bSthorpej adddev(const char *name, const char *at, struct nvlist *loclist, int flags) 8935ecc953bSthorpej { 8945ecc953bSthorpej struct devi *i; /* the new instance */ 8955ecc953bSthorpej struct pspec *p; /* and its pspec */ 8965ecc953bSthorpej struct attr *attr; /* attribute that allows attach */ 8975ecc953bSthorpej struct devbase *ib; /* i->i_base */ 8985ecc953bSthorpej struct devbase *ab; /* not NULL => at another dev */ 8995ecc953bSthorpej struct nvlist *nv; 9005ecc953bSthorpej struct deva *iba; /* devbase attachment used */ 9015ecc953bSthorpej const char *cp; 9025ecc953bSthorpej int atunit; 9035ecc953bSthorpej char atbuf[NAMESIZE]; 9045ecc953bSthorpej int hit; 9055ecc953bSthorpej 9065ecc953bSthorpej ab = NULL; 9075ecc953bSthorpej iba = NULL; 9085ecc953bSthorpej if (at == NULL) { 9095ecc953bSthorpej /* "at root" */ 9105ecc953bSthorpej p = NULL; 9115ecc953bSthorpej if ((i = getdevi(name)) == NULL) 9125ecc953bSthorpej goto bad; 9135ecc953bSthorpej /* 9145ecc953bSthorpej * Must warn about i_unit > 0 later, after taking care of 9155ecc953bSthorpej * the STAR cases (we could do non-star's here but why 9165ecc953bSthorpej * bother?). Make sure this device can be at root. 9175ecc953bSthorpej */ 9185ecc953bSthorpej ib = i->i_base; 9195ecc953bSthorpej hit = 0; 9205ecc953bSthorpej for (iba = ib->d_ahead; iba != NULL; iba = iba->d_bsame) 9215ecc953bSthorpej if (onlist(iba->d_atlist, NULL)) { 9225ecc953bSthorpej hit = 1; 9235ecc953bSthorpej break; 9245ecc953bSthorpej } 9255ecc953bSthorpej if (!hit) { 9265ecc953bSthorpej error("`%s' cannot attach to the root", ib->d_name); 9275ecc953bSthorpej goto bad; 9285ecc953bSthorpej } 9295ecc953bSthorpej attr = &errattr; /* a convenient "empty" attr */ 9305ecc953bSthorpej } else { 9315ecc953bSthorpej if (split(at, strlen(at), atbuf, sizeof atbuf, &atunit)) { 9325ecc953bSthorpej error("invalid attachment name `%s'", at); 9335ecc953bSthorpej /* (void)getdevi(name); -- ??? */ 9345ecc953bSthorpej goto bad; 9355ecc953bSthorpej } 9365ecc953bSthorpej if ((i = getdevi(name)) == NULL) 9375ecc953bSthorpej goto bad; 9385ecc953bSthorpej ib = i->i_base; 9395ecc953bSthorpej 9405ecc953bSthorpej /* 9415ecc953bSthorpej * Devices can attach to two types of things: Attributes, 9425ecc953bSthorpej * and other devices (which have the appropriate attributes 9435ecc953bSthorpej * to allow attachment). 9445ecc953bSthorpej * 9455ecc953bSthorpej * (1) If we're attached to an attribute, then we don't need 9465ecc953bSthorpej * look at the parent base device to see what attributes 9475ecc953bSthorpej * it has, and make sure that we can attach to them. 9485ecc953bSthorpej * 9495ecc953bSthorpej * (2) If we're attached to a real device (i.e. named in 9505ecc953bSthorpej * the config file), we want to remember that so that 9515ecc953bSthorpej * at cross-check time, if the device we're attached to 9525ecc953bSthorpej * is missing but other devices which also provide the 9535ecc953bSthorpej * attribute are present, we don't get a false "OK." 9545ecc953bSthorpej * 9555ecc953bSthorpej * (3) If the thing we're attached to is an attribute 9565ecc953bSthorpej * but is actually named in the config file, we still 9575ecc953bSthorpej * have to remember its devbase. 9585ecc953bSthorpej */ 9595ecc953bSthorpej cp = intern(atbuf); 9605ecc953bSthorpej 9615ecc953bSthorpej /* Figure out parent's devbase, to satisfy case (3). */ 9625ecc953bSthorpej ab = ht_lookup(devbasetab, cp); 9635ecc953bSthorpej 9645ecc953bSthorpej /* Find out if it's an attribute. */ 9655ecc953bSthorpej attr = ht_lookup(attrtab, cp); 9665ecc953bSthorpej 9675ecc953bSthorpej /* Make sure we're _really_ attached to the attr. Case (1). */ 9685ecc953bSthorpej if (attr != NULL && onlist(attr->a_devs, ib)) 9695ecc953bSthorpej goto findattachment; 9705ecc953bSthorpej 9715ecc953bSthorpej /* 9725ecc953bSthorpej * Else a real device, and not just an attribute. Case (2). 9735ecc953bSthorpej * 9745ecc953bSthorpej * Have to work a bit harder to see whether we have 9755ecc953bSthorpej * something like "tg0 at esp0" (where esp is merely 9765ecc953bSthorpej * not an attribute) or "tg0 at nonesuch0" (where 9775ecc953bSthorpej * nonesuch is not even a device). 9785ecc953bSthorpej */ 9795ecc953bSthorpej if (ab == NULL) { 9805ecc953bSthorpej error("%s at %s: `%s' unknown", 9815ecc953bSthorpej name, at, atbuf); 9825ecc953bSthorpej goto bad; 9835ecc953bSthorpej } 9845ecc953bSthorpej 9855ecc953bSthorpej /* 9865ecc953bSthorpej * See if the named parent carries an attribute 9875ecc953bSthorpej * that allows it to supervise device ib. 9885ecc953bSthorpej */ 9895ecc953bSthorpej for (nv = ab->d_attrs; nv != NULL; nv = nv->nv_next) { 9905ecc953bSthorpej attr = nv->nv_ptr; 9915ecc953bSthorpej if (onlist(attr->a_devs, ib)) 9925ecc953bSthorpej goto findattachment; 9935ecc953bSthorpej } 9945ecc953bSthorpej error("`%s' cannot attach to `%s'", ib->d_name, atbuf); 9955ecc953bSthorpej goto bad; 9965ecc953bSthorpej 9975ecc953bSthorpej findattachment: 9985ecc953bSthorpej /* 9995ecc953bSthorpej * Find the parent spec. If a matching one has not yet been 10005ecc953bSthorpej * created, create one. 10015ecc953bSthorpej */ 10025ecc953bSthorpej p = getpspec(attr, ab, atunit); 10035ecc953bSthorpej p->p_devs = newnv(NULL, NULL, i, 0, p->p_devs); 10045ecc953bSthorpej 10055ecc953bSthorpej /* find out which attachment it uses */ 10065ecc953bSthorpej hit = 0; 10075ecc953bSthorpej for (iba = ib->d_ahead; iba != NULL; iba = iba->d_bsame) 10085ecc953bSthorpej if (onlist(iba->d_atlist, attr)) { 10095ecc953bSthorpej hit = 1; 10105ecc953bSthorpej break; 10115ecc953bSthorpej } 10125ecc953bSthorpej if (!hit) 10135ecc953bSthorpej panic("adddev: can't figure out attachment"); 10145ecc953bSthorpej } 10155ecc953bSthorpej if ((i->i_locs = fixloc(name, attr, loclist)) == NULL) 10165ecc953bSthorpej goto bad; 10175ecc953bSthorpej i->i_at = at; 10185ecc953bSthorpej i->i_pspec = p; 10195ecc953bSthorpej i->i_atdeva = iba; 10205ecc953bSthorpej i->i_cfflags = flags; 10215ecc953bSthorpej 10225ecc953bSthorpej *iba->d_ipp = i; 10235ecc953bSthorpej iba->d_ipp = &i->i_asame; 10245ecc953bSthorpej 10255ecc953bSthorpej /* all done, fall into ... */ 10265ecc953bSthorpej bad: 10275ecc953bSthorpej nvfreel(loclist); 10285ecc953bSthorpej return; 10295ecc953bSthorpej } 10305ecc953bSthorpej 10315ecc953bSthorpej void 10327b7c582aScube deldevi(const char *name, const char *at) 10335ecc953bSthorpej { 10347b7c582aScube struct devi *firsti, *i; 10355ecc953bSthorpej struct devbase *d; 10365ecc953bSthorpej int unit; 10375ecc953bSthorpej char base[NAMESIZE]; 10385ecc953bSthorpej 10395ecc953bSthorpej if (split(name, strlen(name), base, sizeof base, &unit)) { 10405ecc953bSthorpej error("invalid device name `%s'", name); 10415ecc953bSthorpej return; 10425ecc953bSthorpej } 10435ecc953bSthorpej d = ht_lookup(devbasetab, intern(base)); 10445ecc953bSthorpej if (d == NULL) { 10455ecc953bSthorpej error("%s: unknown device `%s'", name, base); 10465ecc953bSthorpej return; 10475ecc953bSthorpej } 10485ecc953bSthorpej if (d->d_ispseudo) { 10495ecc953bSthorpej error("%s: %s is a pseudo-device", name, base); 10505ecc953bSthorpej return; 10515ecc953bSthorpej } 10525ecc953bSthorpej if ((firsti = ht_lookup(devitab, name)) == NULL) { 10535ecc953bSthorpej error("`%s' not defined", name); 10545ecc953bSthorpej return; 10555ecc953bSthorpej } 10567b7c582aScube if (at == NULL && firsti->i_at == NULL) { 1057e499d8b5Scube /* 'at root' */ 10587b7c582aScube remove_devi(firsti); 10597b7c582aScube return; 10607b7c582aScube } else if (at != NULL) 10617b7c582aScube for (i = firsti; i != NULL; i = i->i_alias) 10625ecc953bSthorpej if (strcmp(at, i->i_at) == 0) { 10637b7c582aScube remove_devi(i); 10645ecc953bSthorpej return; 10655ecc953bSthorpej } 10667b7c582aScube error("`%s' at `%s' not found", name, at ? at : "root"); 1067e499d8b5Scube } 10685ecc953bSthorpej 10697b7c582aScube static void 10707b7c582aScube remove_devi(struct devi *i) 10717b7c582aScube { 10727b7c582aScube struct devbase *d = i->i_base; 10737b7c582aScube struct devi *f, *j, **ppi; 10747b7c582aScube struct deva *iba; 10757b7c582aScube 10767b7c582aScube f = ht_lookup(devitab, i->i_name); 10777b7c582aScube 1078e499d8b5Scube /* 1079e499d8b5Scube * We have the device instance, i. 1080e499d8b5Scube * We have to: 1081e499d8b5Scube * - delete the alias 1082e499d8b5Scube * 1083e499d8b5Scube * If the devi was an alias of an already listed devi, all is 1084e499d8b5Scube * good we don't have to do more. 1085e499d8b5Scube * If it was the first alias, we have to replace i's entry in 1086e499d8b5Scube * d's list by its first alias. 1087e499d8b5Scube * If it was the only entry, we must remove i's entry from d's 1088e499d8b5Scube * list. 1089e499d8b5Scube */ 10907b7c582aScube if (i != f) { 10917b7c582aScube for (j = f; j->i_alias != i; j = j->i_alias); 10927b7c582aScube j->i_alias = i->i_alias; 10933b405775Scube } else { 10943b405775Scube if (i->i_alias == NULL) { 1095e499d8b5Scube /* No alias, must unlink the entry from devitab */ 10967b7c582aScube ht_remove(devitab, i->i_name); 10977b7c582aScube j = i->i_bsame; 10983b405775Scube } else { 1099e499d8b5Scube /* Or have the first alias replace i in d's list */ 1100e499d8b5Scube i->i_alias->i_bsame = i->i_bsame; 11017b7c582aScube j = i->i_alias; 11027b7c582aScube if (i == f) 11037b7c582aScube ht_replace(devitab, i->i_name, i->i_alias); 11043b405775Scube } 11053b405775Scube 1106e499d8b5Scube /* 1107e499d8b5Scube * - remove/replace the instance from the devbase's list 1108e499d8b5Scube * 1109e499d8b5Scube * A double-linked list would make this much easier. Oh, well, 1110e499d8b5Scube * what is done is done. 1111e499d8b5Scube */ 1112e499d8b5Scube for (ppi = &d->d_ihead; 1113e499d8b5Scube *ppi != NULL && *ppi != i && (*ppi)->i_bsame != i; 1114e499d8b5Scube ppi = &(*ppi)->i_bsame); 1115e499d8b5Scube if (*ppi == NULL) 1116c3414672Scube panic("deldev: dev (%s) doesn't list the devi" 1117c3414672Scube " (%s at %s)", d->d_name, i->i_name, i->i_at); 11187b7c582aScube f = *ppi; 11197b7c582aScube if (f == i) 1120c3414672Scube /* That implies d->d_ihead == i */ 11217b7c582aScube *ppi = j; 1122e499d8b5Scube else 11237b7c582aScube (*ppi)->i_bsame = j; 1124e499d8b5Scube if (d->d_ipp == &i->i_bsame) { 11253b405775Scube if (i->i_alias == NULL) { 11267b7c582aScube if (f == i) 1127e499d8b5Scube d->d_ipp = &d->d_ihead; 1128e499d8b5Scube else 11297b7c582aScube d->d_ipp = &f->i_bsame; 11303b405775Scube } else 11313b405775Scube d->d_ipp = &i->i_alias->i_bsame; 1132e499d8b5Scube } 1133e499d8b5Scube } 1134e499d8b5Scube /* 1135e499d8b5Scube * - delete the attachment instance 1136e499d8b5Scube */ 1137e499d8b5Scube iba = i->i_atdeva; 1138e499d8b5Scube for (ppi = &iba->d_ihead; 1139e499d8b5Scube *ppi != NULL && *ppi != i && (*ppi)->i_asame != i; 1140e499d8b5Scube ppi = &(*ppi)->i_asame); 1141e499d8b5Scube if (*ppi == NULL) 1142e499d8b5Scube panic("deldev: deva (%s) doesn't list the devi (%s)", 1143e499d8b5Scube iba->d_name, i->i_name); 11447b7c582aScube f = *ppi; 11457b7c582aScube if (f == i) 1146c3414672Scube /* That implies iba->d_ihead == i */ 1147e499d8b5Scube *ppi = i->i_asame; 1148e499d8b5Scube else 1149e499d8b5Scube (*ppi)->i_asame = i->i_asame; 1150e499d8b5Scube if (iba->d_ipp == &i->i_asame) { 11517b7c582aScube if (f == i) 1152e499d8b5Scube iba->d_ipp = &iba->d_ihead; 1153e499d8b5Scube else 11547b7c582aScube iba->d_ipp = &f->i_asame; 1155e499d8b5Scube } 1156e499d8b5Scube /* 1157e499d8b5Scube * - delete the pspec 1158e499d8b5Scube */ 1159e499d8b5Scube if (i->i_pspec) { 1160e499d8b5Scube struct pspec *p = i->i_pspec; 1161e499d8b5Scube struct nvlist *nv, *onv; 1162e499d8b5Scube 1163e499d8b5Scube /* Double-linked nvlist anyone? */ 1164e499d8b5Scube for (nv = p->p_devs; nv->nv_ptr != NULL; nv = nv->nv_next) { 1165e499d8b5Scube if (nv->nv_next && nv->nv_next->nv_ptr == i) { 1166e499d8b5Scube onv = nv->nv_next; 1167e499d8b5Scube nv->nv_next = onv->nv_next; 1168e499d8b5Scube nvfree(onv); 1169e499d8b5Scube break; 1170878c29f5Scube } if (nv->nv_ptr == i) { 1171e499d8b5Scube /* nv is p->p_devs in that case */ 1172e499d8b5Scube p->p_devs = nv->nv_next; 1173e499d8b5Scube nvfree(nv); 1174e499d8b5Scube break; 1175e499d8b5Scube } 1176e499d8b5Scube } 1177e499d8b5Scube if (p->p_devs == NULL) 1178e499d8b5Scube TAILQ_REMOVE(&allpspecs, p, p_list); 1179e499d8b5Scube } 1180e499d8b5Scube /* 1181e499d8b5Scube * - delete the alldevi entry 1182e499d8b5Scube */ 1183e499d8b5Scube TAILQ_REMOVE(&alldevi, i, i_next); 1184e499d8b5Scube ndevi--; 1185*7aa6070dScube /* 1186*7aa6070dScube * Put it in deaddevitab 1187*7aa6070dScube */ 1188*7aa6070dScube i->i_alias = NULL; 1189*7aa6070dScube f = ht_lookup(deaddevitab, i->i_name); 1190*7aa6070dScube if (f == NULL) { 1191*7aa6070dScube if (ht_insert(deaddevitab, i->i_name, i)) 1192*7aa6070dScube panic("remove_devi(%s) - can't add to deaddevitab", 1193*7aa6070dScube i->i_name); 1194*7aa6070dScube } else { 1195*7aa6070dScube for (j = f; j->i_alias != NULL; j = j->i_alias); 1196*7aa6070dScube j->i_alias = i; 1197*7aa6070dScube } 1198e499d8b5Scube /* 1199e499d8b5Scube * - reconstuct d->d_umax 1200e499d8b5Scube */ 1201e499d8b5Scube d->d_umax = 0; 1202e499d8b5Scube for (i = d->d_ihead; i != NULL; i = i->i_bsame) 1203e499d8b5Scube if (i->i_unit >= d->d_umax) 1204e499d8b5Scube d->d_umax = i->i_unit + 1; 12055ecc953bSthorpej } 12065ecc953bSthorpej 12075ecc953bSthorpej void 12087b7c582aScube deldeva(const char *at) 12097b7c582aScube { 12107b7c582aScube int unit; 12117b7c582aScube const char *cp; 12127b7c582aScube struct devbase *d, *ad; 12137b7c582aScube struct devi *i, *j; 12147b7c582aScube struct attr *a; 12157b7c582aScube struct pspec *p; 12167b7c582aScube struct nvlist *nv, *stack = NULL; 12177b7c582aScube 12187b7c582aScube if (at == NULL) { 12197b7c582aScube TAILQ_FOREACH(i, &alldevi, i_next) 12207b7c582aScube if (i->i_at == NULL) 12217b7c582aScube stack = newnv(NULL, NULL, i, 0, stack); 12227b7c582aScube } else { 12237b7c582aScube int l; 12247b7c582aScube 12257b7c582aScube l = strlen(at) - 1; 12267b7c582aScube if (at[l] == '?' || isdigit((unsigned char)at[l])) { 12277b7c582aScube char base[NAMESIZE]; 12287b7c582aScube 12297b7c582aScube if (split(at, l+1, base, sizeof base, &unit)) { 12307b7c582aScube error("invalid attachment name `%s'", at); 12317b7c582aScube return; 12327b7c582aScube } 12337b7c582aScube cp = intern(base); 12347b7c582aScube } else { 12357b7c582aScube cp = intern(at); 12367b7c582aScube unit = STAR; 12377b7c582aScube } 12387b7c582aScube 12397b7c582aScube ad = ht_lookup(devbasetab, cp); 12407b7c582aScube a = ht_lookup(attrtab, cp); 12417b7c582aScube if (a == NULL) { 12427b7c582aScube error("unknown attachment attribute or device `%s'", 12437b7c582aScube cp); 12447b7c582aScube return; 12457b7c582aScube } 12467b7c582aScube if (!a->a_iattr) { 12477b7c582aScube error("plain attribute `%s' cannot have children", 12487b7c582aScube a->a_name); 12497b7c582aScube return; 12507b7c582aScube } 12517b7c582aScube 12527b7c582aScube /* 12537b7c582aScube * remove_devi() makes changes to the devbase's list and the 12547b7c582aScube * alias list, * so the actual deletion of the instances must 12557b7c582aScube * be delayed. 12567b7c582aScube */ 12577b7c582aScube for (nv = a->a_devs; nv != NULL; nv = nv->nv_next) { 12587b7c582aScube d = nv->nv_ptr; 12597b7c582aScube for (i = d->d_ihead; i != NULL; i = i->i_bsame) 12607b7c582aScube for (j = i; j != NULL; j = j->i_alias) { 12617b7c582aScube /* Ignore devices at root */ 12627b7c582aScube if (j->i_at == NULL) 12637b7c582aScube continue; 12647b7c582aScube p = j->i_pspec; 12657b7c582aScube /* 12667b7c582aScube * There are three cases: 12677b7c582aScube * 12687b7c582aScube * 1. unit is not STAR. Consider 'at' 12697b7c582aScube * to be explicit, even if it 12707b7c582aScube * references an interface 12717b7c582aScube * attribute. 12727b7c582aScube * 12737b7c582aScube * 2. unit is STAR and 'at' references 12747b7c582aScube * a real device. Look for pspec 12757b7c582aScube * that have a matching p_atdev 12767b7c582aScube * field. 12777b7c582aScube * 12787b7c582aScube * 3. unit is STAR and 'at' references 12797b7c582aScube * an interface attribute. Look 12807b7c582aScube * for pspec that have a matching 12817b7c582aScube * p_iattr field. 12827b7c582aScube */ 12837b7c582aScube if ((unit != STAR && /* Case */ 12847b7c582aScube !strcmp(j->i_at, at)) || /* 1 */ 12857b7c582aScube (unit == STAR && 12867b7c582aScube ((ad != NULL && /* Case */ 12877b7c582aScube p->p_atdev == ad) || /* 2 */ 12887b7c582aScube (ad == NULL && /* Case */ 12897b7c582aScube p->p_iattr == a)))) /* 3 */ 12907b7c582aScube stack = newnv(NULL, NULL, j, 0, 12917b7c582aScube stack); 12927b7c582aScube } 12937b7c582aScube } 12947b7c582aScube } 12957b7c582aScube 12967b7c582aScube for (nv = stack; nv != NULL; nv = nv->nv_next) 12977b7c582aScube remove_devi(nv->nv_ptr); 12987b7c582aScube } 12997b7c582aScube 13007b7c582aScube void 13017b7c582aScube deldev(const char *name) 13027b7c582aScube { 13037b7c582aScube int l; 13047b7c582aScube struct devi *firsti, *i; 13057b7c582aScube struct nvlist *nv, *stack = NULL; 13067b7c582aScube 13077b7c582aScube l = strlen(name) - 1; 13087b7c582aScube if (name[l] == '*' || isdigit((unsigned char)name[l])) { 13097b7c582aScube /* `no mydev0' or `no mydev*' */ 13107b7c582aScube firsti = ht_lookup(devitab, name); 13117b7c582aScube if (firsti == NULL) { 13127b7c582aScube error("unknown instance %s", name); 13137b7c582aScube return; 13147b7c582aScube } 13157b7c582aScube for (i = firsti; i != NULL; i = i->i_alias) 13167b7c582aScube stack = newnv(NULL, NULL, i, 0, stack); 13177b7c582aScube } else { 13187b7c582aScube struct devbase *d = ht_lookup(devbasetab, name); 13197b7c582aScube 13207b7c582aScube if (d == NULL) { 13217b7c582aScube error("unknown device %s", name); 13227b7c582aScube return; 13237b7c582aScube } 13247b7c582aScube 13257b7c582aScube for (firsti = d->d_ihead; firsti != NULL; 13267b7c582aScube firsti = firsti->i_bsame) 13277b7c582aScube for (i = firsti; i != NULL; i = i->i_alias) 13287b7c582aScube stack = newnv(NULL, NULL, i, 0, stack); 13297b7c582aScube } 13307b7c582aScube 13317b7c582aScube for (nv = stack; nv != NULL; nv = nv->nv_next) 13327b7c582aScube remove_devi(nv->nv_ptr); 13337b7c582aScube } 13347b7c582aScube 13357b7c582aScube void 13365ecc953bSthorpej addpseudo(const char *name, int number) 13375ecc953bSthorpej { 13385ecc953bSthorpej struct devbase *d; 13395ecc953bSthorpej struct devi *i; 13405ecc953bSthorpej 13415ecc953bSthorpej d = ht_lookup(devbasetab, name); 13425ecc953bSthorpej if (d == NULL) { 13435ecc953bSthorpej error("undefined pseudo-device %s", name); 13445ecc953bSthorpej return; 13455ecc953bSthorpej } 13465ecc953bSthorpej if (!d->d_ispseudo) { 13475ecc953bSthorpej error("%s is a real device, not a pseudo-device", name); 13485ecc953bSthorpej return; 13495ecc953bSthorpej } 13505ecc953bSthorpej if (ht_lookup(devitab, name) != NULL) { 13515ecc953bSthorpej error("`%s' already defined", name); 13525ecc953bSthorpej return; 13535ecc953bSthorpej } 13545ecc953bSthorpej i = newdevi(name, number - 1, d); /* foo 16 => "foo0..foo15" */ 13555ecc953bSthorpej if (ht_insert(devitab, name, i)) 13565ecc953bSthorpej panic("addpseudo(%s)", name); 13577b7c582aScube /* Useful to retrieve the instance from the devbase */ 13587b7c582aScube d->d_ihead = i; 1359*7aa6070dScube i->i_active = DEVI_ACTIVE; 13605ecc953bSthorpej TAILQ_INSERT_TAIL(&allpseudo, i, i_next); 13615ecc953bSthorpej } 13625ecc953bSthorpej 13635ecc953bSthorpej void 13645ecc953bSthorpej delpseudo(const char *name) 13655ecc953bSthorpej { 13665ecc953bSthorpej struct devbase *d; 13675ecc953bSthorpej struct devi *i; 13685ecc953bSthorpej 13695ecc953bSthorpej d = ht_lookup(devbasetab, name); 13705ecc953bSthorpej if (d == NULL) { 13715ecc953bSthorpej error("undefined pseudo-device %s", name); 13725ecc953bSthorpej return; 13735ecc953bSthorpej } 13745ecc953bSthorpej if (!d->d_ispseudo) { 13755ecc953bSthorpej error("%s is a real device, not a pseudo-device", name); 13765ecc953bSthorpej return; 13775ecc953bSthorpej } 13785ecc953bSthorpej if ((i = ht_lookup(devitab, name)) == NULL) { 13795ecc953bSthorpej error("`%s' not defined", name); 13805ecc953bSthorpej return; 13815ecc953bSthorpej } 13825ecc953bSthorpej d->d_umax = 0; /* clear neads-count entries */ 1383*7aa6070dScube d->d_ihead = NULL; /* make sure it won't be considered active */ 13845ecc953bSthorpej TAILQ_REMOVE(&allpseudo, i, i_next); 13855ecc953bSthorpej if (ht_remove(devitab, name)) 13865ecc953bSthorpej panic("delpseudo(%s) - can't remove from devitab", name); 1387*7aa6070dScube if (ht_insert(deaddevitab, name, i)) 1388*7aa6070dScube panic("delpseudo(%s) - can't add to deaddevitab", name); 13895ecc953bSthorpej } 13905ecc953bSthorpej 13915ecc953bSthorpej void 13925ecc953bSthorpej adddevm(const char *name, int cmajor, int bmajor, struct nvlist *options) 13935ecc953bSthorpej { 13945ecc953bSthorpej struct devm *dm; 13955ecc953bSthorpej 13965ecc953bSthorpej if (cmajor < -1 || cmajor >= 4096) { 13975ecc953bSthorpej error("character major %d is invalid", cmajor); 13985ecc953bSthorpej nvfreel(options); 13995ecc953bSthorpej return; 14005ecc953bSthorpej } 14015ecc953bSthorpej 14025ecc953bSthorpej if (bmajor < -1 || bmajor >= 4096) { 14035ecc953bSthorpej error("block major %d is invalid", bmajor); 14045ecc953bSthorpej nvfreel(options); 14055ecc953bSthorpej return; 14065ecc953bSthorpej } 14075ecc953bSthorpej if (cmajor == -1 && bmajor == -1) { 14085ecc953bSthorpej error("both character/block majors are not specified"); 14095ecc953bSthorpej nvfreel(options); 14105ecc953bSthorpej return; 14115ecc953bSthorpej } 14125ecc953bSthorpej 14135ecc953bSthorpej dm = ecalloc(1, sizeof(*dm)); 14145ecc953bSthorpej dm->dm_srcfile = yyfile; 14155ecc953bSthorpej dm->dm_srcline = currentline(); 14165ecc953bSthorpej dm->dm_name = name; 14175ecc953bSthorpej dm->dm_cmajor = cmajor; 14185ecc953bSthorpej dm->dm_bmajor = bmajor; 14195ecc953bSthorpej dm->dm_opts = options; 14205ecc953bSthorpej 14215ecc953bSthorpej TAILQ_INSERT_TAIL(&alldevms, dm, dm_next); 14225ecc953bSthorpej 14235ecc953bSthorpej maxcdevm = MAX(maxcdevm, dm->dm_cmajor); 14245ecc953bSthorpej maxbdevm = MAX(maxbdevm, dm->dm_bmajor); 14255ecc953bSthorpej } 14265ecc953bSthorpej 1427*7aa6070dScube int 14285ecc953bSthorpej fixdevis(void) 14295ecc953bSthorpej { 14305ecc953bSthorpej struct devi *i; 1431*7aa6070dScube int error = 0; 14325ecc953bSthorpej 14335ecc953bSthorpej TAILQ_FOREACH(i, &alldevi, i_next) 1434*7aa6070dScube if (i->i_active == DEVI_ACTIVE) 14355ecc953bSthorpej selectbase(i->i_base, i->i_atdeva); 1436*7aa6070dScube else if (i->i_active == DEVI_ORPHAN) { 1437c130d400Scube /* 1438c130d400Scube * At this point, we can't have instances for which 1439c130d400Scube * i_at or i_pspec are NULL. 1440c130d400Scube */ 1441*7aa6070dScube ++error; 1442c130d400Scube (void)fprintf(stderr, 1443c130d400Scube "%s:%d: `%s at %s' is orphaned" 1444c130d400Scube " (%s `%s' found)\n", conffile, i->i_lineno, 1445c130d400Scube i->i_name, i->i_at, i->i_pspec->p_atunit == WILD ? 1446c130d400Scube "nothing matching" : "no", i->i_at); 1447*7aa6070dScube } else if (vflag && i->i_active == DEVI_IGNORED) 1448*7aa6070dScube (void)fprintf(stderr, "%s:%d: ignoring explicitely" 1449*7aa6070dScube " orphaned instance `%s at %s'\n", conffile, 1450*7aa6070dScube i->i_lineno, i->i_name, i->i_at); 1451*7aa6070dScube 1452*7aa6070dScube if (error) 1453*7aa6070dScube return error; 14545ecc953bSthorpej 14555ecc953bSthorpej TAILQ_FOREACH(i, &allpseudo, i_next) 1456*7aa6070dScube if (i->i_active == DEVI_ACTIVE) 14575ecc953bSthorpej selectbase(i->i_base, NULL); 1458*7aa6070dScube return 0; 14595ecc953bSthorpej } 14605ecc953bSthorpej 14615ecc953bSthorpej /* 14625ecc953bSthorpej * Look up a parent spec, creating a new one if it does not exist. 14635ecc953bSthorpej */ 14645ecc953bSthorpej static struct pspec * 14655ecc953bSthorpej getpspec(struct attr *attr, struct devbase *ab, int atunit) 14665ecc953bSthorpej { 14675ecc953bSthorpej struct pspec *p; 14685ecc953bSthorpej 14695ecc953bSthorpej TAILQ_FOREACH(p, &allpspecs, p_list) { 14705ecc953bSthorpej if (p->p_iattr == attr && 14715ecc953bSthorpej p->p_atdev == ab && 14725ecc953bSthorpej p->p_atunit == atunit) 14735ecc953bSthorpej return (p); 14745ecc953bSthorpej } 14755ecc953bSthorpej 14765ecc953bSthorpej p = ecalloc(1, sizeof(*p)); 14775ecc953bSthorpej 14785ecc953bSthorpej p->p_iattr = attr; 14795ecc953bSthorpej p->p_atdev = ab; 14805ecc953bSthorpej p->p_atunit = atunit; 14815ecc953bSthorpej p->p_inst = npspecs++; 1482c130d400Scube p->p_active = 0; 14835ecc953bSthorpej 14845ecc953bSthorpej TAILQ_INSERT_TAIL(&allpspecs, p, p_list); 14855ecc953bSthorpej 14865ecc953bSthorpej return (p); 14875ecc953bSthorpej } 14885ecc953bSthorpej 14895ecc953bSthorpej /* 14905ecc953bSthorpej * Define a new instance of a specific device. 14915ecc953bSthorpej */ 14925ecc953bSthorpej static struct devi * 14935ecc953bSthorpej getdevi(const char *name) 14945ecc953bSthorpej { 14955ecc953bSthorpej struct devi *i, *firsti; 14965ecc953bSthorpej struct devbase *d; 14975ecc953bSthorpej int unit; 14985ecc953bSthorpej char base[NAMESIZE]; 14995ecc953bSthorpej 15005ecc953bSthorpej if (split(name, strlen(name), base, sizeof base, &unit)) { 15015ecc953bSthorpej error("invalid device name `%s'", name); 15025ecc953bSthorpej return (NULL); 15035ecc953bSthorpej } 15045ecc953bSthorpej d = ht_lookup(devbasetab, intern(base)); 15055ecc953bSthorpej if (d == NULL) { 15065ecc953bSthorpej error("%s: unknown device `%s'", name, base); 15075ecc953bSthorpej return (NULL); 15085ecc953bSthorpej } 15095ecc953bSthorpej if (d->d_ispseudo) { 15105ecc953bSthorpej error("%s: %s is a pseudo-device", name, base); 15115ecc953bSthorpej return (NULL); 15125ecc953bSthorpej } 15135ecc953bSthorpej firsti = ht_lookup(devitab, name); 15145ecc953bSthorpej i = newdevi(name, unit, d); 15155ecc953bSthorpej if (firsti == NULL) { 15165ecc953bSthorpej if (ht_insert(devitab, name, i)) 15175ecc953bSthorpej panic("getdevi(%s)", name); 15185ecc953bSthorpej *d->d_ipp = i; 15195ecc953bSthorpej d->d_ipp = &i->i_bsame; 15205ecc953bSthorpej } else { 15215ecc953bSthorpej while (firsti->i_alias) 15225ecc953bSthorpej firsti = firsti->i_alias; 15235ecc953bSthorpej firsti->i_alias = i; 15245ecc953bSthorpej } 15255ecc953bSthorpej TAILQ_INSERT_TAIL(&alldevi, i, i_next); 15265ecc953bSthorpej ndevi++; 15275ecc953bSthorpej return (i); 15285ecc953bSthorpej } 15295ecc953bSthorpej 15305ecc953bSthorpej static const char * 15315ecc953bSthorpej concat(const char *name, int c) 15325ecc953bSthorpej { 15335ecc953bSthorpej int len; 15345ecc953bSthorpej char buf[NAMESIZE]; 15355ecc953bSthorpej 15365ecc953bSthorpej len = strlen(name); 15375ecc953bSthorpej if (len + 2 > sizeof(buf)) { 15385ecc953bSthorpej error("device name `%s%c' too long", name, c); 15395ecc953bSthorpej len = sizeof(buf) - 2; 15405ecc953bSthorpej } 15415ecc953bSthorpej memmove(buf, name, len); 15425ecc953bSthorpej buf[len] = c; 15435ecc953bSthorpej buf[len + 1] = 0; 15445ecc953bSthorpej return (intern(buf)); 15455ecc953bSthorpej } 15465ecc953bSthorpej 15475ecc953bSthorpej const char * 15485ecc953bSthorpej starref(const char *name) 15495ecc953bSthorpej { 15505ecc953bSthorpej 15515ecc953bSthorpej return (concat(name, '*')); 15525ecc953bSthorpej } 15535ecc953bSthorpej 15545ecc953bSthorpej const char * 15555ecc953bSthorpej wildref(const char *name) 15565ecc953bSthorpej { 15575ecc953bSthorpej 15585ecc953bSthorpej return (concat(name, '?')); 15595ecc953bSthorpej } 15605ecc953bSthorpej 15615ecc953bSthorpej /* 15625ecc953bSthorpej * Split a name like "foo0" into base name (foo) and unit number (0). 15635ecc953bSthorpej * Return 0 on success. To make this useful for names like "foo0a", 15645ecc953bSthorpej * the length of the "foo0" part is one of the arguments. 15655ecc953bSthorpej */ 15665ecc953bSthorpej static int 15675ecc953bSthorpej split(const char *name, size_t nlen, char *base, size_t bsize, int *aunit) 15685ecc953bSthorpej { 15695ecc953bSthorpej const char *cp; 15705ecc953bSthorpej int c, l; 15715ecc953bSthorpej 15725ecc953bSthorpej l = nlen; 15735ecc953bSthorpej if (l < 2 || l >= bsize || isdigit((unsigned char)*name)) 15745ecc953bSthorpej return (1); 15755ecc953bSthorpej c = (u_char)name[--l]; 15765ecc953bSthorpej if (!isdigit(c)) { 15775ecc953bSthorpej if (c == '*') 15785ecc953bSthorpej *aunit = STAR; 15795ecc953bSthorpej else if (c == '?') 15805ecc953bSthorpej *aunit = WILD; 15815ecc953bSthorpej else 15825ecc953bSthorpej return (1); 15835ecc953bSthorpej } else { 15845ecc953bSthorpej cp = &name[l]; 15855ecc953bSthorpej while (isdigit((unsigned char)cp[-1])) 15865ecc953bSthorpej l--, cp--; 15875ecc953bSthorpej *aunit = atoi(cp); 15885ecc953bSthorpej } 15895ecc953bSthorpej memmove(base, name, l); 15905ecc953bSthorpej base[l] = 0; 15915ecc953bSthorpej return (0); 15925ecc953bSthorpej } 15935ecc953bSthorpej 15945ecc953bSthorpej void 15955ecc953bSthorpej selectattr(struct attr *a) 15965ecc953bSthorpej { 15975ecc953bSthorpej 15985ecc953bSthorpej (void)ht_insert(selecttab, a->a_name, (char *)a->a_name); 15995ecc953bSthorpej } 16005ecc953bSthorpej 16015ecc953bSthorpej /* 16025ecc953bSthorpej * We have an instance of the base foo, so select it and all its 16035ecc953bSthorpej * attributes for "optional foo". 16045ecc953bSthorpej */ 16055ecc953bSthorpej static void 16065ecc953bSthorpej selectbase(struct devbase *d, struct deva *da) 16075ecc953bSthorpej { 16085ecc953bSthorpej struct attr *a; 16095ecc953bSthorpej struct nvlist *nv; 16105ecc953bSthorpej 16115ecc953bSthorpej (void)ht_insert(selecttab, d->d_name, (char *)d->d_name); 16125ecc953bSthorpej for (nv = d->d_attrs; nv != NULL; nv = nv->nv_next) { 16135ecc953bSthorpej a = nv->nv_ptr; 16145ecc953bSthorpej expandattr(a, selectattr); 16155ecc953bSthorpej } 16165ecc953bSthorpej if (da != NULL) { 16175ecc953bSthorpej (void)ht_insert(selecttab, da->d_name, (char *)da->d_name); 16185ecc953bSthorpej for (nv = da->d_attrs; nv != NULL; nv = nv->nv_next) { 16195ecc953bSthorpej a = nv->nv_ptr; 16205ecc953bSthorpej expandattr(a, selectattr); 16215ecc953bSthorpej } 16225ecc953bSthorpej } 16235ecc953bSthorpej } 16245ecc953bSthorpej 16255ecc953bSthorpej /* 16265ecc953bSthorpej * Is the given pointer on the given list of pointers? 16275ecc953bSthorpej */ 16285ecc953bSthorpej static int 16295ecc953bSthorpej onlist(struct nvlist *nv, void *ptr) 16305ecc953bSthorpej { 16315ecc953bSthorpej for (; nv != NULL; nv = nv->nv_next) 16325ecc953bSthorpej if (nv->nv_ptr == ptr) 16335ecc953bSthorpej return (1); 16345ecc953bSthorpej return (0); 16355ecc953bSthorpej } 16365ecc953bSthorpej 16375ecc953bSthorpej static char * 16385ecc953bSthorpej extend(char *p, const char *name) 16395ecc953bSthorpej { 16405ecc953bSthorpej int l; 16415ecc953bSthorpej 16425ecc953bSthorpej l = strlen(name); 16435ecc953bSthorpej memmove(p, name, l); 16445ecc953bSthorpej p += l; 16455ecc953bSthorpej *p++ = ','; 16465ecc953bSthorpej *p++ = ' '; 16475ecc953bSthorpej return (p); 16485ecc953bSthorpej } 16495ecc953bSthorpej 16505ecc953bSthorpej /* 16515ecc953bSthorpej * Check that we got all required locators, and default any that are 16525ecc953bSthorpej * given as "?" and have defaults. Return 0 on success. 16535ecc953bSthorpej */ 16545ecc953bSthorpej static const char ** 16555ecc953bSthorpej fixloc(const char *name, struct attr *attr, struct nvlist *got) 16565ecc953bSthorpej { 16575ecc953bSthorpej struct nvlist *m, *n; 16585ecc953bSthorpej int ord; 16595ecc953bSthorpej const char **lp; 16605ecc953bSthorpej int nmissing, nextra, nnodefault; 16615ecc953bSthorpej char *mp, *ep, *ndp; 16625ecc953bSthorpej char missing[1000], extra[1000], nodefault[1000]; 16635ecc953bSthorpej static const char *nullvec[1]; 16645ecc953bSthorpej 16655ecc953bSthorpej /* 16665ecc953bSthorpej * Look for all required locators, and number the given ones 16675ecc953bSthorpej * according to the required order. While we are numbering, 16685ecc953bSthorpej * set default values for defaulted locators. 16695ecc953bSthorpej */ 16705ecc953bSthorpej if (attr->a_loclen == 0) /* e.g., "at root" */ 16715ecc953bSthorpej lp = nullvec; 16725ecc953bSthorpej else 16735ecc953bSthorpej lp = emalloc((attr->a_loclen + 1) * sizeof(const char *)); 16745ecc953bSthorpej for (n = got; n != NULL; n = n->nv_next) 16755ecc953bSthorpej n->nv_int = -1; 16765ecc953bSthorpej nmissing = 0; 16775ecc953bSthorpej mp = missing; 16785ecc953bSthorpej /* yes, this is O(mn), but m and n should be small */ 16795ecc953bSthorpej for (ord = 0, m = attr->a_locs; m != NULL; m = m->nv_next, ord++) { 16805ecc953bSthorpej for (n = got; n != NULL; n = n->nv_next) { 16815ecc953bSthorpej if (n->nv_name == m->nv_name) { 16825ecc953bSthorpej n->nv_int = ord; 16835ecc953bSthorpej break; 16845ecc953bSthorpej } 16855ecc953bSthorpej } 16865ecc953bSthorpej if (n == NULL && m->nv_int == 0) { 16875ecc953bSthorpej nmissing++; 16885ecc953bSthorpej mp = extend(mp, m->nv_name); 16895ecc953bSthorpej } 16905ecc953bSthorpej lp[ord] = m->nv_str; 16915ecc953bSthorpej } 16925ecc953bSthorpej if (ord != attr->a_loclen) 16935ecc953bSthorpej panic("fixloc"); 16945ecc953bSthorpej lp[ord] = NULL; 16955ecc953bSthorpej nextra = 0; 16965ecc953bSthorpej ep = extra; 16975ecc953bSthorpej nnodefault = 0; 16985ecc953bSthorpej ndp = nodefault; 16995ecc953bSthorpej for (n = got; n != NULL; n = n->nv_next) { 17005ecc953bSthorpej if (n->nv_int >= 0) { 17015ecc953bSthorpej if (n->nv_str != NULL) 17025ecc953bSthorpej lp[n->nv_int] = n->nv_str; 17035ecc953bSthorpej else if (lp[n->nv_int] == NULL) { 17045ecc953bSthorpej nnodefault++; 17055ecc953bSthorpej ndp = extend(ndp, n->nv_name); 17065ecc953bSthorpej } 17075ecc953bSthorpej } else { 17085ecc953bSthorpej nextra++; 17095ecc953bSthorpej ep = extend(ep, n->nv_name); 17105ecc953bSthorpej } 17115ecc953bSthorpej } 17125ecc953bSthorpej if (nextra) { 17135ecc953bSthorpej ep[-2] = 0; /* kill ", " */ 17145ecc953bSthorpej error("%s: extraneous locator%s: %s", 17155ecc953bSthorpej name, nextra > 1 ? "s" : "", extra); 17165ecc953bSthorpej } 17175ecc953bSthorpej if (nmissing) { 17185ecc953bSthorpej mp[-2] = 0; 17195ecc953bSthorpej error("%s: must specify %s", name, missing); 17205ecc953bSthorpej } 17215ecc953bSthorpej if (nnodefault) { 17225ecc953bSthorpej ndp[-2] = 0; 17235ecc953bSthorpej error("%s: cannot wildcard %s", name, nodefault); 17245ecc953bSthorpej } 17255ecc953bSthorpej if (nmissing || nnodefault) { 17265ecc953bSthorpej free(lp); 17275ecc953bSthorpej lp = NULL; 17285ecc953bSthorpej } 17295ecc953bSthorpej return (lp); 17305ecc953bSthorpej } 1731