Blame view

RIOT/tests/gnrc_tcp_client/main.c 6.88 KB
a752c7ab   elopes   add first test an...
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
  /*
   * Copyright (C) 2015-2017 Simon Brummer
   *
   * This file is subject to the terms and conditions of the GNU Lesser
   * General Public License v2.1. See the file LICENSE in the top level
   * directory for more details.
   */
  
  #include <stdio.h>
  #include <errno.h>
  #include "thread.h"
  #include "net/af.h"
  #include "net/gnrc/ipv6.h"
  #include "net/gnrc/tcp.h"
  
  #define ENABLE_DEBUG (0)
  #include "debug.h"
  
  /* Number of possible parallel connections */
  #ifndef CONNS
  #define CONNS (1)
  #endif
  
  /* Amount of data to transmit */
  #ifndef NBYTE
  #define NBYTE (2048)
  #endif
  
  /* Test pattern used by client application */
  #ifndef TEST_PATERN_CLI
  #define TEST_PATERN_CLI (0xF0)
  #endif
  
  /* Test pattern used by server application */
  #ifndef TEST_PATERN_SRV
  #define TEST_PATERN_SRV (0xA7)
  #endif
  
  uint8_t bufs[CONNS][NBYTE];
  uint8_t stacks[CONNS][THREAD_STACKSIZE_DEFAULT + THREAD_EXTRA_STACKSIZE_PRINTF];
  
  void *cli_thread(void *arg);
  
  int main(void)
  {
      printf("\nStarting Client Threads. TARGET_ADDR=%s, TARGET_PORT=%d, ", TARGET_ADDR, TARGET_PORT);
      printf("CONNS=%d, NBYTE=%d, CYCLES=%d\n\n", CONNS, NBYTE, CYCLES );
  
      /* Start connection handling threads */
      for (int i = 0; i < CONNS; i += 1) {
          thread_create((char *) stacks[i], sizeof(stacks[i]), THREAD_PRIORITY_MAIN, 0, cli_thread,
                        (void *) i, NULL);
      }
      return 0;
  }
  
  void *cli_thread(void *arg)
  {
      /* Test program variables */
      int tid = (int) arg;
      uint32_t cycles = 0;
      uint32_t cycles_ok = 0;
      uint32_t failed_payload_verifications = 0;
  
      /* Transmission control block */
      gnrc_tcp_tcb_t tcb;
  
      /* Target peer address information */
      ipv6_addr_t target_addr;
      uint16_t target_port;
  
      /* Initialize target information */
      ipv6_addr_from_str(&target_addr, TARGET_ADDR);
      target_port = TARGET_PORT;
  
      printf("Client running: TID=%d\n", tid);
      while (cycles < CYCLES) {
          /* Initialize TCB */
          gnrc_tcp_tcb_init(&tcb);
  
          /* Connect to peer */
          int ret = gnrc_tcp_open_active(&tcb, AF_INET6, (uint8_t *) &target_addr, target_port, 0);
          switch (ret) {
              case 0:
                  DEBUG("TID=%d : gnrc_tcp_open_active() : 0 : ok\n", tid);
                  break;
  
              case -EISCONN:
                  printf("TID=%d : gnrc_tcp_open_active() : -EISCONN\n", tid);
                  return 0;
  
              case -EINVAL:
                  printf("TID=%d : gnrc_tcp_open_active() : -EINVAL\n", tid);
                  return 0;
  
              case -EAFNOSUPPORT:
                  printf("TID=%d : gnrc_tcp_open_active() : -EAFNOSUPPORT\n", tid);
                  return 0;
  
              case -EADDRINUSE:
                  printf("TID=%d : gnrc_tcp_open_active() : -EADDRINUSE\n", tid);
                  return 0;
  
              case -ECONNREFUSED:
                  printf("TID=%d : gnrc_tcp_open_active() : -ECONNREFUSED : retry after 10sec\n",
                         tid);
                  xtimer_sleep(10);
                  continue;
  
              case -ENOMEM:
                  printf("TID=%d : gnrc_tcp_open_active() : -ENOMEM\n", tid);
                  return 0;
  
              case -ETIMEDOUT:
                  printf("TID=%d : gnrc_tcp_open_active() : -ETIMEDOUT : retry after 10sec\n", tid);
                  xtimer_sleep(10);
                  continue;
  
              default:
                  printf("TID=%d : gnrc_tcp_open_active() : %d\n", tid, ret);
                  return 0;
          }
  
          /* Fill buffer with a test pattern */
          for (size_t i = 0; i < sizeof(bufs[tid]); ++i){
              bufs[tid][i] = TEST_PATERN_CLI;
          }
  
          /* Send data, stop if errors were found */
          for (size_t sent = 0; sent < sizeof(bufs[tid]) && ret >= 0; sent += ret) {
              ret = gnrc_tcp_send(&tcb, bufs[tid] + sent, sizeof(bufs[tid]) - sent, 0);
              switch (ret) {
                  case -ENOTCONN:
                      printf("TID=%d : gnrc_tcp_send() : -ENOTCONN\n", tid);
                      break;
  
                  case -ECONNABORTED:
                      printf("TID=%d : gnrc_tcp_send() : -ECONNABORTED\n", tid);
                      break;
  
                  case -ETIMEDOUT:
                      printf("TID=%d : gnrc_tcp_send() : -ETIMEDOUT\n", tid);
                      break;
  
                  case -ECONNRESET:
                      printf("TID=%d : gnrc_tcp_send() : -ECONNRESET\n", tid);
                      break;
  
                  default:
                      if (ret >= 0) {
                          DEBUG("TID=%d : gnrc_tcp_send() : %d Bytes sent\n", tid, ret);
                      }
                      else {
                          printf("TID=%d : gnrc_tcp_send() : %d\n", tid, ret);
                          return 0;
                      }
                }
          }
  
          /* Receive data, stop if errors were found */
          for (size_t rcvd = 0; rcvd < sizeof(bufs[tid]) && ret >= 0; rcvd += ret) {
              ret = gnrc_tcp_recv(&tcb, (void *) (bufs[tid] + rcvd), sizeof(bufs[tid]) - rcvd,
                                  GNRC_TCP_CONNECTION_TIMEOUT_DURATION);
              switch (ret) {
                  case -ENOTCONN:
                      printf("TID=%d : gnrc_tcp_rcvd() : -ENOTCONN\n", tid);
                      break;
  
                  case -EAGAIN:
                      printf("TID=%d : gnrc_tcp_rcvd() : -EAGAIN : retry after 10sec\n", tid);
                      ret = 0;
                      xtimer_sleep(10);
                      break;
  
                  case -ECONNABORTED:
                      printf("TID=%d : gnrc_tcp_rcvd() : -ECONNABORTED\n", tid);
                      break;
  
                  case -ECONNRESET:
                      printf("TID=%d : gnrc_tcp_rcvd() : -ECONNRESET\n", tid);
                      break;
  
                  case -ETIMEDOUT:
                      printf("TID=%d : gnrc_tcp_rcvd() : -ETIMEDOUT\n", tid);
                      break;
  
                  default:
                      if (ret >= 0) {
                          DEBUG("TID=%d : gnrc_tcp_rcvd() : %d Bytes read.\n", tid, ret);
                      }
                      else {
                          printf("TID=%d : gnrc_tcp_rcvd() : %d\n", tid, ret);
                          return 0;
                      }
                }
          }
  
          /* If there was no error: Check received pattern */
          for (size_t i = 0; i < sizeof(bufs[tid]); ++i) {
              if (bufs[tid][i] != TEST_PATERN_SRV) {
                  printf("TID=%d : Payload verfication failed\n", tid);
                  failed_payload_verifications += 1;
                  break;
              }
          }
  
          /* Close connection */
          gnrc_tcp_close(&tcb);
  
          /* Gather data */
          cycles += 1;
          if (ret >= 0) {
              cycles_ok += 1;
          }
          printf("TID=%d : %"PRIi32" test cycles completed. %"PRIi32" ok, %"PRIi32" faulty",
                 tid, cycles, cycles_ok, cycles - cycles_ok);
          printf(", %"PRIi32" failed payload verifications\n", failed_payload_verifications);
      }
      printf("client thread terminating: TID=%d\n", tid);
      return 0;
  }