blob: 76ed2fdd8f0ea2d999e3be9d1f0f69103933beee [file] [log] [blame]
Erik Andersene49d5ec2000-02-08 19:58:47 +00001/* vi: set sw=4 ts=4: */
Erik Andersen6f23cec1999-12-15 22:14:12 +00002/*
3 * Mini lsmod implementation for busybox
4 *
Eric Andersen8ec10a92001-01-27 09:33:39 +00005 * Copyright (C) 1999,2000,2001 by Lineo, inc.
Erik Andersen6f23cec1999-12-15 22:14:12 +00006 * Written by Erik Andersen <andersen@lineo.com>, <andersee@debian.org>
7 *
Eric Andersen21adca72000-12-06 18:18:26 +00008 * 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 *
Erik Andersen6f23cec1999-12-15 22:14:12 +000012 * 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
Eric Andersenbe0dc0d2000-08-21 19:25:16 +000028#include <stdlib.h>
Erik Andersen6f23cec1999-12-15 22:14:12 +000029#include <stdio.h>
Eric Anderseneba8ed72001-03-09 14:36:42 +000030#include <string.h>
Eric Andersenbe0dc0d2000-08-21 19:25:16 +000031#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>
Eric Andersen21adca72000-12-06 18:18:26 +000039#include <sys/file.h>
Eric Andersencbe31da2001-02-20 06:14:08 +000040#include "busybox.h"
Eric Andersenbe0dc0d2000-08-21 19:25:16 +000041
42
43
Eric Andersenf5d5e772001-01-24 23:34:48 +000044#ifdef BB_FEATURE_NEW_MODULE_INTERFACE
Eric Andersen21adca72000-12-06 18:18:26 +000045
Eric Andersenbe0dc0d2000-08-21 19:25:16 +000046struct module_info
47{
48 unsigned long addr;
49 unsigned long size;
50 unsigned long flags;
51 long usecount;
52};
53
54
Eric Andersene76c3b02001-04-05 03:14:39 +000055int query_module(const char *name, int which, void *buf, size_t bufsize, size_t *ret);
Eric Andersenbe0dc0d2000-08-21 19:25:16 +000056
57/* Values for query_module's which. */
Mark Whitley59ab0252001-01-23 22:30:04 +000058static const int QM_MODULES = 1;
59static const int QM_DEPS = 2;
60static const int QM_REFS = 3;
61static const int QM_SYMBOLS = 4;
62static const int QM_INFO = 5;
Eric Andersenbe0dc0d2000-08-21 19:25:16 +000063
Eric Andersende34e432000-09-10 16:16:00 +000064/* Bits of module.flags. */
Mark Whitley59ab0252001-01-23 22:30:04 +000065static const int NEW_MOD_RUNNING = 1;
66static const int NEW_MOD_DELETED = 2;
67static const int NEW_MOD_AUTOCLEAN = 4;
68static const int NEW_MOD_VISITED = 8;
69static const int NEW_MOD_USED_ONCE = 16;
70static const int NEW_MOD_INITIALIZING = 64;
Erik Andersen6f23cec1999-12-15 22:14:12 +000071
Matt Kraai0f50bca2001-04-13 14:40:15 +000072static int my_query_module(const char *name, int which, void **buf,
73 size_t *bufsize, size_t *ret)
74{
75 int my_ret;
76
77 my_ret = query_module(name, which, *buf, *bufsize, ret);
78
79 if (my_ret == -1 && errno == ENOSPC) {
80 *buf = xrealloc(*buf, *ret);
81 *bufsize = *ret;
82
83 my_ret = query_module(name, which, *buf, *bufsize, ret);
84 }
85
86 return my_ret;
87}
Erik Andersen6f23cec1999-12-15 22:14:12 +000088
Erik Andersen6f23cec1999-12-15 22:14:12 +000089extern int lsmod_main(int argc, char **argv)
90{
Eric Andersenbe0dc0d2000-08-21 19:25:16 +000091 struct module_info info;
92 char *module_names, *mn, *deps, *dn;
Matt Kraai0f50bca2001-04-13 14:40:15 +000093 size_t bufsize, depsize, nmod, count, i, j;
Erik Andersene49d5ec2000-02-08 19:58:47 +000094
Eric Andersenbe0dc0d2000-08-21 19:25:16 +000095 module_names = xmalloc(bufsize = 256);
Matt Kraai0f50bca2001-04-13 14:40:15 +000096 if (my_query_module(NULL, QM_MODULES, (void **)&module_names, &bufsize,
97 &nmod)) {
Matt Kraai0dab8292000-12-18 03:08:29 +000098 perror_msg_and_die("QM_MODULES");
Eric Andersenbe0dc0d2000-08-21 19:25:16 +000099 }
100
Matt Kraai0f50bca2001-04-13 14:40:15 +0000101 deps = xmalloc(depsize = 256);
Eric Andersenbe0dc0d2000-08-21 19:25:16 +0000102 printf("Module Size Used by\n");
103 for (i = 0, mn = module_names; i < nmod; mn += strlen(mn) + 1, i++) {
104 if (query_module(mn, QM_INFO, &info, sizeof(info), &count)) {
105 if (errno == ENOENT) {
106 /* The module was removed out from underneath us. */
107 continue;
108 }
109 /* else choke */
Matt Kraai0dab8292000-12-18 03:08:29 +0000110 perror_msg_and_die("module %s: QM_INFO", mn);
Eric Andersenbe0dc0d2000-08-21 19:25:16 +0000111 }
Matt Kraai0f50bca2001-04-13 14:40:15 +0000112 if (my_query_module(mn, QM_REFS, (void **)&deps, &depsize, &count)) {
Eric Andersenbe0dc0d2000-08-21 19:25:16 +0000113 if (errno == ENOENT) {
114 /* The module was removed out from underneath us. */
115 continue;
116 }
Matt Kraai0f50bca2001-04-13 14:40:15 +0000117 perror_msg_and_die("module %s: QM_REFS", mn);
Eric Andersenbe0dc0d2000-08-21 19:25:16 +0000118 }
119 printf("%-20s%8lu%4ld ", mn, info.size, info.usecount);
Eric Andersende34e432000-09-10 16:16:00 +0000120 if (info.flags & NEW_MOD_DELETED)
Eric Andersenccb0a9b2000-09-12 16:20:49 +0000121 printf("(deleted)");
Eric Andersende34e432000-09-10 16:16:00 +0000122 else if (info.flags & NEW_MOD_INITIALIZING)
Eric Andersenccb0a9b2000-09-12 16:20:49 +0000123 printf("(initializing)");
Eric Andersende34e432000-09-10 16:16:00 +0000124 else if (!(info.flags & NEW_MOD_RUNNING))
Eric Andersenccb0a9b2000-09-12 16:20:49 +0000125 printf("(uninitialized)");
Eric Andersende34e432000-09-10 16:16:00 +0000126 else {
127 if (info.flags & NEW_MOD_AUTOCLEAN)
Matt Kraai721119e2000-09-19 05:25:12 +0000128 printf("(autoclean) ");
Eric Andersende34e432000-09-10 16:16:00 +0000129 if (!(info.flags & NEW_MOD_USED_ONCE))
Eric Andersenccb0a9b2000-09-12 16:20:49 +0000130 printf("(unused)");
Eric Andersende34e432000-09-10 16:16:00 +0000131 }
Eric Andersenafeb9652001-02-24 19:51:54 +0000132 if (count) printf("[");
133 for (j = 0, dn = deps; j < count; dn += strlen(dn) + 1, j++) {
134 printf("%s%s", dn, (j==count-1)? "":" ");
135 }
136 if (count) printf("] ");
137
Eric Andersenccb0a9b2000-09-12 16:20:49 +0000138 printf("\n");
Eric Andersenbe0dc0d2000-08-21 19:25:16 +0000139 }
140
141
142 return( 0);
Erik Andersen6f23cec1999-12-15 22:14:12 +0000143}
Eric Andersen21adca72000-12-06 18:18:26 +0000144
Eric Andersenf5d5e772001-01-24 23:34:48 +0000145#else /*BB_FEATURE_OLD_MODULE_INTERFACE*/
Eric Andersen21adca72000-12-06 18:18:26 +0000146
Eric Andersen21adca72000-12-06 18:18:26 +0000147extern int lsmod_main(int argc, char **argv)
148{
149 int fd, i;
150 char line[128];
151
152 puts("Module Size Used by");
153 fflush(stdout);
154
155 if ((fd = open("/proc/modules", O_RDONLY)) >= 0 ) {
156 while ((i = read(fd, line, sizeof(line))) > 0) {
157 write(fileno(stdout), line, i);
158 }
159 close(fd);
160 return 0;
161 }
Matt Kraai0dab8292000-12-18 03:08:29 +0000162 perror_msg_and_die("/proc/modules");
Eric Andersen21adca72000-12-06 18:18:26 +0000163 return 1;
164}
165
Eric Andersenf5d5e772001-01-24 23:34:48 +0000166#endif /*BB_FEATURE_OLD_MODULE_INTERFACE*/