-
Notifications
You must be signed in to change notification settings - Fork 9
/
luks1.go
337 lines (279 loc) · 8.04 KB
/
luks1.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
package luks
import (
"bytes"
"crypto/cipher"
"encoding/binary"
"fmt"
"hash"
"hash/crc32"
"os"
"unsafe"
"golang.org/x/crypto/pbkdf2"
"golang.org/x/crypto/xts"
)
// LUKS v1 format is specified here
// https://gitlab.com/cryptsetup/cryptsetup/-/wikis/LUKS-standard/on-disk-format.pdf
type headerV1 struct {
Magic [6]byte
Version uint16
CipherName [32]byte
CipherMode [32]byte
HashSpec [32]byte
PayloadOffset uint32
KeyBytes uint32
MkDigest [20]byte
MkDigestSalt [32]byte
MkDigestIter uint32
UUID [40]byte
KeySlots [8]keySlot
}
type keySlot struct {
Active uint32
Iterations uint32
Salt [32]byte
KeyMaterialOffset uint32 // offset in sectors
Stripes uint32
}
const luksV1SlotEnabled = 0xAC71F3
type deviceV1 struct {
path string
f *os.File
hdr *headerV1
flags []string
}
func initV1Device(path string, f *os.File) (*deviceV1, error) {
var hdr headerV1
if _, err := f.Seek(0, 0); err != nil {
return nil, err
}
if err := binary.Read(f, binary.BigEndian, &hdr); err != nil {
return nil, err
}
return &deviceV1{path: path, f: f, hdr: &hdr}, nil
}
func (d *deviceV1) Close() error {
return d.f.Close()
}
func (d *deviceV1) Path() string {
return d.path
}
func (d *deviceV1) Slots() []int {
slots := make([]int, 0)
for id, ks := range d.hdr.KeySlots {
if ks.Active != luksV1SlotEnabled {
continue
}
slots = append(slots, id)
}
return slots
}
func (d *deviceV1) UUID() string {
return fixedArrayToString(d.hdr.UUID[:])
}
func (d *deviceV1) FlagsGet() []string {
return d.flags
}
func (d *deviceV1) FlagsAdd(flags ...string) error {
d.flags = append(d.flags, flags...)
return nil
}
func (d *deviceV1) FlagsClear() {
d.flags = nil
}
func (d *deviceV1) Version() int {
return 1
}
func (d *deviceV1) Unlock(keyslot int, passphrase []byte, dmName string) error {
volume, err := d.UnsealVolume(keyslot, passphrase)
if err != nil {
return err
}
defer clearSlice(volume.key)
return volume.SetupMapper(dmName)
}
func (d *deviceV1) UnlockAny(passphrase []byte, dmName string) error {
for k, s := range d.hdr.KeySlots {
if s.Active != luksV1SlotEnabled {
continue
}
volume, err := d.UnsealVolume(k, passphrase)
if err == ErrPassphraseDoesNotMatch {
continue
} else if err != nil {
return err
}
return volume.SetupMapper(dmName)
}
return ErrPassphraseDoesNotMatch
}
func (d *deviceV1) UnsealVolume(keyslotIdx int, passphrase []byte) (*Volume, error) {
keyslots := d.hdr.KeySlots
if keyslotIdx < 0 || keyslotIdx >= len(keyslots) {
return nil, fmt.Errorf("keyslot %d is out of range of available slots", keyslotIdx)
}
slot := keyslots[keyslotIdx]
algo := fixedArrayToString(d.hdr.HashSpec[:])
h, _ := getHashAlgo(algo)
if h == nil {
return nil, fmt.Errorf("Unknown hash spec algorithm: %v", algo)
}
afKey := deriveLuks1AfKey(passphrase, slot, int(d.hdr.KeyBytes), h)
defer clearSlice(afKey)
finalKey, err := d.decryptLuks1VolumeKey(keyslotIdx, slot, afKey, h)
if err != nil {
return nil, err
}
// verify with digest
generatedDigest := pbkdf2.Key(finalKey, d.hdr.MkDigestSalt[:], int(d.hdr.MkDigestIter), int(d.hdr.KeyBytes), h)
defer clearSlice(generatedDigest)
if !bytes.Equal(generatedDigest[:20], d.hdr.MkDigest[:]) {
return nil, ErrPassphraseDoesNotMatch
}
encryption := fixedArrayToString(d.hdr.CipherName[:]) + "-" + fixedArrayToString(d.hdr.CipherMode[:])
storageOffset := uint64(d.hdr.PayloadOffset) * storageSectorSize
storageSize, err := fileSize(d.f)
if err != nil {
return nil, err
}
if storageSize < storageOffset {
return nil, fmt.Errorf("backing file size %d is smaller than LUKS segment offset %d", storageSize, storageOffset)
}
storageSize -= storageOffset
v := Volume{
BackingDevice: d.path,
Flags: d.flags,
UUID: d.UUID(),
key: finalKey,
LuksType: "LUKS1",
StorageSize: storageSize,
StorageOffset: storageOffset,
StorageEncryption: encryption,
StorageIvTweak: 0,
StorageSectorSize: storageSectorSize,
}
return &v, nil
}
func (d *deviceV1) decryptLuks1VolumeKey(keyslotIdx int, slot keySlot, afKey []byte, h func() hash.Hash) ([]byte, error) {
// decrypt keyslotIdx area using the derived key
keyslotSize := d.hdr.KeyBytes * stripesNum
if keyslotSize%storageSectorSize != 0 {
return nil, fmt.Errorf("keyslot[%v] size %v is not multiple of the sector size %v", keyslotIdx, keyslotSize, storageSectorSize)
}
keyData := make([]byte, keyslotSize)
defer clearSlice(keyData)
if _, err := d.f.ReadAt(keyData, int64(slot.KeyMaterialOffset)*storageSectorSize); err != nil {
return nil, err
}
ciph, err := d.buildLuks1AfCipher(afKey)
if err != nil {
return nil, err
}
for i := 0; i < int(keyslotSize/storageSectorSize); i++ {
block := keyData[i*storageSectorSize : (i+1)*storageSectorSize]
ciph.Decrypt(block, block, uint64(i))
}
// anti-forensic merge
if slot.Stripes != stripesNum {
return nil, fmt.Errorf("LUKS currently supports only af with 4000 stripes")
}
return afMerge(keyData, int(d.hdr.KeyBytes), int(slot.Stripes), h())
}
func (d *deviceV1) buildLuks1AfCipher(afKey []byte) (*xts.Cipher, error) {
var cipherFunc func(key []byte) (cipher.Block, error)
cipherName := fixedArrayToString(d.hdr.CipherName[:])
cipherFunc, err := getCipher(cipherName)
if err != nil {
return nil, err
}
cipherMode := fixedArrayToString(d.hdr.CipherMode[:])
switch cipherMode {
case "xts-plain64":
return xts.NewCipher(cipherFunc, afKey)
default:
return nil, fmt.Errorf("Unknown encryption mode: %v", cipherMode)
}
}
var (
luksMetaMagic = []byte("LUKSMETA")
luksMetaNullUUID = make([]byte, 16)
)
type luksMetaSlot struct {
UUID [16]byte
Offset uint32
Length uint32
Crc32 uint32
_ uint32
}
type luksMetaHeader struct {
Magic [8]byte
Version uint32
Crc32 uint32
Slots [8]luksMetaSlot
}
// readLuksMeta read non-standard metadata information for LUKS v1
// It follows implementation defined at https://github.com/latchset/luksmeta
func (d *deviceV1) Tokens() ([]Token, error) {
var hdr luksMetaHeader
data := make([]byte, unsafe.Sizeof(hdr))
var holeOffset int
length := int(d.hdr.KeyBytes * stripesNum)
for _, s := range d.hdr.KeySlots {
offset := int(s.KeyMaterialOffset * storageSectorSize)
if holeOffset < offset+length {
holeOffset = offset + length
}
}
holeOffset = roundUp(holeOffset, 4096)
if _, err := d.f.ReadAt(data, int64(holeOffset)); err != nil {
return nil, err
}
if err := binary.Read(bytes.NewReader(data), binary.BigEndian, &hdr); err != nil {
return nil, err
}
tokens := make([]Token, 0)
if !bytes.Equal(hdr.Magic[:], luksMetaMagic) {
return tokens, nil
}
crcFieldOffset := unsafe.Offsetof(hdr.Crc32)
clearSlice(data[crcFieldOffset : crcFieldOffset+4])
hdrChecksum := crc32.New(crc32.MakeTable(crc32.Castagnoli))
if _, err := hdrChecksum.Write(data); err != nil {
return nil, err
}
if hdrChecksum.Sum32() != hdr.Crc32 {
return nil, fmt.Errorf("Luks Meta header CRC error")
}
for i, s := range hdr.Slots {
if !bytes.Equal(s.UUID[:], luksMetaNullUUID) {
payload := make([]byte, s.Length)
if _, err := d.f.ReadAt(payload, int64(holeOffset)+int64(s.Offset)); err != nil {
return nil, err
}
tokenChecksum := crc32.New(crc32.MakeTable(crc32.Castagnoli))
if _, err := tokenChecksum.Write(payload); err != nil {
return nil, err
}
if tokenChecksum.Sum32() != s.Crc32 {
return nil, fmt.Errorf("Luks Meta token #%d CRC error", i)
}
t := Token{
ID: i,
Slots: []int{i},
Type: luksMetaTokenType(s.UUID[:]),
Payload: payload,
}
tokens = append(tokens, t)
}
}
return tokens, nil
}
var clevisUUID = []byte{0xcb, 0x6e, 0x89, 0x04, 0x81, 0xff, 0x40, 0xda, 0xa8, 0x4a, 0x07, 0xab, 0x9a, 0xb5, 0x71, 0x5e}
func luksMetaTokenType(uuid []byte) string {
if bytes.Equal(uuid, clevisUUID) {
return "clevis"
}
return ""
}
func deriveLuks1AfKey(passphrase []byte, slot keySlot, keySize int, h func() hash.Hash) []byte {
return pbkdf2.Key(passphrase, slot.Salt[:], int(slot.Iterations), keySize, h)
}