2000-02-08 19:58:47 +00:00
|
|
|
/* vi: set sw=4 ts=4: */
|
1999-12-16 23:04:20 +00:00
|
|
|
/*
|
|
|
|
* Mini rmmod implementation for busybox
|
|
|
|
*
|
2004-03-15 08:29:22 +00:00
|
|
|
* Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
|
1999-12-16 23:04:20 +00:00
|
|
|
*
|
2006-06-03 19:35:15 +00:00
|
|
|
* Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
|
1999-12-16 23:04:20 +00:00
|
|
|
*/
|
|
|
|
|
2006-06-03 19:35:15 +00:00
|
|
|
#include "busybox.h"
|
1999-12-16 23:04:20 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <unistd.h>
|
2001-01-27 08:24:39 +00:00
|
|
|
#include <stdlib.h>
|
2001-03-09 21:49:12 +00:00
|
|
|
#include <getopt.h>
|
2003-12-11 01:42:13 +00:00
|
|
|
#include <fcntl.h>
|
2004-07-20 10:05:13 +00:00
|
|
|
#include <string.h>
|
2005-11-27 19:01:53 +00:00
|
|
|
#include <sys/utsname.h>
|
2003-12-11 01:42:13 +00:00
|
|
|
#include <sys/syscall.h>
|
1999-12-16 23:04:20 +00:00
|
|
|
|
2004-07-20 10:05:13 +00:00
|
|
|
#ifdef CONFIG_FEATURE_2_6_MODULES
|
2005-11-28 15:54:22 +00:00
|
|
|
static inline void filename2modname(char *modname, const char *afterslash)
|
2004-07-20 10:05:13 +00:00
|
|
|
{
|
|
|
|
unsigned int i;
|
|
|
|
|
2005-11-28 15:54:22 +00:00
|
|
|
#if ENABLE_FEATURE_2_4_MODULES
|
|
|
|
int kr_chk = 1;
|
2006-05-19 11:54:02 +00:00
|
|
|
if (get_linux_version_code() <= KERNEL_VERSION(2,6,0))
|
2005-11-28 15:54:22 +00:00
|
|
|
kr_chk = 0;
|
|
|
|
#else
|
|
|
|
#define kr_chk 1
|
|
|
|
#endif
|
2004-07-20 10:05:13 +00:00
|
|
|
|
|
|
|
/* Convert to underscores, stop at first . */
|
|
|
|
for (i = 0; afterslash[i] && afterslash[i] != '.'; i++) {
|
2005-11-27 19:01:53 +00:00
|
|
|
if (kr_chk && (afterslash[i] == '-'))
|
2004-07-20 10:05:13 +00:00
|
|
|
modname[i] = '_';
|
|
|
|
else
|
|
|
|
modname[i] = afterslash[i];
|
|
|
|
}
|
|
|
|
modname[i] = '\0';
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2006-03-06 20:47:33 +00:00
|
|
|
int rmmod_main(int argc, char **argv)
|
1999-12-16 23:04:20 +00:00
|
|
|
{
|
2001-03-09 21:49:12 +00:00
|
|
|
int n, ret = EXIT_SUCCESS;
|
2004-07-13 00:09:34 +00:00
|
|
|
unsigned int flags = O_NONBLOCK|O_EXCL;
|
|
|
|
#ifdef CONFIG_FEATURE_QUERY_MODULE_INTERFACE
|
2006-01-25 00:08:53 +00:00
|
|
|
/* bb_common_bufsiz1 hold the module names which we ignore
|
2005-11-28 15:54:22 +00:00
|
|
|
but must get */
|
|
|
|
size_t bufsize = sizeof(bb_common_bufsiz1);
|
2004-07-13 00:09:34 +00:00
|
|
|
#endif
|
1999-12-16 23:04:20 +00:00
|
|
|
|
2001-03-09 21:49:12 +00:00
|
|
|
/* Parse command line. */
|
2005-11-28 15:54:22 +00:00
|
|
|
n = bb_getopt_ulflags(argc, argv, "wfa");
|
|
|
|
if((n & 1)) // --wait
|
|
|
|
flags &= ~O_NONBLOCK;
|
|
|
|
if((n & 2)) // --force
|
|
|
|
flags |= O_TRUNC;
|
|
|
|
if((n & 4)) {
|
|
|
|
/* Unload _all_ unused modules via NULL delete_module() call */
|
|
|
|
/* until the number of modules does not change */
|
|
|
|
size_t nmod = 0; /* number of modules */
|
|
|
|
size_t pnmod = -1; /* previous number of modules */
|
2006-01-25 00:08:53 +00:00
|
|
|
|
2005-11-28 15:54:22 +00:00
|
|
|
while (nmod != pnmod) {
|
2005-12-11 19:46:50 +00:00
|
|
|
if (syscall(__NR_delete_module, NULL, flags) != 0) {
|
2005-11-28 15:54:22 +00:00
|
|
|
if (errno==EFAULT)
|
|
|
|
return(ret);
|
|
|
|
bb_perror_msg_and_die("rmmod");
|
|
|
|
}
|
|
|
|
pnmod = nmod;
|
2004-07-13 00:09:34 +00:00
|
|
|
#ifdef CONFIG_FEATURE_QUERY_MODULE_INTERFACE
|
2005-11-28 15:54:22 +00:00
|
|
|
/* 1 == QM_MODULES */
|
|
|
|
if (my_query_module(NULL, 1, &bb_common_bufsiz1, &bufsize, &nmod)) {
|
|
|
|
bb_perror_msg_and_die("QM_MODULES");
|
|
|
|
}
|
2002-12-14 01:58:59 +00:00
|
|
|
#endif
|
1999-12-16 23:04:20 +00:00
|
|
|
}
|
2005-11-28 15:54:22 +00:00
|
|
|
return EXIT_SUCCESS;
|
1999-12-16 23:04:20 +00:00
|
|
|
}
|
|
|
|
|
2001-03-09 21:49:12 +00:00
|
|
|
if (optind == argc)
|
2003-12-24 20:30:45 +00:00
|
|
|
bb_show_usage();
|
2001-03-09 21:49:12 +00:00
|
|
|
|
2005-11-28 15:54:22 +00:00
|
|
|
for (n = optind; n < argc; n++) {
|
2004-07-20 10:05:13 +00:00
|
|
|
#ifdef CONFIG_FEATURE_2_6_MODULES
|
2005-11-28 15:54:22 +00:00
|
|
|
const char *afterslash;
|
|
|
|
char *module_name;
|
2006-01-25 00:08:53 +00:00
|
|
|
|
2005-11-28 15:54:22 +00:00
|
|
|
afterslash = strrchr(argv[n], '/');
|
|
|
|
if (!afterslash)
|
|
|
|
afterslash = argv[n];
|
|
|
|
else
|
|
|
|
afterslash++;
|
|
|
|
module_name = alloca(strlen(afterslash) + 1);
|
|
|
|
filename2modname(module_name, afterslash);
|
2004-07-20 10:05:13 +00:00
|
|
|
#else
|
|
|
|
#define module_name argv[n]
|
|
|
|
#endif
|
2005-12-11 19:46:50 +00:00
|
|
|
if (syscall(__NR_delete_module, module_name, flags) != 0) {
|
2005-11-28 15:54:22 +00:00
|
|
|
bb_perror_msg("%s", argv[n]);
|
|
|
|
ret = EXIT_FAILURE;
|
2000-02-08 19:58:47 +00:00
|
|
|
}
|
1999-12-16 23:04:20 +00:00
|
|
|
}
|
2001-03-09 21:49:12 +00:00
|
|
|
|
2000-07-28 15:16:37 +00:00
|
|
|
return(ret);
|
1999-12-16 23:04:20 +00:00
|
|
|
}
|