mirror of
https://github.com/radareorg/radare2.git
synced 2024-11-27 23:20:40 +00:00
1f1a36c817
- It's like r_vm, but using r_anal - r_vm is going to be deprecated * Added r_mem_set_num() * Remove deprecated asm/t/fastcall example * Fix warnings in r_syscall_regs - Integrated with r_syscall_use() - Fix r_syscall_reg() out of bound bug --HG-- rename : libr/syscall/regs.c => libr/syscall/fastcall.h
74 lines
1.7 KiB
C
74 lines
1.7 KiB
C
/* radare - LGPL - Copyright 2009-2011 pancake<nopcode.org> */
|
|
|
|
#ifndef _INCLUDE_R_SYSCALL_H_
|
|
#define _INCLUDE_R_SYSCALL_H_
|
|
|
|
#include <r_types.h>
|
|
#include <list.h>
|
|
|
|
#define R_SYSCALL_ARGS 6
|
|
|
|
typedef struct r_syscall_regs_t {
|
|
const char *arg[R_SYSCALL_ARGS];
|
|
} RSyscallRegs;
|
|
|
|
typedef struct r_syscall_item_t {
|
|
const char *name;
|
|
int swi;
|
|
int num;
|
|
int args;
|
|
char *sargs;
|
|
} RSyscallItem;
|
|
|
|
typedef struct r_syscall_port_t {
|
|
int port;
|
|
const char *name;
|
|
} RSyscallPort;
|
|
|
|
typedef struct r_syscall_t {
|
|
FILE *fd;
|
|
// TODO char *arch;
|
|
// TODO char *os;
|
|
RSyscallRegs *regs;
|
|
RSyscallItem *sysptr;
|
|
RSyscallPort *sysport;
|
|
PrintfCallback printf;
|
|
} RSyscall;
|
|
|
|
/* plugin struct */
|
|
typedef struct r_syscall_plugin_t {
|
|
char *name;
|
|
char *arch;
|
|
char *os;
|
|
char *desc;
|
|
int bits;
|
|
int nargs;
|
|
struct r_syscall_args_t *args;
|
|
struct list_head list;
|
|
} RSyscallPlugin;
|
|
|
|
typedef struct r_syscall_arch_plugin_t {
|
|
char *name;
|
|
char *arch;
|
|
char *desc;
|
|
int *bits;
|
|
int nargs;
|
|
struct r_syscall_args_t **args;
|
|
struct list_head list;
|
|
} RSyscallArchPlugin;
|
|
|
|
#ifdef R_API
|
|
R_API RSyscall *r_syscall_new();
|
|
R_API void r_syscall_free(RSyscall *ctx);
|
|
R_API int r_syscall_setup(RSyscall *ctx, const char *arch, const char *os);
|
|
R_API int r_syscall_setup_file(RSyscall *ctx, const char *path);
|
|
R_API RSyscallItem *r_syscall_get(RSyscall *ctx, int num, int swi);
|
|
R_API int r_syscall_get_num(RSyscall *ctx, const char *str);
|
|
R_API RSyscallItem *r_syscall_get_n(RSyscall *ctx, int n); // broken iterator.. must remove
|
|
R_API const char *r_syscall_get_i(RSyscall *ctx, int num, int swi); // XXX const char *
|
|
R_API const char *r_syscall_reg(RSyscall *s, int idx, int num);
|
|
R_API void r_syscall_list(RSyscall *ctx);
|
|
#endif
|
|
|
|
#endif
|