2000-02-08 19:58:47 +00:00
|
|
|
/* vi: set sw=4 ts=4: */
|
1999-12-16 23:04:20 +00:00
|
|
|
/*
|
|
|
|
* Mini rmmod implementation for busybox
|
|
|
|
*
|
2003-07-14 21:21:08 +00:00
|
|
|
* Copyright (C) 1999-2003 by Erik Andersen <andersen@codepoet.org>
|
1999-12-16 23:04:20 +00:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <unistd.h>
|
2001-01-27 08:24:39 +00:00
|
|
|
#include <stdlib.h>
|
2001-03-09 21:49:12 +00:00
|
|
|
#include <getopt.h>
|
2001-02-20 06:14:08 +00:00
|
|
|
#include "busybox.h"
|
1999-12-16 23:04:20 +00:00
|
|
|
|
2001-04-05 03:14:39 +00:00
|
|
|
extern int delete_module(const char * name);
|
1999-12-16 23:04:20 +00:00
|
|
|
|
|
|
|
|
|
|
|
extern int rmmod_main(int argc, char **argv)
|
|
|
|
{
|
2001-03-09 21:49:12 +00:00
|
|
|
int n, ret = EXIT_SUCCESS;
|
2002-12-14 01:58:59 +00:00
|
|
|
size_t nmod = 0; /* number of modules */
|
|
|
|
size_t pnmod = -1; /* previous number of modules */
|
|
|
|
void *buf; /* hold the module names which we ignore but must get */
|
|
|
|
size_t bufsize = 0;
|
1999-12-16 23:04:20 +00:00
|
|
|
|
2001-03-09 21:49:12 +00:00
|
|
|
/* Parse command line. */
|
|
|
|
while ((n = getopt(argc, argv, "a")) != EOF) {
|
|
|
|
switch (n) {
|
2000-02-08 19:58:47 +00:00
|
|
|
case 'a':
|
|
|
|
/* Unload _all_ unused modules via NULL delete_module() call */
|
2002-12-14 01:58:59 +00:00
|
|
|
/* until the number of modules does not change */
|
|
|
|
buf = xmalloc(bufsize = 256);
|
|
|
|
while (nmod != pnmod) {
|
|
|
|
if (delete_module(NULL))
|
2003-03-19 09:13:01 +00:00
|
|
|
bb_perror_msg_and_die("rmmod");
|
2002-12-14 01:58:59 +00:00
|
|
|
pnmod = nmod;
|
|
|
|
/* 1 == QM_MODULES */
|
|
|
|
if (my_query_module(NULL, 1, &buf, &bufsize, &nmod)) {
|
2003-03-19 09:13:01 +00:00
|
|
|
bb_perror_msg_and_die("QM_MODULES");
|
2002-12-14 01:58:59 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
#ifdef CONFIG_FEATURE_CLEAN_UP
|
|
|
|
free(buf);
|
|
|
|
#endif
|
2000-12-01 02:55:13 +00:00
|
|
|
return EXIT_SUCCESS;
|
2000-02-08 19:58:47 +00:00
|
|
|
default:
|
2003-03-19 09:13:01 +00:00
|
|
|
bb_show_usage();
|
1999-12-16 23:04:20 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-03-09 21:49:12 +00:00
|
|
|
if (optind == argc)
|
2003-03-19 09:13:01 +00:00
|
|
|
bb_show_usage();
|
2001-03-09 21:49:12 +00:00
|
|
|
|
|
|
|
for (n = optind; n < argc; n++) {
|
|
|
|
if (delete_module(argv[n]) < 0) {
|
2003-03-19 09:13:01 +00:00
|
|
|
bb_perror_msg("%s", argv[n]);
|
2000-12-01 02:55:13 +00:00
|
|
|
ret = EXIT_FAILURE;
|
2000-02-08 19:58:47 +00:00
|
|
|
}
|
1999-12-16 23:04:20 +00:00
|
|
|
}
|
2001-03-09 21:49:12 +00:00
|
|
|
|
2000-07-28 15:16:37 +00:00
|
|
|
return(ret);
|
1999-12-16 23:04:20 +00:00
|
|
|
}
|