Skip to content

Latest commit

 

History

History
2142 lines (1905 loc) · 59.1 KB

gnutls.c

File metadata and controls

2142 lines (1905 loc) · 59.1 KB
 
May 29, 2012
May 29, 2012
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
/*
* OpenConnect (SSL + DTLS) VPN client
*
* Copyright © 2008-2012 Intel Corporation.
*
* 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.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to:
*
* Free Software Foundation, Inc.
* 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301 USA
*/
#include <sys/types.h>
May 31, 2012
May 31, 2012
26
#include <sys/stat.h>
May 29, 2012
May 29, 2012
27
28
29
30
31
32
33
34
35
36
37
38
39
#include <sys/socket.h>
#include <netdb.h>
#include <unistd.h>
#include <fcntl.h>
#include <string.h>
#include <ctype.h>
#include <stdio.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <errno.h>
#include <stdarg.h>
#include <stdlib.h>
Jun 14, 2012
Jun 14, 2012
40
41
42
43
44
45
#ifndef HAVE_GNUTLS_CERTIFICATE_SET_KEY
/* Shut up about gnutls_sign_callback_set() being deprecated. We only use it
in the GnuTLS 2.12 case, and there just isn't another way of doing it. */
#define GNUTLS_INTERNAL_BUILD 1
#endif
May 29, 2012
May 29, 2012
46
47
48
#include <gnutls/gnutls.h>
#include <gnutls/x509.h>
#include <gnutls/crypto.h>
May 31, 2012
May 31, 2012
49
#include <gnutls/pkcs12.h>
Jun 10, 2012
Jun 10, 2012
50
#include <gnutls/abstract.h>
May 29, 2012
May 29, 2012
51
Jun 13, 2012
Jun 13, 2012
52
53
54
55
#ifdef HAVE_TROUSERS
#include <trousers/tss.h>
#include <trousers/trousers.h>
#endif
Jun 8, 2012
Jun 8, 2012
56
57
#ifdef HAVE_P11KIT
#include <p11-kit/p11-kit.h>
Jun 10, 2012
Jun 10, 2012
58
#include <p11-kit/pkcs11.h>
Jun 8, 2012
Jun 8, 2012
59
60
61
62
63
64
65
66
#include <p11-kit/pin.h>
static P11KitPin *pin_callback(const char *pin_source, P11KitUri *pin_uri,
const char *pin_description,
P11KitPinFlags flags,
void *_vpninfo);
#endif
Jun 14, 2012
Jun 14, 2012
67
#include "gnutls.h"
May 29, 2012
May 29, 2012
68
69
70
71
72
73
74
75
76
77
78
79
80
81
#include "openconnect-internal.h"
/* Helper functions for reading/writing lines over SSL.
We could use cURL for the HTTP stuff, but it's overkill */
int openconnect_SSL_write(struct openconnect_info *vpninfo, char *buf, size_t len)
{
size_t orig_len = len;
while (len) {
int done = gnutls_record_send(vpninfo->https_sess, buf, len);
if (done > 0)
len -= done;
else if (done != GNUTLS_E_AGAIN) {
Nov 5, 2012
Nov 5, 2012
82
vpn_progress(vpninfo, PRG_ERR, _("Failed to write to SSL socket: %s\n"),
May 29, 2012
May 29, 2012
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
gnutls_strerror(done));
return -EIO;
} else {
fd_set wr_set, rd_set;
int maxfd = vpninfo->ssl_fd;
FD_ZERO(&wr_set);
FD_ZERO(&rd_set);
if (gnutls_record_get_direction(vpninfo->https_sess))
FD_SET(vpninfo->ssl_fd, &wr_set);
else
FD_SET(vpninfo->ssl_fd, &rd_set);
if (vpninfo->cancel_fd != -1) {
FD_SET(vpninfo->cancel_fd, &rd_set);
if (vpninfo->cancel_fd > vpninfo->ssl_fd)
maxfd = vpninfo->cancel_fd;
}
select(maxfd + 1, &rd_set, &wr_set, NULL, NULL);
if (vpninfo->cancel_fd != -1 &&
FD_ISSET(vpninfo->cancel_fd, &rd_set)) {
vpn_progress(vpninfo, PRG_ERR, _("SSL write cancelled\n"));
return -EINTR;
}
}
}
return orig_len;
}
int openconnect_SSL_read(struct openconnect_info *vpninfo, char *buf, size_t len)
{
int done;
while ((done = gnutls_record_recv(vpninfo->https_sess, buf, len)) < 0) {
fd_set wr_set, rd_set;
int maxfd = vpninfo->ssl_fd;
if (done != GNUTLS_E_AGAIN) {
vpn_progress(vpninfo, PRG_ERR, _("Failed to read from SSL socket: %s"),
gnutls_strerror(done));
return -EIO;
} else {
FD_ZERO(&wr_set);
FD_ZERO(&rd_set);
if (gnutls_record_get_direction(vpninfo->https_sess))
FD_SET(vpninfo->ssl_fd, &wr_set);
else
FD_SET(vpninfo->ssl_fd, &rd_set);
if (vpninfo->cancel_fd != -1) {
FD_SET(vpninfo->cancel_fd, &rd_set);
if (vpninfo->cancel_fd > vpninfo->ssl_fd)
maxfd = vpninfo->cancel_fd;
}
select(maxfd + 1, &rd_set, &wr_set, NULL, NULL);
if (vpninfo->cancel_fd != -1 &&
FD_ISSET(vpninfo->cancel_fd, &rd_set)) {
vpn_progress(vpninfo, PRG_ERR, _("SSL read cancelled\n"));
return -EINTR;
}
}
}
return done;
}
int openconnect_SSL_gets(struct openconnect_info *vpninfo, char *buf, size_t len)
{
int i = 0;
int ret;
if (len < 2)
return -EINVAL;
while (1) {
ret = gnutls_record_recv(vpninfo->https_sess, buf + i, 1);
if (ret == 1) {
if (buf[i] == '\n') {
buf[i] = 0;
if (i && buf[i-1] == '\r') {
buf[i-1] = 0;
i--;
}
return i;
}
i++;
if (i >= len - 1) {
buf[i] = 0;
return i;
}
} else if (ret != GNUTLS_E_AGAIN) {
vpn_progress(vpninfo, PRG_ERR, _("Failed to read from SSL socket: %s\n"),
gnutls_strerror(ret));
ret = -EIO;
break;
} else {
fd_set rd_set, wr_set;
int maxfd = vpninfo->ssl_fd;
FD_ZERO(&rd_set);
FD_ZERO(&wr_set);
if (gnutls_record_get_direction(vpninfo->https_sess))
FD_SET(vpninfo->ssl_fd, &wr_set);
else
FD_SET(vpninfo->ssl_fd, &rd_set);
if (vpninfo->cancel_fd != -1) {
FD_SET(vpninfo->cancel_fd, &rd_set);
if (vpninfo->cancel_fd > vpninfo->ssl_fd)
maxfd = vpninfo->cancel_fd;
}
select(maxfd + 1, &rd_set, &wr_set, NULL, NULL);
if (vpninfo->cancel_fd != -1 &&
FD_ISSET(vpninfo->cancel_fd, &rd_set)) {
vpn_progress(vpninfo, PRG_ERR, _("SSL read cancelled\n"));
ret = -EINTR;
break;
}
}
}
buf[i] = 0;
return i ?: ret;
}
May 31, 2012
May 31, 2012
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
static int check_certificate_expiry(struct openconnect_info *vpninfo, gnutls_x509_crt_t cert)
{
const char *reason = NULL;
time_t expires = gnutls_x509_crt_get_expiration_time(cert);
time_t now = time(NULL);
if (expires == -1) {
vpn_progress(vpninfo, PRG_ERR,
_("Could not extract expiration time of certificate\n"));
return -EINVAL;
}
if (expires < now)
reason = _("Client certificate has expired at");
else if (expires < now + vpninfo->cert_expire_warning)
reason = _("Client certificate expires soon at");
if (reason) {
struct tm tm;
char buf[80];
gmtime_r(&expires, &tm);
strftime(buf, 80, "%a, %d %b %Y %T %Z", &tm);
vpn_progress(vpninfo, PRG_ERR, "%s: %s\n", reason, buf);
}
return 0;
}
May 31, 2012
May 31, 2012
239
240
241
/* For systems that don't support O_CLOEXEC, just don't bother.
It's not open for long anyway. */
#ifndef O_CLOEXEC
Jun 25, 2012
Jun 25, 2012
242
#define O_CLOEXEC 0
May 31, 2012
May 31, 2012
243
244
#endif
May 31, 2012
May 31, 2012
245
246
247
248
249
static int load_datum(struct openconnect_info *vpninfo,
gnutls_datum_t *datum, const char *fname)
{
struct stat st;
int fd, err;
Jun 15, 2012
Jun 15, 2012
250
251
252
253
254
255
256
257
258
259
260
#ifdef ANDROID_KEYSTORE
if (!strncmp(fname, "keystore:", 9)) {
int len;
const char *p = fname + 9;
/* Skip first two slashes if the user has given it as
keystore://foo ... */
if (*p == '/')
p++;
if (*p == '/')
p++;
Jun 17, 2012
Jun 17, 2012
261
262
len = keystore_fetch(p, &datum->data);
if (len <= 0) {
Jun 15, 2012
Jun 15, 2012
263
vpn_progress(vpninfo, PRG_ERR,
Jun 17, 2012
Jun 17, 2012
264
265
_("Failed to load item '%s' from keystore: %s\n"),
p, keystore_strerror(len));
Jun 15, 2012
Jun 15, 2012
266
267
268
269
270
271
return -EINVAL;
}
datum->size = len;
return 0;
}
#endif
May 31, 2012
May 31, 2012
272
273
274
275
276
fd = open(fname, O_RDONLY|O_CLOEXEC);
if (fd == -1) {
err = errno;
vpn_progress(vpninfo, PRG_ERR,
Jun 9, 2012
Jun 9, 2012
277
278
_("Failed to open key/certificate file %s: %s\n"),
fname, strerror(err));
May 31, 2012
May 31, 2012
279
280
281
282
283
return -ENOENT;
}
if (fstat(fd, &st)) {
err = errno;
vpn_progress(vpninfo, PRG_ERR,
Jun 9, 2012
Jun 9, 2012
284
285
_("Failed to stat key/certificate file %s: %s\n"),
fname, strerror(err));
May 31, 2012
May 31, 2012
286
287
close(fd);
return -EIO;
May 31, 2012
May 31, 2012
288
}
May 31, 2012
May 31, 2012
289
datum->size = st.st_size;
May 31, 2012
May 31, 2012
290
datum->data = gnutls_malloc(st.st_size + 1);
May 31, 2012
May 31, 2012
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
if (!datum->data) {
vpn_progress(vpninfo, PRG_ERR,
_("Failed to allocate certificate buffer\n"));
close(fd);
return -ENOMEM;
}
errno = EAGAIN;
if (read(fd, datum->data, datum->size) != datum->size) {
err = errno;
vpn_progress(vpninfo, PRG_ERR,
_("Failed to read certificate into memory: %s\n"),
strerror(err));
close(fd);
gnutls_free(datum->data);
return -EIO;
}
May 31, 2012
May 31, 2012
307
datum->data[st.st_size] = 0;
May 31, 2012
May 31, 2012
308
309
310
311
close(fd);
return 0;
}
May 31, 2012
May 31, 2012
312
313
314
315
/* A non-zero, non-error return to make load_certificate() continue and
interpreting the file as other types */
#define NOT_PKCS12 1
May 31, 2012
May 31, 2012
316
static int load_pkcs12_certificate(struct openconnect_info *vpninfo,
May 31, 2012
May 31, 2012
317
318
gnutls_datum_t *datum,
gnutls_x509_privkey_t *key,
Jun 9, 2012
Jun 9, 2012
319
320
gnutls_x509_crt_t **chain,
unsigned int *chain_len,
May 31, 2012
May 31, 2012
321
gnutls_x509_crt_t **extra_certs,
Jun 9, 2012
Jun 9, 2012
322
unsigned int *extra_certs_len,
May 31, 2012
May 31, 2012
323
gnutls_x509_crl_t *crl)
May 31, 2012
May 31, 2012
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
{
gnutls_pkcs12_t p12;
char *pass;
int err;
err = gnutls_pkcs12_init(&p12);
if (err) {
vpn_progress(vpninfo, PRG_ERR,
_("Failed to setup PKCS#12 data structure: %s\n"),
gnutls_strerror(err));
return -EIO;
}
err = gnutls_pkcs12_import(p12, datum, GNUTLS_X509_FMT_DER, 0);
if (err) {
gnutls_pkcs12_deinit(p12);
if (vpninfo->cert_type == CERT_TYPE_UNKNOWN)
May 31, 2012
May 31, 2012
341
return NOT_PKCS12;
May 31, 2012
May 31, 2012
342
343
344
345
346
347
348
vpn_progress(vpninfo, PRG_ERR,
_("Failed to import PKCS#12 file: %s\n"),
gnutls_strerror(err));
return -EINVAL;
}
pass = vpninfo->cert_password;
May 31, 2012
May 31, 2012
349
while ((err = gnutls_pkcs12_verify_mac(p12, pass)) == GNUTLS_E_MAC_VERIFY_FAILED) {
May 31, 2012
May 31, 2012
350
351
352
353
if (pass)
vpn_progress(vpninfo, PRG_ERR,
_("Failed to decrypt PKCS#12 certificate file\n"));
free(pass);
May 31, 2012
May 31, 2012
354
vpninfo->cert_password = NULL;
Jun 13, 2012
Jun 13, 2012
355
err = request_passphrase(vpninfo, "openconnect_pkcs12", &pass,
May 31, 2012
May 31, 2012
356
357
358
359
360
361
_("Enter PKCS#12 pass phrase:"));
if (err) {
gnutls_pkcs12_deinit(p12);
return -EINVAL;
}
}
May 31, 2012
May 31, 2012
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
/* If it wasn't GNUTLS_E_MAC_VERIFY_FAILED, then the problem wasn't just a
bad password. Give up. */
if (err) {
int level = PRG_ERR;
int ret = -EINVAL;
gnutls_pkcs12_deinit(p12);
/* If the first attempt, and we didn't know for sure it was PKCS#12
anyway, bail out and try loading it as something different. */
if (pass == vpninfo->cert_password &&
vpninfo->cert_type == CERT_TYPE_UNKNOWN) {
/* Make it non-fatal... */
level = PRG_TRACE;
ret = NOT_PKCS12;
}
vpn_progress(vpninfo, level,
_("Failed to process PKCS#12 file: %s\n"),
gnutls_strerror(err));
return ret;
}
Jun 9, 2012
Jun 9, 2012
384
385
err = gnutls_pkcs12_simple_parse(p12, pass, key, chain, chain_len,
extra_certs, extra_certs_len, crl, 0);
Jun 12, 2012
Jun 12, 2012
386
387
388
free(pass);
vpninfo->cert_password = NULL;
May 31, 2012
May 31, 2012
389
390
391
392
393
394
395
396
397
398
gnutls_pkcs12_deinit(p12);
if (err) {
vpn_progress(vpninfo, PRG_ERR,
_("Failed to load PKCS#12 certificate: %s\n"),
gnutls_strerror(err));
return -EINVAL;
}
return 0;
}
May 31, 2012
May 31, 2012
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
/* Older versions of GnuTLS didn't actually bother to check this, so we'll
do it for them. */
static int check_issuer_sanity(gnutls_x509_crt_t cert, gnutls_x509_crt_t issuer)
{
#if GNUTLS_VERSION_NUMBER > 0x300014
return 0;
#else
unsigned char id1[512], id2[512];
size_t id1_size = 512, id2_size = 512;
int err;
err = gnutls_x509_crt_get_authority_key_id(cert, id1, &id1_size, NULL);
if (err)
return 0;
err = gnutls_x509_crt_get_subject_key_id(issuer, id2, &id2_size, NULL);
if (err)
return 0;
if (id1_size == id2_size && !memcmp(id1, id2, id1_size))
return 0;
/* EEP! */
return -EIO;
#endif
}
May 31, 2012
May 31, 2012
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
static int count_x509_certificates(gnutls_datum_t *datum)
{
int count = 0;
char *p = (char *)datum->data;
while (p) {
p = strstr(p, "-----BEGIN ");
if (!p)
break;
p += 11;
if (!strncmp(p, "CERTIFICATE", 11) ||
!strncmp(p, "X509 CERTIFICATE", 16))
count++;
}
return count;
}
Jun 11, 2012
Jun 11, 2012
442
443
444
445
446
447
448
449
450
451
452
453
static int get_cert_name(gnutls_x509_crt_t cert, char *name, size_t namelen)
{
if (gnutls_x509_crt_get_dn_by_oid(cert, GNUTLS_OID_X520_COMMON_NAME,
0, 0, name, &namelen) &&
gnutls_x509_crt_get_dn(cert, name, &namelen)) {
name[namelen-1] = 0;
snprintf(name, namelen-1, "<unknown>");
return -EINVAL;
}
return 0;
}
Jun 14, 2012
Jun 14, 2012
454
455
#if defined (HAVE_P11KIT) || defined (HAVE_TROUSERS)
#ifndef HAVE_GNUTLS_CERTIFICATE_SET_KEY
Jun 14, 2012
Jun 14, 2012
456
457
458
459
460
461
462
463
/* For GnuTLS 2.12 even if we *have* a privkey (as we do for PKCS#11), we
can't register it. So we have to use the cert_callback function. This
just hands out the certificate chain we prepared in load_certificate().
If we have a pkey then return that too; otherwise leave the key NULL —
we'll also have registered a sign_callback for the session, which will
handle that. */
static int gtls_cert_cb(gnutls_session_t sess, const gnutls_datum_t *req_ca_dn,
int nreqs, const gnutls_pk_algorithm_t *pk_algos,
Jun 14, 2012
Jun 14, 2012
464
int pk_algos_length, gnutls_retr2_st *st) {
Jun 14, 2012
Jun 14, 2012
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
struct openconnect_info *vpninfo = gnutls_session_get_ptr(sess);
int algo = GNUTLS_PK_RSA; /* TPM */
int i;
#ifdef HAVE_P11KIT
if (vpninfo->my_p11key) {
st->key_type = GNUTLS_PRIVKEY_PKCS11;
st->key.pkcs11 = vpninfo->my_p11key;
algo = gnutls_pkcs11_privkey_get_pk_algorithm(vpninfo->my_p11key, NULL);
};
#endif
for (i = 0; i < pk_algos_length; i++) {
if (algo == pk_algos[i])
break;
}
if (i == pk_algos_length)
return GNUTLS_E_UNKNOWN_PK_ALGORITHM;
st->cert_type = GNUTLS_CRT_X509;
st->cert.x509 = vpninfo->my_certs;
st->ncerts = vpninfo->nr_my_certs;
st->deinit_all = 0;
return 0;
}
Jun 14, 2012
Jun 14, 2012
491
Jun 14, 2012
Jun 14, 2012
492
493
494
495
496
497
498
499
500
501
502
/* For GnuTLS 2.12, this has to set the cert_callback to the function
above, which will return the pkey and certs on demand. Or in the
case of TPM we can't make a suitable pkey, so we have to set a
sign_callback too (which is done in openconnect_open_https() since
it has to be done on the *session*). */
static int assign_privkey(struct openconnect_info *vpninfo,
gnutls_privkey_t pkey,
gnutls_x509_crt_t *certs,
unsigned int nr_certs,
gnutls_x509_crt_t *extra_certs,
unsigned int nr_extra_certs)
Jun 14, 2012
Jun 14, 2012
503
504
505
506
507
508
509
510
511
512
{
int i;
vpninfo->my_certs = gnutls_calloc(nr_certs, sizeof(*certs));
if (!vpninfo->my_certs)
return GNUTLS_E_MEMORY_ERROR;
memcpy(vpninfo->my_certs, certs, nr_certs * sizeof(*certs));
vpninfo->nr_my_certs = nr_certs;
Jun 14, 2012
Jun 14, 2012
513
514
515
/* We are *keeping* the certs, unlike in GnuTLS 3 where our caller
can free them after gnutls_certificate_set_key() has been called.
So first wipe the 'certs' array (which is either '&cert' or
Jun 14, 2012
Jun 14, 2012
516
517
518
'supporting_certs' in load_certificate())... */
memset(certs, 0, nr_certs * sizeof(*certs));
Jun 14, 2012
Jun 14, 2012
519
520
521
522
/* ... and then also zero out the entries in extra_certs[] that
correspond to the certs that we're stealing.
We know certs[0] was already stolen by the load_certificate()
function so we might as well start at certs[1]. */
Jun 14, 2012
Jun 14, 2012
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
for (i = 1; i < nr_certs; i++) {
int j;
for (j = 0; j < nr_extra_certs; j++) {
if (vpninfo->my_certs[i] == extra_certs[j]) {
extra_certs[j] = NULL;
break;
}
}
}
gnutls_certificate_set_retrieve_function(vpninfo->https_cred,
gtls_cert_cb);
vpninfo->my_pkey = pkey;
return 0;
}
Jun 14, 2012
Jun 14, 2012
539
#else /* !SET_KEY */
Jun 14, 2012
Jun 14, 2012
540
541
542
543
544
545
546
547
548
549
550
/* For GnuTLS 3+ this is saner than the GnuTLS 2.12 version. But still we
have to convert the array of X509 certificates to gnutls_pcert_st for
ourselves. There's no function that takes a gnutls_privkey_t as the key
and gnutls_x509_crt_t certificates. */
static int assign_privkey(struct openconnect_info *vpninfo,
gnutls_privkey_t pkey,
gnutls_x509_crt_t *certs,
unsigned int nr_certs,
gnutls_x509_crt_t *extra_certs,
unsigned int nr_extra_certs)
Jun 14, 2012
Jun 14, 2012
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
{
gnutls_pcert_st *pcerts = calloc(nr_certs, sizeof(*pcerts));
int i, err;
if (!pcerts)
return GNUTLS_E_MEMORY_ERROR;
for (i=0 ; i < nr_certs; i++) {
err = gnutls_pcert_import_x509(pcerts + i, certs[i], 0);
if (err) {
vpn_progress(vpninfo, PRG_ERR,
_("Importing X509 certificate failed: %s\n"),
gnutls_strerror(err));
goto free_pcerts;
}
}
err = gnutls_certificate_set_key(vpninfo->https_cred, NULL, 0,
pcerts, nr_certs, pkey);
if (err) {
vpn_progress(vpninfo, PRG_ERR,
_("Setting PKCS#11 certificate failed: %s\n"),
gnutls_strerror(err));
free_pcerts:
for (i=0 ; i < nr_certs; i++)
gnutls_pcert_deinit(pcerts + i);
free (pcerts);
}
return err;
}
#endif /* !SET_KEY */
#endif /* (P11KIT || TROUSERS) */
Jun 14, 2012
Jun 14, 2012
583
Jun 19, 2012
Jun 19, 2012
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
static int openssl_hash_password(struct openconnect_info *vpninfo, char *pass,
gnutls_datum_t *key, gnutls_datum_t *salt)
{
unsigned char md5[16];
gnutls_hash_hd_t hash;
int count = 0;
int err;
while (count < key->size) {
err = gnutls_hash_init(&hash, GNUTLS_DIG_MD5);
if (err) {
vpn_progress(vpninfo, PRG_ERR,
_("Could not initialise MD5 hash: %s\n"),
gnutls_strerror(err));
return -EIO;
}
if (count) {
err = gnutls_hash(hash, md5, sizeof(md5));
if (err) {
hash_err:
gnutls_hash_deinit(hash, NULL);
vpn_progress(vpninfo, PRG_ERR,
_("MD5 hash error: %s\n"),
gnutls_strerror(err));
return -EIO;
}
}
if (pass) {
err = gnutls_hash(hash, pass, strlen(pass));
if (err)
goto hash_err;
}
Jun 29, 2012
Jun 29, 2012
616
617
/* We only use the first 8 bytes of the salt for this */
err = gnutls_hash(hash, salt->data, 8);
Jun 19, 2012
Jun 19, 2012
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
if (err)
goto hash_err;
gnutls_hash_deinit(hash, md5);
if (key->size - count <= sizeof(md5)) {
memcpy(&key->data[count], md5, key->size - count);
break;
}
memcpy(&key->data[count], md5, sizeof(md5));
count += sizeof(md5);
}
return 0;
}
static int import_openssl_pem(struct openconnect_info *vpninfo,
gnutls_x509_privkey_t key,
char type, char *pem_header, size_t pem_size)
{
gnutls_cipher_hd_t handle;
gnutls_cipher_algorithm_t cipher;
gnutls_datum_t constructed_pem;
gnutls_datum_t b64_data;
gnutls_datum_t salt, enc_key;
unsigned char *key_data;
const char *begin;
Jun 29, 2012
Jun 29, 2012
646
char *pass, *p;
Jun 19, 2012
Jun 19, 2012
647
char *pem_start = pem_header;
Jun 29, 2012
Jun 29, 2012
648
int ret, err, i;
Jun 19, 2012
Jun 19, 2012
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
if (type == 'E')
begin = "EC PRIVATE KEY";
else if (type == 'R')
begin = "RSA PRIVATE KEY";
else if (type == 'D')
begin = "DSA PRIVATE KEY";
else
return -EINVAL;
while (*pem_header == '\r' || *pem_header == '\n')
pem_header++;
if (strncmp(pem_header, "DEK-Info: ", 10)) {
vpn_progress(vpninfo, PRG_ERR,
_("Missing DEK-Info: header from OpenSSL encrypted key\n"));
return -EIO;
}
pem_header += 10;
Jun 29, 2012
Jun 29, 2012
668
669
670
671
672
p = strchr(pem_header, ',');
if (!p) {
vpn_progress(vpninfo, PRG_ERR,
_("Cannot determine PEM encryption type\n"));
return -EINVAL;
Jun 29, 2012
Jun 29, 2012
673
}
Jun 19, 2012
Jun 19, 2012
674
Jun 29, 2012
Jun 29, 2012
675
676
677
678
679
680
681
682
*p = 0;
cipher = gnutls_cipher_get_id(pem_header);
/* GnuTLS calls this '3DES-CBC' but all other names match */
if (cipher == GNUTLS_CIPHER_UNKNOWN &&
!strcmp(pem_header, "DES-EDE3-CBC"))
cipher = GNUTLS_CIPHER_3DES_CBC;
if (cipher == GNUTLS_CIPHER_UNKNOWN) {
Jun 19, 2012
Jun 19, 2012
683
684
685
686
687
vpn_progress(vpninfo, PRG_ERR,
_("Unsupported PEM encryption type: %s\n"),
pem_header);
return -EINVAL;
}
Jun 29, 2012
Jun 29, 2012
688
689
690
691
692
pem_header = p + 1;
/* No supported algorithms have an IV larger than this, and dynamically
allocating it would be painful. */
salt.size = 64;
Jun 19, 2012
Jun 19, 2012
693
694
695
696
697
698
699
700
701
702
703
salt.data = malloc(salt.size);
if (!salt.data)
return -ENOMEM;
for (i = 0; i < salt.size * 2; i++) {
unsigned char x;
char *c = &pem_header[i];
if (*c >= '0' && *c <= '9')
x = (*c) - '0';
else if (*c >= 'A' && *c <= 'F')
x = (*c) - 'A' + 10;
Jun 29, 2012
Jun 29, 2012
704
705
706
707
else if ((*c == '\r' || *c == '\n') && i >= 16 && !(i % 16)) {
salt.size = i / 2;
break;
} else {
Jun 19, 2012
Jun 19, 2012
708
709
710
711
712
713
714
715
716
717
718
719
720
721
vpn_progress(vpninfo, PRG_ERR,
_("Invalid salt in encrypted PEM file\n"));
ret = -EINVAL;
goto out_salt;
}
if (i & 1)
salt.data[i/2] |= x;
else
salt.data[i/2] = x << 4;
}
pem_header += salt.size * 2;
if (*pem_header != '\r' && *pem_header != '\n') {
vpn_progress(vpninfo, PRG_ERR,
Jun 29, 2012
Jun 29, 2012
722
_("Invalid salt in encrypted PEM file\n"));
Jun 19, 2012
Jun 19, 2012
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
ret = -EINVAL;
goto out_salt;
}
while (*pem_header == '\n' || *pem_header == '\r')
pem_header++;
/* pem_header should now point to the start of the base64 content.
Put a -----BEGIN banner in place before it, so that we can use
gnutls_pem_base64_decode_alloc(). The banner has to match the
-----END banner, so make sure we get it right... */
pem_header -= 6;
memcpy(pem_header, "-----\n", 6);
pem_header -= strlen(begin);
memcpy(pem_header, begin, strlen(begin));
pem_header -= 11;
memcpy(pem_header, "-----BEGIN ", 11);
constructed_pem.data = (void *)pem_header;
constructed_pem.size = pem_size - (pem_header - pem_start);
err = gnutls_pem_base64_decode_alloc(begin, &constructed_pem, &b64_data);
if (err) {
vpn_progress(vpninfo, PRG_ERR,
_("Error base64-decoding encrypted PEM file: %s\n"),
gnutls_strerror(err));
ret = -EINVAL;
goto out_salt;
}
if (b64_data.size < 16) {
/* Just to be sure our parsing is OK */
vpn_progress(vpninfo, PRG_ERR,
_("Encrypted PEM file too short\n"));
ret = -EINVAL;
goto out_b64;
}
ret = -ENOMEM;
enc_key.size = gnutls_cipher_get_key_size(cipher);
enc_key.data = malloc(enc_key.size);
if (!enc_key.data)
goto out_b64;
key_data = malloc(b64_data.size);
if (!key_data)
goto out_enc_key;
pass = vpninfo->cert_password;
vpninfo->cert_password = NULL;
while (1) {
memcpy(key_data, b64_data.data, b64_data.size);
ret = openssl_hash_password(vpninfo, pass, &enc_key, &salt);
if (ret)
goto out;
err = gnutls_cipher_init(&handle, cipher, &enc_key, &salt);
if (err) {
vpn_progress(vpninfo, PRG_ERR,
_("Failed to initialise cipher for decrypting PEM file: %s\n"),
gnutls_strerror(err));
gnutls_cipher_deinit(handle);
ret = -EIO;
goto out;
}
err = gnutls_cipher_decrypt(handle, key_data, b64_data.size);
gnutls_cipher_deinit(handle);
if (err) {
vpn_progress(vpninfo, PRG_ERR,
_("Failed to decrypt PEM key: %s\n"),
gnutls_strerror(err));
ret = -EIO;
goto out;
}
/* We have to strip any padding for GnuTLS to accept it.
So a bit more ASN.1 parsing for us.
FIXME: Consolidate with similar code in gnutls_tpm.c */
if (key_data[0] == 0x30) {
gnutls_datum_t key_datum;
int blocksize = gnutls_cipher_get_block_size(cipher);
int keylen = key_data[1];
int ofs = 2;
if (keylen & 0x80) {
int lenlen = keylen & 0x7f;
keylen = 0;
if (lenlen > 3)
goto fail;
while (lenlen) {
keylen <<= 8;
keylen |= key_data[ofs++];
lenlen--;
}
}
keylen += ofs;
/* If there appears to be more padding than required, fail */
if (b64_data.size - keylen >= blocksize)
goto fail;
/* If the padding bytes aren't all equal to the amount of padding, fail */
ofs = keylen;
while (ofs < b64_data.size) {
if (key_data[ofs] != b64_data.size - keylen)
goto fail;
ofs++;
}
key_datum.data = key_data;
key_datum.size = keylen;
err = gnutls_x509_privkey_import(key, &key_datum, GNUTLS_X509_FMT_DER);
if (!err) {
ret = 0;
goto out;
}
}
fail:
if (pass) {
vpn_progress(vpninfo, PRG_ERR, _("Decrypting PEM key failed\n"));
free(pass);
}
err = request_passphrase(vpninfo, "openconnect_pem",
&pass, _("Enter PEM pass phrase:"));
if (err) {
ret = -EINVAL;
goto out;
}
}
out:
free(key_data);
free(pass);
out_enc_key:
free(enc_key.data);
out_b64:
free(b64_data.data);
out_salt:
free(salt.data);
return ret;
}
Feb 17, 2013
Feb 17, 2013
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
static int verify_signed_data(gnutls_pubkey_t pubkey, gnutls_privkey_t privkey,
const gnutls_datum_t *data, const gnutls_datum_t *sig)
{
#ifdef HAVE_GNUTLS_PUBKEY_VERIFY_DATA2
gnutls_sign_algorithm_t algo = GNUTLS_SIGN_RSA_SHA1; /* TPM keys */
if (privkey != OPENCONNECT_TPM_PKEY)
algo = gnutls_pk_to_sign(gnutls_privkey_get_pk_algorithm(privkey, NULL),
GNUTLS_DIG_SHA1);
return gnutls_pubkey_verify_data2(pubkey, algo, 0, data, sig);
#else
return gnutls_pubkey_verify_data(pubkey, 0, data, sig);
#endif
}
May 29, 2012
May 29, 2012
883
884
static int load_certificate(struct openconnect_info *vpninfo)
{
May 31, 2012
May 31, 2012
885
gnutls_datum_t fdata;
May 31, 2012
May 31, 2012
886
gnutls_x509_privkey_t key = NULL;
Jun 14, 2012
Jun 14, 2012
887
#if defined (HAVE_P11KIT) || defined (HAVE_TROUSERS)
Jun 10, 2012
Jun 10, 2012
888
gnutls_privkey_t pkey = NULL;
Jun 13, 2012
Jun 13, 2012
889
890
gnutls_datum_t pkey_sig = {NULL, 0};
void *dummy_hash_data = &load_certificate;
Jun 12, 2012
Jun 12, 2012
891
892
#endif
#ifdef HAVE_P11KIT
Jun 10, 2012
Jun 10, 2012
893
894
char *cert_url = (char *)vpninfo->cert;
char *key_url = (char *)vpninfo->sslkey;
Jun 14, 2012
Jun 14, 2012
895
gnutls_pkcs11_privkey_t p11key = NULL;
Jun 10, 2012
Jun 10, 2012
896
#endif
Jun 19, 2012
Jun 19, 2012
897
char *pem_header;
May 31, 2012
May 31, 2012
898
gnutls_x509_crl_t crl = NULL;
May 31, 2012
May 31, 2012
899
900
gnutls_x509_crt_t last_cert, cert = NULL;
gnutls_x509_crt_t *extra_certs = NULL, *supporting_certs = NULL;
Jun 9, 2012
Jun 9, 2012
901
902
unsigned int nr_supporting_certs = 0, nr_extra_certs = 0;
unsigned int certs_to_free = 0; /* How many of supporting_certs */
May 31, 2012
May 31, 2012
903
int err; /* GnuTLS error */
Jun 13, 2012
Jun 13, 2012
904
int ret;
May 31, 2012
May 31, 2012
905
int i;
Jun 10, 2012
Jun 10, 2012
906
int cert_is_p11 = 0, key_is_p11 = 0;
May 31, 2012
May 31, 2012
907
908
unsigned char key_id[20];
size_t key_id_size = sizeof(key_id);
Jun 11, 2012
Jun 11, 2012
909
char name[80];
May 29, 2012
May 29, 2012
910
Jun 9, 2012
Jun 9, 2012
911
912
fdata.data = NULL;
Jun 10, 2012
Jun 10, 2012
913
914
915
key_is_p11 = !strncmp(vpninfo->sslkey, "pkcs11:", 7);
cert_is_p11 = !strncmp(vpninfo->cert, "pkcs11:", 7);
Jun 14, 2012
Jun 14, 2012
916
917
918
919
920
921
922
#ifndef HAVE_P11KIT
if (key_is_p11 || cert_is_p11) {
vpn_progress(vpninfo, PRG_ERR,
_("This binary built without PKCS#11 support\n"));
return -EINVAL;
}
#else
Jun 10, 2012
Jun 10, 2012
923
924
/* Install PIN handler if either certificate or key are coming from PKCS#11 */
if (key_is_p11 || cert_is_p11) {
Jun 10, 2012
Jun 10, 2012
925
926
CK_OBJECT_CLASS class;
CK_ATTRIBUTE attr;
Jun 8, 2012
Jun 8, 2012
927
928
929
930
char pin_source[40];
P11KitUri *uri;
sprintf(pin_source, "openconnect:%p", vpninfo);
Jun 10, 2012
Jun 10, 2012
931
p11_kit_pin_register_callback(pin_source, pin_callback, vpninfo, NULL);
Jun 8, 2012
Jun 8, 2012
932
933
uri = p11_kit_uri_new();
Jun 10, 2012
Jun 10, 2012
934
Jun 10, 2012
Jun 10, 2012
935
936
937
938
939
940
attr.type = CKA_CLASS;
attr.pValue = &class;
attr.ulValueLen = sizeof(class);
/* Add appropriate pin-source and object-type attributes to
both certificate and key URLs, unless they already exist. */
Jun 10, 2012
Jun 10, 2012
941
if (cert_is_p11 &&
Jul 11, 2012
Jul 11, 2012
942
!p11_kit_uri_parse(cert_url, P11_KIT_URI_FOR_ANY, uri)) {
Jun 10, 2012
Jun 10, 2012
943
944
945
946
947
948
if (!p11_kit_uri_get_pin_source(uri))
p11_kit_uri_set_pin_source(uri, pin_source);
if (!p11_kit_uri_get_attribute(uri, CKA_CLASS)) {
class = CKO_CERTIFICATE;
p11_kit_uri_set_attribute(uri, &attr);
}
Jul 11, 2012
Jul 11, 2012
949
p11_kit_uri_format(uri, P11_KIT_URI_FOR_ANY, &cert_url);
Jun 8, 2012
Jun 8, 2012
950
951
}
Jun 10, 2012
Jun 10, 2012
952
if (key_is_p11 &&
Jul 11, 2012
Jul 11, 2012
953
!p11_kit_uri_parse(key_url, P11_KIT_URI_FOR_ANY, uri)) {
Jun 10, 2012
Jun 10, 2012
954
955
956
957
958
959
if (!p11_kit_uri_get_pin_source(uri))
p11_kit_uri_set_pin_source(uri, pin_source);
if (!p11_kit_uri_get_attribute(uri, CKA_CLASS)) {
class = CKO_PRIVATE_KEY;
p11_kit_uri_set_attribute(uri, &attr);
}
Jul 11, 2012
Jul 11, 2012
960
p11_kit_uri_format(uri, P11_KIT_URI_FOR_ANY, &key_url);
Jun 8, 2012
Jun 8, 2012
961
}
Jun 10, 2012
Jun 10, 2012
962
Jun 8, 2012
Jun 8, 2012
963
p11_kit_uri_free(uri);
Jun 10, 2012
Jun 10, 2012
964
}
May 31, 2012
May 31, 2012
965
Jun 10, 2012
Jun 10, 2012
966
967
968
969
/* Load certificate(s) first... */
if (cert_is_p11) {
vpn_progress(vpninfo, PRG_TRACE,
_("Using PKCS#11 certificate %s\n"), cert_url);
Jun 8, 2012
Jun 8, 2012
970
Jun 10, 2012
Jun 10, 2012
971
972
973
974
975
976
977
978
979
err = gnutls_x509_crt_init(&cert);
if (err) {
ret = -ENOMEM;
goto out;
}
err = gnutls_x509_crt_import_pkcs11_url(cert, cert_url, 0);
if (err == GNUTLS_E_REQUESTED_DATA_NOT_AVAILABLE)
err = gnutls_x509_crt_import_pkcs11_url(cert, cert_url,
GNUTLS_PKCS11_OBJ_FLAG_LOGIN);
May 31, 2012
May 31, 2012
980
981
if (err) {
vpn_progress(vpninfo, PRG_ERR,
Jun 10, 2012
Jun 10, 2012
982
_("Error loading certificate from PKCS#11: %s\n"),
May 31, 2012
May 31, 2012
983
gnutls_strerror(err));
Jun 10, 2012
Jun 10, 2012
984
985
ret = -EIO;
goto out;
May 31, 2012
May 31, 2012
986
}
Jun 10, 2012
Jun 10, 2012
987
goto got_certs;
May 31, 2012
May 31, 2012
988
}
Jun 12, 2012
Jun 12, 2012
989
#endif /* HAVE_P11KIT */
May 31, 2012
May 31, 2012
990
Jun 14, 2012
Jun 14, 2012
991
/* OK, not a PKCS#11 certificate so it must be coming from a file... */
May 29, 2012
May 29, 2012
992
993
vpn_progress(vpninfo, PRG_TRACE,
_("Using certificate file %s\n"), vpninfo->cert);
May 31, 2012
May 31, 2012
994
Jun 14, 2012
Jun 14, 2012
995
/* Load file contents */
May 31, 2012
May 31, 2012
996
997
998
ret = load_datum(vpninfo, &fdata, vpninfo->cert);
if (ret)
return ret;
May 31, 2012
May 31, 2012
999
Jun 14, 2012
Jun 14, 2012
1000
/* Is it PKCS#12? */