123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329 |
- /*
- * Copyright (C) 2015 John Crispin <blogic@openwrt.org>
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License version 2.1
- * as published by the Free Software Foundation
- *
- * 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.
- */
- #define _GNU_SOURCE
- #include <string.h>
- #include <sys/stat.h>
- #include <fcntl.h>
- #include <glob.h>
- #include <elf.h>
- #include <linux/limits.h>
- #include <libubox/utils.h>
- #include "elf.h"
- #include "fs.h"
- #include "log.h"
- struct avl_tree libraries;
- static LIST_HEAD(library_paths);
- static void alloc_library_path(const char *path)
- {
- struct stat s;
- if (stat(path, &s))
- return;
- struct library_path *p;
- char *_path;
- p = calloc_a(sizeof(*p),
- &_path, strlen(path) + 1);
- if (!p)
- return;
- p->path = strcpy(_path, path);
- list_add_tail(&p->list, &library_paths);
- DEBUG("adding ld.so path %s\n", path);
- }
- /*
- * path = full path
- * name = soname/avl key
- */
- void alloc_library(const char *path, const char *name)
- {
- struct library *l;
- char *_name, *_path;
- l = calloc_a(sizeof(*l),
- &_path, strlen(path) + 1,
- &_name, strlen(name) + 1);
- if (!l)
- return;
- l->avl.key = l->name = strcpy(_name, name);
- l->path = strcpy(_path, path);
- avl_insert(&libraries, &l->avl);
- DEBUG("adding library %s (%s)\n", path, name);
- }
- int lib_open(char **fullpath, const char *file)
- {
- struct library_path *p;
- char path[PATH_MAX];
- int fd = -1;
- *fullpath = NULL;
- list_for_each_entry(p, &library_paths, list) {
- snprintf(path, sizeof(path), "%s/%s", p->path, file);
- fd = open(path, O_RDONLY|O_CLOEXEC);
- if (fd >= 0) {
- *fullpath = strdup(path);
- break;
- }
- }
- return fd;
- }
- const char* find_lib(const char *file)
- {
- struct library *l;
- l = avl_find_element(&libraries, file, l, avl);
- if (!l)
- return NULL;
- return l->path;
- }
- static int elf64_find_section(const char *map, unsigned int type, unsigned long *offset, unsigned long *size, unsigned long *vaddr)
- {
- Elf64_Ehdr *e;
- Elf64_Phdr *ph;
- int i;
- e = (Elf64_Ehdr *) map;
- ph = (Elf64_Phdr *) (map + e->e_phoff);
- for (i = 0; i < e->e_phnum; i++) {
- if (ph[i].p_type == type) {
- *offset = ph[i].p_offset;
- if (size)
- *size = ph[i].p_filesz;
- if (vaddr)
- *vaddr = ph[i].p_vaddr;
- return 0;
- }
- }
- return -1;
- }
- static int elf32_find_section(const char *map, unsigned int type, unsigned long *offset, unsigned long *size, unsigned long *vaddr)
- {
- Elf32_Ehdr *e;
- Elf32_Phdr *ph;
- int i;
- e = (Elf32_Ehdr *) map;
- ph = (Elf32_Phdr *) (map + e->e_phoff);
- for (i = 0; i < e->e_phnum; i++) {
- if (ph[i].p_type == type) {
- *offset = ph[i].p_offset;
- if (size)
- *size = ph[i].p_filesz;
- if (vaddr)
- *vaddr = ph[i].p_vaddr;
- return 0;
- }
- }
- return -1;
- }
- static int elf_find_section(const char *map, unsigned int type, unsigned long *offset, unsigned long *size, unsigned long *vaddr)
- {
- int clazz = map[EI_CLASS];
- if (clazz == ELFCLASS32)
- return elf32_find_section(map, type, offset, size, vaddr);
- else if (clazz == ELFCLASS64)
- return elf64_find_section(map, type, offset, size, vaddr);
- ERROR("unknown elf format %d\n", clazz);
- return -1;
- }
- static int elf32_scan_dynamic(const char *map, unsigned long dyn_offset, unsigned long dyn_size, long load_offset)
- {
- Elf32_Dyn *dynamic = (Elf32_Dyn *) (map + dyn_offset);
- const char *strtab = NULL;
- while ((void *) dynamic < (void *) (map + dyn_offset + dyn_size)) {
- Elf32_Dyn *curr = dynamic;
- dynamic++;
- if (curr->d_tag != DT_STRTAB)
- continue;
- strtab = map + (curr->d_un.d_ptr - load_offset);
- break;
- }
- if (!strtab)
- return -1;
- dynamic = (Elf32_Dyn *) (map + dyn_offset);
- while ((void *) dynamic < (void *) (map + dyn_offset + dyn_size)) {
- Elf32_Dyn *curr = dynamic;
- dynamic++;
- if (curr->d_tag != DT_NEEDED)
- continue;
- if (add_path_and_deps(&strtab[curr->d_un.d_val], 1, -1, 1))
- return -1;
- }
- return 0;
- }
- static int elf64_scan_dynamic(const char *map, unsigned long dyn_offset, unsigned long dyn_size, long load_offset)
- {
- Elf64_Dyn *dynamic = (Elf64_Dyn *) (map + dyn_offset);
- const char *strtab = NULL;
- while ((void *) dynamic < (void *) (map + dyn_offset + dyn_size)) {
- Elf64_Dyn *curr = dynamic;
- dynamic++;
- if (curr->d_tag != DT_STRTAB)
- continue;
- strtab = map + (curr->d_un.d_ptr - load_offset);
- break;
- }
- if (!strtab)
- return -1;
- dynamic = (Elf64_Dyn *) (map + dyn_offset);
- while ((void *) dynamic < (void *) (map + dyn_offset + dyn_size)) {
- Elf64_Dyn *curr = dynamic;
- dynamic++;
- if (curr->d_tag != DT_NEEDED)
- continue;
- if (add_path_and_deps(&strtab[curr->d_un.d_val], 1, -1, 1))
- return -1;
- }
- return 0;
- }
- int elf_load_deps(const char *path, const char *map)
- {
- unsigned long dyn_offset, dyn_size;
- unsigned long load_offset, load_vaddr;
- unsigned long interp_offset;
- if (elf_find_section(map, PT_INTERP, &interp_offset, NULL, NULL) == 0) {
- add_path_and_deps(map+interp_offset, 1, -1, 0);
- }
- if (elf_find_section(map, PT_LOAD, &load_offset, NULL, &load_vaddr)) {
- DEBUG("failed to load the .load section from %s\n", path);
- return 0;
- }
- if (elf_find_section(map, PT_DYNAMIC, &dyn_offset, &dyn_size, NULL)) {
- DEBUG("failed to load the .dynamic section from %s\n", path);
- return 0;
- }
- int clazz = map[EI_CLASS];
- if (clazz == ELFCLASS32)
- return elf32_scan_dynamic(map, dyn_offset, dyn_size, load_vaddr - load_offset);
- else if (clazz == ELFCLASS64)
- return elf64_scan_dynamic(map, dyn_offset, dyn_size, load_vaddr - load_offset);
- ERROR("unknown elf format %d\n", clazz);
- return -1;
- }
- static void load_ldso_conf(const char *conf)
- {
- FILE* fp = fopen(conf, "r");
- char line[PATH_MAX];
- if (!fp) {
- DEBUG("failed to open %s\n", conf);
- return;
- }
- while (!feof(fp)) {
- int len;
- if (!fgets(line, sizeof(line), fp))
- break;
- len = strlen(line);
- if (len < 2)
- continue;
- if (*line == '#')
- continue;
- if (line[len - 1] == '\n')
- line[len - 1] = '\0';
- if (!strncmp(line, "include ", 8)) {
- char *sep = strstr(line, " ");
- glob_t gl;
- int i;
- if (!sep)
- continue;;
- while (*sep == ' ')
- sep++;
- if (glob(sep, GLOB_NOESCAPE | GLOB_MARK, NULL, &gl)) {
- ERROR("glob failed on %s\n", sep);
- continue;
- }
- for (i = 0; i < gl.gl_pathc; i++)
- load_ldso_conf(gl.gl_pathv[i]);
- globfree(&gl);
- } else {
- alloc_library_path(line);
- }
- }
- fclose(fp);
- }
- void init_library_search(void)
- {
- avl_init(&libraries, avl_strcmp, false, NULL);
- alloc_library_path("/lib");
- alloc_library_path("/lib64");
- alloc_library_path("/usr/lib");
- load_ldso_conf("/etc/ld.so.conf");
- }
- void free_library_search(void)
- {
- struct library_path *p, *ptmp;
- struct library *l, *tmp;
- list_for_each_entry_safe(p, ptmp, &library_paths, list)
- free(p);
- avl_remove_all_elements(&libraries, l, avl, tmp)
- free(l);
- }
|