2015-06-11 10:12:22 +00:00
|
|
|
/* radare - LGPL - Copyright 2008-2015 - nibble, pancake */
|
2009-02-15 00:48:11 +00:00
|
|
|
|
2014-03-04 11:23:52 +00:00
|
|
|
// TODO: rename to r_anal_meta_get() ??
|
2014-03-04 17:36:04 +00:00
|
|
|
#if 0
|
|
|
|
TODO
|
|
|
|
====
|
|
|
|
- handle sync to synchronize all the data on disk.
|
|
|
|
- actually listing only works in memory
|
|
|
|
- array_add doesnt needs index, right?
|
2014-05-08 21:20:42 +00:00
|
|
|
- remove unused arguments from r_meta_find (where ?)
|
2014-03-04 17:36:04 +00:00
|
|
|
- implement r_meta_find
|
|
|
|
#endif
|
2014-08-04 23:42:22 +00:00
|
|
|
#if 0
|
|
|
|
SDB SPECS
|
2014-08-17 10:21:04 +00:00
|
|
|
|
2014-08-04 23:42:22 +00:00
|
|
|
DatabaseName:
|
|
|
|
'anal.meta'
|
|
|
|
Keys:
|
|
|
|
'meta.<type>.count=<int>' number of added metas where 'type' is a single char
|
|
|
|
'meta.<type>.<last>=<array>' splitted array, each block contains K elements
|
|
|
|
'meta.<type>.<addr>=<string>' string representing extra information of the meta type at given address
|
2014-08-05 01:11:09 +00:00
|
|
|
'range.<baddr>=<array>' store valid addresses in a base range array
|
2014-08-04 23:42:22 +00:00
|
|
|
#endif
|
2014-03-04 17:36:04 +00:00
|
|
|
|
2011-03-01 18:06:22 +00:00
|
|
|
#include <r_anal.h>
|
2013-02-12 01:42:34 +00:00
|
|
|
#include <r_print.h>
|
2009-02-15 00:48:11 +00:00
|
|
|
|
2014-03-04 11:23:52 +00:00
|
|
|
#define META_RANGE_BASE(x) ((x)>>12)
|
|
|
|
#define META_RANGE_SIZE 0xfff
|
|
|
|
#undef DB
|
|
|
|
#define DB a->sdb_meta
|
2014-03-12 01:44:49 +00:00
|
|
|
|
2014-10-26 12:50:58 +00:00
|
|
|
#if 0
|
|
|
|
// Defined but not used. Shall we remove it?
|
2014-03-12 01:44:49 +00:00
|
|
|
static char *meta_inrange_get (RAnal *a, ut64 addr, int size) {
|
2014-03-04 11:23:52 +00:00
|
|
|
char key[64];
|
|
|
|
ut64 base, base2;
|
|
|
|
base = META_RANGE_BASE (addr);
|
|
|
|
base2 = META_RANGE_BASE (addr+size);
|
|
|
|
// return string array of all the offsets where there are stuff
|
|
|
|
for (; base<base2; base += META_RANGE_SIZE) {
|
|
|
|
snprintf (key, sizeof (key)-1, "range.0x%"PFMT64x, base);
|
|
|
|
sdb_array_get (DB, key, 0, 0);
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
2014-10-26 12:50:58 +00:00
|
|
|
#endif
|
2014-03-04 11:23:52 +00:00
|
|
|
|
|
|
|
static int meta_inrange_add (RAnal *a, ut64 addr, int size) {
|
|
|
|
int set = 0;
|
|
|
|
char key[64];
|
|
|
|
ut64 base, base2;
|
|
|
|
base = META_RANGE_BASE (addr);
|
|
|
|
base2 = META_RANGE_BASE (addr+size);
|
|
|
|
for (; base<base2; base += META_RANGE_SIZE) {
|
|
|
|
snprintf (key, sizeof (key)-1, "range.0x%"PFMT64x, base);
|
2014-03-26 03:16:03 +00:00
|
|
|
if (sdb_array_add_num (DB, key, addr, 0))
|
2014-03-04 11:23:52 +00:00
|
|
|
set = 1;
|
|
|
|
}
|
|
|
|
return set;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int meta_inrange_del (RAnal *a, ut64 addr, int size) {
|
|
|
|
int set = 0;
|
|
|
|
char key[64];
|
|
|
|
ut64 base, base2;
|
|
|
|
base = META_RANGE_BASE (addr);
|
|
|
|
base2 = META_RANGE_BASE (addr+size);
|
|
|
|
// TODO: optimize this thing?
|
|
|
|
for (; base<base2; base += META_RANGE_SIZE) {
|
|
|
|
snprintf (key, sizeof (key)-1, "range.0x%"PFMT64x, base);
|
2014-03-31 02:42:55 +00:00
|
|
|
if (sdb_array_remove_num (DB, key, addr, 0))
|
2014-03-04 11:23:52 +00:00
|
|
|
set = 1;
|
|
|
|
}
|
|
|
|
//sdb_array_del (DB);
|
|
|
|
return set;
|
|
|
|
}
|
2009-02-15 00:48:11 +00:00
|
|
|
|
2014-08-04 23:42:22 +00:00
|
|
|
// 512 = 1.5s
|
|
|
|
// 256 = 1.3s
|
|
|
|
// 128 = 1.2s
|
|
|
|
// 64 = 1.14
|
|
|
|
// 32 = 1.12
|
|
|
|
// not storing any = 1
|
|
|
|
#define K 256
|
|
|
|
|
|
|
|
static int meta_type_add (RAnal *a, char type, ut64 addr) {
|
|
|
|
char key[32];
|
|
|
|
ut32 count, last;
|
|
|
|
snprintf (key, sizeof (key)-1, "meta.%c.count", type);
|
|
|
|
count = (ut32)sdb_num_inc (DB, key, 1, 0);
|
|
|
|
last = count/K;
|
|
|
|
|
|
|
|
snprintf (key, sizeof (key)-1, "meta.%c.%d", type, last);
|
|
|
|
sdb_array_add_num (DB, key, addr, 0);
|
|
|
|
return count;
|
|
|
|
}
|
|
|
|
|
2014-03-04 11:23:52 +00:00
|
|
|
// TODO: Add APIs to resize meta? nope, just del and add
|
2014-03-12 01:44:49 +00:00
|
|
|
R_API int r_meta_set_string(RAnal *a, int type, ut64 addr, const char *s) {
|
2014-03-04 11:23:52 +00:00
|
|
|
char key[100], val[2048], *e_str;
|
|
|
|
int ret;
|
|
|
|
ut64 size;
|
2014-08-04 23:42:22 +00:00
|
|
|
meta_type_add (a, type, addr);
|
|
|
|
|
2014-03-04 11:23:52 +00:00
|
|
|
snprintf (key, sizeof (key)-1, "meta.%c.0x%"PFMT64x, type, addr);
|
|
|
|
size = sdb_array_get_num (DB, key, 0, 0);
|
|
|
|
if (!size) {
|
|
|
|
size = strlen (s);
|
2014-03-12 01:44:49 +00:00
|
|
|
meta_inrange_add (a, addr, size);
|
2014-03-04 11:23:52 +00:00
|
|
|
ret = R_TRUE;
|
|
|
|
} else ret = R_FALSE;
|
2014-03-31 01:05:48 +00:00
|
|
|
e_str = sdb_encode ((const void*)s, -1);
|
2014-03-04 11:23:52 +00:00
|
|
|
snprintf (val, sizeof (val)-1, "%d,%s", (int)size, e_str);
|
|
|
|
sdb_set (DB, key, val, 0);
|
|
|
|
free ((void*)e_str);
|
|
|
|
return ret;
|
2011-05-21 12:27:46 +00:00
|
|
|
}
|
|
|
|
|
2014-03-12 01:44:49 +00:00
|
|
|
R_API char *r_meta_get_string(RAnal *a, int type, ut64 addr) {
|
2014-03-04 11:23:52 +00:00
|
|
|
char key[100];
|
|
|
|
const char *k, *p;
|
|
|
|
snprintf (key, sizeof (key)-1, "meta.%c.0x%"PFMT64x, 'C', addr);
|
|
|
|
k = sdb_const_get (DB, key, NULL);
|
|
|
|
if (!k) return NULL;
|
|
|
|
p = strchr (k, SDB_RS);
|
|
|
|
if (!p) return NULL;
|
|
|
|
k = p+1;
|
|
|
|
// TODO : comment append has been deprecated
|
|
|
|
return (char *)sdb_decode (k, NULL);
|
2009-02-16 02:14:19 +00:00
|
|
|
}
|
|
|
|
|
2014-03-04 11:23:52 +00:00
|
|
|
R_API int r_meta_del(RAnal *a, int type, ut64 addr, ut64 size, const char *str) {
|
2014-03-06 01:31:31 +00:00
|
|
|
char key[100], key2[100], *dtr, *s, *p, *next;
|
2014-03-04 11:23:52 +00:00
|
|
|
const char *ptr;
|
2014-03-06 01:31:31 +00:00
|
|
|
int i;
|
2014-03-04 11:23:52 +00:00
|
|
|
if (size == UT64_MAX) {
|
|
|
|
// FULL CLEANUP
|
|
|
|
// XXX: this thing ignores the type
|
|
|
|
if (type == R_META_TYPE_ANY) {
|
|
|
|
sdb_reset (DB);
|
|
|
|
} else {
|
2014-08-04 23:42:22 +00:00
|
|
|
snprintf (key, sizeof (key)-1, "meta.%c.count", type);
|
|
|
|
int last = (ut64)sdb_num_get (DB, key, NULL)/K;
|
|
|
|
for (i=0; i<last; i++) {
|
|
|
|
snprintf (key, sizeof (key)-1, "meta.%c.%d", type, i);
|
|
|
|
dtr = sdb_get (DB, key, 0);
|
|
|
|
for (p = dtr; p; p = next) {
|
|
|
|
s = sdb_anext (p, &next);
|
|
|
|
snprintf (key, sizeof (key)-1,
|
|
|
|
"meta.%c.0x%"PFMT64x,
|
|
|
|
type, sdb_atoi (s));
|
|
|
|
eprintf ("--> %s\n", key);
|
|
|
|
sdb_unset (DB, key, 0);
|
|
|
|
if (!next) break;
|
|
|
|
}
|
|
|
|
free (dtr);
|
2014-03-04 11:23:52 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return R_FALSE;
|
|
|
|
}
|
|
|
|
meta_inrange_del (a, addr, size);
|
2014-08-05 01:11:09 +00:00
|
|
|
snprintf (key, sizeof (key)-1, type==R_META_TYPE_COMMENT ?
|
|
|
|
"meta.C.0x%"PFMT64x : "meta.0x%"PFMT64x, addr);
|
2014-03-04 11:23:52 +00:00
|
|
|
ptr = sdb_const_get (DB, key, 0);
|
2014-03-05 02:52:42 +00:00
|
|
|
if (ptr) {
|
|
|
|
for (i=0; ptr[i]; i++) {
|
|
|
|
if (ptr[i] != SDB_RS) {
|
2014-03-06 01:31:31 +00:00
|
|
|
snprintf (key2, sizeof (key2)-1,
|
|
|
|
"meta.%c.0x%"PFMT64x, ptr[i], addr);
|
2014-03-05 02:52:42 +00:00
|
|
|
sdb_unset (DB, key2, 0);
|
|
|
|
}
|
2014-03-04 11:23:52 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
sdb_unset (DB, key, 0);
|
|
|
|
return R_FALSE;
|
2009-02-16 02:14:19 +00:00
|
|
|
}
|
|
|
|
|
2014-01-23 02:28:25 +00:00
|
|
|
R_API int r_meta_cleanup(RAnal *a, ut64 from, ut64 to) {
|
2014-04-21 20:17:22 +00:00
|
|
|
return r_meta_del (a, R_META_TYPE_ANY, from, (to-from), NULL);
|
2009-02-16 10:24:45 +00:00
|
|
|
}
|
|
|
|
|
2010-06-27 22:43:07 +00:00
|
|
|
R_API void r_meta_item_free(void *_item) {
|
2014-01-23 03:34:59 +00:00
|
|
|
RAnalMetaItem *item = _item;
|
2010-06-27 22:43:07 +00:00
|
|
|
free (item);
|
|
|
|
}
|
|
|
|
|
2014-01-23 03:34:59 +00:00
|
|
|
R_API RAnalMetaItem *r_meta_item_new(int type) {
|
|
|
|
RAnalMetaItem *mi = R_NEW (RAnalMetaItem);
|
|
|
|
memset (mi, 0, sizeof (RAnalMetaItem));
|
2010-06-27 22:43:07 +00:00
|
|
|
mi->type = type;
|
|
|
|
return mi;
|
|
|
|
}
|
|
|
|
|
2014-03-12 01:44:49 +00:00
|
|
|
R_API int r_meta_add(RAnal *a, int type, ut64 from, ut64 to, const char *str) {
|
2014-05-22 00:15:26 +00:00
|
|
|
int exists;
|
2014-03-04 11:23:52 +00:00
|
|
|
char *e_str, key[100], val[2048];
|
2014-03-04 17:36:04 +00:00
|
|
|
if (from>to)
|
2014-03-04 11:23:52 +00:00
|
|
|
return R_FALSE;
|
2014-03-04 17:36:04 +00:00
|
|
|
if (from == to)
|
|
|
|
to = from+1;
|
2014-09-03 08:25:29 +00:00
|
|
|
if (type == 100 && (to-from)<1) {
|
|
|
|
return R_FALSE;
|
2014-05-16 12:56:08 +00:00
|
|
|
}
|
2014-03-04 11:23:52 +00:00
|
|
|
/* set entry */
|
2014-03-31 01:05:48 +00:00
|
|
|
e_str = sdb_encode ((const void*)str, -1);
|
2014-03-04 11:23:52 +00:00
|
|
|
snprintf (key, sizeof (key)-1, "meta.%c.0x%"PFMT64x, type, from);
|
|
|
|
snprintf (val, sizeof (val)-1, "%d,%s", (int)(to-from), e_str);
|
2014-05-22 00:15:26 +00:00
|
|
|
exists = sdb_exists (DB, key);
|
2014-03-04 11:23:52 +00:00
|
|
|
sdb_set (DB, key, val, 0);
|
|
|
|
free (e_str);
|
|
|
|
|
2014-05-22 00:15:26 +00:00
|
|
|
// XXX: This is totally inefficient, using array_add withuot
|
|
|
|
// checking return value is wrong practice, also it may lead
|
|
|
|
// to inconsistent DB, and pretty bad performance. We should
|
|
|
|
// store this list in a different storage that doesnt have
|
|
|
|
// those limits and it's O(1) instead of O(n)
|
|
|
|
if (!exists) {
|
2014-10-26 12:50:58 +00:00
|
|
|
//ut64 count;
|
2014-05-22 00:15:26 +00:00
|
|
|
/* set type index */
|
|
|
|
snprintf (key, sizeof (key)-1, "meta.0x%"PFMT64x, from);
|
|
|
|
snprintf (val, sizeof (val)-1, "%c", type);
|
|
|
|
sdb_array_add (DB, key, val, 0);
|
|
|
|
/* set type index */
|
2014-10-26 12:50:58 +00:00
|
|
|
//count = meta_type_add (a, type, from);
|
2014-05-22 00:15:26 +00:00
|
|
|
}
|
2014-03-04 11:23:52 +00:00
|
|
|
|
|
|
|
return R_TRUE;
|
2009-02-15 00:48:11 +00:00
|
|
|
}
|
|
|
|
|
2014-03-12 01:44:49 +00:00
|
|
|
R_API RAnalMetaItem *r_meta_find(RAnal *a, ut64 off, int type, int where) {
|
2014-03-04 11:23:52 +00:00
|
|
|
static RAnalMetaItem it = {0};
|
|
|
|
// XXX: return allocated item? wtf
|
|
|
|
if (where != R_META_WHERE_HERE) {
|
|
|
|
eprintf ("THIS WAS NOT SUPOSED TO HAPPEN\n");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
//char *range = get_in_range (off);
|
|
|
|
if (type == R_META_TYPE_ANY) {
|
2014-10-26 12:50:58 +00:00
|
|
|
//const char *p;
|
2014-07-02 15:14:32 +00:00
|
|
|
char key [100];
|
2014-03-04 11:23:52 +00:00
|
|
|
snprintf (key, sizeof (key)-1, "meta.0x%"PFMT64x, off);
|
2014-10-26 12:50:58 +00:00
|
|
|
//p = sdb_const_get (DB, key, 0);
|
2014-03-08 01:36:33 +00:00
|
|
|
// XXX: TODO unimplemented. see core/disasm.c:1070
|
2014-03-04 11:23:52 +00:00
|
|
|
} else {
|
|
|
|
// snprintf (key, sizeof (key)-1, "meta.
|
|
|
|
}
|
|
|
|
return ⁢
|
2009-02-15 00:48:11 +00:00
|
|
|
}
|
|
|
|
|
2010-06-20 22:48:06 +00:00
|
|
|
R_API const char *r_meta_type_to_string(int type) {
|
|
|
|
// XXX: use type as '%c'
|
2009-02-16 02:14:19 +00:00
|
|
|
switch(type) {
|
2013-03-01 11:20:18 +00:00
|
|
|
case R_META_TYPE_HIDE: return "Ch";
|
2011-03-01 18:06:22 +00:00
|
|
|
case R_META_TYPE_CODE: return "Cc";
|
|
|
|
case R_META_TYPE_DATA: return "Cd";
|
|
|
|
case R_META_TYPE_STRING: return "Cs";
|
|
|
|
case R_META_TYPE_FORMAT: return "Cf";
|
2014-01-19 23:14:00 +00:00
|
|
|
case R_META_TYPE_MAGIC: return "Cm";
|
2014-08-06 17:11:51 +00:00
|
|
|
case R_META_TYPE_COMMENT: return "CCu";
|
2009-02-16 02:14:19 +00:00
|
|
|
}
|
|
|
|
return "(...)";
|
|
|
|
}
|
|
|
|
|
2014-03-12 01:44:49 +00:00
|
|
|
static void printmetaitem(RAnal *a, RAnalMetaItem *d, int rad) {
|
2014-02-23 00:56:26 +00:00
|
|
|
char *pstr, *str = r_str_escape (d->str);
|
2014-11-03 02:35:31 +00:00
|
|
|
if (str || d->type == 'd') {
|
2014-04-29 00:46:36 +00:00
|
|
|
if (d->type=='s' && !*str) {
|
|
|
|
free (str);
|
2011-06-04 11:29:15 +00:00
|
|
|
return;
|
2014-04-29 00:46:36 +00:00
|
|
|
}
|
2014-11-03 02:35:31 +00:00
|
|
|
if (!str)
|
|
|
|
pstr = "";
|
|
|
|
else if (d->type != 'C') {
|
2013-03-08 00:03:37 +00:00
|
|
|
r_name_filter (str, 0);
|
2013-05-23 08:33:21 +00:00
|
|
|
pstr = str;
|
|
|
|
} else pstr = d->str;
|
2013-03-08 00:03:37 +00:00
|
|
|
// r_str_sanitize (str);
|
2013-03-01 11:20:18 +00:00
|
|
|
switch (rad) {
|
|
|
|
case 'j':
|
2014-03-12 01:44:49 +00:00
|
|
|
a->printf ("{\"offset\":%"PFMT64d", \"type\":\"%s\", \"name\":\"%s\"}",
|
2013-03-01 11:20:18 +00:00
|
|
|
d->from, r_meta_type_to_string (d->type), str);
|
|
|
|
break;
|
|
|
|
case 0:
|
|
|
|
case 1:
|
|
|
|
case '*':
|
|
|
|
default:
|
2014-11-03 02:35:31 +00:00
|
|
|
switch (d->type) {
|
|
|
|
case 'C':
|
2015-05-31 22:48:57 +00:00
|
|
|
{
|
|
|
|
const char *type = r_meta_type_to_string (d->type);
|
|
|
|
char *s = sdb_encode ((const ut8*)pstr, -1);
|
|
|
|
if (!s) s = strdup (pstr);
|
|
|
|
if (rad) {
|
|
|
|
if (!strcmp (type, "CCu")) {
|
|
|
|
a->printf ("%s base64:%s @ 0x%08"PFMT64x"\n",
|
|
|
|
type, s, d->from);
|
|
|
|
} else {
|
|
|
|
a->printf ("%s %s @ 0x%08"PFMT64x"\n",
|
|
|
|
type, pstr, d->from);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (!strcmp (type, "CCu")) {
|
|
|
|
char *mys = r_str_escape (pstr);
|
|
|
|
a->printf ("0x%08"PFMT64x" %s \"%s\"\n",
|
|
|
|
d->from, type, mys);
|
|
|
|
free (mys);
|
|
|
|
} else {
|
|
|
|
a->printf ("0x%08"PFMT64x" %s \"%s\"\n",
|
|
|
|
d->from, type, pstr);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
free (s);
|
|
|
|
}
|
2014-11-03 02:35:31 +00:00
|
|
|
break;
|
|
|
|
case 'h': /* hidden */
|
|
|
|
case 's': /* string */
|
2015-05-31 22:48:57 +00:00
|
|
|
if (rad) {
|
|
|
|
a->printf ("%s %d @ 0x%08"PFMT64x" # %s\n",
|
|
|
|
r_meta_type_to_string (d->type),
|
2015-06-11 10:12:22 +00:00
|
|
|
(int)d->size, d->from, pstr);
|
2015-05-31 22:48:57 +00:00
|
|
|
} else {
|
|
|
|
// TODO: use b64 here
|
|
|
|
a->printf ("0x%08"PFMT64x" string[%d] \"%s\"\n",
|
2015-06-11 10:12:22 +00:00
|
|
|
d->from, (int)d->size, pstr);
|
2015-05-31 22:48:57 +00:00
|
|
|
}
|
2014-11-03 02:35:31 +00:00
|
|
|
break;
|
|
|
|
case 'd': /* data */
|
2015-05-31 22:48:57 +00:00
|
|
|
if (rad) {
|
|
|
|
a->printf ("%s %d @ 0x%08"PFMT64x"\n",
|
|
|
|
r_meta_type_to_string (d->type),
|
2015-06-11 10:12:22 +00:00
|
|
|
(int)d->size, d->from);
|
2015-05-31 22:48:57 +00:00
|
|
|
} else {
|
|
|
|
a->printf ("0x%08"PFMT64x" data %s %d\n",
|
2015-06-11 10:12:22 +00:00
|
|
|
d->from, r_meta_type_to_string (d->type), (int)d->size);
|
2015-05-31 22:48:57 +00:00
|
|
|
|
|
|
|
}
|
2014-11-03 02:35:31 +00:00
|
|
|
break;
|
|
|
|
case 'm': /* magic */
|
|
|
|
case 'f': /* formatted */
|
2015-05-31 22:48:57 +00:00
|
|
|
if (rad) {
|
|
|
|
a->printf ("%s %d %s @ 0x%08"PFMT64x"\n",
|
|
|
|
r_meta_type_to_string (d->type),
|
2015-06-11 10:12:22 +00:00
|
|
|
(int)d->size, pstr, d->from);
|
2015-05-31 22:48:57 +00:00
|
|
|
} else {
|
|
|
|
const char *dtype = d->type=='m'?"magic":"format";
|
|
|
|
a->printf ("0x%08"PFMT64x" %s %d %s\n",
|
2015-06-11 10:12:22 +00:00
|
|
|
d->from, dtype, (int)d->size, pstr);
|
2015-05-31 22:48:57 +00:00
|
|
|
}
|
2014-11-03 02:35:31 +00:00
|
|
|
break;
|
|
|
|
default:
|
2015-05-31 22:48:57 +00:00
|
|
|
if (rad) {
|
|
|
|
a->printf ("%s %d 0x%08"PFMT64x" # %s\n",
|
|
|
|
r_meta_type_to_string (d->type),
|
2015-06-11 10:12:22 +00:00
|
|
|
(int)d->size, d->from, pstr);
|
2015-05-31 22:48:57 +00:00
|
|
|
} else {
|
|
|
|
// TODO: use b64 here
|
|
|
|
a->printf ("0x%08"PFMT64x" array[%d] %s %s\n",
|
2015-06-11 10:12:22 +00:00
|
|
|
d->from, (int)d->size,
|
2015-05-31 22:48:57 +00:00
|
|
|
r_meta_type_to_string (d->type), pstr);
|
|
|
|
}
|
|
|
|
break;
|
2014-01-20 00:42:16 +00:00
|
|
|
}
|
2013-03-01 11:20:18 +00:00
|
|
|
break;
|
|
|
|
}
|
2014-11-03 02:35:31 +00:00
|
|
|
if (str)
|
|
|
|
free (str);
|
2011-05-11 17:19:53 +00:00
|
|
|
}
|
2010-06-27 22:43:07 +00:00
|
|
|
}
|
|
|
|
|
2014-03-04 11:23:52 +00:00
|
|
|
static int meta_print_item(void *user, const char *k, const char *v) {
|
|
|
|
RAnalMetaUserItem *ui = user;
|
|
|
|
RAnalMetaItem it;
|
|
|
|
if (strlen (k)<8)
|
2014-03-08 00:06:31 +00:00
|
|
|
return 1;
|
2014-08-05 01:11:09 +00:00
|
|
|
if (memcmp (k+6, ".0x", 3))
|
2014-03-08 00:06:31 +00:00
|
|
|
return 1;
|
2014-03-04 11:23:52 +00:00
|
|
|
it.type = k[5];
|
|
|
|
it.size = sdb_atoi (v);
|
|
|
|
it.from = sdb_atoi (k+7);
|
|
|
|
it.to = it.from + it.size;
|
|
|
|
it.str = strchr (v, ',');
|
|
|
|
if (it.str)
|
|
|
|
it.str = (char *)sdb_decode ((const char*)it.str+1, 0);
|
|
|
|
printmetaitem (ui->anal, &it, ui->rad);
|
|
|
|
free (it.str);
|
2014-03-08 00:06:31 +00:00
|
|
|
return 1;
|
2014-03-04 11:23:52 +00:00
|
|
|
}
|
|
|
|
|
2015-06-01 01:05:15 +00:00
|
|
|
R_API int r_meta_list_cb(RAnal *a, int type, int rad, SdbForeachCallback cb, void *user) {
|
|
|
|
RAnalMetaUserItem ui = { a, type, rad, cb, user };
|
2014-03-12 01:44:49 +00:00
|
|
|
if (rad=='j') a->printf ("[");
|
2015-06-01 01:05:15 +00:00
|
|
|
if (cb) {
|
|
|
|
sdb_foreach (DB, cb, &ui);
|
|
|
|
} else {
|
|
|
|
sdb_foreach (DB, meta_print_item, &ui);
|
|
|
|
}
|
2014-03-12 01:44:49 +00:00
|
|
|
if (rad=='j') a->printf ("]\n");
|
2014-03-04 11:23:52 +00:00
|
|
|
return 0;
|
2009-02-16 02:14:19 +00:00
|
|
|
}
|
2012-11-20 02:59:00 +00:00
|
|
|
|
2015-06-01 01:05:15 +00:00
|
|
|
R_API int r_meta_list(RAnal *a, int type, int rad) {
|
|
|
|
return r_meta_list_cb (a, type, rad, NULL, NULL);
|
|
|
|
}
|
|
|
|
|
2014-03-12 01:44:49 +00:00
|
|
|
#if 0
|
2012-11-20 02:59:00 +00:00
|
|
|
R_API char *r_anal_meta_bar (RAnal *anal, ut64 from, ut64 to, int blocks) {
|
2013-01-22 04:06:12 +00:00
|
|
|
int i, n, blocksize;
|
2012-11-20 02:59:00 +00:00
|
|
|
char *res;
|
|
|
|
ut64 f, t;
|
|
|
|
if (blocks<1 || from > to)
|
|
|
|
return NULL;
|
|
|
|
blocksize = (to-from)/blocks;
|
2014-03-04 11:23:52 +00:00
|
|
|
res = malloc (blocks*4);
|
2012-11-20 02:59:00 +00:00
|
|
|
for (i=0; i< blocks; i++) {
|
|
|
|
f = from + (blocksize*i);
|
|
|
|
t = f+blocksize;
|
2013-01-22 04:06:12 +00:00
|
|
|
n = r_anal_fcn_count (anal, f, t);
|
|
|
|
if (n>0) res[i++] = 'f';
|
2012-11-20 02:59:00 +00:00
|
|
|
res[i++] = ',';
|
|
|
|
}
|
|
|
|
return res;
|
|
|
|
}
|
2014-03-12 01:44:49 +00:00
|
|
|
#endif
|