Michael Tokarev, mjt at tls dot msk dot ru writes:
[oweals/busybox.git] / modutils / rmmod.c
1 /* vi: set sw=4 ts=4: */
2 /*
3  * Mini rmmod implementation for busybox
4  *
5  * Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
6  *
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
23 #include <stdio.h>
24 #include <errno.h>
25 #include <unistd.h>
26 #include <stdlib.h>
27 #include <getopt.h>
28 #include <fcntl.h>
29 #include <sys/syscall.h>
30 #include "busybox.h"
31
32 extern int rmmod_main(int argc, char **argv)
33 {
34         int n, ret = EXIT_SUCCESS;
35         size_t nmod = 0; /* number of modules */
36         size_t pnmod = -1; /* previous number of modules */
37         void *buf; /* hold the module names which we ignore but must get */
38         size_t bufsize = 0;
39         unsigned int flags = O_NONBLOCK|O_EXCL;
40
41         /* Parse command line. */
42         while ((n = getopt(argc, argv, "a")) != EOF) {
43                 switch (n) {
44                         case 'w':       // --wait
45                                 flags &= ~O_NONBLOCK;
46                                 break;
47                         case 'f':       // --force
48                                 flags |= O_TRUNC;
49                                 break;
50                         case 'a':
51                                 /* Unload _all_ unused modules via NULL delete_module() call */
52                                 /* until the number of modules does not change */
53                                 buf = xmalloc(bufsize = 256);
54                                 while (nmod != pnmod) {
55                                         if (syscall(__NR_delete_module, NULL, flags) < 0)
56                                                 bb_perror_msg_and_die("rmmod");
57                                         pnmod = nmod;
58                                         /* 1 == QM_MODULES */
59                                         if (my_query_module(NULL, 1, &buf, &bufsize, &nmod)) {
60                                                 bb_perror_msg_and_die("QM_MODULES");
61                                         }
62                                 }
63 #ifdef CONFIG_FEATURE_CLEAN_UP
64                                 free(buf);
65 #endif
66                                 return EXIT_SUCCESS;
67                         default:
68                                 bb_show_usage();
69                 }
70         }
71
72         if (optind == argc)
73                 bb_show_usage();
74
75         for (n = optind; n < argc; n++) {
76                 if (syscall(__NR_delete_module, argv[n], flags) < 0) {
77                         bb_perror_msg("%s", argv[n]);
78                         ret = EXIT_FAILURE;
79                 }
80         }
81
82         return(ret);
83 }