unicode: s/FEATURE_ASSUME_UNICODE/UNICODE_SUPPORT, add UNICODE_USING_LOCALE
[platform/upstream/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 tarball for details.
9  */
10
11 /* Note that unlike older versions of modules.dep/depmod (busybox and m-i-t),
12  * we expect the full dependency list to be specified in modules.dep.
13  * Older versions would only export the direct dependency list.
14  */
15 #include "libbb.h"
16 #include "modutils.h"
17 #include <sys/utsname.h>
18 #include <fnmatch.h>
19
20 //#define DBG(fmt, ...) bb_error_msg("%s: " fmt, __func__, ## __VA_ARGS__)
21 #define DBG(...) ((void)0)
22
23 #define MODULE_FLAG_LOADED              0x0001
24 #define MODULE_FLAG_NEED_DEPS           0x0002
25 /* "was seen in modules.dep": */
26 #define MODULE_FLAG_FOUND_IN_MODDEP     0x0004
27 #define MODULE_FLAG_BLACKLISTED         0x0008
28
29 struct module_entry { /* I'll call it ME. */
30         unsigned flags;
31         char *modname; /* stripped of /path/, .ext and s/-/_/g */
32         const char *probed_name; /* verbatim as seen on cmdline */
33         char *options; /* options from config files */
34         llist_t *realnames; /* strings. if this module is an alias, */
35         /* real module name is one of these. */
36 //Can there really be more than one? Example from real kernel?
37         llist_t *deps; /* strings. modules we depend on */
38 };
39
40 /* NB: INSMOD_OPT_SILENT bit suppresses ONLY non-existent modules,
41  * not deleted ones (those are still listed in modules.dep).
42  * module-init-tools version 3.4:
43  * # modprobe bogus
44  * FATAL: Module bogus not found. [exitcode 1]
45  * # modprobe -q bogus            [silent, exitcode still 1]
46  * but:
47  * # rm kernel/drivers/net/dummy.ko
48  * # modprobe -q dummy
49  * FATAL: Could not open '/lib/modules/xxx/kernel/drivers/net/dummy.ko': No such file or directory
50  * [exitcode 1]
51  */
52 #define MODPROBE_OPTS  "acdlnrt:VC:" IF_FEATURE_MODPROBE_BLACKLIST("b")
53 enum {
54         MODPROBE_OPT_INSERT_ALL = (INSMOD_OPT_UNUSED << 0), /* a */
55         MODPROBE_OPT_DUMP_ONLY  = (INSMOD_OPT_UNUSED << 1), /* c */
56         MODPROBE_OPT_D          = (INSMOD_OPT_UNUSED << 2), /* d */
57         MODPROBE_OPT_LIST_ONLY  = (INSMOD_OPT_UNUSED << 3), /* l */
58         MODPROBE_OPT_SHOW_ONLY  = (INSMOD_OPT_UNUSED << 4), /* n */
59         MODPROBE_OPT_REMOVE     = (INSMOD_OPT_UNUSED << 5), /* r */
60         MODPROBE_OPT_RESTRICT   = (INSMOD_OPT_UNUSED << 6), /* t */
61         MODPROBE_OPT_VERONLY    = (INSMOD_OPT_UNUSED << 7), /* V */
62         MODPROBE_OPT_CONFIGFILE = (INSMOD_OPT_UNUSED << 8), /* C */
63         MODPROBE_OPT_BLACKLIST  = (INSMOD_OPT_UNUSED << 9) * ENABLE_FEATURE_MODPROBE_BLACKLIST,
64 };
65
66 struct globals {
67         llist_t *db; /* MEs of all modules ever seen (caching for speed) */
68         llist_t *probes; /* MEs of module(s) requested on cmdline */
69         char *cmdline_mopts; /* module options from cmdline */
70         int num_unresolved_deps;
71         /* bool. "Did we have 'symbol:FOO' requested on cmdline?" */
72         smallint need_symbols;
73 } FIX_ALIASING;
74 #define G (*(struct globals*)&bb_common_bufsiz1)
75 #define INIT_G() do { } while (0)
76
77
78 static int read_config(const char *path);
79
80 static char *gather_options_str(char *opts, const char *append)
81 {
82         /* Speed-optimized. We call gather_options_str many times. */
83         if (append) {
84                 if (opts == NULL) {
85                         opts = xstrdup(append);
86                 } else {
87                         int optlen = strlen(opts);
88                         opts = xrealloc(opts, optlen + strlen(append) + 2);
89                         sprintf(opts + optlen, " %s", append);
90                 }
91         }
92         return opts;
93 }
94
95 static struct module_entry *helper_get_module(const char *module, int create)
96 {
97         char modname[MODULE_NAME_LEN];
98         struct module_entry *e;
99         llist_t *l;
100
101         filename2modname(module, modname);
102         for (l = G.db; l != NULL; l = l->link) {
103                 e = (struct module_entry *) l->data;
104                 if (strcmp(e->modname, modname) == 0)
105                         return e;
106         }
107         if (!create)
108                 return NULL;
109
110         e = xzalloc(sizeof(*e));
111         e->modname = xstrdup(modname);
112         llist_add_to(&G.db, e);
113
114         return e;
115 }
116 static struct module_entry *get_or_add_modentry(const char *module)
117 {
118         return helper_get_module(module, 1);
119 }
120 static struct module_entry *get_modentry(const char *module)
121 {
122         return helper_get_module(module, 0);
123 }
124
125 static void add_probe(const char *name)
126 {
127         struct module_entry *m;
128
129         m = get_or_add_modentry(name);
130         if (!(option_mask32 & MODPROBE_OPT_REMOVE)
131          && (m->flags & MODULE_FLAG_LOADED)
132         ) {
133                 DBG("skipping %s, it is already loaded", name);
134                 return;
135         }
136
137         DBG("queuing %s", name);
138         m->probed_name = name;
139         m->flags |= MODULE_FLAG_NEED_DEPS;
140         llist_add_to_end(&G.probes, m);
141         G.num_unresolved_deps++;
142         if (ENABLE_FEATURE_MODUTILS_SYMBOLS
143          && strncmp(m->modname, "symbol:", 7) == 0
144         ) {
145                 G.need_symbols = 1;
146         }
147 }
148
149 static int FAST_FUNC config_file_action(const char *filename,
150                                         struct stat *statbuf UNUSED_PARAM,
151                                         void *userdata UNUSED_PARAM,
152                                         int depth UNUSED_PARAM)
153 {
154         char *tokens[3];
155         parser_t *p;
156         struct module_entry *m;
157         int rc = TRUE;
158
159         if (bb_basename(filename)[0] == '.')
160                 goto error;
161
162         p = config_open2(filename, fopen_for_read);
163         if (p == NULL) {
164                 rc = FALSE;
165                 goto error;
166         }
167
168         while (config_read(p, tokens, 3, 2, "# \t", PARSE_NORMAL)) {
169 //Use index_in_strings?
170                 if (strcmp(tokens[0], "alias") == 0) {
171                         /* alias <wildcard> <modulename> */
172                         llist_t *l;
173                         char wildcard[MODULE_NAME_LEN];
174                         char *rmod;
175
176                         if (tokens[2] == NULL)
177                                 continue;
178                         filename2modname(tokens[1], wildcard);
179
180                         for (l = G.probes; l != NULL; l = l->link) {
181                                 m = (struct module_entry *) l->data;
182                                 if (fnmatch(wildcard, m->modname, 0) != 0)
183                                         continue;
184                                 rmod = filename2modname(tokens[2], NULL);
185                                 llist_add_to(&m->realnames, rmod);
186
187                                 if (m->flags & MODULE_FLAG_NEED_DEPS) {
188                                         m->flags &= ~MODULE_FLAG_NEED_DEPS;
189                                         G.num_unresolved_deps--;
190                                 }
191
192                                 m = get_or_add_modentry(rmod);
193                                 if (!(m->flags & MODULE_FLAG_NEED_DEPS)) {
194                                         m->flags |= MODULE_FLAG_NEED_DEPS;
195                                         G.num_unresolved_deps++;
196                                 }
197                         }
198                 } else if (strcmp(tokens[0], "options") == 0) {
199                         /* options <modulename> <option...> */
200                         if (tokens[2] == NULL)
201                                 continue;
202                         m = get_or_add_modentry(tokens[1]);
203                         m->options = gather_options_str(m->options, tokens[2]);
204                 } else if (strcmp(tokens[0], "include") == 0) {
205                         /* include <filename> */
206                         read_config(tokens[1]);
207                 } else if (ENABLE_FEATURE_MODPROBE_BLACKLIST
208                  && strcmp(tokens[0], "blacklist") == 0
209                 ) {
210                         /* blacklist <modulename> */
211                         get_or_add_modentry(tokens[1])->flags |= MODULE_FLAG_BLACKLISTED;
212                 }
213         }
214         config_close(p);
215  error:
216         return rc;
217 }
218
219 static int read_config(const char *path)
220 {
221         return recursive_action(path, ACTION_RECURSE | ACTION_QUIET,
222                                 config_file_action, NULL, NULL, 1);
223 }
224
225 static const char *humanly_readable_name(struct module_entry *m)
226 {
227         /* probed_name may be NULL. modname always exists. */
228         return m->probed_name ? m->probed_name : m->modname;
229 }
230
231 static char *parse_and_add_kcmdline_module_options(char *options, const char *modulename)
232 {
233         char *kcmdline_buf;
234         char *kcmdline;
235         char *kptr;
236         int len;
237
238         kcmdline_buf = xmalloc_open_read_close("/proc/cmdline", NULL);
239         if (!kcmdline_buf)
240                 return options;
241
242         kcmdline = kcmdline_buf;
243         len = strlen(modulename);
244         while ((kptr = strsep(&kcmdline, "\n\t ")) != NULL) {
245                 if (strncmp(modulename, kptr, len) != 0)
246                         continue;
247                 kptr += len;
248                 if (*kptr != '.')
249                         continue;
250                 /* It is "modulename.xxxx" */
251                 kptr++;
252                 if (strchr(kptr, '=') != NULL) {
253                         /* It is "modulename.opt=[val]" */
254                         options = gather_options_str(options, kptr);
255                 }
256         }
257         free(kcmdline_buf);
258
259         return options;
260 }
261
262 /* Return: similar to bb_init_module:
263  * 0 on success,
264  * -errno on open/read error,
265  * errno on init_module() error
266  */
267 static int do_modprobe(struct module_entry *m)
268 {
269         struct module_entry *m2 = m2; /* for compiler */
270         char *fn, *options;
271         int rc, first;
272         llist_t *l;
273
274         if (!(m->flags & MODULE_FLAG_FOUND_IN_MODDEP)) {
275                 if (!(option_mask32 & INSMOD_OPT_SILENT))
276                         bb_error_msg("module %s not found in modules.dep",
277                                 humanly_readable_name(m));
278                 return -ENOENT;
279         }
280         DBG("do_modprob'ing %s", m->modname);
281
282         if (!(option_mask32 & MODPROBE_OPT_REMOVE))
283                 m->deps = llist_rev(m->deps);
284
285         for (l = m->deps; l != NULL; l = l->link)
286                 DBG("dep: %s", l->data);
287
288         first = 1;
289         rc = 0;
290         while (m->deps) {
291                 rc = 0;
292                 fn = llist_pop(&m->deps); /* we leak it */
293                 m2 = get_or_add_modentry(fn);
294
295                 if (option_mask32 & MODPROBE_OPT_REMOVE) {
296                         /* modprobe -r */
297                         if (m2->flags & MODULE_FLAG_LOADED) {
298                                 rc = bb_delete_module(m2->modname, O_EXCL);
299                                 if (rc) {
300                                         if (first) {
301                                                 bb_error_msg("can't unload module %s: %s",
302                                                         humanly_readable_name(m2),
303                                                         moderror(rc));
304                                                 break;
305                                         }
306                                 } else {
307                                         m2->flags &= ~MODULE_FLAG_LOADED;
308                                 }
309                         }
310                         /* do not error out if *deps* fail to unload */
311                         first = 0;
312                         continue;
313                 }
314
315                 if (m2->flags & MODULE_FLAG_LOADED) {
316                         DBG("%s is already loaded, skipping", fn);
317                         continue;
318                 }
319
320                 options = m2->options;
321                 m2->options = NULL;
322                 options = parse_and_add_kcmdline_module_options(options, m2->modname);
323                 if (m == m2)
324                         options = gather_options_str(options, G.cmdline_mopts);
325                 rc = bb_init_module(fn, options);
326                 DBG("loaded %s '%s', rc:%d", fn, options, rc);
327                 if (rc == EEXIST)
328                         rc = 0;
329                 free(options);
330                 if (rc) {
331                         bb_error_msg("can't load module %s (%s): %s",
332                                 humanly_readable_name(m2),
333                                 fn,
334                                 moderror(rc)
335                         );
336                         break;
337                 }
338                 m2->flags |= MODULE_FLAG_LOADED;
339         }
340
341         return rc;
342 }
343
344 static void load_modules_dep(void)
345 {
346         struct module_entry *m;
347         char *colon, *tokens[2];
348         parser_t *p;
349
350         /* Modprobe does not work at all without modules.dep,
351          * even if the full module name is given. Returning error here
352          * was making us later confuse user with this message:
353          * "module /full/path/to/existing/file/module.ko not found".
354          * It's better to die immediately, with good message.
355          * xfopen_for_read provides that. */
356         p = config_open2(CONFIG_DEFAULT_DEPMOD_FILE, xfopen_for_read);
357
358         while (G.num_unresolved_deps
359          && config_read(p, tokens, 2, 1, "# \t", PARSE_NORMAL)
360         ) {
361                 colon = last_char_is(tokens[0], ':');
362                 if (colon == NULL)
363                         continue;
364                 *colon = 0;
365
366                 m = get_modentry(tokens[0]);
367                 if (m == NULL)
368                         continue;
369
370                 /* Optimization... */
371                 if ((m->flags & MODULE_FLAG_LOADED)
372                  && !(option_mask32 & MODPROBE_OPT_REMOVE)
373                 ) {
374                         DBG("skip deps of %s, it's already loaded", tokens[0]);
375                         continue;
376                 }
377
378                 m->flags |= MODULE_FLAG_FOUND_IN_MODDEP;
379                 if ((m->flags & MODULE_FLAG_NEED_DEPS) && (m->deps == NULL)) {
380                         G.num_unresolved_deps--;
381                         llist_add_to(&m->deps, xstrdup(tokens[0]));
382                         if (tokens[1])
383                                 string_to_llist(tokens[1], &m->deps, " \t");
384                 } else
385                         DBG("skipping dep line");
386         }
387         config_close(p);
388 }
389
390 int modprobe_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
391 int modprobe_main(int argc UNUSED_PARAM, char **argv)
392 {
393         struct utsname uts;
394         int rc;
395         unsigned opt;
396         struct module_entry *me;
397
398         opt_complementary = "q-v:v-q";
399         opt = getopt32(argv, INSMOD_OPTS MODPROBE_OPTS INSMOD_ARGS, NULL, NULL);
400         argv += optind;
401
402         if (opt & (MODPROBE_OPT_DUMP_ONLY | MODPROBE_OPT_LIST_ONLY |
403                                 MODPROBE_OPT_SHOW_ONLY))
404                 bb_error_msg_and_die("not supported");
405
406         if (!argv[0]) {
407                 if (opt & MODPROBE_OPT_REMOVE) {
408                         /* "modprobe -r" (w/o params).
409                          * "If name is NULL, all unused modules marked
410                          * autoclean will be removed".
411                          */
412                         if (bb_delete_module(NULL, O_NONBLOCK | O_EXCL) != 0)
413                                 bb_perror_msg_and_die("rmmod");
414                 }
415                 return EXIT_SUCCESS;
416         }
417
418         /* Goto modules location */
419         xchdir(CONFIG_DEFAULT_MODULES_DIR);
420         uname(&uts);
421         xchdir(uts.release);
422
423         /* Retrieve module names of already loaded modules */
424         {
425                 char *s;
426                 parser_t *parser = config_open2("/proc/modules", fopen_for_read);
427                 while (config_read(parser, &s, 1, 1, "# \t", PARSE_NORMAL & ~PARSE_GREEDY))
428                         get_or_add_modentry(s)->flags |= MODULE_FLAG_LOADED;
429                 config_close(parser);
430         }
431
432         if (opt & (MODPROBE_OPT_INSERT_ALL | MODPROBE_OPT_REMOVE)) {
433                 /* Each argument is a module name */
434                 do {
435                         DBG("adding module %s", *argv);
436                         add_probe(*argv++);
437                 } while (*argv);
438         } else {
439                 /* First argument is module name, rest are parameters */
440                 DBG("probing just module %s", *argv);
441                 add_probe(argv[0]);
442                 G.cmdline_mopts = parse_cmdline_module_options(argv);
443         }
444
445         /* Happens if all requested modules are already loaded */
446         if (G.probes == NULL)
447                 return EXIT_SUCCESS;
448
449         read_config("/etc/modprobe.conf");
450         read_config("/etc/modprobe.d");
451         if (ENABLE_FEATURE_MODUTILS_SYMBOLS && G.need_symbols)
452                 read_config("modules.symbols");
453         load_modules_dep();
454         if (ENABLE_FEATURE_MODUTILS_ALIAS && G.num_unresolved_deps) {
455                 read_config("modules.alias");
456                 load_modules_dep();
457         }
458
459         rc = 0;
460         while ((me = llist_pop(&G.probes)) != NULL) {
461                 if (me->realnames == NULL) {
462                         DBG("probing by module name");
463                         /* This is not an alias. Literal names are blacklisted
464                          * only if '-b' is given.
465                          */
466                         if (!(opt & MODPROBE_OPT_BLACKLIST)
467                          || !(me->flags & MODULE_FLAG_BLACKLISTED)
468                         ) {
469                                 rc |= do_modprobe(me);
470                         }
471                         continue;
472                 }
473
474                 /* Probe all real names for the alias */
475                 do {
476                         char *realname = llist_pop(&me->realnames);
477                         struct module_entry *m2;
478
479                         DBG("probing alias %s by realname %s", me->modname, realname);
480                         m2 = get_or_add_modentry(realname);
481                         if (!(m2->flags & MODULE_FLAG_BLACKLISTED)
482                          && (!(m2->flags & MODULE_FLAG_LOADED)
483                             || (opt & MODPROBE_OPT_REMOVE))
484                         ) {
485 //TODO: we can pass "me" as 2nd param to do_modprobe,
486 //and make do_modprobe emit more meaningful error messages
487 //with alias name included, not just module name alias resolves to.
488                                 rc |= do_modprobe(m2);
489                         }
490                         free(realname);
491                 } while (me->realnames != NULL);
492         }
493
494         return (rc != 0);
495 }