Rizin
unix-like reverse engineering framework and cli tools
rz_mem.h File Reference
#include <rz_types.h>

Go to the source code of this file.

Classes

struct  rz_mem_pool_t
 

Typedefs

typedef struct rz_mem_pool_t RMemoryPool
 

Functions

RZ_API ut64 rz_mem_get_num (const ut8 *b, int size)
 
RZ_API void * rz_mem_dup (const void *s, int l)
 
RZ_API void * rz_mem_alloc (int sz)
 
RZ_API void rz_mem_free (void *)
 
RZ_API void rz_mem_memzero (void *, size_t)
 
RZ_API void rz_mem_reverse (ut8 *b, int l)
 
RZ_API int rz_mem_protect (void *ptr, int size, const char *prot)
 
RZ_API int rz_mem_set_num (ut8 *dest, int dest_size, ut64 num)
 
RZ_API int rz_mem_eq (const ut8 *a, const ut8 *b, int len)
 Compares memory a with b over len bytes. More...
 
RZ_API void rz_mem_copybits (ut8 *dst, const ut8 *src, int bits)
 
RZ_API void rz_mem_copybits_delta (ut8 *dst, int doff, const ut8 *src, int soff, int bits)
 
RZ_API void rz_mem_copyloop (ut8 *dest, const ut8 *orig, int dsize, int osize)
 
RZ_API void * rz_mem_copy (void *dest, size_t dmax, const void *src, size_t smax)
 
RZ_API void rz_mem_swaporcopy (ut8 *dest, const ut8 *src, int len, bool big_endian)
 
RZ_API void rz_mem_swapendian (ut8 *dest, const ut8 *orig, int size)
 
RZ_API int rz_mem_cmp_mask (const ut8 *dest, const ut8 *orig, const ut8 *mask, int len)
 
RZ_API const ut8rz_mem_mem (const ut8 *haystack, int hlen, const ut8 *needle, int nlen)
 
RZ_API const ut8rz_mem_mem_aligned (const ut8 *haystack, int hlen, const ut8 *needle, int nlen, int align)
 
RZ_API int rz_mem_count (const ut8 **addr)
 
RZ_API bool rz_mem_is_printable (const ut8 *a, int la)
 
RZ_API bool rz_mem_is_zero (const ut8 *b, int l)
 

Typedef Documentation

◆ RMemoryPool

typedef struct rz_mem_pool_t RMemoryPool

Function Documentation

◆ rz_mem_alloc()

RZ_API void* rz_mem_alloc ( int  sz)

Definition at line 357 of file mem.c.

357  {
358  return calloc(sz, 1);
359 }
void * calloc(size_t number, size_t size)
Definition: malloc.c:102

References calloc().

Referenced by parse_type_string().

◆ rz_mem_cmp_mask()

RZ_API int rz_mem_cmp_mask ( const ut8 dest,
const ut8 orig,
const ut8 mask,
int  len 
)

Definition at line 58 of file mem.c.

58  {
59  ut8 *mdest = malloc(len);
60  if (!mdest) {
61  return -1;
62  }
63  ut8 *morig = malloc(len);
64  if (!morig) {
65  free(mdest);
66  return -1;
67  }
68  int i;
69  for (i = 0; i < len; i++) {
70  mdest[i] = dest[i] & mask[i];
71  morig[i] = orig[i] & mask[i];
72  }
73  int ret = memcmp(mdest, morig, len);
74  free(mdest);
75  free(morig);
76  return ret;
77 }
size_t len
Definition: 6502dis.c:15
#define mask()
lzma_index ** i
Definition: index.h:629
RZ_API void Ht_() free(HtName_(Ht) *ht)
Definition: ht_inc.c:130
uint8_t ut8
Definition: lh5801.h:11
void * malloc(size_t size)
Definition: malloc.c:123
char * dest
Definition: lz4.h:697

References dest, free(), i, len, malloc(), and mask.

◆ rz_mem_copy()

RZ_API void* rz_mem_copy ( void *  dest,
size_t  dmax,
const void *  src,
size_t  smax 
)

Definition at line 50 of file mem.c.

