7078af22069ef689342b2b6c69c81ed60106262c
[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  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; either version 2 of the License, or
11  * (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16  * General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program; if not, write to the Free Software
20  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21  *
22 */
23
24 #include <sys/utsname.h>
25 #include <getopt.h>
26 #include <stdlib.h>
27 #include <unistd.h>
28 #include <syslog.h>
29 #include <string.h>
30 #include <ctype.h>
31 #include <fcntl.h>
32 #include "busybox.h"
33
34
35
36 struct dep_t {
37         char *  m_module;
38         char *  m_options;
39
40         int     m_isalias  : 1;
41         int     m_reserved : 15;
42
43         int     m_depcnt   : 16;
44         char ** m_deparr;
45
46         struct dep_t * m_next;
47 };
48
49 struct mod_list_t {
50         char *  m_module;
51         char *  m_options;
52
53         struct mod_list_t * m_prev;
54         struct mod_list_t * m_next;
55 };
56
57
58 static struct dep_t *depend;
59 static int autoclean, show_only, quiet, do_syslog, verbose;
60 static int k_version;
61
62 int parse_tag_value ( char *buffer, char **ptag, char **pvalue )
63 {
64         char *tag, *value;
65
66         while ( isspace ( *buffer ))
67                 buffer++;
68         tag = value = buffer;
69         while ( !isspace ( *value ))
70                 value++;
71         *value++ = 0;
72         while ( isspace ( *value ))
73                 value++;
74
75         *ptag = tag;
76         *pvalue = value;
77
78         return bb_strlen( tag ) && bb_strlen( value );
79 }
80
81 /* Jump through hoops to simulate how fgets() grabs just one line at a
82  * time... Don't use any stdio since modprobe gets called from a kernel
83  * thread and stdio junk can overflow the limited stack...
84  */
85 static char *reads ( int fd, char *buffer, size_t len )
86 {
87         int n = read ( fd, buffer, len );
88
89         if ( n > 0 ) {
90                 char *p;
91
92                 buffer [len-1] = 0;
93                 p = strchr ( buffer, '\n' );
94
95                 if ( p ) {
96                         off_t offset;
97
98                         offset = lseek ( fd, 0L, SEEK_CUR );               // Get the current file descriptor offset
99                         lseek ( fd, offset-n + (p-buffer) + 1, SEEK_SET ); // Set the file descriptor offset to right after the \n
100
101                         p[1] = 0;
102                 }
103                 return buffer;
104         }
105
106         else
107                 return 0;
108 }
109
110 static struct dep_t *build_dep ( void )
111 {
112         int fd;
113         struct utsname un;
114         struct dep_t *first = 0;
115         struct dep_t *current = 0;
116         char buffer[256];
117         char *filename = buffer;
118         int continuation_line = 0;
119
120         k_version = 0;
121         if ( uname ( &un ))
122                 return 0;
123
124         // check for buffer overflow in following code
125         if ( bb_strlen ( un.release ) > ( sizeof( buffer ) - 64 )) {
126                 return 0;
127         }
128         if (un.release[0] == '2') {
129                 k_version = un.release[2] - '0';
130         }
131
132         strcpy ( filename, "/lib/modules/" );
133         strcat ( filename, un.release );
134         strcat ( filename, "/modules.dep" );
135
136         if (( fd = open ( filename, O_RDONLY )) < 0 ) {
137
138                 /* Ok, that didn't work.  Fall back to looking in /lib/modules */
139                 if (( fd = open ( "/lib/modules/modules.dep", O_RDONLY )) < 0 ) {
140                         return 0;
141                 }
142         }
143
144         while ( reads ( fd, buffer, sizeof( buffer ))) {
145                 int l = bb_strlen ( buffer );
146                 char *p = 0;
147
148                 while ( isspace ( buffer [l-1] )) {
149                         buffer [l-1] = 0;
150                         l--;
151                 }
152
153                 if ( l == 0 ) {
154                         continuation_line = 0;
155                         continue;
156                 }
157
158                 if ( !continuation_line ) {
159                         char *col = strchr ( buffer, ':' );
160
161                         if ( col ) {
162                                 char *mods;
163                                 char *mod;
164                                 int ext = 0;
165
166                                 *col = 0;
167                                 mods = strrchr ( buffer, '/' );
168
169                                 if ( !mods )
170                                         mods = buffer;
171                                 else
172                                         mods++;
173
174 #if defined(CONFIG_FEATURE_2_6_MODULES)
175                                 if ((k_version > 4) && ( *(col-3) == '.' ) &&
176                                                 ( *(col-2) == 'k' ) && ( *(col-1) == 'o' ))
177                                         ext = 3;
178                                 else
179 #endif
180                                         if (( *(col-2) == '.' ) && ( *(col-1) == 'o' ))
181                                                 ext = 2;
182
183                                 mod = bb_xstrndup ( mods, col - mods - ext );
184
185                                 if ( !current ) {
186                                         first = current = (struct dep_t *) xmalloc ( sizeof ( struct dep_t ));
187                                 }
188                                 else {
189                                         current-> m_next = (struct dep_t *) xmalloc ( sizeof ( struct dep_t ));
190                                         current = current-> m_next;
191                                 }
192                                 current-> m_module  = mod;
193                                 current-> m_options = 0;
194                                 current-> m_isalias = 0;
195                                 current-> m_depcnt  = 0;
196                                 current-> m_deparr  = 0;
197                                 current-> m_next    = 0;
198
199                                 //printf ( "%s:\n", mod );
200                                 p = col + 1;
201                         }
202                         else
203                                 p = 0;
204                 }
205                 else
206                         p = buffer;
207
208                 while ( p && *p && isblank(*p))
209                         p++;
210
211                 if ( p && *p ) {
212                         char *end = &buffer [l-1];
213                         char *deps;
214                         char *dep;
215                         char *next;
216                         int ext = 0;
217
218                         while ( isblank ( *end ) || ( *end == '\\' ))
219                                 end--;
220
221                         do
222                         {
223                                 next = strchr (p, ' ' );
224                                 if (next)
225                                 {
226                                         *next = 0;
227                                         next--;
228                                 }
229                                 else
230                                         next = end;
231
232                                 deps = strrchr ( p, '/' );
233
234                                 if ( !deps || ( deps < p )) {
235                                         deps = p;
236
237                                         while ( isblank ( *deps ))
238                                                 deps++;
239                                 }
240                                 else
241                                         deps++;
242
243 #if defined(CONFIG_FEATURE_2_6_MODULES)
244                                 if ((k_version > 4) && ( *(next-2) == '.' ) && *(next-1) == 'k'  &&
245                                                 ( *next == 'o' ))
246                                         ext = 3;
247                                 else
248 #endif
249                                         if (( *(next-1) == '.' ) && ( *next == 'o' ))
250                                                 ext = 2;
251
252                                 /* Cope with blank lines */
253                                 if ((next-deps-ext+1) <= 0)
254                                         continue;
255                                 dep = bb_xstrndup ( deps, next - deps - ext + 1 );
256
257                                 current-> m_depcnt++;
258                                 current-> m_deparr = (char **) xrealloc ( current-> m_deparr,
259                                                 sizeof ( char *) * current-> m_depcnt );
260                                 current-> m_deparr [current-> m_depcnt - 1] = dep;
261
262                                 //printf ( "    %d) %s\n", current-> m_depcnt, current-> m_deparr [current-> m_depcnt -1] );
263                                 p = next + 2;
264                         } while (next < end);
265                 }
266
267                 if ( buffer [l-1] == '\\' )
268                         continuation_line = 1;
269                 else
270                         continuation_line = 0;
271         }
272         close ( fd );
273
274         // alias parsing is not 100% correct (no correct handling of continuation lines within an alias) !
275
276         if (( fd = open ( "/etc/modules.conf", O_RDONLY )) < 0 )
277                 if (( fd = open ( "/etc/conf.modules", O_RDONLY )) < 0 )
278                         return first;
279
280         continuation_line = 0;
281         while ( reads ( fd, buffer, sizeof( buffer ))) {
282                 int l;
283                 char *p;
284
285                 p = strchr ( buffer, '#' );
286                 if ( p )
287                         *p = 0;
288
289                 l = bb_strlen ( buffer );
290
291                 while ( l && isspace ( buffer [l-1] )) {
292                         buffer [l-1] = 0;
293                         l--;
294                 }
295
296                 if ( l == 0 ) {
297                         continuation_line = 0;
298                         continue;
299                 }
300
301                 if ( !continuation_line ) {
302                         if (( strncmp ( buffer, "alias", 5 ) == 0 ) && isspace ( buffer [5] )) {
303                                 char *alias, *mod;
304
305                                 if ( parse_tag_value ( buffer + 6, &alias, &mod )) {
306                                         // fprintf ( stderr, "ALIAS: '%s' -> '%s'\n", alias, mod );
307
308                                         if ( !current ) {
309                                                 first = current = (struct dep_t *) xcalloc ( 1, sizeof ( struct dep_t ));
310                                         }
311                                         else {
312                                                 current-> m_next = (struct dep_t *) xcalloc ( 1, sizeof ( struct dep_t ));
313                                                 current = current-> m_next;
314                                         }
315                                         current-> m_module  = bb_xstrdup ( alias );
316                                         current-> m_isalias = 1;
317
318                                         if (( strcmp ( mod, "off" ) == 0 ) || ( strcmp ( mod, "null" ) == 0 )) {
319                                                 current-> m_depcnt = 0;
320                                                 current-> m_deparr = 0;
321                                         }
322                                         else {
323                                                 current-> m_depcnt  = 1;
324                                                 current-> m_deparr  = xmalloc ( 1 * sizeof( char * ));
325                                                 current-> m_deparr[0] = bb_xstrdup ( mod );
326                                         }
327                                         current-> m_next    = 0;
328                                 }
329                         }
330                         else if (( strncmp ( buffer, "options", 7 ) == 0 ) && isspace ( buffer [7] )) {
331                                 char *mod, *opt;
332
333                                 if ( parse_tag_value ( buffer + 8, &mod, &opt )) {
334                                         struct dep_t *dt;
335
336                                         for ( dt = first; dt; dt = dt-> m_next ) {
337                                                 if ( strcmp ( dt-> m_module, mod ) == 0 )
338                                                         break;
339                                         }
340                                         if ( dt ) {
341                                                 dt-> m_options = xrealloc ( dt-> m_options, bb_strlen( opt ) + 1 );
342                                                 strcpy ( dt-> m_options, opt );
343
344                                                 // fprintf ( stderr, "OPTION: '%s' -> '%s'\n", dt-> m_module, dt-> m_options );
345                                         }
346                                 }
347                         }
348                 }
349         }
350         close ( fd );
351
352         return first;
353 }
354
355 /* return 1 = loaded, 0 = not loaded, -1 = can't tell */
356 static int already_loaded (const char *name)
357 {
358         int fd;
359         char buffer[256];
360
361         fd = open ("/proc/modules", O_RDONLY);
362         if (fd < 0)
363                 return -1;
364
365         while ( reads ( fd, buffer, sizeof( buffer ))) {
366                 char *p;
367
368                 p = strchr (buffer, ' ');
369                 if (p) {
370                         *p = 0;
371                         if (strcmp (name, buffer) == 0) {
372                                 close (fd);
373                                 return 1;
374                         }
375                 }
376         }
377
378         close (fd);
379         return 0;
380 }
381
382 static int mod_process ( struct mod_list_t *list, int do_insert )
383 {
384         char lcmd [256];
385         int rc = 1;
386
387         while ( list ) {
388                 *lcmd = '\0';
389                 if ( do_insert ) {
390                         if (already_loaded (list->m_module) != 1)
391                                 snprintf ( lcmd, sizeof( lcmd ) - 1, "insmod %s %s %s %s %s",
392                                                 do_syslog ? "-s" : "", autoclean ? "-k" : "",
393                                                 quiet ? "-q" : "", list-> m_module, list-> m_options ?
394                                                 list-> m_options : "" );
395                 } else {
396                         if (already_loaded (list->m_module) != 0)
397                                 snprintf ( lcmd, sizeof( lcmd ) - 1, "rmmod %s %s",
398                                                 do_syslog ? "-s" : "", list-> m_module );
399                 }
400
401                 if ( verbose )
402                         printf ( "%s\n", lcmd );
403                 if ( !show_only && *lcmd) {
404                         int rc2 = system ( lcmd );
405                         if (do_insert) rc = rc2; /* only last module matters */
406                         else if (!rc2) rc = 0; /* success if remove any mod */
407                 }
408
409                 list = do_insert ? list-> m_prev : list-> m_next;
410         }
411         return (show_only) ? 0 : rc;
412 }
413
414 static void check_dep ( char *mod, struct mod_list_t **head, struct mod_list_t **tail )
415 {
416         struct mod_list_t *find;
417         struct dep_t *dt;
418         char *opt = 0;
419         int lm;
420
421         // remove .o extension
422         lm = bb_strlen ( mod );
423
424 #if defined(CONFIG_FEATURE_2_6_MODULES)
425         if ((k_version > 4) && ( mod [lm-3] == '.' ) &&
426                         ( mod [lm-2] == 'k' ) && ( mod [lm-1] == 'o' ))
427                 mod [lm-3] = 0;
428         else
429 #endif
430                 if (( mod [lm-2] == '.' ) && ( mod [lm-1] == 'o' ))
431                         mod [lm-2] = 0;
432
433         // check dependencies
434         for ( dt = depend; dt; dt = dt-> m_next ) {
435                 if ( strcmp ( dt-> m_module, mod ) == 0 ) {
436                         opt = dt-> m_options;
437                         break;
438                 }
439         }
440
441         // resolve alias names
442         while ( dt && dt-> m_isalias ) {
443                 if ( dt-> m_depcnt == 1 ) {
444                         struct dep_t *adt;
445
446                         for ( adt = depend; adt; adt = adt-> m_next ) {
447                                 if ( strcmp ( adt-> m_module, dt-> m_deparr [0] ) == 0 )
448                                         break;
449                         }
450                         if ( adt ) {
451                                 dt = adt;
452                                 mod = dt-> m_module;
453                                 if ( !opt )
454                                         opt = dt-> m_options;
455                         }
456                         else
457                                 return;
458                 }
459                 else
460                         return;
461         }
462
463         // search for duplicates
464         for ( find = *head; find; find = find-> m_next ) {
465                 if ( !strcmp ( mod, find-> m_module )) {
466                         // found -> dequeue it
467
468                         if ( find-> m_prev )
469                                 find-> m_prev-> m_next = find-> m_next;
470                         else
471                                 *head = find-> m_next;
472
473                         if ( find-> m_next )
474                                 find-> m_next-> m_prev = find-> m_prev;
475                         else
476                                 *tail = find-> m_prev;
477
478                         break; // there can be only one duplicate
479                 }
480         }
481
482         if ( !find ) { // did not find a duplicate
483                 find = (struct mod_list_t *) xmalloc ( sizeof(struct mod_list_t));
484                 find-> m_module = mod;
485                 find-> m_options = opt;
486         }
487
488         // enqueue at tail
489         if ( *tail )
490                 (*tail)-> m_next = find;
491         find-> m_prev   = *tail;
492         find-> m_next   = 0;
493
494         if ( !*head )
495                 *head = find;
496         *tail = find;
497
498         if ( dt ) {
499                 int i;
500
501                 for ( i = 0; i < dt-> m_depcnt; i++ )
502                         check_dep ( dt-> m_deparr [i], head, tail );
503         }
504 }
505
506
507
508 static int mod_insert ( char *mod, int argc, char **argv )
509 {
510         struct mod_list_t *tail = 0;
511         struct mod_list_t *head = 0;
512         int rc;
513
514         // get dep list for module mod
515         check_dep ( mod, &head, &tail );
516
517         if ( head && tail ) {
518                 if ( argc ) {
519                         int i;
520                         int l = 0;
521
522                         // append module args
523                         for ( i = 0; i < argc; i++ )
524                                 l += ( bb_strlen ( argv [i] ) + 1 );
525
526                         head-> m_options = xrealloc ( head-> m_options, l + 1 );
527                         head-> m_options [0] = 0;
528
529                         for ( i = 0; i < argc; i++ ) {
530                                 strcat ( head-> m_options, argv [i] );
531                                 strcat ( head-> m_options, " " );
532                         }
533                 }
534
535                 // process tail ---> head
536                 rc = mod_process ( tail, 1 );
537         }
538         else
539                 rc = 1;
540
541         return rc;
542 }
543
544 static int mod_remove ( char *mod )
545 {
546         int rc;
547         static struct mod_list_t rm_a_dummy = { "-a", 0, 0 };
548
549         struct mod_list_t *head = 0;
550         struct mod_list_t *tail = 0;
551
552         if ( mod )
553                 check_dep ( mod, &head, &tail );
554         else  // autoclean
555                 head = tail = &rm_a_dummy;
556
557         if ( head && tail )
558                 rc = mod_process ( head, 0 );  // process head ---> tail
559         else
560                 rc = 1;
561         return rc;
562
563 }
564
565
566
567 extern int modprobe_main(int argc, char** argv)
568 {
569         int     opt;
570         int remove_opt = 0;
571
572         autoclean = show_only = quiet = do_syslog = verbose = 0;
573
574         while ((opt = getopt(argc, argv, "acdklnqrst:vVC:")) != -1) {
575                 switch(opt) {
576                         case 'c': // no config used
577                         case 'l': // no pattern matching
578                                 return EXIT_SUCCESS;
579                                 break;
580                         case 'C': // no config used
581                         case 't': // no pattern matching
582                                 bb_error_msg_and_die("-t and -C not supported");
583
584                         case 'a': // ignore
585                         case 'd': // ignore
586                                 break;
587                         case 'k':
588                                 autoclean++;
589                                 break;
590                         case 'n':
591                                 show_only++;
592                                 break;
593                         case 'q':
594                                 quiet++;
595                                 break;
596                         case 'r':
597                                 remove_opt++;
598                                 break;
599                         case 's':
600                                 do_syslog++;
601                                 break;
602                         case 'v':
603                                 verbose++;
604                                 break;
605                         case 'V':
606                         default:
607                                 bb_show_usage();
608                                 break;
609                 }
610         }
611
612         depend = build_dep ( );
613
614         if ( !depend )
615                 bb_error_msg_and_die ( "could not parse modules.dep\n" );
616
617         if (remove_opt) {
618                 int rc = EXIT_SUCCESS;
619                 do {
620                         if (mod_remove ( optind < argc ?
621                                                 bb_xstrdup (argv [optind]) : NULL )) {
622                                 bb_error_msg ("failed to remove module %s",
623                                                 argv [optind] );
624                                 rc = EXIT_FAILURE;
625                         }
626                 } while ( ++optind < argc );
627
628                 return rc;
629         }
630
631         if (optind >= argc)
632                 bb_error_msg_and_die ( "No module or pattern provided\n" );
633
634         if ( mod_insert ( bb_xstrdup ( argv [optind] ), argc - optind - 1, argv + optind + 1 ))
635                 bb_error_msg_and_die ( "failed to load module %s", argv [optind] );
636
637         return EXIT_SUCCESS;
638 }
639
640