/* radare - LGPL - Copyright 2009-2014 - pancake, nibble, Adam Pridgen */ #include #include #include #include #undef R_API #define R_API static #include "../../shlr/java/class.c" #undef R_API #define R_API #define IFDBG if(0) static Sdb *DB = NULL; static void add_bin_obj_to_sdb(RBinJavaObj *bin); static int add_sdb_bin_obj(const char *key, RBinJavaObj *bin_obj); static int init(void *user) { IFDBG eprintf ("Calling plugin init = %d.\n", DB?1:0); if (!DB) { IFDBG eprintf ("plugin DB beeing initted.\n"); DB = sdb_new ("bin.java", NULL, 0); } else { IFDBG eprintf ("plugin DB already initted.\n"); } return 0; } static int add_sdb_bin_obj(const char *key, RBinJavaObj *bin_obj) { int result = R_FALSE; char *addr, value[1024] = {0}; addr = sdb_itoa ((ut64)(size_t)bin_obj, value, 16); if (key && bin_obj && DB) { IFDBG eprintf ("Adding %s:%s to the bin_objs db\n", key, addr); sdb_set (DB, key, addr, 0); result = R_TRUE; } return result; } static void add_bin_obj_to_sdb(RBinJavaObj *bin) { char * jvcname = NULL; if (bin) { jvcname = r_bin_java_build_obj_key (bin); add_sdb_bin_obj (jvcname, bin); free (jvcname); } } static int load(RBinFile *arch) { struct r_bin_java_obj_t* bin_obj = NULL; int result = R_FALSE; bin_obj = r_bin_java_new_buf (arch->buf, arch->o->loadaddr, arch->o->kv); if (bin_obj) { if (arch->o->kv == NULL) arch->o->kv = bin_obj->kv; arch->o->bin_obj = bin_obj; bin_obj->AllJavaBinObjs = DB; // XXX - /\ this is a hack, but (one way but) necessary to get access to // the object addrs from anal. If only global variables are used, // they get "lost" somehow after they are initialized and go out of // scope. // // There are several points of indirection, but here is the gist: // 1) RAnal->(through RBinBind) RBin->RBinJavaObj->DB // // The purpose is to ensure that information about a give class file // can be grabbed at any time from RAnal. This was tried with global // variables, but failed when attempting to access the DB // in the class.c scope. Once DB was moved here, it is initialized // once here and assigned to each of the other RBinJavaObjs. // // Now, the RAnal component of radare can get to each of the // RBinJavaObjs for analysing functions and dependencies using an Sdb. add_bin_obj_to_sdb (bin_obj); if (arch->file) bin_obj->file = strdup (arch->file); result = R_TRUE; } return result; } static int destroy(RBinFile *arch) { r_bin_java_free ((struct r_bin_java_obj_t*)arch->o->bin_obj); sdb_free (DB); DB = NULL; return R_TRUE; } static RList* entries(RBinFile *arch) { return r_bin_java_get_entrypoints (arch->o->bin_obj); } static ut64 baddr(RBinFile *arch) { return 0; } static RList* classes(RBinFile *arch) { return r_bin_java_get_classes((struct r_bin_java_obj_t*)arch->o->bin_obj); } static RList* symbols(RBinFile *arch) { return r_bin_java_get_symbols ((struct r_bin_java_obj_t*)arch->o->bin_obj); } static RList* strings(RBinFile *arch) { return r_bin_java_get_strings((struct r_bin_java_obj_t*)arch->o->bin_obj); } static RBinInfo* info(RBinFile *arch) { RBinInfo *ret = NULL; char *version; if (!(ret = R_NEW (RBinInfo))) return NULL; memset (ret, '\0', sizeof (RBinInfo)); ret->lang = "java"; strncpy (ret->file, arch->file, R_BIN_SIZEOF_STRINGS-1); strncpy (ret->rpath, "NONE", R_BIN_SIZEOF_STRINGS-1); strncpy (ret->type, "JAVA CLASS", R_BIN_SIZEOF_STRINGS-1); version = r_bin_java_get_version (arch->o->bin_obj); strncpy (ret->bclass, version, R_BIN_SIZEOF_STRINGS-1); free (version); ret->has_va = 0; strncpy (ret->rclass, "class", R_BIN_SIZEOF_STRINGS-1); strncpy (ret->os, "any", R_BIN_SIZEOF_STRINGS-1); strncpy (ret->subsystem, "any", R_BIN_SIZEOF_STRINGS-1); strncpy (ret->machine, "Java VM", R_BIN_SIZEOF_STRINGS-1); strncpy (ret->arch, "java", R_BIN_SIZEOF_STRINGS-1); ret->bits = 32; ret->big_endian = 0; ret->dbg_info = 4 | 8; /* LineNums | Syms */ return ret; } static int check(RBinFile *arch) { int off, ret = R_FALSE; int version = 0; if (arch && arch->buf && arch->buf->buf && arch->buf->length>10) if (!memcmp (arch->buf->buf, "\xca\xfe\xba\xbe", 4)) { memcpy (&off, arch->buf->buf+4*sizeof(int), sizeof(int)); version = arch->buf->buf[6] | (arch->buf->buf[7] <<8); if (version <1024) // IT's A MACH0! return R_FALSE; r_mem_copyendian ((ut8*)&off, (ut8*)&off, sizeof(int), !LIL_ENDIAN); //eprintf ("VERSION = %d\n", version); // TODO: FIND __TEXT ret = R_TRUE; } return ret; } static int retdemangle(const char *str) { return R_BIN_NM_JAVA; } static RBinAddr* binsym(RBinFile *arch, int sym) { return r_bin_java_get_entrypoint(arch->o->bin_obj, sym); } static RList* lines(RBinFile *arch) { int i; char *file = arch->file ? strdup (arch->file) : strdup (""); RList *list = r_list_newf (free); RBinJavaObj *b = arch->o->bin_obj; file = r_str_replace (file, ".class", ".java", 0); /*for (i=0; ilines.count; i++) { RBinDwarfRow *row = R_NEW0(RBinDwarfRow); r_bin_dwarf_line_new (row, b->lines.addr[i], file, b->lines.line[i]); r_list_append (list, row); }*/ free (file); return list; } static RList* sections(RBinFile *arch) { return r_bin_java_get_sections (arch->o->bin_obj); } static RList* imports(RBinFile *arch) { return r_bin_java_get_imports (arch->o->bin_obj); } static RList* fields(RBinFile *arch) { return r_bin_java_get_fields (arch->o->bin_obj); } static RList* libs(RBinFile *arch) { return r_bin_java_get_lib_names (arch->o->bin_obj); } RBinPlugin r_bin_plugin_java = { .name = "java", .desc = "java bin plugin", .license = "LGPL3", .init = init, .fini = NULL, .load = &load, .destroy = &destroy, .check = &check, .baddr = &baddr, .boffset = NULL, .binsym = binsym, .entries = &entries, .sections = sections, .symbols = symbols, .imports = &imports, .strings = &strings, .info = &info, .fields = NULL, //fields, .libs = libs, .relocs = NULL, .dbginfo = NULL, .lines = &lines, .write = NULL, .classes = classes, .demangle_type = retdemangle, .minstrlen = 3, .user = NULL }; #ifndef CORELIB struct r_lib_struct_t radare_plugin = { .type = R_LIB_TYPE_BIN, .data = &r_bin_plugin_java }; #endif