summaryrefslogtreecommitdiffstats
path: root/third_party/rust/authenticator/src/statemachine.rs
blob: a1a1c5372f6048131093352eea0f2d0540b35c51 (plain)
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
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */

use crate::authenticatorservice::{RegisterArgs, SignArgs};
use crate::consts::PARAMETER_SIZE;
use crate::crypto::COSEAlgorithm;
use crate::ctap2::client_data::ClientDataHash;
use crate::ctap2::commands::client_pin::{
    ChangeExistingPin, Pin, PinError, PinUvAuthTokenPermission, SetNewPin,
};
use crate::ctap2::commands::get_assertion::{
    GetAssertion, GetAssertionOptions, GetAssertionResult,
};
use crate::ctap2::commands::make_credentials::{
    dummy_make_credentials_cmd, MakeCredentials, MakeCredentialsOptions, MakeCredentialsResult,
};
use crate::ctap2::commands::reset::Reset;
use crate::ctap2::commands::{
    repackage_pin_errors, CommandError, PinUvAuthCommand, PinUvAuthResult, Request, StatusCode,
};
use crate::ctap2::preflight::{
    do_credential_list_filtering_ctap1, do_credential_list_filtering_ctap2,
};
use crate::ctap2::server::{
    PublicKeyCredentialDescriptor, RelyingParty, RelyingPartyWrapper, ResidentKeyRequirement,
    RpIdHash, UserVerificationRequirement,
};
use crate::errors::{self, AuthenticatorError, UnsupportedOption};
use crate::statecallback::StateCallback;
use crate::transport::device_selector::{
    BlinkResult, Device, DeviceBuildParameters, DeviceCommand, DeviceSelectorEvent,
};
use crate::transport::platform::transaction::Transaction;
use crate::transport::{errors::HIDError, hid::HIDDevice, FidoDevice, Nonce};
use crate::u2fprotocol::{u2f_init_device, u2f_is_keyhandle_valid, u2f_register, u2f_sign};
use crate::u2ftypes::U2FDevice;
use crate::{
    send_status, AuthenticatorTransports, InteractiveRequest, KeyHandle, RegisterFlags,
    RegisterResult, SignFlags, SignResult, StatusPinUv, StatusUpdate,
};
use std::sync::mpsc::{channel, RecvError, RecvTimeoutError, Sender};
use std::thread;
use std::time::Duration;

fn is_valid_transport(transports: crate::AuthenticatorTransports) -> bool {
    transports.is_empty() || transports.contains(crate::AuthenticatorTransports::USB)
}

fn find_valid_key_handles<'a, F>(
    app_ids: &'a [crate::AppId],
    key_handles: &'a [crate::KeyHandle],
    mut is_valid: F,
) -> (&'a crate::AppId, Vec<&'a crate::KeyHandle>)
where
    F: FnMut(&Vec<u8>, &crate::KeyHandle) -> bool,
{
    // Try all given app_ids in order.
    for app_id in app_ids {
        // Find all valid key handles for the current app_id.
        let valid_handles = key_handles
            .iter()
            .filter(|key_handle| is_valid(app_id, key_handle))
            .collect::<Vec<_>>();

        // If there's at least one, stop.
        if !valid_handles.is_empty() {
            return (app_id, valid_handles);
        }
    }

    (&app_ids[0], vec![])
}

macro_rules! unwrap_result {
    ($item: expr, $callback: expr) => {
        match $item {
            Ok(r) => r,
            Err(e) => {
                $callback.call(Err(e.into()));
                return;
            }
        }
    };
}

#[derive(Default)]
pub struct StateMachine {
    transaction: Option<Transaction>,
}

impl StateMachine {
    pub fn new() -> Self {
        Default::default()
    }

    fn init_and_select(
        info: DeviceBuildParameters,
        selector: &Sender<DeviceSelectorEvent>,
        status: &Sender<crate::StatusUpdate>,
        ctap2_only: bool,
        keep_alive: &dyn Fn() -> bool,
    ) -> Option<Device> {
        // Create a new device.
        let mut dev = match Device::new(info) {
            Ok(dev) => dev,
            Err((e, id)) => {
                info!("error happened with device: {}", e);
                selector.send(DeviceSelectorEvent::NotAToken(id)).ok()?;
                return None;
            }
        };

        // Try initializing it.
        if let Err(e) = dev.init(Nonce::CreateRandom) {
            warn!("error while initializing device: {}", e);
            selector.send(DeviceSelectorEvent::NotAToken(dev.id())).ok();
            return None;
        }

        if ctap2_only && dev.get_authenticator_info().is_none() {
            info!("Device does not support CTAP2");
            selector.send(DeviceSelectorEvent::NotAToken(dev.id())).ok();
            return None;
        }

        let (tx, rx) = channel();
        selector
            .send(DeviceSelectorEvent::ImAToken((dev.id(), tx)))
            .ok()?;
        send_status(
            status,
            crate::StatusUpdate::DeviceAvailable {
                dev_info: dev.get_device_info(),
            },
        );

        // We can be cancelled from the user (through keep_alive()) or from the device selector
        // (through a DeviceCommand::Cancel on rx).  We'll combine those signals into a single
        // predicate to pass to Device::block_and_blink.
        let keep_blinking = || keep_alive() && !matches!(rx.try_recv(), Ok(DeviceCommand::Cancel));

        // Blocking recv. DeviceSelector will tell us what to do
        match rx.recv() {
            Ok(DeviceCommand::Blink) => {
                // Inform the user that there are multiple devices available.
                // NOTE: We'll send this once per device, so the recipient should be prepared
                // to receive this message multiple times.
                send_status(status, crate::StatusUpdate::SelectDeviceNotice);
                match dev.block_and_blink(&keep_blinking) {
                    BlinkResult::DeviceSelected => {
                        // User selected us. Let DeviceSelector know, so it can cancel all other
                        // outstanding open blink-requests.
                        selector
                            .send(DeviceSelectorEvent::SelectedToken(dev.id()))
                            .ok()?;

                        send_status(
                            status,
                            crate::StatusUpdate::DeviceSelected(dev.get_device_info()),
                        );
                    }
                    BlinkResult::Cancelled => {
                        info!("Device {:?} was not selected", dev.id());
                        return None;
                    }
                }
            }
            Ok(DeviceCommand::Cancel) => {
                info!("Device {:?} was not selected", dev.id());
                return None;
            }
            Ok(DeviceCommand::Removed) => {
                info!("Device {:?} was removed", dev.id());
                send_status(
                    status,
                    crate::StatusUpdate::DeviceUnavailable {
                        dev_info: dev.get_device_info(),
                    },
                );
                return None;
            }
            Ok(DeviceCommand::Continue) => {
                // Just continue
                send_status(
                    status,
                    crate::StatusUpdate::DeviceSelected(dev.get_device_info()),
                );
            }
            Err(_) => {
                warn!("Error when trying to receive messages from DeviceSelector! Exiting.");
                return None;
            }
        }
        Some(dev)
    }

