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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
|
// **********************************************************************
//
// Copyright (c) 2003-2016 ZeroC, Inc. All rights reserved.
//
// This copy of Ice is licensed to you under the terms described in the
// ICE_LICENSE file included in this distribution.
//
// **********************************************************************
#include <IceUtil/DisableWarnings.h>
#include <IceUtil/Mutex.h>
#include <IceUtil/MutexPtrLock.h>
#include <IceUtil/StringUtil.h>
#include <IceSSL/Plugin.h>
#include <IceSSL/Util.h>
#include <IceSSL/RFC2253.h>
#include <Ice/Object.h>
#if defined(ICE_USE_OPENSSL)
# include <openssl/x509v3.h>
# include <openssl/pem.h>
//
// Avoid old style cast warnings from OpenSSL macros
//
# pragma GCC diagnostic ignored "-Wold-style-cast"
#elif defined(ICE_USE_SECURE_TRANSPORT)
# include <Security/Security.h>
#endif
#ifdef __SUNPRO_CC
//
// The call to sk_GENERAL_NAME_pop_free fails to compile if we don't
// remove the extern "C" vs non extern "C" check with the macro below:
//
extern "C" typedef void (*FreeFunc)(void*);
#undef CHECKED_SK_FREE_FUNC
#define CHECKED_SK_FREE_FUNC(type, p) \
(FreeFunc) (p)
#endif
using namespace std;
using namespace Ice;
using namespace IceSSL;
#if defined(ICE_USE_SECURE_TRANSPORT) || defined(ICE_USE_SCHANNEL)
//
// Map a certificate OID to its alias
//
struct CertificateOID
{
const char* name;
const char* alias;
};
const CertificateOID certificateOIDS[] =
{
{"2.5.4.3", "CN"},
{"2.5.4.4", "SN"},
{"2.5.4.5", "DeviceSerialNumber"},
{"2.5.4.6", "C"},
{"2.5.4.7", "L"},
{"2.5.4.8", "ST"},
{"2.5.4.9", "STREET"},
{"2.5.4.10", "O"},
{"2.5.4.11", "OU"},
{"2.5.4.12", "T"},
{"2.5.4.42", "G"},
{"2.5.4.43", "I"},
{"1.2.840.113549.1.9.8", "unstructuredAddress"},
{"1.2.840.113549.1.9.2", "unstructuredName"},
{"1.2.840.113549.1.9.1", "emailAddress"},
{"0.9.2342.19200300.100.1.25", "DC"}
};
const int certificateOIDSSize = sizeof(certificateOIDS) / sizeof(CertificateOID);
#endif
#if defined(ICE_USE_SECURE_TRANSPORT)
string
certificateOIDAlias(const string& name)
{
for(int i = 0; i < certificateOIDSSize; ++i)
{
const CertificateOID* certificateOID = &certificateOIDS[i];
assert(certificateOID);
if(name == certificateOID->name)
{
return certificateOID->alias;
}
}
return name;
}
//
// Map alternative name alias to its types.
//
const char* certificateAlternativeNameTypes[] = {"", "Email Address", "DNS Name", "", "Directory Name", "", "URI",
"IP Address"};
const int certificateAlternativeNameTypesSize = sizeof(certificateAlternativeNameTypes) / sizeof(char*);
int
certificateAlternativeNameType(const string& alias)
{
if(!alias.empty())
{
for(int i = 0; i < certificateAlternativeNameTypesSize; ++i)
{
if(alias == certificateAlternativeNameTypes[i])
{
return i;
}
}
}
return -1; // Not supported
}
string
escapeX509Name(const string& name)
{
ostringstream os;
for(string::const_iterator i = name.begin(); i != name.end(); ++i)
{
switch(*i)
{
case ',':
case '=':
case '+':
case '<':
case '>':
case '#':
case ';':
{
os << '\\';
}
default:
{
break;
}
}
os << *i;
}
return os.str();
}
DistinguishedName
getX509Name(SecCertificateRef cert, CFTypeRef key)
{
assert(key == kSecOIDX509V1IssuerName || key == kSecOIDX509V1SubjectName);
list<pair<string, string> > rdnPairs;
CFDictionaryRef property = getCertificateProperty(cert, key);
if(property)
{
CFArrayRef dn = (CFArrayRef)CFDictionaryGetValue(property, kSecPropertyKeyValue);
int size = CFArrayGetCount(dn);
for(int i = 0; i < size; ++i)
{
CFDictionaryRef dict = (CFDictionaryRef)CFArrayGetValueAtIndex(dn, i);
rdnPairs.push_front(make_pair(
certificateOIDAlias(fromCFString((CFStringRef)CFDictionaryGetValue(dict, kSecPropertyKeyLabel))),
escapeX509Name(fromCFString((CFStringRef)CFDictionaryGetValue(dict, kSecPropertyKeyValue)))));
}
CFRelease(property);
}
return DistinguishedName(rdnPairs);
}
vector<pair<int, string> >
getX509AltName(SecCertificateRef cert, CFTypeRef key)
{
assert(key == kSecOIDIssuerAltName || key == kSecOIDSubjectAltName);
CFDictionaryRef property = getCertificateProperty(cert, key);
vector<pair<int, string> > pairs;
if(property)
{
CFArrayRef names = (CFArrayRef)CFDictionaryGetValue(property, kSecPropertyKeyValue);
int size = CFArrayGetCount(names);
for(int i = 0; i < size; ++i)
{
CFDictionaryRef dict = (CFDictionaryRef)CFArrayGetValueAtIndex(names, i);
int type = certificateAlternativeNameType(fromCFString(
(CFStringRef)CFDictionaryGetValue(dict, kSecPropertyKeyLabel)));
if(type != -1)
{
CFTypeRef v = (CFTypeRef)CFDictionaryGetValue(dict, kSecPropertyKeyValue);
CFStringRef t = (CFStringRef)CFDictionaryGetValue(dict, kSecPropertyKeyType);
if(CFEqual(t, kSecPropertyTypeString) || CFEqual(t, kSecPropertyTypeTitle))
{
pairs.push_back(make_pair(type, fromCFString((CFStringRef)v)));
}
else if(CFEqual(t, kSecPropertyTypeURL))
{
pairs.push_back(make_pair(type, fromCFString(CFURLGetString((CFURLRef)v))));
}
else if(CFEqual(t, kSecPropertyTypeSection))
{
CFArrayRef section = (CFArrayRef)v;
ostringstream os;
for(int i = 0, count = CFArrayGetCount(section); i < count;)
{
CFDictionaryRef d = (CFDictionaryRef)CFArrayGetValueAtIndex(section, i);
CFStringRef sectionLabel = (CFStringRef)CFDictionaryGetValue(d, kSecPropertyKeyLabel);
CFStringRef sectionValue = (CFStringRef)CFDictionaryGetValue(d, kSecPropertyKeyValue);
os << certificateOIDAlias(fromCFString(sectionLabel)) << "=" << fromCFString(sectionValue);
if(++i < count)
{
os << ",";
}
}
pairs.push_back(make_pair(type, os.str()));
}
}
}
CFRelease(property);
}
return pairs;
}
IceUtil::Time
getX509Date(SecCertificateRef cert, CFTypeRef key)
{
assert(key == kSecOIDX509V1ValidityNotAfter || key == kSecOIDX509V1ValidityNotBefore);
CFDictionaryRef property = getCertificateProperty(cert, key);
CFAbsoluteTime seconds = 0;
if(property)
{
CFNumberRef date = (CFNumberRef)CFDictionaryGetValue(property, kSecPropertyKeyValue);
CFNumberGetValue(date, kCFNumberDoubleType, &seconds);
CFRelease(property);
}
return IceUtil::Time::secondsDouble(kCFAbsoluteTimeIntervalSince1970 + seconds);
}
string
getX509String(SecCertificateRef cert, CFTypeRef key)
{
assert(key == kSecOIDX509V1SerialNumber || key == kSecOIDX509V1Version);
CFDictionaryRef property = getCertificateProperty(cert, key);
string value;
if(property)
{
value = fromCFString((CFStringRef)CFDictionaryGetValue(property, kSecPropertyKeyValue));
CFRelease(property);
}
return value;
}
#elif defined(ICE_USE_SCHANNEL)
void
loadCertificate(PCERT_SIGNED_CONTENT_INFO* cert, const char* buffer, DWORD length)
{
DWORD outLength = length;
vector<BYTE> outBuffer;
outBuffer.resize(outLength);
if(!CryptStringToBinary(buffer, length, CRYPT_STRING_BASE64HEADER, &outBuffer[0], &outLength, 0, 0))
{
//
// Base64 data should always be bigger than binary
//
assert(GetLastError() != ERROR_MORE_DATA);
throw CertificateEncodingException(__FILE__, __LINE__, IceUtilInternal::lastErrorToString());
}
DWORD decodedLeng = 0;
if(!CryptDecodeObjectEx(X509_ASN_ENCODING, X509_CERT, &outBuffer[0], outLength, CRYPT_DECODE_ALLOC_FLAG, 0,
cert, &decodedLeng))
{
throw CertificateEncodingException(__FILE__, __LINE__, IceUtilInternal::lastErrorToString());
}
}
void
loadCertificate(PCERT_SIGNED_CONTENT_INFO* cert, const string& file)
{
vector<char> buffer;
readFile(file, buffer);
if(buffer.empty())
{
throw CertificateReadException(__FILE__, __LINE__, "certificate file " + file + " is empty");
}
loadCertificate(cert, &buffer[0], static_cast<DWORD>(buffer.size()));
}
const Ice::Long TICKS_PER_MSECOND = 10000LL;
const Ice::Long MSECS_TO_EPOCH = 11644473600000LL;
IceUtil::Time
filetimeToTime(FILETIME ftime)
{
Ice::Long value = 0;
DWORD* dest = reinterpret_cast<DWORD*>(&value);
*dest++ = ftime.dwLowDateTime;
*dest = ftime.dwHighDateTime;
return IceUtil::Time::milliSeconds((value / TICKS_PER_MSECOND) - MSECS_TO_EPOCH);
}
string
certNameToString(CERT_NAME_BLOB* name)
{
assert(name);
DWORD length = 0;
if(!(length = CertNameToStr(X509_ASN_ENCODING, name, CERT_OID_NAME_STR|CERT_NAME_STR_REVERSE_FLAG, 0, 0)))
{
throw CertificateEncodingException(__FILE__, __LINE__, IceUtilInternal::lastErrorToString());
}
vector<char> buffer(length);
if(!CertNameToStr(X509_ASN_ENCODING, name, CERT_OID_NAME_STR|CERT_NAME_STR_REVERSE_FLAG, &buffer[0], length))
{
throw CertificateEncodingException(__FILE__, __LINE__, IceUtilInternal::lastErrorToString());
}
string s(&buffer[0]);
for(int i = 0; i < certificateOIDSSize; ++i)
{
const CertificateOID* certificateOID = &certificateOIDS[i];
assert(certificateOID);
const string name = string(certificateOID->name) + "=";
const string alias = string(certificateOID->alias) + "=";
size_t pos = 0;
while((pos = s.find(name, pos)) != string::npos)
{
s.replace(pos, name.size(), alias);
}
}
return s;
}
vector<pair<int, string> >
certificateAltNames(CERT_INFO* certInfo, LPCSTR altNameOID)
{
vector<pair<int, string> > altNames;
PCERT_EXTENSION extension = CertFindExtension(altNameOID, certInfo->cExtension, certInfo->rgExtension);
if(extension)
{
CERT_ALT_NAME_INFO* altName;
DWORD length = 0;
if(!CryptDecodeObjectEx(X509_ASN_ENCODING, X509_ALTERNATE_NAME, extension->Value.pbData,
extension->Value.cbData, CRYPT_DECODE_ALLOC_FLAG, 0, &altName, &length))
{
throw CertificateEncodingException(__FILE__, __LINE__, IceUtilInternal::lastErrorToString());
}
for(DWORD i = 0; i < altName->cAltEntry; ++i)
{
CERT_ALT_NAME_ENTRY* entry = &altName->rgAltEntry[i];
switch(entry->dwAltNameChoice)
{
case CERT_ALT_NAME_RFC822_NAME:
{
altNames.push_back(make_pair(AltNameEmail, IceUtil::wstringToString(entry->pwszRfc822Name)));
break;
}
case CERT_ALT_NAME_DNS_NAME:
{
altNames.push_back(make_pair(AltNameDNS, IceUtil::wstringToString(entry->pwszDNSName)));
break;
}
case CERT_ALT_NAME_DIRECTORY_NAME:
{
altNames.push_back(make_pair(AltNameDirectory, certNameToString(&entry->DirectoryName)));
break;
}
case CERT_ALT_NAME_URL:
{
altNames.push_back(make_pair(AltNameURL, IceUtil::wstringToString(entry->pwszURL)));
break;
}
case CERT_ALT_NAME_IP_ADDRESS:
{
if(entry->IPAddress.cbData == 4)
{
//
// IPv4 address
//
ostringstream os;
Byte* src = reinterpret_cast<Byte*>(entry->IPAddress.pbData);
for(int j = 0; j < 4;)
{
int value = 0;
Byte* dest = reinterpret_cast<Byte*>(&value);
*dest = *src++;
os << value;
if(++j < 4)
{
os << ".";
}
}
altNames.push_back(make_pair(AltNAmeIP, os.str()));
}
//
// TODO IPv6 Address support.
//
break;
}
default:
{
// Not supported
break;
}
}
}
LocalFree(altName);
}
return altNames;
}
#endif
CertificateReadException::CertificateReadException(const char* file, int line, const string& r) :
Exception(file, line),
reason(r)
{
}
CertificateReadException::~CertificateReadException() ICE_NOEXCEPT
{
}
string
CertificateReadException::ice_id() const
{
return "::IceSSL::CertificateReadException";
}
#ifndef ICE_CPP11_MAPPING
CertificateReadException*
CertificateReadException::ice_clone() const
{
return new CertificateReadException(*this);
}
#endif
void
CertificateReadException::ice_throw() const
{
throw *this;
}
#ifdef ICE_USE_SECURE_TRANSPORT
CertificateEncodingException::CertificateEncodingException(const char* file, int line, CFErrorRef err) :
Exception(file, line)
{
assert(err);
reason = "certificate error:\n" + errorToString(err);
CFRelease(err);
}
#endif
CertificateEncodingException::CertificateEncodingException(const char* file, int line, const string& r) :
Exception(file, line),
reason(r)
{
}
CertificateEncodingException::~CertificateEncodingException() ICE_NOEXCEPT
{
}
string
CertificateEncodingException::ice_id() const
{
return "::IceSSL::CertificateEncodingException";
}
#ifndef ICE_CPP11_MAPPING
CertificateEncodingException*
CertificateEncodingException::ice_clone() const
{
return new CertificateEncodingException(*this);
}
#endif
void
CertificateEncodingException::ice_throw() const
{
throw *this;
}
#ifdef ICE_USE_OPENSSL
namespace
{
IceUtil::Mutex* mut = 0;
class Init
{
public:
Init()
{
mut = new IceUtil::Mutex;
}
~Init()
{
delete mut;
mut = 0;
}
};
Init init;
}
static IceUtil::Time
ASMUtcTimeToIceUtilTime(const ASN1_UTCTIME* s)
{
struct tm tm;
int offset;
memset(&tm, '\0', sizeof tm);
# define g2(p) (((p)[0]-'0')*10+(p)[1]-'0')
tm.tm_year = g2(s->data);
if(tm.tm_year < 50)
tm.tm_year += 100;
tm.tm_mon = g2(s->data + 2) - 1;
tm.tm_mday = g2(s->data + 4);
tm.tm_hour = g2(s->data + 6);
tm.tm_min = g2(s->data + 8);
tm.tm_sec = g2(s->data + 10);
if(s->data[12] == 'Z')
{
offset = 0;
}
else
{
offset = g2(s->data + 13) * 60 + g2(s->data + 15);
if(s->data[12] == '-')
{
offset = -offset;
}
}
# undef g2
//
// If timegm was on all systems this code could be
// return IceUtil::Time::seconds(timegm(&tm) - offset*60);
//
// Windows doesn't support the re-entrant _r versions.
//
time_t tzone;
{
IceUtilInternal::MutexPtrLock<IceUtil::Mutex> sync(mut);
time_t now = time(0);
tzone = mktime(localtime(&now)) - mktime(gmtime(&now));
}
return IceUtil::Time::seconds(mktime(&tm) - offset*60 + tzone);
}
static string
convertX509NameToString(X509_NAME* name)
{
BIO* out = BIO_new(BIO_s_mem());
X509_NAME_print_ex(out, name, 0, XN_FLAG_RFC2253);
BUF_MEM* p;
BIO_get_mem_ptr(out, &p);
string result = string(p->data, p->length);
BIO_free(out);
return result;
}
static vector<pair<int, string> >
convertGeneralNames(GENERAL_NAMES* gens)
{
vector<pair<int, string> > alt;
if(gens == 0)
{
return alt;
}
for(int i = 0; i < sk_GENERAL_NAME_num(gens); ++i)
{
GENERAL_NAME* gen = sk_GENERAL_NAME_value(gens, i);
pair<int, string> p;
p.first = gen->type;
switch(gen->type)
{
case GEN_EMAIL:
{
ASN1_IA5STRING* str = gen->d.rfc822Name;
if(str && str->type == V_ASN1_IA5STRING && str->data && str->length > 0)
{
p.second = string(reinterpret_cast<const char*>(str->data), str->length);
}
break;
}
case GEN_DNS:
{
ASN1_IA5STRING* str = gen->d.dNSName;
if(str && str->type == V_ASN1_IA5STRING && str->data && str->length > 0)
{
p.second = string(reinterpret_cast<const char*>(str->data), str->length);
}
break;
}
case GEN_DIRNAME:
{
p.second = convertX509NameToString(gen->d.directoryName);
break;
}
case GEN_URI:
{
ASN1_IA5STRING* str = gen->d.uniformResourceIdentifier;
if(str && str->type == V_ASN1_IA5STRING && str->data && str->length > 0)
{
p.second = string(reinterpret_cast<const char*>(str->data), str->length);
}
break;
}
case GEN_IPADD:
{
ASN1_OCTET_STRING* addr = gen->d.iPAddress;
// TODO: Support IPv6 someday.
if(addr && addr->type == V_ASN1_OCTET_STRING && addr->data && addr->length == 4)
{
ostringstream ostr;
for(int j = 0; j < 4; ++j)
{
if(j > 0)
{
ostr << '.';
}
ostr << static_cast<int>(addr->data[j]);
}
p.second = ostr.str();
}
break;
}
case GEN_OTHERNAME:
case GEN_EDIPARTY:
case GEN_X400:
case GEN_RID:
{
//
// TODO: These types are not supported. If the user wants
// them, they have to get at the certificate data. Another
// alternative is to DER encode the data (as the Java
// certificate does).
//
break;
}
}
alt.push_back(p);
}
sk_GENERAL_NAME_pop_free(gens, GENERAL_NAME_free);
return alt;
}
#endif
ParseException::ParseException(const char* file, int line, const string& r) :
Exception(file, line),
reason(r)
{
}
ParseException::~ParseException() ICE_NOEXCEPT
{
}
string
ParseException::ice_id() const
{
return "::IceSSL::ParseException";
}
#ifndef ICE_CPP11_MAPPING
ParseException*
ParseException::ice_clone() const
{
return new ParseException(*this);
}
#endif
void
ParseException::ice_throw() const
{
throw *this;
}
#ifdef ICE_USE_OPENSSL
DistinguishedName::DistinguishedName(X509NAME* name) :
_rdns(RFC2253::parseStrict(convertX509NameToString(name)))
{
unescape();
}
#endif
DistinguishedName::DistinguishedName(const string& dn) :
_rdns(RFC2253::parseStrict(dn))
{
unescape();
}
DistinguishedName::DistinguishedName(const list<pair<string, string> >& rdns) :
_rdns(rdns)
{
unescape();
}
bool
DistinguishedName::operator==(const DistinguishedName& other) const
{
return other._unescaped == _unescaped;
}
bool
DistinguishedName::operator!=(const DistinguishedName& other) const
{
return other._unescaped != _unescaped;
}
bool
DistinguishedName::operator<(const DistinguishedName& other) const
{
return other._unescaped < _unescaped;
}
bool
DistinguishedName::match(const DistinguishedName& other) const
{
for(list< pair<string, string> >::const_iterator p = other._unescaped.begin(); p != other._unescaped.end(); ++p)
{
bool found = false;
for(list< pair<string, string> >::const_iterator q = _unescaped.begin(); q != _unescaped.end(); ++q)
{
if(p->first == q->first)
{
found = true;
if(p->second != q->second)
{
return false;
}
}
}
if(!found)
{
return false;
}
}
return true;
}
//
// This always produces the same output as the input DN -- the type of
// escaping is not changed.
//
DistinguishedName::operator string() const
{
ostringstream os;
bool first = true;
for(list< pair<string, string> >::const_iterator p = _rdns.begin(); p != _rdns.end(); ++p)
{
if(!first)
{
os << ",";
}
first = false;
os << p->first << "=" << p->second;
}
return os.str();
}
void
DistinguishedName::unescape()
{
for(list< pair<string, string> >::const_iterator q = _rdns.begin(); q != _rdns.end(); ++q)
{
pair<string, string> rdn = *q;
rdn.second = RFC2253::unescape(rdn.second);
_unescaped.push_back(rdn);
}
}
PublicKey::PublicKey(const CertificatePtr& cert, KeyRef key) :
_cert(cert),
_key(key)
{
if(!_key)
{
throw IceUtil::IllegalArgumentException(__FILE__, __LINE__, "Invalid key reference");
}
}
PublicKey::~PublicKey()
{
#ifndef ICE_USE_SCHANNEL
if(_key)
{
# if defined(ICE_USE_SECURE_TRANSPORT)
CFRelease(_key);
# else
EVP_PKEY_free(_key);
# endif
}
#endif
}
KeyRef
PublicKey::key() const
{
return _key;
}
//
// The caller is responsible for incrementing the reference count.
//
Certificate::Certificate(X509CertificateRef cert) : _cert(cert)
#ifdef ICE_USE_SCHANNEL
, _certInfo(0)
#endif
{
if(!_cert)
{
throw IceUtil::IllegalArgumentException(__FILE__, __LINE__, "Invalid certificate reference");
}
#ifdef ICE_USE_SCHANNEL
try
{
//
// Decode certificate info
//
DWORD length = 0;
if(!CryptDecodeObjectEx(X509_ASN_ENCODING, X509_CERT_TO_BE_SIGNED, _cert->ToBeSigned.pbData,
_cert->ToBeSigned.cbData, CRYPT_DECODE_ALLOC_FLAG, 0, &_certInfo, &length))
{
throw CertificateEncodingException(__FILE__, __LINE__, IceUtilInternal::lastErrorToString());
}
}
catch(...)
{
LocalFree(_cert);
_cert = 0;
throw;
}
#endif
}
Certificate::~Certificate()
{
if(_cert)
{
#if defined(ICE_USE_SECURE_TRANSPORT)
CFRelease(_cert);
#elif defined(ICE_USE_SCHANNEL)
LocalFree(_cert);
if(_certInfo)
{
LocalFree(_certInfo);
}
#else
X509_free(_cert);
#endif
}
}
CertificatePtr
Certificate::load(const string& file)
{
#if defined(ICE_USE_SECURE_TRANSPORT)
return ICE_MAKE_SHARED(Certificate, loadCertificate(file));
#elif defined(ICE_USE_SCHANNEL)
CERT_SIGNED_CONTENT_INFO* cert;
loadCertificate(&cert, file);
return ICE_MAKE_SHARED(Certificate, cert);
#else
BIO *cert = BIO_new(BIO_s_file());
if(BIO_read_filename(cert, file.c_str()) <= 0)
{
BIO_free(cert);
throw CertificateReadException(__FILE__, __LINE__, "error opening file");
}
X509CertificateRef x = PEM_read_bio_X509_AUX(cert, NULL, NULL, NULL);
if(x == NULL)
{
BIO_free(cert);
throw CertificateReadException(__FILE__, __LINE__, "error reading file:\n" + getSslErrors(false));
}
BIO_free(cert);
return ICE_MAKE_SHARED(Certificate, x);
#endif
}
CertificatePtr
Certificate::decode(const string& encoding)
{
#if defined(ICE_USE_SECURE_TRANSPORT)
CFDataRef data = CFDataCreateWithBytesNoCopy(kCFAllocatorDefault, reinterpret_cast<const UInt8*>(encoding.c_str()),
encoding.size(), kCFAllocatorNull);
SecExternalFormat format = kSecFormatUnknown;
SecExternalItemType type = kSecItemTypeCertificate;
SecItemImportExportKeyParameters params;
memset(¶ms, 0, sizeof(params));
params.version = SEC_KEY_IMPORT_EXPORT_PARAMS_VERSION;
CFArrayRef items = 0;
OSStatus err = SecItemImport(data, 0, &format, &type, 0, ¶ms, 0, &items);
CFRelease(data);
if(err)
{
throw CertificateEncodingException(__FILE__, __LINE__, errorToString(err));
}
SecKeychainItemRef item = (SecKeychainItemRef)CFArrayGetValueAtIndex(items, 0);
CFRetain(item);
CFRelease(items);
assert(SecCertificateGetTypeID() == CFGetTypeID(item));
return ICE_MAKE_SHARED(Certificate, (SecCertificateRef)item);
#elif defined(ICE_USE_SCHANNEL)
CERT_SIGNED_CONTENT_INFO* cert;
loadCertificate(&cert, encoding.c_str(), static_cast<DWORD>(encoding.size()));
return ICE_MAKE_SHARED(Certificate, cert);
#else
BIO *cert = BIO_new_mem_buf(static_cast<void*>(const_cast<char*>(&encoding[0])), static_cast<int>(encoding.size()));
X509CertificateRef x = PEM_read_bio_X509_AUX(cert, NULL, NULL, NULL);
if(x == NULL)
{
BIO_free(cert);
throw CertificateEncodingException(__FILE__, __LINE__, getSslErrors(false));
}
BIO_free(cert);
return ICE_MAKE_SHARED(Certificate, x);
#endif
}
bool
Certificate::operator==(const Certificate& other) const
{
#if defined(ICE_USE_SECURE_TRANSPORT)
return CFEqual(_cert, other._cert);
#elif defined(ICE_USE_SCHANNEL)
return CertCompareCertificate(X509_ASN_ENCODING | PKCS_7_ASN_ENCODING, _certInfo, other._certInfo);
#else
return X509_cmp(_cert, other._cert) == 0;
#endif
}
bool
Certificate::operator!=(const Certificate& other) const
{
#if defined(ICE_USE_SECURE_TRANSPORT)
return !CFEqual(_cert, other._cert);
#elif defined(ICE_USE_SCHANNEL)
return !CertCompareCertificate(X509_ASN_ENCODING | PKCS_7_ASN_ENCODING, _certInfo, other._certInfo);
#else
return X509_cmp(_cert, other._cert) != 0;
#endif
}
PublicKeyPtr
Certificate::getPublicKey() const
{
#if defined(ICE_USE_SECURE_TRANSPORT)
SecKeyRef key;
OSStatus err = SecCertificateCopyPublicKey(_cert, &key);
if(err)
{
throw CertificateEncodingException(__FILE__, __LINE__, errorToString(err));
}
return ICE_MAKE_SHARED(PublicKey, shared_from_this(), key);
#elif defined(ICE_USE_SCHANNEL)
return ICE_MAKE_SHARED(PublicKey, shared_from_this(), &_certInfo->SubjectPublicKeyInfo);
#else
return ICE_MAKE_SHARED(PublicKey, shared_from_this(), X509_get_pubkey(_cert));
#endif
}
bool
Certificate::verify(const CertificatePtr& cert) const
{
#if defined(ICE_USE_SECURE_TRANSPORT)
//
// We first check if the given certificate subject match
// our certificate issuer. Otherwhise when use SecTrustEvaluate
// and check a certificate against itself will always return
// that is valid.
//
bool valid = false;
CFErrorRef error = 0;
CFDataRef issuer = 0;
CFDataRef subject = 0;
try
{
issuer = SecCertificateCopyNormalizedIssuerContent(_cert, &error);
if(error)
{
throw CertificateEncodingException(__FILE__, __LINE__, error);
}
subject = SecCertificateCopyNormalizedSubjectContent(cert->getCert(), &error);
if(error)
{
throw CertificateEncodingException(__FILE__, __LINE__, error);
}
}
catch(...)
{
if(issuer)
{
CFRelease(issuer);
}
if(subject)
{
CFRelease(subject);
}
throw;
}
//
// The certificate issuer must match the CA subject.
//
valid = CFEqual(issuer, subject);
CFRelease(issuer);
CFRelease(subject);
if(valid)
{
SecPolicyRef policy = 0;
SecTrustRef trust = 0;
try
{
SecPolicyRef policy = SecPolicyCreateBasicX509();
SecTrustResultType trustResult = kSecTrustResultInvalid;
SecTrustRef trust;
OSStatus err = 0;
if((err = SecTrustCreateWithCertificates(_cert, policy, &trust)))
{
throw CertificateEncodingException(__FILE__, __LINE__, errorToString(err));
}
SecCertificateRef certs[1] = { cert->getCert() };
CFArrayRef anchorCertificates = CFArrayCreate(kCFAllocatorDefault, (const void**)&certs, 1,
&kCFTypeArrayCallBacks);
err = SecTrustSetAnchorCertificates(trust, anchorCertificates);
CFRelease(anchorCertificates);
if(err)
{
throw CertificateEncodingException(__FILE__, __LINE__, errorToString(err));
}
if((err = SecTrustEvaluate(trust, &trustResult)))
{
throw CertificateEncodingException(__FILE__, __LINE__, errorToString(err));
}
valid = trustResult == kSecTrustResultUnspecified;
CFRelease(policy);
CFRelease(trust);
}
catch(...)
{
if(policy)
{
CFRelease(policy);
}
if(trust)
{
CFRelease(trust);
}
throw;
}
}
return valid;
#elif defined(ICE_USE_SCHANNEL)
BYTE* buffer = 0;
DWORD length = 0;
if(!CryptEncodeObjectEx(X509_ASN_ENCODING, X509_CERT, _cert, CRYPT_ENCODE_ALLOC_FLAG , 0, &buffer, &length))
{
throw CertificateEncodingException(__FILE__, __LINE__, IceUtilInternal::lastErrorToString());
}
bool result = CryptVerifyCertificateSignature(0, X509_ASN_ENCODING, buffer, length, cert->getPublicKey()->key());
LocalFree(buffer);
return result;
#else
return X509_verify(_cert, cert->getPublicKey()->key()) > 0;
#endif
}
#ifdef ICE_USE_OPENSSL
bool
Certificate::verify(const PublicKeyPtr& key) const
{
return X509_verify(_cert, key->key()) > 0;
}
#endif
string
Certificate::encode() const
{
#if defined(ICE_USE_SECURE_TRANSPORT)
CFDataRef exported;
OSStatus err = SecItemExport(_cert, kSecFormatPEMSequence, kSecItemPemArmour, 0, &exported);
if(err != noErr)
{
throw CertificateEncodingException(__FILE__, __LINE__, errorToString(err));
}
string data(reinterpret_cast<const char*>(CFDataGetBytePtr(exported)), CFDataGetLength(exported));
CFRelease(exported);
return data;
#elif defined(ICE_USE_SCHANNEL)
string s;
DWORD length = 0;
BYTE* buffer = 0;
try
{
if(!CryptEncodeObjectEx(X509_ASN_ENCODING, X509_CERT, _cert, CRYPT_ENCODE_ALLOC_FLAG , 0, &buffer, &length))
{
throw CertificateEncodingException(__FILE__, __LINE__, IceUtilInternal::lastErrorToString());
}
DWORD encodedLength = 0;
if(!CryptBinaryToString(buffer, length, CRYPT_STRING_BASE64HEADER | CRYPT_STRING_NOCR, 0, &encodedLength))
{
throw CertificateEncodingException(__FILE__, __LINE__, IceUtilInternal::lastErrorToString());
}
std::vector<char> encoded;
encoded.resize(encodedLength);
if(!CryptBinaryToString(buffer, length, CRYPT_STRING_BASE64HEADER | CRYPT_STRING_NOCR, &encoded[0],
&encodedLength))
{
throw CertificateEncodingException(__FILE__, __LINE__, IceUtilInternal::lastErrorToString());
}
LocalFree(buffer);
buffer = 0;
s.assign(&encoded[0]);
}
catch(...)
{
if(buffer)
{
LocalFree(buffer);
}
throw;
}
return s;
#else
BIO* out = BIO_new(BIO_s_mem());
int i = PEM_write_bio_X509_AUX(out, _cert);
if(i <= 0)
{
BIO_free(out);
throw CertificateEncodingException(__FILE__, __LINE__, getSslErrors(false));
}
BUF_MEM* p;
BIO_get_mem_ptr(out, &p);
string result = string(p->data, p->length);
BIO_free(out);
return result;
#endif
}
bool
Certificate::checkValidity() const
{
IceUtil::Time now = IceUtil::Time::now();
return now > getNotBefore() && now <= getNotAfter();
}
bool
Certificate::checkValidity(const IceUtil::Time& now) const
{
return now > getNotBefore() && now <= getNotAfter();
}
IceUtil::Time
Certificate::getNotAfter() const
{
#if defined(ICE_USE_SECURE_TRANSPORT)
return getX509Date(_cert, kSecOIDX509V1ValidityNotAfter);
#elif defined(ICE_USE_SCHANNEL)
return filetimeToTime(_certInfo->NotAfter);
#else
return ASMUtcTimeToIceUtilTime(X509_get_notAfter(_cert));
#endif
}
IceUtil::Time
Certificate::getNotBefore() const
{
#if defined(ICE_USE_SECURE_TRANSPORT)
return getX509Date(_cert, kSecOIDX509V1ValidityNotBefore);
#elif defined(ICE_USE_SCHANNEL)
return filetimeToTime(_certInfo->NotBefore);
#else
return ASMUtcTimeToIceUtilTime(X509_get_notBefore(_cert));
#endif
}
string
Certificate::getSerialNumber() const
{
#if defined(ICE_USE_SECURE_TRANSPORT)
return getX509String(_cert, kSecOIDX509V1SerialNumber);
#elif defined(ICE_USE_SCHANNEL)
ostringstream os;
for(int i = _certInfo->SerialNumber.cbData - 1; i >= 0; --i)
{
unsigned char c = _certInfo->SerialNumber.pbData[i];
os.fill('0');
os.width(2);
os << hex << (int)c;
if(i)
{
os << ' ';
}
}
return IceUtilInternal::toUpper(os.str());
#else
BIGNUM* bn = ASN1_INTEGER_to_BN(X509_get_serialNumber(_cert), 0);
char* dec = BN_bn2dec(bn);
string result = dec;
OPENSSL_free(dec);
BN_free(bn);
return result;
#endif
}
//string
//Certificate::getSigAlgName() const
//{
//}
//string
//Certificate::getSigAlgOID() const
//{
//}
DistinguishedName
Certificate::getIssuerDN() const
{
#if defined(ICE_USE_SECURE_TRANSPORT)
return getX509Name(_cert, kSecOIDX509V1IssuerName);
#elif defined(ICE_USE_SCHANNEL)
return DistinguishedName(certNameToString(&_certInfo->Issuer));
#else
return DistinguishedName(RFC2253::parseStrict(convertX509NameToString(X509_get_issuer_name(_cert))));
#endif
}
vector<pair<int, string> >
Certificate::getIssuerAlternativeNames()
{
#if defined(ICE_USE_SECURE_TRANSPORT)
return getX509AltName(_cert, kSecOIDIssuerAltName);
#elif defined(ICE_USE_SCHANNEL)
return certificateAltNames(_certInfo, szOID_ISSUER_ALT_NAME2);
#else
return convertGeneralNames(reinterpret_cast<GENERAL_NAMES*>(X509_get_ext_d2i(_cert, NID_issuer_alt_name, 0, 0)));
#endif
}
DistinguishedName
Certificate::getSubjectDN() const
{
#if defined(ICE_USE_SECURE_TRANSPORT)
return getX509Name(_cert, kSecOIDX509V1SubjectName);
#elif defined(ICE_USE_SCHANNEL)
return DistinguishedName(certNameToString(&_certInfo->Subject));
#else
return DistinguishedName(RFC2253::parseStrict(convertX509NameToString(X509_get_subject_name(_cert))));
#endif
}
vector<pair<int, string> >
Certificate::getSubjectAlternativeNames()
{
#if defined(ICE_USE_SECURE_TRANSPORT)
return getX509AltName(_cert, kSecOIDSubjectAltName);
#elif defined(ICE_USE_SCHANNEL)
return certificateAltNames(_certInfo, szOID_SUBJECT_ALT_NAME2);
#else
return convertGeneralNames(reinterpret_cast<GENERAL_NAMES*>(X509_get_ext_d2i(_cert, NID_subject_alt_name, 0, 0)));
#endif
}
int
Certificate::getVersion() const
{
#if defined(ICE_USE_SECURE_TRANSPORT)
return atoi(getX509String(_cert, kSecOIDX509V1Version).c_str()) - 1;
#elif defined(ICE_USE_SCHANNEL)
return _certInfo->dwVersion;
#else
return static_cast<int>(X509_get_version(_cert));
#endif
}
string
Certificate::toString() const
{
ostringstream os;
os << "serial: " << getSerialNumber() << "\n";
os << "issuer: " << string(getIssuerDN()) << "\n";
os << "subject: " << string(getSubjectDN()) << "\n";
os << "notBefore: " << getNotBefore().toDateTime() << "\n";
os << "notAfter: " << getNotAfter().toDateTime();
return os.str();
}
X509CertificateRef
Certificate::getCert() const
{
return _cert;
}
|