blob: 35501c227c383876434110cbf95da35e8317f5b6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
/*****************************************************************************/
/* pemagination: a (virtual) tour into portable bits and executable bytes */
/* Copyright (C) 2013--2017 Z. Gilboa */
/* Released under GPLv2 and GPLv3; see COPYING.PEMAGINE. */
/*****************************************************************************/
#include <psxtypes/psxtypes.h>
#include <pemagine/pemagine.h>
#define PE_STR_MAX_SYMBOL_LEN_ALLOWED (uint32_t)0x10000
#define IN_LOAD_ORDER_MODULE_LIST_OFFSET (intptr_t)0x00
#define IN_MEMORY_ORDER_MODULE_LIST_OFFSET (intptr_t)0x01 * sizeof(struct pe_list_entry)
#define IN_INITIALIZATION_ORDER_MODULE_LIST_OFFSET (intptr_t)0x02 * sizeof(struct pe_list_entry)
struct pe_block {
uint32_t rva;
uint32_t size;
};
static __inline__ intptr_t pe_impl_strlen_ansi(const char * str)
{
const char * ch;
const char * upper_bound;
upper_bound = str + PE_STR_MAX_SYMBOL_LEN_ALLOWED;
for (ch=str; *ch && ch<upper_bound; )
ch++;
return (ch < upper_bound)
? ch - str
: -1;
}
static __inline__ intptr_t pe_impl_strlen_utf16(const wchar16_t * str)
{
const wchar16_t * wch;
const wchar16_t * upper_bound;
upper_bound = str + PE_STR_MAX_SYMBOL_LEN_ALLOWED;
for (wch=str; *wch && wch<upper_bound; )
wch++;
if (wch < upper_bound)
return (wch - str) * sizeof(wchar16_t);
else
return -1;
}
static __inline__ wchar16_t pe_impl_utf16_char_to_lower(const wchar16_t c)
{
return ((c >= 'A') && (c <= 'Z'))
? c + 'a' - 'A'
: c;
}
|