fbfe66684cb4515b205259606a572af51bf6a9ab
[vpp.git] / src / vcl / sock_test_server.c
1 /*
2  * Copyright (c) 2017 Cisco and/or its affiliates.
3  * Licensed under the Apache License, Version 2.0 (the "License");
4  * you may not use this file except in compliance with the License.
5  * You may obtain a copy of the License at:
6  *
7  *     http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software
10  * distributed under the License is distributed on an "AS IS" BASIS,
11  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12  * See the License for the specific language governing permissions and
13  * limitations under the License.
14  */
15
16 #include <unistd.h>
17 #include <errno.h>
18 #include <sys/types.h>
19 #include <sys/socket.h>
20 #include <stdio.h>
21 #include <string.h>
22 #include <time.h>
23 #include <ctype.h>
24 #include <vcl/sock_test.h>
25 #include <sys/stat.h>
26 #include <fcntl.h>
27 #include <sys/ioctl.h>
28
29 #define SOCK_SERVER_USE_EPOLL 1
30 #define VPPCOM_SESSION_ATTR_UNIT_TEST 0
31
32 #if SOCK_SERVER_USE_EPOLL
33 #include <sys/epoll.h>
34 #if !defined(VCL_TEST)
35 #include <sys/un.h>
36 #endif
37 #endif
38
39 #ifdef VCL_TEST
40 #if VPPCOM_SESSION_ATTR_UNIT_TEST
41 #define BUFLEN  sizeof (uint64_t) * 16
42 uint64_t buffer[16];
43 uint32_t buflen = BUFLEN;
44 uint32_t *flags = (uint32_t *) buffer;
45 #endif
46 #endif
47
48 typedef struct
49 {
50   uint8_t is_alloc;
51   int fd;
52   uint8_t *buf;
53   uint32_t buf_size;
54   vcl_test_cfg_t cfg;
55   vcl_test_stats_t stats;
56 #ifdef VCL_TEST
57   vppcom_endpt_t endpt;
58   uint8_t ip[16];
59 #endif
60 } sock_server_conn_t;
61
62 typedef struct
63 {
64   uint32_t port;
65   uint32_t address_ip6;
66   uint32_t transport_udp;
67 } sock_server_cfg_t;
68
69 #define SOCK_SERVER_MAX_TEST_CONN  10
70 #define SOCK_SERVER_MAX_EPOLL_EVENTS 10
71 typedef struct
72 {
73   int listen_fd;
74   sock_server_cfg_t cfg;
75 #if SOCK_SERVER_USE_EPOLL
76   int epfd;
77   struct epoll_event listen_ev;
78   struct epoll_event wait_events[SOCK_SERVER_MAX_EPOLL_EVENTS];
79 #if !defined (VCL_TEST)
80   int af_unix_listen_fd;
81   int af_unix_fd;
82   struct epoll_event af_unix_listen_ev;
83   struct sockaddr_un serveraddr;
84   uint32_t af_unix_xacts;
85 #endif
86 #endif
87   size_t num_conn;
88   size_t conn_pool_size;
89   sock_server_conn_t *conn_pool;
90   int nfds;
91   fd_set rd_fdset;
92   fd_set wr_fdset;
93   struct timeval timeout;
94 } sock_server_main_t;
95
96 sock_server_main_t sock_server_main;
97
98 #if ! SOCK_SERVER_USE_EPOLL
99 static inline int
100 get_nfds (void)
101 {
102   sock_server_main_t *ssm = &sock_server_main;
103   int i, nfds;
104
105   for (nfds = i = 0; i < FD_SETSIZE; i++)
106     {
107       if (FD_ISSET (i, &ssm->rd_fdset) || FD_ISSET (i, &ssm->wr_fdset))
108         nfds = i + 1;
109     }
110   return nfds;
111 }
112
113 static inline void
114 conn_fdset_set (sock_server_conn_t * conn, fd_set * fdset)
115 {
116   sock_server_main_t *ssm = &sock_server_main;
117
118   FD_SET (conn->fd, fdset);
119   ssm->nfds = get_nfds ();
120 }
121
122 static inline void
123 conn_fdset_clr (sock_server_conn_t * conn, fd_set * fdset)
124 {
125   sock_server_main_t *ssm = &sock_server_main;
126
127   FD_CLR (conn->fd, fdset);
128   ssm->nfds = get_nfds ();
129 }
130 #endif
131
132 static inline void
133 conn_pool_expand (size_t expand_size)
134 {
135   sock_server_main_t *ssm = &sock_server_main;
136   sock_server_conn_t *conn_pool;
137   size_t new_size = ssm->conn_pool_size + expand_size;
138   int i;
139
140   conn_pool = realloc (ssm->conn_pool, new_size * sizeof (*ssm->conn_pool));
141   if (conn_pool)
142     {
143       for (i = ssm->conn_pool_size; i < new_size; i++)
144         {
145           sock_server_conn_t *conn = &conn_pool[i];
146           memset (conn, 0, sizeof (*conn));
147           vcl_test_cfg_init (&conn->cfg);
148           vcl_test_buf_alloc (&conn->cfg, 1 /* is_rxbuf */ ,
149                               &conn->buf, &conn->buf_size);
150           conn->cfg.txbuf_size = conn->cfg.rxbuf_size;
151         }
152
153       ssm->conn_pool = conn_pool;
154       ssm->conn_pool_size = new_size;
155     }
156   else
157     {
158       int errno_val = errno;
159       perror ("ERROR in conn_pool_expand()");
160       fprintf (stderr, "SERVER: ERROR: Memory allocation "
161                "failed (errno = %d)!\n", errno_val);
162     }
163 }
164
165 static inline sock_server_conn_t *
166 conn_pool_alloc (void)
167 {
168   sock_server_main_t *ssm = &sock_server_main;
169   int i;
170
171   for (i = 0; i < ssm->conn_pool_size; i++)
172     {
173       if (!ssm->conn_pool[i].is_alloc)
174         {
175 #ifdef VCL_TEST
176           ssm->conn_pool[i].endpt.ip = ssm->conn_pool[i].ip;
177 #endif
178           ssm->conn_pool[i].is_alloc = 1;
179           return (&ssm->conn_pool[i]);
180         }
181     }
182
183   return 0;
184 }
185
186 static inline void
187 conn_pool_free (sock_server_conn_t * conn)
188 {
189 #if ! SOCK_SERVER_USE_EPOLL
190   sock_server_main_t *ssm = &sock_server_main;
191
192   conn_fdset_clr (conn, &ssm->rd_fdset);
193   conn_fdset_clr (conn, &ssm->wr_fdset);
194 #endif
195   conn->fd = 0;
196   conn->is_alloc = 0;
197 }
198
199 static inline void
200 sync_config_and_reply (sock_server_conn_t * conn, vcl_test_cfg_t * rx_cfg)
201 {
202   conn->cfg = *rx_cfg;
203   vcl_test_buf_alloc (&conn->cfg, 1 /* is_rxbuf */ ,
204                       &conn->buf, &conn->buf_size);
205   conn->cfg.txbuf_size = conn->cfg.rxbuf_size;
206
207   if (conn->cfg.verbose)
208     {
209       printf ("\nSERVER (fd %d): Replying to cfg message!\n", conn->fd);
210       vcl_test_cfg_dump (&conn->cfg, 0 /* is_client */ );
211     }
212   (void) sock_test_write (conn->fd, (uint8_t *) & conn->cfg,
213                           sizeof (conn->cfg), NULL, conn->cfg.verbose);
214 }
215
216 static void
217 stream_test_server_start_stop (sock_server_conn_t * conn,
218                                vcl_test_cfg_t * rx_cfg)
219 {
220   sock_server_main_t *ssm = &sock_server_main;
221   int client_fd = conn->fd;
222   vcl_test_t test = rx_cfg->test;
223
224   if (rx_cfg->ctrl_handle == conn->fd)
225     {
226       int i;
227       clock_gettime (CLOCK_REALTIME, &conn->stats.stop);
228
229       for (i = 0; i < ssm->conn_pool_size; i++)
230         {
231           sock_server_conn_t *tc = &ssm->conn_pool[i];
232
233           if (tc->cfg.ctrl_handle == conn->fd)
234             {
235               vcl_test_stats_accumulate (&conn->stats, &tc->stats);
236
237               if (conn->cfg.verbose)
238                 {
239                   static char buf[64];
240
241                   sprintf (buf, "SERVER (fd %d) RESULTS", tc->fd);
242                   vcl_test_stats_dump (buf, &tc->stats, 1 /* show_rx */ ,
243                                        test == VCL_TEST_TYPE_BI
244                                        /* show tx */ ,
245                                        conn->cfg.verbose);
246                 }
247             }
248         }
249
250       vcl_test_stats_dump ("SERVER RESULTS", &conn->stats, 1 /* show_rx */ ,
251                            (test == VCL_TEST_TYPE_BI) /* show_tx */ ,
252                            conn->cfg.verbose);
253       vcl_test_cfg_dump (&conn->cfg, 0 /* is_client */ );
254       if (conn->cfg.verbose)
255         {
256           printf ("  sock server main\n"
257                   VCL_TEST_SEPARATOR_STRING
258                   "       buf:  %p\n"
259                   "  buf size:  %u (0x%08x)\n"
260                   VCL_TEST_SEPARATOR_STRING,
261                   conn->buf, conn->buf_size, conn->buf_size);
262         }
263
264       sync_config_and_reply (conn, rx_cfg);
265       printf ("\nSERVER (fd %d): %s-directional Stream Test Complete!\n"
266               SOCK_TEST_BANNER_STRING "\n", conn->fd,
267               test == VCL_TEST_TYPE_BI ? "Bi" : "Uni");
268     }
269   else
270     {
271       printf ("\n" SOCK_TEST_BANNER_STRING
272               "SERVER (fd %d): %s-directional Stream Test!\n"
273               "  Sending client the test cfg to start streaming data...\n",
274               client_fd, test == VCL_TEST_TYPE_BI ? "Bi" : "Uni");
275
276       rx_cfg->ctrl_handle = (rx_cfg->ctrl_handle == ~0) ? conn->fd :
277         rx_cfg->ctrl_handle;
278
279       sync_config_and_reply (conn, rx_cfg);
280
281       /* read the 1st chunk, record start time */
282       memset (&conn->stats, 0, sizeof (conn->stats));
283       clock_gettime (CLOCK_REALTIME, &conn->stats.start);
284     }
285 }
286
287
288 static inline void
289 stream_test_server (sock_server_conn_t * conn, int rx_bytes)
290 {
291   int client_fd = conn->fd;
292   vcl_test_t test = conn->cfg.test;
293
294   if (test == VCL_TEST_TYPE_BI)
295     (void) sock_test_write (client_fd, conn->buf, rx_bytes, &conn->stats,
296                             conn->cfg.verbose);
297
298   if (conn->stats.rx_bytes >= conn->cfg.total_bytes)
299     {
300       clock_gettime (CLOCK_REALTIME, &conn->stats.stop);
301     }
302 }
303
304 #if SOCK_SERVER_USE_EPOLL && !defined (VCL_TEST)
305 static inline void
306 af_unix_echo (void)
307 {
308   sock_server_main_t *ssm = &sock_server_main;
309   int af_unix_client_fd;
310   int rv;
311   int errno_val;
312   uint8_t buffer[256];
313   size_t nbytes = strlen (SOCK_TEST_MIXED_EPOLL_DATA) + 1;
314
315 #if HAVE_ACCEPT4
316   af_unix_client_fd = accept4 (ssm->af_unix_listen_fd,
317                                (struct sockaddr *) NULL, NULL, NULL);
318 #else
319   af_unix_client_fd = accept (ssm->af_unix_listen_fd,
320                               (struct sockaddr *) NULL, NULL);
321 #endif
322   if (af_unix_client_fd < 0)
323     {
324       errno_val = errno;
325       perror ("ERROR in af_unix_accept()");
326       fprintf (stderr, "SERVER: ERROR: accept failed "
327                "(errno = %d)!\n", errno_val);
328       return;
329     }
330
331   printf ("SERVER: Got an AF_UNIX connection -- fd = %d (0x%08x)!\n",
332           af_unix_client_fd, af_unix_client_fd);
333
334   memset (buffer, 0, sizeof (buffer));
335
336   rv = read (af_unix_client_fd, buffer, nbytes);
337   if (rv < 0)
338     {
339       errno_val = errno;
340       perror ("ERROR in af_unix_echo(): read() failed");
341       fprintf (stderr, "SERVER: ERROR: read(af_unix_client_fd %d (0x%x), "
342                "\"%s\", nbytes %lu) failed (errno = %d)!\n",
343                af_unix_client_fd, af_unix_client_fd, buffer, nbytes,
344                errno_val);
345       goto done;
346     }
347
348   printf ("SERVER (AF_UNIX): RX (%d bytes) - '%s'\n", rv, buffer);
349
350   if (!strncmp (SOCK_TEST_MIXED_EPOLL_DATA, (const char *) buffer, nbytes))
351     {
352       rv = write (af_unix_client_fd, buffer, nbytes);
353       if (rv < 0)
354         {
355           errno_val = errno;
356           perror ("ERROR in af_unix_echo(): write() failed");
357           fprintf (stderr,
358                    "SERVER: ERROR: write(af_unix_client_fd %d (0x%x), "
359                    "\"%s\", nbytes %ld) failed (errno = %d)!\n",
360                    af_unix_client_fd, af_unix_client_fd, buffer, nbytes,
361                    errno_val);
362           goto done;
363         }
364       printf ("SERVER (AF_UNIX): TX (%d bytes) - '%s'\n", rv, buffer);
365       ssm->af_unix_xacts++;
366     }
367 done:
368   close (af_unix_client_fd);
369 }
370
371 #endif
372
373 static inline void
374 new_client (void)
375 {
376   sock_server_main_t *ssm = &sock_server_main;
377   int client_fd;
378   sock_server_conn_t *conn;
379
380   if (ssm->conn_pool_size < (ssm->num_conn + SOCK_SERVER_MAX_TEST_CONN + 1))
381     conn_pool_expand (SOCK_SERVER_MAX_TEST_CONN + 1);
382
383   conn = conn_pool_alloc ();
384   if (!conn)
385     {
386       fprintf (stderr, "\nSERVER: ERROR: No free connections!\n");
387       return;
388     }
389
390 #ifdef VCL_TEST
391   client_fd = vppcom_session_accept (ssm->listen_fd, &conn->endpt, 0);
392   if (client_fd < 0)
393     errno = -client_fd;
394 #elif HAVE_ACCEPT4
395   client_fd = accept4 (ssm->listen_fd, (struct sockaddr *) NULL, NULL, NULL);
396 #else
397   client_fd = accept (ssm->listen_fd, (struct sockaddr *) NULL, NULL);
398 #endif
399   if (client_fd < 0)
400     {
401       int errno_val;
402       errno_val = errno;
403       perror ("ERROR in new_client()");
404       fprintf (stderr, "SERVER: ERROR: accept failed "
405                "(errno = %d)!\n", errno_val);
406       return;
407     }
408
409   printf ("SERVER: Got a connection -- fd = %d (0x%08x)!\n",
410           client_fd, client_fd);
411
412   conn->fd = client_fd;
413
414 #if ! SOCK_SERVER_USE_EPOLL
415   conn_fdset_set (conn, &ssm->rd_fdset);
416   ssm->nfds++;
417 #else
418   {
419     struct epoll_event ev;
420     int rv;
421
422     ev.events = EPOLLIN;
423     ev.data.u64 = conn - ssm->conn_pool;
424 #ifdef VCL_TEST
425     rv = vppcom_epoll_ctl (ssm->epfd, EPOLL_CTL_ADD, client_fd, &ev);
426     if (rv)
427       errno = -rv;
428 #else
429     rv = epoll_ctl (ssm->epfd, EPOLL_CTL_ADD, client_fd, &ev);
430 #endif
431     if (rv < 0)
432       {
433         int errno_val;
434         errno_val = errno;
435         perror ("ERROR in new_client()");
436         fprintf (stderr, "SERVER: ERROR: epoll_ctl failed (errno = %d)!\n",
437                  errno_val);
438       }
439     else
440       ssm->nfds++;
441   }
442 #endif
443 }
444
445 void
446 print_usage_and_exit (void)
447 {
448   fprintf (stderr,
449            "sock_test_server [OPTIONS] <port>\n"
450            "  OPTIONS\n"
451            "  -h               Print this message and exit.\n"
452            "  -6               Use IPv6\n"
453            "  -u               Use UDP transport layer\n");
454   exit (1);
455 }
456
457 int
458 main (int argc, char **argv)
459 {
460   sock_server_main_t *ssm = &sock_server_main;
461   int client_fd, rv, main_rv = 0;
462   int tx_bytes, rx_bytes, nbytes;
463   sock_server_conn_t *conn;
464   vcl_test_cfg_t *rx_cfg;
465   uint32_t xtra = 0;
466   uint64_t xtra_bytes = 0;
467   struct sockaddr_storage servaddr;
468   int errno_val;
469   int c, v, i;
470   uint16_t port = VCL_TEST_SERVER_PORT;
471 #if ! SOCK_SERVER_USE_EPOLL
472   fd_set _rfdset, *rfdset = &_rfdset;
473 #endif
474 #ifdef VCL_TEST
475   vppcom_endpt_t endpt;
476 #else
477   uint32_t servaddr_size;
478 #if ! SOCK_SERVER_USE_EPOLL
479   fd_set _wfdset, *wfdset = &_wfdset;
480 #endif
481 #endif
482
483   opterr = 0;
484   while ((c = getopt (argc, argv, "6D")) != -1)
485     switch (c)
486       {
487       case '6':
488         ssm->cfg.address_ip6 = 1;
489         break;
490
491       case 'D':
492         ssm->cfg.transport_udp = 1;
493         break;
494
495       case '?':
496         switch (optopt)
497           {
498           default:
499             if (isprint (optopt))
500               fprintf (stderr, "SERVER: ERROR: Unknown "
501                        "option `-%c'.\n", optopt);
502             else
503               fprintf (stderr, "SERVER: ERROR: Unknown "
504                        "option character `\\x%x'.\n", optopt);
505           }
506         /* fall thru */
507       case 'h':
508       default:
509         print_usage_and_exit ();
510       }
511
512   if (argc < (optind + 1))
513     {
514       fprintf (stderr, "SERVER: ERROR: Insufficient number of arguments!\n");
515       print_usage_and_exit ();
516     }
517
518   if (sscanf (argv[optind], "%d", &v) == 1)
519     port = (uint16_t) v;
520   else
521     {
522       fprintf (stderr, "SERVER: ERROR: Invalid port (%s)!\n", argv[optind]);
523       print_usage_and_exit ();
524     }
525
526   conn_pool_expand (SOCK_SERVER_MAX_TEST_CONN + 1);
527
528 #ifdef VCL_TEST
529   rv = vppcom_app_create ("vcl_test_server");
530   if (rv)
531     {
532       errno = -rv;
533       ssm->listen_fd = -1;
534     }
535   else
536     {
537       ssm->listen_fd = vppcom_session_create (ssm->cfg.transport_udp ?
538                                               VPPCOM_PROTO_UDP :
539                                               VPPCOM_PROTO_TCP,
540                                               0 /* is_nonblocking */ );
541     }
542 #else
543   ssm->listen_fd = socket (ssm->cfg.address_ip6 ? AF_INET6 : AF_INET,
544                            ssm->cfg.transport_udp ? SOCK_DGRAM : SOCK_STREAM,
545                            0);
546 #if SOCK_SERVER_USE_EPOLL && !defined (VCL_TEST)
547   unlink ((const char *) SOCK_TEST_AF_UNIX_FILENAME);
548   ssm->af_unix_listen_fd = socket (AF_UNIX, SOCK_STREAM, 0);
549   if (ssm->af_unix_listen_fd < 0)
550     {
551       errno_val = errno;
552       perror ("ERROR in main(): socket(AF_UNIX) failed");
553       fprintf (stderr,
554                "SERVER: ERROR: socket(AF_UNIX, SOCK_STREAM, 0) failed "
555                "(errno = %d)!\n", errno_val);
556       return ssm->af_unix_listen_fd;
557     }
558
559   memset (&ssm->serveraddr, 0, sizeof (ssm->serveraddr));
560   ssm->serveraddr.sun_family = AF_UNIX;
561   strcpy (ssm->serveraddr.sun_path, SOCK_TEST_AF_UNIX_FILENAME);
562
563   rv = bind (ssm->af_unix_listen_fd, (struct sockaddr *) &ssm->serveraddr,
564              SUN_LEN (&ssm->serveraddr));
565   if (rv < 0)
566     {
567       errno_val = errno;
568       perror ("ERROR in main(): bind(SOCK_TEST_AF_UNIX_FILENAME) failed");
569       fprintf (stderr, "SERVER: ERROR: bind() fd %d, \"%s\": "
570                "failed (errno = %d)!\n", ssm->af_unix_listen_fd,
571                SOCK_TEST_AF_UNIX_FILENAME, errno_val);
572       close (ssm->af_unix_listen_fd);
573       unlink ((const char *) SOCK_TEST_AF_UNIX_FILENAME);
574       return rv;
575     }
576
577   rv = listen (ssm->af_unix_listen_fd, 10);
578   if (rv < 0)
579     {
580       errno_val = errno;
581       perror ("ERROR in main(): listen(AF_UNIX) failed");
582       fprintf (stderr, "SERVER: ERROR: listen() fd %d, \"%s\": "
583                "failed (errno = %d)!\n", ssm->af_unix_listen_fd,
584                SOCK_TEST_AF_UNIX_FILENAME, errno_val);
585       close (ssm->af_unix_listen_fd);
586       unlink ((const char *) SOCK_TEST_AF_UNIX_FILENAME);
587       return rv;
588     }
589 #endif /* SOCK_SERVER_USE_EPOLL */
590 #endif
591   if (ssm->listen_fd < 0)
592     {
593       errno_val = errno;
594       perror ("ERROR in main()");
595       fprintf (stderr, "SERVER: ERROR: socket() failed "
596                "(errno = %d)!\n", errno_val);
597       return ssm->listen_fd;
598     }
599
600   memset (&servaddr, 0, sizeof (servaddr));
601
602   if (ssm->cfg.address_ip6)
603     {
604       struct sockaddr_in6 *server_addr = (struct sockaddr_in6 *) &servaddr;
605 #ifndef VCL_TEST
606       servaddr_size = sizeof (*server_addr);
607 #endif
608       server_addr->sin6_family = AF_INET6;
609       server_addr->sin6_addr = in6addr_any;
610       server_addr->sin6_port = htons (port);
611     }
612   else
613     {
614       struct sockaddr_in *server_addr = (struct sockaddr_in *) &servaddr;
615 #ifndef VCL_TEST
616       servaddr_size = sizeof (*server_addr);
617 #endif
618       server_addr->sin_family = AF_INET;
619       server_addr->sin_addr.s_addr = htonl (INADDR_ANY);
620       server_addr->sin_port = htons (port);
621     }
622
623 #ifdef VCL_TEST
624   if (ssm->cfg.address_ip6)
625     {
626       struct sockaddr_in6 *server_addr = (struct sockaddr_in6 *) &servaddr;
627       endpt.is_ip4 = 0;
628       endpt.ip = (uint8_t *) & server_addr->sin6_addr;
629       endpt.port = (uint16_t) server_addr->sin6_port;
630     }
631   else
632     {
633       struct sockaddr_in *server_addr = (struct sockaddr_in *) &servaddr;
634       endpt.is_ip4 = 1;
635       endpt.ip = (uint8_t *) & server_addr->sin_addr;
636       endpt.port = (uint16_t) server_addr->sin_port;
637     }
638
639   rv = vppcom_session_bind (ssm->listen_fd, &endpt);
640   if (rv)
641     {
642       errno = -rv;
643       rv = -1;
644     }
645 #else
646   rv = bind (ssm->listen_fd, (struct sockaddr *) &servaddr, servaddr_size);
647 #endif
648   if (rv < 0)
649     {
650       errno_val = errno;
651       perror ("ERROR in main()");
652       fprintf (stderr, "SERVER: ERROR: bind failed (errno = %d)!\n",
653                errno_val);
654       return rv;
655     }
656   fcntl (ssm->listen_fd, F_SETFL, O_NONBLOCK);
657
658 #ifdef VCL_TEST
659   rv = vppcom_session_listen (ssm->listen_fd, 10);
660   if (rv)
661     {
662       errno = -rv;
663       rv = -1;
664     }
665 #else
666   rv = listen (ssm->listen_fd, 10);
667 #endif
668   if (rv < 0)
669     {
670       errno_val = errno;
671       perror ("ERROR in main()");
672       fprintf (stderr, "SERVER: ERROR: listen failed "
673                "(errno = %d)!\n", errno_val);
674       return rv;
675     }
676
677 #if ! SOCK_SERVER_USE_EPOLL
678
679   FD_ZERO (&ssm->wr_fdset);
680   FD_ZERO (&ssm->rd_fdset);
681
682   FD_SET (ssm->listen_fd, &ssm->rd_fdset);
683   ssm->nfds = ssm->listen_fd + 1;
684
685 #else
686 #ifdef VCL_TEST
687   ssm->epfd = vppcom_epoll_create ();
688   if (ssm->epfd < 0)
689     errno = -ssm->epfd;
690 #else
691   ssm->epfd = epoll_create (1);
692 #endif
693   if (ssm->epfd < 0)
694     {
695       errno_val = errno;
696       perror ("ERROR in main()");
697       fprintf (stderr, "SERVER: ERROR: epoll_create failed (errno = %d)!\n",
698                errno_val);
699       return ssm->epfd;
700     }
701
702   ssm->listen_ev.events = EPOLLIN;
703   ssm->listen_ev.data.u32 = ~0;
704 #ifdef VCL_TEST
705   rv = vppcom_epoll_ctl (ssm->epfd, EPOLL_CTL_ADD, ssm->listen_fd,
706                          &ssm->listen_ev);
707   if (rv < 0)
708     errno = -rv;
709 #else
710   ssm->af_unix_listen_ev.events = EPOLLIN;
711   ssm->af_unix_listen_ev.data.u32 = SOCK_TEST_AF_UNIX_ACCEPT_DATA;
712   rv = epoll_ctl (ssm->epfd, EPOLL_CTL_ADD, ssm->af_unix_listen_fd,
713                   &ssm->af_unix_listen_ev);
714   if (rv < 0)
715     {
716       errno_val = errno;
717       perror ("ERROR in main(): mixed epoll_ctl(EPOLL_CTL_ADD)");
718       fprintf (stderr, "SERVER: ERROR: mixed epoll_ctl(epfd %d (0x%x), "
719                "EPOLL_CTL_ADD, af_unix_listen_fd %d (0x%x), EPOLLIN) failed "
720                "(errno = %d)!\n", ssm->epfd, ssm->epfd,
721                ssm->af_unix_listen_fd, ssm->af_unix_listen_fd, errno_val);
722       close (ssm->af_unix_listen_fd);
723       unlink ((const char *) SOCK_TEST_AF_UNIX_FILENAME);
724       return rv;
725     }
726
727   rv = epoll_ctl (ssm->epfd, EPOLL_CTL_ADD, ssm->listen_fd, &ssm->listen_ev);
728 #endif
729   if (rv < 0)
730     {
731       errno_val = errno;
732       perror ("ERROR in main()");
733       fprintf (stderr, "SERVER: ERROR: epoll_ctl failed "
734                "(errno = %d)!\n", errno_val);
735       return rv;
736     }
737 #endif
738
739   printf ("\nSERVER: Waiting for a client to connect on port %d...\n", port);
740
741   while (1)
742     {
743 #if ! SOCK_SERVER_USE_EPOLL
744       _rfdset = ssm->rd_fdset;
745
746 #ifdef VCL_TEST
747       rv = vppcom_select (ssm->nfds, (uint64_t *) rfdset, NULL, NULL, 0);
748 #else
749       {
750         struct timeval timeout;
751         timeout = ssm->timeout;
752         _wfdset = ssm->wr_fdset;
753         rv = select (ssm->nfds, rfdset, wfdset, NULL, &timeout);
754       }
755 #endif
756       if (rv < 0)
757         {
758           perror ("select()");
759           fprintf (stderr, "\nSERVER: ERROR: select() failed -- aborting!\n");
760           main_rv = -1;
761           goto done;
762         }
763       else if (rv == 0)
764         continue;
765
766       if (FD_ISSET (ssm->listen_fd, rfdset))
767         new_client ();
768
769       for (i = 0; i < ssm->conn_pool_size; i++)
770         {
771           if (!ssm->conn_pool[i].is_alloc)
772             continue;
773
774           conn = &ssm->conn_pool[i];
775 #else
776       int num_ev;
777 #ifdef VCL_TEST
778       num_ev = vppcom_epoll_wait (ssm->epfd, ssm->wait_events,
779                                   SOCK_SERVER_MAX_EPOLL_EVENTS, 60.0);
780       if (num_ev < 0)
781         errno = -num_ev;
782 #else
783       num_ev = epoll_wait (ssm->epfd, ssm->wait_events,
784                            SOCK_SERVER_MAX_EPOLL_EVENTS, 60000);
785 #endif
786       if (num_ev < 0)
787         {
788           perror ("epoll_wait()");
789           fprintf (stderr, "\nSERVER: ERROR: epoll_wait() "
790                    "failed -- aborting!\n");
791           main_rv = -1;
792           goto done;
793         }
794       if (num_ev == 0)
795         {
796           fprintf (stderr, "\nSERVER: epoll_wait() timeout!\n");
797           continue;
798         }
799       for (i = 0; i < num_ev; i++)
800         {
801           conn = &ssm->conn_pool[ssm->wait_events[i].data.u32];
802           if (ssm->wait_events[i].events & (EPOLLHUP | EPOLLRDHUP))
803             {
804 #ifdef VCL_TEST
805               vppcom_session_close (conn->fd);
806 #else
807               close (conn->fd);
808 #endif
809               continue;
810             }
811           if (ssm->wait_events[i].data.u32 == ~0)
812             {
813               new_client ();
814               continue;
815             }
816 #if !defined (VCL_TEST)
817           else if (ssm->wait_events[i].data.u32 ==
818                    SOCK_TEST_AF_UNIX_ACCEPT_DATA)
819             {
820               af_unix_echo ();
821               continue;
822             }
823 #endif
824 #endif
825           client_fd = conn->fd;
826
827 #if ! SOCK_SERVER_USE_EPOLL
828           if (FD_ISSET (client_fd, rfdset))
829 #else
830           if (EPOLLIN & ssm->wait_events[i].events)
831 #endif
832             {
833             read_again:
834               rx_bytes = sock_test_read (client_fd, conn->buf,
835                                          conn->buf_size, &conn->stats);
836               if (rx_bytes > 0)
837                 {
838                   rx_cfg = (vcl_test_cfg_t *) conn->buf;
839                   if (rx_cfg->magic == VCL_TEST_CFG_CTRL_MAGIC)
840                     {
841                       if (rx_cfg->verbose)
842                         {
843                           printf ("SERVER (fd %d): Received a cfg message!\n",
844                                   client_fd);
845                           vcl_test_cfg_dump (rx_cfg, 0 /* is_client */ );
846                         }
847
848                       if (rx_bytes != sizeof (*rx_cfg))
849                         {
850                           printf ("SERVER (fd %d): Invalid cfg message "
851                                   "size (%d)!\n  Should be %lu bytes.\n",
852                                   client_fd, rx_bytes, sizeof (*rx_cfg));
853                           conn->cfg.rxbuf_size = 0;
854                           conn->cfg.num_writes = 0;
855                           if (conn->cfg.verbose)
856                             {
857                               printf ("SERVER (fd %d): Replying to "
858                                       "cfg message!\n", client_fd);
859                               vcl_test_cfg_dump (rx_cfg, 0 /* is_client */ );
860                             }
861                           sock_test_write (client_fd, (uint8_t *) & conn->cfg,
862                                            sizeof (conn->cfg), NULL,
863                                            conn->cfg.verbose);
864                           continue;
865                         }
866
867                       switch (rx_cfg->test)
868                         {
869                         case VCL_TEST_TYPE_NONE:
870                         case VCL_TEST_TYPE_ECHO:
871                           sync_config_and_reply (conn, rx_cfg);
872                           break;
873
874                         case VCL_TEST_TYPE_BI:
875                         case VCL_TEST_TYPE_UNI:
876                           stream_test_server_start_stop (conn, rx_cfg);
877                           break;
878
879                         case VCL_TEST_TYPE_EXIT:
880                           printf ("SERVER: Have a great day, "
881                                   "connection %d!\n", client_fd);
882 #ifdef VCL_TEST
883                           vppcom_session_close (client_fd);
884 #else
885                           close (client_fd);
886 #endif
887                           conn_pool_free (conn);
888                           printf ("SERVER: Closed client fd %d\n", client_fd);
889 #if ! SOCK_SERVER_USE_EPOLL
890                           if (ssm->nfds == (ssm->listen_fd + 1))
891 #else
892                           ssm->nfds--;
893                           if (!ssm->nfds)
894 #endif
895                             {
896                               printf ("SERVER: All client connections "
897                                       "closed.\n\nSERVER: "
898                                       "May the force be with you!\n\n");
899                               goto done;
900                             }
901                           break;
902
903                         default:
904                           fprintf (stderr,
905                                    "SERVER: ERROR: Unknown test type!\n");
906                           vcl_test_cfg_dump (rx_cfg, 0 /* is_client */ );
907                           break;
908                         }
909                       continue;
910                     }
911
912                   else if ((conn->cfg.test == VCL_TEST_TYPE_UNI) ||
913                            (conn->cfg.test == VCL_TEST_TYPE_BI))
914                     {
915                       stream_test_server (conn, rx_bytes);
916                       if (ioctl (conn->fd, FIONREAD))
917                         goto read_again;
918                       continue;
919                     }
920
921                   else if (isascii (conn->buf[0]))
922                     {
923                       // If it looks vaguely like a string, make sure it's terminated
924                       ((char *) conn->buf)[rx_bytes <
925                                            conn->buf_size ? rx_bytes :
926                                            conn->buf_size - 1] = 0;
927                       printf ("SERVER (fd %d): RX (%d bytes) - '%s'\n",
928                               conn->fd, rx_bytes, conn->buf);
929                     }
930                 }
931               else              // rx_bytes < 0
932                 {
933                   if (errno == ECONNRESET)
934                     {
935                       printf ("\nSERVER: Connection reset by remote peer.\n"
936                               "  Y'all have a great day now!\n\n");
937                       break;
938                     }
939                   else
940                     continue;
941                 }
942
943               if (isascii (conn->buf[0]))
944                 {
945                   /* If it looks vaguely like a string,
946                    * make sure it's terminated
947                    */
948                   ((char *) conn->buf)[rx_bytes <
949                                        conn->buf_size ? rx_bytes :
950                                        conn->buf_size - 1] = 0;
951                   if (xtra)
952                     fprintf (stderr, "SERVER: ERROR: "
953                              "FIFO not drained in previous test!\n"
954                              "       extra chunks %u (0x%x)\n"
955                              "        extra bytes %lu (0x%lx)\n",
956                              xtra, xtra, xtra_bytes, xtra_bytes);
957
958                   xtra = 0;
959                   xtra_bytes = 0;
960
961                   if (conn->cfg.verbose)
962                     printf ("SERVER (fd %d): Echoing back\n", client_fd);
963
964                   nbytes = strlen ((const char *) conn->buf) + 1;
965
966                   tx_bytes = sock_test_write (client_fd, conn->buf,
967                                               nbytes, &conn->stats,
968                                               conn->cfg.verbose);
969                   if (tx_bytes >= 0)
970                     printf ("SERVER (fd %d): TX (%d bytes) - '%s'\n",
971                             conn->fd, tx_bytes, conn->buf);
972                 }
973
974               else              // Extraneous read data from non-echo tests???
975                 {
976                   xtra++;
977                   xtra_bytes += rx_bytes;
978                 }
979             }
980         }
981     }
982
983 done:
984 #ifdef VCL_TEST
985   vppcom_session_close (ssm->listen_fd);
986   vppcom_app_destroy ();
987 #else
988   close (ssm->listen_fd);
989
990 #if SOCK_SERVER_USE_EPOLL && !defined (VCL_TEST)
991   close (ssm->af_unix_listen_fd);
992   unlink ((const char *) SOCK_TEST_AF_UNIX_FILENAME);
993 #endif /* SOCK_SERVER_USE_EPOLL */
994
995 #endif
996   if (ssm->conn_pool)
997     free (ssm->conn_pool);
998
999   return main_rv;
1000 }
1001
1002 /*
1003  * fd.io coding-style-patch-verification: ON
1004  *
1005  * Local Variables:
1006  * eval: (c-set-style "gnu")
1007  * End:
1008  */