blob: f6681a8d831231a6d0d9b503a71de374b7b082e1 [file] [log] [blame]
Eric Andersen0139ca92001-07-22 23:01:03 +00001/* vi: set sw=4 ts=4: */
2/*
Robert Grieblaead70b2002-07-26 15:54:20 +00003 * Modprobe written from scratch for BusyBox
Eric Andersen60e56f52002-04-26 06:04:01 +00004 *
Robert Griebl6859d762002-08-05 02:57:12 +00005 * Copyright (c) 2002 by Robert Griebl, griebl@gmx.de
Eric Andersen908e3622003-06-20 09:56:37 +00006 * Copyright (c) 2003 by Andrew Dennison, andrew.dennison@motec.com.au
Paul Fox8eeb6552005-08-04 18:33:36 +00007 * Copyright (c) 2005 by Jim Bauer, jfbauer@nfr.com
Bernhard Reutner-Fischer17d355c2005-12-14 08:32:44 +00008 *
Rob Landleye9190962005-12-12 19:38:44 +00009 * Portions Copyright (c) 2005 by Yann E. MORIN, yann.morin.1998@anciens.enib.fr
Robert Griebl6859d762002-08-05 02:57:12 +000010 *
Rob Landley79e1cab2005-11-15 00:08:29 +000011 * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
Robert Griebl6859d762002-08-05 02:57:12 +000012*/
Eric Andersen0139ca92001-07-22 23:01:03 +000013
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000014#include "libbb.h"
Robert Griebl52e8d062002-05-14 23:42:08 +000015#include <sys/utsname.h>
Bernhard Reutner-Fischer2c351a82006-06-03 19:08:49 +000016#include <fnmatch.h>
Eric Andersen0139ca92001-07-22 23:01:03 +000017
Denis Vlasenkob68979a2007-11-02 23:31:10 +000018#define line_buffer bb_common_bufsiz1
19
Rob Landleye9190962005-12-12 19:38:44 +000020struct mod_opt_t { /* one-way list of options to pass to a module */
21 char * m_opt_val;
22 struct mod_opt_t * m_next;
Eric Andersen60e56f52002-04-26 06:04:01 +000023};
24
Rob Landleye9190962005-12-12 19:38:44 +000025struct dep_t { /* one-way list of dependency rules */
26 /* a dependency rule */
Denis Vlasenkocf704332006-10-27 15:12:50 +000027 char * m_name; /* the module name*/
28 char * m_path; /* the module file path */
29 struct mod_opt_t * m_options; /* the module options */
Bernhard Reutner-Fischer17d355c2005-12-14 08:32:44 +000030
Denis Vlasenkocf704332006-10-27 15:12:50 +000031 int m_isalias : 1; /* the module is an alias */
32 int m_reserved : 15; /* stuffin' */
Rob Landleye9190962005-12-12 19:38:44 +000033
Denis Vlasenkocf704332006-10-27 15:12:50 +000034 int m_depcnt : 16; /* the number of dependable module(s) */
35 char ** m_deparr; /* the list of dependable module(s) */
Rob Landleye9190962005-12-12 19:38:44 +000036
Denis Vlasenkocf704332006-10-27 15:12:50 +000037 struct dep_t * m_next; /* the next dependency rule */
Rob Landleye9190962005-12-12 19:38:44 +000038};
39
40struct mod_list_t { /* two-way list of modules to process */
41 /* a module description */
Denis Vlasenko322661d2007-01-29 23:43:52 +000042 const char * m_name;
43 char * m_path;
44 struct mod_opt_t * m_options;
Eric Andersen3b1a7442003-12-24 20:30:45 +000045
Robert Griebl52e8d062002-05-14 23:42:08 +000046 struct mod_list_t * m_prev;
47 struct mod_list_t * m_next;
48};
49
50
Robert Griebl236abbf2002-05-22 23:34:35 +000051static struct dep_t *depend;
"Vladimir N. Oleynik"4fc92202006-02-02 14:48:54 +000052
Denis Vlasenkob68979a2007-11-02 23:31:10 +000053#define MAIN_OPT_STR "acdklnqrst:vVC:"
"Vladimir N. Oleynik"4fc92202006-02-02 14:48:54 +000054#define INSERT_ALL 1 /* a */
55#define DUMP_CONF_EXIT 2 /* c */
56#define D_OPT_IGNORED 4 /* d */
57#define AUTOCLEAN_FLG 8 /* k */
58#define LIST_ALL 16 /* l */
59#define SHOW_ONLY 32 /* n */
60#define QUIET 64 /* q */
61#define REMOVE_OPT 128 /* r */
62#define DO_SYSLOG 256 /* s */
63#define RESTRICT_DIR 512 /* t */
64#define VERBOSE 1024 /* v */
65#define VERSION_ONLY 2048 /* V */
66#define CONFIG_FILE 4096 /* C */
67
Denis Vlasenkob68979a2007-11-02 23:31:10 +000068#define autoclean (option_mask32 & AUTOCLEAN_FLG)
69#define show_only (option_mask32 & SHOW_ONLY)
70#define quiet (option_mask32 & QUIET)
71#define remove_opt (option_mask32 & REMOVE_OPT)
72#define do_syslog (option_mask32 & DO_SYSLOG)
73#define verbose (option_mask32 & VERBOSE)
Robert Griebl52e8d062002-05-14 23:42:08 +000074
Denis Vlasenkocf704332006-10-27 15:12:50 +000075static int parse_tag_value(char *buffer, char **ptag, char **pvalue)
Robert Grieblaead70b2002-07-26 15:54:20 +000076{
77 char *tag, *value;
78
Denis Vlasenkocf704332006-10-27 15:12:50 +000079 buffer = skip_whitespace(buffer);
Robert Grieblaead70b2002-07-26 15:54:20 +000080 tag = value = buffer;
Denis Vlasenkob68979a2007-11-02 23:31:10 +000081 while (!isspace(*value)) {
82 if (!*value)
83 return 0;
84 value++;
85 }
86 *value++ = '\0';
Denis Vlasenkocf704332006-10-27 15:12:50 +000087 value = skip_whitespace(value);
Denis Vlasenkob68979a2007-11-02 23:31:10 +000088 if (!*value)
89 return 0;
Robert Grieblaead70b2002-07-26 15:54:20 +000090
91 *ptag = tag;
92 *pvalue = value;
Eric Andersen3b1a7442003-12-24 20:30:45 +000093
Eric Andersen7e496a72004-04-06 12:06:03 +000094 return 1;
Robert Grieblaead70b2002-07-26 15:54:20 +000095}
Eric Andersen60e56f52002-04-26 06:04:01 +000096
Rob Landleye9190962005-12-12 19:38:44 +000097/*
98 * This function appends an option to a list
99 */
Denis Vlasenkocf704332006-10-27 15:12:50 +0000100static struct mod_opt_t *append_option(struct mod_opt_t *opt_list, char *opt)
Eric Andersen60e56f52002-04-26 06:04:01 +0000101{
Rob Landleye9190962005-12-12 19:38:44 +0000102 struct mod_opt_t *ol = opt_list;
Eric Andersen3b1a7442003-12-24 20:30:45 +0000103
Denis Vlasenkocf704332006-10-27 15:12:50 +0000104 if (ol) {
105 while (ol->m_next) {
106 ol = ol->m_next;
Rob Landleye9190962005-12-12 19:38:44 +0000107 }
Denis Vlasenkob68979a2007-11-02 23:31:10 +0000108 ol->m_next = xzalloc(sizeof(struct mod_opt_t));
Denis Vlasenkocf704332006-10-27 15:12:50 +0000109 ol = ol->m_next;
Rob Landleye9190962005-12-12 19:38:44 +0000110 } else {
Denis Vlasenkob68979a2007-11-02 23:31:10 +0000111 ol = opt_list = xzalloc(sizeof(struct mod_opt_t));
Eric Andersen03d80912003-12-19 21:04:19 +0000112 }
Eric Andersen3b1a7442003-12-24 20:30:45 +0000113
Denis Vlasenkocf704332006-10-27 15:12:50 +0000114 ol->m_opt_val = xstrdup(opt);
Denis Vlasenkob68979a2007-11-02 23:31:10 +0000115 /*ol->m_next = NULL; - done by xzalloc*/
Eric Andersen60e56f52002-04-26 06:04:01 +0000116
Rob Landleye9190962005-12-12 19:38:44 +0000117 return opt_list;
Eric Andersen60e56f52002-04-26 06:04:01 +0000118}
119
Bernhard Reutner-Fischer17d355c2005-12-14 08:32:44 +0000120#if ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS
Denis Vlasenkocf704332006-10-27 15:12:50 +0000121/* static char* parse_command_string(char* src, char **dst);
Rob Landley79e1cab2005-11-15 00:08:29 +0000122 * src: pointer to string containing argument
123 * dst: pointer to where to store the parsed argument
124 * return value: the pointer to the first char after the parsed argument,
125 * NULL if there was no argument parsed (only trailing spaces).
Rob Landleyd921b2e2006-08-03 15:41:12 +0000126 * Note that memory is allocated with xstrdup when a new argument was
Rob Landley79e1cab2005-11-15 00:08:29 +0000127 * parsed. Don't forget to free it!
128 */
129#define ARG_EMPTY 0x00
130#define ARG_IN_DQUOTES 0x01
131#define ARG_IN_SQUOTES 0x02
Denis Vlasenkocf704332006-10-27 15:12:50 +0000132static char *parse_command_string(char *src, char **dst)
Rob Landley79e1cab2005-11-15 00:08:29 +0000133{
134 int opt_status = ARG_EMPTY;
135 char* tmp_str;
136
137 /* Dumb you, I have nothing to do... */
Denis Vlasenkocf704332006-10-27 15:12:50 +0000138 if (src == NULL) return src;
Rob Landley79e1cab2005-11-15 00:08:29 +0000139
140 /* Skip leading spaces */
Denis Vlasenkocf704332006-10-27 15:12:50 +0000141 while (*src == ' ') {
Rob Landley79e1cab2005-11-15 00:08:29 +0000142 src++;
143 }
144 /* Is the end of string reached? */
Denis Vlasenkocf704332006-10-27 15:12:50 +0000145 if (*src == '\0') {
Rob Landley79e1cab2005-11-15 00:08:29 +0000146 return NULL;
147 }
148 /* Reached the start of an argument
Rob Landleye9190962005-12-12 19:38:44 +0000149 * By the way, we duplicate a little too much
150 * here but what is too much is freed later. */
Denis Vlasenkocf704332006-10-27 15:12:50 +0000151 *dst = tmp_str = xstrdup(src);
Rob Landley79e1cab2005-11-15 00:08:29 +0000152 /* Get to the end of that argument */
Denis Vlasenkocf704332006-10-27 15:12:50 +0000153 while (*tmp_str != '\0'
154 && (*tmp_str != ' ' || (opt_status & (ARG_IN_DQUOTES | ARG_IN_SQUOTES)))
155 ) {
156 switch (*tmp_str) {
157 case '\'':
158 if (opt_status & ARG_IN_DQUOTES) {
159 /* Already in double quotes, keep current char as is */
160 } else {
161 /* shift left 1 char, until end of string: get rid of the opening/closing quotes */
162 memmove(tmp_str, tmp_str + 1, strlen(tmp_str));
163 /* mark me: we enter or leave single quotes */
164 opt_status ^= ARG_IN_SQUOTES;
165 /* Back one char, as we need to re-scan the new char there. */
166 tmp_str--;
167 }
Rob Landley79e1cab2005-11-15 00:08:29 +0000168 break;
Denis Vlasenkocf704332006-10-27 15:12:50 +0000169 case '"':
170 if (opt_status & ARG_IN_SQUOTES) {
171 /* Already in single quotes, keep current char as is */
172 } else {
173 /* shift left 1 char, until end of string: get rid of the opening/closing quotes */
174 memmove(tmp_str, tmp_str + 1, strlen(tmp_str));
175 /* mark me: we enter or leave double quotes */
176 opt_status ^= ARG_IN_DQUOTES;
177 /* Back one char, as we need to re-scan the new char there. */
178 tmp_str--;
179 }
Rob Landley79e1cab2005-11-15 00:08:29 +0000180 break;
Denis Vlasenkocf704332006-10-27 15:12:50 +0000181 case '\\':
182 if (opt_status & ARG_IN_SQUOTES) {
183 /* Between single quotes: keep as is. */
184 } else {
185 switch (*(tmp_str+1)) {
186 case 'a':
187 case 'b':
188 case 't':
189 case 'n':
190 case 'v':
191 case 'f':
192 case 'r':
193 case '0':
194 /* We escaped a special character. For now, keep
195 * both the back-slash and the following char. */
Denis Vlasenkob68979a2007-11-02 23:31:10 +0000196 tmp_str++;
197 src++;
Denis Vlasenkocf704332006-10-27 15:12:50 +0000198 break;
199 default:
200 /* We escaped a space or a single or double quote,
201 * or a back-slash, or a non-escapable char. Remove
202 * the '\' and keep the new current char as is. */
203 memmove(tmp_str, tmp_str + 1, strlen(tmp_str));
204 break;
Rob Landley79e1cab2005-11-15 00:08:29 +0000205 }
Denis Vlasenkocf704332006-10-27 15:12:50 +0000206 }
Rob Landley79e1cab2005-11-15 00:08:29 +0000207 break;
Denis Vlasenkocf704332006-10-27 15:12:50 +0000208 /* Any other char that is special shall appear here.
209 * Example: $ starts a variable
210 case '$':
211 do_variable_expansion();
212 break;
213 * */
214 default:
215 /* any other char is kept as is. */
216 break;
Rob Landley79e1cab2005-11-15 00:08:29 +0000217 }
218 tmp_str++; /* Go to next char */
219 src++; /* Go to next char to find the end of the argument. */
220 }
221 /* End of string, but still no ending quote */
Denis Vlasenkocf704332006-10-27 15:12:50 +0000222 if (opt_status & (ARG_IN_DQUOTES | ARG_IN_SQUOTES)) {
223 bb_error_msg_and_die("unterminated (single or double) quote in options list: %s", src);
Rob Landley79e1cab2005-11-15 00:08:29 +0000224 }
"Vladimir N. Oleynik"4fc92202006-02-02 14:48:54 +0000225 *tmp_str++ = '\0';
Denis Vlasenkocf704332006-10-27 15:12:50 +0000226 *dst = xrealloc(*dst, (tmp_str - *dst));
Rob Landley79e1cab2005-11-15 00:08:29 +0000227 return src;
228}
Rob Landleyae50c6d2005-12-15 07:42:13 +0000229#else
230#define parse_command_string(src, dst) (0)
Bernhard Reutner-Fischer17d355c2005-12-14 08:32:44 +0000231#endif /* ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS */
Rob Landley79e1cab2005-11-15 00:08:29 +0000232
Rob Landleye9190962005-12-12 19:38:44 +0000233/*
Rob Landley72615752006-04-10 16:09:52 +0000234 * This function reads aliases and default module options from a configuration file
235 * (/etc/modprobe.conf syntax). It supports includes (only files, no directories).
236 */
Denis Vlasenkocf704332006-10-27 15:12:50 +0000237static void include_conf(struct dep_t **first, struct dep_t **current, char *buffer, int buflen, int fd)
Rob Landley72615752006-04-10 16:09:52 +0000238{
239 int continuation_line = 0;
240
Denis Vlasenkod67cef22007-06-13 06:47:47 +0000241 // alias parsing is not 100% correct (no correct handling of continuation lines within an alias)!
Rob Landley72615752006-04-10 16:09:52 +0000242
Denis Vlasenkocf704332006-10-27 15:12:50 +0000243 while (reads(fd, buffer, buflen)) {
Rob Landley72615752006-04-10 16:09:52 +0000244 int l;
Rob Landley72615752006-04-10 16:09:52 +0000245
Denis Vlasenkoc03e8722007-12-26 20:56:55 +0000246 *strchrnul(buffer, '#') = '\0';
Rob Landley72615752006-04-10 16:09:52 +0000247
Denis Vlasenkocf704332006-10-27 15:12:50 +0000248 l = strlen(buffer);
Rob Landley72615752006-04-10 16:09:52 +0000249
Denis Vlasenkocf704332006-10-27 15:12:50 +0000250 while (l && isspace(buffer[l-1])) {
Denis Vlasenkob68979a2007-11-02 23:31:10 +0000251 buffer[l-1] = '\0';
Rob Landley72615752006-04-10 16:09:52 +0000252 l--;
253 }
254
Denis Vlasenkocf704332006-10-27 15:12:50 +0000255 if (l == 0) {
Rob Landley72615752006-04-10 16:09:52 +0000256 continuation_line = 0;
257 continue;
258 }
259
Denis Vlasenkob68979a2007-11-02 23:31:10 +0000260 if (continuation_line)
261 continue;
Rob Landley72615752006-04-10 16:09:52 +0000262
Denis Vlasenkob68979a2007-11-02 23:31:10 +0000263 if ((strncmp(buffer, "alias", 5) == 0) && isspace(buffer[5])) {
264 char *alias, *mod;
Rob Landley72615752006-04-10 16:09:52 +0000265
Denis Vlasenkob68979a2007-11-02 23:31:10 +0000266 if (parse_tag_value(buffer + 6, &alias, &mod)) {
267 /* handle alias as a module dependent on the aliased module */
268 if (!*current) {
269 (*first) = (*current) = xzalloc(sizeof(struct dep_t));
270 } else {
271 (*current)->m_next = xzalloc(sizeof(struct dep_t));
272 (*current) = (*current)->m_next;
Rob Landley72615752006-04-10 16:09:52 +0000273 }
Denis Vlasenkob68979a2007-11-02 23:31:10 +0000274 (*current)->m_name = xstrdup(alias);
275 (*current)->m_isalias = 1;
Rob Landley72615752006-04-10 16:09:52 +0000276
Denis Vlasenkob68979a2007-11-02 23:31:10 +0000277 if ((strcmp(mod, "off") == 0) || (strcmp(mod, "null") == 0)) {
278 /*(*current)->m_depcnt = 0; - done by xzalloc */
279 /*(*current)->m_deparr = 0;*/
280 } else {
281 (*current)->m_depcnt = 1;
282 (*current)->m_deparr = xmalloc(sizeof(char *));
283 (*current)->m_deparr[0] = xstrdup(mod);
284 }
285 /*(*current)->m_next = NULL; - done by xzalloc */
286 }
287 } else if ((strncmp(buffer, "options", 7) == 0) && isspace(buffer[7])) {
288 char *mod, *opt;
Rob Landley72615752006-04-10 16:09:52 +0000289
Denis Vlasenkob68979a2007-11-02 23:31:10 +0000290 /* split the line in the module/alias name, and options */
291 if (parse_tag_value(buffer + 8, &mod, &opt)) {
292 struct dep_t *dt;
293
294 /* find the corresponding module */
295 for (dt = *first; dt; dt = dt->m_next) {
296 if (strcmp(dt->m_name, mod) == 0)
297 break;
298 }
299 if (dt) {
300 if (ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS) {
301 char* new_opt = NULL;
302 while ((opt = parse_command_string(opt, &new_opt))) {
303 dt->m_options = append_option(dt->m_options, new_opt);
Rob Landley72615752006-04-10 16:09:52 +0000304 }
Denis Vlasenkob68979a2007-11-02 23:31:10 +0000305 } else {
306 dt->m_options = append_option(dt->m_options, opt);
Rob Landley72615752006-04-10 16:09:52 +0000307 }
308 }
Rob Landley72615752006-04-10 16:09:52 +0000309 }
Denis Vlasenkob68979a2007-11-02 23:31:10 +0000310 } else if ((strncmp(buffer, "include", 7) == 0) && isspace(buffer[7])) {
311 int fdi;
312 char *filename;
313
314 filename = skip_whitespace(buffer + 8);
315 fdi = open(filename, O_RDONLY);
316 if (fdi >= 0) {
317 include_conf(first, current, buffer, buflen, fdi);
318 close(fdi);
319 }
Rob Landley72615752006-04-10 16:09:52 +0000320 }
Denis Vlasenkob68979a2007-11-02 23:31:10 +0000321 } /* while (reads(...)) */
Rob Landley72615752006-04-10 16:09:52 +0000322}
323
324/*
Mike Frysingerc5d9e8f2007-02-08 06:30:58 +0000325 * This function builds a list of dependency rules from /lib/modules/`uname -r`/modules.dep.
Bernhard Reutner-Fischere3c150b2006-05-19 11:24:28 +0000326 * It then fills every modules and aliases with their default options, found by parsing
Rob Landleye9190962005-12-12 19:38:44 +0000327 * modprobe.conf (or modules.conf, or conf.modules).
328 */
Denis Vlasenkocf704332006-10-27 15:12:50 +0000329static struct dep_t *build_dep(void)
Rob Landleye9190962005-12-12 19:38:44 +0000330{
331 int fd;
332 struct utsname un;
Denis Vlasenkob68979a2007-11-02 23:31:10 +0000333 struct dep_t *first = NULL;
334 struct dep_t *current = NULL;
"Vladimir N. Oleynik"4fc92202006-02-02 14:48:54 +0000335 char *filename;
Rob Landleye9190962005-12-12 19:38:44 +0000336 int continuation_line = 0;
337 int k_version;
338
Denis Vlasenkocf704332006-10-27 15:12:50 +0000339 if (uname(&un))
Rob Landleye9190962005-12-12 19:38:44 +0000340 bb_error_msg_and_die("can't determine kernel version");
341
Denis Vlasenkocf704332006-10-27 15:12:50 +0000342 k_version = 0;
Rob Landleye9190962005-12-12 19:38:44 +0000343 if (un.release[0] == '2') {
344 k_version = un.release[2] - '0';
345 }
346
Denis Vlasenkocf704332006-10-27 15:12:50 +0000347 filename = xasprintf("/lib/modules/%s/modules.dep", un.release);
348 fd = open(filename, O_RDONLY);
Bernhard Reutner-Fischere3c150b2006-05-19 11:24:28 +0000349 if (ENABLE_FEATURE_CLEAN_UP)
350 free(filename);
Rob Landley3afb0702006-05-18 20:41:43 +0000351 if (fd < 0) {
Rob Landleye9190962005-12-12 19:38:44 +0000352 /* Ok, that didn't work. Fall back to looking in /lib/modules */
Denis Vlasenkocf704332006-10-27 15:12:50 +0000353 fd = open("/lib/modules/modules.dep", O_RDONLY);
354 if (fd < 0) {
Denis Vlasenkob68979a2007-11-02 23:31:10 +0000355 bb_error_msg_and_die("cannot parse modules.dep");
Rob Landleye9190962005-12-12 19:38:44 +0000356 }
357 }
358
Denis Vlasenkob68979a2007-11-02 23:31:10 +0000359 while (reads(fd, line_buffer, sizeof(line_buffer))) {
360 int l = strlen(line_buffer);
Rob Landleye9190962005-12-12 19:38:44 +0000361 char *p = 0;
362
Denis Vlasenkob68979a2007-11-02 23:31:10 +0000363 while (l > 0 && isspace(line_buffer[l-1])) {
364 line_buffer[l-1] = '\0';
Rob Landleye9190962005-12-12 19:38:44 +0000365 l--;
366 }
367
Denis Vlasenkocf704332006-10-27 15:12:50 +0000368 if (l == 0) {
Rob Landleye9190962005-12-12 19:38:44 +0000369 continuation_line = 0;
370 continue;
371 }
372
373 /* Is this a new module dep description? */
Denis Vlasenkocf704332006-10-27 15:12:50 +0000374 if (!continuation_line) {
Bernhard Reutner-Fischer17d355c2005-12-14 08:32:44 +0000375 /* find the dep beginning */
Denis Vlasenkob68979a2007-11-02 23:31:10 +0000376 char *col = strchr(line_buffer, ':');
Rob Landleye9190962005-12-12 19:38:44 +0000377 char *dot = col;
378
Denis Vlasenkocf704332006-10-27 15:12:50 +0000379 if (col) {
Rob Landleye9190962005-12-12 19:38:44 +0000380 /* This line is a dep description */
Denis Vlasenkodc757aa2007-06-30 08:04:05 +0000381 const char *mods;
Rob Landleye9190962005-12-12 19:38:44 +0000382 char *modpath;
383 char *mod;
384
385 /* Find the beginning of the module file name */
Denis Vlasenkob68979a2007-11-02 23:31:10 +0000386 *col = '\0';
387 mods = bb_basename(line_buffer);
Rob Landleye9190962005-12-12 19:38:44 +0000388
389 /* find the path of the module */
Denis Vlasenkob68979a2007-11-02 23:31:10 +0000390 modpath = strchr(line_buffer, '/'); /* ... and this is the path */
Denis Vlasenkocf704332006-10-27 15:12:50 +0000391 if (!modpath)
Denis Vlasenkob68979a2007-11-02 23:31:10 +0000392 modpath = line_buffer; /* module with no path */
Rob Landleye9190962005-12-12 19:38:44 +0000393 /* find the end of the module name in the file name */
Denis Vlasenkocf704332006-10-27 15:12:50 +0000394 if (ENABLE_FEATURE_2_6_MODULES &&
Denis Vlasenkob68979a2007-11-02 23:31:10 +0000395 (k_version > 4) && (col[-3] == '.') &&
396 (col[-2] == 'k') && (col[-1] == 'o'))
Rob Landleye9190962005-12-12 19:38:44 +0000397 dot = col - 3;
Denis Vlasenkob68979a2007-11-02 23:31:10 +0000398 else if ((col[-2] == '.') && (col[-1] == 'o'))
399 dot = col - 2;
Rob Landleye9190962005-12-12 19:38:44 +0000400
Denis Vlasenkocf704332006-10-27 15:12:50 +0000401 mod = xstrndup(mods, dot - mods);
Rob Landleye9190962005-12-12 19:38:44 +0000402
403 /* enqueue new module */
Denis Vlasenkocf704332006-10-27 15:12:50 +0000404 if (!current) {
Denis Vlasenkob68979a2007-11-02 23:31:10 +0000405 first = current = xzalloc(sizeof(struct dep_t));
Mike Frysingerc5d9e8f2007-02-08 06:30:58 +0000406 } else {
Denis Vlasenkob68979a2007-11-02 23:31:10 +0000407 current->m_next = xzalloc(sizeof(struct dep_t));
Denis Vlasenkocf704332006-10-27 15:12:50 +0000408 current = current->m_next;
Rob Landleye9190962005-12-12 19:38:44 +0000409 }
Denis Vlasenkob68979a2007-11-02 23:31:10 +0000410 current->m_name = mod;
411 current->m_path = xstrdup(modpath);
412 /*current->m_options = NULL; - xzalloc did it*/
413 /*current->m_isalias = 0;*/
414 /*current->m_depcnt = 0;*/
415 /*current->m_deparr = 0;*/
416 /*current->m_next = 0;*/
Rob Landleye9190962005-12-12 19:38:44 +0000417
418 p = col + 1;
Mike Frysingerc5d9e8f2007-02-08 06:30:58 +0000419 } else
Rob Landleye9190962005-12-12 19:38:44 +0000420 /* this line is not a dep description */
Denis Vlasenkob68979a2007-11-02 23:31:10 +0000421 p = NULL;
Mike Frysingerc5d9e8f2007-02-08 06:30:58 +0000422 } else
Rob Landleye9190962005-12-12 19:38:44 +0000423 /* It's a dep description continuation */
Denis Vlasenkob68979a2007-11-02 23:31:10 +0000424 p = line_buffer;
Rob Landleye9190962005-12-12 19:38:44 +0000425
Denis Vlasenkocf704332006-10-27 15:12:50 +0000426 while (p && *p && isblank(*p))
Rob Landleye9190962005-12-12 19:38:44 +0000427 p++;
428
429 /* p points to the first dependable module; if NULL, no dependable module */
Denis Vlasenkocf704332006-10-27 15:12:50 +0000430 if (p && *p) {
Denis Vlasenkob68979a2007-11-02 23:31:10 +0000431 char *end = &line_buffer[l-1];
Denis Vlasenkodc757aa2007-06-30 08:04:05 +0000432 const char *deps;
Rob Landleye9190962005-12-12 19:38:44 +0000433 char *dep;
434 char *next;
435 int ext = 0;
436
Denis Vlasenkocf704332006-10-27 15:12:50 +0000437 while (isblank(*end) || (*end == '\\'))
Rob Landleye9190962005-12-12 19:38:44 +0000438 end--;
439
Denis Vlasenkocf704332006-10-27 15:12:50 +0000440 do {
Rob Landleye9190962005-12-12 19:38:44 +0000441 /* search the end of the dependency */
Denis Vlasenkocf704332006-10-27 15:12:50 +0000442 next = strchr(p, ' ');
443 if (next) {
Denis Vlasenkob68979a2007-11-02 23:31:10 +0000444 *next = '\0';
Rob Landleye9190962005-12-12 19:38:44 +0000445 next--;
Mike Frysingerc5d9e8f2007-02-08 06:30:58 +0000446 } else
Rob Landleye9190962005-12-12 19:38:44 +0000447 next = end;
448
Bernhard Reutner-Fischer17d355c2005-12-14 08:32:44 +0000449 /* find the beginning of the module file name */
Denis Vlasenkodc757aa2007-06-30 08:04:05 +0000450 deps = bb_basename(p);
451 if (deps == p) {
Denis Vlasenkocf704332006-10-27 15:12:50 +0000452 while (isblank(*deps))
Rob Landleye9190962005-12-12 19:38:44 +0000453 deps++;
Denis Vlasenkodc757aa2007-06-30 08:04:05 +0000454 }
Rob Landleye9190962005-12-12 19:38:44 +0000455
456 /* find the end of the module name in the file name */
Denis Vlasenkocf704332006-10-27 15:12:50 +0000457 if (ENABLE_FEATURE_2_6_MODULES
Denis Vlasenkob68979a2007-11-02 23:31:10 +0000458 && (k_version > 4) && (next[-2] == '.')
459 && (next[-1] == 'k') && (next[0] == 'o'))
Rob Landleye9190962005-12-12 19:38:44 +0000460 ext = 3;
Denis Vlasenkob68979a2007-11-02 23:31:10 +0000461 else if ((next[-1] == '.') && (next[0] == 'o'))
462 ext = 2;
Rob Landleye9190962005-12-12 19:38:44 +0000463
464 /* Cope with blank lines */
465 if ((next-deps-ext+1) <= 0)
466 continue;
Denis Vlasenkocf704332006-10-27 15:12:50 +0000467 dep = xstrndup(deps, next - deps - ext + 1);
Rob Landleye9190962005-12-12 19:38:44 +0000468
469 /* Add the new dependable module name */
Denis Vlasenkocf704332006-10-27 15:12:50 +0000470 current->m_depcnt++;
471 current->m_deparr = xrealloc(current->m_deparr,
472 sizeof(char *) * current->m_depcnt);
473 current->m_deparr[current->m_depcnt - 1] = dep;
Rob Landleye9190962005-12-12 19:38:44 +0000474
475 p = next + 2;
476 } while (next < end);
477 }
478
479 /* is there other dependable module(s) ? */
Denis Vlasenkob68979a2007-11-02 23:31:10 +0000480 continuation_line = (line_buffer[l-1] == '\\');
481 } /* while (reads(...)) */
Denis Vlasenkocf704332006-10-27 15:12:50 +0000482 close(fd);
Rob Landleye9190962005-12-12 19:38:44 +0000483
Rob Landley3b0cfb42006-07-19 21:33:42 +0000484 /*
485 * First parse system-specific options and aliases
486 * as they take precedence over the kernel ones.
Mike Frysinger4423e5b2007-02-08 07:03:44 +0000487 * >=2.6: we only care about modprobe.conf
488 * <=2.4: we care about modules.conf and conf.modules
Rob Landley3b0cfb42006-07-19 21:33:42 +0000489 */
Mike Frysinger4423e5b2007-02-08 07:03:44 +0000490 if (ENABLE_FEATURE_2_6_MODULES
491 && (fd = open("/etc/modprobe.conf", O_RDONLY)) < 0)
492 if (ENABLE_FEATURE_2_4_MODULES
493 && (fd = open("/etc/modules.conf", O_RDONLY)) < 0)
494 if (ENABLE_FEATURE_2_4_MODULES)
495 fd = open("/etc/conf.modules", O_RDONLY);
Rob Landleye9190962005-12-12 19:38:44 +0000496
Rob Landley3b0cfb42006-07-19 21:33:42 +0000497 if (fd >= 0) {
Denis Vlasenkob68979a2007-11-02 23:31:10 +0000498 include_conf(&first, &current, line_buffer, sizeof(line_buffer), fd);
Rob Landley3b0cfb42006-07-19 21:33:42 +0000499 close(fd);
Rob Landleye9190962005-12-12 19:38:44 +0000500 }
Rob Landley72615752006-04-10 16:09:52 +0000501
Rob Landley3b0cfb42006-07-19 21:33:42 +0000502 /* Only 2.6 has a modules.alias file */
503 if (ENABLE_FEATURE_2_6_MODULES) {
Denis Vlasenkof8483052007-08-16 10:40:06 +0000504 /* Parse kernel-declared module aliases */
Rob Landleyd921b2e2006-08-03 15:41:12 +0000505 filename = xasprintf("/lib/modules/%s/modules.alias", un.release);
Denis Vlasenkocf704332006-10-27 15:12:50 +0000506 fd = open(filename, O_RDONLY);
507 if (fd < 0) {
Rob Landley3b0cfb42006-07-19 21:33:42 +0000508 /* Ok, that didn't work. Fall back to looking in /lib/modules */
Denis Vlasenkocf704332006-10-27 15:12:50 +0000509 fd = open("/lib/modules/modules.alias", O_RDONLY);
Rob Landley3b0cfb42006-07-19 21:33:42 +0000510 }
511 if (ENABLE_FEATURE_CLEAN_UP)
512 free(filename);
513
514 if (fd >= 0) {
Denis Vlasenkob68979a2007-11-02 23:31:10 +0000515 include_conf(&first, &current, line_buffer, sizeof(line_buffer), fd);
Rob Landley3b0cfb42006-07-19 21:33:42 +0000516 close(fd);
517 }
Denis Vlasenkof8483052007-08-16 10:40:06 +0000518
519 /* Parse kernel-declared symbol aliases */
520 filename = xasprintf("/lib/modules/%s/modules.symbols", un.release);
521 fd = open(filename, O_RDONLY);
522 if (fd < 0) {
523 /* Ok, that didn't work. Fall back to looking in /lib/modules */
524 fd = open("/lib/modules/modules.symbols", O_RDONLY);
525 }
526 if (ENABLE_FEATURE_CLEAN_UP)
527 free(filename);
528
529 if (fd >= 0) {
Denis Vlasenkob68979a2007-11-02 23:31:10 +0000530 include_conf(&first, &current, line_buffer, sizeof(line_buffer), fd);
Denis Vlasenkof8483052007-08-16 10:40:06 +0000531 close(fd);
532 }
Rob Landley3b0cfb42006-07-19 21:33:42 +0000533 }
Rob Landleye9190962005-12-12 19:38:44 +0000534
535 return first;
536}
537
538/* return 1 = loaded, 0 = not loaded, -1 = can't tell */
Denis Vlasenkocf704332006-10-27 15:12:50 +0000539static int already_loaded(const char *name)
Rob Landleye9190962005-12-12 19:38:44 +0000540{
Rob Landleyd7605602006-06-14 01:51:16 +0000541 int fd, ret = 0;
Rob Landleye9190962005-12-12 19:38:44 +0000542
Denis Vlasenkocf704332006-10-27 15:12:50 +0000543 fd = open("/proc/modules", O_RDONLY);
Rob Landleye9190962005-12-12 19:38:44 +0000544 if (fd < 0)
545 return -1;
546
Denis Vlasenkob68979a2007-11-02 23:31:10 +0000547 while (reads(fd, line_buffer, sizeof(line_buffer))) {
Rob Landleye9190962005-12-12 19:38:44 +0000548 char *p;
549
Denis Vlasenkob68979a2007-11-02 23:31:10 +0000550 p = strchr(line_buffer, ' ');
Rob Landleye9190962005-12-12 19:38:44 +0000551 if (p) {
Rob Landleyd7605602006-06-14 01:51:16 +0000552 const char *n;
553
554 // Truncate buffer at first space and check for matches, with
555 // the idiosyncrasy that _ and - are interchangeable because the
556 // 2.6 kernel does weird things.
557
Denis Vlasenkob68979a2007-11-02 23:31:10 +0000558 *p = '\0';
559 for (p = line_buffer, n = name; ; p++, n++) {
Rob Landleyd7605602006-06-14 01:51:16 +0000560 if (*p != *n) {
561 if ((*p == '_' || *p == '-') && (*n == '_' || *n == '-'))
562 continue;
563 break;
564 }
565 // If we made it to the end, that's a match.
566 if (!*p) {
567 ret = 1;
568 goto done;
569 }
Rob Landleye9190962005-12-12 19:38:44 +0000570 }
571 }
572 }
Denis Vlasenkob68979a2007-11-02 23:31:10 +0000573 done:
574 close(fd);
Mike Frysinger135cee32006-06-21 23:03:37 +0000575 return ret;
Rob Landleye9190962005-12-12 19:38:44 +0000576}
577
Denis Vlasenko322661d2007-01-29 23:43:52 +0000578static int mod_process(const struct mod_list_t *list, int do_insert)
Eric Andersen60e56f52002-04-26 06:04:01 +0000579{
Eric Andersen44b57582004-08-03 08:23:33 +0000580 int rc = 0;
Rob Landley79e1cab2005-11-15 00:08:29 +0000581 char **argv = NULL;
Rob Landleye9190962005-12-12 19:38:44 +0000582 struct mod_opt_t *opts;
583 int argc_malloc; /* never used when CONFIG_FEATURE_CLEAN_UP not defined */
Paul Fox8eeb6552005-08-04 18:33:36 +0000584 int argc;
Eric Andersen864b7972002-05-03 15:48:26 +0000585
Denis Vlasenkocf704332006-10-27 15:12:50 +0000586 while (list) {
Paul Fox8eeb6552005-08-04 18:33:36 +0000587 argc = 0;
Denis Vlasenkocf704332006-10-27 15:12:50 +0000588 if (ENABLE_FEATURE_CLEAN_UP)
Rob Landleye9190962005-12-12 19:38:44 +0000589 argc_malloc = 0;
590 /* If CONFIG_FEATURE_CLEAN_UP is not defined, then we leak memory
591 * each time we allocate memory for argv.
592 * But it is (quite) small amounts of memory that leak each
593 * time a module is loaded, and it is reclaimed when modprobe
594 * exits anyway (even when standalone shell?).
595 * This could become a problem when loading a module with LOTS of
596 * dependencies, with LOTS of options for each dependencies, with
597 * very little memory on the target... But in that case, the module
598 * would not load because there is no more memory, so there's no
599 * problem. */
600 /* enough for minimal insmod (5 args + NULL) or rmmod (3 args + NULL) */
Denis Vlasenkocf704332006-10-27 15:12:50 +0000601 argv = xmalloc(6 * sizeof(char*));
602 if (do_insert) {
603 if (already_loaded(list->m_name) != 1) {
Denis Vlasenko322661d2007-01-29 23:43:52 +0000604 argv[argc++] = (char*)"insmod";
Rob Landleyd7605602006-06-14 01:51:16 +0000605 if (ENABLE_FEATURE_2_4_MODULES) {
606 if (do_syslog)
Denis Vlasenko322661d2007-01-29 23:43:52 +0000607 argv[argc++] = (char*)"-s";
Rob Landleyd7605602006-06-14 01:51:16 +0000608 if (autoclean)
Denis Vlasenko322661d2007-01-29 23:43:52 +0000609 argv[argc++] = (char*)"-k";
Rob Landleyd7605602006-06-14 01:51:16 +0000610 if (quiet)
Denis Vlasenko322661d2007-01-29 23:43:52 +0000611 argv[argc++] = (char*)"-q";
Denis Vlasenkocf704332006-10-27 15:12:50 +0000612 else if (verbose) /* verbose and quiet are mutually exclusive */
Denis Vlasenko322661d2007-01-29 23:43:52 +0000613 argv[argc++] = (char*)"-v";
Rob Landleyd7605602006-06-14 01:51:16 +0000614 }
Denis Vlasenkocf704332006-10-27 15:12:50 +0000615 argv[argc++] = list->m_path;
616 if (ENABLE_FEATURE_CLEAN_UP)
Rob Landleye9190962005-12-12 19:38:44 +0000617 argc_malloc = argc;
Denis Vlasenkocf704332006-10-27 15:12:50 +0000618 opts = list->m_options;
619 while (opts) {
Rob Landleye9190962005-12-12 19:38:44 +0000620 /* Add one more option */
Rob Landley79e1cab2005-11-15 00:08:29 +0000621 argc++;
Denis Vlasenkob68979a2007-11-02 23:31:10 +0000622 argv = xrealloc(argv, (argc + 1) * sizeof(char*));
Denis Vlasenkocf704332006-10-27 15:12:50 +0000623 argv[argc-1] = opts->m_opt_val;
624 opts = opts->m_next;
Rob Landley79e1cab2005-11-15 00:08:29 +0000625 }
Paul Fox8eeb6552005-08-04 18:33:36 +0000626 }
Glenn L McGrath350733a2003-09-08 00:32:49 +0000627 } else {
Eric Andersen807bd842004-08-19 18:30:31 +0000628 /* modutils uses short name for removal */
Denis Vlasenkocf704332006-10-27 15:12:50 +0000629 if (already_loaded(list->m_name) != 0) {
Denis Vlasenko322661d2007-01-29 23:43:52 +0000630 argv[argc++] = (char*)"rmmod";
Paul Fox8eeb6552005-08-04 18:33:36 +0000631 if (do_syslog)
Denis Vlasenko322661d2007-01-29 23:43:52 +0000632 argv[argc++] = (char*)"-s";
633 argv[argc++] = (char*)list->m_name;
Denis Vlasenkocf704332006-10-27 15:12:50 +0000634 if (ENABLE_FEATURE_CLEAN_UP)
Rob Landleye9190962005-12-12 19:38:44 +0000635 argc_malloc = argc;
Paul Fox8eeb6552005-08-04 18:33:36 +0000636 }
Glenn L McGrath350733a2003-09-08 00:32:49 +0000637 }
Paul Fox8eeb6552005-08-04 18:33:36 +0000638 argv[argc] = NULL;
Eric Andersen3b1a7442003-12-24 20:30:45 +0000639
Paul Fox8eeb6552005-08-04 18:33:36 +0000640 if (argc) {
Glenn L McGrathfcf47322004-08-11 05:56:30 +0000641 if (verbose) {
Denis Vlasenkocf704332006-10-27 15:12:50 +0000642 printf("%s module %s\n", do_insert?"Loading":"Unloading", list->m_name);
Glenn L McGrathfcf47322004-08-11 05:56:30 +0000643 }
644 if (!show_only) {
Rob Landleyd921b2e2006-08-03 15:41:12 +0000645 int rc2 = wait4pid(spawn(argv));
Rob Landley4b5827a2006-08-22 23:50:11 +0000646
Glenn L McGrathfcf47322004-08-11 05:56:30 +0000647 if (do_insert) {
648 rc = rc2; /* only last module matters */
Mike Frysingerc5d9e8f2007-02-08 06:30:58 +0000649 } else if (!rc2) {
Glenn L McGrathfcf47322004-08-11 05:56:30 +0000650 rc = 0; /* success if remove any mod */
651 }
652 }
Denis Vlasenkocf704332006-10-27 15:12:50 +0000653 if (ENABLE_FEATURE_CLEAN_UP) {
Rob Landleye9190962005-12-12 19:38:44 +0000654 /* the last value in the array has index == argc, but
655 * it is the terminating NULL, so we must not free it. */
Denis Vlasenkocf704332006-10-27 15:12:50 +0000656 while (argc_malloc < argc) {
657 free(argv[argc_malloc++]);
658 }
Rob Landley79e1cab2005-11-15 00:08:29 +0000659 }
Eric Andersen908e3622003-06-20 09:56:37 +0000660 }
Denis Vlasenkocf704332006-10-27 15:12:50 +0000661 if (ENABLE_FEATURE_CLEAN_UP) {
662 free(argv);
Rob Landleye9190962005-12-12 19:38:44 +0000663 argv = NULL;
Rob Landley79e1cab2005-11-15 00:08:29 +0000664 }
Denis Vlasenkocf704332006-10-27 15:12:50 +0000665 list = do_insert ? list->m_prev : list->m_next;
Eric Andersen60e56f52002-04-26 06:04:01 +0000666 }
Eric Andersen908e3622003-06-20 09:56:37 +0000667 return (show_only) ? 0 : rc;
Eric Andersen60e56f52002-04-26 06:04:01 +0000668}
669
Rob Landleye9190962005-12-12 19:38:44 +0000670/*
Rob Landleybf30c692006-07-20 17:36:18 +0000671 * Check the matching between a pattern and a module name.
672 * We need this as *_* is equivalent to *-*, even in pattern matching.
673 */
Denis Vlasenkoac678ec2007-04-16 22:32:04 +0000674static int check_pattern(const char* pat_src, const char* mod_src)
675{
Rob Landleybf30c692006-07-20 17:36:18 +0000676 int ret;
677
678 if (ENABLE_FEATURE_MODPROBE_FANCY_ALIAS) {
679 char* pat;
680 char* mod;
681 char* p;
682
Denis Vlasenko6398cf42007-04-11 17:04:29 +0000683 pat = xstrdup(pat_src);
684 mod = xstrdup(mod_src);
Rob Landleybf30c692006-07-20 17:36:18 +0000685
Denis Vlasenkocf704332006-10-27 15:12:50 +0000686 for (p = pat; (p = strchr(p, '-')); *p++ = '_');
687 for (p = mod; (p = strchr(p, '-')); *p++ = '_');
Rob Landleybf30c692006-07-20 17:36:18 +0000688
Denis Vlasenkocf704332006-10-27 15:12:50 +0000689 ret = fnmatch(pat, mod, 0);
Rob Landleybf30c692006-07-20 17:36:18 +0000690
691 if (ENABLE_FEATURE_CLEAN_UP) {
Denis Vlasenkoff131b92007-04-10 15:42:06 +0000692 free(pat);
693 free(mod);
Rob Landleybf30c692006-07-20 17:36:18 +0000694 }
695
696 return ret;
Rob Landleybf30c692006-07-20 17:36:18 +0000697 }
Denis Vlasenkob68979a2007-11-02 23:31:10 +0000698 return fnmatch(pat_src, mod_src, 0);
Rob Landleybf30c692006-07-20 17:36:18 +0000699}
700
701/*
Rob Landleye9190962005-12-12 19:38:44 +0000702 * Builds the dependency list (aka stack) of a module.
703 * head: the highest module in the stack (last to insmod, first to rmmod)
704 * tail: the lowest module in the stack (first to insmod, last to rmmod)
705 */
Denis Vlasenkocf704332006-10-27 15:12:50 +0000706static void check_dep(char *mod, struct mod_list_t **head, struct mod_list_t **tail)
Eric Andersen60e56f52002-04-26 06:04:01 +0000707{
Robert Griebl52e8d062002-05-14 23:42:08 +0000708 struct mod_list_t *find;
Eric Andersen60e56f52002-04-26 06:04:01 +0000709 struct dep_t *dt;
Denis Vlasenkob68979a2007-11-02 23:31:10 +0000710 struct mod_opt_t *opt = NULL;
711 char *path = NULL;
Robert Griebl52e8d062002-05-14 23:42:08 +0000712
Bernhard Reutner-Fischer2c351a82006-06-03 19:08:49 +0000713 /* Search for the given module name amongst all dependency rules.
714 * The module name in a dependency rule can be a shell pattern,
715 * so try to match the given module name against such a pattern.
716 * Of course if the name in the dependency rule is a plain string,
717 * then we consider it a pattern, and matching will still work. */
Denis Vlasenkocf704332006-10-27 15:12:50 +0000718 for (dt = depend; dt; dt = dt->m_next) {
719 if (check_pattern(dt->m_name, mod) == 0) {
Robert Griebl1d4ef2a2002-05-28 21:32:10 +0000720 break;
Robert Grieblaead70b2002-07-26 15:54:20 +0000721 }
Robert Griebl1d4ef2a2002-05-28 21:32:10 +0000722 }
Eric Andersen3b1a7442003-12-24 20:30:45 +0000723
Denis Vlasenkocf704332006-10-27 15:12:50 +0000724 if (!dt) {
725 bb_error_msg("module %s not found", mod);
Rob Landleye9190962005-12-12 19:38:44 +0000726 return;
727 }
728
Robert Griebl1d4ef2a2002-05-28 21:32:10 +0000729 // resolve alias names
Denis Vlasenkocf704332006-10-27 15:12:50 +0000730 while (dt->m_isalias) {
731 if (dt->m_depcnt == 1) {
Robert Grieblaead70b2002-07-26 15:54:20 +0000732 struct dep_t *adt;
Eric Andersen3b1a7442003-12-24 20:30:45 +0000733
Denis Vlasenkocf704332006-10-27 15:12:50 +0000734 for (adt = depend; adt; adt = adt->m_next) {
735 if (check_pattern(adt->m_name, dt->m_deparr[0]) == 0)
Robert Grieblaead70b2002-07-26 15:54:20 +0000736 break;
Robert Grieblaead70b2002-07-26 15:54:20 +0000737 }
Denis Vlasenkocf704332006-10-27 15:12:50 +0000738 if (adt) {
Rob Landleye9190962005-12-12 19:38:44 +0000739 /* This is the module we are aliased to */
Denis Vlasenkocf704332006-10-27 15:12:50 +0000740 struct mod_opt_t *opts = dt->m_options;
Rob Landleye9190962005-12-12 19:38:44 +0000741 /* Option of the alias are appended to the options of the module */
Denis Vlasenkocf704332006-10-27 15:12:50 +0000742 while (opts) {
743 adt->m_options = append_option(adt->m_options, opts->m_opt_val);
744 opts = opts->m_next;
Rob Landleye9190962005-12-12 19:38:44 +0000745 }
Eric Andersen716ccb22004-01-10 11:29:31 +0000746 dt = adt;
Mike Frysingerc5d9e8f2007-02-08 06:30:58 +0000747 } else {
Denis Vlasenkocf704332006-10-27 15:12:50 +0000748 bb_error_msg("module %s not found", mod);
Robert Griebl70112da2002-07-29 20:28:38 +0000749 return;
Rob Landleye9190962005-12-12 19:38:44 +0000750 }
Mike Frysingerc5d9e8f2007-02-08 06:30:58 +0000751 } else {
Denis Vlasenkocf704332006-10-27 15:12:50 +0000752 bb_error_msg("bad alias %s", dt->m_name);
Eric Andersen716ccb22004-01-10 11:29:31 +0000753 return;
Rob Landleye9190962005-12-12 19:38:44 +0000754 }
Robert Griebl1d4ef2a2002-05-28 21:32:10 +0000755 }
Eric Andersen3b1a7442003-12-24 20:30:45 +0000756
Denis Vlasenkocf704332006-10-27 15:12:50 +0000757 mod = dt->m_name;
758 path = dt->m_path;
759 opt = dt->m_options;
Bernhard Reutner-Fischer17d355c2005-12-14 08:32:44 +0000760
Robert Griebl52e8d062002-05-14 23:42:08 +0000761 // search for duplicates
Denis Vlasenkocf704332006-10-27 15:12:50 +0000762 for (find = *head; find; find = find->m_next) {
Denis Vlasenkob68979a2007-11-02 23:31:10 +0000763 if (strcmp(mod, find->m_name) == 0) {
764 // found -> dequeue it
Robert Griebl52e8d062002-05-14 23:42:08 +0000765
Denis Vlasenkocf704332006-10-27 15:12:50 +0000766 if (find->m_prev)
767 find->m_prev->m_next = find->m_next;
Robert Griebl52e8d062002-05-14 23:42:08 +0000768 else
Denis Vlasenkocf704332006-10-27 15:12:50 +0000769 *head = find->m_next;
Eric Andersen3b1a7442003-12-24 20:30:45 +0000770
Denis Vlasenkocf704332006-10-27 15:12:50 +0000771 if (find->m_next)
772 find->m_next->m_prev = find->m_prev;
Robert Griebl52e8d062002-05-14 23:42:08 +0000773 else
Denis Vlasenkocf704332006-10-27 15:12:50 +0000774 *tail = find->m_prev;
Eric Andersen3b1a7442003-12-24 20:30:45 +0000775
Robert Griebl52e8d062002-05-14 23:42:08 +0000776 break; // there can be only one duplicate
Eric Andersen716ccb22004-01-10 11:29:31 +0000777 }
Robert Griebl52e8d062002-05-14 23:42:08 +0000778 }
779
Denis Vlasenkocf704332006-10-27 15:12:50 +0000780 if (!find) { // did not find a duplicate
Denis Vlasenkob68979a2007-11-02 23:31:10 +0000781 find = xzalloc(sizeof(struct mod_list_t));
Denis Vlasenkocf704332006-10-27 15:12:50 +0000782 find->m_name = mod;
783 find->m_path = path;
784 find->m_options = opt;
Robert Griebl52e8d062002-05-14 23:42:08 +0000785 }
786
Eric Andersen716ccb22004-01-10 11:29:31 +0000787 // enqueue at tail
Denis Vlasenkocf704332006-10-27 15:12:50 +0000788 if (*tail)
789 (*tail)->m_next = find;
790 find->m_prev = *tail;
Denis Vlasenkocb12cb22007-11-06 11:34:03 +0000791 find->m_next = NULL; /* possibly NOT done by xzalloc! */
Robert Griebl1d4ef2a2002-05-28 21:32:10 +0000792
Denis Vlasenkocf704332006-10-27 15:12:50 +0000793 if (!*head)
Robert Griebl52e8d062002-05-14 23:42:08 +0000794 *head = find;
795 *tail = find;
Eric Andersen3b1a7442003-12-24 20:30:45 +0000796
Denis Vlasenkocf704332006-10-27 15:12:50 +0000797 if (dt) {
Robert Griebl1d4ef2a2002-05-28 21:32:10 +0000798 int i;
Eric Andersen3b1a7442003-12-24 20:30:45 +0000799
Rob Landleye9190962005-12-12 19:38:44 +0000800 /* Add all dependable module for that new module */
Denis Vlasenkocf704332006-10-27 15:12:50 +0000801 for (i = 0; i < dt->m_depcnt; i++)
802 check_dep(dt->m_deparr[i], head, tail);
Robert Griebl1d4ef2a2002-05-28 21:32:10 +0000803 }
Robert Griebl52e8d062002-05-14 23:42:08 +0000804}
805
Denis Vlasenkocf704332006-10-27 15:12:50 +0000806static int mod_insert(char *mod, int argc, char **argv)
Robert Griebl52e8d062002-05-14 23:42:08 +0000807{
Denis Vlasenko322661d2007-01-29 23:43:52 +0000808 struct mod_list_t *tail = NULL;
809 struct mod_list_t *head = NULL;
Eric Andersen908e3622003-06-20 09:56:37 +0000810 int rc;
Eric Andersen3b1a7442003-12-24 20:30:45 +0000811
Robert Griebl52e8d062002-05-14 23:42:08 +0000812 // get dep list for module mod
Denis Vlasenkocf704332006-10-27 15:12:50 +0000813 check_dep(mod, &head, &tail);
Eric Andersen3b1a7442003-12-24 20:30:45 +0000814
Denis Vlasenko322661d2007-01-29 23:43:52 +0000815 rc = 1;
Denis Vlasenkocf704332006-10-27 15:12:50 +0000816 if (head && tail) {
817 if (argc) {
Eric Andersen716ccb22004-01-10 11:29:31 +0000818 int i;
Robert Grieblaead70b2002-07-26 15:54:20 +0000819 // append module args
Denis Vlasenkocf704332006-10-27 15:12:50 +0000820 for (i = 0; i < argc; i++)
821 head->m_options = append_option(head->m_options, argv[i]);
Robert Griebl52e8d062002-05-14 23:42:08 +0000822 }
Eric Andersen3b1a7442003-12-24 20:30:45 +0000823
Robert Griebl52e8d062002-05-14 23:42:08 +0000824 // process tail ---> head
Denis Vlasenko322661d2007-01-29 23:43:52 +0000825 rc = mod_process(tail, 1);
826 if (rc) {
Rob Landley4b5827a2006-08-22 23:50:11 +0000827 /*
828 * In case of using udev, multiple instances of modprobe can be
829 * spawned to load the same module (think of two same usb devices,
830 * for example; or cold-plugging at boot time). Thus we shouldn't
831 * fail if the module was loaded, and not by us.
832 */
Denis Vlasenkocf704332006-10-27 15:12:50 +0000833 if (already_loaded(mod))
Rob Landley4b5827a2006-08-22 23:50:11 +0000834 rc = 0;
835 }
Robert Griebl52e8d062002-05-14 23:42:08 +0000836 }
Robert Griebl52e8d062002-05-14 23:42:08 +0000837 return rc;
838}
839
Denis Vlasenkocf704332006-10-27 15:12:50 +0000840static int mod_remove(char *mod)
Robert Griebl52e8d062002-05-14 23:42:08 +0000841{
Eric Andersen908e3622003-06-20 09:56:37 +0000842 int rc;
Denis Vlasenko322661d2007-01-29 23:43:52 +0000843 static const struct mod_list_t rm_a_dummy = { "-a", NULL, NULL, NULL, NULL };
Eric Andersen3b1a7442003-12-24 20:30:45 +0000844
Denis Vlasenko322661d2007-01-29 23:43:52 +0000845 struct mod_list_t *head = NULL;
846 struct mod_list_t *tail = NULL;
Eric Andersen3b1a7442003-12-24 20:30:45 +0000847
Denis Vlasenkocf704332006-10-27 15:12:50 +0000848 if (mod)
849 check_dep(mod, &head, &tail);
Robert Griebl52e8d062002-05-14 23:42:08 +0000850 else // autoclean
Denis Vlasenko322661d2007-01-29 23:43:52 +0000851 head = tail = (struct mod_list_t*) &rm_a_dummy;
Eric Andersen3b1a7442003-12-24 20:30:45 +0000852
Denis Vlasenko322661d2007-01-29 23:43:52 +0000853 rc = 1;
Denis Vlasenkocf704332006-10-27 15:12:50 +0000854 if (head && tail)
855 rc = mod_process(head, 0); // process head ---> tail
Eric Andersen908e3622003-06-20 09:56:37 +0000856 return rc;
Robert Griebl52e8d062002-05-14 23:42:08 +0000857}
858
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +0000859int modprobe_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
860int modprobe_main(int argc, char **argv)
Eric Andersen0139ca92001-07-22 23:01:03 +0000861{
Rob Landleye9190962005-12-12 19:38:44 +0000862 int rc = EXIT_SUCCESS;
"Vladimir N. Oleynik"4fc92202006-02-02 14:48:54 +0000863 char *unused;
Eric Andersen0139ca92001-07-22 23:01:03 +0000864
Denis Vlasenkoe7fca512007-11-10 01:32:18 +0000865 opt_complementary = "q-v:v-q";
Denis Vlasenkob68979a2007-11-02 23:31:10 +0000866 getopt32(argv, MAIN_OPT_STR, &unused, &unused);
867
868 if (option_mask32 & (DUMP_CONF_EXIT | LIST_ALL))
Denis Vlasenkocf704332006-10-27 15:12:50 +0000869 return EXIT_SUCCESS;
Denis Vlasenkob68979a2007-11-02 23:31:10 +0000870 if (option_mask32 & (RESTRICT_DIR | CONFIG_FILE))
Denis Vlasenkocf704332006-10-27 15:12:50 +0000871 bb_error_msg_and_die("-t and -C not supported");
Robert Griebl236abbf2002-05-22 23:34:35 +0000872
Denis Vlasenkocf704332006-10-27 15:12:50 +0000873 depend = build_dep();
Robert Griebl52e8d062002-05-14 23:42:08 +0000874
Denis Vlasenkocf704332006-10-27 15:12:50 +0000875 if (!depend)
876 bb_error_msg_and_die("cannot parse modules.dep");
Eric Andersen3b1a7442003-12-24 20:30:45 +0000877
Eric Andersen1b064192001-07-25 07:23:38 +0000878 if (remove_opt) {
Eric Andersen0139ca92001-07-22 23:01:03 +0000879 do {
Denis Vlasenkob68979a2007-11-02 23:31:10 +0000880 /* argv[optind] can be NULL here */
881 if (mod_remove(argv[optind])) {
Denis Vlasenkocf704332006-10-27 15:12:50 +0000882 bb_error_msg("failed to remove module %s",
883 argv[optind]);
Eric Andersen908e3622003-06-20 09:56:37 +0000884 rc = EXIT_FAILURE;
885 }
Denis Vlasenkocf704332006-10-27 15:12:50 +0000886 } while (++optind < argc);
Rob Landleye9190962005-12-12 19:38:44 +0000887 } else {
888 if (optind >= argc)
Denis Vlasenkocf704332006-10-27 15:12:50 +0000889 bb_error_msg_and_die("no module or pattern provided");
Eric Andersen3b1a7442003-12-24 20:30:45 +0000890
Denis Vlasenkocf704332006-10-27 15:12:50 +0000891 if (mod_insert(argv[optind], argc - optind - 1, argv + optind + 1))
892 bb_error_msg_and_die("failed to load module %s", argv[optind]);
Eric Andersen0139ca92001-07-22 23:01:03 +0000893 }
894
Rob Landleye9190962005-12-12 19:38:44 +0000895 /* Here would be a good place to free up memory allocated during the dependencies build. */
Eric Andersen3b1a7442003-12-24 20:30:45 +0000896
Rob Landleye9190962005-12-12 19:38:44 +0000897 return rc;
Eric Andersen0139ca92001-07-22 23:01:03 +0000898}