15 #include "tlsgnutlsclient.h"
40 const std::string& clientCerts,
43 const int protocolPriority[] = {
47 GNUTLS_TLS1_1, GNUTLS_TLS1, 0 };
48 const int kxPriority[] = { GNUTLS_KX_RSA, GNUTLS_KX_DHE_RSA, GNUTLS_KX_DHE_DSS, 0 };
49 const int cipherPriority[] = { GNUTLS_CIPHER_AES_256_CBC, GNUTLS_CIPHER_AES_128_CBC,
50 GNUTLS_CIPHER_3DES_CBC, GNUTLS_CIPHER_ARCFOUR, 0 };
51 const int compPriority[] = { GNUTLS_COMP_ZLIB, GNUTLS_COMP_NULL, 0 };
52 const int macPriority[] = { GNUTLS_MAC_SHA, GNUTLS_MAC_MD5, 0 };
54 if( m_initLib && gnutls_global_init() != 0 )
57 if( gnutls_certificate_allocate_credentials( &m_credentials ) < 0 )
60 if( gnutls_init( m_session, GNUTLS_CLIENT ) != 0 )
62 gnutls_certificate_free_credentials( m_credentials );
66 gnutls_protocol_set_priority( *m_session, protocolPriority );
67 gnutls_cipher_set_priority( *m_session, cipherPriority );
68 gnutls_compression_set_priority( *m_session, compPriority );
69 gnutls_kx_set_priority( *m_session, kxPriority );
70 gnutls_mac_set_priority( *m_session, macPriority );
71 gnutls_credentials_set( *m_session, GNUTLS_CRD_CERTIFICATE, m_credentials );
73 gnutls_transport_set_ptr( *m_session, (gnutls_transport_ptr_t)
this );
74 gnutls_transport_set_push_function( *m_session, pushFunc );
75 gnutls_transport_set_pull_function( *m_session, pullFunc );
85 StringList::const_iterator it = m_cacerts.begin();
86 for( ; it != m_cacerts.end(); ++it )
87 gnutls_certificate_set_x509_trust_file( m_credentials, (*it).c_str(), GNUTLS_X509_FMT_PEM );
92 m_clientKey = clientKey;
93 m_clientCerts = clientCerts;
95 if( !m_clientKey.empty() && !m_clientCerts.empty() )
97 gnutls_certificate_set_x509_key_file( m_credentials, m_clientCerts.c_str(),
98 m_clientKey.c_str(), GNUTLS_X509_FMT_PEM );
102 void GnuTLSClient::getCertInfo()
107 gnutls_certificate_free_ca_names( m_credentials );
109 if( gnutls_certificate_verify_peers2( *m_session, &status ) < 0 )
113 if( status & GNUTLS_CERT_INVALID )
115 if( status & GNUTLS_CERT_SIGNER_NOT_FOUND )
117 if( status & GNUTLS_CERT_REVOKED )
119 if( status & GNUTLS_CERT_SIGNER_NOT_CA )
121 const gnutls_datum_t* certList = 0;
122 unsigned int certListSize;
123 if( !error && ( ( certList = gnutls_certificate_get_peers( *m_session, &certListSize ) ) == 0 ) )
126 gnutls_x509_crt_t* cert =
new gnutls_x509_crt_t[certListSize+1];
127 for(
unsigned int i=0; !error && ( i<certListSize ); ++i )
129 if( gnutls_x509_crt_init( &cert[i] ) < 0
130 || gnutls_x509_crt_import( cert[i], &certList[i], GNUTLS_X509_FMT_DER ) < 0 )
134 if( ( gnutls_x509_crt_check_issuer( cert[certListSize-1], cert[certListSize-1] ) > 0 )
135 && certListSize > 0 )
139 for(
unsigned int i=1; !error && ( i<certListSize ); ++i )
141 chain = error = !verifyAgainst( cert[i-1], cert[i] );
145 m_certInfo.
chain = chain;
147 m_certInfo.
chain = verifyAgainstCAs( cert[certListSize], 0 , 0 );
149 int t = (int)gnutls_x509_crt_get_activation_time( cert[0] );
152 else if( t > time( 0 ) )
156 t = (
int)gnutls_x509_crt_get_expiration_time( cert[0] );
159 else if( t < time( 0 ) )
164 size_t nameSize =
sizeof( name );
165 gnutls_x509_crt_get_issuer_dn( cert[0], name, &nameSize );
168 nameSize =
sizeof( name );
169 gnutls_x509_crt_get_dn( cert[0], name, &nameSize );
173 info = gnutls_compression_get_name( gnutls_compression_get( *m_session ) );
177 info = gnutls_mac_get_name( gnutls_mac_get( *m_session ) );
179 m_certInfo.
mac = info;
181 info = gnutls_cipher_get_name( gnutls_cipher_get( *m_session ) );
185 info = gnutls_protocol_get_name( gnutls_protocol_get_version( *m_session ) );
189 if( !gnutls_x509_crt_check_hostname( cert[0], m_server.c_str() ) )
192 for(
unsigned int i = 0; i < certListSize; ++i )
193 gnutls_x509_crt_deinit( cert[i] );
200 static bool verifyCert( gnutls_x509_crt_t cert,
unsigned result )
202 return ! ( ( result & GNUTLS_CERT_INVALID )
203 || gnutls_x509_crt_get_expiration_time( cert ) < time( 0 )
204 || gnutls_x509_crt_get_activation_time( cert ) > time( 0 ) );
207 bool GnuTLSClient::verifyAgainst( gnutls_x509_crt_t cert, gnutls_x509_crt_t issuer )
210 gnutls_x509_crt_verify( cert, &issuer, 1, 0, &result );
211 return verifyCert( cert, result );
214 bool GnuTLSClient::verifyAgainstCAs( gnutls_x509_crt_t cert, gnutls_x509_crt_t* CAList,
int CAListSize )
217 gnutls_x509_crt_verify( cert, CAList, CAListSize, GNUTLS_VERIFY_ALLOW_X509_V1_CA_CRT, &result );
218 return verifyCert( cert, result );
223 #endif // HAVE_GNUTLS