forked from chenxiaolong/DualBootPatcher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbootimg_compare.cpp
211 lines (184 loc) · 6.19 KB
/
bootimg_compare.cpp
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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
/*
* Copyright (C) 2017 Andrew Gunnerson <[email protected]>
*
* This file is part of DualBootPatcher
*
* DualBootPatcher is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* DualBootPatcher is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with DualBootPatcher. If not, see <http://www.gnu.org/licenses/>.
*/
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <getopt.h>
#include "mbbootimg/entry.h"
#include "mbbootimg/header.h"
#include "mbbootimg/reader.h"
static void usage(FILE *stream, const char *prog_name)
{
fprintf(stream, "Usage: %s <file1> <file2>\n"
"\n"
"Exits with:\n"
" 0 if boot images are equal\n"
" 1 if an error occurs\n"
" 2 if boot images are not equal\n",
prog_name);
}
int main(int argc, char *argv[])
{
int opt;
static const char short_options[] = "h";
static struct option long_options[] = {
{"help", no_argument, nullptr, 'h'},
{nullptr, 0, nullptr, 0},
};
int long_index = 0;
while ((opt = getopt_long(argc, argv, short_options,
long_options, &long_index)) != -1) {
switch (opt) {
case 'h':
usage(stdout, argv[0]);
return EXIT_SUCCESS;
default:
usage(stderr, argv[0]);
return EXIT_FAILURE;
}
}
if (argc - optind != 2) {
usage(stderr, argv[0]);
return EXIT_FAILURE;
}
using namespace mb::bootimg;
const char *filename1 = argv[optind];
const char *filename2 = argv[optind + 1];
Reader reader1;
Reader reader2;
Header header1;
Header header2;
Entry entry1;
Entry entry2;
size_t entries = 0;
// Set up reader formats
auto ret = reader1.enable_format_all();
if (!ret) {
fprintf(stderr, "Failed to enable all boot image formats: %s\n",
ret.error().message().c_str());
return EXIT_FAILURE;
}
ret = reader2.enable_format_all();
if (!ret) {
fprintf(stderr, "Failed to enable all boot image formats: %s\n",
ret.error().message().c_str());
return EXIT_FAILURE;
}
// Open boot images
ret = reader1.open_filename(filename1);
if (!ret) {
fprintf(stderr, "%s: Failed to open boot image for reading: %s\n",
filename1, ret.error().message().c_str());
return EXIT_FAILURE;
}
ret = reader2.open_filename(filename2);
if (!ret) {
fprintf(stderr, "%s: Failed to open boot image for reading: %s\n",
filename2, ret.error().message().c_str());
return EXIT_FAILURE;
}
// Read headers
ret = reader1.read_header(header1);
if (!ret) {
fprintf(stderr, "%s: Failed to read header: %s\n",
filename1, ret.error().message().c_str());
return EXIT_FAILURE;
}
ret = reader2.read_header(header2);
if (!ret) {
fprintf(stderr, "%s: Failed to read header: %s\n",
filename2, ret.error().message().c_str());
return EXIT_FAILURE;
}
// Compare headers
if (header1 != header2) {
return 2;
}
// Count entries in first boot image
{
while (true) {
ret = reader1.read_entry(entry1);
if (!ret) {
if (ret.error() == ReaderError::EndOfEntries) {
break;
}
fprintf(stderr, "%s: Failed to read entry: %s\n",
filename1, ret.error().message().c_str());
return EXIT_FAILURE;
}
++entries;
}
}
// Compare each entry in second image to first
{
while (true) {
ret = reader2.read_entry(entry2);
if (!ret) {
if (ret.error() == ReaderError::EndOfEntries) {
break;
}
fprintf(stderr, "%s: Failed to read entry: %s",
filename2, ret.error().message().c_str());
return EXIT_FAILURE;
}
if (entries == 0) {
// Too few entries in second image
return 2;
}
--entries;
// Find the same entry in first image
ret = reader1.go_to_entry(entry1, *entry2.type());
if (!ret) {
if (ret.error() == ReaderError::EndOfEntries) {
// Cannot be equal if entry is missing
return 2;
} else {
fprintf(stderr, "%s: Failed to seek to entry: %s\n",
filename1, ret.error().message().c_str());
return EXIT_FAILURE;
}
}
// Compare data
char buf1[10240];
char buf2[10240];
while (true) {
auto n1 = reader1.read_data(buf1, sizeof(buf1));
if (!n1) {
fprintf(stderr, "%s: Failed to read data: %s\n", filename1,
n1.error().message().c_str());
return EXIT_FAILURE;
} else if (n1.value() == 0) {
break;
}
auto n2 = reader2.read_data(buf2, n1.value());
if (!n2) {
fprintf(stderr, "%s: Failed to read data: %s\n", filename2,
n2.error().message().c_str());
return EXIT_FAILURE;
}
if (n1.value() != n2.value()
|| memcmp(buf1, buf2, n1.value()) != 0) {
// Data is not equivalent
return 2;
}
}
}
}
return EXIT_SUCCESS;
}