Fix #3431 - Implement support for SMD roms

This commit is contained in:
pancake 2015-10-29 13:55:03 +01:00
parent f78730638f
commit 97233ecbae
8 changed files with 350 additions and 1 deletions

View File

@ -23,7 +23,8 @@ OBJS+=mangling/microsoft_demangle.o
OBJS+=mangling/objc.o mangling/cxx.o mangling/msvc.o
OBJS+=mangling/swift.o mangling/swift-sd.o
OBJS+=mangling/dlang.o
OBJS+=pdb/pdb_downloader.o pdb/omap.o pdb/pe.o pdb/gdata.o pdb/fpo.o pdb/dbi.o pdb/tpi.o pdb/stream_file.o pdb/pdb.o
OBJS+=pdb/pdb_downloader.o pdb/omap.o pdb/pe.o pdb/gdata.o
OBJS+=pdb/fpo.o pdb/dbi.o pdb/tpi.o pdb/stream_file.o pdb/pdb.o
LINK+=$(SHLR)/java/libr_java.a
include $(TOP)/libr/rules.mk

306
libr/bin/p/bin_smd.c Normal file
View File

@ -0,0 +1,306 @@
/* radare - LGPL3 - 2015 - pancake */
#include <r_bin.h>
typedef struct gen_hdr {
ut8 CopyRights[32];
ut8 DomesticName[48];
ut8 OverseasName[48];
ut8 ProductCode[14];
ut16 CheckSum;
ut8 Peripherials[16];
ut32 RomStart;
ut32 RomEnd;
ut32 RamStart;
ut32 RamEnd;
ut8 SramCode[12];
ut8 ModemCode[12];
ut8 Reserved[40];
ut8 CountryCode[16];
} SMD_Header;
typedef struct gen_vect {
union {
struct {
ut32 SSP;
ut32 Reset;
ut32 BusErr;
ut32 AdrErr;
ut32 InvOpCode;
ut32 DivBy0;
ut32 Check;
ut32 TrapV;
ut32 GPF;
ut32 Trace;
ut32 Reserv0;
ut32 Reserv1;
ut32 Reserv2;
ut32 Reserv3;
ut32 Reserv4;
ut32 BadInt;
ut32 Reserv10;
ut32 Reserv11;
ut32 Reserv12;
ut32 Reserv13;
ut32 Reserv14;
ut32 Reserv15;
ut32 Reserv16;
ut32 Reserv17;
ut32 BadIRQ;
ut32 IRQ1;
ut32 EXT;
ut32 IRQ3;
ut32 HBLANK;
ut32 IRQ5;
ut32 VBLANK;
ut32 IRQ7;
ut32 Trap0;
ut32 Trap1;
ut32 Trap2;
ut32 Trap3;
ut32 Trap4;
ut32 Trap5;
ut32 Trap6;
ut32 Trap7;
ut32 Trap8;
ut32 Trap9;
ut32 Trap10;
ut32 Trap11;
ut32 Trap12;
ut32 Trap13;
ut32 Trap14;
ut32 Trap15;
ut32 Reserv30;
ut32 Reserv31;
ut32 Reserv32;
ut32 Reserv33;
ut32 Reserv34;
ut32 Reserv35;
ut32 Reserv36;
ut32 Reserv37;
ut32 Reserv38;
ut32 Reserv39;
ut32 Reserv3A;
ut32 Reserv3B;
ut32 Reserv3C;
ut32 Reserv3D;
ut32 Reserv3E;
ut32 Reserv3F;
};
ut32 vectors[64];
};
} SMD_Vectors;
static int check(RBinFile *arch);
static int check_bytes(const ut8 *buf, ut64 length);
static void * load_bytes(RBinFile *arch, const ut8 *buf, ut64 sz, ut64 loadaddr, Sdb *sdb){
check_bytes (buf, sz);
return R_NOTNULL;
}
static int check(RBinFile *arch) {
const ut8 *bytes = arch ? r_buf_buffer (arch->buf) : NULL;
ut64 sz = arch ? r_buf_size (arch->buf): 0;
return check_bytes (bytes, sz);
}
static int check_bytes(const ut8 *buf, ut64 length) {
if (length > 0x190) {
if (!memcmp (buf+0x100, "SEGA", 4))
return true;
}
return false;
}
static RBinInfo* info(RBinFile *arch) {
RBinInfo *ret = NULL;
if (!(ret = R_NEW0 (RBinInfo)))
return NULL;
ret->file = strdup (arch->file);
ret->type = strdup ("ROM");
ret->machine = strdup ("Sega Megadrive");
ret->bclass = r_str_ndup ((char*)arch->buf->buf + 0x100, 32);
ret->os = strdup ("smd");
ret->arch = strdup ("m68k");
ret->bits = 16;
ret->has_va = 1;
return ret;
}
static void addsym(RList *ret, ut64 addr, const char *name) {
RBinSymbol *ptr = R_NEW0 (RBinSymbol);
if (!ptr) return;
strncpy (ptr->name, name, R_BIN_SIZEOF_STRINGS);
ptr->paddr = ptr->vaddr = addr;
ptr->size = 0;
ptr->ordinal = 0;
r_list_append (ret, ptr);
}
static void showstr(const char *str, const ut8 *s, int len) {
char *msg = r_str_ndup ((const char*)s, len);
eprintf ("%s: %s\n", str, msg);
free (msg);
}
static RList* symbols(RBinFile *arch) {
int i;
const char *name;
ut32 *vtable = (ut32*)arch->buf->buf;
RList *ret = NULL;
if (!(ret = r_list_new()))
return NULL;
ret->free = free;
{
// TODO: store all this stuff in SDB
SMD_Header * hdr = (SMD_Header*)(arch->buf->buf + 0x100);
addsym(ret, hdr->RomStart, "rom_start");
addsym(ret, hdr->RomEnd, "rom_end");
addsym(ret, hdr->RamStart, "ram_start");
addsym(ret, hdr->RamEnd, "ram_start");
showstr ("Copyright", hdr->CopyRights, 32);
showstr ("DomesticName", hdr->DomesticName, 48);
showstr ("OverseasName", hdr->OverseasName, 48);
showstr ("ProductCode", hdr->ProductCode, 14);
eprintf ("Checksum: 0x%04x\n", (ut32)hdr->CheckSum);
showstr ("Peripherials", hdr->Peripherials, 16);
showstr ("SramCode", hdr->CountryCode, 12);
showstr ("ModemCode", hdr->CountryCode, 12);
showstr ("CountryCode", hdr->CountryCode, 16);
}
/* parse vtable */
for (i=0; i<64; i++) {
switch (i) {
case 0: name = "SSP"; break;
case 1: name = "Reset"; break;
case 2: name = "BusErr"; break;
case 3: name = "InvOpCode"; break;
case 4: name = "DivBy0"; break;
case 5: name = "Check"; break;
case 6: name = "TrapV"; break;
case 7: name = "GPF"; break;
case 8: name = "Trace"; break;
case 9: name = "Reserv0"; break;
case 10: name = "Reserv1"; break;
case 11: name = "Reserv2"; break;
case 12: name = "Reserv3"; break;
case 13: name = "Reserv4"; break;
case 14: name = "BadInt"; break;
case 15: name = "Reserv10"; break;
case 16: name = "Reserv11"; break;
case 17: name = "Reserv12"; break;
case 18: name = "Reserv13"; break;
case 19: name = "Reserv14"; break;
case 20: name = "Reserv15"; break;
case 21: name = "Reserv16"; break;
case 22: name = "Reserv17"; break;
case 23: name = "BadIRQ"; break;
case 24: name = "IRQ1"; break;
case 25: name = "EXT"; break;
case 26: name = "IRQ3"; break;
case 27: name = "HBLANK"; break;
case 28: name = "IRQ5"; break;
case 29: name = "VBLANK"; break;
case 30: name = "IRQ7"; break;
case 31: name = "Trap0"; break;
case 32: name = "Trap1"; break;
case 33: name = "Trap2"; break;
case 34: name = "Trap3"; break;
case 35: name = "Trap4"; break;
case 36: name = "Trap5"; break;
case 37: name = "Trap6"; break;
case 38: name = "Trap7"; break;
case 39: name = "Trap8"; break;
case 40: name = "Trap9"; break;
case 41: name = "Trap10"; break;
case 42: name = "Trap11"; break;
case 43: name = "Trap12"; break;
case 44: name = "Trap13"; break;
case 45: name = "Trap14"; break;
case 46: name = "Trap15"; break;
case 47: name = "Reserv30"; break;
case 48: name = "Reserv31"; break;
case 49: name = "Reserv32"; break;
case 50: name = "Reserv33"; break;
case 51: name = "Reserv34"; break;
case 52: name = "Reserv35"; break;
case 53: name = "Reserv36"; break;
case 54: name = "Reserv37"; break;
case 55: name = "Reserv38"; break;
case 56: name = "Reserv39"; break;
case 57: name = "Reserv3A"; break;
case 58: name = "Reserv3B"; break;
case 59: name = "Reserv3C"; break;
case 60: name = "Reserv3D"; break;
case 61: name = "Reserv3E"; break;
case 62: name = "Reserv3F"; break;
default: name = NULL;
}
if (!name) continue;
if (!vtable[i]) continue;
addsym(ret, vtable[i], name);
}
return ret;
}
static RList* sections(RBinFile *arch) {
RList *ret = NULL;
if (!(ret = r_list_new ()))
return NULL;
RBinSection *ptr;
if (!(ptr = R_NEW0 (RBinSection)))
return ret;
strcpy (ptr->name, "vtable");
ptr->paddr = ptr->vaddr = 0;
ptr->size = ptr->vsize = 0x100;
ptr->srwx = R_BIN_SCN_MAP;
r_list_append (ret, ptr);
if (!(ptr = R_NEW0 (RBinSection)))
return ret;
strcpy (ptr->name, "header");
ptr->paddr = ptr->vaddr = 0x100;
ptr->size = ptr->vsize = sizeof (SMD_Header);
ptr->srwx = R_BIN_SCN_MAP;
r_list_append (ret, ptr);
return ret;
}
static RList* entries(RBinFile *arch) { //Should be 3 offsets pointed by NMI, RESET, IRQ after mapping && default = 1st CHR
RList *ret;
ut32 *vtable = (ut32*)arch->buf->buf;
RBinAddr *ptr = NULL;
if (!(ret = r_list_new ()))
return NULL;
if (!(ptr = R_NEW0 (RBinAddr)))
return ret;
ptr->paddr = ptr->vaddr = vtable[1];
r_list_append (ret, ptr);
return ret;
}
struct r_bin_plugin_t r_bin_plugin_smd = {
.name = "smd",
.desc = "SEGA Gesmdis/Megadrive",
.license = "LGPL3",
.load_bytes = &load_bytes,
.check = &check,
.check_bytes = &check_bytes,
.entries = &entries,
.sections = sections,
.symbols = &symbols,
.info = &info,
.minstrlen = 10,
.strfilter = 'U'
};
#ifndef CORELIB
struct r_lib_struct_t radare_plugin = {
.type = R_LIB_TYPE_BIN,
.data = &r_bin_plugin_smd,
.version = R2_VERSION
};
#endif

