busybox/modutils/rmmod.c

48 lines
1.1 KiB
C
Raw Normal View History

/* vi: set sw=4 ts=4: */
1999-12-17 04:34:20 +05:30
/*
* Mini rmmod implementation for busybox
*
* Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
* Copyright (C) 2008 Timo Teras <timo.teras@iki.fi>
1999-12-17 04:34:20 +05:30
*
* Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
1999-12-17 04:34:20 +05:30
*/
#include "libbb.h"
#include "modutils.h"
int rmmod_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
int rmmod_main(int argc UNUSED_PARAM, char **argv)
1999-12-17 04:34:20 +05:30
{
int n;
unsigned int flags = O_NONBLOCK|O_EXCL;
1999-12-17 04:34:20 +05:30
/* Parse command line. */
n = getopt32(argv, "wfas"); // -s ignored
argv += optind;
2007-04-12 06:02:05 +05:30
if (n & 1) // --wait
flags &= ~O_NONBLOCK;
2007-04-12 06:02:05 +05:30
if (n & 2) // --force
flags |= O_TRUNC;
2007-04-12 06:02:05 +05:30
if (n & 4) {
/* Unload _all_ unused modules via NULL delete_module() call */
if (bb_delete_module(NULL, flags) != 0 && errno != EFAULT)
bb_perror_msg_and_die("rmmod");
return EXIT_SUCCESS;
1999-12-17 04:34:20 +05:30
}
if (!*argv)
2003-12-25 02:00:45 +05:30
bb_show_usage();
while (*argv) {
char modname[MODULE_NAME_LEN];
filename2modname(bb_basename(*argv++), modname);
if (bb_delete_module(modname, flags))
bb_error_msg_and_die("cannot unload '%s': %s",
modname, moderror(errno));
1999-12-17 04:34:20 +05:30
}
return EXIT_SUCCESS;
1999-12-17 04:34:20 +05:30
}