2584df6335
Using elf_sym__bind, i.e. Elf_Sym->st_info bind subfield. Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
736 lines
18 KiB
C
736 lines
18 KiB
C
/* ctfdump.c: CTF dumper.
|
|
*
|
|
* Copyright (C) 2008 David S. Miller <davem@davemloft.net>
|
|
*/
|
|
|
|
#include <sys/types.h>
|
|
#include <sys/stat.h>
|
|
#include <errno.h>
|
|
#include <fcntl.h>
|
|
#include <stdio.h>
|
|
#include <unistd.h>
|
|
#include <stdlib.h>
|
|
#include <stddef.h>
|
|
#include <malloc.h>
|
|
#include <string.h>
|
|
#include <limits.h>
|
|
#include <libgen.h>
|
|
#include <zlib.h>
|
|
|
|
#include <gelf.h>
|
|
|
|
#include "libctf.h"
|
|
#include "ctf.h"
|
|
#include "dutil.h"
|
|
#include "dwarves.h"
|
|
|
|
/*
|
|
* FIXME: We should just get the table from the CTF ELF section
|
|
* and use it directly
|
|
*/
|
|
extern struct strings *strings;
|
|
|
|
static void *tag__alloc(const size_t size)
|
|
{
|
|
struct tag *self = zalloc(size);
|
|
|
|
if (self != NULL)
|
|
self->top_level = 1;
|
|
|
|
return self;
|
|
}
|
|
|
|
static int ctf__load_ftype(struct ctf *self, struct ftype *proto, uint16_t tag,
|
|
uint16_t type, uint16_t vlen, uint16_t *args, long id)
|
|
{
|
|
proto->tag.tag = tag;
|
|
proto->tag.type = type;
|
|
INIT_LIST_HEAD(&proto->parms);
|
|
|
|
int i;
|
|
for (i = 0; i < vlen; i++) {
|
|
uint16_t type = ctf__get16(self, &args[i]);
|
|
|
|
if (type == 0)
|
|
proto->unspec_parms = 1;
|
|
else {
|
|
struct parameter *p = tag__alloc(sizeof(*p));
|
|
|
|
if (p == NULL)
|
|
goto out_free_parameters;
|
|
p->tag.tag = DW_TAG_formal_parameter;
|
|
p->tag.type = ctf__get16(self, &args[i]);
|
|
ftype__add_parameter(proto, p);
|
|
}
|
|
}
|
|
|
|
vlen *= sizeof(*args);
|
|
|
|
/* Round up to next multiple of 4 to maintain
|
|
* 32-bit alignment.
|
|
*/
|
|
if (vlen & 0x2)
|
|
vlen += 0x2;
|
|
|
|
cu__add_tag(self->priv, &proto->tag, &id);
|
|
|
|
return vlen;
|
|
out_free_parameters:
|
|
ftype__delete(proto);
|
|
return -ENOMEM;
|
|
}
|
|
|
|
static struct function *function__new(uint16_t **ptr, GElf_Sym *sym,
|
|
struct ctf *ctf)
|
|
{
|
|
struct function *self = tag__alloc(sizeof(*self));
|
|
|
|
if (self != NULL) {
|
|
const char *name = elf_sym__name(sym, ctf->symtab);
|
|
|
|
self->lexblock.low_pc = elf_sym__value(sym);
|
|
self->lexblock.size = elf_sym__size(sym);
|
|
/* FIXME: should use the .strtab string */
|
|
self->name = strings__add(strings, name);
|
|
self->vtable_entry = -1;
|
|
self->external = elf_sym__bind(sym) == STB_GLOBAL;
|
|
INIT_LIST_HEAD(&self->vtable_node);
|
|
INIT_LIST_HEAD(&self->tool_node);
|
|
INIT_LIST_HEAD(&self->lexblock.tags);
|
|
|
|
uint16_t val = ctf__get16(ctf, *ptr);
|
|
uint16_t tag = CTF_GET_KIND(val);
|
|
uint16_t vlen = CTF_GET_VLEN(val);
|
|
|
|
++*ptr;
|
|
|
|
if (tag != CTF_TYPE_KIND_FUNC) {
|
|
fprintf(stderr,
|
|
"%s: Expected function type, got %u\n",
|
|
__func__, tag);
|
|
goto out_delete;
|
|
}
|
|
uint16_t type = ctf__get16(ctf, *ptr);
|
|
long id = -1; /* FIXME: not needed for funcs... */
|
|
|
|
++*ptr;
|
|
|
|
if (ctf__load_ftype(ctf, &self->proto, DW_TAG_subprogram,
|
|
type, vlen, *ptr, id) < 0)
|
|
return NULL;
|
|
/*
|
|
* Round up to next multiple of 4 to maintain 32-bit alignment.
|
|
*/
|
|
if (vlen & 0x1)
|
|
++vlen;
|
|
*ptr += vlen;
|
|
}
|
|
|
|
return self;
|
|
out_delete:
|
|
free(self);
|
|
return NULL;
|
|
}
|
|
|
|
static int ctf__load_funcs(struct ctf *self)
|
|
{
|
|
struct ctf_header *hp = ctf__get_buffer(self);
|
|
uint16_t *func_ptr = (ctf__get_buffer(self) + sizeof(*hp) +
|
|
ctf__get32(self, &hp->ctf_func_off));
|
|
|
|
GElf_Sym sym;
|
|
uint32_t idx;
|
|
ctf__for_each_symtab_function(self, idx, sym)
|
|
if (function__new(&func_ptr, &sym, self) == NULL)
|
|
return -ENOMEM;
|
|
|
|
return 0;
|
|
}
|
|
|
|
static struct base_type *base_type__new(const char *name, size_t size)
|
|
{
|
|
struct base_type *self = tag__alloc(sizeof(*self));
|
|
|
|
if (self != NULL) {
|
|
self->name = strings__add(strings, name);
|
|
self->bit_size = size;
|
|
}
|
|
return self;
|
|
}
|
|
|
|
static void type__init(struct type *self, uint16_t tag,
|
|
const char *name, size_t size)
|
|
{
|
|
INIT_LIST_HEAD(&self->node);
|
|
INIT_LIST_HEAD(&self->namespace.tags);
|
|
self->size = size;
|
|
self->namespace.tag.tag = tag;
|
|
self->namespace.name = strings__add(strings, name);
|
|
}
|
|
|
|
static struct type *type__new(uint16_t tag, const char *name, size_t size)
|
|
{
|
|
struct type *self = tag__alloc(sizeof(*self));
|
|
|
|
if (self != NULL)
|
|
type__init(self, tag, name, size);
|
|
|
|
return self;
|
|
}
|
|
|
|
static struct class *class__new(const char *name, size_t size)
|
|
{
|
|
struct class *self = tag__alloc(sizeof(*self));
|
|
|
|
if (self != NULL) {
|
|
type__init(&self->type, DW_TAG_structure_type, name, size);
|
|
INIT_LIST_HEAD(&self->vtable);
|
|
}
|
|
|
|
return self;
|
|
}
|
|
|
|
static int create_new_base_type(struct ctf *self, void *ptr,
|
|
struct ctf_full_type *tp, long id)
|
|
{
|
|
uint32_t *enc = ptr, name_idx;
|
|
char name[64], *buf = name;
|
|
uint32_t eval = ctf__get32(self, enc);
|
|
uint32_t attrs = CTF_TYPE_INT_ATTRS(eval);
|
|
struct base_type *base;
|
|
|
|
if (attrs & CTF_TYPE_INT_SIGNED)
|
|
buf += sprintf(buf, "signed ");
|
|
if (attrs & CTF_TYPE_INT_BOOL)
|
|
buf += sprintf(buf, "bool ");
|
|
if (attrs & CTF_TYPE_INT_VARARGS)
|
|
buf += sprintf(buf, "varargs ");
|
|
|
|
name_idx = ctf__get32(self, &tp->base.ctf_name);
|
|
buf += sprintf(buf, "%s", ctf__string(self, name_idx));
|
|
base = base_type__new(name, CTF_TYPE_INT_BITS(eval));
|
|
if (base == NULL)
|
|
return -ENOMEM;
|
|
|
|
base->tag.tag = DW_TAG_base_type;
|
|
cu__add_tag(self->priv, &base->tag, &id);
|
|
|
|
return sizeof(*enc);
|
|
}
|
|
|
|
static int create_new_base_type_float(struct ctf *self, void *ptr,
|
|
struct ctf_full_type *tp,
|
|
long id)
|
|
{
|
|
uint32_t *enc = ptr, eval;
|
|
char name[64];
|
|
struct base_type *base;
|
|
|
|
eval = ctf__get32(self, enc);
|
|
size_t len = ctf__format_flt_attrs(eval, name, sizeof(name));
|
|
snprintf(name + len, sizeof(name) - len, "%s",
|
|
ctf__string32(self, &tp->base.ctf_name));
|
|
|
|
base = base_type__new(name, CTF_TYPE_FP_BITS(eval));
|
|
if (base == NULL)
|
|
return -ENOMEM;
|
|
|
|
base->tag.tag = DW_TAG_base_type;
|
|
cu__add_tag(self->priv, &base->tag, &id);
|
|
|
|
return sizeof(*enc);
|
|
}
|
|
|
|
static int create_new_array(struct ctf *self, void *ptr, long id)
|
|
{
|
|
struct ctf_array *ap = ptr;
|
|
struct array_type *array = tag__alloc(sizeof(*array));
|
|
|
|
if (array == NULL)
|
|
return -ENOMEM;
|
|
|
|
/* FIXME: where to get the number of dimensions?
|
|
* it it flattened? */
|
|
array->dimensions = 1;
|
|
array->nr_entries = malloc(sizeof(uint32_t));
|
|
|
|
if (array->nr_entries == NULL) {
|
|
free(array);
|
|
return -ENOMEM;
|
|
}
|
|
|
|
array->nr_entries[0] = ctf__get32(self, &ap->ctf_array_nelems);
|
|
array->tag.tag = DW_TAG_array_type;
|
|
array->tag.type = ctf__get16(self, &ap->ctf_array_type);
|
|
|
|
cu__add_tag(self->priv, &array->tag, &id);
|
|
|
|
return sizeof(*ap);
|
|
}
|
|
|
|
static int create_new_subroutine_type(struct ctf *self, void *ptr,
|
|
int vlen, struct ctf_full_type *tp,
|
|
long id)
|
|
{
|
|
uint16_t *args = ptr;
|
|
unsigned int type = ctf__get16(self, &tp->base.ctf_type);
|
|
struct ftype *proto = tag__alloc(sizeof(*proto));
|
|
|
|
if (proto == NULL)
|
|
return -ENOMEM;
|
|
|
|
vlen = ctf__load_ftype(self, proto, DW_TAG_subroutine_type,
|
|
type, vlen, args, id);
|
|
return vlen < 0 ? -ENOMEM : vlen;
|
|
}
|
|
|
|
static int create_full_members(struct ctf *self, void *ptr,
|
|
int vlen, struct type *class)
|
|
{
|
|
struct ctf_full_member *mp = ptr;
|
|
int i;
|
|
|
|
for (i = 0; i < vlen; i++) {
|
|
struct class_member *member = zalloc(sizeof(*member));
|
|
|
|
if (member == NULL)
|
|
return -ENOMEM;
|
|
|
|
member->tag.tag = DW_TAG_member;
|
|
member->tag.type = ctf__get16(self, &mp[i].ctf_member_type);
|
|
member->name = strings__add(strings,
|
|
ctf__string32(self,
|
|
&mp[i].ctf_member_name));
|
|
member->bit_offset = (ctf__get32(self, &mp[i].ctf_member_offset_high) << 16) |
|
|
ctf__get32(self, &mp[i].ctf_member_offset_low);
|
|
/* sizes and offsets will be corrected at class__fixup_ctf_bitfields */
|
|
type__add_member(class, member);
|
|
}
|
|
|
|
return sizeof(*mp);
|
|
}
|
|
|
|
static int create_short_members(struct ctf *self, void *ptr,
|
|
int vlen, struct type *class)
|
|
{
|
|
struct ctf_short_member *mp = ptr;
|
|
int i;
|
|
|
|
for (i = 0; i < vlen; i++) {
|
|
struct class_member *member = zalloc(sizeof(*member));
|
|
|
|
if (member == NULL)
|
|
return -ENOMEM;
|
|
|
|
member->tag.tag = DW_TAG_member;
|
|
member->tag.type = ctf__get16(self, &mp[i].ctf_member_type);
|
|
member->name = strings__add(strings,
|
|
ctf__string32(self,
|
|
&mp[i].ctf_member_name));
|
|
member->bit_offset = ctf__get16(self, &mp[i].ctf_member_offset);
|
|
/* sizes and offsets will be corrected at class__fixup_ctf_bitfields */
|
|
|
|
type__add_member(class, member);
|
|
}
|
|
|
|
return sizeof(*mp);
|
|
}
|
|
|
|
static int create_new_class(struct ctf *self, void *ptr,
|
|
int vlen, struct ctf_full_type *tp,
|
|
uint64_t size, long id)
|
|
{
|
|
int member_size;
|
|
const char *name = ctf__string32(self, &tp->base.ctf_name);
|
|
struct class *class = class__new(name, size);
|
|
|
|
if (size >= CTF_SHORT_MEMBER_LIMIT) {
|
|
member_size = create_full_members(self, ptr, vlen, &class->type);
|
|
} else {
|
|
member_size = create_short_members(self, ptr, vlen, &class->type);
|
|
}
|
|
|
|
if (member_size < 0)
|
|
goto out_free;
|
|
|
|
cu__add_tag(self->priv, &class->type.namespace.tag, &id);
|
|
|
|
return (vlen * member_size);
|
|
out_free:
|
|
class__delete(class);
|
|
return -ENOMEM;
|
|
}
|
|
|
|
static int create_new_union(struct ctf *self, void *ptr,
|
|
int vlen, struct ctf_full_type *tp,
|
|
uint64_t size, long id)
|
|
{
|
|
int member_size;
|
|
const char *name = ctf__string32(self, &tp->base.ctf_name);
|
|
struct type *un = type__new(DW_TAG_union_type, name, size);
|
|
|
|
if (size >= CTF_SHORT_MEMBER_LIMIT) {
|
|
member_size = create_full_members(self, ptr, vlen, un);
|
|
} else {
|
|
member_size = create_short_members(self, ptr, vlen, un);
|
|
}
|
|
|
|
if (member_size < 0)
|
|
goto out_free;
|
|
|
|
cu__add_tag(self->priv, &un->namespace.tag, &id);
|
|
|
|
return (vlen * member_size);
|
|
out_free:
|
|
type__delete(un);
|
|
return -ENOMEM;
|
|
}
|
|
|
|
static struct enumerator *enumerator__new(const char *name,
|
|
uint32_t value)
|
|
{
|
|
struct enumerator *self = tag__alloc(sizeof(*self));
|
|
|
|
if (self != NULL) {
|
|
self->name = strings__add(strings, name);
|
|
self->value = value;
|
|
self->tag.tag = DW_TAG_enumerator;
|
|
}
|
|
|
|
return self;
|
|
}
|
|
|
|
static int create_new_enumeration(struct ctf *self, void *ptr,
|
|
int vlen, struct ctf_full_type *tp,
|
|
uint16_t size, long id)
|
|
{
|
|
struct ctf_enum *ep = ptr;
|
|
uint16_t i;
|
|
struct type *enumeration = type__new(DW_TAG_enumeration_type,
|
|
ctf__string32(self,
|
|
&tp->base.ctf_name),
|
|
size ?: (sizeof(int) * 8));
|
|
|
|
if (enumeration == NULL)
|
|
return -ENOMEM;
|
|
|
|
for (i = 0; i < vlen; i++) {
|
|
char *name = ctf__string32(self, &ep[i].ctf_enum_name);
|
|
uint32_t value = ctf__get32(self, &ep[i].ctf_enum_val);
|
|
struct enumerator *enumerator = enumerator__new(name, value);
|
|
|
|
if (enumerator == NULL)
|
|
goto out_free;
|
|
|
|
enumeration__add(enumeration, enumerator);
|
|
}
|
|
|
|
cu__add_tag(self->priv, &enumeration->namespace.tag, &id);
|
|
|
|
return (vlen * sizeof(*ep));
|
|
out_free:
|
|
enumeration__delete(enumeration);
|
|
return -ENOMEM;
|
|
}
|
|
|
|
static int create_new_forward_decl(struct ctf *self, struct ctf_full_type *tp,
|
|
uint64_t size, long id)
|
|
{
|
|
char *name = ctf__string32(self, &tp->base.ctf_name);
|
|
struct class *fwd = class__new(name, size);
|
|
|
|
if (fwd == NULL)
|
|
return -ENOMEM;
|
|
fwd->type.declaration = 1;
|
|
cu__add_tag(self->priv, &fwd->type.namespace.tag, &id);
|
|
return 0;
|
|
}
|
|
|
|
static int create_new_typedef(struct ctf *self, struct ctf_full_type *tp,
|
|
uint64_t size, long id)
|
|
{
|
|
const char *name = ctf__string32(self, &tp->base.ctf_name);
|
|
unsigned int type_id = ctf__get16(self, &tp->base.ctf_type);
|
|
struct type *type = type__new(DW_TAG_typedef, name, size);
|
|
|
|
if (type == NULL)
|
|
return -ENOMEM;
|
|
|
|
type->namespace.tag.type = type_id;
|
|
cu__add_tag(self->priv, &type->namespace.tag, &id);
|
|
|
|
return 0;
|
|
}
|
|
|
|
static int create_new_tag(struct ctf *self, int type,
|
|
struct ctf_full_type *tp, long id)
|
|
{
|
|
unsigned int type_id = ctf__get16(self, &tp->base.ctf_type);
|
|
struct tag *tag = zalloc(sizeof(*tag));
|
|
|
|
if (tag == NULL)
|
|
return -ENOMEM;
|
|
|
|
switch (type) {
|
|
case CTF_TYPE_KIND_CONST: tag->tag = DW_TAG_const_type; break;
|
|
case CTF_TYPE_KIND_PTR: tag->tag = DW_TAG_pointer_type; break;
|
|
case CTF_TYPE_KIND_RESTRICT: tag->tag = DW_TAG_restrict_type; break;
|
|
case CTF_TYPE_KIND_VOLATILE: tag->tag = DW_TAG_volatile_type; break;
|
|
default:
|
|
printf("%s: FOO %d\n\n", __func__, type);
|
|
return 0;
|
|
}
|
|
|
|
tag->type = type_id;
|
|
cu__add_tag(self->priv, tag, &id);
|
|
|
|
return 0;
|
|
}
|
|
|
|
static int ctf__load_types(struct ctf *self)
|
|
{
|
|
void *ctf_buffer = ctf__get_buffer(self);
|
|
struct ctf_header *hp = ctf_buffer;
|
|
void *ctf_contents = ctf_buffer + sizeof(*hp),
|
|
*type_section = (ctf_contents +
|
|
ctf__get32(self, &hp->ctf_type_off)),
|
|
*strings_section = (ctf_contents +
|
|
ctf__get32(self, &hp->ctf_str_off));
|
|
struct ctf_full_type *type_ptr = type_section,
|
|
*end = strings_section;
|
|
unsigned int type_index = 0x0001;
|
|
|
|
if (hp->ctf_parent_name || hp->ctf_parent_label)
|
|
type_index += 0x8000;
|
|
|
|
while (type_ptr < end) {
|
|
uint16_t val = ctf__get16(self, &type_ptr->base.ctf_info);
|
|
uint16_t type = CTF_GET_KIND(val);
|
|
int vlen = CTF_GET_VLEN(val);
|
|
void *ptr = type_ptr;
|
|
uint16_t base_size = ctf__get16(self, &type_ptr->base.ctf_size);
|
|
uint64_t size = base_size;
|
|
|
|
if (base_size == 0xffff) {
|
|
size = ctf__get32(self, &type_ptr->ctf_size_high);
|
|
size <<= 32;
|
|
size |= ctf__get32(self, &type_ptr->ctf_size_low);
|
|
ptr += sizeof(struct ctf_full_type);
|
|
} else
|
|
ptr += sizeof(struct ctf_short_type);
|
|
|
|
if (type == CTF_TYPE_KIND_INT) {
|
|
vlen = create_new_base_type(self, ptr, type_ptr, type_index);
|
|
} else if (type == CTF_TYPE_KIND_FLT) {
|
|
vlen = create_new_base_type_float(self, ptr, type_ptr, type_index);
|
|
} else if (type == CTF_TYPE_KIND_ARR) {
|
|
vlen = create_new_array(self, ptr, type_index);
|
|
} else if (type == CTF_TYPE_KIND_FUNC) {
|
|
vlen = create_new_subroutine_type(self, ptr, vlen, type_ptr, type_index);
|
|
} else if (type == CTF_TYPE_KIND_STR) {
|
|
vlen = create_new_class(self, ptr,
|
|
vlen, type_ptr, size, type_index);
|
|
} else if (type == CTF_TYPE_KIND_UNION) {
|
|
vlen = create_new_union(self, ptr,
|
|
vlen, type_ptr, size, type_index);
|
|
} else if (type == CTF_TYPE_KIND_ENUM) {
|
|
vlen = create_new_enumeration(self, ptr, vlen, type_ptr,
|
|
size, type_index);
|
|
} else if (type == CTF_TYPE_KIND_FWD) {
|
|
vlen = create_new_forward_decl(self, type_ptr, size, type_index);
|
|
} else if (type == CTF_TYPE_KIND_TYPDEF) {
|
|
vlen = create_new_typedef(self, type_ptr, size, type_index);
|
|
} else if (type == CTF_TYPE_KIND_VOLATILE ||
|
|
type == CTF_TYPE_KIND_PTR ||
|
|
type == CTF_TYPE_KIND_CONST ||
|
|
type == CTF_TYPE_KIND_RESTRICT) {
|
|
vlen = create_new_tag(self, type, type_ptr, type_index);
|
|
} else if (type == CTF_TYPE_KIND_UNKN) {
|
|
cu__table_nullify_type_entry(self->priv, type_index);
|
|
fprintf(stderr,
|
|
"CTF: idx: %d, off: %lu, root: %s Unknown\n",
|
|
type_index, ((void *)type_ptr) - type_section,
|
|
CTF_ISROOT(val) ? "yes" : "no");
|
|
vlen = 0;
|
|
} else
|
|
return -EINVAL;
|
|
|
|
if (vlen < 0)
|
|
return vlen;
|
|
|
|
type_ptr = ptr + vlen;
|
|
type_index++;
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
static struct variable *variable__new(uint16_t type, GElf_Sym *sym,
|
|
struct ctf *ctf)
|
|
{
|
|
struct variable *self = tag__alloc(sizeof(*self));
|
|
|
|
if (self != NULL) {
|
|
const char *name = elf_sym__name(sym, ctf->symtab);
|
|
|
|
self->location = LOCATION_GLOBAL;
|
|
self->addr = elf_sym__value(sym);
|
|
/* FIXME: should use the .strtab string */
|
|
self->name = strings__add(strings, name);
|
|
self->external = elf_sym__bind(sym) == STB_GLOBAL;
|
|
self->tag.tag = DW_TAG_variable;
|
|
self->tag.type = type;
|
|
long id = -1; /* FIXME: not needed for variables... */
|
|
cu__add_tag(ctf->priv, &self->tag, &id);
|
|
}
|
|
|
|
return self;
|
|
}
|
|
|
|
static int ctf__load_objects(struct ctf *self)
|
|
{
|
|
struct ctf_header *hp = ctf__get_buffer(self);
|
|
uint16_t *objp = (ctf__get_buffer(self) + sizeof(*hp) +
|
|
ctf__get32(self, &hp->ctf_object_off));
|
|
|
|
GElf_Sym sym;
|
|
uint32_t idx;
|
|
ctf__for_each_symtab_object(self, idx, sym) {
|
|
if (variable__new(*objp, &sym, self) == NULL)
|
|
return -ENOMEM;
|
|
++objp;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
static int ctf__load_sections(struct ctf *self)
|
|
{
|
|
int err = ctf__load_symtab(self);
|
|
|
|
if (err != 0)
|
|
goto out;
|
|
err = ctf__load_funcs(self);
|
|
if (err == 0)
|
|
err = ctf__load_types(self);
|
|
if (err == 0)
|
|
err = ctf__load_objects(self);
|
|
out:
|
|
return err;
|
|
}
|
|
|
|
static int class__fixup_ctf_bitfields(struct tag *self, struct cu *cu)
|
|
{
|
|
struct class_member *pos;
|
|
struct type *type_self = tag__type(self);
|
|
|
|
type__for_each_data_member(type_self, pos) {
|
|
struct tag *type = tag__follow_typedef(&pos->tag, cu);
|
|
|
|
pos->bitfield_offset = 0;
|
|
pos->bitfield_size = 0;
|
|
pos->byte_offset = pos->bit_offset / 8;
|
|
|
|
uint16_t type_bit_size;
|
|
size_t integral_bit_size;
|
|
|
|
switch (type->tag) {
|
|
case DW_TAG_enumeration_type:
|
|
type_bit_size = tag__type(type)->size;
|
|
/* Best we can do to check if this is a packed enum */
|
|
if (is_power_of_2(type_bit_size))
|
|
integral_bit_size = roundup(type_bit_size, 8);
|
|
else
|
|
integral_bit_size = sizeof(int) * 8;
|
|
break;
|
|
case DW_TAG_base_type: {
|
|
struct base_type *bt = tag__base_type(type);
|
|
type_bit_size = bt->bit_size;
|
|
integral_bit_size = base_type__name_to_size(bt, cu);
|
|
}
|
|
break;
|
|
default:
|
|
pos->byte_size = tag__size(type, cu);
|
|
pos->bit_size = pos->byte_size * 8;
|
|
continue;
|
|
}
|
|
|
|
/*
|
|
* XXX: integral_bit_size can be zero if base_type__name_to_size doesn't
|
|
* know about the base_type name, so one has to add there when
|
|
* such base_type isn't found. pahole will put zero on the
|
|
* struct output so it should be easy to spot the name when
|
|
* such unlikely thing happens.
|
|
*/
|
|
pos->byte_size = integral_bit_size / 8;
|
|
|
|
if (integral_bit_size == 0 || type_bit_size == integral_bit_size) {
|
|
if (integral_bit_size == 0)
|
|
fprintf(stderr, "boo!\n");
|
|
pos->bit_size = integral_bit_size;
|
|
continue;
|
|
}
|
|
|
|
pos->bitfield_offset = pos->bit_offset % integral_bit_size;
|
|
pos->bitfield_size = type_bit_size;
|
|
pos->bit_size = type_bit_size;
|
|
pos->byte_offset = (((pos->bit_offset / integral_bit_size) *
|
|
integral_bit_size) / 8);
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
static int cu__fixup_ctf_bitfields(struct cu *self)
|
|
{
|
|
int err = 0;
|
|
struct tag *pos;
|
|
|
|
list_for_each_entry(pos, &self->tags, node)
|
|
if (tag__is_struct(pos) || tag__is_union(pos)) {
|
|
err = class__fixup_ctf_bitfields(pos, self);
|
|
if (err)
|
|
break;
|
|
}
|
|
|
|
return err;
|
|
}
|
|
|
|
int ctf__load_file(struct cus *self, struct conf_load *conf,
|
|
const char *filename)
|
|
{
|
|
int err;
|
|
struct ctf *state = ctf__new(filename, NULL);
|
|
|
|
if (state == NULL)
|
|
return -1;
|
|
|
|
struct cu *cu = cu__new(filename, state->wordsize, NULL, 0, filename);
|
|
if (cu == NULL)
|
|
return -1;
|
|
|
|
state->priv = cu;
|
|
if (ctf__load(state) != 0)
|
|
return -1;
|
|
|
|
err = ctf__load_sections(state);
|
|
|
|
ctf__delete(state);
|
|
|
|
if (err != 0) {
|
|
cu__delete(cu);
|
|
return err;
|
|
}
|
|
|
|
base_type_name_to_size_table__init();
|
|
err = cu__fixup_ctf_bitfields(cu);
|
|
/*
|
|
* The app stole this cu, possibly deleting it,
|
|
* so forget about it
|
|
*/
|
|
if (conf && conf->steal && conf->steal(cu, conf))
|
|
return 0;
|
|
|
|
cus__add(self, cu);
|
|
return err;
|
|
}
|