2009-11-02 22:43:19 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright (c) 2009, The Regents of the University of California, through
|
|
|
|
* Lawrence Berkeley National Laboratory (subject to receipt of any required
|
|
|
|
* approvals from the U.S. Dept. of Energy). All rights reserved.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <sys/socket.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <netinet/in.h>
|
|
|
|
#include <netdb.h>
|
|
|
|
#include <netinet/tcp.h>
|
|
|
|
#include <sys/time.h>
|
2010-07-22 23:26:38 +00:00
|
|
|
#include <sys/select.h>
|
2009-11-02 22:43:19 +00:00
|
|
|
|
|
|
|
#include "iperf.h"
|
|
|
|
#include "iperf_api.h"
|
|
|
|
#include "iperf_tcp.h"
|
2010-07-22 23:26:38 +00:00
|
|
|
#include "iperf_error.h"
|
2009-11-02 22:43:19 +00:00
|
|
|
#include "net.h"
|
|
|
|
|
|
|
|
|
2010-07-22 18:57:08 +00:00
|
|
|
/* iperf_tcp_recv
|
2009-11-02 22:43:19 +00:00
|
|
|
*
|
2010-07-22 18:57:08 +00:00
|
|
|
* receives the data for TCP
|
2009-11-02 22:43:19 +00:00
|
|
|
*/
|
|
|
|
int
|
2010-07-22 23:26:38 +00:00
|
|
|
iperf_tcp_recv(struct iperf_stream *sp)
|
2009-11-02 22:43:19 +00:00
|
|
|
{
|
2010-06-23 19:13:37 +00:00
|
|
|
int result = 0;
|
2010-06-21 15:08:47 +00:00
|
|
|
int size = sp->settings->blksize;
|
2009-11-02 22:43:19 +00:00
|
|
|
|
2010-06-23 19:13:37 +00:00
|
|
|
result = Nread(sp->socket, sp->buffer, size, Ptcp);
|
2010-07-22 18:57:08 +00:00
|
|
|
|
2010-07-20 22:27:50 +00:00
|
|
|
if (result < 0) {
|
|
|
|
return (-1);
|
2009-11-02 22:43:19 +00:00
|
|
|
}
|
2010-07-22 18:57:08 +00:00
|
|
|
|
2010-06-23 19:13:37 +00:00
|
|
|
sp->result->bytes_received += result;
|
|
|
|
sp->result->bytes_received_this_interval += result;
|
2009-11-02 22:43:19 +00:00
|
|
|
|
2010-07-22 18:57:08 +00:00
|
|
|
return (result);
|
2009-11-02 22:43:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-07-22 18:57:08 +00:00
|
|
|
/* iperf_tcp_send
|
2009-11-02 22:43:19 +00:00
|
|
|
*
|
2010-07-22 18:57:08 +00:00
|
|
|
* sends the data for TCP
|
2009-11-02 22:43:19 +00:00
|
|
|
*/
|
|
|
|
int
|
2010-07-22 23:26:38 +00:00
|
|
|
iperf_tcp_send(struct iperf_stream *sp)
|
2009-11-02 22:43:19 +00:00
|
|
|
{
|
2010-06-18 21:08:50 +00:00
|
|
|
int result;
|
|
|
|
int size = sp->settings->blksize;
|
2009-11-02 22:43:19 +00:00
|
|
|
|
|
|
|
result = Nwrite(sp->socket, sp->buffer, size, Ptcp);
|
2010-07-22 18:57:08 +00:00
|
|
|
|
2010-07-20 22:27:50 +00:00
|
|
|
if (result < 0) {
|
|
|
|
return (-1);
|
|
|
|
}
|
2009-11-02 23:56:55 +00:00
|
|
|
|
2010-06-23 19:13:37 +00:00
|
|
|
sp->result->bytes_sent += result;
|
|
|
|
sp->result->bytes_sent_this_interval += result;
|
2009-11-02 22:43:19 +00:00
|
|
|
|
2010-07-22 18:57:08 +00:00
|
|
|
return (result);
|
2009-11-02 22:43:19 +00:00
|
|
|
}
|
|
|
|
|
2010-07-22 18:57:08 +00:00
|
|
|
|
|
|
|
/* iperf_tcp_accept
|
2009-11-02 22:43:19 +00:00
|
|
|
*
|
2010-07-22 18:57:08 +00:00
|
|
|
* accept a new TCP stream connection
|
2009-11-02 22:43:19 +00:00
|
|
|
*/
|
|
|
|
int
|
|
|
|
iperf_tcp_accept(struct iperf_test * test)
|
|
|
|
{
|
2010-07-22 18:57:08 +00:00
|
|
|
int s;
|
|
|
|
int rbuf = ACCESS_DENIED;
|
|
|
|
char cookie[COOKIE_SIZE];
|
2009-11-02 22:43:19 +00:00
|
|
|
socklen_t len;
|
|
|
|
struct sockaddr_in addr;
|
|
|
|
|
|
|
|
len = sizeof(addr);
|
2010-07-22 23:26:38 +00:00
|
|
|
if ((s = accept(test->listener, (struct sockaddr *) &addr, &len)) < 0) {
|
2010-07-22 18:57:08 +00:00
|
|
|
i_errno = IESTREAMCONNECT;
|
|
|
|
return (-1);
|
2010-06-21 15:08:47 +00:00
|
|
|
}
|
2009-11-02 22:43:19 +00:00
|
|
|
|
2010-07-22 18:57:08 +00:00
|
|
|
if (Nread(s, cookie, COOKIE_SIZE, Ptcp) < 0) {
|
|
|
|
i_errno = IERECVCOOKIE;
|
|
|
|
return (-1);
|
|
|
|
}
|
|
|
|
|
2010-07-23 18:39:14 +00:00
|
|
|
if (strcmp(test->cookie, cookie) != 0) {
|
2010-07-22 18:57:08 +00:00
|
|
|
if (Nwrite(s, &rbuf, sizeof(char), Ptcp) < 0) {
|
|
|
|
i_errno = IESENDMESSAGE;
|
|
|
|
return (-1);
|
|
|
|
}
|
|
|
|
close(s);
|
|
|
|
}
|
|
|
|
|
|
|
|
return (s);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* iperf_tcp_listen
|
|
|
|
*
|
|
|
|
* start up a listener for TCP stream connections
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
iperf_tcp_listen(struct iperf_test *test)
|
|
|
|
{
|
|
|
|
int s, opt;
|
|
|
|
struct sockaddr_in sa;
|
2010-07-26 21:30:34 +00:00
|
|
|
struct hostent *hent;
|
2010-07-22 23:26:38 +00:00
|
|
|
s = test->listener;
|
2010-07-22 18:57:08 +00:00
|
|
|
|
2010-07-23 18:39:14 +00:00
|
|
|
if (test->no_delay || test->settings->mss) {
|
2010-07-22 18:57:08 +00:00
|
|
|
FD_CLR(s, &test->read_set);
|
|
|
|
close(s);
|
|
|
|
if ((s = socket(AF_INET, SOCK_STREAM, 0)) < 0) {
|
|
|
|
i_errno = IESTREAMLISTEN;
|
|
|
|
return (-1);
|
|
|
|
}
|
|
|
|
if (test->no_delay) {
|
|
|
|
opt = 1;
|
|
|
|
if (setsockopt(s, IPPROTO_TCP, TCP_NODELAY, &opt, sizeof(opt)) < 0) {
|
|
|
|
i_errno = IESETNODELAY;
|
|
|
|
return (-1);
|
|
|
|
}
|
|
|
|
printf(" TCP NODELAY: on\n");
|
|
|
|
}
|
|
|
|
// XXX: Setting MSS is very buggy!
|
2010-07-23 18:39:14 +00:00
|
|
|
if ((opt = test->settings->mss)) {
|
2010-07-22 18:57:08 +00:00
|
|
|
if (setsockopt(s, IPPROTO_TCP, TCP_MAXSEG, &opt, sizeof(opt)) < 0) {
|
|
|
|
i_errno = IESETMSS;
|
|
|
|
return (-1);
|
|
|
|
}
|
|
|
|
printf(" TCP MSS: %d\n", opt);
|
|
|
|
}
|
|
|
|
opt = 1;
|
|
|
|
if (setsockopt(s, SOL_SOCKET, SO_REUSEADDR, &opt, sizeof(opt)) < 0) {
|
|
|
|
i_errno = IEREUSEADDR;
|
|
|
|
return (-1);
|
|
|
|
}
|
2009-11-02 22:43:19 +00:00
|
|
|
|
2010-07-22 18:57:08 +00:00
|
|
|
memset(&sa, 0, sizeof(sa));
|
|
|
|
sa.sin_family = AF_INET;
|
2010-07-26 21:30:34 +00:00
|
|
|
if (test->bind_address) {
|
|
|
|
if ((hent = gethostbyname(test->bind_address)) == NULL) {
|
|
|
|
i_errno = IESTREAMLISTEN;
|
|
|
|
return (-1);
|
|
|
|
}
|
|
|
|
memcpy(&sa.sin_addr, hent->h_addr_list[0], 4);
|
|
|
|
} else {
|
|
|
|
sa.sin_addr.s_addr = htonl(INADDR_ANY);
|
|
|
|
}
|
2010-07-22 18:57:08 +00:00
|
|
|
sa.sin_port = htons(test->server_port);
|
2010-06-23 19:13:37 +00:00
|
|
|
|
2010-07-22 18:57:08 +00:00
|
|
|
if (bind(s, (struct sockaddr *) &sa, sizeof(sa)) < 0) {
|
|
|
|
close(s);
|
|
|
|
i_errno = IESTREAMLISTEN;
|
|
|
|
return (-1);
|
|
|
|
}
|
2010-06-21 15:08:47 +00:00
|
|
|
|
2010-07-22 18:57:08 +00:00
|
|
|
if (listen(s, 5) < 0) {
|
|
|
|
i_errno = IESTREAMLISTEN;
|
|
|
|
return (-1);
|
|
|
|
}
|
|
|
|
|
2010-07-22 23:26:38 +00:00
|
|
|
test->listener = s;
|
2010-07-22 18:57:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return (s);
|
2009-11-02 22:43:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-07-22 18:57:08 +00:00
|
|
|
/* iperf_tcp_connect
|
|
|
|
*
|
|
|
|
* connect to a TCP stream listener
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
iperf_tcp_connect(struct iperf_test *test)
|
|
|
|
{
|
|
|
|
int s, opt;
|
2010-07-26 21:30:34 +00:00
|
|
|
struct sockaddr_in sa, local;
|
2010-07-22 18:57:08 +00:00
|
|
|
struct hostent *hent;
|
|
|
|
|
2010-07-26 21:30:34 +00:00
|
|
|
if ((s = socket(AF_INET, SOCK_STREAM, 0)) < 0) {
|
2010-07-22 18:57:08 +00:00
|
|
|
i_errno = IESTREAMCONNECT;
|
|
|
|
return (-1);
|
|
|
|
}
|
2010-07-26 21:30:34 +00:00
|
|
|
|
|
|
|
if (test->bind_address) {
|
|
|
|
if ((hent = gethostbyname(test->bind_address)) == NULL) {
|
|
|
|
/* XXX: Make IESTREAMBIND? */
|
|
|
|
i_errno = IESTREAMCONNECT;
|
|
|
|
return (-1);
|
|
|
|
}
|
|
|
|
memset(&local, 0, sizeof(local));
|
|
|
|
memcpy(&local.sin_addr, hent->h_addr_list[0], 4);
|
|
|
|
local.sin_family = AF_INET;
|
|
|
|
|
|
|
|
if (bind(s, (struct sockaddr *) &local, sizeof(local)) < 0) {
|
|
|
|
i_errno = IESTREAMCONNECT;
|
|
|
|
return (-1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((hent = gethostbyname(test->server_hostname)) == 0) {
|
2010-07-22 18:57:08 +00:00
|
|
|
i_errno = IESTREAMCONNECT;
|
|
|
|
return (-1);
|
|
|
|
}
|
|
|
|
memset(&sa, 0, sizeof(sa));
|
|
|
|
sa.sin_family = AF_INET;
|
|
|
|
memcpy(&sa.sin_addr.s_addr, hent->h_addr, sizeof(sa.sin_addr.s_addr));
|
|
|
|
sa.sin_port = htons(test->server_port);
|
|
|
|
|
|
|
|
/* Set TCP options */
|
|
|
|
if (test->no_delay) {
|
|
|
|
opt = 1;
|
|
|
|
if (setsockopt(s, IPPROTO_TCP, TCP_NODELAY, &opt, sizeof(opt)) < 0) {
|
|
|
|
i_errno = IESETNODELAY;
|
|
|
|
return (-1);
|
|
|
|
}
|
|
|
|
}
|
2010-07-23 18:39:14 +00:00
|
|
|
if ((opt = test->settings->mss)) {
|
2010-07-22 18:57:08 +00:00
|
|
|
if (setsockopt(s, IPPROTO_TCP, TCP_MAXSEG, &opt, sizeof(opt)) < 0) {
|
|
|
|
i_errno = IESETMSS;
|
|
|
|
return (-1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (connect(s, (struct sockaddr *) &sa, sizeof(sa)) < 0 && errno != EINPROGRESS) {
|
|
|
|
i_errno = IESTREAMCONNECT;
|
|
|
|
return (-1);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Send cookie for verification */
|
2010-07-23 18:39:14 +00:00
|
|
|
if (Nwrite(s, test->cookie, COOKIE_SIZE, Ptcp) < 0) {
|
2010-07-22 18:57:08 +00:00
|
|
|
i_errno = IESENDCOOKIE;
|
|
|
|
return (-1);
|
|
|
|
}
|
|
|
|
|
|
|
|
return (s);
|
|
|
|
}
|
|
|
|
|