2000-02-09 01:28:47 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
1999-12-16 03:44:12 +05:30
|
|
|
/*
|
|
|
|
* Mini lsmod implementation for busybox
|
|
|
|
*
|
2001-01-27 15:03:39 +05:30
|
|
|
* Copyright (C) 1999,2000,2001 by Lineo, inc.
|
1999-12-16 03:44:12 +05:30
|
|
|
* Written by Erik Andersen <andersen@lineo.com>, <andersee@debian.org>
|
|
|
|
*
|
2000-12-06 23:48:26 +05:30
|
|
|
* Modified by Alcove, Julien Gaulmin <julien.gaulmin@alcove.fr> and
|
|
|
|
* Nicolas Ferre <nicolas.ferre@alcove.fr> to support pre 2.1 kernels
|
|
|
|
* (which lack the query_module() interface).
|
|
|
|
*
|
1999-12-16 03:44:12 +05:30
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2000-08-22 00:55:16 +05:30
|
|
|
#include <stdlib.h>
|
1999-12-16 03:44:12 +05:30
|
|
|
#include <stdio.h>
|
2001-03-09 20:06:42 +05:30
|
|
|
#include <string.h>
|
2000-08-22 00:55:16 +05:30
|
|
|
#include <stddef.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <dirent.h>
|
|
|
|
#include <ctype.h>
|
|
|
|
#include <assert.h>
|
|
|
|
#include <getopt.h>
|
|
|
|
#include <sys/utsname.h>
|
2000-12-06 23:48:26 +05:30
|
|
|
#include <sys/file.h>
|
2001-02-20 11:44:08 +05:30
|
|
|
#include "busybox.h"
|
2000-12-06 23:48:26 +05:30
|
|
|
|
2000-08-22 00:55:16 +05:30
|
|
|
|
|
|
|
|
2001-01-25 05:04:48 +05:30
|
|
|
#ifdef BB_FEATURE_NEW_MODULE_INTERFACE
|
2000-08-22 00:55:16 +05:30
|
|
|
|
|
|
|
struct module_info
|
|
|
|
{
|
|
|
|
unsigned long addr;
|
|
|
|
unsigned long size;
|
|
|
|
unsigned long flags;
|
|
|
|
long usecount;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2001-04-05 08:44:39 +05:30
|
|
|
int query_module(const char *name, int which, void *buf, size_t bufsize, size_t *ret);
|
2000-08-22 00:55:16 +05:30
|
|
|
|
|
|
|
/* Values for query_module's which. */
|
2001-01-24 04:00:04 +05:30
|
|
|
static const int QM_MODULES = 1;
|
|
|
|
static const int QM_DEPS = 2;
|
|
|
|
static const int QM_REFS = 3;
|
|
|
|
static const int QM_SYMBOLS = 4;
|
|
|
|
static const int QM_INFO = 5;
|
2000-08-22 00:55:16 +05:30
|
|
|
|
2000-09-10 21:46:00 +05:30
|
|
|
/* Bits of module.flags. */
|
2001-01-24 04:00:04 +05:30
|
|
|
static const int NEW_MOD_RUNNING = 1;
|
|
|
|
static const int NEW_MOD_DELETED = 2;
|
|
|
|
static const int NEW_MOD_AUTOCLEAN = 4;
|
|
|
|
static const int NEW_MOD_VISITED = 8;
|
|
|
|
static const int NEW_MOD_USED_ONCE = 16;
|
|
|
|
static const int NEW_MOD_INITIALIZING = 64;
|
1999-12-16 03:44:12 +05:30
|
|
|
|
2001-04-13 20:10:15 +05:30
|
|
|
static int my_query_module(const char *name, int which, void **buf,
|
|
|
|
size_t *bufsize, size_t *ret)
|
|
|
|
{
|
|
|
|
int my_ret;
|
|
|
|
|
|
|
|
my_ret = query_module(name, which, *buf, *bufsize, ret);
|
|
|
|
|
|
|
|
if (my_ret == -1 && errno == ENOSPC) {
|
|
|
|
*buf = xrealloc(*buf, *ret);
|
|
|
|
*bufsize = *ret;
|
|
|
|
|
|
|
|
my_ret = query_module(name, which, *buf, *bufsize, ret);
|
|
|
|
}
|
|
|
|
|
|
|
|
return my_ret;
|
|
|
|
}
|
1999-12-16 03:44:12 +05:30
|
|
|
|
|
|
|
extern int lsmod_main(int argc, char **argv)
|
|
|
|
{
|
2000-08-22 00:55:16 +05:30
|
|
|
struct module_info info;
|
|
|
|
char *module_names, *mn, *deps, *dn;
|
2001-04-13 20:10:15 +05:30
|
|
|
size_t bufsize, depsize, nmod, count, i, j;
|
2000-08-22 00:55:16 +05:30
|
|
|
|
|
|
|
module_names = xmalloc(bufsize = 256);
|
2001-04-13 20:10:15 +05:30
|
|
|
if (my_query_module(NULL, QM_MODULES, (void **)&module_names, &bufsize,
|
|
|
|
&nmod)) {
|
2000-12-18 08:38:29 +05:30
|
|
|
perror_msg_and_die("QM_MODULES");
|
2000-08-22 00:55:16 +05:30
|
|
|
}
|
|
|
|
|
2001-04-13 20:10:15 +05:30
|
|
|
deps = xmalloc(depsize = 256);
|
2000-08-22 00:55:16 +05:30
|
|
|
printf("Module Size Used by\n");
|
|
|
|
for (i = 0, mn = module_names; i < nmod; mn += strlen(mn) + 1, i++) {
|
|
|
|
if (query_module(mn, QM_INFO, &info, sizeof(info), &count)) {
|
|
|
|
if (errno == ENOENT) {
|
|
|
|
/* The module was removed out from underneath us. */
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
/* else choke */
|
2000-12-18 08:38:29 +05:30
|
|
|
perror_msg_and_die("module %s: QM_INFO", mn);
|
2000-08-22 00:55:16 +05:30
|
|
|
}
|
2001-04-13 20:10:15 +05:30
|
|
|
if (my_query_module(mn, QM_REFS, (void **)&deps, &depsize, &count)) {
|
2000-08-22 00:55:16 +05:30
|
|
|
if (errno == ENOENT) {
|
|
|
|
/* The module was removed out from underneath us. */
|
|
|
|
continue;
|
|
|
|
}
|
2001-04-13 20:10:15 +05:30
|
|
|
perror_msg_and_die("module %s: QM_REFS", mn);
|
2000-08-22 00:55:16 +05:30
|
|
|
}
|
|
|
|
printf("%-20s%8lu%4ld ", mn, info.size, info.usecount);
|
2000-09-10 21:46:00 +05:30
|
|
|
if (info.flags & NEW_MOD_DELETED)
|
2000-09-12 21:50:49 +05:30
|
|
|
printf("(deleted)");
|
2000-09-10 21:46:00 +05:30
|
|
|
else if (info.flags & NEW_MOD_INITIALIZING)
|
2000-09-12 21:50:49 +05:30
|
|
|
printf("(initializing)");
|
2000-09-10 21:46:00 +05:30
|
|
|
else if (!(info.flags & NEW_MOD_RUNNING))
|
2000-09-12 21:50:49 +05:30
|
|
|
printf("(uninitialized)");
|
2000-09-10 21:46:00 +05:30
|
|
|
else {
|
|
|
|
if (info.flags & NEW_MOD_AUTOCLEAN)
|
2000-09-19 10:55:12 +05:30
|
|
|
printf("(autoclean) ");
|
2000-09-10 21:46:00 +05:30
|
|
|
if (!(info.flags & NEW_MOD_USED_ONCE))
|
2000-09-12 21:50:49 +05:30
|
|
|
printf("(unused)");
|
2000-09-10 21:46:00 +05:30
|
|
|
}
|
2001-02-25 01:21:54 +05:30
|
|
|
if (count) printf("[");
|
|
|
|
for (j = 0, dn = deps; j < count; dn += strlen(dn) + 1, j++) {
|
|
|
|
printf("%s%s", dn, (j==count-1)? "":" ");
|
|
|
|
}
|
|
|
|
if (count) printf("] ");
|
|
|
|
|
2000-09-12 21:50:49 +05:30
|
|
|
printf("\n");
|
2000-08-22 00:55:16 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
return( 0);
|
1999-12-16 03:44:12 +05:30
|
|
|
}
|
2000-12-06 23:48:26 +05:30
|
|
|
|
2001-01-25 05:04:48 +05:30
|
|
|
#else /*BB_FEATURE_OLD_MODULE_INTERFACE*/
|
2000-12-06 23:48:26 +05:30
|
|
|
|
|
|
|
extern int lsmod_main(int argc, char **argv)
|
|
|
|
{
|
|
|
|
int fd, i;
|
|
|
|
char line[128];
|
|
|
|
|
|
|
|
puts("Module Size Used by");
|
|
|
|
fflush(stdout);
|
|
|
|
|
|
|
|
if ((fd = open("/proc/modules", O_RDONLY)) >= 0 ) {
|
|
|
|
while ((i = read(fd, line, sizeof(line))) > 0) {
|
|
|
|
write(fileno(stdout), line, i);
|
|
|
|
}
|
|
|
|
close(fd);
|
|
|
|
return 0;
|
|
|
|
}
|
2000-12-18 08:38:29 +05:30
|
|
|
perror_msg_and_die("/proc/modules");
|
2000-12-06 23:48:26 +05:30
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2001-01-25 05:04:48 +05:30
|
|
|
#endif /*BB_FEATURE_OLD_MODULE_INTERFACE*/
|