summaryrefslogtreecommitdiff
path: root/lib/tls13/session_ticket.c
blob: 61d6745348f771b0b3554a55667057b5464446c9 (plain)
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
/*
 * Copyright (C) 2017 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 <http://www.gnu.org/licenses/>
 *
 */

#include "gnutls_int.h"
#include "errors.h"
#include "extv.h"
#include "handshake.h"
#include "tls13/session_ticket.h"
#include "auth/cert.h"

static int parse_nst_extension(void *ctx, uint16_t tls_id, const uint8_t *data, int data_size);

int _gnutls13_send_session_ticket(gnutls_session_t session)
{
	int ret;
	gnutls_buffer_st buf;
	mbuffer_st *bufel = NULL;
	struct tls13_nst_st ticket;

	/* Client does not send a NewSessionTicket */
	if (unlikely(session->security_parameters.entity == GNUTLS_CLIENT))
		return gnutls_assert_val(GNUTLS_E_INTERNAL_ERROR);

	ret = _gnutls13_session_ticket_get(session, &ticket);
	if (ret > 0) {
		if ((ret = _gnutls_buffer_init_handshake_mbuffer(&buf)) < 0) {
			gnutls_assert();
			goto error;
		}

		if ((ret = _gnutls_buffer_append_prefix(buf, 32, ticket.ticket_lifetime)) < 0) {
			gnutls_assert();
			goto error;
		}
		if ((ret = _gnutls_buffer_append_prefix(buf, 32, ticket.ticket_age_add)) < 0) {
			gnutls_assert();
			goto error;
		}
		if ((ret = _gnutls_buffer_append_data_prefix(buf, 8,
				ticket.ticket_nonce.data, ticket.ticket_nonce.size)) < 0) {
			gnutls_assert();
			goto error;
		}
		if ((ret = _gnutls_buffer_append_data_prefix(buf, 16,
				ticket.ticket.data, ticket.ticket.size)) < 0) {
			gnutls_assert();
			goto error;
		}

		bufel = _gnutls_buffer_to_mbuffer(buf);
		return _gnutls_send_handshake(session, bufel,
				GNUTLS_HANDSHAKE_NEW_SESSION_TICKET);
	}

	return 0;

error:
	_gnutls_buffer_clear(&buf);
	return ret;
}

int _gnutls13_recv_session_ticket(gnutls_session_t session, gnutls_buffer_st *buf,
		struct tls13_nst_st *ticket)
{
	int ret;

	_gnutls_handshake_log("HSK[%p]: parsing session ticket message\n", session);

	/* ticket_lifetime */
	ret = _gnutls_buffer_pop_prefix32(buf, &ticket->ticket_lifetime, 0);
	if (ret < 0) {
		gnutls_assert();
		goto cleanup;
	}

	/* ticket_age_add */
	ret = _gnutls_buffer_pop_prefix32(buf, &ticket->ticket_age_add, 0);
	if (ret < 0) {
		gnutls_assert();
		goto cleanup;
	}

	ret = _gnutls_buffer_pop_datum_prefix8(buf, &ticket->ticket_nonce);
	if (ret < 0) {
		gnutls_assert();
		goto cleanup;
	}

	ret = _gnutls_buffer_pop_datum_prefix16(buf, &ticket->ticket);
	if (ret < 0) {
		gnutls_assert();
		goto cleanup;
	}

	ret = _gnutls_extv_parse(NULL, parse_nst_extension, buf->data, buf->length);
	if (ret < 0) {
		gnutls_assert();
		goto cleanup;
	}

	ret = 0;
cleanup:

	return ret;
}

static int parse_nst_extension(void *ctx, uint16_t tls_id, const uint8_t *data, int data_size)
{
	/* ignore all extensions */
	return 0;
}