ab595c847ec0ec9f5f7812e392e5c9caa22b3a6f
[oweals/busybox.git] / modutils / modprobe.c
1 /* vi: set sw=4 ts=4: */
2 /*
3  * Modprobe written from scratch for BusyBox
4  *
5  * Copyright (c) 2002 by Robert Griebl, griebl@gmx.de
6  * Copyright (c) 2003 by Andrew Dennison, andrew.dennison@motec.com.au
7  * Copyright (c) 2005 by Jim Bauer, jfbauer@nfr.com
8  *
9  * Portions Copyright (c) 2005 by Yann E. MORIN, yann.morin.1998@anciens.enib.fr
10  *
11  * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
12 */
13
14 #include "busybox.h"
15 #include <sys/utsname.h>
16 #include <fnmatch.h>
17
18 struct mod_opt_t {      /* one-way list of options to pass to a module */
19         char *  m_opt_val;
20         struct mod_opt_t * m_next;
21 };
22
23 struct dep_t {  /* one-way list of dependency rules */
24         /* a dependency rule */
25         char *  m_name;                         /* the module name*/
26         char *  m_path;                         /* the module file path */
27         struct mod_opt_t *  m_options;  /* the module options */
28
29         int     m_isalias  : 1;                 /* the module is an alias */
30         int     m_reserved : 15;                /* stuffin' */
31
32         int     m_depcnt   : 16;                /* the number of dependable module(s) */
33         char ** m_deparr;                       /* the list of dependable module(s) */
34
35         struct dep_t * m_next;                  /* the next dependency rule */
36 };
37
38 struct mod_list_t {     /* two-way list of modules to process */
39         /* a module description */
40         char *  m_name;
41         char *  m_path;
42         struct mod_opt_t *  m_options;
43
44         struct mod_list_t * m_prev;
45         struct mod_list_t * m_next;
46 };
47
48
49 static struct dep_t *depend;
50
51 #define main_options "acdklnqrst:vVC:"
52 #define INSERT_ALL     1        /* a */
53 #define DUMP_CONF_EXIT 2        /* c */
54 #define D_OPT_IGNORED  4        /* d */
55 #define AUTOCLEAN_FLG  8        /* k */
56 #define LIST_ALL       16       /* l */
57 #define SHOW_ONLY      32       /* n */
58 #define QUIET          64       /* q */
59 #define REMOVE_OPT     128      /* r */
60 #define DO_SYSLOG      256      /* s */
61 #define RESTRICT_DIR   512      /* t */
62 #define VERBOSE        1024     /* v */
63 #define VERSION_ONLY   2048     /* V */
64 #define CONFIG_FILE    4096     /* C */
65
66 #define autoclean       (main_opts & AUTOCLEAN_FLG)
67 #define show_only       (main_opts & SHOW_ONLY)
68 #define quiet           (main_opts & QUIET)
69 #define remove_opt      (main_opts & REMOVE_OPT)
70 #define do_syslog       (main_opts & DO_SYSLOG)
71 #define verbose         (main_opts & VERBOSE)
72
73 static int main_opts;
74
75 static int parse_tag_value ( char *buffer, char **ptag, char **pvalue )
76 {
77         char *tag, *value;
78
79         while ( isspace ( *buffer ))
80                 buffer++;
81         tag = value = buffer;
82         while ( !isspace ( *value ))
83                 if (!*value) return 0;
84                 else value++;
85         *value++ = 0;
86         while ( isspace ( *value ))
87                 value++;
88         if (!*value) return 0;
89
90         *ptag = tag;
91         *pvalue = value;
92
93         return 1;
94 }
95
96 /*
97  * This function appends an option to a list
98  */
99 static struct mod_opt_t *append_option( struct mod_opt_t *opt_list, char *opt )
100 {
101         struct mod_opt_t *ol = opt_list;
102
103         if( ol ) {
104                 while( ol-> m_next ) {
105                         ol = ol-> m_next;
106                 }
107                 ol-> m_next = xmalloc( sizeof( struct mod_opt_t ) );
108                 ol = ol-> m_next;
109         } else {
110                 ol = opt_list = xmalloc( sizeof( struct mod_opt_t ) );
111         }
112
113         ol-> m_opt_val = xstrdup( opt );
114         ol-> m_next = NULL;
115
116         return opt_list;
117 }
118
119 #if ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS
120 /* static char* parse_command_string( char* src, char **dst );
121  *   src: pointer to string containing argument
122  *   dst: pointer to where to store the parsed argument
123  *   return value: the pointer to the first char after the parsed argument,
124  *                 NULL if there was no argument parsed (only trailing spaces).
125  *   Note that memory is allocated with xstrdup when a new argument was
126  *   parsed. Don't forget to free it!
127  */
128 #define ARG_EMPTY      0x00
129 #define ARG_IN_DQUOTES 0x01
130 #define ARG_IN_SQUOTES 0x02
131 static char *parse_command_string( char *src, char **dst )
132 {
133         int opt_status = ARG_EMPTY;
134         char* tmp_str;
135
136         /* Dumb you, I have nothing to do... */
137         if( src == NULL ) return src;
138
139         /* Skip leading spaces */
140         while( *src == ' ' ) {
141                 src++;
142         }
143         /* Is the end of string reached? */
144         if( *src == '\0' ) {
145                 return NULL;
146         }
147         /* Reached the start of an argument
148          * By the way, we duplicate a little too much
149          * here but what is too much is freed later. */
150         *dst = tmp_str = xstrdup( src );
151         /* Get to the end of that argument */
152         while(    ( *tmp_str != '\0' )
153                && (    ( *tmp_str != ' ' )
154                     || ( opt_status & ( ARG_IN_DQUOTES | ARG_IN_SQUOTES ) ) ) ) {
155                 switch( *tmp_str ) {
156                         case '\'':
157                                 if( opt_status & ARG_IN_DQUOTES ) {
158                                         /* Already in double quotes, keep current char as is */
159                                 } else {
160                                         /* shift left 1 char, until end of string: get rid of the opening/closing quotes */
161                                         memmove( tmp_str, tmp_str + 1, strlen( tmp_str ) );
162                                         /* mark me: we enter or leave single quotes */
163                                         opt_status ^= ARG_IN_SQUOTES;
164                                         /* Back one char, as we need to re-scan the new char there. */
165                                         tmp_str--;
166                                 }
167                         break;
168                         case '"':
169                                 if( opt_status & ARG_IN_SQUOTES ) {
170                                         /* Already in single quotes, keep current char as is */
171                                 } else {
172                                         /* shift left 1 char, until end of string: get rid of the opening/closing quotes */
173                                         memmove( tmp_str, tmp_str + 1, strlen( tmp_str ) );
174                                         /* mark me: we enter or leave double quotes */
175                                         opt_status ^= ARG_IN_DQUOTES;
176                                         /* Back one char, as we need to re-scan the new char there. */
177                                         tmp_str--;
178                                 }
179                         break;
180                         case '\\':
181                                 if( opt_status & ARG_IN_SQUOTES ) {
182                                         /* Between single quotes: keep as is. */
183                                 } else {
184                                         switch( *(tmp_str+1) ) {
185                                                 case 'a':
186                                                 case 'b':
187                                                 case 't':
188                                                 case 'n':
189                                                 case 'v':
190                                                 case 'f':
191                                                 case 'r':
192                                                 case '0':
193                                                         /* We escaped a special character. For now, keep
194                                                          * both the back-slash and the following char. */
195                                                         tmp_str++; src++;
196                                                         break;
197                                                 default:
198                                                         /* We escaped a space or a single or double quote,
199                                                          * or a back-slash, or a non-escapable char. Remove
200                                                          * the '\' and keep the new current char as is. */
201                                                         memmove( tmp_str, tmp_str + 1, strlen( tmp_str ) );
202                                                         break;
203                                         }
204                                 }
205                         break;
206                         /* Any other char that is special shall appear here.
207                          * Example: $ starts a variable
208                         case '$':
209                                 do_variable_expansion();
210                                 break;
211                          * */
212                         default:
213                                 /* any other char is kept as is. */
214                                 break;
215                 }
216                 tmp_str++; /* Go to next char */
217                 src++; /* Go to next char to find the end of the argument. */
218         }
219         /* End of string, but still no ending quote */
220         if( opt_status & ( ARG_IN_DQUOTES | ARG_IN_SQUOTES ) ) {
221                 bb_error_msg_and_die( "unterminated (single or double) quote in options list: %s", src );
222         }
223         *tmp_str++ = '\0';
224         *dst = xrealloc( *dst, (tmp_str - *dst ) );
225         return src;
226 }
227 #else
228 #define parse_command_string(src, dst)  (0)
229 #endif /* ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS */
230
231 /*
232  * This function reads aliases and default module options from a configuration file
233  * (/etc/modprobe.conf syntax). It supports includes (only files, no directories).
234  */
235 static void include_conf ( struct dep_t **first, struct dep_t **current, char *buffer, int buflen, int fd )
236 {
237         int continuation_line = 0;
238
239         // alias parsing is not 100% correct (no correct handling of continuation lines within an alias) !
240
241         while ( reads ( fd, buffer, buflen)) {
242                 int l;
243                 char *p;
244
245                 p = strchr ( buffer, '#' );
246                 if ( p )
247                         *p = 0;
248
249                 l = strlen ( buffer );
250
251                 while ( l && isspace ( buffer [l-1] )) {
252                         buffer [l-1] = 0;
253                         l--;
254                 }
255
256                 if ( l == 0 ) {
257                         continuation_line = 0;
258                         continue;
259                 }
260
261                 if ( !continuation_line ) {
262                         if (( strncmp ( buffer, "alias", 5 ) == 0 ) && isspace ( buffer [5] )) {
263                                 char *alias, *mod;
264
265                                 if ( parse_tag_value ( buffer + 6, &alias, &mod )) {
266                                         /* handle alias as a module dependent on the aliased module */
267                                         if ( !*current ) {
268                                                 (*first) = (*current) = (struct dep_t *) xzalloc (sizeof ( struct dep_t ));
269                                         }
270                                         else {
271                                                 (*current)-> m_next = (struct dep_t *) xzalloc (sizeof ( struct dep_t ));
272                                                 (*current) = (*current)-> m_next;
273                                         }
274                                         (*current)-> m_name  = xstrdup ( alias );
275                                         (*current)-> m_isalias = 1;
276
277                                         if (( strcmp ( mod, "off" ) == 0 ) || ( strcmp ( mod, "null" ) == 0 )) {
278                                                 (*current)-> m_depcnt = 0;
279                                                 (*current)-> m_deparr = 0;
280                                         }
281                                         else {
282                                                 (*current)-> m_depcnt  = 1;
283                                                 (*current)-> m_deparr  = xmalloc ( 1 * sizeof( char * ));
284                                                 (*current)-> m_deparr[0] = xstrdup ( mod );
285                                         }
286                                         (*current)-> m_next    = 0;
287                                 }
288                         }
289                         else if (( strncmp ( buffer, "options", 7 ) == 0 ) && isspace ( buffer [7] )) {
290                                 char *mod, *opt;
291
292                                 /* split the line in the module/alias name, and options */
293                                 if ( parse_tag_value ( buffer + 8, &mod, &opt )) {
294                                         struct dep_t *dt;
295
296                                         /* find the corresponding module */
297                                         for ( dt = *first; dt; dt = dt-> m_next ) {
298                                                 if ( strcmp ( dt-> m_name, mod ) == 0 )
299                                                         break;
300                                         }
301                                         if ( dt ) {
302                                                 if ( ENABLE_FEATURE_MODPROBE_MULTIPLE_OPTIONS ) {
303                                                         char* new_opt = NULL;
304                                                         while( ( opt = parse_command_string( opt, &new_opt ) ) ) {
305                                                                 dt-> m_options = append_option( dt-> m_options, new_opt );
306                                                         }
307                                                 } else {
308                                                         dt-> m_options = append_option( dt-> m_options, opt );
309                                                 }
310                                         }
311                                 }
312                         }
313                         else if (( strncmp ( buffer, "include", 7 ) == 0 ) && isspace ( buffer [7] )) {
314
315                                 int fdi; char *filename = buffer + 8;
316
317                                 while ( isspace ( *filename ))
318                                         filename++;
319
320                                 if (( fdi = open ( filename, O_RDONLY )) >= 0 ) {
321                                         include_conf(first, current, buffer, buflen, fdi);
322                                         close(fdi);
323                                 }
324                         }
325                 }
326         }
327 }
328
329 /*
330  * This function builds a list of dependency rules from /lib/modules/`uname -r`\modules.dep.
331  * It then fills every modules and aliases with their default options, found by parsing
332  * modprobe.conf (or modules.conf, or conf.modules).
333  */
334 static struct dep_t *build_dep ( void )
335 {
336         int fd;
337         struct utsname un;
338         struct dep_t *first = 0;
339         struct dep_t *current = 0;
340         char buffer[2048];
341         char *filename;
342         int continuation_line = 0;
343         int k_version;
344
345         k_version = 0;
346         if ( uname ( &un ))
347                 bb_error_msg_and_die("can't determine kernel version");
348
349         if (un.release[0] == '2') {
350                 k_version = un.release[2] - '0';
351         }
352
353         filename = xasprintf("/lib/modules/%s/modules.dep", un.release );
354         fd = open ( filename, O_RDONLY );
355         if (ENABLE_FEATURE_CLEAN_UP)
356                 free(filename);
357         if (fd < 0) {
358                 /* Ok, that didn't work.  Fall back to looking in /lib/modules */
359                 if (( fd = open ( "/lib/modules/modules.dep", O_RDONLY )) < 0 ) {
360                         return 0;
361                 }
362         }
363
364         while ( reads ( fd, buffer, sizeof( buffer ))) {
365                 int l = strlen ( buffer );
366                 char *p = 0;
367
368                 while ( l > 0 && isspace ( buffer [l-1] )) {
369                         buffer [l-1] = 0;
370                         l--;
371                 }
372
373                 if ( l == 0 ) {
374                         continuation_line = 0;
375                         continue;
376                 }
377
378                 /* Is this a new module dep description? */
379                 if ( !continuation_line ) {
380                         /* find the dep beginning */
381                         char *col = strchr ( buffer, ':' );
382                         char *dot = col;
383
384                         if ( col ) {
385                                 /* This line is a dep description */
386                                 char *mods;
387                                 char *modpath;
388                                 char *mod;
389
390                                 /* Find the beginning of the module file name */
391                                 *col = 0;
392                                 mods = strrchr ( buffer, '/' );
393
394                                 if ( !mods )
395                                         mods = buffer; /* no path for this module */
396                                 else
397                                         mods++; /* there was a path for this module... */
398
399                                 /* find the path of the module */
400                                 modpath = strchr ( buffer, '/' ); /* ... and this is the path */
401                                 if ( !modpath )
402                                         modpath = buffer; /* module with no path */
403                                 /* find the end of the module name in the file name */
404                                 if ( ENABLE_FEATURE_2_6_MODULES &&
405                                      (k_version > 4) && ( *(col-3) == '.' ) &&
406                                      ( *(col-2) == 'k' ) && ( *(col-1) == 'o' ) )
407                                         dot = col - 3;
408                                 else
409                                         if (( *(col-2) == '.' ) && ( *(col-1) == 'o' ))
410                                                 dot = col - 2;
411
412                                 mod = xstrndup ( mods, dot - mods );
413
414                                 /* enqueue new module */
415                                 if ( !current ) {
416                                         first = current = (struct dep_t *) xmalloc ( sizeof ( struct dep_t ));
417                                 }
418                                 else {
419                                         current-> m_next = (struct dep_t *) xmalloc ( sizeof ( struct dep_t ));
420                                         current = current-> m_next;
421                                 }
422                                 current-> m_name  = mod;
423                                 current-> m_path  = xstrdup(modpath);
424                                 current-> m_options = NULL;
425                                 current-> m_isalias = 0;
426                                 current-> m_depcnt  = 0;
427                                 current-> m_deparr  = 0;
428                                 current-> m_next    = 0;
429
430                                 p = col + 1;
431                         }
432                         else
433                                 /* this line is not a dep description */
434                                 p = 0;
435                 }
436                 else
437                         /* It's a dep description continuation */
438                         p = buffer;
439
440                 while ( p && *p && isblank(*p))
441                         p++;
442
443                 /* p points to the first dependable module; if NULL, no dependable module */
444                 if ( p && *p ) {
445                         char *end = &buffer [l-1];
446                         char *deps;
447                         char *dep;
448                         char *next;
449                         int ext = 0;
450
451                         while ( isblank ( *end ) || ( *end == '\\' ))
452                                 end--;
453
454                         do
455                         {
456                                 /* search the end of the dependency */
457                                 next = strchr (p, ' ' );
458                                 if (next)
459                                 {
460                                         *next = 0;
461                                         next--;
462                                 }
463                                 else
464                                         next = end;
465
466                                 /* find the beginning of the module file name */
467                                 deps = strrchr ( p, '/' );
468
469                                 if ( !deps || ( deps < p )) {
470                                         deps = p;
471
472                                         while ( isblank ( *deps ))
473                                                 deps++;
474                                 }
475                                 else
476                                         deps++;
477
478                                 /* find the end of the module name in the file name */
479                                 if ( ENABLE_FEATURE_2_6_MODULES &&
480                                      (k_version > 4) && ( *(next-2) == '.' ) &&
481                                      ( *(next-1) == 'k' )  && ( *next == 'o' ) )
482                                         ext = 3;
483                                 else
484                                         if (( *(next-1) == '.' ) && ( *next == 'o' ))
485                                                 ext = 2;
486
487                                 /* Cope with blank lines */
488                                 if ((next-deps-ext+1) <= 0)
489                                         continue;
490                                 dep = xstrndup ( deps, next - deps - ext + 1 );
491
492                                 /* Add the new dependable module name */
493                                 current-> m_depcnt++;
494                                 current-> m_deparr = (char **) xrealloc ( current-> m_deparr,
495                                                 sizeof ( char *) * current-> m_depcnt );
496                                 current-> m_deparr [current-> m_depcnt - 1] = dep;
497
498                                 p = next + 2;
499                         } while (next < end);
500                 }
501
502                 /* is there other dependable module(s) ? */
503                 if ( buffer [l-1] == '\\' )
504                         continuation_line = 1;
505                 else
506                         continuation_line = 0;
507         }
508         close ( fd );
509
510         /*
511          * First parse system-specific options and aliases
512          * as they take precedence over the kernel ones.
513          */
514         if (!ENABLE_FEATURE_2_6_MODULES
515                         || ( fd = open ( "/etc/modprobe.conf", O_RDONLY )) < 0 )
516                 if (( fd = open ( "/etc/modules.conf", O_RDONLY )) < 0 )
517                         fd = open ( "/etc/conf.modules", O_RDONLY );
518
519         if (fd >= 0) {
520                 include_conf (&first, &current, buffer, sizeof(buffer), fd);
521                 close(fd);
522         }
523
524         /* Only 2.6 has a modules.alias file */
525         if (ENABLE_FEATURE_2_6_MODULES) {
526                 /* Parse kernel-declared aliases */
527                 filename = xasprintf("/lib/modules/%s/modules.alias", un.release);
528                 if ((fd = open ( filename, O_RDONLY )) < 0) {
529                         /* Ok, that didn't work.  Fall back to looking in /lib/modules */
530                         fd = open ( "/lib/modules/modules.alias", O_RDONLY );
531                 }
532                 if (ENABLE_FEATURE_CLEAN_UP)
533                         free(filename);
534
535                 if (fd >= 0) {
536                         include_conf (&first, &current, buffer, sizeof(buffer), fd);
537                         close(fd);
538                 }
539         }
540
541         return first;
542 }
543
544 /* return 1 = loaded, 0 = not loaded, -1 = can't tell */
545 static int already_loaded (const char *name)
546 {
547         int fd, ret = 0;
548         char buffer[4096];
549
550         fd = open ("/proc/modules", O_RDONLY);
551         if (fd < 0)
552                 return -1;
553
554         while ( reads ( fd, buffer, sizeof( buffer ))) {
555                 char *p;
556
557                 p = strchr (buffer, ' ');
558                 if (p) {
559                         const char *n;
560
561                         // Truncate buffer at first space and check for matches, with
562                         // the idiosyncrasy that _ and - are interchangeable because the
563                         // 2.6 kernel does weird things.
564
565                         *p = 0;
566                         for (p = buffer, n = name; ; p++, n++) {
567                                 if (*p != *n) {
568                                         if ((*p == '_' || *p == '-') && (*n == '_' || *n == '-'))
569                                                 continue;
570                                         break;
571                                 }
572                                 // If we made it to the end, that's a match.
573                                 if (!*p) {
574                                         ret = 1;
575                                         goto done;
576                                 }
577                         }
578                 }
579         }
580 done:
581         close (fd);
582         return ret;
583 }
584
585 static int mod_process ( struct mod_list_t *list, int do_insert )
586 {
587         int rc = 0;
588         char **argv = NULL;
589         struct mod_opt_t *opts;
590         int argc_malloc; /* never used when CONFIG_FEATURE_CLEAN_UP not defined */
591         int argc;
592
593         while ( list ) {
594                 argc = 0;
595                 if( ENABLE_FEATURE_CLEAN_UP )
596                         argc_malloc = 0;
597                 /* If CONFIG_FEATURE_CLEAN_UP is not defined, then we leak memory
598                  * each time we allocate memory for argv.
599                  * But it is (quite) small amounts of memory that leak each
600                  * time a module is loaded,  and it is reclaimed when modprobe
601                  * exits anyway (even when standalone shell?).
602                  * This could become a problem when loading a module with LOTS of
603                  * dependencies, with LOTS of options for each dependencies, with
604                  * very little memory on the target... But in that case, the module
605                  * would not load because there is no more memory, so there's no
606                  * problem. */
607                 /* enough for minimal insmod (5 args + NULL) or rmmod (3 args + NULL) */
608                 argv = (char**) malloc( 6 * sizeof( char* ) );
609                 if ( do_insert ) {
610                         if (already_loaded (list->m_name) != 1) {
611                                 argv[argc++] = "insmod";
612                                 if (ENABLE_FEATURE_2_4_MODULES) {
613                                         if (do_syslog)
614                                                 argv[argc++] = "-s";
615                                         if (autoclean)
616                                                 argv[argc++] = "-k";
617                                         if (quiet)
618                                                 argv[argc++] = "-q";
619                                         else if(verbose) /* verbose and quiet are mutually exclusive */
620                                                 argv[argc++] = "-v";
621                                 }
622                                 argv[argc++] = list-> m_path;
623                                 if( ENABLE_FEATURE_CLEAN_UP )
624                                         argc_malloc = argc;
625                                 opts = list-> m_options;
626                                 while( opts ) {
627                                         /* Add one more option */
628                                         argc++;
629                                         argv = (char**) xrealloc( argv, ( argc + 1 ) * sizeof( char* ) );
630                                         argv[argc-1] = opts-> m_opt_val;
631                                         opts = opts-> m_next;
632                                 }
633                         }
634                 } else {
635                         /* modutils uses short name for removal */
636                         if (already_loaded (list->m_name) != 0) {
637                                 argv[argc++] = "rmmod";
638                                 if (do_syslog)
639                                         argv[argc++] = "-s";
640                                 argv[argc++] = list->m_name;
641                                 if( ENABLE_FEATURE_CLEAN_UP )
642                                         argc_malloc = argc;
643                         }
644                 }
645                 argv[argc] = NULL;
646
647                 if (argc) {
648                         if (verbose) {
649                                 printf("%s module %s\n", do_insert?"Loading":"Unloading", list-> m_name );
650                         }
651                         if (!show_only) {
652                                 int rc2 = wait4pid(spawn(argv));
653
654                                 if (do_insert) {
655                                         rc = rc2; /* only last module matters */
656                                 }
657                                 else if (!rc2) {
658                                         rc = 0; /* success if remove any mod */
659                                 }
660                         }
661                         if( ENABLE_FEATURE_CLEAN_UP )
662                                 /* the last value in the array has index == argc, but
663                                  * it is the terminating NULL, so we must not free it. */
664                                 while( argc_malloc < argc ) {
665                                         free( argv[argc_malloc++] );
666                         }
667                 }
668                 if( ENABLE_FEATURE_CLEAN_UP ) {
669                         free( argv );
670                         argv = NULL;
671                 }
672                 list = do_insert ? list-> m_prev : list-> m_next;
673         }
674         return (show_only) ? 0 : rc;
675 }
676
677 /*
678  * Check the matching between a pattern and a module name.
679  * We need this as *_* is equivalent to *-*, even in pattern matching.
680  */
681 static int check_pattern( const char* pat_src, const char* mod_src ) {
682         int ret;
683
684         if (ENABLE_FEATURE_MODPROBE_FANCY_ALIAS) {
685                 char* pat;
686                 char* mod;
687                 char* p;
688
689                 pat = xstrdup (pat_src);
690                 mod = xstrdup (mod_src);
691
692                 for (p = pat; (p = strchr(p, '-')); *p++ = '_' );
693                 for (p = mod; (p = strchr(p, '-')); *p++ = '_' );
694
695                 ret = fnmatch ( pat, mod, 0 );
696
697                 if (ENABLE_FEATURE_CLEAN_UP) {
698                         free (pat);
699                         free (mod);
700                 }
701
702                 return ret;
703         } else {
704                 return fnmatch ( pat_src, mod_src, 0 );
705         }
706 }
707
708 /*
709  * Builds the dependency list (aka stack) of a module.
710  * head: the highest module in the stack (last to insmod, first to rmmod)
711  * tail: the lowest module in the stack (first to insmod, last to rmmod)
712  */
713 static void check_dep ( char *mod, struct mod_list_t **head, struct mod_list_t **tail )
714 {
715         struct mod_list_t *find;
716         struct dep_t *dt;
717         struct mod_opt_t *opt = 0;
718         char *path = 0;
719
720         /* Search for the given module name amongst all dependency rules.
721          * The module name in a dependency rule can be a shell pattern,
722          * so try to match the given module name against such a pattern.
723          * Of course if the name in the dependency rule is a plain string,
724          * then we consider it a pattern, and matching will still work. */
725         for ( dt = depend; dt; dt = dt-> m_next ) {
726                 if ( check_pattern ( dt-> m_name, mod ) == 0) {
727                         break;
728                 }
729         }
730
731         if( !dt ) {
732                 bb_error_msg ("module %s not found.", mod);
733                 return;
734         }
735
736         // resolve alias names
737         while ( dt-> m_isalias ) {
738                 if ( dt-> m_depcnt == 1 ) {
739                         struct dep_t *adt;
740
741                         for ( adt = depend; adt; adt = adt-> m_next ) {
742                                 if ( check_pattern ( adt-> m_name, dt-> m_deparr [0] ) == 0 )
743                                         break;
744                         }
745                         if ( adt ) {
746                                 /* This is the module we are aliased to */
747                                 struct mod_opt_t *opts = dt-> m_options;
748                                 /* Option of the alias are appended to the options of the module */
749                                 while( opts ) {
750                                         adt-> m_options = append_option( adt-> m_options, opts-> m_opt_val );
751                                         opts = opts-> m_next;
752                                 }
753                                 dt = adt;
754                         }
755                         else {
756                                 bb_error_msg ("module %s not found.", mod);
757                                 return;
758                         }
759                 }
760                 else {
761                         bb_error_msg ("Bad alias %s", dt-> m_name);
762                         return;
763                 }
764         }
765
766         mod = dt-> m_name;
767         path = dt-> m_path;
768         opt = dt-> m_options;
769
770         // search for duplicates
771         for ( find = *head; find; find = find-> m_next ) {
772                 if ( !strcmp ( mod, find-> m_name )) {
773                         // found -> dequeue it
774
775                         if ( find-> m_prev )
776                                 find-> m_prev-> m_next = find-> m_next;
777                         else
778                                 *head = find-> m_next;
779
780                         if ( find-> m_next )
781                                 find-> m_next-> m_prev = find-> m_prev;
782                         else
783                                 *tail = find-> m_prev;
784
785                         break; // there can be only one duplicate
786                 }
787         }
788
789         if ( !find ) { // did not find a duplicate
790                 find = (struct mod_list_t *) xmalloc ( sizeof(struct mod_list_t));
791                 find-> m_name = mod;
792                 find-> m_path = path;
793                 find-> m_options = opt;
794         }
795
796         // enqueue at tail
797         if ( *tail )
798                 (*tail)-> m_next = find;
799         find-> m_prev   = *tail;
800         find-> m_next   = 0;
801
802         if ( !*head )
803                 *head = find;
804         *tail = find;
805
806         if ( dt ) {
807                 int i;
808
809                 /* Add all dependable module for that new module */
810                 for ( i = 0; i < dt-> m_depcnt; i++ )
811                         check_dep ( dt-> m_deparr [i], head, tail );
812         }
813 }
814
815 static int mod_insert ( char *mod, int argc, char **argv )
816 {
817         struct mod_list_t *tail = 0;
818         struct mod_list_t *head = 0;
819         int rc;
820
821         // get dep list for module mod
822         check_dep ( mod, &head, &tail );
823
824         if ( head && tail ) {
825                 if( argc ) {
826                         int i;
827                         // append module args
828                         for ( i = 0; i < argc; i++ )
829                                 head->m_options = append_option( head->m_options, argv[i] );
830                 }
831
832                 // process tail ---> head
833                 if ((rc = mod_process ( tail, 1 )) != 0) {
834                         /*
835                          * In case of using udev, multiple instances of modprobe can be
836                          * spawned to load the same module (think of two same usb devices,
837                          * for example; or cold-plugging at boot time). Thus we shouldn't
838                          * fail if the module was loaded, and not by us.
839                          */
840                         if (already_loaded (mod) )
841                                 rc = 0;
842                 }
843         }
844         else
845                 rc = 1;
846
847         return rc;
848 }
849
850 static int mod_remove ( char *mod )
851 {
852         int rc;
853         static struct mod_list_t rm_a_dummy = { "-a", NULL, NULL, NULL, NULL };
854
855         struct mod_list_t *head = 0;
856         struct mod_list_t *tail = 0;
857
858         if ( mod )
859                 check_dep ( mod, &head, &tail );
860         else  // autoclean
861                 head = tail = &rm_a_dummy;
862
863         if ( head && tail )
864                 rc = mod_process ( head, 0 );  // process head ---> tail
865         else
866                 rc = 1;
867         return rc;
868
869 }
870
871 int modprobe_main(int argc, char** argv)
872 {
873         int rc = EXIT_SUCCESS;
874         char *unused;
875
876         opt_complementary = "?V-:q-v:v-q";
877         main_opts = getopt32(argc, argv, "acdklnqrst:vVC:",
878                                                         &unused, &unused);
879         if((main_opts & (DUMP_CONF_EXIT | LIST_ALL)))
880                                 return EXIT_SUCCESS;
881         if((main_opts & (RESTRICT_DIR | CONFIG_FILE)))
882                                 bb_error_msg_and_die("-t and -C not supported");
883
884         depend = build_dep ( );
885
886         if ( !depend )
887                 bb_error_msg_and_die ( "cannot parse modules.dep" );
888
889         if (remove_opt) {
890                 do {
891                         if (mod_remove ( optind < argc ?
892                                                 argv [optind] : NULL )) {
893                                 bb_error_msg ("failed to remove module %s",
894                                                 argv [optind] );
895                                 rc = EXIT_FAILURE;
896                         }
897                 } while ( ++optind < argc );
898         } else {
899                 if (optind >= argc)
900                         bb_error_msg_and_die ( "No module or pattern provided" );
901
902                 if ( mod_insert ( argv [optind], argc - optind - 1, argv + optind + 1 ))
903                         bb_error_msg_and_die ( "failed to load module %s", argv [optind] );
904         }
905
906         /* Here would be a good place to free up memory allocated during the dependencies build. */
907
908         return rc;
909 }