/usr/lib/python2.7/dist-packages/pivman/piv.py is in yubikey-piv-manager 1.0.2-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | # Copyright (c) 2014 Yubico AB
# All rights reserved.
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
# Additional permission under GNU GPL version 3 section 7
#
# If you modify this program, or any covered work, by linking or
# combining it with the OpenSSL project's OpenSSL library (or a
# modified version of that library), containing parts covered by the
# terms of the OpenSSL or SSLeay licenses, We grant you additional
# permission to convey the resulting work. Corresponding Source for a
# non-source form of such a combination shall include the source code
# for the parts of OpenSSL used as well as that of the covered work.
from pivman.libykpiv import *
from pivman.piv_cmd import YkPivCmd
from pivman import messages as m
from pivman.utils import der_read
from ctypes import (POINTER, byref, create_string_buffer, sizeof, c_ubyte,
c_size_t, c_int)
import re
libversion = ykpiv_check_version(None)
class DeviceGoneError(Exception):
def __init__(self):
super(DeviceGoneError, self).__init__(m.communication_error)
class PivError(Exception):
def __init__(self, code):
message = ykpiv_strerror(code)
super(PivError, self).__init__(code, message)
self.code = code
self.message = message
def __str__(self):
return m.ykpiv_error_2 % (self.code, self.message)
class WrongPinError(ValueError):
m_tries_1 = m.wrong_pin_tries_1
m_blocked = m.pin_blocked
def __init__(self, tries):
super(WrongPinError, self).__init__(self.m_tries_1 % tries
if tries > 0 else self.m_blocked)
self.tries = tries
@property
def blocked(self):
return self.tries == 0
class WrongPukError(WrongPinError):
m_tries_1 = m.wrong_puk_tries_1
m_blocked = m.puk_blocked
def check(rc):
if rc == YKPIV_PCSC_ERROR:
raise DeviceGoneError()
elif rc != YKPIV_OK:
raise PivError(rc)
def wrap_puk_error(error):
match = TRIES_PATTERN.search(error.message)
if match:
raise WrongPukError(int(match.group(1)))
raise WrongPukError(0)
KEY_LEN = 24
DEFAULT_KEY = '010203040506070801020304050607080102030405060708'.decode('hex')
CERT_SLOTS = {
'9a': YKPIV_OBJ_AUTHENTICATION,
'9c': YKPIV_OBJ_SIGNATURE,
'9d': YKPIV_OBJ_KEY_MANAGEMENT,
'9e': YKPIV_OBJ_CARD_AUTH
}
ATTR_NAME = 'name'
TRIES_PATTERN = re.compile(r'now (\d+) tries')
class YkPiv(object):
def __init__(self, verbosity=0, reader=None):
self._cmd = YkPivCmd(verbosity=verbosity, reader=reader)
self._state = POINTER(ykpiv_state)()
if not reader:
reader = 'Yubikey'
self._chuid = None
self._pin_blocked = False
self._verbosity = verbosity
self._reader = reader
self._certs = {}
self._connect()
self._read_status()
if not self.chuid:
try:
self.set_chuid()
except ValueError:
pass # Not autheniticated, perhaps?
def _connect(self):
check(ykpiv_init(byref(self._state), self._verbosity))
check(ykpiv_connect(self._state, self._reader))
self._read_version()
self._read_chuid()
def _read_status(self):
try:
data = self._cmd.run('-a', 'status')
lines = data.splitlines()
chunk = []
while lines:
line = lines.pop(0)
if chunk and not line.startswith('\t'):
self._parse_status(chunk)
chunk = []
chunk.append(line)
if chunk:
self._parse_status(chunk)
self._status = data
finally:
self._reset()
def _parse_status(self, chunk):
parts, rest = chunk[0].split(), chunk[1:]
if parts[0] == 'Slot' and rest:
self._parse_slot(parts[1][:-1], rest)
elif parts[0] == 'PIN':
self._pin_blocked = parts[-1] == '0'
def _parse_slot(self, slot, lines):
self._certs[slot] = dict(l.strip().split(':\t', 1) for l in lines)
def _read_version(self):
v = create_string_buffer(10)
check(ykpiv_get_version(self._state, v, sizeof(v)))
self._version = v.value
def _read_chuid(self):
try:
chuid_data = self.fetch_object(YKPIV_OBJ_CHUID)[29:29 + 16]
self._chuid = chuid_data.encode('hex')
except PivError: # No chuid set?
self._chuid = None
def __del__(self):
check(ykpiv_done(self._state))
def _reset(self):
self.__del__()
self._connect()
args = self._cmd._base_args
if '-P' in args:
self.verify_pin(args[args.index('-P') + 1])
if '-k' in args:
self.authenticate(args[args.index('-k') + 1].decode('hex'))
@property
def version(self):
return self._version
@property
def chuid(self):
return self._chuid
@property
def pin_blocked(self):
return self._pin_blocked
@property
def certs(self):
return dict(self._certs)
def set_chuid(self):
try:
self._cmd.run('-a', 'set-chuid')
finally:
self._reset()
def authenticate(self, key=None):
if key is None:
key = DEFAULT_KEY
elif len(key) != KEY_LEN:
raise ValueError('Key must be %d bytes' % KEY_LEN)
c_key = (c_ubyte * KEY_LEN).from_buffer_copy(key)
check(ykpiv_authenticate(self._state, c_key))
self._cmd.set_arg('-k', key.encode('hex'))
if not self.chuid:
self.set_chuid()
def set_authentication(self, key):
if len(key) != KEY_LEN:
raise ValueError('Key must be %d bytes' % KEY_LEN)
c_key = (c_ubyte * len(key)).from_buffer_copy(key)
check(ykpiv_set_mgmkey(self._state, c_key))
self._cmd.set_arg('-k', key.encode('hex'))
def verify_pin(self, pin):
if isinstance(pin, unicode):
pin = pin.encode('utf8')
buf = create_string_buffer(pin)
tries = c_int(-1)
rc = ykpiv_verify(self._state, buf, byref(tries))
if rc == YKPIV_WRONG_PIN:
if tries.value == 0:
self._pin_blocked = True
self._cmd.set_arg('-P', None)
raise WrongPinError(tries.value)
check(rc)
self._cmd.set_arg('-P', pin)
def set_pin(self, pin):
if isinstance(pin, unicode):
pin = pin.encode('utf8')
if len(pin) > 8:
raise ValueError(m.pin_too_long)
try:
self._cmd.change_pin(pin)
finally:
self._reset()
def reset_pin(self, puk, new_pin):
if isinstance(new_pin, unicode):
new_pin = new_pin.encode('utf8')
if len(new_pin) > 8:
raise ValueError(m.pin_too_long)
if isinstance(puk, unicode):
puk = puk.encode('utf8')
try:
self._cmd.reset_pin(puk, new_pin)
except ValueError as e:
wrap_puk_error(e)
finally:
self._reset()
self._read_status()
def set_puk(self, puk, new_puk):
if isinstance(puk, unicode):
puk = puk.encode('utf8')
if isinstance(new_puk, unicode):
new_puk = new_puk.encode('utf8')
if len(new_puk) > 8:
raise ValueError(m.puk_too_long)
try:
self._cmd.change_puk(puk, new_puk)
except ValueError as e:
wrap_puk_error(e)
finally:
self._reset()
def reset_device(self):
try:
self._cmd.run('-a', 'reset')
finally:
del self._cmd
def fetch_object(self, object_id):
buf = (c_ubyte * 4096)()
buf_len = c_size_t(sizeof(buf))
check(ykpiv_fetch_object(self._state, object_id, buf, byref(buf_len)))
return ''.join(map(chr, buf[:buf_len.value]))
def save_object(self, object_id, data):
c_data = (c_ubyte * len(data)).from_buffer_copy(data)
check(ykpiv_save_object(self._state, object_id, c_data, len(data)))
def generate(self, slot, algorithm):
try:
return self._cmd.generate(slot, algorithm)
finally:
self._reset()
def create_csr(self, subject, pubkey_pem, slot):
try:
return self._cmd.create_csr(subject, pubkey_pem, slot)
finally:
self._reset()
def create_selfsigned_cert(self, subject, pubkey_pem, slot):
try:
return self._cmd.create_ssc(subject, pubkey_pem, slot)
finally:
self._reset()
def import_cert(self, cert_pem, slot, frmt='PEM', password=None):
try:
return self._cmd.import_cert(cert_pem, slot, frmt, password)
finally:
self._reset()
self._read_status()
def import_key(self, cert_pem, slot, frmt='PEM', password=None):
try:
return self._cmd.import_key(cert_pem, slot, frmt, password)
finally:
self._reset()
def sign_data(self, slot, hashed, algorithm=YKPIV_ALGO_RSA2048):
c_hashed = (c_ubyte * len(hashed)).from_buffer_copy(hashed)
buf = (c_ubyte * 4096)()
buf_len = c_size_t(sizeof(buf))
check(ykpiv_sign_data(self._state, c_hashed, len(hashed), buf,
byref(buf_len), algorithm, int(slot, 16)))
return ''.join(map(chr, buf[:buf_len.value]))
def read_cert(self, slot):
try:
data = self.fetch_object(CERT_SLOTS[slot])
except PivError:
return None
cert, rest = der_read(data, 0x70)
zipped, rest = der_read(rest, 0x71)
if zipped != chr(0):
pass # TODO: cert is compressed, uncompress.
return cert
def delete_cert(self, slot):
if slot not in self._certs:
raise ValueError('No certificate loaded in slot: %s' % slot)
try:
self._cmd.delete_cert(slot)
del self._certs[slot]
finally:
self._reset()
|