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