#include <rz_types.h>
#include <rz_util.h>
#include <rz_lib.h>
#include <rz_bin.h>
#include <string.h>
Go to the source code of this file.
◆ N_DATA
◆ N_TEXT
◆ baddr()
◆ entries()
Definition at line 137 of file bin_dol.c.
142 addr->vaddr = (
ut64)dol->entrypoint;
RZ_API RZ_OWN RzList * rz_list_new(void)
Returns a new initialized RzList pointer (free method is not initialized)
RZ_API RZ_BORROW RzListIter * rz_list_append(RZ_NONNULL RzList *list, void *data)
Appends at the end of the list a new element.
#define rz_return_val_if_fail(expr, val)
ut64(WINAPI *w32_GetEnabledXStateFeatures)()
References addr, rz_bin_object_t::bin_obj, NULL, rz_bin_file_t::o, rz_list_append(), rz_list_new(), RZ_NEW0, rz_return_val_if_fail, and ut64().
◆ info()
Definition at line 148 of file bin_dol.c.
return strdup("=SP r13\n" "=LR r14\n" "=PC r15\n" "=A0 r0\n" "=A1 r1\n" "=A2 r2\n" "=A3 r3\n" "=ZF zf\n" "=SF nf\n" "=OF vf\n" "=CF cf\n" "=SN or0\n" "gpr lr .32 56 0\n" "gpr pc .32 60 0\n" "gpr cpsr .32 64 0 ____tfiae_________________qvczn\n" "gpr or0 .32 68 0\n" "gpr tf .1 64.5 0 thumb\n" "gpr ef .1 64.9 0 endian\n" "gpr jf .1 64.24 0 java\n" "gpr qf .1 64.27 0 sticky_overflow\n" "gpr vf .1 64.28 0 overflow\n" "gpr cf .1 64.29 0 carry\n" "gpr zf .1 64.30 0 zero\n" "gpr nf .1 64.31 0 negative\n" "gpr itc .4 64.10 0 if_then_count\n" "gpr gef .4 64.16 0 great_or_equal\n" "gpr r0 .32 0 0\n" "gpr r1 .32 4 0\n" "gpr r2 .32 8 0\n" "gpr r3 .32 12 0\n" "gpr r4 .32 16 0\n" "gpr r5 .32 20 0\n" "gpr r6 .32 24 0\n" "gpr r7 .32 28 0\n" "gpr r8 .32 32 0\n" "gpr r9 .32 36 0\n" "gpr r10 .32 40 0\n" "gpr r11 .32 44 0\n" "gpr r12 .32 48 0\n" "gpr r13 .32 52 0\n" "gpr r14 .32 56 0\n" "gpr r15 .32 60 0\n" "gpr r16 .32 64 0\n" "gpr r17 .32 68 0\n")
References rz_bin_info_t::arch, rz_bin_info_t::big_endian, rz_bin_info_t::bits, rz_bin_file_t::buf, rz_bin_info_t::file, rz_bin_file_t::file, rz_bin_info_t::has_va, rz_bin_info_t::machine, NULL, rz_bin_info_t::os, RZ_NEW0, rz_return_val_if_fail, strdup(), and rz_bin_info_t::type.
◆ load_buffer()
Definition at line 57 of file bin_dol.c.
61 DolHeader *dol =
RZ_NEW0(DolHeader);
70 char *
ext = strstr(lowername,
".dol");
RZ_API void Ht_() free(HtName_(Ht) *ht)
RZ_API st64 rz_buf_fread_at(RZ_NONNULL RzBuffer *b, ut64 addr, RZ_NONNULL ut8 *buf, RZ_NONNULL const char *fmt, int n)
...
RZ_API ut64 rz_buf_size(RZ_NONNULL RzBuffer *b)
Return the size of the buffer.
RZ_API void rz_str_case(char *str, bool up)
References rz_bin_object_t::bin_obj, rz_bin_file_t::buf, ext, rz_bin_file_t::file, free(), rz_buf_fread_at(), rz_buf_size(), RZ_NEW0, rz_str_case(), and strdup().
◆ RZ_PACKED()
Definition at line 27 of file bin_dol.c.
46 bool one =
r ==
sizeof(
tmp) && !memcmp(
tmp,
"\x00\x00\x01\x00\x00\x00",
sizeof(
tmp));
52 return sizeof(
tmp) && !memcmp(
tmp,
"\x00\x00\x00\x00\x00\x00",
sizeof(
tmp));
static bool check_buffer(RzBuffer *buf)
RZ_API st64 rz_buf_read_at(RZ_NONNULL RzBuffer *b, ut64 addr, RZ_NONNULL RZ_OUT ut8 *buf, ut64 len)
Read len bytes of the buffer at the specified address.
References N_DATA, and N_TEXT.
◆ sections()
Definition at line 86 of file bin_dol.c.
98 if (!dol->text_paddr[
i] || !dol->text_vaddr[
i]) {
103 s->paddr = dol->text_paddr[
i];
104 s->vaddr = dol->text_vaddr[
i];
105 s->size = dol->text_size[
i];
112 if (!dol->data_paddr[
i] || !dol->data_vaddr[
i]) {
117 s->paddr = dol->data_paddr[
i];
118 s->vaddr = dol->data_vaddr[
i];
119 s->size = dol->data_size[
i];
128 s->vaddr = dol->bss_addr;
129 s->size = dol->bss_size;
RZ_API char * rz_str_newf(const char *fmt,...) RZ_PRINTF_CHECK(1
RZ_API int rz_str_rwx(const char *str)
References rz_bin_object_t::bin_obj, i, N_DATA, N_TEXT, NULL, rz_bin_file_t::o, rz_list_append(), rz_list_new(), RZ_NEW0, rz_return_val_if_fail, rz_str_newf(), rz_str_rwx(), s, and strdup().
◆ rizin_plugin
Initial value:= {
}
RzBinPlugin rz_bin_plugin_dol
Definition at line 184 of file bin_dol.c.
◆ rz_bin_plugin_dol
Initial value:= {
.name = "dol",
.desc = "Nintendo Dolphin binary format",
.license = "BSD",
}
RZ_API RZ_OWN RzList * rz_bin_maps_of_file_sections(RZ_NONNULL RzBinFile *binfile)
Create a list of RzBinMap from RzBinSections queried from the given file.
static bool load_buffer(RzBinFile *bf, RzBinObject *obj, RzBuffer *buf, Sdb *sdb)
static RzBinInfo * info(RzBinFile *bf)
static ut64 baddr(RzBinFile *bf)
static RzList * entries(RzBinFile *bf)
static RzList * sections(RzBinFile *bf)
Definition at line 170 of file bin_dol.c.