summaryrefslogtreecommitdiff
path: root/cpp/src/IceSSL/Instance.cpp
blob: 8e9f97d62a72f2ec58b9ce3bfa897d02579f9f06 (plain)
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
// **********************************************************************
//
// Copyright (c) 2003-2006 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 <IceSSL/Instance.h>
#include <IceSSL/EndpointI.h>
#include <IceSSL/Util.h>
#include <IceSSL/TrustManager.h>

#include <Ice/Communicator.h>
#include <Ice/LocalException.h>
#include <Ice/Logger.h>
#include <Ice/LoggerUtil.h>
#include <Ice/Properties.h>
#include <Ice/ProtocolPluginFacade.h>

#include <openssl/err.h>

#include <IceUtil/DisableWarnings.h>

using namespace std;
using namespace Ice;
using namespace IceSSL;

void IceInternal::incRef(IceSSL::Instance* p) { p->__incRef(); }
void IceInternal::decRef(IceSSL::Instance* p) { p->__decRef(); }

static int
opensslPasswordCallback(char* buf, int size, int flag, void* userData)
{
    IceSSL::Instance* p = reinterpret_cast<IceSSL::Instance*>(userData);
    string passwd = p->password(flag == 1);
    int sz = static_cast<int>(passwd.size());
    if(sz > size)
    {
	sz = size - 1;
    }
    strncpy(buf, passwd.c_str(), sz);
    buf[sz] = '\0';

    memset(&passwd[0], 0, static_cast<size_t>(passwd.size()));

    return sz;
}

#ifndef OPENSSL_NO_DH
static DH*
opensslDHCallback(SSL* ssl, int /*isExport*/, int keyLength)
{
    IceSSL::Instance* p = reinterpret_cast<IceSSL::Instance*>(SSL_CTX_get_ex_data(ssl->ctx, 0));
    return p->dhParams(keyLength);
}
#endif

static int
opensslVerifyCallback(int ok, X509_STORE_CTX* ctx)
{
    SSL* ssl = reinterpret_cast<SSL*>(X509_STORE_CTX_get_ex_data(ctx, SSL_get_ex_data_X509_STORE_CTX_idx()));
    IceSSL::Instance* p = reinterpret_cast<IceSSL::Instance*>(SSL_CTX_get_ex_data(ssl->ctx, 0));
    return p->verifyCallback(ok, ssl, ctx);
}

static bool
passwordError()
{
    int reason = ERR_GET_REASON(ERR_peek_error());
    return (reason == PEM_R_BAD_BASE64_DECODE ||
	    reason == PEM_R_BAD_DECRYPT ||
	    reason == PEM_R_BAD_PASSWORD_READ ||
	    reason == PEM_R_PROBLEMS_GETTING_PASSWORD);
}

IceSSL::Instance::Instance(const CommunicatorPtr& communicator) :
    _logger(communicator->getLogger()),
    _ctx(0)
{
    __setNoDelete(true);

    _facade = IceInternal::getProtocolPluginFacade(communicator);
    _securityTraceLevel = communicator->getProperties()->getPropertyAsInt("IceSSL.Trace.Security");
    _securityTraceCategory = "Security";
    _trustManager = new TrustManager(communicator);
    
    //
    // Register the endpoint factory. We have to do this now, rather than
    // in initialize, because the communicator may need to interpret
    // proxies before the plugin is fully initialized.
    //
    _facade->addEndpointFactory(new EndpointFactoryI(this));

    __setNoDelete(false);
}

