forked from nwaples/rardecode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patharchive50.go
583 lines (526 loc) · 13.4 KB
/
archive50.go
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
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
package rardecode
import (
"bytes"
"crypto/hmac"
"crypto/sha256"
"errors"
"hash"
"hash/crc32"
"io"
"math"
"math/bits"
"time"
)
const (
// block types
block5Arc = 1
block5File = 2
// block5Service = 3
block5Encrypt = 4
block5End = 5
// block flags
block5HasExtra = 0x0001
block5HasData = 0x0002
block5DataNotFirst = 0x0008
block5DataNotLast = 0x0010
// end block flags
endArc5NotLast = 0x0001
// archive encryption block flags
enc5CheckPresent = 0x0001 // password check data is present
// main archive block flags
arc5MultiVol = 0x0001
arc5Solid = 0x0004
// file block flags
file5IsDir = 0x0001
file5HasUnixMtime = 0x0002
file5HasCRC32 = 0x0004
file5UnpSizeUnknown = 0x0008
// file compression flags
file5CompAlgorithm = 0x0000003F
file5CompSolid = 0x00000040
file5CompMethod = 0x00000380
file5CompDictSize = 0x00007C00
file5CompDictFract = 0x000F8000
file5CompV5Compat = 0x00100000
// file encryption record flags
file5EncCheckPresent = 0x0001 // password check data is present
file5EncUseMac = 0x0002 // use MAC instead of plain checksum
// precision time flags
file5ExtraTimeIsUnixTime = 0x01 // is unix time_t
file5ExtraTimeHasMTime = 0x02 // has modification time
file5ExtraTimeHasCTime = 0x04 // has creation time
file5ExtraTimeHasATime = 0x08 // has access time
file5ExtraTimeHasUnixNS = 0x10 // unix nanosecond time format
cacheSize50 = 4
maxPbkdf2Salt = 64
pwCheckSize = 8
maxKdfCount = 24
maxDictSize = 0x1000000000 // maximum dictionary size 64GB
)
var (
ErrBadPassword = errors.New("rardecode: incorrect password")
ErrCorruptEncryptData = errors.New("rardecode: corrupt encryption data")
ErrUnknownEncryptMethod = errors.New("rardecode: unknown encryption method")
ErrPlatformIntSize = errors.New("rardecode: platform integer size too small")
ErrDictionaryTooLarge = errors.New("rardecode: decode dictionary too large")
)
type extra struct {
ftype uint64 // field type
data readBuf // field data
}
type blockHeader50 struct {
htype uint64 // block type
flags uint64
data readBuf // block header data
extra []extra // extra fields
dataSize int64 // size of block data
}
// leHash32 wraps a hash.Hash32 to return the result of Sum in little
// endian format.
type leHash32 struct {
hash.Hash32
}
func (h leHash32) Sum(b []byte) []byte {
s := h.Sum32()
return append(b, byte(s), byte(s>>8), byte(s>>16), byte(s>>24))
}
func newLittleEndianCRC32() hash.Hash {
return leHash32{crc32.NewIEEE()}
}
// archive50 implements fileBlockReader for RAR 5 file format archives
type archive50 struct {
pass []byte
blockKey []byte // key used to encrypt blocks
multi bool // archive is multi-volume
solid bool // is a solid archive
keyCache [cacheSize50]struct { // encryption key cache
kdfCount int
salt []byte
keys [][]byte
}
}
func (a *archive50) clone() fileBlockReader {
na := new(archive50)
*na = *a
return na
}
// calcKeys50 calculates the keys used in RAR 5 archive processing.
// The returned slice of byte slices contains 3 keys.
// Key 0 is used for block or file decryption.
// Key 1 is optionally used for file checksum calculation.
// Key 2 is optionally used for password checking.
func calcKeys50(pass, salt []byte, kdfCount int) [][]byte {
if len(salt) > maxPbkdf2Salt {
salt = salt[:maxPbkdf2Salt]
}
keys := make([][]byte, 3)
if len(keys) == 0 {
return keys
}
prf := hmac.New(sha256.New, pass)
_, _ = prf.Write(salt)
_, _ = prf.Write([]byte{0, 0, 0, 1})
t := prf.Sum(nil)
u := append([]byte(nil), t...)
kdfCount--
for i, iter := range []int{kdfCount, 16, 16} {
for iter > 0 {
prf.Reset()
_, _ = prf.Write(u)
u = prf.Sum(u[:0])
for j := range u {
t[j] ^= u[j]
}
iter--
}
keys[i] = append([]byte(nil), t...)
}
pwcheck := keys[2]
for i, v := range pwcheck[pwCheckSize:] {
pwcheck[i&(pwCheckSize-1)] ^= v
}
pwcheck = pwcheck[:pwCheckSize]
// add checksum to end of pwcheck
sum := sha256.Sum256(pwcheck)
pwcheck = append(pwcheck, sum[:4]...)
keys[2] = pwcheck
return keys
}
// getKeys returns the the corresponding encryption keys for the given kdfcount and salt.
// It will check the password if check is provided.
func (a *archive50) getKeys(kdfCount int, salt, check []byte) ([][]byte, error) {
var keys [][]byte
if kdfCount > maxKdfCount {
return nil, ErrCorruptEncryptData
}
kdfCount = 1 << uint(kdfCount)
// check cache of keys for match
for _, v := range a.keyCache {
if kdfCount == v.kdfCount && bytes.Equal(salt, v.salt) {
keys = v.keys
break
}
}
if keys == nil {
// not found, calculate keys
keys = calcKeys50(a.pass, salt, kdfCount)
// store in cache
copy(a.keyCache[1:], a.keyCache[:])
a.keyCache[0].kdfCount = kdfCount
a.keyCache[0].salt = append([]byte(nil), salt...)
a.keyCache[0].keys = keys
}
// check password
if check != nil && !bytes.Equal(check, keys[2]) {
return nil, ErrBadPassword
}
return keys, nil
}
// parseFileEncryptionRecord processes the optional file encryption record from a file header.
func (a *archive50) parseFileEncryptionRecord(b readBuf, f *fileBlockHeader) error {
f.Encrypted = true
if ver := b.uvarint(); ver != 0 {
return ErrUnknownEncryptMethod
}
flags := b.uvarint()
if len(b) < 33 {
return ErrCorruptEncryptData
}
kdfCount := int(b.byte())
salt := append([]byte(nil), b.bytes(16)...)
f.iv = append([]byte(nil), b.bytes(16)...)
var check []byte
if flags&file5EncCheckPresent > 0 {
if len(b) < 12 {
return ErrCorruptEncryptData
}
check = append([]byte(nil), b.bytes(12)...)
}
useMac := flags&file5EncUseMac > 0
// only need to generate keys for first block or
// last block if it has an optional hash key
if !(f.first || (f.last && useMac)) {
return nil
}
f.genKeys = func() error {
if a.pass == nil {
return ErrArchivedFileEncrypted
}
keys, err := a.getKeys(kdfCount, salt, check)
if err != nil {
return err
}
f.key = keys[0]
if useMac {
f.hashKey = keys[1]
}
return nil
}
return nil
}
func readWinFiletime(b *readBuf) (time.Time, error) {
if len(*b) < 8 {
return time.Time{}, ErrCorruptFileHeader
}
// 100-nanosecond intervals since January 1, 1601
t := b.uint64() - 116444736000000000
t *= 100
sec, nsec := bits.Div64(0, t, uint64(time.Second))
return time.Unix(int64(sec), int64(nsec)), nil
}
func readUnixTime(b *readBuf) (time.Time, error) {
if len(*b) < 4 {
return time.Time{}, ErrCorruptFileHeader
}
return time.Unix(int64(b.uint32()), 0), nil
}
func readUnixNanoseconds(b *readBuf) (time.Duration, error) {
if len(*b) < 4 {
return 0, ErrCorruptFileHeader
}
d := time.Duration(b.uint32() & 0x3fffffff)
if d >= time.Second {
return 0, ErrCorruptFileHeader
}
return d, nil
}
// parseFilePrecisionTimeRecord processes the optional high precision time record from a file header.
func (a *archive50) parseFilePrecisionTimeRecord(b *readBuf, f *fileBlockHeader) error {
var err error
flags := b.uvarint()
isUnixTime := flags&file5ExtraTimeIsUnixTime > 0
if flags&file5ExtraTimeHasMTime > 0 {
if isUnixTime {
f.ModificationTime, err = readUnixTime(b)
} else {
f.ModificationTime, err = readWinFiletime(b)
}
if err != nil {
return err
}
}
if flags&file5ExtraTimeHasCTime > 0 {
if isUnixTime {
f.CreationTime, err = readUnixTime(b)
} else {
f.CreationTime, err = readWinFiletime(b)
}
if err != nil {
return err
}
}
if flags&file5ExtraTimeHasATime > 0 {
if isUnixTime {
f.AccessTime, err = readUnixTime(b)
} else {
f.AccessTime, err = readWinFiletime(b)
}
if err != nil {
return err
}
}
if isUnixTime && flags&file5ExtraTimeHasUnixNS > 0 {
if flags&file5ExtraTimeHasMTime > 0 {
ns, err := readUnixNanoseconds(b)
if err != nil {
return err
}
f.ModificationTime = f.ModificationTime.Add(ns)
}
if flags&file5ExtraTimeHasCTime > 0 {
ns, err := readUnixNanoseconds(b)
if err != nil {
return err
}
f.CreationTime = f.CreationTime.Add(ns)
}
if flags&file5ExtraTimeHasATime > 0 {
ns, err := readUnixNanoseconds(b)
if err != nil {
return err
}
f.AccessTime = f.AccessTime.Add(ns)
}
}
return nil
}
func (a *archive50) parseFileHeader(h *blockHeader50) (*fileBlockHeader, error) {
f := new(fileBlockHeader)
f.HeaderEncrypted = a.blockKey != nil
f.first = h.flags&block5DataNotFirst == 0
f.last = h.flags&block5DataNotLast == 0
flags := h.data.uvarint() // file flags
f.IsDir = flags&file5IsDir > 0
f.UnKnownSize = flags&file5UnpSizeUnknown > 0
f.UnPackedSize = int64(h.data.uvarint())
f.PackedSize = h.dataSize
f.Attributes = int64(h.data.uvarint())
if flags&file5HasUnixMtime > 0 {
if len(h.data) < 4 {
return nil, ErrCorruptFileHeader
}
f.ModificationTime = time.Unix(int64(h.data.uint32()), 0)
}
if flags&file5HasCRC32 > 0 {
if len(h.data) < 4 {
return nil, ErrCorruptFileHeader
}
f.sum = append([]byte(nil), h.data.bytes(4)...)
if f.first {
f.hash = newLittleEndianCRC32
}
}
flags = h.data.uvarint() // compression flags
f.Solid = flags&file5CompSolid > 0
f.arcSolid = a.solid
method := (flags >> 7) & 7 // compression method (0 == none)
if f.first && method != 0 {
unpackver := flags & file5CompAlgorithm
var winSize int64
if unpackver == 0 {
f.decVer = decode50Ver
winSize = 0x20000 << ((flags >> 10) & 0x0F)
} else if unpackver == 1 {
if flags&file5CompV5Compat > 0 {
f.decVer = decode50Ver
} else {
f.decVer = decode70Ver
}
winSize = 0x20000 << ((flags >> 10) & 0x1F)
winSize += winSize / 32 * int64((flags>>15)&0x1F)
if winSize > maxDictSize {
return nil, ErrDictionaryTooLarge
}
} else {
return nil, ErrUnknownDecoder
}
if winSize > math.MaxInt {
return nil, ErrPlatformIntSize
}
f.winSize = int(winSize)
}
switch h.data.uvarint() {
case 0:
f.HostOS = HostOSWindows
case 1:
f.HostOS = HostOSUnix
default:
f.HostOS = HostOSUnknown
}
nlen := int(h.data.uvarint())
if len(h.data) < nlen {
return nil, ErrCorruptFileHeader
}
f.Name = string(h.data.bytes(nlen))
// parse optional extra records
for _, e := range h.extra {
var err error
switch e.ftype {
case 1: // encryption
err = a.parseFileEncryptionRecord(e.data, f)
case 2:
// TODO: hash
case 3:
err = a.parseFilePrecisionTimeRecord(&e.data, f)
case 4: // version
_ = e.data.uvarint() // ignore flags field
f.Version = int(e.data.uvarint())
case 5:
// TODO: redirection
case 6:
// TODO: owner
}
if err != nil {
return nil, err
}
}
return f, nil
}
// parseEncryptionBlock calculates the key for block encryption.
func (a *archive50) parseEncryptionBlock(b readBuf) error {
if a.pass == nil {
return ErrArchiveEncrypted
}
if ver := b.uvarint(); ver != 0 {
return ErrUnknownEncryptMethod
}
flags := b.uvarint()
if len(b) < 17 {
return ErrCorruptEncryptData
}
kdfCount := int(b.byte())
salt := b.bytes(16)
var check []byte
if flags&enc5CheckPresent > 0 {
if len(b) < 12 {
return ErrCorruptEncryptData
}
check = b.bytes(12)
}
keys, err := a.getKeys(kdfCount, salt, check)
if err != nil {
return err
}
a.blockKey = keys[0]
return nil
}
func (a *archive50) readBlockHeader(r sliceReader) (*blockHeader50, error) {
if a.blockKey != nil {
// block is encrypted
iv, err := r.readSlice(16)
if err != nil {
return nil, err
}
r = newAesSliceReader(r, a.blockKey, iv)
}
var b readBuf
var err error
// peek to find the header size
b, err = r.peek(7)
if err != nil {
return nil, err
}
crc := b.uint32()
hash := crc32.NewIEEE()
size := int(b.uvarint()) // header size
b, err = r.readSlice(7 - len(b) + size)
if err != nil {
return nil, err
}
// check header crc
_, _ = hash.Write(b[4:])
if crc != hash.Sum32() {
return nil, ErrBadHeaderCRC
}
b = b[len(b)-size:]
h := new(blockHeader50)
h.htype = b.uvarint()
h.flags = b.uvarint()
var extraSize int
if h.flags&block5HasExtra > 0 {
extraSize = int(b.uvarint())
}
if h.flags&block5HasData > 0 {
h.dataSize = int64(b.uvarint())
}
if len(b) < extraSize {
return nil, ErrCorruptBlockHeader
}
h.data = b.bytes(len(b) - extraSize)
// read header extra records
for len(b) > 0 {
size = int(b.uvarint())
if len(b) < size {
return nil, ErrCorruptBlockHeader
}
data := readBuf(b.bytes(size))
ftype := data.uvarint()
h.extra = append(h.extra, extra{ftype, data})
}
return h, nil
}
// next advances to the next file block in the archive
func (a *archive50) next(v *volume) (*fileBlockHeader, error) {
for {
// get next block header
h, err := a.readBlockHeader(v)
if err != nil {
if err == io.EOF {
err = io.ErrUnexpectedEOF
}
return nil, err
}
switch h.htype {
case block5File:
return a.parseFileHeader(h)
case block5Arc:
flags := h.data.uvarint()
a.multi = flags&arc5MultiVol > 0
a.solid = flags&arc5Solid > 0
case block5Encrypt:
err = a.parseEncryptionBlock(h.data)
case block5End:
flags := h.data.uvarint()
if flags&endArc5NotLast == 0 || !a.multi {
return nil, io.EOF
}
a.blockKey = nil // reset encryption when opening new volume file
err = v.next()
default:
if h.dataSize > 0 {
err = v.discard(h.dataSize) // skip over block data
}
}
if err != nil {
return nil, err
}
}
}
// newArchive50 creates a new fileBlockReader for a Version 5 archive.
func newArchive50(password *string) *archive50 {
a := new(archive50)
if password != nil {
a.pass = []byte(*password)
}
return a
}