Denis Vlasenko | 671691c | 2008-07-04 10:25:44 +0000 | [diff] [blame] | 1 | /* vi: set sw=4 ts=4: */ |
| 2 | /* |
| 3 | * simplified modprobe |
| 4 | * |
| 5 | * Copyright (c) 2008 Vladimir Dronnikov |
Bernhard Reutner-Fischer | 6c4dade | 2008-09-25 12:13:34 +0000 | [diff] [blame] | 6 | * Copyright (c) 2008 Bernhard Reutner-Fischer (initial depmod code) |
Denis Vlasenko | 671691c | 2008-07-04 10:25:44 +0000 | [diff] [blame] | 7 | * |
Denys Vlasenko | 0ef64bd | 2010-08-16 20:14:46 +0200 | [diff] [blame] | 8 | * Licensed under GPLv2, see file LICENSE in this source tree. |
Denis Vlasenko | 671691c | 2008-07-04 10:25:44 +0000 | [diff] [blame] | 9 | */ |
| 10 | |
Denys Vlasenko | b9f2d9f | 2011-01-18 13:58:01 +0100 | [diff] [blame] | 11 | //applet:IF_MODPROBE_SMALL(APPLET(modprobe, BB_DIR_SBIN, BB_SUID_DROP)) |
Denys Vlasenko | 5fd3ddf | 2014-04-19 15:04:39 +0200 | [diff] [blame] | 12 | //applet:IF_MODPROBE_SMALL(APPLET_ODDNAME(depmod, modprobe, BB_DIR_SBIN, BB_SUID_DROP, depmod)) |
| 13 | //applet:IF_MODPROBE_SMALL(APPLET_ODDNAME(insmod, modprobe, BB_DIR_SBIN, BB_SUID_DROP, insmod)) |
| 14 | //applet:IF_MODPROBE_SMALL(APPLET_ODDNAME(lsmod, modprobe, BB_DIR_SBIN, BB_SUID_DROP, lsmod)) |
| 15 | //applet:IF_MODPROBE_SMALL(APPLET_ODDNAME(rmmod, modprobe, BB_DIR_SBIN, BB_SUID_DROP, rmmod)) |
Denys Vlasenko | c15613c | 2010-10-15 11:29:02 +0200 | [diff] [blame] | 16 | |
Denis Vlasenko | 671691c | 2008-07-04 10:25:44 +0000 | [diff] [blame] | 17 | #include "libbb.h" |
Denys Vlasenko | 043b1e5 | 2009-09-06 12:47:55 +0200 | [diff] [blame] | 18 | /* After libbb.h, since it needs sys/types.h on some systems */ |
Denis Vlasenko | 671691c | 2008-07-04 10:25:44 +0000 | [diff] [blame] | 19 | #include <sys/utsname.h> /* uname() */ |
| 20 | #include <fnmatch.h> |
| 21 | |
Denis Vlasenko | 24a131e | 2008-07-09 15:30:57 +0000 | [diff] [blame] | 22 | extern int init_module(void *module, unsigned long len, const char *options); |
| 23 | extern int delete_module(const char *module, unsigned flags); |
| 24 | extern int query_module(const char *name, int which, void *buf, size_t bufsize, size_t *ret); |
Denys Vlasenko | 07e5555 | 2014-04-21 16:59:36 +0200 | [diff] [blame] | 25 | /* linux/include/linux/module.h has limit of 64 chars on module names */ |
| 26 | #undef MODULE_NAME_LEN |
| 27 | #define MODULE_NAME_LEN 64 |
Denis Vlasenko | 24a131e | 2008-07-09 15:30:57 +0000 | [diff] [blame] | 28 | |
| 29 | |
Denys Vlasenko | 5b3151c | 2010-09-25 14:37:06 +0200 | [diff] [blame] | 30 | #if 1 |
| 31 | # define dbg1_error_msg(...) ((void)0) |
| 32 | # define dbg2_error_msg(...) ((void)0) |
| 33 | #else |
| 34 | # define dbg1_error_msg(...) bb_error_msg(__VA_ARGS__) |
| 35 | # define dbg2_error_msg(...) bb_error_msg(__VA_ARGS__) |
| 36 | #endif |
Denis Vlasenko | 671691c | 2008-07-04 10:25:44 +0000 | [diff] [blame] | 37 | |
Denis Vlasenko | 24a131e | 2008-07-09 15:30:57 +0000 | [diff] [blame] | 38 | #define DEPFILE_BB CONFIG_DEFAULT_DEPMOD_FILE".bb" |
Denis Vlasenko | 671691c | 2008-07-04 10:25:44 +0000 | [diff] [blame] | 39 | |
| 40 | enum { |
| 41 | OPT_q = (1 << 0), /* be quiet */ |
| 42 | OPT_r = (1 << 1), /* module removal instead of loading */ |
| 43 | }; |
| 44 | |
| 45 | typedef struct module_info { |
| 46 | char *pathname; |
Denis Vlasenko | 7843699 | 2008-07-10 14:14:20 +0000 | [diff] [blame] | 47 | char *aliases; |
| 48 | char *deps; |
Denis Vlasenko | 671691c | 2008-07-04 10:25:44 +0000 | [diff] [blame] | 49 | } module_info; |
| 50 | |
| 51 | /* |
| 52 | * GLOBALS |
| 53 | */ |
| 54 | struct globals { |
| 55 | module_info *modinfo; |
| 56 | char *module_load_options; |
Denis Vlasenko | 7f950a9 | 2008-07-10 14:14:45 +0000 | [diff] [blame] | 57 | smallint dep_bb_seen; |
Denis Vlasenko | 0e2c93f | 2008-07-10 14:16:11 +0000 | [diff] [blame] | 58 | smallint wrote_dep_bb_ok; |
Denys Vlasenko | 0c6914e | 2009-09-07 02:38:26 +0200 | [diff] [blame] | 59 | unsigned module_count; |
Denis Vlasenko | 671691c | 2008-07-04 10:25:44 +0000 | [diff] [blame] | 60 | int module_found_idx; |
Denys Vlasenko | 0c6914e | 2009-09-07 02:38:26 +0200 | [diff] [blame] | 61 | unsigned stringbuf_idx; |
| 62 | unsigned stringbuf_size; |
| 63 | char *stringbuf; /* some modules have lots of stuff */ |
Denis Vlasenko | 671691c | 2008-07-04 10:25:44 +0000 | [diff] [blame] | 64 | /* for example, drivers/media/video/saa7134/saa7134.ko */ |
Denys Vlasenko | 0c6914e | 2009-09-07 02:38:26 +0200 | [diff] [blame] | 65 | /* therefore having a fixed biggish buffer is not wise */ |
Denis Vlasenko | 671691c | 2008-07-04 10:25:44 +0000 | [diff] [blame] | 66 | }; |
| 67 | #define G (*ptr_to_globals) |
| 68 | #define modinfo (G.modinfo ) |
Denis Vlasenko | 7f950a9 | 2008-07-10 14:14:45 +0000 | [diff] [blame] | 69 | #define dep_bb_seen (G.dep_bb_seen ) |
Denis Vlasenko | 0e2c93f | 2008-07-10 14:16:11 +0000 | [diff] [blame] | 70 | #define wrote_dep_bb_ok (G.wrote_dep_bb_ok ) |
Denis Vlasenko | 671691c | 2008-07-04 10:25:44 +0000 | [diff] [blame] | 71 | #define module_count (G.module_count ) |
| 72 | #define module_found_idx (G.module_found_idx ) |
| 73 | #define module_load_options (G.module_load_options) |
| 74 | #define stringbuf_idx (G.stringbuf_idx ) |
Denys Vlasenko | 0c6914e | 2009-09-07 02:38:26 +0200 | [diff] [blame] | 75 | #define stringbuf_size (G.stringbuf_size ) |
Denis Vlasenko | 671691c | 2008-07-04 10:25:44 +0000 | [diff] [blame] | 76 | #define stringbuf (G.stringbuf ) |
| 77 | #define INIT_G() do { \ |
| 78 | SET_PTR_TO_GLOBALS(xzalloc(sizeof(G))); \ |
| 79 | } while (0) |
| 80 | |
Denys Vlasenko | 0c6914e | 2009-09-07 02:38:26 +0200 | [diff] [blame] | 81 | static void append(const char *s) |
| 82 | { |
| 83 | unsigned len = strlen(s); |
| 84 | if (stringbuf_idx + len + 15 > stringbuf_size) { |
| 85 | stringbuf_size = stringbuf_idx + len + 127; |
| 86 | dbg2_error_msg("grow stringbuf to %u", stringbuf_size); |
| 87 | stringbuf = xrealloc(stringbuf, stringbuf_size); |
| 88 | } |
| 89 | memcpy(stringbuf + stringbuf_idx, s, len); |
| 90 | stringbuf_idx += len; |
| 91 | } |
Denis Vlasenko | 671691c | 2008-07-04 10:25:44 +0000 | [diff] [blame] | 92 | |
| 93 | static void appendc(char c) |
| 94 | { |
Denys Vlasenko | 0c6914e | 2009-09-07 02:38:26 +0200 | [diff] [blame] | 95 | /* We appendc() only after append(), + 15 trick in append() |
| 96 | * makes it unnecessary to check for overflow here */ |
| 97 | stringbuf[stringbuf_idx++] = c; |
Denis Vlasenko | 671691c | 2008-07-04 10:25:44 +0000 | [diff] [blame] | 98 | } |
| 99 | |
Denis Vlasenko | 24a131e | 2008-07-09 15:30:57 +0000 | [diff] [blame] | 100 | static void bksp(void) |
| 101 | { |
| 102 | if (stringbuf_idx) |
| 103 | stringbuf_idx--; |
| 104 | } |
| 105 | |
Denis Vlasenko | 671691c | 2008-07-04 10:25:44 +0000 | [diff] [blame] | 106 | static void reset_stringbuf(void) |
| 107 | { |
| 108 | stringbuf_idx = 0; |
| 109 | } |
| 110 | |
| 111 | static char* copy_stringbuf(void) |
| 112 | { |
Denys Vlasenko | 0c6914e | 2009-09-07 02:38:26 +0200 | [diff] [blame] | 113 | char *copy = xzalloc(stringbuf_idx + 1); /* terminating NUL */ |
Denis Vlasenko | 671691c | 2008-07-04 10:25:44 +0000 | [diff] [blame] | 114 | return memcpy(copy, stringbuf, stringbuf_idx); |
| 115 | } |
| 116 | |
| 117 | static char* find_keyword(char *ptr, size_t len, const char *word) |
| 118 | { |
| 119 | int wlen; |
| 120 | |
Denis Vlasenko | e9ad84d | 2008-08-05 13:10:34 +0000 | [diff] [blame] | 121 | if (!ptr) /* happens if xmalloc_open_zipped_read_close cannot read it */ |
Denis Vlasenko | 671691c | 2008-07-04 10:25:44 +0000 | [diff] [blame] | 122 | return NULL; |
| 123 | |
| 124 | wlen = strlen(word); |
| 125 | len -= wlen - 1; |
| 126 | while ((ssize_t)len > 0) { |
| 127 | char *old = ptr; |
| 128 | /* search for the first char in word */ |
| 129 | ptr = memchr(ptr, *word, len); |
| 130 | if (ptr == NULL) /* no occurance left, done */ |
| 131 | break; |
| 132 | if (strncmp(ptr, word, wlen) == 0) |
| 133 | return ptr + wlen; /* found, return ptr past it */ |
| 134 | ++ptr; |
| 135 | len -= (ptr - old); |
| 136 | } |
| 137 | return NULL; |
| 138 | } |
| 139 | |
| 140 | static void replace(char *s, char what, char with) |
| 141 | { |
| 142 | while (*s) { |
| 143 | if (what == *s) |
| 144 | *s = with; |
| 145 | ++s; |
| 146 | } |
| 147 | } |
| 148 | |
Denys Vlasenko | 07e5555 | 2014-04-21 16:59:36 +0200 | [diff] [blame] | 149 | static char *filename2modname(const char *filename, char *modname) |
| 150 | { |
| 151 | int i; |
Denys Vlasenko | 7885452 | 2015-01-01 19:02:40 +0100 | [diff] [blame] | 152 | const char *from; |
Denys Vlasenko | 07e5555 | 2014-04-21 16:59:36 +0200 | [diff] [blame] | 153 | |
Denys Vlasenko | 7885452 | 2015-01-01 19:02:40 +0100 | [diff] [blame] | 154 | // Disabled since otherwise "modprobe dir/name" would work |
| 155 | // as if it is "modprobe name". It is unclear why |
| 156 | // 'basenamization' was here in the first place. |
| 157 | //from = bb_get_last_path_component_nostrip(filename); |
| 158 | from = filename; |
Denys Vlasenko | 07e5555 | 2014-04-21 16:59:36 +0200 | [diff] [blame] | 159 | for (i = 0; i < (MODULE_NAME_LEN-1) && from[i] != '\0' && from[i] != '.'; i++) |
| 160 | modname[i] = (from[i] == '-') ? '_' : from[i]; |
| 161 | modname[i] = '\0'; |
| 162 | |
| 163 | return modname; |
| 164 | } |
| 165 | |
Denys Vlasenko | 1b67153 | 2015-01-11 17:46:56 +0100 | [diff] [blame^] | 166 | static int pathname_matches_modname(const char *pathname, const char *modname) |
| 167 | { |
| 168 | int r; |
| 169 | char name[MODULE_NAME_LEN]; |
| 170 | filename2modname(bb_get_last_path_component_nostrip(pathname), name); |
| 171 | r = (strcmp(name, modname) == 0); |
| 172 | return r; |
| 173 | } |
| 174 | |
Denis Vlasenko | 24a131e | 2008-07-09 15:30:57 +0000 | [diff] [blame] | 175 | /* Take "word word", return malloced "word",NUL,"word",NUL,NUL */ |
| 176 | static char* str_2_list(const char *str) |
| 177 | { |
| 178 | int len = strlen(str) + 1; |
| 179 | char *dst = xmalloc(len + 1); |
| 180 | |
| 181 | dst[len] = '\0'; |
| 182 | memcpy(dst, str, len); |
| 183 | //TODO: protect against 2+ spaces: "word word" |
| 184 | replace(dst, ' ', '\0'); |
| 185 | return dst; |
| 186 | } |
| 187 | |
Denis Vlasenko | 671691c | 2008-07-04 10:25:44 +0000 | [diff] [blame] | 188 | /* We use error numbers in a loose translation... */ |
| 189 | static const char *moderror(int err) |
| 190 | { |
| 191 | switch (err) { |
| 192 | case ENOEXEC: |
| 193 | return "invalid module format"; |
| 194 | case ENOENT: |
| 195 | return "unknown symbol in module or invalid parameter"; |
| 196 | case ESRCH: |
| 197 | return "module has wrong symbol version"; |
| 198 | case EINVAL: /* "invalid parameter" */ |
| 199 | return "unknown symbol in module or invalid parameter" |
| 200 | + sizeof("unknown symbol in module or"); |
| 201 | default: |
| 202 | return strerror(err); |
| 203 | } |
| 204 | } |
| 205 | |
| 206 | static int load_module(const char *fname, const char *options) |
| 207 | { |
| 208 | #if 1 |
| 209 | int r; |
| 210 | size_t len = MAXINT(ssize_t); |
| 211 | char *module_image; |
| 212 | dbg1_error_msg("load_module('%s','%s')", fname, options); |
| 213 | |
Denis Vlasenko | e9ad84d | 2008-08-05 13:10:34 +0000 | [diff] [blame] | 214 | module_image = xmalloc_open_zipped_read_close(fname, &len); |
Denis Vlasenko | 671691c | 2008-07-04 10:25:44 +0000 | [diff] [blame] | 215 | r = (!module_image || init_module(module_image, len, options ? options : "") != 0); |
| 216 | free(module_image); |
| 217 | dbg1_error_msg("load_module:%d", r); |
| 218 | return r; /* 0 = success */ |
| 219 | #else |
| 220 | /* For testing */ |
| 221 | dbg1_error_msg("load_module('%s','%s')", fname, options); |
| 222 | return 1; |
| 223 | #endif |
| 224 | } |
| 225 | |
Denis Vlasenko | 7843699 | 2008-07-10 14:14:20 +0000 | [diff] [blame] | 226 | static void parse_module(module_info *info, const char *pathname) |
Denis Vlasenko | 671691c | 2008-07-04 10:25:44 +0000 | [diff] [blame] | 227 | { |
| 228 | char *module_image; |
| 229 | char *ptr; |
| 230 | size_t len; |
| 231 | size_t pos; |
Denis Vlasenko | 24a131e | 2008-07-09 15:30:57 +0000 | [diff] [blame] | 232 | dbg1_error_msg("parse_module('%s')", pathname); |
Denis Vlasenko | 671691c | 2008-07-04 10:25:44 +0000 | [diff] [blame] | 233 | |
| 234 | /* Read (possibly compressed) module */ |
| 235 | len = 64 * 1024 * 1024; /* 64 Mb at most */ |
Denis Vlasenko | e9ad84d | 2008-08-05 13:10:34 +0000 | [diff] [blame] | 236 | module_image = xmalloc_open_zipped_read_close(pathname, &len); |
Denys Vlasenko | 094cc51 | 2011-01-17 14:58:27 +0100 | [diff] [blame] | 237 | /* module_image == NULL is ok here, find_keyword handles it */ |
Denis Vlasenko | 7843699 | 2008-07-10 14:14:20 +0000 | [diff] [blame] | 238 | //TODO: optimize redundant module body reads |
Denis Vlasenko | 671691c | 2008-07-04 10:25:44 +0000 | [diff] [blame] | 239 | |
Denis Vlasenko | 7843699 | 2008-07-10 14:14:20 +0000 | [diff] [blame] | 240 | /* "alias1 symbol:sym1 alias2 symbol:sym2" */ |
Denis Vlasenko | 671691c | 2008-07-04 10:25:44 +0000 | [diff] [blame] | 241 | reset_stringbuf(); |
Denis Vlasenko | 671691c | 2008-07-04 10:25:44 +0000 | [diff] [blame] | 242 | pos = 0; |
| 243 | while (1) { |
Denys Vlasenko | 6116cb2 | 2014-04-19 16:17:27 +0200 | [diff] [blame] | 244 | unsigned start = stringbuf_idx; |
Denis Vlasenko | 671691c | 2008-07-04 10:25:44 +0000 | [diff] [blame] | 245 | ptr = find_keyword(module_image + pos, len - pos, "alias="); |
| 246 | if (!ptr) { |
| 247 | ptr = find_keyword(module_image + pos, len - pos, "__ksymtab_"); |
| 248 | if (!ptr) |
| 249 | break; |
| 250 | /* DOCME: __ksymtab_gpl and __ksymtab_strings occur |
| 251 | * in many modules. What do they mean? */ |
Denis Vlasenko | 0e2c93f | 2008-07-10 14:16:11 +0000 | [diff] [blame] | 252 | if (strcmp(ptr, "gpl") == 0 || strcmp(ptr, "strings") == 0) |
| 253 | goto skip; |
| 254 | dbg2_error_msg("alias:'symbol:%s'", ptr); |
| 255 | append("symbol:"); |
Denis Vlasenko | 671691c | 2008-07-04 10:25:44 +0000 | [diff] [blame] | 256 | } else { |
Denis Vlasenko | 24a131e | 2008-07-09 15:30:57 +0000 | [diff] [blame] | 257 | dbg2_error_msg("alias:'%s'", ptr); |
Denis Vlasenko | 671691c | 2008-07-04 10:25:44 +0000 | [diff] [blame] | 258 | } |
| 259 | append(ptr); |
| 260 | appendc(' '); |
Denys Vlasenko | 6116cb2 | 2014-04-19 16:17:27 +0200 | [diff] [blame] | 261 | /* |
| 262 | * Don't add redundant aliases, such as: |
| 263 | * libcrc32c.ko symbol:crc32c symbol:crc32c |
| 264 | */ |
| 265 | if (start) { /* "if we aren't the first alias" */ |
| 266 | char *found, *last; |
| 267 | stringbuf[stringbuf_idx] = '\0'; |
| 268 | last = stringbuf + start; |
| 269 | /* |
| 270 | * String at last-1 is " symbol:crc32c " |
| 271 | * (with both leading and trailing spaces). |
| 272 | */ |
| 273 | if (strncmp(stringbuf, last, stringbuf_idx - start) == 0) |
| 274 | /* First alias matches us */ |
| 275 | found = stringbuf; |
| 276 | else |
| 277 | /* Does any other alias match? */ |
| 278 | found = strstr(stringbuf, last-1); |
| 279 | if (found < last-1) { |
| 280 | /* There is absolutely the same string before us */ |
| 281 | dbg2_error_msg("redundant:'%s'", last); |
| 282 | stringbuf_idx = start; |
| 283 | goto skip; |
| 284 | } |
| 285 | } |
Denis Vlasenko | 0e2c93f | 2008-07-10 14:16:11 +0000 | [diff] [blame] | 286 | skip: |
Denis Vlasenko | 671691c | 2008-07-04 10:25:44 +0000 | [diff] [blame] | 287 | pos = (ptr - module_image); |
| 288 | } |
Denis Vlasenko | 24a131e | 2008-07-09 15:30:57 +0000 | [diff] [blame] | 289 | bksp(); /* remove last ' ' */ |
Denis Vlasenko | 7843699 | 2008-07-10 14:14:20 +0000 | [diff] [blame] | 290 | info->aliases = copy_stringbuf(); |
Denys Vlasenko | f9c814b | 2009-09-07 02:37:19 +0200 | [diff] [blame] | 291 | replace(info->aliases, '-', '_'); |
Denis Vlasenko | 671691c | 2008-07-04 10:25:44 +0000 | [diff] [blame] | 292 | |
Denis Vlasenko | 7843699 | 2008-07-10 14:14:20 +0000 | [diff] [blame] | 293 | /* "dependency1 depandency2" */ |
| 294 | reset_stringbuf(); |
Denis Vlasenko | 671691c | 2008-07-04 10:25:44 +0000 | [diff] [blame] | 295 | ptr = find_keyword(module_image, len, "depends="); |
| 296 | if (ptr && *ptr) { |
| 297 | replace(ptr, ',', ' '); |
| 298 | replace(ptr, '-', '_'); |
| 299 | dbg2_error_msg("dep:'%s'", ptr); |
| 300 | append(ptr); |
| 301 | } |
Denis Vlasenko | 7843699 | 2008-07-10 14:14:20 +0000 | [diff] [blame] | 302 | info->deps = copy_stringbuf(); |
Denis Vlasenko | 671691c | 2008-07-04 10:25:44 +0000 | [diff] [blame] | 303 | |
| 304 | free(module_image); |
Denis Vlasenko | 671691c | 2008-07-04 10:25:44 +0000 | [diff] [blame] | 305 | } |
| 306 | |
Denis Vlasenko | 671691c | 2008-07-04 10:25:44 +0000 | [diff] [blame] | 307 | static FAST_FUNC int fileAction(const char *pathname, |
Denis Vlasenko | a60f84e | 2008-07-05 09:18:54 +0000 | [diff] [blame] | 308 | struct stat *sb UNUSED_PARAM, |
Denis Vlasenko | 24a131e | 2008-07-09 15:30:57 +0000 | [diff] [blame] | 309 | void *modname_to_match, |
Denis Vlasenko | a60f84e | 2008-07-05 09:18:54 +0000 | [diff] [blame] | 310 | int depth UNUSED_PARAM) |
Denis Vlasenko | 671691c | 2008-07-04 10:25:44 +0000 | [diff] [blame] | 311 | { |
| 312 | int cur; |
Denis Vlasenko | 671691c | 2008-07-04 10:25:44 +0000 | [diff] [blame] | 313 | const char *fname; |
| 314 | |
| 315 | pathname += 2; /* skip "./" */ |
| 316 | fname = bb_get_last_path_component_nostrip(pathname); |
| 317 | if (!strrstr(fname, ".ko")) { |
| 318 | dbg1_error_msg("'%s' is not a module", pathname); |
| 319 | return TRUE; /* not a module, continue search */ |
| 320 | } |
| 321 | |
| 322 | cur = module_count++; |
Denis Vlasenko | deeed59 | 2008-07-08 05:14:36 +0000 | [diff] [blame] | 323 | modinfo = xrealloc_vector(modinfo, 12, cur); |
Denis Vlasenko | 671691c | 2008-07-04 10:25:44 +0000 | [diff] [blame] | 324 | modinfo[cur].pathname = xstrdup(pathname); |
Denis Vlasenko | 2784228 | 2008-08-04 13:20:36 +0000 | [diff] [blame] | 325 | /*modinfo[cur].aliases = NULL; - xrealloc_vector did it */ |
| 326 | /*modinfo[cur+1].pathname = NULL;*/ |
Denis Vlasenko | 671691c | 2008-07-04 10:25:44 +0000 | [diff] [blame] | 327 | |
Denis Vlasenko | 24a131e | 2008-07-09 15:30:57 +0000 | [diff] [blame] | 328 | if (!pathname_matches_modname(fname, modname_to_match)) { |
Denis Vlasenko | 671691c | 2008-07-04 10:25:44 +0000 | [diff] [blame] | 329 | dbg1_error_msg("'%s' module name doesn't match", pathname); |
| 330 | return TRUE; /* module name doesn't match, continue search */ |
| 331 | } |
| 332 | |
| 333 | dbg1_error_msg("'%s' module name matches", pathname); |
| 334 | module_found_idx = cur; |
Denis Vlasenko | 7843699 | 2008-07-10 14:14:20 +0000 | [diff] [blame] | 335 | parse_module(&modinfo[cur], pathname); |
Denis Vlasenko | 671691c | 2008-07-04 10:25:44 +0000 | [diff] [blame] | 336 | |
| 337 | if (!(option_mask32 & OPT_r)) { |
| 338 | if (load_module(pathname, module_load_options) == 0) { |
| 339 | /* Load was successful, there is nothing else to do. |
| 340 | * This can happen ONLY for "top-level" module load, |
| 341 | * not a dep, because deps dont do dirscan. */ |
| 342 | exit(EXIT_SUCCESS); |
Denis Vlasenko | 671691c | 2008-07-04 10:25:44 +0000 | [diff] [blame] | 343 | } |
| 344 | } |
| 345 | |
Denis Vlasenko | 671691c | 2008-07-04 10:25:44 +0000 | [diff] [blame] | 346 | return TRUE; |
| 347 | } |
| 348 | |
Denis Vlasenko | 7f950a9 | 2008-07-10 14:14:45 +0000 | [diff] [blame] | 349 | static int load_dep_bb(void) |
Denis Vlasenko | 7843699 | 2008-07-10 14:14:20 +0000 | [diff] [blame] | 350 | { |
| 351 | char *line; |
Denis Vlasenko | 5415c85 | 2008-07-21 23:05:26 +0000 | [diff] [blame] | 352 | FILE *fp = fopen_for_read(DEPFILE_BB); |
Denis Vlasenko | 7843699 | 2008-07-10 14:14:20 +0000 | [diff] [blame] | 353 | |
| 354 | if (!fp) |
Denis Vlasenko | 7f950a9 | 2008-07-10 14:14:45 +0000 | [diff] [blame] | 355 | return 0; |
| 356 | |
| 357 | dep_bb_seen = 1; |
| 358 | dbg1_error_msg("loading "DEPFILE_BB); |
| 359 | |
| 360 | /* Why? There is a rare scenario: we did not find modprobe.dep.bb, |
| 361 | * we scanned the dir and found no module by name, then we search |
| 362 | * for alias (full scan), and we decided to generate modprobe.dep.bb. |
| 363 | * But we see modprobe.dep.bb.new! Other modprobe is at work! |
| 364 | * We wait and other modprobe renames it to modprobe.dep.bb. |
| 365 | * Now we can use it. |
| 366 | * But we already have modinfo[] filled, and "module_count = 0" |
| 367 | * makes us start anew. Yes, we leak modinfo[].xxx pointers - |
| 368 | * there is not much of data there anyway. */ |
| 369 | module_count = 0; |
| 370 | memset(&modinfo[0], 0, sizeof(modinfo[0])); |
Denis Vlasenko | 7843699 | 2008-07-10 14:14:20 +0000 | [diff] [blame] | 371 | |
| 372 | while ((line = xmalloc_fgetline(fp)) != NULL) { |
| 373 | char* space; |
Denys Vlasenko | 90a9904 | 2009-09-06 02:36:23 +0200 | [diff] [blame] | 374 | char* linebuf; |
Denis Vlasenko | 7843699 | 2008-07-10 14:14:20 +0000 | [diff] [blame] | 375 | int cur; |
| 376 | |
| 377 | if (!line[0]) { |
| 378 | free(line); |
| 379 | continue; |
| 380 | } |
| 381 | space = strchrnul(line, ' '); |
| 382 | cur = module_count++; |
| 383 | modinfo = xrealloc_vector(modinfo, 12, cur); |
Denis Vlasenko | 2784228 | 2008-08-04 13:20:36 +0000 | [diff] [blame] | 384 | /*modinfo[cur+1].pathname = NULL; - xrealloc_vector did it */ |
Denis Vlasenko | 7843699 | 2008-07-10 14:14:20 +0000 | [diff] [blame] | 385 | modinfo[cur].pathname = line; /* we take ownership of malloced block here */ |
| 386 | if (*space) |
| 387 | *space++ = '\0'; |
| 388 | modinfo[cur].aliases = space; |
Denys Vlasenko | 90a9904 | 2009-09-06 02:36:23 +0200 | [diff] [blame] | 389 | linebuf = xmalloc_fgetline(fp); |
| 390 | modinfo[cur].deps = linebuf ? linebuf : xzalloc(1); |
Denis Vlasenko | 7843699 | 2008-07-10 14:14:20 +0000 | [diff] [blame] | 391 | if (modinfo[cur].deps[0]) { |
| 392 | /* deps are not "", so next line must be empty */ |
| 393 | line = xmalloc_fgetline(fp); |
| 394 | /* Refuse to work with damaged config file */ |
| 395 | if (line && line[0]) |
| 396 | bb_error_msg_and_die("error in %s at '%s'", DEPFILE_BB, line); |
| 397 | free(line); |
| 398 | } |
| 399 | } |
Denis Vlasenko | 7f950a9 | 2008-07-10 14:14:45 +0000 | [diff] [blame] | 400 | return 1; |
| 401 | } |
| 402 | |
| 403 | static int start_dep_bb_writeout(void) |
| 404 | { |
| 405 | int fd; |
| 406 | |
Denis Vlasenko | 0e2c93f | 2008-07-10 14:16:11 +0000 | [diff] [blame] | 407 | /* depmod -n: write result to stdout */ |
| 408 | if (applet_name[0] == 'd' && (option_mask32 & 1)) |
| 409 | return STDOUT_FILENO; |
| 410 | |
Denis Vlasenko | 7f950a9 | 2008-07-10 14:14:45 +0000 | [diff] [blame] | 411 | fd = open(DEPFILE_BB".new", O_WRONLY | O_CREAT | O_TRUNC | O_EXCL, 0644); |
| 412 | if (fd < 0) { |
| 413 | if (errno == EEXIST) { |
| 414 | int count = 5 * 20; |
| 415 | dbg1_error_msg(DEPFILE_BB".new exists, waiting for "DEPFILE_BB); |
| 416 | while (1) { |
| 417 | usleep(1000*1000 / 20); |
| 418 | if (load_dep_bb()) { |
| 419 | dbg1_error_msg(DEPFILE_BB" appeared"); |
| 420 | return -2; /* magic number */ |
| 421 | } |
| 422 | if (!--count) |
| 423 | break; |
| 424 | } |
| 425 | bb_error_msg("deleting stale %s", DEPFILE_BB".new"); |
| 426 | fd = open_or_warn(DEPFILE_BB".new", O_WRONLY | O_CREAT | O_TRUNC); |
| 427 | } |
| 428 | } |
| 429 | dbg1_error_msg("opened "DEPFILE_BB".new:%d", fd); |
| 430 | return fd; |
| 431 | } |
| 432 | |
| 433 | static void write_out_dep_bb(int fd) |
| 434 | { |
| 435 | int i; |
| 436 | FILE *fp; |
| 437 | |
| 438 | /* We want good error reporting. fdprintf is not good enough. */ |
Denys Vlasenko | a7ccdee | 2009-11-15 23:28:11 +0100 | [diff] [blame] | 439 | fp = xfdopen_for_write(fd); |
Denis Vlasenko | 7f950a9 | 2008-07-10 14:14:45 +0000 | [diff] [blame] | 440 | i = 0; |
| 441 | while (modinfo[i].pathname) { |
| 442 | fprintf(fp, "%s%s%s\n" "%s%s\n", |
| 443 | modinfo[i].pathname, modinfo[i].aliases[0] ? " " : "", modinfo[i].aliases, |
| 444 | modinfo[i].deps, modinfo[i].deps[0] ? "\n" : ""); |
| 445 | i++; |
| 446 | } |
| 447 | /* Badly formatted depfile is a no-no. Be paranoid. */ |
| 448 | errno = 0; |
Denis Vlasenko | 0e2c93f | 2008-07-10 14:16:11 +0000 | [diff] [blame] | 449 | if (ferror(fp) | fclose(fp)) /* | instead of || is intended */ |
Denis Vlasenko | 7f950a9 | 2008-07-10 14:14:45 +0000 | [diff] [blame] | 450 | goto err; |
Denis Vlasenko | 0e2c93f | 2008-07-10 14:16:11 +0000 | [diff] [blame] | 451 | |
| 452 | if (fd == STDOUT_FILENO) /* it was depmod -n */ |
| 453 | goto ok; |
| 454 | |
Denis Vlasenko | 7f950a9 | 2008-07-10 14:14:45 +0000 | [diff] [blame] | 455 | if (rename(DEPFILE_BB".new", DEPFILE_BB) != 0) { |
| 456 | err: |
Denys Vlasenko | 651a269 | 2010-03-23 16:25:17 +0100 | [diff] [blame] | 457 | bb_perror_msg("can't create '%s'", DEPFILE_BB); |
Denis Vlasenko | 7f950a9 | 2008-07-10 14:14:45 +0000 | [diff] [blame] | 458 | unlink(DEPFILE_BB".new"); |
| 459 | } else { |
Denis Vlasenko | 0e2c93f | 2008-07-10 14:16:11 +0000 | [diff] [blame] | 460 | ok: |
| 461 | wrote_dep_bb_ok = 1; |
Denis Vlasenko | 7f950a9 | 2008-07-10 14:14:45 +0000 | [diff] [blame] | 462 | dbg1_error_msg("created "DEPFILE_BB); |
| 463 | } |
Denis Vlasenko | 7843699 | 2008-07-10 14:14:20 +0000 | [diff] [blame] | 464 | } |
| 465 | |
Denys Vlasenko | 07e5555 | 2014-04-21 16:59:36 +0200 | [diff] [blame] | 466 | static module_info** find_alias(const char *alias) |
Denis Vlasenko | 671691c | 2008-07-04 10:25:44 +0000 | [diff] [blame] | 467 | { |
| 468 | int i; |
Denis Vlasenko | 7f950a9 | 2008-07-10 14:14:45 +0000 | [diff] [blame] | 469 | int dep_bb_fd; |
Denys Vlasenko | 07e5555 | 2014-04-21 16:59:36 +0200 | [diff] [blame] | 470 | int infoidx; |
| 471 | module_info **infovec; |
Denis Vlasenko | 671691c | 2008-07-04 10:25:44 +0000 | [diff] [blame] | 472 | dbg1_error_msg("find_alias('%s')", alias); |
| 473 | |
Denis Vlasenko | 7f950a9 | 2008-07-10 14:14:45 +0000 | [diff] [blame] | 474 | try_again: |
Denis Vlasenko | 671691c | 2008-07-04 10:25:44 +0000 | [diff] [blame] | 475 | /* First try to find by name (cheaper) */ |
| 476 | i = 0; |
| 477 | while (modinfo[i].pathname) { |
Denis Vlasenko | 24a131e | 2008-07-09 15:30:57 +0000 | [diff] [blame] | 478 | if (pathname_matches_modname(modinfo[i].pathname, alias)) { |
Denis Vlasenko | 671691c | 2008-07-04 10:25:44 +0000 | [diff] [blame] | 479 | dbg1_error_msg("found '%s' in module '%s'", |
| 480 | alias, modinfo[i].pathname); |
Denis Vlasenko | 7843699 | 2008-07-10 14:14:20 +0000 | [diff] [blame] | 481 | if (!modinfo[i].aliases) { |
| 482 | parse_module(&modinfo[i], modinfo[i].pathname); |
| 483 | } |
Denys Vlasenko | 07e5555 | 2014-04-21 16:59:36 +0200 | [diff] [blame] | 484 | infovec = xzalloc(2 * sizeof(infovec[0])); |
| 485 | infovec[0] = &modinfo[i]; |
| 486 | return infovec; |
Denis Vlasenko | 671691c | 2008-07-04 10:25:44 +0000 | [diff] [blame] | 487 | } |
Denis Vlasenko | 671691c | 2008-07-04 10:25:44 +0000 | [diff] [blame] | 488 | i++; |
| 489 | } |
| 490 | |
Denis Vlasenko | 7f950a9 | 2008-07-10 14:14:45 +0000 | [diff] [blame] | 491 | /* Ok, we definitely have to scan module bodies. This is a good |
| 492 | * moment to generate modprobe.dep.bb, if it does not exist yet */ |
| 493 | dep_bb_fd = dep_bb_seen ? -1 : start_dep_bb_writeout(); |
| 494 | if (dep_bb_fd == -2) /* modprobe.dep.bb appeared? */ |
| 495 | goto try_again; |
| 496 | |
Denis Vlasenko | 671691c | 2008-07-04 10:25:44 +0000 | [diff] [blame] | 497 | /* Scan all module bodies, extract modinfo (it contains aliases) */ |
| 498 | i = 0; |
Denys Vlasenko | 07e5555 | 2014-04-21 16:59:36 +0200 | [diff] [blame] | 499 | infoidx = 0; |
| 500 | infovec = NULL; |
Denis Vlasenko | 671691c | 2008-07-04 10:25:44 +0000 | [diff] [blame] | 501 | while (modinfo[i].pathname) { |
| 502 | char *desc, *s; |
Denis Vlasenko | 7843699 | 2008-07-10 14:14:20 +0000 | [diff] [blame] | 503 | if (!modinfo[i].aliases) { |
| 504 | parse_module(&modinfo[i], modinfo[i].pathname); |
Denis Vlasenko | 671691c | 2008-07-04 10:25:44 +0000 | [diff] [blame] | 505 | } |
Denis Vlasenko | 24a131e | 2008-07-09 15:30:57 +0000 | [diff] [blame] | 506 | /* "alias1 symbol:sym1 alias2 symbol:sym2" */ |
Denis Vlasenko | 7843699 | 2008-07-10 14:14:20 +0000 | [diff] [blame] | 507 | desc = str_2_list(modinfo[i].aliases); |
Denis Vlasenko | 671691c | 2008-07-04 10:25:44 +0000 | [diff] [blame] | 508 | /* Does matching substring exist? */ |
Denis Vlasenko | 671691c | 2008-07-04 10:25:44 +0000 | [diff] [blame] | 509 | for (s = desc; *s; s += strlen(s) + 1) { |
Denis Vlasenko | 24a131e | 2008-07-09 15:30:57 +0000 | [diff] [blame] | 510 | /* Aliases in module bodies can be defined with |
Denis Vlasenko | 58f59a2 | 2008-07-06 11:52:23 +0000 | [diff] [blame] | 511 | * shell patterns. Example: |
| 512 | * "pci:v000010DEd000000D9sv*sd*bc*sc*i*". |
| 513 | * Plain strcmp() won't catch that */ |
| 514 | if (fnmatch(s, alias, 0) == 0) { |
Denis Vlasenko | 671691c | 2008-07-04 10:25:44 +0000 | [diff] [blame] | 515 | dbg1_error_msg("found alias '%s' in module '%s'", |
| 516 | alias, modinfo[i].pathname); |
Denys Vlasenko | 07e5555 | 2014-04-21 16:59:36 +0200 | [diff] [blame] | 517 | infovec = xrealloc_vector(infovec, 1, infoidx); |
| 518 | infovec[infoidx++] = &modinfo[i]; |
Denis Vlasenko | 7f950a9 | 2008-07-10 14:14:45 +0000 | [diff] [blame] | 519 | break; |
Denis Vlasenko | 671691c | 2008-07-04 10:25:44 +0000 | [diff] [blame] | 520 | } |
| 521 | } |
| 522 | free(desc); |
| 523 | i++; |
| 524 | } |
Denis Vlasenko | 7f950a9 | 2008-07-10 14:14:45 +0000 | [diff] [blame] | 525 | |
| 526 | /* Create module.dep.bb if needed */ |
| 527 | if (dep_bb_fd >= 0) { |
| 528 | write_out_dep_bb(dep_bb_fd); |
| 529 | } |
| 530 | |
Denys Vlasenko | 07e5555 | 2014-04-21 16:59:36 +0200 | [diff] [blame] | 531 | dbg1_error_msg("find_alias '%s' returns %d results", alias, infoidx); |
| 532 | return infovec; |
Denis Vlasenko | 671691c | 2008-07-04 10:25:44 +0000 | [diff] [blame] | 533 | } |
| 534 | |
| 535 | #if ENABLE_FEATURE_MODPROBE_SMALL_CHECK_ALREADY_LOADED |
Denis Vlasenko | 0f99d49 | 2008-07-24 23:38:04 +0000 | [diff] [blame] | 536 | // TODO: open only once, invent config_rewind() |
Denis Vlasenko | 671691c | 2008-07-04 10:25:44 +0000 | [diff] [blame] | 537 | static int already_loaded(const char *name) |
| 538 | { |
| 539 | int ret = 0; |
Denis Vlasenko | 0f99d49 | 2008-07-24 23:38:04 +0000 | [diff] [blame] | 540 | char *s; |
| 541 | parser_t *parser = config_open2("/proc/modules", xfopen_for_read); |
Denis Vlasenko | 084266e | 2008-07-26 23:08:31 +0000 | [diff] [blame] | 542 | while (config_read(parser, &s, 1, 1, "# \t", PARSE_NORMAL & ~PARSE_GREEDY)) { |
Denis Vlasenko | 0f99d49 | 2008-07-24 23:38:04 +0000 | [diff] [blame] | 543 | if (strcmp(s, name) == 0) { |
Denis Vlasenko | 671691c | 2008-07-04 10:25:44 +0000 | [diff] [blame] | 544 | ret = 1; |
| 545 | break; |
| 546 | } |
Denis Vlasenko | 671691c | 2008-07-04 10:25:44 +0000 | [diff] [blame] | 547 | } |
Denis Vlasenko | 0f99d49 | 2008-07-24 23:38:04 +0000 | [diff] [blame] | 548 | config_close(parser); |
Denis Vlasenko | 671691c | 2008-07-04 10:25:44 +0000 | [diff] [blame] | 549 | return ret; |
| 550 | } |
| 551 | #else |
| 552 | #define already_loaded(name) is_rmmod |
| 553 | #endif |
| 554 | |
| 555 | /* |
Denis Vlasenko | 0e2c93f | 2008-07-10 14:16:11 +0000 | [diff] [blame] | 556 | * Given modules definition and module name (or alias, or symbol) |
| 557 | * load/remove the module respecting dependencies. |
| 558 | * NB: also called by depmod with bogus name "/", |
| 559 | * just in order to force modprobe.dep.bb creation. |
Denis Vlasenko | 671691c | 2008-07-04 10:25:44 +0000 | [diff] [blame] | 560 | */ |
| 561 | #if !ENABLE_FEATURE_MODPROBE_SMALL_OPTIONS_ON_CMDLINE |
| 562 | #define process_module(a,b) process_module(a) |
| 563 | #define cmdline_options "" |
| 564 | #endif |
| 565 | static void process_module(char *name, const char *cmdline_options) |
| 566 | { |
| 567 | char *s, *deps, *options; |
Denys Vlasenko | 07e5555 | 2014-04-21 16:59:36 +0200 | [diff] [blame] | 568 | module_info **infovec; |
Denis Vlasenko | 671691c | 2008-07-04 10:25:44 +0000 | [diff] [blame] | 569 | module_info *info; |
Denys Vlasenko | 07e5555 | 2014-04-21 16:59:36 +0200 | [diff] [blame] | 570 | int infoidx; |
Denis Vlasenko | 671691c | 2008-07-04 10:25:44 +0000 | [diff] [blame] | 571 | int is_rmmod = (option_mask32 & OPT_r) != 0; |
Denys Vlasenko | 07e5555 | 2014-04-21 16:59:36 +0200 | [diff] [blame] | 572 | |
Denis Vlasenko | 671691c | 2008-07-04 10:25:44 +0000 | [diff] [blame] | 573 | dbg1_error_msg("process_module('%s','%s')", name, cmdline_options); |
| 574 | |
| 575 | replace(name, '-', '_'); |
| 576 | |
| 577 | dbg1_error_msg("already_loaded:%d is_rmmod:%d", already_loaded(name), is_rmmod); |
Denys Vlasenko | 07e5555 | 2014-04-21 16:59:36 +0200 | [diff] [blame] | 578 | /* |
| 579 | * We used to have "is_rmmod != already_loaded(name)" check here, but |
| 580 | * modprobe -r pci:v00008086d00007010sv00000000sd00000000bc01sc01i80 |
| 581 | * won't unload modules (there are more than one) |
| 582 | * which have this alias. |
| 583 | */ |
| 584 | if (!is_rmmod && already_loaded(name)) { |
Denis Vlasenko | 671691c | 2008-07-04 10:25:44 +0000 | [diff] [blame] | 585 | dbg1_error_msg("nothing to do for '%s'", name); |
| 586 | return; |
| 587 | } |
| 588 | |
| 589 | options = NULL; |
| 590 | if (!is_rmmod) { |
| 591 | char *opt_filename = xasprintf("/etc/modules/%s", name); |
| 592 | options = xmalloc_open_read_close(opt_filename, NULL); |
| 593 | if (options) |
| 594 | replace(options, '\n', ' '); |
| 595 | #if ENABLE_FEATURE_MODPROBE_SMALL_OPTIONS_ON_CMDLINE |
| 596 | if (cmdline_options) { |
| 597 | /* NB: cmdline_options always have one leading ' ' |
| 598 | * (see main()), we remove it here */ |
| 599 | char *op = xasprintf(options ? "%s %s" : "%s %s" + 3, |
| 600 | cmdline_options + 1, options); |
| 601 | free(options); |
| 602 | options = op; |
| 603 | } |
| 604 | #endif |
| 605 | free(opt_filename); |
| 606 | module_load_options = options; |
| 607 | dbg1_error_msg("process_module('%s'): options:'%s'", name, options); |
| 608 | } |
| 609 | |
| 610 | if (!module_count) { |
| 611 | /* Scan module directory. This is done only once. |
| 612 | * It will attempt module load, and will exit(EXIT_SUCCESS) |
Denys Vlasenko | 07e5555 | 2014-04-21 16:59:36 +0200 | [diff] [blame] | 613 | * on success. |
| 614 | */ |
Denis Vlasenko | 671691c | 2008-07-04 10:25:44 +0000 | [diff] [blame] | 615 | module_found_idx = -1; |
| 616 | recursive_action(".", |
| 617 | ACTION_RECURSE, /* flags */ |
| 618 | fileAction, /* file action */ |
| 619 | NULL, /* dir action */ |
| 620 | name, /* user data */ |
Denys Vlasenko | 07e5555 | 2014-04-21 16:59:36 +0200 | [diff] [blame] | 621 | 0 /* depth */ |
| 622 | ); |
Denis Vlasenko | 671691c | 2008-07-04 10:25:44 +0000 | [diff] [blame] | 623 | dbg1_error_msg("dirscan complete"); |
| 624 | /* Module was not found, or load failed, or is_rmmod */ |
| 625 | if (module_found_idx >= 0) { /* module was found */ |
Denys Vlasenko | 07e5555 | 2014-04-21 16:59:36 +0200 | [diff] [blame] | 626 | infovec = xzalloc(2 * sizeof(infovec[0])); |
| 627 | infovec[0] = &modinfo[module_found_idx]; |
Denis Vlasenko | 671691c | 2008-07-04 10:25:44 +0000 | [diff] [blame] | 628 | } else { /* search for alias, not a plain module name */ |
Denys Vlasenko | 07e5555 | 2014-04-21 16:59:36 +0200 | [diff] [blame] | 629 | infovec = find_alias(name); |
Denis Vlasenko | 671691c | 2008-07-04 10:25:44 +0000 | [diff] [blame] | 630 | } |
| 631 | } else { |
Denys Vlasenko | 07e5555 | 2014-04-21 16:59:36 +0200 | [diff] [blame] | 632 | infovec = find_alias(name); |
Denis Vlasenko | 671691c | 2008-07-04 10:25:44 +0000 | [diff] [blame] | 633 | } |
| 634 | |
Denys Vlasenko | 3c75b1c | 2015-01-11 17:40:30 +0100 | [diff] [blame] | 635 | if (!infovec) { |
| 636 | /* both dirscan and find_alias found nothing */ |
| 637 | if (!is_rmmod && applet_name[0] != 'd') /* it wasn't rmmod or depmod */ |
| 638 | bb_error_msg("module '%s' not found", name); |
| 639 | //TODO: _and_die()? or should we continue (un)loading modules listed on cmdline? |
| 640 | goto ret; |
| 641 | } |
| 642 | |
Denys Vlasenko | 07e5555 | 2014-04-21 16:59:36 +0200 | [diff] [blame] | 643 | /* There can be more than one module for the given alias. For example, |
| 644 | * "pci:v00008086d00007010sv00000000sd00000000bc01sc01i80" matches |
| 645 | * ata_piix because it has alias "pci:v00008086d00007010sv*sd*bc*sc*i*" |
| 646 | * and ata_generic, it has alias "pci:v*d*sv*sd*bc01sc01i*" |
| 647 | * Standard modprobe loads them both. We achieve it by returning |
| 648 | * a *list* of modinfo pointers from find_alias(). |
| 649 | */ |
Denys Vlasenko | 6332151 | 2009-10-08 22:54:41 +0200 | [diff] [blame] | 650 | |
Denys Vlasenko | 07e5555 | 2014-04-21 16:59:36 +0200 | [diff] [blame] | 651 | /* rmmod or modprobe -r? unload module(s) */ |
Denis Vlasenko | 671691c | 2008-07-04 10:25:44 +0000 | [diff] [blame] | 652 | if (is_rmmod) { |
Denys Vlasenko | 07e5555 | 2014-04-21 16:59:36 +0200 | [diff] [blame] | 653 | infoidx = 0; |
| 654 | while ((info = infovec[infoidx++]) != NULL) { |
| 655 | int r; |
| 656 | char modname[MODULE_NAME_LEN]; |
| 657 | |
Denys Vlasenko | 3c75b1c | 2015-01-11 17:40:30 +0100 | [diff] [blame] | 658 | filename2modname( |
| 659 | bb_get_last_path_component_nostrip(info->pathname), modname); |
Denys Vlasenko | 07e5555 | 2014-04-21 16:59:36 +0200 | [diff] [blame] | 660 | r = delete_module(modname, O_NONBLOCK | O_EXCL); |
| 661 | dbg1_error_msg("delete_module('%s', O_NONBLOCK | O_EXCL):%d", modname, r); |
| 662 | if (r != 0) { |
| 663 | if (!(option_mask32 & OPT_q)) |
| 664 | bb_perror_msg("remove '%s'", modname); |
| 665 | goto ret; |
| 666 | } |
Denis Vlasenko | 671691c | 2008-07-04 10:25:44 +0000 | [diff] [blame] | 667 | } |
Denys Vlasenko | 06a98e3 | 2012-09-25 20:37:38 +0200 | [diff] [blame] | 668 | |
| 669 | if (applet_name[0] == 'r') { |
| 670 | /* rmmod: do not remove dependencies, exit */ |
| 671 | goto ret; |
| 672 | } |
| 673 | |
| 674 | /* modprobe -r: we do not stop here - |
Denis Vlasenko | 671691c | 2008-07-04 10:25:44 +0000 | [diff] [blame] | 675 | * continue to unload modules on which the module depends: |
| 676 | * "-r --remove: option causes modprobe to remove a module. |
| 677 | * If the modules it depends on are also unused, modprobe |
Denys Vlasenko | 06a98e3 | 2012-09-25 20:37:38 +0200 | [diff] [blame] | 678 | * will try to remove them, too." |
| 679 | */ |
Denis Vlasenko | 671691c | 2008-07-04 10:25:44 +0000 | [diff] [blame] | 680 | } |
| 681 | |
Denys Vlasenko | 07e5555 | 2014-04-21 16:59:36 +0200 | [diff] [blame] | 682 | infoidx = 0; |
| 683 | while ((info = infovec[infoidx++]) != NULL) { |
| 684 | /* Iterate thru dependencies, trying to (un)load them */ |
| 685 | deps = str_2_list(info->deps); |
| 686 | for (s = deps; *s; s += strlen(s) + 1) { |
| 687 | //if (strcmp(name, s) != 0) // N.B. do loops exist? |
| 688 | dbg1_error_msg("recurse on dep '%s'", s); |
| 689 | process_module(s, NULL); |
| 690 | dbg1_error_msg("recurse on dep '%s' done", s); |
| 691 | } |
| 692 | free(deps); |
Denis Vlasenko | 671691c | 2008-07-04 10:25:44 +0000 | [diff] [blame] | 693 | |
Denys Vlasenko | 07e5555 | 2014-04-21 16:59:36 +0200 | [diff] [blame] | 694 | if (is_rmmod) |
| 695 | continue; |
| 696 | |
| 697 | /* We are modprobe: load it */ |
| 698 | if (options && strstr(options, "blacklist")) { |
Denis Vlasenko | 1ad4db1 | 2008-11-12 00:09:58 +0000 | [diff] [blame] | 699 | dbg1_error_msg("'%s': blacklisted", info->pathname); |
Denys Vlasenko | 07e5555 | 2014-04-21 16:59:36 +0200 | [diff] [blame] | 700 | continue; |
| 701 | } |
| 702 | errno = 0; |
| 703 | if (load_module(info->pathname, options) != 0) { |
| 704 | if (EEXIST != errno) { |
| 705 | bb_error_msg("'%s': %s", |
| 706 | info->pathname, |
| 707 | moderror(errno)); |
| 708 | } else { |
| 709 | dbg1_error_msg("'%s': %s", |
| 710 | info->pathname, |
| 711 | moderror(errno)); |
| 712 | } |
Denis Vlasenko | 671691c | 2008-07-04 10:25:44 +0000 | [diff] [blame] | 713 | } |
| 714 | } |
| 715 | ret: |
Denys Vlasenko | 07e5555 | 2014-04-21 16:59:36 +0200 | [diff] [blame] | 716 | free(infovec); |
Denis Vlasenko | 671691c | 2008-07-04 10:25:44 +0000 | [diff] [blame] | 717 | free(options); |
| 718 | //TODO: return load attempt result from process_module. |
| 719 | //If dep didn't load ok, continuing makes little sense. |
| 720 | } |
| 721 | #undef cmdline_options |
| 722 | |
| 723 | |
Denis Vlasenko | 0e2c93f | 2008-07-10 14:16:11 +0000 | [diff] [blame] | 724 | /* For reference, module-init-tools v3.4 options: |
Denis Vlasenko | 671691c | 2008-07-04 10:25:44 +0000 | [diff] [blame] | 725 | |
| 726 | # insmod |
| 727 | Usage: insmod filename [args] |
| 728 | |
| 729 | # rmmod --help |
| 730 | Usage: rmmod [-fhswvV] modulename ... |
Denis Vlasenko | 0e2c93f | 2008-07-10 14:16:11 +0000 | [diff] [blame] | 731 | -f (or --force) forces a module unload, and may crash your |
| 732 | machine. This requires the Forced Module Removal option |
| 733 | when the kernel was compiled. |
| 734 | -h (or --help) prints this help text |
Denis Vlasenko | 671691c | 2008-07-04 10:25:44 +0000 | [diff] [blame] | 735 | -s (or --syslog) says use syslog, not stderr |
| 736 | -v (or --verbose) enables more messages |
Denis Vlasenko | 0e2c93f | 2008-07-10 14:16:11 +0000 | [diff] [blame] | 737 | -V (or --version) prints the version code |
Denis Vlasenko | 35d8c47 | 2008-08-05 07:59:25 +0000 | [diff] [blame] | 738 | -w (or --wait) begins module removal even if it is used |
Denis Vlasenko | 671691c | 2008-07-04 10:25:44 +0000 | [diff] [blame] | 739 | and will stop new users from accessing the module (so it |
| 740 | should eventually fall to zero). |
| 741 | |
| 742 | # modprobe |
Denis Vlasenko | 0e2c93f | 2008-07-10 14:16:11 +0000 | [diff] [blame] | 743 | Usage: modprobe [-v] [-V] [-C config-file] [-n] [-i] [-q] [-b] |
| 744 | [-o <modname>] [ --dump-modversions ] <modname> [parameters...] |
| 745 | modprobe -r [-n] [-i] [-v] <modulename> ... |
| 746 | modprobe -l -t <dirname> [ -a <modulename> ...] |
Denis Vlasenko | 671691c | 2008-07-04 10:25:44 +0000 | [diff] [blame] | 747 | |
| 748 | # depmod --help |
Denis Vlasenko | 0e2c93f | 2008-07-10 14:16:11 +0000 | [diff] [blame] | 749 | depmod 3.4 -- part of module-init-tools |
| 750 | depmod -[aA] [-n -e -v -q -V -r -u] |
| 751 | [-b basedirectory] [forced_version] |
| 752 | depmod [-n -e -v -q -r -u] [-F kernelsyms] module1.ko module2.ko ... |
| 753 | If no arguments (except options) are given, "depmod -a" is assumed. |
Denys Vlasenko | bf2af9a | 2009-05-25 04:15:37 +0200 | [diff] [blame] | 754 | depmod will output a dependency list suitable for the modprobe utility. |
Denis Vlasenko | 671691c | 2008-07-04 10:25:44 +0000 | [diff] [blame] | 755 | Options: |
Denis Vlasenko | 35d8c47 | 2008-08-05 07:59:25 +0000 | [diff] [blame] | 756 | -a, --all Probe all modules |
| 757 | -A, --quick Only does the work if there's a new module |
| 758 | -n, --show Write the dependency file on stdout only |
| 759 | -e, --errsyms Report not supplied symbols |
| 760 | -V, --version Print the release version |
| 761 | -v, --verbose Enable verbose mode |
| 762 | -h, --help Print this usage message |
Denis Vlasenko | 0e2c93f | 2008-07-10 14:16:11 +0000 | [diff] [blame] | 763 | The following options are useful for people managing distributions: |
| 764 | -b basedirectory |
Denis Vlasenko | 35d8c47 | 2008-08-05 07:59:25 +0000 | [diff] [blame] | 765 | --basedir basedirectory |
| 766 | Use an image of a module tree |
Denis Vlasenko | 0e2c93f | 2008-07-10 14:16:11 +0000 | [diff] [blame] | 767 | -F kernelsyms |
Denis Vlasenko | 35d8c47 | 2008-08-05 07:59:25 +0000 | [diff] [blame] | 768 | --filesyms kernelsyms |
| 769 | Use the file instead of the current kernel symbols |
Denis Vlasenko | 671691c | 2008-07-04 10:25:44 +0000 | [diff] [blame] | 770 | */ |
| 771 | |
Pascal Bellard | b82b34e | 2010-06-07 01:16:45 +0200 | [diff] [blame] | 772 | //usage:#if ENABLE_MODPROBE_SMALL |
Denys Vlasenko | 1a5e11c | 2010-10-16 01:56:41 +0200 | [diff] [blame] | 773 | |
| 774 | //usage:#define depmod_trivial_usage NOUSAGE_STR |
| 775 | //usage:#define depmod_full_usage "" |
| 776 | |
| 777 | //usage:#define lsmod_trivial_usage |
| 778 | //usage: "" |
| 779 | //usage:#define lsmod_full_usage "\n\n" |
| 780 | //usage: "List the currently loaded kernel modules" |
| 781 | |
| 782 | //usage:#define insmod_trivial_usage |
| 783 | //usage: IF_FEATURE_2_4_MODULES("[OPTIONS] MODULE ") |
| 784 | //usage: IF_NOT_FEATURE_2_4_MODULES("FILE ") |
| 785 | //usage: "[SYMBOL=VALUE]..." |
| 786 | //usage:#define insmod_full_usage "\n\n" |
Denys Vlasenko | 5fd3ddf | 2014-04-19 15:04:39 +0200 | [diff] [blame] | 787 | //usage: "Load kernel module" |
Denys Vlasenko | 1a5e11c | 2010-10-16 01:56:41 +0200 | [diff] [blame] | 788 | //usage: IF_FEATURE_2_4_MODULES( "\n" |
Denys Vlasenko | 1a5e11c | 2010-10-16 01:56:41 +0200 | [diff] [blame] | 789 | //usage: "\n -f Force module to load into the wrong kernel version" |
| 790 | //usage: "\n -k Make module autoclean-able" |
| 791 | //usage: "\n -v Verbose" |
| 792 | //usage: "\n -q Quiet" |
| 793 | //usage: "\n -L Lock: prevent simultaneous loads" |
| 794 | //usage: IF_FEATURE_INSMOD_LOAD_MAP( |
| 795 | //usage: "\n -m Output load map to stdout" |
| 796 | //usage: ) |
| 797 | //usage: "\n -x Don't export externs" |
| 798 | //usage: ) |
| 799 | |
| 800 | //usage:#define rmmod_trivial_usage |
| 801 | //usage: "[-wfa] [MODULE]..." |
| 802 | //usage:#define rmmod_full_usage "\n\n" |
| 803 | //usage: "Unload kernel modules\n" |
Denys Vlasenko | 1a5e11c | 2010-10-16 01:56:41 +0200 | [diff] [blame] | 804 | //usage: "\n -w Wait until the module is no longer used" |
| 805 | //usage: "\n -f Force unload" |
| 806 | //usage: "\n -a Remove all unused modules (recursively)" |
| 807 | //usage: |
| 808 | //usage:#define rmmod_example_usage |
| 809 | //usage: "$ rmmod tulip\n" |
| 810 | |
Pascal Bellard | b82b34e | 2010-06-07 01:16:45 +0200 | [diff] [blame] | 811 | //usage:#define modprobe_trivial_usage |
Denys Vlasenko | 5fd3ddf | 2014-04-19 15:04:39 +0200 | [diff] [blame] | 812 | //usage: "[-qfwrsv] MODULE [SYMBOL=VALUE]..." |
Pascal Bellard | b82b34e | 2010-06-07 01:16:45 +0200 | [diff] [blame] | 813 | //usage:#define modprobe_full_usage "\n\n" |
Denys Vlasenko | 6642676 | 2011-06-05 03:58:28 +0200 | [diff] [blame] | 814 | //usage: " -r Remove MODULE (stacks) or do autoclean" |
Pascal Bellard | b82b34e | 2010-06-07 01:16:45 +0200 | [diff] [blame] | 815 | //usage: "\n -q Quiet" |
| 816 | //usage: "\n -v Verbose" |
| 817 | //usage: "\n -f Force" |
| 818 | //usage: "\n -w Wait for unload" |
| 819 | //usage: "\n -s Report via syslog instead of stderr" |
Denys Vlasenko | 1a5e11c | 2010-10-16 01:56:41 +0200 | [diff] [blame] | 820 | |
| 821 | //usage:#endif |
Pascal Bellard | b82b34e | 2010-06-07 01:16:45 +0200 | [diff] [blame] | 822 | |
Denis Vlasenko | 671691c | 2008-07-04 10:25:44 +0000 | [diff] [blame] | 823 | int modprobe_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; |
Denis Vlasenko | a60f84e | 2008-07-05 09:18:54 +0000 | [diff] [blame] | 824 | int modprobe_main(int argc UNUSED_PARAM, char **argv) |
Denis Vlasenko | 671691c | 2008-07-04 10:25:44 +0000 | [diff] [blame] | 825 | { |
| 826 | struct utsname uts; |
| 827 | char applet0 = applet_name[0]; |
Denis Vlasenko | 5e34ff2 | 2009-04-21 11:09:40 +0000 | [diff] [blame] | 828 | IF_FEATURE_MODPROBE_SMALL_OPTIONS_ON_CMDLINE(char *options;) |
Denis Vlasenko | 671691c | 2008-07-04 10:25:44 +0000 | [diff] [blame] | 829 | |
Denis Vlasenko | 671691c | 2008-07-04 10:25:44 +0000 | [diff] [blame] | 830 | /* are we lsmod? -> just dump /proc/modules */ |
| 831 | if ('l' == applet0) { |
Denis Vlasenko | 5415c85 | 2008-07-21 23:05:26 +0000 | [diff] [blame] | 832 | xprint_and_close_file(xfopen_for_read("/proc/modules")); |
Denis Vlasenko | 671691c | 2008-07-04 10:25:44 +0000 | [diff] [blame] | 833 | return EXIT_SUCCESS; |
| 834 | } |
| 835 | |
| 836 | INIT_G(); |
| 837 | |
Denis Vlasenko | 0e2c93f | 2008-07-10 14:16:11 +0000 | [diff] [blame] | 838 | /* Prevent ugly corner cases with no modules at all */ |
| 839 | modinfo = xzalloc(sizeof(modinfo[0])); |
| 840 | |
Denis Vlasenko | 1c781cc | 2008-09-06 14:14:01 +0000 | [diff] [blame] | 841 | if ('i' != applet0) { /* not insmod */ |
| 842 | /* Goto modules directory */ |
| 843 | xchdir(CONFIG_DEFAULT_MODULES_DIR); |
| 844 | } |
Denis Vlasenko | 0e2c93f | 2008-07-10 14:16:11 +0000 | [diff] [blame] | 845 | uname(&uts); /* never fails */ |
| 846 | |
| 847 | /* depmod? */ |
| 848 | if ('d' == applet0) { |
| 849 | /* Supported: |
| 850 | * -n: print result to stdout |
| 851 | * -a: process all modules (default) |
| 852 | * optional VERSION parameter |
| 853 | * Ignored: |
| 854 | * -A: do work only if a module is newer than depfile |
| 855 | * -e: report any symbols which a module needs |
| 856 | * which are not supplied by other modules or the kernel |
| 857 | * -F FILE: System.map (symbols for -e) |
| 858 | * -q, -r, -u: noop? |
| 859 | * Not supported: |
| 860 | * -b BASEDIR: (TODO!) modules are in |
| 861 | * $BASEDIR/lib/modules/$VERSION |
| 862 | * -v: human readable deps to stdout |
| 863 | * -V: version (don't want to support it - people may depend |
| 864 | * on it as an indicator of "standard" depmod) |
| 865 | * -h: help (well duh) |
| 866 | * module1.o module2.o parameters (just ignored for now) |
| 867 | */ |
| 868 | getopt32(argv, "na" "AeF:qru" /* "b:vV", NULL */, NULL); |
| 869 | argv += optind; |
| 870 | /* if (argv[0] && argv[1]) bb_show_usage(); */ |
| 871 | /* Goto $VERSION directory */ |
| 872 | xchdir(argv[0] ? argv[0] : uts.release); |
| 873 | /* Force full module scan by asking to find a bogus module. |
| 874 | * This will generate modules.dep.bb as a side effect. */ |
| 875 | process_module((char*)"/", NULL); |
| 876 | return !wrote_dep_bb_ok; |
| 877 | } |
| 878 | |
Denis Vlasenko | 671691c | 2008-07-04 10:25:44 +0000 | [diff] [blame] | 879 | /* insmod, modprobe, rmmod require at least one argument */ |
| 880 | opt_complementary = "-1"; |
| 881 | /* only -q (quiet) and -r (rmmod), |
| 882 | * the rest are accepted and ignored (compat) */ |
Felipe Contreras | 428bd2d | 2012-01-31 14:55:15 +0100 | [diff] [blame] | 883 | getopt32(argv, "qrfsvwb"); |
Denis Vlasenko | 671691c | 2008-07-04 10:25:44 +0000 | [diff] [blame] | 884 | argv += optind; |
| 885 | |
| 886 | /* are we rmmod? -> simulate modprobe -r */ |
| 887 | if ('r' == applet0) { |
| 888 | option_mask32 |= OPT_r; |
| 889 | } |
| 890 | |
Denis Vlasenko | 1c781cc | 2008-09-06 14:14:01 +0000 | [diff] [blame] | 891 | if ('i' != applet0) { /* not insmod */ |
| 892 | /* Goto $VERSION directory */ |
| 893 | xchdir(uts.release); |
| 894 | } |
Denis Vlasenko | 671691c | 2008-07-04 10:25:44 +0000 | [diff] [blame] | 895 | |
| 896 | #if ENABLE_FEATURE_MODPROBE_SMALL_OPTIONS_ON_CMDLINE |
| 897 | /* If not rmmod, parse possible module options given on command line. |
| 898 | * insmod/modprobe takes one module name, the rest are parameters. */ |
| 899 | options = NULL; |
| 900 | if ('r' != applet0) { |
| 901 | char **arg = argv; |
| 902 | while (*++arg) { |
| 903 | /* Enclose options in quotes */ |
| 904 | char *s = options; |
| 905 | options = xasprintf("%s \"%s\"", s ? s : "", *arg); |
| 906 | free(s); |
| 907 | *arg = NULL; |
| 908 | } |
| 909 | } |
| 910 | #else |
| 911 | if ('r' != applet0) |
| 912 | argv[1] = NULL; |
| 913 | #endif |
| 914 | |
Denis Vlasenko | 1c781cc | 2008-09-06 14:14:01 +0000 | [diff] [blame] | 915 | if ('i' == applet0) { /* insmod */ |
| 916 | size_t len; |
| 917 | void *map; |
| 918 | |
| 919 | len = MAXINT(ssize_t); |
Denys Vlasenko | e9d12b5 | 2011-01-09 20:57:52 +0100 | [diff] [blame] | 920 | map = xmalloc_open_zipped_read_close(*argv, &len); |
Denys Vlasenko | 094cc51 | 2011-01-17 14:58:27 +0100 | [diff] [blame] | 921 | if (!map) |
| 922 | bb_perror_msg_and_die("can't read '%s'", *argv); |
Denis Vlasenko | 1c781cc | 2008-09-06 14:14:01 +0000 | [diff] [blame] | 923 | if (init_module(map, len, |
Denis Vlasenko | 5e34ff2 | 2009-04-21 11:09:40 +0000 | [diff] [blame] | 924 | IF_FEATURE_MODPROBE_SMALL_OPTIONS_ON_CMDLINE(options ? options : "") |
| 925 | IF_NOT_FEATURE_MODPROBE_SMALL_OPTIONS_ON_CMDLINE("") |
Denys Vlasenko | e9d12b5 | 2011-01-09 20:57:52 +0100 | [diff] [blame] | 926 | ) != 0 |
| 927 | ) { |
Denis Vlasenko | 1f63229 | 2009-04-13 02:25:40 +0000 | [diff] [blame] | 928 | bb_error_msg_and_die("can't insert '%s': %s", |
Denis Vlasenko | 1c781cc | 2008-09-06 14:14:01 +0000 | [diff] [blame] | 929 | *argv, moderror(errno)); |
Denys Vlasenko | e9d12b5 | 2011-01-09 20:57:52 +0100 | [diff] [blame] | 930 | } |
Denis Vlasenko | 1c781cc | 2008-09-06 14:14:01 +0000 | [diff] [blame] | 931 | return 0; |
| 932 | } |
| 933 | |
Denis Vlasenko | 7f950a9 | 2008-07-10 14:14:45 +0000 | [diff] [blame] | 934 | /* Try to load modprobe.dep.bb */ |
Denis Vlasenko | 7843699 | 2008-07-10 14:14:20 +0000 | [diff] [blame] | 935 | load_dep_bb(); |
| 936 | |
Denis Vlasenko | 671691c | 2008-07-04 10:25:44 +0000 | [diff] [blame] | 937 | /* Load/remove modules. |
Denis Vlasenko | 1c781cc | 2008-09-06 14:14:01 +0000 | [diff] [blame] | 938 | * Only rmmod loops here, modprobe has only argv[0] */ |
Denis Vlasenko | 671691c | 2008-07-04 10:25:44 +0000 | [diff] [blame] | 939 | do { |
Denys Vlasenko | 5b3151c | 2010-09-25 14:37:06 +0200 | [diff] [blame] | 940 | process_module(*argv, options); |
| 941 | } while (*++argv); |
Denis Vlasenko | 671691c | 2008-07-04 10:25:44 +0000 | [diff] [blame] | 942 | |
| 943 | if (ENABLE_FEATURE_CLEAN_UP) { |
Denis Vlasenko | 5e34ff2 | 2009-04-21 11:09:40 +0000 | [diff] [blame] | 944 | IF_FEATURE_MODPROBE_SMALL_OPTIONS_ON_CMDLINE(free(options);) |
Denis Vlasenko | 671691c | 2008-07-04 10:25:44 +0000 | [diff] [blame] | 945 | } |
| 946 | return EXIT_SUCCESS; |
| 947 | } |