123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362 |
- /*
- * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
- *
- * Licensed under the Apache License, Version 2.0 (the "License").
- * You may not use this file except in compliance with the License.
- * A copy of the License is located at
- *
- * http://aws.amazon.com/apache2.0
- *
- * or in the "license" file accompanying this file. This file is distributed
- * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
- * express or implied. See the License for the specific language governing
- * permissions and limitations under the License.
- */
- #include "api/s2n.h"
- #include "crypto/s2n_dhe.h"
- #include "crypto/s2n_fips.h"
- #include "error/s2n_errno.h"
- #include "stuffer/s2n_stuffer.h"
- #include "tls/s2n_async_pkey.h"
- #include "tls/s2n_cipher_preferences.h"
- #include "tls/s2n_cipher_suites.h"
- #include "tls/s2n_connection.h"
- #include "tls/s2n_kem.h"
- #include "tls/s2n_kex.h"
- #include "tls/s2n_security_policies.h"
- #include "tls/s2n_signature_algorithms.h"
- #include "utils/s2n_random.h"
- #include "utils/s2n_safety.h"
- static int s2n_server_key_send_write_signature(struct s2n_connection *conn, struct s2n_blob *signature);
- int s2n_server_key_recv(struct s2n_connection *conn)
- {
- POSIX_ENSURE_REF(conn);
- POSIX_ENSURE_REF(conn->secure);
- POSIX_ENSURE_REF(conn->secure->cipher_suite);
- POSIX_ENSURE_REF(conn->secure->cipher_suite->key_exchange_alg);
- POSIX_ENSURE_REF(conn->handshake.hashes);
- struct s2n_hash_state *signature_hash = &conn->handshake.hashes->hash_workspace;
- const struct s2n_kex *key_exchange = conn->secure->cipher_suite->key_exchange_alg;
- struct s2n_stuffer *in = &conn->handshake.io;
- struct s2n_blob data_to_verify = { 0 };
- /* Read the KEX data */
- struct s2n_kex_raw_server_data kex_data = { 0 };
- POSIX_GUARD_RESULT(s2n_kex_server_key_recv_read_data(key_exchange, conn, &data_to_verify, &kex_data));
- POSIX_GUARD_RESULT(s2n_signature_algorithm_recv(conn, in));
- const struct s2n_signature_scheme *active_sig_scheme = conn->handshake_params.server_cert_sig_scheme;
- POSIX_ENSURE_REF(active_sig_scheme);
- /* FIPS specifically allows MD5 for <TLS1.2 */
- if (s2n_is_in_fips_mode() && conn->actual_protocol_version < S2N_TLS12) {
- POSIX_GUARD(s2n_hash_allow_md5_for_fips(signature_hash));
- }
- POSIX_GUARD(s2n_hash_init(signature_hash, active_sig_scheme->hash_alg));
- POSIX_GUARD(s2n_hash_update(signature_hash, conn->handshake_params.client_random, S2N_TLS_RANDOM_DATA_LEN));
- POSIX_GUARD(s2n_hash_update(signature_hash, conn->handshake_params.server_random, S2N_TLS_RANDOM_DATA_LEN));
- /* Add KEX specific data */
- POSIX_GUARD(s2n_hash_update(signature_hash, data_to_verify.data, data_to_verify.size));
- /* Verify the signature */
- uint16_t signature_length;
- POSIX_GUARD(s2n_stuffer_read_uint16(in, &signature_length));
- struct s2n_blob signature = { 0 };
- POSIX_GUARD(s2n_blob_init(&signature, s2n_stuffer_raw_read(in, signature_length), signature_length));
- POSIX_ENSURE_REF(signature.data);
- POSIX_ENSURE_GT(signature_length, 0);
- S2N_ERROR_IF(s2n_pkey_verify(&conn->handshake_params.server_public_key, active_sig_scheme->sig_alg, signature_hash, &signature) < 0,
- S2N_ERR_BAD_MESSAGE);
- /* We don't need the key any more, so free it */
- POSIX_GUARD(s2n_pkey_free(&conn->handshake_params.server_public_key));
- /* Parse the KEX data into whatever form needed and save it to the connection object */
- POSIX_GUARD_RESULT(s2n_kex_server_key_recv_parse_data(key_exchange, conn, &kex_data));
- return 0;
- }
- int s2n_ecdhe_server_key_recv_read_data(struct s2n_connection *conn, struct s2n_blob *data_to_verify,
- struct s2n_kex_raw_server_data *raw_server_data)
- {
- struct s2n_stuffer *in = &conn->handshake.io;
- POSIX_GUARD(s2n_ecc_evp_read_params(in, data_to_verify, &raw_server_data->ecdhe_data));
- return 0;
- }
- int s2n_ecdhe_server_key_recv_parse_data(struct s2n_connection *conn, struct s2n_kex_raw_server_data *raw_server_data)
- {
- POSIX_GUARD(s2n_ecc_evp_parse_params(conn, &raw_server_data->ecdhe_data, &conn->kex_params.server_ecc_evp_params));
- return 0;
- }
- int s2n_dhe_server_key_recv_read_data(struct s2n_connection *conn, struct s2n_blob *data_to_verify,
- struct s2n_kex_raw_server_data *raw_server_data)
- {
- struct s2n_stuffer *in = &conn->handshake.io;
- struct s2n_dhe_raw_server_points *dhe_data = &raw_server_data->dhe_data;
- uint16_t p_length;
- uint16_t g_length;
- uint16_t Ys_length;
- /* Keep a copy to the start of the whole structure for the signature check */
- data_to_verify->data = s2n_stuffer_raw_read(in, 0);
- POSIX_ENSURE_REF(data_to_verify->data);
- /* Read each of the three elements in */
- POSIX_GUARD(s2n_stuffer_read_uint16(in, &p_length));
- dhe_data->p.size = p_length;
- dhe_data->p.data = s2n_stuffer_raw_read(in, p_length);
- POSIX_ENSURE_REF(dhe_data->p.data);
- POSIX_GUARD(s2n_stuffer_read_uint16(in, &g_length));
- dhe_data->g.size = g_length;
- dhe_data->g.data = s2n_stuffer_raw_read(in, g_length);
- POSIX_ENSURE_REF(dhe_data->g.data);
- POSIX_GUARD(s2n_stuffer_read_uint16(in, &Ys_length));
- dhe_data->Ys.size = Ys_length;
- dhe_data->Ys.data = s2n_stuffer_raw_read(in, Ys_length);
- POSIX_ENSURE_REF(dhe_data->Ys.data);
- /* Now we know the total size of the structure */
- data_to_verify->size = 2 + p_length + 2 + g_length + 2 + Ys_length;
- return 0;
- }
- int s2n_dhe_server_key_recv_parse_data(struct s2n_connection *conn, struct s2n_kex_raw_server_data *raw_server_data)
- {
- struct s2n_dhe_raw_server_points dhe_data = raw_server_data->dhe_data;
- /* Copy the DH details */
- POSIX_GUARD(s2n_dh_p_g_Ys_to_dh_params(&conn->kex_params.server_dh_params, &dhe_data.p, &dhe_data.g, &dhe_data.Ys));
- return 0;
- }
- int s2n_kem_server_key_recv_read_data(struct s2n_connection *conn, struct s2n_blob *data_to_verify,
- struct s2n_kex_raw_server_data *raw_server_data)
- {
- struct s2n_kem_raw_server_params *kem_data = &raw_server_data->kem_data;
- struct s2n_stuffer *in = &conn->handshake.io;
- /* Keep a copy to the start of the whole structure for the signature check */
- data_to_verify->data = s2n_stuffer_raw_read(in, 0);
- POSIX_ENSURE_REF(data_to_verify->data);
- /* the server sends the KEM ID */
- kem_data->kem_name.data = s2n_stuffer_raw_read(in, 2);
- POSIX_ENSURE_REF(kem_data->kem_name.data);
- kem_data->kem_name.size = 2;
- struct s2n_stuffer kem_id_stuffer = { 0 };
- uint8_t kem_id_arr[2];
- kem_extension_size kem_id;
- struct s2n_blob kem_id_blob = { 0 };
- POSIX_GUARD(s2n_blob_init(&kem_id_blob, kem_id_arr, s2n_array_len(kem_id_arr)));
- POSIX_GUARD(s2n_stuffer_init(&kem_id_stuffer, &kem_id_blob));
- POSIX_GUARD(s2n_stuffer_write(&kem_id_stuffer, &(kem_data->kem_name)));
- POSIX_GUARD(s2n_stuffer_read_uint16(&kem_id_stuffer, &kem_id));
- POSIX_GUARD(s2n_get_kem_from_extension_id(kem_id, &(conn->kex_params.kem_params.kem)));
- conn->kex_params.kem_params.len_prefixed = true; /* PQ TLS 1.2 is always length prefixed. */
- POSIX_GUARD(s2n_kem_recv_public_key(in, &(conn->kex_params.kem_params)));
- kem_data->raw_public_key.data = conn->kex_params.kem_params.public_key.data;
- kem_data->raw_public_key.size = conn->kex_params.kem_params.public_key.size;
- data_to_verify->size = sizeof(kem_extension_size) + sizeof(kem_public_key_size) + kem_data->raw_public_key.size;
- return 0;
- }
- int s2n_kem_server_key_recv_parse_data(struct s2n_connection *conn, struct s2n_kex_raw_server_data *raw_server_data)
- {
- POSIX_ENSURE_REF(conn);
- POSIX_ENSURE_REF(conn->secure);
- struct s2n_kem_raw_server_params *kem_data = &raw_server_data->kem_data;
- /* Check that the server's requested kem is supported by the client */
- const struct s2n_kem_preferences *kem_preferences = NULL;
- POSIX_GUARD(s2n_connection_get_kem_preferences(conn, &kem_preferences));
- POSIX_ENSURE_REF(kem_preferences);
- const struct s2n_cipher_suite *cipher_suite = conn->secure->cipher_suite;
- const struct s2n_kem *match = NULL;
- S2N_ERROR_IF(s2n_choose_kem_with_peer_pref_list(cipher_suite->iana_value, &kem_data->kem_name,
- kem_preferences->kems, kem_preferences->kem_count, &match)
- != 0,
- S2N_ERR_KEM_UNSUPPORTED_PARAMS);
- conn->kex_params.kem_params.kem = match;
- S2N_ERROR_IF(kem_data->raw_public_key.size != conn->kex_params.kem_params.kem->public_key_length,
- S2N_ERR_BAD_MESSAGE);
- return 0;
- }
- int s2n_hybrid_server_key_recv_read_data(struct s2n_connection *conn, struct s2n_blob *total_data_to_verify,
- struct s2n_kex_raw_server_data *raw_server_data)
- {
- POSIX_ENSURE_REF(conn);
- POSIX_ENSURE_REF(conn->secure);
- POSIX_ENSURE_REF(conn->secure->cipher_suite);
- const struct s2n_kex *kex = conn->secure->cipher_suite->key_exchange_alg;
- const struct s2n_kex *hybrid_kex_0 = kex->hybrid[0];
- const struct s2n_kex *hybrid_kex_1 = kex->hybrid[1];
- /* Keep a copy to the start of the whole structure for the signature check */
- total_data_to_verify->data = s2n_stuffer_raw_read(&conn->handshake.io, 0);
- POSIX_ENSURE_REF(total_data_to_verify->data);
- struct s2n_blob data_to_verify_0 = { 0 };
- POSIX_GUARD_RESULT(s2n_kex_server_key_recv_read_data(hybrid_kex_0, conn, &data_to_verify_0, raw_server_data));
- struct s2n_blob data_to_verify_1 = { 0 };
- POSIX_GUARD_RESULT(s2n_kex_server_key_recv_read_data(hybrid_kex_1, conn, &data_to_verify_1, raw_server_data));
- total_data_to_verify->size = data_to_verify_0.size + data_to_verify_1.size;
- return 0;
- }
- int s2n_hybrid_server_key_recv_parse_data(struct s2n_connection *conn, struct s2n_kex_raw_server_data *raw_server_data)
- {
- POSIX_ENSURE_REF(conn);
- POSIX_ENSURE_REF(conn->secure);
- POSIX_ENSURE_REF(conn->secure->cipher_suite);
- const struct s2n_kex *kex = conn->secure->cipher_suite->key_exchange_alg;
- const struct s2n_kex *hybrid_kex_0 = kex->hybrid[0];
- const struct s2n_kex *hybrid_kex_1 = kex->hybrid[1];
- POSIX_GUARD_RESULT(s2n_kex_server_key_recv_parse_data(hybrid_kex_0, conn, raw_server_data));
- POSIX_GUARD_RESULT(s2n_kex_server_key_recv_parse_data(hybrid_kex_1, conn, raw_server_data));
- return 0;
- }
- int s2n_server_key_send(struct s2n_connection *conn)
- {
- POSIX_ENSURE_REF(conn);
- POSIX_ENSURE_REF(conn->handshake.hashes);
- S2N_ASYNC_PKEY_GUARD(conn);
- struct s2n_hash_state *signature_hash = &conn->handshake.hashes->hash_workspace;
- const struct s2n_kex *key_exchange = conn->secure->cipher_suite->key_exchange_alg;
- const struct s2n_signature_scheme *sig_scheme = conn->handshake_params.server_cert_sig_scheme;
- POSIX_ENSURE_REF(sig_scheme);
- struct s2n_stuffer *out = &conn->handshake.io;
- struct s2n_blob data_to_sign = { 0 };
- /* Call the negotiated key exchange method to send it's data */
- POSIX_GUARD_RESULT(s2n_kex_server_key_send(key_exchange, conn, &data_to_sign));
- /* Add common signature data */
- if (conn->actual_protocol_version == S2N_TLS12) {
- POSIX_GUARD(s2n_stuffer_write_uint16(out, sig_scheme->iana_value));
- }
- /* FIPS specifically allows MD5 for <TLS1.2 */
- if (s2n_is_in_fips_mode() && conn->actual_protocol_version < S2N_TLS12) {
- POSIX_GUARD(s2n_hash_allow_md5_for_fips(signature_hash));
- }
- /* Add the random data to the hash */
- POSIX_GUARD(s2n_hash_init(signature_hash, sig_scheme->hash_alg));
- POSIX_GUARD(s2n_hash_update(signature_hash, conn->handshake_params.client_random, S2N_TLS_RANDOM_DATA_LEN));
- POSIX_GUARD(s2n_hash_update(signature_hash, conn->handshake_params.server_random, S2N_TLS_RANDOM_DATA_LEN));
- /* Add KEX specific data to the hash */
- POSIX_GUARD(s2n_hash_update(signature_hash, data_to_sign.data, data_to_sign.size));
- S2N_ASYNC_PKEY_SIGN(conn, sig_scheme->sig_alg, signature_hash,
- s2n_server_key_send_write_signature);
- }
- int s2n_ecdhe_server_key_send(struct s2n_connection *conn, struct s2n_blob *data_to_sign)
- {
- struct s2n_stuffer *out = &conn->handshake.io;
- /* Generate an ephemeral key and */
- POSIX_GUARD(s2n_ecc_evp_generate_ephemeral_key(&conn->kex_params.server_ecc_evp_params));
- /* Write it out and calculate the data to sign later */
- POSIX_GUARD(s2n_ecc_evp_write_params(&conn->kex_params.server_ecc_evp_params, out, data_to_sign));
- return 0;
- }
- int s2n_dhe_server_key_send(struct s2n_connection *conn, struct s2n_blob *data_to_sign)
- {
- struct s2n_stuffer *out = &conn->handshake.io;
- /* Duplicate the DH key from the config */
- POSIX_GUARD(s2n_dh_params_copy(conn->config->dhparams, &conn->kex_params.server_dh_params));
- /* Generate an ephemeral key */
- POSIX_GUARD(s2n_dh_generate_ephemeral_key(&conn->kex_params.server_dh_params));
- /* Write it out and calculate the data to sign later */
- POSIX_GUARD(s2n_dh_params_to_p_g_Ys(&conn->kex_params.server_dh_params, out, data_to_sign));
- return 0;
- }
- int s2n_kem_server_key_send(struct s2n_connection *conn, struct s2n_blob *data_to_sign)
- {
- struct s2n_stuffer *out = &conn->handshake.io;
- const struct s2n_kem *kem = conn->kex_params.kem_params.kem;
- data_to_sign->data = s2n_stuffer_raw_write(out, 0);
- POSIX_ENSURE_REF(data_to_sign->data);
- POSIX_GUARD(s2n_stuffer_write_uint16(out, kem->kem_extension_id));
- conn->kex_params.kem_params.len_prefixed = true; /* PQ TLS 1.2 is always length prefixed. */
- POSIX_GUARD(s2n_kem_send_public_key(out, &(conn->kex_params.kem_params)));
- data_to_sign->size = sizeof(kem_extension_size) + sizeof(kem_public_key_size) + kem->public_key_length;
- return 0;
- }
- int s2n_hybrid_server_key_send(struct s2n_connection *conn, struct s2n_blob *total_data_to_sign)
- {
- POSIX_ENSURE_REF(conn);
- POSIX_ENSURE_REF(conn->secure);
- POSIX_ENSURE_REF(conn->secure->cipher_suite);
- const struct s2n_kex *kex = conn->secure->cipher_suite->key_exchange_alg;
- const struct s2n_kex *hybrid_kex_0 = kex->hybrid[0];
- const struct s2n_kex *hybrid_kex_1 = kex->hybrid[1];
- /* Keep a copy to the start of the whole structure for the signature check */
- total_data_to_sign->data = s2n_stuffer_raw_write(&conn->handshake.io, 0);
- POSIX_ENSURE_REF(total_data_to_sign->data);
- struct s2n_blob data_to_verify_0 = { 0 };
- POSIX_GUARD_RESULT(s2n_kex_server_key_send(hybrid_kex_0, conn, &data_to_verify_0));
- struct s2n_blob data_to_verify_1 = { 0 };
- POSIX_GUARD_RESULT(s2n_kex_server_key_send(hybrid_kex_1, conn, &data_to_verify_1));
- total_data_to_sign->size = data_to_verify_0.size + data_to_verify_1.size;
- return 0;
- }
- int s2n_server_key_send_write_signature(struct s2n_connection *conn, struct s2n_blob *signature)
- {
- struct s2n_stuffer *out = &conn->handshake.io;
- POSIX_GUARD(s2n_stuffer_write_uint16(out, signature->size));
- POSIX_GUARD(s2n_stuffer_write_bytes(out, signature->data, signature->size));
- return 0;
- }
|