blob: b0e631989e23f13e839117029192686547eed90f (
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
|
/***************************************************************************
* 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"
#ifdef NX_SECURE_ENABLE_DTLS
#include "nx_packet.h"
#include "nx_udp.h"
/**************************************************************************/
/* */
/* FUNCTION RELEASE */
/* */
/* _nx_secure_dtls_retransmit PORTABLE C */
/* 6.4.3 */
/* AUTHOR */
/* */
/* Timothy Stapko, Microsoft Corporation */
/* */
/* DESCRIPTION */
/* */
/* This function is primarily responsible for the retransmission of */
/* dropped handshake message flights. */
/* */
/* INPUT */
/* */
/* dtls_session DTLS control block */
/* */
/* OUTPUT */
/* */
/* None */
/* */
/* CALLS */
/* */
/* _nxd_udp_socket_send Send UDP packet */
/* _nxd_udp_socket_source_send Send UDP packet with specific */
/* source addresss */
/* tx_mutex_get Get protection mutex */
/* tx_mutex_put Put protection mutex */
/* */
/* CALLED BY */
/* */
/* _nx_secure_dtls_client_handshake DTLS client state machine */
/* _nx_secure_dtls_server_handshake DTLS server state machine */
/* _nx_secure_dtls_session_start Actual DTLS session start call*/
/* */
/**************************************************************************/
VOID _nx_secure_dtls_retransmit(NX_SECURE_DTLS_SESSION *dtls_session)
{
NX_PACKET *packet_ptr;
NX_PACKET *next_ptr;
/* Get a pointer to the sent queue. */
packet_ptr = dtls_session -> nx_secure_dtls_transmit_sent_head;
/* Check for flights that need to be retransmitted. */
while (packet_ptr &&
(packet_ptr != (NX_PACKET *)NX_PACKET_ENQUEUED) &&
(packet_ptr -> nx_packet_queue_next == (NX_PACKET *)NX_DRIVER_TX_DONE))
{
/* Get a pointer to the next packet in the queue. */
next_ptr = packet_ptr -> nx_packet_union_next.nx_packet_tcp_queue_next;
/* Clear the queue next pointer in this packet. */
packet_ptr -> nx_packet_queue_next = NX_NULL;
/* Skip UDP header. */
packet_ptr -> nx_packet_prepend_ptr += sizeof(NX_UDP_HEADER);
packet_ptr -> nx_packet_length -= sizeof(NX_UDP_HEADER);
/* Release the protection. */
tx_mutex_put(&_nx_secure_tls_protection);
/* Re-send the packets in the queue. */
/* If local IP address index is set, call _nxd_udp_socket_source_send
to ensure the source IP address is correct. */
if (dtls_session -> nx_secure_dtls_local_ip_address_index == 0xffffffff)
{
/* Send the UDP packet(s) containing our record. */
_nxd_udp_socket_send(dtls_session -> nx_secure_dtls_udp_socket, packet_ptr,
&dtls_session -> nx_secure_dtls_remote_ip_address,
dtls_session -> nx_secure_dtls_remote_port);
}
else
{
/* Send the UDP packet(s) containing our record. */
_nxd_udp_socket_source_send(dtls_session -> nx_secure_dtls_udp_socket, packet_ptr,
&dtls_session -> nx_secure_dtls_remote_ip_address,
dtls_session -> nx_secure_dtls_remote_port,
dtls_session -> nx_secure_dtls_local_ip_address_index);
}
/* Get the protection. */
tx_mutex_get(&_nx_secure_tls_protection, TX_WAIT_FOREVER);
/* Advance to the next packet. */
packet_ptr = next_ptr;
}
dtls_session -> nx_secure_dtls_timeout_retries++;
dtls_session -> nx_secure_dtls_handshake_timeout = NX_SECURE_DTLS_RETRANSMIT_TIMEOUT <<
(dtls_session -> nx_secure_dtls_timeout_retries * NX_SECURE_DTLS_RETRANSMIT_RETRY_SHIFT);
if (dtls_session -> nx_secure_dtls_handshake_timeout > NX_SECURE_DTLS_MAXIMUM_RETRANSMIT_TIMEOUT)
{
dtls_session -> nx_secure_dtls_handshake_timeout = NX_SECURE_DTLS_MAXIMUM_RETRANSMIT_TIMEOUT;
}
}
#endif /* NX_SECURE_ENABLE_DTLS */
|