/* vi: set sw=4 ts=4: */ /* * modinfo - retrieve module info * Copyright (c) 2008 Pascal Bellard * * Licensed under GPLv2 or later, see file LICENSE in this source tree. */ //applet:IF_MODINFO(APPLET(modinfo, BB_DIR_SBIN, BB_SUID_DROP)) //kbuild:lib-$(CONFIG_MODINFO) += modinfo.o modutils.o //config:config MODINFO //config: bool "modinfo" //config: default y //config: select PLATFORM_LINUX //config: help //config: Show information about a Linux Kernel module #include #include /* uname() */ #include "libbb.h" #include "modutils.h" #if defined(ANDROID) || defined(__ANDROID__) #define DONT_USE_UTS_REL_FOLDER #endif enum { OPT_TAGS = (1 << 12) - 1, /* shortcut count */ OPT_F = (1 << 12), /* field name */ OPT_0 = (1 << 13), /* \0 as separator */ }; struct modinfo_env { char *field; int tags; }; static int display(const char *data, const char *pattern, int flag) { if (flag) { int n = printf("%s:", pattern); while (n++ < 16) bb_putchar(' '); } return printf("%s%c", data, (option_mask32 & OPT_0) ? '\0' : '\n'); } static void modinfo(const char *path, const char *version, const struct modinfo_env *env) { static const char *const shortcuts[] = { "filename", "license", "author", "description", "version", "alias", "srcversion", "depends", "uts_release", "vermagic", "parm", "firmware", }; size_t len; int j, length; char *ptr, *fullpath, *the_module; const char *field = env->field; int tags = env->tags; if (tags & 1) { /* filename */ display(path, shortcuts[0], 1 != tags); } len = MAXINT(ssize_t); the_module = xmalloc_open_zipped_read_close(path, &len); if (!the_module) { if (path[0] == '/') return; /* Newer depmod puts relative paths in modules.dep */ fullpath = xasprintf("%s/%s/%s", CONFIG_DEFAULT_MODULES_DIR, version, path); the_module = xmalloc_open_zipped_read_close(fullpath, &len); #ifdef DONT_USE_UTS_REL_FOLDER if (!the_module) { free((char*)fullpath); fullpath = xasprintf("%s/%s", CONFIG_DEFAULT_MODULES_DIR, path); the_module = xmalloc_open_zipped_read_close(fullpath, &len); } #endif free((char*)fullpath); if (!the_module) { // outputs system error msg bb_perror_msg("\n"); return; } } if (field) tags |= OPT_F; for (j = 1; (1<