[b7d3cc34] | 1 | /********************************************************************\ |
---|
| 2 | * BitlBee -- An IRC to other IM-networks gateway * |
---|
| 3 | * * |
---|
| 4 | * Copyright 2002-2004 Wilmer van der Gaast and others * |
---|
| 5 | \********************************************************************/ |
---|
| 6 | |
---|
[26fdfc5] | 7 | /* SSL module - OpenSSL version */ |
---|
[b7d3cc34] | 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 <openssl/crypto.h> |
---|
| 27 | #include <openssl/rand.h> |
---|
| 28 | #include <openssl/x509.h> |
---|
| 29 | #include <openssl/pem.h> |
---|
| 30 | #include <openssl/ssl.h> |
---|
| 31 | #include <openssl/err.h> |
---|
| 32 | |
---|
| 33 | #include "proxy.h" |
---|
| 34 | #include "ssl_client.h" |
---|
| 35 | #include "sock.h" |
---|
| 36 | |
---|
[701acdd4] | 37 | int ssl_errno = 0; |
---|
| 38 | |
---|
[b7d3cc34] | 39 | static gboolean initialized = FALSE; |
---|
| 40 | |
---|
| 41 | struct scd |
---|
| 42 | { |
---|
[26fdfc5] | 43 | ssl_input_function func; |
---|
[b7d3cc34] | 44 | gpointer data; |
---|
| 45 | int fd; |
---|
| 46 | gboolean established; |
---|
| 47 | |
---|
[26fdfc5] | 48 | int inpa; |
---|
| 49 | int lasterr; /* Necessary for SSL_get_error */ |
---|
[b7d3cc34] | 50 | SSL *ssl; |
---|
| 51 | SSL_CTX *ssl_ctx; |
---|
| 52 | }; |
---|
| 53 | |
---|
[309cb9e] | 54 | static gboolean ssl_connected( gpointer data, gint source, b_input_condition cond ); |
---|
[f920d9e] | 55 | static gboolean ssl_starttls_real( gpointer data, gint source, b_input_condition cond ); |
---|
| 56 | static gboolean ssl_handshake( gpointer data, gint source, b_input_condition cond ); |
---|
[b7d3cc34] | 57 | |
---|
| 58 | |
---|
[26fdfc5] | 59 | void *ssl_connect( char *host, int port, ssl_input_function func, gpointer data ) |
---|
[b7d3cc34] | 60 | { |
---|
| 61 | struct scd *conn = g_new0( struct scd, 1 ); |
---|
| 62 | |
---|
| 63 | conn->fd = proxy_connect( host, port, ssl_connected, conn ); |
---|
| 64 | if( conn->fd < 0 ) |
---|
| 65 | { |
---|
| 66 | g_free( conn ); |
---|
[f920d9e] | 67 | return NULL; |
---|
[b7d3cc34] | 68 | } |
---|
| 69 | |
---|
[8a2221a7] | 70 | conn->func = func; |
---|
| 71 | conn->data = data; |
---|
| 72 | conn->inpa = -1; |
---|
| 73 | |
---|
[f920d9e] | 74 | return conn; |
---|
| 75 | } |
---|
| 76 | |
---|
| 77 | void *ssl_starttls( int fd, ssl_input_function func, gpointer data ) |
---|
| 78 | { |
---|
| 79 | struct scd *conn = g_new0( struct scd, 1 ); |
---|
| 80 | |
---|
| 81 | conn->fd = fd; |
---|
| 82 | conn->func = func; |
---|
| 83 | conn->data = data; |
---|
| 84 | conn->inpa = -1; |
---|
| 85 | |
---|
| 86 | /* This function should be called via a (short) timeout instead of |
---|
| 87 | directly from here, because these SSL calls are *supposed* to be |
---|
| 88 | *completely* asynchronous and not ready yet when this function |
---|
| 89 | (or *_connect, for examle) returns. Also, errors are reported via |
---|
| 90 | the callback function, not via this function's return value. |
---|
| 91 | |
---|
| 92 | In short, doing things like this makes the rest of the code a lot |
---|
| 93 | simpler. */ |
---|
| 94 | |
---|
| 95 | b_timeout_add( 1, ssl_starttls_real, conn ); |
---|
| 96 | |
---|
| 97 | return conn; |
---|
| 98 | } |
---|
| 99 | |
---|
| 100 | static gboolean ssl_starttls_real( gpointer data, gint source, b_input_condition cond ) |
---|
| 101 | { |
---|
| 102 | struct scd *conn = data; |
---|
| 103 | |
---|
[e046390] | 104 | return ssl_connected( conn, conn->fd, B_EV_IO_WRITE ); |
---|
[f920d9e] | 105 | } |
---|
| 106 | |
---|
| 107 | static gboolean ssl_connected( gpointer data, gint source, b_input_condition cond ) |
---|
| 108 | { |
---|
| 109 | struct scd *conn = data; |
---|
| 110 | SSL_METHOD *meth; |
---|
| 111 | |
---|
| 112 | if( source == -1 ) |
---|
| 113 | goto ssl_connected_failure; |
---|
| 114 | |
---|
[b7d3cc34] | 115 | if( !initialized ) |
---|
| 116 | { |
---|
| 117 | initialized = TRUE; |
---|
[50b8978] | 118 | SSL_library_init(); |
---|
| 119 | //SSLeay_add_ssl_algorithms(); |
---|
| 120 | //OpenSSL_add_all_algorithms(); |
---|
[b7d3cc34] | 121 | } |
---|
| 122 | |
---|
| 123 | meth = TLSv1_client_method(); |
---|
| 124 | conn->ssl_ctx = SSL_CTX_new( meth ); |
---|
| 125 | if( conn->ssl_ctx == NULL ) |
---|
[f920d9e] | 126 | goto ssl_connected_failure; |
---|
[b7d3cc34] | 127 | |
---|
| 128 | conn->ssl = SSL_new( conn->ssl_ctx ); |
---|
| 129 | if( conn->ssl == NULL ) |
---|
[f920d9e] | 130 | goto ssl_connected_failure; |
---|
[b7d3cc34] | 131 | |
---|
[309cb9e] | 132 | /* We can do at least the handshake with non-blocking I/O */ |
---|
[26fdfc5] | 133 | sock_make_nonblocking( conn->fd ); |
---|
[b7d3cc34] | 134 | SSL_set_fd( conn->ssl, conn->fd ); |
---|
| 135 | |
---|
[26fdfc5] | 136 | return ssl_handshake( data, source, cond ); |
---|
[f920d9e] | 137 | |
---|
| 138 | ssl_connected_failure: |
---|
| 139 | conn->func( conn->data, NULL, cond ); |
---|
| 140 | |
---|
| 141 | if( conn->ssl ) |
---|
| 142 | { |
---|
| 143 | SSL_shutdown( conn->ssl ); |
---|
| 144 | SSL_free( conn->ssl ); |
---|
| 145 | } |
---|
| 146 | if( conn->ssl_ctx ) |
---|
| 147 | { |
---|
| 148 | SSL_CTX_free( conn->ssl_ctx ); |
---|
| 149 | } |
---|
| 150 | if( source >= 0 ) closesocket( source ); |
---|
| 151 | g_free( conn ); |
---|
| 152 | |
---|
| 153 | return FALSE; |
---|
| 154 | |
---|
[26fdfc5] | 155 | } |
---|
| 156 | |
---|
[309cb9e] | 157 | static gboolean ssl_handshake( gpointer data, gint source, b_input_condition cond ) |
---|
[26fdfc5] | 158 | { |
---|
| 159 | struct scd *conn = data; |
---|
| 160 | int st; |
---|
| 161 | |
---|
| 162 | if( ( st = SSL_connect( conn->ssl ) ) < 0 ) |
---|
| 163 | { |
---|
| 164 | conn->lasterr = SSL_get_error( conn->ssl, st ); |
---|
| 165 | if( conn->lasterr != SSL_ERROR_WANT_READ && conn->lasterr != SSL_ERROR_WANT_WRITE ) |
---|
[f920d9e] | 166 | { |
---|
| 167 | conn->func( conn->data, NULL, cond ); |
---|
| 168 | |
---|
| 169 | SSL_shutdown( conn->ssl ); |
---|
| 170 | SSL_free( conn->ssl ); |
---|
| 171 | SSL_CTX_free( conn->ssl_ctx ); |
---|
| 172 | |
---|
| 173 | if( source >= 0 ) closesocket( source ); |
---|
| 174 | g_free( conn ); |
---|
| 175 | |
---|
| 176 | return FALSE; |
---|
| 177 | } |
---|
[26fdfc5] | 178 | |
---|
[309cb9e] | 179 | conn->inpa = b_input_add( conn->fd, ssl_getdirection( conn ), ssl_handshake, data ); |
---|
| 180 | return FALSE; |
---|
[26fdfc5] | 181 | } |
---|
[b7d3cc34] | 182 | |
---|
| 183 | conn->established = TRUE; |
---|
[26fdfc5] | 184 | sock_make_blocking( conn->fd ); /* For now... */ |
---|
[b7d3cc34] | 185 | conn->func( conn->data, conn, cond ); |
---|
[309cb9e] | 186 | return FALSE; |
---|
[b7d3cc34] | 187 | } |
---|
| 188 | |
---|
| 189 | int ssl_read( void *conn, char *buf, int len ) |
---|
| 190 | { |
---|
[26fdfc5] | 191 | int st; |
---|
| 192 | |
---|
[b7d3cc34] | 193 | if( !((struct scd*)conn)->established ) |
---|
[26fdfc5] | 194 | { |
---|
| 195 | ssl_errno = SSL_NOHANDSHAKE; |
---|
| 196 | return -1; |
---|
| 197 | } |
---|
| 198 | |
---|
| 199 | st = SSL_read( ((struct scd*)conn)->ssl, buf, len ); |
---|
[b7d3cc34] | 200 | |
---|
[26fdfc5] | 201 | ssl_errno = SSL_OK; |
---|
| 202 | if( st <= 0 ) |
---|
| 203 | { |
---|
| 204 | ((struct scd*)conn)->lasterr = SSL_get_error( ((struct scd*)conn)->ssl, st ); |
---|
| 205 | if( ((struct scd*)conn)->lasterr == SSL_ERROR_WANT_READ || ((struct scd*)conn)->lasterr == SSL_ERROR_WANT_WRITE ) |
---|
| 206 | ssl_errno = SSL_AGAIN; |
---|
| 207 | } |
---|
| 208 | |
---|
[50b8978] | 209 | if( getenv( "BITLBEE_DEBUG" ) && st > 0 ) write( 1, buf, st ); |
---|
| 210 | |
---|
[26fdfc5] | 211 | return st; |
---|
[b7d3cc34] | 212 | } |
---|
| 213 | |
---|
| 214 | int ssl_write( void *conn, const char *buf, int len ) |
---|
| 215 | { |
---|
[26fdfc5] | 216 | int st; |
---|
| 217 | |
---|
[b7d3cc34] | 218 | if( !((struct scd*)conn)->established ) |
---|
[26fdfc5] | 219 | { |
---|
| 220 | ssl_errno = SSL_NOHANDSHAKE; |
---|
| 221 | return -1; |
---|
| 222 | } |
---|
| 223 | |
---|
| 224 | st = SSL_write( ((struct scd*)conn)->ssl, buf, len ); |
---|
[b7d3cc34] | 225 | |
---|
[50b8978] | 226 | if( getenv( "BITLBEE_DEBUG" ) && st > 0 ) write( 1, buf, st ); |
---|
| 227 | |
---|
[26fdfc5] | 228 | ssl_errno = SSL_OK; |
---|
| 229 | if( st <= 0 ) |
---|
| 230 | { |
---|
| 231 | ((struct scd*)conn)->lasterr = SSL_get_error( ((struct scd*)conn)->ssl, st ); |
---|
| 232 | if( ((struct scd*)conn)->lasterr == SSL_ERROR_WANT_READ || ((struct scd*)conn)->lasterr == SSL_ERROR_WANT_WRITE ) |
---|
| 233 | ssl_errno = SSL_AGAIN; |
---|
| 234 | } |
---|
| 235 | |
---|
| 236 | return st; |
---|
[b7d3cc34] | 237 | } |
---|
| 238 | |
---|
[8a2221a7] | 239 | /* Only OpenSSL *really* needs this (and well, maybe NSS). See for more info: |
---|
| 240 | http://www.gnu.org/software/gnutls/manual/gnutls.html#index-gnutls_005frecord_005fcheck_005fpending-209 |
---|
| 241 | http://www.openssl.org/docs/ssl/SSL_pending.html |
---|
| 242 | |
---|
| 243 | Required because OpenSSL empties the TCP buffer completely but doesn't |
---|
| 244 | necessarily give us all the unencrypted data. |
---|
| 245 | |
---|
| 246 | Returns 0 if there's nothing left or if we don't have to care (GnuTLS), |
---|
| 247 | 1 if there's more data. */ |
---|
| 248 | int ssl_pending( void *conn ) |
---|
| 249 | { |
---|
| 250 | return ( ((struct scd*)conn) && ((struct scd*)conn)->established ) ? |
---|
| 251 | SSL_pending( ((struct scd*)conn)->ssl ) > 0 : 0; |
---|
| 252 | } |
---|
| 253 | |
---|
[b7d3cc34] | 254 | void ssl_disconnect( void *conn_ ) |
---|
| 255 | { |
---|
| 256 | struct scd *conn = conn_; |
---|
| 257 | |
---|
[26fdfc5] | 258 | if( conn->inpa != -1 ) |
---|
[309cb9e] | 259 | b_event_remove( conn->inpa ); |
---|
[26fdfc5] | 260 | |
---|
[b7d3cc34] | 261 | if( conn->established ) |
---|
| 262 | SSL_shutdown( conn->ssl ); |
---|
| 263 | |
---|
| 264 | closesocket( conn->fd ); |
---|
| 265 | |
---|
| 266 | SSL_free( conn->ssl ); |
---|
| 267 | SSL_CTX_free( conn->ssl_ctx ); |
---|
| 268 | g_free( conn ); |
---|
| 269 | } |
---|
| 270 | |
---|
| 271 | int ssl_getfd( void *conn ) |
---|
| 272 | { |
---|
| 273 | return( ((struct scd*)conn)->fd ); |
---|
| 274 | } |
---|
[26fdfc5] | 275 | |
---|
[ba9edaa] | 276 | b_input_condition ssl_getdirection( void *conn ) |
---|
[26fdfc5] | 277 | { |
---|
[e046390] | 278 | return( ((struct scd*)conn)->lasterr == SSL_ERROR_WANT_WRITE ? B_EV_IO_WRITE : B_EV_IO_READ ); |
---|
[26fdfc5] | 279 | } |
---|
[523fb23] | 280 | |
---|
| 281 | size_t ssl_des3_encrypt(const unsigned char *key, size_t key_len, const unsigned char *input, size_t input_len, const unsigned char *iv, unsigned char **res) |
---|
| 282 | { |
---|
| 283 | int output_length = 0; |
---|
[50b8978] | 284 | EVP_CIPHER_CTX ctx; |
---|
[523fb23] | 285 | |
---|
| 286 | *res = g_new0(unsigned char, 72); |
---|
| 287 | |
---|
| 288 | /* Don't set key or IV because we will modify the parameters */ |
---|
| 289 | EVP_CIPHER_CTX_init(&ctx); |
---|
| 290 | EVP_CipherInit_ex(&ctx, EVP_des_ede3_cbc(), NULL, NULL, NULL, 1); |
---|
| 291 | EVP_CIPHER_CTX_set_key_length(&ctx, key_len); |
---|
| 292 | EVP_CIPHER_CTX_set_padding(&ctx, 0); |
---|
| 293 | /* We finished modifying parameters so now we can set key and IV */ |
---|
| 294 | EVP_CipherInit_ex(&ctx, NULL, NULL, key, iv, 1); |
---|
| 295 | EVP_CipherUpdate(&ctx, *res, &output_length, input, input_len); |
---|
| 296 | EVP_CipherFinal_ex(&ctx, *res, &output_length); |
---|
| 297 | EVP_CIPHER_CTX_cleanup(&ctx); |
---|
[50b8978] | 298 | //EVP_cleanup(); |
---|
[523fb23] | 299 | |
---|
| 300 | return output_length; |
---|
| 301 | } |
---|