1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362
|
/*
* 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;
}
|