blob: df4b3c16b19298d9c19b6f9bc029b216664e280c [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 Andersenbdfd0d72001-10-24 05:00:29 +00005 * Copyright (C) 1999,2000 by Lineo, inc. and Erik Andersen
6 * Copyright (C) 1999,2000,2001 by Erik Andersen <andersee@debian.org>
Erik Andersen6f23cec1999-12-15 22:14:12 +00007 *
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
Eric Andersen71ae64b2002-10-10 04:20:21 +000043#ifndef CONFIG_FEATURE_CHECK_TAINTED_MODULE
44static inline void check_tainted(void) { printf("\n"); }
45#else
Eric Andersen166fa462002-09-16 05:30:24 +000046#define TAINT_FILENAME "/proc/sys/kernel/tainted"
47#define TAINT_PROPRIETORY_MODULE (1<<0)
48#define TAINT_FORCED_MODULE (1<<1)
49#define TAINT_UNSAFE_SMP (1<<2)
50
Eric Andersen71ae64b2002-10-10 04:20:21 +000051static void check_tainted(void)
Eric Andersen166fa462002-09-16 05:30:24 +000052{
53 int tainted;
54 FILE *f;
55
56 tainted = 0;
57 if ((f = fopen(TAINT_FILENAME, "r"))) {
58 fscanf(f, "%d", &tainted);
59 fclose(f);
60 }
61 if (f && tainted) {
Eric Andersen52864942002-10-08 09:38:07 +000062 printf(" Tainted: %c%c%c\n",
Eric Andersen166fa462002-09-16 05:30:24 +000063 tainted & TAINT_PROPRIETORY_MODULE ? 'P' : 'G',
64 tainted & TAINT_FORCED_MODULE ? 'F' : ' ',
65 tainted & TAINT_UNSAFE_SMP ? 'S' : ' ');
66 }
67 else {
Eric Andersen52864942002-10-08 09:38:07 +000068 printf(" Not tainted\n");
Eric Andersen166fa462002-09-16 05:30:24 +000069 }
70}
Eric Andersen71ae64b2002-10-10 04:20:21 +000071#endif
Eric Andersen166fa462002-09-16 05:30:24 +000072
Eric Andersenfcffa2c2002-04-06 05:17:57 +000073#ifdef CONFIG_FEATURE_QUERY_MODULE_INTERFACE
Eric Andersen21adca72000-12-06 18:18:26 +000074
Eric Andersenbe0dc0d2000-08-21 19:25:16 +000075struct module_info
76{
77 unsigned long addr;
78 unsigned long size;
79 unsigned long flags;
80 long usecount;
81};
82
83
Eric Andersene76c3b02001-04-05 03:14:39 +000084int query_module(const char *name, int which, void *buf, size_t bufsize, size_t *ret);
Eric Andersenbe0dc0d2000-08-21 19:25:16 +000085
86/* Values for query_module's which. */
Mark Whitley59ab0252001-01-23 22:30:04 +000087static const int QM_MODULES = 1;
88static const int QM_DEPS = 2;
89static const int QM_REFS = 3;
90static const int QM_SYMBOLS = 4;
91static const int QM_INFO = 5;
Eric Andersenbe0dc0d2000-08-21 19:25:16 +000092
Eric Andersende34e432000-09-10 16:16:00 +000093/* Bits of module.flags. */
Mark Whitley59ab0252001-01-23 22:30:04 +000094static const int NEW_MOD_RUNNING = 1;
95static const int NEW_MOD_DELETED = 2;
96static const int NEW_MOD_AUTOCLEAN = 4;
97static const int NEW_MOD_VISITED = 8;
98static const int NEW_MOD_USED_ONCE = 16;
99static const int NEW_MOD_INITIALIZING = 64;
Erik Andersen6f23cec1999-12-15 22:14:12 +0000100
Matt Kraai0f50bca2001-04-13 14:40:15 +0000101static int my_query_module(const char *name, int which, void **buf,
102 size_t *bufsize, size_t *ret)
103{
104 int my_ret;
105
106 my_ret = query_module(name, which, *buf, *bufsize, ret);
107
108 if (my_ret == -1 && errno == ENOSPC) {
109 *buf = xrealloc(*buf, *ret);
110 *bufsize = *ret;
111
112 my_ret = query_module(name, which, *buf, *bufsize, ret);
113 }
114
115 return my_ret;
116}
Erik Andersen6f23cec1999-12-15 22:14:12 +0000117
Erik Andersen6f23cec1999-12-15 22:14:12 +0000118extern int lsmod_main(int argc, char **argv)
119{
Eric Andersenbe0dc0d2000-08-21 19:25:16 +0000120 struct module_info info;
121 char *module_names, *mn, *deps, *dn;
Matt Kraai0f50bca2001-04-13 14:40:15 +0000122 size_t bufsize, depsize, nmod, count, i, j;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000123
Eric Andersenbe0dc0d2000-08-21 19:25:16 +0000124 module_names = xmalloc(bufsize = 256);
Matt Kraai0f50bca2001-04-13 14:40:15 +0000125 if (my_query_module(NULL, QM_MODULES, (void **)&module_names, &bufsize,
126 &nmod)) {
Matt Kraai0dab8292000-12-18 03:08:29 +0000127 perror_msg_and_die("QM_MODULES");
Eric Andersenbe0dc0d2000-08-21 19:25:16 +0000128 }
129
Matt Kraai0f50bca2001-04-13 14:40:15 +0000130 deps = xmalloc(depsize = 256);
Eric Andersen166fa462002-09-16 05:30:24 +0000131 printf("Module Size Used by");
132 check_tainted();
Eric Andersen166fa462002-09-16 05:30:24 +0000133
Eric Andersenbe0dc0d2000-08-21 19:25:16 +0000134 for (i = 0, mn = module_names; i < nmod; mn += strlen(mn) + 1, i++) {
135 if (query_module(mn, QM_INFO, &info, sizeof(info), &count)) {
136 if (errno == ENOENT) {
137 /* The module was removed out from underneath us. */
138 continue;
139 }
140 /* else choke */
Matt Kraai0dab8292000-12-18 03:08:29 +0000141 perror_msg_and_die("module %s: QM_INFO", mn);
Eric Andersenbe0dc0d2000-08-21 19:25:16 +0000142 }
Matt Kraai0f50bca2001-04-13 14:40:15 +0000143 if (my_query_module(mn, QM_REFS, (void **)&deps, &depsize, &count)) {
Eric Andersenbe0dc0d2000-08-21 19:25:16 +0000144 if (errno == ENOENT) {
145 /* The module was removed out from underneath us. */
146 continue;
147 }
Matt Kraai0f50bca2001-04-13 14:40:15 +0000148 perror_msg_and_die("module %s: QM_REFS", mn);
Eric Andersenbe0dc0d2000-08-21 19:25:16 +0000149 }
Eric Andersen31f97472002-10-18 22:14:07 +0000150 printf("%-20s%8lu%4ld", mn, info.size, info.usecount);
Eric Andersende34e432000-09-10 16:16:00 +0000151 if (info.flags & NEW_MOD_DELETED)
Eric Andersen31f97472002-10-18 22:14:07 +0000152 printf(" (deleted)");
Eric Andersende34e432000-09-10 16:16:00 +0000153 else if (info.flags & NEW_MOD_INITIALIZING)
Eric Andersen31f97472002-10-18 22:14:07 +0000154 printf(" (initializing)");
Eric Andersende34e432000-09-10 16:16:00 +0000155 else if (!(info.flags & NEW_MOD_RUNNING))
Eric Andersen31f97472002-10-18 22:14:07 +0000156 printf(" (uninitialized)");
Eric Andersende34e432000-09-10 16:16:00 +0000157 else {
158 if (info.flags & NEW_MOD_AUTOCLEAN)
Eric Andersen31f97472002-10-18 22:14:07 +0000159 printf(" (autoclean) ");
Eric Andersende34e432000-09-10 16:16:00 +0000160 if (!(info.flags & NEW_MOD_USED_ONCE))
Eric Andersen31f97472002-10-18 22:14:07 +0000161 printf(" (unused)");
Eric Andersende34e432000-09-10 16:16:00 +0000162 }
Eric Andersen31f97472002-10-18 22:14:07 +0000163 if (count) printf(" [");
Eric Andersenafeb9652001-02-24 19:51:54 +0000164 for (j = 0, dn = deps; j < count; dn += strlen(dn) + 1, j++) {
165 printf("%s%s", dn, (j==count-1)? "":" ");
166 }
Eric Andersen31f97472002-10-18 22:14:07 +0000167 if (count) printf("]");
Eric Andersenafeb9652001-02-24 19:51:54 +0000168
Eric Andersenccb0a9b2000-09-12 16:20:49 +0000169 printf("\n");
Eric Andersenbe0dc0d2000-08-21 19:25:16 +0000170 }
171
172
173 return( 0);
Erik Andersen6f23cec1999-12-15 22:14:12 +0000174}
Eric Andersen21adca72000-12-06 18:18:26 +0000175
Eric Andersen71ae64b2002-10-10 04:20:21 +0000176#else /* CONFIG_FEATURE_QUERY_MODULE_INTERFACE */
Eric Andersen21adca72000-12-06 18:18:26 +0000177
Eric Andersen21adca72000-12-06 18:18:26 +0000178extern int lsmod_main(int argc, char **argv)
179{
Eric Andersen166fa462002-09-16 05:30:24 +0000180 printf("Module Size Used by");
181 check_tainted();
Eric Andersen21adca72000-12-06 18:18:26 +0000182
Eric Andersen71ae64b2002-10-10 04:20:21 +0000183 if(print_file_by_name("/proc/modules") == FALSE)
Eric Andersen21adca72000-12-06 18:18:26 +0000184 return 1;
Eric Andersen71ae64b2002-10-10 04:20:21 +0000185 return 0;
Eric Andersen21adca72000-12-06 18:18:26 +0000186}
187
Eric Andersen71ae64b2002-10-10 04:20:21 +0000188#endif /* CONFIG_FEATURE_QUERY_MODULE_INTERFACE */