50  {
51  if (!smax || !dmax) {
52  return NULL;
53  }
55  return memcpy(dest, src, (smax < dmax) ? smax : dmax);
56 }
lzma_index * src
Definition: index.h:567
#define NULL
Definition: cris-opc.c:27
memcpy(mem, inblock.get(), min(CONTAINING_RECORD(inblock.get(), MEMBLOCK, data) ->size, size))
#define rz_return_val_if_fail(expr, val)
Definition: rz_assert.h:108

References dest, memcpy(), NULL, rz_return_val_if_fail, and src.

Referenced by rz_debug_add_checkpoint(), trace_hook_mem_read(), and trace_hook_mem_write().

◆ rz_mem_copybits()

RZ_API void rz_mem_copybits ( ut8 dst,
const ut8 src,
int  bits 
)

Definition at line 79 of file mem.c.

79  {
80  ut8 srcmask, dstmask;
81  int bytes = (int)(bits / 8);
82  bits = bits % 8;
83  memcpy(dst, src, bytes);
84  if (bits) {
85  srcmask = dstmask = 0;
86  switch (bits) {
87  case 1:
88  srcmask = 0x80;
89  dstmask = 0x7f;
90  break;
91  case 2:
92  srcmask = 0xc0;
93  dstmask = 0x3f;
94  break;
95  case 3:
96  srcmask = 0xe0;
97  dstmask = 0x1f;
98  break;
99  case 4:
100  srcmask = 0xf0;
101  dstmask = 0x0f;
102  break;
103  case 5:
104  srcmask = 0xf8;
105  dstmask = 0x07;
106  break;
107  case 6:
108  srcmask = 0xfc;
109  dstmask = 0x03;
110  break;
111  case 7:
112  srcmask = 0xfe;
113  dstmask = 0x01;
114  break;
115  }
116  dst[bytes] = ((dst[bytes] & dstmask) | (src[bytes] & srcmask));
117  }
118 }
static ut8 bytes[32]
Definition: asm_arc.c:23
int bits(struct state *s, int need)
Definition: blast.c:72
char * dst
Definition: lz4.h:724
static int
Definition: sfsocketcall.h:114

References bits(), bytes, dst, int, memcpy(), and src.

Referenced by rz_reg_set_double(), rz_reg_set_longdouble(), and rz_reg_set_value().

◆ rz_mem_copybits_delta()

RZ_API void rz_mem_copybits_delta ( ut8 dst,
int  doff,
const ut8 src,
int  soff,
int  bits 
)

Definition at line 141 of file mem.c.

141  {
142  int i;
143  if (doff < 0 || soff < 0 || !dst || !src) {
144  return;
145  }
146  for (i = 0; i < bits; i++) {
147  bool c = readbit(src, i + soff);
148  writebit(dst, i + doff, c);
149  }
150 }
#define c(i)
Definition: sha256.c:43
static void writebit(ut8 *dst, int i, bool c)
Definition: mem.c:127
static char readbit(const ut8 *src, int bitoffset)
Definition: mem.c:120

References bits(), c, dst, i, readbit(), src, and writebit().

Referenced by rz_asm_disassemble(), and rz_read_me27().

◆ rz_mem_copyloop()

RZ_API void rz_mem_copyloop ( ut8 dest,
const ut8 orig,
int  dsize,
int  osize 
)

Definition at line 41 of file mem.c.

41  {
42  int i = 0, j;
43  while (i < dsize) {
44  for (j = 0; j < osize && i < dsize; j++) {
45  dest[i++] = orig[j];
46  }
47  }
48 }

References dest, and i.

Referenced by rz_core_write_block().

◆ rz_mem_count()

RZ_API int rz_mem_count ( const ut8 **  addr)

Definition at line 15 of file mem.c.

15  {
16  int i = 0;
17  while (*addr++) {
18  i++;
19  }
20  return i;
21 }
static int addr
Definition: z80asm.c:58

References addr, and i.

◆ rz_mem_dup()

RZ_API void* rz_mem_dup ( const void *  s,
int  l 
)

Definition at line 319 of file mem.c.

319  {
320  void *d = malloc(l);
321  if (d) {
322  memcpy(d, s, l);
323  }
324  return d;
325 }
static RzSocket * s
Definition: rtr.c:28
#define d(i)
Definition: sha256.c:44

References d, malloc(), memcpy(), and s.

