blob: 1020158ed07809b439275877cc68be7169e8792e [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 *
Bernhard Reutner-Fischerdeda6a52006-06-03 19:35:15 +000011 * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
Erik Andersen6f23cec1999-12-15 22:14:12 +000012 */
13
Bernhard Reutner-Fischerdeda6a52006-06-03 19:35:15 +000014#include "busybox.h"
Eric Andersenbe0dc0d2000-08-21 19:25:16 +000015#include <stdlib.h>
Erik Andersen6f23cec1999-12-15 22:14:12 +000016#include <stdio.h>
Eric Anderseneba8ed72001-03-09 14:36:42 +000017#include <string.h>
Eric Andersenbe0dc0d2000-08-21 19:25:16 +000018#include <stddef.h>
19#include <errno.h>
20#include <unistd.h>
21#include <dirent.h>
22#include <ctype.h>
23#include <assert.h>
24#include <getopt.h>
25#include <sys/utsname.h>
Eric Andersen21adca72000-12-06 18:18:26 +000026#include <sys/file.h>
Eric Andersenbe0dc0d2000-08-21 19:25:16 +000027
28
Eric Andersen71ae64b2002-10-10 04:20:21 +000029#ifndef CONFIG_FEATURE_CHECK_TAINTED_MODULE
30static inline void check_tainted(void) { printf("\n"); }
31#else
Eric Andersen166fa462002-09-16 05:30:24 +000032#define TAINT_FILENAME "/proc/sys/kernel/tainted"
33#define TAINT_PROPRIETORY_MODULE (1<<0)
34#define TAINT_FORCED_MODULE (1<<1)
35#define TAINT_UNSAFE_SMP (1<<2)
36
Eric Andersen71ae64b2002-10-10 04:20:21 +000037static void check_tainted(void)
Eric Andersen166fa462002-09-16 05:30:24 +000038{
39 int tainted;
40 FILE *f;
41
42 tainted = 0;
43 if ((f = fopen(TAINT_FILENAME, "r"))) {
44 fscanf(f, "%d", &tainted);
45 fclose(f);
46 }
47 if (f && tainted) {
Eric Andersen52864942002-10-08 09:38:07 +000048 printf(" Tainted: %c%c%c\n",
Eric Andersen166fa462002-09-16 05:30:24 +000049 tainted & TAINT_PROPRIETORY_MODULE ? 'P' : 'G',
50 tainted & TAINT_FORCED_MODULE ? 'F' : ' ',
51 tainted & TAINT_UNSAFE_SMP ? 'S' : ' ');
52 }
53 else {
Eric Andersen52864942002-10-08 09:38:07 +000054 printf(" Not tainted\n");
Eric Andersen166fa462002-09-16 05:30:24 +000055 }
56}
Eric Andersen71ae64b2002-10-10 04:20:21 +000057#endif
Eric Andersen166fa462002-09-16 05:30:24 +000058
Eric Andersenfcffa2c2002-04-06 05:17:57 +000059#ifdef CONFIG_FEATURE_QUERY_MODULE_INTERFACE
Eric Andersen21adca72000-12-06 18:18:26 +000060
Eric Andersenbe0dc0d2000-08-21 19:25:16 +000061struct module_info
62{
63 unsigned long addr;
64 unsigned long size;
65 unsigned long flags;
66 long usecount;
67};
68
69
Eric Andersene76c3b02001-04-05 03:14:39 +000070int query_module(const char *name, int which, void *buf, size_t bufsize, size_t *ret);
Eric Andersenbe0dc0d2000-08-21 19:25:16 +000071
Rob Landleybc68cd12006-03-10 19:22:06 +000072enum {
Eric Andersenbe0dc0d2000-08-21 19:25:16 +000073/* Values for query_module's which. */
Rob Landleybc68cd12006-03-10 19:22:06 +000074 QM_MODULES = 1,
75 QM_DEPS = 2,
76 QM_REFS = 3,
77 QM_SYMBOLS = 4,
78 QM_INFO = 5,
Eric Andersenbe0dc0d2000-08-21 19:25:16 +000079
Eric Andersende34e432000-09-10 16:16:00 +000080/* Bits of module.flags. */
Rob Landleybc68cd12006-03-10 19:22:06 +000081 NEW_MOD_RUNNING = 1,
82 NEW_MOD_DELETED = 2,
83 NEW_MOD_AUTOCLEAN = 4,
84 NEW_MOD_VISITED = 8,
85 NEW_MOD_USED_ONCE = 16,
86 NEW_MOD_INITIALIZING = 64
87};
Erik Andersen6f23cec1999-12-15 22:14:12 +000088
Rob Landleydfba7412006-03-06 20:47:33 +000089int lsmod_main(int argc, char **argv)
Erik Andersen6f23cec1999-12-15 22:14:12 +000090{
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)) {
Manuel Novoa III cad53642003-03-19 09:13:01 +000098 bb_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 Andersen166fa462002-09-16 05:30:24 +0000102 printf("Module Size Used by");
103 check_tainted();
Eric Andersen166fa462002-09-16 05:30:24 +0000104
Eric Andersenbe0dc0d2000-08-21 19:25:16 +0000105 for (i = 0, mn = module_names; i < nmod; mn += strlen(mn) + 1, i++) {
106 if (query_module(mn, QM_INFO, &info, sizeof(info), &count)) {
107 if (errno == ENOENT) {
108 /* The module was removed out from underneath us. */
109 continue;
110 }
111 /* else choke */
Manuel Novoa III cad53642003-03-19 09:13:01 +0000112 bb_perror_msg_and_die("module %s: QM_INFO", mn);
Eric Andersenbe0dc0d2000-08-21 19:25:16 +0000113 }
Matt Kraai0f50bca2001-04-13 14:40:15 +0000114 if (my_query_module(mn, QM_REFS, (void **)&deps, &depsize, &count)) {
Eric Andersenbe0dc0d2000-08-21 19:25:16 +0000115 if (errno == ENOENT) {
116 /* The module was removed out from underneath us. */
117 continue;
118 }
Manuel Novoa III cad53642003-03-19 09:13:01 +0000119 bb_perror_msg_and_die("module %s: QM_REFS", mn);
Eric Andersenbe0dc0d2000-08-21 19:25:16 +0000120 }
Eric Andersen31f97472002-10-18 22:14:07 +0000121 printf("%-20s%8lu%4ld", mn, info.size, info.usecount);
Eric Andersende34e432000-09-10 16:16:00 +0000122 if (info.flags & NEW_MOD_DELETED)
Eric Andersen31f97472002-10-18 22:14:07 +0000123 printf(" (deleted)");
Eric Andersende34e432000-09-10 16:16:00 +0000124 else if (info.flags & NEW_MOD_INITIALIZING)
Eric Andersen31f97472002-10-18 22:14:07 +0000125 printf(" (initializing)");
Eric Andersende34e432000-09-10 16:16:00 +0000126 else if (!(info.flags & NEW_MOD_RUNNING))
Eric Andersen31f97472002-10-18 22:14:07 +0000127 printf(" (uninitialized)");
Eric Andersende34e432000-09-10 16:16:00 +0000128 else {
129 if (info.flags & NEW_MOD_AUTOCLEAN)
Eric Andersen31f97472002-10-18 22:14:07 +0000130 printf(" (autoclean) ");
Eric Andersende34e432000-09-10 16:16:00 +0000131 if (!(info.flags & NEW_MOD_USED_ONCE))
Eric Andersen31f97472002-10-18 22:14:07 +0000132 printf(" (unused)");
Eric Andersende34e432000-09-10 16:16:00 +0000133 }
Eric Andersen31f97472002-10-18 22:14:07 +0000134 if (count) printf(" [");
Eric Andersenafeb9652001-02-24 19:51:54 +0000135 for (j = 0, dn = deps; j < count; dn += strlen(dn) + 1, j++) {
136 printf("%s%s", dn, (j==count-1)? "":" ");
137 }
Eric Andersen31f97472002-10-18 22:14:07 +0000138 if (count) printf("]");
Eric Andersenafeb9652001-02-24 19:51:54 +0000139
Eric Andersenccb0a9b2000-09-12 16:20:49 +0000140 printf("\n");
Eric Andersenbe0dc0d2000-08-21 19:25:16 +0000141 }
142
Tim Riker6fe19602002-12-13 22:59:15 +0000143#ifdef CONFIG_FEATURE_CLEAN_UP
144 free(module_names);
145#endif
Eric Andersenbe0dc0d2000-08-21 19:25:16 +0000146
147 return( 0);
Erik Andersen6f23cec1999-12-15 22:14:12 +0000148}
Eric Andersen21adca72000-12-06 18:18:26 +0000149
Eric Andersen71ae64b2002-10-10 04:20:21 +0000150#else /* CONFIG_FEATURE_QUERY_MODULE_INTERFACE */
Eric Andersen21adca72000-12-06 18:18:26 +0000151
Rob Landleydfba7412006-03-06 20:47:33 +0000152int lsmod_main(int argc, char **argv)
Eric Andersen21adca72000-12-06 18:18:26 +0000153{
Eric Andersen166fa462002-09-16 05:30:24 +0000154 printf("Module Size Used by");
155 check_tainted();
Rob Landley4f653602005-05-04 23:55:06 +0000156#if defined(CONFIG_FEATURE_LSMOD_PRETTY_2_6_OUTPUT)
Rob Landley627814b2005-05-03 22:34:03 +0000157 {
158 FILE *file;
159 char line[4096];
Eric Andersen21adca72000-12-06 18:18:26 +0000160
Mike Frysinger705fad22006-01-03 23:59:17 +0000161 file = bb_xfopen("/proc/modules", "r");
Rob Landley627814b2005-05-03 22:34:03 +0000162
163 while (fgets(line, sizeof(line), file)) {
164 char *tok;
Tim Rikerc1ef7bd2006-01-25 00:08:53 +0000165
Rob Landley627814b2005-05-03 22:34:03 +0000166 tok = strtok(line, " \t");
167 printf("%-19s", tok);
168 tok = strtok(NULL, " \t\n");
169 printf(" %8s", tok);
170 tok = strtok(NULL, " \t\n");
171 /* Null if no module unloading support. */
172 if (tok) {
173 printf(" %s", tok);
174 tok = strtok(NULL, "\n");
175 if (!tok)
176 tok = "";
177 /* New-style has commas, or -. If so,
178 truncate (other fields might follow). */
179 else if (strchr(tok, ',')) {
180 tok = strtok(tok, "\t ");
181 /* Strip trailing comma. */
182 if (tok[strlen(tok)-1] == ',')
183 tok[strlen(tok)-1] = '\0';
184 } else if (tok[0] == '-'
185 && (tok[1] == '\0' || isspace(tok[1])))
186 tok = "";
187 printf(" %s", tok);
188 }
189 printf("\n");
190 }
191 fclose(file);
192 }
Mike Frysinger75c6b792006-06-06 06:19:19 +0000193 return EXIT_SUCCESS;
Rob Landley627814b2005-05-03 22:34:03 +0000194#else
Mike Frysinger75c6b792006-06-06 06:19:19 +0000195 if (bb_xprint_file_by_name("/proc/modules") == 0)
196 return EXIT_SUCCESS;
Rob Landley627814b2005-05-03 22:34:03 +0000197#endif /* CONFIG_FEATURE_2_6_MODULES */
Mike Frysinger75c6b792006-06-06 06:19:19 +0000198
199 return EXIT_FAILURE;
Eric Andersen21adca72000-12-06 18:18:26 +0000200}
201
Eric Andersen71ae64b2002-10-10 04:20:21 +0000202#endif /* CONFIG_FEATURE_QUERY_MODULE_INTERFACE */