2000-02-09 01:28:47 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
1999-12-17 04:34:20 +05:30
|
|
|
/*
|
|
|
|
* Mini rmmod implementation for busybox
|
|
|
|
*
|
2004-03-15 13:59:22 +05:30
|
|
|
* Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
|
1999-12-17 04:34:20 +05:30
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <unistd.h>
|
2001-01-27 13:54:39 +05:30
|
|
|
#include <stdlib.h>
|
2001-03-10 03:19:12 +05:30
|
|
|
#include <getopt.h>
|
2003-12-11 07:12:13 +05:30
|
|
|
#include <fcntl.h>
|
2004-07-20 15:35:13 +05:30
|
|
|
#include <string.h>
|
2005-11-28 00:31:53 +05:30
|
|
|
#include <sys/utsname.h>
|
2003-12-11 07:12:13 +05:30
|
|
|
#include <sys/syscall.h>
|
2001-02-20 11:44:08 +05:30
|
|
|
#include "busybox.h"
|
1999-12-17 04:34:20 +05:30
|
|
|
|
2004-07-20 15:35:13 +05:30
|
|
|
#ifdef CONFIG_FEATURE_2_6_MODULES
|
2005-11-28 21:24:22 +05:30
|
|
|
static inline void filename2modname(char *modname, const char *afterslash)
|
2004-07-20 15:35:13 +05:30
|
|
|
{
|
|
|
|
unsigned int i;
|
|
|
|
|
2005-11-28 21:24:22 +05:30
|
|
|
#if ENABLE_FEATURE_2_4_MODULES
|
|
|
|
int kr_chk = 1;
|
|
|
|
if (get_kernel_revision() <= 2*65536+6*256)
|
|
|
|
kr_chk = 0;
|
|
|
|
#else
|
|
|
|
#define kr_chk 1
|
|
|
|
#endif
|
2004-07-20 15:35:13 +05:30
|
|
|
|
|
|
|
/* Convert to underscores, stop at first . */
|
|
|
|
for (i = 0; afterslash[i] && afterslash[i] != '.'; i++) {
|
2005-11-28 00:31:53 +05:30
|
|
|
if (kr_chk && (afterslash[i] == '-'))
|
2004-07-20 15:35:13 +05:30
|
|
|
modname[i] = '_';
|
|
|
|
else
|
|
|
|
modname[i] = afterslash[i];
|
|
|
|
}
|
|
|
|
modname[i] = '\0';
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2006-03-07 02:17:33 +05:30
|
|
|
int rmmod_main(int argc, char **argv)
|
1999-12-17 04:34:20 +05:30
|
|
|
{
|
2001-03-10 03:19:12 +05:30
|
|
|
int n, ret = EXIT_SUCCESS;
|
2004-07-13 05:39:34 +05:30
|
|
|
unsigned int flags = O_NONBLOCK|O_EXCL;
|
|
|
|
#ifdef CONFIG_FEATURE_QUERY_MODULE_INTERFACE
|
2006-01-25 05:38:53 +05:30
|
|
|
/* bb_common_bufsiz1 hold the module names which we ignore
|
2005-11-28 21:24:22 +05:30
|
|
|
but must get */
|
|
|
|
size_t bufsize = sizeof(bb_common_bufsiz1);
|
2004-07-13 05:39:34 +05:30
|
|
|
#endif
|
1999-12-17 04:34:20 +05:30
|
|
|
|
2001-03-10 03:19:12 +05:30
|
|
|
/* Parse command line. */
|
2005-11-28 21:24:22 +05:30
|
|
|
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 05:38:53 +05:30
|
|
|
|
2005-11-28 21:24:22 +05:30
|
|
|
while (nmod != pnmod) {
|
2005-12-12 01:16:50 +05:30
|
|
|
if (syscall(__NR_delete_module, NULL, flags) != 0) {
|
2005-11-28 21:24:22 +05:30
|
|
|
if (errno==EFAULT)
|
|
|
|
return(ret);
|
|
|
|
bb_perror_msg_and_die("rmmod");
|
|
|
|
}
|
|
|
|
pnmod = nmod;
|
2004-07-13 05:39:34 +05:30
|
|
|
#ifdef CONFIG_FEATURE_QUERY_MODULE_INTERFACE
|
2005-11-28 21:24:22 +05:30
|
|
|
/* 1 == QM_MODULES */
|
|
|
|
if (my_query_module(NULL, 1, &bb_common_bufsiz1, &bufsize, &nmod)) {
|
|
|
|
bb_perror_msg_and_die("QM_MODULES");
|
|
|
|
}
|
2002-12-14 07:28:59 +05:30
|
|
|
#endif
|
1999-12-17 04:34:20 +05:30
|
|
|
}
|
2005-11-28 21:24:22 +05:30
|
|
|
return EXIT_SUCCESS;
|
1999-12-17 04:34:20 +05:30
|
|
|
}
|
|
|
|
|
2001-03-10 03:19:12 +05:30
|
|
|
if (optind == argc)
|
2003-12-25 02:00:45 +05:30
|
|
|
bb_show_usage();
|
2001-03-10 03:19:12 +05:30
|
|
|
|
2005-11-28 21:24:22 +05:30
|
|
|
for (n = optind; n < argc; n++) {
|
2004-07-20 15:35:13 +05:30
|
|
|
#ifdef CONFIG_FEATURE_2_6_MODULES
|
2005-11-28 21:24:22 +05:30
|
|
|
const char *afterslash;
|
|
|
|
char *module_name;
|
2006-01-25 05:38:53 +05:30
|
|
|
|
2005-11-28 21:24:22 +05:30
|
|
|
afterslash = strrchr(argv[n], '/');
|
|
|
|
if (!afterslash)
|
|
|
|
afterslash = argv[n];
|
|
|
|
else
|
|
|
|
afterslash++;
|
|
|
|
module_name = alloca(strlen(afterslash) + 1);
|
|
|
|
filename2modname(module_name, afterslash);
|
2004-07-20 15:35:13 +05:30
|
|
|
#else
|
|
|
|
#define module_name argv[n]
|
|
|
|
#endif
|
2005-12-12 01:16:50 +05:30
|
|
|
if (syscall(__NR_delete_module, module_name, flags) != 0) {
|
2005-11-28 21:24:22 +05:30
|
|
|
bb_perror_msg("%s", argv[n]);
|
|
|
|
ret = EXIT_FAILURE;
|
2000-02-09 01:28:47 +05:30
|
|
|
}
|
1999-12-17 04:34:20 +05:30
|
|
|
}
|
2001-03-10 03:19:12 +05:30
|
|
|
|
2000-07-28 20:46:37 +05:30
|
|
|
return(ret);
|
1999-12-17 04:34:20 +05:30
|
|
|
}
|