modprobe: fix modprobe -r and parsing of /etc/modprobe.d
[oweals/busybox.git] / modutils / modprobe.c
1 /* vi: set sw=4 ts=4: */
2 /*
3  * Modprobe written from scratch for BusyBox
4  *
5  * Copyright (c) 2008 Timo Teras <timo.teras@iki.fi>
6  * Copyright (c) 2008 Vladimir Dronnikov
7  *
8  * Licensed under GPLv2 or later, see file LICENSE in this source tree.
9  */
10
11 //applet:IF_MODPROBE(APPLET(modprobe, BB_DIR_SBIN, BB_SUID_DROP))
12
13 #include "libbb.h"
14 #include "modutils.h"
15 #include <sys/utsname.h>
16 #include <fnmatch.h>
17
18 #if 1
19 #define DBG(...) ((void)0)
20 #else
21 #define DBG(fmt, ...) bb_error_msg("%s: " fmt, __func__, ## __VA_ARGS__)
22 #endif
23
24 /* Note that unlike older versions of modules.dep/depmod (busybox and m-i-t),
25  * we expect the full dependency list to be specified in modules.dep.
26  * Older versions would only export the direct dependency list.
27  */
28
29
30 //usage:#if !ENABLE_MODPROBE_SMALL
31 //usage:#define modprobe_notes_usage
32 //usage:        "modprobe can (un)load a stack of modules, passing each module options (when\n"
33 //usage:        "loading). modprobe uses a configuration file to determine what option(s) to\n"
34 //usage:        "pass each module it loads.\n"
35 //usage:        "\n"
36 //usage:        "The configuration file is searched (in this order):\n"
37 //usage:        "\n"
38 //usage:        "    /etc/modprobe.conf (2.6 only)\n"
39 //usage:        "    /etc/modules.conf\n"
40 //usage:        "    /etc/conf.modules (deprecated)\n"
41 //usage:        "\n"
42 //usage:        "They all have the same syntax (see below). If none is present, it is\n"
43 //usage:        "_not_ an error; each loaded module is then expected to load without\n"
44 //usage:        "options. Once a file is found, the others are tested for.\n"
45 //usage:        "\n"
46 //usage:        "/etc/modules.conf entry format:\n"
47 //usage:        "\n"
48 //usage:        "  alias <alias_name> <mod_name>\n"
49 //usage:        "    Makes it possible to modprobe alias_name, when there is no such module.\n"
50 //usage:        "    It makes sense if your mod_name is long, or you want a more representative\n"
51 //usage:        "    name for that module (eg. 'scsi' in place of 'aha7xxx').\n"
52 //usage:        "    This makes it also possible to use a different set of options (below) for\n"
53 //usage:        "    the module and the alias.\n"
54 //usage:        "    A module can be aliased more than once.\n"
55 //usage:        "\n"
56 //usage:        "  options <mod_name|alias_name> <symbol=value...>\n"
57 //usage:        "    When loading module mod_name (or the module aliased by alias_name), pass\n"
58 //usage:        "    the \"symbol=value\" pairs as option to that module.\n"
59 //usage:        "\n"
60 //usage:        "Sample /etc/modules.conf file:\n"
61 //usage:        "\n"
62 //usage:        "  options tulip irq=3\n"
63 //usage:        "  alias tulip tulip2\n"
64 //usage:        "  options tulip2 irq=4 io=0x308\n"
65 //usage:        "\n"
66 //usage:        "Other functionality offered by 'classic' modprobe is not available in\n"
67 //usage:        "this implementation.\n"
68 //usage:        "\n"
69 //usage:        "If module options are present both in the config file, and on the command line,\n"
70 //usage:        "then the options from the command line will be passed to the module _after_\n"
71 //usage:        "the options from the config file. That way, you can have defaults in the config\n"
72 //usage:        "file, and override them for a specific usage from the command line.\n"
73 //usage:#define modprobe_example_usage
74 //usage:       "(with the above /etc/modules.conf):\n\n"
75 //usage:       "$ modprobe tulip\n"
76 //usage:       "   will load the module 'tulip' with default option 'irq=3'\n\n"
77 //usage:       "$ modprobe tulip irq=5\n"
78 //usage:       "   will load the module 'tulip' with option 'irq=5', thus overriding the default\n\n"
79 //usage:       "$ modprobe tulip2\n"
80 //usage:       "   will load the module 'tulip' with default options 'irq=4 io=0x308',\n"
81 //usage:       "   which are the default for alias 'tulip2'\n\n"
82 //usage:       "$ modprobe tulip2 irq=8\n"
83 //usage:       "   will load the module 'tulip' with default options 'irq=4 io=0x308 irq=8',\n"
84 //usage:       "   which are the default for alias 'tulip2' overridden by the option 'irq=8'\n\n"
85 //usage:       "   from the command line\n\n"
86 //usage:       "$ modprobe tulip2 irq=2 io=0x210\n"
87 //usage:       "   will load the module 'tulip' with default options 'irq=4 io=0x308 irq=4 io=0x210',\n"
88 //usage:       "   which are the default for alias 'tulip2' overridden by the options 'irq=2 io=0x210'\n\n"
89 //usage:       "   from the command line\n"
90 //usage:
91 //usage:#define modprobe_trivial_usage
92 //usage:        "[-alrqvsD" IF_FEATURE_MODPROBE_BLACKLIST("b") "]"
93 //usage:        " MODULE [SYMBOL=VALUE]..."
94 //usage:#define modprobe_full_usage "\n\n"
95 //usage:       "        -a      Load multiple MODULEs"
96 //usage:     "\n        -l      List (MODULE is a pattern)"
97 //usage:     "\n        -r      Remove MODULE (stacks) or do autoclean"
98 //usage:     "\n        -q      Quiet"
99 //usage:     "\n        -v      Verbose"
100 //usage:     "\n        -s      Log to syslog"
101 //usage:     "\n        -D      Show dependencies"
102 //usage:        IF_FEATURE_MODPROBE_BLACKLIST(
103 //usage:     "\n        -b      Apply blacklist to module names too"
104 //usage:        )
105 //usage:#endif /* !ENABLE_MODPROBE_SMALL */
106
107 /* Note: usage text doesn't document various 2.4 options
108  * we pull in through INSMOD_OPTS define
109  * Note2: -b is always accepted, but if !FEATURE_MODPROBE_BLACKLIST,
110  * it is a no-op.
111  */
112 #define MODPROBE_OPTS  "alrDb"
113 /* -a and -D _are_ in fact compatible */
114 #define MODPROBE_COMPLEMENTARY ("q-v:v-q:l--arD:r--alD:a--lr:D--rl")
115 //#define MODPROBE_OPTS  "acd:lnrt:C:b"
116 //#define MODPROBE_COMPLEMENTARY "q-v:v-q:l--acr:a--lr:r--al"
117 enum {
118         OPT_INSERT_ALL   = (INSMOD_OPT_UNUSED << 0), /* a */
119         //OPT_DUMP_ONLY  = (INSMOD_OPT_UNUSED << x), /* c */
120         //OPT_DIRNAME    = (INSMOD_OPT_UNUSED << x), /* d */
121         OPT_LIST_ONLY    = (INSMOD_OPT_UNUSED << 1), /* l */
122         //OPT_SHOW_ONLY  = (INSMOD_OPT_UNUSED << x), /* n */
123         OPT_REMOVE       = (INSMOD_OPT_UNUSED << 2), /* r */
124         //OPT_RESTRICT   = (INSMOD_OPT_UNUSED << x), /* t */
125         //OPT_VERONLY    = (INSMOD_OPT_UNUSED << x), /* V */
126         //OPT_CONFIGFILE = (INSMOD_OPT_UNUSED << x), /* C */
127         OPT_SHOW_DEPS    = (INSMOD_OPT_UNUSED << 3), /* D */
128         OPT_BLACKLIST    = (INSMOD_OPT_UNUSED << 4) * ENABLE_FEATURE_MODPROBE_BLACKLIST,
129 };
130 #if ENABLE_LONG_OPTS
131 static const char modprobe_longopts[] ALIGN1 =
132         /* nobody asked for long opts (yet) */
133         // "all\0"          No_argument "a"
134         // "list\0"         No_argument "l"
135         // "remove\0"       No_argument "r"
136         // "quiet\0"        No_argument "q"
137         // "verbose\0"      No_argument "v"
138         // "syslog\0"       No_argument "s"
139         /* module-init-tools 3.11.1 has only long opt --show-depends
140          * but no short -D, we provide long opt for scripts which
141          * were written for 3.11.1: */
142         "show-depends\0"     No_argument "D"
143         // "use-blacklist\0" No_argument "b"
144         ;
145 #endif
146
147 #define MODULE_FLAG_LOADED              0x0001
148 #define MODULE_FLAG_NEED_DEPS           0x0002
149 /* "was seen in modules.dep": */
150 #define MODULE_FLAG_FOUND_IN_MODDEP     0x0004
151 #define MODULE_FLAG_BLACKLISTED         0x0008
152
153 struct module_entry { /* I'll call it ME. */
154         unsigned flags;
155         char *modname; /* stripped of /path/, .ext and s/-/_/g */
156         const char *probed_name; /* verbatim as seen on cmdline */
157         char *options; /* options from config files */
158         llist_t *realnames; /* strings. if this module is an alias, */
159         /* real module name is one of these. */
160 //Can there really be more than one? Example from real kernel?
161         llist_t *deps; /* strings. modules we depend on */
162 };
163
164 #define DB_HASH_SIZE 256
165
166 struct globals {
167         llist_t *probes; /* MEs of module(s) requested on cmdline */
168         char *cmdline_mopts; /* module options from cmdline */
169         int num_unresolved_deps;
170         /* bool. "Did we have 'symbol:FOO' requested on cmdline?" */
171         smallint need_symbols;
172         struct utsname uts;
173         llist_t *db[DB_HASH_SIZE]; /* MEs of all modules ever seen (caching for speed) */
174 } FIX_ALIASING;
175 #define G (*ptr_to_globals)
176 #define INIT_G() do { \
177         SET_PTR_TO_GLOBALS(xzalloc(sizeof(G))); \
178 } while (0)
179
180
181 static int read_config(const char *path);
182
183 static char *gather_options_str(char *opts, const char *append)
184 {
185         /* Speed-optimized. We call gather_options_str many times. */
186         if (append) {
187                 if (opts == NULL) {
188                         opts = xstrdup(append);
189                 } else {
190                         int optlen = strlen(opts);
191                         opts = xrealloc(opts, optlen + strlen(append) + 2);
192                         sprintf(opts + optlen, " %s", append);
193                 }
194         }
195         return opts;
196 }
197
198 /* These three functions called many times, optimizing for speed.
199  * Users reported minute-long delays when they runn iptables repeatedly
200  * (iptables use modprobe to install needed kernel modules).
201  */
202 static struct module_entry *helper_get_module(const char *module, int create)
203 {
204         char modname[MODULE_NAME_LEN];
205         struct module_entry *e;
206         llist_t *l;
207         unsigned i;
208         unsigned hash;
209
210         filename2modname(module, modname);
211
212         hash = 0;
213         for (i = 0; modname[i]; i++)
214                 hash = ((hash << 5) + hash) + modname[i];
215         hash %= DB_HASH_SIZE;
216
217         for (l = G.db[hash]; l; l = l->link) {
218                 e = (struct module_entry *) l->data;
219                 if (strcmp(e->modname, modname) == 0)
220                         return e;
221         }
222         if (!create)
223                 return NULL;
224
225         e = xzalloc(sizeof(*e));
226         e->modname = xstrdup(modname);
227         llist_add_to(&G.db[hash], e);
228
229         return e;
230 }
231 static ALWAYS_INLINE struct module_entry *get_or_add_modentry(const char *module)
232 {
233         return helper_get_module(module, 1);
234 }
235 /* So far this function always gets a module pathname, never an alias name.
236  * The crucial difference is that pathname needs dirname stripping,
237  * while alias name must NOT do it!
238  * Testcase where dirname stripping is likely to go wrong: "modprobe devname:snd/timer"
239  */
240 static ALWAYS_INLINE struct module_entry *get_modentry(const char *pathname)
241 {
242         return helper_get_module(bb_get_last_path_component_nostrip(pathname), 0);
243 }
244
245 static void add_probe(const char *name)
246 {
247         struct module_entry *m;
248
249         m = get_or_add_modentry(name);
250         if (!(option_mask32 & (OPT_REMOVE | OPT_SHOW_DEPS))
251          && (m->flags & MODULE_FLAG_LOADED)
252         ) {
253                 DBG("skipping %s, it is already loaded", name);
254                 return;
255         }
256
257         DBG("queuing %s", name);
258         m->probed_name = name;
259         m->flags |= MODULE_FLAG_NEED_DEPS;
260         llist_add_to_end(&G.probes, m);
261         G.num_unresolved_deps++;
262         if (ENABLE_FEATURE_MODUTILS_SYMBOLS
263          && strncmp(m->modname, "symbol:", 7) == 0
264         ) {
265                 G.need_symbols = 1;
266         }
267 }
268
269 static int FAST_FUNC config_file_action(const char *filename,
270                                         struct stat *statbuf UNUSED_PARAM,
271                                         void *userdata UNUSED_PARAM,
272                                         int depth UNUSED_PARAM)
273 {
274         char *tokens[3];
275         parser_t *p;
276         struct module_entry *m;
277         int rc = TRUE;
278
279         if (bb_basename(filename)[0] == '.')
280                 goto error;
281
282         p = config_open2(filename, fopen_for_read);
283         if (p == NULL) {
284                 rc = FALSE;
285                 goto error;
286         }
287
288         while (config_read(p, tokens, 3, 2, "# \t", PARSE_NORMAL)) {
289 //Use index_in_strings?
290                 if (strcmp(tokens[0], "alias") == 0) {
291                         /* alias <wildcard> <modulename> */
292                         llist_t *l;
293                         char wildcard[MODULE_NAME_LEN];
294                         char *rmod;
295
296                         if (tokens[2] == NULL)
297                                 continue;
298                         filename2modname(tokens[1], wildcard);
299
300                         for (l = G.probes; l; l = l->link) {
301                                 m = (struct module_entry *) l->data;
302                                 if (fnmatch(wildcard, m->modname, 0) != 0)
303                                         continue;
304                                 rmod = filename2modname(tokens[2], NULL);
305                                 llist_add_to(&m->realnames, rmod);
306
307                                 if (m->flags & MODULE_FLAG_NEED_DEPS) {
308                                         m->flags &= ~MODULE_FLAG_NEED_DEPS;
309                                         G.num_unresolved_deps--;
310                                 }
311
312                                 m = get_or_add_modentry(rmod);
313                                 if (!(m->flags & MODULE_FLAG_NEED_DEPS)) {
314                                         m->flags |= MODULE_FLAG_NEED_DEPS;
315                                         G.num_unresolved_deps++;
316                                 }
317                         }
318                 } else if (strcmp(tokens[0], "options") == 0) {
319                         /* options <modulename> <option...> */
320                         if (tokens[2] == NULL)
321                                 continue;
322                         m = get_or_add_modentry(tokens[1]);
323                         m->options = gather_options_str(m->options, tokens[2]);
324                 } else if (strcmp(tokens[0], "include") == 0) {
325                         /* include <filename> */
326                         read_config(tokens[1]);
327                 } else if (ENABLE_FEATURE_MODPROBE_BLACKLIST
328                  && strcmp(tokens[0], "blacklist") == 0
329                 ) {
330                         /* blacklist <modulename> */
331                         get_or_add_modentry(tokens[1])->flags |= MODULE_FLAG_BLACKLISTED;
332                 }
333         }
334         config_close(p);
335  error:
336         return rc;
337 }
338
339 static int read_config(const char *path)
340 {
341         return recursive_action(path, ACTION_RECURSE | ACTION_QUIET,
342                                 config_file_action, NULL, NULL, 1);
343 }
344
345 static const char *humanly_readable_name(struct module_entry *m)
346 {
347         /* probed_name may be NULL. modname always exists. */
348         return m->probed_name ? m->probed_name : m->modname;
349 }
350
351 static char *parse_and_add_kcmdline_module_options(char *options, const char *modulename)
352 {
353         char *kcmdline_buf;
354         char *kcmdline;
355         char *kptr;
356         int len;
357
358         kcmdline_buf = xmalloc_open_read_close("/proc/cmdline", NULL);
359         if (!kcmdline_buf)
360                 return options;
361
362         kcmdline = kcmdline_buf;
363         len = strlen(modulename);
364         while ((kptr = strsep(&kcmdline, "\n\t ")) != NULL) {
365                 if (strncmp(modulename, kptr, len) != 0)
366                         continue;
367                 kptr += len;
368                 if (*kptr != '.')
369                         continue;
370                 /* It is "modulename.xxxx" */
371                 kptr++;
372                 if (strchr(kptr, '=') != NULL) {
373                         /* It is "modulename.opt=[val]" */
374                         options = gather_options_str(options, kptr);
375                 }
376         }
377         free(kcmdline_buf);
378
379         return options;
380 }
381
382 /* Return: similar to bb_init_module:
383  * 0 on success,
384  * -errno on open/read error,
385  * errno on init_module() error
386  */
387 /* NB: INSMOD_OPT_SILENT bit suppresses ONLY non-existent modules,
388  * not deleted ones (those are still listed in modules.dep).
389  * module-init-tools version 3.4:
390  * # modprobe bogus
391  * FATAL: Module bogus not found. [exitcode 1]
392  * # modprobe -q bogus            [silent, exitcode still 1]
393  * but:
394  * # rm kernel/drivers/net/dummy.ko
395  * # modprobe -q dummy
396  * FATAL: Could not open '/lib/modules/xxx/kernel/drivers/net/dummy.ko': No such file or directory
397  * [exitcode 1]
398  */
399 static int do_modprobe(struct module_entry *m)
400 {
401         int rc, first;
402
403         if (!(m->flags & MODULE_FLAG_FOUND_IN_MODDEP)) {
404                 if (!(option_mask32 & INSMOD_OPT_SILENT))
405                         bb_error_msg("module %s not found in modules.dep",
406                                 humanly_readable_name(m));
407                 return -ENOENT;
408         }
409         DBG("do_modprob'ing %s", m->modname);
410
411         if (!(option_mask32 & OPT_REMOVE))
412                 m->deps = llist_rev(m->deps);
413
414         if (0) {
415                 llist_t *l;
416                 for (l = m->deps; l; l = l->link)
417                         DBG("dep: %s", l->data);
418         }
419
420         first = 1;
421         rc = 0;
422         while (m->deps) {
423                 struct module_entry *m2;
424                 char *fn, *options;
425
426                 rc = 0;
427                 fn = llist_pop(&m->deps); /* we leak it */
428                 m2 = get_or_add_modentry(bb_get_last_path_component_nostrip(fn));
429
430                 if (option_mask32 & OPT_REMOVE) {
431                         /* modprobe -r */
432                         if (m2->flags & MODULE_FLAG_LOADED) {
433                                 rc = bb_delete_module(m2->modname, O_EXCL);
434                                 if (rc) {
435                                         if (first) {
436                                                 bb_error_msg("can't unload module %s: %s",
437                                                         humanly_readable_name(m2),
438                                                         moderror(rc));
439                                                 break;
440                                         }
441                                 } else {
442                                         m2->flags &= ~MODULE_FLAG_LOADED;
443                                 }
444                         }
445                         /* do not error out if *deps* fail to unload */
446                         first = 0;
447                         continue;
448                 }
449
450                 options = m2->options;
451                 m2->options = NULL;
452                 options = parse_and_add_kcmdline_module_options(options, m2->modname);
453                 if (m == m2)
454                         options = gather_options_str(options, G.cmdline_mopts);
455
456                 if (option_mask32 & OPT_SHOW_DEPS) {
457                         printf(options ? "insmod %s/%s/%s %s\n"
458                                         : "insmod %s/%s/%s\n",
459                                 CONFIG_DEFAULT_MODULES_DIR, G.uts.release, fn,
460                                 options);
461                         free(options);
462                         continue;
463                 }
464
465                 if (m2->flags & MODULE_FLAG_LOADED) {
466                         DBG("%s is already loaded, skipping", fn);
467                         free(options);
468                         continue;
469                 }
470
471                 rc = bb_init_module(fn, options);
472                 DBG("loaded %s '%s', rc:%d", fn, options, rc);
473                 if (rc == EEXIST)
474                         rc = 0;
475                 free(options);
476                 if (rc) {
477                         bb_error_msg("can't load module %s (%s): %s",
478                                 humanly_readable_name(m2),
479                                 fn,
480                                 moderror(rc)
481                         );
482                         break;
483                 }
484                 m2->flags |= MODULE_FLAG_LOADED;
485         }
486
487         return rc;
488 }
489
490 static void load_modules_dep(void)
491 {
492         struct module_entry *m;
493         char *colon, *tokens[2];
494         parser_t *p;
495
496         /* Modprobe does not work at all without modules.dep,
497          * even if the full module name is given. Returning error here
498          * was making us later confuse user with this message:
499          * "module /full/path/to/existing/file/module.ko not found".
500          * It's better to die immediately, with good message.
501          * xfopen_for_read provides that. */
502         p = config_open2(CONFIG_DEFAULT_DEPMOD_FILE, xfopen_for_read);
503
504         while (G.num_unresolved_deps
505          && config_read(p, tokens, 2, 1, "# \t", PARSE_NORMAL)
506         ) {
507                 colon = last_char_is(tokens[0], ':');
508                 if (colon == NULL)
509                         continue;
510                 *colon = '\0';
511
512                 m = get_modentry(tokens[0]);
513                 if (m == NULL)
514                         continue;
515
516                 /* Optimization... */
517                 if ((m->flags & MODULE_FLAG_LOADED)
518                  && !(option_mask32 & (OPT_REMOVE | OPT_SHOW_DEPS))
519                 ) {
520                         DBG("skip deps of %s, it's already loaded", tokens[0]);
521                         continue;
522                 }
523
524                 m->flags |= MODULE_FLAG_FOUND_IN_MODDEP;
525                 if ((m->flags & MODULE_FLAG_NEED_DEPS) && (m->deps == NULL)) {
526                         G.num_unresolved_deps--;
527                         llist_add_to(&m->deps, xstrdup(tokens[0]));
528                         if (tokens[1])
529                                 string_to_llist(tokens[1], &m->deps, " \t");
530                 } else
531                         DBG("skipping dep line");
532         }
533         config_close(p);
534 }
535
536 int modprobe_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
537 int modprobe_main(int argc UNUSED_PARAM, char **argv)
538 {
539         int rc;
540         unsigned opt;
541         struct module_entry *me;
542
543         INIT_G();
544
545         IF_LONG_OPTS(applet_long_options = modprobe_longopts;)
546         opt_complementary = MODPROBE_COMPLEMENTARY;
547         opt = getopt32(argv, INSMOD_OPTS MODPROBE_OPTS INSMOD_ARGS);
548         argv += optind;
549
550         /* Goto modules location */
551         xchdir(CONFIG_DEFAULT_MODULES_DIR);
552         uname(&G.uts);
553         xchdir(G.uts.release);
554
555         if (opt & OPT_LIST_ONLY) {
556                 int i;
557                 char *colon, *tokens[2];
558                 parser_t *p = config_open2(CONFIG_DEFAULT_DEPMOD_FILE, xfopen_for_read);
559
560                 for (i = 0; argv[i]; i++)
561                         replace(argv[i], '-', '_');
562
563                 while (config_read(p, tokens, 2, 1, "# \t", PARSE_NORMAL)) {
564                         colon = last_char_is(tokens[0], ':');
565                         if (!colon)
566                                 continue;
567                         *colon = '\0';
568                         if (!argv[0])
569                                 puts(tokens[0]);
570                         else {
571                                 char name[MODULE_NAME_LEN];
572                                 filename2modname(
573                                         bb_get_last_path_component_nostrip(tokens[0]),
574                                         name
575                                 );
576                                 for (i = 0; argv[i]; i++) {
577                                         if (fnmatch(argv[i], name, 0) == 0) {
578                                                 puts(tokens[0]);
579                                         }
580                                 }
581                         }
582                 }
583                 return EXIT_SUCCESS;
584         }
585
586         /* Yes, for some reason -l ignores -s... */
587         if (opt & INSMOD_OPT_SYSLOG)
588                 logmode = LOGMODE_SYSLOG;
589
590         if (!argv[0]) {
591                 if (opt & OPT_REMOVE) {
592                         /* "modprobe -r" (w/o params).
593                          * "If name is NULL, all unused modules marked
594                          * autoclean will be removed".
595                          */
596                         if (bb_delete_module(NULL, O_NONBLOCK | O_EXCL) != 0)
597                                 bb_perror_msg_and_die("rmmod");
598                 }
599                 return EXIT_SUCCESS;
600         }
601
602         /* Retrieve module names of already loaded modules */
603         {
604                 char *s;
605                 parser_t *parser = config_open2("/proc/modules", fopen_for_read);
606                 while (config_read(parser, &s, 1, 1, "# \t", PARSE_NORMAL & ~PARSE_GREEDY))
607                         get_or_add_modentry(s)->flags |= MODULE_FLAG_LOADED;
608                 config_close(parser);
609         }
610
611         if (opt & (OPT_INSERT_ALL | OPT_REMOVE)) {
612                 /* Each argument is a module name */
613                 do {
614                         DBG("adding module %s", *argv);
615                         add_probe(*argv++);
616                 } while (*argv);
617         } else {
618                 /* First argument is module name, rest are parameters */
619                 DBG("probing just module %s", *argv);
620                 add_probe(argv[0]);
621                 G.cmdline_mopts = parse_cmdline_module_options(argv, /*quote_spaces:*/ 1);
622         }
623
624         /* Happens if all requested modules are already loaded */
625         if (G.probes == NULL)
626                 return EXIT_SUCCESS;
627
628         read_config("/etc/modprobe.conf");
629         read_config("/etc/modprobe.d");
630         if (ENABLE_FEATURE_MODUTILS_SYMBOLS && G.need_symbols)
631                 read_config("modules.symbols");
632         load_modules_dep();
633         if (ENABLE_FEATURE_MODUTILS_ALIAS && G.num_unresolved_deps) {
634                 read_config("modules.alias");
635                 load_modules_dep();
636         }
637
638         rc = 0;
639         while ((me = llist_pop(&G.probes)) != NULL) {
640                 if (me->realnames == NULL) {
641                         DBG("probing by module name");
642                         /* This is not an alias. Literal names are blacklisted
643                          * only if '-b' is given.
644                          */
645                         if (!(opt & OPT_BLACKLIST)
646                          || !(me->flags & MODULE_FLAG_BLACKLISTED)
647                         ) {
648                                 rc |= do_modprobe(me);
649                         }
650                         continue;
651                 }
652
653                 /* Probe all real names for the alias */
654                 do {
655                         char *realname = llist_pop(&me->realnames);
656                         struct module_entry *m2;
657
658                         DBG("probing alias %s by realname %s", me->modname, realname);
659                         m2 = get_or_add_modentry(realname);
660                         if (!(m2->flags & MODULE_FLAG_BLACKLISTED)
661                          && (!(m2->flags & MODULE_FLAG_LOADED)
662                             || (opt & (OPT_REMOVE | OPT_SHOW_DEPS)))
663                         ) {
664 //TODO: we can pass "me" as 2nd param to do_modprobe,
665 //and make do_modprobe emit more meaningful error messages
666 //with alias name included, not just module name alias resolves to.
667                                 rc |= do_modprobe(m2);
668                         }
669                         free(realname);
670                 } while (me->realnames != NULL);
671         }
672
673         return (rc != 0);
674 }