1 /* rmmod.c: remove a module from the kernel.
2 Copyright (C) 2001 Rusty Russell.
3 Copyright (C) 2002 Rusty Russell, IBM Corporation.
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
25 #include <asm/unistd.h>
34 extern long delete_module(const char *, unsigned int);
36 static char *next_field(const char *line
)
40 rest
= line
+ strcspn(line
, " ");
41 rest
+= strspn(rest
, " ");
45 /* Report that the module is in use. */
46 static void mod_in_use(const char *modname
, char *usedby
)
48 /* New /proc/modules uses a single "-" to mean "nothing". Old
49 one just puts nothing there. */
50 if (usedby
[0] == '-' || streq(usedby
, "")) {
51 error("Module %s is in use\n", modname
);
55 /* New /proc/modules *always* prints commas (even if only one) */
56 if (strchr(usedby
, ','))
57 /* Blatt over trailing comma for neatness */
58 usedby
[strcspn(usedby
, " \n")-1] = '\0';
60 /* Older /proc/modules just put them as
61 space-separated names. Blatt over trailing \n */
62 usedby
[strlen(usedby
)-1] = '\0';
65 error("Module %s is in use by %s\n", modname
, usedby
);
68 /* If we can check usage without entering kernel, do so. */
69 static int check_usage(const char *modname
)
72 char line
[10240], name
[64];
73 unsigned long size
, refs
;
76 module_list
= fopen("/proc/modules", "r");
78 if (errno
== ENOENT
) /* /proc may not be mounted. */
80 fatal("can't open /proc/modules: %s\n", strerror(errno
));
82 while (fgets(line
, sizeof(line
)-1, module_list
) != NULL
) {
83 if (strchr(line
, '\n') == NULL
) {
84 fatal("V. v. long line broke rmmod.\n");
88 scanned
= sscanf(line
, "%s %lu %lu", name
, &size
, &refs
);
89 if (strcmp(name
, modname
) != 0)
93 fatal("Unknown format in /proc/modules: %s\n", line
);
96 fatal("Kernel does not have unload support.\n");
98 /* Hand it fields 3 onwards. */
101 next_field(next_field(next_field(line
))));
104 error("Module %s does not exist in /proc/modules\n", modname
);
108 return (refs
== 0) ? 0 : -EINVAL
;
111 static int rmmod(const char *path
, int flags
)
114 char name
[strlen(path
) + 1];
116 filename2modname(name
, path
);
118 if ((flags
& O_NONBLOCK
) && !(flags
& O_TRUNC
)) {
119 if (check_usage(name
) != 0)
123 info("rmmod %s, wait=%s%s\n", name
,
124 (flags
& O_NONBLOCK
) ? "no" : "yes",
125 (flags
& O_TRUNC
) ? " force" : "");
127 ret
= delete_module(name
, flags
);
129 error("Removing '%s': %s\n", name
, strerror(errno
));
133 static struct option options
[] = { { "all", 0, NULL
, 'a' },
134 { "force", 0, NULL
, 'f' },
135 { "help", 0, NULL
, 'h' },
136 { "syslog", 0, NULL
, 's' },
137 { "verbose", 0, NULL
, 'v' },
138 { "version", 0, NULL
, 'V' },
139 { "wait", 0, NULL
, 'w' },
140 { NULL
, 0, NULL
, 0 } };
142 static void print_usage(const char *progname
)
145 "Usage: %s [-fhswvV] modulename ...\n"
146 // " -a (or --all) to remove all modules (no names needed)\n"
147 " -f (or --force) forces a module unload, and may crash your\n"
148 " machine. This requires the Forced Module Removal option\n"
149 " when the kernel was compiled.\n"
150 " -h (or --help) prints this help text\n"
151 " -s (or --syslog) says use syslog, not stderr\n"
152 " -v (or --verbose) enables more messages\n"
153 " -V (or --version) prints the version code\n"
154 " -w (or --wait) begins a module removal even if it is used\n"
155 " and will stop new users from accessing the module (so it\n"
156 " should eventually fall to zero).\n"
161 int main(int argc
, char *argv
[])
163 /* O_EXCL so kernels can spot old rmmod versions */
164 unsigned int flags
= O_NONBLOCK
|O_EXCL
;
168 while ((opt
= getopt_long(argc
, argv
,
169 "afh?swvV", options
, NULL
)) != EOF
) {
177 case 's': // --syslog
178 openlog("rmmod", LOG_CONS
, LOG_DAEMON
);
182 flags
&= ~O_NONBLOCK
;
184 case 'v': // --verbose
187 case 'V': // --version
188 puts(PACKAGE
" version " VERSION
);
192 print_usage(argv
[0]);
196 fprintf(stderr
, "no module names given\n");
197 print_usage(argv
[0]);
201 /* remove each specified module */
202 for (i
= optind
; i
< argc
; i
++) {
203 ret
= rmmod(argv
[i
], flags
);