1 /* rmmod.c: remove a module from the kernel.
2 Copyright (C) 2001 Rusty Russell.
3 Copyright (C) 2002 Rusty Russell, IBM Corporation.
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
25 #include <asm/unistd.h>
31 #include "backwards_compat.c"
33 extern long delete_module(const char *, unsigned int);
35 #define error(log, fmt, ...) message(log, "ERROR: ", fmt , ## __VA_ARGS__)
36 #define warn(log, fmt, ...) message(log, "WARNING: ", fmt , ## __VA_ARGS__)
37 #define info(log, fmt, ...) \
38 do { if (verbose) message(log, "", fmt , ## __VA_ARGS__); } while(0)
39 #define fatal(log, fmt, ...) \
40 do { message(log, "FATAL: ", fmt , ## __VA_ARGS__); exit(1); } while(0)
42 static void message(int log
, const char *prefix
, const char *fmt
, ...)
43 __attribute__ ((format (printf
, 3, 4)));
45 static int getlen(const char *fmt
, va_list ap
)
49 /* glibcs before 2.1 return -1 on "can't fit". */
50 ret
= vsnprintf(NULL
, 0, fmt
, ap
);
56 static void message(int log
, const char *prefix
, const char *fmt
, ...)
62 va_start(arglist
, fmt
);
63 len
= strlen(prefix
) + getlen(fmt
, arglist
) + 1;
66 /* Must restart args on some archs */
67 va_start(arglist
, fmt
);
69 vsnprintf(buf
+ strlen(buf
), len
, fmt
, arglist
);
72 // modutils-2.4 would buffer these up
73 syslog(LOG_INFO
, "%s", buf
);
75 fprintf(stderr
, "%s", buf
);
80 static char *next_field(const char *line
)
84 rest
= line
+ strcspn(line
, " ");
85 rest
+= strspn(rest
, " ");
89 /* Report that the module is in use. */
90 static void mod_in_use(int log
, const char *modname
, char *usedby
)
92 /* New /proc/modules uses a single "-" to mean "nothing". Old
93 one just puts nothing there. */
94 if (usedby
[0] == '-' || strcmp(usedby
, "") == 0) {
95 error(log
, "Module %s is in use\n", modname
);
99 /* New /proc/modules *always* prints commas (even if only one) */
100 if (strchr(usedby
, ','))
101 /* Blatt over trailing comma for neatness */
102 usedby
[strcspn(usedby
, " \n")-1] = '\0';
104 /* Older /proc/modules just put them as
105 space-separated names. Blatt over trailing \n */
106 usedby
[strlen(usedby
)-1] = '\0';
109 error(log
, "Module %s is in use by %s\n", modname
, usedby
);
112 /* If we can check usage without entering kernel, do so. */
113 static int check_usage(int log
, const char *modname
)
116 char line
[10240], name
[64];
117 unsigned long size
, refs
;
120 module_list
= fopen("/proc/modules", "r");
122 if (errno
== ENOENT
) /* /proc may not be mounted. */
124 fatal(log
, "can't open /proc/modules: %s\n", strerror(errno
));
126 while (fgets(line
, sizeof(line
)-1, module_list
) != NULL
) {
127 if (strchr(line
, '\n') == NULL
) {
128 fatal(log
, "V. v. long line broke rmmod.\n");
132 scanned
= sscanf(line
, "%s %lu %lu", name
, &size
, &refs
);
133 if (strcmp(name
, modname
) != 0)
137 fatal(log
, "Unknown format in /proc/modules: %s\n",
141 fatal(log
, "Kernel does not have unload support.\n");
143 /* Hand it fields 3 onwards. */
145 mod_in_use(log
, modname
,
146 next_field(next_field(next_field(line
))));
149 error(log
, "Module %s does not exist in /proc/modules\n", modname
);
153 return (refs
== 0) ? 0 : -EINVAL
;
156 static void filename2modname(char *modname
, const char *filename
)
158 const char *afterslash
;
161 afterslash
= strrchr(filename
, '/');
163 afterslash
= filename
;
167 /* Convert to underscores, stop at first . */
168 for (i
= 0; afterslash
[i
] && afterslash
[i
] != '.'; i
++) {
169 if (afterslash
[i
] == '-')
172 modname
[i
] = afterslash
[i
];
177 static int rmmod(int log
, int verbose
, const char *path
, int flags
)
180 char name
[strlen(path
) + 1];
182 filename2modname(name
, path
);
184 if ((flags
& O_NONBLOCK
) && !(flags
& O_TRUNC
)) {
185 if (check_usage(log
, name
) != 0)
189 info(log
, "rmmod %s, wait=%s%s\n", name
,
190 (flags
& O_NONBLOCK
) ? "no" : "yes",
191 (flags
& O_TRUNC
) ? " force" : "");
193 ret
= delete_module(name
, flags
);
195 error(log
, "Removing '%s': %s\n", name
, strerror(errno
));
199 static struct option options
[] = { { "all", 0, NULL
, 'a' },
200 { "force", 0, NULL
, 'f' },
201 { "help", 0, NULL
, 'h' },
202 { "syslog", 0, NULL
, 's' },
203 { "verbose", 0, NULL
, 'v' },
204 { "version", 0, NULL
, 'V' },
205 { "wait", 0, NULL
, 'w' },
206 { NULL
, 0, NULL
, 0 } };
208 static void print_usage(const char *progname
)
211 "Usage: %s [-fhswvV] modulename ...\n"
212 // " -a (or --all) to remove all modules (no names needed)\n"
213 " -f (or --force) forces a module unload, and may crash your\n"
214 " machine. This requires the Forced Module Removal option\n"
215 " when the kernel was compiled.\n"
216 " -h (or --help) prints this help text\n"
217 " -s (or --syslog) says use syslog, not stderr\n"
218 " -v (or --verbose) enables more messages\n"
219 " -V (or --version) prints the version code\n"
220 " -w (or --wait) begins a module removal even if it is used\n"
221 " and will stop new users from accessing the module (so it\n"
222 " should eventually fall to zero).\n"
227 int main(int argc
, char *argv
[])
229 /* O_EXCL so kernels can spot old rmmod versions */
230 unsigned int flags
= O_NONBLOCK
|O_EXCL
;
231 int i
, opt
, all
= 0, log
= 0, verbose
= 0;
234 try_old_version("rmmod", argv
);
236 while ((opt
= getopt_long(argc
, argv
,
237 "afh?swvV", options
, NULL
)) != EOF
) {
245 case 's': // --syslog
246 openlog("rmmod", LOG_CONS
, LOG_DAEMON
);
250 flags
&= ~O_NONBLOCK
;
252 case 'v': // --verbose
255 case 'V': // --version
256 puts(PACKAGE
" version " VERSION
);
260 print_usage(argv
[0]);
265 /* FIXME implement */
268 fprintf(stderr
, "no module names given\n");
269 print_usage(argv
[0]);
273 /* remove each specified module */
274 for (i
= optind
; i
< argc
; i
++) {
275 ret
= rmmod(log
, verbose
, argv
[i
], flags
);