source: MondoRescue/branches/3.2/mindi-busybox/modutils/rmmod.c@ 3186

Last change on this file since 3186 was 2725, checked in by Bruno Cornec, 13 years ago
  • Update mindi-busybox to 1.18.3 to avoid problems with the tar command which is now failing on recent versions with busybox 1.7.3
File size: 1.8 KB
Line 
1/* vi: set sw=4 ts=4: */
2/*
3 * Mini rmmod implementation for busybox
4 *
5 * Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
6 * Copyright (C) 2008 Timo Teras <timo.teras@iki.fi>
7 *
8 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
9 */
10
11//applet:IF_RMMOD(APPLET(rmmod, _BB_DIR_SBIN, _BB_SUID_DROP))
12
13//usage:#if !ENABLE_MODPROBE_SMALL
14//usage:#define rmmod_trivial_usage
15//usage: "[-wfa] [MODULE]..."
16//usage:#define rmmod_full_usage "\n\n"
17//usage: "Unload kernel modules\n"
18//usage: "\nOptions:"
19//usage: "\n -w Wait until the module is no longer used"
20//usage: "\n -f Force unload"
21//usage: "\n -a Remove all unused modules (recursively)"
22//usage:#define rmmod_example_usage
23//usage: "$ rmmod tulip\n"
24//usage:#endif
25
26#include "libbb.h"
27#include "modutils.h"
28
29int rmmod_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
30int rmmod_main(int argc UNUSED_PARAM, char **argv)
31{
32 int n;
33 unsigned flags = O_NONBLOCK | O_EXCL;
34
35 /* Parse command line. */
36 n = getopt32(argv, "wfas"); // -s ignored
37 argv += optind;
38 if (n & 1) // --wait
39 flags &= ~O_NONBLOCK;
40 if (n & 2) // --force
41 flags |= O_TRUNC;
42 if (n & 4) {
43 /* Unload _all_ unused modules via NULL delete_module() call */
44 if (bb_delete_module(NULL, flags) != 0 && errno != EFAULT)
45 bb_perror_msg_and_die("rmmod");
46 return EXIT_SUCCESS;
47 }
48
49 if (!*argv)
50 bb_show_usage();
51
52 n = ENABLE_FEATURE_2_4_MODULES && get_linux_version_code() < KERNEL_VERSION(2,6,0);
53 while (*argv) {
54 char modname[MODULE_NAME_LEN];
55 const char *bname;
56
57 bname = bb_basename(*argv++);
58 if (n)
59 safe_strncpy(modname, bname, MODULE_NAME_LEN);
60 else
61 filename2modname(bname, modname);
62 if (bb_delete_module(modname, flags))
63 bb_error_msg_and_die("can't unload '%s': %s",
64 modname, moderror(errno));
65 }
66
67 return EXIT_SUCCESS;
68}
Note: See TracBrowser for help on using the repository browser.