-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProgram.cs
More file actions
executable file
·120 lines (101 loc) · 3.67 KB
/
Program.cs
File metadata and controls
executable file
·120 lines (101 loc) · 3.67 KB
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
using System;
using System.Collections.Generic;
using System.Globalization;
using System.IO;
using System.Linq;
using System.Text;
using System.Text.RegularExpressions;
using System.Threading.Tasks;
namespace FirmwareParserFinal
{
class PageInfo
{
public int InfoStartAt { get; set; }
public int DataStartAt { get; set; }
public int DataEndAt { get; set; }
public int PageNumber { get; set; }
public byte[] Bytes { get; set; }
}
class Firmware
{
Regex info = new Regex(@"page\s+0x([0-9a-f]+):");
Regex data = new Regex(@"\s*([0-9a-f]{2})\s*");
public Firmware(string text)
{
Text = text;
}
public string Text { get; }
public IEnumerable<PageInfo> GetNextPage()
{
int startAt = 0;
Match infoMatch = info.Match(Text, startAt);
while (infoMatch.Success)
{
var currentPageInfo = new PageInfo
{
InfoStartAt = infoMatch.Index,
DataStartAt = infoMatch.Index + infoMatch.Length,
PageNumber = int.Parse(infoMatch.Groups[1].Value, NumberStyles.HexNumber),
};
startAt = currentPageInfo.DataStartAt;
List<byte> bytes = new List<byte>();
int bytePositionCount = currentPageInfo.DataStartAt;
var byteMatch = data.Match(Text, bytePositionCount);
while (byteMatch.Success)
{
if (byteMatch.Index != bytePositionCount)
break;
bytes.Add(byte.Parse(byteMatch.Groups[1].Value, NumberStyles.HexNumber));
bytePositionCount = byteMatch.Groups[1].Index + byteMatch.Groups[1].Length;
byteMatch = data.Match(Text, bytePositionCount);
}
currentPageInfo.Bytes = bytes.ToArray();
infoMatch = info.Match(Text, startAt);
yield return currentPageInfo;
}
}
}
class Program
{
const int pageSize = 2048;
static void Main(string[] args)
{
SortedDictionary<int, PageInfo> pages = new SortedDictionary<int, PageInfo>();
// Remove CRLF => no hassles with RegEx
foreach(var file in args)
{
var firmware = new Firmware(File.ReadAllText(file).Replace("\r\n", " "));
foreach (var item in firmware.GetNextPage())
{
if (item.Bytes.Length == pageSize)
{
pages[item.PageNumber] = item;
}
else
{
Console.WriteLine($"Wrong number of bytes @ page: {item.PageNumber}");
}
}
}
List<int> missingPages = new List<int>();
int? lastPage = null;
using (var dump = File.OpenWrite("finaldump.bin"))
{
foreach (var v in pages)
{
if (lastPage.HasValue)
{
if (v.Key != lastPage + 1)
{
Console.WriteLine($"Gap between {v.Key} and {lastPage}");
missingPages.AddRange(Enumerable.Range(lastPage.Value + 1, v.Key - lastPage.Value));
}
}
lastPage = v.Key;
dump.Write(v.Value.Bytes, 0, v.Value.Bytes.Length);
}
}
Console.ReadKey();
}
}
}