blob: 4aa2b5862eb6d62b9327cf5baee83e750ffdf435 [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
6 * Copyright (c) 2008 Bernhard Fischer (initial depmod code)
7 *
8 * Licensed under GPLv2, see file LICENSE in this tarball for details.
9 */
10
11#include "libbb.h"
Denis Vlasenko671691c2008-07-04 10:25:44 +000012
13#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;
Denis Vlasenko671691c2008-07-04 10:25:44 +000047 int module_count;
48 int module_found_idx;
49 int stringbuf_idx;
50 char stringbuf[32 * 1024]; /* some modules have lots of stuff */
51 /* for example, drivers/media/video/saa7134/saa7134.ko */
52};
53#define G (*ptr_to_globals)
54#define modinfo (G.modinfo )
Denis Vlasenko7f950a92008-07-10 14:14:45 +000055#define dep_bb_seen (G.dep_bb_seen )
Denis Vlasenko0e2c93f2008-07-10 14:16:11 +000056#define wrote_dep_bb_ok (G.wrote_dep_bb_ok )
Denis Vlasenko671691c2008-07-04 10:25:44 +000057#define module_count (G.module_count )
58#define module_found_idx (G.module_found_idx )
59#define module_load_options (G.module_load_options)
60#define stringbuf_idx (G.stringbuf_idx )
61#define stringbuf (G.stringbuf )
62#define INIT_G() do { \
63 SET_PTR_TO_GLOBALS(xzalloc(sizeof(G))); \
64} while (0)
65
66
67static void appendc(char c)
68{
69 if (stringbuf_idx < sizeof(stringbuf))
70 stringbuf[stringbuf_idx++] = c;
71}
72
Denis Vlasenko24a131e2008-07-09 15:30:57 +000073static void bksp(void)
74{
75 if (stringbuf_idx)
76 stringbuf_idx--;
77}
78
Denis Vlasenko671691c2008-07-04 10:25:44 +000079static void append(const char *s)
80{
81 size_t len = strlen(s);
82 if (stringbuf_idx + len < sizeof(stringbuf)) {
83 memcpy(stringbuf + stringbuf_idx, s, len);
84 stringbuf_idx += len;
85 }
86}
87
88static void reset_stringbuf(void)
89{
90 stringbuf_idx = 0;
91}
92
93static char* copy_stringbuf(void)
94{
95 char *copy = xmalloc(stringbuf_idx);
96 return memcpy(copy, stringbuf, stringbuf_idx);
97}
98
99static char* find_keyword(char *ptr, size_t len, const char *word)
100{
101 int wlen;
102
103 if (!ptr) /* happens if read_module cannot read it */
104 return NULL;
105
106 wlen = strlen(word);
107 len -= wlen - 1;
108 while ((ssize_t)len > 0) {
109 char *old = ptr;
110 /* search for the first char in word */
111 ptr = memchr(ptr, *word, len);
112 if (ptr == NULL) /* no occurance left, done */
113 break;
114 if (strncmp(ptr, word, wlen) == 0)
115 return ptr + wlen; /* found, return ptr past it */
116 ++ptr;
117 len -= (ptr - old);
118 }
119 return NULL;
120}
121
122static void replace(char *s, char what, char with)
123{
124 while (*s) {
125 if (what == *s)
126 *s = with;
127 ++s;
128 }
129}
130
Denis Vlasenko24a131e2008-07-09 15:30:57 +0000131/* Take "word word", return malloced "word",NUL,"word",NUL,NUL */
132static char* str_2_list(const char *str)
133{
134 int len = strlen(str) + 1;
135 char *dst = xmalloc(len + 1);
136
137 dst[len] = '\0';
138 memcpy(dst, str, len);
139//TODO: protect against 2+ spaces: "word word"
140 replace(dst, ' ', '\0');
141 return dst;
142}
143
Denis Vlasenko671691c2008-07-04 10:25:44 +0000144#if ENABLE_FEATURE_MODPROBE_SMALL_ZIPPED
Denis Vlasenko671691c2008-07-04 10:25:44 +0000145# define read_module xmalloc_open_zipped_read_close
146#else
147# define read_module xmalloc_open_read_close
148#endif
149
150/* 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
176 module_image = read_module(fname, &len);
177 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 */
198 module_image = read_module(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 Vlasenko671691c2008-07-04 10:25:44 +0000225 appendc('\0');
Denis Vlasenko78436992008-07-10 14:14:20 +0000226 info->aliases = copy_stringbuf();
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 Vlasenko24a131e2008-07-09 15:30:57 +0000237 appendc('\0');
Denis Vlasenko78436992008-07-10 14:14:20 +0000238 info->deps = copy_stringbuf();
Denis Vlasenko671691c2008-07-04 10:25:44 +0000239
240 free(module_image);
Denis Vlasenko671691c2008-07-04 10:25:44 +0000241}
242
Denis Vlasenko24a131e2008-07-09 15:30:57 +0000243static int pathname_matches_modname(const char *pathname, const char *modname)
Denis Vlasenko671691c2008-07-04 10:25:44 +0000244{
245 const char *fname = bb_get_last_path_component_nostrip(pathname);
246 const char *suffix = strrstr(fname, ".ko");
Denis Vlasenko24a131e2008-07-09 15:30:57 +0000247//TODO: can do without malloc?
Denis Vlasenko671691c2008-07-04 10:25:44 +0000248 char *name = xstrndup(fname, suffix - fname);
Denis Vlasenko24a131e2008-07-09 15:30:57 +0000249 int r;
Denis Vlasenko671691c2008-07-04 10:25:44 +0000250 replace(name, '-', '_');
Denis Vlasenko24a131e2008-07-09 15:30:57 +0000251 r = (strcmp(name, modname) == 0);
252 free(name);
253 return r;
Denis Vlasenko671691c2008-07-04 10:25:44 +0000254}
255
256static FAST_FUNC int fileAction(const char *pathname,
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +0000257 struct stat *sb UNUSED_PARAM,
Denis Vlasenko24a131e2008-07-09 15:30:57 +0000258 void *modname_to_match,
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +0000259 int depth UNUSED_PARAM)
Denis Vlasenko671691c2008-07-04 10:25:44 +0000260{
261 int cur;
Denis Vlasenko671691c2008-07-04 10:25:44 +0000262 const char *fname;
263
264 pathname += 2; /* skip "./" */
265 fname = bb_get_last_path_component_nostrip(pathname);
266 if (!strrstr(fname, ".ko")) {
267 dbg1_error_msg("'%s' is not a module", pathname);
268 return TRUE; /* not a module, continue search */
269 }
270
271 cur = module_count++;
Denis Vlasenkodeeed592008-07-08 05:14:36 +0000272 modinfo = xrealloc_vector(modinfo, 12, cur);
Denis Vlasenko671691c2008-07-04 10:25:44 +0000273 modinfo[cur].pathname = xstrdup(pathname);
Denis Vlasenko27842282008-08-04 13:20:36 +0000274 /*modinfo[cur].aliases = NULL; - xrealloc_vector did it */
275 /*modinfo[cur+1].pathname = NULL;*/
Denis Vlasenko671691c2008-07-04 10:25:44 +0000276
Denis Vlasenko24a131e2008-07-09 15:30:57 +0000277 if (!pathname_matches_modname(fname, modname_to_match)) {
Denis Vlasenko671691c2008-07-04 10:25:44 +0000278 dbg1_error_msg("'%s' module name doesn't match", pathname);
279 return TRUE; /* module name doesn't match, continue search */
280 }
281
282 dbg1_error_msg("'%s' module name matches", pathname);
283 module_found_idx = cur;
Denis Vlasenko78436992008-07-10 14:14:20 +0000284 parse_module(&modinfo[cur], pathname);
Denis Vlasenko671691c2008-07-04 10:25:44 +0000285
286 if (!(option_mask32 & OPT_r)) {
287 if (load_module(pathname, module_load_options) == 0) {
288 /* Load was successful, there is nothing else to do.
289 * This can happen ONLY for "top-level" module load,
290 * not a dep, because deps dont do dirscan. */
291 exit(EXIT_SUCCESS);
Denis Vlasenko671691c2008-07-04 10:25:44 +0000292 }
293 }
294
Denis Vlasenko671691c2008-07-04 10:25:44 +0000295 return TRUE;
296}
297
Denis Vlasenko7f950a92008-07-10 14:14:45 +0000298static int load_dep_bb(void)
Denis Vlasenko78436992008-07-10 14:14:20 +0000299{
300 char *line;
Denis Vlasenko5415c852008-07-21 23:05:26 +0000301 FILE *fp = fopen_for_read(DEPFILE_BB);
Denis Vlasenko78436992008-07-10 14:14:20 +0000302
303 if (!fp)
Denis Vlasenko7f950a92008-07-10 14:14:45 +0000304 return 0;
305
306 dep_bb_seen = 1;
307 dbg1_error_msg("loading "DEPFILE_BB);
308
309 /* Why? There is a rare scenario: we did not find modprobe.dep.bb,
310 * we scanned the dir and found no module by name, then we search
311 * for alias (full scan), and we decided to generate modprobe.dep.bb.
312 * But we see modprobe.dep.bb.new! Other modprobe is at work!
313 * We wait and other modprobe renames it to modprobe.dep.bb.
314 * Now we can use it.
315 * But we already have modinfo[] filled, and "module_count = 0"
316 * makes us start anew. Yes, we leak modinfo[].xxx pointers -
317 * there is not much of data there anyway. */
318 module_count = 0;
319 memset(&modinfo[0], 0, sizeof(modinfo[0]));
Denis Vlasenko78436992008-07-10 14:14:20 +0000320
321 while ((line = xmalloc_fgetline(fp)) != NULL) {
322 char* space;
323 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;
337 modinfo[cur].deps = xmalloc_fgetline(fp) ? : xzalloc(1);
338 if (modinfo[cur].deps[0]) {
339 /* deps are not "", so next line must be empty */
340 line = xmalloc_fgetline(fp);
341 /* Refuse to work with damaged config file */
342 if (line && line[0])
343 bb_error_msg_and_die("error in %s at '%s'", DEPFILE_BB, line);
344 free(line);
345 }
346 }
Denis Vlasenko7f950a92008-07-10 14:14:45 +0000347 return 1;
348}
349
350static int start_dep_bb_writeout(void)
351{
352 int fd;
353
Denis Vlasenko0e2c93f2008-07-10 14:16:11 +0000354 /* depmod -n: write result to stdout */
355 if (applet_name[0] == 'd' && (option_mask32 & 1))
356 return STDOUT_FILENO;
357
Denis Vlasenko7f950a92008-07-10 14:14:45 +0000358 fd = open(DEPFILE_BB".new", O_WRONLY | O_CREAT | O_TRUNC | O_EXCL, 0644);
359 if (fd < 0) {
360 if (errno == EEXIST) {
361 int count = 5 * 20;
362 dbg1_error_msg(DEPFILE_BB".new exists, waiting for "DEPFILE_BB);
363 while (1) {
364 usleep(1000*1000 / 20);
365 if (load_dep_bb()) {
366 dbg1_error_msg(DEPFILE_BB" appeared");
367 return -2; /* magic number */
368 }
369 if (!--count)
370 break;
371 }
372 bb_error_msg("deleting stale %s", DEPFILE_BB".new");
373 fd = open_or_warn(DEPFILE_BB".new", O_WRONLY | O_CREAT | O_TRUNC);
374 }
375 }
376 dbg1_error_msg("opened "DEPFILE_BB".new:%d", fd);
377 return fd;
378}
379
380static void write_out_dep_bb(int fd)
381{
382 int i;
383 FILE *fp;
384
385 /* We want good error reporting. fdprintf is not good enough. */
386 fp = fdopen(fd, "w");
387 if (!fp) {
388 close(fd);
389 goto err;
390 }
391 i = 0;
392 while (modinfo[i].pathname) {
393 fprintf(fp, "%s%s%s\n" "%s%s\n",
394 modinfo[i].pathname, modinfo[i].aliases[0] ? " " : "", modinfo[i].aliases,
395 modinfo[i].deps, modinfo[i].deps[0] ? "\n" : "");
396 i++;
397 }
398 /* Badly formatted depfile is a no-no. Be paranoid. */
399 errno = 0;
Denis Vlasenko0e2c93f2008-07-10 14:16:11 +0000400 if (ferror(fp) | fclose(fp)) /* | instead of || is intended */
Denis Vlasenko7f950a92008-07-10 14:14:45 +0000401 goto err;
Denis Vlasenko0e2c93f2008-07-10 14:16:11 +0000402
403 if (fd == STDOUT_FILENO) /* it was depmod -n */
404 goto ok;
405
Denis Vlasenko7f950a92008-07-10 14:14:45 +0000406 if (rename(DEPFILE_BB".new", DEPFILE_BB) != 0) {
407 err:
408 bb_perror_msg("can't create %s", DEPFILE_BB);
409 unlink(DEPFILE_BB".new");
410 } else {
Denis Vlasenko0e2c93f2008-07-10 14:16:11 +0000411 ok:
412 wrote_dep_bb_ok = 1;
Denis Vlasenko7f950a92008-07-10 14:14:45 +0000413 dbg1_error_msg("created "DEPFILE_BB);
414 }
Denis Vlasenko78436992008-07-10 14:14:20 +0000415}
416
Denis Vlasenko671691c2008-07-04 10:25:44 +0000417static module_info* find_alias(const char *alias)
418{
419 int i;
Denis Vlasenko7f950a92008-07-10 14:14:45 +0000420 int dep_bb_fd;
421 module_info *result;
Denis Vlasenko671691c2008-07-04 10:25:44 +0000422 dbg1_error_msg("find_alias('%s')", alias);
423
Denis Vlasenko7f950a92008-07-10 14:14:45 +0000424 try_again:
Denis Vlasenko671691c2008-07-04 10:25:44 +0000425 /* First try to find by name (cheaper) */
426 i = 0;
427 while (modinfo[i].pathname) {
Denis Vlasenko24a131e2008-07-09 15:30:57 +0000428 if (pathname_matches_modname(modinfo[i].pathname, alias)) {
Denis Vlasenko671691c2008-07-04 10:25:44 +0000429 dbg1_error_msg("found '%s' in module '%s'",
430 alias, modinfo[i].pathname);
Denis Vlasenko78436992008-07-10 14:14:20 +0000431 if (!modinfo[i].aliases) {
432 parse_module(&modinfo[i], modinfo[i].pathname);
433 }
Denis Vlasenko671691c2008-07-04 10:25:44 +0000434 return &modinfo[i];
435 }
Denis Vlasenko671691c2008-07-04 10:25:44 +0000436 i++;
437 }
438
Denis Vlasenko7f950a92008-07-10 14:14:45 +0000439 /* Ok, we definitely have to scan module bodies. This is a good
440 * moment to generate modprobe.dep.bb, if it does not exist yet */
441 dep_bb_fd = dep_bb_seen ? -1 : start_dep_bb_writeout();
442 if (dep_bb_fd == -2) /* modprobe.dep.bb appeared? */
443 goto try_again;
444
Denis Vlasenko671691c2008-07-04 10:25:44 +0000445 /* Scan all module bodies, extract modinfo (it contains aliases) */
446 i = 0;
Denis Vlasenko7f950a92008-07-10 14:14:45 +0000447 result = NULL;
Denis Vlasenko671691c2008-07-04 10:25:44 +0000448 while (modinfo[i].pathname) {
449 char *desc, *s;
Denis Vlasenko78436992008-07-10 14:14:20 +0000450 if (!modinfo[i].aliases) {
451 parse_module(&modinfo[i], modinfo[i].pathname);
Denis Vlasenko671691c2008-07-04 10:25:44 +0000452 }
Denis Vlasenko7f950a92008-07-10 14:14:45 +0000453 if (result)
454 continue;
Denis Vlasenko24a131e2008-07-09 15:30:57 +0000455 /* "alias1 symbol:sym1 alias2 symbol:sym2" */
Denis Vlasenko78436992008-07-10 14:14:20 +0000456 desc = str_2_list(modinfo[i].aliases);
Denis Vlasenko671691c2008-07-04 10:25:44 +0000457 /* Does matching substring exist? */
Denis Vlasenko671691c2008-07-04 10:25:44 +0000458 for (s = desc; *s; s += strlen(s) + 1) {
Denis Vlasenko24a131e2008-07-09 15:30:57 +0000459 /* Aliases in module bodies can be defined with
Denis Vlasenko58f59a22008-07-06 11:52:23 +0000460 * shell patterns. Example:
461 * "pci:v000010DEd000000D9sv*sd*bc*sc*i*".
462 * Plain strcmp() won't catch that */
463 if (fnmatch(s, alias, 0) == 0) {
Denis Vlasenko671691c2008-07-04 10:25:44 +0000464 dbg1_error_msg("found alias '%s' in module '%s'",
465 alias, modinfo[i].pathname);
Denis Vlasenko7f950a92008-07-10 14:14:45 +0000466 result = &modinfo[i];
467 break;
Denis Vlasenko671691c2008-07-04 10:25:44 +0000468 }
469 }
470 free(desc);
Denis Vlasenko7f950a92008-07-10 14:14:45 +0000471 if (result && dep_bb_fd < 0)
472 return result;
Denis Vlasenko671691c2008-07-04 10:25:44 +0000473 i++;
474 }
Denis Vlasenko7f950a92008-07-10 14:14:45 +0000475
476 /* Create module.dep.bb if needed */
477 if (dep_bb_fd >= 0) {
478 write_out_dep_bb(dep_bb_fd);
479 }
480
481 dbg1_error_msg("find_alias '%s' returns %p", alias, result);
482 return result;
Denis Vlasenko671691c2008-07-04 10:25:44 +0000483}
484
485#if ENABLE_FEATURE_MODPROBE_SMALL_CHECK_ALREADY_LOADED
Denis Vlasenko0f99d492008-07-24 23:38:04 +0000486// TODO: open only once, invent config_rewind()
Denis Vlasenko671691c2008-07-04 10:25:44 +0000487static int already_loaded(const char *name)
488{
489 int ret = 0;
Denis Vlasenko0f99d492008-07-24 23:38:04 +0000490 char *s;
491 parser_t *parser = config_open2("/proc/modules", xfopen_for_read);
Denis Vlasenko084266e2008-07-26 23:08:31 +0000492 while (config_read(parser, &s, 1, 1, "# \t", PARSE_NORMAL & ~PARSE_GREEDY)) {
Denis Vlasenko0f99d492008-07-24 23:38:04 +0000493 if (strcmp(s, name) == 0) {
Denis Vlasenko671691c2008-07-04 10:25:44 +0000494 ret = 1;
495 break;
496 }
Denis Vlasenko671691c2008-07-04 10:25:44 +0000497 }
Denis Vlasenko0f99d492008-07-24 23:38:04 +0000498 config_close(parser);
Denis Vlasenko671691c2008-07-04 10:25:44 +0000499 return ret;
500}
501#else
502#define already_loaded(name) is_rmmod
503#endif
504
505/*
Denis Vlasenko0e2c93f2008-07-10 14:16:11 +0000506 * Given modules definition and module name (or alias, or symbol)
507 * load/remove the module respecting dependencies.
508 * NB: also called by depmod with bogus name "/",
509 * just in order to force modprobe.dep.bb creation.
Denis Vlasenko671691c2008-07-04 10:25:44 +0000510*/
511#if !ENABLE_FEATURE_MODPROBE_SMALL_OPTIONS_ON_CMDLINE
512#define process_module(a,b) process_module(a)
513#define cmdline_options ""
514#endif
515static void process_module(char *name, const char *cmdline_options)
516{
517 char *s, *deps, *options;
518 module_info *info;
519 int is_rmmod = (option_mask32 & OPT_r) != 0;
520 dbg1_error_msg("process_module('%s','%s')", name, cmdline_options);
521
522 replace(name, '-', '_');
523
524 dbg1_error_msg("already_loaded:%d is_rmmod:%d", already_loaded(name), is_rmmod);
525 if (already_loaded(name) != is_rmmod) {
526 dbg1_error_msg("nothing to do for '%s'", name);
527 return;
528 }
529
530 options = NULL;
531 if (!is_rmmod) {
532 char *opt_filename = xasprintf("/etc/modules/%s", name);
533 options = xmalloc_open_read_close(opt_filename, NULL);
534 if (options)
535 replace(options, '\n', ' ');
536#if ENABLE_FEATURE_MODPROBE_SMALL_OPTIONS_ON_CMDLINE
537 if (cmdline_options) {
538 /* NB: cmdline_options always have one leading ' '
539 * (see main()), we remove it here */
540 char *op = xasprintf(options ? "%s %s" : "%s %s" + 3,
541 cmdline_options + 1, options);
542 free(options);
543 options = op;
544 }
545#endif
546 free(opt_filename);
547 module_load_options = options;
548 dbg1_error_msg("process_module('%s'): options:'%s'", name, options);
549 }
550
551 if (!module_count) {
552 /* Scan module directory. This is done only once.
553 * It will attempt module load, and will exit(EXIT_SUCCESS)
554 * on success. */
555 module_found_idx = -1;
556 recursive_action(".",
557 ACTION_RECURSE, /* flags */
558 fileAction, /* file action */
559 NULL, /* dir action */
560 name, /* user data */
561 0); /* depth */
562 dbg1_error_msg("dirscan complete");
563 /* Module was not found, or load failed, or is_rmmod */
564 if (module_found_idx >= 0) { /* module was found */
565 info = &modinfo[module_found_idx];
566 } else { /* search for alias, not a plain module name */
567 info = find_alias(name);
568 }
569 } else {
570 info = find_alias(name);
571 }
572
573 /* rmmod? unload it by name */
574 if (is_rmmod) {
Denis Vlasenko7f950a92008-07-10 14:14:45 +0000575 if (delete_module(name, O_NONBLOCK | O_EXCL) != 0
Denis Vlasenko671691c2008-07-04 10:25:44 +0000576 && !(option_mask32 & OPT_q)
577 ) {
578 bb_perror_msg("remove '%s'", name);
579 goto ret;
580 }
581 /* N.B. we do not stop here -
582 * continue to unload modules on which the module depends:
583 * "-r --remove: option causes modprobe to remove a module.
584 * If the modules it depends on are also unused, modprobe
585 * will try to remove them, too." */
586 }
587
Denis Vlasenko0e2c93f2008-07-10 14:16:11 +0000588 if (!info) {
589 /* both dirscan and find_alias found nothing */
590 if (applet_name[0] != 'd') /* it wasn't depmod */
591 bb_error_msg("module '%s' not found", name);
Denis Vlasenko7f950a92008-07-10 14:14:45 +0000592//TODO: _and_die()?
Denis Vlasenko671691c2008-07-04 10:25:44 +0000593 goto ret;
594 }
595
Denis Vlasenko671691c2008-07-04 10:25:44 +0000596 /* Iterate thru dependencies, trying to (un)load them */
Denis Vlasenko78436992008-07-10 14:14:20 +0000597 deps = str_2_list(info->deps);
Denis Vlasenko671691c2008-07-04 10:25:44 +0000598 for (s = deps; *s; s += strlen(s) + 1) {
599 //if (strcmp(name, s) != 0) // N.B. do loops exist?
600 dbg1_error_msg("recurse on dep '%s'", s);
601 process_module(s, NULL);
602 dbg1_error_msg("recurse on dep '%s' done", s);
603 }
604 free(deps);
605
606 /* insmod -> load it */
607 if (!is_rmmod) {
608 errno = 0;
609 if (load_module(info->pathname, options) != 0) {
610 if (EEXIST != errno) {
Denis Vlasenko24a131e2008-07-09 15:30:57 +0000611 bb_error_msg("'%s': %s",
612 info->pathname,
Denis Vlasenko671691c2008-07-04 10:25:44 +0000613 moderror(errno));
614 } else {
Denis Vlasenko24a131e2008-07-09 15:30:57 +0000615 dbg1_error_msg("'%s': %s",
616 info->pathname,
Denis Vlasenko671691c2008-07-04 10:25:44 +0000617 moderror(errno));
618 }
619 }
620 }
621 ret:
622 free(options);
623//TODO: return load attempt result from process_module.
624//If dep didn't load ok, continuing makes little sense.
625}
626#undef cmdline_options
627
628
Denis Vlasenko0e2c93f2008-07-10 14:16:11 +0000629/* For reference, module-init-tools v3.4 options:
Denis Vlasenko671691c2008-07-04 10:25:44 +0000630
631# insmod
632Usage: insmod filename [args]
633
634# rmmod --help
635Usage: rmmod [-fhswvV] modulename ...
Denis Vlasenko0e2c93f2008-07-10 14:16:11 +0000636 -f (or --force) forces a module unload, and may crash your
637 machine. This requires the Forced Module Removal option
638 when the kernel was compiled.
639 -h (or --help) prints this help text
Denis Vlasenko671691c2008-07-04 10:25:44 +0000640 -s (or --syslog) says use syslog, not stderr
641 -v (or --verbose) enables more messages
Denis Vlasenko0e2c93f2008-07-10 14:16:11 +0000642 -V (or --version) prints the version code
Denis Vlasenko671691c2008-07-04 10:25:44 +0000643 -w (or --wait) begins a module removal even if it is used
644 and will stop new users from accessing the module (so it
645 should eventually fall to zero).
646
647# modprobe
Denis Vlasenko0e2c93f2008-07-10 14:16:11 +0000648Usage: modprobe [-v] [-V] [-C config-file] [-n] [-i] [-q] [-b]
649 [-o <modname>] [ --dump-modversions ] <modname> [parameters...]
650modprobe -r [-n] [-i] [-v] <modulename> ...
651modprobe -l -t <dirname> [ -a <modulename> ...]
Denis Vlasenko671691c2008-07-04 10:25:44 +0000652
653# depmod --help
Denis Vlasenko0e2c93f2008-07-10 14:16:11 +0000654depmod 3.4 -- part of module-init-tools
655depmod -[aA] [-n -e -v -q -V -r -u]
656 [-b basedirectory] [forced_version]
657depmod [-n -e -v -q -r -u] [-F kernelsyms] module1.ko module2.ko ...
658If no arguments (except options) are given, "depmod -a" is assumed.
Denis Vlasenko671691c2008-07-04 10:25:44 +0000659depmod will output a dependancy list suitable for the modprobe utility.
Denis Vlasenko671691c2008-07-04 10:25:44 +0000660Options:
Denis Vlasenko0e2c93f2008-07-10 14:16:11 +0000661 -a, --all Probe all modules
662 -A, --quick Only does the work if there's a new module
663 -n, --show Write the dependency file on stdout only
664 -e, --errsyms Report not supplied symbols
665 -V, --version Print the release version
666 -v, --verbose Enable verbose mode
667 -h, --help Print this usage message
668The following options are useful for people managing distributions:
669 -b basedirectory
670 --basedir basedirectory Use an image of a module tree.
671 -F kernelsyms
672 --filesyms kernelsyms Use the file instead of the
673 current kernel symbols.
Denis Vlasenko671691c2008-07-04 10:25:44 +0000674*/
675
676int modprobe_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +0000677int modprobe_main(int argc UNUSED_PARAM, char **argv)
Denis Vlasenko671691c2008-07-04 10:25:44 +0000678{
679 struct utsname uts;
680 char applet0 = applet_name[0];
681 USE_FEATURE_MODPROBE_SMALL_OPTIONS_ON_CMDLINE(char *options;)
682
Denis Vlasenko671691c2008-07-04 10:25:44 +0000683 /* are we lsmod? -> just dump /proc/modules */
684 if ('l' == applet0) {
Denis Vlasenko5415c852008-07-21 23:05:26 +0000685 xprint_and_close_file(xfopen_for_read("/proc/modules"));
Denis Vlasenko671691c2008-07-04 10:25:44 +0000686 return EXIT_SUCCESS;
687 }
688
689 INIT_G();
690
Denis Vlasenko0e2c93f2008-07-10 14:16:11 +0000691 /* Prevent ugly corner cases with no modules at all */
692 modinfo = xzalloc(sizeof(modinfo[0]));
693
694 /* Goto modules directory */
695 xchdir(CONFIG_DEFAULT_MODULES_DIR);
696 uname(&uts); /* never fails */
697
698 /* depmod? */
699 if ('d' == applet0) {
700 /* Supported:
701 * -n: print result to stdout
702 * -a: process all modules (default)
703 * optional VERSION parameter
704 * Ignored:
705 * -A: do work only if a module is newer than depfile
706 * -e: report any symbols which a module needs
707 * which are not supplied by other modules or the kernel
708 * -F FILE: System.map (symbols for -e)
709 * -q, -r, -u: noop?
710 * Not supported:
711 * -b BASEDIR: (TODO!) modules are in
712 * $BASEDIR/lib/modules/$VERSION
713 * -v: human readable deps to stdout
714 * -V: version (don't want to support it - people may depend
715 * on it as an indicator of "standard" depmod)
716 * -h: help (well duh)
717 * module1.o module2.o parameters (just ignored for now)
718 */
719 getopt32(argv, "na" "AeF:qru" /* "b:vV", NULL */, NULL);
720 argv += optind;
721 /* if (argv[0] && argv[1]) bb_show_usage(); */
722 /* Goto $VERSION directory */
723 xchdir(argv[0] ? argv[0] : uts.release);
724 /* Force full module scan by asking to find a bogus module.
725 * This will generate modules.dep.bb as a side effect. */
726 process_module((char*)"/", NULL);
727 return !wrote_dep_bb_ok;
728 }
729
Denis Vlasenko671691c2008-07-04 10:25:44 +0000730 /* insmod, modprobe, rmmod require at least one argument */
731 opt_complementary = "-1";
732 /* only -q (quiet) and -r (rmmod),
733 * the rest are accepted and ignored (compat) */
734 getopt32(argv, "qrfsvw");
735 argv += optind;
736
737 /* are we rmmod? -> simulate modprobe -r */
738 if ('r' == applet0) {
739 option_mask32 |= OPT_r;
740 }
741
Denis Vlasenko0e2c93f2008-07-10 14:16:11 +0000742 /* Goto $VERSION directory */
Denis Vlasenko671691c2008-07-04 10:25:44 +0000743 xchdir(uts.release);
744
745#if ENABLE_FEATURE_MODPROBE_SMALL_OPTIONS_ON_CMDLINE
746 /* If not rmmod, parse possible module options given on command line.
747 * insmod/modprobe takes one module name, the rest are parameters. */
748 options = NULL;
749 if ('r' != applet0) {
750 char **arg = argv;
751 while (*++arg) {
752 /* Enclose options in quotes */
753 char *s = options;
754 options = xasprintf("%s \"%s\"", s ? s : "", *arg);
755 free(s);
756 *arg = NULL;
757 }
758 }
759#else
760 if ('r' != applet0)
761 argv[1] = NULL;
762#endif
763
Denis Vlasenko7f950a92008-07-10 14:14:45 +0000764 /* Try to load modprobe.dep.bb */
Denis Vlasenko78436992008-07-10 14:14:20 +0000765 load_dep_bb();
766
Denis Vlasenko671691c2008-07-04 10:25:44 +0000767 /* Load/remove modules.
768 * Only rmmod loops here, insmod/modprobe has only argv[0] */
769 do {
770 process_module(*argv++, options);
771 } while (*argv);
772
773 if (ENABLE_FEATURE_CLEAN_UP) {
774 USE_FEATURE_MODPROBE_SMALL_OPTIONS_ON_CMDLINE(free(options);)
775 }
776 return EXIT_SUCCESS;
777}