1998-09-04 02:43:26 +00:00
|
|
|
/*
|
|
|
|
* mjs copyright
|
|
|
|
*/
|
|
|
|
/*
|
|
|
|
* "Plug and Play" functionality.
|
|
|
|
*
|
|
|
|
* We use the PnP enumerators to obtain identifiers for installed hardware,
|
|
|
|
* and the contents of a database to determine modules to be loaded to support
|
|
|
|
* such hardware.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stand.h>
|
1998-09-14 18:27:06 +00:00
|
|
|
#include <string.h>
|
1998-09-04 02:43:26 +00:00
|
|
|
#include <bootstrap.h>
|
|
|
|
|
|
|
|
static struct pnpinfo *pnp_devices = NULL;
|
|
|
|
|
1998-09-14 18:27:06 +00:00
|
|
|
static void pnp_discard(struct pnpinfo **list);
|
|
|
|
static int pnp_readconf(char *path);
|
|
|
|
static int pnp_scankernel(void);
|
1998-09-04 02:43:26 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Perform complete enumeration sweep, and load required module(s) if possible.
|
|
|
|
*/
|
|
|
|
|
1998-09-14 18:27:06 +00:00
|
|
|
COMMAND_SET(pnpscan, "pnpscan", "scan for PnP devices", pnp_scan);
|
|
|
|
|
1998-09-04 02:43:26 +00:00
|
|
|
int
|
1998-09-14 18:27:06 +00:00
|
|
|
pnp_scan(int argc, char *argv[])
|
1998-09-04 02:43:26 +00:00
|
|
|
{
|
1998-09-14 18:27:06 +00:00
|
|
|
int hdlr;
|
1998-09-04 02:43:26 +00:00
|
|
|
|
|
|
|
/* forget anything we think we knew */
|
1998-09-14 18:27:06 +00:00
|
|
|
pnp_discard(&pnp_devices);
|
1998-09-04 02:43:26 +00:00
|
|
|
|
|
|
|
/* iterate over all of the handlers */
|
1998-09-14 18:27:06 +00:00
|
|
|
for (hdlr = 0; pnphandlers[hdlr] != NULL; hdlr++) {
|
1998-09-04 02:43:26 +00:00
|
|
|
printf("Probing bus '%s'...\n", pnphandlers[hdlr]->pp_name);
|
1998-09-14 18:27:06 +00:00
|
|
|
pnphandlers[hdlr]->pp_enumerate(&pnp_devices);
|
1998-09-04 02:43:26 +00:00
|
|
|
}
|
1998-09-14 18:27:06 +00:00
|
|
|
return(CMD_OK);
|
1998-09-04 02:43:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Try to load outstanding modules (eg. after disk change)
|
|
|
|
*/
|
|
|
|
int
|
1998-09-14 18:27:06 +00:00
|
|
|
pnp_reload(char *fname)
|
1998-09-04 02:43:26 +00:00
|
|
|
{
|
|
|
|
struct pnpinfo *pi;
|
|
|
|
char *modfname;
|
|
|
|
|
1998-09-14 18:27:06 +00:00
|
|
|
/* find anything? */
|
|
|
|
if (pnp_devices != NULL) {
|
|
|
|
|
|
|
|
/* check for kernel, assign modules handled by static drivers there */
|
|
|
|
if (pnp_scankernel()) {
|
|
|
|
command_errmsg = "cannot load drivers until kernel loaded";
|
|
|
|
return(CMD_ERROR);
|
|
|
|
}
|
|
|
|
if (fname == NULL) {
|
|
|
|
/* default paths */
|
|
|
|
pnp_readconf("/boot/pnpdata.local");
|
|
|
|
pnp_readconf("/boot/pnpdata");
|
|
|
|
} else {
|
|
|
|
if (pnp_readconf("fname")) {
|
|
|
|
sprintf(command_errbuf, "can't read PnP information from '%s'", fname);
|
|
|
|
return(CMD_ERROR);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* try to load any modules that have been nominated */
|
|
|
|
for (pi = pnp_devices; pi != NULL; pi = pi->pi_next) {
|
|
|
|
/* Already loaded? */
|
|
|
|
if ((pi->pi_module != NULL) && (mod_findmodule(pi->pi_module, NULL) == NULL)) {
|
|
|
|
modfname = malloc(strlen(pi->pi_module + 3));
|
|
|
|
sprintf(modfname, "%s.ko", pi->pi_module); /* XXX implicit knowledge of KLD module filenames */
|
|
|
|
if (mod_load(pi->pi_module, pi->pi_argc, pi->pi_argv))
|
|
|
|
printf("Could not load module '%s' for device '%s'\n", modfname, pi->pi_ident->id_ident);
|
|
|
|
free(modfname);
|
|
|
|
}
|
1998-09-04 02:43:26 +00:00
|
|
|
}
|
|
|
|
}
|
1998-09-14 18:27:06 +00:00
|
|
|
return(CMD_OK);
|
1998-09-04 02:43:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
1998-09-14 18:27:06 +00:00
|
|
|
* Throw away anything we think we know about PnP devices on (list)
|
1998-09-04 02:43:26 +00:00
|
|
|
*/
|
|
|
|
static void
|
1998-09-14 18:27:06 +00:00
|
|
|
pnp_discard(struct pnpinfo **list)
|
1998-09-04 02:43:26 +00:00
|
|
|
{
|
|
|
|
struct pnpinfo *pi;
|
1998-09-14 18:27:06 +00:00
|
|
|
struct pnpident *id;
|
1998-09-04 02:43:26 +00:00
|
|
|
|
1998-09-14 18:27:06 +00:00
|
|
|
while (*list != NULL) {
|
|
|
|
pi = *list;
|
|
|
|
*list = (*list)->pi_next;
|
|
|
|
while (pi->pi_ident) {
|
|
|
|
id = pi->pi_ident;
|
|
|
|
pi->pi_ident = pi->pi_ident->id_next;
|
|
|
|
free(id);
|
|
|
|
}
|
1998-09-04 02:43:26 +00:00
|
|
|
if (pi->pi_module)
|
|
|
|
free(pi->pi_module);
|
|
|
|
if (pi->pi_argv)
|
|
|
|
free(pi->pi_argv);
|
|
|
|
free(pi);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* The PnP configuration database consists of a flat text file with
|
|
|
|
* entries one per line. Valid lines are:
|
|
|
|
*
|
|
|
|
* # <text>
|
|
|
|
*
|
|
|
|
* This line is a comment, and ignored.
|
|
|
|
*
|
|
|
|
* [<name>]
|
|
|
|
*
|
|
|
|
* Entries following this line are for devices connected to the
|
|
|
|
* bus <name>, At least one such entry must be encountered
|
|
|
|
* before identifiers are recognised.
|
|
|
|
*
|
|
|
|
* ident=<identifier> rev=<revision> module=<module> args=<arguments>
|
|
|
|
*
|
|
|
|
* This line describes an identifier:module mapping. The 'ident'
|
|
|
|
* and 'module' fields are required; the 'rev' field is currently
|
|
|
|
* ignored (but should be used), and the 'args' field must come
|
|
|
|
* last.
|
1998-09-26 01:29:13 +00:00
|
|
|
*
|
|
|
|
* Comments may be appended to lines; any character including or following
|
|
|
|
* '#' on a line is ignored.
|
1998-09-04 02:43:26 +00:00
|
|
|
*/
|
1998-09-14 18:27:06 +00:00
|
|
|
static int
|
1998-09-04 02:43:26 +00:00
|
|
|
pnp_readconf(char *path)
|
|
|
|
{
|
|
|
|
struct pnpinfo *pi;
|
1998-09-14 18:27:06 +00:00
|
|
|
struct pnpident *id;
|
1998-09-04 02:43:26 +00:00
|
|
|
int fd, line;
|
|
|
|
char lbuf[128], *currbus, *ident, *revision, *module, *args;
|
|
|
|
char *cp, *ep, *tp, c;
|
|
|
|
|
|
|
|
/* try to open the file */
|
|
|
|
if ((fd = open(path, O_RDONLY)) >= 0) {
|
|
|
|
line = 0;
|
|
|
|
currbus = NULL;
|
|
|
|
|
|
|
|
while (fgetstr(lbuf, sizeof(lbuf), fd) > 0) {
|
|
|
|
line++;
|
|
|
|
/* Find the first non-space character on the line */
|
|
|
|
for (cp = lbuf; (*cp != 0) && !isspace(*cp); cp++)
|
|
|
|
;
|
|
|
|
|
|
|
|
/* keep/discard? */
|
|
|
|
if ((*cp == 0) || (*cp == '#'))
|
|
|
|
continue;
|
1998-09-26 01:29:13 +00:00
|
|
|
|
|
|
|
/* cut trailing comment? */
|
|
|
|
if ((ep = strchr(cp, '#')) != NULL)
|
|
|
|
*ep = 0;
|
1998-09-04 02:43:26 +00:00
|
|
|
|
|
|
|
/* bus declaration? */
|
|
|
|
if (*cp == '[') {
|
|
|
|
if (((ep = strchr(cp, ']')) == NULL) || ((ep - cp) < 2)) {
|
|
|
|
printf("%s line %d: bad bus specification\n", path, line);
|
|
|
|
} else {
|
|
|
|
if (currbus != NULL)
|
|
|
|
free(currbus);
|
|
|
|
*ep = 0;
|
|
|
|
currbus = strdup(cp + 1);
|
|
|
|
}
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* XXX should we complain? */
|
|
|
|
if (currbus == NULL)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
/* mapping */
|
1998-09-14 18:27:06 +00:00
|
|
|
for (ident = module = args = revision = NULL; *cp != 0;) {
|
1998-09-04 02:43:26 +00:00
|
|
|
|
|
|
|
/* discard leading whitespace */
|
|
|
|
if (isspace(*cp)) {
|
|
|
|
cp++;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* scan for terminator, separator */
|
1998-09-14 18:27:06 +00:00
|
|
|
for (ep = cp; (*ep != 0) && (*ep != '=') && !isspace(*ep); ep++)
|
1998-09-04 02:43:26 +00:00
|
|
|
;
|
|
|
|
|
|
|
|
if (*ep == '=') {
|
|
|
|
*ep = 0;
|
1998-09-14 18:27:06 +00:00
|
|
|
for (tp = ep + 1; (*tp != 0) && !isspace(*tp); tp++)
|
1998-09-04 02:43:26 +00:00
|
|
|
;
|
|
|
|
c = *tp;
|
|
|
|
*tp = 0;
|
|
|
|
if ((ident == NULL) && !strcmp(cp, "ident")) {
|
|
|
|
ident = ep + 1;
|
|
|
|
} else if ((revision == NULL) && !strcmp(cp, "revision")) {
|
|
|
|
revision = ep + 1;
|
|
|
|
} else if ((args == NULL) && !strcmp(cp, "args")) {
|
|
|
|
*tp = c;
|
|
|
|
while (*tp != 0) /* skip to end of string */
|
|
|
|
tp++;
|
|
|
|
args = ep + 1;
|
|
|
|
} else {
|
|
|
|
/* XXX complain? */
|
|
|
|
}
|
|
|
|
cp = tp;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* it's garbage or a keyword - ignore it for now */
|
|
|
|
cp = ep;
|
|
|
|
}
|
|
|
|
|
1998-09-26 01:29:13 +00:00
|
|
|
/* we must have at least ident and module set to be interesting */
|
|
|
|
if ((ident == NULL) || (module == NULL))
|
1998-09-04 02:43:26 +00:00
|
|
|
continue;
|
|
|
|
|
|
|
|
/*
|
1998-09-14 18:27:06 +00:00
|
|
|
* Loop looking for module/bus that might match this, but aren't already
|
|
|
|
* assigned.
|
1998-09-04 02:43:26 +00:00
|
|
|
* XXX no revision parse/test here yet.
|
|
|
|
*/
|
1998-09-14 18:27:06 +00:00
|
|
|
for (pi = pnp_devices; pi != NULL; pi = pi->pi_next) {
|
|
|
|
|
|
|
|
/* no driver assigned, bus matches OK */
|
|
|
|
if ((pi->pi_module == NULL) &&
|
|
|
|
!strcmp(pi->pi_handler->pp_name, currbus)) {
|
|
|
|
|
|
|
|
/* scan idents, take first match */
|
|
|
|
for (id = pi->pi_ident; id != NULL; id = id->id_next)
|
|
|
|
if (!strcmp(id->id_ident, ident))
|
1998-09-04 02:43:26 +00:00
|
|
|
break;
|
1998-09-14 18:27:06 +00:00
|
|
|
|
|
|
|
/* find a match? */
|
|
|
|
if (id != NULL) {
|
|
|
|
if (args != NULL)
|
|
|
|
if (parse(&pi->pi_argc, &pi->pi_argv, args)) {
|
|
|
|
printf("%s line %d: bad arguments\n", path, line);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
pi->pi_module = strdup(module);
|
|
|
|
printf("use module '%s' for %s:%s\n", module, pi->pi_handler->pp_name, id->id_ident);
|
|
|
|
}
|
1998-09-04 02:43:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
close(fd);
|
|
|
|
}
|
1998-09-14 18:27:06 +00:00
|
|
|
return(CMD_OK);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
pnp_scankernel(void)
|
|
|
|
{
|
|
|
|
return(CMD_OK);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Add a unique identifier to (pi)
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
pnp_addident(struct pnpinfo *pi, char *ident)
|
|
|
|
{
|
|
|
|
struct pnpident *id, **idp;
|
|
|
|
|
|
|
|
if (pi->pi_ident == NULL) {
|
|
|
|
idp = &(pi->pi_ident);
|
|
|
|
} else {
|
|
|
|
for (id = pi->pi_ident; id->id_next != NULL; id = id->id_next)
|
|
|
|
if (!strcmp(id->id_ident, ident))
|
|
|
|
return; /* already have this one */
|
|
|
|
;
|
|
|
|
idp = &(id->id_next);
|
|
|
|
}
|
|
|
|
*idp = malloc(sizeof(struct pnpident));
|
|
|
|
(*idp)->id_next = NULL;
|
|
|
|
(*idp)->id_ident = strdup(ident);
|
1998-09-04 02:43:26 +00:00
|
|
|
}
|
|
|
|
|