opcard 1.9.0

OpenPGP smart card implementation
Documentation
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
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
// Copyright (C) 2022 Nitrokey GmbH
// SPDX-License-Identifier: LGPL-3.0-only

use core::mem::take;

use heapless_bytes::Bytes;
use hex_literal::hex;
use iso7816::Status;
use littlefs2_core::{path, Path, PathBuf};
use serde::{Deserialize, Deserializer, Serialize, Serializer};
use serde_repr::{Deserialize_repr, Serialize_repr};

use trussed_chunked::utils::{write_all, EncryptionData};
use trussed_core::api::reply::Metadata;
use trussed_core::config::MAX_MESSAGE_LENGTH;
use trussed_core::types::{KeyId, Location, Mechanism, Message, StorageAttributes};
use trussed_core::{syscall, try_syscall};

use crate::card::reply::Reply;
use crate::command::{Password, PasswordMode};
use crate::error::Error;
use crate::types::*;
use crate::utils::serde_bytes;

/// Maximum supported length for PW1 and PW3
pub const MAX_PIN_LENGTH: usize = 127;
pub const MIN_LENGTH_RESET_CODE: usize = 8;
pub const MIN_LENGTH_ADMIN_PIN: usize = 8;
pub const MIN_LENGTH_USER_PIN: usize = 6;

/// Default value for PW1
pub const DEFAULT_USER_PIN: &[u8] = b"123456";
/// Default value for PW3
pub const DEFAULT_ADMIN_PIN: &[u8] = b"12345678";

pub const MAX_GENERIC_LENGTH: usize = 4096;
/// Big endian encoding of [MAX_GENERIC_LENGTH](MAX_GENERIC_LENGTH)
pub const MAX_GENERIC_LENGTH_BE: [u8; 2] = (MAX_GENERIC_LENGTH as u16).to_be_bytes();

pub const SIGNING_KEY_PATH: &Path = path!("signing_key.bin");
pub const DEC_KEY_PATH: &Path = path!("conf_key.bin");
pub const AUTH_KEY_PATH: &Path = path!("auth_key.bin");
pub const AES_KEY_PATH: &Path = path!("aes_key.bin");

