2015-04-16 15:49:17 +00:00
|
|
|
/* radare - LGPL - Copyright 2011-2015 - pancake */
|
2012-08-02 00:44:46 +00:00
|
|
|
|
2011-07-26 23:16:18 +00:00
|
|
|
#include <r_egg.h>
|
2011-11-13 03:08:08 +00:00
|
|
|
#include "../config.h"
|
2011-07-26 23:16:18 +00:00
|
|
|
|
2013-06-15 00:56:25 +00:00
|
|
|
R_LIB_VERSION (r_egg);
|
|
|
|
|
2011-11-13 03:08:08 +00:00
|
|
|
// TODO: must be plugins
|
2011-07-26 23:16:18 +00:00
|
|
|
extern REggEmit emit_x86;
|
|
|
|
extern REggEmit emit_x64;
|
|
|
|
extern REggEmit emit_arm;
|
2011-09-19 00:39:33 +00:00
|
|
|
extern REggEmit emit_trace;
|
2011-07-26 23:16:18 +00:00
|
|
|
|
2014-05-03 12:21:03 +00:00
|
|
|
static REggPlugin *egg_static_plugins[] =
|
2011-11-13 03:08:08 +00:00
|
|
|
{ R_EGG_STATIC_PLUGINS };
|
|
|
|
|
2011-07-26 23:16:18 +00:00
|
|
|
R_API REgg *r_egg_new () {
|
2011-11-13 03:08:08 +00:00
|
|
|
int i;
|
2011-07-26 23:16:18 +00:00
|
|
|
REgg *egg = R_NEW0 (REgg);
|
|
|
|
egg->src = r_buf_new ();
|
|
|
|
egg->buf = r_buf_new ();
|
|
|
|
egg->bin = r_buf_new ();
|
2014-03-24 23:34:23 +00:00
|
|
|
egg->remit = &emit_x86;
|
2011-08-07 22:46:04 +00:00
|
|
|
egg->syscall = r_syscall_new ();
|
2011-07-26 23:16:18 +00:00
|
|
|
egg->rasm = r_asm_new ();
|
|
|
|
egg->bits = 0;
|
|
|
|
egg->endian = 0;
|
2014-03-07 00:26:11 +00:00
|
|
|
egg->db = sdb_new (NULL, NULL, 0);
|
2011-11-30 09:27:01 +00:00
|
|
|
egg->patches = r_list_new ();
|
|
|
|
egg->patches->free = (RListFree)r_buf_free;
|
2011-11-13 03:08:08 +00:00
|
|
|
egg->plugins = r_list_new ();
|
|
|
|
for (i=0; egg_static_plugins[i]; i++) {
|
|
|
|
REggPlugin *static_plugin = R_NEW (REggPlugin);
|
|
|
|
memcpy (static_plugin, egg_static_plugins[i], sizeof (REggPlugin));
|
|
|
|
r_egg_add (egg, static_plugin);
|
|
|
|
}
|
2011-07-26 23:16:18 +00:00
|
|
|
return egg;
|
|
|
|
}
|
|
|
|
|
2011-11-13 03:08:08 +00:00
|
|
|
R_API int r_egg_add (REgg *a, REggPlugin *foo) {
|
|
|
|
RListIter *iter;
|
|
|
|
RAsmPlugin *h;
|
|
|
|
// TODO: cache foo->name length and use memcmp instead of strcmp
|
|
|
|
if (!foo->name)
|
2015-09-14 00:08:31 +00:00
|
|
|
return false;
|
2011-11-13 03:08:08 +00:00
|
|
|
//if (foo->init)
|
|
|
|
// foo->init (a->user);
|
|
|
|
r_list_foreach (a->plugins, iter, h)
|
|
|
|
if (!strcmp (h->name, foo->name))
|
2015-09-14 00:08:31 +00:00
|
|
|
return false;
|
2011-11-13 03:08:08 +00:00
|
|
|
r_list_append (a->plugins, foo);
|
2015-09-14 00:08:31 +00:00
|
|
|
return true;
|
2011-11-13 03:08:08 +00:00
|
|
|
}
|
|
|
|
|
2011-07-26 23:16:18 +00:00
|
|
|
R_API char *r_egg_to_string (REgg *egg) {
|
|
|
|
return strdup ((const char *)egg->buf->buf);
|
|
|
|
}
|
|
|
|
|
|
|
|
R_API void r_egg_free (REgg *egg) {
|
2011-12-16 15:33:06 +00:00
|
|
|
if (!egg) return;
|
2011-08-08 00:07:26 +00:00
|
|
|
r_buf_free (egg->src);
|
|
|
|
r_buf_free (egg->buf);
|
|
|
|
r_buf_free (egg->bin);
|
2011-12-16 15:33:06 +00:00
|
|
|
r_list_free(egg->list);
|
2011-08-08 00:07:26 +00:00
|
|
|
r_asm_free (egg->rasm);
|
|
|
|
r_syscall_free (egg->syscall);
|
2014-03-07 00:26:11 +00:00
|
|
|
sdb_free (egg->db);
|
2011-12-16 15:33:06 +00:00
|
|
|
r_list_free (egg->plugins);
|
2011-11-30 09:27:01 +00:00
|
|
|
r_list_free (egg->patches);
|
2011-07-26 23:16:18 +00:00
|
|
|
free (egg);
|
|
|
|
}
|
|
|
|
|
|
|
|
R_API void r_egg_reset (REgg *egg) {
|
2011-09-19 23:53:15 +00:00
|
|
|
r_egg_lang_include_init (egg);
|
2011-11-30 09:27:01 +00:00
|
|
|
// TODO: use r_list_purge instead of free/new here
|
2011-09-19 23:53:15 +00:00
|
|
|
r_buf_free (egg->src);
|
|
|
|
r_buf_free (egg->buf);
|
2011-11-14 09:10:55 +00:00
|
|
|
r_buf_free (egg->bin);
|
2011-09-19 23:53:15 +00:00
|
|
|
egg->src = r_buf_new ();
|
|
|
|
egg->buf = r_buf_new ();
|
2011-11-14 09:10:55 +00:00
|
|
|
egg->bin = r_buf_new ();
|
2011-11-30 09:27:01 +00:00
|
|
|
r_list_purge (egg->patches);
|
2011-07-26 23:16:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
R_API int r_egg_setup(REgg *egg, const char *arch, int bits, int endian, const char *os) {
|
2014-03-24 23:34:23 +00:00
|
|
|
egg->remit = NULL;
|
2011-12-01 02:28:12 +00:00
|
|
|
|
2011-08-09 00:03:12 +00:00
|
|
|
egg->os = os? r_str_hash (os): R_EGG_OS_DEFAULT;
|
2011-12-01 02:28:12 +00:00
|
|
|
//eprintf ("%s -> %x (linux=%x) (darwin=%x)\n", os, egg->os, R_EGG_OS_LINUX, R_EGG_OS_DARWIN);
|
2011-11-15 13:30:52 +00:00
|
|
|
// TODO: setup egg->arch for all archs
|
2011-07-26 23:16:18 +00:00
|
|
|
if (!strcmp (arch, "x86")) {
|
2011-11-15 13:30:52 +00:00
|
|
|
egg->arch = R_SYS_ARCH_X86;
|
2011-07-26 23:16:18 +00:00
|
|
|
switch (bits) {
|
|
|
|
case 32:
|
2011-09-04 01:56:35 +00:00
|
|
|
r_syscall_setup (egg->syscall, arch, os, bits);
|
2014-03-24 23:34:23 +00:00
|
|
|
egg->remit = &emit_x86;
|
2011-07-26 23:16:18 +00:00
|
|
|
egg->bits = bits;
|
|
|
|
break;
|
|
|
|
case 64:
|
2011-09-04 01:56:35 +00:00
|
|
|
r_syscall_setup (egg->syscall, arch, os, bits);
|
2014-03-24 23:34:23 +00:00
|
|
|
egg->remit = &emit_x64;
|
2011-07-26 23:16:18 +00:00
|
|
|
egg->bits = bits;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
} else
|
|
|
|
if (!strcmp (arch, "arm")) {
|
2011-11-15 13:30:52 +00:00
|
|
|
egg->arch = R_SYS_ARCH_ARM;
|
2011-07-26 23:16:18 +00:00
|
|
|
switch (bits) {
|
|
|
|
case 16:
|
|
|
|
case 32:
|
2011-09-04 01:56:35 +00:00
|
|
|
r_syscall_setup (egg->syscall, arch, os, bits);
|
2014-03-24 23:34:23 +00:00
|
|
|
egg->remit = &emit_arm;
|
2011-07-26 23:16:18 +00:00
|
|
|
egg->bits = bits;
|
|
|
|
egg->endian = endian;
|
|
|
|
break;
|
|
|
|
}
|
2011-09-19 00:39:33 +00:00
|
|
|
} else
|
|
|
|
if (!strcmp (arch, "trace")) {
|
|
|
|
//r_syscall_setup (egg->syscall, arch, os, bits);
|
2014-03-24 23:34:23 +00:00
|
|
|
egg->remit = &emit_trace;
|
2011-09-19 00:39:33 +00:00
|
|
|
egg->bits = bits;
|
|
|
|
egg->endian = endian;
|
|
|
|
}
|
|
|
|
return 0;
|
2011-07-26 23:16:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
R_API int r_egg_include(REgg *egg, const char *file, int format) {
|
2011-11-12 05:16:00 +00:00
|
|
|
int sz;
|
|
|
|
const ut8 *foo = (const ut8*)r_file_slurp (file, &sz);
|
2011-07-26 23:16:18 +00:00
|
|
|
if (!foo)
|
|
|
|
return 0;
|
2011-11-12 05:16:00 +00:00
|
|
|
// XXX: format breaks compiler layers
|
2011-07-26 23:16:18 +00:00
|
|
|
switch (format) {
|
|
|
|
case 'r': // raw
|
2011-11-12 05:16:00 +00:00
|
|
|
r_egg_raw (egg, foo, sz);
|
2011-07-26 23:16:18 +00:00
|
|
|
break;
|
|
|
|
case 'a': // assembly
|
2011-11-12 05:16:00 +00:00
|
|
|
r_buf_append_bytes (egg->buf, foo, sz);
|
2011-07-26 23:16:18 +00:00
|
|
|
break;
|
|
|
|
default:
|
2011-11-12 05:16:00 +00:00
|
|
|
r_buf_append_bytes (egg->src, foo, sz);
|
2011-07-26 23:16:18 +00:00
|
|
|
}
|
2011-11-12 05:16:00 +00:00
|
|
|
free ((void *)foo);
|
2011-07-26 23:16:18 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
R_API void r_egg_load(REgg *egg, const char *code, int format) {
|
|
|
|
switch (format) {
|
|
|
|
case 'a': // assembly
|
|
|
|
r_buf_append_bytes (egg->buf, (const ut8*)code, strlen (code));
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
r_buf_append_bytes (egg->src, (const ut8*)code, strlen (code));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
R_API void r_egg_syscall(REgg *egg, const char *arg, ...) {
|
2011-08-07 22:46:04 +00:00
|
|
|
RSyscallItem *item = r_syscall_get (egg->syscall,
|
|
|
|
r_syscall_get_num (egg->syscall, arg), -1);
|
|
|
|
if (!strcmp (arg, "close")) {
|
2014-03-24 23:34:23 +00:00
|
|
|
//egg->remit->syscall_args ();
|
2011-08-07 22:46:04 +00:00
|
|
|
}
|
2015-04-19 01:27:16 +00:00
|
|
|
if (!item)
|
|
|
|
return;
|
2014-03-24 23:34:23 +00:00
|
|
|
egg->remit->syscall (egg, item->num);
|
2011-07-26 23:16:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
R_API void r_egg_alloc(REgg *egg, int n) {
|
|
|
|
// add esp, n
|
|
|
|
}
|
|
|
|
|
2011-07-26 23:29:22 +00:00
|
|
|
R_API void r_egg_label(REgg *egg, const char *name) {
|
|
|
|
r_egg_printf (egg, "%s:\n", name);
|
2011-07-26 23:16:18 +00:00
|
|
|
}
|
|
|
|
|
2011-07-27 08:30:23 +00:00
|
|
|
R_API void r_egg_math (REgg *egg) {//, char eq, const char *vs, char type, const char *sr
|
|
|
|
// TODO
|
|
|
|
//e->mathop (egg, op, type, eq, p);
|
|
|
|
}
|
|
|
|
|
2011-11-12 05:16:00 +00:00
|
|
|
R_API int r_egg_raw(REgg *egg, const ut8 *b, int len) {
|
|
|
|
char *out;
|
2015-05-09 10:03:46 +00:00
|
|
|
int outlen = len*2; // two hexadecimal digits per byte
|
|
|
|
out = malloc (outlen+1);
|
2015-09-14 00:08:31 +00:00
|
|
|
if (!out) return false;
|
2011-11-12 05:16:00 +00:00
|
|
|
r_hex_bin2str (b, len, out);
|
2011-11-13 03:08:08 +00:00
|
|
|
r_buf_append_bytes (egg->buf, (const ut8*)".hex ", 5);
|
2011-11-12 05:16:00 +00:00
|
|
|
r_buf_append_bytes (egg->buf, (const ut8*)out, outlen);
|
2011-11-13 03:08:08 +00:00
|
|
|
r_buf_append_bytes (egg->buf, (const ut8*)"\n", 1);
|
2014-05-03 12:21:03 +00:00
|
|
|
free (out);
|
2015-09-14 00:08:31 +00:00
|
|
|
return true;
|
2011-07-26 23:16:18 +00:00
|
|
|
}
|
|
|
|
|
2015-05-09 10:32:31 +00:00
|
|
|
static int r_egg_raw_prepend(REgg *egg, const ut8 *b, int len) {
|
|
|
|
char *out;
|
|
|
|
int outlen = len*2; // two hexadecimal digits per byte
|
|
|
|
out = malloc (outlen+1);
|
2015-09-14 00:08:31 +00:00
|
|
|
if (!out) return false;
|
2015-05-09 10:32:31 +00:00
|
|
|
r_hex_bin2str (b, len, out);
|
|
|
|
r_buf_prepend_bytes (egg->buf, (const ut8*)"\n", 1);
|
|
|
|
r_buf_prepend_bytes (egg->buf, (const ut8*)out, outlen);
|
|
|
|
r_buf_prepend_bytes (egg->buf, (const ut8*)".hex ", 5);
|
|
|
|
free (out);
|
2015-09-14 00:08:31 +00:00
|
|
|
return true;
|
2015-05-09 10:32:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int r_egg_prepend_bytes(REgg *egg, const ut8 *b, int len) {
|
|
|
|
if (!r_egg_raw_prepend(egg, b, len))
|
2015-09-14 00:08:31 +00:00
|
|
|
return false;
|
2015-05-09 10:32:31 +00:00
|
|
|
|
|
|
|
if (!r_buf_prepend_bytes (egg->bin, b, len))
|
2015-09-14 00:08:31 +00:00
|
|
|
return false;
|
2015-05-09 10:32:31 +00:00
|
|
|
|
2015-09-14 00:08:31 +00:00
|
|
|
return true;
|
2015-05-09 10:32:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int r_egg_append_bytes(REgg *egg, const ut8 *b, int len) {
|
|
|
|
if (!r_egg_raw(egg, b, len))
|
2015-09-14 00:08:31 +00:00
|
|
|
return false;
|
2015-05-09 10:32:31 +00:00
|
|
|
|
|
|
|
if (!r_buf_append_bytes (egg->bin, b, len))
|
2015-09-14 00:08:31 +00:00
|
|
|
return false;
|
2015-05-09 10:32:31 +00:00
|
|
|
|
2015-09-14 00:08:31 +00:00
|
|
|
return true;
|
2015-05-09 10:32:31 +00:00
|
|
|
}
|
|
|
|
|
2011-08-07 01:53:41 +00:00
|
|
|
// r_egg_block (egg, FRAME | IF | ELSE | ENDIF | FOR | WHILE, sz)
|
2011-07-26 23:16:18 +00:00
|
|
|
R_API void r_egg_if(REgg *egg, const char *reg, char cmp, int v) {
|
2011-08-07 01:53:41 +00:00
|
|
|
// egg->depth++;
|
2011-07-26 23:16:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
R_API void r_egg_printf(REgg *egg, const char *fmt, ...) {
|
|
|
|
va_list ap;
|
|
|
|
int len;
|
|
|
|
char buf[1024];
|
|
|
|
va_start (ap, fmt);
|
|
|
|
len = vsnprintf (buf, sizeof (buf), fmt, ap);
|
|
|
|
r_buf_append_bytes (egg->buf, (const ut8*)buf, len);
|
|
|
|
va_end (ap);
|
|
|
|
}
|
|
|
|
|
2011-08-08 00:07:26 +00:00
|
|
|
R_API int r_egg_assemble(REgg *egg) {
|
2014-01-15 00:56:28 +00:00
|
|
|
RAsmCode *asmcode = NULL;
|
|
|
|
char *code = NULL;
|
2015-09-14 00:08:31 +00:00
|
|
|
int ret = false;
|
2014-03-24 23:34:23 +00:00
|
|
|
if (egg->remit == &emit_x86 || egg->remit == &emit_x64) {
|
2011-08-07 01:53:41 +00:00
|
|
|
r_asm_use (egg->rasm, "x86.nz");
|
2011-07-26 23:16:18 +00:00
|
|
|
r_asm_set_bits (egg->rasm, egg->bits);
|
|
|
|
r_asm_set_big_endian (egg->rasm, 0);
|
|
|
|
r_asm_set_syntax (egg->rasm, R_ASM_SYNTAX_INTEL);
|
|
|
|
|
|
|
|
code = r_buf_to_string (egg->buf);
|
|
|
|
asmcode = r_asm_massemble (egg->rasm, code);
|
2011-11-13 03:08:08 +00:00
|
|
|
if (asmcode) {
|
2014-05-03 12:21:03 +00:00
|
|
|
if (asmcode->len > 0)
|
2011-11-13 03:08:08 +00:00
|
|
|
r_buf_append_bytes (egg->bin, asmcode->buf, asmcode->len);
|
2011-07-26 23:16:18 +00:00
|
|
|
// LEAK r_asm_code_free (asmcode);
|
2011-08-07 01:53:41 +00:00
|
|
|
} else eprintf ("fail assembling\n");
|
2011-07-26 23:16:18 +00:00
|
|
|
} else
|
2014-03-24 23:34:23 +00:00
|
|
|
if (egg->remit == &emit_arm) {
|
2011-07-26 23:16:18 +00:00
|
|
|
r_asm_use (egg->rasm, "arm");
|
|
|
|
r_asm_set_bits (egg->rasm, egg->bits);
|
|
|
|
r_asm_set_big_endian (egg->rasm, egg->endian); // XXX
|
|
|
|
r_asm_set_syntax (egg->rasm, R_ASM_SYNTAX_INTEL);
|
|
|
|
|
|
|
|
code = r_buf_to_string (egg->buf);
|
|
|
|
asmcode = r_asm_massemble (egg->rasm, code);
|
2011-07-26 23:29:22 +00:00
|
|
|
if (asmcode) {
|
|
|
|
r_buf_append_bytes (egg->bin, asmcode->buf, asmcode->len);
|
|
|
|
// LEAK r_asm_code_free (asmcode);
|
|
|
|
}
|
2011-07-26 23:16:18 +00:00
|
|
|
}
|
2014-01-15 00:56:28 +00:00
|
|
|
free (code);
|
|
|
|
ret = (asmcode != NULL);
|
|
|
|
r_asm_code_free (asmcode);
|
|
|
|
return ret;
|
2011-07-26 23:16:18 +00:00
|
|
|
}
|
|
|
|
|
2011-08-08 00:07:26 +00:00
|
|
|
R_API int r_egg_compile(REgg *egg) {
|
|
|
|
const char *b = (const char *)egg->src->buf;
|
2014-03-28 14:57:50 +00:00
|
|
|
if (!b || !egg->remit) {
|
2015-09-14 00:08:31 +00:00
|
|
|
return true;
|
2014-03-28 14:57:50 +00:00
|
|
|
}
|
2011-11-13 03:08:08 +00:00
|
|
|
// only emit begin if code is found
|
2013-09-13 22:51:42 +00:00
|
|
|
#if 0
|
2011-11-13 03:08:08 +00:00
|
|
|
if (*b)
|
2014-03-24 23:34:23 +00:00
|
|
|
if (egg->remit) {
|
|
|
|
if (egg->remit->init)
|
|
|
|
egg->remit->init (egg);
|
2011-11-13 03:08:08 +00:00
|
|
|
}
|
2013-09-13 22:51:42 +00:00
|
|
|
#endif
|
2015-04-16 15:49:17 +00:00
|
|
|
if (b && *b) {
|
|
|
|
for (; b[0]; b++) {
|
|
|
|
r_egg_lang_parsechar (egg, *b);
|
|
|
|
// XXX: some parse fail errors are false positives :(
|
|
|
|
}
|
2011-08-09 00:03:12 +00:00
|
|
|
}
|
2013-10-23 22:51:26 +00:00
|
|
|
if (egg->context>0) {
|
|
|
|
eprintf ("ERROR: expected '}' at the end of the file. %d left\n", egg->context);
|
2015-09-14 00:08:31 +00:00
|
|
|
return false;
|
2013-10-23 22:51:26 +00:00
|
|
|
}
|
2011-08-08 00:07:26 +00:00
|
|
|
// TODO: handle errors here
|
2015-09-14 00:08:31 +00:00
|
|
|
return true;
|
2011-08-08 00:07:26 +00:00
|
|
|
}
|
|
|
|
|
2011-07-26 23:16:18 +00:00
|
|
|
R_API RBuffer *r_egg_get_bin(REgg *egg) {
|
|
|
|
// TODO increment reference
|
|
|
|
return egg->bin;
|
|
|
|
}
|
|
|
|
|
|
|
|
//R_API int r_egg_dump (REgg *egg, const char *file) { }
|
|
|
|
|
|
|
|
R_API char *r_egg_get_source(REgg *egg) {
|
|
|
|
return r_buf_to_string (egg->src);
|
|
|
|
}
|
|
|
|
|
|
|
|
R_API char *r_egg_get_assembly(REgg *egg) {
|
|
|
|
return r_buf_to_string (egg->buf);
|
|
|
|
}
|
2011-07-27 08:30:23 +00:00
|
|
|
|
|
|
|
R_API void r_egg_append(REgg *egg, const char *src) {
|
|
|
|
r_buf_append_bytes (egg->src, (const ut8*)src, strlen (src));
|
|
|
|
}
|
2011-09-18 16:56:11 +00:00
|
|
|
|
2011-09-21 17:51:09 +00:00
|
|
|
/* JIT : TODO: accept arguments here */
|
2011-09-18 16:56:11 +00:00
|
|
|
R_API int r_egg_run(REgg *egg) {
|
2011-11-15 23:44:18 +00:00
|
|
|
return r_sys_run (egg->bin->buf, egg->bin->length);
|
2011-09-18 16:56:11 +00:00
|
|
|
}
|
2011-11-12 05:16:00 +00:00
|
|
|
|
2011-11-13 03:08:08 +00:00
|
|
|
#define R_EGG_FILL_TYPE_TRAP
|
|
|
|
#define R_EGG_FILL_TYPE_NOP
|
|
|
|
#define R_EGG_FILL_TYPE_CHAR
|
|
|
|
#define R_EGG_FILL_TYPE_SEQ
|
|
|
|
#define R_EGG_FILL_TYPE_SEQ
|
|
|
|
|
2011-11-13 04:26:07 +00:00
|
|
|
static inline char *eon(char *n) {
|
|
|
|
while (*n && (*n>='0' && *n<='9')) n++;
|
|
|
|
return n;
|
|
|
|
}
|
|
|
|
|
2015-04-08 21:39:14 +00:00
|
|
|
/* padding looks like:
|
|
|
|
([snatSNAT][0-9]+)*
|
|
|
|
*/
|
2011-11-13 04:26:07 +00:00
|
|
|
R_API int r_egg_padding (REgg *egg, const char *pad) {
|
2015-04-08 21:39:14 +00:00
|
|
|
int number;
|
|
|
|
ut8* buf, padding_byte;
|
|
|
|
char *p, *o = strdup (pad);
|
|
|
|
|
|
|
|
for (p=o; *p; ) { // parse pad string
|
|
|
|
const char f = *p++;
|
|
|
|
number = strtol(p, NULL, 10);
|
|
|
|
|
|
|
|
if (number<1) {
|
|
|
|
eprintf ("Invalid padding length at %d\n", number);
|
2011-11-13 04:26:07 +00:00
|
|
|
free (o);
|
2015-09-14 00:08:31 +00:00
|
|
|
return false;
|
2011-11-13 04:26:07 +00:00
|
|
|
}
|
2015-04-08 21:39:14 +00:00
|
|
|
p = eon(p);
|
|
|
|
|
2011-11-13 04:26:07 +00:00
|
|
|
switch (f) {
|
2015-04-08 21:39:14 +00:00
|
|
|
case 's': case 'S': padding_byte = 0; break;
|
|
|
|
case 'n': case 'N': padding_byte = 0x90; break;
|
|
|
|
case 'a': case 'A': padding_byte = 'A'; break;
|
|
|
|
case 't': case 'T': padding_byte = 0xcc; break;
|
2011-11-13 04:26:07 +00:00
|
|
|
default:
|
|
|
|
eprintf ("Invalid padding format (%c)\n", *p);
|
2015-04-08 21:39:14 +00:00
|
|
|
eprintf ("Valid ones are:\n");
|
|
|
|
eprintf (" s S : NULL byte");
|
|
|
|
eprintf (" n N : nop");
|
|
|
|
eprintf (" a A : 0x41");
|
|
|
|
eprintf (" t T : trap (0xcc)");
|
2011-11-13 04:26:07 +00:00
|
|
|
free (o);
|
2015-09-14 00:08:31 +00:00
|
|
|
return false;
|
2011-11-13 04:26:07 +00:00
|
|
|
}
|
2014-05-03 12:21:03 +00:00
|
|
|
|
2015-04-08 21:39:14 +00:00
|
|
|
buf = malloc (number);
|
|
|
|
if (!buf) {
|
2011-11-30 09:27:01 +00:00
|
|
|
free (o);
|
2015-09-14 00:08:31 +00:00
|
|
|
return false;
|
2011-11-30 09:27:01 +00:00
|
|
|
}
|
2015-04-08 21:39:14 +00:00
|
|
|
|
|
|
|
memset (buf, padding_byte, number);
|
|
|
|
if (f>='a' && f<='z') {
|
2015-05-09 10:32:31 +00:00
|
|
|
r_egg_prepend_bytes(egg, buf, number);
|
2015-04-08 21:39:14 +00:00
|
|
|
} else {
|
2015-05-09 10:32:31 +00:00
|
|
|
r_egg_append_bytes(egg, buf, number);
|
2015-04-08 21:39:14 +00:00
|
|
|
}
|
|
|
|
free (buf);
|
2011-11-13 04:26:07 +00:00
|
|
|
}
|
|
|
|
free (o);
|
2015-09-14 00:08:31 +00:00
|
|
|
return true;
|
2011-11-13 04:26:07 +00:00
|
|
|
}
|
|
|
|
|
2011-11-13 03:08:08 +00:00
|
|
|
R_API void r_egg_fill(REgg *egg, int pos, int type, int argc, int length) {
|
2011-11-14 01:04:27 +00:00
|
|
|
// TODO
|
2011-11-12 05:16:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
R_API void r_egg_option_set(REgg *egg, const char *key, const char *val) {
|
2014-03-07 00:26:11 +00:00
|
|
|
sdb_set (egg->db, key, val, 0);
|
2011-11-12 05:16:00 +00:00
|
|
|
}
|
|
|
|
|
2011-11-13 03:47:56 +00:00
|
|
|
R_API char *r_egg_option_get(REgg *egg, const char *key) {
|
2014-03-07 00:26:11 +00:00
|
|
|
return sdb_get (egg->db, key, NULL);
|
2011-11-12 05:16:00 +00:00
|
|
|
}
|
|
|
|
|
2011-11-13 03:08:08 +00:00
|
|
|
R_API int r_egg_shellcode(REgg *egg, const char *name) {
|
|
|
|
REggPlugin *p;
|
|
|
|
RListIter *iter;
|
|
|
|
RBuffer *b;
|
|
|
|
r_list_foreach (egg->plugins, iter, p) {
|
2011-11-14 01:04:27 +00:00
|
|
|
if (p->type == R_EGG_PLUGIN_SHELLCODE && !strcmp (name, p->name)) {
|
2011-11-13 03:08:08 +00:00
|
|
|
b = p->build (egg);
|
2011-12-01 02:28:12 +00:00
|
|
|
if (b == NULL) {
|
|
|
|
eprintf ("%s Encoder has failed\n", p->name);
|
2015-09-14 00:08:31 +00:00
|
|
|
return false;
|
2011-12-01 02:28:12 +00:00
|
|
|
}
|
2011-11-13 03:08:08 +00:00
|
|
|
r_egg_raw (egg, b->buf, b->length);
|
|
|
|
r_buf_free (b);
|
2015-09-14 00:08:31 +00:00
|
|
|
return true;
|
2011-11-13 03:08:08 +00:00
|
|
|
}
|
|
|
|
}
|
2015-09-14 00:08:31 +00:00
|
|
|
return false;
|
2011-11-12 05:16:00 +00:00
|
|
|
}
|
2011-11-14 01:04:27 +00:00
|
|
|
|
|
|
|
R_API int r_egg_encode(REgg *egg, const char *name) {
|
|
|
|
REggPlugin *p;
|
|
|
|
RListIter *iter;
|
|
|
|
RBuffer *b;
|
|
|
|
r_list_foreach (egg->plugins, iter, p) {
|
|
|
|
if (p->type == R_EGG_PLUGIN_ENCODER && !strcmp (name, p->name)) {
|
|
|
|
b = p->build (egg);
|
2011-12-01 02:28:12 +00:00
|
|
|
r_buf_free (egg->bin);
|
|
|
|
egg->bin = b;
|
2015-09-14 00:08:31 +00:00
|
|
|
return true;
|
2011-11-14 01:04:27 +00:00
|
|
|
}
|
|
|
|
}
|
2015-09-14 00:08:31 +00:00
|
|
|
return false;
|
2011-11-14 01:04:27 +00:00
|
|
|
}
|
2011-11-30 09:27:01 +00:00
|
|
|
|
|
|
|
R_API int r_egg_patch(REgg *egg, int off, const ut8 *buf, int len) {
|
|
|
|
RBuffer *b = r_buf_new ();
|
2015-09-14 00:08:31 +00:00
|
|
|
if (!b) return false;
|
2011-11-30 09:27:01 +00:00
|
|
|
if (!r_buf_set_bytes (b, buf, len)) {
|
|
|
|
r_buf_free (b);
|
2015-09-14 00:08:31 +00:00
|
|
|
return false;
|
2011-11-30 09:27:01 +00:00
|
|
|
}
|
|
|
|
b->cur = off;
|
|
|
|
r_list_append (egg->patches, b);
|
2015-09-14 00:08:31 +00:00
|
|
|
return true;
|
2011-11-30 09:27:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
R_API void r_egg_finalize(REgg *egg) {
|
|
|
|
RBuffer *b;
|
|
|
|
RListIter *iter;
|
2014-10-29 01:44:21 +00:00
|
|
|
if (!egg->bin->buf)
|
|
|
|
egg->bin = r_buf_new ();
|
2011-11-30 09:27:01 +00:00
|
|
|
r_list_foreach (egg->patches, iter, b) {
|
2014-10-29 01:44:21 +00:00
|
|
|
if (b->cur <0) {
|
2015-05-09 10:32:31 +00:00
|
|
|
r_egg_append_bytes (egg, b->buf, b->length);
|
2014-10-29 01:44:21 +00:00
|
|
|
} else {
|
|
|
|
// TODO: use r_buf_cpy_buf or what
|
|
|
|
if (b->length+b->cur > egg->bin->length) {
|
2016-01-04 01:19:02 +00:00
|
|
|
eprintf ("Fuck this shit. Cannot patch outside\n");
|
2014-10-29 01:44:21 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
memcpy (egg->bin->buf + b->cur, b->buf, b->length);
|
2011-11-30 09:27:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-09-05 14:03:40 +00:00
|
|
|
|
|
|
|
R_API void r_egg_pattern(REgg *egg, int size) {
|
|
|
|
char *ret = r_debruijn_pattern ((int)size, 0, NULL);
|
2014-09-05 14:13:47 +00:00
|
|
|
if (ret) {
|
2015-05-09 10:32:31 +00:00
|
|
|
r_egg_prepend_bytes (egg, (const ut8*)ret, strlen(ret));
|
2014-09-05 14:13:47 +00:00
|
|
|
free (ret);
|
|
|
|
} else eprintf ("Invalid debruijn pattern length.\n");
|
2014-09-05 14:03:40 +00:00
|
|
|
}
|