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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
/* adapted from Eric Youngdale's readelf program */
#include <stdio.h>
#include <string.h>
#include <sys/stat.h>
#include <sys/mman.h>
#include <link.h>
#include <elf.h>
#include <unistd.h>
#include <sys/types.h>
#include "../config.h"
#include "readsoname.h"
void warn(char *fmt, ...);
char *xstrdup(char *);
struct needed_tab
{
char *soname;
int type;
};
struct needed_tab needed_tab[] = {
{ "libc.so.5", LIB_ELF_LIBC5 },
{ "libm.so.5", LIB_ELF_LIBC5 },
{ "libdl.so.1", LIB_ELF_LIBC5 },
{ "libc.so.6", LIB_ELF_LIBC6 },
{ "libm.so.6", LIB_ELF_LIBC6 },
{ "libdl.so.2", LIB_ELF_LIBC6 },
{ NULL, LIB_ELF }
};
char *readsoname(char *name, FILE *infile, int expected_type,
int *type, int elfclass)
{
char *res;
if (elfclass == ELFCLASS32)
res = readsoname32(name, infile, expected_type, type);
else
{
res = readsoname64(name, infile, expected_type, type);
#if 0
*type |= LIB_ELF64;
#endif
}
return res;
}
#undef __ELF_NATIVE_CLASS
#undef readsonameXX
#define readsonameXX readsoname32
#define __ELF_NATIVE_CLASS 32
#include "readsoname2.c"
#undef __ELF_NATIVE_CLASS
#undef readsonameXX
#define readsonameXX readsoname64
#define __ELF_NATIVE_CLASS 64
#include "readsoname2.c"
|