blob: f5b283b47789e12c9f4345523f01039c9e6c3766 [file] [log] [blame]
Denis Vlasenko671691c2008-07-04 10:25:44 +00001/* vi: set sw=4 ts=4: */
2/*
3 * simplified modprobe
4 *
5 * Copyright (c) 2008 Vladimir Dronnikov
Bernhard Reutner-Fischer6c4dade2008-09-25 12:13:34 +00006 * Copyright (c) 2008 Bernhard Reutner-Fischer (initial depmod code)
Denis Vlasenko671691c2008-07-04 10:25:44 +00007 *
Denys Vlasenko0ef64bd2010-08-16 20:14:46 +02008 * Licensed under GPLv2, see file LICENSE in this source tree.
Denis Vlasenko671691c2008-07-04 10:25:44 +00009 */
10
Denys Vlasenkob9f2d9f2011-01-18 13:58:01 +010011//applet:IF_MODPROBE_SMALL(APPLET(modprobe, BB_DIR_SBIN, BB_SUID_DROP))
12//applet:IF_MODPROBE_SMALL(APPLET_ODDNAME(depmod, modprobe, BB_DIR_SBIN, BB_SUID_DROP, modprobe))
13//applet:IF_MODPROBE_SMALL(APPLET_ODDNAME(insmod, modprobe, BB_DIR_SBIN, BB_SUID_DROP, modprobe))
14//applet:IF_MODPROBE_SMALL(APPLET_ODDNAME(lsmod, modprobe, BB_DIR_SBIN, BB_SUID_DROP, modprobe))
15//applet:IF_MODPROBE_SMALL(APPLET_ODDNAME(rmmod, modprobe, BB_DIR_SBIN, BB_SUID_DROP, modprobe))
Denys Vlasenkoc15613c2010-10-15 11:29:02 +020016
Denis Vlasenko671691c2008-07-04 10:25:44 +000017#include "libbb.h"
Denys Vlasenko043b1e52009-09-06 12:47:55 +020018/* After libbb.h, since it needs sys/types.h on some systems */
Denis Vlasenko671691c2008-07-04 10:25:44 +000019#include <sys/utsname.h> /* uname() */
20#include <fnmatch.h>
21
Denis Vlasenko24a131e2008-07-09 15:30:57 +000022extern int init_module(void *module, unsigned long len, const char *options);
23extern int delete_module(const char *module, unsigned flags);
24extern int query_module(const char *name, int which, void *buf, size_t bufsize, size_t *ret);
25
26
Denys Vlasenko5b3151c2010-09-25 14:37:06 +020027#if 1
28# define dbg1_error_msg(...) ((void)0)
29# define dbg2_error_msg(...) ((void)0)
30#else
31# define dbg1_error_msg(...) bb_error_msg(__VA_ARGS__)
32# define dbg2_error_msg(...) bb_error_msg(__VA_ARGS__)
33#endif
Denis Vlasenko671691c2008-07-04 10:25:44 +000034
Denis Vlasenko24a131e2008-07-09 15:30:57 +000035#define DEPFILE_BB CONFIG_DEFAULT_DEPMOD_FILE".bb"
Denis Vlasenko671691c2008-07-04 10:25:44 +000036
37enum {
38 OPT_q = (1 << 0), /* be quiet */
39 OPT_r = (1 << 1), /* module removal instead of loading */
40};
41
42typedef struct module_info {
43 char *pathname;
Denis Vlasenko78436992008-07-10 14:14:20 +000044 char *aliases;
45 char *deps;
Denis Vlasenko671691c2008-07-04 10:25:44 +000046} module_info;
47
48/*
49 * GLOBALS
50 */
51struct globals {
52 module_info *modinfo;
53 char *module_load_options;
Denis Vlasenko7f950a92008-07-10 14:14:45 +000054 smallint dep_bb_seen;
Denis Vlasenko0e2c93f2008-07-10 14:16:11 +000055 smallint wrote_dep_bb_ok;
Denys Vlasenko0c6914e2009-09-07 02:38:26 +020056 unsigned module_count;
Denis Vlasenko671691c2008-07-04 10:25:44 +000057 int module_found_idx;
Denys Vlasenko0c6914e2009-09-07 02:38:26 +020058 unsigned stringbuf_idx;
59 unsigned stringbuf_size;
60 char *stringbuf; /* some modules have lots of stuff */
Denis Vlasenko671691c2008-07-04 10:25:44 +000061 /* for example, drivers/media/video/saa7134/saa7134.ko */
Denys Vlasenko0c6914e2009-09-07 02:38:26 +020062 /* therefore having a fixed biggish buffer is not wise */
Denis Vlasenko671691c2008-07-04 10:25:44 +000063};
64#define G (*ptr_to_globals)
65#define modinfo (G.modinfo )
Denis Vlasenko7f950a92008-07-10 14:14:45 +000066#define dep_bb_seen (G.dep_bb_seen )
Denis Vlasenko0e2c93f2008-07-10 14:16:11 +000067#define wrote_dep_bb_ok (G.wrote_dep_bb_ok )
Denis Vlasenko671691c2008-07-04 10:25:44 +000068#define module_count (G.module_count )
69#define module_found_idx (G.module_found_idx )
70#define module_load_options (G.module_load_options)
71#define stringbuf_idx (G.stringbuf_idx )
Denys Vlasenko0c6914e2009-09-07 02:38:26 +020072#define stringbuf_size (G.stringbuf_size )
Denis Vlasenko671691c2008-07-04 10:25:44 +000073#define stringbuf (G.stringbuf )
74#define INIT_G() do { \
75 SET_PTR_TO_GLOBALS(xzalloc(sizeof(G))); \
76} while (0)
77
Denys Vlasenko0c6914e2009-09-07 02:38:26 +020078static void append(const char *s)
79{
80 unsigned len = strlen(s);
81 if (stringbuf_idx + len + 15 > stringbuf_size) {
82 stringbuf_size = stringbuf_idx + len + 127;
83 dbg2_error_msg("grow stringbuf to %u", stringbuf_size);
84 stringbuf = xrealloc(stringbuf, stringbuf_size);
85 }
86 memcpy(stringbuf + stringbuf_idx, s, len);
87 stringbuf_idx += len;
88}
Denis Vlasenko671691c2008-07-04 10:25:44 +000089
90static void appendc(char c)
91{
Denys Vlasenko0c6914e2009-09-07 02:38:26 +020092 /* We appendc() only after append(), + 15 trick in append()
93 * makes it unnecessary to check for overflow here */
94 stringbuf[stringbuf_idx++] = c;
Denis Vlasenko671691c2008-07-04 10:25:44 +000095}
96
Denis Vlasenko24a131e2008-07-09 15:30:57 +000097static void bksp(void)
98{
99 if (stringbuf_idx)
100 stringbuf_idx--;
101}
102
Denis Vlasenko671691c2008-07-04 10:25:44 +0000103static void reset_stringbuf(void)
104{
105 stringbuf_idx = 0;
106}
107
108static char* copy_stringbuf(void)
109{
Denys Vlasenko0c6914e2009-09-07 02:38:26 +0200110 char *copy = xzalloc(stringbuf_idx + 1); /* terminating NUL */
Denis Vlasenko671691c2008-07-04 10:25:44 +0000111 return memcpy(copy, stringbuf, stringbuf_idx);
112}
113
114static char* find_keyword(char *ptr, size_t len, const char *word)
115{
116 int wlen;
117
Denis Vlasenkoe9ad84d2008-08-05 13:10:34 +0000118 if (!ptr) /* happens if xmalloc_open_zipped_read_close cannot read it */
Denis Vlasenko671691c2008-07-04 10:25:44 +0000119 return NULL;
120
121 wlen = strlen(word);
122 len -= wlen - 1;
123 while ((ssize_t)len > 0) {
124 char *old = ptr;
125 /* search for the first char in word */
126 ptr = memchr(ptr, *word, len);
127 if (ptr == NULL) /* no occurance left, done */
128 break;
129 if (strncmp(ptr, word, wlen) == 0)
130 return ptr + wlen; /* found, return ptr past it */
131 ++ptr;
132 len -= (ptr - old);
133 }
134 return NULL;
135}
136
137static void replace(char *s, char what, char with)
138{
139 while (*s) {
140 if (what == *s)
141 *s = with;
142 ++s;
143 }
144}
145
Denis Vlasenko24a131e2008-07-09 15:30:57 +0000146/* Take "word word", return malloced "word",NUL,"word",NUL,NUL */
147static char* str_2_list(const char *str)
148{
149 int len = strlen(str) + 1;
150 char *dst = xmalloc(len + 1);
151
152 dst[len] = '\0';
153 memcpy(dst, str, len);
154//TODO: protect against 2+ spaces: "word word"
155 replace(dst, ' ', '\0');
156 return dst;
157}
158
Denis Vlasenko671691c2008-07-04 10:25:44 +0000159/* We use error numbers in a loose translation... */
160static const char *moderror(int err)
161{
162 switch (err) {
163 case ENOEXEC:
164 return "invalid module format";
165 case ENOENT:
166 return "unknown symbol in module or invalid parameter";
167 case ESRCH:
168 return "module has wrong symbol version";
169 case EINVAL: /* "invalid parameter" */
170 return "unknown symbol in module or invalid parameter"
171 + sizeof("unknown symbol in module or");
172 default:
173 return strerror(err);
174 }
175}
176
177static int load_module(const char *fname, const char *options)
178{
179#if 1
180 int r;
181 size_t len = MAXINT(ssize_t);
182 char *module_image;
183 dbg1_error_msg("load_module('%s','%s')", fname, options);
184
Denis Vlasenkoe9ad84d2008-08-05 13:10:34 +0000185 module_image = xmalloc_open_zipped_read_close(fname, &len);
Denis Vlasenko671691c2008-07-04 10:25:44 +0000186 r = (!module_image || init_module(module_image, len, options ? options : "") != 0);
187 free(module_image);
188 dbg1_error_msg("load_module:%d", r);
189 return r; /* 0 = success */
190#else
191 /* For testing */
192 dbg1_error_msg("load_module('%s','%s')", fname, options);
193 return 1;
194#endif
195}
196
Denis Vlasenko78436992008-07-10 14:14:20 +0000197static void parse_module(module_info *info, const char *pathname)
Denis Vlasenko671691c2008-07-04 10:25:44 +0000198{
199 char *module_image;
200 char *ptr;
201 size_t len;
202 size_t pos;
Denis Vlasenko24a131e2008-07-09 15:30:57 +0000203 dbg1_error_msg("parse_module('%s')", pathname);
Denis Vlasenko671691c2008-07-04 10:25:44 +0000204
205 /* Read (possibly compressed) module */
206 len = 64 * 1024 * 1024; /* 64 Mb at most */
Denis Vlasenkoe9ad84d2008-08-05 13:10:34 +0000207 module_image = xmalloc_open_zipped_read_close(pathname, &len);
Denys Vlasenko094cc512011-01-17 14:58:27 +0100208 /* module_image == NULL is ok here, find_keyword handles it */
Denis Vlasenko78436992008-07-10 14:14:20 +0000209//TODO: optimize redundant module body reads
Denis Vlasenko671691c2008-07-04 10:25:44 +0000210
Denis Vlasenko78436992008-07-10 14:14:20 +0000211 /* "alias1 symbol:sym1 alias2 symbol:sym2" */
Denis Vlasenko671691c2008-07-04 10:25:44 +0000212 reset_stringbuf();
Denis Vlasenko671691c2008-07-04 10:25:44 +0000213 pos = 0;
214 while (1) {
215 ptr = find_keyword(module_image + pos, len - pos, "alias=");
216 if (!ptr) {
217 ptr = find_keyword(module_image + pos, len - pos, "__ksymtab_");
218 if (!ptr)
219 break;
220 /* DOCME: __ksymtab_gpl and __ksymtab_strings occur
221 * in many modules. What do they mean? */
Denis Vlasenko0e2c93f2008-07-10 14:16:11 +0000222 if (strcmp(ptr, "gpl") == 0 || strcmp(ptr, "strings") == 0)
223 goto skip;
224 dbg2_error_msg("alias:'symbol:%s'", ptr);
225 append("symbol:");
Denis Vlasenko671691c2008-07-04 10:25:44 +0000226 } else {
Denis Vlasenko24a131e2008-07-09 15:30:57 +0000227 dbg2_error_msg("alias:'%s'", ptr);
Denis Vlasenko671691c2008-07-04 10:25:44 +0000228 }
229 append(ptr);
230 appendc(' ');
Denis Vlasenko0e2c93f2008-07-10 14:16:11 +0000231 skip:
Denis Vlasenko671691c2008-07-04 10:25:44 +0000232 pos = (ptr - module_image);
233 }
Denis Vlasenko24a131e2008-07-09 15:30:57 +0000234 bksp(); /* remove last ' ' */
Denis Vlasenko78436992008-07-10 14:14:20 +0000235 info->aliases = copy_stringbuf();
Denys Vlasenkof9c814b2009-09-07 02:37:19 +0200236 replace(info->aliases, '-', '_');
Denis Vlasenko671691c2008-07-04 10:25:44 +0000237
Denis Vlasenko78436992008-07-10 14:14:20 +0000238 /* "dependency1 depandency2" */
239 reset_stringbuf();
Denis Vlasenko671691c2008-07-04 10:25:44 +0000240 ptr = find_keyword(module_image, len, "depends=");
241 if (ptr && *ptr) {
242 replace(ptr, ',', ' ');
243 replace(ptr, '-', '_');
244 dbg2_error_msg("dep:'%s'", ptr);
245 append(ptr);
246 }
Denis Vlasenko78436992008-07-10 14:14:20 +0000247 info->deps = copy_stringbuf();
Denis Vlasenko671691c2008-07-04 10:25:44 +0000248
249 free(module_image);
Denis Vlasenko671691c2008-07-04 10:25:44 +0000250}
251
Denis Vlasenko24a131e2008-07-09 15:30:57 +0000252static int pathname_matches_modname(const char *pathname, const char *modname)
Denis Vlasenko671691c2008-07-04 10:25:44 +0000253{
254 const char *fname = bb_get_last_path_component_nostrip(pathname);
255 const char *suffix = strrstr(fname, ".ko");
Denis Vlasenko24a131e2008-07-09 15:30:57 +0000256//TODO: can do without malloc?
Denis Vlasenko671691c2008-07-04 10:25:44 +0000257 char *name = xstrndup(fname, suffix - fname);
Denis Vlasenko24a131e2008-07-09 15:30:57 +0000258 int r;
Denis Vlasenko671691c2008-07-04 10:25:44 +0000259 replace(name, '-', '_');
Denis Vlasenko24a131e2008-07-09 15:30:57 +0000260 r = (strcmp(name, modname) == 0);
261 free(name);
262 return r;
Denis Vlasenko671691c2008-07-04 10:25:44 +0000263}
264
265static FAST_FUNC int fileAction(const char *pathname,
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +0000266 struct stat *sb UNUSED_PARAM,
Denis Vlasenko24a131e2008-07-09 15:30:57 +0000267 void *modname_to_match,
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +0000268 int depth UNUSED_PARAM)
Denis Vlasenko671691c2008-07-04 10:25:44 +0000269{
270 int cur;
Denis Vlasenko671691c2008-07-04 10:25:44 +0000271 const char *fname;
272
273 pathname += 2; /* skip "./" */
274 fname = bb_get_last_path_component_nostrip(pathname);
275 if (!strrstr(fname, ".ko")) {
276 dbg1_error_msg("'%s' is not a module", pathname);
277 return TRUE; /* not a module, continue search */
278 }
279
280 cur = module_count++;
Denis Vlasenkodeeed592008-07-08 05:14:36 +0000281 modinfo = xrealloc_vector(modinfo, 12, cur);
Denis Vlasenko671691c2008-07-04 10:25:44 +0000282 modinfo[cur].pathname = xstrdup(pathname);
Denis Vlasenko27842282008-08-04 13:20:36 +0000283 /*modinfo[cur].aliases = NULL; - xrealloc_vector did it */
284 /*modinfo[cur+1].pathname = NULL;*/
Denis Vlasenko671691c2008-07-04 10:25:44 +0000285
Denis Vlasenko24a131e2008-07-09 15:30:57 +0000286 if (!pathname_matches_modname(fname, modname_to_match)) {
Denis Vlasenko671691c2008-07-04 10:25:44 +0000287 dbg1_error_msg("'%s' module name doesn't match", pathname);
288 return TRUE; /* module name doesn't match, continue search */
289 }
290
291 dbg1_error_msg("'%s' module name matches", pathname);
292 module_found_idx = cur;
Denis Vlasenko78436992008-07-10 14:14:20 +0000293 parse_module(&modinfo[cur], pathname);
Denis Vlasenko671691c2008-07-04 10:25:44 +0000294
295 if (!(option_mask32 & OPT_r)) {
296 if (load_module(pathname, module_load_options) == 0) {
297 /* Load was successful, there is nothing else to do.
298 * This can happen ONLY for "top-level" module load,
299 * not a dep, because deps dont do dirscan. */
300 exit(EXIT_SUCCESS);
Denis Vlasenko671691c2008-07-04 10:25:44 +0000301 }
302 }
303
Denis Vlasenko671691c2008-07-04 10:25:44 +0000304 return TRUE;
305}
306
Denis Vlasenko7f950a92008-07-10 14:14:45 +0000307static int load_dep_bb(void)
Denis Vlasenko78436992008-07-10 14:14:20 +0000308{
309 char *line;
Denis Vlasenko5415c852008-07-21 23:05:26 +0000310 FILE *fp = fopen_for_read(DEPFILE_BB);
Denis Vlasenko78436992008-07-10 14:14:20 +0000311
312 if (!fp)
Denis Vlasenko7f950a92008-07-10 14:14:45 +0000313 return 0;
314
315 dep_bb_seen = 1;
316 dbg1_error_msg("loading "DEPFILE_BB);
317
318 /* Why? There is a rare scenario: we did not find modprobe.dep.bb,
319 * we scanned the dir and found no module by name, then we search
320 * for alias (full scan), and we decided to generate modprobe.dep.bb.
321 * But we see modprobe.dep.bb.new! Other modprobe is at work!
322 * We wait and other modprobe renames it to modprobe.dep.bb.
323 * Now we can use it.
324 * But we already have modinfo[] filled, and "module_count = 0"
325 * makes us start anew. Yes, we leak modinfo[].xxx pointers -
326 * there is not much of data there anyway. */
327 module_count = 0;
328 memset(&modinfo[0], 0, sizeof(modinfo[0]));
Denis Vlasenko78436992008-07-10 14:14:20 +0000329
330 while ((line = xmalloc_fgetline(fp)) != NULL) {
331 char* space;
Denys Vlasenko90a99042009-09-06 02:36:23 +0200332 char* linebuf;
Denis Vlasenko78436992008-07-10 14:14:20 +0000333 int cur;
334
335 if (!line[0]) {
336 free(line);
337 continue;
338 }
339 space = strchrnul(line, ' ');
340 cur = module_count++;
341 modinfo = xrealloc_vector(modinfo, 12, cur);
Denis Vlasenko27842282008-08-04 13:20:36 +0000342 /*modinfo[cur+1].pathname = NULL; - xrealloc_vector did it */
Denis Vlasenko78436992008-07-10 14:14:20 +0000343 modinfo[cur].pathname = line; /* we take ownership of malloced block here */
344 if (*space)
345 *space++ = '\0';
346 modinfo[cur].aliases = space;
Denys Vlasenko90a99042009-09-06 02:36:23 +0200347 linebuf = xmalloc_fgetline(fp);
348 modinfo[cur].deps = linebuf ? linebuf : xzalloc(1);
Denis Vlasenko78436992008-07-10 14:14:20 +0000349 if (modinfo[cur].deps[0]) {
350 /* deps are not "", so next line must be empty */
351 line = xmalloc_fgetline(fp);
352 /* Refuse to work with damaged config file */
353 if (line && line[0])
354 bb_error_msg_and_die("error in %s at '%s'", DEPFILE_BB, line);
355 free(line);
356 }
357 }
Denis Vlasenko7f950a92008-07-10 14:14:45 +0000358 return 1;
359}
360
361static int start_dep_bb_writeout(void)
362{
363 int fd;
364
Denis Vlasenko0e2c93f2008-07-10 14:16:11 +0000365 /* depmod -n: write result to stdout */
366 if (applet_name[0] == 'd' && (option_mask32 & 1))
367 return STDOUT_FILENO;
368
Denis Vlasenko7f950a92008-07-10 14:14:45 +0000369 fd = open(DEPFILE_BB".new", O_WRONLY | O_CREAT | O_TRUNC | O_EXCL, 0644);
370 if (fd < 0) {
371 if (errno == EEXIST) {
372 int count = 5 * 20;
373 dbg1_error_msg(DEPFILE_BB".new exists, waiting for "DEPFILE_BB);
374 while (1) {
375 usleep(1000*1000 / 20);
376 if (load_dep_bb()) {
377 dbg1_error_msg(DEPFILE_BB" appeared");
378 return -2; /* magic number */
379 }
380 if (!--count)
381 break;
382 }
383 bb_error_msg("deleting stale %s", DEPFILE_BB".new");
384 fd = open_or_warn(DEPFILE_BB".new", O_WRONLY | O_CREAT | O_TRUNC);
385 }
386 }
387 dbg1_error_msg("opened "DEPFILE_BB".new:%d", fd);
388 return fd;
389}
390
391static void write_out_dep_bb(int fd)
392{
393 int i;
394 FILE *fp;
395
396 /* We want good error reporting. fdprintf is not good enough. */
Denys Vlasenkoa7ccdee2009-11-15 23:28:11 +0100397 fp = xfdopen_for_write(fd);
Denis Vlasenko7f950a92008-07-10 14:14:45 +0000398 i = 0;
399 while (modinfo[i].pathname) {
400 fprintf(fp, "%s%s%s\n" "%s%s\n",
401 modinfo[i].pathname, modinfo[i].aliases[0] ? " " : "", modinfo[i].aliases,
402 modinfo[i].deps, modinfo[i].deps[0] ? "\n" : "");
403 i++;
404 }
405 /* Badly formatted depfile is a no-no. Be paranoid. */
406 errno = 0;
Denis Vlasenko0e2c93f2008-07-10 14:16:11 +0000407 if (ferror(fp) | fclose(fp)) /* | instead of || is intended */
Denis Vlasenko7f950a92008-07-10 14:14:45 +0000408 goto err;
Denis Vlasenko0e2c93f2008-07-10 14:16:11 +0000409
410 if (fd == STDOUT_FILENO) /* it was depmod -n */
411 goto ok;
412
Denis Vlasenko7f950a92008-07-10 14:14:45 +0000413 if (rename(DEPFILE_BB".new", DEPFILE_BB) != 0) {
414 err:
Denys Vlasenko651a2692010-03-23 16:25:17 +0100415 bb_perror_msg("can't create '%s'", DEPFILE_BB);
Denis Vlasenko7f950a92008-07-10 14:14:45 +0000416 unlink(DEPFILE_BB".new");
417 } else {
Denis Vlasenko0e2c93f2008-07-10 14:16:11 +0000418 ok:
419 wrote_dep_bb_ok = 1;
Denis Vlasenko7f950a92008-07-10 14:14:45 +0000420 dbg1_error_msg("created "DEPFILE_BB);
421 }
Denis Vlasenko78436992008-07-10 14:14:20 +0000422}
423
Denis Vlasenko671691c2008-07-04 10:25:44 +0000424static module_info* find_alias(const char *alias)
425{
426 int i;
Denis Vlasenko7f950a92008-07-10 14:14:45 +0000427 int dep_bb_fd;
428 module_info *result;
Denis Vlasenko671691c2008-07-04 10:25:44 +0000429 dbg1_error_msg("find_alias('%s')", alias);
430
Denis Vlasenko7f950a92008-07-10 14:14:45 +0000431 try_again:
Denis Vlasenko671691c2008-07-04 10:25:44 +0000432 /* First try to find by name (cheaper) */
433 i = 0;
434 while (modinfo[i].pathname) {
Denis Vlasenko24a131e2008-07-09 15:30:57 +0000435 if (pathname_matches_modname(modinfo[i].pathname, alias)) {
Denis Vlasenko671691c2008-07-04 10:25:44 +0000436 dbg1_error_msg("found '%s' in module '%s'",
437 alias, modinfo[i].pathname);
Denis Vlasenko78436992008-07-10 14:14:20 +0000438 if (!modinfo[i].aliases) {
439 parse_module(&modinfo[i], modinfo[i].pathname);
440 }
Denis Vlasenko671691c2008-07-04 10:25:44 +0000441 return &modinfo[i];
442 }
Denis Vlasenko671691c2008-07-04 10:25:44 +0000443 i++;
444 }
445
Denis Vlasenko7f950a92008-07-10 14:14:45 +0000446 /* Ok, we definitely have to scan module bodies. This is a good
447 * moment to generate modprobe.dep.bb, if it does not exist yet */
448 dep_bb_fd = dep_bb_seen ? -1 : start_dep_bb_writeout();
449 if (dep_bb_fd == -2) /* modprobe.dep.bb appeared? */
450 goto try_again;
451
Denis Vlasenko671691c2008-07-04 10:25:44 +0000452 /* Scan all module bodies, extract modinfo (it contains aliases) */
453 i = 0;
Denis Vlasenko7f950a92008-07-10 14:14:45 +0000454 result = NULL;
Denis Vlasenko671691c2008-07-04 10:25:44 +0000455 while (modinfo[i].pathname) {
456 char *desc, *s;
Denis Vlasenko78436992008-07-10 14:14:20 +0000457 if (!modinfo[i].aliases) {
458 parse_module(&modinfo[i], modinfo[i].pathname);
Denis Vlasenko671691c2008-07-04 10:25:44 +0000459 }
Denis Vlasenko8e804112008-08-06 09:41:09 +0000460 if (result) {
461 i++;
Denis Vlasenko7f950a92008-07-10 14:14:45 +0000462 continue;
Denis Vlasenko8e804112008-08-06 09:41:09 +0000463 }
Denis Vlasenko24a131e2008-07-09 15:30:57 +0000464 /* "alias1 symbol:sym1 alias2 symbol:sym2" */
Denis Vlasenko78436992008-07-10 14:14:20 +0000465 desc = str_2_list(modinfo[i].aliases);
Denis Vlasenko671691c2008-07-04 10:25:44 +0000466 /* Does matching substring exist? */
Denis Vlasenko671691c2008-07-04 10:25:44 +0000467 for (s = desc; *s; s += strlen(s) + 1) {
Denis Vlasenko24a131e2008-07-09 15:30:57 +0000468 /* Aliases in module bodies can be defined with
Denis Vlasenko58f59a22008-07-06 11:52:23 +0000469 * shell patterns. Example:
470 * "pci:v000010DEd000000D9sv*sd*bc*sc*i*".
471 * Plain strcmp() won't catch that */
472 if (fnmatch(s, alias, 0) == 0) {
Denis Vlasenko671691c2008-07-04 10:25:44 +0000473 dbg1_error_msg("found alias '%s' in module '%s'",
474 alias, modinfo[i].pathname);
Denis Vlasenko7f950a92008-07-10 14:14:45 +0000475 result = &modinfo[i];
476 break;
Denis Vlasenko671691c2008-07-04 10:25:44 +0000477 }
478 }
479 free(desc);
Denis Vlasenko7f950a92008-07-10 14:14:45 +0000480 if (result && dep_bb_fd < 0)
481 return result;
Denis Vlasenko671691c2008-07-04 10:25:44 +0000482 i++;
483 }
Denis Vlasenko7f950a92008-07-10 14:14:45 +0000484
485 /* Create module.dep.bb if needed */
486 if (dep_bb_fd >= 0) {
487 write_out_dep_bb(dep_bb_fd);
488 }
489
490 dbg1_error_msg("find_alias '%s' returns %p", alias, result);
491 return result;
Denis Vlasenko671691c2008-07-04 10:25:44 +0000492}
493
494#if ENABLE_FEATURE_MODPROBE_SMALL_CHECK_ALREADY_LOADED
Denis Vlasenko0f99d492008-07-24 23:38:04 +0000495// TODO: open only once, invent config_rewind()
Denis Vlasenko671691c2008-07-04 10:25:44 +0000496static int already_loaded(const char *name)
497{
498 int ret = 0;
Denis Vlasenko0f99d492008-07-24 23:38:04 +0000499 char *s;
500 parser_t *parser = config_open2("/proc/modules", xfopen_for_read);
Denis Vlasenko084266e2008-07-26 23:08:31 +0000501 while (config_read(parser, &s, 1, 1, "# \t", PARSE_NORMAL & ~PARSE_GREEDY)) {
Denis Vlasenko0f99d492008-07-24 23:38:04 +0000502 if (strcmp(s, name) == 0) {
Denis Vlasenko671691c2008-07-04 10:25:44 +0000503 ret = 1;
504 break;
505 }
Denis Vlasenko671691c2008-07-04 10:25:44 +0000506 }
Denis Vlasenko0f99d492008-07-24 23:38:04 +0000507 config_close(parser);
Denis Vlasenko671691c2008-07-04 10:25:44 +0000508 return ret;
509}
510#else
511#define already_loaded(name) is_rmmod
512#endif
513
514/*
Denis Vlasenko0e2c93f2008-07-10 14:16:11 +0000515 * Given modules definition and module name (or alias, or symbol)
516 * load/remove the module respecting dependencies.
517 * NB: also called by depmod with bogus name "/",
518 * just in order to force modprobe.dep.bb creation.
Denis Vlasenko671691c2008-07-04 10:25:44 +0000519*/
520#if !ENABLE_FEATURE_MODPROBE_SMALL_OPTIONS_ON_CMDLINE
521#define process_module(a,b) process_module(a)
522#define cmdline_options ""
523#endif
524static void process_module(char *name, const char *cmdline_options)
525{
526 char *s, *deps, *options;
527 module_info *info;
528 int is_rmmod = (option_mask32 & OPT_r) != 0;
529 dbg1_error_msg("process_module('%s','%s')", name, cmdline_options);
530
531 replace(name, '-', '_');
532
533 dbg1_error_msg("already_loaded:%d is_rmmod:%d", already_loaded(name), is_rmmod);
534 if (already_loaded(name) != is_rmmod) {
535 dbg1_error_msg("nothing to do for '%s'", name);
536 return;
537 }
538
539 options = NULL;
540 if (!is_rmmod) {
541 char *opt_filename = xasprintf("/etc/modules/%s", name);
542 options = xmalloc_open_read_close(opt_filename, NULL);
543 if (options)
544 replace(options, '\n', ' ');
545#if ENABLE_FEATURE_MODPROBE_SMALL_OPTIONS_ON_CMDLINE
546 if (cmdline_options) {
547 /* NB: cmdline_options always have one leading ' '
548 * (see main()), we remove it here */
549 char *op = xasprintf(options ? "%s %s" : "%s %s" + 3,
550 cmdline_options + 1, options);
551 free(options);
552 options = op;
553 }
554#endif
555 free(opt_filename);
556 module_load_options = options;
557 dbg1_error_msg("process_module('%s'): options:'%s'", name, options);
558 }
559
560 if (!module_count) {
561 /* Scan module directory. This is done only once.
562 * It will attempt module load, and will exit(EXIT_SUCCESS)
563 * on success. */
564 module_found_idx = -1;
565 recursive_action(".",
566 ACTION_RECURSE, /* flags */
567 fileAction, /* file action */
568 NULL, /* dir action */
569 name, /* user data */
570 0); /* depth */
571 dbg1_error_msg("dirscan complete");
572 /* Module was not found, or load failed, or is_rmmod */
573 if (module_found_idx >= 0) { /* module was found */
574 info = &modinfo[module_found_idx];
575 } else { /* search for alias, not a plain module name */
576 info = find_alias(name);
577 }
578 } else {
579 info = find_alias(name);
580 }
581
Denys Vlasenko63321512009-10-08 22:54:41 +0200582// Problem here: there can be more than one module
583// for the given alias. For example,
584// "pci:v00008086d00007010sv00000000sd00000000bc01sc01i80" matches
585// ata_piix because it has an alias "pci:v00008086d00007010sv*sd*bc*sc*i*"
586// and ata_generic, it has an alias "alias=pci:v*d*sv*sd*bc01sc01i*"
587// Standard modprobe would load them both.
588// In this code, find_alias() returns only the first matching module.
589
Denis Vlasenko671691c2008-07-04 10:25:44 +0000590 /* rmmod? unload it by name */
591 if (is_rmmod) {
Denys Vlasenko5b3151c2010-09-25 14:37:06 +0200592 if (delete_module(name, O_NONBLOCK | O_EXCL) != 0) {
593 if (!(option_mask32 & OPT_q))
594 bb_perror_msg("remove '%s'", name);
Denis Vlasenko671691c2008-07-04 10:25:44 +0000595 goto ret;
596 }
597 /* N.B. we do not stop here -
598 * continue to unload modules on which the module depends:
599 * "-r --remove: option causes modprobe to remove a module.
600 * If the modules it depends on are also unused, modprobe
601 * will try to remove them, too." */
602 }
603
Denis Vlasenko0e2c93f2008-07-10 14:16:11 +0000604 if (!info) {
605 /* both dirscan and find_alias found nothing */
Denys Vlasenko5b3151c2010-09-25 14:37:06 +0200606 if (!is_rmmod && applet_name[0] != 'd') /* it wasn't rmmod or depmod */
Denis Vlasenko0e2c93f2008-07-10 14:16:11 +0000607 bb_error_msg("module '%s' not found", name);
Denys Vlasenko5b3151c2010-09-25 14:37:06 +0200608//TODO: _and_die()? or should we continue (un)loading modules listed on cmdline?
Denis Vlasenko671691c2008-07-04 10:25:44 +0000609 goto ret;
610 }
611
Denis Vlasenko671691c2008-07-04 10:25:44 +0000612 /* Iterate thru dependencies, trying to (un)load them */
Denis Vlasenko78436992008-07-10 14:14:20 +0000613 deps = str_2_list(info->deps);
Denis Vlasenko671691c2008-07-04 10:25:44 +0000614 for (s = deps; *s; s += strlen(s) + 1) {
615 //if (strcmp(name, s) != 0) // N.B. do loops exist?
616 dbg1_error_msg("recurse on dep '%s'", s);
617 process_module(s, NULL);
618 dbg1_error_msg("recurse on dep '%s' done", s);
619 }
620 free(deps);
621
Denis Vlasenko1c781cc2008-09-06 14:14:01 +0000622 /* modprobe -> load it */
Denis Vlasenko1ad4db12008-11-12 00:09:58 +0000623 if (!is_rmmod) {
624 if (!options || strstr(options, "blacklist") == NULL) {
625 errno = 0;
626 if (load_module(info->pathname, options) != 0) {
627 if (EEXIST != errno) {
628 bb_error_msg("'%s': %s",
Denis Vlasenko24a131e2008-07-09 15:30:57 +0000629 info->pathname,
Denis Vlasenko671691c2008-07-04 10:25:44 +0000630 moderror(errno));
Denis Vlasenko1ad4db12008-11-12 00:09:58 +0000631 } else {
632 dbg1_error_msg("'%s': %s",
Denis Vlasenko24a131e2008-07-09 15:30:57 +0000633 info->pathname,
Denis Vlasenko671691c2008-07-04 10:25:44 +0000634 moderror(errno));
Denis Vlasenko1ad4db12008-11-12 00:09:58 +0000635 }
Denis Vlasenko671691c2008-07-04 10:25:44 +0000636 }
Denis Vlasenko1ad4db12008-11-12 00:09:58 +0000637 } else {
638 dbg1_error_msg("'%s': blacklisted", info->pathname);
Denis Vlasenko671691c2008-07-04 10:25:44 +0000639 }
640 }
641 ret:
642 free(options);
643//TODO: return load attempt result from process_module.
644//If dep didn't load ok, continuing makes little sense.
645}
646#undef cmdline_options
647
648
Denis Vlasenko0e2c93f2008-07-10 14:16:11 +0000649/* For reference, module-init-tools v3.4 options:
Denis Vlasenko671691c2008-07-04 10:25:44 +0000650
651# insmod
652Usage: insmod filename [args]
653
654# rmmod --help
655Usage: rmmod [-fhswvV] modulename ...
Denis Vlasenko0e2c93f2008-07-10 14:16:11 +0000656 -f (or --force) forces a module unload, and may crash your
657 machine. This requires the Forced Module Removal option
658 when the kernel was compiled.
659 -h (or --help) prints this help text
Denis Vlasenko671691c2008-07-04 10:25:44 +0000660 -s (or --syslog) says use syslog, not stderr
661 -v (or --verbose) enables more messages
Denis Vlasenko0e2c93f2008-07-10 14:16:11 +0000662 -V (or --version) prints the version code
Denis Vlasenko35d8c472008-08-05 07:59:25 +0000663 -w (or --wait) begins module removal even if it is used
Denis Vlasenko671691c2008-07-04 10:25:44 +0000664 and will stop new users from accessing the module (so it
665 should eventually fall to zero).
666
667# modprobe
Denis Vlasenko0e2c93f2008-07-10 14:16:11 +0000668Usage: modprobe [-v] [-V] [-C config-file] [-n] [-i] [-q] [-b]
669 [-o <modname>] [ --dump-modversions ] <modname> [parameters...]
670modprobe -r [-n] [-i] [-v] <modulename> ...
671modprobe -l -t <dirname> [ -a <modulename> ...]
Denis Vlasenko671691c2008-07-04 10:25:44 +0000672
673# depmod --help
Denis Vlasenko0e2c93f2008-07-10 14:16:11 +0000674depmod 3.4 -- part of module-init-tools
675depmod -[aA] [-n -e -v -q -V -r -u]
676 [-b basedirectory] [forced_version]
677depmod [-n -e -v -q -r -u] [-F kernelsyms] module1.ko module2.ko ...
678If no arguments (except options) are given, "depmod -a" is assumed.
Denys Vlasenkobf2af9a2009-05-25 04:15:37 +0200679depmod will output a dependency list suitable for the modprobe utility.
Denis Vlasenko671691c2008-07-04 10:25:44 +0000680Options:
Denis Vlasenko35d8c472008-08-05 07:59:25 +0000681 -a, --all Probe all modules
682 -A, --quick Only does the work if there's a new module
683 -n, --show Write the dependency file on stdout only
684 -e, --errsyms Report not supplied symbols
685 -V, --version Print the release version
686 -v, --verbose Enable verbose mode
687 -h, --help Print this usage message
Denis Vlasenko0e2c93f2008-07-10 14:16:11 +0000688The following options are useful for people managing distributions:
689 -b basedirectory
Denis Vlasenko35d8c472008-08-05 07:59:25 +0000690 --basedir basedirectory
691 Use an image of a module tree
Denis Vlasenko0e2c93f2008-07-10 14:16:11 +0000692 -F kernelsyms
Denis Vlasenko35d8c472008-08-05 07:59:25 +0000693 --filesyms kernelsyms
694 Use the file instead of the current kernel symbols
Denis Vlasenko671691c2008-07-04 10:25:44 +0000695*/
696
Pascal Bellardb82b34e2010-06-07 01:16:45 +0200697//usage:#if ENABLE_MODPROBE_SMALL
Denys Vlasenko1a5e11c2010-10-16 01:56:41 +0200698
699//usage:#define depmod_trivial_usage NOUSAGE_STR
700//usage:#define depmod_full_usage ""
701
702//usage:#define lsmod_trivial_usage
703//usage: ""
704//usage:#define lsmod_full_usage "\n\n"
705//usage: "List the currently loaded kernel modules"
706
707//usage:#define insmod_trivial_usage
708//usage: IF_FEATURE_2_4_MODULES("[OPTIONS] MODULE ")
709//usage: IF_NOT_FEATURE_2_4_MODULES("FILE ")
710//usage: "[SYMBOL=VALUE]..."
711//usage:#define insmod_full_usage "\n\n"
712//usage: "Load the specified kernel modules into the kernel"
713//usage: IF_FEATURE_2_4_MODULES( "\n"
Denys Vlasenko1a5e11c2010-10-16 01:56:41 +0200714//usage: "\n -f Force module to load into the wrong kernel version"
715//usage: "\n -k Make module autoclean-able"
716//usage: "\n -v Verbose"
717//usage: "\n -q Quiet"
718//usage: "\n -L Lock: prevent simultaneous loads"
719//usage: IF_FEATURE_INSMOD_LOAD_MAP(
720//usage: "\n -m Output load map to stdout"
721//usage: )
722//usage: "\n -x Don't export externs"
723//usage: )
724
725//usage:#define rmmod_trivial_usage
726//usage: "[-wfa] [MODULE]..."
727//usage:#define rmmod_full_usage "\n\n"
728//usage: "Unload kernel modules\n"
Denys Vlasenko1a5e11c2010-10-16 01:56:41 +0200729//usage: "\n -w Wait until the module is no longer used"
730//usage: "\n -f Force unload"
731//usage: "\n -a Remove all unused modules (recursively)"
732//usage:
733//usage:#define rmmod_example_usage
734//usage: "$ rmmod tulip\n"
735
Pascal Bellardb82b34e2010-06-07 01:16:45 +0200736//usage:#define modprobe_trivial_usage
737//usage: "[-qfwrsv] MODULE [symbol=value]..."
738//usage:#define modprobe_full_usage "\n\n"
Denys Vlasenko66426762011-06-05 03:58:28 +0200739//usage: " -r Remove MODULE (stacks) or do autoclean"
Pascal Bellardb82b34e2010-06-07 01:16:45 +0200740//usage: "\n -q Quiet"
741//usage: "\n -v Verbose"
742//usage: "\n -f Force"
743//usage: "\n -w Wait for unload"
744//usage: "\n -s Report via syslog instead of stderr"
Denys Vlasenko1a5e11c2010-10-16 01:56:41 +0200745
746//usage:#endif
Pascal Bellardb82b34e2010-06-07 01:16:45 +0200747
Denis Vlasenko671691c2008-07-04 10:25:44 +0000748int modprobe_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +0000749int modprobe_main(int argc UNUSED_PARAM, char **argv)
Denis Vlasenko671691c2008-07-04 10:25:44 +0000750{
751 struct utsname uts;
752 char applet0 = applet_name[0];
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000753 IF_FEATURE_MODPROBE_SMALL_OPTIONS_ON_CMDLINE(char *options;)
Denis Vlasenko671691c2008-07-04 10:25:44 +0000754
Denis Vlasenko671691c2008-07-04 10:25:44 +0000755 /* are we lsmod? -> just dump /proc/modules */
756 if ('l' == applet0) {
Denis Vlasenko5415c852008-07-21 23:05:26 +0000757 xprint_and_close_file(xfopen_for_read("/proc/modules"));
Denis Vlasenko671691c2008-07-04 10:25:44 +0000758 return EXIT_SUCCESS;
759 }
760
761 INIT_G();
762
Denis Vlasenko0e2c93f2008-07-10 14:16:11 +0000763 /* Prevent ugly corner cases with no modules at all */
764 modinfo = xzalloc(sizeof(modinfo[0]));
765
Denis Vlasenko1c781cc2008-09-06 14:14:01 +0000766 if ('i' != applet0) { /* not insmod */
767 /* Goto modules directory */
768 xchdir(CONFIG_DEFAULT_MODULES_DIR);
769 }
Denis Vlasenko0e2c93f2008-07-10 14:16:11 +0000770 uname(&uts); /* never fails */
771
772 /* depmod? */
773 if ('d' == applet0) {
774 /* Supported:
775 * -n: print result to stdout
776 * -a: process all modules (default)
777 * optional VERSION parameter
778 * Ignored:
779 * -A: do work only if a module is newer than depfile
780 * -e: report any symbols which a module needs
781 * which are not supplied by other modules or the kernel
782 * -F FILE: System.map (symbols for -e)
783 * -q, -r, -u: noop?
784 * Not supported:
785 * -b BASEDIR: (TODO!) modules are in
786 * $BASEDIR/lib/modules/$VERSION
787 * -v: human readable deps to stdout
788 * -V: version (don't want to support it - people may depend
789 * on it as an indicator of "standard" depmod)
790 * -h: help (well duh)
791 * module1.o module2.o parameters (just ignored for now)
792 */
793 getopt32(argv, "na" "AeF:qru" /* "b:vV", NULL */, NULL);
794 argv += optind;
795 /* if (argv[0] && argv[1]) bb_show_usage(); */
796 /* Goto $VERSION directory */
797 xchdir(argv[0] ? argv[0] : uts.release);
798 /* Force full module scan by asking to find a bogus module.
799 * This will generate modules.dep.bb as a side effect. */
800 process_module((char*)"/", NULL);
801 return !wrote_dep_bb_ok;
802 }
803
Denis Vlasenko671691c2008-07-04 10:25:44 +0000804 /* insmod, modprobe, rmmod require at least one argument */
805 opt_complementary = "-1";
806 /* only -q (quiet) and -r (rmmod),
807 * the rest are accepted and ignored (compat) */
808 getopt32(argv, "qrfsvw");
809 argv += optind;
810
811 /* are we rmmod? -> simulate modprobe -r */
812 if ('r' == applet0) {
813 option_mask32 |= OPT_r;
814 }
815
Denis Vlasenko1c781cc2008-09-06 14:14:01 +0000816 if ('i' != applet0) { /* not insmod */
817 /* Goto $VERSION directory */
818 xchdir(uts.release);
819 }
Denis Vlasenko671691c2008-07-04 10:25:44 +0000820
821#if ENABLE_FEATURE_MODPROBE_SMALL_OPTIONS_ON_CMDLINE
822 /* If not rmmod, parse possible module options given on command line.
823 * insmod/modprobe takes one module name, the rest are parameters. */
824 options = NULL;
825 if ('r' != applet0) {
826 char **arg = argv;
827 while (*++arg) {
828 /* Enclose options in quotes */
829 char *s = options;
830 options = xasprintf("%s \"%s\"", s ? s : "", *arg);
831 free(s);
832 *arg = NULL;
833 }
834 }
835#else
836 if ('r' != applet0)
837 argv[1] = NULL;
838#endif
839
Denis Vlasenko1c781cc2008-09-06 14:14:01 +0000840 if ('i' == applet0) { /* insmod */
841 size_t len;
842 void *map;
843
844 len = MAXINT(ssize_t);
Denys Vlasenkoe9d12b52011-01-09 20:57:52 +0100845 map = xmalloc_open_zipped_read_close(*argv, &len);
Denys Vlasenko094cc512011-01-17 14:58:27 +0100846 if (!map)
847 bb_perror_msg_and_die("can't read '%s'", *argv);
Denis Vlasenko1c781cc2008-09-06 14:14:01 +0000848 if (init_module(map, len,
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000849 IF_FEATURE_MODPROBE_SMALL_OPTIONS_ON_CMDLINE(options ? options : "")
850 IF_NOT_FEATURE_MODPROBE_SMALL_OPTIONS_ON_CMDLINE("")
Denys Vlasenkoe9d12b52011-01-09 20:57:52 +0100851 ) != 0
852 ) {
Denis Vlasenko1f632292009-04-13 02:25:40 +0000853 bb_error_msg_and_die("can't insert '%s': %s",
Denis Vlasenko1c781cc2008-09-06 14:14:01 +0000854 *argv, moderror(errno));
Denys Vlasenkoe9d12b52011-01-09 20:57:52 +0100855 }
Denis Vlasenko1c781cc2008-09-06 14:14:01 +0000856 return 0;
857 }
858
Denis Vlasenko7f950a92008-07-10 14:14:45 +0000859 /* Try to load modprobe.dep.bb */
Denis Vlasenko78436992008-07-10 14:14:20 +0000860 load_dep_bb();
861
Denis Vlasenko671691c2008-07-04 10:25:44 +0000862 /* Load/remove modules.
Denis Vlasenko1c781cc2008-09-06 14:14:01 +0000863 * Only rmmod loops here, modprobe has only argv[0] */
Denis Vlasenko671691c2008-07-04 10:25:44 +0000864 do {
Denys Vlasenko5b3151c2010-09-25 14:37:06 +0200865 process_module(*argv, options);
866 } while (*++argv);
Denis Vlasenko671691c2008-07-04 10:25:44 +0000867
868 if (ENABLE_FEATURE_CLEAN_UP) {
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000869 IF_FEATURE_MODPROBE_SMALL_OPTIONS_ON_CMDLINE(free(options);)
Denis Vlasenko671691c2008-07-04 10:25:44 +0000870 }
871 return EXIT_SUCCESS;
872}