forked from dlenski/openconnect
-
Notifications
You must be signed in to change notification settings - Fork 0
/
yubikey.c
634 lines (559 loc) · 16.5 KB
/
yubikey.c
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
621
622
623
624
625
626
627
628
629
630
631
632
633
634
/*
* OpenConnect (SSL + DTLS) VPN client
*
* Copyright © 2008-2015 Intel Corporation.
*
* Author: David Woodhouse <[email protected]>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public License
* version 2.1, as published by the Free Software Foundation.
*
* 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
* Lesser General Public License for more details.
*/
#include <config.h>
#include <ctype.h>
#include <errno.h>
#include <stdlib.h>
#include <string.h>
#include "openconnect-internal.h"
#define NAME_TAG 0x71
#define NAME_LIST_TAG 0x72
#define KEY_TAG 0x73
#define CHALLENGE_TAG 0x74
#define RESPONSE_TAG 0x75
#define T_RESPONSE_TAG 0x76
#define NO_RESPONSE_TAG 0x77
#define PROPERTY_TAG 0x78
#define VERSION_TAG 0x79
#define IMF_TAG 0x7a
#define PUT_INS 0x01
#define DELETE_INS 0x02
#define SET_CODE_INS 0x03
#define RESET_INS 0x04
#define LIST_INS 0xa1
#define CALCULATE_INS 0xa2
#define VALIDATE_INS 0xa3
#define CALCULATE_ALL_INS 0xa4
#define SEND_REMAINING_INS 0xa5
static const unsigned char appselect[] = { 0x00, 0xa4, 0x04, 0x00, 0x07,
0xa0, 0x00, 0x00, 0x05, 0x27, 0x21, 0x01 };
static const unsigned char list_keys[] = { 0x00, LIST_INS, 0x00, 0x00 };
static const unsigned char send_remaining[] = { 0x00, SEND_REMAINING_INS, 0x00, 0x00 };
#ifdef _WIN32
#define scard_error(st) openconnect__win32_strerror(st)
#define free_scard_error(str) free(str)
#else
#define scard_error(st) pcsc_stringify_error(st)
#define free_scard_error(str) do { ; } while (0)
#endif
static int yubikey_cmd(struct openconnect_info *vpninfo, SCARDHANDLE card, int errlvl,
const char *desc,
const unsigned char *out, size_t outlen, struct oc_text_buf *buf)
{
DWORD status;
buf_truncate(buf);
do {
DWORD respsize = 258;
if (buf_ensure_space(buf, 258))
return -ENOMEM;
status = SCardTransmit (card, SCARD_PCI_T1, out, outlen,
NULL, (unsigned char *)&buf->data[buf->pos], &respsize);
if (status != SCARD_S_SUCCESS) {
char *pcsc_err = scard_error(status);
vpn_progress(vpninfo, errlvl,
_("Failed to send \"%s\" to ykneo-oath applet: %s\n"),
desc, pcsc_err);
free_scard_error(pcsc_err);
return -EIO;
}
if (respsize < 2) {
vpn_progress(vpninfo, errlvl,
_("Invalid short response to \"%s\" from ykneo-oath applet\n"),
desc);
return -EIO;
}
buf->pos += respsize - 2;
/* Continuation */
out = send_remaining;
outlen = sizeof(send_remaining);
} while (buf->data[buf->pos] == 0x61);
status = load_be16(buf->data + buf->pos);
if (status == 0x9000)
return 0;
vpn_progress(vpninfo, errlvl,
_("Failure response to \"%s\": %04x\n"),
desc, (unsigned)status);
switch (status) {
case 0x6a80:
return -EINVAL;
default:
return -EIO;
}
}
static int buf_tlv(struct oc_text_buf *buf, int *loc, unsigned char *type)
{
int len;
int left = buf->pos - *loc;
if (left < 2)
return -EINVAL;
*type = (unsigned char)buf->data[(*loc)++];
len = (unsigned char)buf->data[(*loc)++];
left -= 2;
if (len > 0x82)
return -EINVAL;
else if (len == 0x81) {
if (left < 1)
return -EINVAL;
len = (unsigned char)buf->data[(*loc)++];
left--;
} else if (len == 0x82) {
if (left < 2)
return -EINVAL;
len = (unsigned char)buf->data[(*loc)++];
len <<= 8;
len = (unsigned char)buf->data[(*loc)++];
left -= 2;
}
if (left < len)
return -EINVAL;
return len;
}
static int select_yubioath_applet(struct openconnect_info *vpninfo,
SCARDHANDLE pcsc_card, struct oc_text_buf *buf)
{
int ret, tlvlen, tlvpos, id_len, chall_len;
unsigned char type;
unsigned char applet_id[16], challenge[16];
unsigned char *applet_ver;
char *pin = NULL;
int pin_len = 0;
ret = yubikey_cmd(vpninfo, pcsc_card, PRG_DEBUG, _("select applet command"),
appselect, sizeof(appselect), buf);
if (ret)
return ret;
tlvpos = 0;
tlvlen = buf_tlv(buf, &tlvpos, &type);
if (tlvlen < 0 || type != VERSION_TAG || tlvlen != 3) {
bad_applet:
vpn_progress(vpninfo, PRG_ERR,
_("Unrecognised response from ykneo-oath applet\n"));
return -EIO;
}
applet_ver = (void *)&buf->data[tlvpos];
tlvpos += tlvlen;
tlvlen = buf_tlv(buf, &tlvpos, &type);
if (tlvlen < 0 || type != NAME_TAG || tlvlen > sizeof(applet_id))
goto bad_applet;
memcpy(applet_id, &buf->data[tlvpos], tlvlen);
id_len = tlvlen;
tlvpos += tlvlen;
/* Only print this during the first discovery loop */
if (!vpninfo->pcsc_card)
vpn_progress(vpninfo, PRG_INFO, _("Found ykneo-oath applet v%d.%d.%d.\n"),
applet_ver[0], applet_ver[1], applet_ver[2]);
if (tlvpos != buf->pos) {
unsigned char chalresp[7 + SHA1_SIZE + 10];
tlvlen = buf_tlv(buf, &tlvpos, &type);
if (tlvlen < 0 || type != CHALLENGE_TAG || tlvlen > sizeof(challenge))
goto bad_applet;
memcpy(challenge, &buf->data[tlvpos], tlvlen);
chall_len = tlvlen;
retry:
if (!vpninfo->yubikey_pw_set) {
struct oc_auth_form f;
struct oc_form_opt o;
memset(&f, 0, sizeof(f));
f.auth_id = (char *)"yubikey_oath_pin";
f.opts = &o;
f.message = (char *)_("PIN required for Yubikey OATH applet");
o.next = NULL;
o.type = OC_FORM_OPT_PASSWORD;
o.name = (char *)"yubikey_pin";
o.label = (char *)_("Yubikey PIN:");
o._value = NULL;
ret = process_auth_form(vpninfo, &f);
if (ret)
goto out;
if (!o._value) {
ret = -EPERM;
goto out;
}
if (pin) {
memset(pin, 0, pin_len);
free(pin);
}
pin = o._value;
pin_len = strlen(pin);
/* This *should* be UTF-8 but see the workaround below. */
ret = openconnect_hash_yubikey_password(vpninfo, o._value, pin_len,
applet_id, id_len);
if (ret)
goto out;
vpninfo->yubikey_pw_set = 1;
}
if (openconnect_yubikey_chalresp(vpninfo, &challenge, chall_len,
chalresp + 7)) {
vpn_progress(vpninfo, PRG_ERR,
_("Failed to calculate Yubikey unlock response\n"));
ret = -EIO;
goto out;
}
chalresp[0] = 0;
chalresp[1] = VALIDATE_INS;
chalresp[2] = 0;
chalresp[3] = 0;
chalresp[4] = sizeof(chalresp) - 5;
chalresp[5] = RESPONSE_TAG;
chalresp[6] = SHA1_SIZE;
/* Response is already filled in */
chalresp[7 + SHA1_SIZE] = CHALLENGE_TAG;
chalresp[8 + SHA1_SIZE] = 8;
memset(chalresp + 9 + SHA1_SIZE, 0xff, 8);
ret = yubikey_cmd(vpninfo, pcsc_card, PRG_ERR, _("unlock command"),
chalresp, sizeof(chalresp), buf);
if (ret == -EINVAL) {
memset(vpninfo->yubikey_pwhash, 0, sizeof(vpninfo->yubikey_pwhash));
vpninfo->yubikey_pw_set = 0;
if (pin) {
/* Try working around pre-KitKat PBKDF2 bug discussed at
* http://forum.yubico.com/viewtopic.php?f=26&t=1601#p6807 and
* http://android-developers.blogspot.se/2013/12/changes-to-secretkeyfactory-api-in.html */
const char *in;
char *out;
/* Convert the UTF-8 PIN to byte-truncated form in-place */
in = out = pin;
while (*in) {
int c = get_utf8char(&in);
if (c < 0) {
/* Screw it. Break out of the loop in such a fashion
* that we don't try the 'converted' result. */
in = out;
break;
}
*(out++) = c;
}
/* If out == in then the string only contained ASCII so
* there was no conversion to be done (or was invalid
* UTF-8 and hit the error case above). So don't try. */
if (out != in &&
!openconnect_hash_yubikey_password(vpninfo, pin, out - pin,
applet_id, id_len)) {
/* We'll have printed with PRG_ERR when the proper
* encoding failed. So use PRG_ERR here too. */
vpn_progress(vpninfo, PRG_ERR,
_("Trying truncated-char PBKBF2 variant of Yubikey PIN\n"));
vpninfo->yubikey_pw_set = 1;
}
}
goto retry;
}
}
out:
if (pin) {
memset(pin, 0, pin_len);
free(pin);
}
return ret;
}
#ifdef _WIN32
#define reader_len wcslen
#else
#define SCardListReadersW SCardListReaders
#define SCardConnectW SCardConnect
#define reader_len strlen
#endif
int set_yubikey_mode(struct openconnect_info *vpninfo, const char *token_str)
{
SCARDHANDLE pcsc_ctx, pcsc_card;
LONG status;
#ifdef _WIN32
wchar_t *readers = NULL, *reader;
#else
char *readers = NULL, *reader;
#endif
DWORD readers_size, proto;
int ret, tlvlen, tlvpos;
struct oc_text_buf *buf = NULL;
status = SCardEstablishContext(SCARD_SCOPE_USER, NULL, NULL, &pcsc_ctx);
if (status != SCARD_S_SUCCESS) {
char *pcsc_err = scard_error(status);
vpn_progress(vpninfo, PRG_ERR, _("Failed to establish PC/SC context: %s\n"),
pcsc_err);
free_scard_error(pcsc_err);
return -EIO;
}
vpn_progress(vpninfo, PRG_TRACE, _("Established PC/SC context\n"));
ret = -ENOENT;
status = SCardListReadersW(pcsc_ctx, NULL, NULL, &readers_size);
if (status != SCARD_S_SUCCESS) {
char *pcsc_err = scard_error(status);
vpn_progress(vpninfo, PRG_ERR, _("Failed to query reader list: %s\n"),
pcsc_err);
free_scard_error(pcsc_err);
goto out_ctx;
}
readers = calloc(readers_size, sizeof(readers[0]));
if (!readers)
goto out_ctx;
status = SCardListReadersW(pcsc_ctx, NULL, readers, &readers_size);
if (status != SCARD_S_SUCCESS) {
char *pcsc_err = scard_error(status);
vpn_progress(vpninfo, PRG_ERR, _("Failed to query reader list: %s\n"),
pcsc_err);
free_scard_error(pcsc_err);
goto out_ctx;
}
buf = buf_alloc();
reader = readers;
while (reader[0]) {
unsigned char type;
#ifdef _WIN32
char *reader_utf8;
int reader_len;
reader_len = WideCharToMultiByte(CP_UTF8, 0, reader, -1, NULL, 0, NULL, NULL);
reader_utf8 = malloc(reader_len);
if (!reader_utf8)
goto next_reader;
WideCharToMultiByte(CP_UTF8, 0, reader, -1, reader_utf8, reader_len, NULL, NULL);
#else
#define reader_utf8 reader
#endif
status = SCardConnectW(pcsc_ctx, reader, SCARD_SHARE_SHARED,
SCARD_PROTOCOL_T1,
&pcsc_card, &proto);
if (status != SCARD_S_SUCCESS) {
char *pcsc_err = scard_error(status);
vpn_progress(vpninfo, PRG_ERR, _("Failed to connect to PC/SC reader '%s': %s\n"),
reader_utf8, pcsc_err);
free_scard_error(pcsc_err);
goto free_reader_utf8;
}
vpn_progress(vpninfo, PRG_TRACE, _("Connected PC/SC reader '%s'\n"), reader_utf8);
status = SCardBeginTransaction(pcsc_card);
if (status != SCARD_S_SUCCESS) {
char *pcsc_err = scard_error(status);
vpn_progress(vpninfo, PRG_ERR, _("Failed to obtain exclusive access to reader '%s': %s\n"),
reader_utf8, pcsc_err);
free_scard_error(pcsc_err);
goto disconnect;
}
ret = select_yubioath_applet(vpninfo, pcsc_card, buf);
if (ret)
goto end_trans;
ret = yubikey_cmd(vpninfo, pcsc_card, PRG_ERR, _("list keys command"), list_keys, sizeof(list_keys), buf);
if (ret)
goto end_trans;
tlvpos = 0;
while (tlvpos < buf->pos) {
unsigned char mode, hash;
tlvlen = buf_tlv(buf, &tlvpos, &type);
if (type != NAME_LIST_TAG || tlvlen < 1) {
bad_applet:
vpn_progress(vpninfo, PRG_ERR,
_("Unrecognised response from ykneo-oath applet\n"));
goto end_trans;
}
mode = buf->data[tlvpos] & 0xf0;
hash = buf->data[tlvpos] & 0x0f;
if (mode != 0x10 && mode != 0x20)
goto bad_applet;
if (hash != 0x01 && hash != 0x02)
goto bad_applet;
if (!token_str ||
((tlvlen - 1 == strlen(token_str)) && !memcmp(token_str, &buf->data[tlvpos+1], tlvlen-1))) {
vpninfo->yubikey_objname = strndup(&buf->data[tlvpos+1], tlvlen-1);
if (!vpninfo->yubikey_objname) {
ret = -ENOMEM;
SCardEndTransaction(pcsc_card, SCARD_LEAVE_CARD);
SCardDisconnect(pcsc_card, SCARD_LEAVE_CARD);
goto out_ctx;
}
/* Translators: This is filled in with mode and hash type, and the key identifier.
e.g. "Found HOTP/SHA1 key: 'Work VPN key'\n" */
vpn_progress(vpninfo, PRG_INFO, _("Found %s/%s key '%s' on '%s'\n"),
(mode == 0x20) ? "TOTP" : "HOTP",
(hash == 0x2) ? "SHA256" : "SHA1",
vpninfo->yubikey_objname, reader_utf8);
vpninfo->yubikey_mode = mode;
vpninfo->pcsc_ctx = pcsc_ctx;
vpninfo->pcsc_card = pcsc_card;
vpninfo->token_mode = OC_TOKEN_MODE_YUBIOATH;
SCardEndTransaction(pcsc_card, SCARD_LEAVE_CARD);
goto success;
}
tlvpos += tlvlen;
}
if (token_str) {
vpn_progress(vpninfo, PRG_ERR,
_("Token '%s' not found on Yubikey '%s'. Searching for another Yubikey...\n"),
token_str, reader_utf8);
}
end_trans:
SCardEndTransaction(pcsc_card, SCARD_LEAVE_CARD);
disconnect:
SCardDisconnect(pcsc_card, SCARD_LEAVE_CARD);
free_reader_utf8:
#ifdef _WIN32
free(reader_utf8);
next_reader:
#endif
while (*reader)
reader++;
reader++;
}
ret = -ENOENT;
out_ctx:
SCardReleaseContext(pcsc_ctx);
success:
free(readers);
buf_free(buf);
return ret;
}
/* Return value:
* < 0, if unable to generate a tokencode
* = 0, on success
*/
int can_gen_yubikey_code(struct openconnect_info *vpninfo,
struct oc_auth_form *form,
struct oc_form_opt *opt)
{
if ((strcmp(opt->name, "secondary_password") != 0) ||
vpninfo->token_bypassed)
return -EINVAL;
if (vpninfo->token_tries == 0) {
vpn_progress(vpninfo, PRG_DEBUG,
_("OK to generate INITIAL tokencode\n"));
vpninfo->token_time = 0;
} else if (vpninfo->token_tries == 1) {
vpn_progress(vpninfo, PRG_DEBUG,
_("OK to generate NEXT tokencode\n"));
vpninfo->token_time += 30;
} else {
/* limit the number of retries, to avoid account lockouts */
vpn_progress(vpninfo, PRG_INFO,
_("Server is rejecting the Yubikey token; switching to manual entry\n"));
return -ENOENT;
}
return 0;
}
static int tlvlen_len(int tlvlen)
{
if (tlvlen < 0x80)
return 1;
else if (tlvlen < 0x100)
return 2;
else
return 3;
}
static int append_tlvlen(unsigned char *p, int tlvlen)
{
if (tlvlen < 0x80) {
if (p)
p[0] = tlvlen;
return 1;
} else if (tlvlen < 0x100) {
if (p) {
p[0] = 0x81;
p[1] = tlvlen;
}
return 2;
} else {
if (p) {
p[0] = 0x82;
store_be16(p + 1, tlvlen);
}
return 3;
}
}
int do_gen_yubikey_code(struct openconnect_info *vpninfo,
struct oc_auth_form *form,
struct oc_form_opt *opt)
{
struct oc_text_buf *respbuf = NULL;
DWORD status;
int name_len = strlen(vpninfo->yubikey_objname);
int name_tlvlen;
int calc_tlvlen;
unsigned char *reqbuf = NULL;
int tokval;
int i = 0;
int ret;
if (!vpninfo->token_time)
vpninfo->token_time = time(NULL);
vpn_progress(vpninfo, PRG_INFO, _("Generating Yubikey token code\n"));
status = SCardBeginTransaction(vpninfo->pcsc_card);
if (status != SCARD_S_SUCCESS) {
char *pcsc_err = scard_error(status);
vpn_progress(vpninfo, PRG_ERR, _("Failed to obtain exclusive access to Yubikey: %s\n"),
pcsc_err);
free_scard_error(pcsc_err);
return -EIO;
}
respbuf = buf_alloc();
ret = select_yubioath_applet(vpninfo, vpninfo->pcsc_card, respbuf);
if (ret)
goto out;
name_tlvlen = tlvlen_len(strlen(vpninfo->yubikey_objname));
calc_tlvlen = 1 /* NAME_TAG */ + name_tlvlen + name_len +
1 /* CHALLENGE_TAG */ + 1 /* Challenge TLV len */;
if (vpninfo->yubikey_mode == 0x20)
calc_tlvlen += 8; /* TOTP needs the time as challenge */
reqbuf = malloc(4 + tlvlen_len(calc_tlvlen) + calc_tlvlen);
if (!reqbuf)
goto out;
reqbuf[i++] = 0;
reqbuf[i++] = CALCULATE_INS;
reqbuf[i++] = 0;
reqbuf[i++] = 1;
i += append_tlvlen(reqbuf + i, calc_tlvlen);
reqbuf[i++] = NAME_TAG;
i += append_tlvlen(reqbuf + i, name_len);
memcpy(reqbuf + i, vpninfo->yubikey_objname, name_len);
i += name_len;
reqbuf[i++] = CHALLENGE_TAG;
if (vpninfo->yubikey_mode == 0x20) {
long token_steps = vpninfo->token_time / 30;
reqbuf[i++] = 8;
reqbuf[i++] = 0;
reqbuf[i++] = 0;
reqbuf[i++] = 0;
reqbuf[i++] = 0;
store_be32(reqbuf + i, token_steps);
i += 4;
} else {
reqbuf[i++] = 0; /* HOTP mode, zero-length challenge */
}
ret = yubikey_cmd(vpninfo, vpninfo->pcsc_card, PRG_ERR, _("calculate command"),
reqbuf, i, respbuf);
if (ret)
goto out;
if (respbuf->pos != 7 || (unsigned char)respbuf->data[0] != T_RESPONSE_TAG ||
respbuf->data[1] != 5 || respbuf->data[2] > 8 || respbuf->data[2] < 6) {
vpn_progress(vpninfo, PRG_ERR,
_("Unrecognised response from Yubikey when generating tokencode\n"));
ret = -EIO;
goto out;
}
tokval = load_be32(respbuf->data + 3);
opt->_value = malloc(respbuf->data[2] + 1);
if (!opt->_value) {
ret = -ENOMEM;
goto out;
}
i = respbuf->data[2];
opt->_value[i] = 0;
while (i--) {
opt->_value[i] = '0' + tokval % 10;
tokval /= 10;
}
vpninfo->token_tries++;
out:
SCardEndTransaction(vpninfo->pcsc_card, SCARD_LEAVE_CARD);
buf_free(respbuf);
free(reqbuf);
return ret;
}