2009-03-24 20:58:44 +01:00
|
|
|
/*
|
|
|
|
Copyright (C) 2009 Red Hat Inc.
|
|
|
|
Copyright (C) 2009 Arnaldo Carvalho de Melo <acme@redhat.com>
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify it
|
|
|
|
under the terms of version 2 of the GNU General Public License as
|
|
|
|
published by the Free Software Foundation.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <malloc.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#include "dutil.h"
|
|
|
|
#include "elf_symtab.h"
|
|
|
|
|
|
|
|
#define HASHSYMS__BITS 8
|
|
|
|
#define HASHSYMS__SIZE (1UL << HASHSYMS__BITS)
|
|
|
|
|
2009-03-25 22:02:48 +01:00
|
|
|
struct elf_symtab *elf_symtab__new(const char *name, Elf *elf, GElf_Ehdr *ehdr)
|
2009-03-24 20:58:44 +01:00
|
|
|
{
|
2009-03-25 22:02:48 +01:00
|
|
|
if (name == NULL)
|
|
|
|
name = ".symtab";
|
|
|
|
|
2009-03-24 20:58:44 +01:00
|
|
|
GElf_Shdr shdr;
|
2009-04-03 16:53:05 +02:00
|
|
|
Elf_Scn *sec = elf_section_by_name(elf, ehdr, &shdr, name, NULL);
|
2009-03-24 20:58:44 +01:00
|
|
|
|
|
|
|
if (sec == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
if (gelf_getshdr(sec, &shdr) == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
struct elf_symtab *self = malloc(sizeof(*self));
|
|
|
|
if (self == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
2009-03-25 22:02:48 +01:00
|
|
|
self->name = strdup(name);
|
|
|
|
if (self->name == NULL)
|
|
|
|
goto out_delete;
|
|
|
|
|
2009-03-24 20:58:44 +01:00
|
|
|
self->syms = elf_getdata(sec, NULL);
|
|
|
|
if (self->syms == NULL)
|
2009-03-25 22:02:48 +01:00
|
|
|
goto out_free_name;
|
2009-03-24 20:58:44 +01:00
|
|
|
|
|
|
|
sec = elf_getscn(elf, shdr.sh_link);
|
|
|
|
if (sec == NULL)
|
2009-03-25 22:02:48 +01:00
|
|
|
goto out_free_name;
|
2009-03-24 20:58:44 +01:00
|
|
|
|
|
|
|
self->symstrs = elf_getdata(sec, NULL);
|
|
|
|
if (self->symstrs == NULL)
|
2009-03-25 22:02:48 +01:00
|
|
|
goto out_free_name;
|
2009-03-24 20:58:44 +01:00
|
|
|
|
|
|
|
self->nr_syms = shdr.sh_size / shdr.sh_entsize;
|
|
|
|
|
|
|
|
return self;
|
2009-03-25 22:02:48 +01:00
|
|
|
out_free_name:
|
|
|
|
free(self->name);
|
2009-03-24 20:58:44 +01:00
|
|
|
out_delete:
|
|
|
|
free(self);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
void elf_symtab__delete(struct elf_symtab *self)
|
|
|
|
{
|
2009-04-03 14:41:09 +02:00
|
|
|
if (self == NULL)
|
|
|
|
return;
|
|
|
|
free(self->name);
|
2009-03-24 20:58:44 +01:00
|
|
|
free(self);
|
|
|
|
}
|