X-Git-Url: http://git.archive.openwrt.org/?p=project%2Fubox.git;a=blobdiff_plain;f=kmodloader.c;h=387678ada91ffef3c9ba9bdf5f62a915bc72e6a7;hp=11af0ae7c313023a039c765c64dfeb269c8fb98b;hb=31d66f2c3b2afbc9eaae4e2c22103d0f79e9503e;hpb=b5dc53828bc69611cb474c95c9b23e70a2288391 diff --git a/kmodloader.c b/kmodloader.c index 11af0ae..387678a 100644 --- a/kmodloader.c +++ b/kmodloader.c @@ -35,14 +35,9 @@ #include #include #include +#include -#define DEF_MOD_PATH "/lib/modules/%s/" - -#define LOG(fmt, ...) do { \ - syslog(LOG_INFO, fmt, ## __VA_ARGS__); \ - printf("kmod: "fmt, ## __VA_ARGS__); \ - } while (0) - +#define DEF_MOD_PATH "/modules/%s/" enum { SCANNED, @@ -55,6 +50,7 @@ struct module { char *name; char *depends; + char *opts; int size; int usage; @@ -63,7 +59,51 @@ struct module { }; static struct avl_tree modules; -static char *prefix = ""; + +static char **module_folders = NULL; + +static int init_module_folders(void) +{ + int n = 0; + struct stat st; + struct utsname ver; + char *s, *e, *p, path[256], ldpath[256]; + + e = ldpath; + s = getenv("LD_LIBRARY_PATH"); + + if (s) + e += snprintf(ldpath, sizeof(ldpath), "%s:", s); + + e += snprintf(e, sizeof(ldpath) - (e - ldpath), "/lib"); + + uname(&ver); + + for (s = p = ldpath; p <= e; p++) { + if (*p != ':' && *p != '\0') + continue; + + *p = 0; + snprintf(path, sizeof(path), "%s" DEF_MOD_PATH, s, ver.release); + + if (!stat(path, &st) && S_ISDIR(st.st_mode)) { + module_folders = realloc(module_folders, sizeof(p) * (n + 2)); + + if (!module_folders) + return -1; + + module_folders[n++] = strdup(path); + } + + s = p + 1; + } + + if (!module_folders) + return -1; + + module_folders[n] = NULL; + return 0; +} static struct module *find_module(const char *name) { @@ -81,18 +121,18 @@ static void free_modules(void) static char* get_module_path(char *name) { + char **p; static char path[256]; - struct utsname ver; struct stat s; - if (!stat(name, &s)) + if (!stat(name, &s) && S_ISREG(s.st_mode)) return name; - uname(&ver); - snprintf(path, 256, "%s" DEF_MOD_PATH "%s.ko", prefix, ver.release, name); - - if (!stat(path, &s)) - return path; + for (p = module_folders; *p; p++) { + snprintf(path, sizeof(path), "%s%s.ko", *p, name); + if (!stat(path, &s) && S_ISREG(s.st_mode)) + return path; + } return NULL; } @@ -111,8 +151,7 @@ static char* get_module_name(char *path) return name; } -#if __WORDSIZE == 64 -static int elf_find_section(char *map, const char *section, unsigned int *offset, unsigned int *size) +static int elf64_find_section(char *map, const char *section, unsigned int *offset, unsigned int *size) { const char *secnames; Elf64_Ehdr *e; @@ -133,8 +172,8 @@ static int elf_find_section(char *map, const char *section, unsigned int *offset return -1; } -#else -static int elf_find_section(char *map, const char *section, unsigned int *offset, unsigned int *size) + +static int elf32_find_section(char *map, const char *section, unsigned int *offset, unsigned int *size) { const char *secnames; Elf32_Ehdr *e; @@ -155,7 +194,20 @@ static int elf_find_section(char *map, const char *section, unsigned int *offset return -1; } -#endif + +static int elf_find_section(char *map, const char *section, unsigned int *offset, unsigned int *size) +{ + int clazz = map[EI_CLASS]; + + if (clazz == ELFCLASS32) + return elf32_find_section(map, section, offset, size); + else if (clazz == ELFCLASS64) + return elf64_find_section(map, section, offset, size); + + ULOG_ERR("unknown elf format %d\n", clazz); + + return -1; +} static struct module * alloc_module(const char *name, const char *depends, int size) @@ -170,6 +222,7 @@ alloc_module(const char *name, const char *depends, int size) return NULL; m->avl.key = m->name = strcpy(_name, name); + m->opts = 0; if (depends) { m->depends = strcpy(_dep, depends); @@ -194,7 +247,7 @@ static int scan_loaded_modules(void) fp = fopen("/proc/modules", "r"); if (!fp) { - LOG("failed to open /proc/modules\n"); + ULOG_ERR("failed to open /proc/modules\n"); return -1; } @@ -229,23 +282,23 @@ static struct module* get_module_info(const char *module, const char *name) struct stat s; if (!fd) { - LOG("failed to open %s\n", module); + ULOG_ERR("failed to open %s\n", module); return NULL; } if (fstat(fd, &s) == -1) { - LOG("failed to stat %s\n", module); + ULOG_ERR("failed to stat %s\n", module); return NULL; } map = mmap(NULL, s.st_size, PROT_READ, MAP_PRIVATE, fd, 0); if (map == MAP_FAILED) { - LOG("failed to mmap %s\n", module); + ULOG_ERR("failed to mmap %s\n", module); return NULL; } if (elf_find_section(map, ".modinfo", &offset, &size)) { - LOG("failed to load the .modinfo section from %s\n", module); + ULOG_ERR("failed to load the .modinfo section from %s\n", module); return NULL; } @@ -275,7 +328,7 @@ static struct module* get_module_info(const char *module, const char *name) return m; } -static int scan_module_folder(void) +static int scan_module_folder(const char *dir) { int gl_flags = GLOB_NOESCAPE | GLOB_MARK; struct utsname ver; @@ -284,8 +337,8 @@ static int scan_module_folder(void) int j; uname(&ver); - path = alloca(sizeof(DEF_MOD_PATH "*.ko") + strlen(prefix) + strlen(ver.release) + 1); - sprintf(path, "%s" DEF_MOD_PATH "*.ko", prefix, ver.release); + path = alloca(strlen(dir) + sizeof("*.ko") + 1); + sprintf(path, "%s*.ko", dir); if (glob(path, gl_flags, NULL, &gl) < 0) return -1; @@ -307,6 +360,20 @@ static int scan_module_folder(void) return 0; } +static int scan_module_folders(void) +{ + int rv = 0; + char **p; + + if (init_module_folders()) + return -1; + + for (p = module_folders; *p; p++) + rv |= scan_module_folder(*p); + + return rv; +} + static int print_modinfo(char *module) { int fd = open(module, O_RDONLY); @@ -315,23 +382,23 @@ static int print_modinfo(char *module) char *map, *strings; if (!fd) { - LOG("failed to open %s\n", module); + ULOG_ERR("failed to open %s\n", module); return -1; } if (fstat(fd, &s) == -1) { - LOG("failed to stat %s\n", module); + ULOG_ERR("failed to stat %s\n", module); return -1; } map = mmap(NULL, s.st_size, PROT_READ, MAP_PRIVATE, fd, 0); if (map == MAP_FAILED) { - LOG("failed to mmap %s\n", module); + ULOG_ERR("failed to mmap %s\n", module); return -1; } if (elf_find_section(map, ".modinfo", &offset, &size)) { - LOG("failed to load the .modinfo section from %s\n", module); + ULOG_ERR("failed to load the .modinfo section from %s\n", module); return -1; } @@ -376,9 +443,9 @@ static int deps_available(struct module *m, int verbose) m = find_module(dep); if (verbose && !m) - LOG("missing dependency %s\n", dep); + ULOG_ERR("missing dependency %s\n", dep); if (verbose && m && (m->state != LOADED)) - LOG("dependency not loaded %s\n", dep); + ULOG_ERR("dependency not loaded %s\n", dep); if (!m || (m->state != LOADED)) err++; dep += strlen(dep) + 1; @@ -394,21 +461,21 @@ static int insert_module(char *path, const char *options) int fd, ret = -1; if (stat(path, &s)) { - LOG("missing module %s\n", path); + ULOG_ERR("missing module %s\n", path); return ret; } fd = open(path, O_RDONLY); if (!fd) { - LOG("cannot open %s\n", path); + ULOG_ERR("cannot open %s\n", path); return ret; } data = malloc(s.st_size); if (read(fd, data, s.st_size) == s.st_size) - ret = syscall(__NR_init_module, data, s.st_size, options); + ret = syscall(__NR_init_module, data, (unsigned long) s.st_size, options); else - LOG("failed to read full module %s\n", path); + ULOG_ERR("failed to read full module %s\n", path); close(fd); free(data); @@ -430,7 +497,7 @@ static void load_moddeps(struct module *_m) m = find_module(dep); if (!m) - LOG("failed to find dependency %s\n", dep); + ULOG_ERR("failed to find dependency %s\n", dep); if (m && (m->state != LOADED)) { m->state = PROBE; load_moddeps(m); @@ -455,7 +522,7 @@ static int load_modprobe(void) todo = 0; avl_for_each_element(&modules, m, avl) { if ((m->state == PROBE) && (!deps_available(m, 0))) { - if (!insert_module(get_module_path(m->name), "")) { + if (!insert_module(get_module_path(m->name), (m->opts) ? (m->opts) : (""))) { m->state = LOADED; m->error = 0; loaded++; @@ -475,14 +542,14 @@ static int load_modprobe(void) static int print_insmod_usage(void) { - LOG("Usage:\n\tinsmod filename [args]\n"); + ULOG_INFO("Usage:\n\tinsmod filename [args]\n"); return -1; } static int print_usage(char *arg) { - LOG("Usage:\n\t%s module\n", arg); + ULOG_INFO("Usage:\n\t%s module\n", arg); return -1; } @@ -497,7 +564,7 @@ static int main_insmod(int argc, char **argv) name = get_module_name(argv[1]); if (!name) { - LOG("cannot find module - %s\n", argv[1]); + ULOG_ERR("cannot find module - %s\n", argv[1]); return -1; } @@ -505,7 +572,7 @@ static int main_insmod(int argc, char **argv) return -1; if (find_module(name)) { - LOG("module is already loaded - %s\n", name); + ULOG_ERR("module is already loaded - %s\n", name); return -1; } @@ -526,11 +593,20 @@ static int main_insmod(int argc, char **argv) cur += sprintf(cur, "%s", argv[i]); } + init_module_folders(); + + if (get_module_path(argv[1])) { + name = argv[1]; + } else if (!get_module_path(name)) { + fprintf(stderr, "Failed to find %s. Maybe it is a built in module ?\n", name); + return -1; + } + ret = insert_module(get_module_path(name), options); free(options); if (ret) - LOG("failed to insert %s\n", get_module_path(name)); + ULOG_ERR("failed to insert %s\n", get_module_path(name)); return ret; } @@ -550,13 +626,13 @@ static int main_rmmod(int argc, char **argv) name = get_module_name(argv[1]); m = find_module(name); if (!m) { - LOG("module is not loaded\n"); + ULOG_ERR("module is not loaded\n"); return -1; } ret = syscall(__NR_delete_module, m->name, 0); if (ret) - LOG("unloading the module failed\n"); + ULOG_ERR("unloading the module failed\n"); free_modules(); @@ -589,19 +665,19 @@ static int main_modinfo(int argc, char **argv) if (argc != 2) return print_usage("modinfo"); - if (scan_module_folder()) + if (scan_module_folders()) return -1; name = get_module_name(argv[1]); m = find_module(name); if (!m) { - LOG("cannot find module - %s\n", argv[1]); + ULOG_ERR("cannot find module - %s\n", argv[1]); return -1; } name = get_module_path(m->name); if (!name) { - LOG("cannot find path of module - %s\n", m->name); + ULOG_ERR("cannot find path of module - %s\n", m->name); return -1; } @@ -621,16 +697,16 @@ static int main_modprobe(int argc, char **argv) if (scan_loaded_modules()) return -1; - if (scan_module_folder()) + if (scan_module_folders()) return -1; name = get_module_name(argv[1]); m = find_module(name); if (m && m->state == LOADED) { - LOG("%s is already loaded\n", name); + ULOG_ERR("%s is already loaded\n", name); return -1; } else if (!m) { - LOG("failed to find a module named %s\n", name); + ULOG_ERR("failed to find a module named %s\n", name); } else { int fail; @@ -639,12 +715,12 @@ static int main_modprobe(int argc, char **argv) fail = load_modprobe(); if (fail) { - LOG("%d module%s could not be probed\n", - fail, (fail == 1) ? ("") : ("s")); + ULOG_ERR("%d module%s could not be probed\n", + fail, (fail == 1) ? ("") : ("s")); avl_for_each_element(&modules, m, avl) if ((m->state == PROBE) || m->error) - LOG("- %s\n", m->name); + ULOG_ERR("- %s\n", m->name); } } @@ -665,9 +741,6 @@ static int main_loader(int argc, char **argv) if (argc > 1) dir = argv[1]; - if (argc > 2) - prefix = argv[2]; - path = malloc(strlen(dir) + 2); strcpy(path, dir); strcat(path, "*"); @@ -675,10 +748,10 @@ static int main_loader(int argc, char **argv) if (scan_loaded_modules()) return -1; - if (scan_module_folder()) + if (scan_module_folders()) return -1; - syslog(0, "kmodloader: loading kernel modules from %s\n", path); + syslog(LOG_INFO, "kmodloader: loading kernel modules from %s\n", path); if (glob(path, gl_flags, NULL, &gl) < 0) goto out; @@ -689,7 +762,7 @@ static int main_loader(int argc, char **argv) char *mod = NULL; if (!fp) { - LOG("failed to open %s\n", gl.gl_pathv[j]); + ULOG_ERR("failed to open %s\n", gl.gl_pathv[j]); continue; } @@ -709,6 +782,8 @@ static int main_loader(int argc, char **argv) if (!m || (m->state == LOADED)) continue; + if (opts) + m->opts = strdup(opts); m->state = PROBE; if (basename(gl.gl_pathv[j])[0] - '0' <= 9) load_modprobe(); @@ -719,15 +794,14 @@ static int main_loader(int argc, char **argv) } fail = load_modprobe(); - LOG("ran %d iterations\n", iterations); if (fail) { - LOG("%d module%s could not be probed\n", - fail, (fail == 1) ? ("") : ("s")); + ULOG_ERR("%d module%s could not be probed\n", + fail, (fail == 1) ? ("") : ("s")); avl_for_each_element(&modules, m, avl) if ((m->state == PROBE) || (m->error)) - LOG("- %s - %d\n", m->name, deps_available(m, 1)); + ULOG_ERR("- %s - %d\n", m->name, deps_available(m, 1)); } out: