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
|
/* $OpenBSD: x509.c,v 1.26 2000/03/08 08:42:15 niklas Exp $ */
/* $EOM: x509.c,v 1.37 2000/03/07 16:09:36 ho Exp $ */
/*
* Copyright (c) 1998, 1999 Niels Provos. All rights reserved.
* Copyright (c) 1999, 2000 Niklas Hallqvist. All rights reserved.
* Copyright (c) 1999, 2000 Angelos D. Keromytis. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. All advertising materials mentioning features or use of this software
* must display the following acknowledgement:
* This product includes software developed by Ericsson Radio Systems.
* 4. The name of the author may not be used to endorse or promote products
* derived from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
/*
* This code was written under funding by Ericsson Radio Systems.
*/
#ifdef USE_X509
#include <sys/param.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <dirent.h>
#include <fcntl.h>
#include <gmp.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#ifdef USE_POLICY
#include <regex.h>
#include <keynote.h>
#endif /* USE_POLICY */
#include "sysdep.h"
#include "conf.h"
#include "dyn.h"
#include "exchange.h"
#include "hash.h"
#include "ike_auth.h"
#include "sa.h"
#include "ipsec.h"
#include "log.h"
#include "policy.h"
#include "x509.h"
/*
* X509_STOREs do not support subjectAltNames, so we have to build
* our own hash table.
*/
/*
* XXX Actually this store is not really useful, we never use it as we have
* our own hash table. It also gets collisons if we have several certificates
* only differing in subjectAltName.
*/
static X509_STORE *x509_certs = NULL;
static X509_STORE *x509_cas = NULL;
/* Initial number of bits used as hash. */
#define INITIAL_BUCKET_BITS 6
struct x509_hash {
LIST_ENTRY (x509_hash) link;
X509 *cert;
};
static LIST_HEAD (x509_list, x509_hash) *x509_tab = NULL;
/* Works both as a maximum index and a mask. */
static int bucket_mask;
#ifdef USE_POLICY
/*
* Given an X509 certificate, create a KeyNote assertion where
* Issuer/Subject -> Authorizer/Licensees,
* XXX RSA-specific
*/
int
x509_generate_kn (X509 *cert)
{
char *fmt = "Authorizer: \"rsa-hex:%s\"\nLicensees: \"rsa-hex:%s\"\n";
char *ikey, *skey, *buf, isname[256], subname[256], *buf2;
char *fmt2 = "Authorizer: \"DN:%s\"\nLicensees: \"DN:%s\"\n";
X509_NAME *issuer, *subject;
struct keynote_deckey dc;
X509_STORE_CTX csc;
X509_OBJECT obj;
X509 *icert;
RSA *key;
issuer = LC (X509_get_issuer_name, (cert));
subject = LC (X509_get_subject_name, (cert));
/* Missing or self-signed, ignore cert but don't report failure */
if (!issuer || !subject || !LC (X509_name_cmp, (issuer, subject)))
return 1;
if (!x509_cert_get_key (cert, &key))
{
log_print ("x509_generate_kn: failed to get public key from cert");
return 0;
}
dc.dec_algorithm = KEYNOTE_ALGORITHM_RSA;
dc.dec_key = (void *) key;
ikey = LK (kn_encode_key, (&dc, INTERNAL_ENC_PKCS1, ENCODING_HEX,
KEYNOTE_PUBLIC_KEY));
if (LKV (keynote_errno) == ERROR_MEMORY)
log_fatal ("x509_generate_kn: failed to get memory for public key");
if (ikey == NULL)
{
return 0;
LC (RSA_free, (key));
}
LC (RSA_free, (key));
/* Now find issuer's certificate so we can get the public key */
LC (X509_STORE_CTX_init, (&csc, x509_cas, cert, NULL));
if (LC (X509_STORE_get_by_subject, (&csc, X509_LU_X509, issuer, &obj)) !=
X509_LU_X509)
{
LC (X509_STORE_CTX_cleanup, (&csc));
LC (X509_STORE_CTX_init, (&csc, x509_certs, cert, NULL));
if (LC (X509_STORE_get_by_subject, (&csc, X509_LU_X509, issuer, &obj)) !=
X509_LU_X509)
{
LC (X509_STORE_CTX_cleanup, (&csc));
return 0;
}
}
LC (X509_STORE_CTX_cleanup, (&csc));
icert = obj.data.x509;
if (icert == NULL)
{
free(ikey);
log_print ("x509_generate_kn: "
"missing certificates, cannot construct X509 chain");
return 0;
}
if (!x509_cert_get_key (icert, &key))
{
free (ikey);
log_print ("x509_generate_kn: failed to get public key from cert");
return 0;
}
LC (X509_OBJECT_free_contents, (&obj));
dc.dec_algorithm = KEYNOTE_ALGORITHM_RSA;
dc.dec_key = (void *) key;
skey = LK (kn_encode_key, (&dc, INTERNAL_ENC_PKCS1, ENCODING_HEX,
KEYNOTE_PUBLIC_KEY));
if (LKV (keynote_errno) == ERROR_MEMORY)
log_fatal ("x509_generate_kn: failed to get memory for public key");
if (skey == NULL)
{
free (ikey);
LC (RSA_free, (key));
return 0;
}
LC (RSA_free, (key));
buf = calloc (strlen (fmt) + strlen (ikey) + strlen (skey), sizeof (char));
if (buf == NULL)
log_fatal ("x509_generate_kn: failed to allocate memory for KeyNote credential");
sprintf (buf, fmt, skey, ikey);
free (ikey);
free (skey);
if (LK (kn_add_assertion, (keynote_sessid, buf, strlen (buf),
ASSERT_FLAG_LOCAL)) == -1)
{
log_error ("x509_generate_kn: failed to add new KeyNote credential");
free (buf);
return 0;
}
LC (X509_NAME_oneline, (issuer, isname, 256));
LC (X509_NAME_oneline, (subject, subname, 256));
buf2 = calloc(strlen (fmt2) + strlen (isname) + strlen (subname),
sizeof(char));
if (buf == NULL)
log_fatal ("x509_generate_kn: failed to allocate memory for KeyNote credential");
sprintf (buf2, fmt2, isname, subname);
if (LK (kn_add_assertion, (keynote_sessid, buf2, strlen(buf2),
ASSERT_FLAG_LOCAL)) == -1)
{
log_error ("x509_generate_kn: failed to add new KeyNote credential");
free (buf2);
return 0;
}
/*
* XXX
* Should add a remove-assertion event set to the expiration of the
* X509 cert (and remove such events when we reinit and close the keynote
* session) -- that's relevant only for really long-lived daemons.
* Alternatively (and preferably), we can encode the X509 expiration
* in the KeyNote Conditions.
* XXX
*/
free (buf);
return 1;
}
#endif /* USE_POLICY */
u_int16_t
x509_hash (u_int8_t *id, size_t len)
{
int i;
u_int16_t bucket = 0;
/* XXX We might resize if we are crossing a certain threshold. */
for (i = 0; i < (len & ~1); i += 2)
{
/* Doing it this way avoids alignment problems. */
bucket ^= (id[i] + 1) * (id[i + 1] + 257);
}
/* Hash in the last character of odd length IDs too. */
if (i < len)
bucket ^= (id[i] + 1) * (id[i] + 257);
bucket &= bucket_mask;
return bucket;
}
void
x509_hash_init ()
{
struct x509_hash *certh;
int i;
bucket_mask = (1 << INITIAL_BUCKET_BITS) - 1;
/* If reinitializing, free existing entries */
if (x509_tab)
{
for (i = 0; i <= bucket_mask; i++)
for (certh = LIST_FIRST (&x509_tab[i]); certh;
certh = LIST_NEXT (certh, link))
{
LIST_REMOVE (certh, link);
LC (X509_free, (certh->cert));
free (certh);
}
free(x509_tab);
}
x509_tab = malloc ((bucket_mask + 1) * sizeof (struct x509_list));
if (!x509_tab)
log_fatal ("x509_hash_init: malloc (%d) failed",
(bucket_mask + 1) * sizeof (struct x509_list));
for (i = 0; i <= bucket_mask; i++)
{
LIST_INIT (&x509_tab[i]);
}
}
/* Lookup a certificate by an ID blob. */
X509 *
x509_hash_find (u_int8_t *id, size_t len)
{
struct x509_hash *cert;
u_int8_t *cid;
size_t clen;
for (cert = LIST_FIRST (&x509_tab[x509_hash (id, len)]); cert;
cert = LIST_NEXT (cert, link))
{
if (!x509_cert_get_subject (cert->cert, &cid, &clen))
continue;
if (clen != len || memcmp (id, cid, len) != 0)
{
free (cid);
continue;
}
free (cid);
LOG_DBG ((LOG_CRYPTO, 70, "x509_hash_find: return X509 %p",
cert->cert));
return cert->cert;
}
LOG_DBG ((LOG_CRYPTO, 70, "x509_hash_find: no certificate matched query"));
return 0;
}
int
x509_hash_enter (X509 *cert)
{
u_int16_t bucket = 0;
u_int8_t *id;
u_int32_t len;
struct x509_hash *certh;
if (!x509_cert_get_subject (cert, &id, &len))
{
log_print ("x509_hash_enter: can not retrieve subjectAltName");
return 0;
}
certh = malloc (sizeof *certh);
if (!certh)
{
free (id);
log_error ("x509_hash_enter: malloc (%d) failed", sizeof *certh);
return 0;
}
memset (certh, 0, sizeof *certh);
certh->cert = cert;
bucket = x509_hash (id, len);
free (id);
LIST_INSERT_HEAD (&x509_tab[bucket], certh, link);
LOG_DBG ((LOG_CRYPTO, 70, "x509_hash_enter: cert %p added to bucket %d",
cert, bucket));
return 1;
}
/* X509 Certificate Handling functions. */
int
x509_read_from_dir (X509_STORE *ctx, char *name, int hash)
{
DIR *dir;
struct dirent *file;
BIO *certh;
X509 *cert;
char fullname[PATH_MAX];
int off, size;
if (strlen (name) >= sizeof fullname - 1)
{
log_print ("x509_read_from_dir: directory name too long");
return 0;
}
LOG_DBG ((LOG_CRYPTO, 40, "x509_read_from_dir: reading certs from %s",
name));
dir = opendir (name);
if (!dir)
{
log_error ("x509_read_from_dir: opendir (\"%s\") failed", name);
return 0;
}
strncpy (fullname, name, sizeof fullname - 1);
fullname[sizeof fullname - 1] = 0;
off = strlen (fullname);
size = sizeof fullname - off - 1;
while ((file = readdir (dir)) != NULL)
{
if (file->d_type != DT_REG && file->d_type != DT_LNK)
continue;
LOG_DBG ((LOG_CRYPTO, 60, "x509_read_from_dir: reading certificate %s",
file->d_name));
certh = LC (BIO_new, (LC (BIO_s_file, ())));
if (!certh)
{
log_error ("x509_read_from_dir: BIO_new (BIO_s_file ()) failed");
continue;
}
strncpy (fullname + off, file->d_name, size);
fullname[off + size] = 0;
if (LC (BIO_read_filename, (certh, fullname)) == -1)
{
LC (BIO_free, (certh));
log_error ("x509_read_from_dir: "
"BIO_read_filename (certh, \"%s\") failed",
fullname);
continue;
}
#if SSLEAY_VERSION_NUMBER >= 0x00904100L
cert = LC (PEM_read_bio_X509, (certh, NULL, NULL, NULL));
#else
cert = LC (PEM_read_bio_X509, (certh, NULL, NULL));
#endif
LC (BIO_free, (certh));
if (cert == NULL)
{
log_error ("x509_read_from_dir: PEM_read_bio_X509 failed for %s",
file->d_name);
continue;
}
if (!LC (X509_STORE_add_cert, (ctx, cert)))
{
/*
* This is actually expected if we have several certificates only
* differing in subjectAltName, which is not an something that is
* strange. Consider multi-homed machines.
*/
LOG_DBG ((LOG_CRYPTO, 50,
"x509_read_from_dir: X509_STORE_add_cert failed for %s",
file->d_name));
}
if (hash)
{
#ifdef USE_POLICY
#ifdef USE_KEYNOTE
if (x509_generate_kn (cert) == 0)
#else
if (libkeynote && x509_generate_kn (cert) == 0)
#endif
{
log_print ("x509_read_from_dir: x509_generate_kn failed");
continue;
}
#endif /* USE_POLICY */
}
if (hash && !x509_hash_enter (cert))
log_print ("x509_read_from_dir: x509_hash_enter (%s) failed",
file->d_name);
}
closedir (dir);
return 1;
}
/* Initialize our databases and load our own certificates. */
int
x509_cert_init (void)
{
char *dirname;
x509_hash_init ();
/* Process CA certificates we will trust. */
dirname = conf_get_str ("X509-certificates", "CA-directory");
if (!dirname)
{
log_print ("x509_cert_init: no CA-directory");
return 0;
}
/* Free if already initialized */
if (x509_cas)
LC (X509_STORE_free, (x509_cas));
x509_cas = LC (X509_STORE_new, ());
if (!x509_cas)
{
log_print ("x509_cert_init: creating new X509_STORE failed");
return 0;
}
if (!x509_read_from_dir (x509_cas, dirname, 0))
{
log_print ("x509_cert_init: x509_read_from_dir failed");
return 0;
}
/* Process client certificates we will accept. */
dirname = conf_get_str ("X509-certificates", "Cert-directory");
if (!dirname)
{
log_print ("x509_cert_init: no Cert-directory");
return 0;
}
/* Free if already initialized */
if (x509_certs)
LC (X509_STORE_free, (x509_certs));
x509_certs = LC (X509_STORE_new, ());
if (!x509_certs)
{
log_print ("x509_cert_init: creating new X509_STORE failed");
return 0;
}
if (!x509_read_from_dir (x509_certs, dirname, 1))
{
log_print ("x509_cert_init: x509_read_from_dir failed");
return 0;
}
return 1;
}
void *
x509_cert_get (u_int8_t *asn, u_int32_t len)
{
#ifndef USE_LIBCRYPTO
/*
* If we don't have a statically linked libcrypto, the dlopen must have
* succeeded for X.509 to be usable.
*/
if (!libcrypto)
return 0;
#endif
return x509_from_asn (asn, len);
}
int
x509_cert_validate (void *scert)
{
X509_STORE_CTX csc;
X509_NAME *issuer, *subject;
X509 *cert = (X509 *)scert;
EVP_PKEY *key;
int res;
/*
* Validate the peer certificate by checking with the CA certificates we
* trust.
*/
LC (X509_STORE_CTX_init, (&csc, x509_cas, cert, NULL));
res = LC (X509_verify_cert, (&csc));
LC (X509_STORE_CTX_cleanup, (&csc));
/* Return if validation succeeded or self-signed certs are not accepted. */
if (res || !conf_get_str ("X509-certificates", "Accept-self-signed"))
return res;
issuer = LC (X509_get_issuer_name, (cert));
subject = LC (X509_get_subject_name, (cert));
if (!issuer || !subject || LC (X509_name_cmp, (issuer, subject)))
return 0;
key = LC (X509_get_pubkey, (cert));
if (!key)
return 0;
if (LC (X509_verify, (cert, key)) == -1)
return 0;
return 1;
}
int
x509_cert_insert (void *scert)
{
X509 *cert;
int res;
cert = LC (X509_dup, ((X509 *)scert));
if (!cert)
{
log_print ("x509_cert_insert: X509_dup failed");
return 0;
}
#ifdef USE_POLICY
#ifdef USE_KEYNOTE
if (x509_generate_kn (cert) == 0)
#else
if (libkeynote && x509_generate_kn (cert) == 0)
#endif
{
log_print ("x509_cert_insert: x509_generate_kn failed");
LC (X509_free, (cert));
return 0;
}
#endif /* USE_POLICY */
res = x509_hash_enter (cert);
if (!res)
LC (X509_free, (cert));
return res;
}
void
x509_cert_free (void *cert)
{
LC (X509_free, ((X509 *)cert));
}
/* Validate the BER Encoding of a RDNSequence in the CERT_REQ payload. */
int
x509_certreq_validate (u_int8_t *asn, u_int32_t len)
{
int res = 1;
#if 0
struct norm_type name = SEQOF ("issuer", RDNSequence);
if (!asn_template_clone (&name, 1)
|| (asn = asn_decode_sequence (asn, len, &name)) == 0)
{
log_print ("x509_certreq_validate: can not decode 'acceptable CA' info");
res = 0;
}
asn_free (&name);
#endif
/* XXX - not supported directly in SSL - later */
return res;
}
/* Decode the BER Encoding of a RDNSequence in the CERT_REQ payload. */
void *
x509_certreq_decode (u_int8_t *asn, u_int32_t len)
{
#if 0
/* XXX This needs to be done later. */
struct norm_type aca = SEQOF ("aca", RDNSequence);
struct norm_type *tmp;
struct x509_aca naca, *ret;
if (!asn_template_clone (&aca, 1)
|| (asn = asn_decode_sequence (asn, len, &aca)) == 0)
{
log_print ("x509_certreq_validate: can not decode 'acceptable CA' info");
goto fail;
}
memset (&naca, 0, sizeof (naca));
tmp = asn_decompose ("aca.RelativeDistinguishedName.AttributeValueAssertion",
&aca);
if (!tmp)
goto fail;
x509_get_attribval (tmp, &naca.name1);
tmp = asn_decompose ("aca.RelativeDistinguishedName[1]"
".AttributeValueAssertion", &aca);
if (tmp)
x509_get_attribval (tmp, &naca.name2);
asn_free (&aca);
ret = malloc (sizeof (struct x509_aca));
if (ret)
memcpy (ret, &naca, sizeof (struct x509_aca));
else
{
log_error ("x509_certreq_decode: malloc (%d) failed",
sizeof (struct x509_aca));
x509_free_aca (&aca);
}
return ret;
fail:
asn_free (&aca);
#endif
return 0;
}
void
x509_free_aca (void *blob)
{
struct x509_aca *aca = blob;
if (aca->name1.type)
free (aca->name1.type);
if (aca->name1.val)
free (aca->name1.val);
if (aca->name2.type)
free (aca->name2.type);
if (aca->name2.val)
free (aca->name2.val);
}
X509 *
x509_from_asn (u_char *asn, u_int len)
{
BIO *certh;
X509 *scert = NULL;
certh = LC (BIO_new, (LC (BIO_s_mem, ())));
if (!certh)
{
log_error ("x509_from_asn: BIO_new (BIO_s_mem ()) failed");
return NULL;
}
if (LC (BIO_write, (certh, asn, len)) == -1)
{
log_error ("x509_from_asn: BIO_write failed\n");
goto end;
}
scert = LC (d2i_X509_bio, (certh, NULL));
if (!scert)
{
log_print ("x509_from_asn: d2i_X509_bio failed\n");
goto end;
}
end:
LC (BIO_free, (certh));
return scert;
}
/*
* Check that a certificate has a subjectAltName and that it matches our ID.
*/
int
x509_check_subjectaltname (u_char *id, u_int id_len, X509 *scert)
{
u_int8_t *altname;
u_int32_t altlen;
int type, idtype, ret;
type = x509_cert_subjectaltname (scert, &altname, &altlen);
if (!type)
{
log_print ("x509_check_subjectaltname: can't access subjectAltName");
return 0;
}
/*
* Now that we have the X509 certicate in native form, get the
* subjectAltName extension and verify that it matches our ID.
*/
/* XXX Get type of ID. */
idtype = id[0];
id += ISAKMP_ID_DATA_OFF - ISAKMP_GEN_SZ;
id_len -= ISAKMP_ID_DATA_OFF - ISAKMP_GEN_SZ;
ret = 0;
switch (idtype)
{
case IPSEC_ID_IPV4_ADDR:
if (type == X509v3_IPV4_ADDR)
ret = 1;
break;
case IPSEC_ID_FQDN:
if (type == X509v3_DNS_NAME)
ret = 1;
break;
case IPSEC_ID_USER_FQDN:
if (type == X509v3_RFC_NAME)
ret = 1;
break;
default:
ret = 0;
break;
}
if (!ret)
{
LOG_DBG ((LOG_CRYPTO, 50,
"x509_check_subjectaltname: "
"our ID type does not match X509 cert ID type"));
return 0;
}
if (altlen != id_len || memcmp (altname, id, id_len) != 0)
{
LOG_DBG ((LOG_CRYPTO, 50,
"x509_check_subjectaltname: "
"our ID does not match X509 cert ID"));
return 0;
}
return 1;
}
/*
* Obtain a certificate from an acceptable CA.
* XXX We don't check if the certificate we find is from an accepted CA.
*/
int
x509_cert_obtain (u_int8_t *id, size_t id_len, void *data, u_int8_t **cert,
u_int32_t *certlen)
{
struct x509_aca *aca = data;
X509 *scert;
u_char *p;
if (aca)
LOG_DBG ((LOG_CRYPTO, 60,
"x509_cert_obtain: acceptable certificate authorities here"));
/* We need our ID to find a certificate. */
if (!id)
{
log_print ("x509_cert_obtain: ID is missing");
return 0;
}
scert = x509_hash_find (id, id_len);
if (!scert)
return 0;
if (!x509_check_subjectaltname (id, id_len, scert))
{
log_print ("x509_cert_obtain: subjectAltName does not match id");
free (*cert);
return 0;
}
*certlen = LC (i2d_X509, (scert, NULL));
p = *cert = malloc (*certlen);
if (!p)
{
log_error ("x509_cert_obtain: malloc (%d) failed", *certlen);
return 0;
}
*certlen = LC (i2d_X509, (scert, &p));
return 1;
}
/* Returns a pointer to the subjectAltName information of X509 certificate. */
int
x509_cert_subjectaltname (X509 *scert, u_int8_t **altname, u_int32_t *len)
{
X509_EXTENSION *subjectaltname;
u_int8_t *sandata;
int extpos;
int santype, sanlen;
extpos = LC (X509_get_ext_by_NID, (scert, NID_subject_alt_name, -1));
if (extpos == -1)
{
log_print ("x509_cert_subjectaltname: "
"certificate does not contain subjectAltName");
return 0;
}
subjectaltname = LC (X509_get_ext, (scert, extpos));
if (!subjectaltname || !subjectaltname->value
|| !subjectaltname->value->data || subjectaltname->value->length < 4)
{
log_print ("x509_check_subjectaltname: "
"invalid subjectaltname extension");
return 0;
}
/* SSL does not handle unknown ASN stuff well, do it by hand. */
sandata = subjectaltname->value->data;
santype = sandata[2] & 0x3f;
sanlen = sandata[3];
sandata += 4;
if (sanlen + 4 != subjectaltname->value->length)
{
log_print ("x509_check_subjectaltname: subjectaltname invalid length");
return 0;
}
*len = sanlen;
*altname = sandata;
return santype;
}
int
x509_cert_get_subject (void *scert, u_int8_t **id, u_int32_t *id_len)
{
X509 *cert = scert;
int type;
u_int8_t *altname;
u_int32_t altlen;
type = x509_cert_subjectaltname (cert, &altname, &altlen);
switch (type)
{
case X509v3_DNS_NAME:
case X509v3_RFC_NAME:
{
char *buf;
buf = malloc (altlen + ISAKMP_ID_DATA_OFF);
if (!buf)
{
log_print ("x509_cert_get_subject: malloc (%d) failed",
altlen + ISAKMP_ID_DATA_OFF);
return 0;
}
if (type == X509v3_DNS_NAME)
SET_ISAKMP_ID_TYPE (buf, IPSEC_ID_FQDN);
else
SET_ISAKMP_ID_TYPE (buf, IPSEC_ID_USER_FQDN);
SET_IPSEC_ID_PROTO (buf + ISAKMP_ID_DOI_DATA_OFF, 0);
SET_IPSEC_ID_PORT (buf + ISAKMP_ID_DOI_DATA_OFF, 0);
memcpy (buf + ISAKMP_ID_DATA_OFF, altname, altlen);
*id_len = ISAKMP_ID_DATA_OFF + altlen - ISAKMP_GEN_SZ;
*id = malloc (*id_len);
if (!*id)
{
log_print ("x509_cert_get_subject: malloc (%d) failed", *id_len);
free (buf);
return 0;
}
memcpy (*id, buf + ISAKMP_GEN_SZ, *id_len);
free (buf);
}
break;
case X509v3_IPV4_ADDR:
{
char buf[ISAKMP_ID_DATA_OFF + 4];
/* XXX sizeof IPV4_ADDR, how any better? */
if (altlen != 4)
{
log_print ("x509_cert_get_subject: length != IP4addr: %d",
altlen);
return 0;
}
SET_ISAKMP_ID_TYPE (buf, IPSEC_ID_IPV4_ADDR);
SET_IPSEC_ID_PROTO (buf + ISAKMP_ID_DOI_DATA_OFF, 0);
SET_IPSEC_ID_PORT (buf + ISAKMP_ID_DOI_DATA_OFF, 0);
memcpy (buf + ISAKMP_ID_DATA_OFF, altname, altlen);
*id_len = ISAKMP_ID_DATA_OFF + 4 - ISAKMP_GEN_SZ;
*id = malloc (*id_len);
if (!*id)
{
log_print ("x509_cert_get_subject: malloc (%d) failed", *id_len);
return 0;
}
memcpy (*id, buf + ISAKMP_GEN_SZ, *id_len);
}
break;
default:
log_print ("x509_cert_get_subject: unsupported subjectAltName type: %d",
type);
return 0;
}
return 1;
}
int
x509_cert_get_key (void *scert, void *keyp)
{
X509 *cert = scert;
EVP_PKEY *key;
key = LC (X509_get_pubkey, (cert));
/* Check if we got the right key type */
if (key->type != EVP_PKEY_RSA)
{
log_print ("x509_cert_get_key: public key is not a RSA key");
LC (X509_free, (cert));
return 0;
}
*(RSA **)keyp = LC (RSAPublicKey_dup, (key->pkey.rsa));
return *(RSA **)keyp == NULL ? 0 : 1;
}
#endif /* USE_X509 */
|