void
IceSSL::Instance::initialize()
{
    if(_ctx)
    {
	return;
    }

    _ctx = SSL_CTX_new(SSLv23_method());
    if(!_ctx)
    {
	PluginInitializationException ex(__FILE__, __LINE__);
	ex.reason = "IceSSL: unable to create SSL context:\n" + sslErrors();
	throw ex;
    }

    try
    {
	//
	// Store a pointer to ourself for use in OpenSSL callbacks.
	//
	SSL_CTX_set_ex_data(_ctx, 0, this);

	//
	// This is necessary for successful interop with Java. Without it, a Java
	// client would fail to reestablish a connection: the server gets the
	// error "session id context uninitialized" and the client receives
	// "SSLHandshakeException: Remote host closed connection during handshake".
	//
	SSL_CTX_set_session_cache_mode(_ctx, SSL_SESS_CACHE_OFF);

	PropertiesPtr properties = communicator()->getProperties();
	const string propPrefix = "IceSSL.";

	//
	// Check for a default directory. We look in this directory for
	// files mentioned in the configuration.
	//
	{
	    _defaultDir = properties->getProperty(propPrefix + "DefaultDir");
	}

	//
	// Select protocols.
	//
	{
	    string protocols = properties->getProperty(propPrefix + "Protocols");
	    if(!protocols.empty())
	    {
		parseProtocols(protocols);
	    }
	}

	//
	// CheckCertName determines whether we compare the name in a peer's
	// certificate against its hostname.
	//
	{
	    _checkCertName = properties->getPropertyAsIntWithDefault(propPrefix + "CheckCertName", 0) > 0;
	}

	//
	// VerifyDepthMax establishes the maximum length of a peer's certificate
	// chain, including the peer's certificate. A value of 0 means there is
	// no maximum.
	//
	{
	    _verifyDepthMax = properties->getPropertyAsIntWithDefault(propPrefix + "VerifyDepthMax", 2);
	}

	//
	// Determine whether a certificate is required from the peer.
	//
	{
	    int verifyPeer = properties->getPropertyAsIntWithDefault(propPrefix + "VerifyPeer", 2);
	    int sslVerifyMode;
	    switch(verifyPeer)
	    {
	    case 0:
		sslVerifyMode = SSL_VERIFY_NONE;
		break;
	    case 1:
		sslVerifyMode = SSL_VERIFY_PEER;
		break;
	    case 2:
		sslVerifyMode = SSL_VERIFY_PEER|SSL_VERIFY_FAIL_IF_NO_PEER_CERT;
		break;
	    default:
	    {
		PluginInitializationException ex(__FILE__, __LINE__);
		ex.reason = "IceSSL: invalid value for " + propPrefix + "VerifyPeer";
		throw ex;
	    }
	    }
	    SSL_CTX_set_verify(_ctx, sslVerifyMode, opensslVerifyCallback);
	}

	//
	// If the configuration defines a password, or the application has supplied
	// a password prompt object, then register a password callback. Otherwise,
	// let OpenSSL use its default behavior.
	//
	{
	    // TODO: Support quoted value?
	    string password = properties->getProperty(propPrefix + "Password");
	    if(!password.empty() || _prompt)
	    {
		SSL_CTX_set_default_passwd_cb(_ctx, opensslPasswordCallback);
		SSL_CTX_set_default_passwd_cb_userdata(_ctx, this);
		_password = password;
	    }
	}

	int passwordRetryMax = properties->getPropertyAsIntWithDefault(propPrefix + "PasswordRetryMax", 3);

	//
	// Establish the location of CA certificates.
	//
	{
	    string caFile = properties->getProperty(propPrefix + "CertAuthFile");
	    string caDir = properties->getPropertyWithDefault(propPrefix + "CertAuthDir", _defaultDir);
	    const char* file = 0;
	    const char* dir = 0;
	    if(!caFile.empty())
	    {
		if(!checkPath(caFile, _defaultDir, false))
		{
		    PluginInitializationException ex(__FILE__, __LINE__);
		    ex.reason = "IceSSL: CA certificate file not found:\n" + caFile;
		    throw ex;
		}
		file = caFile.c_str();
	    }
	    if(!caDir.empty())
	    {
		if(!checkPath(caDir, _defaultDir, true))
		{
		    PluginInitializationException ex(__FILE__, __LINE__);
		    ex.reason = "IceSSL: CA certificate directory not found:\n" + caDir;
		    throw ex;
		}
		dir = caDir.c_str();
	    }
	    if(file || dir)
	    {
		//
		// The certificate may be stored in an encrypted file, so handle
		// password retries.
		//
		int count = 0;
		int err = 0;
		while(count < passwordRetryMax)
		{
		    ERR_clear_error();
		    err = SSL_CTX_load_verify_locations(_ctx, file, dir);
		    if(err || !passwordError())
		    {
			break;
		    }
		    ++count;
		}
		if(err == 0)
		{
		    string msg = "IceSSL: unable to establish CA certificates";
		    if(passwordError())
		    {
			msg += ":\ninvalid password";
		    }
		    else
		    {
			string err = sslErrors();
			if(!err.empty())
			{
			    msg += ":\n" + err;
			}
		    }
		    PluginInitializationException ex(__FILE__, __LINE__);
		    ex.reason = msg;
		    throw ex;
		}
	    }
	}

	//
	// Establish the certificate chains and private keys. One RSA certificate and
	// one DSA certificate are allowed.
	//
	{
#ifdef _WIN32
	    const string sep = ";";
#else
	    const string sep = ":";
#endif
	    string certFile = properties->getProperty(propPrefix + "CertFile");
	    string keyFile = properties->getProperty(propPrefix + "KeyFile");
	    vector<string>::size_type numCerts = 0;
	    if(!certFile.empty())
	    {
		vector<string> files;
		if(!splitString(certFile, sep, false, files) || files.size() > 2)
		{
		    PluginInitializationException ex(__FILE__, __LINE__);
		    ex.reason = "IceSSL: invalid value for " + propPrefix + "CertFile:\n" + certFile;
		    throw ex;
		}
		numCerts = files.size();
		for(vector<string>::iterator p = files.begin(); p != files.end(); ++p)
		{
		    string file = *p;
		    if(!checkPath(file, _defaultDir, false))
		    {
			PluginInitializationException ex(__FILE__, __LINE__);
			ex.reason = "IceSSL: certificate file not found:\n" + file;
			throw ex;
		    }
		    //
		    // The certificate may be stored in an encrypted file, so handle
		    // password retries.
		    //
		    int count = 0;
		    int err = 0;
		    while(count < passwordRetryMax)
		    {
			ERR_clear_error();
			err = SSL_CTX_use_certificate_chain_file(_ctx, file.c_str());
			if(err || !passwordError())
			{
			    break;
			}
			++count;
		    }
		    if(err == 0)
		    {
			string msg = "IceSSL: unable to load certificate chain from file " + file;
			if(passwordError())
			{
			    msg += ":\ninvalid password";
			}
			else
			{
			    string err = sslErrors();
			    if(!err.empty())
			    {
				msg += ":\n" + err;
			    }
			}
			PluginInitializationException ex(__FILE__, __LINE__);
			ex.reason = msg;
			throw ex;
		    }
		}
	    }
	    if(keyFile.empty())
	    {
		keyFile = certFile; // Assume the certificate file also contains the private key.
	    }
	    if(!keyFile.empty())
	    {
		vector<string> files;
		if(!splitString(keyFile, sep, false, files) || files.size() > 2)
		{
		    PluginInitializationException ex(__FILE__, __LINE__);
		    ex.reason = "IceSSL: invalid value for " + propPrefix + "KeyFile:\n" + keyFile;
		    throw ex;
		}
		if(files.size() != numCerts)
		{
		    PluginInitializationException ex(__FILE__, __LINE__);
		    ex.reason = "IceSSL: " + propPrefix + "KeyFile does not agree with " + propPrefix + "CertFile";
		    throw ex;
		}
		for(vector<string>::iterator p = files.begin(); p != files.end(); ++p)
		{
		    string file = *p;
		    if(!checkPath(file, _defaultDir, false))
		    {
			PluginInitializationException ex(__FILE__, __LINE__);
			ex.reason = "IceSSL: key file not found:\n" + file;
			throw ex;
		    }
		    //
		    // The private key may be stored in an encrypted file, so handle
		    // password retries.
		    //
		    int count = 0;
		    int err = 0;
		    while(count < passwordRetryMax)
		    {
			ERR_clear_error();
			err = SSL_CTX_use_PrivateKey_file(_ctx, file.c_str(), SSL_FILETYPE_PEM);
			if(err || !passwordError())
			{
			    break;
			}
			++count;
		    }
		    if(err == 0)
		    {
			string msg = "IceSSL: unable to load private key from file " + file;
			if(passwordError())
			{
			    msg += ":\ninvalid password";
			}
			else
			{
			    string err = sslErrors();
			    if(!err.empty())
			    {
				msg += ":\n" + err;
			    }
			}
			PluginInitializationException ex(__FILE__, __LINE__);
			ex.reason = msg;
			throw ex;
		    }
		}
		if(!SSL_CTX_check_private_key(_ctx))
		{
		    PluginInitializationException ex(__FILE__, __LINE__);
		    ex.reason = "IceSSL: unable to validate private key(s):\n" + sslErrors();
		    throw ex;
		}
	    }
	}

	//
	// Establish the cipher list.
	//
	{
	    string ciphers = properties->getProperty(propPrefix + "Ciphers");
	    if(!ciphers.empty())
	    {
		if(!SSL_CTX_set_cipher_list(_ctx, ciphers.c_str()))
		{
		    PluginInitializationException ex(__FILE__, __LINE__);
		    ex.reason = "IceSSL: unable to set ciphers using `" + ciphers + "':\n" + sslErrors();
		    throw ex;
		}
	    }
	}

	//
	// Diffie Hellman configuration.
	//
	{
#ifndef OPENSSL_NO_DH
	    _dhParams = new DHParams;
	    SSL_CTX_set_options(_ctx, SSL_OP_SINGLE_DH_USE);
	    SSL_CTX_set_tmp_dh_callback(_ctx, opensslDHCallback);
#endif
	    //
	    // Properties have the following form:
	    //
	    // ...DH.<keyLength>=file
	    //
	    const string dhPrefix = propPrefix + "DH.";
	    PropertyDict d = properties->getPropertiesForPrefix(dhPrefix);
	    if(!d.empty())
	    {
#ifdef OPENSSL_NO_DH
		_logger->warning("IceSSL: OpenSSL is not configured for Diffie Hellman");
#else
		for(PropertyDict::iterator p = d.begin(); p != d.end(); ++p)
		{
		    string s = p->first.substr(dhPrefix.size());
		    int keyLength = atoi(s.c_str());
		    if(keyLength > 0)
		    {
			string file = p->second;
			if(!checkPath(file, _defaultDir, false))
			{
			    PluginInitializationException ex(__FILE__, __LINE__);
			    ex.reason = "IceSSL: DH parameter file not found:\n" + file;
			    throw ex;
			}
			if(!_dhParams->add(keyLength, file))
			{
			    PluginInitializationException ex(__FILE__, __LINE__);
			    ex.reason = "IceSSL: unable to read DH parameter file " + file;
			    throw ex;
			}
		    }
		}
#endif
	    }
	}
    }
    catch(...)
    {
	SSL_CTX_free(_ctx);
	_ctx = 0;
	throw;
    }
}