10
libr/bin/p/smd.mk Normal file
View File

@ -0,0 +1,10 @@
OBJ_SMD=bin_smd.o
STATIC_OBJ+=${OBJ_SMD}
TARGET_SMD=bin_smd.${EXT_SO}
ALL_TARGETS+=${TARGET_SMD}
${TARGET_SMD}: ${OBJ_SMD}
${CC} $(call libname,bin_smd) -shared ${CFLAGS} \
-o ${TARGET_SMD} ${OBJ_SMD} $(LINK) $(LDFLAGS)

View File

@ -175,6 +175,28 @@ static bool string_filter(RCore *core, const char *str) {
}
switch (core->bin->strfilter) {
case 'U': // only uppercase strings
for (i = 0; str[i]; i++) {
char ch = str[i];
if (ch == ' ') continue;
if (ch<'@'|| ch > 'Z') {
/// if (ch<'0' || ch>'9') {
return false;
// }
}
if (ch<0 || !IS_PRINTABLE (ch))
return false;
}
if (str[0] && str[1]) {
for (i = 2; i<6 && str[i]; i++) {
if (str[i] == str[0])
return false;
if (str[i] == str[1])
return false;
}
}
if (str[0] == str[2]) return false; // rm false positives
break;
case 'a': // only alphanumeric - plain ascii
for (i = 0; str[i]; i++) {
char ch = str[i];

View File

@ -426,6 +426,7 @@ static int cb_strfilter(void *user, void *data) {
eprintf ("p file/directory paths\n");
eprintf ("e email-like addresses\n");
eprintf ("u urls\n");
eprintf ("U only uppercase strings\n");
eprintf ("f format-strings\n");
return false;
} else {

View File

@ -462,6 +462,12 @@ R_API int r_core_bin_load(RCore *r, const char *filenameuri, ut64 baddr) {
if (cf && binfile && desc)
binfile->fd = desc->fd;
binfile = r_bin_cur (r->bin);
if (r->bin->cur->curplugin && r->bin->cur->curplugin->strfilter) {
char msg[2];
msg[0] = r->bin->cur->curplugin->strfilter;
msg[1] = 0;
r_config_set (r->config, "bin.strfilter", msg);
}
r_core_bin_set_env (r, binfile);
plugin = r_bin_file_cur_plugin (binfile);
if (plugin && plugin->name && !strncmp (plugin->name, "any", 3)) {

View File

@ -267,6 +267,7 @@ typedef struct r_bin_plugin_t {
char* (*demangle)(const char *str);
/* default value if not specified by user */
int minstrlen;
char strfilter;
void *user;
} RBinPlugin;
@ -549,6 +550,7 @@ extern RBinPlugin r_bin_plugin_art;
extern RBinPlugin r_bin_plugin_dol;
extern RBinPlugin r_bin_plugin_nes;
extern RBinPlugin r_bin_plugin_mbn;
extern RBinPlugin r_bin_plugin_smd;
#ifdef __cplusplus
}

View File

@ -117,6 +117,7 @@ bin.pe
bin.pe64
bin.pebble
bin.rar
bin.smd
bin.te
bin.xbe
bin_xtr.dyldcache