Home | History | Annotate | Line # | Download | only in config
files.c revision 1.22
      1  1.18  uebayasi /*	$NetBSD: files.c,v 1.22 2015/09/01 11:22:59 uebayasi Exp $	*/
      2   1.1   thorpej 
      3   1.1   thorpej /*
      4   1.1   thorpej  * Copyright (c) 1992, 1993
      5   1.1   thorpej  *	The Regents of the University of California.  All rights reserved.
      6   1.1   thorpej  *
      7   1.1   thorpej  * This software was developed by the Computer Systems Engineering group
      8   1.1   thorpej  * at Lawrence Berkeley Laboratory under DARPA contract BG 91-66 and
      9   1.1   thorpej  * contributed to Berkeley.
     10   1.1   thorpej  *
     11   1.1   thorpej  * All advertising materials mentioning features or use of this software
     12   1.1   thorpej  * must display the following acknowledgement:
     13   1.1   thorpej  *	This product includes software developed by the University of
     14   1.1   thorpej  *	California, Lawrence Berkeley Laboratories.
     15   1.1   thorpej  *
     16   1.1   thorpej  * Redistribution and use in source and binary forms, with or without
     17   1.1   thorpej  * modification, are permitted provided that the following conditions
     18   1.1   thorpej  * are met:
     19   1.1   thorpej  * 1. Redistributions of source code must retain the above copyright
     20   1.1   thorpej  *    notice, this list of conditions and the following disclaimer.
     21   1.1   thorpej  * 2. Redistributions in binary form must reproduce the above copyright
     22   1.1   thorpej  *    notice, this list of conditions and the following disclaimer in the
     23   1.1   thorpej  *    documentation and/or other materials provided with the distribution.
     24   1.1   thorpej  * 3. Neither the name of the University nor the names of its contributors
     25   1.1   thorpej  *    may be used to endorse or promote products derived from this software
     26   1.1   thorpej  *    without specific prior written permission.
     27   1.1   thorpej  *
     28   1.1   thorpej  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     29   1.1   thorpej  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     30   1.1   thorpej  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     31   1.1   thorpej  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     32   1.1   thorpej  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     33   1.1   thorpej  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     34   1.1   thorpej  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     35   1.1   thorpej  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     36   1.1   thorpej  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     37   1.1   thorpej  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     38   1.1   thorpej  * SUCH DAMAGE.
     39   1.1   thorpej  *
     40   1.1   thorpej  *	from: @(#)files.c	8.1 (Berkeley) 6/6/93
     41   1.1   thorpej  */
     42   1.1   thorpej 
     43   1.1   thorpej #if HAVE_NBTOOL_CONFIG_H
     44   1.1   thorpej #include "nbtool_config.h"
     45   1.1   thorpej #endif
     46   1.1   thorpej 
     47  1.17  christos #include <sys/cdefs.h>
     48  1.17  christos __RCSID("$NetBSD: files.c,v 1.22 2015/09/01 11:22:59 uebayasi Exp $");
     49  1.17  christos 
     50   1.1   thorpej #include <sys/param.h>
     51   1.1   thorpej #include <errno.h>
     52   1.1   thorpej #include <stdio.h>
     53   1.1   thorpej #include <stdlib.h>
     54   1.1   thorpej #include <string.h>
     55   1.3  christos #include <util.h>
     56   1.1   thorpej #include "defs.h"
     57   1.1   thorpej 
     58   1.1   thorpej extern const char *yyfile;
     59   1.1   thorpej 
     60   1.1   thorpej /*
     61   1.1   thorpej  * We check that each full path name is unique.  File base names
     62   1.1   thorpej  * should generally also be unique, e.g., having both a net/xx.c and
     63   1.1   thorpej  * a kern/xx.c (or, worse, a net/xx.c and a new/xx.c++) is probably
     64   1.1   thorpej  * wrong, but is permitted under some conditions.
     65   1.1   thorpej  */
     66   1.1   thorpej static struct hashtab *basetab;		/* file base names */
     67   1.1   thorpej static struct hashtab *pathtab;		/* full path names */
     68   1.1   thorpej 
     69   1.1   thorpej static struct files **unchecked;
     70   1.1   thorpej 
     71  1.14  uebayasi static void	addfiletoattr(const char *, struct files *);
     72   1.1   thorpej static int	checkaux(const char *, void *);
     73   1.1   thorpej static int	fixcount(const char *, void *);
     74   1.1   thorpej static int	fixfsel(const char *, void *);
     75   1.1   thorpej static int	fixsel(const char *, void *);
     76   1.1   thorpej 
     77   1.1   thorpej void
     78   1.1   thorpej initfiles(void)
     79   1.1   thorpej {
     80   1.1   thorpej 
     81   1.1   thorpej 	basetab = ht_new();
     82   1.1   thorpej 	pathtab = ht_new();
     83   1.1   thorpej 	TAILQ_INIT(&allfiles);
     84  1.22  uebayasi 	TAILQ_INIT(&allcfiles);
     85  1.22  uebayasi 	TAILQ_INIT(&allsfiles);
     86  1.22  uebayasi 	TAILQ_INIT(&allofiles);
     87   1.1   thorpej 	unchecked = &TAILQ_FIRST(&allfiles);
     88   1.1   thorpej 	TAILQ_INIT(&allobjects);
     89   1.1   thorpej }
     90   1.1   thorpej 
     91   1.1   thorpej void
     92  1.21  uebayasi addfile(const char *path, struct condexpr *optx, u_char flags, const char *rule)
     93   1.1   thorpej {
     94   1.1   thorpej 	struct files *fi;
     95   1.1   thorpej 	const char *dotp, *tail;
     96   1.1   thorpej 	size_t baselen;
     97   1.1   thorpej 	int needc, needf;
     98   1.1   thorpej 	char base[200];
     99   1.1   thorpej 
    100   1.1   thorpej 	/* check various errors */
    101   1.1   thorpej 	needc = flags & FI_NEEDSCOUNT;
    102   1.1   thorpej 	needf = flags & FI_NEEDSFLAG;
    103   1.1   thorpej 	if (needc && needf) {
    104   1.6  christos 		cfgerror("cannot mix needs-count and needs-flag");
    105   1.1   thorpej 		goto bad;
    106   1.1   thorpej 	}
    107   1.1   thorpej 	if (optx == NULL && (needc || needf)) {
    108   1.6  christos 		cfgerror("nothing to %s for %s", needc ? "count" : "flag",
    109   1.6  christos 		    path);
    110   1.1   thorpej 		goto bad;
    111   1.1   thorpej 	}
    112  1.19  uebayasi 	if (*path == '/') {
    113  1.19  uebayasi 		cfgerror("path must be relative");
    114  1.19  uebayasi 		goto bad;
    115  1.19  uebayasi 	}
    116   1.1   thorpej 
    117   1.1   thorpej 	/* find last part of pathname, and same without trailing suffix */
    118   1.1   thorpej 	tail = strrchr(path, '/');
    119   1.1   thorpej 	if (tail == NULL)
    120   1.1   thorpej 		tail = path;
    121   1.1   thorpej 	else
    122   1.1   thorpej 		tail++;
    123   1.1   thorpej 	dotp = strrchr(tail, '.');
    124   1.1   thorpej 	if (dotp == NULL || dotp[1] == 0 ||
    125  1.17  christos 	    (baselen = (size_t)(dotp - tail)) >= sizeof(base)) {
    126   1.6  christos 		cfgerror("invalid pathname `%s'", path);
    127   1.1   thorpej 		goto bad;
    128   1.1   thorpej 	}
    129   1.1   thorpej 
    130   1.1   thorpej 	/*
    131   1.1   thorpej 	 * Commit this file to memory.  We will decide later whether it
    132   1.1   thorpej 	 * will be used after all.
    133   1.1   thorpej 	 */
    134   1.1   thorpej 	fi = ecalloc(1, sizeof *fi);
    135   1.1   thorpej 	if (ht_insert(pathtab, path, fi)) {
    136   1.1   thorpej 		free(fi);
    137   1.1   thorpej 		if ((fi = ht_lookup(pathtab, path)) == NULL)
    138   1.1   thorpej 			panic("addfile: ht_lookup(%s)", path);
    139  1.21  uebayasi 
    140  1.21  uebayasi 		/*
    141  1.21  uebayasi 		 * If it's a duplicate entry, it is must specify a make
    142  1.21  uebayasi 		 * rule, and only a make rule, and must come from
    143  1.21  uebayasi 		 * a different source file than the original entry.
    144  1.21  uebayasi 		 * If it does otherwise, it is disallowed.  This allows
    145  1.21  uebayasi 		 * machine-dependent files to override the compilation
    146  1.21  uebayasi 		 * options for specific files.
    147  1.21  uebayasi 		 */
    148  1.21  uebayasi 		if (rule != NULL && optx == NULL && flags == 0 &&
    149  1.21  uebayasi 		    yyfile != fi->fi_srcfile) {
    150  1.21  uebayasi 			fi->fi_mkrule = rule;
    151  1.21  uebayasi 			return;
    152  1.21  uebayasi 		}
    153   1.6  christos 		cfgerror("duplicate file %s", path);
    154   1.6  christos 		cfgxerror(fi->fi_srcfile, fi->fi_srcline,
    155   1.1   thorpej 		    "here is the original definition");
    156   1.1   thorpej 		goto bad;
    157   1.1   thorpej 	}
    158   1.1   thorpej 	memcpy(base, tail, baselen);
    159   1.1   thorpej 	base[baselen] = 0;
    160   1.1   thorpej 	fi->fi_srcfile = yyfile;
    161   1.1   thorpej 	fi->fi_srcline = currentline();
    162   1.1   thorpej 	fi->fi_flags = flags;
    163   1.1   thorpej 	fi->fi_path = path;
    164   1.1   thorpej 	fi->fi_tail = tail;
    165   1.1   thorpej 	fi->fi_base = intern(base);
    166   1.1   thorpej 	fi->fi_prefix = SLIST_EMPTY(&prefixes) ? NULL :
    167   1.1   thorpej 			SLIST_FIRST(&prefixes)->pf_prefix;
    168  1.18  uebayasi 	fi->fi_len = strlen(path);
    169  1.18  uebayasi 	fi->fi_suffix = path[fi->fi_len - 1];
    170   1.1   thorpej 	fi->fi_optx = optx;
    171   1.1   thorpej 	fi->fi_optf = NULL;
    172  1.21  uebayasi 	fi->fi_mkrule = rule;
    173  1.14  uebayasi 	fi->fi_attr = NULL;
    174  1.22  uebayasi 	switch (fi->fi_suffix) {
    175  1.22  uebayasi 	case 'c':
    176  1.22  uebayasi 		TAILQ_INSERT_TAIL(&allcfiles, fi, fi_snext);
    177  1.22  uebayasi 		TAILQ_INSERT_TAIL(&allfiles, fi, fi_next);
    178  1.22  uebayasi 		break;
    179  1.22  uebayasi 	case 'S':
    180  1.22  uebayasi 	case 's':
    181  1.22  uebayasi 		TAILQ_INSERT_TAIL(&allsfiles, fi, fi_snext);
    182  1.22  uebayasi 		TAILQ_INSERT_TAIL(&allfiles, fi, fi_next);
    183  1.22  uebayasi 		break;
    184  1.22  uebayasi 	case 'o':
    185  1.22  uebayasi 		TAILQ_INSERT_TAIL(&allofiles, fi, fi_snext);
    186  1.22  uebayasi 		TAILQ_INSERT_TAIL(&allobjects, fi, fi_next);
    187  1.22  uebayasi 		break;
    188  1.22  uebayasi 	}
    189   1.1   thorpej 	return;
    190   1.1   thorpej  bad:
    191  1.12  dholland 	if (optx != NULL) {
    192  1.12  dholland 		condexpr_destroy(optx);
    193  1.12  dholland 	}
    194   1.1   thorpej }
    195   1.1   thorpej 
    196  1.14  uebayasi static void
    197  1.14  uebayasi addfiletoattr(const char *name, struct files *fi)
    198  1.14  uebayasi {
    199  1.14  uebayasi 	struct attr *a;
    200  1.14  uebayasi 
    201  1.14  uebayasi 	a = ht_lookup(attrtab, name);
    202  1.15  uebayasi 	if (a == NULL) {
    203  1.15  uebayasi 		CFGDBG(1, "attr `%s' not found", name);
    204  1.15  uebayasi 	} else {
    205  1.15  uebayasi 		fi->fi_attr = a;
    206  1.14  uebayasi 		TAILQ_INSERT_TAIL(&a->a_files, fi, fi_anext);
    207  1.14  uebayasi 	}
    208  1.14  uebayasi }
    209  1.14  uebayasi 
    210   1.1   thorpej /*
    211   1.1   thorpej  * We have finished reading some "files" file, either ../../conf/files
    212   1.1   thorpej  * or ./files.$machine.  Make sure that everything that is flagged as
    213   1.1   thorpej  * needing a count is reasonable.  (This prevents ../../conf/files from
    214   1.1   thorpej  * depending on some machine-specific device.)
    215   1.1   thorpej  */
    216   1.1   thorpej void
    217   1.1   thorpej checkfiles(void)
    218   1.1   thorpej {
    219   1.1   thorpej 	struct files *fi, *last;
    220   1.1   thorpej 
    221   1.1   thorpej 	last = NULL;
    222   1.1   thorpej 	for (fi = *unchecked; fi != NULL;
    223   1.1   thorpej 	    last = fi, fi = TAILQ_NEXT(fi, fi_next)) {
    224   1.1   thorpej 		if ((fi->fi_flags & FI_NEEDSCOUNT) != 0)
    225   1.1   thorpej 			(void)expr_eval(fi->fi_optx, checkaux, fi);
    226   1.1   thorpej 	}
    227   1.1   thorpej 	if (last != NULL)
    228   1.1   thorpej 		unchecked = &TAILQ_NEXT(last, fi_next);
    229   1.1   thorpej }
    230   1.1   thorpej 
    231   1.1   thorpej /*
    232   1.1   thorpej  * Auxiliary function for checkfiles, called from expr_eval.
    233   1.1   thorpej  * We are not actually interested in the expression's value.
    234   1.1   thorpej  */
    235   1.1   thorpej static int
    236   1.1   thorpej checkaux(const char *name, void *context)
    237   1.1   thorpej {
    238   1.1   thorpej 	struct files *fi = context;
    239   1.1   thorpej 
    240   1.1   thorpej 	if (ht_lookup(devbasetab, name) == NULL) {
    241   1.6  christos 		cfgxerror(fi->fi_srcfile, fi->fi_srcline,
    242   1.1   thorpej 		    "`%s' is not a countable device",
    243   1.1   thorpej 		    name);
    244   1.1   thorpej 		/* keep fixfiles() from complaining again */
    245   1.1   thorpej 		fi->fi_flags |= FI_HIDDEN;
    246   1.1   thorpej 	}
    247   1.1   thorpej 	return (0);
    248   1.1   thorpej }
    249   1.1   thorpej 
    250   1.1   thorpej /*
    251   1.1   thorpej  * We have finished reading everything.  Tack the files down: calculate
    252   1.1   thorpej  * selection and counts as needed.  Check that the object files built
    253   1.1   thorpej  * from the selected sources do not collide.
    254   1.1   thorpej  */
    255   1.1   thorpej int
    256   1.1   thorpej fixfiles(void)
    257   1.1   thorpej {
    258   1.1   thorpej 	struct files *fi, *ofi;
    259   1.1   thorpej 	struct nvlist *flathead, **flatp;
    260   1.1   thorpej 	int err, sel;
    261   1.1   thorpej 
    262   1.1   thorpej 	err = 0;
    263   1.1   thorpej 	TAILQ_FOREACH(fi, &allfiles, fi_next) {
    264   1.2       erh 
    265   1.1   thorpej 		/* Skip files that generated counted-device complaints. */
    266   1.1   thorpej 		if (fi->fi_flags & FI_HIDDEN)
    267   1.1   thorpej 			continue;
    268   1.1   thorpej 
    269  1.16  uebayasi 		if (fi->fi_optx != NULL) {
    270  1.14  uebayasi 			if (fi->fi_optx->cx_type == CX_ATOM) {
    271  1.14  uebayasi 				addfiletoattr(fi->fi_optx->cx_u.atom, fi);
    272  1.14  uebayasi 			}
    273   1.1   thorpej 			flathead = NULL;
    274   1.1   thorpej 			flatp = &flathead;
    275   1.1   thorpej 			sel = expr_eval(fi->fi_optx,
    276   1.1   thorpej 			    fi->fi_flags & FI_NEEDSCOUNT ? fixcount :
    277   1.1   thorpej 			    fi->fi_flags & FI_NEEDSFLAG ? fixfsel :
    278   1.1   thorpej 			    fixsel,
    279   1.1   thorpej 			    &flatp);
    280   1.1   thorpej 			fi->fi_optf = flathead;
    281   1.1   thorpej 			if (!sel)
    282   1.1   thorpej 				continue;
    283   1.1   thorpej 		}
    284   1.1   thorpej 
    285   1.1   thorpej 		/* We like this file.  Make sure it generates a unique .o. */
    286   1.1   thorpej 		if (ht_insert(basetab, fi->fi_base, fi)) {
    287   1.1   thorpej 			if ((ofi = ht_lookup(basetab, fi->fi_base)) == NULL)
    288   1.1   thorpej 				panic("fixfiles ht_lookup(%s)", fi->fi_base);
    289   1.1   thorpej 			/*
    290   1.1   thorpej 			 * If the new file comes from a different source,
    291   1.1   thorpej 			 * allow the new one to override the old one.
    292   1.1   thorpej 			 */
    293   1.1   thorpej 			if (fi->fi_path != ofi->fi_path) {
    294   1.1   thorpej 				if (ht_replace(basetab, fi->fi_base, fi) != 1)
    295   1.1   thorpej 					panic("fixfiles ht_replace(%s)",
    296   1.1   thorpej 					    fi->fi_base);
    297  1.17  christos 				ofi->fi_flags &= (u_char)~FI_SEL;
    298   1.1   thorpej 				ofi->fi_flags |= FI_HIDDEN;
    299   1.1   thorpej 			} else {
    300   1.6  christos 				cfgxerror(fi->fi_srcfile, fi->fi_srcline,
    301   1.1   thorpej 				    "object file collision on %s.o, from %s",
    302   1.1   thorpej 				    fi->fi_base, fi->fi_path);
    303   1.6  christos 				cfgxerror(ofi->fi_srcfile, ofi->fi_srcline,
    304   1.1   thorpej 				    "here is the previous file: %s",
    305   1.1   thorpej 				    ofi->fi_path);
    306   1.1   thorpej 				err = 1;
    307   1.1   thorpej 			}
    308   1.1   thorpej 		}
    309   1.1   thorpej 		fi->fi_flags |= FI_SEL;
    310  1.15  uebayasi 		CFGDBG(3, "file selected `%s'", fi->fi_path);
    311  1.15  uebayasi 
    312  1.15  uebayasi 		/* Add other files to the default "netbsd" attribute. */
    313  1.15  uebayasi 		if (fi->fi_attr == NULL) {
    314  1.15  uebayasi 			addfiletoattr(allattr.a_name, fi);
    315  1.15  uebayasi 		}
    316  1.15  uebayasi 		CFGDBG(3, "file `%s' belongs to attr `%s'", fi->fi_path,
    317  1.15  uebayasi 		    fi->fi_attr->a_name);
    318   1.1   thorpej 	}
    319   1.1   thorpej 	return (err);
    320   1.1   thorpej }
    321   1.1   thorpej 
    322   1.1   thorpej /*
    323   1.1   thorpej  * We have finished reading everything.  Tack the objects down: calculate
    324   1.1   thorpej  * selection.
    325   1.1   thorpej  */
    326   1.1   thorpej int
    327   1.1   thorpej fixobjects(void)
    328   1.1   thorpej {
    329  1.22  uebayasi 	struct files *fi;
    330   1.1   thorpej 	struct nvlist *flathead, **flatp;
    331   1.1   thorpej 	int err, sel;
    332   1.1   thorpej 
    333   1.1   thorpej 	err = 0;
    334  1.22  uebayasi 	TAILQ_FOREACH(fi, &allobjects, fi_next) {
    335   1.1   thorpej 		/* Optional: see if it is to be included. */
    336  1.22  uebayasi 		if (fi->fi_optx != NULL) {
    337   1.1   thorpej 			flathead = NULL;
    338   1.1   thorpej 			flatp = &flathead;
    339  1.22  uebayasi 			sel = expr_eval(fi->fi_optx,
    340  1.22  uebayasi 			    fi->fi_flags & FI_NEEDSFLAG ? fixfsel :
    341   1.1   thorpej 			    fixsel,
    342   1.1   thorpej 			    &flatp);
    343  1.22  uebayasi 			fi->fi_optf = flathead;
    344   1.1   thorpej 			if (!sel)
    345   1.1   thorpej 				continue;
    346   1.1   thorpej 		}
    347   1.1   thorpej 
    348  1.22  uebayasi 		fi->fi_flags |= FI_SEL;
    349   1.1   thorpej 	}
    350   1.1   thorpej 	return (err);
    351   1.1   thorpej }
    352   1.1   thorpej 
    353   1.1   thorpej /*
    354   1.1   thorpej  * We have finished reading everything.  Tack the devsws down: calculate
    355   1.1   thorpej  * selection.
    356   1.1   thorpej  */
    357   1.1   thorpej int
    358   1.1   thorpej fixdevsw(void)
    359   1.1   thorpej {
    360   1.5       alc 	int error;
    361   1.1   thorpej 	struct devm *dm, *res;
    362   1.1   thorpej 	struct hashtab *fixdevmtab;
    363   1.1   thorpej 	char mstr[16];
    364   1.1   thorpej 
    365   1.5       alc 	error = 0;
    366   1.1   thorpej 	fixdevmtab = ht_new();
    367   1.1   thorpej 
    368   1.1   thorpej 	TAILQ_FOREACH(dm, &alldevms, dm_next) {
    369   1.1   thorpej 		res = ht_lookup(fixdevmtab, intern(dm->dm_name));
    370   1.1   thorpej 		if (res != NULL) {
    371   1.1   thorpej 			if (res->dm_cmajor != dm->dm_cmajor ||
    372   1.1   thorpej 			    res->dm_bmajor != dm->dm_bmajor) {
    373   1.6  christos 				cfgxerror(res->dm_srcfile, res->dm_srcline,
    374   1.7       dsl 					"device-major '%s' "
    375   1.7       dsl 					"block %d, char %d redefined"
    376   1.7       dsl 					" at %s:%d as block %d, char %d",
    377   1.7       dsl 					res->dm_name,
    378   1.7       dsl 					res->dm_bmajor, res->dm_cmajor,
    379   1.7       dsl 					dm->dm_srcfile, dm->dm_srcline,
    380   1.7       dsl 					dm->dm_bmajor, dm->dm_cmajor);
    381   1.1   thorpej 			} else {
    382   1.7       dsl 				cfgxerror(res->dm_srcfile, res->dm_srcline,
    383   1.7       dsl 					"device-major '%s' "
    384   1.7       dsl 					"(block %d, char %d) duplicated"
    385   1.7       dsl 					" at %s:%d",
    386   1.7       dsl 					dm->dm_name, dm->dm_bmajor,
    387   1.7       dsl 					dm->dm_cmajor,
    388   1.7       dsl 					dm->dm_srcfile, dm->dm_srcline);
    389   1.1   thorpej 			}
    390   1.7       dsl 			error = 1;
    391   1.7       dsl 			goto out;
    392   1.1   thorpej 		}
    393   1.1   thorpej 		if (ht_insert(fixdevmtab, intern(dm->dm_name), dm)) {
    394   1.1   thorpej 			panic("fixdevsw: %s char %d block %d",
    395   1.1   thorpej 			      dm->dm_name, dm->dm_cmajor, dm->dm_bmajor);
    396   1.1   thorpej 		}
    397   1.1   thorpej 
    398   1.1   thorpej 		if (dm->dm_opts != NULL &&
    399   1.1   thorpej 		    !expr_eval(dm->dm_opts, fixsel, NULL))
    400   1.1   thorpej 			continue;
    401   1.1   thorpej 
    402   1.9  drochner 		if (dm->dm_cmajor != NODEVMAJOR) {
    403   1.1   thorpej 			if (ht_lookup(cdevmtab, intern(dm->dm_name)) != NULL) {
    404   1.6  christos 				cfgxerror(dm->dm_srcfile, dm->dm_srcline,
    405   1.1   thorpej 				       "device-major of character device '%s' "
    406   1.1   thorpej 				       "is already defined", dm->dm_name);
    407   1.5       alc 				error = 1;
    408   1.4  christos 				goto out;
    409   1.1   thorpej 			}
    410   1.1   thorpej 			(void)snprintf(mstr, sizeof(mstr), "%d", dm->dm_cmajor);
    411   1.1   thorpej 			if (ht_lookup(cdevmtab, intern(mstr)) != NULL) {
    412   1.6  christos 				cfgxerror(dm->dm_srcfile, dm->dm_srcline,
    413   1.1   thorpej 				       "device-major of character major '%d' "
    414   1.1   thorpej 				       "is already defined", dm->dm_cmajor);
    415   1.5       alc 				error = 1;
    416   1.4  christos 				goto out;
    417   1.1   thorpej 			}
    418   1.1   thorpej 			if (ht_insert(cdevmtab, intern(dm->dm_name), dm) ||
    419   1.1   thorpej 			    ht_insert(cdevmtab, intern(mstr), dm)) {
    420   1.1   thorpej 				panic("fixdevsw: %s character major %d",
    421   1.1   thorpej 				      dm->dm_name, dm->dm_cmajor);
    422   1.1   thorpej 			}
    423   1.1   thorpej 		}
    424   1.9  drochner 		if (dm->dm_bmajor != NODEVMAJOR) {
    425   1.1   thorpej 			if (ht_lookup(bdevmtab, intern(dm->dm_name)) != NULL) {
    426   1.6  christos 				cfgxerror(dm->dm_srcfile, dm->dm_srcline,
    427   1.1   thorpej 				       "device-major of block device '%s' "
    428   1.1   thorpej 				       "is already defined", dm->dm_name);
    429   1.5       alc 				error = 1;
    430   1.4  christos 				goto out;
    431   1.1   thorpej 			}
    432   1.1   thorpej 			(void)snprintf(mstr, sizeof(mstr), "%d", dm->dm_bmajor);
    433   1.1   thorpej 			if (ht_lookup(bdevmtab, intern(mstr)) != NULL) {
    434   1.6  christos 				cfgxerror(dm->dm_srcfile, dm->dm_srcline,
    435   1.1   thorpej 				       "device-major of block major '%d' "
    436   1.1   thorpej 				       "is already defined", dm->dm_bmajor);
    437   1.5       alc 				error = 1;
    438   1.4  christos 				goto out;
    439   1.1   thorpej 			}
    440   1.1   thorpej 			if (ht_insert(bdevmtab, intern(dm->dm_name), dm) ||
    441   1.1   thorpej 			    ht_insert(bdevmtab, intern(mstr), dm)) {
    442   1.1   thorpej 				panic("fixdevsw: %s block major %d",
    443   1.1   thorpej 				      dm->dm_name, dm->dm_bmajor);
    444   1.1   thorpej 			}
    445   1.1   thorpej 		}
    446   1.1   thorpej 	}
    447   1.1   thorpej 
    448   1.4  christos out:
    449   1.4  christos 	ht_free(fixdevmtab);
    450   1.5       alc 	return (error);
    451   1.1   thorpej }
    452   1.1   thorpej 
    453   1.1   thorpej /*
    454   1.1   thorpej  * Called when evaluating a needs-count expression.  Make sure the
    455   1.1   thorpej  * atom is a countable device.  The expression succeeds iff there
    456   1.1   thorpej  * is at least one of them (note that while `xx*' will not always
    457   1.1   thorpej  * set xx's d_umax > 0, you cannot mix '*' and needs-count).  The
    458   1.1   thorpej  * mkheaders() routine wants a flattened, in-order list of the
    459   1.1   thorpej  * atoms for `#define name value' lines, so we build that as we
    460   1.1   thorpej  * are called to eval each atom.
    461   1.1   thorpej  */
    462   1.1   thorpej static int
    463   1.1   thorpej fixcount(const char *name, void *context)
    464   1.1   thorpej {
    465   1.1   thorpej 	struct nvlist ***p = context;
    466   1.1   thorpej 	struct devbase *dev;
    467   1.1   thorpej 	struct nvlist *nv;
    468   1.1   thorpej 
    469   1.1   thorpej 	dev = ht_lookup(devbasetab, name);
    470   1.1   thorpej 	if (dev == NULL)	/* cannot occur here; we checked earlier */
    471   1.1   thorpej 		panic("fixcount(%s)", name);
    472   1.1   thorpej 	nv = newnv(name, NULL, NULL, dev->d_umax, NULL);
    473   1.1   thorpej 	**p = nv;
    474   1.1   thorpej 	*p = &nv->nv_next;
    475   1.1   thorpej 	(void)ht_insert(needcnttab, name, nv);
    476   1.1   thorpej 	return (dev->d_umax != 0);
    477   1.1   thorpej }
    478   1.1   thorpej 
    479   1.1   thorpej /*
    480   1.1   thorpej  * Called from fixfiles when eval'ing a selection expression for a
    481   1.1   thorpej  * file that will generate a .h with flags.  We will need the flat list.
    482   1.1   thorpej  */
    483   1.1   thorpej static int
    484   1.1   thorpej fixfsel(const char *name, void *context)
    485   1.1   thorpej {
    486   1.1   thorpej 	struct nvlist ***p = context;
    487   1.1   thorpej 	struct nvlist *nv;
    488   1.1   thorpej 	int sel;
    489   1.1   thorpej 
    490   1.1   thorpej 	sel = ht_lookup(selecttab, name) != NULL;
    491   1.1   thorpej 	nv = newnv(name, NULL, NULL, sel, NULL);
    492   1.1   thorpej 	**p = nv;
    493   1.1   thorpej 	*p = &nv->nv_next;
    494   1.1   thorpej 	return (sel);
    495   1.1   thorpej }
    496   1.1   thorpej 
    497   1.1   thorpej /*
    498   1.1   thorpej  * As for fixfsel above, but we do not need the flat list.
    499   1.1   thorpej  */
    500   1.1   thorpej static int
    501   1.6  christos /*ARGSUSED*/
    502   1.1   thorpej fixsel(const char *name, void *context)
    503   1.1   thorpej {
    504   1.1   thorpej 
    505   1.1   thorpej 	return (ht_lookup(selecttab, name) != NULL);
    506   1.1   thorpej }
    507   1.1   thorpej 
    508   1.1   thorpej /*
    509   1.1   thorpej  * Eval an expression tree.  Calls the given function on each node,
    510   1.1   thorpej  * passing it the given context & the name; return value is &/|/! of
    511   1.1   thorpej  * results of evaluating atoms.
    512   1.1   thorpej  *
    513   1.1   thorpej  * No short circuiting ever occurs.  fn must return 0 or 1 (otherwise
    514   1.1   thorpej  * our mixing of C's bitwise & boolean here may give surprises).
    515   1.1   thorpej  */
    516  1.10      cube int
    517  1.11  dholland expr_eval(struct condexpr *expr, int (*fn)(const char *, void *), void *ctx)
    518   1.1   thorpej {
    519   1.1   thorpej 	int lhs, rhs;
    520   1.1   thorpej 
    521  1.11  dholland 	switch (expr->cx_type) {
    522   1.1   thorpej 
    523  1.11  dholland 	case CX_ATOM:
    524  1.11  dholland 		return ((*fn)(expr->cx_atom, ctx));
    525   1.1   thorpej 
    526  1.11  dholland 	case CX_NOT:
    527  1.11  dholland 		return (!expr_eval(expr->cx_not, fn, ctx));
    528   1.1   thorpej 
    529  1.11  dholland 	case CX_AND:
    530  1.11  dholland 		lhs = expr_eval(expr->cx_and.left, fn, ctx);
    531  1.11  dholland 		rhs = expr_eval(expr->cx_and.right, fn, ctx);
    532   1.1   thorpej 		return (lhs & rhs);
    533   1.1   thorpej 
    534  1.11  dholland 	case CX_OR:
    535  1.11  dholland 		lhs = expr_eval(expr->cx_or.left, fn, ctx);
    536  1.11  dholland 		rhs = expr_eval(expr->cx_or.right, fn, ctx);
    537   1.1   thorpej 		return (lhs | rhs);
    538   1.1   thorpej 	}
    539  1.11  dholland 	panic("invalid condexpr type %d", (int)expr->cx_type);
    540   1.1   thorpej 	/* NOTREACHED */
    541   1.1   thorpej 	return (0);
    542   1.1   thorpej }
    543   1.1   thorpej 
    544   1.1   thorpej #ifdef DEBUG
    545   1.1   thorpej /*
    546   1.1   thorpej  * Print expression tree.
    547   1.1   thorpej  */
    548   1.1   thorpej void
    549   1.1   thorpej prexpr(struct nvlist *expr)
    550   1.1   thorpej {
    551   1.1   thorpej 	static void pr0();
    552   1.1   thorpej 
    553   1.1   thorpej 	printf("expr =");
    554   1.1   thorpej 	pr0(expr);
    555   1.1   thorpej 	printf("\n");
    556   1.1   thorpej 	(void)fflush(stdout);
    557   1.1   thorpej }
    558   1.1   thorpej 
    559   1.1   thorpej static void
    560   1.1   thorpej pr0(struct nvlist *e)
    561   1.1   thorpej {
    562   1.1   thorpej 
    563   1.8  christos 	switch (e->nv_num) {
    564   1.1   thorpej 	case FX_ATOM:
    565   1.1   thorpej 		printf(" %s", e->nv_name);
    566   1.1   thorpej 		return;
    567   1.1   thorpej 	case FX_NOT:
    568   1.1   thorpej 		printf(" (!");
    569   1.1   thorpej 		break;
    570   1.1   thorpej 	case FX_AND:
    571   1.1   thorpej 		printf(" (&");
    572   1.1   thorpej 		break;
    573   1.1   thorpej 	case FX_OR:
    574   1.1   thorpej 		printf(" (|");
    575   1.1   thorpej 		break;
    576   1.1   thorpej 	default:
    577   1.8  christos 		printf(" (?%lld?", e->nv_num);
    578   1.1   thorpej 		break;
    579   1.1   thorpej 	}
    580   1.1   thorpej 	if (e->nv_ptr)
    581   1.1   thorpej 		pr0(e->nv_ptr);
    582   1.1   thorpej 	pr0(e->nv_next);
    583   1.1   thorpej 	printf(")");
    584   1.1   thorpej }
    585   1.1   thorpej #endif
    586