    fn ask_user_for_pin<U>(
        was_invalid: bool,
        retries: Option<u8>,
        status: &Sender<StatusUpdate>,
        callback: &StateCallback<crate::Result<U>>,
    ) -> Result<Pin, ()> {
        info!("PIN Error that requires user interaction detected. Sending it back and waiting for a reply");
        let (tx, rx) = channel();
        if was_invalid {
            send_status(
                status,
                crate::StatusUpdate::PinUvError(StatusPinUv::InvalidPin(tx, retries)),
            );
        } else {
            send_status(
                status,
                crate::StatusUpdate::PinUvError(StatusPinUv::PinRequired(tx)),
            );
        }
        match rx.recv() {
            Ok(pin) => Ok(pin),
            Err(RecvError) => {
                // recv() can only fail, if the other side is dropping the Sender.
                info!("Callback dropped the channel. Aborting.");
                callback.call(Err(AuthenticatorError::CancelledByUser));
                Err(())
            }
        }
    }

    /// Try to fetch PinUvAuthToken from the device and derive from it PinUvAuthParam.
    /// Prefer UV, fallback to PIN.
    /// Prefer newer pinUvAuth-methods, if supported by the device.
    fn get_pin_uv_auth_param<T: PinUvAuthCommand + Request<V>, V>(
        cmd: &mut T,
        dev: &mut Device,
        permission: PinUvAuthTokenPermission,
        skip_uv: bool,
        uv_req: UserVerificationRequirement,
    ) -> Result<PinUvAuthResult, AuthenticatorError> {
        // CTAP 2.1 is very specific that the request should either include pinUvAuthParam
        // OR uv=true, but not both at the same time. We now have to decide which (if either)
        // to send. We may omit both values. Will never send an explicit uv=false, because
        //  a) this is the default, and
        //  b) some CTAP 2.0 authenticators return UnsupportedOption when uv=false.

        // We ensure both pinUvAuthParam and uv are not set to start.
        cmd.set_pin_uv_auth_param(None)?;
        cmd.set_uv_option(None);

        // CTAP1/U2F-only devices do not support user verification, so we skip it
        let info = match dev.get_authenticator_info() {
            Some(info) => info,
            None => return Ok(PinUvAuthResult::DeviceIsCtap1),
        };

        // Only use UV, if the device supports it and we don't skip it
        // which happens as a fallback, if UV-usage failed too many times
        // Note: In theory, we could also repeatedly query GetInfo here and check
        //       if uv is set to Some(true), as tokens should set it to Some(false)
        //       if UV is blocked (too many failed attempts). But the CTAP2.0-spec is
        //       vague and I don't trust all tokens to implement it that way. So we
        //       keep track of it ourselves, using `skip_uv`.
        let supports_uv = info.options.user_verification == Some(true);
        let supports_pin = info.options.client_pin.is_some();
        let pin_configured = info.options.client_pin == Some(true);

        // Check if the combination of device-protection and request-options
        // are allowing for 'discouraged', meaning no auth required.
        if cmd.can_skip_user_verification(info, uv_req) {
            return Ok(PinUvAuthResult::NoAuthRequired);
        }

        // Device does not support any (remaining) auth-method
        if (skip_uv || !supports_uv) && !supports_pin {
            if supports_uv && uv_req == UserVerificationRequirement::Required {
                // We should always set the uv option in the Required case, but the CTAP 2.1 spec
                // says 'Platforms MUST NOT include the "uv" option key if the authenticator does
                // not support built-in user verification.' This is to work around some CTAP 2.0
                // authenticators which incorrectly error out with CTAP2_ERR_UNSUPPORTED_OPTION
                // when the "uv" option is set. The RP that requested UV will (hopefully) reject our
                // response in the !supports_uv case.
                cmd.set_uv_option(Some(true));
            }
            return Ok(PinUvAuthResult::NoAuthTypeSupported);
        }

        // Device supports PINs, but a PIN is not configured. Signal that we
        // can complete the operation if the user sets a PIN first.
        if (skip_uv || !supports_uv) && !pin_configured {
            return Err(AuthenticatorError::PinError(PinError::PinNotSet));
        }

        if info.options.pin_uv_auth_token == Some(true) {
            if !skip_uv && supports_uv {
                // CTAP 2.1 - UV
                let pin_auth_token = dev
                    .get_pin_uv_auth_token_using_uv_with_permissions(permission, cmd.get_rp().id())
                    .map_err(|e| repackage_pin_errors(dev, e))?;
                cmd.set_pin_uv_auth_param(Some(pin_auth_token.clone()))?;
                Ok(PinUvAuthResult::SuccessGetPinUvAuthTokenUsingUvWithPermissions(pin_auth_token))
            } else {
                // CTAP 2.1 - PIN
                // We did not take the `!skip_uv && supports_uv` branch, so we have
                // `(skip_uv || !supports_uv)`. Moreover we did not exit early in the
                // `(skip_uv || !supports_uv) && !pin_configured` case. So we have
                // `pin_configured`.
                let pin_auth_token = dev
                    .get_pin_uv_auth_token_using_pin_with_permissions(
                        cmd.pin(),
                        permission,
                        cmd.get_rp().id(),
                    )
                    .map_err(|e| repackage_pin_errors(dev, e))?;
                cmd.set_pin_uv_auth_param(Some(pin_auth_token.clone()))?;
                Ok(
                    PinUvAuthResult::SuccessGetPinUvAuthTokenUsingPinWithPermissions(
                        pin_auth_token,
                    ),
                )
            }
        } else {
            // CTAP 2.0 fallback
            if !skip_uv && supports_uv && cmd.pin().is_none() {
                // If the device supports internal user-verification (e.g. fingerprints),
                // skip PIN-stuff

                // We may need the shared secret for HMAC-extension, so we
                // have to establish one
                if info.supports_hmac_secret() {
                    let _shared_secret = dev.establish_shared_secret()?;
                }
                // CTAP 2.1, Section 6.1.1, Step 1.1.2.1.2.
                cmd.set_uv_option(Some(true));
                return Ok(PinUvAuthResult::UsingInternalUv);
            }

            let pin_auth_token = dev
                .get_pin_token(cmd.pin())
                .map_err(|e| repackage_pin_errors(dev, e))?;
            cmd.set_pin_uv_auth_param(Some(pin_auth_token.clone()))?;
            Ok(PinUvAuthResult::SuccessGetPinToken(pin_auth_token))
        }
    }

