2001-07-23 04:31:03 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
|
|
|
/*
|
2002-07-26 21:24:20 +05:30
|
|
|
* Modprobe written from scratch for BusyBox
|
2002-04-26 11:34:01 +05:30
|
|
|
*
|
2008-09-13 20:29:38 +05:30
|
|
|
* Copyright (c) 2008 Timo Teras <timo.teras@iki.fi>
|
|
|
|
* Copyright (c) 2008 Vladimir Dronnikov
|
2002-08-05 08:27:12 +05:30
|
|
|
*
|
2005-11-15 05:38:29 +05:30
|
|
|
* Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
|
2008-09-13 20:29:38 +05:30
|
|
|
*/
|
2001-07-23 04:31:03 +05:30
|
|
|
|
2007-05-27 00:30:18 +05:30
|
|
|
#include "libbb.h"
|
2008-09-13 20:29:38 +05:30
|
|
|
#include "modutils.h"
|
2002-05-15 05:12:08 +05:30
|
|
|
#include <sys/utsname.h>
|
2006-06-04 00:38:49 +05:30
|
|
|
#include <fnmatch.h>
|
2001-07-23 04:31:03 +05:30
|
|
|
|
2009-03-07 04:18:11 +05:30
|
|
|
//#define DBG(...) bb_error_msg(__VA_ARGS__)
|
|
|
|
#define DBG(...) ((void)0)
|
|
|
|
|
2009-03-05 22:02:27 +05:30
|
|
|
#define MODULE_FLAG_LOADED 0x0001
|
|
|
|
#define MODULE_FLAG_NEED_DEPS 0x0002
|
2009-03-07 04:18:11 +05:30
|
|
|
/* "was seen in modules.dep": */
|
|
|
|
#define MODULE_FLAG_FOUND_IN_MODDEP 0x0004
|
2009-03-05 22:02:27 +05:30
|
|
|
#define MODULE_FLAG_BLACKLISTED 0x0008
|
|
|
|
|
|
|
|
struct module_entry { /* I'll call it ME. */
|
|
|
|
unsigned flags;
|
|
|
|
char *modname; /* stripped of /path/, .ext and s/-/_/g */
|
|
|
|
const char *probed_name; /* verbatim as seen on cmdline */
|
2009-03-07 04:18:11 +05:30
|
|
|
char *options; /* options from config files */
|
|
|
|
llist_t *realnames; /* strings. if this module is an alias, */
|
|
|
|
/* real module name is one of these. */
|
|
|
|
//Can there really be more than one? Example from real kernel?
|
2009-03-05 22:02:27 +05:30
|
|
|
llist_t *deps; /* strings. modules we depend on */
|
2002-04-26 11:34:01 +05:30
|
|
|
};
|
|
|
|
|
2009-03-05 22:02:27 +05:30
|
|
|
#define MODPROBE_OPTS "acdlnrt:VC:" USE_FEATURE_MODPROBE_BLACKLIST("b")
|
2008-09-13 20:29:38 +05:30
|
|
|
enum {
|
|
|
|
MODPROBE_OPT_INSERT_ALL = (INSMOD_OPT_UNUSED << 0), /* a */
|
|
|
|
MODPROBE_OPT_DUMP_ONLY = (INSMOD_OPT_UNUSED << 1), /* c */
|
|
|
|
MODPROBE_OPT_D = (INSMOD_OPT_UNUSED << 2), /* d */
|
|
|
|
MODPROBE_OPT_LIST_ONLY = (INSMOD_OPT_UNUSED << 3), /* l */
|
|
|
|
MODPROBE_OPT_SHOW_ONLY = (INSMOD_OPT_UNUSED << 4), /* n */
|
|
|
|
MODPROBE_OPT_REMOVE = (INSMOD_OPT_UNUSED << 5), /* r */
|
|
|
|
MODPROBE_OPT_RESTRICT = (INSMOD_OPT_UNUSED << 6), /* t */
|
|
|
|
MODPROBE_OPT_VERONLY = (INSMOD_OPT_UNUSED << 7), /* V */
|
|
|
|
MODPROBE_OPT_CONFIGFILE = (INSMOD_OPT_UNUSED << 8), /* C */
|
|
|
|
MODPROBE_OPT_BLACKLIST = (INSMOD_OPT_UNUSED << 9) * ENABLE_FEATURE_MODPROBE_BLACKLIST,
|
2008-07-29 05:49:44 +05:30
|
|
|
};
|
2002-05-15 05:12:08 +05:30
|
|
|
|
2009-03-05 22:02:27 +05:30
|
|
|
struct globals {
|
|
|
|
llist_t *db; /* MEs of all modules ever seen (caching for speed) */
|
|
|
|
llist_t *probes; /* MEs of module(s) requested on cmdline */
|
2009-03-07 04:18:11 +05:30
|
|
|
char *cmdline_mopts; /* module options from cmdline */
|
|
|
|
int num_unresolved_deps;
|
2009-03-05 22:02:27 +05:30
|
|
|
/* bool. "Did we have 'symbol:FOO' requested on cmdline?" */
|
|
|
|
smallint need_symbols;
|
|
|
|
};
|
|
|
|
#define G (*(struct globals*)&bb_common_bufsiz1)
|
|
|
|
#define INIT_G() do { } while (0)
|
2008-07-29 05:49:44 +05:30
|
|
|
|
|
|
|
|
2009-03-05 22:02:27 +05:30
|
|
|
static int read_config(const char *path);
|
|
|
|
|
2009-03-07 04:18:11 +05:30
|
|
|
static char *gather_options_str(char *opts, const char *append)
|
|
|
|
{
|
|
|
|
/* Speed-optimized. We call gather_options_str many times. */
|
|
|
|
if (opts == NULL) {
|
|
|
|
opts = xstrdup(append);
|
|
|
|
} else {
|
|
|
|
int optlen = strlen(opts);
|
|
|
|
opts = xrealloc(opts, optlen + strlen(append) + 2);
|
|
|
|
sprintf(opts + optlen, " %s", append);
|
|
|
|
}
|
|
|
|
return opts;
|
|
|
|
}
|
|
|
|
|
2009-03-05 22:02:27 +05:30
|
|
|
static struct module_entry *helper_get_module(const char *module, int create)
|
2008-07-29 05:49:44 +05:30
|
|
|
{
|
2009-03-05 22:02:27 +05:30
|
|
|
char modname[MODULE_NAME_LEN];
|
|
|
|
struct module_entry *e;
|
|
|
|
llist_t *l;
|
|
|
|
|
|
|
|
filename2modname(module, modname);
|
|
|
|
for (l = G.db; l != NULL; l = l->link) {
|
|
|
|
e = (struct module_entry *) l->data;
|
|
|
|
if (strcmp(e->modname, modname) == 0)
|
|
|
|
return e;
|
|
|
|
}
|
|
|
|
if (!create)
|
|
|
|
return NULL;
|
2008-07-29 05:49:44 +05:30
|
|
|
|
2009-03-05 22:02:27 +05:30
|
|
|
e = xzalloc(sizeof(*e));
|
|
|
|
e->modname = xstrdup(modname);
|
|
|
|
llist_add_to(&G.db, e);
|
|
|
|
|
|
|
|
return e;
|
|
|
|
}
|
|
|
|
static struct module_entry *get_or_add_modentry(const char *module)
|
|
|
|
{
|
|
|
|
return helper_get_module(module, 1);
|
|
|
|
}
|
|
|
|
static struct module_entry *get_modentry(const char *module)
|
|
|
|
{
|
|
|
|
return helper_get_module(module, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void add_probe(const char *name)
|
|
|
|
{
|
|
|
|
struct module_entry *m;
|
|
|
|
|
|
|
|
m = get_or_add_modentry(name);
|
2009-03-07 04:18:11 +05:30
|
|
|
if (m->flags & MODULE_FLAG_LOADED) {
|
|
|
|
DBG("skipping %s, it is already loaded", name);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2009-03-05 22:02:27 +05:30
|
|
|
m->probed_name = name;
|
|
|
|
m->flags |= MODULE_FLAG_NEED_DEPS;
|
2009-03-07 04:18:11 +05:30
|
|
|
llist_add_to_end(&G.probes, m);
|
|
|
|
G.num_unresolved_deps++;
|
2009-03-05 22:02:27 +05:30
|
|
|
if (ENABLE_FEATURE_MODUTILS_SYMBOLS
|
2009-03-07 04:18:11 +05:30
|
|
|
&& strncmp(m->modname, "symbol:", 7) == 0
|
|
|
|
) {
|
2009-03-05 22:02:27 +05:30
|
|
|
G.need_symbols = 1;
|
2009-03-07 04:18:11 +05:30
|
|
|
}
|
2008-07-29 05:49:44 +05:30
|
|
|
}
|
|
|
|
|
2008-09-13 20:29:38 +05:30
|
|
|
static int FAST_FUNC config_file_action(const char *filename,
|
|
|
|
struct stat *statbuf UNUSED_PARAM,
|
2009-03-05 22:02:27 +05:30
|
|
|
void *userdata UNUSED_PARAM,
|
2008-09-13 20:29:38 +05:30
|
|
|
int depth UNUSED_PARAM)
|
2008-07-29 05:49:44 +05:30
|
|
|
{
|
2009-03-07 04:18:11 +05:30
|
|
|
char *tokens[3];
|
2008-09-13 20:29:38 +05:30
|
|
|
parser_t *p;
|
2009-03-05 22:02:27 +05:30
|
|
|
struct module_entry *m;
|
2008-09-13 20:29:38 +05:30
|
|
|
int rc = TRUE;
|
2008-07-29 05:49:44 +05:30
|
|
|
|
|
|
|
if (bb_basename(filename)[0] == '.')
|
2008-09-13 20:29:38 +05:30
|
|
|
goto error;
|
2006-04-10 21:39:52 +05:30
|
|
|
|
2008-09-13 20:29:38 +05:30
|
|
|
p = config_open2(filename, fopen_for_read);
|
|
|
|
if (p == NULL) {
|
|
|
|
rc = FALSE;
|
|
|
|
goto error;
|
|
|
|
}
|
2008-07-29 05:49:44 +05:30
|
|
|
|
2008-09-13 20:29:38 +05:30
|
|
|
while (config_read(p, tokens, 3, 2, "# \t", PARSE_NORMAL)) {
|
2009-03-05 22:02:27 +05:30
|
|
|
//Use index_in_strings?
|
2008-09-13 20:29:38 +05:30
|
|
|
if (strcmp(tokens[0], "alias") == 0) {
|
2009-03-07 04:18:11 +05:30
|
|
|
/* alias <wildcard> <modulename> */
|
|
|
|
llist_t *l;
|
|
|
|
char wildcard[MODULE_NAME_LEN];
|
|
|
|
char *rmod;
|
|
|
|
|
2009-03-05 22:02:27 +05:30
|
|
|
if (tokens[2] == NULL)
|
|
|
|
continue;
|
2009-03-07 04:18:11 +05:30
|
|
|
filename2modname(tokens[1], wildcard);
|
2009-03-05 22:02:27 +05:30
|
|
|
|
|
|
|
for (l = G.probes; l != NULL; l = l->link) {
|
|
|
|
m = (struct module_entry *) l->data;
|
2009-03-07 04:18:11 +05:30
|
|
|
if (fnmatch(wildcard, m->modname, 0) != 0)
|
2009-03-05 22:02:27 +05:30
|
|
|
continue;
|
|
|
|
rmod = filename2modname(tokens[2], NULL);
|
2009-03-07 04:18:11 +05:30
|
|
|
llist_add_to(&m->realnames, rmod);
|
2009-03-05 22:02:27 +05:30
|
|
|
|
|
|
|
if (m->flags & MODULE_FLAG_NEED_DEPS) {
|
|
|
|
m->flags &= ~MODULE_FLAG_NEED_DEPS;
|
2009-03-07 04:18:11 +05:30
|
|
|
G.num_unresolved_deps--;
|
2009-03-05 22:02:27 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
m = get_or_add_modentry(rmod);
|
2009-03-07 04:18:11 +05:30
|
|
|
if (!(m->flags & MODULE_FLAG_NEED_DEPS)) {
|
|
|
|
m->flags |= MODULE_FLAG_NEED_DEPS;
|
|
|
|
G.num_unresolved_deps++;
|
|
|
|
}
|
2009-03-05 22:02:27 +05:30
|
|
|
}
|
2008-09-13 20:29:38 +05:30
|
|
|
} else if (strcmp(tokens[0], "options") == 0) {
|
2009-03-07 04:18:11 +05:30
|
|
|
/* options <modulename> <option...> */
|
2009-03-05 22:02:27 +05:30
|
|
|
if (tokens[2] == NULL)
|
|
|
|
continue;
|
|
|
|
m = get_or_add_modentry(tokens[1]);
|
2009-03-07 04:18:11 +05:30
|
|
|
m->options = gather_options_str(m->options, tokens[2]);
|
2008-09-13 20:29:38 +05:30
|
|
|
} else if (strcmp(tokens[0], "include") == 0) {
|
2009-03-07 04:18:11 +05:30
|
|
|
/* include <filename> */
|
2009-03-05 22:02:27 +05:30
|
|
|
read_config(tokens[1]);
|
|
|
|
} else if (ENABLE_FEATURE_MODPROBE_BLACKLIST
|
|
|
|
&& strcmp(tokens[0], "blacklist") == 0
|
|
|
|
) {
|
2009-03-07 04:18:11 +05:30
|
|
|
/* blacklist <modulename> */
|
2009-03-05 22:02:27 +05:30
|
|
|
get_or_add_modentry(tokens[1])->flags |= MODULE_FLAG_BLACKLISTED;
|
2006-04-10 21:39:52 +05:30
|
|
|
}
|
2003-12-20 02:34:19 +05:30
|
|
|
}
|
2008-09-13 20:29:38 +05:30
|
|
|
config_close(p);
|
|
|
|
error:
|
|
|
|
return rc;
|
2003-09-08 06:02:49 +05:30
|
|
|
}
|
2002-04-26 11:34:01 +05:30
|
|
|
|
2009-03-05 22:02:27 +05:30
|
|
|
static int read_config(const char *path)
|
2002-04-26 11:34:01 +05:30
|
|
|
{
|
2008-09-13 20:29:38 +05:30
|
|
|
return recursive_action(path, ACTION_RECURSE | ACTION_QUIET,
|
2009-03-05 22:02:27 +05:30
|
|
|
config_file_action, NULL, NULL, 1);
|
2002-05-15 05:12:08 +05:30
|
|
|
}
|
|
|
|
|
2009-03-05 22:02:27 +05:30
|
|
|
static int do_modprobe(struct module_entry *m)
|
2002-05-15 05:12:08 +05:30
|
|
|
{
|
2009-03-05 22:02:27 +05:30
|
|
|
struct module_entry *m2;
|
|
|
|
char *fn, *options;
|
2008-09-13 20:29:38 +05:30
|
|
|
int rc = -1;
|
|
|
|
|
2009-03-07 04:18:11 +05:30
|
|
|
if (!(m->flags & MODULE_FLAG_FOUND_IN_MODDEP)) {
|
|
|
|
DBG("skipping %s, not found in modules.dep", m->modname);
|
2009-03-05 22:02:27 +05:30
|
|
|
return -ENOENT;
|
2009-03-07 04:18:11 +05:30
|
|
|
}
|
|
|
|
DBG("do_modprob'ing %s", m->modname);
|
2008-09-13 20:29:38 +05:30
|
|
|
|
|
|
|
if (!(option_mask32 & MODPROBE_OPT_REMOVE))
|
2009-03-05 22:02:27 +05:30
|
|
|
m->deps = llist_rev(m->deps);
|
2008-09-13 20:29:38 +05:30
|
|
|
|
|
|
|
rc = 0;
|
2009-03-05 22:02:27 +05:30
|
|
|
while (m->deps && rc == 0) {
|
|
|
|
fn = llist_pop(&m->deps);
|
|
|
|
m2 = get_or_add_modentry(fn);
|
2008-09-13 20:29:38 +05:30
|
|
|
if (option_mask32 & MODPROBE_OPT_REMOVE) {
|
2009-03-05 22:02:27 +05:30
|
|
|
if (bb_delete_module(m->modname, O_EXCL) != 0)
|
2008-09-13 20:29:38 +05:30
|
|
|
rc = errno;
|
2009-03-05 22:02:27 +05:30
|
|
|
} else if (!(m2->flags & MODULE_FLAG_LOADED)) {
|
2009-03-07 04:18:11 +05:30
|
|
|
options = m2->options;
|
|
|
|
m2->options = NULL;
|
2009-03-05 22:02:27 +05:30
|
|
|
if (m == m2)
|
2009-03-07 04:18:11 +05:30
|
|
|
options = gather_options_str(options, G.cmdline_mopts);
|
2008-09-13 20:29:38 +05:30
|
|
|
rc = bb_init_module(fn, options);
|
2009-03-07 04:18:11 +05:30
|
|
|
DBG("loaded %s '%s', rc:%d", fn, options, rc);
|
2008-09-13 20:29:38 +05:30
|
|
|
if (rc == 0)
|
2009-03-05 22:02:27 +05:30
|
|
|
m2->flags |= MODULE_FLAG_LOADED;
|
2009-03-04 00:17:56 +05:30
|
|
|
free(options);
|
2009-03-07 04:18:11 +05:30
|
|
|
} else {
|
|
|
|
DBG("%s is already loaded, skipping", fn);
|
2004-01-10 16:59:31 +05:30
|
|
|
}
|
2003-12-25 02:00:45 +05:30
|
|
|
|
2009-03-04 00:17:56 +05:30
|
|
|
free(fn);
|
2002-04-26 11:34:01 +05:30
|
|
|
}
|
2003-12-25 02:00:45 +05:30
|
|
|
|
2009-03-07 04:18:11 +05:30
|
|
|
//FIXME: what if rc < 0?
|
2009-03-05 22:02:27 +05:30
|
|
|
if (rc > 0 && !(option_mask32 & INSMOD_OPT_SILENT)) {
|
2008-12-24 08:41:43 +05:30
|
|
|
bb_error_msg("failed to %sload module %s: %s",
|
2009-03-05 22:02:27 +05:30
|
|
|
(option_mask32 & MODPROBE_OPT_REMOVE) ? "un" : "",
|
|
|
|
m->probed_name ? m->probed_name : m->modname,
|
|
|
|
moderror(rc)
|
|
|
|
);
|
|
|
|
}
|
2009-03-04 00:17:56 +05:30
|
|
|
|
2003-06-20 15:26:37 +05:30
|
|
|
return rc;
|
2002-05-15 05:12:08 +05:30
|
|
|
}
|
|
|
|
|
2009-03-05 22:02:27 +05:30
|
|
|
static void load_modules_dep(void)
|
|
|
|
{
|
|
|
|
struct module_entry *m;
|
|
|
|
char *colon, *tokens[2];
|
|
|
|
parser_t *p;
|
|
|
|
|
|
|
|
/* Modprobe does not work at all without modprobe.dep,
|
|
|
|
* even if the full module name is given. Returning error here
|
|
|
|
* was making us later confuse user with this message:
|
|
|
|
* "module /full/path/to/existing/file/module.ko not found".
|
2009-03-07 04:18:11 +05:30
|
|
|
* It's better to die immediately, with good message.
|
|
|
|
* xfopen_for_read provides that. */
|
|
|
|
p = config_open2(CONFIG_DEFAULT_DEPMOD_FILE, xfopen_for_read);
|
2009-03-05 22:02:27 +05:30
|
|
|
|
2009-03-07 04:18:11 +05:30
|
|
|
while (G.num_unresolved_deps
|
2009-03-05 22:02:27 +05:30
|
|
|
&& config_read(p, tokens, 2, 1, "# \t", PARSE_NORMAL)
|
|
|
|
) {
|
|
|
|
colon = last_char_is(tokens[0], ':');
|
|
|
|
if (colon == NULL)
|
|
|
|
continue;
|
|
|
|
*colon = 0;
|
|
|
|
|
|
|
|
m = get_modentry(tokens[0]);
|
|
|
|
if (m == NULL)
|
|
|
|
continue;
|
|
|
|
|
2009-03-07 04:18:11 +05:30
|
|
|
/* Optimization... */
|
|
|
|
if ((m->flags & MODULE_FLAG_LOADED)
|
|
|
|
&& !(option_mask32 & MODPROBE_OPT_REMOVE)
|
|
|
|
) {
|
|
|
|
DBG("skip deps of %s, it's already loaded", tokens[0]);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
m->flags |= MODULE_FLAG_FOUND_IN_MODDEP;
|
2009-03-05 22:02:27 +05:30
|
|
|
if ((m->flags & MODULE_FLAG_NEED_DEPS) && (m->deps == NULL)) {
|
2009-03-07 04:18:11 +05:30
|
|
|
G.num_unresolved_deps--;
|
2009-03-05 22:02:27 +05:30
|
|
|
llist_add_to(&m->deps, xstrdup(tokens[0]));
|
|
|
|
if (tokens[1])
|
|
|
|
string_to_llist(tokens[1], &m->deps, " ");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
config_close(p);
|
|
|
|
}
|
|
|
|
|
2007-10-11 15:35:36 +05:30
|
|
|
int modprobe_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
|
2008-08-06 06:21:43 +05:30
|
|
|
int modprobe_main(int argc UNUSED_PARAM, char **argv)
|
2001-07-23 04:31:03 +05:30
|
|
|
{
|
2008-09-13 20:29:38 +05:30
|
|
|
struct utsname uts;
|
2008-10-31 07:34:28 +05:30
|
|
|
int rc;
|
|
|
|
unsigned opt;
|
2009-03-05 22:02:27 +05:30
|
|
|
struct module_entry *me;
|
2002-05-23 05:04:35 +05:30
|
|
|
|
2007-11-10 07:02:18 +05:30
|
|
|
opt_complementary = "q-v:v-q";
|
2009-03-05 22:02:27 +05:30
|
|
|
opt = getopt32(argv, INSMOD_OPTS MODPROBE_OPTS INSMOD_ARGS, NULL, NULL);
|
2008-08-06 06:21:43 +05:30
|
|
|
argv += optind;
|
2008-09-13 20:29:38 +05:30
|
|
|
|
2008-10-31 07:34:28 +05:30
|
|
|
if (opt & (MODPROBE_OPT_DUMP_ONLY | MODPROBE_OPT_LIST_ONLY |
|
|
|
|
MODPROBE_OPT_SHOW_ONLY))
|
2008-09-13 20:29:38 +05:30
|
|
|
bb_error_msg_and_die("not supported");
|
|
|
|
|
2008-10-31 07:34:28 +05:30
|
|
|
if (!argv[0]) {
|
|
|
|
if (opt & MODPROBE_OPT_REMOVE) {
|
2009-03-07 04:18:11 +05:30
|
|
|
/* "modprobe -r" (w/o params).
|
|
|
|
* "If name is NULL, all unused modules marked
|
|
|
|
* autoclean will be removed".
|
|
|
|
*/
|
2008-09-13 20:29:38 +05:30
|
|
|
if (bb_delete_module(NULL, O_NONBLOCK|O_EXCL) != 0)
|
|
|
|
bb_perror_msg_and_die("rmmod");
|
|
|
|
}
|
2008-10-31 07:34:28 +05:30
|
|
|
return EXIT_SUCCESS;
|
|
|
|
}
|
2009-03-05 22:02:27 +05:30
|
|
|
|
2009-03-07 04:18:11 +05:30
|
|
|
/* Goto modules location */
|
|
|
|
xchdir(CONFIG_DEFAULT_MODULES_DIR);
|
|
|
|
uname(&uts);
|
|
|
|
xchdir(uts.release);
|
|
|
|
|
|
|
|
/* Retrieve module names of already loaded modules */
|
|
|
|
{
|
|
|
|
char *s;
|
|
|
|
parser_t *parser = config_open2("/proc/modules", fopen_for_read);
|
|
|
|
while (config_read(parser, &s, 1, 1, "# \t", PARSE_NORMAL & ~PARSE_GREEDY))
|
|
|
|
get_or_add_modentry(s)->flags |= MODULE_FLAG_LOADED;
|
|
|
|
config_close(parser);
|
|
|
|
}
|
|
|
|
|
2009-03-05 22:02:27 +05:30
|
|
|
if (opt & MODPROBE_OPT_INSERT_ALL) {
|
|
|
|
/* Each argument is a module name */
|
|
|
|
do {
|
|
|
|
add_probe(*argv++);
|
|
|
|
} while (*argv);
|
|
|
|
} else {
|
|
|
|
/* First argument is module name, rest are parameters */
|
|
|
|
add_probe(argv[0]);
|
2009-03-07 04:18:11 +05:30
|
|
|
G.cmdline_mopts = parse_cmdline_module_options(argv);
|
2008-09-13 20:29:38 +05:30
|
|
|
}
|
2003-12-25 02:00:45 +05:30
|
|
|
|
2009-03-07 04:18:11 +05:30
|
|
|
/* Happens if all requested modules are already loaded */
|
|
|
|
if (G.probes == NULL)
|
|
|
|
return EXIT_SUCCESS;
|
2001-07-23 04:31:03 +05:30
|
|
|
|
2009-03-05 22:02:27 +05:30
|
|
|
read_config("/etc/modprobe.conf");
|
|
|
|
read_config("/etc/modprobe.d");
|
|
|
|
if (ENABLE_FEATURE_MODUTILS_SYMBOLS && G.need_symbols)
|
|
|
|
read_config("modules.symbols");
|
|
|
|
load_modules_dep();
|
2009-03-07 04:18:11 +05:30
|
|
|
if (ENABLE_FEATURE_MODUTILS_ALIAS && G.num_unresolved_deps) {
|
2009-03-05 22:02:27 +05:30
|
|
|
read_config("modules.alias");
|
|
|
|
load_modules_dep();
|
|
|
|
}
|
2008-09-13 20:29:38 +05:30
|
|
|
|
2009-03-05 22:02:27 +05:30
|
|
|
while ((me = llist_pop(&G.probes)) != NULL) {
|
2009-03-07 04:18:11 +05:30
|
|
|
if (me->realnames == NULL) {
|
|
|
|
/* This is not an alias. Literal names are blacklisted
|
|
|
|
* only if '-b' is given.
|
|
|
|
*/
|
2009-03-05 22:02:27 +05:30
|
|
|
if (!(opt & MODPROBE_OPT_BLACKLIST)
|
|
|
|
|| !(me->flags & MODULE_FLAG_BLACKLISTED)
|
|
|
|
) {
|
|
|
|
rc = do_modprobe(me);
|
2009-03-07 04:18:11 +05:30
|
|
|
//FIXME: what if rc > 0?
|
2008-10-31 07:34:28 +05:30
|
|
|
if (rc < 0 && !(opt & INSMOD_OPT_SILENT))
|
2009-03-05 22:02:27 +05:30
|
|
|
bb_error_msg("module %s not found",
|
|
|
|
me->probed_name);
|
2008-09-13 20:29:38 +05:30
|
|
|
}
|
|
|
|
} else {
|
2009-03-07 04:18:11 +05:30
|
|
|
/* Probe all realnames */
|
2009-03-05 22:02:27 +05:30
|
|
|
do {
|
2009-03-07 04:18:11 +05:30
|
|
|
char *realname = llist_pop(&me->realnames);
|
2009-03-05 22:02:27 +05:30
|
|
|
struct module_entry *m2;
|
|
|
|
|
2009-03-07 04:18:11 +05:30
|
|
|
DBG("probing %s by realname %s", me->modname, realname);
|
2009-03-05 22:02:27 +05:30
|
|
|
m2 = get_or_add_modentry(realname);
|
|
|
|
if (!(m2->flags & MODULE_FLAG_BLACKLISTED))
|
|
|
|
do_modprobe(m2);
|
2009-03-07 04:18:11 +05:30
|
|
|
//FIXME: error check?
|
2009-03-04 00:17:56 +05:30
|
|
|
free(realname);
|
2009-03-07 04:18:11 +05:30
|
|
|
} while (me->realnames != NULL);
|
2008-09-13 20:29:38 +05:30
|
|
|
}
|
|
|
|
}
|
2003-12-25 02:00:45 +05:30
|
|
|
|
2008-09-13 20:29:38 +05:30
|
|
|
return EXIT_SUCCESS;
|
2001-07-23 04:31:03 +05:30
|
|
|
}
|