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
//! This package provides a [CTAP 2.0][Ctap20Authenticator],
//! [CTAP 2.1-PRE][Ctap21PreAuthenticator] and [CTAP 2.1][Ctap21Authenticator]
//! protocol implementation on top of [Token], allowing you to interface with
//! FIDO authenticators.
//!
//! The main interface for this package is [CtapAuthenticator].
//!
//! ## Warning
//!
//! This is "alpha" quality code: it still a work in progress, and missing core
//! functionality.
//!
//! **There are edge cases that which cause you to be locked out of your
//! authenticator.**
//!
//! **The API is not final, and subject to change without warning.**
//!
//! ### Known issues
//!
//! There are many limitations with this implementation, which are intended to
//! be addressed in the future:
//!
//! * lock-outs aren't handled; this will just use up all your PIN and UV
//! retries without warning, **potentially locking you out**.
//!
//! This also doesn't fall-back to PIN auth if UV (fingerprint) auth is locked
//! out.
//!
//! * multiple authenticators doesn't work particularly well, and connecting
//! devices while an action is in progress doesn't work
//!
//! * cancellations and timeouts
//!
//! * session management (re-using `pin_uv_auth_token`)
//!
//! * [U2F compatibility and fall-back][u2f]
//!
//! * [secured state][secure]
//!
//! Many CTAP2 features are unsupported:
//!
//! * creating and using [discoverable credentials]
//!
//! * [large blobs] (`authenticatorLargeBlobs`)
//!
//! * [enterprise attestation]
//!
//! * [request extensions]
//!
//! ## Features
//!
//! * Basic [registration][Ctap20Authenticator::perform_register] and
//! [authentication][Ctap20Authenticator::perform_auth] with a
//! [CLI interface][crate::ui::Cli] (or
//! [implement your own][crate::ui::UiCallback])
//!
//! * [Bluetooth Low Energy][crate::bluetooth], [caBLE / Hybrid][crate::cable],
//! [NFC][crate::nfc] and [USB HID][crate::usb] authenticators
//!
//! * CTAP 2.1 and NFC [authenticator selection][select_one_token]
//!
//! * Fingerprint (biometric) authentication,
//! [enrollment and management][BiometricAuthenticator]
//! (CTAP 2.1 and 2.1-PRE)
//!
//! * Built-in user verification
//!
//! * [Setting][Ctap20Authenticator::set_new_pin] and
//! [changing][Ctap20Authenticator::change_pin] device PINs
//!
//! * PIN/UV Auth [Protocol One] and [Protocol Two], [getPinToken],
//! [getPinUvAuthTokenUsingPinWithPermissions], and
//! [getPinUvAuthTokenUsingUvWithPermissions]
//!
//! * [Factory-resetting authenticators][Ctap20Authenticator::factory_reset]
//!
//! * configuring [user verification][Ctap21Authenticator::toggle_always_uv]
//! and [minimum PIN length][Ctap21Authenticator::set_min_pin_length]
//! requirements
//!
//! * [managing discoverable credentials][CredentialManagementAuthenticator]
//!
//! ## Examples
//!
//! * `webauthn-authenticator-rs/examples/authenticate.rs` works with any
//! [crate::AuthenticatorBackend], including [CtapAuthenticator].
//!
//! * `fido-key-manager` will connect to a key, pull hardware information, and
//! let you reconfigure the key (reset, PIN, fingerprints, etc.)
//!
//! ## Device-specific issues
//!
//! * [Some YubiKey USB tokens][yubi] provide a USB CCID (smartcard) interface,
//! in addition to a USB HID FIDO interface, which will be detected as an
//! "NFC reader".
//!
//! This only provides access to the PIV, OATH or OpenPGP applets, not FIDO.
//!
//! Use [USBTransport][crate::usb::USBTransport] for these tokens.
//!
//! ## Platform-specific issues
//!
//! See `fido-key-manager/README.md`.
//!
//! [discoverable credentials]: https://fidoalliance.org/specs/fido-v2.1-ps-20210615/fido-client-to-authenticator-protocol-v2.1-ps-errata-20220621.html#sctn-discoverable
//! [enterprise attestation]: https://fidoalliance.org/specs/fido-v2.1-ps-20210615/fido-client-to-authenticator-protocol-v2.1-ps-errata-20220621.html#enable-enterprise-attestation
//! [getPinToken]: https://fidoalliance.org/specs/fido-v2.1-ps-20210615/fido-client-to-authenticator-protocol-v2.1-ps-errata-20220621.html#getPinToken
//! [getPinUvAuthTokenUsingPinWithPermissions]: https://fidoalliance.org/specs/fido-v2.1-ps-20210615/fido-client-to-authenticator-protocol-v2.1-ps-errata-20220621.html#getPinUvAuthTokenUsingPinWithPermissions
//! [getPinUvAuthTokenUsingUvWithPermissions]: https://fidoalliance.org/specs/fido-v2.1-ps-20210615/fido-client-to-authenticator-protocol-v2.1-ps-errata-20220621.html#getPinUvAuthTokenUsingUvWithPermissions
//! [large blobs]: https://fidoalliance.org/specs/fido-v2.1-ps-20210615/fido-client-to-authenticator-protocol-v2.1-ps-errata-20220621.html#authenticatorLargeBlobs
//! [PC/SC Lite]: https://pcsclite.apdu.fr/
//! [Protocol One]: https://fidoalliance.org/specs/fido-v2.1-ps-20210615/fido-client-to-authenticator-protocol-v2.1-ps-errata-20220621.html#pinProto1
//! [Protocol Two]: https://fidoalliance.org/specs/fido-v2.1-ps-20210615/fido-client-to-authenticator-protocol-v2.1-ps-errata-20220621.html#pinProto2
//! [request extensions]: https://fidoalliance.org/specs/fido-v2.1-ps-20210615/fido-client-to-authenticator-protocol-v2.1-ps-errata-20220621.html#sctn-defined-extensions
//! [secure]: https://fidoalliance.org/specs/fido-v2.1-ps-20210615/fido-client-to-authenticator-protocol-v2.1-ps-errata-20220621.html#sctn-secure-interaction
//! [u2f]: https://fidoalliance.org/specs/fido-v2.1-ps-20210615/fido-client-to-authenticator-protocol-v2.1-ps-errata-20220621.html#u2f-interoperability
//! [yubi]: https://support.yubico.com/hc/en-us/articles/360016614920-YubiKey-USB-ID-Values
// TODO: `commands` may become private in future.
pub mod commands;
#[doc(hidden)]
mod ctap20;
#[doc(hidden)]
mod ctap21;
mod ctap21_bio;
mod ctap21_cred;
#[doc(hidden)]
mod ctap21pre;
mod internal;
mod pin_uv;
#[cfg(any(all(doc, not(doctest)), feature = "vendor-solokey"))]
#[doc(hidden)]
mod solokey;
#[cfg(any(all(doc, not(doctest)), feature = "vendor-yubikey"))]
#[doc(hidden)]
mod yubikey;
use std::ops::{Deref, DerefMut};
use std::pin::Pin;
use futures::stream::{BoxStream, FuturesUnordered};
use futures::{select, Future, StreamExt};
use crate::authenticator_hashed::AuthenticatorBackendHashedClientData;
use crate::error::WebauthnCError;
use crate::transport::{Token, TokenEvent};
use crate::ui::UiCallback;
use self::{
commands::GetInfoRequest, ctap21_bio::BiometricAuthenticatorInfo,
ctap21_cred::CredentialManagementAuthenticatorInfo, internal::CtapAuthenticatorVersion,
};
#[doc(inline)]
pub use self::{
commands::{CBORCommand, CBORResponse, GetInfoResponse},
ctap20::Ctap20Authenticator,
ctap21::Ctap21Authenticator,
ctap21pre::Ctap21PreAuthenticator,
};
#[cfg(any(all(doc, not(doctest)), feature = "ctap2-management"))]
#[doc(inline)]
pub use self::{
ctap21_bio::BiometricAuthenticator, ctap21_cred::CredentialManagementAuthenticator,
};
#[cfg(any(all(doc, not(doctest)), feature = "vendor-solokey"))]
#[doc(inline)]
pub use self::solokey::SoloKeyAuthenticator;
#[cfg(any(all(doc, not(doctest)), feature = "vendor-yubikey"))]
#[doc(inline)]
pub use self::yubikey::YubiKeyAuthenticator;
/// Abstraction for different versions of the CTAP2 protocol.
///
/// All tokens can [Deref] into [Ctap20Authenticator].
#[derive(Debug)]
pub enum CtapAuthenticator<'a, T: Token, U: UiCallback> {
/// Interface for CTAP 2.0 tokens.
Fido20(Ctap20Authenticator<'a, T, U>),
/// Interface for CTAP 2.1-PRE tokens.
Fido21Pre(Ctap21PreAuthenticator<'a, T, U>),
/// Interface for CTAP 2.1 tokens.
Fido21(Ctap21Authenticator<'a, T, U>),
}
impl<'a, T: Token, U: UiCallback> CtapAuthenticator<'a, T, U> {
/// Initialises the token, and gets a reference to the highest supported FIDO version.
///
/// Returns `None` if we don't support any version of CTAP which the token supports.
pub async fn new(mut token: T, ui_callback: &'a U) -> Option<CtapAuthenticator<'a, T, U>> {
token
.init()
.await
.map_err(|e| {
error!("Error initialising token: {e:?}");
e
})
.ok()?;
let info = token.transmit(GetInfoRequest {}, ui_callback).await.ok()?;
Self::new_with_info(info, token, ui_callback)
}
/// Creates a connection to an already-initialized token, and gets a reference to the highest supported FIDO version.
///
/// Returns `None` if we don't support any version of CTAP which the token supports.
pub(crate) fn new_with_info(
info: GetInfoResponse,
token: T,
ui_callback: &'a U,
) -> Option<CtapAuthenticator<'a, T, U>> {
if info
.versions
.contains(Ctap21Authenticator::<'a, T, U>::VERSION)
{
Some(Self::Fido21(Ctap21Authenticator::new_with_info(
info,
token,
ui_callback,
)))
} else if info
.versions
.contains(Ctap21PreAuthenticator::<'a, T, U>::VERSION)
{
Some(Self::Fido21Pre(Ctap21PreAuthenticator::new_with_info(
info,
token,
ui_callback,
)))
} else if info
.versions
.contains(Ctap20Authenticator::<'a, T, U>::VERSION)
{
Some(Self::Fido20(Ctap20Authenticator::new_with_info(
info,
token,
ui_callback,
)))
} else {
None
}
}
/// Returns `true` if the token supports biometric commands.
pub fn supports_biometrics(&self) -> bool {
match self {
Self::Fido21(a) => a.supports_biometrics(),
Self::Fido21Pre(a) => a.supports_biometrics(),
_ => false,
}
}
/// Returns `true` if the token has configured biometric authentication.
pub fn configured_biometrics(&self) -> bool {
match self {
Self::Fido21(a) => a.configured_biometrics(),
Self::Fido21Pre(a) => a.configured_biometrics(),
_ => false,
}
}
#[cfg(any(all(doc, not(doctest)), feature = "ctap2-management"))]
/// Gets a mutable reference to a [BiometricAuthenticator] trait for the
/// token, if it supports biometric commands.
///
/// Returns `None` if the token does not support biometrics.
pub fn bio(&mut self) -> Option<&mut dyn BiometricAuthenticator> {
match self {
Self::Fido21(a) => a.supports_biometrics().then_some(a),
Self::Fido21Pre(a) => a.supports_biometrics().then_some(a),
_ => None,
}
}
/// Returns `true` if the token supports credential management.
pub fn supports_credential_management(&self) -> bool {
match self {
Self::Fido21(a) => a.supports_credential_management(),
Self::Fido21Pre(a) => a.supports_credential_management(),
_ => false,
}
}
#[cfg(any(all(doc, not(doctest)), feature = "ctap2-management"))]
/// Gets a mutable reference to a [CredentialManagementAuthenticator] trait
/// for the token, if it supports credential management commands.
///
/// Returns `None` if the token does not support credential management.
pub fn credential_management(&mut self) -> Option<&mut dyn CredentialManagementAuthenticator> {
match self {
Self::Fido21(a) => a.supports_credential_management().then_some(a),
Self::Fido21Pre(a) => a.supports_credential_management().then_some(a),
_ => None,
}
}
}
/// Gets a reference to a [CTAP 2.0 compatible interface][Ctap20Authenticator].
///
/// All CTAP2 tokens support these base commands.
impl<'a, T: Token, U: UiCallback> Deref for CtapAuthenticator<'a, T, U> {
type Target = Ctap20Authenticator<'a, T, U>;
fn deref(&self) -> &Self::Target {
use CtapAuthenticator::*;
match self {
Fido20(a) => a,
Fido21Pre(a) => a,
Fido21(a) => a,
}
}
}
/// Gets a mutable reference to a
/// [CTAP 2.0 compatible interface][Ctap20Authenticator].
///
/// All CTAP2 tokens support these base commands.
impl<'a, T: Token, U: UiCallback> DerefMut for CtapAuthenticator<'a, T, U> {
fn deref_mut(&mut self) -> &mut Self::Target {
use CtapAuthenticator::*;
match self {
Fido20(a) => a,
Fido21Pre(a) => a,
Fido21(a) => a,
}
}
}
/// Wrapper for [Ctap20Authenticator]'s implementation of
/// [AuthenticatorBackendHashedClientData].
impl<'a, T: Token, U: UiCallback> AuthenticatorBackendHashedClientData
for CtapAuthenticator<'a, T, U>
{
fn perform_register(
&mut self,
client_data_hash: Vec<u8>,
options: webauthn_rs_proto::PublicKeyCredentialCreationOptions,
timeout_ms: u32,
) -> Result<webauthn_rs_proto::RegisterPublicKeyCredential, WebauthnCError> {
<Ctap20Authenticator<'a, T, U> as AuthenticatorBackendHashedClientData>::perform_register(
self,
client_data_hash,
options,
timeout_ms,
)
}
fn perform_auth(
&mut self,
client_data_hash: Vec<u8>,
options: webauthn_rs_proto::PublicKeyCredentialRequestOptions,
timeout_ms: u32,
) -> Result<webauthn_rs_proto::PublicKeyCredential, WebauthnCError> {
<Ctap20Authenticator<'a, T, U> as AuthenticatorBackendHashedClientData>::perform_auth(
self,
client_data_hash,
options,
timeout_ms,
)
}
}
/// Selects one [Token] from an [Iterator] of Tokens.
///
/// This only works on NFC authenticators and CTAP 2.1 (not "2.1 PRE")
/// authenticators.
pub async fn select_one_token<'a, T: Token + 'a, U: UiCallback + 'a>(
tokens: impl Iterator<Item = &'a mut CtapAuthenticator<'a, T, U>>,
) -> Option<&'a mut CtapAuthenticator<'a, T, U>> {
let mut tasks: FuturesUnordered<_> = tokens
.map(|token| async move {
if !token.token.has_button() {
// The token doesn't have a button on a transport level (ie: NFC),
// so immediately mark this as the "selected" token, even if it
// doesn't support FIDO v2.1.
trace!("Token has no button, implicitly treading as selected");
Ok::<_, WebauthnCError>(token)
} else if let CtapAuthenticator::Fido21(t) = token {
t.selection().await?;
Ok::<_, WebauthnCError>(token)
} else {
Err(WebauthnCError::NotSupported)
}
})
.collect();
let token = loop {
select! {
res = tasks.select_next_some() => {
if let Ok(token) = res {
break Some(token);
}
}
complete => {
// No tokens available
break None;
}
}
};
tasks.clear();
token
}
/// Selects an authenticator device to use from a [`TokenEvent`] stream.
///
/// The first device matching these conditions is returned:
///
/// 1. any newly-connected device _after enumeration has completed_
/// 2. any device without a button (ie: NFC authenticator)
/// 3. a device which responds to [`Ctap20Authenticator::selection()`]
pub async fn select_one_device<'a, T: Token + 'a, U: UiCallback + 'a>(
stream: BoxStream<'a, TokenEvent<T>>,
ui_callback: &'a U,
) -> Option<CtapAuthenticator<'a, T, U>> {
let mut tasks = FuturesUnordered::new();
let mut enumerated = false;
let mut stream = stream.fuse();
loop {
select! {
event = stream.select_next_some() => {
match event {
TokenEvent::EnumerationComplete => {
trace!("now enumerated");
enumerated = true;
},
TokenEvent::Added(token) => {
trace!("added: {token:?}");
let local_enumerated = enumerated;
let mut authenticator = if let Some(a) = CtapAuthenticator::new(token, ui_callback).await {
a
} else {
// Couldn't initialise
continue;
};
if local_enumerated || !authenticator.token.has_button() {
// implicitly choose the new or buttonless device
return Some(authenticator);
} else {
tasks.push(async move {
authenticator.selection().await.ok()?;
Some(authenticator)
});
}
}
// Ignore removals
TokenEvent::Removed(_) => (),
}
}
res = tasks.select_next_some() => {
if res.is_some() {
return res;
}
}
complete => return None,
}
}
}
/// Selects an authenticator device to use from a [`TokenEvent`] stream.
///
/// The first device matching these conditions is returned:
///
/// 1. any newly-connected device _after enumeration has completed_
/// 2. any device without a button (ie: NFC authenticator)
/// 3. a device which responds to [`Ctap20Authenticator::selection()`]
pub async fn select_one_device_predicate<'a, T: Token + 'a, U: UiCallback + 'a>(
stream: BoxStream<'a, TokenEvent<T>>,
ui_callback: &'a U,
predicate: fn(&CtapAuthenticator<'a, T, U>) -> bool,
) -> Option<CtapAuthenticator<'a, T, U>> {
let mut tasks = FuturesUnordered::new();
let mut enumerated = false;
let mut stream = stream.fuse();
loop {
select! {
event = stream.select_next_some() => {
match event {
TokenEvent::EnumerationComplete => {
trace!("now enumerated");
enumerated = true;
},
TokenEvent::Added(token) => {
trace!("added: {token:?}");
let local_enumerated = enumerated;
let mut authenticator = if let Some(a) = CtapAuthenticator::new(token, ui_callback).await {
a
} else {
// Couldn't initialise
continue;
};
if !predicate(&authenticator) {
continue;
}
if local_enumerated || !authenticator.token.has_button() {
// implicitly choose the new or buttonless device
return Some(authenticator);
} else {
tasks.push(async move {
authenticator.selection().await.ok()?;
Some(authenticator)
});
}
}
// Ignore removals
TokenEvent::Removed(_) => (),
}
}
res = tasks.select_next_some() => {
if res.is_some() {
return res;
}
}
complete => return None,
}
}
}
/// Selects an authenticator device to use from a [`TokenEvent`] stream, using
/// a specific CTAP version.
///
/// The first device matching these conditions is returned:
///
/// 1. any newly-connected device _after enumeration has completed_
/// 2. any device without a button (ie: NFC authenticator)
/// 3. a device which responds to [`Ctap20Authenticator::selection()`]
pub async fn select_one_device_version<
'a,
C: CtapAuthenticatorVersion<'a, T, U> + DerefMut<Target = Ctap20Authenticator<'a, T, U>>,
T: Token + 'a,
U: UiCallback + 'a,
>(
stream: BoxStream<'a, TokenEvent<T>>,
ui_callback: &'a U,
predicate: fn(&C) -> bool,
) -> Option<C> {
let mut tasks: FuturesUnordered<Pin<Box<dyn Future<Output = Option<C>>>>> =
FuturesUnordered::new();
let mut enumerated = false;
let mut stream = stream.fuse();
loop {
select! {
event = stream.select_next_some() => {
match event {
TokenEvent::EnumerationComplete => {
trace!("now enumerated");
enumerated = true;
},
TokenEvent::Added(mut token) => {
trace!("added: {token:?}");
let local_enumerated = enumerated;
if let Err(e) = token.init().await {
error!("Error initialising token: {e:?}");
continue;
};
let info = match token.transmit(GetInfoRequest {}, ui_callback).await {
Ok(i) => i,
Err(e) => {
error!("error getting token info: {e:?}");
continue;
}
};
if !info.versions.contains(C::VERSION) {
warn!("token does not support {:?}: {:?}", C::VERSION, info.versions);
continue;
}
let mut authenticator = C::new_with_info(info, token, ui_callback);
if !predicate(&authenticator) {
continue;
}
trace!(?local_enumerated);
if local_enumerated {
// implicitly choose the new device
return Some(authenticator);
} else {
tasks.push(Box::pin(async move {
authenticator.selection().await.ok()?;
Some(authenticator)
}));
}
}
// Ignore removals
TokenEvent::Removed(_) => (),
}
}
res = tasks.select_next_some() => {
if res.is_some() {
return res;
}
}
complete => return None,
}
}
}