blob: ff7349a5ba5678a4d260d7f6c0cde57fdb07fefc (
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
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
|
/***************************************************************************
* 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 */
/** */
/** Datagram Transport Layer Security (DTLS) */
/** */
/**************************************************************************/
/**************************************************************************/
#define NX_SECURE_SOURCE_CODE
#include "nx_secure_dtls.h"
/**************************************************************************/
/* */
/* FUNCTION RELEASE */
/* */
/* _nx_secure_dtls_packet_allocate PORTABLE C */
/* 6.4.3 */
/* AUTHOR */
/* */
/* Timothy Stapko, Microsoft Corporation */
/* */
/* DESCRIPTION */
/* */
/* This function allocates a packet for DTLS. */
/* */
/* INPUT */
/* */
/* dtls_session DTLS control block */
/* pool_ptr Pool to allocate packet from */
/* packet_ptr Pointer to place allocated */
/* packet pointer */
/* wait_option Suspension option */
/* */
/* OUTPUT */
/* */
/* status Completion status */
/* */
/* CALLS */
/* */
/* _nx_secure_tls_session_iv_size_get Get IV size for this session. */
/* nx_packet_allocate NetX Packet allocation call. */
/* */
/* CALLED BY */
/* */
/* Application */
/* _nx_secure_dtls_allocate_handshake_packet */
/* Allocate DTLS handshake packet*/
/* _nx_secure_dtls_client_handshake DTLS client state machine */
/* _nx_secure_dtls_server_handshake DTLS server state machine */
/* _nx_secure_dtls_session_end Actual DTLS session end call. */
/* _nx_secure_dtls_session_receive Receive DTLS data */
/* */
/**************************************************************************/
UINT _nx_secure_dtls_packet_allocate(NX_SECURE_DTLS_SESSION *dtls_session, NX_PACKET_POOL *pool_ptr,
NX_PACKET **packet_ptr, ULONG wait_option)
{
#ifdef NX_SECURE_ENABLE_DTLS
UINT status;
ULONG packet_type;
USHORT iv_size;
NX_SECURE_TLS_SESSION *tls_session;
if (dtls_session -> nx_secure_dtls_remote_ip_address.nxd_ip_version == NX_IP_VERSION_V4)
{
packet_type = NX_IPv4_UDP_PACKET;
}
else
{
packet_type = NX_IPv6_UDP_PACKET;
}
status = nx_packet_allocate(pool_ptr, packet_ptr, packet_type, wait_option);
if (status != NX_SUCCESS)
{
return(NX_SECURE_TLS_ALLOCATE_PACKET_FAILED);
}
if (((ULONG)((*packet_ptr) -> nx_packet_data_end) - (ULONG)((*packet_ptr) -> nx_packet_prepend_ptr)) <
(NX_SECURE_DTLS_RECORD_HEADER_SIZE + 2u)) /* At least 2 bytes for Alert message. */
{
/* Packet buffer is too small. */
nx_packet_release(*packet_ptr);
return(NX_SECURE_TLS_PACKET_BUFFER_TOO_SMALL);
}
/* Advance the packet prepend pointer past the record header. */
(*packet_ptr) -> nx_packet_prepend_ptr += NX_SECURE_DTLS_RECORD_HEADER_SIZE;
/* Get a pointer to TLS state. */
tls_session = &dtls_session -> nx_secure_dtls_tls_session;
/* If TLS session is active, allocate space for the IV that precedes the data in
certain ciphersuites. */
if (tls_session -> nx_secure_tls_local_session_active)
{
/* Get the size of the IV used by the session cipher. */
status = _nx_secure_tls_session_iv_size_get(tls_session, &iv_size);
if (status != NX_SUCCESS)
{
return(status);
}
if ((iv_size + 2u) > ((ULONG)((*packet_ptr) -> nx_packet_data_end) - (ULONG)((*packet_ptr) -> nx_packet_prepend_ptr)))
{
/* Packet buffer is too small to hold IV. */
nx_packet_release(*packet_ptr);
*packet_ptr = NX_NULL;
return(NX_SECURE_TLS_PACKET_BUFFER_TOO_SMALL);
}
/* Don't do anything if no IV is required. */
if (iv_size > 0)
{
/* Pre-allocate space for the session cipher IV and clear it out. */
NX_SECURE_MEMSET((*packet_ptr) -> nx_packet_prepend_ptr, 0, iv_size);
(*packet_ptr) -> nx_packet_prepend_ptr += iv_size;
}
}
/* Make sure our append and prepend pointers are pointing to the same thing - when
the packet is allocated it is "empty" from a user perspective. */
(*packet_ptr) -> nx_packet_append_ptr = (*packet_ptr) -> nx_packet_prepend_ptr;
(*packet_ptr) -> nx_packet_length = 0;
return(NX_SECURE_TLS_SUCCESS);
#else
NX_PARAMETER_NOT_USED(dtls_session);
NX_PARAMETER_NOT_USED(pool_ptr);
NX_PARAMETER_NOT_USED(packet_ptr);
NX_PARAMETER_NOT_USED(wait_option);
return(NX_NOT_SUPPORTED);
#endif /* NX_SECURE_ENABLE_DTLS */
}
|