blob: 3bbf89e581711abd1aa74dc08cbde04f20e93e20 [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 Andersenc7bda1c2004-03-15 08:29:22 +00005 * Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
Erik Andersen6f23cec1999-12-15 22:14:12 +00006 *
Eric Andersen21adca72000-12-06 18:18:26 +00007 * 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 *
Erik Andersen6f23cec1999-12-15 22:14:12 +000011 * 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
Eric Andersenbe0dc0d2000-08-21 19:25:16 +000027#include <stdlib.h>
Erik Andersen6f23cec1999-12-15 22:14:12 +000028#include <stdio.h>
Eric Anderseneba8ed72001-03-09 14:36:42 +000029#include <string.h>
Eric Andersenbe0dc0d2000-08-21 19:25:16 +000030#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>
Eric Andersen21adca72000-12-06 18:18:26 +000038#include <sys/file.h>
Eric Andersencbe31da2001-02-20 06:14:08 +000039#include "busybox.h"
Eric Andersenbe0dc0d2000-08-21 19:25:16 +000040
41
Eric Andersen71ae64b2002-10-10 04:20:21 +000042#ifndef CONFIG_FEATURE_CHECK_TAINTED_MODULE
43static inline void check_tainted(void) { printf("\n"); }
44#else
Eric Andersen166fa462002-09-16 05:30:24 +000045#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
Eric Andersen71ae64b2002-10-10 04:20:21 +000050static void check_tainted(void)
Eric Andersen166fa462002-09-16 05:30:24 +000051{
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) {
Eric Andersen52864942002-10-08 09:38:07 +000061 printf(" Tainted: %c%c%c\n",
Eric Andersen166fa462002-09-16 05:30:24 +000062 tainted & TAINT_PROPRIETORY_MODULE ? 'P' : 'G',
63 tainted & TAINT_FORCED_MODULE ? 'F' : ' ',
64 tainted & TAINT_UNSAFE_SMP ? 'S' : ' ');
65 }
66 else {
Eric Andersen52864942002-10-08 09:38:07 +000067 printf(" Not tainted\n");
Eric Andersen166fa462002-09-16 05:30:24 +000068 }
69}
Eric Andersen71ae64b2002-10-10 04:20:21 +000070#endif
Eric Andersen166fa462002-09-16 05:30:24 +000071
Eric Andersenfcffa2c2002-04-06 05:17:57 +000072#ifdef CONFIG_FEATURE_QUERY_MODULE_INTERFACE
Eric Andersen21adca72000-12-06 18:18:26 +000073
Eric Andersenbe0dc0d2000-08-21 19:25:16 +000074struct module_info
75{
76 unsigned long addr;
77 unsigned long size;
78 unsigned long flags;
79 long usecount;
80};
81
82
Eric Andersene76c3b02001-04-05 03:14:39 +000083int query_module(const char *name, int which, void *buf, size_t bufsize, size_t *ret);
Eric Andersenbe0dc0d2000-08-21 19:25:16 +000084
Rob Landleybc68cd12006-03-10 19:22:06 +000085enum {
Eric Andersenbe0dc0d2000-08-21 19:25:16 +000086/* Values for query_module's which. */
Rob Landleybc68cd12006-03-10 19:22:06 +000087 QM_MODULES = 1,
88 QM_DEPS = 2,
89 QM_REFS = 3,
90 QM_SYMBOLS = 4,
91 QM_INFO = 5,
Eric Andersenbe0dc0d2000-08-21 19:25:16 +000092
Eric Andersende34e432000-09-10 16:16:00 +000093/* Bits of module.flags. */
Rob Landleybc68cd12006-03-10 19:22:06 +000094 NEW_MOD_RUNNING = 1,
95 NEW_MOD_DELETED = 2,
96 NEW_MOD_AUTOCLEAN = 4,
97 NEW_MOD_VISITED = 8,
98 NEW_MOD_USED_ONCE = 16,
99 NEW_MOD_INITIALIZING = 64
100};
Erik Andersen6f23cec1999-12-15 22:14:12 +0000101
Rob Landleydfba7412006-03-06 20:47:33 +0000102int lsmod_main(int argc, char **argv)
Erik Andersen6f23cec1999-12-15 22:14:12 +0000103{
Eric Andersenbe0dc0d2000-08-21 19:25:16 +0000104 struct module_info info;
105 char *module_names, *mn, *deps, *dn;
Matt Kraai0f50bca2001-04-13 14:40:15 +0000106 size_t bufsize, depsize, nmod, count, i, j;
Erik Andersene49d5ec2000-02-08 19:58:47 +0000107
Eric Andersenbe0dc0d2000-08-21 19:25:16 +0000108 module_names = xmalloc(bufsize = 256);
Matt Kraai0f50bca2001-04-13 14:40:15 +0000109 if (my_query_module(NULL, QM_MODULES, (void **)&module_names, &bufsize,
110 &nmod)) {
Manuel Novoa III cad53642003-03-19 09:13:01 +0000111 bb_perror_msg_and_die("QM_MODULES");
Eric Andersenbe0dc0d2000-08-21 19:25:16 +0000112 }
113
Matt Kraai0f50bca2001-04-13 14:40:15 +0000114 deps = xmalloc(depsize = 256);
Eric Andersen166fa462002-09-16 05:30:24 +0000115 printf("Module Size Used by");
116 check_tainted();
Eric Andersen166fa462002-09-16 05:30:24 +0000117
Eric Andersenbe0dc0d2000-08-21 19:25:16 +0000118 for (i = 0, mn = module_names; i < nmod; mn += strlen(mn) + 1, i++) {
119 if (query_module(mn, QM_INFO, &info, sizeof(info), &count)) {
120 if (errno == ENOENT) {
121 /* The module was removed out from underneath us. */
122 continue;
123 }
124 /* else choke */
Manuel Novoa III cad53642003-03-19 09:13:01 +0000125 bb_perror_msg_and_die("module %s: QM_INFO", mn);
Eric Andersenbe0dc0d2000-08-21 19:25:16 +0000126 }
Matt Kraai0f50bca2001-04-13 14:40:15 +0000127 if (my_query_module(mn, QM_REFS, (void **)&deps, &depsize, &count)) {
Eric Andersenbe0dc0d2000-08-21 19:25:16 +0000128 if (errno == ENOENT) {
129 /* The module was removed out from underneath us. */
130 continue;
131 }
Manuel Novoa III cad53642003-03-19 09:13:01 +0000132 bb_perror_msg_and_die("module %s: QM_REFS", mn);
Eric Andersenbe0dc0d2000-08-21 19:25:16 +0000133 }
Eric Andersen31f97472002-10-18 22:14:07 +0000134 printf("%-20s%8lu%4ld", mn, info.size, info.usecount);
Eric Andersende34e432000-09-10 16:16:00 +0000135 if (info.flags & NEW_MOD_DELETED)
Eric Andersen31f97472002-10-18 22:14:07 +0000136 printf(" (deleted)");
Eric Andersende34e432000-09-10 16:16:00 +0000137 else if (info.flags & NEW_MOD_INITIALIZING)
Eric Andersen31f97472002-10-18 22:14:07 +0000138 printf(" (initializing)");
Eric Andersende34e432000-09-10 16:16:00 +0000139 else if (!(info.flags & NEW_MOD_RUNNING))
Eric Andersen31f97472002-10-18 22:14:07 +0000140 printf(" (uninitialized)");
Eric Andersende34e432000-09-10 16:16:00 +0000141 else {
142 if (info.flags & NEW_MOD_AUTOCLEAN)
Eric Andersen31f97472002-10-18 22:14:07 +0000143 printf(" (autoclean) ");
Eric Andersende34e432000-09-10 16:16:00 +0000144 if (!(info.flags & NEW_MOD_USED_ONCE))
Eric Andersen31f97472002-10-18 22:14:07 +0000145 printf(" (unused)");
Eric Andersende34e432000-09-10 16:16:00 +0000146 }
Eric Andersen31f97472002-10-18 22:14:07 +0000147 if (count) printf(" [");
Eric Andersenafeb9652001-02-24 19:51:54 +0000148 for (j = 0, dn = deps; j < count; dn += strlen(dn) + 1, j++) {
149 printf("%s%s", dn, (j==count-1)? "":" ");
150 }
Eric Andersen31f97472002-10-18 22:14:07 +0000151 if (count) printf("]");
Eric Andersenafeb9652001-02-24 19:51:54 +0000152
Eric Andersenccb0a9b2000-09-12 16:20:49 +0000153 printf("\n");
Eric Andersenbe0dc0d2000-08-21 19:25:16 +0000154 }
155
Tim Riker6fe19602002-12-13 22:59:15 +0000156#ifdef CONFIG_FEATURE_CLEAN_UP
157 free(module_names);
158#endif
Eric Andersenbe0dc0d2000-08-21 19:25:16 +0000159
160 return( 0);
Erik Andersen6f23cec1999-12-15 22:14:12 +0000161}
Eric Andersen21adca72000-12-06 18:18:26 +0000162
Eric Andersen71ae64b2002-10-10 04:20:21 +0000163#else /* CONFIG_FEATURE_QUERY_MODULE_INTERFACE */
Eric Andersen21adca72000-12-06 18:18:26 +0000164
Rob Landleydfba7412006-03-06 20:47:33 +0000165int lsmod_main(int argc, char **argv)
Eric Andersen21adca72000-12-06 18:18:26 +0000166{
Eric Andersen166fa462002-09-16 05:30:24 +0000167 printf("Module Size Used by");
168 check_tainted();
Rob Landley4f653602005-05-04 23:55:06 +0000169#if defined(CONFIG_FEATURE_LSMOD_PRETTY_2_6_OUTPUT)
Rob Landley627814b2005-05-03 22:34:03 +0000170 {
171 FILE *file;
172 char line[4096];
Eric Andersen21adca72000-12-06 18:18:26 +0000173
Mike Frysinger705fad22006-01-03 23:59:17 +0000174 file = bb_xfopen("/proc/modules", "r");
Rob Landley627814b2005-05-03 22:34:03 +0000175
176 while (fgets(line, sizeof(line), file)) {
177 char *tok;
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000178
Rob Landley627814b2005-05-03 22:34:03 +0000179 tok = strtok(line, " \t");
180 printf("%-19s", tok);
181 tok = strtok(NULL, " \t\n");
182 printf(" %8s", tok);
183 tok = strtok(NULL, " \t\n");
184 /* Null if no module unloading support. */
185 if (tok) {
186 printf(" %s", tok);
187 tok = strtok(NULL, "\n");
188 if (!tok)
189 tok = "";
190 /* New-style has commas, or -. If so,
191 truncate (other fields might follow). */
192 else if (strchr(tok, ',')) {
193 tok = strtok(tok, "\t ");
194 /* Strip trailing comma. */
195 if (tok[strlen(tok)-1] == ',')
196 tok[strlen(tok)-1] = '\0';
197 } else if (tok[0] == '-'
198 && (tok[1] == '\0' || isspace(tok[1])))
199 tok = "";
200 printf(" %s", tok);
201 }
202 printf("\n");
203 }
204 fclose(file);
205 }
Rob Landley4f653602005-05-04 23:55:06 +0000206 return 0; /* Success */
Rob Landley627814b2005-05-03 22:34:03 +0000207#else
Manuel Novoa III cad53642003-03-19 09:13:01 +0000208 if (bb_xprint_file_by_name("/proc/modules") < 0) {
209 return 0;
210 }
Rob Landley627814b2005-05-03 22:34:03 +0000211#endif /* CONFIG_FEATURE_2_6_MODULES */
Eric Andersen21adca72000-12-06 18:18:26 +0000212 return 1;
213}
214
Eric Andersen71ae64b2002-10-10 04:20:21 +0000215#endif /* CONFIG_FEATURE_QUERY_MODULE_INTERFACE */