123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105 |
- /*
- * 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 <stdint.h>
- #include "error/s2n_errno.h"
- #include "stuffer/s2n_stuffer.h"
- #include "tls/s2n_connection.h"
- #include "tls/s2n_tls.h"
- #include "tls/s2n_tls13_handshake.h"
- #include "utils/s2n_safety.h"
- S2N_RESULT s2n_finished_recv(struct s2n_connection *conn, uint8_t *our_version);
- S2N_RESULT s2n_finished_send(struct s2n_connection *conn, uint8_t *our_version);
- int s2n_client_finished_recv(struct s2n_connection *conn)
- {
- POSIX_ENSURE_REF(conn);
- POSIX_GUARD(s2n_prf_client_finished(conn));
- uint8_t *verify_data = conn->handshake.client_finished;
- POSIX_GUARD_RESULT(s2n_finished_recv(conn, verify_data));
- POSIX_ENSURE(!conn->handshake.rsa_failed, S2N_ERR_BAD_MESSAGE);
- return S2N_SUCCESS;
- }
- int s2n_client_finished_send(struct s2n_connection *conn)
- {
- POSIX_ENSURE_REF(conn);
- POSIX_GUARD(s2n_prf_client_finished(conn));
- uint8_t *verify_data = conn->handshake.client_finished;
- POSIX_GUARD_RESULT(s2n_finished_send(conn, verify_data));
- POSIX_GUARD_RESULT(s2n_crypto_parameters_switch(conn));
- return S2N_SUCCESS;
- }
- int s2n_tls13_client_finished_recv(struct s2n_connection *conn)
- {
- POSIX_ENSURE_EQ(conn->actual_protocol_version, S2N_TLS13);
- uint8_t length = s2n_stuffer_data_available(&conn->handshake.io);
- S2N_ERROR_IF(length == 0, S2N_ERR_BAD_MESSAGE);
- /* read finished mac from handshake */
- struct s2n_blob wire_finished_mac = { 0 };
- s2n_blob_init(&wire_finished_mac, s2n_stuffer_raw_read(&conn->handshake.io, length), length);
- /* get tls13 keys */
- s2n_tls13_connection_keys(keys, conn);
- /* get transcript hash */
- POSIX_ENSURE_REF(conn->handshake.hashes);
- struct s2n_hash_state *hash_state = &conn->handshake.hashes->hash_workspace;
- POSIX_GUARD_RESULT(s2n_handshake_copy_hash_state(conn, keys.hash_algorithm, hash_state));
- struct s2n_blob finished_key = { 0 };
- POSIX_GUARD(s2n_blob_init(&finished_key, conn->handshake.client_finished, keys.size));
- s2n_tls13_key_blob(client_finished_mac, keys.size);
- POSIX_GUARD(s2n_tls13_calculate_finished_mac(&keys, &finished_key, hash_state, &client_finished_mac));
- POSIX_GUARD(s2n_tls13_mac_verify(&keys, &client_finished_mac, &wire_finished_mac));
- return 0;
- }
- int s2n_tls13_client_finished_send(struct s2n_connection *conn)
- {
- POSIX_ENSURE_EQ(conn->actual_protocol_version, S2N_TLS13);
- /* get tls13 keys */
- s2n_tls13_connection_keys(keys, conn);
- /* get transcript hash */
- POSIX_ENSURE_REF(conn->handshake.hashes);
- struct s2n_hash_state *hash_state = &conn->handshake.hashes->hash_workspace;
- POSIX_GUARD_RESULT(s2n_handshake_copy_hash_state(conn, keys.hash_algorithm, hash_state));
- /* look up finished secret key */
- struct s2n_blob finished_key = { 0 };
- POSIX_GUARD(s2n_blob_init(&finished_key, conn->handshake.client_finished, keys.size));
- /* generate the hashed message authenticated code */
- s2n_stack_blob(client_finished_mac, keys.size, S2N_TLS13_SECRET_MAX_LEN);
- POSIX_GUARD(s2n_tls13_calculate_finished_mac(&keys, &finished_key, hash_state, &client_finished_mac));
- /* write to handshake io */
- POSIX_GUARD(s2n_stuffer_write(&conn->handshake.io, &client_finished_mac));
- return 0;
- }
|