macro_rules! enum_u8 {
    (
        $(#[$outer:meta])*
        $vis:vis enum $name:ident {
            $($(#[$attr:meta])? $var:ident = $num:expr),+
            $(,)*
        }
    ) => {
        $(#[$outer])*
        #[repr(u8)]
        $vis enum $name {
            $(
                $(#[$attr])?
                $var = $num,
            )*
        }

        impl TryFrom<u8> for $name {
            type Error = Status;
            fn try_from(val: u8) -> ::core::result::Result<Self, Status> {
                match val {
                    $(
                        $num => Ok($name::$var),
                    )*
                    _ => Err(Status::KeyReferenceNotFound)
                }
            }
        }
    }
}

macro_rules! concatenated_key_newtype {
    (
        $(#[$outer:meta])*
        $vis:vis struct $name:ident ($inner_vis:vis [u8; $N:literal]);
    ) => {
        $(#[$outer])*
        $vis struct $name($inner_vis [u8; $N]);

        impl Default for $name {
            fn default() -> $name {
                $name([0;$N])
            }
        }

        impl $name {
            pub fn key_part_mut(&mut self, key: KeyType) -> &mut [u8] {
                let offset = self.key_offset(key);
                &mut self.0[offset..][..$N/3]
            }
        }

        // Custom (De)Serialize impls using serde_bytes
        impl Serialize for $name {
            fn serialize<S: Serializer>(&self, serializer: S) -> Result<S::Ok, S::Error> {
                serde_bytes::serialize(&self.0, serializer)
            }
        }

        impl<'de> Deserialize<'de> for $name {
            fn deserialize<D: Deserializer<'de>>(deserializer: D) -> Result<Self, D::Error> {
                serde_bytes::deserialize(deserializer).map($name)
            }
        }

    }
}

concatenated_key_newtype! {
    #[derive(Debug, Copy, Clone, PartialEq, Eq)]
    pub struct Fingerprints(pub [u8; 60]);
}

concatenated_key_newtype! {
    #[derive(Debug, Copy, Clone, PartialEq, Eq)]
    pub struct CaFingerprints(pub [u8; 60]);
}

concatenated_key_newtype! {
    #[derive(Debug, Copy, Clone, PartialEq, Eq)]
    pub struct KeyGenDates(pub [u8; 12]);
}

impl Fingerprints {
    fn key_offset(&self, for_key: KeyType) -> usize {
        match for_key {
            KeyType::Sign => 0,
            KeyType::Dec => 20,
            KeyType::Aut => 40,
        }
    }
}

impl KeyGenDates {
    fn key_offset(&self, for_key: KeyType) -> usize {
        match for_key {
            KeyType::Sign => 0,
            KeyType::Dec => 4,
            KeyType::Aut => 8,
        }
    }
}

impl CaFingerprints {
    fn key_offset(&self, for_key: KeyType) -> usize {
        match for_key {
            KeyType::Sign => 40,
            KeyType::Dec => 20,
            KeyType::Aut => 0,
        }
    }
}

/// Life cycle status byte, see § 6
#[derive(PartialEq, Eq, Clone, Copy, Debug, Serialize, Deserialize)]
pub enum LifeCycle {
    Initialization = 0x03,
    Operational = 0x05,
}

#[derive(Clone, Debug, Default, PartialEq, Eq)]
pub struct State {
    // Persistent state may not be loaded, or may error when loaded
    pub persistent: Option<Persistent>,
    pub volatile: Volatile,
}

impl State {
    /// Loads the persistent state from flash
    pub fn load<'s, T: crate::card::Client>(
        &'s mut self,
        client: &mut T,
        storage: Location,
    ) -> Result<LoadedState<'s>, Error> {
        // This would be the correct way but it doesn't compile because of
        // https://github.com/rust-lang/rust/issues/47680 (I think)
        //if let Some(persistent) = self.persistent.as_mut() {
        //    Ok(LoadedState {
        //        persistent,
        //        volatile: &mut self.volatile,
        //    })
        //} else {
        //    Ok(LoadedState {
        //        persistent: self.persistent.insert(Persistent::load(client)?),
        //        volatile: &mut self.volatile,
        //    })
        //}

        if self.persistent.is_none() {
            self.persistent = Some(Persistent::load(client, storage)?);
        }

        #[allow(clippy::unwrap_used)]
        Ok(LoadedState {
            persistent: self.persistent.as_mut().unwrap(),
            volatile: &mut self.volatile,
        })
    }

    const LIFECYCLE_PATH: &'static Path = path!("lifecycle.empty");
    fn lifecycle_path() -> PathBuf {
        PathBuf::from(Self::LIFECYCLE_PATH)
    }
    pub fn lifecycle<T: crate::card::Client>(client: &mut T, storage: Location) -> LifeCycle {
        match try_syscall!(client.entry_metadata(storage, Self::lifecycle_path())) {
            Ok(Metadata { metadata: Some(_) }) => LifeCycle::Initialization,
            _ => LifeCycle::Operational,
        }
    }

    pub fn terminate_df<T: crate::card::Client>(
        client: &mut T,
        storage: Location,
    ) -> Result<(), Status> {
        try_syscall!(client.write_file(storage, Self::lifecycle_path(), Bytes::new(), None,))
            .map(|_| {})
            .map_err(|_err| {
                error!("Failed to write lifecycle: {_err:?}");
                Status::UnspecifiedPersistentExecutionError
            })
    }

    pub fn activate_file<T: crate::card::Client>(
        client: &mut T,
        storage: Location,
    ) -> Result<(), Status> {
        try_syscall!(client.remove_file(storage, Self::lifecycle_path(),)).ok();
        // Errors can happen because of the removal of all files before the call to activate_file
        // so they are silenced
        Ok(())
    }
}

#[derive(Debug)]
pub struct LoadedState<'s> {
    pub persistent: &'s mut Persistent,
    pub volatile: &'s mut Volatile,
}

impl LoadedState<'_> {
    /// Lend the state
    ///
    /// The resulting `LoadedState` has a shorter lifetime than the original one, meaning that it
    /// can be passed by value to other functions and the original state can then be used again
    pub fn lend(&mut self) -> LoadedState<'_> {
        LoadedState {
            persistent: self.persistent,
            volatile: self.volatile,
        }
    }

    pub fn verify_pin<T: crate::card::Client>(
        &mut self,
        client: &mut T,
        storage: Location,
        value: &[u8],
        password: PasswordMode,
    ) -> Result<(), Error> {
        let pin = Bytes::try_from(value).map_err(|_| {
            warn!("Attempt to verify pin that is too long");
            Error::InvalidPin
        })?;
        let key_exists = match password {
            PasswordMode::Pw1Sign | PasswordMode::Pw1Other => self.volatile.user_kek(),
            PasswordMode::Pw3 => self.volatile.admin_kek(),
        };
        let pin_id: Password = password.into();

        let checked_key = if let Some(k) = key_exists {
            // If the pin key is alraedy available, don't derive it again to save memory
            let res = try_syscall!(client.check_pin(pin_id, pin.clone())).map_err(|_err| {
                error!("Failed to verify pin: {:?}", _err);
                Error::InvalidPin
            })?;

            if !res.success {
                return Err(Error::InvalidPin);
            }
            k
        } else {
            try_syscall!(client.get_pin_key(pin_id, pin.clone()))
                .map_err(|_err| {
                    error!("Failed to verify pin: {:?}", _err);
                    Error::InvalidPin
                })?
                .result
                .ok_or(Error::InvalidPin)?
        };

        match password {
            PasswordMode::Pw1Sign => self.volatile.user.verify_sign(checked_key),
            PasswordMode::Pw1Other => self.volatile.user.verify_other(checked_key),
            PasswordMode::Pw3 => self.volatile.admin.verify(checked_key),
        };

        // Reset the pin length in case it was incorrect due to the lack of atomicity of operations.
        self.persistent
            .set_pin_len(client, storage, pin.len(), pin_id)?;
        Ok(())
    }

    pub fn check_pin<T: crate::card::Client>(
        &mut self,
        client: &mut T,
        value: &[u8],
        password: Password,
    ) -> Result<KeyId, Error> {
        let pin = Bytes::try_from(value).map_err(|_| {
            warn!("Attempt to verify pin that is too long");
            Error::InvalidPin
        })?;
        try_syscall!(client.get_pin_key(password, pin))
            .map_err(|_err| Error::InvalidPin)?
            .result
            .ok_or(Error::InvalidPin)
    }

    fn get_user_key<T: crate::card::Client>(
        &mut self,
        client: &mut T,
        storage: Location,
    ) -> Result<KeyId, Error> {
        let admin_key = self.volatile.admin_kek().ok_or(Error::InvalidPin)?;
        let user_wrapped =
            syscall!(client.read_file(storage, PathBuf::from(ADMIN_USER_KEY_BACKUP))).data;
        let user_key = try_syscall!(client.unwrap_key(
            Mechanism::Chacha8Poly1305,
            admin_key,
            user_wrapped,
            ADMIN_USER_KEY_BACKUP.as_str().as_bytes(),
            &[],
            StorageAttributes::new().set_persistence(Location::Volatile)
        ))
        .map_err(|_err| {
            error!("Failed to unwrap backup user key: {:?}", _err);
            Error::Internal
        })?
        .key
        .ok_or_else(|| {
            error!("Failed to unwrap backup user key");
            Error::Internal
        })?;
        Ok(user_key)
    }

    fn get_user_key_from_rc<T: crate::card::Client>(
        &mut self,
        client: &mut T,
        storage: Location,
        rc_key: KeyId,
    ) -> Result<KeyId, Error> {
        let user_wrapped =
            syscall!(client.read_file(storage, PathBuf::from(RC_USER_KEY_BACKUP))).data;
        let user_key = try_syscall!(client.unwrap_key(
            Mechanism::Chacha8Poly1305,
            rc_key,
            user_wrapped,
            RC_USER_KEY_BACKUP.as_str().as_bytes(),
            &[],
            StorageAttributes::new().set_persistence(Location::Volatile)
        ))
        .map_err(|_err| {
            error!("Failed to unwrap backup key from rc: {:?}", _err);
            Error::Internal
        })?
        .key
        .ok_or_else(|| {
            error!("Failed to unwrap backup key from rc");
            Error::Internal
        })?;
        Ok(user_key)
    }

    pub fn reset_user_code_with_pw3<T: crate::card::Client>(
        &mut self,
        client: &mut T,
        storage: Location,
        new_value: &[u8],
    ) -> Result<(), Error> {
        let user_key = self.get_user_key(client, storage)?;
        let new_pin = Bytes::try_from(new_value).map_err(|_| Error::InvalidPin)?;
        syscall!(client.set_pin_with_key(Password::Pw1, new_pin, Some(3), user_key));
        self.persistent
            .set_pin_len(client, storage, new_value.len(), Password::Pw1)?;
        syscall!(client.delete(user_key));
        Ok(())
    }

    pub fn reset_user_code_with_rc<T: crate::card::Client>(
        &mut self,
        client: &mut T,
        storage: Location,
        new_value: &[u8],
        rc_key: KeyId,
    ) -> Result<(), Error> {
        let user_key = self.get_user_key_from_rc(client, storage, rc_key)?;
        let new_pin = Bytes::try_from(new_value).map_err(|_| Error::InvalidPin)?;
        syscall!(client.set_pin_with_key(Password::Pw1, new_pin, Some(3), user_key));
        self.persistent
            .set_pin_len(client, storage, new_value.len(), Password::Pw1)?;
        syscall!(client.delete(user_key));
        Ok(())
    }

    pub fn set_reset_code<T: crate::card::Client>(
        &mut self,
        client: &mut T,
        storage: Location,
        new_value: &[u8],
    ) -> Result<(), Error> {
        let new_pin = Bytes::try_from(new_value).map_err(|_| Error::InvalidPin)?;
        syscall!(client.set_pin(Password::ResetCode, new_pin.clone(), Some(3), true));
        self.persistent
            .set_pin_len(client, storage, new_pin.len(), Password::ResetCode)?;
        #[allow(clippy::expect_used)]
        let rc_key = syscall!(client.get_pin_key(Password::ResetCode, new_pin))
            .result
            .expect("New pin should not fail");

        let user_key = self.get_user_key(client, storage)?;
        let wrapped_user_key = syscall!(client.wrap_key(
            Mechanism::Chacha8Poly1305,
            rc_key,
            user_key,
            RC_USER_KEY_BACKUP.as_str().as_bytes(),
            None,
        ))
        .wrapped_key;
        syscall!(client.write_file(
            storage,
            PathBuf::from(RC_USER_KEY_BACKUP),
            wrapped_user_key,
            None
        ));
        syscall!(client.delete(user_key));
        syscall!(client.delete(rc_key));

        Ok(())
    }

    pub fn set_aes_key<T: crate::card::Client>(
        &mut self,
        new: KeyId,
        client: &mut T,
        storage: Location,
    ) -> Result<(), Error> {
        self.volatile.user.0.clear_aes_cached(client);
        let user_kek = self.get_user_key(client, storage)?;
        syscall!(client.wrap_key_to_file(
            Mechanism::Chacha8Poly1305,
            user_kek,
            new,
            PathBuf::from(AES_KEY_PATH),
            storage,
            AES_KEY_PATH.as_str().as_bytes()
        ));
        syscall!(client.delete(new));
        Ok(())
    }

    /// New contains (private key, (public key, KeyOrigin))
    pub fn set_key<T: crate::card::Client>(
        &mut self,
        ty: KeyType,
        new: Option<(KeyId, (KeyId, KeyOrigin))>,
        client: &mut T,
        storage: Location,
    ) -> Result<(), Error> {
        let path_str = ty.path();
        let origin = self.persistent.key_data_mut(ty);
        let path = PathBuf::from(path_str);

        let (new_id, new_origin) = match (new, &origin) {
            (None, Some((k, _))) => {
                // Copying for borrow checker
                let pub_key = *k;
                *origin = None;
                self.persistent.save(client, storage)?;
                try_syscall!(client.remove_file(storage, path)).ok();
                try_syscall!(client.delete(pub_key)).map_err(|_err| {
                    error!("Failed to delete key");
                    Error::Saving
                })?;
                return Ok(());
            }
            (None, None) => return Ok(()),

            // In this case we want to avoid storing old information with a new key, or vice-versa
            (Some((new_id, new_origin)), Some((k, _))) => {
                // Copying for borrow checker
                let pub_key = *k;
                *origin = None;
                self.persistent.save(client, storage)?;
                try_syscall!(client.delete(pub_key)).map_err(|_err| {
                    error!("Failed to delete key");
                    Error::Saving
                })?;
                (new_id, new_origin)
            }
            (Some((new_id, new_origin)), None) => (new_id, new_origin),
        };

        self.volatile.user.0.clear_cached(client, ty);

        let user_kek = self.get_user_key(client, storage)?;

        syscall!(client.wrap_key_to_file(
            Mechanism::Chacha8Poly1305,
            user_kek,
            new_id,
            path,
            storage,
            path_str.as_str().as_bytes()
        ));

        let private_to_change = match ty {
            KeyType::Sign => &mut self.persistent.signing_private_to_delete,
            KeyType::Dec => &mut self.persistent.confidentiality_private_to_delete,
            KeyType::Aut => &mut self.persistent.aut_private_to_delete,
        };

        // Delete the old private key metadata (that was only ever deleted with `clear`)
        if let Some(id) = private_to_change.take() {
            syscall!(client.delete(id));
        }

        *private_to_change = Some(new_id);
        syscall!(client.clear(new_id));
        syscall!(client.delete(user_kek));
        *self.persistent.key_data_mut(ty) = Some(new_origin);

        if matches!(ty, KeyType::Sign) {
            self.persistent.sign_count = 0;
        }
        self.persistent.save(client, storage)?;
        Ok(())
    }

    /// Avoid having too many RSA keys in volatile storage
    fn limit_cache_size(
        client: &mut impl crate::card::Client,
        keys: &mut [(&mut Option<KeyId>, bool)],
    ) {
        for key in keys
            .iter_mut()
            .filter_map(|(k, is_rsa)| if *is_rsa { Some(k.take()) } else { None })
            .flatten()
        {
            syscall!(client.clear(key));
        }
    }

    /// Returns the requested key
    pub fn key_id(
        &mut self,
        client: &mut impl crate::card::Client,
        key: KeyType,
        storage: Location,
    ) -> Result<KeyId, Status> {
        use KeyType as K;
        use UserVerifiedInner as V;

        if self.persistent.public_key_id(key).is_none() {
            return Err(Status::KeyReferenceNotFound);
        }

        // Self::limit_cache_size is there to avoid having multiple keys in the volatile storage.
        // RSA keys can be up 2.3KB out of the total 8KiB.
        // With 3 keys this gets us very close to being full, especially with the added overhead of littlefs metadata
        //
        // Therefore we never cache more than 1 key
        match (&mut self.volatile.user.0, key) {
            (V::None, _) => Err(Status::SecurityStatusNotSatisfied),
            (V::Sign(user_kek, cache) | V::OtherAndSign(user_kek, cache), K::Sign) => {
                Self::limit_cache_size(
                    client,
                    &mut [
                        (&mut cache.dec, self.persistent.dec_alg.is_rsa()),
                        (&mut cache.aut, self.persistent.aut_alg.is_rsa()),
                    ],
                );
                Volatile::load_or_get_key(
                    client,
                    *user_kek,
                    &mut cache.sign,
                    SIGNING_KEY_PATH,
                    storage,
                )
            }
            (V::Other(user_kek, cache) | V::OtherAndSign(user_kek, cache), K::Aut) => {
                Self::limit_cache_size(
                    client,
                    &mut [
                        (&mut cache.sign, self.persistent.sign_alg.is_rsa()),
                        (&mut cache.dec, self.persistent.dec_alg.is_rsa()),
                    ],
                );
                Volatile::load_or_get_key(client, *user_kek, &mut cache.aut, AUTH_KEY_PATH, storage)
            }
            (V::Other(user_kek, cache) | V::OtherAndSign(user_kek, cache), K::Dec) => {
                Self::limit_cache_size(
                    client,
                    &mut [
                        (&mut cache.sign, self.persistent.sign_alg.is_rsa()),
                        (&mut cache.aut, self.persistent.aut_alg.is_rsa()),
                    ],
                );
                Volatile::load_or_get_key(client, *user_kek, &mut cache.dec, DEC_KEY_PATH, storage)
            }
            _ => Err(Status::SecurityStatusNotSatisfied),
        }
    }
}

enum_u8! {
    #[derive(Clone, Debug, Eq, PartialEq, Copy, Deserialize_repr, Serialize_repr, Default)]
    pub enum Sex {
        #[default]
        NotKnown = 0x30,
        Male = 0x31,
        Female = 0x32,
        NotApplicable = 0x39,
    }
}

#[derive(Clone, Copy, Deserialize, Serialize, Debug, PartialEq, Eq)]
pub enum KeyOrigin {
    /// From GENERATE ASYMETRIC KEYPAIR
    Generated,
    Imported,
}

#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
pub struct Persistent {
    pw1_valid_multiple: bool,
    user_pin_len: u8,
    admin_pin_len: u8,
    reset_code_pin_len: Option<u8>,
    /// (public_key, origin)
    signing_key: Option<(KeyId, KeyOrigin)>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    signing_private_to_delete: Option<KeyId>,
    /// (public_key, origin)
    confidentiality_key: Option<(KeyId, KeyOrigin)>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    confidentiality_private_to_delete: Option<KeyId>,
    /// (public_key, origin)
    aut_key: Option<(KeyId, KeyOrigin)>,
    #[serde(default, skip_serializing_if = "Option::is_none")]
    aut_private_to_delete: Option<KeyId>,
    sign_alg: SignatureAlgorithm,
    dec_alg: DecryptionAlgorithm,
    aut_alg: AuthenticationAlgorithm,
    fingerprints: Fingerprints,
    ca_fingerprints: CaFingerprints,
    keygen_dates: KeyGenDates,

    cardholder_name: Bytes<39>,
    cardholder_sex: Sex,
    language_preferences: Bytes<8>,
    sign_count: u32,
    uif_sign: Uif,
    uif_dec: Uif,
    uif_aut: Uif,
}

/// User pin key wrapped by the resetting code key
const RC_USER_KEY_BACKUP: &Path = path!("rc-user-pin-key.bin");
/// User pin key wrapped by the admin key
const ADMIN_USER_KEY_BACKUP: &Path = path!("admin-user-pin-key.bin");

impl Persistent {
    const FILENAME: &'static Path = path!("persistent-state.cbor");

    // § 4.3
    const MAX_RETRIES: u8 = 3;

    #[allow(clippy::unwrap_used)]
    fn default() -> Self {
        Self {
            reset_code_pin_len: None,
            pw1_valid_multiple: false,
            admin_pin_len: DEFAULT_ADMIN_PIN.len() as u8,
            user_pin_len: DEFAULT_USER_PIN.len() as u8,
            cardholder_name: Bytes::new(),
            cardholder_sex: Sex::default(),
            language_preferences: Bytes::new(),
            sign_count: 0,
            signing_key: None,
            signing_private_to_delete: None,
            confidentiality_key: None,
            confidentiality_private_to_delete: None,
            aut_key: None,
            aut_private_to_delete: None,
            sign_alg: SignatureAlgorithm::default(),
            dec_alg: DecryptionAlgorithm::default(),
            aut_alg: AuthenticationAlgorithm::default(),
            fingerprints: Fingerprints::default(),
            ca_fingerprints: CaFingerprints::default(),
            keygen_dates: KeyGenDates::default(),
            uif_sign: Uif::Disabled,
            uif_dec: Uif::Disabled,
            uif_aut: Uif::Disabled,
        }
    }

    pub fn public_key_id(&self, ty: KeyType) -> Option<KeyId> {
        match ty {
            KeyType::Sign => self.signing_key.map(|(pubkey, _)| pubkey),
            KeyType::Aut => self.aut_key.map(|(pubkey, _)| pubkey),
            KeyType::Dec => self.confidentiality_key.map(|(pubkey, _)| pubkey),
        }
    }

    fn path() -> PathBuf {
        PathBuf::from(Self::FILENAME)
    }

    fn key_data_mut(&mut self, ty: KeyType) -> &mut Option<(KeyId, KeyOrigin)> {
        match ty {
            KeyType::Sign => &mut self.signing_key,
            KeyType::Aut => &mut self.aut_key,
            KeyType::Dec => &mut self.confidentiality_key,
        }
    }

    fn init_pins<T: crate::card::Client>(client: &mut T, location: Location) -> Result<(), Error> {
        #[allow(clippy::unwrap_used)]
        let default_user_pin = Bytes::try_from(DEFAULT_USER_PIN).unwrap();
        #[allow(clippy::unwrap_used)]
        let default_admin_pin = Bytes::try_from(DEFAULT_ADMIN_PIN).unwrap();

        // If PINs are already there when initializing, it likely means that the state was corrupted rather than absent.
        // In that case, we wait for the user to explicitely factory-reset the device to avoid risking loosing data.
        // See https://github.com/Nitrokey/opcard-rs/issues/165
        if syscall!(client.has_pin(Password::Pw1)).has_pin
            || syscall!(client.has_pin(Password::Pw3)).has_pin
        {
            debug!("Init pins after pins are already there");
            return Err(Error::Loading);
        }

        syscall!(client.set_pin(
            Password::Pw1,
            default_user_pin.clone(),
            Some(Self::MAX_RETRIES),
            true,
        ));
        syscall!(client.set_pin(
            Password::Pw3,
            default_admin_pin.clone(),
            Some(Self::MAX_RETRIES),
            true,
        ));
        #[allow(clippy::expect_used)]
        let user_key = syscall!(client.get_pin_key(Password::Pw1, default_user_pin))
            .result
            .expect("Default pin should work after initialization");
        #[allow(clippy::expect_used)]
        let admin_key = syscall!(client.get_pin_key(Password::Pw3, default_admin_pin))
            .result
            .expect("Default pin should work after initialization");

        let backup = syscall!(client.wrap_key(
            Mechanism::Chacha8Poly1305,
            admin_key,
            user_key,
            ADMIN_USER_KEY_BACKUP.as_str().as_bytes(),
            None,
        ))
        .wrapped_key;
        syscall!(client.write_file(location, PathBuf::from(ADMIN_USER_KEY_BACKUP), backup, None));

        // Clean up memory
        syscall!(client.delete(user_key));
        syscall!(client.delete(admin_key));
        Ok(())
    }
    pub fn load<T: crate::card::Client>(client: &mut T, storage: Location) -> Result<Self, Error> {
        if let Some(data) = load_if_exists(client, storage, &Self::path())? {
            cbor_smol::cbor_deserialize(&data).map_err(|_err| {
                error!("failed to deserialize persistent state: {_err}");
                Error::Loading
            })
        } else {
            Self::init_pins(client, storage)?;
            let this = Self::default();
            this.save(client, storage)?;
            Ok(this)
        }
    }

    pub fn save<T: crate::card::Client>(
        &self,
        client: &mut T,
        storage: Location,
    ) -> Result<(), Error> {
        let mut msg = Message::new();
        cbor_smol::cbor_serialize_to(&self, &mut msg).map_err(|_err| {
            error!("Failed to serialize: {_err}");
            Error::Saving
        })?;
        try_syscall!(client.write_file(storage, Self::path(), msg, None)).map_err(|_err| {
            error!("Failed to store data: {_err:?}");
            Error::Saving
        })?;
        Ok(())
    }

    pub fn remaining_tries<T: crate::card::Client>(
        &self,
        client: &mut T,
        password: Password,
    ) -> u8 {
        try_syscall!(client.pin_retries(password))
            .map(|r| r.retries.unwrap_or_default())
            .unwrap_or(0)
    }

    pub fn is_locked<T: crate::card::Client>(&self, client: &mut T, password: Password) -> bool {
        self.remaining_tries(client, password) == 0
    }

    /// Panics if password is ResetCode, use [reset_code_len](Self::reset_code_len) instead
    pub fn pin_len(&self, password: Password) -> usize {
        match password {
            Password::Pw1 => self.user_pin_len as usize,
            Password::Pw3 => self.admin_pin_len as usize,
            Password::ResetCode => unreachable!(),
        }
    }

    /// Returns None if no code has been set
    pub fn reset_code_len(&self) -> Option<usize> {
        self.reset_code_pin_len.map(Into::into)
    }

    pub fn change_pin<T: crate::card::Client>(
        &mut self,
        client: &mut T,
        storage: Location,
        old_value: &[u8],
        new_value: &[u8],
        password: Password,
    ) -> Result<(), Error> {
        let new_pin = Bytes::try_from(new_value).map_err(|_| Error::InvalidPin)?;
        let old_pin = Bytes::try_from(old_value).map_err(|_| Error::InvalidPin)?;
        try_syscall!(client.change_pin(password, old_pin, new_pin.clone()))
            .map_err(|_| Error::InvalidPin)?;
        self.set_pin_len(client, storage, new_pin.len(), password)
    }

    fn set_pin_len<T: crate::card::Client>(
        &mut self,
        client: &mut T,
        storage: Location,
        new_len: usize,
        password: Password,
    ) -> Result<(), Error> {
        match password {
            Password::Pw1 => self.user_pin_len = new_len as u8,
            Password::Pw3 => self.admin_pin_len = new_len as u8,
            Password::ResetCode => self.reset_code_pin_len = Some(new_len as u8),
        }
        self.save(client, storage)
    }

    pub fn remove_reset_code<T: crate::card::Client>(
        &mut self,
        client: &mut T,
        storage: Location,
    ) -> Result<(), Error> {
        if self.reset_code_pin_len.is_some() {
            // Possible race condition so we ignore the error
            try_syscall!(client.delete_pin(Password::ResetCode)).ok();
        }
        self.reset_code_pin_len = None;
        self.save(client, storage)
    }

    pub fn sign_alg(&self) -> SignatureAlgorithm {
        self.sign_alg
    }

    pub fn set_sign_alg(
        &mut self,
        client: &mut impl crate::card::Client,
        storage: Location,
        alg: SignatureAlgorithm,
    ) -> Result<(), Error> {
        if self.sign_alg == alg {
            return Ok(());
        }
        self.delete_key(KeyType::Sign, client, storage)?;
        self.sign_alg = alg;
        self.save(client, storage)
    }

    pub fn dec_alg(&self) -> DecryptionAlgorithm {
        self.dec_alg
    }

    pub fn set_dec_alg(
        &mut self,
        client: &mut impl crate::card::Client,
        storage: Location,
        alg: DecryptionAlgorithm,
    ) -> Result<(), Error> {
        if self.dec_alg == alg {
            return Ok(());
        }
        self.delete_key(KeyType::Dec, client, storage)?;
        self.dec_alg = alg;
        self.save(client, storage)
    }

    pub fn aut_alg(&self) -> AuthenticationAlgorithm {
        self.aut_alg
    }

    pub fn set_aut_alg(
        &mut self,
        client: &mut impl crate::card::Client,
        storage: Location,
        alg: AuthenticationAlgorithm,
    ) -> Result<(), Error> {
        if self.aut_alg == alg {
            return Ok(());
        }
        self.delete_key(KeyType::Aut, client, storage)?;
        self.aut_alg = alg;
        self.save(client, storage)
    }

    pub fn fingerprints(&self) -> Fingerprints {
        self.fingerprints
    }

    pub fn set_fingerprints(
        &mut self,
        client: &mut impl crate::card::Client,
        storage: Location,
        data: Fingerprints,
    ) -> Result<(), Error> {
        self.fingerprints = data;
        self.save(client, storage)
    }

    pub fn ca_fingerprints(&self) -> CaFingerprints {
        self.ca_fingerprints
    }

    pub fn set_ca_fingerprints(
        &mut self,
        client: &mut impl crate::card::Client,
        storage: Location,
        data: CaFingerprints,
    ) -> Result<(), Error> {
        self.ca_fingerprints = data;
        self.save(client, storage)
    }

    pub fn keygen_dates(&self) -> KeyGenDates {
        self.keygen_dates
    }

    pub fn set_keygen_dates(
        &mut self,
        client: &mut impl crate::card::Client,
        storage: Location,
        data: KeyGenDates,
    ) -> Result<(), Error> {
        self.keygen_dates = data;
        self.save(client, storage)
    }

    pub fn uif(&self, key: KeyType) -> Uif {
        match key {
            KeyType::Sign => self.uif_sign,
            KeyType::Dec => self.uif_dec,
            KeyType::Aut => self.uif_aut,
        }
    }

    pub fn set_uif(
        &mut self,
        client: &mut impl crate::card::Client,
        storage: Location,
        uif: Uif,
        key: KeyType,
    ) -> Result<(), Error> {
        match key {
            KeyType::Sign => self.uif_sign = uif,
            KeyType::Dec => self.uif_dec = uif,
            KeyType::Aut => self.uif_aut = uif,
        }
        self.save(client, storage)
    }

    pub fn pw1_valid_multiple(&self) -> bool {
        self.pw1_valid_multiple
    }

    pub fn set_pw1_valid_multiple(
        &mut self,
        value: bool,
        client: &mut impl crate::card::Client,
        storage: Location,
    ) -> Result<(), Error> {
        self.pw1_valid_multiple = value;
        self.save(client, storage)
    }

    pub fn cardholder_name(&self) -> &[u8] {
        &self.cardholder_name
    }

    pub fn set_cardholder_name(
        &mut self,
        value: Bytes<39>,
        client: &mut impl crate::card::Client,
        storage: Location,
    ) -> Result<(), Error> {
        self.cardholder_name = value;
        self.save(client, storage)
    }

    pub fn cardholder_sex(&self) -> Sex {
        self.cardholder_sex
    }

    pub fn set_cardholder_sex(
        &mut self,
        value: Sex,
        client: &mut impl crate::card::Client,
        storage: Location,
    ) -> Result<(), Error> {
        self.cardholder_sex = value;
        self.save(client, storage)
    }

    pub fn language_preferences(&self) -> &[u8] {
        &self.language_preferences
    }

    pub fn set_language_preferences(
        &mut self,
        value: Bytes<8>,
        client: &mut impl crate::card::Client,
        storage: Location,
    ) -> Result<(), Error> {
        self.language_preferences = value;
        self.save(client, storage)
    }

    pub fn sign_count(&self) -> u32 {
        self.sign_count
    }

    pub fn increment_sign_count(
        &mut self,
        client: &mut impl crate::card::Client,
        storage: Location,
    ) -> Result<(), Error> {
        self.sign_count += 1;
        // Sign count is returned on 3 bytes
        if self.sign_count & 0xffffff == 0 {
            self.sign_count = 0xffffff;
        }
        self.save(client, storage)
    }

    pub fn key_origin(&self, ty: KeyType) -> Option<KeyOrigin> {
        match ty {
            KeyType::Sign => self.signing_key.map(|(_pubkey, origin)| origin),
            KeyType::Dec => self.confidentiality_key.map(|(_pubkey, origin)| origin),
            KeyType::Aut => self.aut_key.map(|(_pubkey, origin)| origin),
        }
    }

    pub fn delete_key(
        &mut self,
        ty: KeyType,
        client: &mut impl crate::card::Client,
        storage: Location,
    ) -> Result<(), Error> {
        let (key, priv_to_delete, path) = match ty {
            KeyType::Sign => (
                self.signing_key.take(),
                self.signing_private_to_delete.take(),
                SIGNING_KEY_PATH,
            ),
            KeyType::Dec => (
                self.confidentiality_key.take(),
                self.confidentiality_private_to_delete.take(),
                DEC_KEY_PATH,
            ),
            KeyType::Aut => (
                self.aut_key.take(),
                self.aut_private_to_delete.take(),
                AUTH_KEY_PATH,
            ),
        };

        if let Some((pubkey, _)) = key {
            self.fingerprints.key_part_mut(ty).copy_from_slice(&[0; 20]);
            self.keygen_dates.key_part_mut(ty).copy_from_slice(&[0; 4]);
            self.save(client, storage)?;
            try_syscall!(client.remove_file(storage, PathBuf::from(path))).map_err(|_err| {
                error!("Failed to delete key {_err:?}");
                Error::Saving
            })?;
            try_syscall!(client.delete(pubkey))
                .map_err(|_err| {
                    error!("Failed to delete public key: {:?} (ignored)", _err);
                })
                .ok();
        }
        if let Some(id) = priv_to_delete {
            syscall!(client.delete(id));
        }
        Ok(())
    }
}

#[derive(Debug, Clone, PartialEq, Eq)]
pub enum KeyRef {
    Dec,
    Aut,
}

#[derive(Debug, Clone, PartialEq, Eq)]
pub struct KeyRefs {
    // We can't use `KeyType` because the Signing key cannot be reassigned
    pub pso_decipher: KeyRef,
    pub internal_aut: KeyRef,
}

impl Default for KeyRefs {
    fn default() -> KeyRefs {
        KeyRefs {
            pso_decipher: KeyRef::Dec,
            internal_aut: KeyRef::Aut,
        }
    }
}

/// Since keys are stored encrypted, cache them to not have to decrypt them again
#[derive(Debug, Default, Clone, PartialEq, Eq)]
struct UserKeys {
    sign: Option<KeyId>,
    dec: Option<KeyId>,
    aut: Option<KeyId>,
    aes: Option<KeyId>,
}

impl UserKeys {
    // Replace self with an empty cache to avoid the drop check
    fn take(&mut self) -> Self {
        take(self)
    }

    fn clear(&mut self, client: &mut impl crate::card::Client) {
        for k in [&mut self.sign, &mut self.dec, &mut self.aut, &mut self.aes]
            .into_iter()
            .flat_map(Option::take)
        {
            syscall!(client.clear(k));
        }
    }
}

/// Check for memory leaks
impl Drop for UserKeys {
    fn drop(&mut self) {
        if matches!((self.sign, self.dec, self.aut), (None, None, None)) {
            return;
        }

        #[cfg(all(debug_assertions, test))]
        if !std::thread::panicking() {
            panic!("User dropped with keys still in volatile storage {self:?}");
        }

        error!(
            "Error: User dropped with keys still in volatile storage: {:?}",
            self
        );
    }
}

#[derive(Debug, Default, Clone, PartialEq, Eq)]
enum UserVerifiedInner {
    #[default]
    None,
    Other(KeyId, UserKeys),
    Sign(KeyId, UserKeys),
    #[allow(unused)]
    OtherAndSign(KeyId, UserKeys),
}

#[derive(Debug, Default, Clone, PartialEq, Eq)]
struct UserVerified(UserVerifiedInner);

/// Check for memory leaks
impl Drop for UserVerified {
    fn drop(&mut self) {
        if self.0.user_kek().is_none() {
            return;
        }

        #[cfg(all(debug_assertions, test))]
        if !std::thread::panicking() {
            panic!("User dropped with kek still available");
        }

        error!("Error: User dropped with kek still available");
    }
}

impl UserVerified {
    fn verify_sign(&mut self, k: KeyId) {
        self.0.verify_sign(k)
    }

    fn verify_other(&mut self, k: KeyId) {
        self.0.verify_other(k)
    }
}

impl UserVerifiedInner {
    fn verify_sign(&mut self, k: KeyId) {
        match self {
            Self::None => *self = Self::Sign(k, UserKeys::default()),
            Self::Other(old_k, cache) => {
                debug_assert_eq!(*old_k, k);
                *self = Self::OtherAndSign(k, cache.take())
            }
            _ => {}
        }
    }

    fn verify_other(&mut self, k: KeyId) {
        match self {
            Self::None => *self = Self::Other(k, UserKeys::default()),
            Self::Sign(old_k, cache) => {
                debug_assert_eq!(*old_k, k);
                *self = Self::OtherAndSign(k, cache.take())
            }
            _ => {}
        }
    }

    fn sign_verified(&self) -> bool {
        matches!(self, Self::Sign(_, _) | Self::OtherAndSign(_, _))
    }
    fn other_verified(&self) -> bool {
        matches!(self, Self::Other(_, _) | Self::OtherAndSign(_, _))
    }
    fn other_verified_kek(&self) -> Option<KeyId> {
        match self {
            Self::Other(k, _) | Self::OtherAndSign(k, _) => Some(*k),
            _ => None,
        }
    }
    fn user_kek(&self) -> Option<KeyId> {
        match self {
            Self::Other(k, _) | Self::Sign(k, _) | Self::OtherAndSign(k, _) => Some(*k),
            _ => None,
        }
    }
    fn clear(&mut self, client: &mut impl crate::card::Client) {
        match self.take() {
            Self::Other(k, mut cache)
            | Self::Sign(k, mut cache)
            | Self::OtherAndSign(k, mut cache) => {
                syscall!(client.delete(k));
                cache.clear(client);
            }
            _ => (),
        }
    }

    // Replace self with an empty cache to avoid the drop check
    fn take(&mut self) -> Self {
        take(self)
    }

    fn cache_mut(&mut self) -> Option<&mut UserKeys> {
        match self {
            Self::None => None,
            Self::Other(_, cache) => Some(cache),
            Self::Sign(_, cache) => Some(cache),
            Self::OtherAndSign(_, cache) => Some(cache),
        }
    }

    fn clear_cached(&mut self, client: &mut impl crate::card::Client, ty: KeyType) {
        let Some(cache) = self.cache_mut() else {
            return;
        };

        let key = match ty {
            KeyType::Sign => cache.sign.take(),
            KeyType::Dec => cache.dec.take(),
            KeyType::Aut => cache.aut.take(),
        };

        if let Some(k) = key {
            syscall!(client.clear(k));
        }
    }

    fn clear_aes_cached(&mut self, client: &mut impl crate::card::Client) {
        let Some(cache) = self.cache_mut() else {
            return;
        };

        if let Some(k) = cache.aes {
            syscall!(client.delete(k));
        }
    }

    fn clear_sign(&mut self, client: &mut impl crate::card::Client) {
        match self {
            Self::Sign(_k, _cache) => self.clear(client),
            Self::OtherAndSign(k, cache) => *self = Self::Other(*k, cache.take()),
            _ => {}
        };
    }
    fn clear_other(&mut self, client: &mut impl crate::card::Client) {
        match self {
            Self::Other(_k, _cache) => self.clear(client),
            Self::OtherAndSign(k, cache) => *self = Self::Sign(*k, cache.take()),
            _ => {}
        };
    }
}

#[derive(Debug, Default, Clone, PartialEq, Eq)]
struct AdminVerified(Option<KeyId>);

impl AdminVerified {
    fn verify(&mut self, k: KeyId) {
        if let Some(old_k) = self.0 {
            debug_assert_eq!(old_k, k);
        }
        self.0 = Some(k);
    }
}

impl Drop for AdminVerified {
    fn drop(&mut self) {
        if self.0.is_none() {
            return;
        }

        #[cfg(all(debug_assertions, test))]
        if !std::thread::panicking() {
            panic!("Admin dropped with kek still available");
        }

        error!("Error: Admin dropped with kek still available");
    }
}

#[derive(Debug, Default, Clone, PartialEq, Eq)]
pub struct Volatile {
    user: UserVerified,
    admin: AdminVerified,
    pub cur_do: Option<(Tag, Occurrence)>,
    pub keyrefs: KeyRefs,
}

impl Volatile {
    pub fn admin_verified(&self) -> bool {
        self.admin.0.is_some()
    }
    pub fn admin_kek(&self) -> Option<KeyId> {
        self.admin.0
    }

    pub fn clear_admin(&mut self, client: &mut impl crate::card::Client) {
        if let Some(k) = self.admin.0.take() {
            syscall!(client.delete(k));
        }
    }

    fn load_or_get_key(
        client: &mut impl crate::card::Client,
        user_kek: KeyId,
        opt_key: &mut Option<KeyId>,
        path: &'static Path,
        storage: Location,
    ) -> Result<KeyId, Status> {
        if let Some(k) = opt_key {
            return Ok(*k);
        }

        let unwrapped_key = try_syscall!(client.unwrap_key_from_file(
            Mechanism::Chacha8Poly1305,
            user_kek,
            PathBuf::from(path),
            storage,
            Location::Volatile,
            path.as_str().as_bytes()
        ))
        .map_err(|_err| {
            error!("Failed to load key: {:?}", _err);
            Status::UnspecifiedPersistentExecutionError
        })?
        .key
        .ok_or_else(|| {
            error!("Failed to decrypt key");
            Status::UnspecifiedPersistentExecutionError
        })?;
        *opt_key = Some(unwrapped_key);

        Ok(unwrapped_key)
    }

    pub fn aes_key_id(
        &mut self,
        client: &mut impl crate::card::Client,
        storage: Location,
    ) -> Result<KeyId, Status> {
        match &mut self.user.0 {
            UserVerifiedInner::None | UserVerifiedInner::Sign(_, _) => {
                Err(Status::ConditionsOfUseNotSatisfied)
            }
            UserVerifiedInner::Other(user_kek, cache)
            | UserVerifiedInner::OtherAndSign(user_kek, cache) => {
                Self::load_or_get_key(client, *user_kek, &mut cache.aes, AES_KEY_PATH, storage)
            }
        }
    }

    pub fn sign_verified(&self) -> bool {
        self.user.0.sign_verified()
    }
    pub fn other_verified(&self) -> bool {
        self.user.0.other_verified()
    }
    pub fn other_verified_kek(&self) -> Option<KeyId> {
        self.user.0.other_verified_kek()
    }
    pub fn user_kek(&self) -> Option<KeyId> {
        self.user.0.user_kek()
    }

    pub fn clear(&mut self, client: &mut impl crate::card::Client) {
        self.user.0.clear(client);
        self.clear_admin(client)
    }

    pub fn clear_sign(&mut self, client: &mut impl crate::card::Client) {
        self.user.0.clear_sign(client)
    }
    pub fn clear_other(&mut self, client: &mut impl crate::card::Client) {
        self.user.0.clear_other(client)
    }
}

/// DOs that can store arbitrary data from the user
///
/// They are stored each in their own files and are loaded only
/// when necessary to prevent the state from getting too big.
#[derive(Debug, Clone, PartialEq, Eq, Copy)]
pub enum ArbitraryDO {
    Url,
    KdfDo,
    PrivateUse1,
    PrivateUse2,
    PrivateUse3,
    PrivateUse4,
    LoginData,
    CardHolderCertAut,
    CardHolderCertDec,
    CardHolderCertSig,
}

#[derive(Debug, Clone, PartialEq, Eq, Copy)]
pub enum PermissionRequirement {
    None,
    User,
    Admin,
}

impl ArbitraryDO {
    fn path(self) -> PathBuf {
        PathBuf::from(match self {
            Self::Url => path!("url"),
            Self::KdfDo => path!("kdf_do"),
            Self::PrivateUse1 => path!("private_use_1"),
            Self::PrivateUse2 => path!("private_use_2"),
            Self::PrivateUse3 => path!("private_use_3"),
            Self::PrivateUse4 => path!("private_use_4"),
            Self::LoginData => path!("login_data"),
            Self::CardHolderCertAut => path!("cardholder_cert_aut"),
            Self::CardHolderCertDec => path!("cardholder_cert_dec"),
            Self::CardHolderCertSig => path!("cardholder_cert_sig"),
        })
    }

    fn default(self) -> Bytes<MAX_GENERIC_LENGTH> {
        #[allow(clippy::unwrap_used)]
        match self {
            // KDF-DO initialized to NONE
            Self::KdfDo => Bytes::from(&hex!("F9 03 81 01 00")),
            _ => Bytes::new(),
        }
    }

    pub fn read_permission(self) -> PermissionRequirement {
        match self {
            Self::PrivateUse3 => PermissionRequirement::User,
            Self::PrivateUse4 => PermissionRequirement::Admin,
            _ => PermissionRequirement::None,
        }
    }

    pub fn load(
        self,
        client: &mut impl crate::card::Client,
        storage: Location,
        mut reply: Reply<'_>,
        encryption_key: Option<KeyId>,
    ) -> Result<(), Status> {
        match try_syscall!(client.entry_metadata(storage, self.path())) {
            Ok(Metadata { metadata: None }) => {
                reply.expand(&self.default())?;
                return Ok(());
            }
            Err(_err) => {
                error!("File {:?} couldn't be read: {:?}", self, _err);
                return Err(Status::UnspecifiedNonpersistentExecutionError);
            }
            Ok(Metadata { metadata: Some(_) }) => {}
        }

        let mut read;
        let expected_len;
        let stop_at_first;

        if let Some(key) = encryption_key {
            try_syscall!(client.start_encrypted_chunked_read(storage, self.path(), key)).map_err(
                |_err| {
                    error!("Failed to start reading data {:?}, err: {:?}", self, _err);
                    Status::UnspecifiedNonpersistentExecutionError
                },
            )?;
            let first_data = try_syscall!(client.read_file_chunk()).map_err(|_err| {
                error!(
                    "Failed to read first encrypted data {:?}, err: {:?}",
                    self, _err
                );
                Status::UnspecifiedNonpersistentExecutionError
            })?;
            stop_at_first = !first_data.data.is_full();
            read = first_data.data.len();
            expected_len = first_data.data.len();
            reply.expand(&first_data.data)?;
        } else {
            let first_data = try_syscall!(client.start_chunked_read(storage, self.path(),))
                .map_err(|_err| {
                    error!("Failed to read first data {:?}, err: {:?}", self, _err);
                    Status::UnspecifiedNonpersistentExecutionError
                })?;
            stop_at_first = !first_data.data.is_full();
            read = first_data.data.len();
            expected_len = first_data.len;
            reply.expand(&first_data.data)?;
        }

        if !stop_at_first {
            loop {
                let res = try_syscall!(client.read_file_chunk()).map_err(|_err| {
                    error!("Failed to read data {:?}, err: {:?}", self, _err);
                    Status::UnspecifiedNonpersistentExecutionError
                })?;
                debug_assert_eq!(expected_len, res.len);
                reply.expand(&res.data)?;
                read += res.data.len();
                if !res.data.is_full() {
                    debug_assert_eq!(expected_len, read);
                    return Ok(());
                }
            }
        }
        Ok(())
    }

    pub fn save(
        self,
        client: &mut impl crate::card::Client,
        storage: Location,
        bytes: &[u8],
        encryption_key: Option<KeyId>,
    ) -> Result<(), Error> {
        write_all(
            client,
            storage,
            self.path(),
            bytes,
            None,
            encryption_key.map(|key| EncryptionData { key, nonce: None }),
        )
        .map_err(|_err| {
            error!("Failed to store data: {_err:?}");
            Error::Saving
        })?;
        Ok(())
    }
}

fn load_if_exists(
    client: &mut impl crate::card::Client,
    location: Location,
    path: &PathBuf,
) -> Result<Option<Bytes<MAX_MESSAGE_LENGTH>>, Error> {
    match try_syscall!(client.read_file(location, path.clone())) {
        Ok(r) => Ok(Some(r.data)),
        Err(_) => match try_syscall!(client.entry_metadata(location, path.clone())) {
            Ok(Metadata { metadata: None }) => Ok(None),
            Ok(Metadata {
                metadata: Some(_metadata),
            }) => {
                error!("File {path} exists but couldn't be read: {_metadata:?}");
                Err(Error::Loading)
            }
            Err(_err) => {
                error!("File {path} couldn't be read: {_err:?}");
                Err(Error::Loading)
            }
        },
    }
}

#[cfg(test)]
mod tests {
    use std::{env, fs, path::PathBuf};

    use super::*;

    const VERSIONS: &[&str] = &[
        "1.0.0", "1.1.0", "1.1.1", "1.2.0", "1.3.0", "1.4.0", "1.4.1", "1.5.0", "1.5.1", "1.6.0",
        "1.6.1", "1.7.0", "1.8.0", "1.9.0",
    ];

    #[test]
    fn versions_include_current() {
        assert!(VERSIONS.contains(&env!("CARGO_PKG_VERSION")));
    }

    #[allow(clippy::unwrap_used)]
    fn test_one_state(name: &str, state: &Persistent) {
        let prefix = "tests/state_test_data/";
        for v in VERSIONS {
            let path = PathBuf::from(prefix).join(v).join(format!("{name}.cbor"));
            println!("Checking {} for version {v}", path.display());
            if *v == env!("CARGO_PKG_VERSION") {
                let mut buf = Message::new();
                cbor_smol::cbor_serialize_to(state, &mut buf).unwrap();
                // If test reference does not exist, create it
                if path.exists() {
                    let file = fs::read(&path).unwrap();
                    assert_eq!(buf, file);
                } else if env::var("TEST_STATE_CAN_CREATE").is_ok() {
                    fs::create_dir_all(PathBuf::from(prefix).join(v)).unwrap();
                    fs::write(&path, buf).unwrap();
                } else {
                    panic!("Missing test file");
                }
            }

            // If file does not exists, the old state does not exist
            if path.exists() {
                let file = fs::read(&path).unwrap();
                assert_eq!(
                    &cbor_smol::cbor_deserialize::<Persistent>(&file).unwrap(),
                    state,
                );
            }
        }
    }

    #[allow(clippy::unwrap_used)]
    #[test]
    fn test_deserialization() {
        test_one_state("default", &Persistent::default());
        test_one_state(
            "all_non_default",
            &Persistent {
                reset_code_pin_len: Some(10),
                pw1_valid_multiple: true,
                user_pin_len: 127,
                admin_pin_len: 127,
                cardholder_name: Bytes::from(b"some name"),
                cardholder_sex: Sex::NotApplicable,
                language_preferences: Bytes::from(b"so"),
                signing_key: Some((KeyId::from_special(30), KeyOrigin::Imported)),
                confidentiality_key: Some((KeyId::from_special(30), KeyOrigin::Imported)),
                aut_key: Some((KeyId::from_special(30), KeyOrigin::Imported)),
                sign_alg: SignatureAlgorithm::Ed255,
                aut_alg: AuthenticationAlgorithm::Ed255,
                dec_alg: DecryptionAlgorithm::X255,
                ca_fingerprints: CaFingerprints([10; 60]),
                fingerprints: Fingerprints([10; 60]),
                keygen_dates: KeyGenDates([3; 12]),
                sign_count: 3,
                uif_sign: Uif::Enabled,
                uif_dec: Uif::PermanentlyEnabled,
                uif_aut: Uif::Enabled,
                aut_private_to_delete: None,
                confidentiality_private_to_delete: None,
                signing_private_to_delete: None,
            },
        );

        // Private keys to delete were added in 1.3.0
        // So tests prior to that must check equality with the default values
        test_one_state(
            "all_non_default_with_private",
            &Persistent {
                reset_code_pin_len: Some(10),
                pw1_valid_multiple: true,
                user_pin_len: 127,
                admin_pin_len: 127,
                cardholder_name: Bytes::from(b"some name"),
                cardholder_sex: Sex::NotApplicable,
                language_preferences: Bytes::from(b"so"),
                signing_key: Some((KeyId::from_special(30), KeyOrigin::Imported)),
                confidentiality_key: Some((KeyId::from_special(30), KeyOrigin::Imported)),
                aut_key: Some((KeyId::from_special(30), KeyOrigin::Imported)),
                sign_alg: SignatureAlgorithm::Ed255,
                aut_alg: AuthenticationAlgorithm::Ed255,
                dec_alg: DecryptionAlgorithm::X255,
                ca_fingerprints: CaFingerprints([10; 60]),
                fingerprints: Fingerprints([10; 60]),
                keygen_dates: KeyGenDates([3; 12]),
                sign_count: 3,
                uif_sign: Uif::Enabled,
                uif_dec: Uif::PermanentlyEnabled,
                uif_aut: Uif::Enabled,
                aut_private_to_delete: Some(KeyId::from_special(20)),
                confidentiality_private_to_delete: Some(KeyId::from_special(20)),
                signing_private_to_delete: Some(KeyId::from_special(20)),
            },
        );

        for ((sign_alg, dec_alg), aut_alg) in SignatureAlgorithm::iter_all()
            .zip(DecryptionAlgorithm::iter_all())
            .zip(AuthenticationAlgorithm::iter_all())
        {
            let name = format!("ALGOS-{sign_alg:?}-{dec_alg:?}-{aut_alg:?}");
            test_one_state(
                &name,
                &Persistent {
                    sign_alg,
                    dec_alg,
                    aut_alg,
                    ..Persistent::default()
                },
            );
        }
    }
}