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
|
# Copyright (c) 2019-2022 by Ron Frederick <ronf@timeheart.net> and others.
#
# This program and the accompanying materials are made available under
# the terms of the Eclipse Public License v2.0 which accompanies this
# distribution and is available at:
#
# http://www.eclipse.org/legal/epl-2.0/
#
# This program may also be made available under the following secondary
# licenses when the conditions for such availability set forth in the
# Eclipse Public License v2.0 are satisfied:
#
# GNU General Public License, Version 2.0, or any later versions of
# that license
#
# SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-or-later
#
# Contributors:
# Ron Frederick - initial implementation, API, and documentation
"""Stub U2F security key module for unit tests"""
from contextlib import contextmanager
from hashlib import sha256
import asyncssh
from asyncssh.asn1 import der_encode, der_decode
from asyncssh.crypto import ECDSAPrivateKey, EdDSAPrivateKey
from asyncssh.packet import Byte, UInt32
from asyncssh.sk import sk_available, sk_webauthn_prefix
if sk_available: # pragma: no branch
from asyncssh.sk import SSH_SK_ECDSA, SSH_SK_ED25519
from asyncssh.sk import SSH_SK_USER_PRESENCE_REQD
from asyncssh.sk import APDU, ApduError, CtapError
class _Registration:
"""Security key registration data"""
def __init__(self, public_key, key_handle):
self.public_key = public_key
self.key_handle = key_handle
class _AuthData:
"""Security key authentication data"""
def __init__(self, flags, counter):
self.flags = flags
self.counter = counter
class _Assertion:
"""Security key assertion"""
def __init__(self, auth_data, signature):
self.auth_data = auth_data
self.signature = signature
class _CredentialData:
"""Security key credential data"""
def __init__(self, alg, public_value, key_handle):
if alg == SSH_SK_ED25519:
self.public_key = {-2: public_value}
else:
self.public_key = {-2: public_value[1:33], -3: public_value[33:]}
self.public_key[3] = alg
self.credential_id = key_handle
class _CredentialAuthData:
"""Security key credential authentication data"""
def __init__(self, credential_data):
self.credential_data = credential_data
class _Credential:
"""Security key credential"""
def __init__(self, auth_data):
self.auth_data = auth_data
class _AttestationResponse:
"""Security key attestation response"""
def __init__(self, attestation_object):
self.attestation_object = attestation_object
class _AuthenticatorData:
"""Security key authenticator data in aseertion"""
def __init__(self, flags, counter):
self.flags = flags
self.counter = counter
class _AssertionResponse:
"""Security key aseertion response"""
def __init__(self, client_data, auth_data, signature):
self.client_data = client_data
self.authenticator_data = auth_data
self.signature = signature
class _AssertionSelection:
"""Security key assertion response list"""
def __init__(self, assertions):
self._assertions = assertions
def get_response(self, index):
"""Return the assertion at specified index"""
return self._assertions[index]
class _CtapStub:
"""Stub for unit testing U2F security key support"""
@staticmethod
def _enroll(alg):
"""Enroll a new security key"""
if alg == SSH_SK_ECDSA:
key = ECDSAPrivateKey.generate(b'nistp256')
else:
key = EdDSAPrivateKey.generate(b'ed25519')
key_handle = der_encode((alg, key.public_value, key.private_value))
return key.public_value, key_handle
@staticmethod
def _sign(message_hash, app_hash, key_handle, flags):
"""Sign a message with a security key"""
alg, public_value, private_value = der_decode(key_handle)
if alg == SSH_SK_ECDSA:
key = ECDSAPrivateKey.construct(
b'nistp256', public_value, int.from_bytes(private_value, 'big'))
hash_alg = 'sha256'
else:
key = EdDSAPrivateKey.construct(b'ed25519', private_value)
hash_alg = None
counter = 0x12345678
sig = key.sign(app_hash + Byte(flags) + UInt32(counter) +
message_hash, hash_alg)
return flags, counter, sig
class Ctap1(_CtapStub):
"""Stub for unit testing U2F security keys using CTAP version 1"""
def __init__(self, dev):
self.dev = dev
self._polled = False
def _poll(self):
"""Simulate needing to poll the security device"""
if not self._polled:
self._polled = True
raise ApduError(APDU.USE_NOT_SATISFIED, b'')
def register(self, client_data_hash, app_hash):
"""Enroll a new security key using CTAP version 1"""
# pylint: disable=unused-argument
self._poll()
if self.dev.error == 'err':
raise ApduError(0, b'')
public_key, key_handle = self._enroll(SSH_SK_ECDSA)
return _Registration(public_key, key_handle)
def authenticate(self, message_hash, app_hash, key_handle):
"""Sign a message with a security key using CTAP version 1"""
self._poll()
if self.dev.error == 'nocred':
raise ApduError(APDU.WRONG_DATA, b'')
elif self.dev.error == 'err':
raise ApduError(0, b'')
flags, counter, sig = self._sign(message_hash, app_hash,
key_handle, SSH_SK_USER_PRESENCE_REQD)
return Byte(flags) + UInt32(counter) + sig
class Ctap2(_CtapStub):
"""Stub for unit testing U2F security keys using CTAP version 2"""
def __init__(self, dev):
if dev.version != 2:
raise ValueError('Wrong protocol version')
self.dev = dev
def make_credential(self, client_data_hash, rp, user, key_params,
options, pin_uv_param, pin_uv_protocol):
"""Enroll a new security key using CTAP version 2"""
# pylint: disable=unused-argument
alg = key_params[0]['alg']
if self.dev.error == 'err':
raise CtapError(CtapError.ERR.INVALID_CREDENTIAL)
elif self.dev.error == 'pinreq':
raise CtapError(CtapError.ERR.PUAT_REQUIRED)
elif self.dev.error == 'badpin':
raise CtapError(CtapError.ERR.PIN_INVALID)
public_key, key_handle = self._enroll(alg)
cdata = _CredentialData(alg, public_key, key_handle)
if options.get('rk'):
cred_mgmt = CredentialManagement(self)
cred_mgmt.add_resident_key(user['name'], cdata)
return _Credential(_CredentialAuthData(cdata))
def get_assertions(self, application, message_hash, allow_creds, options):
"""Sign a message with a security key using CTAP version 2"""
app_hash = sha256(application.encode()).digest()
key_handle = allow_creds[0]['id']
flags = SSH_SK_USER_PRESENCE_REQD if options['up'] else 0
if self.dev.error == 'nocred':
raise CtapError(CtapError.ERR.NO_CREDENTIALS)
elif self.dev.error == 'err':
raise CtapError(CtapError.ERR.INVALID_CREDENTIAL)
flags, counter, sig = self._sign(message_hash, app_hash,
key_handle, flags)
return [_Assertion(_AuthData(flags, counter), sig)]
class WindowsClient(_CtapStub):
"""Stub for unit testing U2F security keys via Windows WebAuthn"""
def __init__(self, origin, verify):
self._origin = origin
self._verify = verify
def make_credential(self, options):
"""Make a credential using Windows WebAuthN API"""
self._verify(options['rp']['id'], self._origin)
alg = options['pubKeyCredParams'][0]['alg']
public_key, key_handle = self._enroll(alg)
cdata = _CredentialData(alg, public_key, key_handle)
return _AttestationResponse(_Credential(_CredentialAuthData(cdata)))
def get_assertion(self, options):
"""Get assertion using Windows WebAuthN API"""
self._verify(options['rpId'], self._origin)
challenge = options['challenge']
application = options['rpId']
key_handle = options['allowCredentials'][0]['id']
flags = SSH_SK_USER_PRESENCE_REQD
app_hash = sha256(application.encode()).digest()
data = sk_webauthn_prefix(challenge, application) + b'}'
message_hash = sha256(data).digest()
flags, counter, sig = self._sign(message_hash, app_hash,
key_handle, flags)
auth_data = _AuthenticatorData(flags, counter)
assertion = _AssertionResponse(data, auth_data, sig)
return _AssertionSelection([assertion])
class CredentialManagement:
"""Stub for unit testing U2F security device resident keys"""
class RESULT:
"""Credential management result keys"""
USER = 6
CREDENTIAL_ID = 7
PUBLIC_KEY = 8
def __init__(self, ctap, pin_uv_protocol=None, pin_uv_token=None):
# pylint: disable=unused-argument
self.dev = ctap.dev
if self.dev.error == 'err':
raise CtapError(CtapError.ERR.INVALID_CREDENTIAL)
elif self.dev.error == 'nocred':
raise CtapError(CtapError.ERR.NO_CREDENTIALS)
elif self.dev.error == 'nopin':
raise CtapError(CtapError.ERR.PIN_NOT_SET)
elif self.dev.error == 'badpin':
raise CtapError(CtapError.ERR.PIN_INVALID)
def enumerate_creds(self, app_hash):
"""Enumerate resident credentials"""
# pylint: disable=unused-argument
return self.dev.resident_keys
def add_resident_key(self, user, cdata):
"""Add a resident key to a device"""
self.dev.resident_keys.append(
{self.RESULT.USER: {'id': b'', 'name': user, 'displayName': user},
self.RESULT.CREDENTIAL_ID: {'id': cdata.credential_id},
self.RESULT.PUBLIC_KEY: cdata.public_key})
class Device:
"""Stub for unit testing U2F security devices"""
def __init__(self, version):
self.version = version
self.error = None
self.resident_keys = []
def close(self):
"""Close this security device"""
class ClientPin:
"""Stub for unit testing U2F security device PINs"""
def __init__(self, ctap, protocol):
# pylint: disable=unused-argument
pass
def get_pin_token(self, pin):
"""Return a PIN token"""
# pylint: disable=no-self-use
return pin
class PinProtocolV1:
"""Stub for unit testing U2F pin protocol version 1"""
VERSION = 1
def stub_sk(devices, use_webauthn=False):
"""Stub out security key module functions for unit testing"""
devices = list(map(Device, devices))
old_ctap1 = asyncssh.sk.Ctap1
old_ctap2 = asyncssh.sk.Ctap2
old_windows_client = asyncssh.sk.WindowsClient
old_use_webauthn = asyncssh.sk.sk_use_webauthn
old_client_pin = asyncssh.sk.ClientPin
old_cred_mgmt = asyncssh.sk.CredentialManagement
old_pin_proto = asyncssh.sk.PinProtocolV1
old_list_devices = asyncssh.sk.CtapHidDevice.list_devices
asyncssh.sk.Ctap1 = Ctap1
asyncssh.sk.Ctap2 = Ctap2
asyncssh.sk.WindowsClient = WindowsClient
asyncssh.sk.sk_use_webauthn = use_webauthn
asyncssh.sk_ecdsa.sk_use_webauthn = use_webauthn
asyncssh.sk.ClientPin = ClientPin
asyncssh.sk.CredentialManagement = CredentialManagement
asyncssh.sk.PinProtocolV1 = PinProtocolV1
asyncssh.sk.CtapHidDevice.list_devices = lambda: iter(devices)
return old_ctap1, old_ctap2, old_windows_client, old_use_webauthn, \
old_client_pin, old_cred_mgmt, old_pin_proto, old_list_devices
def unstub_sk(old_ctap1, old_ctap2, old_windows_client, old_use_webauthn,
old_client_pin, old_cred_mgmt, old_pin_proto, old_list_devices):
"""Restore security key module functions"""
asyncssh.sk.Ctap1 = old_ctap1
asyncssh.sk.Ctap2 = old_ctap2
asyncssh.sk.WindowsClient = old_windows_client
asyncssh.sk.sk_use_webauthn = old_use_webauthn
asyncssh.sk_ecdsa.sk_use_webauthn = old_use_webauthn
asyncssh.sk.ClientPin = old_client_pin
asyncssh.sk.CredentialManagement = old_cred_mgmt
asyncssh.sk.PinProtocolV1 = old_pin_proto
asyncssh.sk.CtapHidDevice.list_devices = old_list_devices
@contextmanager
def patch_sk(devices):
"""Context manager to stub out security key functions"""
old_sk_hooks = stub_sk(devices)
try:
yield
finally:
unstub_sk(*old_sk_hooks)
@contextmanager
def sk_error(err):
"""Set security key error condition"""
try:
for dev in asyncssh.sk.CtapHidDevice.list_devices():
dev.error = err
yield
finally:
for dev in asyncssh.sk.CtapHidDevice.list_devices():
dev.error = None
|