2018-07-06 00:03:54 +02:00
|
|
|
/****************************************************************************
|
|
|
|
* examples/tcpblaster/tcpblaster-server.c
|
|
|
|
*
|
|
|
|
* Copyright (C) 2018 Gregory Nutt. All rights reserved.
|
|
|
|
* Author: Gregory Nutt <gnutt@nuttx.org>
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
*
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in
|
|
|
|
* the documentation and/or other materials provided with the
|
|
|
|
* distribution.
|
|
|
|
* 3. Neither the name Gregory Nutt nor the names of its contributors may be
|
|
|
|
* used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
|
|
|
|
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
|
|
|
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
|
|
|
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
|
|
|
|
* OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
|
|
|
|
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
|
|
|
|
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
* POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Included Files
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/socket.h>
|
2018-09-10 20:13:18 +02:00
|
|
|
#include <poll.h>
|
2018-07-06 00:03:54 +02:00
|
|
|
#include <netinet/in.h>
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
2018-07-06 00:39:31 +02:00
|
|
|
#include <time.h>
|
2018-07-06 00:03:54 +02:00
|
|
|
#include <unistd.h>
|
|
|
|
#include <errno.h>
|
|
|
|
|
|
|
|
#include <arpa/inet.h>
|
|
|
|
|
|
|
|
#include "tcpblaster.h"
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Public Functions
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
void tcpblaster_server(void)
|
|
|
|
{
|
|
|
|
#ifdef CONFIG_EXAMPLES_TCPBLASTER_IPv6
|
|
|
|
struct sockaddr_in6 myaddr;
|
|
|
|
#else
|
|
|
|
struct sockaddr_in myaddr;
|
|
|
|
#endif
|
|
|
|
#ifdef TCPBLASTER_HAVE_SOLINGER
|
|
|
|
struct linger ling;
|
|
|
|
#endif
|
|
|
|
struct timespec start;
|
|
|
|
unsigned long recvtotal;
|
|
|
|
socklen_t addrlen;
|
2020-02-25 02:00:08 +01:00
|
|
|
char *buffer;
|
|
|
|
int groupcount;
|
2018-07-06 00:03:54 +02:00
|
|
|
int recvcount;
|
|
|
|
int listensd;
|
|
|
|
int acceptsd;
|
|
|
|
int nbytesread;
|
|
|
|
int optval;
|
2020-02-25 02:00:08 +01:00
|
|
|
char timebuff[100];
|
|
|
|
|
|
|
|
setbuf(stdout, NULL);
|
2018-07-06 00:03:54 +02:00
|
|
|
|
|
|
|
/* Allocate a BIG buffer */
|
|
|
|
|
2020-02-10 20:26:47 +01:00
|
|
|
buffer = (FAR char *)malloc(SENDSIZE);
|
2018-07-06 00:03:54 +02:00
|
|
|
if (!buffer)
|
|
|
|
{
|
|
|
|
printf("server: failed to allocate buffer\n");
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Create a new TCP socket */
|
|
|
|
|
|
|
|
listensd = socket(PF_INETX, SOCK_STREAM, 0);
|
|
|
|
if (listensd < 0)
|
|
|
|
{
|
|
|
|
printf("server: socket failure: %d\n", errno);
|
|
|
|
goto errout_with_buffer;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Set socket to reuse address */
|
|
|
|
|
|
|
|
optval = 1;
|
2020-02-10 20:26:47 +01:00
|
|
|
if (setsockopt(listensd, SOL_SOCKET, SO_REUSEADDR, (FAR void *)&optval,
|
|
|
|
sizeof(int)) < 0)
|
2018-07-06 00:03:54 +02:00
|
|
|
{
|
|
|
|
printf("server: setsockopt SO_REUSEADDR failure: %d\n", errno);
|
|
|
|
goto errout_with_listensd;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Bind the socket to a local address */
|
|
|
|
|
|
|
|
#ifdef CONFIG_EXAMPLES_TCPBLASTER_IPv6
|
|
|
|
|
2020-03-08 17:31:44 +01:00
|
|
|
myaddr.sin6_family = AF_INET6;
|
|
|
|
myaddr.sin6_port = HTONS(CONFIG_EXAMPLES_TCPBLASTER_SERVER_PORTNO);
|
2020-02-10 20:26:47 +01:00
|
|
|
#if defined(CONFIG_EXAMPLES_TCPBLASTER_LOOPBACK) && !defined(CONFIG_NET_LOOPBACK)
|
2020-03-30 07:56:01 +02:00
|
|
|
memcpy(myaddr.sin6_addr.s6_addr, g_tcpblasterserver_ipv6, 16);
|
2018-07-06 00:03:54 +02:00
|
|
|
#else
|
2020-03-30 07:56:01 +02:00
|
|
|
memset(myaddr.sin6_addr.s6_addr, 0, 16);
|
2018-07-06 00:03:54 +02:00
|
|
|
#endif
|
|
|
|
addrlen = sizeof(struct sockaddr_in6);
|
|
|
|
|
2020-03-08 17:31:44 +01:00
|
|
|
printf("Binding to IPv6 Address: "
|
2020-03-30 07:56:01 +02:00
|
|
|
"%02x%02x:%02x%02x:%02x%02x:%02x%02x:"
|
|
|
|
"%02x%02x:%02x%02x:%02x%02x:%02x%02x\n",
|
|
|
|
myaddr.sin6_addr.s6_addr[0], myaddr.sin6_addr.s6_addr[1],
|
|
|
|
myaddr.sin6_addr.s6_addr[2], myaddr.sin6_addr.s6_addr[3],
|
|
|
|
myaddr.sin6_addr.s6_addr[4], myaddr.sin6_addr.s6_addr[5],
|
|
|
|
myaddr.sin6_addr.s6_addr[6], myaddr.sin6_addr.s6_addr[7],
|
|
|
|
myaddr.sin6_addr.s6_addr[8], myaddr.sin6_addr.s6_addr[9],
|
|
|
|
myaddr.sin6_addr.s6_addr[10], myaddr.sin6_addr.s6_addr[11],
|
|
|
|
myaddr.sin6_addr.s6_addr[12], myaddr.sin6_addr.s6_addr[13],
|
|
|
|
myaddr.sin6_addr.s6_addr[14], myaddr.sin6_addr.s6_addr[15]);
|
2018-07-06 00:03:54 +02:00
|
|
|
#else
|
2020-03-08 17:31:44 +01:00
|
|
|
myaddr.sin_family = AF_INET;
|
|
|
|
myaddr.sin_port = HTONS(CONFIG_EXAMPLES_TCPBLASTER_SERVER_PORTNO);
|
2018-07-06 00:03:54 +02:00
|
|
|
|
2020-02-10 20:26:47 +01:00
|
|
|
#if defined(CONFIG_EXAMPLES_TCPBLASTER_LOOPBACK) && !defined(CONFIG_NET_LOOPBACK)
|
2018-07-06 00:03:54 +02:00
|
|
|
myaddr.sin_addr.s_addr = (in_addr_t)g_tcpblasterserver_ipv4;
|
|
|
|
#else
|
|
|
|
myaddr.sin_addr.s_addr = INADDR_ANY;
|
|
|
|
#endif
|
|
|
|
addrlen = sizeof(struct sockaddr_in);
|
|
|
|
|
|
|
|
printf("Binding to IPv4 Address: %08lx\n",
|
|
|
|
(unsigned long)myaddr.sin_addr.s_addr);
|
|
|
|
#endif
|
|
|
|
|
2020-02-10 20:26:47 +01:00
|
|
|
if (bind(listensd, (FAR struct sockaddr *)&myaddr, addrlen) < 0)
|
2018-07-06 00:03:54 +02:00
|
|
|
{
|
|
|
|
printf("server: bind failure: %d\n", errno);
|
|
|
|
goto errout_with_listensd;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Listen for connections on the bound TCP socket */
|
|
|
|
|
|
|
|
if (listen(listensd, 5) < 0)
|
|
|
|
{
|
|
|
|
printf("server: listen failure %d\n", errno);
|
|
|
|
goto errout_with_listensd;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Accept only one connection */
|
|
|
|
|
|
|
|
printf("server: Accepting connections on port %d\n",
|
|
|
|
CONFIG_EXAMPLES_TCPBLASTER_SERVER_PORTNO);
|
2020-02-10 20:26:47 +01:00
|
|
|
acceptsd = accept(listensd, (FAR struct sockaddr *)&myaddr, &addrlen);
|
2018-07-06 00:03:54 +02:00
|
|
|
if (acceptsd < 0)
|
|
|
|
{
|
|
|
|
printf("server: accept failure: %d\n", errno);
|
|
|
|
goto errout_with_listensd;
|
|
|
|
}
|
|
|
|
|
|
|
|
printf("server: Connection accepted -- receiving\n");
|
|
|
|
|
|
|
|
/* Configure to "linger" until all data is sent when the socket is closed */
|
|
|
|
|
|
|
|
#ifdef TCPBLASTER_HAVE_SOLINGER
|
|
|
|
ling.l_onoff = 1;
|
|
|
|
ling.l_linger = 30; /* timeout is seconds */
|
|
|
|
|
2020-03-08 17:31:44 +01:00
|
|
|
if (setsockopt(acceptsd, SOL_SOCKET, SO_LINGER, &ling, sizeof(ling)) < 0)
|
2018-07-06 00:03:54 +02:00
|
|
|
{
|
|
|
|
printf("server: setsockopt SO_LINGER failure: %d\n", errno);
|
|
|
|
goto errout_with_acceptsd;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Then receive data forever */
|
|
|
|
|
|
|
|
recvcount = 0;
|
|
|
|
recvtotal = 0;
|
2020-02-25 02:00:08 +01:00
|
|
|
groupcount = 0;
|
2018-07-06 00:03:54 +02:00
|
|
|
|
2020-01-02 13:09:50 +01:00
|
|
|
clock_gettime(CLOCK_REALTIME, &start);
|
2018-07-06 00:39:31 +02:00
|
|
|
|
2018-07-06 00:03:54 +02:00
|
|
|
for (; ; )
|
|
|
|
{
|
2018-09-10 20:13:18 +02:00
|
|
|
#ifdef CONFIG_EXAMPLES_TCPBLASTER_POLLIN
|
|
|
|
struct pollfd fds[1];
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
memset(fds, 0, 1 * sizeof(struct pollfd));
|
|
|
|
fds[0].fd = acceptsd;
|
|
|
|
fds[0].events = POLLIN | POLLHUP;
|
|
|
|
|
|
|
|
/* Wait until we can receive data or until the connection is lost */
|
|
|
|
|
|
|
|
ret = poll(fds, 1, -1);
|
|
|
|
if (ret < 0)
|
|
|
|
{
|
|
|
|
printf("server: ERROR poll failed: %d\n", errno);
|
|
|
|
goto errout_with_acceptsd;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((fds[0].revents & POLLHUP) != 0)
|
|
|
|
{
|
|
|
|
printf("server: WARNING poll returned POLLHUP\n");
|
|
|
|
goto errout_with_acceptsd;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2018-07-06 00:03:54 +02:00
|
|
|
nbytesread = recv(acceptsd, buffer, SENDSIZE, 0);
|
|
|
|
if (nbytesread < 0)
|
|
|
|
{
|
|
|
|
printf("server: recv failed: %d\n", errno);
|
|
|
|
goto errout_with_acceptsd;
|
|
|
|
}
|
|
|
|
else if (nbytesread == 0)
|
|
|
|
{
|
|
|
|
printf("server: The client broke the connection\n");
|
|
|
|
goto errout_with_acceptsd;
|
|
|
|
}
|
|
|
|
|
|
|
|
recvtotal += nbytesread;
|
|
|
|
|
2020-02-25 02:00:08 +01:00
|
|
|
if (++recvcount >= GROUPSIZE)
|
2018-07-06 00:03:54 +02:00
|
|
|
{
|
|
|
|
struct timespec elapsed;
|
|
|
|
struct timespec curr;
|
|
|
|
float fkbsent;
|
|
|
|
float felapsed;
|
|
|
|
|
2020-01-02 13:09:50 +01:00
|
|
|
clock_gettime(CLOCK_REALTIME, &curr);
|
2018-07-06 00:03:54 +02:00
|
|
|
|
|
|
|
elapsed.tv_sec = curr.tv_sec - start.tv_sec;
|
|
|
|
if (curr.tv_nsec >= start.tv_nsec)
|
|
|
|
{
|
|
|
|
elapsed.tv_nsec = curr.tv_nsec - start.tv_nsec;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
unsigned long borrow = 1000000000 - start.tv_nsec;
|
2018-07-06 22:44:26 +02:00
|
|
|
elapsed.tv_sec--;
|
2018-07-06 00:03:54 +02:00
|
|
|
elapsed.tv_nsec = curr.tv_nsec + borrow;
|
|
|
|
}
|
|
|
|
|
2020-03-08 17:31:44 +01:00
|
|
|
strftime(timebuff, 100,
|
|
|
|
"%Y-%m-%d %H:%M:%S.000", localtime(&curr.tv_sec));
|
2020-02-25 02:00:08 +01:00
|
|
|
|
2020-03-08 17:31:44 +01:00
|
|
|
fkbsent = recvtotal / 1024.0f;
|
|
|
|
felapsed = elapsed.tv_sec + elapsed.tv_nsec / 1000000000.0f;
|
|
|
|
printf("[%s] %d: Received %d buffers: %7.1f KB (buffer average"
|
|
|
|
"size: %5.1f KB) in %6.2f seconds (%7.1f KB/second)\n",
|
|
|
|
timebuff, groupcount, recvcount, fkbsent,
|
|
|
|
fkbsent / recvcount, felapsed, fkbsent / felapsed);
|
2018-07-06 00:03:54 +02:00
|
|
|
|
|
|
|
recvcount = 0;
|
|
|
|
recvtotal = 0;
|
2020-02-25 02:00:08 +01:00
|
|
|
groupcount++;
|
2018-07-06 00:03:54 +02:00
|
|
|
|
2020-01-02 13:09:50 +01:00
|
|
|
clock_gettime(CLOCK_REALTIME, &start);
|
2020-02-10 20:26:47 +01:00
|
|
|
}
|
2018-07-06 00:03:54 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
errout_with_acceptsd:
|
|
|
|
close(acceptsd);
|
|
|
|
|
|
|
|
errout_with_listensd:
|
|
|
|
close(listensd);
|
|
|
|
|
|
|
|
errout_with_buffer:
|
|
|
|
free(buffer);
|
|
|
|
exit(1);
|
|
|
|
}
|