Referenced by copy_into_flagitem_list(), debug_qnx_read_at(), DEFINE_HANDLE_TS_FCN_AND_SYMBOL(), drain(), rz_bin_import_clone(), rz_core_cmd_foreach3(), rz_core_cmp_mem_data(), and rz_io_write_at().

◆ rz_mem_eq()

RZ_API int rz_mem_eq ( const ut8 a,
const ut8 b,
int  len 
)

Compares memory a with b over len bytes.

Parameters
aPointer to memory a.
bPointer to memory b.
lenNumber of bytes to compare.
Returns
bool True if memory bytes in memory a and b match over len bytes. False otherwise.

Definition at line 31 of file mem.c.

31  {
32  register int i;
33  for (i = 0; i < len; i++) {
34  if (a[i] != b[i]) {
35  return false;
36  }
37  }
38  return true;
39 }
#define b(i)
Definition: sha256.c:42
#define a(i)
Definition: sha256.c:41

References a, b, i, and len.

Referenced by rz_core_cmp_mem_data(), rz_core_cmp_mem_mem(), and rz_str_strchr().

◆ rz_mem_free()

RZ_API void rz_mem_free ( void *  p)

Definition at line 361 of file mem.c.

361  {
362  free(p);
363 }
void * p
Definition: libc.cpp:67

References free(), and p.

Referenced by rz_il_vm_add_mem().

◆ rz_mem_get_num()

RZ_API ut64 rz_mem_get_num ( const ut8 b,
int  size 
)

Definition at line 152 of file mem.c.

152  {
153  // LITTLE ENDIAN is the default for streams
154  switch (size) {
155  case 1:
156  return rz_read_le8(b);
157  case 2:
158  return rz_read_le16(b);
159  case 4:
160  return rz_read_le32(b);
161  case 8:
162  return rz_read_le64(b);
163  }
164  return 0LL;
165 }
voidpf void uLong size
Definition: ioapi.h:138
static ut16 rz_read_le16(const void *src)
Definition: rz_endian.h:206
static ut32 rz_read_le32(const void *src)
Definition: rz_endian.h:239
static ut8 rz_read_le8(const void *src)
Definition: rz_endian.h:187
static ut64 rz_read_le64(const void *src)
Definition: rz_endian.h:266

References b, rz_read_le16(), rz_read_le32(), rz_read_le64(), and rz_read_le8().

Referenced by is_number(), is_pointer(), and rz_core_analysis_data().

◆ rz_mem_is_printable()

RZ_API bool rz_mem_is_printable ( const ut8 a,
int  la 
)

Definition at line 337 of file mem.c.

337  {
338  int i;
339  for (i = 0; i < la; i++) {
340  if (a[i] != '\n' && a[i] != '\t' && !IS_PRINTABLE(a[i])) {
341  return false;
342  }
343  }
344  return true;
345 }
#define IS_PRINTABLE(x)
Definition: rz_str_util.h:10

References a, i, and IS_PRINTABLE.

◆ rz_mem_is_zero()

RZ_API bool rz_mem_is_zero ( const ut8 b,
int  l 
)

Definition at line 347 of file mem.c.

347  {
348  int i;
349  for (i = 0; i < l; i++) {
350  if (b[i]) {
351  return false;
352  }
353  }
354  return true;
355 }

References b, and i.

◆ rz_mem_mem()

RZ_API const ut8* rz_mem_mem ( const ut8 haystack,
int  hlen,
const ut8 needle,
int  nlen 
)

Definition at line 246 of file mem.c.

246  {
247  int i, until = hlen - nlen + 1;
248  if (hlen < 1 || nlen < 1) {
249  return NULL;
250  }
251  for (i = 0; i < until; i++) {
252  if (!memcmp(haystack + i, needle, nlen)) {
253  return haystack + i;
254  }
255  }
256  return NULL;
257 }

References i, and NULL.

Referenced by binutils_assemble(), findPair(), rz_cmd_analysis(), rz_cons_memcat(), rz_cons_visual_write(), rz_str_replace_thunked(), rz_str_stripLine(), and visual_search().

◆ rz_mem_mem_aligned()

RZ_API const ut8* rz_mem_mem_aligned ( const ut8 haystack,
int  hlen,
const ut8 needle,
int  nlen,
int  align 
)

