2001-07-23 04:31:03 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
|
|
|
/*
|
2002-07-26 21:24:20 +05:30
|
|
|
* Modprobe written from scratch for BusyBox
|
2002-04-26 11:34:01 +05:30
|
|
|
*
|
2002-08-05 08:27:12 +05:30
|
|
|
* Copyright (c) 2002 by Robert Griebl, griebl@gmx.de
|
2003-06-20 15:26:37 +05:30
|
|
|
* Copyright (c) 2003 by Andrew Dennison, andrew.dennison@motec.com.au
|
2002-08-05 08:27:12 +05:30
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*
|
|
|
|
*/
|
2001-07-23 04:31:03 +05:30
|
|
|
|
2002-05-15 05:12:08 +05:30
|
|
|
#include <sys/utsname.h>
|
2001-07-23 04:31:03 +05:30
|
|
|
#include <getopt.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <syslog.h>
|
|
|
|
#include <string.h>
|
2002-04-26 11:34:01 +05:30
|
|
|
#include <ctype.h>
|
2002-06-04 18:58:43 +05:30
|
|
|
#include <fcntl.h>
|
2001-07-23 04:31:03 +05:30
|
|
|
#include "busybox.h"
|
|
|
|
|
2002-04-26 11:34:01 +05:30
|
|
|
|
|
|
|
|
|
|
|
struct dep_t {
|
|
|
|
char * m_module;
|
2002-07-26 21:24:20 +05:30
|
|
|
char * m_options;
|
2002-05-15 05:12:08 +05:30
|
|
|
|
2002-05-29 03:02:10 +05:30
|
|
|
int m_isalias : 1;
|
|
|
|
int m_reserved : 15;
|
|
|
|
|
|
|
|
int m_depcnt : 16;
|
2002-04-26 11:34:01 +05:30
|
|
|
char ** m_deparr;
|
|
|
|
|
|
|
|
struct dep_t * m_next;
|
|
|
|
};
|
|
|
|
|
2002-05-15 05:12:08 +05:30
|
|
|
struct mod_list_t {
|
|
|
|
char * m_module;
|
2002-07-26 21:24:20 +05:30
|
|
|
char * m_options;
|
2002-05-15 05:12:08 +05:30
|
|
|
|
|
|
|
struct mod_list_t * m_prev;
|
|
|
|
struct mod_list_t * m_next;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2002-05-23 05:04:35 +05:30
|
|
|
static struct dep_t *depend;
|
|
|
|
static int autoclean, show_only, quiet, do_syslog, verbose;
|
2002-05-15 05:12:08 +05:30
|
|
|
|
2002-07-26 21:24:20 +05:30
|
|
|
int parse_tag_value ( char *buffer, char **ptag, char **pvalue )
|
|
|
|
{
|
|
|
|
char *tag, *value;
|
|
|
|
|
|
|
|
while ( isspace ( *buffer ))
|
|
|
|
buffer++;
|
|
|
|
tag = value = buffer;
|
|
|
|
while ( !isspace ( *value ))
|
|
|
|
value++;
|
|
|
|
*value++ = 0;
|
|
|
|
while ( isspace ( *value ))
|
|
|
|
value++;
|
|
|
|
|
|
|
|
*ptag = tag;
|
|
|
|
*pvalue = value;
|
|
|
|
|
2003-03-19 14:43:01 +05:30
|
|
|
return bb_strlen( tag ) && bb_strlen( value );
|
2002-07-26 21:24:20 +05:30
|
|
|
}
|
2002-04-26 11:34:01 +05:30
|
|
|
|
2002-06-05 01:03:58 +05:30
|
|
|
/* Jump through hoops to simulate how fgets() grabs just one line at a
|
|
|
|
* time... Don't use any stdio since modprobe gets called from a kernel
|
|
|
|
* thread and stdio junk can overflow the limited stack...
|
|
|
|
*/
|
|
|
|
static char *reads ( int fd, char *buffer, size_t len )
|
|
|
|
{
|
|
|
|
int n = read ( fd, buffer, len );
|
|
|
|
|
|
|
|
if ( n > 0 ) {
|
|
|
|
char *p;
|
|
|
|
|
|
|
|
buffer [len-1] = 0;
|
|
|
|
p = strchr ( buffer, '\n' );
|
|
|
|
|
|
|
|
if ( p ) {
|
|
|
|
off_t offset;
|
|
|
|
|
|
|
|
offset = lseek ( fd, 0L, SEEK_CUR ); // Get the current file descriptor offset
|
|
|
|
lseek ( fd, offset-n + (p-buffer) + 1, SEEK_SET ); // Set the file descriptor offset to right after the \n
|
|
|
|
|
|
|
|
p[1] = 0;
|
|
|
|
}
|
|
|
|
return buffer;
|
|
|
|
}
|
|
|
|
|
|
|
|
else
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2002-05-03 21:18:26 +05:30
|
|
|
static struct dep_t *build_dep ( void )
|
2002-04-26 11:34:01 +05:30
|
|
|
{
|
2002-06-05 01:03:58 +05:30
|
|
|
int fd;
|
2002-04-26 11:34:01 +05:30
|
|
|
struct utsname un;
|
|
|
|
struct dep_t *first = 0;
|
|
|
|
struct dep_t *current = 0;
|
2002-06-04 18:58:43 +05:30
|
|
|
char buffer[256];
|
2002-04-26 11:34:01 +05:30
|
|
|
char *filename = buffer;
|
|
|
|
int continuation_line = 0;
|
|
|
|
|
|
|
|
if ( uname ( &un ))
|
|
|
|
return 0;
|
2002-05-23 05:04:35 +05:30
|
|
|
|
|
|
|
// check for buffer overflow in following code
|
2003-03-19 14:43:01 +05:30
|
|
|
if ( bb_strlen ( un.release ) > ( sizeof( buffer ) - 64 )) {
|
2002-05-23 05:04:35 +05:30
|
|
|
return 0;
|
2002-06-04 18:58:43 +05:30
|
|
|
}
|
2002-05-23 05:04:35 +05:30
|
|
|
|
2002-04-26 11:34:01 +05:30
|
|
|
strcpy ( filename, "/lib/modules/" );
|
2002-06-04 18:58:43 +05:30
|
|
|
strcat ( filename, un.release );
|
2002-04-26 11:34:01 +05:30
|
|
|
strcat ( filename, "/modules.dep" );
|
|
|
|
|
2003-06-20 15:27:30 +05:30
|
|
|
if (( fd = open ( filename, O_RDONLY )) < 0 ) {
|
|
|
|
|
|
|
|
/* Ok, that didn't work. Fall back to looking in /lib/modules */
|
|
|
|
if (( fd = open ( "/lib/modules/modules.dep", O_RDONLY )) < 0 ) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
2002-06-04 18:58:43 +05:30
|
|
|
|
2002-06-05 01:03:58 +05:30
|
|
|
while ( reads ( fd, buffer, sizeof( buffer ))) {
|
2003-03-19 14:43:01 +05:30
|
|
|
int l = bb_strlen ( buffer );
|
2002-04-26 11:34:01 +05:30
|
|
|
char *p = 0;
|
2002-06-05 01:03:58 +05:30
|
|
|
|
2002-05-29 03:02:10 +05:30
|
|
|
while ( isspace ( buffer [l-1] )) {
|
2002-04-26 11:34:01 +05:30
|
|
|
buffer [l-1] = 0;
|
|
|
|
l--;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( l == 0 ) {
|
|
|
|
continuation_line = 0;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( !continuation_line ) {
|
|
|
|
char *col = strchr ( buffer, ':' );
|
|
|
|
|
|
|
|
if ( col ) {
|
|
|
|
char *mods;
|
|
|
|
char *mod;
|
2002-05-03 21:18:26 +05:30
|
|
|
int ext = 0;
|
2002-04-26 11:34:01 +05:30
|
|
|
|
|
|
|
*col = 0;
|
|
|
|
mods = strrchr ( buffer, '/' );
|
|
|
|
|
|
|
|
if ( !mods )
|
|
|
|
mods = buffer;
|
|
|
|
else
|
|
|
|
mods++;
|
|
|
|
|
2002-05-03 21:18:26 +05:30
|
|
|
if (( *(col-2) == '.' ) && ( *(col-1) == 'o' ))
|
|
|
|
ext = 2;
|
|
|
|
|
2003-03-19 14:43:01 +05:30
|
|
|
mod = bb_xstrndup ( mods, col - mods - ext );
|
2002-05-03 21:18:26 +05:30
|
|
|
|
2002-04-26 11:34:01 +05:30
|
|
|
if ( !current ) {
|
2002-06-04 18:58:43 +05:30
|
|
|
first = current = (struct dep_t *) xmalloc ( sizeof ( struct dep_t ));
|
2002-04-26 11:34:01 +05:30
|
|
|
}
|
|
|
|
else {
|
2002-06-04 18:58:43 +05:30
|
|
|
current-> m_next = (struct dep_t *) xmalloc ( sizeof ( struct dep_t ));
|
2002-04-26 11:34:01 +05:30
|
|
|
current = current-> m_next;
|
|
|
|
}
|
2002-05-29 03:02:10 +05:30
|
|
|
current-> m_module = mod;
|
2002-07-26 21:24:20 +05:30
|
|
|
current-> m_options = 0;
|
2002-05-29 03:02:10 +05:30
|
|
|
current-> m_isalias = 0;
|
|
|
|
current-> m_depcnt = 0;
|
|
|
|
current-> m_deparr = 0;
|
|
|
|
current-> m_next = 0;
|
2002-04-26 11:34:01 +05:30
|
|
|
|
2002-05-03 21:18:26 +05:30
|
|
|
//printf ( "%s:\n", mod );
|
2002-04-26 11:34:01 +05:30
|
|
|
|
|
|
|
p = col + 1;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
p = 0;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
p = buffer;
|
|
|
|
|
|
|
|
if ( p && *p ) {
|
|
|
|
char *end = &buffer [l-1];
|
|
|
|
char *deps = strrchr ( end, '/' );
|
|
|
|
char *dep;
|
2002-05-03 21:18:26 +05:30
|
|
|
int ext = 0;
|
2002-04-26 11:34:01 +05:30
|
|
|
|
|
|
|
while ( isblank ( *end ) || ( *end == '\\' ))
|
|
|
|
end--;
|
|
|
|
|
|
|
|
deps = strrchr ( p, '/' );
|
|
|
|
|
|
|
|
if ( !deps || ( deps < p )) {
|
|
|
|
deps = p;
|
|
|
|
|
|
|
|
while ( isblank ( *deps ))
|
|
|
|
deps++;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
deps++;
|
|
|
|
|
2002-05-03 21:18:26 +05:30
|
|
|
if (( *(end-1) == '.' ) && ( *end == 'o' ))
|
|
|
|
ext = 2;
|
2002-07-03 00:44:23 +05:30
|
|
|
|
|
|
|
/* Cope with blank lines */
|
|
|
|
if ((end-deps-ext+1) <= 0)
|
|
|
|
continue;
|
2002-05-03 21:18:26 +05:30
|
|
|
|
2003-03-19 14:43:01 +05:30
|
|
|
dep = bb_xstrndup ( deps, end - deps - ext + 1 );
|
2002-04-26 11:34:01 +05:30
|
|
|
|
|
|
|
current-> m_depcnt++;
|
2002-05-03 21:18:26 +05:30
|
|
|
current-> m_deparr = (char **) xrealloc ( current-> m_deparr, sizeof ( char *) * current-> m_depcnt );
|
2002-04-26 11:34:01 +05:30
|
|
|
current-> m_deparr [current-> m_depcnt - 1] = dep;
|
|
|
|
|
2002-05-03 21:18:26 +05:30
|
|
|
//printf ( " %d) %s\n", current-> m_depcnt, current-> m_deparr [current-> m_depcnt -1] );
|
2002-04-26 11:34:01 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
if ( buffer [l-1] == '\\' )
|
|
|
|
continuation_line = 1;
|
|
|
|
else
|
|
|
|
continuation_line = 0;
|
|
|
|
}
|
2002-06-04 18:58:43 +05:30
|
|
|
close ( fd );
|
2002-05-29 03:02:10 +05:30
|
|
|
|
|
|
|
// alias parsing is not 100% correct (no correct handling of continuation lines within an alias) !
|
|
|
|
|
2002-06-05 01:03:58 +05:30
|
|
|
if (( fd = open ( "/etc/modules.conf", O_RDONLY )) < 0 )
|
|
|
|
if (( fd = open ( "/etc/conf.modules", O_RDONLY )) < 0 )
|
2002-06-04 18:58:43 +05:30
|
|
|
return first;
|
2002-05-29 03:02:10 +05:30
|
|
|
|
2002-06-04 18:58:43 +05:30
|
|
|
continuation_line = 0;
|
2002-06-05 01:03:58 +05:30
|
|
|
while ( reads ( fd, buffer, sizeof( buffer ))) {
|
2002-06-04 18:58:43 +05:30
|
|
|
int l;
|
|
|
|
char *p;
|
2002-05-29 03:02:10 +05:30
|
|
|
|
2002-06-05 01:03:58 +05:30
|
|
|
p = strchr ( buffer, '#' );
|
2002-06-04 18:58:43 +05:30
|
|
|
if ( p )
|
|
|
|
*p = 0;
|
2002-05-29 03:02:10 +05:30
|
|
|
|
2003-03-19 14:43:01 +05:30
|
|
|
l = bb_strlen ( buffer );
|
2002-06-04 18:58:43 +05:30
|
|
|
|
|
|
|
while ( l && isspace ( buffer [l-1] )) {
|
|
|
|
buffer [l-1] = 0;
|
|
|
|
l--;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( l == 0 ) {
|
|
|
|
continuation_line = 0;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( !continuation_line ) {
|
|
|
|
if (( strncmp ( buffer, "alias", 5 ) == 0 ) && isspace ( buffer [5] )) {
|
|
|
|
char *alias, *mod;
|
2002-05-29 03:02:10 +05:30
|
|
|
|
2002-07-26 21:24:20 +05:30
|
|
|
if ( parse_tag_value ( buffer + 6, &alias, &mod )) {
|
|
|
|
// fprintf ( stderr, "ALIAS: '%s' -> '%s'\n", alias, mod );
|
2002-06-04 18:58:43 +05:30
|
|
|
|
2002-07-26 21:24:20 +05:30
|
|
|
if ( !current ) {
|
|
|
|
first = current = (struct dep_t *) xmalloc ( sizeof ( struct dep_t ));
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
current-> m_next = (struct dep_t *) xmalloc ( sizeof ( struct dep_t ));
|
|
|
|
current = current-> m_next;
|
|
|
|
}
|
2003-03-19 14:43:01 +05:30
|
|
|
current-> m_module = bb_xstrdup ( alias );
|
2002-07-26 21:24:20 +05:30
|
|
|
current-> m_isalias = 1;
|
|
|
|
|
|
|
|
if (( strcmp ( alias, "off" ) == 0 ) || ( strcmp ( alias, "null" ) == 0 )) {
|
|
|
|
current-> m_depcnt = 0;
|
|
|
|
current-> m_deparr = 0;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
current-> m_depcnt = 1;
|
|
|
|
current-> m_deparr = xmalloc ( 1 * sizeof( char * ));
|
2003-03-19 14:43:01 +05:30
|
|
|
current-> m_deparr[0] = bb_xstrdup ( mod );
|
2002-07-26 21:24:20 +05:30
|
|
|
}
|
|
|
|
current-> m_next = 0;
|
2002-06-04 18:58:43 +05:30
|
|
|
}
|
2002-07-26 21:24:20 +05:30
|
|
|
}
|
|
|
|
else if (( strncmp ( buffer, "options", 7 ) == 0 ) && isspace ( buffer [7] )) {
|
|
|
|
char *mod, *opt;
|
2002-06-04 18:58:43 +05:30
|
|
|
|
2002-07-26 21:24:20 +05:30
|
|
|
if ( parse_tag_value ( buffer + 8, &mod, &opt )) {
|
|
|
|
struct dep_t *dt;
|
|
|
|
|
|
|
|
for ( dt = first; dt; dt = dt-> m_next ) {
|
|
|
|
if ( strcmp ( dt-> m_module, mod ) == 0 )
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if ( dt ) {
|
2003-03-19 14:43:01 +05:30
|
|
|
dt-> m_options = xrealloc ( dt-> m_options, bb_strlen( opt ) + 1 );
|
2002-07-26 21:24:20 +05:30
|
|
|
strcpy ( dt-> m_options, opt );
|
|
|
|
|
|
|
|
// fprintf ( stderr, "OPTION: '%s' -> '%s'\n", dt-> m_module, dt-> m_options );
|
|
|
|
}
|
2002-06-04 18:58:43 +05:30
|
|
|
}
|
2002-07-26 21:24:20 +05:30
|
|
|
}
|
2002-05-29 03:02:10 +05:30
|
|
|
}
|
|
|
|
}
|
2002-06-04 18:58:43 +05:30
|
|
|
close ( fd );
|
2002-04-26 11:34:01 +05:30
|
|
|
|
|
|
|
return first;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-05-23 05:04:35 +05:30
|
|
|
static int mod_process ( struct mod_list_t *list, int do_insert )
|
2002-04-26 11:34:01 +05:30
|
|
|
{
|
2002-05-15 05:12:08 +05:30
|
|
|
char lcmd [256];
|
2003-06-20 15:26:37 +05:30
|
|
|
int rc = 1;
|
2002-05-15 05:12:08 +05:30
|
|
|
|
|
|
|
while ( list ) {
|
|
|
|
if ( do_insert )
|
2002-07-26 21:24:20 +05:30
|
|
|
snprintf ( lcmd, sizeof( lcmd ) - 1, "insmod %s %s %s %s %s 2>/dev/null", do_syslog ? "-s" : "", autoclean ? "-k" : "", quiet ? "-q" : "", list-> m_module, list-> m_options ? list-> m_options : "" );
|
2002-05-15 05:12:08 +05:30
|
|
|
else
|
|
|
|
snprintf ( lcmd, sizeof( lcmd ) - 1, "rmmod %s %s 2>/dev/null", do_syslog ? "-s" : "", list-> m_module );
|
|
|
|
|
|
|
|
if ( verbose )
|
|
|
|
printf ( "%s\n", lcmd );
|
2003-06-20 15:26:37 +05:30
|
|
|
if ( !show_only ) {
|
|
|
|
int rc2 = system ( lcmd );
|
|
|
|
if (do_insert) rc = rc2; /* only last module matters */
|
|
|
|
else if (!rc2) rc = 0; /* success if remove any mod */
|
|
|
|
}
|
2002-05-15 05:12:08 +05:30
|
|
|
|
|
|
|
list = do_insert ? list-> m_prev : list-> m_next;
|
|
|
|
}
|
2003-06-20 15:26:37 +05:30
|
|
|
return (show_only) ? 0 : rc;
|
2002-05-15 05:12:08 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
static void check_dep ( char *mod, struct mod_list_t **head, struct mod_list_t **tail )
|
|
|
|
{
|
|
|
|
struct mod_list_t *find;
|
|
|
|
struct dep_t *dt;
|
2002-07-26 21:24:20 +05:30
|
|
|
char *opt = 0;
|
2002-05-15 05:12:08 +05:30
|
|
|
int lm;
|
|
|
|
|
|
|
|
// remove .o extension
|
2003-03-19 14:43:01 +05:30
|
|
|
lm = bb_strlen ( mod );
|
2002-04-26 11:34:01 +05:30
|
|
|
if (( mod [lm-2] == '.' ) && ( mod [lm-1] == 'o' ))
|
2002-05-15 05:12:08 +05:30
|
|
|
mod [lm-2] = 0;
|
2002-05-03 21:18:26 +05:30
|
|
|
|
2002-05-29 03:02:10 +05:30
|
|
|
// check dependencies
|
|
|
|
for ( dt = depend; dt; dt = dt-> m_next ) {
|
2002-07-26 21:24:20 +05:30
|
|
|
if ( strcmp ( dt-> m_module, mod ) == 0 ) {
|
|
|
|
opt = dt-> m_options;
|
2002-05-29 03:02:10 +05:30
|
|
|
break;
|
2002-07-26 21:24:20 +05:30
|
|
|
}
|
2002-05-29 03:02:10 +05:30
|
|
|
}
|
2002-07-26 21:24:20 +05:30
|
|
|
|
2002-05-29 03:02:10 +05:30
|
|
|
// resolve alias names
|
2002-07-26 21:24:20 +05:30
|
|
|
while ( dt && dt-> m_isalias ) {
|
|
|
|
if ( dt-> m_depcnt == 1 ) {
|
|
|
|
struct dep_t *adt;
|
|
|
|
|
|
|
|
for ( adt = depend; adt; adt = adt-> m_next ) {
|
2002-07-30 01:58:38 +05:30
|
|
|
if ( strcmp ( adt-> m_module, dt-> m_deparr [0] ) == 0 )
|
2002-07-26 21:24:20 +05:30
|
|
|
break;
|
|
|
|
}
|
2002-07-30 01:58:38 +05:30
|
|
|
if ( adt ) {
|
|
|
|
dt = adt;
|
|
|
|
mod = dt-> m_module;
|
|
|
|
if ( !opt )
|
|
|
|
opt = dt-> m_options;
|
|
|
|
}
|
2002-07-26 21:24:20 +05:30
|
|
|
else
|
2002-07-30 01:58:38 +05:30
|
|
|
return;
|
2002-07-26 21:24:20 +05:30
|
|
|
}
|
|
|
|
else
|
|
|
|
return;
|
2002-05-29 03:02:10 +05:30
|
|
|
}
|
|
|
|
|
2002-05-15 05:12:08 +05:30
|
|
|
// search for duplicates
|
|
|
|
for ( find = *head; find; find = find-> m_next ) {
|
|
|
|
if ( !strcmp ( mod, find-> m_module )) {
|
|
|
|
// found -> dequeue it
|
|
|
|
|
|
|
|
if ( find-> m_prev )
|
|
|
|
find-> m_prev-> m_next = find-> m_next;
|
|
|
|
else
|
|
|
|
*head = find-> m_next;
|
|
|
|
|
|
|
|
if ( find-> m_next )
|
|
|
|
find-> m_next-> m_prev = find-> m_prev;
|
|
|
|
else
|
|
|
|
*tail = find-> m_prev;
|
|
|
|
|
|
|
|
break; // there can be only one duplicate
|
|
|
|
}
|
|
|
|
}
|
2002-05-03 21:18:26 +05:30
|
|
|
|
2002-05-15 05:12:08 +05:30
|
|
|
if ( !find ) { // did not find a duplicate
|
|
|
|
find = (struct mod_list_t *) xmalloc ( sizeof(struct mod_list_t));
|
|
|
|
find-> m_module = mod;
|
2002-07-26 21:24:20 +05:30
|
|
|
find-> m_options = opt;
|
2002-04-26 11:34:01 +05:30
|
|
|
}
|
2002-05-03 21:18:26 +05:30
|
|
|
|
2002-05-15 05:12:08 +05:30
|
|
|
// enqueue at tail
|
|
|
|
if ( *tail )
|
|
|
|
(*tail)-> m_next = find;
|
|
|
|
find-> m_prev = *tail;
|
|
|
|
find-> m_next = 0;
|
2002-05-29 03:02:10 +05:30
|
|
|
|
2002-05-15 05:12:08 +05:30
|
|
|
if ( !*head )
|
|
|
|
*head = find;
|
|
|
|
*tail = find;
|
|
|
|
|
2002-05-29 03:02:10 +05:30
|
|
|
if ( dt ) {
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for ( i = 0; i < dt-> m_depcnt; i++ )
|
|
|
|
check_dep ( dt-> m_deparr [i], head, tail );
|
|
|
|
}
|
2002-04-26 11:34:01 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-05-15 05:12:08 +05:30
|
|
|
|
2002-05-23 05:04:35 +05:30
|
|
|
static int mod_insert ( char *mod, int argc, char **argv )
|
2002-04-26 11:34:01 +05:30
|
|
|
{
|
2002-05-15 05:12:08 +05:30
|
|
|
struct mod_list_t *tail = 0;
|
|
|
|
struct mod_list_t *head = 0;
|
2003-06-20 15:26:37 +05:30
|
|
|
int rc;
|
2002-04-26 11:34:01 +05:30
|
|
|
|
2002-05-15 05:12:08 +05:30
|
|
|
// get dep list for module mod
|
|
|
|
check_dep ( mod, &head, &tail );
|
2002-04-26 11:34:01 +05:30
|
|
|
|
2002-05-15 05:12:08 +05:30
|
|
|
if ( head && tail ) {
|
2002-07-26 21:24:20 +05:30
|
|
|
if ( argc ) {
|
|
|
|
int i;
|
|
|
|
int l = 0;
|
2002-05-15 05:12:08 +05:30
|
|
|
|
2002-07-26 21:24:20 +05:30
|
|
|
// append module args
|
|
|
|
for ( i = 0; i < argc; i++ )
|
2003-03-19 14:43:01 +05:30
|
|
|
l += ( bb_strlen ( argv [i] ) + 1 );
|
2002-05-23 05:04:35 +05:30
|
|
|
|
2002-07-26 21:24:20 +05:30
|
|
|
head-> m_options = xrealloc ( head-> m_options, l + 1 );
|
|
|
|
head-> m_options [0] = 0;
|
2002-05-15 05:12:08 +05:30
|
|
|
|
2002-07-26 21:24:20 +05:30
|
|
|
for ( i = 0; i < argc; i++ ) {
|
|
|
|
strcat ( head-> m_options, argv [i] );
|
|
|
|
strcat ( head-> m_options, " " );
|
|
|
|
}
|
2002-05-03 21:18:26 +05:30
|
|
|
}
|
2002-07-26 21:24:20 +05:30
|
|
|
|
2002-05-15 05:12:08 +05:30
|
|
|
// process tail ---> head
|
2003-06-20 15:26:37 +05:30
|
|
|
rc = mod_process ( tail, 1 );
|
2002-04-26 11:34:01 +05:30
|
|
|
}
|
2002-05-15 05:12:08 +05:30
|
|
|
else
|
|
|
|
rc = 1;
|
|
|
|
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
2003-06-20 15:26:37 +05:30
|
|
|
static int mod_remove ( char *mod )
|
2002-05-15 05:12:08 +05:30
|
|
|
{
|
2003-06-20 15:26:37 +05:30
|
|
|
int rc;
|
2002-05-15 05:12:08 +05:30
|
|
|
static struct mod_list_t rm_a_dummy = { "-a", 0, 0 };
|
|
|
|
|
|
|
|
struct mod_list_t *head = 0;
|
|
|
|
struct mod_list_t *tail = 0;
|
|
|
|
|
|
|
|
if ( mod )
|
|
|
|
check_dep ( mod, &head, &tail );
|
|
|
|
else // autoclean
|
|
|
|
head = tail = &rm_a_dummy;
|
|
|
|
|
2002-05-23 05:04:35 +05:30
|
|
|
if ( head && tail )
|
2003-06-20 15:26:37 +05:30
|
|
|
rc = mod_process ( head, 0 ); // process head ---> tail
|
|
|
|
else
|
|
|
|
rc = 1;
|
|
|
|
return rc;
|
|
|
|
|
2002-05-15 05:12:08 +05:30
|
|
|
}
|
|
|
|
|
2002-04-26 11:34:01 +05:30
|
|
|
|
|
|
|
|
2001-07-23 04:31:03 +05:30
|
|
|
extern int modprobe_main(int argc, char** argv)
|
|
|
|
{
|
2002-05-23 05:04:35 +05:30
|
|
|
int opt;
|
|
|
|
int remove_opt = 0;
|
|
|
|
|
|
|
|
autoclean = show_only = quiet = do_syslog = verbose = 0;
|
|
|
|
|
|
|
|
while ((opt = getopt(argc, argv, "acdklnqrst:vVC:")) != -1) {
|
|
|
|
switch(opt) {
|
|
|
|
case 'c': // no config used
|
|
|
|
case 'l': // no pattern matching
|
|
|
|
return EXIT_SUCCESS;
|
2001-07-23 04:31:03 +05:30
|
|
|
break;
|
2002-05-23 05:04:35 +05:30
|
|
|
case 'C': // no config used
|
|
|
|
case 't': // no pattern matching
|
2003-03-19 14:43:01 +05:30
|
|
|
bb_error_msg_and_die("-t and -C not supported");
|
2002-05-23 05:04:35 +05:30
|
|
|
|
|
|
|
case 'a': // ignore
|
|
|
|
case 'd': // ignore
|
2001-07-23 04:31:03 +05:30
|
|
|
break;
|
|
|
|
case 'k':
|
|
|
|
autoclean++;
|
|
|
|
break;
|
|
|
|
case 'n':
|
|
|
|
show_only++;
|
|
|
|
break;
|
|
|
|
case 'q':
|
|
|
|
quiet++;
|
|
|
|
break;
|
|
|
|
case 'r':
|
2001-07-25 12:53:38 +05:30
|
|
|
remove_opt++;
|
2001-07-23 04:31:03 +05:30
|
|
|
break;
|
|
|
|
case 's':
|
|
|
|
do_syslog++;
|
|
|
|
break;
|
|
|
|
case 'v':
|
|
|
|
verbose++;
|
|
|
|
break;
|
|
|
|
case 'V':
|
|
|
|
default:
|
2003-03-19 14:43:01 +05:30
|
|
|
bb_show_usage();
|
2001-07-23 04:31:03 +05:30
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-05-15 05:12:08 +05:30
|
|
|
depend = build_dep ( );
|
|
|
|
|
2002-05-23 05:04:35 +05:30
|
|
|
if ( !depend )
|
2003-03-19 14:43:01 +05:30
|
|
|
bb_error_msg_and_die ( "could not parse modules.dep\n" );
|
2002-05-15 05:12:08 +05:30
|
|
|
|
2001-07-25 12:53:38 +05:30
|
|
|
if (remove_opt) {
|
2003-06-20 15:26:37 +05:30
|
|
|
int rc = EXIT_SUCCESS;
|
2001-07-23 04:31:03 +05:30
|
|
|
do {
|
2003-06-20 15:26:37 +05:30
|
|
|
if (mod_remove ( optind < argc ?
|
|
|
|
bb_xstrdup (argv [optind]) : NULL )) {
|
|
|
|
bb_error_msg ("failed to remove module %s",
|
|
|
|
argv [optind] );
|
|
|
|
rc = EXIT_FAILURE;
|
|
|
|
}
|
2002-05-15 05:12:08 +05:30
|
|
|
} while ( ++optind < argc );
|
|
|
|
|
2003-06-20 15:26:37 +05:30
|
|
|
return rc;
|
2001-07-23 04:31:03 +05:30
|
|
|
}
|
|
|
|
|
2002-05-23 05:04:35 +05:30
|
|
|
if (optind >= argc)
|
2003-03-19 14:43:01 +05:30
|
|
|
bb_error_msg_and_die ( "No module or pattern provided\n" );
|
2002-05-15 05:12:08 +05:30
|
|
|
|
2003-03-19 14:43:01 +05:30
|
|
|
if ( mod_insert ( bb_xstrdup ( argv [optind] ), argc - optind - 1, argv + optind + 1 ))
|
|
|
|
bb_error_msg_and_die ( "failed to load module %s", argv [optind] );
|
2002-12-04 04:11:36 +05:30
|
|
|
|
|
|
|
return EXIT_SUCCESS;
|
2001-07-23 04:31:03 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
|