blob: 512221ba57308d270413e7a940359f7cb837dfe8 [file] [log] [blame]
Erik Andersene49d5ec2000-02-08 19:58:47 +00001/* vi: set sw=4 ts=4: */
Erik Andersen3d7e3411999-12-16 23:04:20 +00002/*
3 * Mini rmmod implementation for busybox
4 *
Eric Andersenc7bda1c2004-03-15 08:29:22 +00005 * Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
Erik Andersen3d7e3411999-12-16 23:04:20 +00006 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 *
21 */
22
Erik Andersen3d7e3411999-12-16 23:04:20 +000023#include <stdio.h>
24#include <errno.h>
25#include <unistd.h>
Eric Andersened3ef502001-01-27 08:24:39 +000026#include <stdlib.h>
Mark Whitleyf90c28d2001-03-09 21:49:12 +000027#include <getopt.h>
Eric Andersene7047882003-12-11 01:42:13 +000028#include <fcntl.h>
Eric Andersenc0693ed2004-07-20 10:05:13 +000029#include <string.h>
Rob Landley52219872005-11-27 19:01:53 +000030#include <sys/utsname.h>
Eric Andersene7047882003-12-11 01:42:13 +000031#include <sys/syscall.h>
Eric Andersencbe31da2001-02-20 06:14:08 +000032#include "busybox.h"
Erik Andersen3d7e3411999-12-16 23:04:20 +000033
Eric Andersenc0693ed2004-07-20 10:05:13 +000034#ifdef CONFIG_FEATURE_2_6_MODULES
35static inline void filename2modname(char *modname, const char *filename)
36{
37 const char *afterslash;
38 unsigned int i;
39
40 afterslash = strrchr(filename, '/');
41 if (!afterslash)
42 afterslash = filename;
43 else
44 afterslash++;
45
46 /* Convert to underscores, stop at first . */
47 for (i = 0; afterslash[i] && afterslash[i] != '.'; i++) {
Rob Landley52219872005-11-27 19:01:53 +000048 int kr_chk = 1;
49
50 if (ENABLE_FEATURE_2_4_MODULES) {
51 struct utsname uname_info;
52 if (uname(&uname_info) == -1)
53 bb_error_msg_and_die("cannot get uname data");
54 if (strcmp(uname_info.release, "2.6") < 0)
55 kr_chk = 0;
56 }
57 if (kr_chk && (afterslash[i] == '-'))
Eric Andersenc0693ed2004-07-20 10:05:13 +000058 modname[i] = '_';
59 else
60 modname[i] = afterslash[i];
61 }
62 modname[i] = '\0';
63}
64#endif
65
Erik Andersen3d7e3411999-12-16 23:04:20 +000066extern int rmmod_main(int argc, char **argv)
67{
Mark Whitleyf90c28d2001-03-09 21:49:12 +000068 int n, ret = EXIT_SUCCESS;
Tim Rikercf932742002-12-14 01:58:59 +000069 size_t nmod = 0; /* number of modules */
70 size_t pnmod = -1; /* previous number of modules */
Eric Andersene8521f12004-07-13 00:09:34 +000071 unsigned int flags = O_NONBLOCK|O_EXCL;
72#ifdef CONFIG_FEATURE_QUERY_MODULE_INTERFACE
Tim Rikercf932742002-12-14 01:58:59 +000073 void *buf; /* hold the module names which we ignore but must get */
74 size_t bufsize = 0;
Eric Andersene8521f12004-07-13 00:09:34 +000075#endif
Erik Andersen3d7e3411999-12-16 23:04:20 +000076
Mark Whitleyf90c28d2001-03-09 21:49:12 +000077 /* Parse command line. */
78 while ((n = getopt(argc, argv, "a")) != EOF) {
79 switch (n) {
Eric Andersene7047882003-12-11 01:42:13 +000080 case 'w': // --wait
81 flags &= ~O_NONBLOCK;
Eric Andersenc7bda1c2004-03-15 08:29:22 +000082 break;
Eric Andersene7047882003-12-11 01:42:13 +000083 case 'f': // --force
84 flags |= O_TRUNC;
Eric Andersenc7bda1c2004-03-15 08:29:22 +000085 break;
Erik Andersene49d5ec2000-02-08 19:58:47 +000086 case 'a':
87 /* Unload _all_ unused modules via NULL delete_module() call */
Tim Rikercf932742002-12-14 01:58:59 +000088 /* until the number of modules does not change */
Eric Andersene8521f12004-07-13 00:09:34 +000089#ifdef CONFIG_FEATURE_QUERY_MODULE_INTERFACE
Tim Rikercf932742002-12-14 01:58:59 +000090 buf = xmalloc(bufsize = 256);
Eric Andersene8521f12004-07-13 00:09:34 +000091#endif
Tim Rikercf932742002-12-14 01:58:59 +000092 while (nmod != pnmod) {
Eric Andersene8521f12004-07-13 00:09:34 +000093 if (syscall(__NR_delete_module, NULL, flags) < 0) {
94 if (errno==EFAULT)
95 return(ret);
Manuel Novoa III cad53642003-03-19 09:13:01 +000096 bb_perror_msg_and_die("rmmod");
Eric Andersene8521f12004-07-13 00:09:34 +000097 }
Tim Rikercf932742002-12-14 01:58:59 +000098 pnmod = nmod;
Eric Andersene8521f12004-07-13 00:09:34 +000099#ifdef CONFIG_FEATURE_QUERY_MODULE_INTERFACE
Tim Rikercf932742002-12-14 01:58:59 +0000100 /* 1 == QM_MODULES */
101 if (my_query_module(NULL, 1, &buf, &bufsize, &nmod)) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000102 bb_perror_msg_and_die("QM_MODULES");
Tim Rikercf932742002-12-14 01:58:59 +0000103 }
Eric Andersene8521f12004-07-13 00:09:34 +0000104#endif
Tim Rikercf932742002-12-14 01:58:59 +0000105 }
Eric Andersene8521f12004-07-13 00:09:34 +0000106#if defined CONFIG_FEATURE_CLEAN_UP && CONFIG_FEATURE_QUERY_MODULE_INTERFACE
Tim Rikercf932742002-12-14 01:58:59 +0000107 free(buf);
108#endif
Matt Kraai3e856ce2000-12-01 02:55:13 +0000109 return EXIT_SUCCESS;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000110 default:
Manuel Novoa III cad53642003-03-19 09:13:01 +0000111 bb_show_usage();
Erik Andersene49d5ec2000-02-08 19:58:47 +0000112 }
Erik Andersen3d7e3411999-12-16 23:04:20 +0000113 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000114
Mark Whitleyf90c28d2001-03-09 21:49:12 +0000115 if (optind == argc)
Eric Andersen3b1a7442003-12-24 20:30:45 +0000116 bb_show_usage();
Mark Whitleyf90c28d2001-03-09 21:49:12 +0000117
Eric Andersenc0693ed2004-07-20 10:05:13 +0000118 {
Robert Grieblbd8dd1e2004-07-20 18:36:51 +0000119 for (n = optind; n < argc; n++) {
Eric Andersenc0693ed2004-07-20 10:05:13 +0000120#ifdef CONFIG_FEATURE_2_6_MODULES
Robert Grieblbd8dd1e2004-07-20 18:36:51 +0000121 char module_name[strlen(argv[n]) + 1];
122 filename2modname(module_name, argv[n]);
Eric Andersenc0693ed2004-07-20 10:05:13 +0000123#else
124#define module_name argv[n]
125#endif
Eric Andersenc0693ed2004-07-20 10:05:13 +0000126 if (syscall(__NR_delete_module, module_name, flags) < 0) {
127 bb_perror_msg("%s", argv[n]);
128 ret = EXIT_FAILURE;
129 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000130 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000131 }
Mark Whitleyf90c28d2001-03-09 21:49:12 +0000132
Eric Andersena5716d32000-07-28 15:16:37 +0000133 return(ret);
Erik Andersen3d7e3411999-12-16 23:04:20 +0000134}