rizin/librz/analysis/data.c
Riccardo Schirone 53bf5c497f SPDX Copyright text for all files based on history
- Add LICENSES directory
- Download additional licenses used
- Add .reuse directory
- Add doc about SPDX/reuse

Co-authored-by: Florian Märkl <info@florianmaerkl.de>
2021-03-05 19:39:15 +08:00

429 lines
9.9 KiB
C

// SPDX-FileCopyrightText: 2012-2017 pancake <pancake@nopcode.org>
// SPDX-License-Identifier: LGPL-3.0-only
#include <rz_analysis.h>
#define MINLEN 1
static int is_string(const ut8 *buf, int size, int *len) {
int i;
if (size < 1) {
return 0;
}
if (size > 3 && buf[0] && !buf[1] && buf[2] && !buf[3]) {
*len = 1; // XXX: TODO: Measure wide string length
return 2; // is wide
}
for (i = 0; i < size; i++) {
if (!buf[i] && i > MINLEN) {
*len = i;
return 1;
}
if (buf[i] == 10 || buf[i] == 13 || buf[i] == 9) {
continue;
}
if (buf[i] < 32 || buf[i] > 127) {
// not ascii text
return 0;
}
if (!IS_PRINTABLE(buf[i])) {
*len = i;
return 0;
}
}
*len = i;
return 1;
}
static int is_number(const ut8 *buf, int size) {
ut64 n = rz_mem_get_num(buf, size);
return (n < UT32_MAX) ? (int)n : 0;
}
static int is_null(const ut8 *buf, int size) {
const char zero[8] = { 0, 0, 0, 0, 0, 0, 0, 0 };
return (!memcmp(buf, &zero, size)) ? 1 : 0;
}
static int is_invalid(const ut8 *buf, int size) {
if (size < 1) {
return 1;
}
if (size > 8) {
size = 8;
}
return (!memcmp(buf, "\xff\xff\xff\xff\xff\xff\xff\xff", size)) ? 1 : 0;
}
#define USE_IS_VALID_OFFSET 1
static ut64 is_pointer(RzAnalysis *analysis, const ut8 *buf, int size) {
ut64 n;
ut8 buf2[32];
RzIOBind *iob = &analysis->iob;
if (size > sizeof(buf2)) {
size = sizeof(buf2);
}
n = rz_mem_get_num(buf, size);
if (!n) {
return 1; // null pointer
}
#if USE_IS_VALID_OFFSET
int r = iob->is_valid_offset(iob->io, n, 0);
return r ? n : 0LL;
#else
// optimization to ignore very low and very high pointers
// this makes disasm 5x faster, but can result in some false positives
// we should compare with current offset, to avoid
// short/long references. and discard invalid ones
if (n < 0x1000)
return 0; // probably wrong
if (n > 0xffffffffffffLL)
return 0; // probably wrong
if (iob->read_at(iob->io, n, buf2, size) != size)
return 0;
return is_invalid(buf2, size) ? 0 : n;
#endif
}
static bool is_bin(const ut8 *buf, int size) {
// TODO: add more magic signatures heres
if ((size >= 4 && !memcmp(buf, "\xcf\xfa\xed\xfe", 4))) {
return true;
}
if ((size >= 4 && !memcmp(buf, "\x7f\x45\x4c\x46", 4))) { // \x7fELF
return true;
}
if ((size >= 2 && !memcmp(buf, "MZ", 2))) {
return true;
}
return false;
}
// TODO: add is_flag, is comment?
RZ_API char *rz_analysis_data_to_string(RzAnalysisData *d, RzConsPrintablePalette *pal) {
int i, len, mallocsz = 1024;
ut32 n32;
if (!d) {
return NULL;
}
RzStrBuf *sb = rz_strbuf_new(NULL);
if (!sb || !rz_strbuf_reserve(sb, mallocsz)) {
eprintf("Cannot allocate %d byte(s)\n", mallocsz);
return NULL;
}
if (pal) {
const char *k = pal->offset;
rz_strbuf_appendf(sb, "%s0x%08" PFMT64x Color_RESET " ", k, d->addr);
} else {
rz_strbuf_appendf(sb, "0x%08" PFMT64x " ", d->addr);
}
n32 = (ut32)d->ptr;
len = RZ_MIN(d->len, 8);
for (i = 0; i < len; i++) {
rz_strbuf_appendf(sb, "%02x", d->buf[i]);
}
if (i > 0 && d->len > len) {
rz_strbuf_append(sb, "..");
}
rz_strbuf_append(sb, " ");
switch (d->type) {
case RZ_ANALYSIS_DATA_TYPE_STRING:
if (pal) {
rz_strbuf_appendf(sb, "%sstring \"%s\"" Color_RESET, pal->comment, d->str);
} else {
rz_strbuf_appendf(sb, "string \"%s\"", d->str);
}
break;
case RZ_ANALYSIS_DATA_TYPE_WIDE_STRING:
rz_strbuf_append(sb, "wide string");
break;
case RZ_ANALYSIS_DATA_TYPE_NUMBER:
if (pal) {
const char *k = pal->num;
if (n32 == d->ptr) {
rz_strbuf_appendf(sb, "%snumber %d (0x%x)" Color_RESET, k, n32, n32);
} else {
rz_strbuf_appendf(sb, "%snumber %" PFMT64d " (0x%" PFMT64x ")" Color_RESET,
k, d->ptr, d->ptr);
}
} else {
if (n32 == d->ptr) {
rz_strbuf_appendf(sb, "number %d 0x%x", n32, n32);
} else {
rz_strbuf_appendf(sb, "number %" PFMT64d " 0x%" PFMT64x,
d->ptr, d->ptr);
}
}
break;
case RZ_ANALYSIS_DATA_TYPE_POINTER:
rz_strbuf_append(sb, "pointer ");
if (pal) {
const char *k = pal->offset;
rz_strbuf_appendf(sb, " %s0x%08" PFMT64x, k, d->ptr);
} else {
rz_strbuf_appendf(sb, " 0x%08" PFMT64x, d->ptr);
}
break;
case RZ_ANALYSIS_DATA_TYPE_INVALID:
if (pal) {
rz_strbuf_appendf(sb, "%sinvalid" Color_RESET, pal->invalid);
} else {
rz_strbuf_append(sb, "invalid");
}
break;
case RZ_ANALYSIS_DATA_TYPE_HEADER:
rz_strbuf_append(sb, "header");
break;
case RZ_ANALYSIS_DATA_TYPE_SEQUENCE:
rz_strbuf_append(sb, "sequence");
break;
case RZ_ANALYSIS_DATA_TYPE_PATTERN:
rz_strbuf_append(sb, "pattern");
break;
case RZ_ANALYSIS_DATA_TYPE_UNKNOWN:
if (pal) {
rz_strbuf_appendf(sb, "%sunknown" Color_RESET, pal->invalid);
} else {
rz_strbuf_append(sb, "unknown");
}
break;
default:
if (pal) {
rz_strbuf_appendf(sb, "%s(null)" Color_RESET, pal->b0x00);
} else {
rz_strbuf_append(sb, "(null)");
}
break;
}
return rz_strbuf_drain(sb);
}
RZ_API RzAnalysisData *rz_analysis_data_new_string(ut64 addr, const char *p, int len, int type) {
RzAnalysisData *ad = RZ_NEW0(RzAnalysisData);
if (!ad) {
return NULL;
}
ad->str = NULL;
ad->addr = addr;
ad->type = type;
if (len == 0) {
len = strlen(p);
}
if (type == RZ_ANALYSIS_DATA_TYPE_WIDE_STRING) {
/* TODO: add support for wide strings */
} else {
ad->str = malloc(len + 1);
if (!ad->str) {
rz_analysis_data_free(ad);
return NULL;
}
memcpy(ad->str, p, len);
ad->str[len] = 0;
ad->buf = malloc(len + 1);
if (!ad->buf) {
rz_analysis_data_free(ad);
eprintf("Cannot allocate %d byte(s)\n", len + 1);
return NULL;
}
memcpy(ad->buf, ad->str, len + 1);
ad->len = len + 1; // string length + \x00
}
ad->ptr = 0L;
return ad;
}
RZ_API RzAnalysisData *rz_analysis_data_new(ut64 addr, int type, ut64 n, const ut8 *buf, int len) {
RzAnalysisData *ad = RZ_NEW0(RzAnalysisData);
int l = RZ_MIN(len, 8);
if (!ad) {
return NULL;
}
ad->buf = (ut8 *)&(ad->sbuf);
memset(ad->buf, 0, 8);
if (l < 1) {
rz_analysis_data_free(ad);
return NULL;
}
if (buf) {
memcpy(ad->buf, buf, l);
}
ad->addr = addr;
ad->type = type;
ad->str = NULL;
switch (type) {
case RZ_ANALYSIS_DATA_TYPE_PATTERN:
case RZ_ANALYSIS_DATA_TYPE_SEQUENCE:
ad->len = len;
break;
default:
ad->len = l;
}
ad->ptr = n;
return ad;
}
RZ_API void rz_analysis_data_free(RzAnalysisData *d) {
if (d) {
if (d->buf != (ut8 *)&(d->sbuf)) {
free(d->buf);
}
free(d->str);
free(d);
}
}
RZ_API RzAnalysisData *rz_analysis_data(RzAnalysis *analysis, ut64 addr, const ut8 *buf, int size, int wordsize) {
ut64 dst = 0;
int n, nsize = 0;
int bits = analysis->bits;
int word = wordsize ? wordsize : RZ_MIN(8, bits / 8);
if (size < 4) {
return NULL;
}
if (size >= word && is_invalid(buf, word)) {
return rz_analysis_data_new(addr, RZ_ANALYSIS_DATA_TYPE_INVALID, -1, buf, word);
}
{
int i, len = RZ_MIN(size, 64);
int is_pattern = 0;
int is_sequence = 0;
char ch = buf[0];
char ch2 = ch + 1;
for (i = 1; i < len; i++) {
if (ch2 == buf[i]) {
ch2++;
is_sequence++;
} else {
is_sequence = 0;
}
if (ch == buf[i]) {
is_pattern++;
}
}
if (is_sequence > len - 2) {
return rz_analysis_data_new(addr, RZ_ANALYSIS_DATA_TYPE_SEQUENCE, -1,
buf, is_sequence);
}
if (is_pattern > len - 2) {
return rz_analysis_data_new(addr, RZ_ANALYSIS_DATA_TYPE_PATTERN, -1,
buf, is_pattern);
}
}
if (size >= word && is_null(buf, word)) {
return rz_analysis_data_new(addr, RZ_ANALYSIS_DATA_TYPE_NULL, -1, buf, word);
}
if (is_bin(buf, size)) {
return rz_analysis_data_new(addr, RZ_ANALYSIS_DATA_TYPE_HEADER, -1, buf, word);
}
if (size >= word) {
dst = is_pointer(analysis, buf, word);
if (dst) {
return rz_analysis_data_new(addr, RZ_ANALYSIS_DATA_TYPE_POINTER, dst, buf, word);
}
}
switch (is_string(buf, size, &nsize)) {
case 1: return rz_analysis_data_new_string(addr, (const char *)buf, nsize, RZ_ANALYSIS_DATA_TYPE_STRING);
case 2: return rz_analysis_data_new_string(addr, (const char *)buf, nsize, RZ_ANALYSIS_DATA_TYPE_WIDE_STRING);
}
if (size >= word) {
n = is_number(buf, word);
if (n) {
return rz_analysis_data_new(addr, RZ_ANALYSIS_DATA_TYPE_NUMBER, n, buf, word);
}
}
return rz_analysis_data_new(addr, RZ_ANALYSIS_DATA_TYPE_UNKNOWN, dst, buf, RZ_MIN(word, size));
}
RZ_API const char *rz_analysis_data_kind(RzAnalysis *a, ut64 addr, const ut8 *buf, int len) {
int inv = 0;
int unk = 0;
int str = 0;
int num = 0;
int i, j;
RzAnalysisData *data;
int word = a->bits / 8;
for (i = j = 0; i < len; j++) {
if (str && !buf[i]) {
str++;
}
data = rz_analysis_data(a, addr + i, buf + i, len - i, 0);
if (!data) {
i += word;
continue;
}
switch (data->type) {
case RZ_ANALYSIS_DATA_TYPE_INVALID:
inv++;
i += word;
break;
case RZ_ANALYSIS_DATA_TYPE_NUMBER:
if (data->ptr > 1000) {
num++;
}
i += word;
break;
case RZ_ANALYSIS_DATA_TYPE_UNKNOWN:
unk++;
i += word;
break;
case RZ_ANALYSIS_DATA_TYPE_STRING:
if (data->len > 0) {
i += data->len;
} else {
i += word;
}
str++;
break;
default:
i += word;
}
rz_analysis_data_free(data);
}
if (j < 1) {
return "unknown";
}
if ((inv * 100 / j) > 60) {
return "invalid";
}
if ((unk * 100 / j) > 60) {
return "code";
}
if ((num * 100 / j) > 60) {
return "code";
}
if ((str * 100 / j) > 40) {
return "text";
}
return "data";
}
RZ_API const char *rz_analysis_datatype_to_string(RzAnalysisDataType t) {
switch (t) {
case RZ_ANALYSIS_DATATYPE_NULL:
return NULL;
case RZ_ANALYSIS_DATATYPE_ARRAY:
return "array";
case RZ_ANALYSIS_DATATYPE_OBJECT: // instance
return "object";
case RZ_ANALYSIS_DATATYPE_STRING:
return "string";
case RZ_ANALYSIS_DATATYPE_CLASS:
return "class";
case RZ_ANALYSIS_DATATYPE_BOOLEAN:
return "boolean";
case RZ_ANALYSIS_DATATYPE_INT16:
return "int16";
case RZ_ANALYSIS_DATATYPE_INT32:
return "int32";
case RZ_ANALYSIS_DATATYPE_INT64:
return "int64";
case RZ_ANALYSIS_DATATYPE_FLOAT:
return "float";
}
return NULL;
}