    /// PUAP, as per spec: PinUvAuthParam
    /// Determines, if we need to establish a PinUvAuthParam, based on the
    /// capabilities of the device and the incoming request.
    /// If it is needed, tries to establish one and save it inside the Request.
    /// Returns Ok() if we can proceed with sending the actual Request to
    /// the device, Err() otherwise.
    /// Handles asking the user for a PIN, if needed and sending StatusUpdates
    /// regarding PIN and UV usage.
    fn determine_puap_if_needed<T: PinUvAuthCommand + Request<V>, U, V>(
        cmd: &mut T,
        dev: &mut Device,
        mut skip_uv: bool,
        permission: PinUvAuthTokenPermission,
        uv_req: UserVerificationRequirement,
        status: &Sender<StatusUpdate>,
        callback: &StateCallback<crate::Result<U>>,
        alive: &dyn Fn() -> bool,
    ) -> Result<PinUvAuthResult, ()> {
        while alive() {
            debug!("-----------------------------------------------------------------");
            debug!("Getting pinUvAuthParam");
            match Self::get_pin_uv_auth_param(cmd, dev, permission, skip_uv, uv_req) {
                Ok(r) => {
                    return Ok(r);
                }

                Err(AuthenticatorError::PinError(PinError::PinRequired)) => {
                    if let Ok(pin) = Self::ask_user_for_pin(false, None, status, callback) {
                        cmd.set_pin(Some(pin));
                        skip_uv = true;
                        continue;
                    } else {
                        return Err(());
                    }
                }
                Err(AuthenticatorError::PinError(PinError::InvalidPin(retries))) => {
                    if let Ok(pin) = Self::ask_user_for_pin(true, retries, status, callback) {
                        cmd.set_pin(Some(pin));
                        continue;
                    } else {
                        return Err(());
                    }
                }
                Err(AuthenticatorError::PinError(PinError::InvalidUv(retries))) => {
                    if retries == Some(0) {
                        skip_uv = true;
                    }
                    send_status(
                        status,
                        StatusUpdate::PinUvError(StatusPinUv::InvalidUv(retries)),
                    )
                }
                Err(e @ AuthenticatorError::PinError(PinError::PinAuthBlocked)) => {
                    send_status(
                        status,
                        StatusUpdate::PinUvError(StatusPinUv::PinAuthBlocked),
                    );
                    error!("Error when determining pinAuth: {:?}", e);
                    callback.call(Err(e));
                    return Err(());
                }
                Err(e @ AuthenticatorError::PinError(PinError::PinBlocked)) => {
                    send_status(status, StatusUpdate::PinUvError(StatusPinUv::PinBlocked));
                    error!("Error when determining pinAuth: {:?}", e);
                    callback.call(Err(e));
                    return Err(());
                }
                Err(e @ AuthenticatorError::PinError(PinError::PinNotSet)) => {
                    send_status(status, StatusUpdate::PinUvError(StatusPinUv::PinNotSet));
                    error!("Error when determining pinAuth: {:?}", e);
                    callback.call(Err(e));
                    return Err(());
                }
                Err(AuthenticatorError::PinError(PinError::UvBlocked)) => {
                    skip_uv = true;
                    send_status(status, StatusUpdate::PinUvError(StatusPinUv::UvBlocked))
                }
                // Used for CTAP2.0 UV (fingerprints)
                Err(AuthenticatorError::PinError(PinError::PinAuthInvalid)) => {
                    skip_uv = true;
                    send_status(
                        status,
                        StatusUpdate::PinUvError(StatusPinUv::InvalidUv(None)),
                    )
                }
                Err(e) => {
                    error!("Error when determining pinAuth: {:?}", e);
                    callback.call(Err(e));
                    return Err(());
                }
            }
        }
        Err(())
    }

