Skip to content

Latest commit

 

History

History
586 lines (518 loc) · 13.9 KB

oath.c

File metadata and controls

586 lines (518 loc) · 13.9 KB
 
Aug 13, 2014
Aug 13, 2014
1
2
3
/*
* OpenConnect (SSL + DTLS) VPN client
*
Jan 26, 2015
Jan 26, 2015
4
* Copyright © 2008-2015 Intel Corporation.
Aug 13, 2014
Aug 13, 2014
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
* Copyright © 2013 John Morrissey <jwm@horde.net>
* Author: David Woodhouse <dwmw2@infradead.org>
*
* 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"
Jan 30, 2015
Jan 30, 2015
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
static int b32_char(char in)
{
if (in >= 'A' && in <= 'Z')
return in - 'A';
if (in >= 'a' && in <= 'z')
return in - 'a';
if (in >= '2' && in <= '7')
return in - '2' + 26;
if (in == '=')
return -2;
return -1;
}
static int decode_b32_group(unsigned char *out, const char *in)
{
uint32_t d = 0;
int c, i, len;
for (i = 0; i < 8; i++) {
c = b32_char(in[i]);
if (c == -1)
return -EINVAL;
if (c == -2)
break;
d <<= 5;
d |= c;
/* Write the top bits before they disappear off the top
of 'd' which is only a uint32_t */
if (i == 1)
out[0] = d >> 2;
}
len = i;
if (i < 8) {
d <<= 5 * (8 - i);
while (++i < 8) {
if (in[i] != '=')
return -EINVAL;
}
}
store_be32(out + 1, d);
switch(len) {
case 8:
return 5;
case 7:
return 4;
case 5:
return 3;
case 4:
return 2;
case 2:
return 1;
default:
return -EINVAL;
}
}
static int decode_base32(struct openconnect_info *vpninfo, const char *b32, int len)
{
unsigned char *output = NULL;
int inpos, outpos;
int outlen;
int ret;
if (len % 8) {
invalid:
vpn_progress(vpninfo, PRG_ERR,
_("Invalid base32 token string\n"));
free(output);
return -EINVAL;
}
outlen = len / 8 * 5;
output = malloc(outlen);
if (!output) {
vpn_progress(vpninfo, PRG_ERR,
_("Failed to allocate memory to decode OATH secret\n"));
return -ENOMEM;
}
outpos = inpos = 0;
while (inpos < len) {
ret = decode_b32_group(output + outpos, b32 + inpos);
if (ret < 0)
goto invalid;
inpos += 8;
if (ret != 5 && inpos != len)
goto invalid;
outpos += ret;
}
vpninfo->oath_secret = (void *)output;
vpninfo->oath_secret_len = outpos;
return 0;
}
Aug 13, 2014
Aug 13, 2014
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
static char *parse_hex(const char *tok, int len)
{
unsigned char *data, *p;
data = malloc((len + 1) / 2);
if (!data)
return NULL;
p = data;
if (len & 1) {
char b[2] = { '0', tok[0] };
if (!isxdigit((int)(unsigned char)tok[0])) {
free(data);
return NULL;
}
*(p++) = unhex(b);
tok++;
len--;
}
while (len) {
if (!isxdigit((int)(unsigned char)tok[0]) ||
!isxdigit((int)(unsigned char)tok[1])) {
free(data);
return NULL;
}
*(p++) = unhex(tok);
tok += 2;
len -= 2;
}
return (char *)data;
}
static int pskc_decode(struct openconnect_info *vpninfo, const char *token_str,
int toklen, int mode)
{
#ifdef HAVE_LIBPSKC
pskc_t *container;
pskc_key_t *key;
const char *key_algo;
const char *want_algo;
size_t klen;
if (pskc_global_init())
return -EIO;
if (pskc_init(&container))
return -ENOMEM;
if (pskc_parse_from_memory(container, toklen, token_str))
return -EINVAL;
key = pskc_get_keypackage(container, 0);
if (!key) {
pskc_done(container);
return -EINVAL;
}
if (mode == OC_TOKEN_MODE_HOTP)
want_algo = "urn:ietf:params:xml:ns:keyprov:pskc:hotp";
else
want_algo = "urn:ietf:params:xml:ns:keyprov:pskc:totp";
key_algo = pskc_get_key_algorithm(key);
if (!key_algo || strcmp(key_algo, want_algo)) {
pskc_done(container);
return -EINVAL;
}
vpninfo->oath_secret = (char *)pskc_get_key_data_secret(key, &klen);
vpninfo->oath_secret_len = klen;
if (!vpninfo->oath_secret) {
pskc_done(container);
return -EINVAL;
}
vpninfo->token_time = pskc_get_key_data_counter(key, NULL);
vpninfo->pskc = container;
vpninfo->pskc_key = key;
return 0;
#else /* !HAVE_LIBPSKC */
vpn_progress(vpninfo, PRG_ERR,
_("This version of OpenConnect was built without PSKC support\n"));
return -EINVAL;
#endif /* HAVE_LIBPSKC */
}
int set_totp_mode(struct openconnect_info *vpninfo, const char *token_str)
{
int ret, toklen;
if (!token_str)
return -EINVAL;
toklen = strlen(token_str);
while (toklen && isspace((int)(unsigned char)token_str[toklen-1]))
toklen--;
if (strncmp(token_str, "<?xml", 5) == 0) {
vpninfo->hotp_secret_format = HOTP_SECRET_PSKC;
ret = pskc_decode(vpninfo, token_str, toklen, OC_TOKEN_MODE_TOTP);
if (ret)
return -EINVAL;
Jan 30, 2015
Jan 30, 2015
229
230
231
232
233
vpninfo->token_mode = OC_TOKEN_MODE_TOTP;
return 0;
}
if (!strncasecmp(token_str, "sha1:", 5)) {
token_str += 5;
Jan 30, 2015
Jan 30, 2015
234
toklen -= 5;
Jan 30, 2015
Jan 30, 2015
235
236
237
vpninfo->oath_hmac_alg = OATH_ALG_HMAC_SHA1;
} else if (!strncasecmp(token_str, "sha256:", 7)) {
token_str += 7;
Jan 30, 2015
Jan 30, 2015
238
toklen -= 7;
Jan 30, 2015
Jan 30, 2015
239
240
241
vpninfo->oath_hmac_alg = OATH_ALG_HMAC_SHA256;
} else if (!strncasecmp(token_str, "sha512:", 7)) {
token_str += 7;
Jan 30, 2015
Jan 30, 2015
242
toklen -= 7;
Jan 30, 2015
Jan 30, 2015
243
vpninfo->oath_hmac_alg = OATH_ALG_HMAC_SHA512;
Jan 30, 2015
Jan 30, 2015
244
245
246
247
} else
vpninfo->oath_hmac_alg = OATH_ALG_HMAC_SHA1;
if (strncasecmp(token_str, "base32:", strlen("base32:")) == 0) {
Jan 30, 2015
Jan 30, 2015
248
249
250
251
ret = decode_base32(vpninfo, token_str + strlen("base32:"),
toklen - strlen("base32:"));
if (ret)
return ret;
Aug 13, 2014
Aug 13, 2014
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
} else if (strncmp(token_str, "0x", 2) == 0) {
vpninfo->oath_secret_len = (toklen - 2) / 2;
vpninfo->oath_secret = parse_hex(token_str + 2, toklen - 2);
if (!vpninfo->oath_secret)
return -EINVAL;
} else {
vpninfo->oath_secret = strdup(token_str);
vpninfo->oath_secret_len = toklen;
}
vpninfo->token_mode = OC_TOKEN_MODE_TOTP;
return 0;
}
int set_hotp_mode(struct openconnect_info *vpninfo, const char *token_str)
{
int ret, toklen;
char *p;
if (!token_str)
return -EINVAL;
toklen = strlen(token_str);
if (strncmp(token_str, "<?xml", 5) == 0) {
vpninfo->hotp_secret_format = HOTP_SECRET_PSKC;
ret = pskc_decode(vpninfo, token_str, toklen, OC_TOKEN_MODE_HOTP);
if (ret)
return -EINVAL;
vpninfo->token_mode = OC_TOKEN_MODE_HOTP;
return 0;
}
Jan 30, 2015
Jan 30, 2015
284
285
286
if (!strncasecmp(token_str, "sha1:", 5)) {
token_str += 5;
Jan 30, 2015
Jan 30, 2015
287
toklen -= 5;
Jan 30, 2015
Jan 30, 2015
288
289
290
vpninfo->oath_hmac_alg = OATH_ALG_HMAC_SHA1;
} else if (!strncasecmp(token_str, "sha256:", 7)) {
token_str += 7;
Jan 30, 2015
Jan 30, 2015
291
toklen -= 7;
Jan 30, 2015
Jan 30, 2015
292
293
vpninfo->oath_hmac_alg = OATH_ALG_HMAC_SHA256;
} else if (!strncasecmp(token_str, "sha512:", 7)) {
Jan 30, 2015
Jan 30, 2015
294
toklen -= 7;
Jan 30, 2015
Jan 30, 2015
295
token_str += 7;
Jan 30, 2015
Jan 30, 2015
296
vpninfo->oath_hmac_alg = OATH_ALG_HMAC_SHA512;
Jan 30, 2015
Jan 30, 2015
297
298
299
} else
vpninfo->oath_hmac_alg = OATH_ALG_HMAC_SHA1;
Aug 13, 2014
Aug 13, 2014
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
p = strrchr(token_str, ',');
if (p) {
long counter;
toklen = p - token_str;
p++;
counter = strtol(p, &p, 0);
if (counter < 0)
return -EINVAL;
while (*p) {
if (isspace((int)(unsigned char)*p))
p++;
else
return -EINVAL;
}
vpninfo->token_time = counter;
} else {
while (toklen &&
isspace((int)(unsigned char)token_str[toklen-1]))
toklen--;
}
if (strncasecmp(token_str, "base32:", strlen("base32:")) == 0) {
vpninfo->hotp_secret_format = HOTP_SECRET_BASE32;
Jan 30, 2015
Jan 30, 2015
323
324
325
326
ret = decode_base32(vpninfo, token_str + strlen("base32:"),
toklen - strlen("base32:"));
if (ret)
return ret;
Aug 13, 2014
Aug 13, 2014
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
} else if (strncmp(token_str, "0x", 2) == 0) {
vpninfo->hotp_secret_format = HOTP_SECRET_HEX;
vpninfo->oath_secret_len = (toklen - 2) / 2;
vpninfo->oath_secret = parse_hex(token_str + 2, toklen - 2);
if (!vpninfo->oath_secret)
return -EINVAL;
} else {
vpninfo->hotp_secret_format = HOTP_SECRET_RAW;
vpninfo->oath_secret = strdup(token_str);
vpninfo->oath_secret_len = toklen;
}
vpninfo->token_mode = OC_TOKEN_MODE_HOTP;
return 0;
}
/* Return value:
* < 0, if unable to generate a tokencode
* = 0, on success
*/
int can_gen_totp_code(struct openconnect_info *vpninfo,
struct oc_auth_form *form,
struct oc_form_opt *opt)
{
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"));
Jan 30, 2015
Jan 30, 2015
358
vpninfo->token_time += 30;
Aug 13, 2014
Aug 13, 2014
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
} else {
/* limit the number of retries, to avoid account lockouts */
vpn_progress(vpninfo, PRG_INFO,
_("Server is rejecting the soft token; switching to manual entry\n"));
return -ENOENT;
}
return 0;
}
/* Return value:
* < 0, if unable to generate a tokencode
* = 0, on success
*/
int can_gen_hotp_code(struct openconnect_info *vpninfo,
struct oc_auth_form *form,
struct oc_form_opt *opt)
{
if (vpninfo->token_tries == 0) {
vpn_progress(vpninfo, PRG_DEBUG,
_("OK to generate INITIAL tokencode\n"));
} else if (vpninfo->token_tries == 1) {
vpn_progress(vpninfo, PRG_DEBUG,
_("OK to generate NEXT tokencode\n"));
} else {
/* limit the number of retries, to avoid account lockouts */
vpn_progress(vpninfo, PRG_INFO,
_("Server is rejecting the soft token; switching to manual entry\n"));
return -ENOENT;
}
return 0;
}
Jan 30, 2015
Jan 30, 2015
391
392
393
394
395
396
397
398
399
400
401
402
403
static int gen_hotp(struct openconnect_info *vpninfo, uint64_t data, char *output)
{
uint32_t data_be[2];
int digest;
data_be[0] = htonl(data >> 32);
data_be[1] = htonl(data);
digest = hotp_hmac(vpninfo, data_be);
if (digest < 0)
return digest;
digest %= 1000000;
Jan 30, 2015
Jan 30, 2015
404
snprintf(output, 7, "%06d", digest);
Jan 30, 2015
Jan 30, 2015
405
406
407
408
return 0;
}
Aug 13, 2014
Aug 13, 2014
409
410
411
412
413
int do_gen_totp_code(struct openconnect_info *vpninfo,
struct oc_auth_form *form,
struct oc_form_opt *opt)
{
char tokencode[7];
Jan 30, 2015
Jan 30, 2015
414
uint64_t challenge;
Aug 13, 2014
Aug 13, 2014
415
416
417
418
419
420
if (!vpninfo->token_time)
vpninfo->token_time = time(NULL);
vpn_progress(vpninfo, PRG_INFO, _("Generating OATH TOTP token code\n"));
Jan 30, 2015
Jan 30, 2015
421
422
423
424
/* XXX: Support non-standard start time and step size */
challenge = vpninfo->token_time / 30;
if (gen_hotp(vpninfo, challenge, tokencode))
Aug 13, 2014
Aug 13, 2014
425
426
427
return -EIO;
vpninfo->token_tries++;
Oct 9, 2014
Oct 9, 2014
428
429
opt->_value = strdup(tokencode);
return opt->_value ? 0 : -ENOMEM;
Aug 13, 2014
Aug 13, 2014
430
431
432
433
}
static void buf_append_base32(struct oc_text_buf *buf, void *data, int len)
{
Jan 30, 2015
Jan 30, 2015
434
435
436
437
438
static const char alphabet[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZ234567";
unsigned char *bytes = data;
int i, j, b32_len = ((len + 4) / 5) * 8;
uint32_t d;
char b32[8];
Aug 13, 2014
Aug 13, 2014
439
Jan 30, 2015
Jan 30, 2015
440
if (buf_ensure_space(buf, b32_len + 1))
Aug 13, 2014
Aug 13, 2014
441
return;
Jan 30, 2015
Jan 30, 2015
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
for (i = 0; i < (len - 4); i += 5) {
/* Load low 4 input bytes into 'd' */
d = load_be32(&bytes[i + 1]);
/* Loop backwardd over output group, emitting low
* 5 bits of 'd' each time and shifting. */
for (j = 7; j >= 0; j--) {
b32[j] = alphabet[d & 31];
d >>= 5;
/* Mask in the last input byte when we can fit it */
if (j == 5)
d |= bytes[i] << 17;
}
buf_append_bytes(buf, b32, 8);
}
if (i < len) {
d = 0;
/* This is basically load_be32(bytes + i) but substituting
* zeroes instead of reading off the end. */
for (j = 0; j < 4; j++) {
d <<= 8;
if (i + j < len)
d |= bytes[i + j];
}
/* Now, work out how much '=' padding we need */
memset(b32, '=', 8);
b32_len = (((len - i) * 8) + 4) / 5;
memset(b32 + b32_len, '=', 8 - b32_len);
/* If we need 7 characters of data then put the seventh
* in manually because the LSB of 'd' is actually bit 3
* of the output character. */
if (b32_len == 7) {
b32[6] = alphabet[(d & 3) << 3];
b32_len--;
}
/* Now shift bits into the right place and do the simple
* loop emitting characters from the low 5 bits of 'd'. */
d >>= ((8 - b32_len) * 5) - 8;
for (j = b32_len - 1; j >= 0; j--) {
b32[j] = alphabet[d & 31];
d >>= 5;
}
buf_append_bytes(buf, b32, 8);
Aug 13, 2014
Aug 13, 2014
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
}
}
static char *regen_hotp_secret(struct openconnect_info *vpninfo)
{
char *new_secret = NULL;
struct oc_text_buf *buf;
switch (vpninfo->hotp_secret_format) {
case HOTP_SECRET_BASE32:
buf = buf_alloc();
buf_append(buf, "base32:");
buf_append_base32(buf, vpninfo->oath_secret,
vpninfo->oath_secret_len);
break;
case HOTP_SECRET_HEX:
buf = buf_alloc();
buf_append(buf, "0x");
Dec 13, 2016
Dec 13, 2016
504
buf_append_hex(buf, vpninfo->oath_secret, vpninfo->oath_secret_len);
Aug 13, 2014
Aug 13, 2014
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
break;
case HOTP_SECRET_RAW:
buf = buf_alloc();
buf_append_bytes(buf, vpninfo->oath_secret,
vpninfo->oath_secret_len);
break;
case HOTP_SECRET_PSKC:
#ifdef HAVE_LIBPSKC
{
size_t len;
if (!vpninfo->pskc_key || !vpninfo->pskc)
return NULL;
pskc_set_key_data_counter(vpninfo->pskc_key, vpninfo->token_time);
pskc_build_xml(vpninfo->pskc, &new_secret, &len);
/* FFS #1: libpskc craps all over itself on pskc_build_xml().
https://bugzilla.redhat.com/show_bug.cgi?id=1129491
Hopefully this will be fixed by 2.4.2 but make it
unconditional for now... */
if (1 || !pskc_check_version("2.4.2")) {
pskc_done(vpninfo->pskc);
vpninfo->pskc = NULL;
vpninfo->pskc_key = NULL;
if (pskc_init(&vpninfo->pskc) ||
pskc_parse_from_memory(vpninfo->pskc, len, new_secret)) {
pskc_done(vpninfo->pskc);
vpninfo->pskc = NULL;
} else {
vpninfo->pskc_key = pskc_get_keypackage(vpninfo->pskc, 0);
vpninfo->oath_secret = (char *)pskc_get_key_data_secret(vpninfo->pskc_key, NULL);
}
}
/* FFS #2: No terminating NUL byte */
realloc_inplace(new_secret, len + 1);
if (new_secret)
new_secret[len] = 0;
return new_secret;
}
#endif
default:
return NULL;
}
buf_append(buf,",%ld", (long)vpninfo->token_time);
if (!buf_error(buf)) {
new_secret = buf->data;
buf->data = NULL;
}
buf_free(buf);
return new_secret;
}
int do_gen_hotp_code(struct openconnect_info *vpninfo,
struct oc_auth_form *form,
struct oc_form_opt *opt)
{
char tokencode[7];
int ret;
vpn_progress(vpninfo, PRG_INFO, _("Generating OATH HOTP token code\n"));
if (vpninfo->lock_token) {
/* This may call openconnect_set_token_mode() again to update
* the token if it's changed. */
ret = vpninfo->lock_token(vpninfo->tok_cbdata);
if (ret)
return ret;
}
Jan 30, 2015
Jan 30, 2015
574
if (gen_hotp(vpninfo, vpninfo->token_time, tokencode))
Aug 13, 2014
Aug 13, 2014
575
return -EIO;
Jan 30, 2015
Jan 30, 2015
576
Aug 13, 2014
Aug 13, 2014
577
578
vpninfo->token_time++;
vpninfo->token_tries++;
Oct 9, 2014
Oct 9, 2014
579
opt->_value = strdup(tokencode);
Aug 13, 2014
Aug 13, 2014
580
581
582
583
584
if (vpninfo->unlock_token) {
char *new_tok = regen_hotp_secret(vpninfo);
vpninfo->unlock_token(vpninfo->tok_cbdata, new_tok);
free(new_tok);
}
Oct 9, 2014
Oct 9, 2014
585
return opt->_value ? 0 : -ENOMEM;
Aug 13, 2014
Aug 13, 2014
586
}