summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNikos Mavrogiannopoulos <nmav@redhat.com>2018-07-02 16:28:28 +0200
committerNikos Mavrogiannopoulos <nmav@gnutls.org>2018-07-11 15:20:28 +0000
commitbd87a9ffbf286f802c171f92b87b5f4edfcdfeb7 (patch)
tree86d13235baba49f274ab66219dc2a7f12a449257
parent6d6d9c1ba8d1f73e82ddb2b1698b0c67d45174d3 (diff)
downloadgnutls-bd87a9ffbf286f802c171f92b87b5f4edfcdfeb7.tar.gz
generate_session_ticket: tickets cannot extend the original session time
That is, on a resumed session the server would not issue new tickets that would have extended the lifetime of the originally issued ticket. Resolves #476 Signed-off-by: Nikos Mavrogiannopoulos <nmav@redhat.com>
-rw-r--r--lib/constate.c2
-rw-r--r--lib/tls13/session_ticket.c27
-rw-r--r--tests/Makefile.am4
-rw-r--r--tests/resume-lifetime.c282
-rw-r--r--tests/virt-time.h56
5 files changed, 363 insertions, 8 deletions
diff --git a/lib/constate.c b/lib/constate.c
index b1086fd838..8f15990ad6 100644
--- a/lib/constate.c
+++ b/lib/constate.c
@@ -669,8 +669,8 @@ int _gnutls_epoch_set_keys(gnutls_session_t session, uint16_t epoch, hs_stage_t
dst->pversion = src->pversion; \
memcpy( dst->session_id, src->session_id, GNUTLS_MAX_SESSION_ID_SIZE); \
dst->session_id_size = src->session_id_size; \
- dst->timestamp = src->timestamp; \
} \
+ dst->timestamp = src->timestamp; \
dst->cert_type = src->cert_type; \
dst->client_auth_type = src->client_auth_type; \
dst->server_auth_type = src->server_auth_type
diff --git a/lib/tls13/session_ticket.c b/lib/tls13/session_ticket.c
index ca11fd78a6..77edbcda91 100644
--- a/lib/tls13/session_ticket.c
+++ b/lib/tls13/session_ticket.c
@@ -177,6 +177,20 @@ generate_session_ticket(gnutls_session_t session, tls13_ticket_t *ticket)
int ret;
gnutls_datum_t packed = { NULL, 0 };
tls13_ticket_t ticket_data;
+ time_t now = gnutls_time(0);
+
+ if (session->internals.resumed != RESUME_FALSE) {
+ /* If we are resuming ensure that we don't extend the lifetime
+ * of the ticket past the original session expiration time */
+ if (now >= session->security_parameters.timestamp + session->internals.expire_time)
+ return GNUTLS_E_INT_RET_0; /* don't send ticket */
+ else
+ ticket->lifetime = session->security_parameters.timestamp +
+ session->internals.expire_time - now;
+ } else {
+ /* Set ticket lifetime to the default expiration time */
+ ticket->lifetime = session->internals.expire_time;
+ }
/* Generate a random 32-bit ticket nonce */
ticket->nonce_size = 4;
@@ -188,8 +202,6 @@ generate_session_ticket(gnutls_session_t session, tls13_ticket_t *ticket)
if ((ret = gnutls_rnd(GNUTLS_RND_NONCE, &ticket->age_add, sizeof(uint32_t))) < 0)
return gnutls_assert_val(ret);
- /* Set ticket lifetime to the default expiration time */
- ticket->lifetime = session->internals.expire_time;
ticket->prf = session->security_parameters.prf;
@@ -239,11 +251,16 @@ int _gnutls13_send_session_ticket(gnutls_session_t session, unsigned again)
if (again == 0) {
memset(&ticket, 0, sizeof(tls13_ticket_t));
- ret = _gnutls_buffer_init_handshake_mbuffer(&buf);
- if (ret < 0)
+ ret = generate_session_ticket(session, &ticket);
+ if (ret < 0) {
+ if (ret == GNUTLS_E_INT_RET_0) {
+ return gnutls_assert_val(0);
+ }
+
return gnutls_assert_val(ret);
+ }
- ret = generate_session_ticket(session, &ticket);
+ ret = _gnutls_buffer_init_handshake_mbuffer(&buf);
if (ret < 0) {
gnutls_assert();
goto cleanup;
diff --git a/tests/Makefile.am b/tests/Makefile.am
index c12887d4eb..5d6a306445 100644
--- a/tests/Makefile.am
+++ b/tests/Makefile.am
@@ -32,7 +32,7 @@ SUBDIRS += suite
endif
EXTRA_DIST = suppressions.valgrind eagain-common.h cert-common.h test-chains.h \
- ocsp-common.h cmocka-common.h \
+ ocsp-common.h cmocka-common.h virt-time.h \
certs/ca-cert-ecc.pem certs/cert-ecc256.pem certs/cert-ecc521.pem \
certs/cert-rsa-2432.pem certs/ecc384.pem certs/ecc.pem hex.h \
certs/ca-ecc.pem certs/cert-ecc384.pem certs/cert-ecc.pem certs/ecc256.pem \
@@ -143,7 +143,7 @@ ctests += mini-record-2 simple gnutls_hmac_fast set_pkcs12_cred cert certuniquei
mini-emsgsize-dtls chainverify-unsorted mini-overhead tls12-ffdhe \
mini-dtls-heartbeat mini-x509-callbacks key-openssl priorities priorities-groups \
gnutls_x509_privkey_import gnutls_x509_crt_list_import \
- sign-verify-ext4 tls-neg-ext4-key \
+ sign-verify-ext4 tls-neg-ext4-key resume-lifetime \
mini-dtls-srtp rsa-encrypt-decrypt mini-loss-time gnutls-strcodes \
mini-record mini-dtls-record mini-handshake-timeout mini-record-range \
mini-cert-status fips-mode-pthread rsa-psk global-init sec-params sign-verify-data \
diff --git a/tests/resume-lifetime.c b/tests/resume-lifetime.c
new file mode 100644
index 0000000000..99c9c5b346
--- /dev/null
+++ b/tests/resume-lifetime.c
@@ -0,0 +1,282 @@
+/*
+ * Copyright (C) 2016-2018 Red Hat, Inc.
+ *
+ * Author: Nikos Mavrogiannopoulos
+ *
+ * This file is part of GnuTLS.
+ *
+ * GnuTLS is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * GnuTLS 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
+ * 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 <http://www.gnu.org/licenses/>
+ */
+
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
+#include <errno.h>
+#include <gnutls/gnutls.h>
+#include <assert.h>
+#include "utils.h"
+#include "virt-time.h"
+#include "eagain-common.h"
+#include "cert-common.h"
+
+/* This test checks whether the lifetime of a resumed session can
+ * be extended past the designated one */
+
+const char *side;
+
+static void tls_log_func(int level, const char *str)
+{
+ fprintf(stderr, "%s|<%d>| %s", side, level, str);
+}
+
+struct hsk_st {
+ unsigned sent_nst; /* whether the new session ticket was sent */
+ unsigned sent_psk; /* whether the PSK extension was sent */
+ unsigned sleep_at_finished; /* how long to wait at finished message reception */
+
+};
+
+static int ext_hook_func(void *ctx, unsigned tls_id,
+ const unsigned char *data, unsigned size)
+{
+ if (tls_id == 41) {
+ struct hsk_st *h = ctx;
+ h->sent_psk = 1;
+ }
+ return 0;
+}
+
+static int handshake_callback(gnutls_session_t session, unsigned int htype,
+ unsigned post, unsigned int incoming, const gnutls_datum_t *msg)
+{
+ struct hsk_st *h = gnutls_session_get_ptr(session);
+
+ if (htype == GNUTLS_HANDSHAKE_FINISHED && incoming) {
+ if (h->sleep_at_finished)
+ virt_sec_sleep(h->sleep_at_finished);
+ return 0;
+ } else if (htype == GNUTLS_HANDSHAKE_CLIENT_HELLO) {
+ gnutls_ext_raw_parse(h, ext_hook_func, msg,
+ GNUTLS_EXT_RAW_FLAG_TLS_CLIENT_HELLO);
+ }
+
+ if (htype != GNUTLS_HANDSHAKE_NEW_SESSION_TICKET)
+ return 0;
+
+ if (h)
+ h->sent_nst = 1;
+ return 0;
+}
+
+/* Returns true if resumed */
+static unsigned handshake(const char *prio, unsigned t, const gnutls_datum_t *sdata,
+ gnutls_datum_t *ndata,
+ gnutls_datum_t *skey,
+ struct hsk_st *h)
+{
+ int ret;
+ /* Server stuff. */
+ gnutls_certificate_credentials_t serverx509cred;
+ gnutls_session_t server;
+ int sret = GNUTLS_E_AGAIN;
+ /* Client stuff. */
+ gnutls_certificate_credentials_t clientx509cred;
+ gnutls_session_t client;
+ int cret = GNUTLS_E_AGAIN;
+ char buf[128];
+
+ gnutls_global_set_log_function(tls_log_func);
+ if (debug)
+ gnutls_global_set_log_level(6);
+
+ assert(gnutls_certificate_allocate_credentials(&serverx509cred)>=0);
+ assert(gnutls_certificate_set_x509_key_mem(serverx509cred,
+ &server_cert, &server_key,
+ GNUTLS_X509_FMT_PEM)>=0);
+
+ assert(gnutls_init(&server, GNUTLS_SERVER)>=0);
+ gnutls_credentials_set(server, GNUTLS_CRD_CERTIFICATE,
+ serverx509cred);
+ assert(gnutls_priority_set_direct(server, prio, NULL)>=0);
+ gnutls_transport_set_push_function(server, server_push);
+ gnutls_transport_set_pull_function(server, server_pull);
+ gnutls_transport_set_ptr(server, server);
+ gnutls_session_set_ptr(server, h);
+
+ gnutls_db_set_cache_expiration(server, t);
+ assert(gnutls_session_ticket_enable_server(server, skey) >= 0);
+
+ gnutls_handshake_set_hook_function(server, -1,
+ GNUTLS_HOOK_POST,
+ handshake_callback);
+
+ assert(gnutls_certificate_allocate_credentials(&clientx509cred)>=0);
+ assert(gnutls_certificate_set_x509_trust_mem(clientx509cred, &ca_cert, GNUTLS_X509_FMT_PEM)>=0);
+ assert(gnutls_init(&client, GNUTLS_CLIENT)>=0);
+
+ assert(gnutls_credentials_set(client, GNUTLS_CRD_CERTIFICATE,
+ clientx509cred)>=0);
+
+ assert(gnutls_priority_set_direct(client, prio, NULL)>=0);
+ gnutls_transport_set_push_function(client, client_push);
+ gnutls_transport_set_pull_function(client, client_pull);
+ gnutls_transport_set_ptr(client, client);
+
+ if (sdata) {
+ assert(gnutls_session_set_data(client, sdata->data, sdata->size)>=0);
+ }
+
+ memset(buf, 0, sizeof(buf));
+ ret = gnutls_session_set_data(client, buf, sizeof(buf));
+ if (ret != GNUTLS_E_DB_ERROR) {
+ fail("unexpected error: %s\n", gnutls_strerror(ret));
+ }
+
+ HANDSHAKE(client, server);
+
+ gnutls_record_recv(client, buf, sizeof(buf));
+
+ if (ndata) {
+ ret = gnutls_session_get_data2(client, ndata);
+ if (ret < 0) {
+ fail("unexpected error: %s\n", gnutls_strerror(ret));
+ }
+ }
+
+ ret = gnutls_session_is_resumed(client);
+
+ gnutls_deinit(server);
+ gnutls_deinit(client);
+
+ gnutls_certificate_free_credentials(serverx509cred);
+ gnutls_certificate_free_credentials(clientx509cred);
+
+ reset_buffers();
+ return ret;
+}
+
+/* @t is the lifetime of the first ticket, @s is the
+ * time to wait before asking for a ticket the last try */
+static void start(const char *name, const char *prio, unsigned t, unsigned s)
+{
+ gnutls_datum_t sdata, ndata, skey;
+ unsigned ret;
+ struct hsk_st h;
+ memset(&h, 0, sizeof(h));
+
+ success("trying %s\n", name);
+
+ assert(gnutls_session_ticket_key_generate(&skey)>=0);
+
+ /* step1: get a fresh ticket */
+ ret = handshake(prio, t, NULL, &sdata, &skey, &h);
+ assert(ret == 0);
+ assert(h.sent_nst != 0);
+ memset(&h, 0, sizeof(h));
+
+ if (debug)
+ success("completed first handshake\n");
+
+ if (s)
+ virt_sec_sleep(s);
+
+ /* step2: get a ticket from the resumed session of the first */
+ ret = handshake(prio, t, &sdata, &ndata, &skey, &h);
+ assert(ret != 0);
+ assert(h.sent_nst != 0);
+ memset(&h, 0, sizeof(h));
+
+ /* wait until the ticket we got in step1 is invalid, although
+ * the ticket we got in step2 is valid */
+
+ if (debug)
+ success("completed second handshake\n");
+
+ if (s)
+ virt_sec_sleep(s);
+
+ ret = handshake(prio, t, &ndata, NULL, &skey, &h);
+
+ if (s) {
+ if (ret != 0)
+ fail("server resumed session even if ticket expired!\n");
+
+ /* we shouldn't have sent the PSK extension as the ticket was expired */
+ assert(h.sent_psk == 0);
+ }
+
+ gnutls_free(ndata.data);
+ gnutls_free(sdata.data);
+ gnutls_free(skey.data);
+}
+
+/* @t is the lifetime of the first ticket, @s is the
+ * time to wait before asking for a ticket the last try
+ *
+ * This makes the ticket to expire during handshake (after resumtion),
+ * but before the client receives the new session ticket. In that
+ * case the server shouldn't send a session ticket.
+ */
+static void start2(const char *name, const char *prio, unsigned t, unsigned s)
+{
+ gnutls_datum_t sdata, ndata, skey;
+ unsigned ret;
+ struct hsk_st h;
+ memset(&h, 0, sizeof(h));
+
+ success("trying %s\n", name);
+
+ assert(gnutls_session_ticket_key_generate(&skey)>=0);
+
+ /* step1: get a fresh ticket */
+ ret = handshake(prio, t, NULL, &sdata, &skey, &h);
+ assert(ret == 0);
+ assert(h.sent_nst != 0);
+ memset(&h, 0, sizeof(h));
+
+ /* step2: get a ticket from the resumed session of the first */
+ ret = handshake(prio, t, &sdata, &ndata, &skey, &h);
+ assert(ret != 0);
+ assert(h.sent_nst != 0);
+ memset(&h, 0, sizeof(h));
+
+ /* wait until the ticket we got in step1 is invalid, although
+ * the ticket we got in step2 is valid */
+
+ if (s)
+ h.sleep_at_finished = s;
+
+ ret = handshake(prio, t, &ndata, NULL, &skey, &h);
+
+ assert(ret != 0);
+ if (h.sent_nst != 0)
+ fail("server sent session ticket even if ticket expired!\n");
+
+ gnutls_free(ndata.data);
+ gnutls_free(sdata.data);
+ gnutls_free(skey.data);
+}
+
+void doit(void)
+{
+ virt_time_init();
+
+ start("TLS1.3 sanity", "NORMAL:-VERS-ALL:+VERS-TLS1.3", 64, 0);
+ start("TLS1.3 ticket extension", "NORMAL:-VERS-ALL:+VERS-TLS1.3", 5, 3);
+ start2("TLS1.3 ticket extension - expires at handshake", "NORMAL:-VERS-ALL:+VERS-TLS1.3", 2, 3);
+}
diff --git a/tests/virt-time.h b/tests/virt-time.h
new file mode 100644
index 0000000000..02c8cdb147
--- /dev/null
+++ b/tests/virt-time.h
@@ -0,0 +1,56 @@
+/*
+ * Copyright (C) 2018 Red Hat, Inc.
+ *
+ * Author: Nikos Mavrogiannopoulos
+ *
+ * This file is part of GnuTLS.
+ *
+ * GnuTLS is free software; you can redistribute it and/or modify it
+ * under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * GnuTLS 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
+ * 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 <http://www.gnu.org/licenses/>
+ */
+
+#ifndef VIRT_TIME_H
+#define VIRT_TIME_H
+
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
+#include <time.h>
+#include <gnutls/gnutls.h>
+
+/* virtualize time in a test. This freezes the time in the test, except for
+ * the advances due to calls to virt_sleep_sec(). This makes the test
+ * independent of the test system load, and avoids any long delays.
+ *
+ * This only affects the parts of the library that utilize gnutls_time(),
+ * not the higher precision gettime */
+static time_t _now = 0;
+
+#define virt_sec_sleep(s) _now += s
+
+#define virt_time_init() { \
+ _now = time(0); \
+ gnutls_global_set_time_function(mytime); \
+ }
+
+
+static time_t mytime(time_t * t)
+{
+ if (t)
+ *t = _now;
+
+ return _now;
+}
+
+#endif