blob: e2359d042259c16c31510dcf18685c85bf7509b2 [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 *
8 * Licensed under GPLv2, see file LICENSE in this tarball for details.
9 */
10
11#include "libbb.h"
Denys Vlasenko043b1e52009-09-06 12:47:55 +020012/* After libbb.h, since it needs sys/types.h on some systems */
Denis Vlasenko671691c2008-07-04 10:25:44 +000013#include <sys/utsname.h> /* uname() */
14#include <fnmatch.h>
15
Denis Vlasenko24a131e2008-07-09 15:30:57 +000016extern int init_module(void *module, unsigned long len, const char *options);
17extern int delete_module(const char *module, unsigned flags);
18extern int query_module(const char *name, int which, void *buf, size_t bufsize, size_t *ret);
19
20
Denis Vlasenkocee0dfc2008-07-06 11:11:35 +000021#define dbg1_error_msg(...) ((void)0)
22#define dbg2_error_msg(...) ((void)0)
23//#define dbg1_error_msg(...) bb_error_msg(__VA_ARGS__)
24//#define dbg2_error_msg(...) bb_error_msg(__VA_ARGS__)
Denis Vlasenko671691c2008-07-04 10:25:44 +000025
Denis Vlasenko24a131e2008-07-09 15:30:57 +000026#define DEPFILE_BB CONFIG_DEFAULT_DEPMOD_FILE".bb"
Denis Vlasenko671691c2008-07-04 10:25:44 +000027
28enum {
29 OPT_q = (1 << 0), /* be quiet */
30 OPT_r = (1 << 1), /* module removal instead of loading */
31};
32
33typedef struct module_info {
34 char *pathname;
Denis Vlasenko78436992008-07-10 14:14:20 +000035 char *aliases;
36 char *deps;
Denis Vlasenko671691c2008-07-04 10:25:44 +000037} module_info;
38
39/*
40 * GLOBALS
41 */
42struct globals {
43 module_info *modinfo;
44 char *module_load_options;
Denis Vlasenko7f950a92008-07-10 14:14:45 +000045 smallint dep_bb_seen;
Denis Vlasenko0e2c93f2008-07-10 14:16:11 +000046 smallint wrote_dep_bb_ok;
Denys Vlasenko0c6914e2009-09-07 02:38:26 +020047 unsigned module_count;
Denis Vlasenko671691c2008-07-04 10:25:44 +000048 int module_found_idx;
Denys Vlasenko0c6914e2009-09-07 02:38:26 +020049 unsigned stringbuf_idx;
50 unsigned stringbuf_size;
51 char *stringbuf; /* some modules have lots of stuff */
Denis Vlasenko671691c2008-07-04 10:25:44 +000052 /* for example, drivers/media/video/saa7134/saa7134.ko */
Denys Vlasenko0c6914e2009-09-07 02:38:26 +020053 /* therefore having a fixed biggish buffer is not wise */
Denis Vlasenko671691c2008-07-04 10:25:44 +000054};
55#define G (*ptr_to_globals)
56#define modinfo (G.modinfo )
Denis Vlasenko7f950a92008-07-10 14:14:45 +000057#define dep_bb_seen (G.dep_bb_seen )
Denis Vlasenko0e2c93f2008-07-10 14:16:11 +000058#define wrote_dep_bb_ok (G.wrote_dep_bb_ok )
Denis Vlasenko671691c2008-07-04 10:25:44 +000059#define module_count (G.module_count )
60#define module_found_idx (G.module_found_idx )
61#define module_load_options (G.module_load_options)
62#define stringbuf_idx (G.stringbuf_idx )
Denys Vlasenko0c6914e2009-09-07 02:38:26 +020063#define stringbuf_size (G.stringbuf_size )
Denis Vlasenko671691c2008-07-04 10:25:44 +000064#define stringbuf (G.stringbuf )
65#define INIT_G() do { \
66 SET_PTR_TO_GLOBALS(xzalloc(sizeof(G))); \
67} while (0)
68
Denys Vlasenko0c6914e2009-09-07 02:38:26 +020069static void append(const char *s)
70{
71 unsigned len = strlen(s);
72 if (stringbuf_idx + len + 15 > stringbuf_size) {
73 stringbuf_size = stringbuf_idx + len + 127;
74 dbg2_error_msg("grow stringbuf to %u", stringbuf_size);
75 stringbuf = xrealloc(stringbuf, stringbuf_size);
76 }
77 memcpy(stringbuf + stringbuf_idx, s, len);
78 stringbuf_idx += len;
79}
Denis Vlasenko671691c2008-07-04 10:25:44 +000080
81static void appendc(char c)
82{
Denys Vlasenko0c6914e2009-09-07 02:38:26 +020083 /* We appendc() only after append(), + 15 trick in append()
84 * makes it unnecessary to check for overflow here */
85 stringbuf[stringbuf_idx++] = c;
Denis Vlasenko671691c2008-07-04 10:25:44 +000086}
87
Denis Vlasenko24a131e2008-07-09 15:30:57 +000088static void bksp(void)
89{
90 if (stringbuf_idx)
91 stringbuf_idx--;
92}
93
Denis Vlasenko671691c2008-07-04 10:25:44 +000094static void reset_stringbuf(void)
95{
96 stringbuf_idx = 0;
97}
98
99static char* copy_stringbuf(void)
100{
Denys Vlasenko0c6914e2009-09-07 02:38:26 +0200101 char *copy = xzalloc(stringbuf_idx + 1); /* terminating NUL */
Denis Vlasenko671691c2008-07-04 10:25:44 +0000102 return memcpy(copy, stringbuf, stringbuf_idx);
103}
104
105static char* find_keyword(char *ptr, size_t len, const char *word)
106{
107 int wlen;
108
Denis Vlasenkoe9ad84d2008-08-05 13:10:34 +0000109 if (!ptr) /* happens if xmalloc_open_zipped_read_close cannot read it */
Denis Vlasenko671691c2008-07-04 10:25:44 +0000110 return NULL;
111
112 wlen = strlen(word);
113 len -= wlen - 1;
114 while ((ssize_t)len > 0) {
115 char *old = ptr;
116 /* search for the first char in word */
117 ptr = memchr(ptr, *word, len);
118 if (ptr == NULL) /* no occurance left, done */
119 break;
120 if (strncmp(ptr, word, wlen) == 0)
121 return ptr + wlen; /* found, return ptr past it */
122 ++ptr;
123 len -= (ptr - old);
124 }
125 return NULL;
126}
127
128static void replace(char *s, char what, char with)
129{
130 while (*s) {
131 if (what == *s)
132 *s = with;
133 ++s;
134 }
135}
136
Denis Vlasenko24a131e2008-07-09 15:30:57 +0000137/* Take "word word", return malloced "word",NUL,"word",NUL,NUL */
138static char* str_2_list(const char *str)
139{
140 int len = strlen(str) + 1;
141 char *dst = xmalloc(len + 1);
142
143 dst[len] = '\0';
144 memcpy(dst, str, len);
145//TODO: protect against 2+ spaces: "word word"
146 replace(dst, ' ', '\0');
147 return dst;
148}
149
Denis Vlasenko671691c2008-07-04 10:25:44 +0000150/* We use error numbers in a loose translation... */
151static const char *moderror(int err)
152{
153 switch (err) {
154 case ENOEXEC:
155 return "invalid module format";
156 case ENOENT:
157 return "unknown symbol in module or invalid parameter";
158 case ESRCH:
159 return "module has wrong symbol version";
160 case EINVAL: /* "invalid parameter" */
161 return "unknown symbol in module or invalid parameter"
162 + sizeof("unknown symbol in module or");
163 default:
164 return strerror(err);
165 }
166}
167
168static int load_module(const char *fname, const char *options)
169{
170#if 1
171 int r;
172 size_t len = MAXINT(ssize_t);
173 char *module_image;
174 dbg1_error_msg("load_module('%s','%s')", fname, options);
175
Denis Vlasenkoe9ad84d2008-08-05 13:10:34 +0000176 module_image = xmalloc_open_zipped_read_close(fname, &len);
Denis Vlasenko671691c2008-07-04 10:25:44 +0000177 r = (!module_image || init_module(module_image, len, options ? options : "") != 0);
178 free(module_image);
179 dbg1_error_msg("load_module:%d", r);
180 return r; /* 0 = success */
181#else
182 /* For testing */
183 dbg1_error_msg("load_module('%s','%s')", fname, options);
184 return 1;
185#endif
186}
187
Denis Vlasenko78436992008-07-10 14:14:20 +0000188static void parse_module(module_info *info, const char *pathname)
Denis Vlasenko671691c2008-07-04 10:25:44 +0000189{
190 char *module_image;
191 char *ptr;
192 size_t len;
193 size_t pos;
Denis Vlasenko24a131e2008-07-09 15:30:57 +0000194 dbg1_error_msg("parse_module('%s')", pathname);
Denis Vlasenko671691c2008-07-04 10:25:44 +0000195
196 /* Read (possibly compressed) module */
197 len = 64 * 1024 * 1024; /* 64 Mb at most */
Denis Vlasenkoe9ad84d2008-08-05 13:10:34 +0000198 module_image = xmalloc_open_zipped_read_close(pathname, &len);
Denis Vlasenko78436992008-07-10 14:14:20 +0000199//TODO: optimize redundant module body reads
Denis Vlasenko671691c2008-07-04 10:25:44 +0000200
Denis Vlasenko78436992008-07-10 14:14:20 +0000201 /* "alias1 symbol:sym1 alias2 symbol:sym2" */
Denis Vlasenko671691c2008-07-04 10:25:44 +0000202 reset_stringbuf();
Denis Vlasenko671691c2008-07-04 10:25:44 +0000203 pos = 0;
204 while (1) {
205 ptr = find_keyword(module_image + pos, len - pos, "alias=");
206 if (!ptr) {
207 ptr = find_keyword(module_image + pos, len - pos, "__ksymtab_");
208 if (!ptr)
209 break;
210 /* DOCME: __ksymtab_gpl and __ksymtab_strings occur
211 * in many modules. What do they mean? */
Denis Vlasenko0e2c93f2008-07-10 14:16:11 +0000212 if (strcmp(ptr, "gpl") == 0 || strcmp(ptr, "strings") == 0)
213 goto skip;
214 dbg2_error_msg("alias:'symbol:%s'", ptr);
215 append("symbol:");
Denis Vlasenko671691c2008-07-04 10:25:44 +0000216 } else {
Denis Vlasenko24a131e2008-07-09 15:30:57 +0000217 dbg2_error_msg("alias:'%s'", ptr);
Denis Vlasenko671691c2008-07-04 10:25:44 +0000218 }
219 append(ptr);
220 appendc(' ');
Denis Vlasenko0e2c93f2008-07-10 14:16:11 +0000221 skip:
Denis Vlasenko671691c2008-07-04 10:25:44 +0000222 pos = (ptr - module_image);
223 }
Denis Vlasenko24a131e2008-07-09 15:30:57 +0000224 bksp(); /* remove last ' ' */
Denis Vlasenko78436992008-07-10 14:14:20 +0000225 info->aliases = copy_stringbuf();
Denys Vlasenkof9c814b2009-09-07 02:37:19 +0200226 replace(info->aliases, '-', '_');
Denis Vlasenko671691c2008-07-04 10:25:44 +0000227
Denis Vlasenko78436992008-07-10 14:14:20 +0000228 /* "dependency1 depandency2" */
229 reset_stringbuf();
Denis Vlasenko671691c2008-07-04 10:25:44 +0000230 ptr = find_keyword(module_image, len, "depends=");
231 if (ptr && *ptr) {
232 replace(ptr, ',', ' ');
233 replace(ptr, '-', '_');
234 dbg2_error_msg("dep:'%s'", ptr);
235 append(ptr);
236 }
Denis Vlasenko78436992008-07-10 14:14:20 +0000237 info->deps = copy_stringbuf();
Denis Vlasenko671691c2008-07-04 10:25:44 +0000238
239 free(module_image);
Denis Vlasenko671691c2008-07-04 10:25:44 +0000240}
241
Denis Vlasenko24a131e2008-07-09 15:30:57 +0000242static int pathname_matches_modname(const char *pathname, const char *modname)
Denis Vlasenko671691c2008-07-04 10:25:44 +0000243{
244 const char *fname = bb_get_last_path_component_nostrip(pathname);
245 const char *suffix = strrstr(fname, ".ko");
Denis Vlasenko24a131e2008-07-09 15:30:57 +0000246//TODO: can do without malloc?
Denis Vlasenko671691c2008-07-04 10:25:44 +0000247 char *name = xstrndup(fname, suffix - fname);
Denis Vlasenko24a131e2008-07-09 15:30:57 +0000248 int r;
Denis Vlasenko671691c2008-07-04 10:25:44 +0000249 replace(name, '-', '_');
Denis Vlasenko24a131e2008-07-09 15:30:57 +0000250 r = (strcmp(name, modname) == 0);
251 free(name);
252 return r;
Denis Vlasenko671691c2008-07-04 10:25:44 +0000253}
254
255static FAST_FUNC int fileAction(const char *pathname,
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +0000256 struct stat *sb UNUSED_PARAM,
Denis Vlasenko24a131e2008-07-09 15:30:57 +0000257 void *modname_to_match,
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +0000258 int depth UNUSED_PARAM)
Denis Vlasenko671691c2008-07-04 10:25:44 +0000259{
260 int cur;
Denis Vlasenko671691c2008-07-04 10:25:44 +0000261 const char *fname;
262
263 pathname += 2; /* skip "./" */
264 fname = bb_get_last_path_component_nostrip(pathname);
265 if (!strrstr(fname, ".ko")) {
266 dbg1_error_msg("'%s' is not a module", pathname);
267 return TRUE; /* not a module, continue search */
268 }
269
270 cur = module_count++;
Denis Vlasenkodeeed592008-07-08 05:14:36 +0000271 modinfo = xrealloc_vector(modinfo, 12, cur);
Denis Vlasenko671691c2008-07-04 10:25:44 +0000272 modinfo[cur].pathname = xstrdup(pathname);
Denis Vlasenko27842282008-08-04 13:20:36 +0000273 /*modinfo[cur].aliases = NULL; - xrealloc_vector did it */
274 /*modinfo[cur+1].pathname = NULL;*/
Denis Vlasenko671691c2008-07-04 10:25:44 +0000275
Denis Vlasenko24a131e2008-07-09 15:30:57 +0000276 if (!pathname_matches_modname(fname, modname_to_match)) {
Denis Vlasenko671691c2008-07-04 10:25:44 +0000277 dbg1_error_msg("'%s' module name doesn't match", pathname);
278 return TRUE; /* module name doesn't match, continue search */
279 }
280
281 dbg1_error_msg("'%s' module name matches", pathname);
282 module_found_idx = cur;
Denis Vlasenko78436992008-07-10 14:14:20 +0000283 parse_module(&modinfo[cur], pathname);
Denis Vlasenko671691c2008-07-04 10:25:44 +0000284
285 if (!(option_mask32 & OPT_r)) {
286 if (load_module(pathname, module_load_options) == 0) {
287 /* Load was successful, there is nothing else to do.
288 * This can happen ONLY for "top-level" module load,
289 * not a dep, because deps dont do dirscan. */
290 exit(EXIT_SUCCESS);
Denis Vlasenko671691c2008-07-04 10:25:44 +0000291 }
292 }
293
Denis Vlasenko671691c2008-07-04 10:25:44 +0000294 return TRUE;
295}
296
Denis Vlasenko7f950a92008-07-10 14:14:45 +0000297static int load_dep_bb(void)
Denis Vlasenko78436992008-07-10 14:14:20 +0000298{
299 char *line;
Denis Vlasenko5415c852008-07-21 23:05:26 +0000300 FILE *fp = fopen_for_read(DEPFILE_BB);
Denis Vlasenko78436992008-07-10 14:14:20 +0000301
302 if (!fp)
Denis Vlasenko7f950a92008-07-10 14:14:45 +0000303 return 0;
304
305 dep_bb_seen = 1;
306 dbg1_error_msg("loading "DEPFILE_BB);
307
308 /* Why? There is a rare scenario: we did not find modprobe.dep.bb,
309 * we scanned the dir and found no module by name, then we search
310 * for alias (full scan), and we decided to generate modprobe.dep.bb.
311 * But we see modprobe.dep.bb.new! Other modprobe is at work!
312 * We wait and other modprobe renames it to modprobe.dep.bb.
313 * Now we can use it.
314 * But we already have modinfo[] filled, and "module_count = 0"
315 * makes us start anew. Yes, we leak modinfo[].xxx pointers -
316 * there is not much of data there anyway. */
317 module_count = 0;
318 memset(&modinfo[0], 0, sizeof(modinfo[0]));
Denis Vlasenko78436992008-07-10 14:14:20 +0000319
320 while ((line = xmalloc_fgetline(fp)) != NULL) {
321 char* space;
Denys Vlasenko90a99042009-09-06 02:36:23 +0200322 char* linebuf;
Denis Vlasenko78436992008-07-10 14:14:20 +0000323 int cur;
324
325 if (!line[0]) {
326 free(line);
327 continue;
328 }
329 space = strchrnul(line, ' ');
330 cur = module_count++;
331 modinfo = xrealloc_vector(modinfo, 12, cur);
Denis Vlasenko27842282008-08-04 13:20:36 +0000332 /*modinfo[cur+1].pathname = NULL; - xrealloc_vector did it */
Denis Vlasenko78436992008-07-10 14:14:20 +0000333 modinfo[cur].pathname = line; /* we take ownership of malloced block here */
334 if (*space)
335 *space++ = '\0';
336 modinfo[cur].aliases = space;
Denys Vlasenko90a99042009-09-06 02:36:23 +0200337 linebuf = xmalloc_fgetline(fp);
338 modinfo[cur].deps = linebuf ? linebuf : xzalloc(1);
Denis Vlasenko78436992008-07-10 14:14:20 +0000339 if (modinfo[cur].deps[0]) {
340 /* deps are not "", so next line must be empty */
341 line = xmalloc_fgetline(fp);
342 /* Refuse to work with damaged config file */
343 if (line && line[0])
344 bb_error_msg_and_die("error in %s at '%s'", DEPFILE_BB, line);
345 free(line);
346 }
347 }
Denis Vlasenko7f950a92008-07-10 14:14:45 +0000348 return 1;
349}
350
351static int start_dep_bb_writeout(void)
352{
353 int fd;
354
Denis Vlasenko0e2c93f2008-07-10 14:16:11 +0000355 /* depmod -n: write result to stdout */
356 if (applet_name[0] == 'd' && (option_mask32 & 1))
357 return STDOUT_FILENO;
358
Denis Vlasenko7f950a92008-07-10 14:14:45 +0000359 fd = open(DEPFILE_BB".new", O_WRONLY | O_CREAT | O_TRUNC | O_EXCL, 0644);
360 if (fd < 0) {
361 if (errno == EEXIST) {
362 int count = 5 * 20;
363 dbg1_error_msg(DEPFILE_BB".new exists, waiting for "DEPFILE_BB);
364 while (1) {
365 usleep(1000*1000 / 20);
366 if (load_dep_bb()) {
367 dbg1_error_msg(DEPFILE_BB" appeared");
368 return -2; /* magic number */
369 }
370 if (!--count)
371 break;
372 }
373 bb_error_msg("deleting stale %s", DEPFILE_BB".new");
374 fd = open_or_warn(DEPFILE_BB".new", O_WRONLY | O_CREAT | O_TRUNC);
375 }
376 }
377 dbg1_error_msg("opened "DEPFILE_BB".new:%d", fd);
378 return fd;
379}
380
381static void write_out_dep_bb(int fd)
382{
383 int i;
384 FILE *fp;
385
386 /* We want good error reporting. fdprintf is not good enough. */
387 fp = fdopen(fd, "w");
388 if (!fp) {
389 close(fd);
390 goto err;
391 }
392 i = 0;
393 while (modinfo[i].pathname) {
394 fprintf(fp, "%s%s%s\n" "%s%s\n",
395 modinfo[i].pathname, modinfo[i].aliases[0] ? " " : "", modinfo[i].aliases,
396 modinfo[i].deps, modinfo[i].deps[0] ? "\n" : "");
397 i++;
398 }
399 /* Badly formatted depfile is a no-no. Be paranoid. */
400 errno = 0;
Denis Vlasenko0e2c93f2008-07-10 14:16:11 +0000401 if (ferror(fp) | fclose(fp)) /* | instead of || is intended */
Denis Vlasenko7f950a92008-07-10 14:14:45 +0000402 goto err;
Denis Vlasenko0e2c93f2008-07-10 14:16:11 +0000403
404 if (fd == STDOUT_FILENO) /* it was depmod -n */
405 goto ok;
406
Denis Vlasenko7f950a92008-07-10 14:14:45 +0000407 if (rename(DEPFILE_BB".new", DEPFILE_BB) != 0) {
408 err:
409 bb_perror_msg("can't create %s", DEPFILE_BB);
410 unlink(DEPFILE_BB".new");
411 } else {
Denis Vlasenko0e2c93f2008-07-10 14:16:11 +0000412 ok:
413 wrote_dep_bb_ok = 1;
Denis Vlasenko7f950a92008-07-10 14:14:45 +0000414 dbg1_error_msg("created "DEPFILE_BB);
415 }
Denis Vlasenko78436992008-07-10 14:14:20 +0000416}
417
Denis Vlasenko671691c2008-07-04 10:25:44 +0000418static module_info* find_alias(const char *alias)
419{
420 int i;
Denis Vlasenko7f950a92008-07-10 14:14:45 +0000421 int dep_bb_fd;
422 module_info *result;
Denis Vlasenko671691c2008-07-04 10:25:44 +0000423 dbg1_error_msg("find_alias('%s')", alias);
424
Denis Vlasenko7f950a92008-07-10 14:14:45 +0000425 try_again:
Denis Vlasenko671691c2008-07-04 10:25:44 +0000426 /* First try to find by name (cheaper) */
427 i = 0;
428 while (modinfo[i].pathname) {
Denis Vlasenko24a131e2008-07-09 15:30:57 +0000429 if (pathname_matches_modname(modinfo[i].pathname, alias)) {
Denis Vlasenko671691c2008-07-04 10:25:44 +0000430 dbg1_error_msg("found '%s' in module '%s'",
431 alias, modinfo[i].pathname);
Denis Vlasenko78436992008-07-10 14:14:20 +0000432 if (!modinfo[i].aliases) {
433 parse_module(&modinfo[i], modinfo[i].pathname);
434 }
Denis Vlasenko671691c2008-07-04 10:25:44 +0000435 return &modinfo[i];
436 }
Denis Vlasenko671691c2008-07-04 10:25:44 +0000437 i++;
438 }
439
Denis Vlasenko7f950a92008-07-10 14:14:45 +0000440 /* Ok, we definitely have to scan module bodies. This is a good
441 * moment to generate modprobe.dep.bb, if it does not exist yet */
442 dep_bb_fd = dep_bb_seen ? -1 : start_dep_bb_writeout();
443 if (dep_bb_fd == -2) /* modprobe.dep.bb appeared? */
444 goto try_again;
445
Denis Vlasenko671691c2008-07-04 10:25:44 +0000446 /* Scan all module bodies, extract modinfo (it contains aliases) */
447 i = 0;
Denis Vlasenko7f950a92008-07-10 14:14:45 +0000448 result = NULL;
Denis Vlasenko671691c2008-07-04 10:25:44 +0000449 while (modinfo[i].pathname) {
450 char *desc, *s;
Denis Vlasenko78436992008-07-10 14:14:20 +0000451 if (!modinfo[i].aliases) {
452 parse_module(&modinfo[i], modinfo[i].pathname);
Denis Vlasenko671691c2008-07-04 10:25:44 +0000453 }
Denis Vlasenko8e804112008-08-06 09:41:09 +0000454 if (result) {
455 i++;
Denis Vlasenko7f950a92008-07-10 14:14:45 +0000456 continue;
Denis Vlasenko8e804112008-08-06 09:41:09 +0000457 }
Denis Vlasenko24a131e2008-07-09 15:30:57 +0000458 /* "alias1 symbol:sym1 alias2 symbol:sym2" */
Denis Vlasenko78436992008-07-10 14:14:20 +0000459 desc = str_2_list(modinfo[i].aliases);
Denis Vlasenko671691c2008-07-04 10:25:44 +0000460 /* Does matching substring exist? */
Denis Vlasenko671691c2008-07-04 10:25:44 +0000461 for (s = desc; *s; s += strlen(s) + 1) {
Denis Vlasenko24a131e2008-07-09 15:30:57 +0000462 /* Aliases in module bodies can be defined with
Denis Vlasenko58f59a22008-07-06 11:52:23 +0000463 * shell patterns. Example:
464 * "pci:v000010DEd000000D9sv*sd*bc*sc*i*".
465 * Plain strcmp() won't catch that */
466 if (fnmatch(s, alias, 0) == 0) {
Denis Vlasenko671691c2008-07-04 10:25:44 +0000467 dbg1_error_msg("found alias '%s' in module '%s'",
468 alias, modinfo[i].pathname);
Denis Vlasenko7f950a92008-07-10 14:14:45 +0000469 result = &modinfo[i];
470 break;
Denis Vlasenko671691c2008-07-04 10:25:44 +0000471 }
472 }
473 free(desc);
Denis Vlasenko7f950a92008-07-10 14:14:45 +0000474 if (result && dep_bb_fd < 0)
475 return result;
Denis Vlasenko671691c2008-07-04 10:25:44 +0000476 i++;
477 }
Denis Vlasenko7f950a92008-07-10 14:14:45 +0000478
479 /* Create module.dep.bb if needed */
480 if (dep_bb_fd >= 0) {
481 write_out_dep_bb(dep_bb_fd);
482 }
483
484 dbg1_error_msg("find_alias '%s' returns %p", alias, result);
485 return result;
Denis Vlasenko671691c2008-07-04 10:25:44 +0000486}
487
488#if ENABLE_FEATURE_MODPROBE_SMALL_CHECK_ALREADY_LOADED
Denis Vlasenko0f99d492008-07-24 23:38:04 +0000489// TODO: open only once, invent config_rewind()
Denis Vlasenko671691c2008-07-04 10:25:44 +0000490static int already_loaded(const char *name)
491{
492 int ret = 0;
Denis Vlasenko0f99d492008-07-24 23:38:04 +0000493 char *s;
494 parser_t *parser = config_open2("/proc/modules", xfopen_for_read);
Denis Vlasenko084266e2008-07-26 23:08:31 +0000495 while (config_read(parser, &s, 1, 1, "# \t", PARSE_NORMAL & ~PARSE_GREEDY)) {
Denis Vlasenko0f99d492008-07-24 23:38:04 +0000496 if (strcmp(s, name) == 0) {
Denis Vlasenko671691c2008-07-04 10:25:44 +0000497 ret = 1;
498 break;
499 }
Denis Vlasenko671691c2008-07-04 10:25:44 +0000500 }
Denis Vlasenko0f99d492008-07-24 23:38:04 +0000501 config_close(parser);
Denis Vlasenko671691c2008-07-04 10:25:44 +0000502 return ret;
503}
504#else
505#define already_loaded(name) is_rmmod
506#endif
507
508/*
Denis Vlasenko0e2c93f2008-07-10 14:16:11 +0000509 * Given modules definition and module name (or alias, or symbol)
510 * load/remove the module respecting dependencies.
511 * NB: also called by depmod with bogus name "/",
512 * just in order to force modprobe.dep.bb creation.
Denis Vlasenko671691c2008-07-04 10:25:44 +0000513*/
514#if !ENABLE_FEATURE_MODPROBE_SMALL_OPTIONS_ON_CMDLINE
515#define process_module(a,b) process_module(a)
516#define cmdline_options ""
517#endif
518static void process_module(char *name, const char *cmdline_options)
519{
520 char *s, *deps, *options;
521 module_info *info;
522 int is_rmmod = (option_mask32 & OPT_r) != 0;
523 dbg1_error_msg("process_module('%s','%s')", name, cmdline_options);
524
525 replace(name, '-', '_');
526
527 dbg1_error_msg("already_loaded:%d is_rmmod:%d", already_loaded(name), is_rmmod);
528 if (already_loaded(name) != is_rmmod) {
529 dbg1_error_msg("nothing to do for '%s'", name);
530 return;
531 }
532
533 options = NULL;
534 if (!is_rmmod) {
535 char *opt_filename = xasprintf("/etc/modules/%s", name);
536 options = xmalloc_open_read_close(opt_filename, NULL);
537 if (options)
538 replace(options, '\n', ' ');
539#if ENABLE_FEATURE_MODPROBE_SMALL_OPTIONS_ON_CMDLINE
540 if (cmdline_options) {
541 /* NB: cmdline_options always have one leading ' '
542 * (see main()), we remove it here */
543 char *op = xasprintf(options ? "%s %s" : "%s %s" + 3,
544 cmdline_options + 1, options);
545 free(options);
546 options = op;
547 }
548#endif
549 free(opt_filename);
550 module_load_options = options;
551 dbg1_error_msg("process_module('%s'): options:'%s'", name, options);
552 }
553
554 if (!module_count) {
555 /* Scan module directory. This is done only once.
556 * It will attempt module load, and will exit(EXIT_SUCCESS)
557 * on success. */
558 module_found_idx = -1;
559 recursive_action(".",
560 ACTION_RECURSE, /* flags */
561 fileAction, /* file action */
562 NULL, /* dir action */
563 name, /* user data */
564 0); /* depth */
565 dbg1_error_msg("dirscan complete");
566 /* Module was not found, or load failed, or is_rmmod */
567 if (module_found_idx >= 0) { /* module was found */
568 info = &modinfo[module_found_idx];
569 } else { /* search for alias, not a plain module name */
570 info = find_alias(name);
571 }
572 } else {
573 info = find_alias(name);
574 }
575
576 /* rmmod? unload it by name */
577 if (is_rmmod) {
Denis Vlasenko7f950a92008-07-10 14:14:45 +0000578 if (delete_module(name, O_NONBLOCK | O_EXCL) != 0
Denis Vlasenko671691c2008-07-04 10:25:44 +0000579 && !(option_mask32 & OPT_q)
580 ) {
581 bb_perror_msg("remove '%s'", name);
582 goto ret;
583 }
584 /* N.B. we do not stop here -
585 * continue to unload modules on which the module depends:
586 * "-r --remove: option causes modprobe to remove a module.
587 * If the modules it depends on are also unused, modprobe
588 * will try to remove them, too." */
589 }
590
Denis Vlasenko0e2c93f2008-07-10 14:16:11 +0000591 if (!info) {
592 /* both dirscan and find_alias found nothing */
593 if (applet_name[0] != 'd') /* it wasn't depmod */
594 bb_error_msg("module '%s' not found", name);
Denis Vlasenko7f950a92008-07-10 14:14:45 +0000595//TODO: _and_die()?
Denis Vlasenko671691c2008-07-04 10:25:44 +0000596 goto ret;
597 }
598
Denis Vlasenko671691c2008-07-04 10:25:44 +0000599 /* Iterate thru dependencies, trying to (un)load them */
Denis Vlasenko78436992008-07-10 14:14:20 +0000600 deps = str_2_list(info->deps);
Denis Vlasenko671691c2008-07-04 10:25:44 +0000601 for (s = deps; *s; s += strlen(s) + 1) {
602 //if (strcmp(name, s) != 0) // N.B. do loops exist?
603 dbg1_error_msg("recurse on dep '%s'", s);
604 process_module(s, NULL);
605 dbg1_error_msg("recurse on dep '%s' done", s);
606 }
607 free(deps);
608
Denis Vlasenko1c781cc2008-09-06 14:14:01 +0000609 /* modprobe -> load it */
Denis Vlasenko1ad4db12008-11-12 00:09:58 +0000610 if (!is_rmmod) {
611 if (!options || strstr(options, "blacklist") == NULL) {
612 errno = 0;
613 if (load_module(info->pathname, options) != 0) {
614 if (EEXIST != errno) {
615 bb_error_msg("'%s': %s",
Denis Vlasenko24a131e2008-07-09 15:30:57 +0000616 info->pathname,
Denis Vlasenko671691c2008-07-04 10:25:44 +0000617 moderror(errno));
Denis Vlasenko1ad4db12008-11-12 00:09:58 +0000618 } else {
619 dbg1_error_msg("'%s': %s",
Denis Vlasenko24a131e2008-07-09 15:30:57 +0000620 info->pathname,
Denis Vlasenko671691c2008-07-04 10:25:44 +0000621 moderror(errno));
Denis Vlasenko1ad4db12008-11-12 00:09:58 +0000622 }
Denis Vlasenko671691c2008-07-04 10:25:44 +0000623 }
Denis Vlasenko1ad4db12008-11-12 00:09:58 +0000624 } else {
625 dbg1_error_msg("'%s': blacklisted", info->pathname);
Denis Vlasenko671691c2008-07-04 10:25:44 +0000626 }
627 }
628 ret:
629 free(options);
630//TODO: return load attempt result from process_module.
631//If dep didn't load ok, continuing makes little sense.
632}
633#undef cmdline_options
634
635
Denis Vlasenko0e2c93f2008-07-10 14:16:11 +0000636/* For reference, module-init-tools v3.4 options:
Denis Vlasenko671691c2008-07-04 10:25:44 +0000637
638# insmod
639Usage: insmod filename [args]
640
641# rmmod --help
642Usage: rmmod [-fhswvV] modulename ...
Denis Vlasenko0e2c93f2008-07-10 14:16:11 +0000643 -f (or --force) forces a module unload, and may crash your
644 machine. This requires the Forced Module Removal option
645 when the kernel was compiled.
646 -h (or --help) prints this help text
Denis Vlasenko671691c2008-07-04 10:25:44 +0000647 -s (or --syslog) says use syslog, not stderr
648 -v (or --verbose) enables more messages
Denis Vlasenko0e2c93f2008-07-10 14:16:11 +0000649 -V (or --version) prints the version code
Denis Vlasenko35d8c472008-08-05 07:59:25 +0000650 -w (or --wait) begins module removal even if it is used
Denis Vlasenko671691c2008-07-04 10:25:44 +0000651 and will stop new users from accessing the module (so it
652 should eventually fall to zero).
653
654# modprobe
Denis Vlasenko0e2c93f2008-07-10 14:16:11 +0000655Usage: modprobe [-v] [-V] [-C config-file] [-n] [-i] [-q] [-b]
656 [-o <modname>] [ --dump-modversions ] <modname> [parameters...]
657modprobe -r [-n] [-i] [-v] <modulename> ...
658modprobe -l -t <dirname> [ -a <modulename> ...]
Denis Vlasenko671691c2008-07-04 10:25:44 +0000659
660# depmod --help
Denis Vlasenko0e2c93f2008-07-10 14:16:11 +0000661depmod 3.4 -- part of module-init-tools
662depmod -[aA] [-n -e -v -q -V -r -u]
663 [-b basedirectory] [forced_version]
664depmod [-n -e -v -q -r -u] [-F kernelsyms] module1.ko module2.ko ...
665If no arguments (except options) are given, "depmod -a" is assumed.
Denys Vlasenkobf2af9a2009-05-25 04:15:37 +0200666depmod will output a dependency list suitable for the modprobe utility.
Denis Vlasenko671691c2008-07-04 10:25:44 +0000667Options:
Denis Vlasenko35d8c472008-08-05 07:59:25 +0000668 -a, --all Probe all modules
669 -A, --quick Only does the work if there's a new module
670 -n, --show Write the dependency file on stdout only
671 -e, --errsyms Report not supplied symbols
672 -V, --version Print the release version
673 -v, --verbose Enable verbose mode
674 -h, --help Print this usage message
Denis Vlasenko0e2c93f2008-07-10 14:16:11 +0000675The following options are useful for people managing distributions:
676 -b basedirectory
Denis Vlasenko35d8c472008-08-05 07:59:25 +0000677 --basedir basedirectory
678 Use an image of a module tree
Denis Vlasenko0e2c93f2008-07-10 14:16:11 +0000679 -F kernelsyms
Denis Vlasenko35d8c472008-08-05 07:59:25 +0000680 --filesyms kernelsyms
681 Use the file instead of the current kernel symbols
Denis Vlasenko671691c2008-07-04 10:25:44 +0000682*/
683
684int modprobe_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +0000685int modprobe_main(int argc UNUSED_PARAM, char **argv)
Denis Vlasenko671691c2008-07-04 10:25:44 +0000686{
687 struct utsname uts;
688 char applet0 = applet_name[0];
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000689 IF_FEATURE_MODPROBE_SMALL_OPTIONS_ON_CMDLINE(char *options;)
Denis Vlasenko671691c2008-07-04 10:25:44 +0000690
Denis Vlasenko671691c2008-07-04 10:25:44 +0000691 /* are we lsmod? -> just dump /proc/modules */
692 if ('l' == applet0) {
Denis Vlasenko5415c852008-07-21 23:05:26 +0000693 xprint_and_close_file(xfopen_for_read("/proc/modules"));
Denis Vlasenko671691c2008-07-04 10:25:44 +0000694 return EXIT_SUCCESS;
695 }
696
697 INIT_G();
698
Denis Vlasenko0e2c93f2008-07-10 14:16:11 +0000699 /* Prevent ugly corner cases with no modules at all */
700 modinfo = xzalloc(sizeof(modinfo[0]));
701
Denis Vlasenko1c781cc2008-09-06 14:14:01 +0000702 if ('i' != applet0) { /* not insmod */
703 /* Goto modules directory */
704 xchdir(CONFIG_DEFAULT_MODULES_DIR);
705 }
Denis Vlasenko0e2c93f2008-07-10 14:16:11 +0000706 uname(&uts); /* never fails */
707
708 /* depmod? */
709 if ('d' == applet0) {
710 /* Supported:
711 * -n: print result to stdout
712 * -a: process all modules (default)
713 * optional VERSION parameter
714 * Ignored:
715 * -A: do work only if a module is newer than depfile
716 * -e: report any symbols which a module needs
717 * which are not supplied by other modules or the kernel
718 * -F FILE: System.map (symbols for -e)
719 * -q, -r, -u: noop?
720 * Not supported:
721 * -b BASEDIR: (TODO!) modules are in
722 * $BASEDIR/lib/modules/$VERSION
723 * -v: human readable deps to stdout
724 * -V: version (don't want to support it - people may depend
725 * on it as an indicator of "standard" depmod)
726 * -h: help (well duh)
727 * module1.o module2.o parameters (just ignored for now)
728 */
729 getopt32(argv, "na" "AeF:qru" /* "b:vV", NULL */, NULL);
730 argv += optind;
731 /* if (argv[0] && argv[1]) bb_show_usage(); */
732 /* Goto $VERSION directory */
733 xchdir(argv[0] ? argv[0] : uts.release);
734 /* Force full module scan by asking to find a bogus module.
735 * This will generate modules.dep.bb as a side effect. */
736 process_module((char*)"/", NULL);
737 return !wrote_dep_bb_ok;
738 }
739
Denis Vlasenko671691c2008-07-04 10:25:44 +0000740 /* insmod, modprobe, rmmod require at least one argument */
741 opt_complementary = "-1";
742 /* only -q (quiet) and -r (rmmod),
743 * the rest are accepted and ignored (compat) */
744 getopt32(argv, "qrfsvw");
745 argv += optind;
746
747 /* are we rmmod? -> simulate modprobe -r */
748 if ('r' == applet0) {
749 option_mask32 |= OPT_r;
750 }
751
Denis Vlasenko1c781cc2008-09-06 14:14:01 +0000752 if ('i' != applet0) { /* not insmod */
753 /* Goto $VERSION directory */
754 xchdir(uts.release);
755 }
Denis Vlasenko671691c2008-07-04 10:25:44 +0000756
757#if ENABLE_FEATURE_MODPROBE_SMALL_OPTIONS_ON_CMDLINE
758 /* If not rmmod, parse possible module options given on command line.
759 * insmod/modprobe takes one module name, the rest are parameters. */
760 options = NULL;
761 if ('r' != applet0) {
762 char **arg = argv;
763 while (*++arg) {
764 /* Enclose options in quotes */
765 char *s = options;
766 options = xasprintf("%s \"%s\"", s ? s : "", *arg);
767 free(s);
768 *arg = NULL;
769 }
770 }
771#else
772 if ('r' != applet0)
773 argv[1] = NULL;
774#endif
775
Denis Vlasenko1c781cc2008-09-06 14:14:01 +0000776 if ('i' == applet0) { /* insmod */
777 size_t len;
778 void *map;
779
780 len = MAXINT(ssize_t);
781 map = xmalloc_xopen_read_close(*argv, &len);
782 if (init_module(map, len,
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000783 IF_FEATURE_MODPROBE_SMALL_OPTIONS_ON_CMDLINE(options ? options : "")
784 IF_NOT_FEATURE_MODPROBE_SMALL_OPTIONS_ON_CMDLINE("")
Denis Vlasenko1c781cc2008-09-06 14:14:01 +0000785 ) != 0)
Denis Vlasenko1f632292009-04-13 02:25:40 +0000786 bb_error_msg_and_die("can't insert '%s': %s",
Denis Vlasenko1c781cc2008-09-06 14:14:01 +0000787 *argv, moderror(errno));
788 return 0;
789 }
790
Denis Vlasenko7f950a92008-07-10 14:14:45 +0000791 /* Try to load modprobe.dep.bb */
Denis Vlasenko78436992008-07-10 14:14:20 +0000792 load_dep_bb();
793
Denis Vlasenko671691c2008-07-04 10:25:44 +0000794 /* Load/remove modules.
Denis Vlasenko1c781cc2008-09-06 14:14:01 +0000795 * Only rmmod loops here, modprobe has only argv[0] */
Denis Vlasenko671691c2008-07-04 10:25:44 +0000796 do {
797 process_module(*argv++, options);
798 } while (*argv);
799
800 if (ENABLE_FEATURE_CLEAN_UP) {
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000801 IF_FEATURE_MODPROBE_SMALL_OPTIONS_ON_CMDLINE(free(options);)
Denis Vlasenko671691c2008-07-04 10:25:44 +0000802 }
803 return EXIT_SUCCESS;
804}