blob: eaf5aae03527db64176a7788d5115a67c41086a5 (
plain) (
blame)
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
|
#include <string.h>
#include <elf.h>
#define LDSO_ARCH "i386"
static int remap_rel(int type)
{
switch(type) {
case R_386_32:
return REL_SYMBOLIC;
case R_386_PC32:
return REL_OFFSET;
case R_386_GLOB_DAT:
return REL_GOT;
case R_386_JMP_SLOT:
return REL_PLT;
case R_386_RELATIVE:
return REL_RELATIVE;
case R_386_COPY:
return REL_COPY;
case R_386_TLS_DTPMOD32:
return REL_DTPMOD;
case R_386_TLS_DTPOFF32:
return REL_DTPOFF;
case R_386_TLS_TPOFF:
return REL_TPOFF;
case R_386_TLS_TPOFF32:
return REL_TPOFF_NEG;
case R_386_TLS_DESC:
return REL_TLSDESC;
}
return 0;
}
|