    pub fn register(
        &mut self,
        timeout: u64,
        args: RegisterArgs,
        status: Sender<crate::StatusUpdate>,
        callback: StateCallback<crate::Result<crate::RegisterResult>>,
    ) {
        if args.use_ctap1_fallback {
            /* Firefox uses this when security.webauthn.ctap2 is false. */
            let mut flags = RegisterFlags::empty();
            if args.resident_key_req == ResidentKeyRequirement::Required {
                flags |= RegisterFlags::REQUIRE_RESIDENT_KEY;
            }
            if args.user_verification_req == UserVerificationRequirement::Required {
                flags |= RegisterFlags::REQUIRE_USER_VERIFICATION;
            }

            let rp = RelyingPartyWrapper::Data(args.relying_party);
            let application = rp.hash().as_ref().to_vec();
            let key_handles = args
                .exclude_list
                .iter()
                .map(|cred_desc| KeyHandle {
                    credential: cred_desc.id.clone(),
                    transports: AuthenticatorTransports::empty(),
                })
                .collect();
            let challenge = ClientDataHash(args.client_data_hash);

            self.legacy_register(
                flags,
                timeout,
                challenge,
                application,
                key_handles,
                status,
                callback,
            );
            return;
        }

        // Abort any prior register/sign calls.
        self.cancel();
        let cbc = callback.clone();
        let transaction = Transaction::new(
            timeout,
            cbc.clone(),
            status,
            move |info, selector, status, alive| {
                let mut dev = match Self::init_and_select(info, &selector, &status, false, alive) {
                    None => {
                        return;
                    }
                    Some(dev) => dev,
                };

                info!("Device {:?} continues with the register process", dev.id());

                // We need a copy of the arguments for this device
                let args = args.clone();

                let mut options = MakeCredentialsOptions::default();

                if let Some(info) = dev.get_authenticator_info() {
                    // Check if extensions have been requested that are not supported by the device
                    if let Some(true) = args.extensions.hmac_secret {
                        if !info.supports_hmac_secret() {
                            callback.call(Err(AuthenticatorError::UnsupportedOption(
                                UnsupportedOption::HmacSecret,
                            )));
                            return;
                        }
                    }

                    // Set options based on the arguments and the device info.
                    // The user verification option will be set in `determine_puap_if_needed`.
                    options.resident_key = match args.resident_key_req {
                        ResidentKeyRequirement::Required => Some(true),
                        ResidentKeyRequirement::Preferred => {
                            // Use a resident key if the authenticator supports it
                            Some(info.options.resident_key)
                        }
                        ResidentKeyRequirement::Discouraged => Some(false),
                    }
                } else {
                    // Check that the request can be processed by a CTAP1 device.
                    // See CTAP 2.1 Section 10.2. Some additional checks are performed in
                    // MakeCredentials::RequestCtap1
                    if args.resident_key_req == ResidentKeyRequirement::Required {
                        callback.call(Err(AuthenticatorError::UnsupportedOption(
                            UnsupportedOption::ResidentKey,
                        )));
                        return;
                    }
                    if args.user_verification_req == UserVerificationRequirement::Required {
                        callback.call(Err(AuthenticatorError::UnsupportedOption(
                            UnsupportedOption::UserVerification,
                        )));
                        return;
                    }
                    if !args
                        .pub_cred_params
                        .iter()
                        .any(|x| x.alg == COSEAlgorithm::ES256)
                    {
                        callback.call(Err(AuthenticatorError::UnsupportedOption(
                            UnsupportedOption::PubCredParams,
                        )));
                        return;
                    }
                }

                let mut makecred = MakeCredentials::new(
                    ClientDataHash(args.client_data_hash),
                    RelyingPartyWrapper::Data(args.relying_party),
                    Some(args.user),
                    args.pub_cred_params,
                    args.exclude_list,
                    options,
                    args.extensions,
                    args.pin,
                );

                let mut skip_uv = false;
                while alive() {
                    // Requesting both because pre-flighting (credential list filtering)
                    // can potentially send GetAssertion-commands
                    let permissions = PinUvAuthTokenPermission::MakeCredential
                        | PinUvAuthTokenPermission::GetAssertion;

                    let pin_uv_auth_result = match Self::determine_puap_if_needed(
                        &mut makecred,
                        &mut dev,
                        skip_uv,
                        permissions,
                        args.user_verification_req,
                        &status,
                        &callback,
                        alive,
                    ) {
                        Ok(r) => r,
                        Err(()) => {
                            break;
                        }
                    };

                    // Do "pre-flight": Filter the exclude-list
                    if dev.get_authenticator_info().is_some() {
                        makecred.exclude_list = unwrap_result!(
                            do_credential_list_filtering_ctap2(
                                &mut dev,
                                &makecred.exclude_list,
                                &makecred.rp,
                                pin_uv_auth_result.get_pin_uv_auth_token(),
                            ),
                            callback
                        );
                    } else {
                        let key_handle = do_credential_list_filtering_ctap1(
                            &mut dev,
                            &makecred.exclude_list,
                            &makecred.rp,
                            &makecred.client_data_hash,
                        );
                        // That handle was already registered with the token
                        if key_handle.is_some() {
                            // Now we need to send a dummy registration request, to make the token blink
                            // Spec says "dummy appid and invalid challenge". We use the same, as we do for
                            // making the token blink upon device selection.
                            send_status(&status, crate::StatusUpdate::PresenceRequired);
                            let msg = dummy_make_credentials_cmd();
                            let _ = dev.send_msg_cancellable(&msg, alive); // Ignore answer, return "CredentialExcluded"
                            callback.call(Err(HIDError::Command(CommandError::StatusCode(
                                StatusCode::CredentialExcluded,
                                None,
                            ))
                            .into()));
                            return;
                        }
                    }

                    debug!("------------------------------------------------------------------");
                    debug!("{makecred:?} using {pin_uv_auth_result:?}");
                    debug!("------------------------------------------------------------------");
                    send_status(&status, crate::StatusUpdate::PresenceRequired);
                    let resp = dev.send_msg_cancellable(&makecred, alive);
                    if resp.is_ok() {
                        send_status(
                            &status,
                            crate::StatusUpdate::Success {
                                dev_info: dev.get_device_info(),
                            },
                        );
                        // The DeviceSelector could already be dead, but it might also wait
                        // for us to respond, in order to cancel all other tokens in case
                        // we skipped the "blinking"-action and went straight for the actual
                        // request.
                        let _ = selector.send(DeviceSelectorEvent::SelectedToken(dev.id()));
                    }
                    match resp {
                        Ok(MakeCredentialsResult(attestation)) => {
                            callback.call(Ok(RegisterResult::CTAP2(attestation)));
                            break;
                        }
                        Err(HIDError::Command(CommandError::StatusCode(
                            StatusCode::ChannelBusy,
                            _,
                        ))) => {
                            // Channel busy. Client SHOULD retry the request after a short delay.
                            thread::sleep(Duration::from_millis(100));
                            continue;
                        }
                        Err(HIDError::Command(CommandError::StatusCode(
                            StatusCode::PinAuthInvalid,
                            _,
                        ))) if matches!(pin_uv_auth_result, PinUvAuthResult::UsingInternalUv) => {
                            // This should only happen for CTAP2.0 tokens that use internal UV and
                            // failed (e.g. wrong fingerprint used), while doing MakeCredentials
                            send_status(
                                &status,
                                StatusUpdate::PinUvError(StatusPinUv::InvalidUv(None)),
                            );
                            continue;
                        }
                        Err(HIDError::Command(CommandError::StatusCode(
                            StatusCode::PinRequired,
                            _,
                        ))) if matches!(pin_uv_auth_result, PinUvAuthResult::UsingInternalUv) => {
                            // This should only happen for CTAP2.0 tokens that use internal UV and failed
                            // repeatedly, so that we have to fall back to PINs
                            skip_uv = true;
                            continue;
                        }
                        Err(HIDError::Command(CommandError::StatusCode(
                            StatusCode::UvBlocked,
                            _,
                        ))) if matches!(
                            pin_uv_auth_result,
                            PinUvAuthResult::SuccessGetPinUvAuthTokenUsingUvWithPermissions(..)
                        ) =>
                        {
                            // This should only happen for CTAP2.1 tokens that use internal UV and failed
                            // repeatedly, so that we have to fall back to PINs
                            skip_uv = true;
                            continue;
                        }
                        Err(HIDError::Command(CommandError::StatusCode(
                            StatusCode::CredentialExcluded,
                            _,
                        ))) => {
                            callback.call(Err(AuthenticatorError::CredentialExcluded));
                            break;
                        }
                        Err(e) => {
                            warn!("error happened: {e}");
                            callback.call(Err(AuthenticatorError::HIDError(e)));
                            break;
                        }
                    }
                }
            },
        );

        self.transaction = Some(try_or!(transaction, |e| cbc.call(Err(e))));
    }

