mirror of
https://github.com/radareorg/radare2.git
synced 2024-12-20 20:28:13 +00:00
19fa55ba33
* Properly installation of vapi files - Lot of fixtures to build a external hello world in gtk+vala+r_asm - default staticplugins for r_asm are: mips, java and x86_olly by default - Add r_util.vapi and make .pc file point to -lr_util - Use .deps to generate dependencies between vapi files - Fix r_asm.vapi (Added Asm.Aop struct) - add set(string) method - asm/disasm -> assemble/disassemble * Fix warning + build in sign.c - Included in default build * Fix segfault in r_lib with NULL in opendir() * More fixtures for r_asm_plugin_* - use #ifndef CORELIB - drop 'static' * Update README
137 lines
2.6 KiB
C
137 lines
2.6 KiB
C
/* radare - LGPL - Copyright 2009 nibble<.ds@gmail.com> */
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <r_types.h>
|
|
#include <r_util.h>
|
|
#include <r_asm.h>
|
|
#include <list.h>
|
|
#include "../config.h"
|
|
|
|
static struct r_asm_handle_t *asm_static_plugins[] =
|
|
{ R_ASM_STATIC_PLUGINS };
|
|
|
|
struct r_asm_t *r_asm_new()
|
|
{
|
|
struct r_asm_t *a = MALLOC_STRUCT(struct r_asm_t);
|
|
r_asm_init(a);
|
|
return a;
|
|
}
|
|
|
|
void r_asm_free(struct r_asm_t *a)
|
|
{
|
|
free(a);
|
|
}
|
|
|
|
int r_asm_init(struct r_asm_t *a)
|
|
{
|
|
int i;
|
|
a->user = NULL;
|
|
a->cur = NULL;
|
|
INIT_LIST_HEAD(&a->asms);
|
|
r_asm_set_bits(a, 32);
|
|
r_asm_set_big_endian(a, 0);
|
|
r_asm_set_syntax(a, R_ASM_SYN_INTEL);
|
|
r_asm_set_pc(a, 0);
|
|
for(i=0;asm_static_plugins[i];i++)
|
|
r_asm_add(a, asm_static_plugins[i]);
|
|
return R_TRUE;
|
|
}
|
|
|
|
void r_asm_set_user_ptr(struct r_asm_t *a, void *user)
|
|
{
|
|
a->user = user;
|
|
}
|
|
|
|
int r_asm_add(struct r_asm_t *a, struct r_asm_handle_t *foo)
|
|
{
|
|
struct list_head *pos;
|
|
if (foo->init)
|
|
foo->init(a->user);
|
|
/* avoid dupped plugins */
|
|
list_for_each_prev(pos, &a->asms) {
|
|
struct r_asm_handle_t *h = list_entry(pos, struct r_asm_handle_t, list);
|
|
if (!strcmp(h->name, foo->name))
|
|
return R_FALSE;
|
|
}
|
|
|
|
list_add_tail(&(foo->list), &(a->asms));
|
|
return R_TRUE;
|
|
}
|
|
|
|
int r_asm_list(struct r_asm_t *a)
|
|
{
|
|
struct list_head *pos;
|
|
list_for_each_prev(pos, &a->asms) {
|
|
struct r_asm_handle_t *h = list_entry(pos, struct r_asm_handle_t, list);
|
|
printf(" %s: %s\n", h->name, h->desc);
|
|
}
|
|
return R_FALSE;
|
|
}
|
|
|
|
int r_asm_set(struct r_asm_t *a, const char *name)
|
|
{
|
|
struct list_head *pos;
|
|
list_for_each_prev(pos, &a->asms) {
|
|
struct r_asm_handle_t *h = list_entry(pos, struct r_asm_handle_t, list);
|
|
if (!strcmp(h->name, name)) {
|
|
a->cur = h;
|
|
return R_TRUE;
|
|
}
|
|
}
|
|
return R_FALSE;
|
|
}
|
|
|
|
int r_asm_set_bits(struct r_asm_t *a, int bits)
|
|
{
|
|
switch (bits) {
|
|
case 16:
|
|
case 32:
|
|
case 64:
|
|
a->bits = bits;
|
|
return R_TRUE;
|
|
default:
|
|
return R_FALSE;
|
|
}
|
|
}
|
|
|
|
int r_asm_set_big_endian(struct r_asm_t *a, int boolean)
|
|
{
|
|
a->big_endian = boolean;
|
|
return R_TRUE;
|
|
}
|
|
|
|
int r_asm_set_syntax(struct r_asm_t *a, int syntax)
|
|
{
|
|
switch (syntax) {
|
|
case R_ASM_SYN_INTEL:
|
|
case R_ASM_SYN_ATT:
|
|
a->syntax = syntax;
|
|
return R_TRUE;
|
|
default:
|
|
return R_FALSE;
|
|
}
|
|
}
|
|
|
|
int r_asm_set_pc(struct r_asm_t *a, u64 pc)
|
|
{
|
|
a->pc = pc;
|
|
return R_TRUE;
|
|
}
|
|
|
|
int r_asm_disassemble(struct r_asm_t *a, struct r_asm_aop_t *aop, u8 *buf, u64 len)
|
|
{
|
|
if (a->cur && a->cur->disassemble)
|
|
return a->cur->disassemble(a, aop, buf, len);
|
|
|
|
return R_FALSE;
|
|
}
|
|
|
|
int r_asm_assemble(struct r_asm_t *a, struct r_asm_aop_t *aop, char *buf)
|
|
{
|
|
if (a->cur && a->cur->assemble)
|
|
return a->cur->assemble(a, aop, buf);
|
|
|
|
return R_FALSE;
|
|
}
|