""" Connection to hardware authentication device. It is used for getting SSH public keys and ECDSA signing of server requests. """ import binascii import io import logging import re import struct from . import factory, formats, util log = logging.getLogger(__name__) class Client(object): """Client wrapper for SSH authentication device.""" def __init__(self, loader=factory.load, curve=formats.CURVE_NIST256): """Connect to hardware device.""" client_wrapper = loader() self.client = client_wrapper.connection self.identity_type = client_wrapper.identity_type self.device_name = client_wrapper.device_name self.curve = curve def __enter__(self): """Start a session, and test connection.""" msg = 'Hello World!' assert self.client.ping(msg) == msg return self def __exit__(self, *args): """Forget PIN, shutdown screen and disconnect.""" log.info('disconnected from %s', self.device_name) self.client.clear_session() self.client.close() def get_identity(self, label, index=0): """Parse label string into Identity protobuf.""" identity = string_to_identity(label, self.identity_type) identity.proto = 'ssh' identity.index = index return identity def get_public_key(self, label): """Get SSH public key corresponding to specified by label.""" identity = self.get_identity(label=label) label = identity_to_string(identity) # canonize key label log.info('getting "%s" public key (%s) from %s...', label, self.curve, self.device_name) addr = _get_address(identity) node = self.client.get_public_node(n=addr, ecdsa_curve_name=self.curve) pubkey = node.node.public_key vk = formats.decompress_pubkey(pubkey=pubkey, curve_name=self.curve) return formats.export_public_key(vk=vk, label=label) def sign_ssh_challenge(self, label, blob, visual=''): """Sign given blob using a private key, specified by the label.""" identity = self.get_identity(label=label) msg = _parse_ssh_blob(blob) log.debug('%s: user %r via %r (%r)', msg['conn'], msg['user'], msg['auth'], msg['key_type']) log.debug('nonce: %s', binascii.hexlify(msg['nonce'])) log.debug('fingerprint: %s', msg['public_key']['fingerprint']) log.info('please confirm user "%s" login to "%s" using %s...', msg['user'], label, self.device_name) result = self.client.sign_identity(identity=identity, challenge_hidden=blob, challenge_visual=visual, ecdsa_curve_name=self.curve) verifying_key = formats.decompress_pubkey(pubkey=result.public_key, curve_name=self.curve) key_type, blob = formats.serialize_verifying_key(verifying_key) assert blob == msg['public_key']['blob'] assert key_type == msg['key_type'] assert len(result.signature) == 65 assert result.signature[:1] == bytearray([0]) return result.signature[1:] _identity_regexp = re.compile(''.join([ '^' r'(?:(?P.*)://)?', r'(?:(?P.*)@)?', r'(?P.*?)', r'(?::(?P\w*))?', r'(?P/.*)?', '$' ])) def string_to_identity(s, identity_type): """Parse string into Identity protobuf.""" m = _identity_regexp.match(s) result = m.groupdict() log.debug('parsed identity: %s', result) kwargs = {k: v for k, v in result.items() if v} return identity_type(**kwargs) def identity_to_string(identity): """Dump Identity protobuf into its string representation.""" result = [] if identity.proto: result.append(identity.proto + '://') if identity.user: result.append(identity.user + '@') result.append(identity.host) if identity.port: result.append(':' + identity.port) if identity.path: result.append(identity.path) return ''.join(result) def _get_address(identity): index = struct.pack('