forked from canonical/snapd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkeymgr_luks2_test.go
904 lines (833 loc) · 25.3 KB
/
keymgr_luks2_test.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
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
// -*- Mode: Go; indent-tabs-mode: t -*-
/*
* Copyright (C) 2022 Canonical Ltd
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 3 as
* published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
package keymgr_test
import (
"bytes"
"fmt"
"io/ioutil"
"os"
"path/filepath"
"testing"
sb "github.com/snapcore/secboot"
. "gopkg.in/check.v1"
"github.com/snapcore/snapd/dirs"
"github.com/snapcore/snapd/osutil"
"github.com/snapcore/snapd/secboot/keymgr"
"github.com/snapcore/snapd/secboot/keys"
"github.com/snapcore/snapd/secboot/luks2"
"github.com/snapcore/snapd/testutil"
)
type keymgrSuite struct {
testutil.BaseTest
rootDir string
cryptsetupCmd *testutil.MockCmd
}
var _ = Suite(&keymgrSuite{})
func TestT(t *testing.T) {
TestingT(t)
}
const mockedMeminfo = `MemTotal: 929956 kB
CmaTotal: 131072 kB
`
var mockRecoveryKey = keys.RecoveryKey{1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16}
func (s *keymgrSuite) SetUpTest(c *C) {
s.BaseTest.SetUpTest(c)
s.cryptsetupCmd = testutil.MockCommand(c, "cryptsetup", ``)
s.AddCleanup(s.cryptsetupCmd.Restore)
s.rootDir = c.MkDir()
dirs.SetRootDir(s.rootDir)
s.AddCleanup(func() { dirs.SetRootDir("/") })
c.Assert(os.MkdirAll(dirs.RunDir, 0755), IsNil)
mockedMeminfoFile := filepath.Join(c.MkDir(), "meminfo")
err := ioutil.WriteFile(mockedMeminfoFile, []byte(mockedMeminfo), 0644)
c.Assert(err, IsNil)
s.AddCleanup(osutil.MockProcMeminfo(mockedMeminfoFile))
}
func (s *keymgrSuite) mockCryptsetupForAddKey(c *C) *testutil.MockCmd {
cmd := testutil.MockCommand(c, "cryptsetup", fmt.Sprintf(`
while [ "$#" -gt 1 ]; do
case "$1" in
luksAddKey)
cat > %s
shift
;;
--key-file)
cat "$2" > %s
shift 2
;;
*)
shift
;;
esac
done
`, filepath.Join(s.rootDir, "new.key"), filepath.Join(s.rootDir, "unlock.key")))
return cmd
}
func (s *keymgrSuite) verifyCryptsetupAddKey(c *C, cmd *testutil.MockCmd, unlockKey, newKey []byte) {
c.Assert(cmd, NotNil)
calls := cmd.Calls()
c.Assert(calls, HasLen, 2)
c.Assert(calls[0], HasLen, 16)
c.Assert(calls[0][5], testutil.Contains, s.rootDir)
calls[0][5] = "<fifo>"
c.Assert(calls[0], DeepEquals, []string{
"cryptsetup", "luksAddKey", "--type", "luks2",
"--key-file", "<fifo>",
"--pbkdf", "argon2i",
"--pbkdf-force-iterations", "4",
"--pbkdf-memory", "202834",
"--key-slot", "1",
"/dev/foobar", "-",
})
c.Assert(calls[1], DeepEquals, []string{
"cryptsetup", "config", "--priority", "prefer", "--key-slot", "0", "/dev/foobar",
})
c.Check(filepath.Join(s.rootDir, "unlock.key"), testutil.FileEquals, unlockKey)
c.Check(filepath.Join(s.rootDir, "new.key"), testutil.FileEquals, newKey)
}
func (s *keymgrSuite) TestAddRecoveryKeyToDeviceUnlockFromKeyring(c *C) {
unlockKey := "1234abcd"
getCalls := 0
restore := keymgr.MockGetDiskUnlockKeyFromKernel(func(prefix, devicePath string, remove bool) (sb.DiskUnlockKey, error) {
getCalls++
c.Check(devicePath, Equals, "/dev/foobar")
c.Check(remove, Equals, false)
c.Check(prefix, Equals, "ubuntu-fde")
return []byte(unlockKey), nil
})
defer restore()
cmd := s.mockCryptsetupForAddKey(c)
defer cmd.Restore()
err := keymgr.AddRecoveryKeyToLUKSDevice(mockRecoveryKey, "/dev/foobar")
c.Assert(err, IsNil)
c.Assert(getCalls, Equals, 1)
s.verifyCryptsetupAddKey(c, cmd, []byte(unlockKey), mockRecoveryKey[:])
}
func (s *keymgrSuite) TestAddRecoveryKeyToDeviceNoUnlockKey(c *C) {
getCalls := 0
restore := keymgr.MockGetDiskUnlockKeyFromKernel(func(prefix, devicePath string, remove bool) (sb.DiskUnlockKey, error) {
getCalls++
c.Check(devicePath, Equals, "/dev/foobar")
return nil, fmt.Errorf("cannot find key in kernel keyring")
})
defer restore()
cmd := s.mockCryptsetupForAddKey(c)
defer cmd.Restore()
err := keymgr.AddRecoveryKeyToLUKSDevice(mockRecoveryKey, "/dev/foobar")
c.Assert(err, ErrorMatches, "cannot obtain current unlock key for /dev/foobar: cannot find key in kernel keyring")
c.Assert(getCalls, Equals, 1)
c.Assert(cmd.Calls(), HasLen, 0)
}
func (s *keymgrSuite) TestAddRecoveryKeyToDeviceCryptsetupFail(c *C) {
unlockKey := "1234abcd"
restore := keymgr.MockGetDiskUnlockKeyFromKernel(func(prefix, devicePath string, remove bool) (sb.DiskUnlockKey, error) {
return []byte(unlockKey), nil
})
defer restore()
cmd := testutil.MockCommand(c, "cryptsetup", `
while [ "$#" -gt 1 ]; do
case "$1" in
--key-file)
cat "$2" > /dev/null
shift 2
;;
*)
shift 1
;;
esac
done
echo "Other error, cryptsetup boom"
exit 1
`)
defer cmd.Restore()
err := keymgr.AddRecoveryKeyToLUKSDevice(mockRecoveryKey, "/dev/foobar")
c.Assert(err, ErrorMatches, "cannot add key: cryptsetup failed with: Other error, cryptsetup boom")
// should match the keyslot full error too
c.Assert(keymgr.IsKeyslotAlreadyUsed(err), Equals, false)
}
func (s *keymgrSuite) TestAddRecoveryKeyToDeviceOccupiedSlot(c *C) {
unlockKey := "1234abcd"
getCalls := 0
restore := keymgr.MockGetDiskUnlockKeyFromKernel(func(prefix, devicePath string, remove bool) (sb.DiskUnlockKey, error) {
getCalls++
c.Check(devicePath, Equals, "/dev/foobar")
c.Check(remove, Equals, false)
c.Check(prefix, Equals, "ubuntu-fde")
return []byte(unlockKey), nil
})
defer restore()
cmd := testutil.MockCommand(c, "cryptsetup", `
while [ "$#" -gt 1 ]; do
case "$1" in
--key-file)
cat "$2" > /dev/null
shift 2
;;
*)
shift 1
;;
esac
done
echo "Key slot 1 is full, please select another one." >&2
exit 1
`)
defer cmd.Restore()
err := keymgr.AddRecoveryKeyToLUKSDevice(mockRecoveryKey, "/dev/foobar")
c.Assert(err, ErrorMatches, "cannot add key: cryptsetup failed with: Key slot 1 is full.*")
c.Assert(getCalls, Equals, 1)
calls := cmd.Calls()
c.Assert(calls, HasLen, 1)
c.Assert(calls[0], HasLen, 16)
c.Assert(calls[0][:2], DeepEquals, []string{"cryptsetup", "luksAddKey"})
// should match the keyslot full error too
c.Assert(keymgr.IsKeyslotAlreadyUsed(err), Equals, true)
}
func (s *keymgrSuite) TestAddRecoveryKeyToDeviceUsingExistingKey(c *C) {
restore := keymgr.MockGetDiskUnlockKeyFromKernel(func(prefix, devicePath string, remove bool) (sb.DiskUnlockKey, error) {
return nil, fmt.Errorf("unexpected call")
})
defer restore()
cmd := s.mockCryptsetupForAddKey(c)
defer cmd.Restore()
key := bytes.Repeat([]byte{1}, 32)
err := keymgr.AddRecoveryKeyToLUKSDeviceUsingKey(mockRecoveryKey, keys.EncryptionKey(key), "/dev/foobar")
c.Assert(err, IsNil)
s.verifyCryptsetupAddKey(c, cmd, []byte(key), mockRecoveryKey[:])
}
func (s *keymgrSuite) TestRemoveRecoveryKeyFromDevice(c *C) {
unlockKey := "1234abcd"
getCalls := 0
restore := keymgr.MockGetDiskUnlockKeyFromKernel(func(prefix, devicePath string, remove bool) (sb.DiskUnlockKey, error) {
getCalls++
c.Check(devicePath, Equals, "/dev/foobar")
c.Check(remove, Equals, false)
c.Check(prefix, Equals, "ubuntu-fde")
return []byte(unlockKey), nil
})
defer restore()
err := keymgr.RemoveRecoveryKeyFromLUKSDevice("/dev/foobar")
c.Assert(err, IsNil)
c.Assert(getCalls, Equals, 1)
calls := s.cryptsetupCmd.Calls()
c.Assert(calls, DeepEquals, [][]string{
{"cryptsetup", "luksKillSlot", "--type", "luks2", "--key-file", "-", "/dev/foobar", "1"},
})
}
func (s *keymgrSuite) TestRemoveRecoveryKeyFromDeviceAlreadyEmpty(c *C) {
unlockKey := "1234abcd"
getCalls := 0
restore := keymgr.MockGetDiskUnlockKeyFromKernel(func(prefix, devicePath string, remove bool) (sb.DiskUnlockKey, error) {
getCalls++
return []byte(unlockKey), nil
})
defer restore()
cmd := testutil.MockCommand(c, "cryptsetup", `
echo "Keyslot 1 is not active." >&2
exit 1
`)
defer cmd.Restore()
err := keymgr.RemoveRecoveryKeyFromLUKSDevice("/dev/foobar")
c.Assert(err, IsNil)
c.Assert(getCalls, Equals, 1)
calls := cmd.Calls()
c.Assert(calls, DeepEquals, [][]string{
{"cryptsetup", "luksKillSlot", "--type", "luks2", "--key-file", "-", "/dev/foobar", "1"},
})
}
func (s *keymgrSuite) TestRemoveRecoveryKeyFromDeviceKeyNotInKeyring(c *C) {
getCalls := 0
restore := keymgr.MockGetDiskUnlockKeyFromKernel(func(prefix, devicePath string, remove bool) (sb.DiskUnlockKey, error) {
getCalls++
c.Check(devicePath, Equals, "/dev/foobar")
return nil, fmt.Errorf("cannot find key in kernel keyring")
})
defer restore()
err := keymgr.RemoveRecoveryKeyFromLUKSDevice("/dev/foobar")
c.Assert(err, ErrorMatches, "cannot obtain current unlock key for /dev/foobar: cannot find key in kernel keyring")
c.Assert(getCalls, Equals, 1)
c.Assert(s.cryptsetupCmd.Calls(), HasLen, 0)
}
func (s *keymgrSuite) TestRemoveRecoveryKeyFromDeviceUsingKey(c *C) {
restore := keymgr.MockGetDiskUnlockKeyFromKernel(func(prefix, devicePath string, remove bool) (sb.DiskUnlockKey, error) {
c.Fail()
return nil, fmt.Errorf("unexpected call")
})
defer restore()
cryptsetupCmd := testutil.MockCommand(c, "cryptsetup", fmt.Sprintf(`
while [ "$#" -gt 1 ]; do
case "$1" in
luksKillSlot)
cat > %s
shift
;;
*)
shift
;;
esac
done
`, filepath.Join(s.rootDir, "unlock.key")))
defer cryptsetupCmd.Restore()
key := bytes.Repeat([]byte{1}, 32)
err := keymgr.RemoveRecoveryKeyFromLUKSDeviceUsingKey(keys.EncryptionKey(key), "/dev/foobar")
c.Assert(err, IsNil)
calls := cryptsetupCmd.Calls()
c.Assert(calls, DeepEquals, [][]string{
{"cryptsetup", "luksKillSlot", "--type", "luks2", "--key-file", "-", "/dev/foobar", "1"},
})
c.Assert(filepath.Join(s.rootDir, "unlock.key"), testutil.FileEquals, key)
}
func (s *keymgrSuite) TestStageEncryptionKeyHappy(c *C) {
unlockKey := "1234abcd"
getCalls := 0
restore := keymgr.MockGetDiskUnlockKeyFromKernel(func(prefix, devicePath string, remove bool) (sb.DiskUnlockKey, error) {
getCalls++
c.Check(devicePath, Equals, "/dev/foobar")
c.Check(remove, Equals, false)
c.Check(prefix, Equals, "ubuntu-fde")
return []byte(unlockKey), nil
})
defer restore()
cmd := testutil.MockCommand(c, "cryptsetup", `
while [ "$#" -gt 1 ]; do
case "$1" in
--key-file)
cat "$2"
shift 2
;;
*)
shift 1
;;
esac
done
`)
defer cmd.Restore()
// try a too short key
key := bytes.Repeat([]byte{1}, 12)
err := keymgr.StageLUKSDeviceEncryptionKeyChange(key, "/dev/foobar")
c.Assert(err, ErrorMatches, "cannot use a key of size different than 32")
key = bytes.Repeat([]byte{1}, 32)
err = keymgr.StageLUKSDeviceEncryptionKeyChange(key, "/dev/foobar")
c.Assert(err, IsNil)
c.Assert(getCalls, Equals, 1)
calls := cmd.Calls()
c.Assert(calls, HasLen, 2)
c.Assert(calls[0], DeepEquals, []string{
"cryptsetup", "luksKillSlot", "--type", "luks2", "--key-file", "-", "/dev/foobar", "2",
})
c.Assert(calls[1], HasLen, 14)
c.Assert(calls[1][5], testutil.Contains, dirs.RunDir)
calls[1][5] = "<fifo>"
// temporary key
c.Assert(calls[1], DeepEquals, []string{
"cryptsetup", "luksAddKey", "--type", "luks2",
"--key-file", "<fifo>",
"--pbkdf", "argon2i",
"--iter-time", "100",
"--key-slot", "2",
"/dev/foobar", "-",
})
}
func (s *keymgrSuite) TestStageEncryptionKeyKilledSlotAlreadyEmpty(c *C) {
unlockKey := "1234abcd"
restore := keymgr.MockGetDiskUnlockKeyFromKernel(func(prefix, devicePath string, remove bool) (sb.DiskUnlockKey, error) {
return []byte(unlockKey), nil
})
defer restore()
cmd := testutil.MockCommand(c, "cryptsetup", `
while [ "$#" -gt 1 ]; do
case "$1" in
luksKillSlot)
killslot=1
shift
;;
--key-file)
cat "$2" > /dev/null
shift 2
;;
*)
shift
;;
esac
done
if [ "$killslot" = "1" ]; then
echo "Keyslot 1 is not active." >&2
exit 1
fi
`)
defer cmd.Restore()
key := bytes.Repeat([]byte{1}, 32)
err := keymgr.StageLUKSDeviceEncryptionKeyChange(key, "/dev/foobar")
c.Assert(err, IsNil)
calls := cmd.Calls()
c.Assert(calls, HasLen, 2)
c.Assert(calls[0], DeepEquals, []string{
"cryptsetup", "luksKillSlot", "--type", "luks2", "--key-file", "-", "/dev/foobar", "2",
})
c.Assert(calls[1], HasLen, 14)
c.Assert(calls[1][5], testutil.Contains, dirs.RunDir)
calls[1][5] = "<fifo>"
// temporary key
c.Assert(calls[1], DeepEquals, []string{
"cryptsetup", "luksAddKey", "--type", "luks2",
"--key-file", "<fifo>",
"--pbkdf", "argon2i",
"--iter-time", "100",
"--key-slot", "2",
"/dev/foobar", "-",
})
}
func (s *keymgrSuite) TestStageEncryptionKeyGetUnlockFail(c *C) {
getCalls := 0
restore := keymgr.MockGetDiskUnlockKeyFromKernel(func(prefix, devicePath string, remove bool) (sb.DiskUnlockKey, error) {
getCalls++
c.Check(devicePath, Equals, "/dev/foobar")
return nil, fmt.Errorf("cannot find key in kernel keyring")
})
defer restore()
key := bytes.Repeat([]byte{1}, 32)
err := keymgr.StageLUKSDeviceEncryptionKeyChange(key, "/dev/foobar")
c.Assert(err, ErrorMatches, "cannot obtain current unlock key for /dev/foobar: cannot find key in kernel keyring")
c.Assert(s.cryptsetupCmd.Calls(), HasLen, 0)
}
func (s *keymgrSuite) TestChangeEncryptionTempKeyFails(c *C) {
unlockKey := "1234abcd"
getCalls := 0
restore := keymgr.MockGetDiskUnlockKeyFromKernel(func(prefix, devicePath string, remove bool) (sb.DiskUnlockKey, error) {
getCalls++
return []byte(unlockKey), nil
})
defer restore()
cmd := testutil.MockCommand(c, "cryptsetup", `
while [ "$#" -gt 1 ]; do
case "$1" in
--key-file)
cat "$2" > /dev/null
shift
;;
luksAddKey)
add=1
;;
--key-slot)
if [ "$add" = "1" ] && [ "$2" = "2" ]; then
echo "mock failure" >&2
exit 1
fi
;;
*)
;;
esac
shift
done
`)
defer cmd.Restore()
key := bytes.Repeat([]byte{1}, 32)
err := keymgr.StageLUKSDeviceEncryptionKeyChange(key, "/dev/foobar")
c.Assert(err, ErrorMatches, "cannot add temporary key: cryptsetup failed with: mock failure")
c.Assert(getCalls, Equals, 1)
calls := cmd.Calls()
c.Assert(calls, HasLen, 2)
}
func (s *keymgrSuite) TestTransitionEncryptionKeyExpectedHappy(c *C) {
restore := keymgr.MockGetDiskUnlockKeyFromKernel(func(prefix, devicePath string, remove bool) (sb.DiskUnlockKey, error) {
c.Errorf("unepected call")
return nil, fmt.Errorf("unexpected call")
})
defer restore()
cmd := testutil.MockCommand(c, "cryptsetup", `
while [ "$#" -gt 1 ]; do
case "$1" in
luksAddKey)
keyadd=1
shift
;;
--key-slot)
keyslot="$2"
shift 2
;;
--key-file)
cat "$2" > /dev/null
shift 2
;;
*)
shift 1
;;
esac
done
if [ "$keyadd" = "1" ] && [ "$keyslot" = "2" ]; then
echo "Key slot 2 is full, please select another one." >&2
exit 1
fi
`)
defer cmd.Restore()
// try a too short key
key := bytes.Repeat([]byte{1}, 12)
err := keymgr.TransitionLUKSDeviceEncryptionKeyChange(key, "/dev/foobar")
c.Assert(err, ErrorMatches, "cannot use a key of size different than 32")
key = bytes.Repeat([]byte{1}, 32)
err = keymgr.TransitionLUKSDeviceEncryptionKeyChange(key, "/dev/foobar")
c.Assert(err, IsNil)
calls := cmd.Calls()
c.Assert(calls, HasLen, 5)
// probing the key slot use
c.Assert(calls[0], HasLen, 14)
c.Assert(calls[0][5], testutil.Contains, dirs.RunDir)
calls[0][5] = "<fifo>"
// temporary key
c.Assert(calls[0], DeepEquals, []string{
"cryptsetup", "luksAddKey", "--type", "luks2",
"--key-file", "<fifo>",
"--pbkdf", "argon2i",
"--iter-time", "100",
"--key-slot", "2",
"/dev/foobar", "-",
})
// killing the encryption key
c.Assert(calls[1], DeepEquals, []string{
"cryptsetup", "luksKillSlot", "--type", "luks2", "--key-file", "-", "/dev/foobar", "0",
})
// adding the new encryption key
c.Assert(calls[2], HasLen, 14)
c.Assert(calls[2][5], testutil.Contains, dirs.RunDir)
calls[2][5] = "<fifo>"
c.Assert(calls[2], DeepEquals, []string{
"cryptsetup", "luksAddKey", "--type", "luks2",
"--key-file", "<fifo>",
"--pbkdf", "argon2i",
"--iter-time", "100",
"--key-slot", "0",
"/dev/foobar", "-",
})
// kill the temp key
c.Assert(calls[3], DeepEquals, []string{
"cryptsetup", "luksKillSlot", "--type", "luks2", "--key-file", "-", "/dev/foobar", "2",
})
// set priority
c.Assert(calls[4], DeepEquals, []string{
"cryptsetup", "config", "--priority", "prefer", "--key-slot", "0", "/dev/foobar",
})
}
func (s *keymgrSuite) TestTransitionEncryptionKeyHappyKillSlotsInactive(c *C) {
restore := keymgr.MockGetDiskUnlockKeyFromKernel(func(prefix, devicePath string, remove bool) (sb.DiskUnlockKey, error) {
c.Errorf("unepected call")
return nil, fmt.Errorf("unexpected call")
})
defer restore()
cmd := testutil.MockCommand(c, "cryptsetup", `
while [ "$#" -gt 1 ]; do
case "$1" in
luksKillSlot)
killslot=1
shift
;;
luksAddKey)
keyadd=1
shift
;;
--key-slot)
keyslot="$2"
shift 2
;;
--key-file)
cat "$2" > /dev/null
shift 2
;;
*)
shift 1
;;
esac
done
if [ "$keyadd" = "1" ] && [ "$keyslot" = "2" ]; then
echo "Key slot 2 is full, please select another one." >&2
exit 1
elif [ "$killslot" = "1" ]; then
echo "Keyslot 2 is not active." >&2
exit 1
fi
`)
defer cmd.Restore()
// try a too short key
key := bytes.Repeat([]byte{1}, 12)
err := keymgr.TransitionLUKSDeviceEncryptionKeyChange(key, "/dev/foobar")
c.Assert(err, ErrorMatches, "cannot use a key of size different than 32")
key = bytes.Repeat([]byte{1}, 32)
err = keymgr.TransitionLUKSDeviceEncryptionKeyChange(key, "/dev/foobar")
c.Assert(err, IsNil)
calls := cmd.Calls()
c.Assert(calls, HasLen, 5)
// probing the key slot use
c.Assert(calls[0], HasLen, 14)
// temporary key
c.Assert(calls[0][:2], DeepEquals, []string{
"cryptsetup", "luksAddKey",
})
// killing the encryption key
c.Assert(calls[1], DeepEquals, []string{
"cryptsetup", "luksKillSlot", "--type", "luks2", "--key-file", "-", "/dev/foobar", "0",
})
// adding the new encryption key
c.Assert(calls[2], HasLen, 14)
c.Assert(calls[2][5], testutil.Contains, dirs.RunDir)
calls[2][5] = "<fifo>"
c.Assert(calls[2], DeepEquals, []string{
"cryptsetup", "luksAddKey", "--type", "luks2",
"--key-file", "<fifo>",
"--pbkdf", "argon2i",
"--iter-time", "100",
"--key-slot", "0",
"/dev/foobar", "-",
})
// kill the temp key
c.Assert(calls[3], DeepEquals, []string{
"cryptsetup", "luksKillSlot", "--type", "luks2", "--key-file", "-", "/dev/foobar", "2",
})
// set priority
c.Assert(calls[4], DeepEquals, []string{
"cryptsetup", "config", "--priority", "prefer", "--key-slot", "0", "/dev/foobar",
})
}
func (s *keymgrSuite) TestTransitionEncryptionKeyHappyOtherErrs(c *C) {
restore := keymgr.MockGetDiskUnlockKeyFromKernel(func(prefix, devicePath string, remove bool) (sb.DiskUnlockKey, error) {
c.Errorf("unepected call")
return nil, fmt.Errorf("unexpected call")
})
defer restore()
cmd := testutil.MockCommand(c, "cryptsetup", `
while [ "$#" -gt 1 ]; do
case "$1" in
luksAddKey)
keyadd=1
shift
;;
--key-slot)
keyslot="$2"
shift 2
;;
--key-file)
cat "$2" > /dev/null
shift 2
;;
*)
shift 1
;;
esac
done
if [ "$keyadd" = "1" ] && [ "$keyslot" = "2" ]; then
echo "Key slot 2 is full, please select another one." >&2
exit 1
elif [ "$keyadd" = "1" ] && [ "$keyslot" = "0" ]; then
echo "mock error" >&2
exit 1
fi
`)
defer cmd.Restore()
key := bytes.Repeat([]byte{1}, 32)
err := keymgr.TransitionLUKSDeviceEncryptionKeyChange(key, "/dev/foobar")
c.Assert(err, ErrorMatches, "cannot add new encryption key: cryptsetup failed with: mock error")
calls := cmd.Calls()
c.Assert(calls, HasLen, 3)
// probing the key slot use
c.Assert(calls[0], HasLen, 14)
// temporary key
c.Assert(calls[0][:2], DeepEquals, []string{
"cryptsetup", "luksAddKey",
})
// killing the encryption key
c.Assert(calls[1], DeepEquals, []string{
"cryptsetup", "luksKillSlot", "--type", "luks2", "--key-file", "-", "/dev/foobar", "0",
})
// adding the new encryption key
c.Assert(calls[2], HasLen, 14)
c.Assert(calls[2][5], testutil.Contains, dirs.RunDir)
calls[2][5] = "<fifo>"
c.Assert(calls[2], DeepEquals, []string{
"cryptsetup", "luksAddKey", "--type", "luks2",
"--key-file", "<fifo>",
"--pbkdf", "argon2i",
"--iter-time", "100",
"--key-slot", "0",
"/dev/foobar", "-",
})
}
func (s *keymgrSuite) TestTransitionEncryptionKeyCannotAddKeyNotStaged(c *C) {
// conditions like when the encryption key has not been previously
// staged
restore := keymgr.MockGetDiskUnlockKeyFromKernel(func(prefix, devicePath string, remove bool) (sb.DiskUnlockKey, error) {
c.Errorf("unepected call")
return nil, fmt.Errorf("unexpected call")
})
defer restore()
cmd := testutil.MockCommand(c, "cryptsetup", `
while [ "$#" -gt 1 ]; do
case "$1" in
luksAddKey)
keyadd=1
shift
;;
--key-file)
cat "$2" > /dev/null
shift 2
;;
*)
shift 1
;;
esac
done
if [ "$keyadd" = "1" ] ; then
echo "No key available with this passphrase." >&2
exit 1
fi
`)
defer cmd.Restore()
key := bytes.Repeat([]byte{1}, 32)
err := keymgr.TransitionLUKSDeviceEncryptionKeyChange(key, "/dev/foobar")
c.Assert(err, ErrorMatches, "cannot add new encryption key: cryptsetup failed with: No key available with this passphrase.")
calls := cmd.Calls()
c.Assert(calls, HasLen, 1)
// probing the key slot use
c.Assert(calls[0], HasLen, 14)
c.Assert(calls[0][5], testutil.Contains, dirs.RunDir)
calls[0][5] = "<fifo>"
// temporary key
c.Assert(calls[0], DeepEquals, []string{
"cryptsetup", "luksAddKey", "--type", "luks2",
"--key-file", "<fifo>",
"--pbkdf", "argon2i",
"--iter-time", "100",
"--key-slot", "2",
"/dev/foobar", "-",
})
}
func (s *keymgrSuite) TestTransitionEncryptionKeyPostRebootHappy(c *C) {
restore := keymgr.MockGetDiskUnlockKeyFromKernel(func(prefix, devicePath string, remove bool) (sb.DiskUnlockKey, error) {
c.Errorf("unepected call")
return nil, fmt.Errorf("unexpected call")
})
defer restore()
cmd := testutil.MockCommand(c, "cryptsetup", `
while [ "$#" -gt 1 ]; do
case "$1" in
--key-file)
cat "$2" > /dev/null
shift 2
;;
*)
shift
;;
esac
done
`)
defer cmd.Restore()
key := bytes.Repeat([]byte{1}, 32)
err := keymgr.TransitionLUKSDeviceEncryptionKeyChange(key, "/dev/foobar")
c.Assert(err, IsNil)
calls := cmd.Calls()
c.Assert(calls, HasLen, 2)
c.Assert(calls[0], HasLen, 14)
c.Assert(calls[0][5], testutil.Contains, dirs.RunDir)
calls[0][5] = "<fifo>"
// adding to a temporary key slot is successful, indicating a previously
// successful transition
c.Assert(calls[0], DeepEquals, []string{
"cryptsetup", "luksAddKey", "--type", "luks2",
"--key-file", "<fifo>",
"--pbkdf", "argon2i",
"--iter-time", "100",
"--key-slot", "2",
"/dev/foobar", "-",
})
// an a cleanup of the temp key slot
c.Assert(calls[1], DeepEquals, []string{
"cryptsetup", "luksKillSlot", "--type", "luks2", "--key-file", "-", "/dev/foobar", "2",
})
}
func (s *keymgrSuite) TestTransitionEncryptionKeyPostRebootCannotKillSlot(c *C) {
// a post reboot scenario in which the luksKillSlot fails unexpectedly
restore := keymgr.MockGetDiskUnlockKeyFromKernel(func(prefix, devicePath string, remove bool) (sb.DiskUnlockKey, error) {
c.Errorf("unepected call")
return nil, fmt.Errorf("unexpected call")
})
defer restore()
cmd := testutil.MockCommand(c, "cryptsetup", `
while [ "$#" -gt 1 ]; do
case "$1" in
luksKillSlot)
killslot=1
shift
;;
--key-file)
cat "$2" > /dev/null
shift 2
;;
*)
shift
;;
esac
done
if [ "$killslot" = "1" ]; then
echo "mock error" >&2
exit 5
fi
`)
defer cmd.Restore()
key := bytes.Repeat([]byte{1}, 32)
err := keymgr.TransitionLUKSDeviceEncryptionKeyChange(key, "/dev/foobar")
c.Assert(err, ErrorMatches, "cannot kill temporary key slot: cryptsetup failed with: mock error")
calls := cmd.Calls()
c.Assert(calls, HasLen, 2)
c.Assert(calls[0], HasLen, 14)
c.Assert(calls[0][:2], DeepEquals, []string{
"cryptsetup", "luksAddKey",
})
// an a cleanup of the temp key slot
c.Assert(calls[1], DeepEquals, []string{
"cryptsetup", "luksKillSlot", "--type", "luks2", "--key-file", "-", "/dev/foobar", "2",
})
}
func (s *keymgrSuite) TestRecoveryKDF(c *C) {
mockedMeminfoFile := filepath.Join(c.MkDir(), "meminfo")
s.AddCleanup(osutil.MockProcMeminfo(mockedMeminfoFile))
_, err := keymgr.RecoveryKDF()
c.Assert(err, ErrorMatches, "cannot get usable memory for KDF parameters when adding the recovery key: open .*")
c.Assert(ioutil.WriteFile(mockedMeminfoFile, []byte(mockedMeminfo), 0644), IsNil)
opts, err := keymgr.RecoveryKDF()
c.Assert(err, IsNil)
c.Assert(opts, DeepEquals, &luks2.KDFOptions{
MemoryKiB: 202834,
ForceIterations: 4,
})
const lotsOfMem = `MemTotal: 2097152 kB
CmaTotal: 131072 kB
`
c.Assert(ioutil.WriteFile(mockedMeminfoFile, []byte(lotsOfMem), 0644), IsNil)
opts, err = keymgr.RecoveryKDF()
c.Assert(err, IsNil)
c.Assert(opts, DeepEquals, &luks2.KDFOptions{
MemoryKiB: 786432,
ForceIterations: 4,
})
const littleMem = `MemTotal: 262144 kB
CmaTotal: 131072 kB
`
c.Assert(ioutil.WriteFile(mockedMeminfoFile, []byte(littleMem), 0644), IsNil)
opts, err = keymgr.RecoveryKDF()
c.Assert(err, IsNil)
c.Assert(opts, DeepEquals, &luks2.KDFOptions{
MemoryKiB: 32,
ForceIterations: 4,
})
}