vcl: cleanup and fixes for vcl test code
[vpp.git] / src / vcl / sock_test.h
1 /*
2  * Copyright (c) 2017-2018 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 #ifndef __sock_test_h__
17 #define __sock_test_h__
18
19 #include <netdb.h>
20 #include <errno.h>
21 #include <stdlib.h>
22 #include <string.h>
23 #include <vcl/vcl_test.h>
24
25 #define SOCK_TEST_AF_UNIX_FILENAME    "/tmp/ldp_server_af_unix_socket"
26 #define SOCK_TEST_MIXED_EPOLL_DATA    "Hello, world! (over an AF_UNIX socket)"
27 #define SOCK_TEST_AF_UNIX_ACCEPT_DATA 0xaf0000af
28 #define SOCK_TEST_AF_UNIX_FD_MASK     0x00af0000
29 #define SOCK_TEST_BANNER_STRING \
30   "============================================\n"
31
32 static inline int
33 sock_test_read (int fd, uint8_t *buf, uint32_t nbytes,
34                 vcl_test_stats_t *stats)
35 {
36   int rx_bytes, errno_val;
37   
38   do
39     {
40       if (stats)
41         stats->rx_xacts++;
42       rx_bytes = read (fd, buf, nbytes);
43       if (stats)
44         {
45           if ((rx_bytes == 0) ||
46               ((rx_bytes < 0) && ((errno == EAGAIN) || (errno == EWOULDBLOCK))))
47             stats->rx_eagain++;
48           else if (rx_bytes < nbytes)
49             stats->rx_incomp++;
50         }
51     }
52   while ((rx_bytes == 0) ||
53          ((rx_bytes < 0) && ((errno == EAGAIN) || (errno == EWOULDBLOCK))));
54   
55   if (rx_bytes < 0)
56     {
57       errno_val = errno;
58       perror ("ERROR in sock_test_read()");
59       fprintf (stderr, "SOCK_TEST: ERROR: socket read "
60                "failed (errno = %d)!\n", errno_val);
61       errno = errno_val;
62     }
63   else if (stats)
64     stats->rx_bytes += rx_bytes;
65
66   return (rx_bytes);
67 }
68
69 static inline int
70 sock_test_write (int fd, uint8_t *buf, uint32_t nbytes,
71                  vcl_test_stats_t *stats, uint32_t verbose)
72 {
73   int tx_bytes = 0;
74   int nbytes_left = nbytes;
75   int rv, errno_val;
76
77   do
78     {
79       if (stats)
80         stats->tx_xacts++;
81       rv = write (fd, buf, nbytes_left);
82       if (rv < 0)
83         {
84           if ((errno == EAGAIN) || (errno == EWOULDBLOCK))
85             {
86               if (stats)
87                 stats->tx_eagain++;
88               continue;
89             }
90           else
91             break;
92         }
93       tx_bytes += rv;
94      
95       if (tx_bytes != nbytes)
96         {
97           nbytes_left = nbytes_left - rv;
98           if (stats)
99             stats->tx_incomp++;
100           if (verbose)
101             {
102               printf ("SOCK_TEST: WARNING: bytes written (%d) "
103                       "!= bytes to write (%d)!\n", tx_bytes, nbytes);
104             }
105         }
106      
107     } while (tx_bytes != nbytes);
108
109   if (tx_bytes < 0)
110     {
111       errno_val = errno;
112       perror ("ERROR in sock_test_write()");
113       fprintf (stderr, "SOCK_TEST: ERROR: socket write failed "
114                "(errno = %d)!\n", errno_val);
115     }
116   else if (stats)
117     stats->tx_bytes += tx_bytes;
118   
119   return (tx_bytes);
120 }
121
122 #endif /* __sock_test_h__ */