forked from marcominetti/split_updata.pl
-
Notifications
You must be signed in to change notification settings - Fork 1
/
splitupdate
executable file
·228 lines (192 loc) · 5.28 KB
/
splitupdate
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
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
#!/usr/bin/perl
#########################################################################################
#
# File : splitupdate
# Description : Unpack a Huawei X2 'UPDATE.APP' file.
#
# Last Modified : Thu 24 December 2009
# By : McSpoon
#
# Last Modified : Wed 18 June 2010
# By : ZeBadger (z e b a d g e r @ h o t m a i l . c o m)
# Comment : Added filename selection
#
# Last Modified : Wed 19 June 2010
# By : ZeBadger (z e b a d g e r @ h o t m a i l . c o m)
# Comment : Added CRC checking
#
# Last Modified : Sat 20 February 2016
# By : Marco Minetti (m a r c o . m i n e t t i @ n o v e t i c a . o r g)
# Comment : Added filename autodetection and improved logging
#
#########################################################################################
use strict;
use warnings;
my $CRC_CHECK= -e "crc" && -x _;
# Turn on print flushing.
$|++;
# Unsigned integers are 4 bytes.
use constant UINT_SIZE => 4;
# If a filename wasn't specified on the commmand line then
# assume the file to be unpacked is under current directory.
my $FILENAME = undef;
my $matching = '.';
if (@ARGV) {
$FILENAME = $ARGV[0];
if (scalar(@ARGV) >= 2) {
$matching = $ARGV[1];
}
}
open(INFILE, $FILENAME) or die "Cannot open $FILENAME: $!\n";
binmode INFILE;
# Skip the first 92 bytes, they're blank.
#seek(INFILE, 92, 0);
# We'll dump the files into a folder called "output".
my $fileLoc=0;
my $BASEPATH = "output/";
mkdir $BASEPATH;
while (!eof(INFILE))
{
$fileLoc=&find_next_file($fileLoc);
#printf "fileLoc=%x\n",$fileLoc;
seek(INFILE, $fileLoc, 0);
$fileLoc=&dump_file($matching);
}
close INFILE;
# Find the next file block in the main file
sub find_next_file
{
my ($_fileLoc) = @_;
my $_buffer = undef;
my $_skipped=0;
read(INFILE, $_buffer, UINT_SIZE);
while ($_buffer ne "\x55\xAA\x5A\xA5" && !eof(INFILE))
{
read(INFILE, $_buffer, UINT_SIZE);
$_skipped+=UINT_SIZE;
}
return($_fileLoc + $_skipped);
}
# Unpack a file block and output the payload to a file.
sub dump_file {
my $buffer = undef;
my $calculatedCRC = undef;
my $sourceCRC = undef;
my $matching = $_[0];
# Verify the identifier matches.
read(INFILE, $buffer, UINT_SIZE); # HeaderId
unless ($buffer eq "\x55\xAA\x5A\xA5") { die "Unrecognised file format. Wrong identifier.\n"; }
read(INFILE, $buffer, UINT_SIZE); # HeaderLength
my ($headerLength) = unpack("V", $buffer);
read(INFILE, $buffer, 4); # Unknown1
read(INFILE, $buffer, 8); # HardwareID
my ($hardwareId) = unpack("A8", $buffer);
read(INFILE, $buffer, 4); # FileSequence
my ($fileSeq) = $buffer;
read(INFILE, $buffer, UINT_SIZE); # FileSize
my ($dataLength) = unpack("V", $buffer);
my ($fileSize) = prettyBytes($dataLength);
read(INFILE, $buffer, 16); # FileDate
my ($fileDate) = unpack("Z16", $buffer);
read(INFILE, $buffer, 16); # FileTime
my ($fileTime) = unpack("Z16", $buffer);
read(INFILE, $buffer, 16); # FileType
my ($fileType) = unpack("Z16", $buffer);
read(INFILE, $buffer, 16); # Blank1
read(INFILE, $buffer, 2); # HeaderChecksum
read(INFILE, $buffer, 2); # BlockSize
read(INFILE, $buffer, 2); # Blank2
# Grab the checksum of the file
read(INFILE, $buffer, $headerLength-98);
$sourceCRC=slimhexdump($buffer);
my ($fileName) = "$fileType" . ".img";
if ($fileName =~ /$matching/) {
print "extracting $fileName ($fileSize)...";
# Dump the payload.
read(INFILE, $buffer, $dataLength);
open(OUTFILE, ">$BASEPATH$fileName") or die "Unable to create $fileName: $!\n";
binmode OUTFILE;
print OUTFILE $buffer;
close OUTFILE;
print "\r";
print "verifying checksum for $fileType ($fileSize)...";
$calculatedCRC=`./crc $BASEPATH$fileType.img` if $CRC_CHECK;
chomp($calculatedCRC) if $CRC_CHECK;
print "\r";
printf "%*v2.2X", '', $fileSeq;
if($CRC_CHECK){
if (!$calculatedCRC eq $sourceCRC)
{
print " - !!! CRC ERROR";
}
}
}
else {
seek(INFILE, $dataLength, 1);
}
print " $fileType $fileSize $fileDate $fileTime";
print "\n";
# Ensure we finish on a 4 byte boundary alignment.
my $remainder = UINT_SIZE - (tell(INFILE) % UINT_SIZE);
if ($remainder < UINT_SIZE) {
# We can ignore the remaining padding.
read(INFILE, $buffer, $remainder);
}
return (tell(INFILE));
}
sub hexdump ()
{
my $num=0;
my $i;
my $rhs;
my $lhs;
my ($buf) = @_;
my $ret_str="";
foreach $i ($buf =~ m/./gs)
{
# This loop is to process each character at a time.
#
$lhs .= sprintf(" %02X",ord($i));
if ($i =~ m/[ -~]/)
{
$rhs .= $i;
}
else
{
$rhs .= ".";
}
$num++;
if (($num % 16) == 0)
{
$ret_str.=sprintf("%-50s %s\n",$lhs,$rhs);
$lhs="";
$rhs="";
}
}
if (($num % 16) != 0)
{
$ret_str.=sprintf("%-50s %s\n",$lhs,$rhs);
}
return ($ret_str);
}
sub slimhexdump ()
{
my $i;
my ($buf) = @_;
my $ret_str="";
foreach $i ($buf =~ m/./gs)
{
# This loop is to process each character at a time.
#
$ret_str .= sprintf("%02X",ord($i));
}
return ($ret_str);
}
sub prettyBytes {
my $size = $_[0];
foreach ('B','KB','MB','GB','TB','PB')
{
return sprintf("%.2f",$size)."$_" if $size < 1024;
$size /= 1024;
}
}