[b7d3cc34] | 1 | /********************************************************************\ |
---|
| 2 | * BitlBee -- An IRC to other IM-networks gateway * |
---|
| 3 | * * |
---|
| 4 | * Copyright 2002-2004 Wilmer van der Gaast and others * |
---|
| 5 | \********************************************************************/ |
---|
| 6 | |
---|
| 7 | /* SSL module - GnuTLS version */ |
---|
| 8 | |
---|
| 9 | /* |
---|
| 10 | This program is free software; you can redistribute it and/or modify |
---|
| 11 | it under the terms of the GNU General Public License as published by |
---|
| 12 | the Free Software Foundation; either version 2 of the License, or |
---|
| 13 | (at your option) any later version. |
---|
| 14 | |
---|
| 15 | This program is distributed in the hope that it will be useful, |
---|
| 16 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
| 17 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
| 18 | GNU General Public License for more details. |
---|
| 19 | |
---|
| 20 | You should have received a copy of the GNU General Public License with |
---|
| 21 | the Debian GNU/Linux distribution in /usr/share/common-licenses/GPL; |
---|
| 22 | if not, write to the Free Software Foundation, Inc., 59 Temple Place, |
---|
| 23 | Suite 330, Boston, MA 02111-1307 USA |
---|
| 24 | */ |
---|
| 25 | |
---|
| 26 | #include <gnutls/gnutls.h> |
---|
[486ddb5] | 27 | #include <gnutls/x509.h> |
---|
[83e47ec] | 28 | #include <gcrypt.h> |
---|
[701acdd4] | 29 | #include <fcntl.h> |
---|
| 30 | #include <unistd.h> |
---|
[b7d3cc34] | 31 | #include "proxy.h" |
---|
| 32 | #include "ssl_client.h" |
---|
| 33 | #include "sock.h" |
---|
| 34 | #include "stdlib.h" |
---|
[486ddb5] | 35 | #include "bitlbee.h" |
---|
[b7d3cc34] | 36 | |
---|
[701acdd4] | 37 | int ssl_errno = 0; |
---|
| 38 | |
---|
[b7d3cc34] | 39 | static gboolean initialized = FALSE; |
---|
| 40 | |
---|
[56f260a] | 41 | #include <limits.h> |
---|
| 42 | |
---|
| 43 | #if defined(ULONG_MAX) && ULONG_MAX > 4294967295UL |
---|
| 44 | #define GNUTLS_STUPID_CAST (long) |
---|
| 45 | #else |
---|
| 46 | #define GNUTLS_STUPID_CAST (int) |
---|
| 47 | #endif |
---|
| 48 | |
---|
[ca974d7] | 49 | #define SSLDEBUG 0 |
---|
| 50 | |
---|
[b7d3cc34] | 51 | struct scd |
---|
| 52 | { |
---|
[3d64e5b] | 53 | ssl_input_function func; |
---|
[b7d3cc34] | 54 | gpointer data; |
---|
| 55 | int fd; |
---|
| 56 | gboolean established; |
---|
[701acdd4] | 57 | int inpa; |
---|
[486ddb5] | 58 | char *hostname; |
---|
| 59 | gboolean verify; |
---|
[b7d3cc34] | 60 | |
---|
| 61 | gnutls_session session; |
---|
| 62 | gnutls_certificate_credentials xcred; |
---|
| 63 | }; |
---|
| 64 | |
---|
[2b7d2d1] | 65 | static gboolean ssl_connected( gpointer data, gint source, b_input_condition cond ); |
---|
[c1ed6527] | 66 | static gboolean ssl_starttls_real( gpointer data, gint source, b_input_condition cond ); |
---|
| 67 | static gboolean ssl_handshake( gpointer data, gint source, b_input_condition cond ); |
---|
[b7d3cc34] | 68 | |
---|
| 69 | |
---|
[ba5add7] | 70 | void ssl_init( void ) |
---|
| 71 | { |
---|
[83e47ec] | 72 | if( initialized ) |
---|
| 73 | return; |
---|
| 74 | |
---|
[ba5add7] | 75 | gnutls_global_init(); |
---|
| 76 | initialized = TRUE; |
---|
| 77 | atexit( gnutls_global_deinit ); |
---|
| 78 | } |
---|
| 79 | |
---|
[a72dc2b] | 80 | void *ssl_connect( char *host, int port, gboolean verify, ssl_input_function func, gpointer data ) |
---|
[b7d3cc34] | 81 | { |
---|
| 82 | struct scd *conn = g_new0( struct scd, 1 ); |
---|
| 83 | |
---|
| 84 | conn->fd = proxy_connect( host, port, ssl_connected, conn ); |
---|
| 85 | conn->func = func; |
---|
| 86 | conn->data = data; |
---|
[701acdd4] | 87 | conn->inpa = -1; |
---|
[a72dc2b] | 88 | conn->hostname = g_strdup( host ); |
---|
| 89 | conn->verify = verify && global.conf->cafile; |
---|
[b7d3cc34] | 90 | |
---|
| 91 | if( conn->fd < 0 ) |
---|
| 92 | { |
---|
| 93 | g_free( conn ); |
---|
[42127dc] | 94 | return NULL; |
---|
[b7d3cc34] | 95 | } |
---|
| 96 | |
---|
[42127dc] | 97 | return conn; |
---|
| 98 | } |
---|
| 99 | |
---|
[486ddb5] | 100 | void *ssl_starttls( int fd, char *hostname, gboolean verify, ssl_input_function func, gpointer data ) |
---|
[42127dc] | 101 | { |
---|
| 102 | struct scd *conn = g_new0( struct scd, 1 ); |
---|
[b7d3cc34] | 103 | |
---|
[42127dc] | 104 | conn->fd = fd; |
---|
| 105 | conn->func = func; |
---|
| 106 | conn->data = data; |
---|
| 107 | conn->inpa = -1; |
---|
[486ddb5] | 108 | conn->hostname = hostname; |
---|
| 109 | |
---|
| 110 | /* For now, SSL verification is globally enabled by setting the cafile |
---|
| 111 | setting in bitlbee.conf. Commented out by default because probably |
---|
| 112 | not everyone has this file in the same place and plenty of folks |
---|
| 113 | may not have the cert of their private Jabber server in it. */ |
---|
| 114 | conn->verify = verify && global.conf->cafile; |
---|
[42127dc] | 115 | |
---|
[c1ed6527] | 116 | /* This function should be called via a (short) timeout instead of |
---|
| 117 | directly from here, because these SSL calls are *supposed* to be |
---|
| 118 | *completely* asynchronous and not ready yet when this function |
---|
| 119 | (or *_connect, for examle) returns. Also, errors are reported via |
---|
| 120 | the callback function, not via this function's return value. |
---|
| 121 | |
---|
| 122 | In short, doing things like this makes the rest of the code a lot |
---|
| 123 | simpler. */ |
---|
| 124 | |
---|
| 125 | b_timeout_add( 1, ssl_starttls_real, conn ); |
---|
[b7d3cc34] | 126 | |
---|
[42127dc] | 127 | return conn; |
---|
[b7d3cc34] | 128 | } |
---|
| 129 | |
---|
[c1ed6527] | 130 | static gboolean ssl_starttls_real( gpointer data, gint source, b_input_condition cond ) |
---|
| 131 | { |
---|
| 132 | struct scd *conn = data; |
---|
| 133 | |
---|
[e046390] | 134 | return ssl_connected( conn, conn->fd, B_EV_IO_WRITE ); |
---|
[c1ed6527] | 135 | } |
---|
[701acdd4] | 136 | |
---|
[486ddb5] | 137 | static int verify_certificate_callback( gnutls_session_t session ) |
---|
| 138 | { |
---|
| 139 | unsigned int status; |
---|
| 140 | const gnutls_datum_t *cert_list; |
---|
| 141 | unsigned int cert_list_size; |
---|
| 142 | int gnutlsret; |
---|
| 143 | int verifyret = 0; |
---|
| 144 | gnutls_x509_crt_t cert; |
---|
| 145 | const char *hostname; |
---|
| 146 | |
---|
| 147 | hostname = gnutls_session_get_ptr(session ); |
---|
| 148 | |
---|
| 149 | gnutlsret = gnutls_certificate_verify_peers2( session, &status ); |
---|
| 150 | if( gnutlsret < 0 ) |
---|
| 151 | return VERIFY_CERT_ERROR; |
---|
| 152 | |
---|
| 153 | if( status & GNUTLS_CERT_INVALID ) |
---|
| 154 | verifyret |= VERIFY_CERT_INVALID; |
---|
| 155 | |
---|
| 156 | if( status & GNUTLS_CERT_REVOKED ) |
---|
| 157 | verifyret |= VERIFY_CERT_REVOKED; |
---|
| 158 | |
---|
| 159 | if( status & GNUTLS_CERT_SIGNER_NOT_FOUND ) |
---|
| 160 | verifyret |= VERIFY_CERT_SIGNER_NOT_FOUND; |
---|
| 161 | |
---|
| 162 | if( status & GNUTLS_CERT_SIGNER_NOT_CA ) |
---|
| 163 | verifyret |= VERIFY_CERT_SIGNER_NOT_CA; |
---|
| 164 | |
---|
| 165 | if( status & GNUTLS_CERT_INSECURE_ALGORITHM ) |
---|
| 166 | verifyret |= VERIFY_CERT_INSECURE_ALGORITHM; |
---|
| 167 | |
---|
| 168 | if( status & GNUTLS_CERT_NOT_ACTIVATED ) |
---|
| 169 | verifyret |= VERIFY_CERT_NOT_ACTIVATED; |
---|
| 170 | |
---|
| 171 | if( status & GNUTLS_CERT_EXPIRED ) |
---|
| 172 | verifyret |= VERIFY_CERT_EXPIRED; |
---|
| 173 | |
---|
| 174 | /* The following check is already performed inside |
---|
| 175 | * gnutls_certificate_verify_peers2, so we don't need it. |
---|
| 176 | |
---|
| 177 | * if( gnutls_certificate_type_get( session ) != GNUTLS_CRT_X509 ) |
---|
| 178 | * return GNUTLS_E_CERTIFICATE_ERROR; |
---|
| 179 | */ |
---|
| 180 | |
---|
| 181 | if( gnutls_x509_crt_init( &cert ) < 0 ) |
---|
| 182 | return VERIFY_CERT_ERROR; |
---|
| 183 | |
---|
| 184 | cert_list = gnutls_certificate_get_peers( session, &cert_list_size ); |
---|
| 185 | if( cert_list == NULL || gnutls_x509_crt_import( cert, &cert_list[0], GNUTLS_X509_FMT_DER ) < 0 ) |
---|
| 186 | return VERIFY_CERT_ERROR; |
---|
| 187 | |
---|
| 188 | if( !gnutls_x509_crt_check_hostname( cert, hostname ) ) |
---|
| 189 | { |
---|
| 190 | verifyret |= VERIFY_CERT_INVALID; |
---|
| 191 | verifyret |= VERIFY_CERT_WRONG_HOSTNAME; |
---|
| 192 | } |
---|
| 193 | |
---|
| 194 | gnutls_x509_crt_deinit( cert ); |
---|
| 195 | |
---|
| 196 | return verifyret; |
---|
| 197 | } |
---|
| 198 | |
---|
[78b8401] | 199 | char *ssl_verify_strerror( int code ) |
---|
| 200 | { |
---|
| 201 | GString *ret = g_string_new( "" ); |
---|
| 202 | |
---|
| 203 | if( code & VERIFY_CERT_REVOKED ) |
---|
| 204 | g_string_append( ret, "certificate has been revoked, " ); |
---|
| 205 | if( code & VERIFY_CERT_SIGNER_NOT_FOUND ) |
---|
| 206 | g_string_append( ret, "certificate hasn't got a known issuer, " ); |
---|
| 207 | if( code & VERIFY_CERT_SIGNER_NOT_CA ) |
---|
| 208 | g_string_append( ret, "certificate's issuer is not a CA, " ); |
---|
| 209 | if( code & VERIFY_CERT_INSECURE_ALGORITHM ) |
---|
| 210 | g_string_append( ret, "certificate uses an insecure algorithm, " ); |
---|
| 211 | if( code & VERIFY_CERT_NOT_ACTIVATED ) |
---|
| 212 | g_string_append( ret, "certificate has not been activated, " ); |
---|
| 213 | if( code & VERIFY_CERT_EXPIRED ) |
---|
| 214 | g_string_append( ret, "certificate has expired, " ); |
---|
| 215 | if( code & VERIFY_CERT_WRONG_HOSTNAME ) |
---|
| 216 | g_string_append( ret, "certificate hostname mismatch, " ); |
---|
| 217 | |
---|
| 218 | if( ret->len == 0 ) |
---|
| 219 | { |
---|
| 220 | g_string_free( ret, TRUE ); |
---|
| 221 | return NULL; |
---|
| 222 | } |
---|
| 223 | else |
---|
| 224 | { |
---|
| 225 | g_string_truncate( ret, ret->len - 2 ); |
---|
| 226 | return g_string_free( ret, FALSE ); |
---|
| 227 | } |
---|
| 228 | } |
---|
| 229 | |
---|
[2b7d2d1] | 230 | static gboolean ssl_connected( gpointer data, gint source, b_input_condition cond ) |
---|
[b7d3cc34] | 231 | { |
---|
| 232 | struct scd *conn = data; |
---|
| 233 | |
---|
| 234 | if( source == -1 ) |
---|
[701acdd4] | 235 | { |
---|
[486ddb5] | 236 | conn->func( conn->data, 0, NULL, cond ); |
---|
[701acdd4] | 237 | g_free( conn ); |
---|
[2b7d2d1] | 238 | return FALSE; |
---|
[701acdd4] | 239 | } |
---|
[b7d3cc34] | 240 | |
---|
[83e47ec] | 241 | ssl_init(); |
---|
[42127dc] | 242 | |
---|
| 243 | gnutls_certificate_allocate_credentials( &conn->xcred ); |
---|
[486ddb5] | 244 | if( conn->verify && global.conf->cafile ) |
---|
| 245 | { |
---|
| 246 | gnutls_certificate_set_x509_trust_file( conn->xcred, global.conf->cafile, GNUTLS_X509_FMT_PEM ); |
---|
| 247 | gnutls_certificate_set_verify_flags( conn->xcred, GNUTLS_VERIFY_ALLOW_X509_V1_CA_CRT ); |
---|
| 248 | } |
---|
| 249 | |
---|
[42127dc] | 250 | gnutls_init( &conn->session, GNUTLS_CLIENT ); |
---|
[486ddb5] | 251 | if( conn->verify ) |
---|
| 252 | gnutls_session_set_ptr( conn->session, (void *) conn->hostname ); |
---|
[80acb6d] | 253 | #if GNUTLS_VERSION_NUMBER < 0x020c00 |
---|
| 254 | gnutls_transport_set_lowat( conn->session, 0 ); |
---|
| 255 | #endif |
---|
[42127dc] | 256 | gnutls_set_default_priority( conn->session ); |
---|
| 257 | gnutls_credentials_set( conn->session, GNUTLS_CRD_CERTIFICATE, conn->xcred ); |
---|
| 258 | |
---|
[701acdd4] | 259 | sock_make_nonblocking( conn->fd ); |
---|
[56f260a] | 260 | gnutls_transport_set_ptr( conn->session, (gnutls_transport_ptr) GNUTLS_STUPID_CAST conn->fd ); |
---|
[b7d3cc34] | 261 | |
---|
[2b7d2d1] | 262 | return ssl_handshake( data, source, cond ); |
---|
[701acdd4] | 263 | } |
---|
| 264 | |
---|
[2b7d2d1] | 265 | static gboolean ssl_handshake( gpointer data, gint source, b_input_condition cond ) |
---|
[701acdd4] | 266 | { |
---|
| 267 | struct scd *conn = data; |
---|
[486ddb5] | 268 | int st, stver; |
---|
[b7d3cc34] | 269 | |
---|
[701acdd4] | 270 | if( ( st = gnutls_handshake( conn->session ) ) < 0 ) |
---|
| 271 | { |
---|
| 272 | if( st == GNUTLS_E_AGAIN || st == GNUTLS_E_INTERRUPTED ) |
---|
| 273 | { |
---|
[2b7d2d1] | 274 | conn->inpa = b_input_add( conn->fd, ssl_getdirection( conn ), |
---|
| 275 | ssl_handshake, data ); |
---|
[701acdd4] | 276 | } |
---|
| 277 | else |
---|
| 278 | { |
---|
[486ddb5] | 279 | conn->func( conn->data, 0, NULL, cond ); |
---|
[701acdd4] | 280 | |
---|
| 281 | gnutls_deinit( conn->session ); |
---|
| 282 | gnutls_certificate_free_credentials( conn->xcred ); |
---|
| 283 | closesocket( conn->fd ); |
---|
| 284 | |
---|
| 285 | g_free( conn ); |
---|
| 286 | } |
---|
| 287 | } |
---|
| 288 | else |
---|
| 289 | { |
---|
[486ddb5] | 290 | if( conn->verify && ( stver = verify_certificate_callback( conn->session ) ) != 0 ) |
---|
| 291 | { |
---|
| 292 | conn->func( conn->data, stver, NULL, cond ); |
---|
| 293 | |
---|
| 294 | gnutls_deinit( conn->session ); |
---|
| 295 | gnutls_certificate_free_credentials( conn->xcred ); |
---|
| 296 | closesocket( conn->fd ); |
---|
| 297 | |
---|
| 298 | g_free( conn ); |
---|
| 299 | } |
---|
| 300 | else |
---|
| 301 | { |
---|
| 302 | /* For now we can't handle non-blocking perfectly everywhere... */ |
---|
| 303 | sock_make_blocking( conn->fd ); |
---|
[701acdd4] | 304 | |
---|
[486ddb5] | 305 | conn->established = TRUE; |
---|
| 306 | conn->func( conn->data, 0, conn, cond ); |
---|
| 307 | } |
---|
[701acdd4] | 308 | } |
---|
[2b7d2d1] | 309 | |
---|
| 310 | return FALSE; |
---|
[b7d3cc34] | 311 | } |
---|
| 312 | |
---|
| 313 | int ssl_read( void *conn, char *buf, int len ) |
---|
| 314 | { |
---|
[8a9afe4] | 315 | int st; |
---|
| 316 | |
---|
[b7d3cc34] | 317 | if( !((struct scd*)conn)->established ) |
---|
[701acdd4] | 318 | { |
---|
| 319 | ssl_errno = SSL_NOHANDSHAKE; |
---|
[80acb6d] | 320 | return -1; |
---|
[701acdd4] | 321 | } |
---|
[b7d3cc34] | 322 | |
---|
[8a9afe4] | 323 | st = gnutls_record_recv( ((struct scd*)conn)->session, buf, len ); |
---|
| 324 | |
---|
| 325 | ssl_errno = SSL_OK; |
---|
| 326 | if( st == GNUTLS_E_AGAIN || st == GNUTLS_E_INTERRUPTED ) |
---|
| 327 | ssl_errno = SSL_AGAIN; |
---|
[701acdd4] | 328 | |
---|
[ca974d7] | 329 | if( SSLDEBUG && getenv( "BITLBEE_DEBUG" ) && st > 0 ) len = write( 2, buf, st ); |
---|
[50b8978] | 330 | |
---|
[8a9afe4] | 331 | return st; |
---|
[b7d3cc34] | 332 | } |
---|
| 333 | |
---|
| 334 | int ssl_write( void *conn, const char *buf, int len ) |
---|
| 335 | { |
---|
[8a9afe4] | 336 | int st; |
---|
| 337 | |
---|
[b7d3cc34] | 338 | if( !((struct scd*)conn)->established ) |
---|
[701acdd4] | 339 | { |
---|
| 340 | ssl_errno = SSL_NOHANDSHAKE; |
---|
[80acb6d] | 341 | return -1; |
---|
[701acdd4] | 342 | } |
---|
[b7d3cc34] | 343 | |
---|
[8a9afe4] | 344 | st = gnutls_record_send( ((struct scd*)conn)->session, buf, len ); |
---|
| 345 | |
---|
| 346 | ssl_errno = SSL_OK; |
---|
| 347 | if( st == GNUTLS_E_AGAIN || st == GNUTLS_E_INTERRUPTED ) |
---|
| 348 | ssl_errno = SSL_AGAIN; |
---|
| 349 | |
---|
[ca974d7] | 350 | if( SSLDEBUG && getenv( "BITLBEE_DEBUG" ) && st > 0 ) len = write( 2, buf, st ); |
---|
[50b8978] | 351 | |
---|
[8a9afe4] | 352 | return st; |
---|
[b7d3cc34] | 353 | } |
---|
| 354 | |
---|
[8a2221a7] | 355 | int ssl_pending( void *conn ) |
---|
| 356 | { |
---|
[80acb6d] | 357 | if( conn == NULL ) |
---|
| 358 | return 0; |
---|
| 359 | |
---|
| 360 | if( !((struct scd*)conn)->established ) |
---|
| 361 | { |
---|
| 362 | ssl_errno = SSL_NOHANDSHAKE; |
---|
| 363 | return 0; |
---|
| 364 | } |
---|
| 365 | |
---|
| 366 | return gnutls_record_check_pending( ((struct scd*)conn)->session ) != 0; |
---|
[8a2221a7] | 367 | } |
---|
| 368 | |
---|
[b7d3cc34] | 369 | void ssl_disconnect( void *conn_ ) |
---|
| 370 | { |
---|
| 371 | struct scd *conn = conn_; |
---|
| 372 | |
---|
[a03a9f3] | 373 | if( conn->inpa != -1 ) |
---|
[2b7d2d1] | 374 | b_event_remove( conn->inpa ); |
---|
[a03a9f3] | 375 | |
---|
[b7d3cc34] | 376 | if( conn->established ) |
---|
| 377 | gnutls_bye( conn->session, GNUTLS_SHUT_WR ); |
---|
| 378 | |
---|
| 379 | closesocket( conn->fd ); |
---|
| 380 | |
---|
[3e79889] | 381 | if( conn->session ) |
---|
| 382 | gnutls_deinit( conn->session ); |
---|
| 383 | if( conn->xcred ) |
---|
| 384 | gnutls_certificate_free_credentials( conn->xcred ); |
---|
[b7d3cc34] | 385 | g_free( conn ); |
---|
| 386 | } |
---|
| 387 | |
---|
| 388 | int ssl_getfd( void *conn ) |
---|
| 389 | { |
---|
| 390 | return( ((struct scd*)conn)->fd ); |
---|
| 391 | } |
---|
[8a9afe4] | 392 | |
---|
[ba9edaa] | 393 | b_input_condition ssl_getdirection( void *conn ) |
---|
[8a9afe4] | 394 | { |
---|
| 395 | return( gnutls_record_get_direction( ((struct scd*)conn)->session ) ? |
---|
[e046390] | 396 | B_EV_IO_WRITE : B_EV_IO_READ ); |
---|
[8a9afe4] | 397 | } |
---|
[83e47ec] | 398 | |
---|
| 399 | size_t ssl_des3_encrypt( const unsigned char *key, size_t key_len, const unsigned char *input, |
---|
| 400 | size_t input_len, const unsigned char *iv, unsigned char **res ) |
---|
| 401 | { |
---|
| 402 | gcry_cipher_hd_t gcr; |
---|
| 403 | gcry_error_t st; |
---|
| 404 | |
---|
| 405 | ssl_init(); |
---|
| 406 | |
---|
| 407 | *res = g_malloc( input_len ); |
---|
| 408 | st = gcry_cipher_open( &gcr, GCRY_CIPHER_3DES, GCRY_CIPHER_MODE_CBC, 0 ) || |
---|
| 409 | gcry_cipher_setkey( gcr, key, key_len ) || |
---|
| 410 | gcry_cipher_setiv( gcr, iv, 8 ) || |
---|
| 411 | gcry_cipher_encrypt( gcr, *res, input_len, input, input_len ); |
---|
| 412 | |
---|
| 413 | gcry_cipher_close( gcr ); |
---|
| 414 | |
---|
| 415 | if( st == 0 ) |
---|
| 416 | return input_len; |
---|
| 417 | |
---|
| 418 | g_free( *res ); |
---|
| 419 | return 0; |
---|
| 420 | } |
---|