Add helper methods for filtering available keys
This commit is contained in:
+27
-1
@@ -18,7 +18,7 @@ use yubikey::{
|
|||||||
certificate::Certificate,
|
certificate::Certificate,
|
||||||
piv::{decrypt_data, AlgorithmId, RetiredSlotId, SlotId},
|
piv::{decrypt_data, AlgorithmId, RetiredSlotId, SlotId},
|
||||||
reader::{Context, Reader},
|
reader::{Context, Reader},
|
||||||
MgmKey, PinPolicy, Serial, TouchPolicy, YubiKey,
|
Key, MgmKey, PinPolicy, Serial, TouchPolicy, YubiKey,
|
||||||
};
|
};
|
||||||
|
|
||||||
use crate::{
|
use crate::{
|
||||||
@@ -303,6 +303,32 @@ pub(crate) fn manage(yubikey: &mut YubiKey) -> Result<(), Error> {
|
|||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// Returns an iterator of keys that are occupying plugin-compatible slots, along with the
|
||||||
|
/// corresponding recipient if the key is compatible with this plugin.
|
||||||
|
pub(crate) fn list_slots(
|
||||||
|
yubikey: &mut YubiKey,
|
||||||
|
) -> Result<impl Iterator<Item = (Key, RetiredSlotId, Option<Recipient>)>, Error> {
|
||||||
|
Ok(Key::list(yubikey)?.into_iter().filter_map(|key| {
|
||||||
|
// We only use the retired slots.
|
||||||
|
match key.slot() {
|
||||||
|
SlotId::Retired(slot) => {
|
||||||
|
// Only P-256 keys are compatible with us.
|
||||||
|
let recipient = Recipient::from_certificate(key.certificate());
|
||||||
|
Some((key, slot, recipient))
|
||||||
|
}
|
||||||
|
_ => None,
|
||||||
|
}
|
||||||
|
}))
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Returns an iterator of keys that are compatible with this plugin.
|
||||||
|
pub(crate) fn list_compatible(
|
||||||
|
yubikey: &mut YubiKey,
|
||||||
|
) -> Result<impl Iterator<Item = (Key, RetiredSlotId, Recipient)>, Error> {
|
||||||
|
list_slots(yubikey)
|
||||||
|
.map(|iter| iter.filter_map(|(key, slot, res)| res.map(|recipient| (key, slot, recipient))))
|
||||||
|
}
|
||||||
|
|
||||||
/// A reference to an age key stored in a YubiKey.
|
/// A reference to an age key stored in a YubiKey.
|
||||||
#[derive(Debug)]
|
#[derive(Debug)]
|
||||||
pub struct Stub {
|
pub struct Stub {
|
||||||
|
|||||||
+9
-37
@@ -12,11 +12,7 @@ use i18n_embed::{
|
|||||||
};
|
};
|
||||||
use lazy_static::lazy_static;
|
use lazy_static::lazy_static;
|
||||||
use rust_embed::RustEmbed;
|
use rust_embed::RustEmbed;
|
||||||
use yubikey::{
|
use yubikey::{piv::RetiredSlotId, reader::Context, PinPolicy, Serial, TouchPolicy};
|
||||||
piv::{RetiredSlotId, SlotId},
|
|
||||||
reader::Context,
|
|
||||||
Key, PinPolicy, Serial, TouchPolicy,
|
|
||||||
};
|
|
||||||
|
|
||||||
mod builder;
|
mod builder;
|
||||||
mod error;
|
mod error;
|
||||||
@@ -195,18 +191,7 @@ fn print_single(
|
|||||||
) -> Result<(), Error> {
|
) -> Result<(), Error> {
|
||||||
let mut yubikey = key::open(serial)?;
|
let mut yubikey = key::open(serial)?;
|
||||||
|
|
||||||
let mut keys = Key::list(&mut yubikey)?.into_iter().filter_map(|key| {
|
let (key, slot, recipient) = key::list_compatible(&mut yubikey)?
|
||||||
// - We only use the retired slots.
|
|
||||||
// - Only P-256 keys are compatible with us.
|
|
||||||
match key.slot() {
|
|
||||||
SlotId::Retired(slot) => {
|
|
||||||
p256::Recipient::from_certificate(key.certificate()).map(|r| (key, slot, r))
|
|
||||||
}
|
|
||||||
_ => None,
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
let (key, slot, recipient) = keys
|
|
||||||
.find(|(_, s, _)| s == &slot)
|
.find(|(_, s, _)| s == &slot)
|
||||||
.ok_or(Error::SlotHasNoIdentity(slot))?;
|
.ok_or(Error::SlotHasNoIdentity(slot))?;
|
||||||
|
|
||||||
@@ -235,19 +220,7 @@ fn print_multiple(
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
for key in Key::list(&mut yubikey)? {
|
for (key, slot, recipient) in key::list_compatible(&mut yubikey)? {
|
||||||
// We only use the retired slots.
|
|
||||||
let slot = match key.slot() {
|
|
||||||
SlotId::Retired(slot) => slot,
|
|
||||||
_ => continue,
|
|
||||||
};
|
|
||||||
|
|
||||||
// Only P-256 keys are compatible with us.
|
|
||||||
let recipient = match p256::Recipient::from_certificate(key.certificate()) {
|
|
||||||
Some(recipient) => recipient,
|
|
||||||
None => continue,
|
|
||||||
};
|
|
||||||
|
|
||||||
let stub = key::Stub::new(yubikey.serial(), slot, &recipient);
|
let stub = key::Stub::new(yubikey.serial(), slot, &recipient);
|
||||||
let metadata = match util::Metadata::extract(&mut yubikey, slot, key.certificate(), all)
|
let metadata = match util::Metadata::extract(&mut yubikey, slot, key.certificate(), all)
|
||||||
{
|
{
|
||||||
@@ -405,16 +378,16 @@ fn main() -> Result<(), Error> {
|
|||||||
None => return Ok(()),
|
None => return Ok(()),
|
||||||
};
|
};
|
||||||
|
|
||||||
let keys = Key::list(&mut yubikey)?;
|
let keys = key::list_slots(&mut yubikey)?.collect::<Vec<_>>();
|
||||||
|
|
||||||
// Identify slots that we can't allow the user to select.
|
// Identify slots that we can't allow the user to select.
|
||||||
let slot_details: Vec<_> = USABLE_SLOTS
|
let slot_details: Vec<_> = USABLE_SLOTS
|
||||||
.iter()
|
.iter()
|
||||||
.map(|&slot| {
|
.map(|&slot| {
|
||||||
keys.iter()
|
keys.iter()
|
||||||
.find(|key| key.slot() == SlotId::Retired(slot))
|
.find(|(_, s, _)| s == &slot)
|
||||||
.map(|key| {
|
.map(|(key, _, recipient)| {
|
||||||
p256::Recipient::from_certificate(key.certificate()).map(|_| {
|
recipient.as_ref().map(|_| {
|
||||||
// Cache the details we need to display to the user.
|
// Cache the details we need to display to the user.
|
||||||
let (_, cert) =
|
let (_, cert) =
|
||||||
x509_parser::parse_x509_certificate(key.certificate().as_ref())
|
x509_parser::parse_x509_certificate(key.certificate().as_ref())
|
||||||
@@ -465,9 +438,8 @@ fn main() -> Result<(), Error> {
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
if let Some(key) = keys.iter().find(|key| key.slot() == SlotId::Retired(slot)) {
|
if let Some((key, _, recipient)) = keys.into_iter().find(|(_, s, _)| s == &slot) {
|
||||||
let recipient = p256::Recipient::from_certificate(key.certificate())
|
let recipient = recipient.expect("We checked this above");
|
||||||
.expect("We checked this above");
|
|
||||||
|
|
||||||
if Confirm::new()
|
if Confirm::new()
|
||||||
.with_prompt(fl!("cli-setup-use-existing", slot_index = slot_index))
|
.with_prompt(fl!("cli-setup-use-existing", slot_index = slot_index))
|
||||||
|
|||||||
Reference in New Issue
Block a user