| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532 |
- /*
- * Copyright (c) 2007-2016, Cameron Rich
- *
- * All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions are met:
- *
- * * Redistributions of source code must retain the above copyright notice,
- * this list of conditions and the following disclaimer.
- * * Redistributions in binary form must reproduce the above copyright notice,
- * this list of conditions and the following disclaimer in the documentation
- * and/or other materials provided with the distribution.
- * * Neither the name of the axTLS project nor the names of its contributors
- * may be used to endorse or promote products derived from this software
- * without specific prior written permission.
- *
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
- * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
- * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
- * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
- * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
- * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
- * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
- * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
- #include <stdlib.h>
- #include <string.h>
- #include <time.h>
- #include <stdio.h>
- #include "os_port.h"
- #include "ssl.h"
- #ifdef CONFIG_SSL_ENABLE_CLIENT /* all commented out if no client */
- /* support sha512/384/256/1 RSA */
- static const uint8_t g_sig_alg[] = {
- 0x00, SSL_EXT_SIG_ALG,
- 0x00, 0x0a, 0x00, 0x08,
- SIG_ALG_SHA512, SIG_ALG_RSA,
- SIG_ALG_SHA384, SIG_ALG_RSA,
- SIG_ALG_SHA256, SIG_ALG_RSA,
- SIG_ALG_SHA1, SIG_ALG_RSA
- };
- static const uint8_t g_asn1_sha256[] =
- {
- 0x30, 0x31, 0x30, 0x0d, 0x06, 0x09, 0x60, 0x86, 0x48, 0x01, 0x65, 0x03,
- 0x04, 0x02, 0x01, 0x05, 0x00, 0x04, 0x20
- };
- static int send_client_hello(SSL *ssl);
- static int process_server_hello(SSL *ssl);
- static int process_server_hello_done(SSL *ssl);
- static int send_client_key_xchg(SSL *ssl);
- static int process_cert_req(SSL *ssl);
- static int send_cert_verify(SSL *ssl);
- /*
- * Establish a new SSL connection to an SSL server.
- */
- EXP_FUNC SSL * LIB_CALLTYPE ssl_client_new(SSL_CTX *ssl_ctx, int client_fd, const
- uint8_t *session_id, uint8_t sess_id_size, SSL_EXTENSIONS* ssl_ext)
- {
- SSL *ssl = ssl_new(ssl_ctx, client_fd);
- ssl->version = SSL_PROTOCOL_VERSION_MAX; /* try top version first */
- if (session_id && ssl_ctx->num_sessions)
- {
- if (sess_id_size > SSL_SESSION_ID_SIZE) /* validity check */
- {
- ssl_free(ssl);
- return NULL;
- }
- memcpy(ssl->session_id, session_id, sess_id_size);
- ssl->sess_id_size = sess_id_size;
- SET_SSL_FLAG(SSL_SESSION_RESUME); /* just flag for later */
- }
- ssl->extensions = ssl_ext;
- SET_SSL_FLAG(SSL_IS_CLIENT);
- do_client_connect(ssl);
- return ssl;
- }
- /*
- * Process the handshake record.
- */
- int do_clnt_handshake(SSL *ssl, int handshake_type, uint8_t *buf, int hs_len)
- {
- int ret;
- /* To get here the state must be valid */
- switch (handshake_type)
- {
- case HS_SERVER_HELLO:
- ret = process_server_hello(ssl);
- break;
- case HS_CERTIFICATE:
- ret = process_certificate(ssl, &ssl->x509_ctx);
- break;
- case HS_SERVER_HELLO_DONE:
- if ((ret = process_server_hello_done(ssl)) == SSL_OK)
- {
- if (IS_SET_SSL_FLAG(SSL_HAS_CERT_REQ))
- {
- if ((ret = send_certificate(ssl)) == SSL_OK &&
- (ret = send_client_key_xchg(ssl)) == SSL_OK)
- {
- send_cert_verify(ssl);
- }
- }
- else
- {
- ret = send_client_key_xchg(ssl);
- }
- if (ret == SSL_OK &&
- (ret = send_change_cipher_spec(ssl)) == SSL_OK)
- {
- ret = send_finished(ssl);
- }
- }
- break;
- case HS_CERT_REQ:
- ret = process_cert_req(ssl);
- break;
- case HS_FINISHED:
- ret = process_finished(ssl, buf, hs_len);
- disposable_free(ssl); /* free up some memory */
- /* note: client renegotiation is not allowed after this */
- break;
- case HS_HELLO_REQUEST:
- disposable_new(ssl);
- ret = do_client_connect(ssl);
- break;
- default:
- ret = SSL_ERROR_INVALID_HANDSHAKE;
- break;
- }
- return ret;
- }
- /*
- * Do the handshaking from the beginning.
- */
- int do_client_connect(SSL *ssl)
- {
- int ret = SSL_OK;
- send_client_hello(ssl); /* send the client hello */
- ssl->bm_read_index = 0;
- ssl->next_state = HS_SERVER_HELLO;
- ssl->hs_status = SSL_NOT_OK; /* not connected */
- /* sit in a loop until it all looks good */
- if (!IS_SET_SSL_FLAG(SSL_CONNECT_IN_PARTS))
- {
- while (ssl->hs_status != SSL_OK)
- {
- ret = ssl_read(ssl, NULL, 0);
- if (ret < SSL_OK)
- break;
- }
- ssl->hs_status = ret; /* connected? */
- }
- return ret;
- }
- /*
- * Send the initial client hello.
- */
- static int send_client_hello(SSL *ssl)
- {
- uint8_t *buf = ssl->bm_data;
- time_t tm = time(NULL);
- uint8_t *tm_ptr = &buf[6]; /* time will go here */
- int i, offset, ext_offset;
- int ext_len = 0;
- buf[0] = HS_CLIENT_HELLO;
- buf[1] = 0;
- buf[2] = 0;
- /* byte 3 is calculated later */
- buf[4] = 0x03;
- buf[5] = ssl->version & 0x0f;
- /* client random value - spec says that 1st 4 bytes are big endian time */
- *tm_ptr++ = (uint8_t)(((long)tm & 0xff000000) >> 24);
- *tm_ptr++ = (uint8_t)(((long)tm & 0x00ff0000) >> 16);
- *tm_ptr++ = (uint8_t)(((long)tm & 0x0000ff00) >> 8);
- *tm_ptr++ = (uint8_t)(((long)tm & 0x000000ff));
- if (get_random(SSL_RANDOM_SIZE-4, &buf[10]) < 0)
- return SSL_NOT_OK;
- memcpy(ssl->dc->client_random, &buf[6], SSL_RANDOM_SIZE);
- offset = 6 + SSL_RANDOM_SIZE;
- /* give session resumption a go */
- if (IS_SET_SSL_FLAG(SSL_SESSION_RESUME)) /* set initially by user */
- {
- buf[offset++] = ssl->sess_id_size;
- memcpy(&buf[offset], ssl->session_id, ssl->sess_id_size);
- offset += ssl->sess_id_size;
- CLR_SSL_FLAG(SSL_SESSION_RESUME); /* clear so we can set later */
- }
- else
- {
- /* no session id - because no session resumption just yet */
- buf[offset++] = 0;
- }
- buf[offset++] = 0; /* number of ciphers */
- buf[offset++] = NUM_PROTOCOLS*2;/* number of ciphers */
- /* put all our supported protocols in our request */
- for (i = 0; i < NUM_PROTOCOLS; i++)
- {
- buf[offset++] = 0; /* cipher we are using */
- buf[offset++] = ssl_prot_prefs[i];
- }
- buf[offset++] = 1; /* no compression */
- buf[offset++] = 0;
- ext_offset = offset;
- buf[offset++] = 0; /* total length of extensions */
- buf[offset++] = 0;
- /* send the signature algorithm extension for TLS 1.2+ */
- if (ssl->version >= SSL_PROTOCOL_VERSION_TLS1_2)
- {
- memcpy(&buf[offset], g_sig_alg, sizeof(g_sig_alg));
- offset += sizeof(g_sig_alg);
- ext_len += sizeof(g_sig_alg);
- }
- if (ssl->extensions != NULL)
- {
- /* send the host name if specified */
- if (ssl->extensions->host_name != NULL)
- {
- size_t host_len = strlen(ssl->extensions->host_name);
- buf[offset++] = 0;
- buf[offset++] = SSL_EXT_SERVER_NAME; /* server_name(0) (65535) */
- buf[offset++] = 0;
- buf[offset++] = host_len + 5; /* server_name length */
- buf[offset++] = 0;
- buf[offset++] = host_len + 3; /* server_list length */
- buf[offset++] = 0; /* host_name(0) (255) */
- buf[offset++] = 0;
- buf[offset++] = host_len; /* host_name length */
- strncpy((char*) &buf[offset], ssl->extensions->host_name, host_len);
- offset += host_len;
- ext_len += host_len + 9;
- }
- if (ssl->extensions->max_fragment_size)
- {
- buf[offset++] = 0;
- buf[offset++] = SSL_EXT_MAX_FRAGMENT_SIZE;
- buf[offset++] = 0; // size of data
- buf[offset++] = 2;
- buf[offset++] = (uint8_t)
- ((ssl->extensions->max_fragment_size >> 8) & 0xff);
- buf[offset++] = (uint8_t)
- (ssl->extensions->max_fragment_size & 0xff);
- ext_len += 6;
- }
- }
- if (ext_len > 0)
- {
- // update the extensions length value
- buf[ext_offset] = (uint8_t) ((ext_len >> 8) & 0xff);
- buf[ext_offset + 1] = (uint8_t) (ext_len & 0xff);
- }
- buf[3] = offset - 4; /* handshake size */
- return send_packet(ssl, PT_HANDSHAKE_PROTOCOL, NULL, offset);
- }
- /*
- * Process the server hello.
- */
- static int process_server_hello(SSL *ssl)
- {
- uint8_t *buf = ssl->bm_data;
- int pkt_size = ssl->bm_index;
- int num_sessions = ssl->ssl_ctx->num_sessions;
- uint8_t sess_id_size;
- int offset, ret = SSL_OK;
- /* check that we are talking to a TLSv1 server */
- uint8_t version = (buf[4] << 4) + buf[5];
- if (version > SSL_PROTOCOL_VERSION_MAX)
- {
- version = SSL_PROTOCOL_VERSION_MAX;
- }
- else if (ssl->version < SSL_PROTOCOL_MIN_VERSION)
- {
- ret = SSL_ERROR_INVALID_VERSION;
- ssl_display_error(ret);
- goto error;
- }
- ssl->version = version;
- /* get the server random value */
- memcpy(ssl->dc->server_random, &buf[6], SSL_RANDOM_SIZE);
- offset = 6 + SSL_RANDOM_SIZE; /* skip of session id size */
- sess_id_size = buf[offset++];
- if (sess_id_size > SSL_SESSION_ID_SIZE)
- {
- ret = SSL_ERROR_INVALID_SESSION;
- goto error;
- }
- if (num_sessions)
- {
- ssl->session = ssl_session_update(num_sessions,
- ssl->ssl_ctx->ssl_sessions, ssl, &buf[offset]);
- memcpy(ssl->session->session_id, &buf[offset], sess_id_size);
- /* pad the rest with 0's */
- if (sess_id_size < SSL_SESSION_ID_SIZE)
- {
- memset(&ssl->session->session_id[sess_id_size], 0,
- SSL_SESSION_ID_SIZE-sess_id_size);
- }
- }
- memcpy(ssl->session_id, &buf[offset], sess_id_size);
- ssl->sess_id_size = sess_id_size;
- offset += sess_id_size;
- /* get the real cipher we are using - ignore MSB */
- ssl->cipher = buf[++offset];
- ssl->next_state = IS_SET_SSL_FLAG(SSL_SESSION_RESUME) ?
- HS_FINISHED : HS_CERTIFICATE;
- offset += 2; // ignore compression
- PARANOIA_CHECK(pkt_size, offset);
- ssl->dc->bm_proc_index = offset;
- PARANOIA_CHECK(pkt_size, offset);
- // no extensions
- error:
- return ret;
- }
- /**
- * Process the server hello done message.
- */
- static int process_server_hello_done(SSL *ssl)
- {
- ssl->next_state = HS_FINISHED;
- return SSL_OK;
- }
- /*
- * Send a client key exchange message.
- */
- static int send_client_key_xchg(SSL *ssl)
- {
- uint8_t *buf = ssl->bm_data;
- uint8_t premaster_secret[SSL_SECRET_SIZE];
- int enc_secret_size = -1;
- buf[0] = HS_CLIENT_KEY_XCHG;
- buf[1] = 0;
- // spec says client must use the what is initially negotiated -
- // and this is our current version
- premaster_secret[0] = 0x03;
- premaster_secret[1] = SSL_PROTOCOL_VERSION_MAX & 0x0f;
- if (get_random(SSL_SECRET_SIZE-2, &premaster_secret[2]) < 0)
- return SSL_NOT_OK;
- DISPLAY_RSA(ssl, ssl->x509_ctx->rsa_ctx);
- /* rsa_ctx->bi_ctx is not thread-safe */
- SSL_CTX_LOCK(ssl->ssl_ctx->mutex);
- enc_secret_size = RSA_encrypt(ssl->x509_ctx->rsa_ctx, premaster_secret,
- SSL_SECRET_SIZE, &buf[6], 0);
- SSL_CTX_UNLOCK(ssl->ssl_ctx->mutex);
- buf[2] = (enc_secret_size + 2) >> 8;
- buf[3] = (enc_secret_size + 2) & 0xff;
- buf[4] = enc_secret_size >> 8;
- buf[5] = enc_secret_size & 0xff;
- generate_master_secret(ssl, premaster_secret);
- return send_packet(ssl, PT_HANDSHAKE_PROTOCOL, NULL, enc_secret_size+6);
- }
- /*
- * Process the certificate request.
- */
- static int process_cert_req(SSL *ssl)
- {
- uint8_t *buf = &ssl->bm_data[ssl->dc->bm_proc_index];
- int ret = SSL_OK;
- int cert_req_size = (buf[2]<<8) + buf[3];
- int offset = 4;
- int pkt_size = ssl->bm_index;
- uint8_t cert_type_len, sig_alg_len;
- PARANOIA_CHECK(pkt_size, offset + cert_req_size);
- ssl->dc->bm_proc_index = cert_req_size;
- /* don't do any processing - we will send back an RSA certificate anyway */
- ssl->next_state = HS_SERVER_HELLO_DONE;
- SET_SSL_FLAG(SSL_HAS_CERT_REQ);
- if (ssl->version >= SSL_PROTOCOL_VERSION_TLS1_2) // TLS1.2+
- {
- // supported certificate types
- cert_type_len = buf[offset++];
- PARANOIA_CHECK(pkt_size, offset + cert_type_len);
- offset += cert_type_len;
-
- // supported signature algorithms
- sig_alg_len = buf[offset++] << 8;
- sig_alg_len += buf[offset++];
- PARANOIA_CHECK(pkt_size, offset + sig_alg_len);
-
- while (sig_alg_len > 0)
- {
- uint8_t hash_alg = buf[offset++];
- uint8_t sig_alg = buf[offset++];
- sig_alg_len -= 2;
- if (sig_alg == SIG_ALG_RSA &&
- (hash_alg == SIG_ALG_SHA1 ||
- hash_alg == SIG_ALG_SHA256 ||
- hash_alg == SIG_ALG_SHA384 ||
- hash_alg == SIG_ALG_SHA512))
- {
- ssl->sig_algs[ssl->num_sig_algs++] = hash_alg;
- }
- }
- }
- error:
- return ret;
- }
- /*
- * Send a certificate verify message.
- */
- static int send_cert_verify(SSL *ssl)
- {
- uint8_t *buf = ssl->bm_data;
- uint8_t dgst[SHA1_SIZE+MD5_SIZE+15];
- RSA_CTX *rsa_ctx = ssl->ssl_ctx->rsa_ctx;
- int n = 0, ret;
- int offset = 0;
- int dgst_len;
- if (rsa_ctx == NULL)
- return SSL_OK;
- DISPLAY_RSA(ssl, rsa_ctx);
- buf[0] = HS_CERT_VERIFY;
- buf[1] = 0;
- if (ssl->version >= SSL_PROTOCOL_VERSION_TLS1_2) // TLS1.2+
- {
- buf[4] = SIG_ALG_SHA256;
- buf[5] = SIG_ALG_RSA;
- offset = 6;
- memcpy(dgst, g_asn1_sha256, sizeof(g_asn1_sha256));
- dgst_len = finished_digest(ssl, NULL, &dgst[sizeof(g_asn1_sha256)]) +
- sizeof(g_asn1_sha256);
- }
- else
- {
- offset = 4;
- dgst_len = finished_digest(ssl, NULL, dgst);
- }
- /* rsa_ctx->bi_ctx is not thread-safe */
- if (rsa_ctx)
- {
- SSL_CTX_LOCK(ssl->ssl_ctx->mutex);
- n = RSA_encrypt(rsa_ctx, dgst, dgst_len, &buf[offset + 2], 1);
- SSL_CTX_UNLOCK(ssl->ssl_ctx->mutex);
- if (n == 0)
- {
- ret = SSL_ERROR_INVALID_KEY;
- goto error;
- }
- }
-
- buf[offset] = n >> 8; /* add the RSA size */
- buf[offset+1] = n & 0xff;
- n += 2;
- if (ssl->version >= SSL_PROTOCOL_VERSION_TLS1_2) // TLS1.2+
- {
- n += 2; // sig/alg
- offset -= 2;
- }
- buf[2] = n >> 8;
- buf[3] = n & 0xff;
- ret = send_packet(ssl, PT_HANDSHAKE_PROTOCOL, NULL, n+4);
- error:
- return ret;
- }
- #endif /* CONFIG_SSL_ENABLE_CLIENT */
|