Thu Apr 8 01:21:02 2010

Asterisk developer's documentation


tcptls.c

Go to the documentation of this file.
00001 /*
00002  * Asterisk -- An open source telephony toolkit.
00003  *
00004  * Copyright (C) 2007 - 2008, Digium, Inc.
00005  *
00006  * Luigi Rizzo (TCP and TLS server code)
00007  * Brett Bryant <brettbryant@gmail.com> (updated for client support)
00008  *
00009  * See http://www.asterisk.org for more information about
00010  * the Asterisk project. Please do not directly contact
00011  * any of the maintainers of this project for assistance;
00012  * the project provides a web site, mailing lists and IRC
00013  * channels for your use.
00014  *
00015  * This program is free software, distributed under the terms of
00016  * the GNU General Public License Version 2. See the LICENSE file
00017  * at the top of the source tree.
00018  */
00019 
00020 /*!
00021  * \file
00022  * \brief Code to support TCP and TLS server/client
00023  *
00024  * \author Luigi Rizzo
00025  * \author Brett Bryant <brettbryant@gmail.com>
00026  */
00027 
00028 #include "asterisk.h"
00029 
00030 ASTERISK_FILE_VERSION(__FILE__, "$Revision: 246983 $")
00031 
00032 #ifdef HAVE_FCNTL_H
00033 #include <fcntl.h>
00034 #endif
00035 
00036 #include <sys/signal.h>
00037 
00038 #include "asterisk/compat.h"
00039 #include "asterisk/tcptls.h"
00040 #include "asterisk/http.h"
00041 #include "asterisk/utils.h"
00042 #include "asterisk/strings.h"
00043 #include "asterisk/options.h"
00044 #include "asterisk/manager.h"
00045 #include "asterisk/astobj2.h"
00046 
00047 /*! \brief
00048  * replacement read/write functions for SSL support.
00049  * We use wrappers rather than SSL_read/SSL_write directly so
00050  * we can put in some debugging.
00051  */
00052 
00053 #ifdef DO_SSL
00054 static HOOK_T ssl_read(void *cookie, char *buf, LEN_T len)
00055 {
00056    int i = SSL_read(cookie, buf, len-1);
00057 #if 0
00058    if (i >= 0)
00059       buf[i] = '\0';
00060    ast_verb(0, "ssl read size %d returns %d <%s>\n", (int)len, i, buf);
00061 #endif
00062    return i;
00063 }
00064 
00065 static HOOK_T ssl_write(void *cookie, const char *buf, LEN_T len)
00066 {
00067 #if 0
00068    char *s = alloca(len+1);
00069    strncpy(s, buf, len);
00070    s[len] = '\0';
00071    ast_verb(0, "ssl write size %d <%s>\n", (int)len, s);
00072 #endif
00073    return SSL_write(cookie, buf, len);
00074 }
00075 
00076 static int ssl_close(void *cookie)
00077 {
00078    close(SSL_get_fd(cookie));
00079    SSL_shutdown(cookie);
00080    SSL_free(cookie);
00081    return 0;
00082 }
00083 #endif   /* DO_SSL */
00084 
00085 HOOK_T ast_tcptls_server_read(struct ast_tcptls_session_instance *tcptls_session, void *buf, size_t count)
00086 {
00087    if (tcptls_session->fd == -1) {
00088       ast_log(LOG_ERROR, "server_read called with an fd of -1\n");
00089       errno = EIO;
00090       return -1;
00091    }
00092 
00093 #ifdef DO_SSL
00094    if (tcptls_session->ssl)
00095       return ssl_read(tcptls_session->ssl, buf, count);
00096 #endif
00097    return read(tcptls_session->fd, buf, count);
00098 }
00099 
00100 HOOK_T ast_tcptls_server_write(struct ast_tcptls_session_instance *tcptls_session, void *buf, size_t count)
00101 {
00102    if (tcptls_session->fd == -1) {
00103       ast_log(LOG_ERROR, "server_write called with an fd of -1\n");
00104       errno = EIO;
00105       return -1;
00106    }
00107 
00108 #ifdef DO_SSL
00109    if (tcptls_session->ssl)
00110       return ssl_write(tcptls_session->ssl, buf, count);
00111 #endif
00112    return write(tcptls_session->fd, buf, count);
00113 }
00114 
00115 static void session_instance_destructor(void *obj)
00116 {
00117    struct ast_tcptls_session_instance *i = obj;
00118    ast_mutex_destroy(&i->lock);
00119 }
00120 
00121 /*! \brief
00122 * creates a FILE * from the fd passed by the accept thread.
00123 * This operation is potentially expensive (certificate verification),
00124 * so we do it in the child thread context.
00125 *
00126 * \note must decrement ref count before returning NULL on error
00127 */
00128 static void *handle_tcptls_connection(void *data)
00129 {
00130    struct ast_tcptls_session_instance *tcptls_session = data;
00131 #ifdef DO_SSL
00132    int (*ssl_setup)(SSL *) = (tcptls_session->client) ? SSL_connect : SSL_accept;
00133    int ret;
00134    char err[256];
00135 #endif
00136 
00137    /*
00138    * open a FILE * as appropriate.
00139    */
00140    if (!tcptls_session->parent->tls_cfg) {
00141       tcptls_session->f = fdopen(tcptls_session->fd, "w+");
00142       setvbuf(tcptls_session->f, NULL, _IONBF, 0);
00143    }
00144 #ifdef DO_SSL
00145    else if ( (tcptls_session->ssl = SSL_new(tcptls_session->parent->tls_cfg->ssl_ctx)) ) {
00146       SSL_set_fd(tcptls_session->ssl, tcptls_session->fd);
00147       if ((ret = ssl_setup(tcptls_session->ssl)) <= 0) {
00148          ast_verb(2, "Problem setting up ssl connection: %s\n", ERR_error_string(ERR_get_error(), err));
00149       } else {
00150 #if defined(HAVE_FUNOPEN)  /* the BSD interface */
00151          tcptls_session->f = funopen(tcptls_session->ssl, ssl_read, ssl_write, NULL, ssl_close);
00152 
00153 #elif defined(HAVE_FOPENCOOKIE)  /* the glibc/linux interface */
00154          static const cookie_io_functions_t cookie_funcs = {
00155             ssl_read, ssl_write, NULL, ssl_close
00156          };
00157          tcptls_session->f = fopencookie(tcptls_session->ssl, "w+", cookie_funcs);
00158 #else
00159          /* could add other methods here */
00160          ast_debug(2, "no tcptls_session->f methods attempted!");
00161 #endif
00162          if ((tcptls_session->client && !ast_test_flag(&tcptls_session->parent->tls_cfg->flags, AST_SSL_DONT_VERIFY_SERVER))
00163             || (!tcptls_session->client && ast_test_flag(&tcptls_session->parent->tls_cfg->flags, AST_SSL_VERIFY_CLIENT))) {
00164             X509 *peer;
00165             long res;
00166             peer = SSL_get_peer_certificate(tcptls_session->ssl);
00167             if (!peer)
00168                ast_log(LOG_WARNING, "No peer SSL certificate\n");
00169             res = SSL_get_verify_result(tcptls_session->ssl);
00170             if (res != X509_V_OK)
00171                ast_log(LOG_ERROR, "Certificate did not verify: %s\n", X509_verify_cert_error_string(res));
00172             if (!ast_test_flag(&tcptls_session->parent->tls_cfg->flags, AST_SSL_IGNORE_COMMON_NAME)) {
00173                ASN1_STRING *str;
00174                unsigned char *str2;
00175                X509_NAME *name = X509_get_subject_name(peer);
00176                int pos = -1;
00177                int found = 0;
00178             
00179                for (;;) {
00180                   /* Walk the certificate to check all available "Common Name" */
00181                   /* XXX Probably should do a gethostbyname on the hostname and compare that as well */
00182                   pos = X509_NAME_get_index_by_NID(name, NID_commonName, pos);
00183                   if (pos < 0)
00184                      break;
00185                   str = X509_NAME_ENTRY_get_data(X509_NAME_get_entry(name, pos));
00186                   ASN1_STRING_to_UTF8(&str2, str);
00187                   if (str2) {
00188                      if (!strcasecmp(tcptls_session->parent->hostname, (char *) str2))
00189                         found = 1;
00190                      ast_debug(3, "SSL Common Name compare s1='%s' s2='%s'\n", tcptls_session->parent->hostname, str2);
00191                      OPENSSL_free(str2);
00192                   }
00193                   if (found)
00194                      break;
00195                }
00196                if (!found) {
00197                   ast_log(LOG_ERROR, "Certificate common name did not match (%s)\n", tcptls_session->parent->hostname);
00198                   if (peer)
00199                      X509_free(peer);
00200                   close(tcptls_session->fd);
00201                   fclose(tcptls_session->f);
00202                   ao2_ref(tcptls_session, -1);
00203                   return NULL;
00204                }
00205             }
00206             if (peer)
00207                X509_free(peer);
00208          }
00209       }
00210       if (!tcptls_session->f) /* no success opening descriptor stacking */
00211          SSL_free(tcptls_session->ssl);
00212    }
00213 #endif /* DO_SSL */
00214 
00215    if (!tcptls_session->f) {
00216       close(tcptls_session->fd);
00217       ast_log(LOG_WARNING, "FILE * open failed!\n");
00218 #ifndef DO_SSL
00219       if (tcptls_session->parent->tls_cfg) {
00220          ast_log(LOG_WARNING, "Attempted a TLS connection without OpenSSL support.  This will not work!\n");
00221       }
00222 #endif
00223       ao2_ref(tcptls_session, -1);
00224       return NULL;
00225    }
00226 
00227    if (tcptls_session && tcptls_session->parent->worker_fn)
00228       return tcptls_session->parent->worker_fn(tcptls_session);
00229    else
00230       return tcptls_session;
00231 }
00232 
00233 void *ast_tcptls_server_root(void *data)
00234 {
00235    struct ast_tcptls_session_args *desc = data;
00236    int fd;
00237    struct sockaddr_in sin;
00238    socklen_t sinlen;
00239    struct ast_tcptls_session_instance *tcptls_session;
00240    pthread_t launched;
00241    
00242    for (;;) {
00243       int i, flags;
00244 
00245       if (desc->periodic_fn)
00246          desc->periodic_fn(desc);
00247       i = ast_wait_for_input(desc->accept_fd, desc->poll_timeout);
00248       if (i <= 0)
00249          continue;
00250       sinlen = sizeof(sin);
00251       fd = accept(desc->accept_fd, (struct sockaddr *) &sin, &sinlen);
00252       if (fd < 0) {
00253          if ((errno != EAGAIN) && (errno != EINTR))
00254             ast_log(LOG_WARNING, "Accept failed: %s\n", strerror(errno));
00255          continue;
00256       }
00257       tcptls_session = ao2_alloc(sizeof(*tcptls_session), session_instance_destructor);
00258       if (!tcptls_session) {
00259          ast_log(LOG_WARNING, "No memory for new session: %s\n", strerror(errno));
00260          close(fd);
00261          continue;
00262       }
00263 
00264       ast_mutex_init(&tcptls_session->lock);
00265 
00266       flags = fcntl(fd, F_GETFL);
00267       fcntl(fd, F_SETFL, flags & ~O_NONBLOCK);
00268       tcptls_session->fd = fd;
00269       tcptls_session->parent = desc;
00270       memcpy(&tcptls_session->remote_address, &sin, sizeof(tcptls_session->remote_address));
00271 
00272       tcptls_session->client = 0;
00273          
00274       /* This thread is now the only place that controls the single ref to tcptls_session */
00275       if (ast_pthread_create_detached_background(&launched, NULL, handle_tcptls_connection, tcptls_session)) {
00276          ast_log(LOG_WARNING, "Unable to launch helper thread: %s\n", strerror(errno));
00277          close(tcptls_session->fd);
00278          ao2_ref(tcptls_session, -1);
00279       }
00280    }
00281    return NULL;
00282 }
00283 
00284 static int __ssl_setup(struct ast_tls_config *cfg, int client)
00285 {
00286 #ifndef DO_SSL
00287    cfg->enabled = 0;
00288    return 0;
00289 #else
00290    if (!cfg->enabled)
00291       return 0;
00292 
00293    SSL_load_error_strings();
00294    SSLeay_add_ssl_algorithms();
00295 
00296    if (!(cfg->ssl_ctx = SSL_CTX_new( client ? SSLv23_client_method() : SSLv23_server_method() ))) {
00297       ast_debug(1, "Sorry, SSL_CTX_new call returned null...\n");
00298       cfg->enabled = 0;
00299       return 0;
00300    }
00301    if (!ast_strlen_zero(cfg->certfile)) {
00302       if (SSL_CTX_use_certificate_file(cfg->ssl_ctx, cfg->certfile, SSL_FILETYPE_PEM) == 0 ||
00303           SSL_CTX_use_PrivateKey_file(cfg->ssl_ctx, cfg->certfile, SSL_FILETYPE_PEM) == 0 ||
00304           SSL_CTX_check_private_key(cfg->ssl_ctx) == 0 ) {
00305          if (!client) {
00306             /* Clients don't need a certificate, but if its setup we can use it */
00307             ast_verb(0, "SSL cert error <%s>", cfg->certfile);
00308             sleep(2);
00309             cfg->enabled = 0;
00310             return 0;
00311          }
00312       }
00313    }
00314    if (!ast_strlen_zero(cfg->cipher)) {
00315       if (SSL_CTX_set_cipher_list(cfg->ssl_ctx, cfg->cipher) == 0 ) {
00316          if (!client) {
00317             ast_verb(0, "SSL cipher error <%s>", cfg->cipher);
00318             sleep(2);
00319             cfg->enabled = 0;
00320             return 0;
00321          }
00322       }
00323    }
00324    if (!ast_strlen_zero(cfg->cafile) || !ast_strlen_zero(cfg->capath)) {
00325       if (SSL_CTX_load_verify_locations(cfg->ssl_ctx, S_OR(cfg->cafile, NULL), S_OR(cfg->capath,NULL)) == 0)
00326          ast_verb(0, "SSL CA file(%s)/path(%s) error\n", cfg->cafile, cfg->capath);
00327    }
00328 
00329    ast_verb(0, "SSL certificate ok\n");
00330    return 1;
00331 #endif
00332 }
00333 
00334 int ast_ssl_setup(struct ast_tls_config *cfg)
00335 {
00336    return __ssl_setup(cfg, 0);
00337 }
00338 
00339 struct ast_tcptls_session_instance *ast_tcptls_client_start(struct ast_tcptls_session_instance *tcptls_session)
00340 {
00341    struct ast_tcptls_session_args *desc;
00342    int flags;
00343 
00344    if (!(desc = tcptls_session->parent)) {
00345       goto client_start_error;
00346    }
00347 
00348    if (connect(desc->accept_fd, (const struct sockaddr *) &desc->remote_address, sizeof(desc->remote_address))) {
00349       ast_log(LOG_ERROR, "Unable to connect %s to %s:%d: %s\n",
00350          desc->name,
00351          ast_inet_ntoa(desc->remote_address.sin_addr), ntohs(desc->remote_address.sin_port),
00352          strerror(errno));
00353       goto client_start_error;
00354    }
00355 
00356    flags = fcntl(desc->accept_fd, F_GETFL);
00357    fcntl(desc->accept_fd, F_SETFL, flags & ~O_NONBLOCK);
00358 
00359    if (desc->tls_cfg) {
00360       desc->tls_cfg->enabled = 1;
00361       __ssl_setup(desc->tls_cfg, 1);
00362    }
00363 
00364    return handle_tcptls_connection(tcptls_session);
00365 
00366 client_start_error:
00367    close(desc->accept_fd);
00368    desc->accept_fd = -1;
00369    if (tcptls_session) {
00370       ao2_ref(tcptls_session, -1);
00371    }
00372    return NULL;
00373 
00374 }
00375 
00376 struct ast_tcptls_session_instance *ast_tcptls_client_create(struct ast_tcptls_session_args *desc)
00377 {
00378    int x = 1;
00379    struct ast_tcptls_session_instance *tcptls_session = NULL;
00380 
00381    /* Do nothing if nothing has changed */
00382    if (!memcmp(&desc->old_address, &desc->remote_address, sizeof(desc->old_address))) {
00383       ast_debug(1, "Nothing changed in %s\n", desc->name);
00384       return NULL;
00385    }
00386 
00387    desc->old_address = desc->remote_address;
00388 
00389    if (desc->accept_fd != -1)
00390       close(desc->accept_fd);
00391 
00392    desc->accept_fd = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP);
00393    if (desc->accept_fd < 0) {
00394       ast_log(LOG_WARNING, "Unable to allocate socket for %s: %s\n",
00395          desc->name, strerror(errno));
00396       return NULL;
00397    }
00398 
00399    /* if a local address was specified, bind to it so the connection will
00400       originate from the desired address */
00401    if (desc->local_address.sin_family != 0) {
00402       setsockopt(desc->accept_fd, SOL_SOCKET, SO_REUSEADDR, &x, sizeof(x));
00403       if (bind(desc->accept_fd, (struct sockaddr *) &desc->local_address, sizeof(desc->local_address))) {
00404          ast_log(LOG_ERROR, "Unable to bind %s to %s:%d: %s\n",
00405          desc->name,
00406             ast_inet_ntoa(desc->local_address.sin_addr), ntohs(desc->local_address.sin_port),
00407             strerror(errno));
00408          goto error;
00409       }
00410    }
00411 
00412    if (!(tcptls_session = ao2_alloc(sizeof(*tcptls_session), session_instance_destructor)))
00413       goto error;
00414 
00415    ast_mutex_init(&tcptls_session->lock);
00416    tcptls_session->client = 1;
00417    tcptls_session->fd = desc->accept_fd;
00418    tcptls_session->parent = desc;
00419    tcptls_session->parent->worker_fn = NULL;
00420    memcpy(&tcptls_session->remote_address, &desc->remote_address, sizeof(tcptls_session->remote_address));
00421 
00422    return tcptls_session;
00423 
00424 error:
00425    close(desc->accept_fd);
00426    desc->accept_fd = -1;
00427    if (tcptls_session)
00428       ao2_ref(tcptls_session, -1);
00429    return NULL;
00430 }
00431 
00432 void ast_tcptls_server_start(struct ast_tcptls_session_args *desc)
00433 {
00434    int flags;
00435    int x = 1;
00436    
00437    /* Do nothing if nothing has changed */
00438    if (!memcmp(&desc->old_address, &desc->local_address, sizeof(desc->old_address))) {
00439       ast_debug(1, "Nothing changed in %s\n", desc->name);
00440       return;
00441    }
00442    
00443    desc->old_address = desc->local_address;
00444    
00445    /* Shutdown a running server if there is one */
00446    if (desc->master != AST_PTHREADT_NULL) {
00447       pthread_cancel(desc->master);
00448       pthread_kill(desc->master, SIGURG);
00449       pthread_join(desc->master, NULL);
00450    }
00451    
00452    if (desc->accept_fd != -1)
00453       close(desc->accept_fd);
00454 
00455    /* If there's no new server, stop here */
00456    if (desc->local_address.sin_family == 0) {
00457       return;
00458    }
00459 
00460    desc->accept_fd = socket(AF_INET, SOCK_STREAM, 0);
00461    if (desc->accept_fd < 0) {
00462       ast_log(LOG_ERROR, "Unable to allocate socket for %s: %s\n",
00463          desc->name, strerror(errno));
00464       return;
00465    }
00466    
00467    setsockopt(desc->accept_fd, SOL_SOCKET, SO_REUSEADDR, &x, sizeof(x));
00468    if (bind(desc->accept_fd, (struct sockaddr *) &desc->local_address, sizeof(desc->local_address))) {
00469       ast_log(LOG_ERROR, "Unable to bind %s to %s:%d: %s\n",
00470          desc->name,
00471          ast_inet_ntoa(desc->local_address.sin_addr), ntohs(desc->local_address.sin_port),
00472          strerror(errno));
00473       goto error;
00474    }
00475    if (listen(desc->accept_fd, 10)) {
00476       ast_log(LOG_ERROR, "Unable to listen for %s!\n", desc->name);
00477       goto error;
00478    }
00479    flags = fcntl(desc->accept_fd, F_GETFL);
00480    fcntl(desc->accept_fd, F_SETFL, flags | O_NONBLOCK);
00481    if (ast_pthread_create_background(&desc->master, NULL, desc->accept_fn, desc)) {
00482       ast_log(LOG_ERROR, "Unable to launch thread for %s on %s:%d: %s\n",
00483          desc->name,
00484          ast_inet_ntoa(desc->local_address.sin_addr), ntohs(desc->local_address.sin_port),
00485          strerror(errno));
00486       goto error;
00487    }
00488    return;
00489 
00490 error:
00491    close(desc->accept_fd);
00492    desc->accept_fd = -1;
00493 }
00494 
00495 void ast_tcptls_server_stop(struct ast_tcptls_session_args *desc)
00496 {
00497    if (desc->master != AST_PTHREADT_NULL) {
00498       pthread_cancel(desc->master);
00499       pthread_kill(desc->master, SIGURG);
00500       pthread_join(desc->master, NULL);
00501    }
00502    if (desc->accept_fd != -1)
00503       close(desc->accept_fd);
00504    desc->accept_fd = -1;
00505 }

Generated on 8 Apr 2010 for Asterisk - the Open Source PBX by  doxygen 1.6.1