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>
|
2008-09-13 20:29:38 +05:30
|
|
|
* Copyright (C) 2008 Timo Teras <timo.teras@iki.fi>
|
1999-12-17 04:34:20 +05:30
|
|
|
*
|
2006-06-04 01:05:15 +05:30
|
|
|
* Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
|
1999-12-17 04:34:20 +05:30
|
|
|
*/
|
|
|
|
|
2007-05-27 00:30:18 +05:30
|
|
|
#include "libbb.h"
|
2008-09-13 20:29:38 +05:30
|
|
|
#include "modutils.h"
|
2006-08-29 01:10:08 +05:30
|
|
|
|
2007-10-11 15:35:36 +05:30
|
|
|
int rmmod_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
|
2008-09-13 20:29:38 +05:30
|
|
|
int rmmod_main(int argc UNUSED_PARAM, char **argv)
|
1999-12-17 04:34:20 +05:30
|
|
|
{
|
2008-09-13 20:29:38 +05:30
|
|
|
int n;
|
2009-04-13 07:55:40 +05:30
|
|
|
unsigned flags = O_NONBLOCK | O_EXCL;
|
1999-12-17 04:34:20 +05:30
|
|
|
|
2001-03-10 03:19:12 +05:30
|
|
|
/* Parse command line. */
|
2008-09-13 20:29:38 +05:30
|
|
|
n = getopt32(argv, "wfas"); // -s ignored
|
|
|
|
argv += optind;
|
2007-04-12 06:02:05 +05:30
|
|
|
if (n & 1) // --wait
|
2005-11-28 21:24:22 +05:30
|
|
|
flags &= ~O_NONBLOCK;
|
2007-04-12 06:02:05 +05:30
|
|
|
if (n & 2) // --force
|
2005-11-28 21:24:22 +05:30
|
|
|
flags |= O_TRUNC;
|
2007-04-12 06:02:05 +05:30
|
|
|
if (n & 4) {
|
2005-11-28 21:24:22 +05:30
|
|
|
/* Unload _all_ unused modules via NULL delete_module() call */
|
2008-09-13 20:29:38 +05:30
|
|
|
if (bb_delete_module(NULL, flags) != 0 && errno != EFAULT)
|
|
|
|
bb_perror_msg_and_die("rmmod");
|
2005-11-28 21:24:22 +05:30
|
|
|
return EXIT_SUCCESS;
|
1999-12-17 04:34:20 +05:30
|
|
|
}
|
|
|
|
|
2008-09-13 20:29:38 +05:30
|
|
|
if (!*argv)
|
2003-12-25 02:00:45 +05:30
|
|
|
bb_show_usage();
|
2001-03-10 03:19:12 +05:30
|
|
|
|
2009-04-13 07:55:40 +05:30
|
|
|
n = ENABLE_FEATURE_2_4_MODULES && get_linux_version_code() < KERNEL_VERSION(2,6,0);
|
2008-09-13 20:29:38 +05:30
|
|
|
while (*argv) {
|
|
|
|
char modname[MODULE_NAME_LEN];
|
2009-04-13 07:55:40 +05:30
|
|
|
const char *bname;
|
|
|
|
|
|
|
|
bname = bb_basename(*argv++);
|
|
|
|
if (n)
|
|
|
|
safe_strncpy(modname, bname, MODULE_NAME_LEN);
|
|
|
|
else
|
|
|
|
filename2modname(bname, modname);
|
2008-09-13 20:29:38 +05:30
|
|
|
if (bb_delete_module(modname, flags))
|
2009-04-13 07:55:40 +05:30
|
|
|
bb_error_msg_and_die("can't unload '%s': %s",
|
2008-09-13 20:29:38 +05:30
|
|
|
modname, moderror(errno));
|
1999-12-17 04:34:20 +05:30
|
|
|
}
|
2001-03-10 03:19:12 +05:30
|
|
|
|
2008-09-13 20:29:38 +05:30
|
|
|
return EXIT_SUCCESS;
|
1999-12-17 04:34:20 +05:30
|
|
|
}
|