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
|
/***************************************************************************
* 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 Component */
/** */
/** Internet Group Management Protocol (IGMP) */
/** */
/**************************************************************************/
/**************************************************************************/
#define NX_SOURCE_CODE
/* Include necessary system files. */
#include "nx_api.h"
#include "nx_packet.h"
#include "nx_igmp.h"
#include "nx_ip.h"
#ifndef NX_DISABLE_IPV4
/**************************************************************************/
/* */
/* FUNCTION RELEASE */
/* */
/* _nx_igmp_packet_process PORTABLE C */
/* 6.4.3 */
/* AUTHOR */
/* */
/* Yuxin Zhou, Microsoft Corporation */
/* */
/* DESCRIPTION */
/* */
/* This function handles reception of IGMP packets. There are two types*/
/* of IGMP packets. Routers will send IGMP query messages and other */
/* send responses intended for the router but will be seen by all other */
/* hosts belonging to the same multicast group. In the latter case the */
/* other hosts will cancel their own response for the same multicast */
/* group. */
/* */
/* INPUT */
/* */
/* ip_ptr IP instance pointer */
/* packet_ptr IGMP packet pointer */
/* */
/* OUTPUT */
/* */
/* None */
/* */
/* CALLS */
/* */
/* _nx_packet_release Release IGMP packet */
/* tx_time_get Get current time */
/* */
/* CALLED BY */
/* */
/* _nx_igmp_packet_receive IGMP packet receive */
/* _nx_igmp_queue_process IGMP queue processing */
/* */
/**************************************************************************/
VOID _nx_igmp_packet_process(NX_IP *ip_ptr, NX_PACKET *packet_ptr)
{
UINT i;
ULONG update_time;
NX_IGMP_HEADER *header_ptr;
USHORT max_update_time;
ULONG checksum;
/* Add debug information. */
NX_PACKET_DEBUG(__FILE__, __LINE__, packet_ptr);
/* Setup a pointer to the IGMP packet header. */
/*lint -e{927} -e{826} suppress cast of pointer to pointer, since it is necessary */
header_ptr = (NX_IGMP_HEADER *)packet_ptr -> nx_packet_prepend_ptr;
#ifdef NX_ENABLE_INTERFACE_CAPABILITY
if (!(packet_ptr -> nx_packet_address.nx_packet_interface_ptr -> nx_interface_capability_flag & NX_INTERFACE_CAPABILITY_IGMP_RX_CHECKSUM))
#endif /* FEATURE_LINK_CAPABILITY */
{
/* First verify the checksum is correct. */
checksum = _nx_ip_checksum_compute(packet_ptr, NX_IP_IGMP,
(UINT)packet_ptr -> nx_packet_length,
NX_NULL, NX_NULL);
checksum = ~checksum & NX_LOWER_16_MASK;
/* Determine if the checksum is valid. */
if (checksum)
{
/* It is not. By RFC requirements we should not accept this packet. */
#ifndef NX_DISABLE_IGMP_INFO
/* Increment the IGMP invalid packet error. */
ip_ptr -> nx_ip_igmp_invalid_packets++;
/* Increment the IGMP checksum error count. */
ip_ptr -> nx_ip_igmp_checksum_errors++;
#endif /* NX_DISABLE_IGMP_INFO */
/* Toss this IGMP packet out. */
_nx_packet_release(packet_ptr);
return;
}
}
/* Swap the IGMP headers to host byte order. */
NX_CHANGE_ULONG_ENDIAN(header_ptr -> nx_igmp_header_word_0);
NX_CHANGE_ULONG_ENDIAN(header_ptr -> nx_igmp_header_word_1);
/* If trace is enabled, insert this event into the trace buffer. */
NX_TRACE_IN_LINE_INSERT(NX_TRACE_INTERNAL_IGMP_RECEIVE, ip_ptr, *(((ULONG *)packet_ptr -> nx_packet_prepend_ptr) - 2), packet_ptr, header_ptr -> nx_igmp_header_word_0, NX_TRACE_INTERNAL_EVENTS, 0, 0);
/* Determine the type of IGMP message received. Note that an IGMPv1 host will respond
to an IGMPv2 general query but not process the maximum response time field. */
if ((header_ptr -> nx_igmp_header_word_0 & NX_IGMP_TYPE_MASK) == NX_IGMP_ROUTER_QUERY_TYPE)
{
#ifndef NX_DISABLE_IGMP_INFO
/* Increment the IGMP queries received count. */
ip_ptr -> nx_ip_igmp_queries_received++;
#endif
/* Set the max response time recommended by RFC 1112 set by host in seconds. In a
IGMPv2 network, the router may set a different max time in its IGMP membership queries. */
max_update_time = NX_IGMP_MAX_UPDATE_TIME;
#ifndef NX_DISABLE_IGMPV2
/* Determine the IGMP version the sender (router) is using. */
/* Is the max response time non zero? */
if ((header_ptr -> nx_igmp_header_word_0 & NX_IGMP_MAX_RESP_TIME_MASK) != NX_NULL)
{
/* Yes, this must be an IGMPv2 router. */
ip_ptr -> nx_ip_igmp_router_version = NX_IGMP_HOST_VERSION_2;
/* Parse the max response time from the IGMP header. */
max_update_time = (USHORT)((header_ptr -> nx_igmp_header_word_0 & NX_IGMP_MAX_RESP_TIME_MASK) >> 16) & 0x0000FF;
/* Convert from tenths of a second to seconds. */
max_update_time /= 10;
}
else
{
/* No; IGMPv1 requires setting this field to zero. */
ip_ptr -> nx_ip_igmp_router_version = NX_IGMP_HOST_VERSION_1;
}
#endif
/* Then generate a random update time initially in timer ticks for the delay. */
update_time = tx_time_get() & 0xF;
/* Check we have a valid non zero update time that does not exceed the
maximum response time. */
if ((update_time > max_update_time) || (update_time == 0))
{
/* If not, wrap the update time back to one second. */
update_time = 1;
}
/* Loop through the multicast join list and assign an arbitrary timeout to
respond between 1 and maximum response time for each group. */
for (i = 0; i < NX_MAX_MULTICAST_GROUPS; i++)
{
/* Is there a group address in this slot? */
if (ip_ptr -> nx_ipv4_multicast_entry[i].nx_ipv4_multicast_join_list == NX_NULL)
{
/* No, skip doing further processing. */
continue;
}
/* Does the group address in the header match our join list? */
if ((ip_ptr -> nx_ipv4_multicast_entry[i].nx_ipv4_multicast_join_list != header_ptr -> nx_igmp_header_word_1) &&
/* or is this a general membership query? */
(header_ptr -> nx_igmp_header_word_1 != NX_NULL))
{
/* No; so no need to update the timer, skip to the next group in the host list. */
continue;
}
/* Is the current host group running timer less than the max delay? */
if (((ip_ptr -> nx_ipv4_multicast_entry[i].nx_ipv4_multicast_update_time < max_update_time) &&
(ip_ptr -> nx_ipv4_multicast_entry[i].nx_ipv4_multicast_update_time != NX_NULL)) ||
(ip_ptr -> nx_ipv4_multicast_entry[i].nx_ipv4_multicast_update_time == NX_WAIT_FOREVER))
{
/* Yes; Let the current timer timeout. Skip to the next group. */
continue;
}
/* Set the timeout for this multicast group. */
ip_ptr -> nx_ipv4_multicast_entry[i].nx_ipv4_multicast_update_time = update_time;
/* Then increment the update time for the next host group so the update/expiration times
are separated by one second. This avoids bursts of IGMP reports to the server. */
update_time++;
/* Check after each multicast group that we have not exceeded the maximum response time. */
if (update_time > max_update_time)
{
/* We have, so wrap the update time back to one. */
update_time = 1;
}
}
}
#ifndef NX_DISABLE_IGMPV2
/* Is this another IGMPv1 host's join request? */
else if (((header_ptr -> nx_igmp_header_word_0 & NX_IGMP_TYPE_MASK) == NX_IGMP_HOST_RESPONSE_TYPE) ||
/* ...Or an IGMPv2 host's join request? */
((header_ptr -> nx_igmp_header_word_0 & NX_IGMPV2_TYPE_MASK) == NX_IGMP_HOST_V2_JOIN_TYPE))
#else
/* Is this another IGMPv1 host's join request? */
else if ((header_ptr -> nx_igmp_header_word_0 & NX_IGMP_TYPE_MASK) == NX_IGMP_HOST_RESPONSE_TYPE)
#endif
{
/* Yes; Loop through the host multicast join list to find a matching group. */
for (i = 0; i < NX_MAX_MULTICAST_GROUPS; i++)
{
/* Compare the group address in the header with the host list. Is this a match? */
if ((ip_ptr -> nx_ipv4_multicast_entry[i].nx_ipv4_multicast_join_list == header_ptr -> nx_igmp_header_word_1) &&
(ip_ptr -> nx_ipv4_multicast_entry[i].nx_ipv4_multicast_update_time != NX_WAIT_FOREVER))
{
/* Yes; Clear the update time. This will cancel sending a join
request for the same multicast group. */
ip_ptr -> nx_ipv4_multicast_entry[i].nx_ipv4_multicast_update_time = 0;
break;
}
}
}
/* Release the IGMP packet. */
_nx_packet_release(packet_ptr);
}
#endif /* !NX_DISABLE_IPV4 */
|