    pub fn sign(
        &mut self,
        timeout: u64,
        args: SignArgs,
        status: Sender<crate::StatusUpdate>,
        callback: StateCallback<crate::Result<crate::SignResult>>,
    ) {
        if args.use_ctap1_fallback {
            /* Firefox uses this when security.webauthn.ctap2 is false. */
            let mut flags = SignFlags::empty();
            if args.user_verification_req == UserVerificationRequirement::Required {
                flags |= SignFlags::REQUIRE_USER_VERIFICATION;
            }
            let mut app_ids = vec![];
            let rp_id = RelyingPartyWrapper::Data(RelyingParty {
                id: args.relying_party_id,
                ..Default::default()
            });
            app_ids.push(rp_id.hash().as_ref().to_vec());
            if let Some(app_id) = args.alternate_rp_id {
                let app_id = RelyingPartyWrapper::Data(RelyingParty {
                    id: app_id,
                    ..Default::default()
                });
                app_ids.push(app_id.hash().as_ref().to_vec());
            }
            let key_handles = args
                .allow_list
                .iter()
                .map(|cred_desc| KeyHandle {
                    credential: cred_desc.id.clone(),
                    transports: AuthenticatorTransports::empty(),
                })
                .collect();
            let challenge = ClientDataHash(args.client_data_hash);

            self.legacy_sign(
                flags,
                timeout,
                challenge,
                app_ids,
                key_handles,
                status,
                callback,
            );
            return;
        }

        // Abort any prior register/sign calls.
        self.cancel();
        let cbc = callback.clone();

        let transaction = Transaction::new(
            timeout,
            callback.clone(),
            status,
            move |info, selector, status, alive| {
                let mut dev = match Self::init_and_select(info, &selector, &status, false, alive) {
                    None => {
                        return;
                    }
                    Some(dev) => dev,
                };

                info!("Device {:?} continues with the signing process", dev.id());

                // We need a copy of the arguments for this device
                let args = args.clone();

                if let Some(info) = dev.get_authenticator_info() {
                    // Check if extensions have been requested that are not supported by the device
                    if args.extensions.hmac_secret.is_some() && !info.supports_hmac_secret() {
                        callback.call(Err(AuthenticatorError::UnsupportedOption(
                            UnsupportedOption::HmacSecret,
                        )));
                        return;
                    }
                } else {
                    // Check that the request can be processed by a CTAP1 device.
                    // See CTAP 2.1 Section 10.3. Some additional checks are performed in
                    // GetAssertion::RequestCtap1
                    if args.user_verification_req == UserVerificationRequirement::Required {
                        callback.call(Err(AuthenticatorError::UnsupportedOption(
                            UnsupportedOption::UserVerification,
                        )));
                        return;
                    }
                    if args.allow_list.is_empty() {
                        callback.call(Err(AuthenticatorError::UnsupportedOption(
                            UnsupportedOption::EmptyAllowList,
                        )));
                        return;
                    }
                }

                let mut get_assertion = GetAssertion::new(
                    ClientDataHash(args.client_data_hash),
                    RelyingPartyWrapper::Data(RelyingParty {
                        id: args.relying_party_id,
                        name: None,
                        icon: None,
                    }),
                    args.allow_list,
                    GetAssertionOptions {
                        user_presence: Some(args.user_presence_req),
                        user_verification: None,
                    },
                    args.extensions,
                    args.pin,
                    args.alternate_rp_id,
                );

                let mut skip_uv = false;
                while alive() {
                    let pin_uv_auth_result = match Self::determine_puap_if_needed(
                        &mut get_assertion,
                        &mut dev,
                        skip_uv,
                        PinUvAuthTokenPermission::GetAssertion,
                        args.user_verification_req,
                        &status,
                        &callback,
                        alive,
                    ) {
                        Ok(r) => r,
                        Err(()) => {
                            return;
                        }
                    };

                    // Third, use the shared secret in the extensions, if requested
                    if let Some(extension) = get_assertion.extensions.hmac_secret.as_mut() {
                        if let Some(secret) = dev.get_shared_secret() {
                            match extension.calculate(secret) {
                                Ok(x) => x,
                                Err(e) => {
                                    callback.call(Err(e));
                                    return;
                                }
                            }
                        }
                    }

                    // Do "pre-flight": Filter the allow-list
                    let original_allow_list_was_empty = get_assertion.allow_list.is_empty();
                    if dev.get_authenticator_info().is_some() {
                        get_assertion.allow_list = unwrap_result!(
                            do_credential_list_filtering_ctap2(
                                &mut dev,
                                &get_assertion.allow_list,
                                &get_assertion.rp,
                                pin_uv_auth_result.get_pin_uv_auth_token(),
                            ),
                            callback
                        );
                    } else {
                        let key_handle = do_credential_list_filtering_ctap1(
                            &mut dev,
                            &get_assertion.allow_list,
                            &get_assertion.rp,
                            &get_assertion.client_data_hash,
                        );
                        match key_handle {
                            Some(key_handle) => {
                                get_assertion.allow_list = vec![key_handle];
                            }
                            None => {
                                get_assertion.allow_list.clear();
                            }
                        }
                    }

                    // If the incoming list was not empty, but the filtered list is, we have to error out
                    if !original_allow_list_was_empty && get_assertion.allow_list.is_empty() {
                        // We have to collect a user interaction
                        send_status(&status, crate::StatusUpdate::PresenceRequired);
                        let msg = dummy_make_credentials_cmd();
                        let _ = dev.send_msg_cancellable(&msg, alive); // Ignore answer, return "NoCredentials"
                        callback.call(Err(HIDError::Command(CommandError::StatusCode(
                            StatusCode::NoCredentials,
                            None,
                        ))
                        .into()));
                        return;
                    }

                    debug!("------------------------------------------------------------------");
                    debug!("{get_assertion:?} using {pin_uv_auth_result:?}");
                    debug!("------------------------------------------------------------------");
                    send_status(&status, crate::StatusUpdate::PresenceRequired);
                    let mut resp = dev.send_msg_cancellable(&get_assertion, alive);
                    if resp.is_err() {
                        // Retry with a different RP ID if one was supplied. This is intended to be
                        // used with the AppID provided in the WebAuthn FIDO AppID extension.
                        if let Some(alternate_rp_id) = get_assertion.alternate_rp_id {
                            get_assertion.rp = RelyingPartyWrapper::Data(RelyingParty {
                                id: alternate_rp_id,
                                ..Default::default()
                            });
                            get_assertion.alternate_rp_id = None;
                            resp = dev.send_msg_cancellable(&get_assertion, alive);
                        }
                    }
                    if resp.is_ok() {
                        send_status(
                            &status,
                            crate::StatusUpdate::Success {
                                dev_info: dev.get_device_info(),
                            },
                        );
                        // The DeviceSelector could already be dead, but it might also wait
                        // for us to respond, in order to cancel all other tokens in case
                        // we skipped the "blinking"-action and went straight for the actual
                        // request.
                        let _ = selector.send(DeviceSelectorEvent::SelectedToken(dev.id()));
                    }
                    match resp {
                        Ok(assertions) => {
                            callback.call(Ok(SignResult::CTAP2(assertions)));
                            break;
                        }
                        Err(HIDError::Command(CommandError::StatusCode(
                            StatusCode::ChannelBusy,
                            _,
                        ))) => {
                            // Channel busy. Client SHOULD retry the request after a short delay.
                            thread::sleep(Duration::from_millis(100));
                            continue;
                        }
                        Err(HIDError::Command(CommandError::StatusCode(
                            StatusCode::OperationDenied,
                            _,
                        ))) if matches!(pin_uv_auth_result, PinUvAuthResult::UsingInternalUv) => {
                            // This should only happen for CTAP2.0 tokens that use internal UV and failed
                            // (e.g. wrong fingerprint used), while doing GetAssertion
                            // Yes, this is a different error code than for MakeCredential.
                            send_status(
                                &status,
                                StatusUpdate::PinUvError(StatusPinUv::InvalidUv(None)),
                            );
                            continue;
                        }
                        Err(HIDError::Command(CommandError::StatusCode(
                            StatusCode::PinRequired,
                            _,
                        ))) if matches!(pin_uv_auth_result, PinUvAuthResult::UsingInternalUv) => {
                            // This should only happen for CTAP2.0 tokens that use internal UV and failed
                            // repeatedly, so that we have to fall back to PINs
                            skip_uv = true;
                            continue;
                        }
                        Err(HIDError::Command(CommandError::StatusCode(
                            StatusCode::UvBlocked,
                            _,
                        ))) if matches!(
                            pin_uv_auth_result,
                            PinUvAuthResult::SuccessGetPinUvAuthTokenUsingUvWithPermissions(..)
                        ) =>
                        {
                            // This should only happen for CTAP2.1 tokens that use internal UV and failed
                            // repeatedly, so that we have to fall back to PINs
                            skip_uv = true;
                            continue;
                        }
                        Err(e) => {
                            warn!("error happened: {e}");
                            callback.call(Err(AuthenticatorError::HIDError(e)));
                            break;
                        }
                    }
                }
            },
        );

        self.transaction = Some(try_or!(transaction, move |e| cbc.call(Err(e))));
    }

