summaryrefslogtreecommitdiff
path: root/include/libelfu/types.h
blob: 177bbafbb4e58f1cd43b7527378d6dca6c9749a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#ifndef __LIBELFU_TYPES_H__
#define __LIBELFU_TYPES_H__

#include <sys/queue.h>

#include <elf.h>
#include <gelf.h>


typedef struct ElfuScn {
  GElf_Shdr shdr;

  Elf_Data data;

  struct ElfuScn *linkptr;
  struct ElfuScn *infoptr;

  struct ElfuScn *oldptr;

  CIRCLEQ_ENTRY(ElfuScn) elemChildScn;
  CIRCLEQ_ENTRY(ElfuScn) elem;
} ElfuScn;


typedef struct ElfuPhdr {
  GElf_Phdr phdr;

  CIRCLEQ_HEAD(ChildScnList, ElfuScn) childScnList;
  CIRCLEQ_HEAD(ChildPhdrList, ElfuPhdr) childPhdrList;

  CIRCLEQ_ENTRY(ElfuPhdr) elemChildPhdr;
  CIRCLEQ_ENTRY(ElfuPhdr) elem;
} ElfuPhdr;


typedef struct {
  int elfclass;
  GElf_Ehdr ehdr;

  CIRCLEQ_HEAD(PhdrList, ElfuPhdr) phdrList;
  CIRCLEQ_HEAD(OrphanScnList, ElfuScn) orphanScnList;

  ElfuScn *shstrtab;
} ElfuElf;


#endif