blob: 5576eb6a1fece7cb8acaf5b5f51cf03deceb7005 [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>
29#include <sys/syscall.h>
Eric Andersencbe31da2001-02-20 06:14:08 +000030#include "busybox.h"
Erik Andersen3d7e3411999-12-16 23:04:20 +000031
Erik Andersen3d7e3411999-12-16 23:04:20 +000032extern int rmmod_main(int argc, char **argv)
33{
Mark Whitleyf90c28d2001-03-09 21:49:12 +000034 int n, ret = EXIT_SUCCESS;
Tim Rikercf932742002-12-14 01:58:59 +000035 size_t nmod = 0; /* number of modules */
36 size_t pnmod = -1; /* previous number of modules */
Eric Andersene8521f12004-07-13 00:09:34 +000037 unsigned int flags = O_NONBLOCK|O_EXCL;
38#ifdef CONFIG_FEATURE_QUERY_MODULE_INTERFACE
Tim Rikercf932742002-12-14 01:58:59 +000039 void *buf; /* hold the module names which we ignore but must get */
40 size_t bufsize = 0;
Eric Andersene8521f12004-07-13 00:09:34 +000041#endif
Erik Andersen3d7e3411999-12-16 23:04:20 +000042
Mark Whitleyf90c28d2001-03-09 21:49:12 +000043 /* Parse command line. */
44 while ((n = getopt(argc, argv, "a")) != EOF) {
45 switch (n) {
Eric Andersene7047882003-12-11 01:42:13 +000046 case 'w': // --wait
47 flags &= ~O_NONBLOCK;
Eric Andersenc7bda1c2004-03-15 08:29:22 +000048 break;
Eric Andersene7047882003-12-11 01:42:13 +000049 case 'f': // --force
50 flags |= O_TRUNC;
Eric Andersenc7bda1c2004-03-15 08:29:22 +000051 break;
Erik Andersene49d5ec2000-02-08 19:58:47 +000052 case 'a':
53 /* Unload _all_ unused modules via NULL delete_module() call */
Tim Rikercf932742002-12-14 01:58:59 +000054 /* until the number of modules does not change */
Eric Andersene8521f12004-07-13 00:09:34 +000055#ifdef CONFIG_FEATURE_QUERY_MODULE_INTERFACE
Tim Rikercf932742002-12-14 01:58:59 +000056 buf = xmalloc(bufsize = 256);
Eric Andersene8521f12004-07-13 00:09:34 +000057#endif
Tim Rikercf932742002-12-14 01:58:59 +000058 while (nmod != pnmod) {
Eric Andersene8521f12004-07-13 00:09:34 +000059 if (syscall(__NR_delete_module, NULL, flags) < 0) {
60 if (errno==EFAULT)
61 return(ret);
Manuel Novoa III cad53642003-03-19 09:13:01 +000062 bb_perror_msg_and_die("rmmod");
Eric Andersene8521f12004-07-13 00:09:34 +000063 }
Tim Rikercf932742002-12-14 01:58:59 +000064 pnmod = nmod;
Eric Andersene8521f12004-07-13 00:09:34 +000065#ifdef CONFIG_FEATURE_QUERY_MODULE_INTERFACE
Tim Rikercf932742002-12-14 01:58:59 +000066 /* 1 == QM_MODULES */
67 if (my_query_module(NULL, 1, &buf, &bufsize, &nmod)) {
Manuel Novoa III cad53642003-03-19 09:13:01 +000068 bb_perror_msg_and_die("QM_MODULES");
Tim Rikercf932742002-12-14 01:58:59 +000069 }
Eric Andersene8521f12004-07-13 00:09:34 +000070#endif
Tim Rikercf932742002-12-14 01:58:59 +000071 }
Eric Andersene8521f12004-07-13 00:09:34 +000072#if defined CONFIG_FEATURE_CLEAN_UP && CONFIG_FEATURE_QUERY_MODULE_INTERFACE
Tim Rikercf932742002-12-14 01:58:59 +000073 free(buf);
74#endif
Matt Kraai3e856ce2000-12-01 02:55:13 +000075 return EXIT_SUCCESS;
Erik Andersene49d5ec2000-02-08 19:58:47 +000076 default:
Manuel Novoa III cad53642003-03-19 09:13:01 +000077 bb_show_usage();
Erik Andersene49d5ec2000-02-08 19:58:47 +000078 }
Erik Andersen3d7e3411999-12-16 23:04:20 +000079 }
Erik Andersene49d5ec2000-02-08 19:58:47 +000080
Mark Whitleyf90c28d2001-03-09 21:49:12 +000081 if (optind == argc)
Eric Andersen3b1a7442003-12-24 20:30:45 +000082 bb_show_usage();
Mark Whitleyf90c28d2001-03-09 21:49:12 +000083
84 for (n = optind; n < argc; n++) {
Eric Andersene7047882003-12-11 01:42:13 +000085 if (syscall(__NR_delete_module, argv[n], flags) < 0) {
Manuel Novoa III cad53642003-03-19 09:13:01 +000086 bb_perror_msg("%s", argv[n]);
Matt Kraai3e856ce2000-12-01 02:55:13 +000087 ret = EXIT_FAILURE;
Erik Andersene49d5ec2000-02-08 19:58:47 +000088 }
Erik Andersene49d5ec2000-02-08 19:58:47 +000089 }
Mark Whitleyf90c28d2001-03-09 21:49:12 +000090
Eric Andersena5716d32000-07-28 15:16:37 +000091 return(ret);
Erik Andersen3d7e3411999-12-16 23:04:20 +000092}