#include <stdint.h>
#include <stdio.h>
#include <inttypes.h>
#include <stdarg.h>
#include <errno.h>
#include <sys/queue.h>
#include <stdlib.h>
#include <getopt.h>
#include <string.h>
#include "common.h"
#define PKT_READ_SIZE ((uint16_t)32)
static uint8_t client_id = 0;
struct mbuf_queue {
#define MBQ_CAPACITY 32
uint16_t top;
};
static uint8_t output_ports[RTE_MAX_ETHPORTS];
static struct mbuf_queue output_bufs[RTE_MAX_ETHPORTS];
static volatile struct tx_stats *tx_stats;
static void
usage(const char *progname)
{
printf("Usage: %s [EAL args] -- -n <client_id>\n\n", progname);
}
static int
parse_client_num(const char *client)
{
char *end = NULL;
unsigned long temp;
if (client == NULL || *client == '\0')
return -1;
temp = strtoul(client, &end, 10);
if (end == NULL || *end != '\0')
return -1;
client_id = (uint8_t)temp;
return 0;
}
static int
parse_app_args(int argc, char *argv[])
{
int option_index, opt;
char **argvopt = argv;
const char *progname = NULL;
static struct option lgopts[] = {
{NULL, 0, 0, 0 }
};
progname = argv[0];
while ((opt = getopt_long(argc, argvopt, "n:", lgopts,
&option_index)) != EOF){
switch (opt){
case 'n':
if (parse_client_num(optarg) != 0){
usage(progname);
return -1;
}
break;
default:
usage(progname);
return -1;
}
}
return 0;
}
static void configure_output_ports(const struct port_info *ports)
{
int i;
if (ports->num_ports > RTE_MAX_ETHPORTS)
rte_exit(EXIT_FAILURE,
"Too many ethernet ports. RTE_MAX_ETHPORTS = %u\n",
(unsigned)RTE_MAX_ETHPORTS);
for (i = 0; i < ports->num_ports - 1; i+=2){
uint8_t p1 = ports->id[i];
uint8_t p2 = ports->id[i+1];
output_ports[p1] = p2;
output_ports[p2] = p1;
}
}
static inline void
send_packets(uint8_t
port)
{
uint16_t i, sent;
struct mbuf_queue *mbq = &output_bufs[port];
return;
for (i = sent; i < mbq->top; i++)
tx_stats->tx_drop[port] += (mbq->top - sent);
}
tx_stats->tx[port] += sent;
mbq->top = 0;
}
static inline void
enqueue_packet(
struct rte_mbuf *buf, uint8_t port)
{
struct mbuf_queue *mbq = &output_bufs[port];
mbq->bufs[mbq->top++] = buf;
if (mbq->top == MBQ_CAPACITY)
send_packets(port);
}
static void
{
const uint8_t in_port = buf->
port;
const uint8_t out_port = output_ports[in_port];
enqueue_packet(buf, out_port);
}
int
main(int argc, char *argv[])
{
struct port_info *ports;
int need_flush = 0;
int retval;
void *pkts[PKT_READ_SIZE];
return -1;
argc -= retval;
argv += retval;
if (parse_app_args(argc, argv) < 0)
rte_exit(EXIT_FAILURE,
"Invalid command-line arguments\n");
rte_exit(EXIT_FAILURE,
"No Ethernet ports - bye\n");
if (rx_ring == NULL)
rte_exit(EXIT_FAILURE,
"Cannot get RX ring - is server process running?\n");
if (mp == NULL)
rte_exit(EXIT_FAILURE,
"Cannot get mempool for mbufs\n");
if (mz == NULL)
rte_exit(EXIT_FAILURE,
"Cannot get port info structure\n");
tx_stats = &(ports->tx_stats[client_id]);
configure_output_ports(ports);
RTE_LOG(INFO, APP,
"Finished Process Init.\n");
printf("\nClient process %d handling packets\n", client_id);
printf("[Press Ctrl-C to quit ...]\n");
for (;;) {
uint16_t i, rx_pkts = PKT_READ_SIZE;
uint8_t port;
while (rx_pkts > 0 &&
if (need_flush)
for (port = 0; port < ports->num_ports; port++)
send_packets(ports->id[port]);
need_flush = 0;
continue;
}
for (i = 0; i < rx_pkts; i++)
handle_packet(pkts[i]);
need_flush = 1;
}
}