blob: 83f17fa66504ff08112aa4dbd58447876f34c0c3 [file] [log] [blame]
Dave Wallace543852a2017-08-03 02:11:34 -04001/*
Dave Wallacee4d5a652018-06-24 21:21:21 -04002 * Copyright (c) 2017-2018 Cisco and/or its affiliates.
Dave Wallace543852a2017-08-03 02:11:34 -04003 * 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>
Florin Coras1502fc32018-10-05 00:50:30 -070023#include <vcl/vcl_test.h>
Dave Wallace543852a2017-08-03 02:11:34 -040024
Dave Wallace3ee1fe12018-02-23 01:09:11 -050025#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
Florin Coras1502fc32018-10-05 00:50:30 -070029#define SOCK_TEST_BANNER_STRING \
30 "============================================\n"
Dave Wallace3ee1fe12018-02-23 01:09:11 -050031
Dave Wallace543852a2017-08-03 02:11:34 -040032static inline int
33sock_test_read (int fd, uint8_t *buf, uint32_t nbytes,
Florin Coras1502fc32018-10-05 00:50:30 -070034 vcl_test_stats_t *stats)
Dave Wallace543852a2017-08-03 02:11:34 -040035{
36 int rx_bytes, errno_val;
37
38 do
39 {
40 if (stats)
41 stats->rx_xacts++;
Dave Wallace543852a2017-08-03 02:11:34 -040042 rx_bytes = read (fd, buf, nbytes);
Dave Wallace543852a2017-08-03 02:11:34 -040043 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()");
Dave Wallace048b1d62018-01-03 22:24:41 -050059 fprintf (stderr, "SOCK_TEST: ERROR: socket read "
60 "failed (errno = %d)!\n", errno_val);
Dave Wallace543852a2017-08-03 02:11:34 -040061 errno = errno_val;
62 }
63 else if (stats)
64 stats->rx_bytes += rx_bytes;
65
66 return (rx_bytes);
67}
68
69static inline int
70sock_test_write (int fd, uint8_t *buf, uint32_t nbytes,
Florin Coras1502fc32018-10-05 00:50:30 -070071 vcl_test_stats_t *stats, uint32_t verbose)
Dave Wallace543852a2017-08-03 02:11:34 -040072{
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++;
Dave Wallace543852a2017-08-03 02:11:34 -040081 rv = write (fd, buf, nbytes_left);
Dave Wallace543852a2017-08-03 02:11:34 -040082 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 {
Dave Wallace048b1d62018-01-03 22:24:41 -0500102 printf ("SOCK_TEST: WARNING: bytes written (%d) "
103 "!= bytes to write (%d)!\n", tx_bytes, nbytes);
Dave Wallace543852a2017-08-03 02:11:34 -0400104 }
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()");
Dave Wallace048b1d62018-01-03 22:24:41 -0500113 fprintf (stderr, "SOCK_TEST: ERROR: socket write failed "
114 "(errno = %d)!\n", errno_val);
Dave Wallace543852a2017-08-03 02:11:34 -0400115 }
116 else if (stats)
117 stats->tx_bytes += tx_bytes;
118
119 return (tx_bytes);
120}
121
122#endif /* __sock_test_h__ */