Definition at line 260 of file mem.c.

260  {
261  int i, until = hlen - nlen + 1;
262  if (align < 1) {
263  align = 1;
264  }
265  if (hlen < 1 || nlen < 1) {
266  return NULL;
267  }
268  if (align > 1) {
269  until -= (until % align);
270  }
271  for (i = 0; i < until; i += align) {
272  if (!memcmp(haystack + i, needle, nlen)) {
273  return haystack + i;
274  }
275  }
276  return NULL;
277 }

References i, and NULL.

Referenced by ds_esc_str(), get_import_addr_mips(), and rz_str_escape_utf().

◆ rz_mem_memzero()

RZ_API void rz_mem_memzero ( void *  dst,
size_t  l 
)

Definition at line 365 of file mem.c.

365  {
366 #ifdef _MSC_VER
367  RtlSecureZeroMemory(dst, l);
368 #else
369 #if HAVE_EXPLICIT_BZERO
370  explicit_bzero(dst, l);
371 #elif HAVE_EXPLICIT_MEMSET
372  (void)explicit_memset(dst, 0, l);
373 #else
374  memset(dst, 0, l);
375  __asm__ volatile("" ::"r"(dst)
376  : "memory");
377 #endif
378 #endif
379 }
return memset(p, 0, total)

References dst, and memset().

Referenced by rz_MD5Final(), SHA256_End(), SHA256_Init(), SHA512_End(), SHA512_Final(), and SHA512_Init().

◆ rz_mem_protect()

RZ_API int rz_mem_protect ( void *  ptr,
int  size,
const char *  prot 
)

Definition at line 279 of file mem.c.

279  {
280 #if __UNIX__
281  int p = 0;
282  if (strchr(prot, 'x')) {
283  p |= PROT_EXEC;
284  }
285  if (strchr(prot, 'r')) {
286  p |= PROT_READ;
287  }
288  if (strchr(prot, 'w')) {
289  p |= PROT_WRITE;
290  }
291  if (mprotect(ptr, size, p) == -1) {
292  return false;
293  }
294 #elif __WINDOWS__
295  int r, w, x;
296  DWORD p = PAGE_NOACCESS;
297  r = strchr(prot, 'r') ? 1 : 0;
298  w = strchr(prot, 'w') ? 1 : 0;
299  x = strchr(prot, 'x') ? 1 : 0;
300  if (w && x) {
301  return false;
302  }
303  if (x) {
304  p = PAGE_EXECUTE_READ;
305  } else if (w) {
306  p = PAGE_READWRITE;
307  } else if (r) {
308  p = PAGE_READONLY;
309  }
310  if (!VirtualProtect(ptr, size, p, NULL)) {
311  return false;
312  }
313 #else
314 #warning Unknown platform
315 #endif
316  return true;
317 }
#define r
Definition: crypto_rc6.c:12
#define w
Definition: crypto_rc6.c:13
static static sync static getppid static getegid const char static filename char static len const char char static bufsiz static mask static vfork mprotect
Definition: sflib.h:71
static static fork const void static count static fd const char const char static newpath char char char static envp time_t static t const char static mode static whence const char static dir time_t static t unsigned static seconds const char struct utimbuf static buf static inc static sig const char static mode static oldfd struct tms static buf static getgid static geteuid const char static filename static arg static mask struct ustat static ubuf static getppid static setsid static egid sigset_t static set struct timeval struct timezone static tz fd_set fd_set fd_set struct timeval static timeout const char char static bufsiz const char static swapflags void prot
Definition: sflib.h:115
int x
Definition: mipsasm.c:20
#define PROT_READ
Definition: sftypes.h:95
#define PROT_WRITE
Definition: sftypes.h:96
#define PROT_EXEC
Definition: sftypes.h:97
DWORD

References DWORD, mprotect, NULL, p, prot, PROT_EXEC, PROT_READ, PROT_WRITE, r, w, and x.

Referenced by rz_sys_run().

◆ rz_mem_reverse()

RZ_API void rz_mem_reverse ( ut8 b,
int  l 
)

Definition at line 327 of file mem.c.

