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
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
|
//==========================================================================
//
// tests/tcp_lo_test.c
//
// Simple TCP throughput test
//
//==========================================================================
// ####BSDALTCOPYRIGHTBEGIN####
// -------------------------------------------
// Portions of this software may have been derived from FreeBSD, OpenBSD,
// or other sources, and if so are covered by the appropriate copyright
// and license included herein.
// -------------------------------------------
// ####BSDALTCOPYRIGHTEND####
//==========================================================================
//#####DESCRIPTIONBEGIN####
//
// Author(s): sorin@netappi.com
// Contributors: gthomas,sorin@netappi.com
// Date: 2000-05-24
// Network throughput test code
#include <network.h>
#include <cyg/infra/testcase.h>
#ifndef CYGPKG_LIBC_STDIO
#define perror(s) diag_printf(#s ": %s\n", strerror(errno))
#endif
#define SOURCE_PORT1 9990
#define SOURCE_PORT2 9991
#define NUM_BUF 1024
#define MAX_BUF 8192
static unsigned char data_buf1[MAX_BUF];
static unsigned char data_buf2[MAX_BUF];
static unsigned char data_buf_write1[MAX_BUF]="Client 1 is alive. You may continue ....";
static unsigned char data_buf_write2[MAX_BUF]="Client 2 is alive. You may continue ....";
#define STACK_SIZE (CYGNUM_HAL_STACK_SIZE_TYPICAL + 0x10000)
static char stack_server[STACK_SIZE];
static cyg_thread server_thread_data;
static cyg_handle_t server_thread_handle;
static char stack_client1[STACK_SIZE];
static cyg_thread client1_thread_data;
static cyg_handle_t client1_thread_handle;
static char stack_client2[STACK_SIZE];
static cyg_thread client2_thread_data;
static cyg_handle_t client2_thread_handle;
#define MAIN_THREAD_PRIORITY CYGPKG_NET_THREAD_PRIORITY-4
void
pexit(char *s)
{
CYG_TEST_FAIL_FINISH( s );
}
#ifndef max
#define max(a,b) (((a) > (b)) ? (a) : (b))
#endif
void server(void)
{
int s_s1, e_s1, s_s2, e_s2;
struct sockaddr_in e_s1_addr,e_s2_addr,local;
fd_set in_fds;
socklen_t len;
int num;
char *hello_string=" Hello eCos network \n";
diag_printf("TCP SERVER:");
diag_printf(hello_string);
s_s1 = socket(AF_INET, SOCK_STREAM, 0);
if (s_s1 < 0) {
pexit("stream socket");
}
memset(&local, 0, sizeof(local));
local.sin_family = AF_INET;
local.sin_len = sizeof(local);
local.sin_port = ntohs(SOURCE_PORT1);
local.sin_addr.s_addr = htonl(INADDR_LOOPBACK);
if(bind(s_s1, (struct sockaddr *) &local, sizeof(local)) < 0) {
pexit("bind /source_1/ error");
}
listen(s_s1, SOMAXCONN);
s_s2 = socket(AF_INET, SOCK_STREAM, 0);
if (s_s2 < 0) {
pexit("stream socket");
}
memset(&local, 0, sizeof(local));
local.sin_family = AF_INET;
local.sin_len = sizeof(local);
local.sin_port = ntohs(SOURCE_PORT2);
local.sin_addr.s_addr = htonl(INADDR_LOOPBACK);
if(bind(s_s2, (struct sockaddr *) &local, sizeof(local)) < 0) {
pexit("bind /source_2/ error");
}
listen(s_s2, SOMAXCONN);
e_s1 = 0; e_s2 = 0;
while (true) {
FD_ZERO(&in_fds);
FD_SET(s_s1, &in_fds);
FD_SET(s_s2, &in_fds);
num = select ( max(s_s1,s_s2)+1, &in_fds,0,0,0);
if (FD_ISSET(s_s1,&in_fds)) {
len = sizeof(e_s1_addr);
if ((e_s1 = accept(s_s1,(struct sockaddr *)&e_s1_addr,&len))<0)
{
pexit("accept /source_1/");
}
diag_printf("TCP SERVER connection from %s: %d\n",
inet_ntoa(e_s1_addr.sin_addr),ntohs(e_s1_addr.sin_port));
}
if (FD_ISSET(s_s2,&in_fds)) {
len = sizeof(e_s2_addr);
if ((e_s2 = accept(s_s2,(struct sockaddr *)&e_s2_addr,&len))<0)
{
pexit("accept /source_2/");
}
diag_printf("TCP SERVER connection from %s: %d\n",
inet_ntoa(e_s2_addr.sin_addr), ntohs(e_s2_addr.sin_port));
}
if ((e_s1 != 0) && ( e_s2 != 0)) {
break;
}
} /* while (true) */
if ((len = read(e_s1, data_buf1, MAX_BUF)) < 0 )
{
perror("I/O error");
}
diag_printf("SERVER : %s\n",data_buf1);
if ((len = read(e_s2, data_buf2, MAX_BUF)) < 0 )
{
perror("I/O error");
}
diag_printf("SERVER : %s\n",data_buf2);
}
void client1(void)
{
int s_source;
struct sockaddr_in local;
int len;
diag_printf("client 1 :started\n");
s_source = socket(AF_INET, SOCK_STREAM, 0);
if (s_source < 0) {
pexit("stream socket");
}
memset(&local, 0, sizeof(local));
local.sin_family = AF_INET;
local.sin_len = sizeof(local);
local.sin_port = htons(SOURCE_PORT1);
local.sin_addr.s_addr = htonl(INADDR_LOOPBACK);
if (connect(s_source, (struct sockaddr *)&local, sizeof(local)) < 0) {
pexit("Can't connect to target");
}
if ((len = write(s_source,data_buf_write1,40)) < 0) {
CYG_TEST_FAIL_FINISH("Error writing buffer");
}
}
void client2(void)
{
int s_source;
struct sockaddr_in local;
int len;
diag_printf("client 2 :started\n");
s_source = socket(AF_INET, SOCK_STREAM, 0);
if (s_source < 0) {
pexit("stream socket");
}
memset(&local, 0, sizeof(local));
local.sin_family = AF_INET;
local.sin_len = sizeof(local);
local.sin_port = htons(SOURCE_PORT2);
local.sin_addr.s_addr = htonl(INADDR_LOOPBACK);
if (connect(s_source, (struct sockaddr *)&local, sizeof(local)) < 0) {
pexit("Can't connect to target");
}
if ((len = write(s_source,data_buf_write2,40)) < 0) {
CYG_TEST_FAIL_FINISH("Error writing buffer");
}
}
void
tcp_server(cyg_addrword_t param)
{
init_all_network_interfaces();
diag_printf("Start TCP server - test\n");
cyg_thread_resume(client1_thread_handle); // Start it
cyg_thread_resume(client2_thread_handle); // Start it
#if NLOOP > 0
server();
CYG_TEST_PASS_FINISH("Server returned OK");
#endif
CYG_TEST_NA( "No loopback devs" );
}
void
tcp_client_1(cyg_addrword_t param)
{
diag_printf("Start TCP client 1 - test\n");
#if NLOOP > 0
client1();
#endif
}
void
tcp_client_2(cyg_addrword_t param)
{
diag_printf("Start TCP client 2 - test\n");
#if NLOOP > 0
client2();
#endif
}
void
cyg_start(void)
{
CYG_TEST_INIT();
cyg_thread_create(MAIN_THREAD_PRIORITY, // Priority
tcp_server, // entry
0, // entry parameter
"TCP loopback server", // Name
&stack_server[0], // Stack
STACK_SIZE, // Size
&server_thread_handle, // Handle
&server_thread_data // Thread data structure
);
cyg_thread_resume(server_thread_handle); // Start it
cyg_thread_create(MAIN_THREAD_PRIORITY, // Priority
tcp_client_1, // entry
0, // entry parameter
"TCP loopback client1", // Name
&stack_client1[0], // Stack
STACK_SIZE, // Size
&client1_thread_handle, // Handle
&client1_thread_data // Thread data structure
);
cyg_thread_create(MAIN_THREAD_PRIORITY, // Priority
tcp_client_2, // entry
0, // entry parameter
"TCP llopback client2", // Name
&stack_client2[0], // Stack
STACK_SIZE, // Size
&client2_thread_handle, // Handle
&client2_thread_data // Thread data structure
);
cyg_scheduler_start();
}
|