2024-09-22 20:02:42 +00:00
|
|
|
#include <elf.h>
|
|
|
|
#include <merror.h>
|
2024-09-23 14:13:38 +00:00
|
|
|
#include <stdio.h>
|
2024-09-22 20:02:42 +00:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <melf.h>
|
|
|
|
|
|
|
|
#include "link.h"
|
|
|
|
|
|
|
|
#define SYMTAB_INIT_LEN 8
|
|
|
|
|
|
|
|
int symtab_init(struct symbol_table *symtab)
|
|
|
|
{
|
|
|
|
symtab->len = 1;
|
|
|
|
symtab->size = SYMTAB_INIT_LEN;
|
|
|
|
symtab->syms = malloc(sizeof(Elf32_Sym) * SYMTAB_INIT_LEN);
|
|
|
|
|
|
|
|
if (symtab->syms == NULL) {
|
|
|
|
PERROR("cannot alloc");
|
|
|
|
return M_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
symtab->syms[0] = (Elf32_Sym){0};
|
2024-09-23 14:13:38 +00:00
|
|
|
symtab->map = NULL;
|
2024-09-22 20:02:42 +00:00
|
|
|
|
|
|
|
return M_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
void symtab_free(struct symbol_table *symtab)
|
|
|
|
{
|
|
|
|
free(symtab->syms);
|
|
|
|
}
|
|
|
|
|
|
|
|
int symtab_push(struct symbol_table *symtab, const Elf32_Sym *sym)
|
|
|
|
{
|
|
|
|
if (symtab->len >= symtab->size) {
|
|
|
|
size_t size = symtab->size *= 2;
|
|
|
|
void *new = realloc(symtab->syms, sizeof(Elf32_Sym) * size);
|
|
|
|
if (new == NULL) {
|
|
|
|
PERROR("cannot realloc");
|
|
|
|
return M_ERROR;
|
|
|
|
}
|
|
|
|
symtab->size = size;
|
|
|
|
symtab->syms = new;
|
|
|
|
}
|
|
|
|
|
|
|
|
symtab->syms[symtab->len++] = *sym;
|
|
|
|
return M_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2024-09-23 14:13:38 +00:00
|
|
|
int symtab_get(struct symbol_table *symtab, Elf32_Sym **res, const char *name,
|
|
|
|
int32_t obj_idx)
|
2024-09-22 20:02:42 +00:00
|
|
|
{
|
2024-09-23 14:28:35 +00:00
|
|
|
for (size_t i = 1; i < symtab->len; i++) {
|
2024-09-22 20:02:42 +00:00
|
|
|
Elf32_Sym *sym = &symtab->syms[i];
|
|
|
|
const char *symname = symtab->strtab->data + B32(sym->st_name);
|
2024-09-23 14:13:38 +00:00
|
|
|
if (strcmp(name, symname) != 0)
|
|
|
|
continue;
|
2024-09-23 14:28:35 +00:00
|
|
|
|
2024-10-01 22:20:10 +00:00
|
|
|
// ignore absolute symbols
|
|
|
|
if (B16(sym->st_shndx) == SHN_ABS)
|
|
|
|
continue;
|
|
|
|
|
2024-09-23 14:13:38 +00:00
|
|
|
// only allow retrevial of local variables from the
|
|
|
|
// same object
|
|
|
|
if (sym->st_info >> 4 != STB_GLOBAL && symtab->map != NULL &&
|
|
|
|
obj_idx >= 0) {
|
2024-09-23 14:25:01 +00:00
|
|
|
// we need to change the index by one since
|
|
|
|
// symbol tables always start will a NULl symbol
|
|
|
|
struct object *obj = symtab->map->meta[i - 1];
|
2024-09-23 14:13:38 +00:00
|
|
|
if (obj->index != (uint32_t)obj_idx)
|
|
|
|
continue;
|
|
|
|
} else if (obj_idx < 0 && sym->st_info >> 4 != STB_GLOBAL) {
|
|
|
|
// when obj_idx is -1, we only want to reutrn
|
|
|
|
// global symbols
|
|
|
|
continue;
|
2024-09-22 20:02:42 +00:00
|
|
|
}
|
2024-09-23 14:13:38 +00:00
|
|
|
|
|
|
|
if (res != NULL)
|
|
|
|
*res = sym;
|
|
|
|
return M_SUCCESS;
|
2024-09-22 20:02:42 +00:00
|
|
|
}
|
|
|
|
return M_ERROR;
|
|
|
|
}
|
2024-09-23 14:13:38 +00:00
|
|
|
|
|
|
|
int symtab_map_push(struct symbol_table_mapping *symtabm, struct object *meta)
|
|
|
|
{
|
|
|
|
if (symtabm->len >= symtabm->size) {
|
|
|
|
uint32_t size = symtabm->size * 2;
|
|
|
|
void *new = realloc(symtabm->meta,
|
|
|
|
sizeof(struct object *) * size);
|
|
|
|
if (new == NULL) {
|
|
|
|
PERROR("cannot realloc");
|
|
|
|
return M_ERROR;
|
|
|
|
}
|
|
|
|
symtabm->size = size;
|
|
|
|
symtabm->meta = new;
|
|
|
|
}
|
|
|
|
|
|
|
|
symtabm->meta[symtabm->len++] = meta;
|
|
|
|
return M_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
int symtab_map_init(struct symbol_table_mapping *symtabm)
|
|
|
|
{
|
|
|
|
symtabm->len = 0;
|
|
|
|
symtabm->size = SYMTAB_INIT_LEN;
|
|
|
|
symtabm->meta = malloc(sizeof(struct object *) * symtabm->size);
|
|
|
|
|
|
|
|
if (symtabm->meta == NULL) {
|
|
|
|
PERROR("cannot alloc");
|
|
|
|
return M_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
return M_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void symtab_map_free(struct symbol_table_mapping *symtabm)
|
|
|
|
{
|
|
|
|
free(symtabm->meta);
|
|
|
|
}
|