summaryrefslogtreecommitdiffstats
path: root/testcode/app_example/perf-test/multi_tcp_select_app_Ser.c
blob: 56b9c5da14028824ba0c66129b6cbb736b2d2c1c (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
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
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
/*
*
* Copyright (c) 2018 Huawei Technologies Co.,Ltd.
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at:
*
*     http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

#define _GNU_SOURCE
#include <sys/socket.h>
#include <fcntl.h>
#include <memory.h>
#include <signal.h>
#include <stdio.h>
#include <unistd.h>
#include <stdio.h>
#include <stdlib.h>
#include <sys/stat.h>
#include <netinet/in.h>
#include <time.h>
#include <linux/tcp.h>
#include <sched.h>
#include <pthread.h>
#include <arpa/inet.h>
#include <sys/epoll.h>
#include <errno.h>

#define _BIND bind
#define _LISTEN listen
#define _SOCKET socket
#define _ACCEPT accept
#define _SEND send
#define _RECV recv
#define _CLOSE close
#define _CONNECT connect
#define _PROTOCOL IPPROTO_TCP

#define MAX_TEST_TIME 1000
#define MSG_LENGTH 256
#define CORE_NUM 8
#define START_CPU_ID 2
#define MAX_CONN_LIMIT 256
#define MAX_PORT_NUM 65535
//1:A-B ;0:A-B-A
#define SEND_RECV_MODE 1
#define MAX_EVENTS 1000
#define Default_PortID 12345
#define Default_SleepCnt 10000
#define Default_SleepTime 1000000
#define  Flag_Print 1
#define  Fd_Number 1

static struct sockaddr_in g_dest;
static struct sockaddr_in g_src;
static struct sockaddr_in g_recv;

int times = MAX_TEST_TIME;
int msg_length = MSG_LENGTH;
int coreNum = CORE_NUM;
int startCPUId = START_CPU_ID;
int connectNum = MAX_CONN_LIMIT;
int msgMode = SEND_RECV_MODE;
int sleepCnt = Default_SleepCnt;
int sleepTime = Default_SleepTime;      //us
int fdNumber = Fd_Number;
int flagPrint = Flag_Print;
int unitPrint = 0;
int waitTime = 0;

int srcPort = Default_PortID;
int destPort = 0;
int recvPort = 0;
char sendarr[256] = "";
char recvarr[256] = "";
char destarr[256] = "";

static void setArgsDefault()
{

    memset(&g_dest, 0, sizeof(g_dest));
    g_dest.sin_family = AF_INET;
    g_dest.sin_addr.s_addr = inet_addr("127.0.0.1");
    g_dest.sin_port = htons(12345);
    bzero(&(g_dest.sin_zero), 8);

    memset(&g_src, 0, sizeof(g_src));
    g_src.sin_family = AF_INET;
    g_src.sin_addr.s_addr = inet_addr("0.0.0.0");
    g_src.sin_port = htons(7895);
    bzero(&(g_src.sin_zero), 8);

    memset(&g_recv, 0, sizeof(g_recv));
    g_recv.sin_family = AF_INET;
    g_recv.sin_addr.s_addr = inet_addr("0.0.0.0");
    g_recv.sin_port = htons(7895);
    bzero(&(g_recv.sin_zero), 8);

}

static int process_arg(int argc, char *argv[])
{
    int opt = 0;
    int error = 0;
    const char *optstring = "p:d:s:a:l:t:e:i:f:r:n:w:u:x:";
    int rw_mark = 0;

    if (argc < 4)
    {
        printf
            ("Param info :-p dest_portid; -d dest_serverIP; -a src_portid; -s src_clientIP; -l msg_length; \n");
        printf
            ("\t-t MAX_TEST_TIME; -i  msg_interval ; -f  client fd number ; -r receive port; -n connectNum(one server vs n client)\n");
        return 0;
    }
    while ((opt = getopt(argc, argv, optstring)) != -1)
    {
        switch (opt)
        {
            case 'p':
                destPort = atoi(optarg);
                g_dest.sin_port = htons(atoi(optarg));
                break;
            case 'd':
                stpcpy(destarr, optarg);
                g_dest.sin_addr.s_addr = inet_addr(optarg);
                break;
            case 's':
                stpcpy(sendarr, optarg);
                g_src.sin_addr.s_addr = inet_addr(optarg);
                g_recv.sin_addr.s_addr = inet_addr(optarg);
                break;
            case 'a':
                //g_src.sin_port = htons(atoi(optarg));
                srcPort = atoi(optarg);
                break;
            case 'l':
                msg_length = atoi(optarg);
                break;
            case 't':
                times = atoi(optarg);
                break;
            case 'e':
                sleepCnt = atoi(optarg);
                break;
            case 'i':
                sleepTime = atoi(optarg);
                break;
            case 'f':
                fdNumber = atoi(optarg);
                break;
            case 'r':
                recvPort = atoi(optarg);
                g_recv.sin_port = htons(atoi(optarg));
                break;
            case 'n':
                connectNum = atoi(optarg);
                break;
            case 'w':
                waitTime = atoi(optarg);
                break;
            case 'u':
                unitPrint = atoi(optarg);
                break;
            case 'x':
                flagPrint = atoi(optarg);
                break;

        }
    }
    return 1;
}

/*
   using this thread to do recv msg;
*/
void *process_server_msg_thread(void *pArgv)
{
    int recvLen = 0, recvLen2 = 0;
    char send_buf[1000];
    char recv_buf[1000];
    int recv_count = 0;
    long recv_ppstime = 0;
    int recv_pps = 0;
    int ret;
    struct timeval timeout;
    fd_set rfds;
    int maxfd;

    struct timespec recvStart;
    struct timespec recvEnd;
    memset(&recvStart, 0, sizeof(recvStart));
    memset(&recvEnd, 0, sizeof(recvEnd));

    pthread_detach(pthread_self());

    int msgFd = *(int *) pArgv;

    clock_gettime(CLOCK_MONOTONIC, &recvStart);
    while (1)
    {
        FD_ZERO(&rfds);
        FD_SET(msgFd, &rfds);
        maxfd = msgFd + 1;
        timeout.tv_sec = 10;
        timeout.tv_usec = 0;
        ret = select(maxfd, &rfds, NULL, NULL, &timeout);

        if (ret <= 0)
        {
            continue;
        }

        if (FD_ISSET(msgFd, &rfds) == 0)
        {
            continue;
        }

        recvLen = 0;
        recvLen2 = 0;

        do
        {
            recvLen2 =
                recv(msgFd, recv_buf + recvLen, msg_length - recvLen, 0);
            if (recvLen2 <= 0)
            {
                break;
            }
            else if (recvLen2 == msg_length - recvLen)
            {
                recvLen = 0;
                recv_count++;
                if (msg_length != send(msgFd, send_buf, msg_length, 0))
                {
                    printf("send failed!====, need exit\n");
                }
            }
            else if (recvLen2 < msg_length - recvLen)
            {
                recvLen += recvLen2;
            }
            if ((flagPrint != 0) && ((recv_count % unitPrint) == 0))
            {
                clock_gettime(CLOCK_MONOTONIC, &recvEnd);
                recv_ppstime =
                    (recvEnd.tv_sec - recvStart.tv_sec) * 1000000000 +
                    recvEnd.tv_nsec - recvStart.tv_nsec;
                recv_pps = ((float) 1000000000 / recv_ppstime) * unitPrint;
                printf("receive count:%d, receive time: %ld ns\n",
                       recv_count, recv_ppstime);
                printf("receive pps = %d\n", recv_pps);
                clock_gettime(CLOCK_MONOTONIC, &recvStart);
            }
        }
        while (1);

        if (recv_count == times)
        {
            break;
        }
    }
    close(msgFd);
}

/*
   using this thread to do accept connect
*/
void *process_server_accept_thread(void *pArgv)
{
    int listenFd = 0;
    int x, optval, ret, m = 0;
    int acpt_socketfd[1000] = { 0 };
    struct timeval timeout;
    fd_set rfds;
    int maxfd;

    listenFd = socket(PF_INET, SOCK_STREAM, IPPROTO_TCP);
    if (0 > listenFd)
    {
        printf("ERROR:socket failed,errno [%d]\n", errno);
        return NULL;
    }
    else
    {
        printf("INFO:Create listen socket Success, listenFd[%d]\n", listenFd);
    }

    if (0 > fcntl(listenFd, F_SETFL, O_NONBLOCK))
    {
        printf("ERROR:fcntl failed. fd[%d], errno[%d]/n", listenFd, errno);
        close(listenFd);
    }

    optval = 1;
    ret =
        setsockopt(listenFd, SOL_SOCKET, SO_REUSEADDR, (void *) &optval,
                   sizeof(optval));
    if (ret == -1)
    {
        printf("ERROR:setsockopt failed. fd[%d], errno[%d]\n", listenFd,
               errno);
        close(listenFd);
        return NULL;
    }

    if (0 !=
        bind(listenFd, (struct sockaddr *) &g_recv, sizeof(struct sockaddr)))
    {
        printf("ERROR:bind failed. fd[%d] errno [%d]\n", listenFd, errno);
        printf("INFO:Bind Failed, port %d IP:%s\n", ntohs(g_recv.sin_port),
               inet_ntoa(*((struct in_addr *) &(g_recv.sin_addr.s_addr))));
        close(listenFd);
        //return NULL;
        exit(-1);
    }
    else
    {
        printf("INFO:Bind Success, port %d IP:%s\n", ntohs(g_recv.sin_port),
               inet_ntoa(*((struct in_addr *) &(g_recv.sin_addr.s_addr))));
    }

    if (0 != listen(listenFd, 100))
    {
        printf("server socket listen failed. err %d\n", errno);
        close(listenFd);
        return NULL;
    }
    printf("Listen Success\n");

    int accpedNum = 0;
    while (accpedNum < connectNum)
    {
        FD_ZERO(&rfds);
        FD_SET(listenFd, &rfds);
        maxfd = listenFd + 1;
        timeout.tv_sec = 10;
        timeout.tv_usec = 0;
        ret = select(maxfd, &rfds, NULL, NULL, &timeout);

        if (ret <= 0)
        {
            continue;
        }

        if (FD_ISSET(listenFd, &rfds) == 0)
        {
            continue;
        }

        while (1)
        {
            acpt_socketfd[accpedNum] =
                accept4(listenFd, NULL, NULL, SOCK_NONBLOCK);
            if (acpt_socketfd[accpedNum] < 0)
            {
                printf("no more connect\n");
                break;
            }
            /*add new accptFd to MsgEpFD */
            pthread_t ser_rcv_thread_id;
            if (pthread_create
                (&ser_rcv_thread_id, NULL, process_server_msg_thread,
                 (void *) &acpt_socketfd[accpedNum]) == -1)
            {
                printf("create process_server_msg_thread fail\n");
                break;
            }

            printf("accept cnt [%d], cur accept fd [%d]\n", accpedNum,
                   acpt_socketfd[accpedNum]);
            accpedNum++;
        }
    }

    close(listenFd);

    while (1)
    {
        sleep(10);
    }

    pthread_exit(NULL);
}

void main(int argc, char *argv[])
{
    socklen_t addrlen = sizeof(struct sockaddr);
    int err = 0, result = 0, ret = 0;
    int i = 0, j = 0, optval = 0, z = 0, x, listenfd;
    cpu_set_t mask;

    setArgsDefault();
    ret = process_arg(argc, argv);
    if (ret != 1)
    {
        printf("The param error\n");
        return;
    }

    pthread_t server_thread_id;

    if (pthread_create
        (&server_thread_id, NULL, process_server_accept_thread, NULL) == -1)
    {
        printf("create process_server_accept_thread fail\n");
        return;
    }

    printf("create process_server_accept_thread success\n");

    if (server_thread_id != 0)
    {
        printf("Server Thread join\n");
        pthread_join(server_thread_id, NULL);
    }

    while (1)
    {
        sleep(10);
    }

    return;
}