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
|
/***************************************************************************
* 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_process_header PORTABLE C */
/* 6.4.3 */
/* AUTHOR */
/* */
/* Timothy Stapko, Microsoft Corporation */
/* */
/* DESCRIPTION */
/* */
/* This function processes an NX_PACKET data structure, extracting */
/* and parsing a TLS header received from a remote host. */
/* */
/* INPUT */
/* */
/* tls_session Pointer to TLS control block */
/* packet_ptr Pointer to incoming packet */
/* record_offset Offset of current record */
/* message_type Return message type value */
/* length Return message length value */
/* header_data Pointer to header to parse */
/* header_length Length of header data (bytes) */
/* */
/* OUTPUT */
/* */
/* status Completion status */
/* */
/* CALLS */
/* */
/* nx_packet_data_extract_offset Extract data from NX_PACKET */
/* _nx_secure_tls_check_protocol_version Check incoming TLS version */
/* */
/* CALLED BY */
/* */
/* _nx_secure_tls_process_record Process TLS record */
/* */
/**************************************************************************/
UINT _nx_secure_tls_process_header(NX_SECURE_TLS_SESSION *tls_session, NX_PACKET *packet_ptr,
ULONG record_offset, USHORT *message_type, UINT *length,
UCHAR *header_data, USHORT *header_length)
{
ULONG bytes_copied;
UINT status;
USHORT protocol_version;
/* Check the packet. */
if (packet_ptr == NX_NULL)
{
/* There was an error in extracting the header from the supplied packet. */
return(NX_SECURE_TLS_INVALID_PACKET);
}
/* Process the TLS record header, which will set the state. */
status = nx_packet_data_extract_offset(packet_ptr, record_offset, header_data,
NX_SECURE_TLS_RECORD_HEADER_SIZE, &bytes_copied);
/* Make sure we actually got a header. */
if (status != NX_SUCCESS)
{
/* There was an error in extracting the header from the supplied packet. */
return(NX_SECURE_TLS_INVALID_PACKET);
}
if (bytes_copied != NX_SECURE_TLS_RECORD_HEADER_SIZE)
{
/* Wait more TCP packets for this one record. */
return(NX_CONTINUE);
}
/* Extract message type from packet/record. */
*message_type = header_data[0];
/* Extract the protocol version. */
protocol_version = (USHORT)(((USHORT)header_data[1] << 8) | header_data[2]);
/* Get the length of the TLS data. */
*length = (UINT)(((UINT)header_data[3] << 8) + header_data[4]);
/* Set header length. */
*header_length = NX_SECURE_TLS_RECORD_HEADER_SIZE;
/* Check the protocol version, except when we haven't established a version yet */
if (tls_session -> nx_secure_tls_protocol_version != 0)
{
/* Check the record's protocol version against the current session. */
status = _nx_secure_tls_check_protocol_version(tls_session, protocol_version, NX_SECURE_TLS);
return(status);
}
return(NX_SUCCESS);
}
|