Major coreutils update.
[platform/upstream/busybox.git] / modutils / rmmod.c
1 /* vi: set sw=4 ts=4: */
2 /*
3  * Mini rmmod implementation for busybox
4  *
5  * Copyright (C) 1999,2000 by Lineo, inc. and Erik Andersen
6  * Copyright (C) 1999,2000,2001 by Erik Andersen <andersee@debian.org>
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; either version 2 of the License, or
11  * (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16  * General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program; if not, write to the Free Software
20  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21  *
22  */
23
24 #include <stdio.h>
25 #include <errno.h>
26 #include <unistd.h>
27 #include <stdlib.h>
28 #include <getopt.h>
29 #include "busybox.h"
30
31 extern int delete_module(const char * name);
32
33
34 extern int rmmod_main(int argc, char **argv)
35 {
36         int n, ret = EXIT_SUCCESS;
37         size_t nmod = 0; /* number of modules */
38         size_t pnmod = -1; /* previous number of modules */
39         void *buf; /* hold the module names which we ignore but must get */
40         size_t bufsize = 0;
41
42         /* Parse command line. */
43         while ((n = getopt(argc, argv, "a")) != EOF) {
44                 switch (n) {
45                         case 'a':
46                                 /* Unload _all_ unused modules via NULL delete_module() call */
47                                 /* until the number of modules does not change */
48                                 buf = xmalloc(bufsize = 256);
49                                 while (nmod != pnmod) {
50                                         if (delete_module(NULL))
51                                                 bb_perror_msg_and_die("rmmod");
52                                         pnmod = nmod;
53                                         /* 1 == QM_MODULES */
54                                         if (my_query_module(NULL, 1, &buf, &bufsize, &nmod)) {
55                                                 bb_perror_msg_and_die("QM_MODULES");
56                                         }
57                                 }
58 #ifdef CONFIG_FEATURE_CLEAN_UP
59                                 free(buf);
60 #endif
61                                 return EXIT_SUCCESS;
62                         default:
63                                 bb_show_usage();
64                 }
65         }
66
67         if (optind == argc)
68                         bb_show_usage();
69
70         for (n = optind; n < argc; n++) {
71                 if (delete_module(argv[n]) < 0) {
72                         bb_perror_msg("%s", argv[n]);
73                         ret = EXIT_FAILURE;
74                 }
75         }
76
77         return(ret);
78 }