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
|
/***************************************************************************
* Copyright (c) 2024 Microsoft Corporation
* Copyright (c) 2025-present Eclipse ThreadX Contributors
*
* This program and the accompanying materials are made available under the
* terms of the MIT License which is available at
* https://opensource.org/licenses/MIT.
*
* SPDX-License-Identifier: MIT
**************************************************************************/
/**************************************************************************/
/**************************************************************************/
/** */
/** NetX Secure Component */
/** */
/** Transport Layer Security (TLS) */
/** */
/**************************************************************************/
/**************************************************************************/
#define NX_SECURE_SOURCE_CODE
#include "nx_secure_tls.h"
/**************************************************************************/
/* */
/* FUNCTION RELEASE */
/* */
/* _nx_secure_tls_session_receive PORTABLE C */
/* 6.4.3 */
/* AUTHOR */
/* */
/* Timothy Stapko, Microsoft Corporation */
/* */
/* DESCRIPTION */
/* */
/* This function receives data from an active TLS session, handling */
/* all decryption and verification before returning the data to the */
/* caller in the supplied NX_PACKET structure. */
/* */
/* INPUT */
/* */
/* tls_session TLS control block */
/* packet_ptr_ptr Pointer to return packet */
/* wait_option Indicates how long the caller */
/* should wait for the response */
/* */
/* OUTPUT */
/* */
/* status Completion status */
/* */
/* CALLS */
/* */
/* _nx_secure_tls_handshake_process Process TLS handshake */
/* _nx_secure_tls_session_receive_records */
/* Receive TLS records */
/* */
/* CALLED BY */
/* */
/* Application Code */
/* */
/**************************************************************************/
UINT _nx_secure_tls_session_receive(NX_SECURE_TLS_SESSION *tls_session, NX_PACKET **packet_ptr_ptr,
ULONG wait_option)
{
UINT status;
/* Session receive logic:
* 1. Receive incoming packets
* 2. Process records and receive while full record is not yet received.
* 3. If renegotiation initiated, process the renegotiation handshake.
* 3a. Process entire handshake (receive TCP packets, process records)
* 3b. Once handshake processed, receive any new packets, but only if
* the remote host initiated the renegotiation.
*/
/* Try receiving records from the remote host. */
status = _nx_secure_tls_session_receive_records(tls_session, packet_ptr_ptr, wait_option);
#ifndef NX_SECURE_TLS_DISABLE_SECURE_RENEGOTIATION
/* See if we have a renegotiation handshake. Continue processing following the
hello message that was received. */
if (status == NX_SUCCESS && tls_session -> nx_secure_tls_renegotiation_handshake)
{
/* Process the handshake. */
status = _nx_secure_tls_handshake_process(tls_session, wait_option);
if (status != NX_SUCCESS)
{
return(status);
}
/* Clear flag to prevent infinite recursion. */
tls_session -> nx_secure_tls_renegotiation_handshake = NX_FALSE;
/* If this renegotiation was initiated by us, don't receive additional data as
that will be up to the application. */
if (!tls_session -> nx_secure_tls_local_initiated_renegotiation)
{
/* Handle any data that followed the re-negotiation handshake. */
status = _nx_secure_tls_session_receive_records(tls_session, packet_ptr_ptr, wait_option);
}
tls_session -> nx_secure_tls_local_initiated_renegotiation = NX_FALSE;
}
else
#endif /* NX_SECURE_TLS_DISABLE_SECURE_RENEGOTIATION */
{
#if (NX_SECURE_TLS_TLS_1_3_ENABLED)
/* Continue processing while we are receiving post-handshake messages. */
while (status == NX_SECURE_TLS_POST_HANDSHAKE_RECEIVED)
{
status = _nx_secure_tls_session_receive_records(tls_session, packet_ptr_ptr, wait_option);
}
#endif /* NX_SECURE_TLS_TLS_1_3_ENABLED */
}
return(status);
}
|