Update a bunch of docs. Run a script to update my email addr.
[platform/upstream/busybox.git] / modutils / lsmod.c
1 /* vi: set sw=4 ts=4: */
2 /*
3  * Mini lsmod implementation for busybox
4  *
5  * Copyright (C) 1999-2003 by Erik Andersen <andersen@codepoet.org>
6  *
7  * Modified by Alcove, Julien Gaulmin <julien.gaulmin@alcove.fr> and
8  * Nicolas Ferre <nicolas.ferre@alcove.fr> to support pre 2.1 kernels
9  * (which lack the query_module() interface).
10  *
11  * This program is free software; you can redistribute it and/or modify
12  * it under the terms of the GNU General Public License as published by
13  * the Free Software Foundation; either version 2 of the License, or
14  * (at your option) any later version.
15  *
16  * This program is distributed in the hope that it will be useful,
17  * but WITHOUT ANY WARRANTY; without even the implied warranty of
18  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19  * General Public License for more details.
20  *
21  * You should have received a copy of the GNU General Public License
22  * along with this program; if not, write to the Free Software
23  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
24  *
25  */
26
27 #include <stdlib.h>
28 #include <stdio.h>
29 #include <string.h>
30 #include <stddef.h>
31 #include <errno.h>
32 #include <unistd.h>
33 #include <dirent.h>
34 #include <ctype.h>
35 #include <assert.h>
36 #include <getopt.h>
37 #include <sys/utsname.h>
38 #include <sys/file.h>
39 #include "busybox.h"
40
41
42 #ifndef CONFIG_FEATURE_CHECK_TAINTED_MODULE
43 static inline void check_tainted(void) { printf("\n"); }
44 #else
45 #define TAINT_FILENAME                  "/proc/sys/kernel/tainted"
46 #define TAINT_PROPRIETORY_MODULE        (1<<0)
47 #define TAINT_FORCED_MODULE             (1<<1)
48 #define TAINT_UNSAFE_SMP                (1<<2)
49
50 static void check_tainted(void)
51 {
52         int tainted;
53         FILE *f;
54
55         tainted = 0;
56         if ((f = fopen(TAINT_FILENAME, "r"))) {
57                 fscanf(f, "%d", &tainted);
58                 fclose(f);
59         }
60         if (f && tainted) {
61                 printf("    Tainted: %c%c%c\n",
62                                 tainted & TAINT_PROPRIETORY_MODULE      ? 'P' : 'G',
63                                 tainted & TAINT_FORCED_MODULE           ? 'F' : ' ',
64                                 tainted & TAINT_UNSAFE_SMP              ? 'S' : ' ');
65         }
66         else {
67                 printf("    Not tainted\n");
68         }
69         printf("\n");
70 }
71 #endif
72
73 #ifdef CONFIG_FEATURE_QUERY_MODULE_INTERFACE
74
75 struct module_info
76 {
77         unsigned long addr;
78         unsigned long size;
79         unsigned long flags;
80         long usecount;
81 };
82
83
84 int query_module(const char *name, int which, void *buf, size_t bufsize, size_t *ret);
85
86 /* Values for query_module's which.  */
87 static const int QM_MODULES = 1;
88 static const int QM_DEPS = 2;
89 static const int QM_REFS = 3;
90 static const int QM_SYMBOLS = 4;
91 static const int QM_INFO = 5;
92
93 /* Bits of module.flags.  */
94 static const int NEW_MOD_RUNNING = 1;
95 static const int NEW_MOD_DELETED = 2;
96 static const int NEW_MOD_AUTOCLEAN = 4;
97 static const int NEW_MOD_VISITED = 8;
98 static const int NEW_MOD_USED_ONCE = 16;
99 static const int NEW_MOD_INITIALIZING = 64;
100
101 extern int lsmod_main(int argc, char **argv)
102 {
103         struct module_info info;
104         char *module_names, *mn, *deps, *dn;
105         size_t bufsize, depsize, nmod, count, i, j;
106
107         module_names = xmalloc(bufsize = 256);
108         if (my_query_module(NULL, QM_MODULES, (void **)&module_names, &bufsize,
109                                 &nmod)) {
110                 bb_perror_msg_and_die("QM_MODULES");
111         }
112
113         deps = xmalloc(depsize = 256);
114         printf("Module                  Size  Used by");
115         check_tainted();
116
117         for (i = 0, mn = module_names; i < nmod; mn += strlen(mn) + 1, i++) {
118                 if (query_module(mn, QM_INFO, &info, sizeof(info), &count)) {
119                         if (errno == ENOENT) {
120                                 /* The module was removed out from underneath us. */
121                                 continue;
122                         }
123                         /* else choke */
124                         bb_perror_msg_and_die("module %s: QM_INFO", mn);
125                 }
126                 if (my_query_module(mn, QM_REFS, (void **)&deps, &depsize, &count)) {
127                         if (errno == ENOENT) {
128                                 /* The module was removed out from underneath us. */
129                                 continue;
130                         }
131                         bb_perror_msg_and_die("module %s: QM_REFS", mn);
132                 }
133                 printf("%-20s%8lu%4ld", mn, info.size, info.usecount);
134                 if (info.flags & NEW_MOD_DELETED)
135                         printf(" (deleted)");
136                 else if (info.flags & NEW_MOD_INITIALIZING)
137                         printf(" (initializing)");
138                 else if (!(info.flags & NEW_MOD_RUNNING))
139                         printf(" (uninitialized)");
140                 else {
141                         if (info.flags & NEW_MOD_AUTOCLEAN)
142                                 printf(" (autoclean) ");
143                         if (!(info.flags & NEW_MOD_USED_ONCE))
144                                 printf(" (unused)");
145                 }
146                 if (count) printf(" [");
147                 for (j = 0, dn = deps; j < count; dn += strlen(dn) + 1, j++) {
148                         printf("%s%s", dn, (j==count-1)? "":" ");
149                 }
150                 if (count) printf("]");
151
152                 printf("\n");
153         }
154
155 #ifdef CONFIG_FEATURE_CLEAN_UP
156         free(module_names);
157 #endif
158
159         return( 0);
160 }
161
162 #else /* CONFIG_FEATURE_QUERY_MODULE_INTERFACE */
163
164 extern int lsmod_main(int argc, char **argv)
165 {
166         printf("Module                  Size  Used by");
167         check_tainted();
168
169         if (bb_xprint_file_by_name("/proc/modules") < 0) {
170                 return 0;
171         }
172         return 1;
173 }
174
175 #endif /* CONFIG_FEATURE_QUERY_MODULE_INTERFACE */