1999-09-24 08:23:36 +04:00
|
|
|
/* $NetBSD: main.c,v 1.44 1999/09/24 04:23:36 enami Exp $ */
|
1996-03-03 20:21:25 +03:00
|
|
|
|
1996-03-17 09:29:19 +03:00
|
|
|
/*
|
1995-04-28 10:54:58 +04:00
|
|
|
* Copyright (c) 1992, 1993
|
|
|
|
* The Regents of the University of California. All rights reserved.
|
|
|
|
*
|
|
|
|
* This software was developed by the Computer Systems Engineering group
|
|
|
|
* at Lawrence Berkeley Laboratory under DARPA contract BG 91-66 and
|
|
|
|
* contributed to Berkeley.
|
|
|
|
*
|
|
|
|
* All advertising materials mentioning features or use of this software
|
|
|
|
* must display the following acknowledgement:
|
|
|
|
* This product includes software developed by the University of
|
|
|
|
* California, Lawrence Berkeley Laboratories.
|
1993-03-21 12:45:37 +03:00
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
* 3. All advertising materials mentioning features or use of this software
|
|
|
|
* must display the following acknowledgement:
|
|
|
|
* This product includes software developed by the University of
|
|
|
|
* California, Berkeley and its contributors.
|
|
|
|
* 4. Neither the name of the University nor the names of its contributors
|
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
1995-04-28 10:54:58 +04:00
|
|
|
*
|
|
|
|
* from: @(#)main.c 8.1 (Berkeley) 6/6/93
|
1993-03-21 12:45:37 +03:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef lint
|
1997-10-18 11:58:56 +04:00
|
|
|
#ifndef MAKE_BOOTSTRAP
|
|
|
|
#include <sys/cdefs.h>
|
|
|
|
__COPYRIGHT("@(#) Copyright (c) 1992, 1993\n\
|
|
|
|
The Regents of the University of California. All rights reserved.\n");
|
|
|
|
#endif /* not MAKE_BOOTSTRAP */
|
1993-03-21 12:45:37 +03:00
|
|
|
#endif /* not lint */
|
|
|
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
1996-09-01 00:58:16 +04:00
|
|
|
#include <sys/param.h>
|
1993-03-21 12:45:37 +03:00
|
|
|
#include <ctype.h>
|
1995-04-28 10:54:58 +04:00
|
|
|
#include <errno.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <unistd.h>
|
1993-03-21 12:45:37 +03:00
|
|
|
#include "config.h"
|
1997-05-25 22:42:54 +04:00
|
|
|
#include "sem.h"
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1998-06-28 08:41:36 +04:00
|
|
|
int vflag; /* verbose output */
|
|
|
|
|
1995-04-28 10:54:58 +04:00
|
|
|
int yyparse __P((void));
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1995-04-28 10:54:58 +04:00
|
|
|
extern char *optarg;
|
|
|
|
extern int optind;
|
1997-10-10 14:27:53 +04:00
|
|
|
extern int yydebug;
|
1995-04-28 10:54:58 +04:00
|
|
|
|
|
|
|
static struct hashtab *mkopttab;
|
|
|
|
static struct nvlist **nextopt;
|
|
|
|
static struct nvlist **nextmkopt;
|
1997-01-31 06:12:30 +03:00
|
|
|
static struct nvlist **nextfsopt;
|
1995-04-28 10:54:58 +04:00
|
|
|
|
1998-06-10 08:33:31 +04:00
|
|
|
static void dependopts __P((void));
|
|
|
|
static void do_depend __P((struct nvlist *));
|
1997-10-18 11:58:56 +04:00
|
|
|
static void stop __P((void));
|
|
|
|
static int do_option __P((struct hashtab *, struct nvlist ***,
|
|
|
|
const char *, const char *, const char *));
|
|
|
|
static int crosscheck __P((void));
|
|
|
|
static int badstar __P((void));
|
|
|
|
int main __P((int, char **));
|
|
|
|
static int mksymlinks __P((void));
|
|
|
|
static int hasparent __P((struct devi *));
|
|
|
|
static int cfcrosscheck __P((struct config *, const char *,
|
|
|
|
struct nvlist *));
|
1998-06-24 15:20:54 +04:00
|
|
|
void defopt __P((struct hashtab *ht, const char *fname,
|
|
|
|
struct nvlist *opts, struct nvlist *deps));
|
|
|
|
|
|
|
|
int badfilename __P((const char *fname));
|
1995-04-28 10:54:58 +04:00
|
|
|
|
1999-04-02 10:36:30 +04:00
|
|
|
#ifdef MAKE_BOOTSTRAP
|
|
|
|
char *__progname;
|
|
|
|
#endif
|
|
|
|
|
1995-04-28 10:54:58 +04:00
|
|
|
int
|
1993-03-21 12:45:37 +03:00
|
|
|
main(argc, argv)
|
|
|
|
int argc;
|
|
|
|
char **argv;
|
|
|
|
{
|
1997-10-18 11:58:56 +04:00
|
|
|
char *p;
|
1996-09-01 00:58:16 +04:00
|
|
|
const char *last_component;
|
1995-04-28 10:54:58 +04:00
|
|
|
int pflag, ch;
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1999-04-02 10:36:30 +04:00
|
|
|
#ifdef MAKE_BOOTSTRAP
|
|
|
|
__progname = argv[0];
|
|
|
|
#endif
|
|
|
|
|
1995-04-28 10:54:58 +04:00
|
|
|
pflag = 0;
|
1998-06-28 08:41:36 +04:00
|
|
|
while ((ch = getopt(argc, argv, "Dgpvb:s:")) != -1) {
|
1993-03-21 12:45:37 +03:00
|
|
|
switch (ch) {
|
1995-04-28 10:54:58 +04:00
|
|
|
|
1997-10-10 14:27:53 +04:00
|
|
|
case 'D':
|
|
|
|
yydebug = 1;
|
|
|
|
break;
|
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
case 'g':
|
1995-04-28 10:54:58 +04:00
|
|
|
/*
|
|
|
|
* In addition to DEBUG, you probably wanted to
|
|
|
|
* set "options KGDB" and maybe others. We could
|
|
|
|
* do that for you, but you really should just
|
|
|
|
* put them in the config file.
|
|
|
|
*/
|
|
|
|
(void)fputs(
|
|
|
|
"-g is obsolete (use makeoptions DEBUG=\"-g\")\n",
|
|
|
|
stderr);
|
|
|
|
goto usage;
|
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
case 'p':
|
1995-04-28 10:54:58 +04:00
|
|
|
/*
|
|
|
|
* Essentially the same as makeoptions PROF="-pg",
|
|
|
|
* but also changes the path from ../../compile/FOO
|
1996-11-02 04:02:56 +03:00
|
|
|
* to ../../compile/FOO.PROF; i.e., compile a
|
1995-04-28 10:54:58 +04:00
|
|
|
* profiling kernel based on a typical "regular"
|
|
|
|
* kernel.
|
|
|
|
*
|
|
|
|
* Note that if you always want profiling, you
|
|
|
|
* can (and should) use a "makeoptions" line.
|
|
|
|
*/
|
|
|
|
pflag = 1;
|
1993-04-10 16:11:55 +04:00
|
|
|
break;
|
1995-04-28 10:54:58 +04:00
|
|
|
|
1998-06-28 08:41:36 +04:00
|
|
|
case 'v':
|
|
|
|
vflag = 1;
|
|
|
|
break;
|
|
|
|
|
1996-09-01 00:58:16 +04:00
|
|
|
case 'b':
|
|
|
|
builddir = optarg;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 's':
|
|
|
|
srcdir = optarg;
|
|
|
|
break;
|
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
case '?':
|
|
|
|
default:
|
|
|
|
goto usage;
|
|
|
|
}
|
1995-04-28 10:54:58 +04:00
|
|
|
}
|
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
argc -= optind;
|
|
|
|
argv += optind;
|
1996-09-01 00:58:16 +04:00
|
|
|
if (argc > 1) {
|
1995-04-28 10:54:58 +04:00
|
|
|
usage:
|
1999-02-09 01:32:58 +03:00
|
|
|
(void)fputs("usage: config [-pv] [-s srcdir] [-b builddir] sysname\n", stderr);
|
1993-03-21 12:45:37 +03:00
|
|
|
exit(1);
|
|
|
|
}
|
1996-09-01 00:58:16 +04:00
|
|
|
conffile = (argc == 1) ? argv[0] : "CONFIG";
|
1995-04-28 10:54:58 +04:00
|
|
|
if (firstfile(conffile)) {
|
|
|
|
(void)fprintf(stderr, "config: cannot read %s: %s\n",
|
|
|
|
conffile, strerror(errno));
|
1993-03-21 12:45:37 +03:00
|
|
|
exit(2);
|
|
|
|
}
|
1995-04-28 10:54:58 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Init variables.
|
|
|
|
*/
|
|
|
|
minmaxusers = 1;
|
|
|
|
maxmaxusers = 10000;
|
|
|
|
initintern();
|
|
|
|
initfiles();
|
|
|
|
initsem();
|
|
|
|
devbasetab = ht_new();
|
1996-03-17 05:08:22 +03:00
|
|
|
devatab = ht_new();
|
1995-04-28 10:54:58 +04:00
|
|
|
selecttab = ht_new();
|
|
|
|
needcnttab = ht_new();
|
|
|
|
opttab = ht_new();
|
|
|
|
mkopttab = ht_new();
|
1997-01-31 06:12:30 +03:00
|
|
|
fsopttab = ht_new();
|
1998-02-19 03:27:00 +03:00
|
|
|
deffstab = ht_new();
|
1997-02-03 00:12:30 +03:00
|
|
|
defopttab = ht_new();
|
1998-06-24 15:20:54 +04:00
|
|
|
defparamtab = ht_new();
|
|
|
|
defflagtab = ht_new();
|
1998-01-12 10:37:40 +03:00
|
|
|
optfiletab = ht_new();
|
1995-04-28 10:54:58 +04:00
|
|
|
nextopt = &options;
|
|
|
|
nextmkopt = &mkoptions;
|
1997-01-31 06:12:30 +03:00
|
|
|
nextfsopt = &fsoptions;
|
1995-04-28 10:54:58 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Handle profiling (must do this before we try to create any
|
|
|
|
* files).
|
|
|
|
*/
|
1996-09-01 00:58:16 +04:00
|
|
|
last_component = strrchr(conffile, '/');
|
|
|
|
last_component = (last_component) ? last_component + 1 : conffile;
|
1995-04-28 10:54:58 +04:00
|
|
|
if (pflag) {
|
1996-09-01 00:58:16 +04:00
|
|
|
p = emalloc(strlen(last_component) + 17);
|
|
|
|
(void)sprintf(p, "../compile/%s.PROF", last_component);
|
1995-04-28 10:54:58 +04:00
|
|
|
(void)addmkoption(intern("PROF"), "-pg");
|
|
|
|
(void)addoption(intern("GPROF"), NULL);
|
1996-09-01 00:58:16 +04:00
|
|
|
} else {
|
|
|
|
p = emalloc(strlen(last_component) + 13);
|
|
|
|
(void)sprintf(p, "../compile/%s", last_component);
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
1996-09-01 00:58:16 +04:00
|
|
|
defbuilddir = (argc == 0) ? "." : p;
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1995-04-28 10:54:58 +04:00
|
|
|
/*
|
|
|
|
* Parse config file (including machine definitions).
|
|
|
|
*/
|
1993-03-21 12:45:37 +03:00
|
|
|
if (yyparse())
|
1995-04-28 10:54:58 +04:00
|
|
|
stop();
|
|
|
|
|
1998-06-10 08:33:31 +04:00
|
|
|
/*
|
|
|
|
* Deal with option dependencies.
|
|
|
|
*/
|
|
|
|
dependopts();
|
|
|
|
|
1995-04-28 10:54:58 +04:00
|
|
|
/*
|
|
|
|
* Fix (as in `set firmly in place') files.
|
|
|
|
*/
|
|
|
|
if (fixfiles())
|
|
|
|
stop();
|
|
|
|
|
1997-10-10 14:27:53 +04:00
|
|
|
/*
|
|
|
|
* Fix objects and libraries.
|
|
|
|
*/
|
|
|
|
if (fixobjects())
|
|
|
|
stop();
|
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
/*
|
1995-04-28 10:54:58 +04:00
|
|
|
* Perform cross-checking.
|
1993-03-21 12:45:37 +03:00
|
|
|
*/
|
1995-04-28 10:54:58 +04:00
|
|
|
if (maxusers == 0) {
|
|
|
|
if (defmaxusers) {
|
|
|
|
(void)printf("maxusers not specified; %d assumed\n",
|
|
|
|
defmaxusers);
|
|
|
|
maxusers = defmaxusers;
|
|
|
|
} else {
|
|
|
|
(void)fprintf(stderr,
|
|
|
|
"config: need \"maxusers\" line\n");
|
|
|
|
errors++;
|
|
|
|
}
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
1997-01-31 06:12:30 +03:00
|
|
|
if (fsoptions == NULL) {
|
|
|
|
(void)fprintf(stderr,
|
|
|
|
"config: need at least one \"file-system\" line\n");
|
|
|
|
errors++;
|
|
|
|
}
|
1995-04-28 10:54:58 +04:00
|
|
|
if (crosscheck() || errors)
|
|
|
|
stop();
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Squeeze things down and finish cross-checks (STAR checks must
|
|
|
|
* run after packing).
|
|
|
|
*/
|
|
|
|
pack();
|
|
|
|
if (badstar())
|
|
|
|
stop();
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Ready to go. Build all the various files.
|
|
|
|
*/
|
|
|
|
if (mksymlinks() || mkmakefile() || mkheaders() || mkswap() ||
|
|
|
|
mkioconf())
|
|
|
|
stop();
|
|
|
|
(void)printf("Don't forget to run \"make depend\"\n");
|
1993-03-21 12:45:37 +03:00
|
|
|
exit(0);
|
|
|
|
}
|
|
|
|
|
1998-06-10 08:33:31 +04:00
|
|
|
/*
|
|
|
|
* Set any options that are implied by other options.
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
dependopts()
|
|
|
|
{
|
|
|
|
struct nvlist *nv, *opt;
|
|
|
|
|
|
|
|
for (nv = options; nv != NULL; nv = nv->nv_next) {
|
1998-06-30 07:30:56 +04:00
|
|
|
if ((opt = find_declared_option(nv->nv_name)) != NULL) {
|
1998-06-10 08:33:31 +04:00
|
|
|
for (opt = opt->nv_ptr; opt != NULL;
|
|
|
|
opt = opt->nv_next) {
|
|
|
|
do_depend(opt);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
do_depend(nv)
|
|
|
|
struct nvlist *nv;
|
|
|
|
{
|
|
|
|
struct nvlist *nextnv;
|
|
|
|
|
1999-09-22 18:23:03 +04:00
|
|
|
if (nv != NULL && !(nv->nv_flags & NV_DEPENDED)) {
|
|
|
|
nv->nv_flags |= NV_DEPENDED;
|
1998-06-10 08:33:31 +04:00
|
|
|
if (ht_lookup(opttab, nv->nv_name) == NULL)
|
|
|
|
addoption(nv->nv_name, NULL);
|
1998-06-30 07:30:56 +04:00
|
|
|
if ((nextnv = find_declared_option(nv->nv_name)) != NULL)
|
1998-06-10 08:33:31 +04:00
|
|
|
do_depend(nextnv->nv_ptr);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
/*
|
1995-04-28 10:54:58 +04:00
|
|
|
* Make a symlink for "machine" so that "#include <machine/foo.h>" works,
|
|
|
|
* and for the machine's CPU architecture, so that works as well.
|
1993-03-21 12:45:37 +03:00
|
|
|
*/
|
1995-04-28 10:54:58 +04:00
|
|
|
static int
|
|
|
|
mksymlinks()
|
1993-03-21 12:45:37 +03:00
|
|
|
{
|
1995-04-28 10:54:58 +04:00
|
|
|
int ret;
|
1996-09-01 00:58:16 +04:00
|
|
|
char *p, buf[MAXPATHLEN];
|
|
|
|
const char *q;
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1996-09-01 00:58:16 +04:00
|
|
|
sprintf(buf, "arch/%s/include", machine);
|
|
|
|
p = sourcepath(buf);
|
1999-07-30 00:08:59 +04:00
|
|
|
ret = unlink("machine");
|
1999-07-31 09:22:05 +04:00
|
|
|
if (ret && errno != ENOENT)
|
1999-07-30 00:08:59 +04:00
|
|
|
(void)fprintf(stderr, "config: unlink(machine): %s\n",
|
|
|
|
strerror(errno));
|
1996-09-01 00:58:16 +04:00
|
|
|
ret = symlink(p, "machine");
|
1995-04-28 10:54:58 +04:00
|
|
|
if (ret)
|
1996-09-01 00:58:16 +04:00
|
|
|
(void)fprintf(stderr, "config: symlink(machine -> %s): %s\n",
|
|
|
|
p, strerror(errno));
|
1998-10-05 23:50:40 +04:00
|
|
|
free(p);
|
1995-04-28 10:54:58 +04:00
|
|
|
|
|
|
|
if (machinearch != NULL) {
|
1996-09-01 00:58:16 +04:00
|
|
|
sprintf(buf, "arch/%s/include", machinearch);
|
|
|
|
p = sourcepath(buf);
|
|
|
|
q = machinearch;
|
1995-04-28 10:54:58 +04:00
|
|
|
} else {
|
1999-07-09 10:44:58 +04:00
|
|
|
p = estrdup("machine");
|
1996-09-01 00:58:16 +04:00
|
|
|
q = machine;
|
1993-04-10 16:11:55 +04:00
|
|
|
}
|
1999-07-30 00:08:59 +04:00
|
|
|
ret = unlink(q);
|
1999-07-31 09:22:05 +04:00
|
|
|
if (ret && errno != ENOENT)
|
1999-07-30 00:08:59 +04:00
|
|
|
(void)fprintf(stderr, "config: unlink(%s): %s\n",
|
|
|
|
q, strerror(errno));
|
1996-09-01 00:58:16 +04:00
|
|
|
ret = symlink(p, q);
|
1995-04-28 10:54:58 +04:00
|
|
|
if (ret)
|
|
|
|
(void)fprintf(stderr, "config: symlink(%s -> %s): %s\n",
|
1996-09-01 00:58:16 +04:00
|
|
|
q, p, strerror(errno));
|
1995-04-28 10:54:58 +04:00
|
|
|
free(p);
|
|
|
|
|
|
|
|
return (ret);
|
|
|
|
}
|
|
|
|
|
|
|
|
static __dead void
|
|
|
|
stop()
|
|
|
|
{
|
|
|
|
(void)fprintf(stderr, "*** Stop.\n");
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
1998-02-19 03:27:00 +03:00
|
|
|
/*
|
|
|
|
* Define one or more file systems. If file system options file name is
|
|
|
|
* specified, a preprocessor #define for that file system will be placed
|
|
|
|
* in that file. In this case, only one file system may be specified.
|
|
|
|
* Otherwise, no preprocessor #defines will be generated.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
deffilesystem(fname, fses)
|
|
|
|
const char *fname;
|
|
|
|
struct nvlist *fses;
|
|
|
|
{
|
|
|
|
struct nvlist *nv;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Mark these options as ones to skip when creating the Makefile.
|
|
|
|
*/
|
|
|
|
for (nv = fses; nv != NULL; nv = nv->nv_next) {
|
|
|
|
if (ht_insert(defopttab, nv->nv_name, nv)) {
|
|
|
|
error("file system or option `%s' already defined",
|
|
|
|
nv->nv_name);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Also mark it as a valid file system, which may be
|
|
|
|
* used in "file-system" directives in the config
|
|
|
|
* file.
|
|
|
|
*/
|
|
|
|
if (ht_insert(deffstab, nv->nv_name, nv))
|
|
|
|
panic("file system `%s' already in table?!",
|
|
|
|
nv->nv_name);
|
|
|
|
|
|
|
|
if (fname != NULL) {
|
|
|
|
/*
|
|
|
|
* Only one file system allowed in this case.
|
|
|
|
*/
|
|
|
|
if (nv->nv_next != NULL) {
|
|
|
|
error("only one file system per option "
|
|
|
|
"file may be specified");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ht_insert(optfiletab, fname, nv)) {
|
|
|
|
error("option file `%s' already exists",
|
|
|
|
fname);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1998-06-24 15:20:54 +04:00
|
|
|
/*
|
|
|
|
* Sanity check a file name.
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
badfilename(fname)
|
|
|
|
const char *fname;
|
|
|
|
{
|
|
|
|
const char *n;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* We're putting multiple options into one file. Sanity
|
|
|
|
* check the file name.
|
|
|
|
*/
|
|
|
|
if (strchr(fname, '/') != NULL) {
|
|
|
|
error("option file name contains a `/'");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
if ((n = strrchr(fname, '.')) == NULL || strcmp(n, ".h") != 0) {
|
|
|
|
error("option file name does not end in `.h'");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1998-06-30 07:30:56 +04:00
|
|
|
/*
|
|
|
|
* Search for a defined option (defopt, filesystem, etc), and if found,
|
|
|
|
* return the option's struct nvlist.
|
|
|
|
*/
|
|
|
|
struct nvlist *
|
|
|
|
find_declared_option(name)
|
|
|
|
const char *name;
|
|
|
|
{
|
|
|
|
struct nvlist *option = NULL;
|
|
|
|
|
|
|
|
if ((option = ht_lookup(defopttab, name)) != NULL ||
|
|
|
|
(option = ht_lookup(defparamtab, name)) != NULL ||
|
|
|
|
(option = ht_lookup(defflagtab, name)) != NULL ||
|
|
|
|
(option = ht_lookup(fsopttab, name)) != NULL) {
|
|
|
|
return (option);
|
|
|
|
}
|
|
|
|
|
|
|
|
return (NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1997-02-03 00:12:30 +03:00
|
|
|
/*
|
1998-01-12 10:37:40 +03:00
|
|
|
* Define one or more standard options. If an option file name is specified,
|
|
|
|
* place all options in one file with the specified name. Otherwise, create
|
|
|
|
* an option file for each option.
|
1998-06-24 15:20:54 +04:00
|
|
|
* record the option information in the specified table.
|
1997-02-03 00:12:30 +03:00
|
|
|
*/
|
|
|
|
void
|
1998-06-24 15:20:54 +04:00
|
|
|
defopt(ht, fname, opts, deps)
|
|
|
|
struct hashtab *ht;
|
1998-01-12 10:37:40 +03:00
|
|
|
const char *fname;
|
1998-06-10 08:33:31 +04:00
|
|
|
struct nvlist *opts, *deps;
|
1997-02-03 00:12:30 +03:00
|
|
|
{
|
1998-06-10 08:33:31 +04:00
|
|
|
struct nvlist *nv, *nextnv, *oldnv;
|
|
|
|
const char *name, *n;
|
1997-10-18 11:58:56 +04:00
|
|
|
char *p, c;
|
1997-02-03 00:12:30 +03:00
|
|
|
char low[500];
|
|
|
|
|
1998-06-24 15:20:54 +04:00
|
|
|
if (fname != NULL && badfilename(fname)) {
|
|
|
|
return;
|
1998-06-10 08:33:31 +04:00
|
|
|
}
|
|
|
|
|
1997-02-03 00:12:30 +03:00
|
|
|
/*
|
1998-01-12 10:37:40 +03:00
|
|
|
* Mark these options as ones to skip when creating the Makefile.
|
1997-02-03 00:12:30 +03:00
|
|
|
*/
|
1998-01-12 10:37:40 +03:00
|
|
|
for (nv = opts; nv != NULL; nv = nextnv) {
|
|
|
|
nextnv = nv->nv_next;
|
1998-06-30 07:30:56 +04:00
|
|
|
|
|
|
|
/* An option name can be declared at most once. */
|
|
|
|
if (DEFINED_OPTION(nv->nv_name)) {
|
|
|
|
error("file system or option `%s' already defined",
|
|
|
|
nv->nv_name);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
1998-06-24 15:20:54 +04:00
|
|
|
if (ht_insert(ht, nv->nv_name, nv)) {
|
1998-02-19 03:27:00 +03:00
|
|
|
error("file system or option `%s' already defined",
|
|
|
|
nv->nv_name);
|
1998-01-12 10:37:40 +03:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (fname == NULL) {
|
|
|
|
/*
|
|
|
|
* Each option will be going into its own file.
|
|
|
|
* Convert the option name to lower case. This
|
|
|
|
* lower case name will be used as the option
|
|
|
|
* file name.
|
|
|
|
*/
|
|
|
|
(void) strcpy(low, "opt_");
|
|
|
|
p = low + strlen(low);
|
|
|
|
for (n = nv->nv_name; (c = *n) != '\0'; n++)
|
|
|
|
*p++ = isupper(c) ? tolower(c) : c;
|
|
|
|
*p = '\0';
|
|
|
|
strcat(low, ".h");
|
1997-02-03 00:12:30 +03:00
|
|
|
|
1998-06-10 08:33:31 +04:00
|
|
|
name = intern(low);
|
|
|
|
} else {
|
|
|
|
name = fname;
|
1998-01-12 10:37:40 +03:00
|
|
|
}
|
1997-02-03 00:12:30 +03:00
|
|
|
|
1998-06-10 08:33:31 +04:00
|
|
|
/* Use nv_ptr to link any other options that are implied. */
|
|
|
|
nv->nv_ptr = deps;
|
1998-01-12 10:37:40 +03:00
|
|
|
|
1998-06-10 08:33:31 +04:00
|
|
|
/*
|
|
|
|
* Remove this option from the parameter list before adding
|
|
|
|
* it to the list associated with this option file.
|
|
|
|
*/
|
|
|
|
nv->nv_next = NULL;
|
1998-01-12 10:37:40 +03:00
|
|
|
|
1998-06-10 08:33:31 +04:00
|
|
|
/*
|
|
|
|
* Add this option file if we haven't seen it yet.
|
|
|
|
* Otherwise, append to the list of options already
|
|
|
|
* associated with this file.
|
|
|
|
*/
|
|
|
|
if ((oldnv = ht_lookup(optfiletab, name)) == NULL) {
|
|
|
|
(void)ht_insert(optfiletab, name, nv);
|
|
|
|
} else {
|
|
|
|
while (oldnv->nv_next != NULL)
|
|
|
|
oldnv = oldnv->nv_next;
|
|
|
|
oldnv->nv_next = nv;
|
|
|
|
}
|
1998-01-12 10:37:40 +03:00
|
|
|
}
|
1997-02-03 00:12:30 +03:00
|
|
|
}
|
|
|
|
|
1998-06-24 15:20:54 +04:00
|
|
|
/*
|
|
|
|
* Define one or more standard options. If an option file name is specified,
|
|
|
|
* place all options in one file with the specified name. Otherwise, create
|
|
|
|
* an option file for each option.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
defoption(fname, opts, deps)
|
|
|
|
const char *fname;
|
|
|
|
struct nvlist *opts, *deps;
|
|
|
|
{
|
|
|
|
defopt(defopttab, fname, opts, deps);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Define an option for which a value is required.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
defparam(fname, opts, deps)
|
|
|
|
const char *fname;
|
|
|
|
struct nvlist *opts, *deps;
|
|
|
|
{
|
|
|
|
defopt(defparamtab, fname, opts, deps);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Define an option which must have a value, and which
|
|
|
|
* emits a "needs-flag" style output.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
defflag(fname, opts, deps)
|
|
|
|
const char *fname;
|
|
|
|
struct nvlist *opts, *deps;
|
|
|
|
{
|
|
|
|
defopt(defflagtab, fname, opts, deps);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1995-04-28 10:54:58 +04:00
|
|
|
/*
|
|
|
|
* Add an option from "options FOO". Note that this selects things that
|
|
|
|
* are "optional foo".
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
addoption(name, value)
|
|
|
|
const char *name, *value;
|
|
|
|
{
|
1997-10-18 11:58:56 +04:00
|
|
|
const char *n;
|
|
|
|
char *p, c;
|
1995-04-28 10:54:58 +04:00
|
|
|
char low[500];
|
1998-06-24 15:20:54 +04:00
|
|
|
int is_fs, is_param, is_flag, is_opt, is_undecl;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Figure out how this option was declared (if at all.)
|
|
|
|
* XXX should use "params" and "flags" in config.
|
|
|
|
* XXX crying out for a type field in a unified hashtab.
|
|
|
|
*/
|
1998-06-30 07:30:56 +04:00
|
|
|
is_fs = OPT_FSOPT(name);
|
|
|
|
is_param = OPT_DEFPARAM(name);
|
|
|
|
is_opt = OPT_DEFOPT(name);
|
|
|
|
is_flag = OPT_DEFFLAG(name);
|
|
|
|
is_undecl = !DEFINED_OPTION(name);
|
1995-04-28 10:54:58 +04:00
|
|
|
|
1998-02-19 09:13:51 +03:00
|
|
|
/* Make sure this is not a defined file system. */
|
1998-06-24 15:20:54 +04:00
|
|
|
if (is_fs) {
|
1998-02-19 09:13:51 +03:00
|
|
|
error("`%s' is a defined file system", name);
|
|
|
|
return;
|
|
|
|
}
|
1998-06-24 15:20:54 +04:00
|
|
|
/* A defparam must have a value */
|
|
|
|
if (is_param && value == NULL) {
|
|
|
|
error("option `%s' must have a value", name);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
/* A defflag must not have a value */
|
|
|
|
if (is_flag && value != NULL) {
|
|
|
|
error("option `%s' must not have a value", name);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
1998-06-28 08:41:36 +04:00
|
|
|
if (is_undecl && vflag) {
|
1998-06-24 15:20:54 +04:00
|
|
|
warn("undeclared option `%s' added to IDENT", name);
|
|
|
|
}
|
1998-02-19 09:13:51 +03:00
|
|
|
|
1995-04-28 10:54:58 +04:00
|
|
|
if (do_option(opttab, &nextopt, name, value, "options"))
|
|
|
|
return;
|
|
|
|
|
|
|
|
/* make lowercase, then add to select table */
|
|
|
|
for (n = name, p = low; (c = *n) != '\0'; n++)
|
|
|
|
*p++ = isupper(c) ? tolower(c) : c;
|
|
|
|
*p = 0;
|
|
|
|
n = intern(low);
|
|
|
|
(void)ht_insert(selecttab, n, (void *)n);
|
|
|
|
}
|
|
|
|
|
1997-01-31 06:12:30 +03:00
|
|
|
/*
|
|
|
|
* Add a file system option. This routine simply inserts the name into
|
|
|
|
* a list of valid file systems, which is used to validate the root
|
|
|
|
* file system type. The name is then treated like a standard option.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
addfsoption(name)
|
|
|
|
const char *name;
|
|
|
|
{
|
1997-10-18 11:58:56 +04:00
|
|
|
const char *n;
|
|
|
|
char *p, c;
|
1998-02-19 09:13:51 +03:00
|
|
|
char low[500];
|
1997-01-31 06:12:30 +03:00
|
|
|
|
1998-02-19 03:27:00 +03:00
|
|
|
/* Make sure this is a defined file system. */
|
1998-06-30 07:30:56 +04:00
|
|
|
if (!OPT_FSOPT(name)) {
|
1998-02-19 03:27:00 +03:00
|
|
|
error("`%s' is not a defined file system", name);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
1998-02-19 09:13:51 +03:00
|
|
|
/*
|
|
|
|
* Convert to lower case. This will be used in the select
|
1998-02-20 03:11:02 +03:00
|
|
|
* table, to verify root file systems, and when the initial
|
|
|
|
* VFS list is created.
|
1998-02-19 09:13:51 +03:00
|
|
|
*/
|
|
|
|
for (n = name, p = low; (c = *n) != '\0'; n++)
|
1997-01-31 06:12:30 +03:00
|
|
|
*p++ = isupper(c) ? tolower(c) : c;
|
|
|
|
*p = 0;
|
1998-02-19 09:13:51 +03:00
|
|
|
n = intern(low);
|
1997-01-31 06:12:30 +03:00
|
|
|
|
1998-02-19 09:13:51 +03:00
|
|
|
if (do_option(fsopttab, &nextfsopt, name, n, "file-system"))
|
1997-01-31 06:12:30 +03:00
|
|
|
return;
|
|
|
|
|
1998-02-20 03:11:02 +03:00
|
|
|
/*
|
|
|
|
* Add a lower-case version to the table for root file system
|
|
|
|
* verification.
|
|
|
|
*/
|
|
|
|
if (ht_insert(fsopttab, n, (void *)n))
|
|
|
|
panic("addfsoption: already in table");
|
|
|
|
|
1998-02-19 09:13:51 +03:00
|
|
|
/* Add to select table. */
|
|
|
|
(void)ht_insert(selecttab, n, (void *)n);
|
1997-01-31 06:12:30 +03:00
|
|
|
}
|
|
|
|
|
1995-04-28 10:54:58 +04:00
|
|
|
/*
|
|
|
|
* Add a "make" option.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
addmkoption(name, value)
|
|
|
|
const char *name, *value;
|
|
|
|
{
|
|
|
|
|
|
|
|
(void)do_option(mkopttab, &nextmkopt, name, value, "mkoptions");
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Add a name=value pair to an option list. The value may be NULL.
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
do_option(ht, nppp, name, value, type)
|
|
|
|
struct hashtab *ht;
|
|
|
|
struct nvlist ***nppp;
|
|
|
|
const char *name, *value, *type;
|
|
|
|
{
|
1997-10-18 11:58:56 +04:00
|
|
|
struct nvlist *nv;
|
1995-04-28 10:54:58 +04:00
|
|
|
|
1998-06-30 07:30:56 +04:00
|
|
|
/*
|
|
|
|
* If a defopt'ed option was enabled but without an explicit
|
|
|
|
* value, supply a default value of 1, as for non-defopt
|
|
|
|
* options (where cc treats -DBAR as -DBAR=1.)
|
|
|
|
*/
|
|
|
|
if (OPT_DEFOPT(name) && value == NULL)
|
|
|
|
value = "1";
|
|
|
|
|
1995-04-28 10:54:58 +04:00
|
|
|
/* assume it will work */
|
1996-03-17 14:50:09 +03:00
|
|
|
nv = newnv(name, value, NULL, 0, NULL);
|
1995-04-28 10:54:58 +04:00
|
|
|
if (ht_insert(ht, name, nv) == 0) {
|
|
|
|
**nppp = nv;
|
|
|
|
*nppp = &nv->nv_next;
|
|
|
|
return (0);
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
1995-04-28 10:54:58 +04:00
|
|
|
|
|
|
|
/* oops, already got that option */
|
|
|
|
nvfree(nv);
|
|
|
|
if ((nv = ht_lookup(ht, name)) == NULL)
|
|
|
|
panic("do_option");
|
1998-06-30 07:30:56 +04:00
|
|
|
if (nv->nv_str != NULL && !OPT_FSOPT(name))
|
1995-04-28 10:54:58 +04:00
|
|
|
error("already have %s `%s=%s'", type, name, nv->nv_str);
|
|
|
|
else
|
|
|
|
error("already have %s `%s'", type, name);
|
|
|
|
return (1);
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
|
1993-04-10 16:11:55 +04:00
|
|
|
/*
|
1995-04-28 10:54:58 +04:00
|
|
|
* Return true if there is at least one instance of the given unit
|
1996-03-17 05:08:22 +03:00
|
|
|
* on the given device attachment (or any units, if unit == WILD).
|
1993-04-10 16:11:55 +04:00
|
|
|
*/
|
1996-03-17 05:08:22 +03:00
|
|
|
int
|
|
|
|
deva_has_instances(deva, unit)
|
1997-10-18 11:58:56 +04:00
|
|
|
struct deva *deva;
|
1995-04-28 10:54:58 +04:00
|
|
|
int unit;
|
1993-04-10 16:11:55 +04:00
|
|
|
{
|
1997-10-18 11:58:56 +04:00
|
|
|
struct devi *i;
|
1993-04-10 16:11:55 +04:00
|
|
|
|
1995-04-28 10:54:58 +04:00
|
|
|
if (unit == WILD)
|
1996-03-17 05:08:22 +03:00
|
|
|
return (deva->d_ihead != NULL);
|
|
|
|
for (i = deva->d_ihead; i != NULL; i = i->i_asame)
|
1995-04-28 10:54:58 +04:00
|
|
|
if (unit == i->i_unit)
|
|
|
|
return (1);
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
1996-03-17 05:08:22 +03:00
|
|
|
/*
|
|
|
|
* Return true if there is at least one instance of the given unit
|
|
|
|
* on the given base (or any units, if unit == WILD).
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
devbase_has_instances(dev, unit)
|
1997-10-18 11:58:56 +04:00
|
|
|
struct devbase *dev;
|
1996-03-17 05:08:22 +03:00
|
|
|
int unit;
|
|
|
|
{
|
1997-10-18 11:58:56 +04:00
|
|
|
struct deva *da;
|
1996-03-17 05:08:22 +03:00
|
|
|
|
|
|
|
for (da = dev->d_ahead; da != NULL; da = da->d_bsame)
|
|
|
|
if (deva_has_instances(da, unit))
|
|
|
|
return (1);
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
1995-04-28 10:54:58 +04:00
|
|
|
static int
|
|
|
|
hasparent(i)
|
1997-10-18 11:58:56 +04:00
|
|
|
struct devi *i;
|
1995-04-28 10:54:58 +04:00
|
|
|
{
|
1997-10-18 11:58:56 +04:00
|
|
|
struct nvlist *nv;
|
1995-04-28 10:54:58 +04:00
|
|
|
int atunit = i->i_atunit;
|
|
|
|
|
1996-03-17 05:08:22 +03:00
|
|
|
/*
|
Fix PR 2218. As noted (both in mail from me included in the PR, and
in XXX-marked comments in the recent attachment changes), this was a
long-standing bug in config.
The problem: If a device is attached to a device via an attribute exported
by that device (i.e. foo* at bar0, where 'bar' exports an attribute that
'foo' attaches to), but the device attached to is not present in the
kernel configuration file, AND another device which exports an attribute
that 'foo' attaches to _is_ present (e.g. a device baz0, if one could
specify 'foo0 at baz0'), then: the configuration file will (incorrectly)
be accepted by config, and the resulting ioconf.c will include a bogus
cfdata entry for the device (in the example, 'foo*'). This typically
causes the resulting kernel to crash during autoconfiguration.
The solution: Be much more careful about keeping track of where a device
was attached, and, in particular, if a device was attached to another device,
_always_ keep track of what device it was attached to. Then, when
cross-checking, if the attached-to device isn't present, give up and do not
check attributes. Also, document the process much more thoroughly.
1996-03-17 10:05:50 +03:00
|
|
|
* We determine whether or not a device has a parent in in one
|
|
|
|
* of two ways:
|
|
|
|
* (1) If a parent device was named in the config file,
|
|
|
|
* i.e. cases (2) and (3) in sem.c:adddev(), then
|
|
|
|
* we search its devbase for a matching unit number.
|
|
|
|
* (2) If the device was attach to an attribute, then we
|
|
|
|
* search all attributes the device can be attached to
|
|
|
|
* for parents (with appropriate unit numebrs) that
|
|
|
|
* may be able to attach the device.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Case (1): A parent was named. Either it's configured, or not.
|
|
|
|
*/
|
|
|
|
if (i->i_atdev != NULL)
|
|
|
|
return (devbase_has_instances(i->i_atdev, atunit));
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Case (2): No parent was named. Look for devs that provide the attr.
|
1996-03-17 05:08:22 +03:00
|
|
|
*/
|
1995-04-28 10:54:58 +04:00
|
|
|
if (i->i_atattr != NULL)
|
|
|
|
for (nv = i->i_atattr->a_refs; nv != NULL; nv = nv->nv_next)
|
1996-03-17 05:08:22 +03:00
|
|
|
if (devbase_has_instances(nv->nv_ptr, atunit))
|
1995-04-28 10:54:58 +04:00
|
|
|
return (1);
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
cfcrosscheck(cf, what, nv)
|
1997-10-18 11:58:56 +04:00
|
|
|
struct config *cf;
|
1995-04-28 10:54:58 +04:00
|
|
|
const char *what;
|
1997-10-18 11:58:56 +04:00
|
|
|
struct nvlist *nv;
|
1995-04-28 10:54:58 +04:00
|
|
|
{
|
1997-10-18 11:58:56 +04:00
|
|
|
struct devbase *dev;
|
|
|
|
struct devi *pd;
|
1997-05-25 22:42:54 +04:00
|
|
|
int errs, devunit;
|
1995-04-28 10:54:58 +04:00
|
|
|
|
1996-11-12 02:41:54 +03:00
|
|
|
if (maxpartitions <= 0)
|
|
|
|
panic("cfcrosscheck");
|
|
|
|
|
1995-04-28 10:54:58 +04:00
|
|
|
for (errs = 0; nv != NULL; nv = nv->nv_next) {
|
|
|
|
if (nv->nv_name == NULL)
|
|
|
|
continue;
|
|
|
|
dev = ht_lookup(devbasetab, nv->nv_name);
|
|
|
|
if (dev == NULL)
|
|
|
|
panic("cfcrosscheck(%s)", nv->nv_name);
|
1997-05-25 22:42:54 +04:00
|
|
|
if (has_attr(dev->d_attrs, s_ifnet))
|
|
|
|
devunit = nv->nv_ifunit; /* XXX XXX XXX */
|
|
|
|
else
|
|
|
|
devunit = minor(nv->nv_int) / maxpartitions;
|
|
|
|
if (devbase_has_instances(dev, devunit))
|
1996-03-17 05:08:22 +03:00
|
|
|
continue;
|
|
|
|
if (devbase_has_instances(dev, STAR) &&
|
1997-05-25 22:42:54 +04:00
|
|
|
devunit >= dev->d_umax)
|
1995-04-28 10:54:58 +04:00
|
|
|
continue;
|
|
|
|
for (pd = allpseudo; pd != NULL; pd = pd->i_next)
|
1997-05-25 22:42:54 +04:00
|
|
|
if (pd->i_base == dev && devunit < dev->d_umax &&
|
|
|
|
devunit >= 0)
|
1995-04-28 10:54:58 +04:00
|
|
|
goto loop;
|
|
|
|
(void)fprintf(stderr,
|
1998-05-22 23:29:00 +04:00
|
|
|
"%s:%d: %s says %s on %s, but there's no %s\n",
|
1995-04-28 10:54:58 +04:00
|
|
|
conffile, cf->cf_lineno,
|
|
|
|
cf->cf_name, what, nv->nv_str, nv->nv_str);
|
|
|
|
errs++;
|
|
|
|
loop:
|
1993-04-10 16:11:55 +04:00
|
|
|
}
|
1995-04-28 10:54:58 +04:00
|
|
|
return (errs);
|
1993-04-10 16:11:55 +04:00
|
|
|
}
|
1995-04-28 10:54:58 +04:00
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
/*
|
1995-04-28 10:54:58 +04:00
|
|
|
* Cross-check the configuration: make sure that each target device
|
|
|
|
* or attribute (`at foo[0*?]') names at least one real device. Also
|
1997-06-12 19:03:09 +04:00
|
|
|
* see that the root and dump devices for all configurations are there.
|
1993-03-21 12:45:37 +03:00
|
|
|
*/
|
1995-04-28 10:54:58 +04:00
|
|
|
int
|
|
|
|
crosscheck()
|
1993-03-21 12:45:37 +03:00
|
|
|
{
|
1997-10-18 11:58:56 +04:00
|
|
|
struct devi *i;
|
|
|
|
struct config *cf;
|
1995-04-28 10:54:58 +04:00
|
|
|
int errs;
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1995-04-28 10:54:58 +04:00
|
|
|
errs = 0;
|
|
|
|
for (i = alldevi; i != NULL; i = i->i_next) {
|
|
|
|
if (i->i_at == NULL || hasparent(i))
|
|
|
|
continue;
|
|
|
|
xerror(conffile, i->i_lineno,
|
|
|
|
"%s at %s is orphaned", i->i_name, i->i_at);
|
1996-03-17 05:08:22 +03:00
|
|
|
(void)fprintf(stderr, " (%s %s declared)\n",
|
|
|
|
i->i_atunit == WILD ? "nothing matching" : "no",
|
|
|
|
i->i_at);
|
1995-04-28 10:54:58 +04:00
|
|
|
errs++;
|
|
|
|
}
|
|
|
|
if (allcf == NULL) {
|
|
|
|
(void)fprintf(stderr, "%s has no configurations!\n",
|
|
|
|
conffile);
|
|
|
|
errs++;
|
|
|
|
}
|
|
|
|
for (cf = allcf; cf != NULL; cf = cf->cf_next) {
|
1997-06-12 19:03:09 +04:00
|
|
|
if (cf->cf_root != NULL) { /* i.e., not root on ? */
|
1995-04-28 10:54:58 +04:00
|
|
|
errs += cfcrosscheck(cf, "root", cf->cf_root);
|
|
|
|
errs += cfcrosscheck(cf, "dumps", cf->cf_dump);
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
}
|
1995-04-28 10:54:58 +04:00
|
|
|
return (errs);
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
1996-03-17 05:08:22 +03:00
|
|
|
* Check to see if there is a *'d unit with a needs-count file.
|
1993-03-21 12:45:37 +03:00
|
|
|
*/
|
1995-04-28 10:54:58 +04:00
|
|
|
int
|
|
|
|
badstar()
|
1993-03-21 12:45:37 +03:00
|
|
|
{
|
1997-10-18 11:58:56 +04:00
|
|
|
struct devbase *d;
|
|
|
|
struct deva *da;
|
|
|
|
struct devi *i;
|
|
|
|
int errs, n;
|
1995-04-28 10:54:58 +04:00
|
|
|
|
|
|
|
errs = 0;
|
|
|
|
for (d = allbases; d != NULL; d = d->d_next) {
|
1996-03-17 05:08:22 +03:00
|
|
|
for (da = d->d_ahead; da != NULL; da = da->d_bsame)
|
|
|
|
for (i = da->d_ihead; i != NULL; i = i->i_asame) {
|
|
|
|
if (i->i_unit == STAR)
|
|
|
|
goto foundstar;
|
|
|
|
}
|
1995-04-28 10:54:58 +04:00
|
|
|
continue;
|
|
|
|
foundstar:
|
|
|
|
if (ht_lookup(needcnttab, d->d_name)) {
|
|
|
|
(void)fprintf(stderr,
|
|
|
|
"config: %s's cannot be *'d until its driver is fixed\n",
|
|
|
|
d->d_name);
|
|
|
|
errs++;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
for (n = 0; i != NULL; i = i->i_alias)
|
|
|
|
if (!i->i_collapsed)
|
|
|
|
n++;
|
|
|
|
if (n < 1)
|
|
|
|
panic("badstar() n<1");
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
1995-04-28 10:54:58 +04:00
|
|
|
return (errs);
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
1996-11-12 02:41:54 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Verify/create builddir if necessary, change to it, and verify srcdir.
|
|
|
|
* This will be called when we see the first include.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
setupdirs()
|
|
|
|
{
|
|
|
|
struct stat st;
|
|
|
|
|
|
|
|
/* srcdir must be specified if builddir is not specified or if
|
|
|
|
* no configuration filename was specified. */
|
|
|
|
if ((builddir || strcmp(defbuilddir, ".") == 0) && !srcdir) {
|
|
|
|
error("source directory must be specified");
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (srcdir == NULL)
|
|
|
|
srcdir = "../../../..";
|
|
|
|
if (builddir == NULL)
|
|
|
|
builddir = defbuilddir;
|
|
|
|
|
|
|
|
if (stat(builddir, &st) != 0) {
|
|
|
|
if (mkdir(builddir, 0777)) {
|
|
|
|
(void)fprintf(stderr, "config: cannot create %s: %s\n",
|
|
|
|
builddir, strerror(errno));
|
|
|
|
exit(2);
|
|
|
|
}
|
|
|
|
} else if (!S_ISDIR(st.st_mode)) {
|
|
|
|
(void)fprintf(stderr, "config: %s is not a directory\n",
|
|
|
|
builddir);
|
|
|
|
exit(2);
|
|
|
|
}
|
|
|
|
if (chdir(builddir) != 0) {
|
|
|
|
(void)fprintf(stderr, "config: cannot change to %s\n",
|
|
|
|
builddir);
|
|
|
|
exit(2);
|
|
|
|
}
|
|
|
|
if (stat(srcdir, &st) != 0 || !S_ISDIR(st.st_mode)) {
|
|
|
|
(void)fprintf(stderr, "config: %s is not a directory\n",
|
|
|
|
srcdir);
|
|
|
|
exit(2);
|
|
|
|
}
|
|
|
|
}
|