This repository has been archived by the owner on Jul 31, 2022. It is now read-only.
forked from wtanaka/airhook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
looptest.c
211 lines (183 loc) · 4.84 KB
/
looptest.c
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
/* TCP loopback test utility, copyright 2001 Dan Egnor.
* This software comes with ABSOLUTELY NO WARRANTY. You may redistribute it
* under the terms of the GNU General Public License, version 2.
* See the file COPYING for more details. */
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <sys/uio.h>
#include <netdb.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <getopt.h>
struct state {
unsigned int counter;
unsigned int value;
};
unsigned char next(struct state *state) {
if (0 == state->value) {
state->value = ++(state->counter);
return ' ';
} else {
unsigned char ch = '0' + (state->value % 10);
state->value /= 10;
return ch;
}
}
void fill(unsigned char *buffer,int length) {
static struct state state = { 0, 0 };
while (0 != length--) *buffer++ = next(&state);
}
int drain(unsigned char *buffer,int length) {
static struct state state = { 0, 0 };
while (0 != length--) if (next(&state) != *buffer++) return 0;
return 1;
}
int main(int argc,char *argv[]) {
int sock;
unsigned char buffer[8192];
size_t buffer_pos;
int opt;
char *end;
double max_time = 0.0;
size_t max_bytes = (size_t) -1;
size_t bytes_written = 0,bytes_read = 0;
struct sockaddr_in sin;
sin.sin_family = AF_INET;
sin.sin_port = htons(7);
while (EOF != (opt = getopt(argc,argv,"s:t:")))
switch (opt) {
case 's':
max_bytes = strtoul(optarg,&end,0);
if ('\0' == *optarg || '\0' != *end || 0 == max_bytes) {
fprintf(stderr,"%s: invalid length\n",optarg);
return 2;
}
break;
case 't':
max_time = strtod(optarg,&end);
if ('\0' == *optarg || '\0' != *end || max_time <= 0.0) {
fprintf(stderr,"%s: invalid timeout\n",optarg);
return 2;
}
break;
case '?':
usage:
fputs(
"TCP loopback test utility version 1, copyright 2001 Dan Egnor.\n"
"\n"
"usage: looptest [flags] host [port]\n"
"flags: -s bytes Maximum amount of data to send\n"
" -t seconds Maximum time in seconds to run\n"
"\n"
"Connects to TCP <host> and <port> (default 7), transmits a continuous stream\n"
"of data, expects to receive the same data in return, verifies consistency\n"
"and measures throughput. Will run forever if not limited or stopped.\n"
, stderr);
return 2;
}
if (argc - optind == 2) {
const char * const name = argv[optind + 1];
struct servent * const service = getservbyname(name,"tcp");
if (NULL != service)
sin.sin_port = htons(service->s_port);
else {
sin.sin_port = htons(strtoul(name,&end,0));
if ('\0' == *name || '\0' != *end
|| 0 == sin.sin_port) {
fprintf(stderr,"%s: invalid port\n",name);
return 1;
}
}
--argc;
}
if (argc - optind != 1)
goto usage;
else {
const char * const name = argv[optind];
struct hostent * const host = gethostbyname(name);
if (NULL == host) {
fprintf(stderr,"%s: invalid host\n",name);
return 1;
}
if (sin.sin_family != host->h_addrtype
|| sizeof(sin.sin_addr) != host->h_length) {
fprintf(stderr,"%s: wrong address type\n",name);
return 1;
}
sin.sin_addr = * (struct in_addr *) host->h_addr;
--argc;
}
sock = socket(PF_INET,SOCK_STREAM,0);
if (sock < 0) {
perror("socket");
return 1;
}
if (connect(sock,(struct sockaddr *) &sin,sizeof(sin))) {
perror("connect");
return 1;
}
fill(buffer,sizeof(buffer));
buffer_pos = 0;
for (;;) {
int r;
fd_set rfd,wfd;
FD_ZERO(&rfd);
FD_SET(sock,&rfd);
FD_ZERO(&wfd);
if (0 != max_bytes) FD_SET(sock,&wfd);
r = select(1 + sock,&rfd,&wfd,NULL,NULL); /* TODO: timeout */
if (r < 0) {
perror("select");
return 1;
}
if (FD_ISSET(sock,&rfd)) {
unsigned char buffer[8192];
r = read(sock,buffer,sizeof(buffer));
if (r < 0) perror("read");
if (0 != max_bytes && 0 == r)
fputs("read: connection closed\n",stderr);
if (r <= 0) break;
bytes_read += r;
if (!drain(buffer,r)) break;
}
if (FD_ISSET(sock,&wfd)) {
struct iovec iov[2];
iov[0].iov_base = &buffer[buffer_pos];
iov[0].iov_len = sizeof(buffer) - buffer_pos;
if (max_bytes != (size_t) -1
&& iov[0].iov_len > max_bytes) {
iov[0].iov_len = max_bytes;
iov[1].iov_len = 0;
} else {
iov[1].iov_base = &buffer[0];
iov[1].iov_len = buffer_pos;
if (max_bytes != (size_t) -1
&& iov[1].iov_len > max_bytes - iov[0].iov_len)
iov[1].iov_len =
max_bytes - iov[0].iov_len;
}
r = writev(sock,iov,2);
if (r < 0) {
perror("write");
max_bytes = 0;
} else {
if (max_bytes != (size_t) -1) max_bytes -= r;
bytes_written += r;
if (r > iov[0].iov_len) {
buffer_pos = r - iov[0].iov_len;
fill(iov[0].iov_base,iov[0].iov_len);
fill(iov[1].iov_base,buffer_pos);
} else {
fill(iov[0].iov_base,r);
buffer_pos += r;
}
}
if (0 == max_bytes && shutdown(sock,1))
perror("shutdown");
}
}
printf("read: %d; written: %d\n",bytes_read,bytes_written);
return 0;
}