void
IceSSL::Instance::context(SSL_CTX* context)
{
    if(_ctx)
    {
	PluginInitializationException ex(__FILE__, __LINE__);
	ex.reason = "IceSSL: plugin is already initialized";
	throw ex;
    }

    _ctx = context;
}

SSL_CTX*
IceSSL::Instance::context() const
{
    return _ctx;
}

void
IceSSL::Instance::setCertificateVerifier(const CertificateVerifierPtr& verifier)
{
    _verifier = verifier;
}

void
IceSSL::Instance::setPasswordPrompt(const PasswordPromptPtr& prompt)
{
    _prompt = prompt;
}

CommunicatorPtr
IceSSL::Instance::communicator() const
{
    return _facade->getCommunicator();
}

string
IceSSL::Instance::defaultHost() const
{
    return _facade->getDefaultHost();
}

int
IceSSL::Instance::networkTraceLevel() const
{
    return _facade->getNetworkTraceLevel();
}

string
IceSSL::Instance::networkTraceCategory() const
{
    return _facade->getNetworkTraceCategory();
}

int
IceSSL::Instance::securityTraceLevel() const
{
    return _securityTraceLevel;
}

string
IceSSL::Instance::securityTraceCategory() const
{
    return _securityTraceCategory;
}

void
IceSSL::Instance::verifyPeer(SSL* ssl, SOCKET fd, const string& address, const string& adapterName, bool incoming)
{
    long result = SSL_get_verify_result(ssl);
    if(result != X509_V_OK)
    {
	ostringstream ostr;
	ostr << "IceSSL: certificate verification failed:\n" << X509_verify_cert_error_string(result);
	string msg = ostr.str();
	if(_securityTraceLevel >= 1)
	{
	    _logger->trace(_securityTraceCategory, msg);
	}
	SecurityException ex(__FILE__, __LINE__);
	ex.reason = msg;
	throw ex;
    }

    X509* rawCert = SSL_get_peer_certificate(ssl);
    CertificatePtr cert;
    if(rawCert != 0)
    {
	cert = new Certificate(rawCert);
    }

    //
    // Extract the IP addresses and the DNS names from the subject
    // alternative names.
    //
    if(cert)
    {
	vector<pair<int, string> > subjectAltNames = cert->getSubjectAlternativeNames();
	vector<string> ipAddresses;
	vector<string> dnsNames;
	for(vector<pair<int, string> >::const_iterator p = subjectAltNames.begin(); p != subjectAltNames.end(); ++p)
	{
	    if(p->first == 7)
	    {
		ipAddresses.push_back(p->second);
	    }
	    else if(p->first == 2)
	    {
		dnsNames.push_back(p->second);
	    }
	}

	//
	// Compare the peer's address against the dnsName and ipAddress values.
	// This is only relevant for an outgoing connection.
	//
	if(!address.empty())
	{
	    bool certNameOK = false;

	    for(vector<string>::const_iterator p = ipAddresses.begin(); p != ipAddresses.end() && !certNameOK; ++p)
	    {
		if(address == *p)
		{
		    certNameOK = true;
		    break;
		}
	    }

	    if(!certNameOK && !dnsNames.empty())
	    {
		string host = address;
		transform(host.begin(), host.end(), host.begin(), ::tolower);
		for(vector<string>::const_iterator p = dnsNames.begin(); p != dnsNames.end() && !certNameOK; ++p)
		{
		    string s = *p;
		    transform(s.begin(), s.end(), s.begin(), ::tolower);
		    if(host == s)
		    {
			certNameOK = true;
		    }
		}
	    }

	    //
	    // Log a message if the name comparison fails. If CheckCertName is defined,
	    // we also raise an exception to abort the connection. Don't log a message if
	    // CheckCertName is not defined and a verifier is present.
	    //
	    if(!certNameOK && (_checkCertName || (_securityTraceLevel >= 1 && !_verifier)))
	    {
		ostringstream ostr;
		ostr << "IceSSL: ";
		if(!_checkCertName)
		{
		    ostr << "ignoring ";
		}
		ostr << "certificate validation failure:\npeer certificate does not contain `"
		     << address << "' in its subjectAltName extension";
		if(!dnsNames.empty())
		{
		    ostr << "\nDNS names found in certificate: ";
		    for(vector<string>::const_iterator p = dnsNames.begin(); p != dnsNames.end(); ++p)
		    {
			if(p != dnsNames.begin())
			{
			    ostr << ", ";
			}
			ostr << *p;
		    }
		}
		if(!ipAddresses.empty())
		{
		    ostr << "\nIP addresses found in certificate: ";
		    for(vector<string>::const_iterator p = ipAddresses.begin(); p != ipAddresses.end(); ++p)
		    {
			if(p != ipAddresses.begin())
			{
			    ostr << ", ";
			}
			ostr << *p;
		    }
		}
		string msg = ostr.str();
		if(_securityTraceLevel >= 1)
		{
		    Trace out(_logger, _securityTraceCategory);
		    out << msg;
		}
		if(_checkCertName)
		{
		    SecurityException ex(__FILE__, __LINE__);
		    ex.reason = msg;
		    throw ex;
		}
	    }
	}
    }

    ConnectionInfo info = populateConnectionInfo(ssl, fd, adapterName, incoming);

    if(_verifyDepthMax > 0 && static_cast<int>(info.certs.size()) > _verifyDepthMax)
    {
	ostringstream ostr;
	ostr << (incoming ? "incoming" : "outgoing") << " connection rejected:\n"
	     << "length of peer's certificate chain (" << info.certs.size() << ") exceeds maximum of "
	     << _verifyDepthMax;
	string msg = ostr.str();
	if(_securityTraceLevel >= 1)
	{
	    _logger->trace(_securityTraceCategory, msg + "\n" + IceInternal::fdToString(fd));
	}
	SecurityException ex(__FILE__, __LINE__);
	ex.reason = msg;
	throw ex;
    }

    if(!_trustManager->verify(info))
    {
	string msg = string(incoming ? "incoming" : "outgoing") + " connection rejected by trust manager";
	if(_securityTraceLevel >= 1)
	{
	    _logger->trace(_securityTraceCategory, msg + "\n" + IceInternal::fdToString(fd));
	}
	SecurityException ex(__FILE__, __LINE__);
	ex.reason = msg;
	throw ex;
    }

    if(_verifier && !_verifier->verify(info))
    {
	string msg = string(incoming ? "incoming" : "outgoing") + " connection rejected by certificate verifier";
	if(_securityTraceLevel >= 1)
	{
	    _logger->trace(_securityTraceCategory, msg + "\n" + IceInternal::fdToString(fd));
	}
	SecurityException ex(__FILE__, __LINE__);
	ex.reason = msg;
	throw ex;
    }
}

