Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 1 | /* vi: set sw=4 ts=4: */ |
Erik Andersen | 6f23cec | 1999-12-15 22:14:12 +0000 | [diff] [blame] | 2 | /* |
| 3 | * Mini lsmod implementation for busybox |
| 4 | * |
Eric Andersen | 8ec10a9 | 2001-01-27 09:33:39 +0000 | [diff] [blame] | 5 | * Copyright (C) 1999,2000,2001 by Lineo, inc. |
Erik Andersen | 6f23cec | 1999-12-15 22:14:12 +0000 | [diff] [blame] | 6 | * Written by Erik Andersen <andersen@lineo.com>, <andersee@debian.org> |
| 7 | * |
Eric Andersen | 21adca7 | 2000-12-06 18:18:26 +0000 | [diff] [blame] | 8 | * 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 Andersen | 6f23cec | 1999-12-15 22:14:12 +0000 | [diff] [blame] | 12 | * 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 Andersen | be0dc0d | 2000-08-21 19:25:16 +0000 | [diff] [blame] | 28 | #include <stdlib.h> |
Erik Andersen | 6f23cec | 1999-12-15 22:14:12 +0000 | [diff] [blame] | 29 | #include <stdio.h> |
Eric Andersen | be0dc0d | 2000-08-21 19:25:16 +0000 | [diff] [blame] | 30 | #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 Andersen | 21adca7 | 2000-12-06 18:18:26 +0000 | [diff] [blame] | 38 | #include <sys/file.h> |
Eric Andersen | cbe31da | 2001-02-20 06:14:08 +0000 | [diff] [blame] | 39 | #include "busybox.h" |
Eric Andersen | be0dc0d | 2000-08-21 19:25:16 +0000 | [diff] [blame] | 40 | |
| 41 | |
| 42 | |
Eric Andersen | f5d5e77 | 2001-01-24 23:34:48 +0000 | [diff] [blame] | 43 | #ifdef BB_FEATURE_NEW_MODULE_INTERFACE |
Eric Andersen | 21adca7 | 2000-12-06 18:18:26 +0000 | [diff] [blame] | 44 | |
Eric Andersen | be0dc0d | 2000-08-21 19:25:16 +0000 | [diff] [blame] | 45 | struct module_info |
| 46 | { |
| 47 | unsigned long addr; |
| 48 | unsigned long size; |
| 49 | unsigned long flags; |
| 50 | long usecount; |
| 51 | }; |
| 52 | |
| 53 | |
| 54 | int query_module(const char *name, int which, void *buf, size_t bufsize, |
| 55 | size_t *ret); |
| 56 | |
| 57 | /* Values for query_module's which. */ |
Mark Whitley | 59ab025 | 2001-01-23 22:30:04 +0000 | [diff] [blame] | 58 | static const int QM_MODULES = 1; |
| 59 | static const int QM_DEPS = 2; |
| 60 | static const int QM_REFS = 3; |
| 61 | static const int QM_SYMBOLS = 4; |
| 62 | static const int QM_INFO = 5; |
Eric Andersen | be0dc0d | 2000-08-21 19:25:16 +0000 | [diff] [blame] | 63 | |
Eric Andersen | de34e43 | 2000-09-10 16:16:00 +0000 | [diff] [blame] | 64 | /* Bits of module.flags. */ |
Mark Whitley | 59ab025 | 2001-01-23 22:30:04 +0000 | [diff] [blame] | 65 | static const int NEW_MOD_RUNNING = 1; |
| 66 | static const int NEW_MOD_DELETED = 2; |
| 67 | static const int NEW_MOD_AUTOCLEAN = 4; |
| 68 | static const int NEW_MOD_VISITED = 8; |
| 69 | static const int NEW_MOD_USED_ONCE = 16; |
| 70 | static const int NEW_MOD_INITIALIZING = 64; |
Erik Andersen | 6f23cec | 1999-12-15 22:14:12 +0000 | [diff] [blame] | 71 | |
| 72 | |
Erik Andersen | 6f23cec | 1999-12-15 22:14:12 +0000 | [diff] [blame] | 73 | extern int lsmod_main(int argc, char **argv) |
| 74 | { |
Eric Andersen | be0dc0d | 2000-08-21 19:25:16 +0000 | [diff] [blame] | 75 | struct module_info info; |
| 76 | char *module_names, *mn, *deps, *dn; |
| 77 | size_t bufsize, nmod, count, i, j; |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 78 | |
Eric Andersen | be0dc0d | 2000-08-21 19:25:16 +0000 | [diff] [blame] | 79 | module_names = xmalloc(bufsize = 256); |
| 80 | deps = xmalloc(bufsize); |
| 81 | if (query_module(NULL, QM_MODULES, module_names, bufsize, &nmod)) { |
Matt Kraai | 0dab829 | 2000-12-18 03:08:29 +0000 | [diff] [blame] | 82 | perror_msg_and_die("QM_MODULES"); |
Eric Andersen | be0dc0d | 2000-08-21 19:25:16 +0000 | [diff] [blame] | 83 | } |
| 84 | |
| 85 | printf("Module Size Used by\n"); |
| 86 | for (i = 0, mn = module_names; i < nmod; mn += strlen(mn) + 1, i++) { |
| 87 | if (query_module(mn, QM_INFO, &info, sizeof(info), &count)) { |
| 88 | if (errno == ENOENT) { |
| 89 | /* The module was removed out from underneath us. */ |
| 90 | continue; |
| 91 | } |
| 92 | /* else choke */ |
Matt Kraai | 0dab829 | 2000-12-18 03:08:29 +0000 | [diff] [blame] | 93 | perror_msg_and_die("module %s: QM_INFO", mn); |
Eric Andersen | be0dc0d | 2000-08-21 19:25:16 +0000 | [diff] [blame] | 94 | } |
| 95 | while (query_module(mn, QM_REFS, deps, bufsize, &count)) { |
| 96 | if (errno == ENOENT) { |
| 97 | /* The module was removed out from underneath us. */ |
| 98 | continue; |
| 99 | } |
| 100 | if (errno != ENOSPC) { |
Matt Kraai | 0dab829 | 2000-12-18 03:08:29 +0000 | [diff] [blame] | 101 | error_msg_and_die("module %s: QM_REFS", mn); |
Eric Andersen | be0dc0d | 2000-08-21 19:25:16 +0000 | [diff] [blame] | 102 | } |
| 103 | deps = xrealloc(deps, bufsize = count); |
| 104 | } |
| 105 | printf("%-20s%8lu%4ld ", mn, info.size, info.usecount); |
Eric Andersen | de34e43 | 2000-09-10 16:16:00 +0000 | [diff] [blame] | 106 | if (info.flags & NEW_MOD_DELETED) |
Eric Andersen | ccb0a9b | 2000-09-12 16:20:49 +0000 | [diff] [blame] | 107 | printf("(deleted)"); |
Eric Andersen | de34e43 | 2000-09-10 16:16:00 +0000 | [diff] [blame] | 108 | else if (info.flags & NEW_MOD_INITIALIZING) |
Eric Andersen | ccb0a9b | 2000-09-12 16:20:49 +0000 | [diff] [blame] | 109 | printf("(initializing)"); |
Eric Andersen | de34e43 | 2000-09-10 16:16:00 +0000 | [diff] [blame] | 110 | else if (!(info.flags & NEW_MOD_RUNNING)) |
Eric Andersen | ccb0a9b | 2000-09-12 16:20:49 +0000 | [diff] [blame] | 111 | printf("(uninitialized)"); |
Eric Andersen | de34e43 | 2000-09-10 16:16:00 +0000 | [diff] [blame] | 112 | else { |
| 113 | if (info.flags & NEW_MOD_AUTOCLEAN) |
Matt Kraai | 721119e | 2000-09-19 05:25:12 +0000 | [diff] [blame] | 114 | printf("(autoclean) "); |
Eric Andersen | de34e43 | 2000-09-10 16:16:00 +0000 | [diff] [blame] | 115 | if (!(info.flags & NEW_MOD_USED_ONCE)) |
Eric Andersen | ccb0a9b | 2000-09-12 16:20:49 +0000 | [diff] [blame] | 116 | printf("(unused)"); |
Eric Andersen | de34e43 | 2000-09-10 16:16:00 +0000 | [diff] [blame] | 117 | } |
Eric Andersen | afeb965 | 2001-02-24 19:51:54 +0000 | [diff] [blame^] | 118 | if (count) printf("["); |
| 119 | for (j = 0, dn = deps; j < count; dn += strlen(dn) + 1, j++) { |
| 120 | printf("%s%s", dn, (j==count-1)? "":" "); |
| 121 | } |
| 122 | if (count) printf("] "); |
| 123 | |
Eric Andersen | ccb0a9b | 2000-09-12 16:20:49 +0000 | [diff] [blame] | 124 | printf("\n"); |
Eric Andersen | be0dc0d | 2000-08-21 19:25:16 +0000 | [diff] [blame] | 125 | } |
| 126 | |
| 127 | |
| 128 | return( 0); |
Erik Andersen | 6f23cec | 1999-12-15 22:14:12 +0000 | [diff] [blame] | 129 | } |
Eric Andersen | 21adca7 | 2000-12-06 18:18:26 +0000 | [diff] [blame] | 130 | |
Eric Andersen | f5d5e77 | 2001-01-24 23:34:48 +0000 | [diff] [blame] | 131 | #else /*BB_FEATURE_OLD_MODULE_INTERFACE*/ |
Eric Andersen | 21adca7 | 2000-12-06 18:18:26 +0000 | [diff] [blame] | 132 | |
Eric Andersen | 21adca7 | 2000-12-06 18:18:26 +0000 | [diff] [blame] | 133 | extern int lsmod_main(int argc, char **argv) |
| 134 | { |
| 135 | int fd, i; |
| 136 | char line[128]; |
| 137 | |
| 138 | puts("Module Size Used by"); |
| 139 | fflush(stdout); |
| 140 | |
| 141 | if ((fd = open("/proc/modules", O_RDONLY)) >= 0 ) { |
| 142 | while ((i = read(fd, line, sizeof(line))) > 0) { |
| 143 | write(fileno(stdout), line, i); |
| 144 | } |
| 145 | close(fd); |
| 146 | return 0; |
| 147 | } |
Matt Kraai | 0dab829 | 2000-12-18 03:08:29 +0000 | [diff] [blame] | 148 | perror_msg_and_die("/proc/modules"); |
Eric Andersen | 21adca7 | 2000-12-06 18:18:26 +0000 | [diff] [blame] | 149 | return 1; |
| 150 | } |
| 151 | |
Eric Andersen | f5d5e77 | 2001-01-24 23:34:48 +0000 | [diff] [blame] | 152 | #endif /*BB_FEATURE_OLD_MODULE_INTERFACE*/ |