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
62
|
#include "elf_reader.h"
#include "cafe_loader.h"
#include <idaldr.h>
static int idaapi
accept_file(qstring *fileformatname, qstring *processor, linput_t *li, const char * /*filename*/)
{
elf_reader<elf32> elf(li);
if (elf.verifyHeader())
{
if (elf.type() == ELF_FILETYPE_CAFE_RPL
&& elf.machine() == EM_PPC
&& elf.osabi() == ELF_IDENT_OS_CAFE
&& elf.bitsize() == ELFCLASS32
&& elf.endian() == ELFDATA2MSB)
{
*processor = "ppc";
*fileformatname = "WII U RPX/RPL";
return ACCEPT_FIRST | 1;
}
}
return 0;
}
static void idaapi
load_file(linput_t *li, ushort /*neflags*/, const char * /*fileformatname*/)
{
set_processor_type("ppc", SETPROC_LOADER);
inf_set_app_bitness(32);
inf_set_be(true);
inf_set_wide_high_byte_first(true);
elf_reader<elf32> elf(li);
elf.read();
cafe_loader ldr(&elf);
ldr.apply();
if (elf.entry() != 0)
{
inf_set_start_ea(elf.entry());
add_entry(elf.entry(), elf.entry(), "start", true);
auto_make_proc(elf.entry());
}
}
#ifdef _WIN32
__declspec(dllexport)
#endif
loader_t LDSC =
{
IDP_INTERFACE_VERSION,
LDRF_REQ_PROC,
accept_file,
load_file,
nullptr,
nullptr,
nullptr
};
|