    // This blocks.
    pub fn cancel(&mut self) {
        if let Some(mut transaction) = self.transaction.take() {
            info!("Statemachine was cancelled. Cancelling transaction now.");
            transaction.cancel();
        }
    }

    pub fn reset_helper(
        dev: &mut Device,
        selector: Sender<DeviceSelectorEvent>,
        status: Sender<crate::StatusUpdate>,
        callback: StateCallback<crate::Result<crate::ResetResult>>,
        keep_alive: &dyn Fn() -> bool,
    ) {
        let reset = Reset {};
        info!("Device {:?} continues with the reset process", dev.id());

        debug!("------------------------------------------------------------------");
        debug!("{:?}", reset);
        debug!("------------------------------------------------------------------");
        send_status(&status, crate::StatusUpdate::PresenceRequired);
        let resp = dev.send_cbor_cancellable(&reset, keep_alive);
        if resp.is_ok() {
            send_status(
                &status,
                crate::StatusUpdate::Success {
                    dev_info: dev.get_device_info(),
                },
            );
            // The DeviceSelector could already be dead, but it might also wait
            // for us to respond, in order to cancel all other tokens in case
            // we skipped the "blinking"-action and went straight for the actual
            // request.
            let _ = selector.send(DeviceSelectorEvent::SelectedToken(dev.id()));
        }

        match resp {
            Ok(()) => callback.call(Ok(())),
            Err(HIDError::DeviceNotSupported) | Err(HIDError::UnsupportedCommand) => {}
            Err(HIDError::Command(CommandError::StatusCode(StatusCode::ChannelBusy, _))) => {}
            Err(e) => {
                warn!("error happened: {}", e);
                callback.call(Err(AuthenticatorError::HIDError(e)));
            }
        }
    }

    pub fn reset(
        &mut self,
        timeout: u64,
        status: Sender<crate::StatusUpdate>,
        callback: StateCallback<crate::Result<crate::ResetResult>>,
    ) {
        // Abort any prior register/sign calls.
        self.cancel();
        let cbc = callback.clone();

        let transaction = Transaction::new(
            timeout,
            callback.clone(),
            status,
            move |info, selector, status, alive| {
                let mut dev = match Self::init_and_select(info, &selector, &status, true, alive) {
                    None => {
                        return;
                    }
                    Some(dev) => dev,
                };
                Self::reset_helper(&mut dev, selector, status, callback.clone(), alive);
            },
        );

        self.transaction = Some(try_or!(transaction, move |e| cbc.call(Err(e))));
    }