string
IceSSL::Instance::sslErrors() const
{
    return getSslErrors(_securityTraceLevel >= 1);
}

void
IceSSL::Instance::destroy()
{
    _facade = 0;

    if(_ctx)
    {
	SSL_CTX_free(_ctx);
    }
}

string
IceSSL::Instance::password(bool /*encrypting*/)
{
    if(_prompt)
    {
	try
	{
	    return _prompt->getPassword();
	}
	catch(...)
	{
	    //
	    // Don't allow exceptions to cross an OpenSSL boundary.
	    //
	    return string();
	}
    }
    else
    {
	return _password;
    }
}

int
IceSSL::Instance::verifyCallback(int ok, SSL* ssl, X509_STORE_CTX* c)
{
    if(!ok && _securityTraceLevel >= 1)
    {
	X509* cert = X509_STORE_CTX_get_current_cert(c);
	int err = X509_STORE_CTX_get_error(c);
	char buf[256];

	Trace out(_logger, _securityTraceCategory);
	out << "certificate verification failure\n";

	X509_NAME_oneline(X509_get_issuer_name(cert), buf, static_cast<int>(sizeof(buf)));
	out << "issuer = " << buf << '\n';
	X509_NAME_oneline(X509_get_subject_name(cert), buf, static_cast<int>(sizeof(buf)));
	out << "subject = " << buf << '\n';
	out << "depth = " << X509_STORE_CTX_get_error_depth(c) << '\n';
	out << "error = " << X509_verify_cert_error_string(err) << '\n';
	out << IceInternal::fdToString(SSL_get_fd(ssl));
    }
    return ok;
}

