mirror of
https://github.com/radareorg/radare2.git
synced 2024-12-16 01:36:45 +00:00
c3922f6131
* Added iter.h with simplified r_iter in cpp macros * Some fixes and enhacements in r_iter
77 lines
1.5 KiB
C
77 lines
1.5 KiB
C
#ifndef _INCLUDE_R_SYSCALL_H_
|
|
#define _INCLUDE_R_SYSCALL_H_
|
|
|
|
#include "r_types.h"
|
|
#include "list.h"
|
|
|
|
struct r_syscall_list_t {
|
|
const char *name;
|
|
int swi;
|
|
int num;
|
|
int args;
|
|
char *sargs;
|
|
};
|
|
|
|
|
|
// TODO: use this as arg to store state :)
|
|
struct r_syscall_t {
|
|
#if 0
|
|
int arch; // XXX char *??
|
|
int os;
|
|
#endif
|
|
FILE *fd;
|
|
struct r_syscall_list_t *sysptr;
|
|
};
|
|
|
|
enum {
|
|
R_SYSCALL_OS_LINUX = 0,
|
|
R_SYSCALL_OS_NETBSD,
|
|
R_SYSCALL_OS_OPENBSD,
|
|
R_SYSCALL_OS_FREEBSD,
|
|
R_SYSCALL_OS_DARWIN
|
|
};
|
|
|
|
enum {
|
|
R_SYSCALL_ARCH_X86 = 0,
|
|
R_SYSCALL_ARCH_PPC,
|
|
R_SYSCALL_ARCH_ARM,
|
|
R_SYSCALL_ARCH_MIPS,
|
|
R_SYSCALL_ARCH_SPARC
|
|
};
|
|
|
|
//#define R_SYSCALL_CTX struct r_syscall_t
|
|
struct r_syscall_t *r_syscall_new();
|
|
void r_syscall_free(struct r_syscall_t *ctx);
|
|
void r_syscall_init(struct r_syscall_t *ctx);
|
|
|
|
int r_syscall_setup(struct r_syscall_t *ctx, int arch, int os);
|
|
int r_syscall_setup_file(struct r_syscall_t *ctx, const char *path);
|
|
int r_syscall_get(struct r_syscall_t *ctx, const char *str);
|
|
struct r_syscall_list_t *r_syscall_get_n(struct r_syscall_t *ctx, int n);
|
|
const char *r_syscall_get_i(struct r_syscall_t *ctx, int num, int swi);
|
|
void r_syscall_list(struct r_syscall_t *ctx);
|
|
|
|
/* plugin struct */
|
|
struct r_syscall_handle_t {
|
|
char *name;
|
|
char *arch;
|
|
char *os;
|
|
char *desc;
|
|
int bits;
|
|
int nargs;
|
|
struct r_syscall_args_t *args;
|
|
struct list_head list;
|
|
};
|
|
|
|
struct r_syscall_arch_handle_t {
|
|
char *name;
|
|
char *arch;
|
|
char *desc;
|
|
int *bits;
|
|
int nargs;
|
|
struct r_syscall_args_t **args;
|
|
struct list_head list;
|
|
};
|
|
|
|
#endif
|