forked from 360trev/ME7Sum
-
Notifications
You must be signed in to change notification settings - Fork 19
/
utils.h
109 lines (93 loc) · 2.9 KB
/
utils.h
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
/*
Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:
The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF
OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
IN THE SOFTWARE.
*/
#ifndef _UTILS_H
#define _UTILS_H
#include <string.h>
#include <stdint.h>
#include <limits.h>
#ifdef _WIN32
#include <windows.h>
#ifndef PATH_MAX
#define PATH_MAX MAX_PATH
#endif
#endif
#include "str.h"
enum Padding {
PADDING_NONE=0,
PADDING_00,
PADDING_FF,
PADDING_TRY_512K_CRC,
PADDING_DOUBLED
};
struct ImageHandle {
union {
// uint32_t *u32;
uint16_t *u16;
uint8_t *u8;
char *s;
void *p;
} d;
size_t len;
enum Padding pad;
int bootrom_whitelist;
char filename[PATH_MAX];
};
/*
* If htole16() is missing, let's assume that other *le*() functions
* are also missing.
*
* OpenBSD - htole16 & 32 exist, but not le16toh etc
*/
#if defined(__OpenBSD__)
#define le16toh(x) htole16(x)
#define le32toh(x) htole32(x)
#endif
#if !defined(htole16)
#if __BYTE_ORDER == __LITTLE_ENDIAN
#define le32toh(x) (x)
#define le16toh(x) (x)
#define htole32(x) (x)
#define htole16(x) (x)
#else
#define le32toh(x) __bswap_32(x)
#define htole16(x) __bswap_16(x)
#define le32toh(x) __bswap_32(x)
#define htole16(x) __bswap_16(x)
#endif
#endif
// they're the same.
#define memcpy_to_le32 memcpy_from_le32
#if __BYTE_ORDER == __LITTLE_ENDIAN
#define memcpy_from_le32(dest, src, len) \
memcpy(dest, src, len)
#else
#define memcpy_from_le32(dest, src, len) { \
int i; \
for (i=0;i<len/4;i++) \
((uint32_t *)dest)[i] = __bswap_32(((uint32_t *)src)[i]); \
}
#endif
int iload_file(struct ImageHandle *ih, const char *fname, int rw, struct strbuf *buf);
int ifree_file(struct ImageHandle *ih);
int save_file(const char *filename, const uint8_t *filebuf, size_t filelen, struct strbuf *buf);
uint8_t *load_file(const char *filename, size_t *filelen, struct strbuf *buf);
int search_image(const struct ImageHandle *ih, size_t start, const void *needle, const void *mask, int len, int align);
void hexdump(const uint8_t *buf, int len, const char *end);
#endif