Fix up copyright msgs. Bump version to 0.49 in preparation for
[platform/upstream/busybox.git] / lsmod.c
1 /* vi: set sw=4 ts=4: */
2 /*
3  * Mini lsmod implementation for busybox
4  *
5  * Copyright (C) 1999,2000,2001 by Lineo, inc.
6  * Written by Erik Andersen <andersen@lineo.com>, <andersee@debian.org>
7  *
8  * Modified by Alcove, Julien Gaulmin <julien.gaulmin@alcove.fr> and
9  * Nicolas Ferre <nicolas.ferre@alcove.fr> to support pre 2.1 kernels
10  * (which lack the query_module() interface).
11  *
12  * This program is free software; you can redistribute it and/or modify
13  * it under the terms of the GNU General Public License as published by
14  * the Free Software Foundation; either version 2 of the License, or
15  * (at your option) any later version.
16  *
17  * This program is distributed in the hope that it will be useful,
18  * but WITHOUT ANY WARRANTY; without even the implied warranty of
19  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20  * General Public License for more details.
21  *
22  * You should have received a copy of the GNU General Public License
23  * along with this program; if not, write to the Free Software
24  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
25  *
26  */
27
28 #include "busybox.h"
29 #include <stdlib.h>
30 #include <stdio.h>
31 #include <stddef.h>
32 #include <errno.h>
33 #include <unistd.h>
34 #include <dirent.h>
35 #include <ctype.h>
36 #include <assert.h>
37 #include <getopt.h>
38 #include <sys/utsname.h>
39 #include <sys/file.h>
40
41
42
43 #ifdef BB_FEATURE_NEW_MODULE_INTERFACE
44
45 struct module_info
46 {
47         unsigned long addr;
48         unsigned long size;
49         unsigned long flags;
50         long usecount;
51 };
52
53
54 int query_module(const char *name, int which, void *buf, size_t bufsize,
55                  size_t *ret);
56
57 /* Values for query_module's which.  */
58 static const int QM_MODULES = 1;
59 static const int QM_DEPS = 2;
60 static const int QM_REFS = 3;
61 static const int QM_SYMBOLS = 4;
62 static const int QM_INFO = 5;
63
64 /* Bits of module.flags.  */
65 static const int NEW_MOD_RUNNING = 1;
66 static const int NEW_MOD_DELETED = 2;
67 static const int NEW_MOD_AUTOCLEAN = 4;
68 static const int NEW_MOD_VISITED = 8;
69 static const int NEW_MOD_USED_ONCE = 16;
70 static const int NEW_MOD_INITIALIZING = 64;
71
72
73 extern int lsmod_main(int argc, char **argv)
74 {
75         struct module_info info;
76         char *module_names, *mn, *deps, *dn;
77         size_t bufsize, nmod, count, i, j;
78
79         module_names = xmalloc(bufsize = 256);
80         deps = xmalloc(bufsize);
81         if (query_module(NULL, QM_MODULES, module_names, bufsize, &nmod)) {
82                 perror_msg_and_die("QM_MODULES");
83         }
84
85         printf("Module                  Size  Used by\n");
86         for (i = 0, mn = module_names; i < nmod; mn += strlen(mn) + 1, i++) {
87                 if (query_module(mn, QM_INFO, &info, sizeof(info), &count)) {
88                         if (errno == ENOENT) {
89                                 /* The module was removed out from underneath us. */
90                                 continue;
91                         }
92                         /* else choke */
93                         perror_msg_and_die("module %s: QM_INFO", mn);
94                 }
95                 while (query_module(mn, QM_REFS, deps, bufsize, &count)) {
96                         if (errno == ENOENT) {
97                                 /* The module was removed out from underneath us. */
98                                 continue;
99                         }
100                         if (errno != ENOSPC) {
101                                 error_msg_and_die("module %s: QM_REFS", mn);
102                         }
103                         deps = xrealloc(deps, bufsize = count);
104                 }
105                 printf("%-20s%8lu%4ld ", mn, info.size, info.usecount);
106                 if (count) printf("[");
107                 for (j = 0, dn = deps; j < count; dn += strlen(dn) + 1, j++) {
108                         printf("%s%s", dn, (j==count-1)? "":" ");
109                 }
110                 if (count) printf("] ");
111
112                 if (info.flags & NEW_MOD_DELETED)
113                         printf("(deleted)");
114                 else if (info.flags & NEW_MOD_INITIALIZING)
115                         printf("(initializing)");
116                 else if (!(info.flags & NEW_MOD_RUNNING))
117                         printf("(uninitialized)");
118                 else {
119                         if (info.flags & NEW_MOD_AUTOCLEAN)
120                                 printf("(autoclean) ");
121                         if (!(info.flags & NEW_MOD_USED_ONCE))
122                                 printf("(unused)");
123                 }
124                 printf("\n");
125         }
126
127
128         return( 0);
129 }
130
131 #else /*BB_FEATURE_OLD_MODULE_INTERFACE*/
132
133 #if ! defined BB_FEATURE_USE_PROCFS
134 #error Sorry, I depend on the /proc filesystem right now.
135 #endif
136
137 extern int lsmod_main(int argc, char **argv)
138 {
139         int fd, i;
140         char line[128];
141
142         puts("Module                  Size  Used by");
143         fflush(stdout);
144
145         if ((fd = open("/proc/modules", O_RDONLY)) >= 0 ) {
146                 while ((i = read(fd, line, sizeof(line))) > 0) {
147                         write(fileno(stdout), line, i);
148                 }
149                 close(fd);
150                 return 0;
151         }
152         perror_msg_and_die("/proc/modules");
153         return 1;
154 }
155
156 #endif /*BB_FEATURE_OLD_MODULE_INTERFACE*/