Home | History | Annotate | Line # | Download | only in config
files.c revision 1.5
      1  1.5       alc /*	$NetBSD: files.c,v 1.5 2006/12/26 00:07:18 alc 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.1   thorpej #include <sys/param.h>
     48  1.1   thorpej #include <errno.h>
     49  1.1   thorpej #include <stdio.h>
     50  1.1   thorpej #include <stdlib.h>
     51  1.1   thorpej #include <string.h>
     52  1.3  christos #include <util.h>
     53  1.1   thorpej #include "defs.h"
     54  1.1   thorpej 
     55  1.1   thorpej extern const char *yyfile;
     56  1.1   thorpej 
     57  1.1   thorpej /*
     58  1.1   thorpej  * We check that each full path name is unique.  File base names
     59  1.1   thorpej  * should generally also be unique, e.g., having both a net/xx.c and
     60  1.1   thorpej  * a kern/xx.c (or, worse, a net/xx.c and a new/xx.c++) is probably
     61  1.1   thorpej  * wrong, but is permitted under some conditions.
     62  1.1   thorpej  */
     63  1.1   thorpej static struct hashtab *basetab;		/* file base names */
     64  1.1   thorpej static struct hashtab *pathtab;		/* full path names */
     65  1.1   thorpej 
     66  1.1   thorpej static struct files **unchecked;
     67  1.1   thorpej 
     68  1.1   thorpej static int	checkaux(const char *, void *);
     69  1.1   thorpej static int	fixcount(const char *, void *);
     70  1.1   thorpej static int	fixfsel(const char *, void *);
     71  1.1   thorpej static int	fixsel(const char *, void *);
     72  1.1   thorpej static int	expr_eval(struct nvlist *,
     73  1.1   thorpej 		    int (*)(const char *, void *), void *);
     74  1.1   thorpej static void	expr_free(struct nvlist *);
     75  1.1   thorpej 
     76  1.1   thorpej void
     77  1.1   thorpej initfiles(void)
     78  1.1   thorpej {
     79  1.1   thorpej 
     80  1.1   thorpej 	basetab = ht_new();
     81  1.1   thorpej 	pathtab = ht_new();
     82  1.1   thorpej 	TAILQ_INIT(&allfiles);
     83  1.1   thorpej 	unchecked = &TAILQ_FIRST(&allfiles);
     84  1.1   thorpej 	TAILQ_INIT(&allobjects);
     85  1.1   thorpej }
     86  1.1   thorpej 
     87  1.1   thorpej void
     88  1.1   thorpej addfile(const char *path, struct nvlist *optx, int flags, const char *rule)
     89  1.1   thorpej {
     90  1.1   thorpej 	struct files *fi;
     91  1.1   thorpej 	const char *dotp, *tail;
     92  1.1   thorpej 	size_t baselen;
     93  1.1   thorpej 	int needc, needf;
     94  1.1   thorpej 	char base[200];
     95  1.1   thorpej 
     96  1.1   thorpej 	/* check various errors */
     97  1.1   thorpej 	needc = flags & FI_NEEDSCOUNT;
     98  1.1   thorpej 	needf = flags & FI_NEEDSFLAG;
     99  1.1   thorpej 	if (needc && needf) {
    100  1.1   thorpej 		error("cannot mix needs-count and needs-flag");
    101  1.1   thorpej 		goto bad;
    102  1.1   thorpej 	}
    103  1.1   thorpej 	if (optx == NULL && (needc || needf)) {
    104  1.1   thorpej 		error("nothing to %s for %s", needc ? "count" : "flag", path);
    105  1.1   thorpej 		goto bad;
    106  1.1   thorpej 	}
    107  1.1   thorpej 
    108  1.1   thorpej 	/* find last part of pathname, and same without trailing suffix */
    109  1.1   thorpej 	tail = strrchr(path, '/');
    110  1.1   thorpej 	if (tail == NULL)
    111  1.1   thorpej 		tail = path;
    112  1.1   thorpej 	else
    113  1.1   thorpej 		tail++;
    114  1.1   thorpej 	dotp = strrchr(tail, '.');
    115  1.1   thorpej 	if (dotp == NULL || dotp[1] == 0 ||
    116  1.1   thorpej 	    (baselen = dotp - tail) >= sizeof(base)) {
    117  1.1   thorpej 		error("invalid pathname `%s'", path);
    118  1.1   thorpej 		goto bad;
    119  1.1   thorpej 	}
    120  1.1   thorpej 
    121  1.1   thorpej 	/*
    122  1.1   thorpej 	 * Commit this file to memory.  We will decide later whether it
    123  1.1   thorpej 	 * will be used after all.
    124  1.1   thorpej 	 */
    125  1.1   thorpej 	fi = ecalloc(1, sizeof *fi);
    126  1.1   thorpej 	if (ht_insert(pathtab, path, fi)) {
    127  1.1   thorpej 		free(fi);
    128  1.1   thorpej 		if ((fi = ht_lookup(pathtab, path)) == NULL)
    129  1.1   thorpej 			panic("addfile: ht_lookup(%s)", path);
    130  1.1   thorpej 
    131  1.1   thorpej 		/*
    132  1.1   thorpej 		 * If it's a duplicate entry, it is must specify a make
    133  1.1   thorpej 		 * rule, and only a make rule, and must come from
    134  1.1   thorpej 		 * a different source file than the original entry.
    135  1.1   thorpej 		 * If it does otherwise, it is disallowed.  This allows
    136  1.1   thorpej 		 * machine-dependent files to override the compilation
    137  1.1   thorpej 		 * options for specific files.
    138  1.1   thorpej 		 */
    139  1.1   thorpej 		if (rule != NULL && optx == NULL && flags == 0 &&
    140  1.1   thorpej 		    yyfile != fi->fi_srcfile) {
    141  1.1   thorpej 			fi->fi_mkrule = rule;
    142  1.1   thorpej 			return;
    143  1.1   thorpej 		}
    144  1.1   thorpej 		error("duplicate file %s", path);
    145  1.1   thorpej 		xerror(fi->fi_srcfile, fi->fi_srcline,
    146  1.1   thorpej 		    "here is the original definition");
    147  1.1   thorpej 		goto bad;
    148  1.1   thorpej 	}
    149  1.1   thorpej 	memcpy(base, tail, baselen);
    150  1.1   thorpej 	base[baselen] = 0;
    151  1.1   thorpej 	fi->fi_srcfile = yyfile;
    152  1.1   thorpej 	fi->fi_srcline = currentline();
    153  1.1   thorpej 	fi->fi_flags = flags;
    154  1.1   thorpej 	fi->fi_path = path;
    155  1.1   thorpej 	fi->fi_tail = tail;
    156  1.1   thorpej 	fi->fi_base = intern(base);
    157  1.1   thorpej 	fi->fi_prefix = SLIST_EMPTY(&prefixes) ? NULL :
    158  1.1   thorpej 			SLIST_FIRST(&prefixes)->pf_prefix;
    159  1.1   thorpej 	fi->fi_optx = optx;
    160  1.1   thorpej 	fi->fi_optf = NULL;
    161  1.1   thorpej 	fi->fi_mkrule = rule;
    162  1.1   thorpej 	TAILQ_INSERT_TAIL(&allfiles, fi, fi_next);
    163  1.1   thorpej 	return;
    164  1.1   thorpej  bad:
    165  1.1   thorpej 	expr_free(optx);
    166  1.1   thorpej }
    167  1.1   thorpej 
    168  1.1   thorpej void
    169  1.1   thorpej addobject(const char *path, struct nvlist *optx, int flags)
    170  1.1   thorpej {
    171  1.1   thorpej 	struct objects *oi;
    172  1.1   thorpej 
    173  1.1   thorpej 	/*
    174  1.1   thorpej 	 * Commit this object to memory.  We will decide later whether it
    175  1.1   thorpej 	 * will be used after all.
    176  1.1   thorpej 	 */
    177  1.1   thorpej 	oi = ecalloc(1, sizeof *oi);
    178  1.1   thorpej 	if (ht_insert(pathtab, path, oi)) {
    179  1.1   thorpej 		free(oi);
    180  1.1   thorpej 		if ((oi = ht_lookup(pathtab, path)) == NULL)
    181  1.1   thorpej 			panic("addfile: ht_lookup(%s)", path);
    182  1.1   thorpej 		error("duplicate file %s", path);
    183  1.1   thorpej 		xerror(oi->oi_srcfile, oi->oi_srcline,
    184  1.1   thorpej 		    "here is the original definition");
    185  1.1   thorpej 	}
    186  1.1   thorpej 	oi->oi_srcfile = yyfile;
    187  1.1   thorpej 	oi->oi_srcline = currentline();
    188  1.1   thorpej 	oi->oi_flags = flags;
    189  1.1   thorpej 	oi->oi_path = path;
    190  1.1   thorpej 	oi->oi_prefix = SLIST_EMPTY(&prefixes) ? NULL :
    191  1.1   thorpej 			SLIST_FIRST(&prefixes)->pf_prefix;
    192  1.1   thorpej 	oi->oi_optx = optx;
    193  1.1   thorpej 	oi->oi_optf = NULL;
    194  1.1   thorpej 	TAILQ_INSERT_TAIL(&allobjects, oi, oi_next);
    195  1.1   thorpej 	return;
    196  1.1   thorpej }
    197  1.1   thorpej 
    198  1.1   thorpej /*
    199  1.1   thorpej  * We have finished reading some "files" file, either ../../conf/files
    200  1.1   thorpej  * or ./files.$machine.  Make sure that everything that is flagged as
    201  1.1   thorpej  * needing a count is reasonable.  (This prevents ../../conf/files from
    202  1.1   thorpej  * depending on some machine-specific device.)
    203  1.1   thorpej  */
    204  1.1   thorpej void
    205  1.1   thorpej checkfiles(void)
    206  1.1   thorpej {
    207  1.1   thorpej 	struct files *fi, *last;
    208  1.1   thorpej 
    209  1.1   thorpej 	last = NULL;
    210  1.1   thorpej 	for (fi = *unchecked; fi != NULL;
    211  1.1   thorpej 	    last = fi, fi = TAILQ_NEXT(fi, fi_next)) {
    212  1.1   thorpej 		if ((fi->fi_flags & FI_NEEDSCOUNT) != 0)
    213  1.1   thorpej 			(void)expr_eval(fi->fi_optx, checkaux, fi);
    214  1.1   thorpej 	}
    215  1.1   thorpej 	if (last != NULL)
    216  1.1   thorpej 		unchecked = &TAILQ_NEXT(last, fi_next);
    217  1.1   thorpej }
    218  1.1   thorpej 
    219  1.1   thorpej /*
    220  1.1   thorpej  * Auxiliary function for checkfiles, called from expr_eval.
    221  1.1   thorpej  * We are not actually interested in the expression's value.
    222  1.1   thorpej  */
    223  1.1   thorpej static int
    224  1.1   thorpej checkaux(const char *name, void *context)
    225  1.1   thorpej {
    226  1.1   thorpej 	struct files *fi = context;
    227  1.1   thorpej 
    228  1.1   thorpej 	if (ht_lookup(devbasetab, name) == NULL) {
    229  1.1   thorpej 		xerror(fi->fi_srcfile, fi->fi_srcline,
    230  1.1   thorpej 		    "`%s' is not a countable device",
    231  1.1   thorpej 		    name);
    232  1.1   thorpej 		/* keep fixfiles() from complaining again */
    233  1.1   thorpej 		fi->fi_flags |= FI_HIDDEN;
    234  1.1   thorpej 	}
    235  1.1   thorpej 	return (0);
    236  1.1   thorpej }
    237  1.1   thorpej 
    238  1.1   thorpej /*
    239  1.1   thorpej  * We have finished reading everything.  Tack the files down: calculate
    240  1.1   thorpej  * selection and counts as needed.  Check that the object files built
    241  1.1   thorpej  * from the selected sources do not collide.
    242  1.1   thorpej  */
    243  1.1   thorpej int
    244  1.1   thorpej fixfiles(void)
    245  1.1   thorpej {
    246  1.1   thorpej 	struct files *fi, *ofi;
    247  1.1   thorpej 	struct nvlist *flathead, **flatp;
    248  1.1   thorpej 	int err, sel;
    249  1.1   thorpej 
    250  1.1   thorpej 	err = 0;
    251  1.1   thorpej 	TAILQ_FOREACH(fi, &allfiles, fi_next) {
    252  1.2       erh 
    253  1.1   thorpej 		/* Skip files that generated counted-device complaints. */
    254  1.1   thorpej 		if (fi->fi_flags & FI_HIDDEN)
    255  1.1   thorpej 			continue;
    256  1.1   thorpej 
    257  1.1   thorpej 		/* Optional: see if it is to be included. */
    258  1.2       erh 		if (fi->fi_flags & FIT_FORCESELECT)
    259  1.2       erh 		{
    260  1.2       erh 			/* include it */ ;
    261  1.2       erh 		}
    262  1.2       erh 		else if (fi->fi_optx != NULL) {
    263  1.1   thorpej 			flathead = NULL;
    264  1.1   thorpej 			flatp = &flathead;
    265  1.1   thorpej 			sel = expr_eval(fi->fi_optx,
    266  1.1   thorpej 			    fi->fi_flags & FI_NEEDSCOUNT ? fixcount :
    267  1.1   thorpej 			    fi->fi_flags & FI_NEEDSFLAG ? fixfsel :
    268  1.1   thorpej 			    fixsel,
    269  1.1   thorpej 			    &flatp);
    270  1.1   thorpej 			fi->fi_optf = flathead;
    271  1.1   thorpej 			if (!sel)
    272  1.1   thorpej 				continue;
    273  1.1   thorpej 		}
    274  1.1   thorpej 
    275  1.1   thorpej 		/* We like this file.  Make sure it generates a unique .o. */
    276  1.1   thorpej 		if (ht_insert(basetab, fi->fi_base, fi)) {
    277  1.1   thorpej 			if ((ofi = ht_lookup(basetab, fi->fi_base)) == NULL)
    278  1.1   thorpej 				panic("fixfiles ht_lookup(%s)", fi->fi_base);
    279  1.1   thorpej 			/*
    280  1.1   thorpej 			 * If the new file comes from a different source,
    281  1.1   thorpej 			 * allow the new one to override the old one.
    282  1.1   thorpej 			 */
    283  1.1   thorpej 			if (fi->fi_path != ofi->fi_path) {
    284  1.1   thorpej 				if (ht_replace(basetab, fi->fi_base, fi) != 1)
    285  1.1   thorpej 					panic("fixfiles ht_replace(%s)",
    286  1.1   thorpej 					    fi->fi_base);
    287  1.1   thorpej 				ofi->fi_flags &= ~FI_SEL;
    288  1.1   thorpej 				ofi->fi_flags |= FI_HIDDEN;
    289  1.1   thorpej 			} else {
    290  1.1   thorpej 				xerror(fi->fi_srcfile, fi->fi_srcline,
    291  1.1   thorpej 				    "object file collision on %s.o, from %s",
    292  1.1   thorpej 				    fi->fi_base, fi->fi_path);
    293  1.1   thorpej 				xerror(ofi->fi_srcfile, ofi->fi_srcline,
    294  1.1   thorpej 				    "here is the previous file: %s",
    295  1.1   thorpej 				    ofi->fi_path);
    296  1.1   thorpej 				err = 1;
    297  1.1   thorpej 			}
    298  1.1   thorpej 		}
    299  1.1   thorpej 		fi->fi_flags |= FI_SEL;
    300  1.1   thorpej 	}
    301  1.1   thorpej 	return (err);
    302  1.1   thorpej }
    303  1.1   thorpej 
    304  1.1   thorpej /*
    305  1.1   thorpej  * We have finished reading everything.  Tack the objects down: calculate
    306  1.1   thorpej  * selection.
    307  1.1   thorpej  */
    308  1.1   thorpej int
    309  1.1   thorpej fixobjects(void)
    310  1.1   thorpej {
    311  1.1   thorpej 	struct objects *oi;
    312  1.1   thorpej 	struct nvlist *flathead, **flatp;
    313  1.1   thorpej 	int err, sel;
    314  1.1   thorpej 
    315  1.1   thorpej 	err = 0;
    316  1.1   thorpej 	TAILQ_FOREACH(oi, &allobjects, oi_next) {
    317  1.1   thorpej 		/* Optional: see if it is to be included. */
    318  1.1   thorpej 		if (oi->oi_optx != NULL) {
    319  1.1   thorpej 			flathead = NULL;
    320  1.1   thorpej 			flatp = &flathead;
    321  1.1   thorpej 			sel = expr_eval(oi->oi_optx,
    322  1.1   thorpej 			    oi->oi_flags & OI_NEEDSFLAG ? fixfsel :
    323  1.1   thorpej 			    fixsel,
    324  1.1   thorpej 			    &flatp);
    325  1.1   thorpej 			oi->oi_optf = flathead;
    326  1.1   thorpej 			if (!sel)
    327  1.1   thorpej 				continue;
    328  1.1   thorpej 		}
    329  1.1   thorpej 
    330  1.1   thorpej 		oi->oi_flags |= OI_SEL;
    331  1.1   thorpej 	}
    332  1.1   thorpej 	return (err);
    333  1.1   thorpej }
    334  1.1   thorpej 
    335  1.1   thorpej /*
    336  1.1   thorpej  * We have finished reading everything.  Tack the devsws down: calculate
    337  1.1   thorpej  * selection.
    338  1.1   thorpej  */
    339  1.1   thorpej int
    340  1.1   thorpej fixdevsw(void)
    341  1.1   thorpej {
    342  1.5       alc 	int error;
    343  1.1   thorpej 	struct devm *dm, *res;
    344  1.1   thorpej 	struct hashtab *fixdevmtab;
    345  1.1   thorpej 	char mstr[16];
    346  1.1   thorpej 
    347  1.5       alc 	error = 0;
    348  1.1   thorpej 	fixdevmtab = ht_new();
    349  1.1   thorpej 
    350  1.1   thorpej 	TAILQ_FOREACH(dm, &alldevms, dm_next) {
    351  1.1   thorpej 		res = ht_lookup(fixdevmtab, intern(dm->dm_name));
    352  1.1   thorpej 		if (res != NULL) {
    353  1.1   thorpej 			if (res->dm_cmajor != dm->dm_cmajor ||
    354  1.1   thorpej 			    res->dm_bmajor != dm->dm_bmajor) {
    355  1.1   thorpej 				xerror(res->dm_srcfile, res->dm_srcline,
    356  1.1   thorpej 				       "device-major '%s' is inconsistent: "
    357  1.1   thorpej 				       "block %d, char %d", res->dm_name,
    358  1.1   thorpej 				       res->dm_bmajor, res->dm_cmajor);
    359  1.1   thorpej 				xerror(dm->dm_srcfile, dm->dm_srcline,
    360  1.1   thorpej 				       "device-major '%s' is inconsistent: "
    361  1.1   thorpej 				       "block %d, char %d", dm->dm_name,
    362  1.1   thorpej 				       dm->dm_bmajor, dm->dm_cmajor);
    363  1.5       alc 				error = 1;
    364  1.4  christos 				goto out;
    365  1.1   thorpej 			} else {
    366  1.1   thorpej 				xerror(dm->dm_srcfile, dm->dm_srcline,
    367  1.1   thorpej 				       "device-major '%s' is duplicated: "
    368  1.1   thorpej 				       "block %d, char %d",
    369  1.1   thorpej 				       dm->dm_name, dm->dm_bmajor,
    370  1.1   thorpej 				       dm->dm_cmajor);
    371  1.5       alc 				error = 1;
    372  1.4  christos 				goto out;
    373  1.1   thorpej 			}
    374  1.1   thorpej 		}
    375  1.1   thorpej 		if (ht_insert(fixdevmtab, intern(dm->dm_name), dm)) {
    376  1.1   thorpej 			panic("fixdevsw: %s char %d block %d",
    377  1.1   thorpej 			      dm->dm_name, dm->dm_cmajor, dm->dm_bmajor);
    378  1.1   thorpej 		}
    379  1.1   thorpej 
    380  1.1   thorpej 		if (dm->dm_opts != NULL &&
    381  1.1   thorpej 		    !expr_eval(dm->dm_opts, fixsel, NULL))
    382  1.1   thorpej 			continue;
    383  1.1   thorpej 
    384  1.1   thorpej 		if (dm->dm_cmajor != -1) {
    385  1.1   thorpej 			if (ht_lookup(cdevmtab, intern(dm->dm_name)) != NULL) {
    386  1.1   thorpej 				xerror(dm->dm_srcfile, dm->dm_srcline,
    387  1.1   thorpej 				       "device-major of character device '%s' "
    388  1.1   thorpej 				       "is already defined", dm->dm_name);
    389  1.5       alc 				error = 1;
    390  1.4  christos 				goto out;
    391  1.1   thorpej 			}
    392  1.1   thorpej 			(void)snprintf(mstr, sizeof(mstr), "%d", dm->dm_cmajor);
    393  1.1   thorpej 			if (ht_lookup(cdevmtab, intern(mstr)) != NULL) {
    394  1.1   thorpej 				xerror(dm->dm_srcfile, dm->dm_srcline,
    395  1.1   thorpej 				       "device-major of character major '%d' "
    396  1.1   thorpej 				       "is already defined", dm->dm_cmajor);
    397  1.5       alc 				error = 1;
    398  1.4  christos 				goto out;
    399  1.1   thorpej 			}
    400  1.1   thorpej 			if (ht_insert(cdevmtab, intern(dm->dm_name), dm) ||
    401  1.1   thorpej 			    ht_insert(cdevmtab, intern(mstr), dm)) {
    402  1.1   thorpej 				panic("fixdevsw: %s character major %d",
    403  1.1   thorpej 				      dm->dm_name, dm->dm_cmajor);
    404  1.1   thorpej 			}
    405  1.1   thorpej 		}
    406  1.1   thorpej 		if (dm->dm_bmajor != -1) {
    407  1.1   thorpej 			if (ht_lookup(bdevmtab, intern(dm->dm_name)) != NULL) {
    408  1.1   thorpej 				xerror(dm->dm_srcfile, dm->dm_srcline,
    409  1.1   thorpej 				       "device-major of block device '%s' "
    410  1.1   thorpej 				       "is already defined", dm->dm_name);
    411  1.5       alc 				error = 1;
    412  1.4  christos 				goto out;
    413  1.1   thorpej 			}
    414  1.1   thorpej 			(void)snprintf(mstr, sizeof(mstr), "%d", dm->dm_bmajor);
    415  1.1   thorpej 			if (ht_lookup(bdevmtab, intern(mstr)) != NULL) {
    416  1.1   thorpej 				xerror(dm->dm_srcfile, dm->dm_srcline,
    417  1.1   thorpej 				       "device-major of block major '%d' "
    418  1.1   thorpej 				       "is already defined", dm->dm_bmajor);
    419  1.5       alc 				error = 1;
    420  1.4  christos 				goto out;
    421  1.1   thorpej 			}
    422  1.1   thorpej 			if (ht_insert(bdevmtab, intern(dm->dm_name), dm) ||
    423  1.1   thorpej 			    ht_insert(bdevmtab, intern(mstr), dm)) {
    424  1.1   thorpej 				panic("fixdevsw: %s block major %d",
    425  1.1   thorpej 				      dm->dm_name, dm->dm_bmajor);
    426  1.1   thorpej 			}
    427  1.1   thorpej 		}
    428  1.1   thorpej 	}
    429  1.1   thorpej 
    430  1.4  christos out:
    431  1.4  christos 	ht_free(fixdevmtab);
    432  1.5       alc 	return (error);
    433  1.1   thorpej }
    434  1.1   thorpej 
    435  1.1   thorpej /*
    436  1.1   thorpej  * Called when evaluating a needs-count expression.  Make sure the
    437  1.1   thorpej  * atom is a countable device.  The expression succeeds iff there
    438  1.1   thorpej  * is at least one of them (note that while `xx*' will not always
    439  1.1   thorpej  * set xx's d_umax > 0, you cannot mix '*' and needs-count).  The
    440  1.1   thorpej  * mkheaders() routine wants a flattened, in-order list of the
    441  1.1   thorpej  * atoms for `#define name value' lines, so we build that as we
    442  1.1   thorpej  * are called to eval each atom.
    443  1.1   thorpej  */
    444  1.1   thorpej static int
    445  1.1   thorpej fixcount(const char *name, void *context)
    446  1.1   thorpej {
    447  1.1   thorpej 	struct nvlist ***p = context;
    448  1.1   thorpej 	struct devbase *dev;
    449  1.1   thorpej 	struct nvlist *nv;
    450  1.1   thorpej 
    451  1.1   thorpej 	dev = ht_lookup(devbasetab, name);
    452  1.1   thorpej 	if (dev == NULL)	/* cannot occur here; we checked earlier */
    453  1.1   thorpej 		panic("fixcount(%s)", name);
    454  1.1   thorpej 	nv = newnv(name, NULL, NULL, dev->d_umax, NULL);
    455  1.1   thorpej 	**p = nv;
    456  1.1   thorpej 	*p = &nv->nv_next;
    457  1.1   thorpej 	(void)ht_insert(needcnttab, name, nv);
    458  1.1   thorpej 	return (dev->d_umax != 0);
    459  1.1   thorpej }
    460  1.1   thorpej 
    461  1.1   thorpej /*
    462  1.1   thorpej  * Called from fixfiles when eval'ing a selection expression for a
    463  1.1   thorpej  * file that will generate a .h with flags.  We will need the flat list.
    464  1.1   thorpej  */
    465  1.1   thorpej static int
    466  1.1   thorpej fixfsel(const char *name, void *context)
    467  1.1   thorpej {
    468  1.1   thorpej 	struct nvlist ***p = context;
    469  1.1   thorpej 	struct nvlist *nv;
    470  1.1   thorpej 	int sel;
    471  1.1   thorpej 
    472  1.1   thorpej 	sel = ht_lookup(selecttab, name) != NULL;
    473  1.1   thorpej 	nv = newnv(name, NULL, NULL, sel, NULL);
    474  1.1   thorpej 	**p = nv;
    475  1.1   thorpej 	*p = &nv->nv_next;
    476  1.1   thorpej 	return (sel);
    477  1.1   thorpej }
    478  1.1   thorpej 
    479  1.1   thorpej /*
    480  1.1   thorpej  * As for fixfsel above, but we do not need the flat list.
    481  1.1   thorpej  */
    482  1.1   thorpej static int
    483  1.1   thorpej fixsel(const char *name, void *context)
    484  1.1   thorpej {
    485  1.1   thorpej 
    486  1.1   thorpej 	return (ht_lookup(selecttab, name) != NULL);
    487  1.1   thorpej }
    488  1.1   thorpej 
    489  1.1   thorpej /*
    490  1.1   thorpej  * Eval an expression tree.  Calls the given function on each node,
    491  1.1   thorpej  * passing it the given context & the name; return value is &/|/! of
    492  1.1   thorpej  * results of evaluating atoms.
    493  1.1   thorpej  *
    494  1.1   thorpej  * No short circuiting ever occurs.  fn must return 0 or 1 (otherwise
    495  1.1   thorpej  * our mixing of C's bitwise & boolean here may give surprises).
    496  1.1   thorpej  */
    497  1.1   thorpej static int
    498  1.1   thorpej expr_eval(struct nvlist *expr, int (*fn)(const char *, void *), void *context)
    499  1.1   thorpej {
    500  1.1   thorpej 	int lhs, rhs;
    501  1.1   thorpej 
    502  1.1   thorpej 	switch (expr->nv_int) {
    503  1.1   thorpej 
    504  1.1   thorpej 	case FX_ATOM:
    505  1.1   thorpej 		return ((*fn)(expr->nv_name, context));
    506  1.1   thorpej 
    507  1.1   thorpej 	case FX_NOT:
    508  1.1   thorpej 		return (!expr_eval(expr->nv_next, fn, context));
    509  1.1   thorpej 
    510  1.1   thorpej 	case FX_AND:
    511  1.1   thorpej 		lhs = expr_eval(expr->nv_ptr, fn, context);
    512  1.1   thorpej 		rhs = expr_eval(expr->nv_next, fn, context);
    513  1.1   thorpej 		return (lhs & rhs);
    514  1.1   thorpej 
    515  1.1   thorpej 	case FX_OR:
    516  1.1   thorpej 		lhs = expr_eval(expr->nv_ptr, fn, context);
    517  1.1   thorpej 		rhs = expr_eval(expr->nv_next, fn, context);
    518  1.1   thorpej 		return (lhs | rhs);
    519  1.1   thorpej 	}
    520  1.1   thorpej 	panic("expr_eval %d", expr->nv_int);
    521  1.1   thorpej 	/* NOTREACHED */
    522  1.1   thorpej 	return (0);
    523  1.1   thorpej }
    524  1.1   thorpej 
    525  1.1   thorpej /*
    526  1.1   thorpej  * Free an expression tree.
    527  1.1   thorpej  */
    528  1.1   thorpej static void
    529  1.1   thorpej expr_free(struct nvlist *expr)
    530  1.1   thorpej {
    531  1.1   thorpej 	struct nvlist *rhs;
    532  1.1   thorpej 
    533  1.1   thorpej 	/* This loop traverses down the RHS of each subexpression. */
    534  1.1   thorpej 	for (; expr != NULL; expr = rhs) {
    535  1.1   thorpej 		switch (expr->nv_int) {
    536  1.1   thorpej 
    537  1.1   thorpej 		/* Atoms and !-exprs have no left hand side. */
    538  1.1   thorpej 		case FX_ATOM:
    539  1.1   thorpej 		case FX_NOT:
    540  1.1   thorpej 			break;
    541  1.1   thorpej 
    542  1.1   thorpej 		/* For AND and OR nodes, free the LHS. */
    543  1.1   thorpej 		case FX_AND:
    544  1.1   thorpej 		case FX_OR:
    545  1.1   thorpej 			expr_free(expr->nv_ptr);
    546  1.1   thorpej 			break;
    547  1.1   thorpej 
    548  1.1   thorpej 		default:
    549  1.1   thorpej 			panic("expr_free %d", expr->nv_int);
    550  1.1   thorpej 		}
    551  1.1   thorpej 		rhs = expr->nv_next;
    552  1.1   thorpej 		nvfree(expr);
    553  1.1   thorpej 	}
    554  1.1   thorpej }
    555  1.1   thorpej 
    556  1.1   thorpej #ifdef DEBUG
    557  1.1   thorpej /*
    558  1.1   thorpej  * Print expression tree.
    559  1.1   thorpej  */
    560  1.1   thorpej void
    561  1.1   thorpej prexpr(struct nvlist *expr)
    562  1.1   thorpej {
    563  1.1   thorpej 	static void pr0();
    564  1.1   thorpej 
    565  1.1   thorpej 	printf("expr =");
    566  1.1   thorpej 	pr0(expr);
    567  1.1   thorpej 	printf("\n");
    568  1.1   thorpej 	(void)fflush(stdout);
    569  1.1   thorpej }
    570  1.1   thorpej 
    571  1.1   thorpej static void
    572  1.1   thorpej pr0(struct nvlist *e)
    573  1.1   thorpej {
    574  1.1   thorpej 
    575  1.1   thorpej 	switch (e->nv_int) {
    576  1.1   thorpej 	case FX_ATOM:
    577  1.1   thorpej 		printf(" %s", e->nv_name);
    578  1.1   thorpej 		return;
    579  1.1   thorpej 	case FX_NOT:
    580  1.1   thorpej 		printf(" (!");
    581  1.1   thorpej 		break;
    582  1.1   thorpej 	case FX_AND:
    583  1.1   thorpej 		printf(" (&");
    584  1.1   thorpej 		break;
    585  1.1   thorpej 	case FX_OR:
    586  1.1   thorpej 		printf(" (|");
    587  1.1   thorpej 		break;
    588  1.1   thorpej 	default:
    589  1.1   thorpej 		printf(" (?%d?", e->nv_int);
    590  1.1   thorpej 		break;
    591  1.1   thorpej 	}
    592  1.1   thorpej 	if (e->nv_ptr)
    593  1.1   thorpej 		pr0(e->nv_ptr);
    594  1.1   thorpej 	pr0(e->nv_next);
    595  1.1   thorpej 	printf(")");
    596  1.1   thorpej }
    597  1.1   thorpej #endif
    598