15 #include "tlsgnutlsclient.h"
37 gnutls_certificate_free_credentials( m_credentials );
45 const int protocolPriority[] = {
49 GNUTLS_TLS1_1, GNUTLS_TLS1, 0 };
50 const int kxPriority[] = { GNUTLS_KX_RSA, GNUTLS_KX_DHE_RSA, GNUTLS_KX_DHE_DSS, 0 };
51 const int cipherPriority[] = { GNUTLS_CIPHER_AES_256_CBC, GNUTLS_CIPHER_AES_128_CBC,
52 GNUTLS_CIPHER_3DES_CBC, GNUTLS_CIPHER_ARCFOUR, 0 };
53 const int compPriority[] = { GNUTLS_COMP_ZLIB, GNUTLS_COMP_NULL, 0 };
54 const int macPriority[] = { GNUTLS_MAC_SHA, GNUTLS_MAC_MD5, 0 };
56 if( m_initLib && gnutls_global_init() != 0 )
59 if( gnutls_certificate_allocate_credentials( &m_credentials ) < 0 )
62 if( gnutls_init( m_session, GNUTLS_CLIENT ) != 0 )
64 gnutls_certificate_free_credentials( m_credentials );
68 gnutls_protocol_set_priority( *m_session, protocolPriority );
69 gnutls_cipher_set_priority( *m_session, cipherPriority );
70 gnutls_compression_set_priority( *m_session, compPriority );
71 gnutls_kx_set_priority( *m_session, kxPriority );
72 gnutls_mac_set_priority( *m_session, macPriority );
73 gnutls_credentials_set( *m_session, GNUTLS_CRD_CERTIFICATE, m_credentials );
75 gnutls_transport_set_ptr( *m_session, (gnutls_transport_ptr_t)
this );
76 gnutls_transport_set_push_function( *m_session, pushFunc );
77 gnutls_transport_set_pull_function( *m_session, pullFunc );
87 StringList::const_iterator it = m_cacerts.begin();
88 for( ; it != m_cacerts.end(); ++it )
89 gnutls_certificate_set_x509_trust_file( m_credentials, (*it).c_str(), GNUTLS_X509_FMT_PEM );
94 m_clientKey = clientKey;
95 m_clientCerts = clientCerts;
97 if( !m_clientKey.empty() && !m_clientCerts.empty() )
99 gnutls_certificate_set_x509_key_file( m_credentials, m_clientCerts.c_str(),
100 m_clientKey.c_str(), GNUTLS_X509_FMT_PEM );
104 void GnuTLSClient::getCertInfo()
109 gnutls_certificate_free_ca_names( m_credentials );
111 if( gnutls_certificate_verify_peers2( *m_session, &status ) < 0 )
115 if( status & GNUTLS_CERT_INVALID )
117 if( status & GNUTLS_CERT_SIGNER_NOT_FOUND )
119 if( status & GNUTLS_CERT_REVOKED )
121 if( status & GNUTLS_CERT_SIGNER_NOT_CA )
123 const gnutls_datum_t* certList = 0;
124 unsigned int certListSize = 0;
125 if( !error && ( ( certList = gnutls_certificate_get_peers( *m_session, &certListSize ) ) == 0 ) )
128 unsigned int certListSizeFull = certListSize;
130 gnutls_x509_crt_t* cert =
new gnutls_x509_crt_t[certListSize+1];
131 for(
unsigned int i=0; !error && ( i<certListSize ); ++i )
133 if( gnutls_x509_crt_init( &cert[i] ) < 0
134 || gnutls_x509_crt_import( cert[i], &certList[i], GNUTLS_X509_FMT_DER ) < 0 )
138 if( ( gnutls_x509_crt_check_issuer( cert[certListSize-1], cert[certListSize-1] ) > 0 )
139 && certListSize > 0 )
143 for(
unsigned int i=1; !error && ( i<certListSize ); ++i )
145 chain = error = !verifyAgainst( cert[i-1], cert[i] );
149 m_certInfo.
chain = chain;
151 m_certInfo.
chain = verifyAgainstCAs( cert[certListSize], 0 , 0 );
153 int t = (int)gnutls_x509_crt_get_activation_time( cert[0] );
156 else if( t > time( 0 ) )
160 t = (
int)gnutls_x509_crt_get_expiration_time( cert[0] );
163 else if( t < time( 0 ) )
168 size_t nameSize =
sizeof( name );
169 gnutls_x509_crt_get_issuer_dn( cert[0], name, &nameSize );
172 nameSize =
sizeof( name );
173 gnutls_x509_crt_get_dn( cert[0], name, &nameSize );
177 info = gnutls_compression_get_name( gnutls_compression_get( *m_session ) );
181 info = gnutls_mac_get_name( gnutls_mac_get( *m_session ) );
183 m_certInfo.
mac = info;
185 info = gnutls_cipher_get_name( gnutls_cipher_get( *m_session ) );
189 info = gnutls_protocol_get_name( gnutls_protocol_get_version( *m_session ) );
193 if( !gnutls_x509_crt_check_hostname( cert[0], m_server.c_str() ) )
196 for(
unsigned int i = 0; i < certListSizeFull; ++i )
197 gnutls_x509_crt_deinit( cert[i] );
204 static bool verifyCert( gnutls_x509_crt_t cert,
unsigned result )
206 return ! ( ( result & GNUTLS_CERT_INVALID )
207 || gnutls_x509_crt_get_expiration_time( cert ) < time( 0 )
208 || gnutls_x509_crt_get_activation_time( cert ) > time( 0 ) );
211 bool GnuTLSClient::verifyAgainst( gnutls_x509_crt_t cert, gnutls_x509_crt_t issuer )
214 gnutls_x509_crt_verify( cert, &issuer, 1, 0, &result );
215 return verifyCert( cert, result );
218 bool GnuTLSClient::verifyAgainstCAs( gnutls_x509_crt_t cert, gnutls_x509_crt_t* CAList,
int CAListSize )
221 gnutls_x509_crt_verify( cert, CAList, CAListSize, GNUTLS_VERIFY_ALLOW_X509_V1_CA_CRT, &result );
222 return verifyCert( cert, result );
227 #endif // HAVE_GNUTLS
std::list< std::string > StringList
virtual bool init(const std::string &clientKey=EmptyString, const std::string &clientCerts=EmptyString, const StringList &cacerts=StringList())
The namespace for the gloox library.
This is the common base class for (stream) encryption using GnuTLS.
GnuTLSClient(TLSHandler *th, const std::string &server)
virtual void setCACerts(const StringList &cacerts)
virtual void setClientCert(const std::string &clientKey, const std::string &clientCerts)
An interface that allows for interacting with TLS implementations derived from TLSBase.