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
|
|
|
|
2008-09-13 20:29:38 +05:30
|
|
|
struct modprobe_option {
|
|
|
|
char *module;
|
|
|
|
char *option;
|
2002-04-26 11:34:01 +05:30
|
|
|
};
|
|
|
|
|
2008-09-13 20:29:38 +05:30
|
|
|
struct modprobe_conf {
|
|
|
|
char probename[MODULE_NAME_LEN];
|
|
|
|
llist_t *options;
|
|
|
|
llist_t *aliases;
|
|
|
|
#if ENABLE_FEATURE_MODPROBE_BLACKLIST
|
|
|
|
#define add_to_blacklist(conf, name) llist_add_to(&conf->blacklist, name)
|
|
|
|
#define check_blacklist(conf, name) (llist_find(conf->blacklist, name) == NULL)
|
|
|
|
llist_t *blacklist;
|
|
|
|
#else
|
|
|
|
#define add_to_blacklist(conf, name) do {} while (0)
|
|
|
|
#define check_blacklist(conf, name) (1)
|
|
|
|
#endif
|
2002-05-15 05:12:08 +05:30
|
|
|
};
|
|
|
|
|
2008-09-13 20:29:38 +05:30
|
|
|
#define MODPROBE_OPTS "acdlnrt:VC:" USE_FEATURE_MODPROBE_BLACKLIST("b")
|
|
|
|
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
|
|
|
|
2008-09-13 20:29:38 +05:30
|
|
|
static llist_t *loaded;
|
2008-07-29 05:49:44 +05:30
|
|
|
|
2008-09-13 20:29:38 +05:30
|
|
|
static int read_config(struct modprobe_conf *conf, const char *path);
|
2008-07-29 05:49:44 +05:30
|
|
|
|
2008-09-13 20:29:38 +05:30
|
|
|
static void add_option(llist_t **all_opts, const char *module, const char *opts)
|
2008-07-29 05:49:44 +05:30
|
|
|
{
|
2008-09-13 20:29:38 +05:30
|
|
|
struct modprobe_option *o;
|
2008-07-29 05:49:44 +05:30
|
|
|
|
2008-09-13 20:29:38 +05:30
|
|
|
o = xzalloc(sizeof(struct modprobe_option));
|
|
|
|
if (module)
|
|
|
|
o->module = filename2modname(module, NULL);
|
|
|
|
o->option = xstrdup(opts);
|
|
|
|
llist_add_to(all_opts, o);
|
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,
|
|
|
|
void *userdata,
|
|
|
|
int depth UNUSED_PARAM)
|
2008-07-29 05:49:44 +05:30
|
|
|
{
|
2008-09-13 20:29:38 +05:30
|
|
|
struct modprobe_conf *conf = (struct modprobe_conf *) userdata;
|
|
|
|
RESERVE_CONFIG_BUFFER(modname, MODULE_NAME_LEN);
|
|
|
|
char *tokens[3];
|
|
|
|
parser_t *p;
|
|
|
|
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)) {
|
|
|
|
if (strcmp(tokens[0], "alias") == 0) {
|
|
|
|
filename2modname(tokens[1], modname);
|
|
|
|
if (tokens[2] &&
|
|
|
|
fnmatch(modname, conf->probename, 0) == 0)
|
|
|
|
llist_add_to(&conf->aliases,
|
|
|
|
filename2modname(tokens[2], NULL));
|
|
|
|
} else if (strcmp(tokens[0], "options") == 0) {
|
|
|
|
if (tokens[2])
|
|
|
|
add_option(&conf->options, tokens[1], tokens[2]);
|
|
|
|
} else if (strcmp(tokens[0], "include") == 0) {
|
|
|
|
read_config(conf, tokens[1]);
|
2008-06-16 09:39:25 +05:30
|
|
|
} else if (ENABLE_FEATURE_MODPROBE_BLACKLIST &&
|
2008-09-13 20:29:38 +05:30
|
|
|
strcmp(tokens[0], "blacklist") == 0) {
|
|
|
|
add_to_blacklist(conf, xstrdup(tokens[1]));
|
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:
|
2006-05-19 16:54:28 +05:30
|
|
|
if (ENABLE_FEATURE_CLEAN_UP)
|
2008-09-13 20:29:38 +05:30
|
|
|
RELEASE_CONFIG_BUFFER(modname);
|
|
|
|
return rc;
|
2003-09-08 06:02:49 +05:30
|
|
|
}
|
2002-04-26 11:34:01 +05:30
|
|
|
|
2008-09-13 20:29:38 +05:30
|
|
|
static int read_config(struct modprobe_conf *conf, 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,
|
|
|
|
config_file_action, NULL, conf, 1);
|
2002-05-15 05:12:08 +05:30
|
|
|
}
|
|
|
|
|
2008-09-13 20:29:38 +05:30
|
|
|
static char *gather_options(llist_t *first, const char *module, int usecmdline)
|
2007-04-17 04:02:04 +05:30
|
|
|
{
|
2008-09-13 20:29:38 +05:30
|
|
|
struct modprobe_option *opt;
|
|
|
|
llist_t *n;
|
|
|
|
char *opts = xstrdup("");
|
|
|
|
int optlen = 0;
|
2006-07-20 23:06:18 +05:30
|
|
|
|
2008-09-13 20:29:38 +05:30
|
|
|
for (n = first; n != NULL; n = n->link) {
|
|
|
|
opt = (struct modprobe_option *) n->data;
|
2006-07-20 23:06:18 +05:30
|
|
|
|
2008-09-13 20:29:38 +05:30
|
|
|
if (opt->module == NULL && !usecmdline)
|
|
|
|
continue;
|
|
|
|
if (opt->module != NULL && strcmp(opt->module, module) != 0)
|
|
|
|
continue;
|
2006-07-20 23:06:18 +05:30
|
|
|
|
2008-09-13 20:29:38 +05:30
|
|
|
opts = xrealloc(opts, optlen + strlen(opt->option) + 2);
|
|
|
|
optlen += sprintf(opts + optlen, "%s ", opt->option);
|
2006-07-20 23:06:18 +05:30
|
|
|
}
|
2008-09-13 20:29:38 +05:30
|
|
|
return opts;
|
2006-07-20 23:06:18 +05:30
|
|
|
}
|
|
|
|
|
2008-09-13 20:29:38 +05:30
|
|
|
static int do_modprobe(struct modprobe_conf *conf, const char *module)
|
2002-05-15 05:12:08 +05:30
|
|
|
{
|
2008-09-13 20:29:38 +05:30
|
|
|
RESERVE_CONFIG_BUFFER(modname, MODULE_NAME_LEN);
|
|
|
|
llist_t *deps = NULL;
|
|
|
|
char *fn, *options, *colon = NULL, *tokens[2];
|
|
|
|
parser_t *p;
|
|
|
|
int rc = -1;
|
|
|
|
|
|
|
|
p = config_open2(CONFIG_DEFAULT_DEPMOD_FILE, fopen_for_read);
|
|
|
|
if (p == NULL)
|
|
|
|
goto error;
|
|
|
|
|
|
|
|
while (config_read(p, tokens, 2, 1, "# \t", PARSE_NORMAL)) {
|
|
|
|
colon = last_char_is(tokens[0], ':');
|
|
|
|
if (colon == NULL)
|
|
|
|
continue;
|
2005-12-13 01:08:44 +05:30
|
|
|
|
2008-09-13 20:29:38 +05:30
|
|
|
filename2modname(tokens[0], modname);
|
|
|
|
if (strcmp(modname, module) == 0)
|
|
|
|
break;
|
2003-12-25 02:00:45 +05:30
|
|
|
|
2008-09-13 20:29:38 +05:30
|
|
|
colon = NULL;
|
2002-05-29 03:02:10 +05:30
|
|
|
}
|
2008-09-13 20:29:38 +05:30
|
|
|
if (colon == NULL)
|
|
|
|
goto error_not_found;
|
|
|
|
|
|
|
|
colon[0] = '\0';
|
|
|
|
llist_add_to(&deps, xstrdup(tokens[0]));
|
|
|
|
if (tokens[1])
|
|
|
|
string_to_llist(tokens[1], &deps, " ");
|
|
|
|
|
|
|
|
if (!(option_mask32 & MODPROBE_OPT_REMOVE))
|
|
|
|
deps = llist_rev(deps);
|
|
|
|
|
|
|
|
rc = 0;
|
|
|
|
while (deps && rc == 0) {
|
|
|
|
fn = llist_pop(&deps);
|
|
|
|
filename2modname(fn, modname);
|
|
|
|
if (option_mask32 & MODPROBE_OPT_REMOVE) {
|
|
|
|
if (bb_delete_module(modname, O_EXCL) != 0)
|
|
|
|
rc = errno;
|
|
|
|
} else if (llist_find(loaded, modname) == NULL) {
|
|
|
|
options = gather_options(conf->options, modname,
|
|
|
|
strcmp(modname, module) == 0);
|
|
|
|
rc = bb_init_module(fn, options);
|
|
|
|
if (rc == 0)
|
|
|
|
llist_add_to(&loaded, xstrdup(modname));
|
|
|
|
if (ENABLE_FEATURE_CLEAN_UP)
|
|
|
|
free(options);
|
2004-01-10 16:59:31 +05:30
|
|
|
}
|
2003-12-25 02:00:45 +05:30
|
|
|
|
2008-09-13 20:29:38 +05:30
|
|
|
if (ENABLE_FEATURE_CLEAN_UP)
|
|
|
|
free(fn);
|
2002-04-26 11:34:01 +05:30
|
|
|
}
|
2003-12-25 02:00:45 +05:30
|
|
|
|
2008-09-13 20:29:38 +05:30
|
|
|
error_not_found:
|
|
|
|
config_close(p);
|
|
|
|
error:
|
|
|
|
if (ENABLE_FEATURE_CLEAN_UP)
|
|
|
|
RELEASE_CONFIG_BUFFER(modname);
|
|
|
|
if (rc > 0 && !(option_mask32 & INSMOD_OPT_SILENT))
|
|
|
|
bb_error_msg("Failed to %sload module %s: %s.",
|
|
|
|
(option_mask32 & MODPROBE_OPT_REMOVE) ? "un" : "",
|
|
|
|
module, moderror(rc));
|
2003-06-20 15:26:37 +05:30
|
|
|
return rc;
|
2002-05-15 05:12:08 +05:30
|
|
|
}
|
|
|
|
|
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;
|
2008-09-13 20:29:38 +05:30
|
|
|
llist_t *options = NULL;
|
2002-05-23 05:04:35 +05:30
|
|
|
|
2007-11-10 07:02:18 +05:30
|
|
|
opt_complementary = "q-v:v-q";
|
2008-10-31 07:34:28 +05:30
|
|
|
opt = getopt32(argv, INSMOD_OPTS MODPROBE_OPTS INSMOD_ARGS,
|
2008-09-13 20:29:38 +05:30
|
|
|
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");
|
|
|
|
|
|
|
|
/* goto modules location */
|
|
|
|
xchdir(CONFIG_DEFAULT_MODULES_DIR);
|
|
|
|
uname(&uts);
|
|
|
|
xchdir(uts.release);
|
|
|
|
|
2008-10-31 07:34:28 +05:30
|
|
|
if (!argv[0]) {
|
|
|
|
if (opt & MODPROBE_OPT_REMOVE) {
|
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;
|
|
|
|
}
|
|
|
|
if (!(opt & MODPROBE_OPT_INSERT_ALL)) {
|
|
|
|
/* If not -a, we have only one module name,
|
|
|
|
* the rest of parameters are options */
|
2008-09-13 20:29:38 +05:30
|
|
|
add_option(&options, NULL, parse_cmdline_module_options(argv));
|
2008-10-31 07:34:28 +05:30
|
|
|
argv[1] = 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
|
|
|
/* cache modules */
|
2008-10-31 07:34:28 +05:30
|
|
|
{
|
2008-09-13 20:29:38 +05:30
|
|
|
char *s;
|
2008-10-31 07:34:28 +05:30
|
|
|
parser_t *parser = config_open2("/proc/modules", fopen_for_read);
|
2008-09-13 20:29:38 +05:30
|
|
|
while (config_read(parser, &s, 1, 1, "# \t", PARSE_NORMAL & ~PARSE_GREEDY))
|
|
|
|
llist_add_to(&loaded, xstrdup(s));
|
|
|
|
config_close(parser);
|
2001-07-23 04:31:03 +05:30
|
|
|
}
|
|
|
|
|
2008-10-31 07:34:28 +05:30
|
|
|
while (*argv) {
|
|
|
|
const char *arg = *argv;
|
2008-09-13 20:29:38 +05:30
|
|
|
struct modprobe_conf *conf;
|
|
|
|
|
2008-10-31 07:34:28 +05:30
|
|
|
conf = xzalloc(sizeof(*conf));
|
2008-09-13 20:29:38 +05:30
|
|
|
conf->options = options;
|
2008-10-31 07:34:28 +05:30
|
|
|
filename2modname(arg, conf->probename);
|
2008-09-13 20:29:38 +05:30
|
|
|
read_config(conf, "/etc/modprobe.conf");
|
|
|
|
read_config(conf, "/etc/modprobe.d");
|
2008-10-31 07:34:28 +05:30
|
|
|
if (ENABLE_FEATURE_MODUTILS_SYMBOLS
|
|
|
|
&& conf->aliases == NULL
|
|
|
|
&& strncmp(arg, "symbol:", 7) == 0
|
|
|
|
) {
|
2008-09-13 20:29:38 +05:30
|
|
|
read_config(conf, "modules.symbols");
|
2008-10-31 07:34:28 +05:30
|
|
|
}
|
2008-09-13 20:29:38 +05:30
|
|
|
|
|
|
|
if (ENABLE_FEATURE_MODUTILS_ALIAS && conf->aliases == NULL)
|
|
|
|
read_config(conf, "modules.alias");
|
|
|
|
|
|
|
|
if (conf->aliases == NULL) {
|
|
|
|
/* Try if module by literal name is found; literal
|
|
|
|
* names are blacklist only if '-b' is given. */
|
2008-10-31 07:34:28 +05:30
|
|
|
if (!(opt & MODPROBE_OPT_BLACKLIST) ||
|
2008-09-13 20:29:38 +05:30
|
|
|
check_blacklist(conf, conf->probename)) {
|
|
|
|
rc = do_modprobe(conf, conf->probename);
|
2008-10-31 07:34:28 +05:30
|
|
|
if (rc < 0 && !(opt & INSMOD_OPT_SILENT))
|
|
|
|
bb_error_msg("Module %s not found.", arg);
|
2008-09-13 20:29:38 +05:30
|
|
|
}
|
|
|
|
} else {
|
|
|
|
/* Probe all aliases */
|
|
|
|
while (conf->aliases != NULL) {
|
|
|
|
char *realname = llist_pop(&conf->aliases);
|
|
|
|
if (check_blacklist(conf, realname))
|
|
|
|
do_modprobe(conf, realname);
|
|
|
|
if (ENABLE_FEATURE_CLEAN_UP)
|
|
|
|
free(realname);
|
|
|
|
}
|
|
|
|
}
|
2008-10-31 07:34:28 +05:30
|
|
|
argv++;
|
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
|
|
|
}
|