/* $NetBSD: main.c,v 1.102 2025/01/07 14:21:11 joe Exp $ */
/*
* 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.
*
* 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. 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.
*
* from: @(#)main.c 8.1 (Berkeley) 6/6/93
*/
int lkmmode;
const char *conffile; /* source file, e.g., "GENERIC.sparc" */
const char *machine; /* machine type, e.g., "sparc" or "sun3" */
const char *machinearch; /* machine arch, e.g., "sparc" or "m68k" */
struct nvlist *machinesubarches;
/* machine subarches, e.g., "sun68k" or "hpc" */
const char *ioconfname; /* ioconf name, mutually exclusive to machine */
const char *srcdir; /* path to source directory (rel. to build) */
const char *builddir; /* path to build directory */
const char *defbuilddir; /* default build directory */
const char *ident; /* kernel "ident"ification string */
int errors; /* counts calls to error() */
int minmaxusers; /* minimum "maxusers" parameter */
int defmaxusers; /* default "maxusers" parameter */
int maxmaxusers; /* default "maxusers" parameter */
int maxusers; /* configuration's "maxusers" parameter */
int maxpartitions; /* configuration's "maxpartitions" parameter */
int version; /* version of the configuration file */
struct nvlist *options; /* options */
struct nvlist *fsoptions; /* filesystems */
struct nvlist *mkoptions; /* makeoptions */
struct nvlist *appmkoptions; /* appending mkoptions */
struct nvlist *condmkoptions; /* conditional makeoption table */
struct hashtab *devbasetab; /* devbase lookup */
struct hashtab *devroottab; /* attach at root lookup */
struct hashtab *devatab; /* devbase attachment lookup */
struct hashtab *deaddevitab; /* removed instances lookup */
struct hashtab *selecttab; /* selects things that are "optional foo" */
struct hashtab *needcnttab; /* retains names marked "needs-count" */
struct hashtab *opttab; /* table of configured options */
struct hashtab *fsopttab; /* table of configured file systems */
struct dlhash *defopttab; /* options that have been "defopt"'d */
struct dlhash *defflagtab; /* options that have been "defflag"'d */
struct dlhash *defparamtab; /* options that have been "defparam"'d */
struct dlhash *defoptlint; /* lint values for options */
struct nvhash *deffstab; /* defined file systems */
struct dlhash *optfiletab; /* "defopt"'d option .h files */
struct hashtab *attrtab; /* attributes (locators, etc.) */
struct hashtab *attrdeptab; /* attribute dependencies */
struct hashtab *bdevmtab; /* block devm lookup */
struct hashtab *cdevmtab; /* character devm lookup */
int ndevi; /* number of devi's (before packing) */
int npspecs; /* number of parent specs */
devmajor_t maxbdevm; /* max number of block major */
devmajor_t maxcdevm; /* max number of character major */
int do_devsw; /* 0 if pre-devsw config */
int oktopackage; /* 0 before setmachine() */
int devilevel; /* used for devi->i_level */
struct filelist allfiles; /* list of all kernel source files */
struct filelist allcfiles; /* list of all .c files */
struct filelist allsfiles; /* list of all .S files */
struct filelist allofiles; /* list of all .o files */
struct prefixlist prefixes, /* prefix stack */
allprefixes; /* all prefixes used (after popped) */
struct prefixlist buildprefixes, /* build prefix stack */
allbuildprefixes;/* all build prefixes used (after popped) */
int vflag; /* verbose output */
int Pflag; /* pack locators */
int Lflag; /* lint config generation */
int Mflag; /* modular build */
int Sflag; /* suffix rules & subdirectory */
int handling_cmdlineopts; /* currently processing -D/-U options */
int yyparse(void);
#if !defined(MAKE_BOOTSTRAP) && defined(YYDEBUG)
extern int yydebug;
#endif
int dflag;
case 'g':
/*
* 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.
*/
warnx("-g is obsolete (use -D DEBUG=\"-g\")");
usage();
/*NOTREACHED*/
case 'p':
/*
* Essentially the same as makeoptions PROF="-pg",
* but also changes the path from ../../compile/FOO
* to ../../compile/FOO.PROF; i.e., compile a
* 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;
break;
case 'v':
vflag = 1;
break;
case 'b':
builddir = optarg;
break;
case 's':
srcdir = optarg;
break;
case 'S':
Sflag = 1;
break;
case 'x':
xflag = 1;
break;
case 'D':
add_makeopt(optarg);
break;
case 'U':
remove_makeopt(optarg);
break;
case '?':
default:
usage();
}
}
if (xflag && optind != 2) {
errx(EXIT_FAILURE, "-x must be used alone");
}
printf("Using configuration data embedded in kernel...\n");
if (!extract_config(conffile, cname, cfd)) {
unlink(cname);
errx(EXIT_FAILURE, "%s does not contain embedded "
"configuration data", conffile);
}
removeit = 1;
close(cfd);
firstfile(cname);
}
/*
* Log config file. We don't know until yyparse() if we're
* going to need config_file.h (i.e. if we're doing ioconf-only
* or not). Just start creating the file, and when we know
* later, we'll just keep or discard our work here.
*/
logconfig_start();
/*
* If working on an ioconf-only config, process here and exit
*/
if (ioconfname) {
yyfile = "pack";
pack();
yyfile = "mkioconf";
mkioconf();
yyfile = "emitlocs";
emitlocs();
yyfile = "emitioconfh";
emitioconfh();
return 0;
}
/*
* Perform cross-checking.
*/
if (maxusers == 0) {
if (defmaxusers) {
(void)printf("maxusers not specified; %d assumed\n",
defmaxusers);
maxusers = defmaxusers;
} else {
warnx("need \"maxusers\" line");
errors++;
}
}
if (crosscheck() || errors)
stop();
/*
* Squeeze things down and finish cross-checks (STAR checks must
* run after packing).
*/
yyfile = "pack";
pack();
yyfile = "badstar";
if (badstar())
stop();
yyfile = NULL;
/*
* Ready to go. Build all the various files.
*/
if ((Sflag && mkallsubdirs()) || mksymlinks() || mkmakefile() || mkheaders() || mkswap() ||
mkioconf() || (do_devsw ? mkdevsw() : 0) || mkident() || errors)
stop();
(void)printf("Build directory is %s\n", builddir);
(void)printf("Don't forget to run \"make depend\"\n");
if (nv != NULL && (nv->nv_flags & NV_DEPENDED) == 0) {
nv->nv_flags |= NV_DEPENDED;
/*
* If the dependency is an attribute, then just add
* it to the selecttab.
*/
CFGDBG(3, "depend attr `%s'", nv->nv_name);
if ((a = ht_lookup(attrtab, nv->nv_name)) != NULL) {
if (a->a_iattr)
panic("do_depend(%s): dep `%s' is an iattr",
nv->nv_name, a->a_name);
expandattr(a, selectattr);
} else {
if (ht_lookup(opttab, nv->nv_name) == NULL)
addoption(nv->nv_name, NULL);
dependopts_one(nv->nv_name);
}
}
}
static int
recreate(const char *p, const char *q)
{
int ret;
if ((ret = unlink(q)) == -1 && errno != ENOENT)
warn("unlink(%s)", q);
if ((ret = symlink(p, q)) == -1)
warn("symlink(%s -> %s)", q, p);
return ret;
}
static void
mksubdir(char *buf)
{
char *p;
struct stat st;
p = strrchr(buf, '/');
if (p != NULL && *p == '/') {
*p = '\0';
mksubdir(buf);
*p = '/';
}
if (stat(buf, &st) == 0) {
if (!S_ISDIR(st.st_mode))
errx(EXIT_FAILURE, "not directory %s", buf);
} else
if (mkdir(buf, 0777) == -1)
errx(EXIT_FAILURE, "cannot create %s", buf);
}
/*
* Make a symlink for "machine" so that "#include <machine/foo.h>" works,
* and for the machine's CPU architecture, so that works as well.
*/
static int
mksymlinks(void)
{
int ret;
char *p, buf[MAXPATHLEN];
const char *q;
struct nvlist *nv;
p = buf;
snprintf(buf, sizeof(buf), "%s/arch/%s/include", srcdir, machine);
ret = recreate(p, "machine");
ret = recreate(p, machine);
for (dep = deps; dep != NULL; dep = dep->nv_next) {
/*
* If the dependency is an attribute, it must not
* be an interface attribute. Otherwise, it must
* be a previously declared option.
*/
if ((a = ht_lookup(attrtab, dep->nv_name)) != NULL) {
if (a->a_iattr)
cfgerror("option `%s' dependency `%s' "
"is an interface attribute",
thing, a->a_name);
} else if (OPT_OBSOLETE(dep->nv_name)) {
cfgerror("option `%s' dependency `%s' "
"is obsolete", thing, dep->nv_name);
} else if (!find_declared_option(dep->nv_name)) {
cfgerror("option `%s' dependency `%s' "
"is an unknown option",
thing, dep->nv_name);
}
}
}
static void
add_fs_dependencies(struct nvlist *nv, struct nvlist *deps)
{
/* Use nv_ptr to link any other options that are implied. */
nv->nv_ptr = deps;
check_dependencies(nv->nv_name, deps);
}
/*
* Define one or more file systems.
*/
void
deffilesystem(struct nvlist *fses, struct nvlist *deps)
{
struct nvlist *nv;
struct where *w;
/*
* Mark these options as ones to skip when creating the Makefile.
*/
for (nv = fses; nv != NULL; nv = nv->nv_next) {
if ((w = DEFINED_OPTION(nv->nv_name)) != NULL) {
cfgerror("file system or option `%s' already defined"
" at %s:%hu", nv->nv_name, w->w_srcfile,
w->w_srcline);
return;
}
/*
* Also mark it as a valid file system, which may be
* used in "file-system" directives in the config
* file.
*/
if (nvhash_insert(deffstab, nv->nv_name, nv))
panic("file system `%s' already in table?!",
nv->nv_name);
add_fs_dependencies(nv, deps);
/*
* Implicit attribute definition for filesystem.
*/
const char *n;
n = strtolower(nv->nv_name);
refattr(n);
}
}
/*
* Sanity check a file name.
*/
int
badfilename(const char *fname)
{
const char *n;
/*
* We're putting multiple options into one file. Sanity
* check the file name.
*/
if (strchr(fname, '/') != NULL) {
cfgerror("option file name contains a `/'");
return 1;
}
if ((n = strrchr(fname, '.')) == NULL || strcmp(n, ".h") != 0) {
cfgerror("option file name does not end in `.h'");
return 1;
}
return 0;
}
/*
* Search for a defined option (defopt, filesystem, etc), and if found,
* return the option's struct nvlist.
*
* This used to be one function (find_declared_option) before options
* and filesystems became different types.
*/
struct defoptlist *
find_declared_option_option(const char *name)
{
struct defoptlist *option;
/*
* Like find_declared_option but doesn't return what it finds, so it
* can search both the various kinds of options and also filesystems.
*/
struct where *
find_declared_option(const char *name)
{
struct defoptlist *option = NULL;
struct nvlist *fs;
/*
* 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.
* record the option information in the specified table.
*/
void
defopt(struct dlhash *ht, const char *fname, struct defoptlist *opts,
struct nvlist *deps, int obs)
{
struct defoptlist *dl, *nextdl, *olddl;
const char *name;
struct where *w;
char buf[500];
if (fname != NULL && badfilename(fname)) {
return;
}
/*
* Mark these options as ones to skip when creating the Makefile.
*/
for (dl = opts; dl != NULL; dl = nextdl) {
nextdl = dl->dl_next;
if (dl->dl_lintvalue != NULL) {
/*
* If an entry already exists, then we are about to
* complain, so no worry.
*/
(void) dlhash_insert(defoptlint, dl->dl_name,
dl);
}
/* An option name can be declared at most once. */
if ((w = DEFINED_OPTION(dl->dl_name)) != NULL) {
cfgerror("file system or option `%s' already defined"
" at %s:%hu", dl->dl_name, w->w_srcfile,
w->w_srcline);
return;
}
if (dlhash_insert(ht, dl->dl_name, dl)) {
cfgerror("file system or option `%s' already defined"
" at %s:%hu", dl->dl_name, dl->dl_where.w_srcfile,
dl->dl_where.w_srcline);
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) snprintf(buf, sizeof(buf), "opt_%s.h",
strtolower(dl->dl_name));
name = intern(buf);
} else {
name = fname;
}
add_opt_dependencies(dl, deps);
/*
* Remove this option from the parameter list before adding
* it to the list associated with this option file.
*/
dl->dl_next = NULL;
/*
* Flag as obsolete, if requested.
*/
if (obs) {
dl->dl_obsolete = 1;
(void)dlhash_insert(obsopttab, dl->dl_name, dl);
}
/*
* Add this option file if we haven't seen it yet.
* Otherwise, append to the list of options already
* associated with this file.
*/
if ((olddl = dlhash_lookup(optfiletab, name)) == NULL) {
(void)dlhash_insert(optfiletab, name, dl);
} else {
while (olddl->dl_next != NULL)
olddl = olddl->dl_next;
olddl->dl_next = dl;
}
}
}
/*
* Specify that a defined option should have a Makefile variable created.
*/
static void
mkoptvar(struct dlhash *ht, struct defoptlist *opts)
{
struct defoptlist *dl, *defined_dl;
for (dl = opts; dl != NULL; dl = dl->dl_next) {
defined_dl = dlhash_lookup(ht, dl->dl_name);
if (defined_dl == NULL) {
cfgerror("option `%s' not defined"
" at %s:%hu", dl->dl_name, dl->dl_where.w_srcfile,
dl->dl_where.w_srcline);
continue;
}
defined_dl->dl_mkvar = 1;
}
defoptlist_destroy(dl);
}
/*
* 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(const char *fname, struct defoptlist *opts, struct nvlist *deps)
{
cfgwarn("The use of `defopt' is deprecated");
defopt(defopttab, fname, opts, deps, 0);
}
/*
* Define an option for which a value is required.
*/
void
defparam(const char *fname, struct defoptlist *opts, struct nvlist *deps, int obs)
{
defopt(defparamtab, fname, opts, deps, obs);
}
/*
* Define an option which must not have a value, and which
* emits a "needs-flag" style output.
*/
void
defflag(const char *fname, struct defoptlist *opts, struct nvlist *deps, int obs)
{
defopt(defflagtab, fname, opts, deps, obs);
}
/*
* Specify that a defined flag option should have a Makefile variable
* created.
*/
void
mkflagvar(struct defoptlist *opts)
{
mkoptvar(defflagtab, opts);
}
/*
* Add an option from "options FOO". Note that this selects things that
* are "optional foo".
*/
void
addoption(const char *name, const char *value)
{
const char *n;
int is_fs, is_param, is_flag, is_undecl, is_obs;
/*
* 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.
*/
is_fs = OPT_FSOPT(name);
is_param = OPT_DEFPARAM(name);
is_flag = OPT_DEFFLAG(name);
is_obs = OPT_OBSOLETE(name);
is_undecl = !DEFINED_OPTION(name);
/* Warn and pretend the user had not selected the option */
if (is_obs) {
cfgwarn("obsolete option `%s' will be ignored", name);
return;
}
/* Make sure this is not a defined file system. */
if (is_fs) {
cfgerror("`%s' is a defined file system", name);
return;
}
/* A defparam must have a value */
if (is_param && value == NULL) {
cfgerror("option `%s' must have a value", name);
return;
}
/* A defflag must not have a value */
if (is_flag && value != NULL) {
cfgerror("option `%s' must not have a value", name);
return;
}
if (is_undecl && vflag) {
cfgwarn("undeclared option `%s' added to IDENT", name);
}
if (do_option(opttab, &options, &nextopt, name, value, "options",
selecttab))
return;
/* make lowercase, then add to select table */
n = strtolower(name);
(void)ht_insert(selecttab, n, (void *)__UNCONST(n));
CFGDBG(3, "option selected `%s'", n);
}
/*
* 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(const char *name)
{
const char *n;
/* Make sure this is a defined file system. */
if (!OPT_FSOPT(name)) {
cfgerror("`%s' is not a defined file system", name);
return;
}
/*
* Convert to lower case. This will be used in the select
* table, to verify root file systems.
*/
n = strtolower(name);
if (do_option(fsopttab, &fsoptions, &nextfsopt, name, n, "file-system",
selecttab))
return;
/* Add to select table. */
(void)ht_insert(selecttab, n, __UNCONST(n));
CFGDBG(3, "fs selected `%s'", name);
/*
* Select attribute if one exists.
*/
struct attr *a;
if ((a = ht_lookup(attrtab, n)) != NULL)
selectattr(a);
}
void
delfsoption(const char *name, int nowarn)
{
const char *n;
CFGDBG(4, "deselecting fs `%s'", name);
n = strtolower(name);
if (undo_option(fsopttab, &fsoptions, &nextfsopt, name, "file-system", nowarn))
return;
if (undo_option(selecttab, NULL, NULL, n, "file-system", nowarn))
return;
}
/*
* Remove a name from a hash table,
* and optionally, a name=value pair from an option list.
*/
static int
undo_option(struct hashtab *ht, struct nvlist **npp,
struct nvlist ***next, const char *name, const char *type, int nowarn)
{
struct nvlist *nv;
if (ht_remove(ht, name)) {
/*
* -U command line option removals are always silent
*/
if (!handling_cmdlineopts && !nowarn)
cfgwarn("%s `%s' is not defined", type, name);
return (1);
}
if (npp == NULL) {
CFGDBG(2, "opt `%s' deselected", name);
return (0);
}
for ( ; *npp != NULL; npp = &(*npp)->nv_next) {
if ((*npp)->nv_name != name)
continue;
if (next != NULL && *next == &(*npp)->nv_next)
*next = npp;
nv = (*npp)->nv_next;
CFGDBG(2, "opt `%s' deselected", (*npp)->nv_name);
nvfree(*npp);
*npp = nv;
return (0);
}
panic("%s `%s' is not defined in nvlist", type, name);
return (1);
}
/*
* Return true if there is at least one instance of the given unit
* on the given device attachment (or any units, if unit == WILD).
*/
int
deva_has_instances(struct deva *deva, int unit)
{
struct devi *i;
/*
* EHAMMERTOOBIG: we shouldn't check i_pseudoroot here.
* What we want by this check is them to appear non-present
* except for purposes of other devices being able to attach
* to them.
*/
for (i = deva->d_ihead; i != NULL; i = i->i_asame)
if (i->i_active == DEVI_ACTIVE && i->i_pseudoroot == 0 &&
(unit == WILD || unit == i->i_unit || i->i_unit == STAR))
return (1);
return (0);
}
/*
* 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(struct devbase *dev, int unit)
{
struct deva *da;
/*
* Pseudo-devices are a little special. We consider them
* to have instances only if they are both:
*
* 1. Included in this kernel configuration.
*
* 2. Be declared "defpseudodev".
*/
if (dev->d_ispseudo) {
return ((ht_lookup(devitab, dev->d_name) != NULL)
&& (dev->d_ispseudo > 1));
}
for (da = dev->d_ahead; da != NULL; da = da->d_bsame)
if (deva_has_instances(da, unit))
return (1);
return (0);
}
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);
if (has_attr(dev->d_attrs, s_ifnet))
devunit = nv->nv_ifunit; /* XXX XXX XXX */
else
devunit = (int)(minor(nv->nv_num) / maxpartitions);
if (devbase_has_instances(dev, devunit))
continue;
if (devbase_has_instances(dev, STAR) &&
devunit >= dev->d_umax)
continue;
TAILQ_FOREACH(pd, &allpseudo, i_next) {
if (pd->i_base == dev && devunit < dev->d_umax &&
devunit >= 0)
goto loop;
}
(void)fprintf(stderr,
"%s:%hu: %s says %s on %s, but there's no %s\n",
conffile, cf->cf_where.w_srcline,
cf->cf_name, what, nv->nv_str, nv->nv_str);
errs++;
loop:
;
}
return (errs);
}
/*
* Cross-check the configuration: make sure that each target device
* or attribute (`at foo[0*?]') names at least one real device. Also
* see that the root and dump devices for all configurations are there.
*/
int
crosscheck(void)
{
struct config *cf;
int errs;
errs = 0;
if (TAILQ_EMPTY(&allcf)) {
warnx("%s has no configurations!", conffile);
errs++;
}
TAILQ_FOREACH(cf, &allcf, cf_next) {
if (cf->cf_root != NULL) { /* i.e., not root on ? */
errs += cfcrosscheck(cf, "root", cf->cf_root);
errs += cfcrosscheck(cf, "dumps", cf->cf_dump);
}
}
return (errs);
}
/*
* Check to see if there is a *'d unit with a needs-count file.
*/
int
badstar(void)
{
struct devbase *d;
struct deva *da;
struct devi *i;
int errs, n;
errs = 0;
TAILQ_FOREACH(d, &allbases, d_next) {
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 aybabtu;
}
continue;
aybabtu:
if (ht_lookup(needcnttab, d->d_name)) {
warnx("%s's cannot be *'d until its driver is fixed",
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");
}
return (errs);
}
/*
* Verify/create builddir if necessary, change to it, and verify srcdir.
* This will be called when we see the first include.
*/
void
setupdirs(void)
{
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) {
cfgerror("source directory must be specified");
exit(1);
}
if (Lflag) {
if (srcdir == NULL)
srcdir = "../../..";
return;
}
if (srcdir == NULL)
srcdir = "../../../..";
if (builddir == NULL)
builddir = defbuilddir;
if (stat(builddir, &st) == -1) {
if (mkdir(builddir, 0777) == -1)
errx(EXIT_FAILURE, "cannot create %s", builddir);
} else if (!S_ISDIR(st.st_mode))
errx(EXIT_FAILURE, "%s is not a directory", builddir);
if (chdir(builddir) == -1)
err(EXIT_FAILURE, "cannot change to %s", builddir);
if (stat(srcdir, &st) == -1)
err(EXIT_FAILURE, "cannot stat %s", srcdir);
if (!S_ISDIR(st.st_mode))
errx(EXIT_FAILURE, "%s is not a directory", srcdir);
}
/*
* Write identifier from "ident" directive into file, for
* newvers.sh to pick it up.
*/
int
mkident(void)
{
FILE *fp;
int error = 0;
(void)unlink("ident");
if (ident == NULL)
return (0);
if ((fp = fopen("ident", "w")) == NULL) {
warn("cannot write ident");
return (1);
}
if (vflag)
(void)printf("using ident '%s'\n", ident);
fprintf(fp, "%s\n", ident);
fflush(fp);
if (ferror(fp))
error = 1;
(void)fclose(fp);
return error;
}
void
logconfig_start(void)
{
extern FILE *yyin;
char line[1024];
const char *tmpdir;
struct stat st;
int fd;
for (i = value; i != NULL; i = i->i_alias)
if (i->i_base == dhdi->d &&
(dhdi->unit == WILD || dhdi->unit == i->i_unit ||
i->i_unit == STAR) &&
i->i_level >= dhdi->level)
return 1;
return 0;
}
/*
* This is almost the same as devbase_has_instances, except it
* may have special considerations regarding ignored instances.
*/
static int
devbase_has_any_instance(struct devbase *dev, int unit, int state, int level)
{
struct deva *da;
struct devi *i;
if (dev->d_ispseudo) {
if (dev->d_ihead != NULL)
return 1;
else if (state != DEVI_IGNORED)
return 0;
if ((i = ht_lookup(deaddevitab, dev->d_name)) == NULL)
return 0;
return (i->i_level >= level);
}
for (da = dev->d_ahead; da != NULL; da = da->d_bsame)
for (i = da->d_ihead; i != NULL; i = i->i_asame)
if ((i->i_active == DEVI_ACTIVE ||
i->i_active == state) &&
(unit == WILD || unit == i->i_unit ||
i->i_unit == STAR))
return 1;
if (state == DEVI_IGNORED) {
struct dhdi_params dhdi = { dev, unit, level };
/* also check dead devices */
return ht_enumerate(deaddevitab, devbase_has_dead_instances,
&dhdi);
}
return 0;
}
/*
* check_dead_devi(), used with ht_enumerate, checks if any of the removed
* device instances would have been a valid instance considering the devbase,
* the parent device and the interface attribute.
*
* In other words, for a non-active device, it checks if children would be
* actual orphans or the result of a negative statement in the config file.
*/
/*
* A pseudo-device will always attach at root, and if it has an
* instance (it cannot have more than one), it is enough to consider
* it active, as there is no real attachment.
*
* A pseudo device can never be marked DEVI_IGNORED.
*/
if (d->d_ispseudo) {
if (d->d_ihead != NULL)
d->d_ihead->i_active = active = DEVI_ACTIVE;
else {
if (ht_lookup(deaddevitab, d->d_name) != NULL)
active = DEVI_IGNORED;
else
return;
}
} else {
int seen = 0;
int changed = 0;
for (i = d->d_ihead; i != NULL; i = i->i_bsame) {
for (j = i; j != NULL; j = j->i_alias) {
p = j->i_pspec;
if ((p == NULL && at == NULL) ||
(p != NULL && p->p_iattr == at &&
(p->p_atdev == NULL ||
p->p_atdev == parent))) {
if (p != NULL &&
!devbase_has_any_instance(parent,
p->p_atunit, state, j->i_level))
continue;
/*
* There are Fry-like devices which can
* be their own grand-parent (or even
* parent, like uhub). We don't want
* to loop, so if we've already reached
* an instance for one reason or
* another, stop there.
*/
if (j->i_active == DEVI_ACTIVE ||
j->i_active == state) {
/*
* Device has already been
* seen. However it might
* have siblings who still
* have to be activated or
* orphaned.
*/
seen = 1;
continue;
}
changed |= j->i_active != state;
j->i_active = active = state;
if (p != NULL) {
if (state == DEVI_ACTIVE ||
--p->p_ref == 0)
p->p_active = state;
}
if (state == DEVI_IGNORED) {
CFGDBG(5,
"`%s' at '%s' ignored",
d->d_name, parent ?
parent->d_name : "(root)");
}
}
}
}
/*
* If we've been there but have made no change, stop.
*/
if (seen && active != DEVI_ACTIVE)
goto out;
if (active != DEVI_ACTIVE) {
struct cdd_params cdd = { d, at, parent };
/* Look for a matching dead devi */
if (ht_enumerate(deaddevitab, check_dead_devi, &cdd) &&
d != parent) {
/*
* That device had its instances removed.
* Continue the loop marking descendants
* with DEVI_IGNORED instead of DEVI_ACTIVE.
*
* There is one special case for devices that
* are their own parent: if that instance is
* removed (e.g., no uhub* at uhub?), we don't
* have to continue looping.
*/
active = DEVI_IGNORED;
CFGDBG(5, "`%s' at '%s' ignored", d->d_name,
parent ? parent->d_name : "(root)");
} else if (!changed)
goto out;
}
}
for (al = d->d_attrs; al != NULL; al = al->al_next) {
a = al->al_this;
for (nv1 = a->a_devs; nv1 != NULL; nv1 = nv1->nv_next) {
do_kill_orphans(nv1->nv_ptr, a, d, active);
}
}
out:
d->d_levelparent = NULL;
d->d_level--;
}