    pub fn set_or_change_pin_helper(
        dev: &mut Device,
        mut current_pin: Option<Pin>,
        new_pin: Pin,
        status: Sender<crate::StatusUpdate>,
        callback: StateCallback<crate::Result<crate::ResetResult>>,
        alive: &dyn Fn() -> bool,
    ) {
        let mut shared_secret = match dev.establish_shared_secret() {
            Ok(s) => s,
            Err(e) => {
                callback.call(Err(AuthenticatorError::HIDError(e)));
                return;
            }
        };

        let authinfo = match dev.get_authenticator_info() {
            Some(i) => i.clone(),
            None => {
                callback.call(Err(HIDError::DeviceNotInitialized.into()));
                return;
            }
        };

        // If the device has a min PIN use that, otherwise default to 4 according to Spec
        if new_pin.as_bytes().len() < authinfo.min_pin_length.unwrap_or(4) as usize {
            callback.call(Err(AuthenticatorError::PinError(PinError::PinIsTooShort)));
            return;
        }

        // As per Spec: "Maximum PIN Length: UTF-8 representation MUST NOT exceed 63 bytes"
        if new_pin.as_bytes().len() >= 64 {
            callback.call(Err(AuthenticatorError::PinError(PinError::PinIsTooLong(
                new_pin.as_bytes().len(),
            ))));
            return;
        }

        // Check if a client-pin is already set, or if a new one should be created
        let res = if Some(true) == authinfo.options.client_pin {
            let mut res;
            let mut was_invalid = false;
            let mut retries = None;
            loop {
                // current_pin will only be Some() in the interactive mode (running `manage()`)
                // In case that PIN is wrong, we want to avoid an endless-loop here with re-trying
                // that wrong PIN all the time. So we `take()` it, and only test it once.
                // If that PIN is wrong, we fall back to the "ask_user_for_pin"-method.
                let curr_pin = match current_pin.take() {
                    None => {
                        match Self::ask_user_for_pin(was_invalid, retries, &status, &callback) {
                            Ok(pin) => pin,
                            _ => {
                                return;
                            }
                        }
                    }
                    Some(pin) => pin,
                };

                res = ChangeExistingPin::new(&authinfo, &shared_secret, &curr_pin, &new_pin)
                    .map_err(HIDError::Command)
                    .and_then(|msg| dev.send_cbor_cancellable(&msg, alive))
                    .map_err(|e| repackage_pin_errors(dev, e));

                if let Err(AuthenticatorError::PinError(PinError::InvalidPin(r))) = res {
                    was_invalid = true;
                    retries = r;
                    // We need to re-establish the shared secret for the next round.
                    match dev.establish_shared_secret() {
                        Ok(s) => {
                            shared_secret = s;
                        }
                        Err(e) => {
                            callback.call(Err(AuthenticatorError::HIDError(e)));
                            return;
                        }
                    };

                    continue;
                } else {
                    break;
                }
            }
            res
        } else {
            dev.send_cbor_cancellable(&SetNewPin::new(&shared_secret, &new_pin), alive)
                .map_err(AuthenticatorError::HIDError)
        };

        callback.call(res);
    }

    pub fn set_pin(
        &mut self,
        timeout: u64,
        new_pin: Pin,
        status: Sender<crate::StatusUpdate>,
        callback: StateCallback<crate::Result<crate::ResetResult>>,
    ) {
        // Abort any prior register/sign calls.
        self.cancel();

        let cbc = callback.clone();

        let transaction = Transaction::new(
            timeout,
            callback.clone(),
            status,
            move |info, selector, status, alive| {
                let mut dev = match Self::init_and_select(info, &selector, &status, true, alive) {
                    None => {
                        return;
                    }
                    Some(dev) => dev,
                };

                Self::set_or_change_pin_helper(
                    &mut dev,
                    None,
                    new_pin.clone(),
                    status,
                    callback.clone(),
                    alive,
                );
            },
        );
        self.transaction = Some(try_or!(transaction, move |e| cbc.call(Err(e))));
    }

    pub fn legacy_register(
        &mut self,
        flags: crate::RegisterFlags,
        timeout: u64,
        challenge: ClientDataHash,
        application: crate::AppId,
        key_handles: Vec<crate::KeyHandle>,
        status: Sender<crate::StatusUpdate>,
        callback: StateCallback<crate::Result<crate::RegisterResult>>,
    ) {
        // Abort any prior register/sign calls.
        self.cancel();
        let cbc = callback.clone();

        let transaction = Transaction::new(
            timeout,
            cbc.clone(),
            status,
            move |info, _, status, alive| {
                // Create a new device.
                let dev = &mut match Device::new(info) {
                    Ok(dev) => dev,
                    _ => return,
                };

                // Try initializing it.
                if !dev.is_u2f() || !u2f_init_device(dev) {
                    return;
                }

                // We currently support none of the authenticator selection
                // criteria because we can't ask tokens whether they do support
                // those features. If flags are set, ignore all tokens for now.
                //
                // Technically, this is a ConstraintError because we shouldn't talk
                // to this authenticator in the first place. But the result is the
                // same anyway.
                if !flags.is_empty() {
                    return;
                }

                send_status(
                    &status,
                    crate::StatusUpdate::DeviceAvailable {
                        dev_info: dev.get_device_info(),
                    },
                );

                // Iterate the exclude list and see if there are any matches.
                // If so, we'll keep polling the device anyway to test for user
                // consent, to be consistent with CTAP2 device behavior.
                let excluded = key_handles.iter().any(|key_handle| {
                    is_valid_transport(key_handle.transports)
                        && u2f_is_keyhandle_valid(
                            dev,
                            challenge.as_ref(),
                            &application,
                            &key_handle.credential,
                        )
                        .unwrap_or(false) /* no match on failure */
                });

                send_status(&status, crate::StatusUpdate::PresenceRequired);

                while alive() {
                    if excluded {
                        let blank = vec![0u8; PARAMETER_SIZE];
                        if u2f_register(dev, &blank, &blank).is_ok() {
                            callback.call(Err(errors::AuthenticatorError::U2FToken(
                                errors::U2FTokenError::InvalidState,
                            )));
                            break;
                        }
                    } else if let Ok(bytes) = u2f_register(dev, challenge.as_ref(), &application) {
                        let mut rp_id_hash: RpIdHash = RpIdHash([0u8; 32]);
                        rp_id_hash.0.copy_from_slice(&application);
                        let result = match MakeCredentialsResult::from_ctap1(&bytes, &rp_id_hash) {
                            Ok(MakeCredentialsResult(att_obj)) => att_obj,
                            Err(_) => {
                                callback.call(Err(errors::AuthenticatorError::U2FToken(
                                    errors::U2FTokenError::Unknown,
                                )));
                                break;
                            }
                        };
                        let dev_info = dev.get_device_info();
                        send_status(&status, crate::StatusUpdate::Success { dev_info });
                        callback.call(Ok(RegisterResult::CTAP2(result)));
                        break;
                    }

                    // Sleep a bit before trying again.
                    thread::sleep(Duration::from_millis(100));
                }

                send_status(
                    &status,
                    crate::StatusUpdate::DeviceUnavailable {
                        dev_info: dev.get_device_info(),
                    },
                );
            },
        );

        self.transaction = Some(try_or!(transaction, |e| cbc.call(Err(e))));
    }

