-
Notifications
You must be signed in to change notification settings - Fork 16
/
tls13_common.c
286 lines (244 loc) · 8.57 KB
/
tls13_common.c
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
/**
* @file tls13_common.c
* @brief Handshake message processing (TLS 1.3 client and server)
*
* @section License
*
* SPDX-License-Identifier: GPL-2.0-or-later
*
* Copyright (C) 2010-2024 Oryx Embedded SARL. All rights reserved.
*
* This file is part of CycloneSSL Open.
*
* This program 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 2
* of the License, or (at your option) any later version.
*
* This program 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 General Public License
* along with this program; if not, write to the Free Software Foundation,
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
* @author Oryx Embedded SARL (www.oryx-embedded.com)
* @version 2.4.4
**/
//Switch to the appropriate trace level
#define TRACE_LEVEL TLS_TRACE_LEVEL
//Dependencies
#include "tls.h"
#include "tls_handshake.h"
#include "tls_misc.h"
#include "tls13_common.h"
#include "tls13_key_material.h"
#include "debug.h"
//Check TLS library configuration
#if (TLS_SUPPORT == ENABLED && TLS_MAX_VERSION >= TLS_VERSION_1_3)
/**
* @brief Send KeyUpdate message
*
* The KeyUpdate handshake message is used to indicate that the sender is
* updating its sending cryptographic keys. This message can be sent by either
* peer after it has sent a Finished message
*
* @param[in] context Pointer to the TLS context
* @return Error code
**/
error_t tls13SendKeyUpdate(TlsContext *context)
{
error_t error;
size_t length;
uint8_t *appTrafficSecret;
Tls13KeyUpdate *message;
const HashAlgo *hash;
//Initialize pointer
appTrafficSecret = NULL;
//Point to the buffer where to format the message
message = (Tls13KeyUpdate *) (context->txBuffer + context->txBufferLen);
//Format KeyUpdate message
error = tls13FormatKeyUpdate(context, message, &length);
//Check status code
if(!error)
{
//Debug message
TRACE_INFO("Sending KeyUpdate message (%" PRIuSIZE " bytes)...\r\n", length);
TRACE_DEBUG_ARRAY(" ", message, length);
//Send handshake message
error = tlsSendHandshakeMessage(context, message, length,
TLS_TYPE_KEY_UPDATE);
}
//Check status code
if(error == NO_ERROR || error == ERROR_WOULD_BLOCK || error == ERROR_TIMEOUT)
{
//The hash function used by HKDF is the cipher suite hash algorithm
hash = context->cipherSuite.prfHashAlgo;
//Make sure the hash algorithm is valid
if(hash != NULL)
{
//Check whether TLS operates as a client or a server
if(context->entity == TLS_CONNECTION_END_CLIENT)
{
appTrafficSecret = context->clientAppTrafficSecret;
}
else
{
appTrafficSecret = context->serverAppTrafficSecret;
}
//Compute the next generation of application traffic secret
error = tls13HkdfExpandLabel(context->transportProtocol, hash,
appTrafficSecret, hash->digestSize, "traffic upd", NULL, 0,
appTrafficSecret, hash->digestSize);
}
else
{
//The hash algorithm is not valid
error = ERROR_FAILURE;
}
}
//Check status code
if(!error)
{
//Release encryption engine
tlsFreeEncryptionEngine(&context->encryptionEngine);
//All the traffic keying material is recomputed whenever the underlying
//secret changes
error = tlsInitEncryptionEngine(context, &context->encryptionEngine,
context->entity, appTrafficSecret);
}
//Check status code
if(!error)
{
//After sending a KeyUpdate message, the sender shall send all its
//traffic using the next generation of keys
tlsChangeState(context, TLS_STATE_APPLICATION_DATA);
}
//Return status code
return error;
}
/**
* @brief Format KeyUpdate message
* @param[in] context Pointer to the TLS context
* @param[out] message Buffer where to format the KeyUpdate message
* @param[out] length Length of the resulting KeyUpdate message
* @return Error code
**/
error_t tls13FormatKeyUpdate(TlsContext *context, Tls13KeyUpdate *message,
size_t *length)
{
//The request_update field indicates whether the recipient of the KeyUpdate
//should respond with its own KeyUpdate
message->requestUpdate = TLS_KEY_UPDATE_NOT_REQUESTED;
//The KeyUpdate message consists of a single byte
*length = sizeof(Tls13KeyUpdate);
//Successful processing
return NO_ERROR;
}
/**
* @brief Parse KeyUpdate message
*
* The KeyUpdate handshake message is used to indicate that the sender is
* updating its sending cryptographic keys. This message can be sent by either
* peer after it has sent a Finished message
*
* @param[in] context Pointer to the TLS context
* @param[in] message Incoming EncryptedExtensions message to parse
* @param[in] length Message length
* @return Error code
**/
error_t tls13ParseKeyUpdate(TlsContext *context, const Tls13KeyUpdate *message,
size_t length)
{
error_t error;
uint8_t *appTrafficSecret;
TlsConnectionEnd entity;
const HashAlgo *hash;
//Debug message
TRACE_INFO("KeyUpdate message received (%" PRIuSIZE " bytes)...\r\n", length);
TRACE_DEBUG_ARRAY(" ", message, length);
//Check TLS version
if(context->version != TLS_VERSION_1_3)
return ERROR_UNEXPECTED_MESSAGE;
//Check the length of the KeyUpdate message
if(length != sizeof(Tls13KeyUpdate))
return ERROR_DECODING_FAILED;
//Ensure the value of the request_update field is valid
if(message->requestUpdate != TLS_KEY_UPDATE_NOT_REQUESTED &&
message->requestUpdate != TLS_KEY_UPDATE_REQUESTED)
{
//If an implementation receives any other value, it must terminate the
//connection with an illegal_parameter alert
return ERROR_ILLEGAL_PARAMETER;
}
//Implementations that receive a KeyUpdate prior to receiving a Finished
//message must terminate the connection with an unexpected_message alert
if(context->state != TLS_STATE_APPLICATION_DATA &&
context->state != TLS_STATE_CLOSING)
{
//Report an error
return ERROR_UNEXPECTED_MESSAGE;
}
#if (TLS_MAX_KEY_UPDATE_MESSAGES > 0)
//Increment the count of consecutive KeyUpdate messages
context->keyUpdateCount++;
//Do not allow too many consecutive KeyUpdate message
if(context->keyUpdateCount > TLS_MAX_KEY_UPDATE_MESSAGES)
return ERROR_UNEXPECTED_MESSAGE;
#endif
//The hash function used by HKDF is the cipher suite hash algorithm
hash = context->cipherSuite.prfHashAlgo;
//Make sure the hash algorithm is valid
if(hash == NULL)
return ERROR_FAILURE;
//Upon receiving a KeyUpdate, the receiver must update its receiving keys
if(context->entity == TLS_CONNECTION_END_CLIENT)
{
entity = TLS_CONNECTION_END_SERVER;
appTrafficSecret = context->serverAppTrafficSecret;
}
else
{
entity = TLS_CONNECTION_END_CLIENT;
appTrafficSecret = context->clientAppTrafficSecret;
}
//Compute the next generation of application traffic secret
error = tls13HkdfExpandLabel(context->transportProtocol, hash,
appTrafficSecret, hash->digestSize, "traffic upd", NULL, 0,
appTrafficSecret, hash->digestSize);
//Any error to report?
if(error)
return error;
//The implementation must verify that its receive buffer is empty before
//rekeying
if(context->rxBufferLen != 0)
return ERROR_UNEXPECTED_MESSAGE;
//Release decryption engine
tlsFreeEncryptionEngine(&context->decryptionEngine);
//All the traffic keying material is recomputed whenever the underlying
//secret changes
error = tlsInitEncryptionEngine(context, &context->decryptionEngine,
entity, appTrafficSecret);
//Any error to report?
if(error)
return error;
//Check the value of the request_update field
if(message->requestUpdate == TLS_KEY_UPDATE_REQUESTED &&
context->state == TLS_STATE_APPLICATION_DATA)
{
#if (TLS_MAX_KEY_UPDATE_MESSAGES > 0)
if(context->keyUpdateCount == 1)
#endif
{
//If the request_update field is set to update_requested then the
//receiver must send a KeyUpdate of its own with request_update set to
//update_not_requested prior to sending its next application data
tlsChangeState(context, TLS_STATE_KEY_UPDATE);
}
}
//Successful processing
return NO_ERROR;
}
#endif