327  {
328  ut8 tmp;
329  int i, end = l / 2;
330  for (i = 0; i < end; i++) {
331  tmp = b[i];
332  b[i] = b[l - i - 1];
333  b[l - i - 1] = tmp;
334  }
335 }

References b, test_evm::end, i, and autogen_x86imm::tmp.

Referenced by rz_cmd_analysis().

◆ rz_mem_set_num()

RZ_API int rz_mem_set_num ( ut8 dest,
int  dest_size,
ut64  num 
)

Definition at line 168 of file mem.c.

168  {
169  // LITTLE ENDIAN is the default for streams
170  switch (dest_size) {
171  case 1:
173  break;
174  case 2:
176  break;
177  case 4:
179  break;
180  case 8:
182  break;
183  default:
184  return false;
185  }
186  return true;
187 }
uint16_t ut16
uint32_t ut32
static static fork const void static count static fd const char const char static newpath char char char static envp time_t static t const char static mode static whence const char static dir time_t static t unsigned static seconds const char struct utimbuf static buf static inc static sig const char static mode static oldfd struct tms static buf static getgid static geteuid const char static filename static arg static mask struct ustat static ubuf static getppid static setsid static egid sigset_t static set struct timeval struct timezone static tz fd_set fd_set fd_set struct timeval static timeout const char char static bufsiz const char static swapflags void static offset const char static length static mode static who const char struct statfs static buf unsigned unsigned num
Definition: sflib.h:126
static void rz_write_le32(void *dest, ut32 val)
Definition: rz_endian.h:256
static void rz_write_le16(void *dest, ut16 val)
Definition: rz_endian.h:222
static void rz_write_le64(void *dest, ut64 val)
Definition: rz_endian.h:277
static void rz_write_le8(void *dest, ut8 val)
Definition: rz_endian.h:198
#define UT32_MAX
Definition: rz_types_base.h:99
#define UT8_MAX
#define UT16_MAX

References dest, num, rz_write_le16(), rz_write_le32(), rz_write_le64(), rz_write_le8(), UT16_MAX, UT32_MAX, and UT8_MAX.

Referenced by rz_analysis_value_set_ut64().

◆ rz_mem_swapendian()

RZ_API void rz_mem_swapendian ( ut8 dest,
const ut8 orig,
int  size 
)

Definition at line 202 of file mem.c.

202  {
203  ut8 buffer[8];
204  switch (size) {
205  case 1:
206  *dest = *orig;
207  break;
208  case 2:
209  *buffer = *orig;
210  dest[0] = orig[1];
211  dest[1] = buffer[0];
212  break;
213  case 3:
214  *buffer = *orig;
215  dest[0] = orig[2];
216  dest[1] = orig[1];
217  dest[2] = buffer[0];
218  break;
219  case 4:
220  memcpy(buffer, orig, 4);
221  dest[0] = buffer[3];
222  dest[1] = buffer[2];
223  dest[2] = buffer[1];
224  dest[3] = buffer[0];
225  break;
226  case 8:
227  memcpy(buffer, orig, 8);
228  dest[0] = buffer[7];
229  dest[1] = buffer[6];
230  dest[2] = buffer[5];
231  dest[3] = buffer[4];
232  dest[4] = buffer[3];
233  dest[5] = buffer[2];
234  dest[6] = buffer[1];
235  dest[7] = buffer[0];
236  break;
237  default:
238  if (dest != orig) {
239  memmove(dest, orig, size);
240  }
241  }
242 }
Definition: buffer.h:15

References dest, and memcpy().

Referenced by arm_assemble(), disassemble(), esil_peek_n(), filter(), format_output(), h8300_analysis_jmp(), h8300_analysis_jsr(), and rz_mem_swaporcopy().

◆ rz_mem_swaporcopy()

RZ_API void rz_mem_swaporcopy ( ut8 dest,
const ut8 src,
int  len,
bool  big_endian 
)

Definition at line 192 of file mem.c.

192  {
193  if (big_endian) {
195  } else {
196  memcpy(dest, src, len);
197  }
198 }
RZ_API void rz_mem_swapendian(ut8 *dest, const ut8 *orig, int size)
Definition: mem.c:202

References dest, len, memcpy(), rz_mem_swapendian(), and src.

Referenced by rz_print_hexdump_str(), rz_type_format_double(), and updateAddr().