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