187 lines
4.7 KiB
C
187 lines
4.7 KiB
C
/* $NetBSD: lint.c,v 1.4 2007/01/10 15:17:43 cube Exp $ */
|
|
|
|
/*
|
|
* Copyright (c) 2007 The NetBSD Foundation.
|
|
* All rights reserved.
|
|
*
|
|
* This code is derived from software contributed to the NetBSD Foundation
|
|
* by Quentin Garnier.
|
|
*
|
|
* 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 NetBSD Foundation 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 NETBSD FOUNDATION, INC. 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 FOUNDATION 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.
|
|
*/
|
|
|
|
#if HAVE_NBTOOL_CONFIG_H
|
|
#include "nbtool_config.h"
|
|
#endif
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include "defs.h"
|
|
|
|
void
|
|
emit_params()
|
|
{
|
|
|
|
printf("version\t%d\n", CONFIG_VERSION);
|
|
printf("ident\t\"LINT_%s\"\n", conffile);
|
|
printf("maxusers\t%d\n", defmaxusers);
|
|
printf("config netbsdlint root on ?\n");
|
|
printf("\n");
|
|
}
|
|
|
|
enum opt_types {
|
|
OT_FLAG,
|
|
OT_PARAM,
|
|
OT_FS
|
|
};
|
|
|
|
static struct opt_type {
|
|
enum opt_types ot_type;
|
|
const char *ot_name;
|
|
struct hashtab **ot_ht;
|
|
} opt_types[] = {
|
|
{ OT_FLAG, "options", &opttab },
|
|
{ OT_PARAM, "options", &opttab },
|
|
{ OT_FS, "file-system", &fsopttab },
|
|
};
|
|
|
|
static int
|
|
do_emit_option(const char *name, void *value, void *v)
|
|
{
|
|
struct nvlist *nv = value;
|
|
const struct opt_type *ot = v;
|
|
|
|
if (nv->nv_flags & NV_OBSOLETE)
|
|
return 0;
|
|
|
|
if (ht_lookup(*(ot->ot_ht), name))
|
|
return 0;
|
|
|
|
printf("%s\t%s", ot->ot_name, nv->nv_name);
|
|
if (ot->ot_type == OT_PARAM) {
|
|
struct nvlist *nv2 = ht_lookup(defoptlint, nv->nv_name);
|
|
if (nv2 == NULL)
|
|
nv2 = nv;
|
|
printf("=\"%s\"", nv2->nv_str ? nv2->nv_str : "1");
|
|
}
|
|
printf("\n");
|
|
|
|
return 1;
|
|
}
|
|
|
|
|
|
void
|
|
emit_options()
|
|
{
|
|
|
|
(void)ht_enumerate(defflagtab, do_emit_option, &opt_types[0]);
|
|
printf("\n");
|
|
(void)ht_enumerate(defparamtab, do_emit_option, &opt_types[1]);
|
|
printf("\n");
|
|
(void)ht_enumerate(deffstab, do_emit_option, &opt_types[2]);
|
|
printf("\n");
|
|
}
|
|
|
|
static void
|
|
do_emit_instances(struct devbase *d, struct attr *at)
|
|
{
|
|
struct nvlist *nv, *nv1;
|
|
struct attr *a;
|
|
struct deva *da;
|
|
|
|
/*
|
|
* d_isdef is used to check whether a deva has been seen or not,
|
|
* for there are devices that can be their own ancestor (e.g.
|
|
* uhub, pci).
|
|
*/
|
|
|
|
if (at != NULL) {
|
|
for (da = d->d_ahead; da != NULL; da = da->d_bsame)
|
|
if (onlist(da->d_atlist, at))
|
|
break;
|
|
if (da == NULL)
|
|
panic("do_emit_instances: no deva found for %s at %s",
|
|
d->d_name, at->a_name);
|
|
|
|
if (da->d_isdef > 1)
|
|
return;
|
|
da->d_isdef = 2;
|
|
}
|
|
|
|
if (at == NULL && !d->d_ispseudo)
|
|
printf("%s0\tat\troot\n", d->d_name);
|
|
else if (!d->d_ispseudo) {
|
|
printf("%s0\tat\t%s?", d->d_name, at->a_name);
|
|
|
|
for (nv = at->a_locs; nv != NULL; nv = nv->nv_next) {
|
|
if (nv->nv_int == 0)
|
|
printf(" %s %c", nv->nv_name,
|
|
nv->nv_str ? '?' : '0');
|
|
}
|
|
|
|
printf("\n");
|
|
}
|
|
|
|
/*
|
|
* Children attachments are found the same way as in the orphan
|
|
* detection code in main.c.
|
|
*/
|
|
for (nv = d->d_attrs; nv != NULL; nv = nv->nv_next) {
|
|
a = nv->nv_ptr;
|
|
for (nv1 = a->a_devs; nv1 != NULL; nv1 = nv1->nv_next)
|
|
do_emit_instances(nv1->nv_ptr, a);
|
|
}
|
|
}
|
|
|
|
/* ARGSUSED */
|
|
static int
|
|
emit_root_instance(const char *name, void *value, void *v)
|
|
{
|
|
|
|
do_emit_instances((struct devbase *)value, NULL);
|
|
|
|
return 1;
|
|
}
|
|
|
|
/* ARGSUSED */
|
|
static int
|
|
emit_pseudo_instance(const char *name, void *value, void *v)
|
|
{
|
|
struct devbase *d = value;
|
|
|
|
if (d->d_ispseudo)
|
|
printf("pseudo-device\t%s\n", d->d_name);
|
|
return 0;
|
|
}
|
|
|
|
void
|
|
emit_instances()
|
|
{
|
|
|
|
(void)ht_enumerate(devroottab, emit_root_instance, NULL);
|
|
printf("\n");
|
|
(void)ht_enumerate(devbasetab, emit_pseudo_instance, NULL);
|
|
}
|