#ifndef OPENSSL_NO_DH
DH*
IceSSL::Instance::dhParams(int keyLength)
{
    return _dhParams->get(keyLength);
}
#endif

void
IceSSL::Instance::traceConnection(SSL* ssl, bool incoming)
{
    Trace out(_logger, _securityTraceCategory);
    out << "SSL summary for " << (incoming ? "incoming" : "outgoing") << " connection\n";
    SSL_CIPHER* cipher = SSL_get_current_cipher(ssl);
    if(!cipher)
    {
	out << "unknown cipher\n";
    }
    else
    {
	out << "cipher = " << SSL_CIPHER_get_name(cipher) << "\n";
	out << "bits = " << SSL_CIPHER_get_bits(cipher, 0) << "\n";
	out << "protocol = " << SSL_get_version(ssl) << "\n";
    }
    out << IceInternal::fdToString(SSL_get_fd(ssl));
}

void
IceSSL::Instance::parseProtocols(const string& val)
{
    const string delim = ", ";
    bool sslv3 = false, tlsv1 = false;
    string::size_type pos = 0;
    while(pos != string::npos)
    {
	pos = val.find_first_not_of(delim, pos);
	if(pos == string::npos)
	{
	    break;
	}

	string prot;
	string::size_type end = val.find_first_of(delim, pos);
	if(end == string::npos)
	{
	    prot = val.substr(pos);
	}
	else
	{
	    prot = val.substr(pos, end - pos);
	}
	pos = end;

	if(prot == "ssl3" || prot == "sslv3")
	{
	    sslv3 = true;
	}
	else if(prot == "tls" || prot == "tls1" || prot == "tlsv1")
	{
	    tlsv1 = true;
	}
	else
	{
	    PluginInitializationException ex(__FILE__, __LINE__);
	    ex.reason = "IceSSL: unrecognized protocol `" + prot + "'";
	    throw ex;
	}
    }

    long opts = SSL_OP_NO_SSLv2; // SSLv2 is not supported.
    if(!sslv3)
    {
	opts |= SSL_OP_NO_SSLv3;
    }
    if(!tlsv1)
    {
	opts |= SSL_OP_NO_TLSv1;
    }
    SSL_CTX_set_options(_ctx, opts);
}