2010-06-06 08:25:13 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
|
|
|
/*
|
|
|
|
* modinfo - retrieve module info
|
|
|
|
* Copyright (c) 2008 Pascal Bellard
|
|
|
|
*
|
2010-08-16 23:44:46 +05:30
|
|
|
* Licensed under GPLv2 or later, see file LICENSE in this source tree.
|
2010-06-06 08:25:13 +05:30
|
|
|
*/
|
|
|
|
//config:config MODINFO
|
|
|
|
//config: bool "modinfo"
|
|
|
|
//config: default y
|
2011-10-31 02:37:36 +05:30
|
|
|
//config: select PLATFORM_LINUX
|
2010-06-06 08:25:13 +05:30
|
|
|
//config: help
|
|
|
|
//config: Show information about a Linux Kernel module
|
|
|
|
|
2015-10-28 22:37:46 +05:30
|
|
|
//applet:IF_MODINFO(APPLET(modinfo, BB_DIR_SBIN, BB_SUID_DROP))
|
|
|
|
|
|
|
|
//kbuild:lib-$(CONFIG_MODINFO) += modinfo.o modutils.o
|
|
|
|
|
2010-06-06 08:25:13 +05:30
|
|
|
#include <fnmatch.h>
|
|
|
|
#include <sys/utsname.h> /* uname() */
|
|
|
|
#include "libbb.h"
|
|
|
|
#include "modutils.h"
|
|
|
|
|
2015-10-28 22:37:46 +05:30
|
|
|
static const char *const shortcuts[] = {
|
|
|
|
"filename", // -n
|
|
|
|
"author", // -a
|
|
|
|
"description", // -d
|
|
|
|
"license", // -l
|
|
|
|
"parm", // -p
|
|
|
|
"version", // the rest has no shortcut options
|
|
|
|
"alias",
|
|
|
|
"srcversion",
|
|
|
|
"depends",
|
|
|
|
"uts_release",
|
|
|
|
"intree",
|
|
|
|
"vermagic",
|
|
|
|
"firmware",
|
2010-06-06 08:25:13 +05:30
|
|
|
};
|
|
|
|
|
2015-10-28 22:37:46 +05:30
|
|
|
enum {
|
|
|
|
OPT_0 = (1 << 0), /* \0 as separator */
|
|
|
|
OPT_F = (1 << 1), /* field name */
|
|
|
|
/* first bits are for -nadlp options, the rest are for
|
|
|
|
* fields not selectable with "shortcut" options
|
|
|
|
*/
|
|
|
|
OPT_n = (1 << 2),
|
|
|
|
OPT_TAGS = ((1 << ARRAY_SIZE(shortcuts)) - 1) << 2,
|
2010-06-06 08:25:13 +05:30
|
|
|
};
|
|
|
|
|
2015-10-28 22:37:46 +05:30
|
|
|
static void display(const char *data, const char *pattern)
|
2010-06-06 08:25:13 +05:30
|
|
|
{
|
2015-10-28 22:37:46 +05:30
|
|
|
int flag = option_mask32 >> 1; /* shift out -0 bit */
|
|
|
|
if (flag & (flag-1)) {
|
|
|
|
/* more than one field to show: print "FIELD:" pfx */
|
2010-06-06 08:25:13 +05:30
|
|
|
int n = printf("%s:", pattern);
|
|
|
|
while (n++ < 16)
|
|
|
|
bb_putchar(' ');
|
|
|
|
}
|
2014-07-03 15:54:55 +05:30
|
|
|
printf("%s%c", data, (option_mask32 & OPT_0) ? '\0' : '\n');
|
2010-06-06 08:25:13 +05:30
|
|
|
}
|
|
|
|
|
2010-06-27 04:05:49 +05:30
|
|
|
static void modinfo(const char *path, const char *version,
|
2015-10-28 22:37:46 +05:30
|
|
|
const char *field)
|
2010-06-06 08:25:13 +05:30
|
|
|
{
|
|
|
|
size_t len;
|
2015-03-12 22:18:34 +05:30
|
|
|
int j;
|
2010-06-06 08:25:13 +05:30
|
|
|
char *ptr, *the_module;
|
2015-10-28 22:37:46 +05:30
|
|
|
char *allocated;
|
|
|
|
int tags = option_mask32;
|
2010-06-27 04:05:49 +05:30
|
|
|
|
2015-10-28 22:37:46 +05:30
|
|
|
allocated = NULL;
|
2010-06-06 08:25:13 +05:30
|
|
|
len = MAXINT(ssize_t);
|
|
|
|
the_module = xmalloc_open_zipped_read_close(path, &len);
|
2010-06-27 04:05:49 +05:30
|
|
|
if (!the_module) {
|
|
|
|
if (path[0] == '/')
|
|
|
|
return;
|
|
|
|
/* Newer depmod puts relative paths in modules.dep */
|
2015-10-28 22:37:46 +05:30
|
|
|
path = allocated = xasprintf("%s/%s/%s", CONFIG_DEFAULT_MODULES_DIR, version, path);
|
2010-06-27 04:05:49 +05:30
|
|
|
the_module = xmalloc_open_zipped_read_close(path, &len);
|
2015-10-28 22:37:46 +05:30
|
|
|
if (!the_module) {
|
|
|
|
bb_error_msg("module '%s' not found", path);
|
|
|
|
goto ret;
|
|
|
|
}
|
2010-06-27 04:05:49 +05:30
|
|
|
}
|
|
|
|
|
2015-10-28 22:37:46 +05:30
|
|
|
for (j = 1; (1<<j) & (OPT_TAGS|OPT_F); j++) {
|
2011-02-15 06:15:14 +05:30
|
|
|
const char *pattern;
|
|
|
|
|
2010-06-06 08:25:13 +05:30
|
|
|
if (!((1<<j) & tags))
|
|
|
|
continue;
|
2015-10-28 22:37:46 +05:30
|
|
|
|
2011-02-15 06:15:14 +05:30
|
|
|
pattern = field;
|
|
|
|
if ((1<<j) & OPT_TAGS)
|
2015-10-28 22:37:46 +05:30
|
|
|
pattern = shortcuts[j-2];
|
|
|
|
|
|
|
|
if (strcmp(pattern, shortcuts[0]) == 0) {
|
|
|
|
/* "-n" or "-F filename" */
|
|
|
|
display(path, shortcuts[0]);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2010-06-06 08:25:13 +05:30
|
|
|
ptr = the_module;
|
|
|
|
while (1) {
|
2015-03-12 22:18:34 +05:30
|
|
|
char *after_pattern;
|
|
|
|
|
2010-06-06 08:25:13 +05:30
|
|
|
ptr = memchr(ptr, *pattern, len - (ptr - (char*)the_module));
|
|
|
|
if (ptr == NULL) /* no occurance left, done */
|
|
|
|
break;
|
2015-03-12 22:18:34 +05:30
|
|
|
after_pattern = is_prefixed_with(ptr, pattern);
|
|
|
|
if (after_pattern && *after_pattern == '=') {
|
2012-05-30 11:30:46 +05:30
|
|
|
/* field prefixes are 0x80 or 0x00 */
|
2015-03-12 22:18:34 +05:30
|
|
|
if ((ptr[-1] & 0x7F) == 0x00) {
|
|
|
|
ptr = after_pattern + 1;
|
2015-10-28 22:37:46 +05:30
|
|
|
display(ptr, pattern);
|
2014-07-03 15:54:55 +05:30
|
|
|
ptr += strlen(ptr);
|
2012-05-30 11:30:46 +05:30
|
|
|
}
|
2010-06-06 08:25:13 +05:30
|
|
|
}
|
|
|
|
++ptr;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
free(the_module);
|
2015-10-28 22:37:46 +05:30
|
|
|
ret:
|
|
|
|
free(allocated);
|
2010-06-06 08:25:13 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
//usage:#define modinfo_trivial_usage
|
2015-10-28 22:37:46 +05:30
|
|
|
//usage: "[-adlpn0] [-F keyword] MODULE"
|
2010-06-06 08:25:13 +05:30
|
|
|
//usage:#define modinfo_full_usage "\n\n"
|
2011-06-05 07:28:28 +05:30
|
|
|
//usage: " -a Shortcut for '-F author'"
|
2010-06-06 08:25:13 +05:30
|
|
|
//usage: "\n -d Shortcut for '-F description'"
|
|
|
|
//usage: "\n -l Shortcut for '-F license'"
|
|
|
|
//usage: "\n -p Shortcut for '-F parm'"
|
2015-10-28 22:37:46 +05:30
|
|
|
////usage: "\n -n Shortcut for '-F filename'"
|
2010-06-06 08:25:13 +05:30
|
|
|
//usage: "\n -F keyword Keyword to look for"
|
|
|
|
//usage: "\n -0 Separate output with NULs"
|
|
|
|
//usage:#define modinfo_example_usage
|
|
|
|
//usage: "$ modinfo -F vermagic loop\n"
|
|
|
|
|
|
|
|
int modinfo_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
|
|
|
|
int modinfo_main(int argc UNUSED_PARAM, char **argv)
|
|
|
|
{
|
2015-10-28 22:37:46 +05:30
|
|
|
const char *field;
|
2010-06-06 08:25:13 +05:30
|
|
|
char name[MODULE_NAME_LEN];
|
|
|
|
struct utsname uts;
|
2010-06-27 04:05:49 +05:30
|
|
|
parser_t *parser;
|
2010-06-06 08:25:13 +05:30
|
|
|
char *colon, *tokens[2];
|
|
|
|
unsigned opts;
|
|
|
|
unsigned i;
|
|
|
|
|
2015-10-28 22:37:46 +05:30
|
|
|
field = NULL;
|
2010-06-06 08:25:13 +05:30
|
|
|
opt_complementary = "-1"; /* minimum one param */
|
2015-10-28 22:37:46 +05:30
|
|
|
opts = getopt32(argv, "0F:nadlp", &field);
|
|
|
|
/* If no field selected, show all */
|
|
|
|
if (!(opts & (OPT_TAGS|OPT_F)))
|
|
|
|
option_mask32 |= OPT_TAGS;
|
2010-06-06 08:25:13 +05:30
|
|
|
argv += optind;
|
|
|
|
|
|
|
|
uname(&uts);
|
2010-06-27 04:05:49 +05:30
|
|
|
parser = config_open2(
|
|
|
|
xasprintf("%s/%s/%s", CONFIG_DEFAULT_MODULES_DIR, uts.release, CONFIG_DEFAULT_DEPMOD_FILE),
|
2010-06-06 08:25:13 +05:30
|
|
|
xfopen_for_read
|
|
|
|
);
|
|
|
|
|
2010-06-27 04:05:49 +05:30
|
|
|
while (config_read(parser, tokens, 2, 1, "# \t", PARSE_NORMAL)) {
|
2010-06-06 08:25:13 +05:30
|
|
|
colon = last_char_is(tokens[0], ':');
|
|
|
|
if (colon == NULL)
|
|
|
|
continue;
|
|
|
|
*colon = '\0';
|
2015-02-21 21:38:35 +05:30
|
|
|
filename2modname(bb_basename(tokens[0]), name);
|
2010-06-06 08:25:13 +05:30
|
|
|
for (i = 0; argv[i]; i++) {
|
|
|
|
if (fnmatch(argv[i], name, 0) == 0) {
|
2015-10-28 22:37:46 +05:30
|
|
|
modinfo(tokens[0], uts.release, field);
|
2010-06-06 08:25:13 +05:30
|
|
|
argv[i] = (char *) "";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2010-06-27 04:05:49 +05:30
|
|
|
if (ENABLE_FEATURE_CLEAN_UP)
|
|
|
|
config_close(parser);
|
|
|
|
|
2010-06-06 08:25:13 +05:30
|
|
|
for (i = 0; argv[i]; i++) {
|
|
|
|
if (argv[i][0]) {
|
2015-10-28 22:37:46 +05:30
|
|
|
modinfo(argv[i], uts.release, field);
|
2010-06-06 08:25:13 +05:30
|
|
|
}
|
|
|
|
}
|
2010-06-27 04:05:49 +05:30
|
|
|
|
2010-06-06 08:25:13 +05:30
|
|
|
return 0;
|
|
|
|
}
|