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
|
/* $OpenBSD: crypto.c,v 1.20 2017/03/27 10:06:41 reyk Exp $ */
/*
* Copyright (c) 2010-2013 Reyk Floeter <reyk@openbsd.org>
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
#include <sys/param.h> /* roundup */
#include <sys/queue.h>
#include <sys/socket.h>
#include <sys/uio.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
#include <errno.h>
#include <fcntl.h>
#include <event.h>
#include <openssl/hmac.h>
#include <openssl/evp.h>
#include <openssl/sha.h>
#include <openssl/md5.h>
#include <openssl/x509.h>
#include <openssl/rsa.h>
#include "iked.h"
#include "ikev2.h"
/* RFC 7427, A.1 RSA */
static const uint8_t sha256WithRSA[] = {
0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86,
0xf7, 0x0d, 0x01, 0x01, 0x0b, 0x05, 0x00
};
static const uint8_t sha384WithRSA[] = {
0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86,
0xf7, 0x0d, 0x01, 0x01, 0x0c, 0x05, 0x00
};
static const uint8_t sha512WithRSA[] = {
0x30, 0x0d, 0x06, 0x09, 0x2a, 0x86, 0x48, 0x86,
0xf7, 0x0d, 0x01, 0x01, 0x0d, 0x05, 0x00
};
/* RFC 7427, A.3 ECDSA */
static const uint8_t ecdsa_sha256[] = {
0x30, 0x0a, 0x06, 0x08, 0x2a, 0x86, 0x48, 0xce,
0x3d, 0x04, 0x03, 0x02
};
static const uint8_t ecdsa_sha384[] = {
0x30, 0x0a, 0x06, 0x08, 0x2a, 0x86, 0x48, 0xce,
0x3d, 0x04, 0x03, 0x03
};
static const uint8_t ecdsa_sha512[] = {
0x30, 0x0a, 0x06, 0x08, 0x2a, 0x86, 0x48, 0xce,
0x3d, 0x04, 0x03, 0x04
};
static const struct {
int sc_keytype;
const EVP_MD *(*sc_md)(void);
uint8_t sc_len;
const uint8_t *sc_oid;
} schemes[] = {
{ EVP_PKEY_RSA, EVP_sha256, sizeof(sha256WithRSA), sha256WithRSA },
{ EVP_PKEY_RSA, EVP_sha384, sizeof(sha384WithRSA), sha384WithRSA },
{ EVP_PKEY_RSA, EVP_sha512, sizeof(sha512WithRSA), sha512WithRSA },
{ EVP_PKEY_EC, EVP_sha256, sizeof(ecdsa_sha256), ecdsa_sha256 },
{ EVP_PKEY_EC, EVP_sha384, sizeof(ecdsa_sha384), ecdsa_sha384 },
{ EVP_PKEY_EC, EVP_sha512, sizeof(ecdsa_sha512), ecdsa_sha512 },
};
int _dsa_verify_init(struct iked_dsa *, const uint8_t *, size_t);
int _dsa_verify_prepare(struct iked_dsa *, uint8_t **, size_t *,
uint8_t **);
int _dsa_sign_encode(struct iked_dsa *, uint8_t *, size_t *);
int _dsa_sign_ecdsa(struct iked_dsa *, uint8_t *, size_t);
struct iked_hash *
hash_new(uint8_t type, uint16_t id)
{
struct iked_hash *hash;
const EVP_MD *md = NULL;
HMAC_CTX *ctx = NULL;
int length = 0, fixedkey = 0, trunc = 0;
switch (type) {
case IKEV2_XFORMTYPE_PRF:
switch (id) {
case IKEV2_XFORMPRF_HMAC_MD5:
md = EVP_md5();
length = MD5_DIGEST_LENGTH;
break;
case IKEV2_XFORMPRF_HMAC_SHA1:
md = EVP_sha1();
length = SHA_DIGEST_LENGTH;
break;
case IKEV2_XFORMPRF_HMAC_SHA2_256:
md = EVP_sha256();
length = SHA256_DIGEST_LENGTH;
break;
case IKEV2_XFORMPRF_HMAC_SHA2_384:
md = EVP_sha384();
length = SHA384_DIGEST_LENGTH;
break;
case IKEV2_XFORMPRF_HMAC_SHA2_512:
md = EVP_sha512();
length = SHA512_DIGEST_LENGTH;
break;
case IKEV2_XFORMPRF_AES128_XCBC:
fixedkey = 128 / 8;
length = fixedkey;
/* FALLTHROUGH */
case IKEV2_XFORMPRF_HMAC_TIGER:
case IKEV2_XFORMPRF_AES128_CMAC:
default:
log_debug("%s: prf %s not supported", __func__,
print_map(id, ikev2_xformprf_map));
break;
}
break;
case IKEV2_XFORMTYPE_INTEGR:
switch (id) {
case IKEV2_XFORMAUTH_HMAC_MD5_96:
md = EVP_md5();
length = MD5_DIGEST_LENGTH;
trunc = 12;
break;
case IKEV2_XFORMAUTH_HMAC_SHA1_96:
md = EVP_sha1();
length = SHA_DIGEST_LENGTH;
trunc = 12;
break;
case IKEV2_XFORMAUTH_HMAC_SHA2_256_128:
md = EVP_sha256();
length = SHA256_DIGEST_LENGTH;
trunc = 16;
break;
case IKEV2_XFORMAUTH_HMAC_SHA2_384_192:
md = EVP_sha384();
length = SHA384_DIGEST_LENGTH;
trunc = 24;
break;
case IKEV2_XFORMAUTH_HMAC_SHA2_512_256:
md = EVP_sha512();
length = SHA512_DIGEST_LENGTH;
trunc = 32;
break;
case IKEV2_XFORMAUTH_NONE:
case IKEV2_XFORMAUTH_DES_MAC:
case IKEV2_XFORMAUTH_KPDK_MD5:
case IKEV2_XFORMAUTH_AES_XCBC_96:
case IKEV2_XFORMAUTH_HMAC_MD5_128:
case IKEV2_XFORMAUTH_HMAC_SHA1_160:
case IKEV2_XFORMAUTH_AES_CMAC_96:
case IKEV2_XFORMAUTH_AES_128_GMAC:
case IKEV2_XFORMAUTH_AES_192_GMAC:
case IKEV2_XFORMAUTH_AES_256_GMAC:
default:
log_debug("%s: auth %s not supported", __func__,
print_map(id, ikev2_xformauth_map));
break;
}
break;
default:
log_debug("%s: hash type %s not supported", __func__,
print_map(id, ikev2_xformtype_map));
break;
}
if (md == NULL)
return (NULL);
if ((hash = calloc(1, sizeof(*hash))) == NULL) {
log_debug("%s: alloc hash", __func__);
return (NULL);
}
hash->hash_type = type;
hash->hash_id = id;
hash->hash_priv = md;
hash->hash_ctx = NULL;
hash->hash_trunc = trunc;
hash->hash_length = length;
hash->hash_fixedkey = fixedkey;
if ((ctx = calloc(1, sizeof(*ctx))) == NULL) {
log_debug("%s: alloc hash ctx", __func__);
hash_free(hash);
return (NULL);
}
HMAC_CTX_init(ctx);
hash->hash_ctx = ctx;
return (hash);
}
struct ibuf *
hash_setkey(struct iked_hash *hash, void *key, size_t keylen)
{
ibuf_release(hash->hash_key);
if ((hash->hash_key = ibuf_new(key, keylen)) == NULL) {
log_debug("%s: alloc hash key", __func__);
return (NULL);
}
return (hash->hash_key);
}
void
hash_free(struct iked_hash *hash)
{
if (hash == NULL)
return;
if (hash->hash_ctx != NULL) {
HMAC_CTX_cleanup(hash->hash_ctx);
free(hash->hash_ctx);
}
ibuf_release(hash->hash_key);
free(hash);
}
void
hash_init(struct iked_hash *hash)
{
HMAC_Init_ex(hash->hash_ctx, hash->hash_key->buf,
ibuf_length(hash->hash_key), hash->hash_priv, NULL);
}
void
hash_update(struct iked_hash *hash, void *buf, size_t len)
{
HMAC_Update(hash->hash_ctx, buf, len);
}
void
hash_final(struct iked_hash *hash, void *buf, size_t *len)
{
unsigned int length = 0;
HMAC_Final(hash->hash_ctx, buf, &length);
*len = (size_t)length;
/* Truncate the result if required by the alg */
if (hash->hash_trunc && *len > hash->hash_trunc)
*len = hash->hash_trunc;
}
size_t
hash_length(struct iked_hash *hash)
{
if (hash->hash_trunc)
return (hash->hash_trunc);
return (hash->hash_length);
}
size_t
hash_keylength(struct iked_hash *hash)
{
return (hash->hash_length);
}
struct iked_cipher *
cipher_new(uint8_t type, uint16_t id, uint16_t id_length)
{
struct iked_cipher *encr;
const EVP_CIPHER *cipher = NULL;
EVP_CIPHER_CTX *ctx = NULL;
int length = 0, fixedkey = 0, ivlength = 0;
switch (type) {
case IKEV2_XFORMTYPE_ENCR:
switch (id) {
case IKEV2_XFORMENCR_3DES:
cipher = EVP_des_ede3_cbc();
length = EVP_CIPHER_block_size(cipher);
fixedkey = EVP_CIPHER_key_length(cipher);
ivlength = EVP_CIPHER_iv_length(cipher);
break;
case IKEV2_XFORMENCR_AES_CBC:
switch (id_length) {
case 128:
cipher = EVP_aes_128_cbc();
break;
case 192:
cipher = EVP_aes_192_cbc();
break;
case 256:
cipher = EVP_aes_256_cbc();
break;
default:
log_debug("%s: invalid key length %d"
" for cipher %s", __func__, id_length,
print_map(id, ikev2_xformencr_map));
break;
}
if (cipher == NULL)
break;
length = EVP_CIPHER_block_size(cipher);
ivlength = EVP_CIPHER_iv_length(cipher);
fixedkey = EVP_CIPHER_key_length(cipher);
break;
case IKEV2_XFORMENCR_DES_IV64:
case IKEV2_XFORMENCR_DES:
case IKEV2_XFORMENCR_RC5:
case IKEV2_XFORMENCR_IDEA:
case IKEV2_XFORMENCR_CAST:
case IKEV2_XFORMENCR_BLOWFISH:
case IKEV2_XFORMENCR_3IDEA:
case IKEV2_XFORMENCR_DES_IV32:
case IKEV2_XFORMENCR_NULL:
case IKEV2_XFORMENCR_AES_CTR:
/* FALLTHROUGH */
default:
log_debug("%s: cipher %s not supported", __func__,
print_map(id, ikev2_xformencr_map));
cipher = NULL;
break;
}
break;
default:
log_debug("%s: cipher type %s not supported", __func__,
print_map(id, ikev2_xformtype_map));
break;
}
if (cipher == NULL)
return (NULL);
if ((encr = calloc(1, sizeof(*encr))) == NULL) {
log_debug("%s: alloc cipher", __func__);
return (NULL);
}
encr->encr_id = id;
encr->encr_priv = cipher;
encr->encr_ctx = NULL;
encr->encr_length = length;
encr->encr_fixedkey = fixedkey;
encr->encr_ivlength = ivlength ? ivlength : length;
if ((ctx = calloc(1, sizeof(*ctx))) == NULL) {
log_debug("%s: alloc cipher ctx", __func__);
cipher_free(encr);
return (NULL);
}
EVP_CIPHER_CTX_init(ctx);
encr->encr_ctx = ctx;
return (encr);
}
struct ibuf *
cipher_setkey(struct iked_cipher *encr, void *key, size_t keylen)
{
ibuf_release(encr->encr_key);
if ((encr->encr_key = ibuf_new(key, keylen)) == NULL) {
log_debug("%s: alloc cipher key", __func__);
return (NULL);
}
return (encr->encr_key);
}
struct ibuf *
cipher_setiv(struct iked_cipher *encr, void *iv, size_t len)
{
ibuf_release(encr->encr_iv);
encr->encr_iv = NULL;
if (iv != NULL) {
if (len < encr->encr_ivlength) {
log_debug("%s: invalid IV length %zu", __func__, len);
return (NULL);
}
encr->encr_iv = ibuf_new(iv, encr->encr_ivlength);
} else {
/* Get new random IV */
encr->encr_iv = ibuf_random(encr->encr_ivlength);
}
if (encr->encr_iv == NULL) {
log_debug("%s: failed to set IV", __func__);
return (NULL);
}
return (encr->encr_iv);
}
void
cipher_free(struct iked_cipher *encr)
{
if (encr == NULL)
return;
if (encr->encr_ctx != NULL) {
EVP_CIPHER_CTX_cleanup(encr->encr_ctx);
free(encr->encr_ctx);
}
ibuf_release(encr->encr_key);
free(encr);
}
void
cipher_init(struct iked_cipher *encr, int enc)
{
EVP_CipherInit_ex(encr->encr_ctx, encr->encr_priv, NULL,
ibuf_data(encr->encr_key), ibuf_data(encr->encr_iv), enc);
EVP_CIPHER_CTX_set_padding(encr->encr_ctx, 0);
}
void
cipher_init_encrypt(struct iked_cipher *encr)
{
cipher_init(encr, 1);
}
void
cipher_init_decrypt(struct iked_cipher *encr)
{
cipher_init(encr, 0);
}
void
cipher_update(struct iked_cipher *encr, void *in, size_t inlen,
void *out, size_t *outlen)
{
int olen;
olen = 0;
if (!EVP_CipherUpdate(encr->encr_ctx, out, &olen, in, inlen)) {
ca_sslerror(__func__);
*outlen = 0;
return;
}
*outlen = (size_t)olen;
}
void
cipher_final(struct iked_cipher *encr, void *out, size_t *outlen)
{
int olen;
olen = 0;
if (!EVP_CipherFinal_ex(encr->encr_ctx, out, &olen)) {
ca_sslerror(__func__);
*outlen = 0;
return;
}
*outlen = (size_t)olen;
}
size_t
cipher_length(struct iked_cipher *encr)
{
return (encr->encr_length);
}
size_t
cipher_keylength(struct iked_cipher *encr)
{
if (encr->encr_fixedkey)
return (encr->encr_fixedkey);
/* Might return zero */
return (ibuf_length(encr->encr_key));
}
size_t
cipher_ivlength(struct iked_cipher *encr)
{
return (encr->encr_ivlength);
}
size_t
cipher_outlength(struct iked_cipher *encr, size_t inlen)
{
return (roundup(inlen, encr->encr_length));
}
struct iked_dsa *
dsa_new(uint16_t id, struct iked_hash *prf, int sign)
{
struct iked_dsa *dsap = NULL, dsa;
bzero(&dsa, sizeof(dsa));
switch (id) {
case IKEV2_AUTH_SIG:
if (sign)
dsa.dsa_priv = EVP_sha256(); /* XXX should be passed */
else
dsa.dsa_priv = NULL; /* set later by dsa_init() */
break;
case IKEV2_AUTH_RSA_SIG:
/* RFC5996 says we SHOULD use SHA1 here */
dsa.dsa_priv = EVP_sha1();
break;
case IKEV2_AUTH_SHARED_KEY_MIC:
if (prf == NULL || prf->hash_priv == NULL)
fatalx("dsa_new: invalid PRF");
dsa.dsa_priv = prf->hash_priv;
dsa.dsa_hmac = 1;
break;
case IKEV2_AUTH_DSS_SIG:
dsa.dsa_priv = EVP_dss1();
break;
case IKEV2_AUTH_ECDSA_256:
dsa.dsa_priv = EVP_sha256();
break;
case IKEV2_AUTH_ECDSA_384:
dsa.dsa_priv = EVP_sha384();
break;
case IKEV2_AUTH_ECDSA_521:
dsa.dsa_priv = EVP_sha512();
break;
default:
log_debug("%s: auth method %s not supported", __func__,
print_map(id, ikev2_auth_map));
break;
}
if ((dsap = calloc(1, sizeof(*dsap))) == NULL) {
log_debug("%s: alloc dsa ctx", __func__);
return (NULL);
}
memcpy(dsap, &dsa, sizeof(*dsap));
dsap->dsa_method = id;
dsap->dsa_sign = sign;
if (dsap->dsa_hmac) {
if ((dsap->dsa_ctx = calloc(1, sizeof(HMAC_CTX))) == NULL) {
log_debug("%s: alloc hash ctx", __func__);
dsa_free(dsap);
return (NULL);
}
HMAC_CTX_init((HMAC_CTX *)dsap->dsa_ctx);
} else {
if ((dsap->dsa_ctx = EVP_MD_CTX_create()) == NULL) {
log_debug("%s: alloc digest ctx", __func__);
dsa_free(dsap);
return (NULL);
}
}
return (dsap);
}
struct iked_dsa *
dsa_sign_new(uint16_t id, struct iked_hash *prf)
{
return (dsa_new(id, prf, 1));
}
struct iked_dsa *
dsa_verify_new(uint16_t id, struct iked_hash *prf)
{
return (dsa_new(id, prf, 0));
}
void
dsa_free(struct iked_dsa *dsa)
{
if (dsa == NULL)
return;
if (dsa->dsa_hmac) {
HMAC_CTX_cleanup((HMAC_CTX *)dsa->dsa_ctx);
free(dsa->dsa_ctx);
} else {
EVP_MD_CTX_destroy((EVP_MD_CTX *)dsa->dsa_ctx);
if (dsa->dsa_key)
EVP_PKEY_free(dsa->dsa_key);
if (dsa->dsa_cert)
X509_free(dsa->dsa_cert);
}
ibuf_release(dsa->dsa_keydata);
free(dsa);
}
struct ibuf *
dsa_setkey(struct iked_dsa *dsa, void *key, size_t keylen, uint8_t type)
{
BIO *rawcert = NULL;
X509 *cert = NULL;
RSA *rsa = NULL;
EC_KEY *ec = NULL;
EVP_PKEY *pkey = NULL;
ibuf_release(dsa->dsa_keydata);
if ((dsa->dsa_keydata = ibuf_new(key, keylen)) == NULL) {
log_debug("%s: alloc signature key", __func__);
return (NULL);
}
if ((rawcert = BIO_new_mem_buf(key, keylen)) == NULL)
goto err;
switch (type) {
case IKEV2_CERT_X509_CERT:
if ((cert = d2i_X509_bio(rawcert, NULL)) == NULL)
goto sslerr;
if ((pkey = X509_get_pubkey(cert)) == NULL)
goto sslerr;
dsa->dsa_cert = cert;
dsa->dsa_key = pkey;
break;
case IKEV2_CERT_RSA_KEY:
if (dsa->dsa_sign) {
if ((rsa = d2i_RSAPrivateKey_bio(rawcert,
NULL)) == NULL)
goto sslerr;
} else {
if ((rsa = d2i_RSAPublicKey_bio(rawcert,
NULL)) == NULL)
goto sslerr;
}
if ((pkey = EVP_PKEY_new()) == NULL)
goto sslerr;
if (!EVP_PKEY_set1_RSA(pkey, rsa))
goto sslerr;
RSA_free(rsa); /* pkey now has the reference */
dsa->dsa_cert = NULL;
dsa->dsa_key = pkey;
break;
case IKEV2_CERT_ECDSA:
if (dsa->dsa_sign) {
if ((ec = d2i_ECPrivateKey_bio(rawcert, NULL)) == NULL)
goto sslerr;
} else {
if ((ec = d2i_EC_PUBKEY_bio(rawcert, NULL)) == NULL)
goto sslerr;
}
if ((pkey = EVP_PKEY_new()) == NULL)
goto sslerr;
if (!EVP_PKEY_set1_EC_KEY(pkey, ec))
goto sslerr;
EC_KEY_free(ec); /* pkey now has the reference */
dsa->dsa_cert = NULL;
dsa->dsa_key = pkey;
break;
default:
if (dsa->dsa_hmac)
break;
log_debug("%s: unsupported key type", __func__);
goto err;
}
return (dsa->dsa_keydata);
sslerr:
ca_sslerror(__func__);
err:
log_debug("%s: error", __func__);
if (rsa != NULL)
RSA_free(rsa);
if (ec != NULL)
EC_KEY_free(ec);
if (pkey != NULL)
EVP_PKEY_free(pkey);
if (cert != NULL)
X509_free(cert);
if (rawcert != NULL)
BIO_free(rawcert);
ibuf_release(dsa->dsa_keydata);
dsa->dsa_keydata = NULL;
return (NULL);
}
int
_dsa_verify_init(struct iked_dsa *dsa, const uint8_t *sig, size_t len)
{
uint8_t oidlen;
size_t i;
int keytype;
if (dsa->dsa_priv != NULL)
return (0);
/*
* For IKEV2_AUTH_SIG the oid of the authentication signature
* is encoded in the first bytes of the auth message.
*/
if (dsa->dsa_method != IKEV2_AUTH_SIG) {
log_debug("%s: dsa_priv not set for %s", __func__,
print_map(dsa->dsa_method, ikev2_auth_map));
return (-1);
}
if (dsa->dsa_key == NULL) {
log_debug("%s: dsa_key not set for %s", __func__,
print_map(dsa->dsa_method, ikev2_auth_map));
return (-1);
}
keytype = EVP_PKEY_type(((EVP_PKEY *)dsa->dsa_key)->type);
if (sig == NULL) {
log_debug("%s: signature missing", __func__);
return (-1);
}
if (len < sizeof(oidlen)) {
log_debug("%s: signature (%zu) too small for oid length",
__func__, len);
return (-1);
}
memcpy(&oidlen, sig, sizeof(oidlen));
if (len < (size_t)oidlen + sizeof(oidlen)) {
log_debug("%s: signature (%zu) too small for oid (%u)",
__func__, len, oidlen);
return (-1);
}
for (i = 0; i < nitems(schemes); i++) {
if (keytype == schemes[i].sc_keytype &&
oidlen == schemes[i].sc_len &&
memcmp(sig + 1, schemes[i].sc_oid,
schemes[i].sc_len) == 0) {
dsa->dsa_priv = (*schemes[i].sc_md)();
log_debug("%s: signature scheme %zd selected",
__func__, i);
return (0);
}
}
log_debug("%s: unsupported signature (%d)", __func__, oidlen);
return (-1);
}
int
dsa_init(struct iked_dsa *dsa, const void *buf, size_t len)
{
int ret;
if (dsa->dsa_hmac) {
if (!HMAC_Init_ex(dsa->dsa_ctx, ibuf_data(dsa->dsa_keydata),
ibuf_length(dsa->dsa_keydata), dsa->dsa_priv, NULL))
return (-1);
return (0);
}
if (dsa->dsa_sign)
ret = EVP_SignInit_ex(dsa->dsa_ctx, dsa->dsa_priv, NULL);
else {
if ((ret = _dsa_verify_init(dsa, buf, len)) != 0)
return (ret);
ret = EVP_VerifyInit_ex(dsa->dsa_ctx, dsa->dsa_priv, NULL);
}
return (ret ? 0 : -1);
}
int
dsa_update(struct iked_dsa *dsa, const void *buf, size_t len)
{
int ret = 1;
if (dsa->dsa_hmac)
ret = HMAC_Update(dsa->dsa_ctx, buf, len);
else if (dsa->dsa_sign)
ret = EVP_SignUpdate(dsa->dsa_ctx, buf, len);
else
ret = EVP_VerifyUpdate(dsa->dsa_ctx, buf, len);
return (ret ? 0 : -1);
}
/* Prefix signature hash with encoded type */
int
_dsa_sign_encode(struct iked_dsa *dsa, uint8_t *ptr, size_t *offp)
{
int keytype;
size_t i;
if (offp)
*offp = 0;
if (dsa->dsa_method != IKEV2_AUTH_SIG)
return (0);
if (dsa->dsa_key == NULL)
return (-1);
keytype = EVP_PKEY_type(((EVP_PKEY *)dsa->dsa_key)->type);
for (i = 0; i < nitems(schemes); i++) {
/* XXX should avoid calling sc_md() each time... */
if (keytype == schemes[i].sc_keytype &&
(dsa->dsa_priv == (*schemes[i].sc_md)()))
break;
}
if (i >= nitems(schemes))
return (-1);
if (ptr) {
ptr[0] = schemes[i].sc_len;
memcpy(ptr + sizeof(ptr[0]), schemes[i].sc_oid,
schemes[i].sc_len);
}
if (offp)
*offp = sizeof(ptr[0]) + schemes[i].sc_len;
return (0);
}
/* Export size of encoded signature hash type */
size_t
dsa_prefix(struct iked_dsa *dsa)
{
size_t off = 0;
if (_dsa_sign_encode(dsa, NULL, &off) < 0)
fatal("dsa_prefix: internal error");
return off;
}
size_t
dsa_length(struct iked_dsa *dsa)
{
if (dsa->dsa_hmac)
return (EVP_MD_size(dsa->dsa_priv));
switch (dsa->dsa_method) {
case IKEV2_AUTH_ECDSA_256:
case IKEV2_AUTH_ECDSA_384:
case IKEV2_AUTH_ECDSA_521:
/* size of concat(r|s) */
return (2 * ((EVP_PKEY_bits(dsa->dsa_key) + 7) / 8));
}
return (dsa_prefix(dsa) + EVP_PKEY_size(dsa->dsa_key));
}
int
_dsa_sign_ecdsa(struct iked_dsa *dsa, uint8_t *ptr, size_t len)
{
ECDSA_SIG *obj = NULL;
uint8_t *otmp = NULL, *tmp;
unsigned int tmplen;
int ret = -1;
int bnlen, off;
if (len % 2)
goto done; /* must be even */
bnlen = len/2;
/*
* (a) create DER signature into 'tmp' buffer
* (b) convert buffer to ECDSA_SIG object
* (c) concatenate the padded r|s BIGNUMS into 'ptr'
*/
if ((tmplen = EVP_PKEY_size(dsa->dsa_key)) == 0)
goto done;
if ((otmp = tmp = calloc(1, tmplen)) == NULL)
goto done;
if (!EVP_SignFinal(dsa->dsa_ctx, tmp, &tmplen, dsa->dsa_key))
goto done;
if (d2i_ECDSA_SIG(&obj, (const uint8_t **)&tmp, tmplen) == NULL)
goto done;
if (BN_num_bytes(obj->r) > bnlen || BN_num_bytes(obj->s) > bnlen)
goto done;
memset(ptr, 0, len);
off = bnlen - BN_num_bytes(obj->r);
BN_bn2bin(obj->r, ptr + off);
off = 2 * bnlen - BN_num_bytes(obj->s);
BN_bn2bin(obj->s, ptr + off);
ret = 0;
done:
free(otmp);
if (obj)
ECDSA_SIG_free(obj);
return (ret);
}
ssize_t
dsa_sign_final(struct iked_dsa *dsa, void *buf, size_t len)
{
unsigned int siglen;
size_t off = 0;
uint8_t *ptr = buf;
if (len < dsa_length(dsa))
return (-1);
if (dsa->dsa_hmac) {
if (!HMAC_Final(dsa->dsa_ctx, buf, &siglen))
return (-1);
} else {
switch (dsa->dsa_method) {
case IKEV2_AUTH_ECDSA_256:
case IKEV2_AUTH_ECDSA_384:
case IKEV2_AUTH_ECDSA_521:
if (_dsa_sign_ecdsa(dsa, buf, len) < 0)
return (-1);
siglen = len;
break;
default:
if (_dsa_sign_encode(dsa, ptr, &off) < 0)
return (-1);
if (!EVP_SignFinal(dsa->dsa_ctx, ptr + off, &siglen,
dsa->dsa_key))
return (-1);
siglen += off;
break;
}
}
return (siglen);
}
int
_dsa_verify_prepare(struct iked_dsa *dsa, uint8_t **sigp, size_t *lenp,
uint8_t **freemep)
{
ECDSA_SIG *obj = NULL;
uint8_t *ptr = NULL;
size_t bnlen, len, off;
int ret = -1;
*freemep = NULL; /* don't return garbage in case of an error */
switch (dsa->dsa_method) {
case IKEV2_AUTH_SIG:
/*
* The first byte of the signature encodes the OID
* prefix length which we need to skip.
*/
off = (*sigp)[0] + 1;
*sigp = *sigp + off;
*lenp = *lenp - off;
*freemep = NULL;
ret = 0;
break;
case IKEV2_AUTH_ECDSA_256:
case IKEV2_AUTH_ECDSA_384:
case IKEV2_AUTH_ECDSA_521:
/*
* sigp points to concatenation r|s, while EVP_VerifyFinal()
* expects the signature as a DER-encoded blob (of the two
* values), so we need to convert the signature in a new
* buffer (we cannot override the given buffer) and the caller
* has to free this buffer ('freeme').
*/
if (*lenp < 64 || *lenp > 132 || *lenp % 2)
goto done;
bnlen = (*lenp)/2;
/* sigp points to concatenation: r|s */
if ((obj = ECDSA_SIG_new()) == NULL ||
BN_bin2bn(*sigp, bnlen, obj->r) == NULL ||
BN_bin2bn(*sigp+bnlen, bnlen, obj->s) == NULL ||
(len = i2d_ECDSA_SIG(obj, &ptr)) == 0)
goto done;
*lenp = len;
*sigp = ptr;
*freemep = ptr;
ptr = NULL;
ret = 0;
break;
default:
return (0);
}
done:
free(ptr);
if (obj)
ECDSA_SIG_free(obj);
return (ret);
}
ssize_t
dsa_verify_final(struct iked_dsa *dsa, void *buf, size_t len)
{
uint8_t sig[EVP_MAX_MD_SIZE];
uint8_t *ptr = buf, *freeme = NULL;
unsigned int siglen = sizeof(sig);
if (dsa->dsa_hmac) {
if (!HMAC_Final(dsa->dsa_ctx, sig, &siglen))
return (-1);
if (siglen != len || memcmp(buf, sig, siglen) != 0)
return (-1);
} else {
if (_dsa_verify_prepare(dsa, &ptr, &len, &freeme) < 0)
return (-1);
if (EVP_VerifyFinal(dsa->dsa_ctx, ptr, len,
dsa->dsa_key) != 1) {
free(freeme);
ca_sslerror(__func__);
return (-1);
}
free(freeme);
}
return (0);
}
|