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
|
/***************************************************************************/
/* Copyright (c) 2024 Microsoft Corporation */
/* Copyright (c) 2026 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 */
/***************************************************************************/
/* Testing the multiple interface DHCP Client */
/* This is the DHCP Client that will run on both interfaces independently.
Interface 0 stays bound; interface 1 declines the IP address and tries
again at the INIT state to get a unique IP address.
Required: NX_MAX_PHYSICAL_INTERFACES >= 2 and NX_DHCP_CLIENT_MAX_INTERFACES >= 2.
Also NX_DHCP_CLIENT_SEND_ARP_PROBE must be enabled. Requires longer timeout in regression
test netxtestcontrol.
There is one server thread handling DHCP Client messages on both interfaces.
*/
#include "tx_api.h"
#include "nx_api.h"
#include "nx_ram_network_driver_test_1500.h"
#include "nxd_dhcp_client.h"
extern void test_control_return(UINT status);
#if !defined(NX_DISABLE_IPV4)
#define DEMO_STACK_SIZE 4096
#define NX_PACKET_SIZE 1536
#define NX_PACKET_POOL_SIZE (NX_PACKET_SIZE * 8)
/* Define the ThreadX, NetX object control blocks... */
static TX_THREAD client_thread;
static NX_PACKET_POOL client_pool;
static NX_IP client_ip;
/* Define the NetX FTP object control block. */
static NX_DHCP dhcp_client;
/* Define the counters used in the demo application... */
static UINT error_counter = 0;
/* Replace the 'ram' driver with your Ethernet driver. */
static void client_thread_entry(ULONG thread_input);
extern void _nx_ram_network_driver_256(NX_IP_DRIVER *driver_req_ptr);
/* Define what the initial system looks like. */
#ifdef CTEST
VOID test_application_define(void *first_unused_memory)
#else
void netx_dhcp_client_ip_mutex_test_application_define(void *first_unused_memory)
#endif
{
UINT status;
UCHAR *pointer;
/* Setup the working pointer. */
pointer = (UCHAR *) first_unused_memory;
/* Initialize NetX. */
nx_system_initialize();
/* Create the client thread. */
tx_thread_create(&client_thread, "thread client", client_thread_entry, 0,
pointer, DEMO_STACK_SIZE,
4, 4, TX_NO_TIME_SLICE, TX_AUTO_START);
pointer = pointer + DEMO_STACK_SIZE;
/* Create the client packet pool. */
status = nx_packet_pool_create(&client_pool, "NetX Main Packet Pool", 1024, pointer, NX_PACKET_POOL_SIZE);
pointer = pointer + NX_PACKET_POOL_SIZE;
/* Check for pool creation error. */
if (status)
error_counter++;
/* Create an IP instance for the DHCP Client. */
status = nx_ip_create(&client_ip, "DHCP Client", IP_ADDRESS(0, 0, 0, 0), 0x00, &client_pool, _nx_ram_network_driver_256, pointer, 2048, 1);
pointer = pointer + 2048;
/* Check status. */
if (status != NX_SUCCESS)
error_counter++;
/* Enable ARP and supply ARP cache memory for the Client IP. */
status = nx_arp_enable(&client_ip, (void *) pointer, 1024);
pointer = pointer + 1024;
/* Enable UDP for client IP instance. */
status += nx_udp_enable(&client_ip);
status += nx_icmp_enable(&client_ip);
/* Check status. */
if (status != NX_SUCCESS)
error_counter++;
}
/* Define the DHCP client thread. */
void client_thread_entry(ULONG thread_input)
{
UINT status;
printf("NetX Test: DHCP Client IP Mutex Test.................................");
/* Check for earlier error. */
if(error_counter)
{
printf("ERROR!\n");
test_control_return(1);
}
/* Create the DHCP instance. */
status = nx_dhcp_create(&dhcp_client, &client_ip, "dhcp0");
if (status != NX_SUCCESS)
{
printf("ERROR!\n");
test_control_return(1);
}
#ifdef NX_DHCP_CLIENT_USER_CREATE_PACKET_POOL
status = nx_dhcp_packet_pool_set(&dhcp_client, &client_pool);
if (status)
error_counter++;
#endif /* NX_DHCP_CLIENT_USER_CREATE_PACKET_POOL */
/* Start DHCP on all interfaces. */
status = nx_dhcp_start(&dhcp_client);
if (status != NX_SUCCESS)
{
printf("ERROR!\n");
test_control_return(1);
}
/* Wait for sending the first discovery message. */
tx_thread_sleep(2 * NX_IP_PERIODIC_RATE);
#ifndef NX_DISABLE_UDP_INFO
/* Check if send out discovery message. */
if (client_ip.nx_ip_udp_packets_sent == 0)
{
printf("ERROR!\n");
test_control_return(1);
}
#endif /* NX_DISABLE_UDP_INFO */
/* Check if DHCP Thread did not release the IP mutex. */
if (client_ip.nx_ip_protection.tx_mutex_owner == &dhcp_client.nx_dhcp_thread)
{
error_counter++;
}
/* Release the mutex again before call test_control_cleanup */
dhcp_client.nx_dhcp_thread.tx_thread_owned_mutex_list = NX_NULL;
client_ip.nx_ip_protection.tx_mutex_owner = &client_thread;
tx_mutex_put(&client_ip.nx_ip_protection);
/* Check for error. */
if (error_counter)
{
printf("ERROR!\n");
test_control_return(1);
}
else
{
printf("SUCCESS!\n");
test_control_return(0);
}
}
#else
#ifdef CTEST
VOID test_application_define(void *first_unused_memory)
#else
void netx_dhcp_client_ip_mutex_test_application_define(void *first_unused_memory)
#endif
{
/* Print out test information banner. */
printf("NetX Test: DHCP Client IP Mutex Test.................................N/A\n");
test_control_return(3);
}
#endif
|