forked from Marlamin/BuildBackup
-
Notifications
You must be signed in to change notification settings - Fork 0
/
BLTE.cs
230 lines (185 loc) · 8.1 KB
/
BLTE.cs
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
229
230
using System;
using System.Collections.Generic;
using System.IO;
using System.IO.Compression;
using System.Linq;
using System.Security.Cryptography;
namespace BuildBackup
{
public static class BLTE
{
public static byte[] Parse(byte[] content)
{
using (var bin = new BinaryReader(new MemoryStream(content)))
{
if (bin.ReadUInt32() != 0x45544c42) { throw new Exception("Not a BLTE file"); }
var blteSize = bin.ReadUInt32(true);
BLTEChunkInfo[] chunkInfos;
if (blteSize == 0)
{
// These are always uncompressed
chunkInfos = new BLTEChunkInfo[1];
chunkInfos[0].isFullChunk = false;
chunkInfos[0].compSize = Convert.ToInt32(bin.BaseStream.Length - 8);
chunkInfos[0].decompSize = Convert.ToInt32(bin.BaseStream.Length - 8 - 1);
chunkInfos[0].checkSum = new byte[16];
}
else
{
var bytes = bin.ReadBytes(4);
var chunkCount = bytes[1] << 16 | bytes[2] << 8 | bytes[3] << 0;
var supposedHeaderSize = 24 * chunkCount + 12;
if (supposedHeaderSize != blteSize)
{
throw new Exception("Invalid header size!");
}
if (supposedHeaderSize > bin.BaseStream.Length)
{
throw new Exception("Not enough data");
}
chunkInfos = new BLTEChunkInfo[chunkCount];
for (int i = 0; i < chunkCount; i++)
{
chunkInfos[i].isFullChunk = true;
chunkInfos[i].compSize = bin.ReadInt32(true);
chunkInfos[i].decompSize = bin.ReadInt32(true);
chunkInfos[i].checkSum = new byte[16];
chunkInfos[i].checkSum = bin.ReadBytes(16);
}
}
var totalSize = chunkInfos.Sum(c => c.decompSize);
using (var result = new MemoryStream(totalSize))
{
for (var index = 0; index < chunkInfos.Length; index++)
{
var chunk = chunkInfos[index];
if (chunk.compSize > (bin.BaseStream.Length - bin.BaseStream.Position))
{
throw new Exception("Trying to read more than is available!");
}
HandleDataBlock(bin.ReadBytes(chunk.compSize), index, chunk, result);
}
return result.ToArray();
}
}
}
private static void HandleDataBlock(byte[] data, int index, BLTEChunkInfo chunk, MemoryStream result)
{
switch (data[0])
{
case 0x4E: // N (no compression)
result.Write(data, 1, data.Length - 1);
break;
case 0x5A: // Z (zlib, compressed)
using (var stream = new MemoryStream(data, 3, chunk.compSize - 3))
using (var ds = new DeflateStream(stream, CompressionMode.Decompress))
{
ds.CopyTo(result);
}
break;
case 0x45: // E (encrypted)
byte[] decrypted = new byte[data.Length - 15];
decrypted[0] = 0x4E; // N
try
{
decrypted = Decrypt(data, index);
}
catch (KeyNotFoundException e)
{
Console.WriteLine(e.Message);
result.Write(new byte[chunk.decompSize], 0, chunk.decompSize);
break;
}
// Override inFileSize with decrypted length because it now differs from original encrypted chunk.compSize which breaks decompression
chunk.compSize = decrypted.Length;
HandleDataBlock(decrypted, index, chunk, result);
break;
case 0x46: // F (frame)
default:
throw new Exception("Unsupported mode " + data[0].ToString("X") + "!");
}
}
private static string ReturnEncryptionKeyName(byte[] data)
{
byte keyNameSize = data[0];
if (keyNameSize == 0 || keyNameSize != 8)
{
Console.WriteLine(keyNameSize.ToString());
throw new Exception("keyNameSize == 0 || keyNameSize != 8");
}
byte[] keyNameBytes = new byte[keyNameSize];
Array.Copy(data, 1, keyNameBytes, 0, keyNameSize);
Array.Reverse(keyNameBytes);
return BitConverter.ToString(keyNameBytes).Replace("-", "");
}
private static byte[] Decrypt(byte[] data, int index)
{
byte keyNameSize = data[1];
if (keyNameSize == 0 || keyNameSize != 8)
throw new Exception("keyNameSize == 0 || keyNameSize != 8");
byte[] keyNameBytes = new byte[keyNameSize];
Array.Copy(data, 2, keyNameBytes, 0, keyNameSize);
ulong keyName = BitConverter.ToUInt64(keyNameBytes, 0);
byte IVSize = data[keyNameSize + 2];
if (IVSize != 4 || IVSize > 0x10)
throw new Exception("IVSize != 4 || IVSize > 0x10");
byte[] IVpart = new byte[IVSize];
Array.Copy(data, keyNameSize + 3, IVpart, 0, IVSize);
if (data.Length < IVSize + keyNameSize + 4)
throw new Exception("data.Length < IVSize + keyNameSize + 4");
int dataOffset = keyNameSize + IVSize + 3;
byte encType = data[dataOffset];
if (encType != 'S' && encType != 'A') // 'S' or 'A'
throw new Exception("encType != ENCRYPTION_SALSA20 && encType != ENCRYPTION_ARC4");
dataOffset++;
// expand to 8 bytes
byte[] IV = new byte[8];
Array.Copy(IVpart, IV, IVpart.Length);
// magic
for (int shift = 0, i = 0; i < sizeof(int); shift += 8, i++)
{
IV[i] ^= (byte)((index >> shift) & 0xFF);
}
byte[] key = KeyService.GetKey(keyName);
if (key == null)
throw new KeyNotFoundException("Unknown keyname " + keyName.ToString("X16"));
if (encType == 'S')
{
ICryptoTransform decryptor = KeyService.SalsaInstance.CreateDecryptor(key, IV);
return decryptor.TransformFinalBlock(data, dataOffset, data.Length - dataOffset);
}
else
{
// ARC4 ?
throw new Exception("encType ENCRYPTION_ARC4 not implemented");
}
}
public static byte[] DecryptFile(string name, byte[] data, string decryptionKeyName)
{
byte[] key;
if (!Program.cachedArmadilloKeys.TryGetValue(decryptionKeyName, out key))
{
if (!File.Exists(decryptionKeyName + ".ak"))
{
key = new byte[16];
}
else
{
using (BinaryReader reader = new BinaryReader(new FileStream(decryptionKeyName + ".ak", FileMode.Open)))
{
key = reader.ReadBytes(16);
}
Program.cachedArmadilloKeys.Add(decryptionKeyName, key);
}
}
byte[] IV = name.ToByteArray();
Array.Copy(IV, 8, IV, 0, 8);
Array.Resize(ref IV, 8);
using (Salsa20 salsa = new Salsa20())
{
var decryptor = salsa.CreateDecryptor(key, IV);
return decryptor.TransformFinalBlock(data, 0, data.Length);
}
}
}
}