Rizin
unix-like reverse engineering framework and cli tools
arm.c
Go to the documentation of this file.
1 //
6 // Authors: Igor Pavlov
7 // Lasse Collin
8 //
9 // This file has been put into the public domain.
10 // You can do whatever you want with this file.
11 //
13 
14 #include "simple_private.h"
15 
16 
17 static size_t
18 arm_code(void *simple lzma_attribute((__unused__)),
19  uint32_t now_pos, bool is_encoder,
20  uint8_t *buffer, size_t size)
21 {
22  size_t i;
23  for (i = 0; i + 4 <= size; i += 4) {
24  if (buffer[i + 3] == 0xEB) {
25  uint32_t src = ((uint32_t)(buffer[i + 2]) << 16)
26  | ((uint32_t)(buffer[i + 1]) << 8)
27  | (uint32_t)(buffer[i + 0]);
28  src <<= 2;
29 
30  uint32_t dest;
31  if (is_encoder)
32  dest = now_pos + (uint32_t)(i) + 8 + src;
33  else
34  dest = src - (now_pos + (uint32_t)(i) + 8);
35 
36  dest >>= 2;
37  buffer[i + 2] = (dest >> 16);
38  buffer[i + 1] = (dest >> 8);
39  buffer[i + 0] = dest;
40  }
41  }
42 
43  return i;
44 }
45 
46 
47 static lzma_ret
49  const lzma_filter_info *filters, bool is_encoder)
50 {
52  &arm_code, 0, 4, 4, is_encoder);
53 }
54 
55 
56 extern lzma_ret
60 {
61  return arm_coder_init(next, allocator, filters, true);
62 }
63 
64 
65 extern lzma_ret
69 {
70  return arm_coder_init(next, allocator, filters, false);
71 }
lzma_index ** i
Definition: index.h:629
lzma_index * src
Definition: index.h:567
const lzma_allocator * allocator
Definition: block.h:377
const lzma_filter * filters
Definition: container.h:315
voidpf void uLong size
Definition: ioapi.h:138
char * dest
Definition: lz4.h:697
#define lzma_attribute(attr)
Definition: lzma.h:259
unsigned int uint32_t
Definition: sftypes.h:29
unsigned char uint8_t
Definition: sftypes.h:31
lzma_ret lzma_simple_coder_init(lzma_next_coder *next, const lzma_allocator *allocator, const lzma_filter_info *filters, size_t(*filter)(void *simple, uint32_t now_pos, bool is_encoder, uint8_t *buffer, size_t size), size_t simple_size, size_t unfiltered_max, uint32_t alignment, bool is_encoder)
Definition: simple_coder.c:235
Private definitions for so called simple filters.
Definition: buffer.h:15
Custom functions for memory handling.
Definition: base.h:372
Hold data and function pointers of the next filter in the chain.
Definition: common.h:135
lzma_ret lzma_simple_arm_encoder_init(lzma_next_coder *next, const lzma_allocator *allocator, const lzma_filter_info *filters)
Definition: arm.c:57
static lzma_ret arm_coder_init(lzma_next_coder *next, const lzma_allocator *allocator, const lzma_filter_info *filters, bool is_encoder)
Definition: arm.c:48
lzma_ret lzma_simple_arm_decoder_init(lzma_next_coder *next, const lzma_allocator *allocator, const lzma_filter_info *filters)
Definition: arm.c:66
static size_t arm_code(void *simple lzma_attribute((__unused__)), uint32_t now_pos, bool is_encoder, uint8_t *buffer, size_t size)
Definition: arm.c:18
lzma_ret
Return values used by several functions in liblzma.
Definition: base.h:57