-
Notifications
You must be signed in to change notification settings - Fork 2
/
gnutls.c
2956 lines (2616 loc) · 82.4 KB
/
gnutls.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
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
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
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*
* 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 <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <string.h>
#include <ctype.h>
#include <stdio.h>
#include <errno.h>
#include <stdarg.h>
#include <stdlib.h>
#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
#include <gnutls/gnutls.h>
#include <gnutls/x509.h>
#include <gnutls/crypto.h>
#include <gnutls/pkcs12.h>
#include <gnutls/abstract.h>
#ifdef HAVE_TROUSERS
#include <trousers/tss.h>
#include <trousers/trousers.h>
#endif
#ifdef HAVE_P11KIT
#include <p11-kit/p11-kit.h>
#include <p11-kit/pkcs11.h>
#include <p11-kit/pin.h>
#endif
#if defined(HAVE_P11KIT) || defined(HAVE_GNUTLS_SYSTEM_KEYS)
static int gnutls_pin_callback(void *priv, int attempt, const char *uri,
const char *token_label, unsigned int flags,
char *pin, size_t pin_max);
#ifndef HAVE_GNUTLS_X509_CRT_SET_PIN_FUNCTION
/* If we don't have this (3.1.0+) then we'll use p11-kit callbacks instead
* because the old GnuTLS callback was global rather than context-specific,
* which makes it basically unusable from libopenconnect. The p11-kit
* callback function is a simple wrapper around the GnuTLS native version. */
typedef enum {
GNUTLS_PIN_USER = (1 << 0),
GNUTLS_PIN_SO = (1 << 1),
GNUTLS_PIN_FINAL_TRY = (1 << 2),
GNUTLS_PIN_COUNT_LOW = (1 << 3),
GNUTLS_PIN_CONTEXT_SPECIFIC = (1 << 4),
GNUTLS_PIN_WRONG = (1 << 5)
} gnutls_pin_flag_t;
static P11KitPin *p11kit_pin_callback(const char *pin_source, P11KitUri *pin_uri,
const char *pin_description,
P11KitPinFlags flags,
void *_vpninfo);
#endif /* !HAVE_GNUTLS_X509_CRT_SET_PIN_FUNCTION */
#endif /* HAVE_P11KIT || HAVE_GNUTLS_SYSTEM_KEYS */
#include "gnutls.h"
#include "openconnect-internal.h"
/* GnuTLS 2.x lacked this. But GNUTLS_E_UNEXPECTED_PACKET_LENGTH basically
* does the same thing.
* http://lists.infradead.org/pipermail/openconnect-devel/2014-March/001726.html
*/
#ifndef GNUTLS_E_PREMATURE_TERMINATION
#define GNUTLS_E_PREMATURE_TERMINATION GNUTLS_E_UNEXPECTED_PACKET_LENGTH
#endif
/* Compile-time optimisable GnuTLS version check. We should never be
* run against a version of GnuTLS which is *older* than the one we
* were built again, but we might be run against a version which is
* newer. So some ancient compatibility code *can* be dropped at
* compile time. Likewise, if building against GnuTLS 2.x then we
* can never be running agsinst a 3.x library — the soname changed. */
#define gtls_ver(a,b,c) ( GNUTLS_VERSION_MAJOR >= (a) && \
(GNUTLS_VERSION_NUMBER >= ( ((a) << 16) + ((b) << 8) + (c) ) || \
gnutls_check_version(#a "." #b "." #c)))
/* Helper functions for reading/writing lines over SSL. */
static int _openconnect_gnutls_write(gnutls_session_t ses, int fd, struct openconnect_info *vpninfo, char *buf, size_t len)
{
size_t orig_len = len;
while (len) {
int done = gnutls_record_send(ses, buf, len);
if (done > 0)
len -= done;
else if (done == GNUTLS_E_AGAIN || done == GNUTLS_E_INTERRUPTED) {
/* Wait for something to happen on the socket, or on cmd_fd */
fd_set wr_set, rd_set;
int maxfd = fd;
FD_ZERO(&wr_set);
FD_ZERO(&rd_set);
if (gnutls_record_get_direction(ses))
FD_SET(fd, &wr_set);
else
FD_SET(fd, &rd_set);
cmd_fd_set(vpninfo, &rd_set, &maxfd);
select(maxfd + 1, &rd_set, &wr_set, NULL, NULL);
if (is_cancel_pending(vpninfo, &rd_set)) {
vpn_progress(vpninfo, PRG_ERR, _("SSL write cancelled\n"));
return -EINTR;
}
} else {
vpn_progress(vpninfo, PRG_ERR, _("Failed to write to SSL socket: %s\n"),
gnutls_strerror(done));
return -EIO;
}
}
return orig_len;
}
static int openconnect_gnutls_write(struct openconnect_info *vpninfo, char *buf, size_t len)
{
return _openconnect_gnutls_write(vpninfo->https_sess, vpninfo->ssl_fd, vpninfo, buf, len);
}
int openconnect_dtls_write(struct openconnect_info *vpninfo, void *buf, size_t len)
{
return _openconnect_gnutls_write(vpninfo->dtls_ssl, vpninfo->dtls_fd, vpninfo, buf, len);
}
static int _openconnect_gnutls_read(gnutls_session_t ses, int fd, struct openconnect_info *vpninfo, char *buf, size_t len, unsigned ms)
{
int done, ret;
struct timeval timeout, *tv = NULL;
if (ms) {
timeout.tv_sec = ms/1000;
timeout.tv_usec = (ms%1000)*1000;
tv = &timeout;
}
while ((done = gnutls_record_recv(ses, buf, len)) < 0) {
if (done == GNUTLS_E_AGAIN || done == GNUTLS_E_INTERRUPTED) {
/* Wait for something to happen on the socket, or on cmd_fd */
fd_set wr_set, rd_set;
int maxfd = fd;
FD_ZERO(&wr_set);
FD_ZERO(&rd_set);
if (gnutls_record_get_direction(ses))
FD_SET(fd, &wr_set);
else
FD_SET(fd, &rd_set);
cmd_fd_set(vpninfo, &rd_set, &maxfd);
ret = select(maxfd + 1, &rd_set, &wr_set, NULL, tv);
if (is_cancel_pending(vpninfo, &rd_set)) {
vpn_progress(vpninfo, PRG_ERR, _("SSL read cancelled\n"));
done = -EINTR;
goto cleanup;
}
if (ret == 0) {
done = -ETIMEDOUT;
goto cleanup;
}
} else if (done == GNUTLS_E_PREMATURE_TERMINATION) {
/* We've seen this with HTTP 1.0 responses followed by abrupt
socket closure and no clean SSL shutdown.
https://bugs.launchpad.net/bugs/1225276 */
vpn_progress(vpninfo, PRG_DEBUG, _("SSL socket closed uncleanly\n"));
done = 0;
goto cleanup;
} else if (done == GNUTLS_E_REHANDSHAKE) {
int ret = cstp_handshake(vpninfo, 0);
if (ret) {
done = ret;
goto cleanup;
}
} else {
vpn_progress(vpninfo, PRG_ERR, _("Failed to read from SSL socket: %s\n"),
gnutls_strerror(done));
if (done == GNUTLS_E_TIMEDOUT) {
done = -ETIMEDOUT;
goto cleanup;
} else {
done = -EIO;
goto cleanup;
}
}
}
cleanup:
return done;
}
static int openconnect_gnutls_read(struct openconnect_info *vpninfo, char *buf, size_t len)
{
return _openconnect_gnutls_read(vpninfo->https_sess, vpninfo->ssl_fd, vpninfo, buf, len, 0);
}
int openconnect_dtls_read(struct openconnect_info *vpninfo, void *buf, size_t len, unsigned ms)
{
return _openconnect_gnutls_read(vpninfo->dtls_ssl, vpninfo->dtls_fd, vpninfo, buf, len, ms);
}
static int openconnect_gnutls_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 || ret == GNUTLS_E_INTERRUPTED) {
/* Wait for something to happen on the socket, or on cmd_fd */
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);
cmd_fd_set(vpninfo, &rd_set, &maxfd);
select(maxfd + 1, &rd_set, &wr_set, NULL, NULL);
if (is_cancel_pending(vpninfo, &rd_set)) {
vpn_progress(vpninfo, PRG_ERR, _("SSL read cancelled\n"));
ret = -EINTR;
break;
}
} else if (ret == GNUTLS_E_REHANDSHAKE) {
ret = cstp_handshake(vpninfo, 0);
if (ret)
return ret;
} else {
vpn_progress(vpninfo, PRG_ERR, _("Failed to read from SSL socket: %s\n"),
gnutls_strerror(ret));
ret = -EIO;
break;
}
}
buf[i] = 0;
return i ?: ret;
}
int ssl_nonblock_read(struct openconnect_info *vpninfo, void *buf, int maxlen)
{
int ret;
ret = gnutls_record_recv(vpninfo->https_sess, buf, maxlen);
if (ret > 0)
return ret;
if (ret != GNUTLS_E_AGAIN && ret != GNUTLS_E_INTERRUPTED) {
vpn_progress(vpninfo, PRG_ERR,
_("SSL read error: %s; reconnecting.\n"),
gnutls_strerror(ret));
return -EIO;
}
return 0;
}
int ssl_nonblock_write(struct openconnect_info *vpninfo, void *buf, int buflen)
{
int ret;
ret = gnutls_record_send(vpninfo->https_sess, buf, buflen);
if (ret > 0)
return ret;
if (ret == GNUTLS_E_AGAIN || ret == GNUTLS_E_INTERRUPTED) {
/*
* Before 3.3.13, GnuTLS could return zero instead of one,
* indicating that it was waiting for a read when in fact
* it was waiting for a write. That caused us to block for
* ever, waiting for the read that it said it wanted.
*
* So instead, just *assume* it actually wants a write.
* Which is true most of the time, and on the rare occasion
* that it *isn't* true, the failure mode will just be that
* we keep waking up and calling GnuTLS again until the read
* that it's waiting for does arrive.
*/
if (GNUTLS_VERSION_NUMBER < 0x03030d ||
gnutls_record_get_direction(vpninfo->https_sess)) {
/* Waiting for the socket to become writable — it's
probably stalled, and/or the buffers are full */
monitor_write_fd(vpninfo, ssl);
}
return 0;
}
vpn_progress(vpninfo, PRG_ERR, _("SSL send failed: %s\n"),
gnutls_strerror(ret));
return -1;
}
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) {
char buf[80];
#ifdef _WIN32
/*
* Windows doesn't have gmtime_r but apparently its gmtime()
* *is* thread-safe because it uses a per-thread static buffer.
* cf. http://sourceforge.net/p/mingw/bugs/1625/
*
* We also explicitly say 'GMT' because %Z would give us the
* Microsoft stupidity "GMT Standard Time". Which is not only
* silly, but also ambiguous because Windows actually says that
* even when it means British Summer Time (GMT+1). And having
* used gmtime() we really *are* giving the time in GMT.
*/
struct tm *tm = gmtime(&expires);
strftime(buf, 80, "%a, %d %b %Y %H:%M:%S GMT", tm);
#else
struct tm tm;
gmtime_r(&expires, &tm);
strftime(buf, 80, "%a, %d %b %Y %T %Z", &tm);
#endif
vpn_progress(vpninfo, PRG_ERR, "%s: %s\n", reason, buf);
}
return 0;
}
static int load_datum(struct openconnect_info *vpninfo,
gnutls_datum_t *datum, const char *fname)
{
struct stat st;
int fd, err;
#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++;
len = keystore_fetch(p, &datum->data);
if (len <= 0) {
vpn_progress(vpninfo, PRG_ERR,
_("Failed to load item '%s' from keystore: %s\n"),
p, keystore_strerror(len));
return -EINVAL;
}
datum->size = len;
return 0;
}
#endif /* ANDROID_KEYSTORE */
fd = openconnect_open_utf8(vpninfo, fname, O_RDONLY|O_CLOEXEC|O_BINARY);
if (fd == -1) {
err = errno;
vpn_progress(vpninfo, PRG_ERR,
_("Failed to open key/certificate file %s: %s\n"),
fname, strerror(err));
return -ENOENT;
}
if (fstat(fd, &st)) {
err = errno;
vpn_progress(vpninfo, PRG_ERR,
_("Failed to stat key/certificate file %s: %s\n"),
fname, strerror(err));
close(fd);
return -EIO;
}
datum->size = st.st_size;
datum->data = gnutls_malloc(st.st_size + 1);
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;
}
datum->data[st.st_size] = 0;
close(fd);
return 0;
}
/* A non-zero, non-error return to make load_certificate() continue and
interpreting the file as other types */
#define NOT_PKCS12 1
static int load_pkcs12_certificate(struct openconnect_info *vpninfo,
gnutls_datum_t *datum,
gnutls_x509_privkey_t *key,
gnutls_x509_crt_t **chain,
unsigned int *chain_len,
gnutls_x509_crt_t **extra_certs,
unsigned int *extra_certs_len,
gnutls_x509_crl_t *crl)
{
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);
return NOT_PKCS12;
}
pass = vpninfo->cert_password;
while ((err = gnutls_pkcs12_verify_mac(p12, pass)) == GNUTLS_E_MAC_VERIFY_FAILED) {
if (!pass) {
/* OpenSSL's PKCS12_parse() code will try both NULL and "" automatically,
* but GnuTLS requires two separate attempts. */
err = gnutls_pkcs12_verify_mac(p12, "");
if (!err) {
pass = strdup("");
break;
}
} else
vpn_progress(vpninfo, PRG_ERR,
_("Failed to decrypt PKCS#12 certificate file\n"));
free(pass);
vpninfo->cert_password = NULL;
err = request_passphrase(vpninfo, "openconnect_pkcs12", &pass,
_("Enter PKCS#12 pass phrase:"));
if (err) {
gnutls_pkcs12_deinit(p12);
return -EINVAL;
}
}
/* 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) {
/* Make it non-fatal... */
level = PRG_DEBUG;
ret = NOT_PKCS12;
}
vpn_progress(vpninfo, level,
_("Failed to process PKCS#12 file: %s\n"),
gnutls_strerror(err));
return ret;
}
err = gnutls_pkcs12_simple_parse(p12, pass, key, chain, chain_len,
extra_certs, extra_certs_len, crl, 0);
free(pass);
vpninfo->cert_password = NULL;
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;
}
/* Older versions of GnuTLS didn't actually bother to check this, so we'll
do it for them. Is there a bug reference for this? Or just the git commit
reference (c1ef7efb in master, 5196786c in gnutls_3_0_x-2)? */
static int check_issuer_sanity(gnutls_x509_crt_t cert, gnutls_x509_crt_t issuer)
{
#if GNUTLS_VERSION_NUMBER > 0x030014
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
}
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;
}
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;
}
#if defined(HAVE_P11KIT) || defined(HAVE_TROUSERS) || defined (HAVE_GNUTLS_SYSTEM_KEYS)
#ifndef HAVE_GNUTLS_CERTIFICATE_SET_KEY
/* 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,
int pk_algos_length, gnutls_retr2_st *st) {
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;
}
/* 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,
uint8_t *free_certs)
{
vpninfo->my_certs = gnutls_calloc(nr_certs, sizeof(*certs));
if (!vpninfo->my_certs)
return GNUTLS_E_MEMORY_ERROR;
vpninfo->free_my_certs = gnutls_malloc(nr_certs);
if (!vpninfo->free_my_certs) {
gnutls_free(vpninfo->my_certs);
vpninfo->my_certs = NULL;
return GNUTLS_E_MEMORY_ERROR;
}
memcpy(vpninfo->free_my_certs, free_certs, nr_certs);
memcpy(vpninfo->my_certs, certs, nr_certs * sizeof(*certs));
vpninfo->nr_my_certs = nr_certs;
/* We are *keeping* the certs, unlike in GnuTLS 3 where our caller
can free them after gnutls_certificate_set_key() has been called.
So wipe the 'free_certs' array. */
memset(free_certs, 0, nr_certs);
gnutls_certificate_set_retrieve_function(vpninfo->https_cred,
gtls_cert_cb);
vpninfo->my_pkey = pkey;
return 0;
}
#else /* !SET_KEY */
/* 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,
uint8_t *free_certs)
{
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 */
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_PK_TO_SIGN
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
}
#endif /* (P11KIT || TROUSERS || SYSTEM_KEYS) */
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;
}
/* We only use the first 8 bytes of the salt for this */
err = gnutls_hash(hash, salt->data, 8);
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;
char *pass, *p;
char *pem_start = pem_header;
int ret, err, i;
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;
p = strchr(pem_header, ',');
if (!p) {
vpn_progress(vpninfo, PRG_ERR,
_("Cannot determine PEM encryption type\n"));
return -EINVAL;
}
*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) {
vpn_progress(vpninfo, PRG_ERR,
_("Unsupported PEM encryption type: %s\n"),
pem_header);
return -EINVAL;
}
pem_header = p + 1;
/* No supported algorithms have an IV larger than this, and dynamically
allocating it would be painful. */
salt.size = 64;
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;
else if ((*c == '\r' || *c == '\n') && i >= 16 && !(i % 16)) {
salt.size = i / 2;
break;
} else {
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,
_("Invalid salt in encrypted PEM file\n"));
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 or less padding than required, fail */
if (b64_data.size - keylen > blocksize || b64_data.size < keylen + 1)
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);
pass = NULL;
}
err = request_passphrase(vpninfo, "openconnect_pem",
&pass, _("Enter PEM pass phrase:"));
if (err) {
ret = -EINVAL;
goto out;
}