/* * Copyright (C) 2014 Red Hat, Inc. * * Author: Nikos Mavrogiannopoulos * * This file is part of GnuTLS. * * The GnuTLS is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public License * as published by the Free Software Foundation; either version 2.1 of * the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see * */ /* This file contains the code for the Max Record Size TLS extension. */ #include "gnutls_int.h" #include "errors.h" #include "num.h" #include #include static int _gnutls_ext_etm_recv_params(gnutls_session_t session, const uint8_t * data, size_t data_size); static int _gnutls_ext_etm_send_params(gnutls_session_t session, gnutls_buffer_st * extdata); const extension_entry_st ext_mod_etm = { .name = "Encrypt-then-MAC", .type = GNUTLS_EXTENSION_ETM, .parse_type = GNUTLS_EXT_MANDATORY, .recv_func = _gnutls_ext_etm_recv_params, .send_func = _gnutls_ext_etm_send_params, .pack_func = NULL, .unpack_func = NULL, .deinit_func = NULL }; /* * In case of a server: if an EXT_MASTER_SECRET extension type is received then it * sets a flag into the session security parameters. * */ static int _gnutls_ext_etm_recv_params(gnutls_session_t session, const uint8_t * data, size_t _data_size) { ssize_t data_size = _data_size; if (data_size != 0) { return gnutls_assert_val(GNUTLS_E_RECEIVED_ILLEGAL_PARAMETER); } if (session->security_parameters.entity == GNUTLS_SERVER) { extension_priv_data_t epriv; if (session->internals.priorities.no_etm != 0) return 0; epriv = (void*)(intptr_t)1; _gnutls_ext_set_session_data(session, GNUTLS_EXTENSION_ETM, epriv); /* don't decide now, decide on send */ return 0; } else { /* client */ const cipher_entry_st *c; c = _gnutls_cipher_suite_get_cipher_algo(session->security_parameters.cipher_suite); if (c == NULL || (c->type == CIPHER_AEAD || c->type == CIPHER_STREAM)) return 0; session->security_parameters.etm = 1; } return 0; } /* returns data_size or a negative number on failure */ static int _gnutls_ext_etm_send_params(gnutls_session_t session, gnutls_buffer_st * extdata) { if (session->internals.priorities.no_etm != 0) return 0; /* this function sends the client extension data */ if (session->security_parameters.entity == GNUTLS_CLIENT) { if (session->internals.priorities.have_cbc != 0) return GNUTLS_E_INT_RET_0; else return 0; } else { /* server side */ const cipher_entry_st *c; int ret; extension_priv_data_t epriv; c = _gnutls_cipher_suite_get_cipher_algo(session->security_parameters.cipher_suite); if (c == NULL || (c->type == CIPHER_AEAD || c->type == CIPHER_STREAM)) return 0; ret = _gnutls_ext_get_session_data(session, GNUTLS_EXTENSION_ETM, &epriv); if (ret < 0 || ((intptr_t)epriv) == 0) return 0; session->security_parameters.etm = 1; return GNUTLS_E_INT_RET_0; } return 0; } /** * gnutls_session_etm_status: * @session: is a #gnutls_session_t type. * * Get the status of the encrypt-then-mac extension negotiation. * This is in accordance to rfc7366 * * Returns: Non-zero if the negotiation was successful or zero otherwise. **/ unsigned gnutls_session_etm_status(gnutls_session_t session) { return session->security_parameters.etm; }