    pub fn legacy_sign(
        &mut self,
        flags: crate::SignFlags,
        timeout: u64,
        challenge: ClientDataHash,
        app_ids: Vec<crate::AppId>,
        key_handles: Vec<crate::KeyHandle>,
        status: Sender<crate::StatusUpdate>,
        callback: StateCallback<crate::Result<crate::SignResult>>,
    ) {
        // Abort any prior register/sign calls.
        self.cancel();

        let cbc = callback.clone();

        let transaction = Transaction::new(
            timeout,
            cbc.clone(),
            status,
            move |info, _, status, alive| {
                // Create a new device.
                let dev = &mut match Device::new(info) {
                    Ok(dev) => dev,
                    _ => return,
                };

                // Try initializing it.
                if !dev.is_u2f() || !u2f_init_device(dev) {
                    return;
                }

                // We currently don't support user verification because we can't
                // ask tokens whether they do support that. If the flag is set,
                // ignore all tokens for now.
                //
                // Technically, this is a ConstraintError because we shouldn't talk
                // to this authenticator in the first place. But the result is the
                // same anyway.
                if !flags.is_empty() {
                    return;
                }

                // For each appId, try all key handles. If there's at least one
                // valid key handle for an appId, we'll use that appId below.
                let (app_id, valid_handles) =
                    find_valid_key_handles(&app_ids, &key_handles, |app_id, key_handle| {
                        u2f_is_keyhandle_valid(
                            dev,
                            challenge.as_ref(),
                            app_id,
                            &key_handle.credential,
                        )
                        .unwrap_or(false) /* no match on failure */
                    });

                // Aggregate distinct transports from all given credentials.
                let transports = key_handles
                    .iter()
                    .fold(crate::AuthenticatorTransports::empty(), |t, k| {
                        t | k.transports
                    });

                // We currently only support USB. If the RP specifies transports
                // and doesn't include USB it's probably lying.
                if !is_valid_transport(transports) {
                    return;
                }

                send_status(
                    &status,
                    crate::StatusUpdate::DeviceAvailable {
                        dev_info: dev.get_device_info(),
                    },
                );

                send_status(&status, crate::StatusUpdate::PresenceRequired);

                'outer: while alive() {
                    // If the device matches none of the given key handles
                    // then just make it blink with bogus data.
                    if valid_handles.is_empty() {
                        let blank = vec![0u8; PARAMETER_SIZE];
                        if u2f_register(dev, &blank, &blank).is_ok() {
                            callback.call(Err(errors::AuthenticatorError::U2FToken(
                                errors::U2FTokenError::InvalidState,
                            )));
                            break;
                        }
                    } else {
                        // Otherwise, try to sign.
                        for key_handle in &valid_handles {
                            if let Ok(bytes) =
                                u2f_sign(dev, challenge.as_ref(), app_id, &key_handle.credential)
                            {
                                let pkcd = PublicKeyCredentialDescriptor {
                                    id: key_handle.credential.clone(),
                                    transports: vec![],
                                };
                                let mut rp_id_hash: RpIdHash = RpIdHash([0u8; 32]);
                                rp_id_hash.0.copy_from_slice(app_id);
                                let result = match GetAssertionResult::from_ctap1(
                                    &bytes,
                                    &rp_id_hash,
                                    &pkcd,
                                ) {
                                    Ok(assertions) => assertions,
                                    Err(_) => {
                                        callback.call(Err(errors::AuthenticatorError::U2FToken(
                                            errors::U2FTokenError::Unknown,
                                        )));
                                        break 'outer;
                                    }
                                };
                                let dev_info = dev.get_device_info();
                                send_status(&status, crate::StatusUpdate::Success { dev_info });
                                callback.call(Ok(SignResult::CTAP2(result)));
                                break 'outer;
                            }
                        }
                    }

                    // Sleep a bit before trying again.
                    thread::sleep(Duration::from_millis(100));
                }

                send_status(
                    &status,
                    crate::StatusUpdate::DeviceUnavailable {
                        dev_info: dev.get_device_info(),
                    },
                );
            },
        );

        self.transaction = Some(try_or!(transaction, |e| cbc.call(Err(e))));
    }

    // Function to interactively manage a specific token.
    // Difference to register/sign: These want to do something and don't care
    // with which token they do it.
    // This function wants to manipulate a specific token. For this, we first
    // have to select one and then do something with it, based on what it
    // supports (Set PIN, Change PIN, Reset, etc.).
    // Hence, we first go through the discovery-phase, then provide the user
    // with the AuthenticatorInfo and then let them interactively decide what to do
    pub fn manage(
        &mut self,
        timeout: u64,
        status: Sender<crate::StatusUpdate>,
        callback: StateCallback<crate::Result<crate::ResetResult>>,
    ) {
        // Abort any prior register/sign calls.
        self.cancel();
        let cbc = callback.clone();

        let transaction = Transaction::new(
            timeout,
            callback.clone(),
            status,
            move |info, selector, status, alive| {
                let mut dev = match Self::init_and_select(info, &selector, &status, true, alive) {
                    None => {
                        return;
                    }
                    Some(dev) => dev,
                };

                info!("Device {:?} selected for interactive management.", dev.id());

                // Sending the user the info about the token
                let (tx, rx) = channel();
                send_status(
                    &status,
                    crate::StatusUpdate::InteractiveManagement((
                        tx,
                        dev.get_device_info(),
                        dev.get_authenticator_info().cloned(),
                    )),
                );
                while alive() {
                    match rx.recv_timeout(Duration::from_millis(400)) {
                        Ok(InteractiveRequest::Reset) => {
                            Self::reset_helper(&mut dev, selector, status, callback.clone(), alive);
                        }
                        Ok(InteractiveRequest::ChangePIN(curr_pin, new_pin)) => {
                            Self::set_or_change_pin_helper(
                                &mut dev,
                                Some(curr_pin),
                                new_pin,
                                status,
                                callback.clone(),
                                alive,
                            );
                        }
                        Ok(InteractiveRequest::SetPIN(pin)) => {
                            Self::set_or_change_pin_helper(
                                &mut dev,
                                None,
                                pin,
                                status,
                                callback.clone(),
                                alive,
                            );
                        }
                        Err(RecvTimeoutError::Timeout) => {
                            if !alive() {
                                // We got stopped at some point
                                callback.call(Err(AuthenticatorError::CancelledByUser));
                                break;
                            }
                            continue;
                        }
                        Err(RecvTimeoutError::Disconnected) => {
                            // recv() failed, because the other side is dropping the Sender.
                            info!(
                                "Callback dropped the channel, so we abort the interactive session"
                            );
                            callback.call(Err(AuthenticatorError::CancelledByUser));
                        }
                    }
                    break;
                }
            },
        );

        self.transaction = Some(try_or!(transaction, move |e| cbc.call(Err(e))));
    }
}