2017-12-19 15:49:02 +00:00
|
|
|
/* SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
* Copyright(c) 2010-2014 Intel Corporation
|
2012-12-19 23:00:00 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <inttypes.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <sys/queue.h>
|
|
|
|
#include <stdarg.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <getopt.h>
|
|
|
|
|
|
|
|
#include <netinet/in.h>
|
|
|
|
#include <linux/if.h>
|
|
|
|
#include <linux/if_tun.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <sys/ioctl.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <signal.h>
|
|
|
|
|
|
|
|
#include <rte_common.h>
|
|
|
|
#include <rte_log.h>
|
|
|
|
#include <rte_memory.h>
|
|
|
|
#include <rte_memcpy.h>
|
|
|
|
#include <rte_eal.h>
|
|
|
|
#include <rte_per_lcore.h>
|
|
|
|
#include <rte_launch.h>
|
|
|
|
#include <rte_atomic.h>
|
|
|
|
#include <rte_lcore.h>
|
|
|
|
#include <rte_branch_prediction.h>
|
|
|
|
#include <rte_interrupts.h>
|
2017-10-26 10:06:08 +00:00
|
|
|
#include <rte_bus_pci.h>
|
2012-12-19 23:00:00 +00:00
|
|
|
#include <rte_debug.h>
|
|
|
|
#include <rte_ether.h>
|
|
|
|
#include <rte_ethdev.h>
|
|
|
|
#include <rte_mempool.h>
|
|
|
|
#include <rte_mbuf.h>
|
|
|
|
#include <rte_string_fns.h>
|
|
|
|
#include <rte_cycles.h>
|
|
|
|
#include <rte_malloc.h>
|
|
|
|
#include <rte_kni.h>
|
|
|
|
|
|
|
|
/* Macros for printing using RTE_LOG */
|
|
|
|
#define RTE_LOGTYPE_APP RTE_LOGTYPE_USER1
|
|
|
|
|
|
|
|
/* Max size of a single packet */
|
|
|
|
#define MAX_PACKET_SZ 2048
|
|
|
|
|
2015-04-22 09:57:24 +00:00
|
|
|
/* Size of the data buffer in each mbuf */
|
|
|
|
#define MBUF_DATA_SZ (MAX_PACKET_SZ + RTE_PKTMBUF_HEADROOM)
|
2012-12-19 23:00:00 +00:00
|
|
|
|
|
|
|
/* Number of mbufs in mempool that is created */
|
|
|
|
#define NB_MBUF (8192 * 16)
|
|
|
|
|
|
|
|
/* How many packets to attempt to read from NIC in one go */
|
|
|
|
#define PKT_BURST_SZ 32
|
|
|
|
|
|
|
|
/* How many objects (mbufs) to keep in per-lcore mempool cache */
|
|
|
|
#define MEMPOOL_CACHE_SZ PKT_BURST_SZ
|
|
|
|
|
|
|
|
/* Number of RX ring descriptors */
|
2018-01-12 10:48:44 +00:00
|
|
|
#define NB_RXD 1024
|
2012-12-19 23:00:00 +00:00
|
|
|
|
|
|
|
/* Number of TX ring descriptors */
|
2018-01-12 10:48:44 +00:00
|
|
|
#define NB_TXD 1024
|
2012-12-19 23:00:00 +00:00
|
|
|
|
|
|
|
/* Total octets in ethernet header */
|
|
|
|
#define KNI_ENET_HEADER_SIZE 14
|
|
|
|
|
|
|
|
/* Total octets in the FCS */
|
|
|
|
#define KNI_ENET_FCS_SIZE 4
|
|
|
|
|
2013-06-03 00:00:00 +00:00
|
|
|
#define KNI_US_PER_SECOND 1000000
|
|
|
|
#define KNI_SECOND_PER_DAY 86400
|
|
|
|
|
2013-09-18 10:00:00 +00:00
|
|
|
#define KNI_MAX_KTHREAD 32
|
2012-12-19 23:00:00 +00:00
|
|
|
/*
|
2013-09-18 10:00:00 +00:00
|
|
|
* Structure of port parameters
|
|
|
|
*/
|
|
|
|
struct kni_port_params {
|
2017-09-29 07:17:24 +00:00
|
|
|
uint16_t port_id;/* Port ID */
|
2013-09-18 10:00:00 +00:00
|
|
|
unsigned lcore_rx; /* lcore ID for RX */
|
|
|
|
unsigned lcore_tx; /* lcore ID for TX */
|
|
|
|
uint32_t nb_lcore_k; /* Number of lcores for KNI multi kernel threads */
|
|
|
|
uint32_t nb_kni; /* Number of KNI devices to be created */
|
|
|
|
unsigned lcore_k[KNI_MAX_KTHREAD]; /* lcore ID list for kthreads */
|
|
|
|
struct rte_kni *kni[KNI_MAX_KTHREAD]; /* KNI context pointers */
|
|
|
|
} __rte_cache_aligned;
|
|
|
|
|
|
|
|
static struct kni_port_params *kni_port_params_array[RTE_MAX_ETHPORTS];
|
|
|
|
|
2012-12-19 23:00:00 +00:00
|
|
|
|
|
|
|
/* Options for configuring ethernet port */
|
|
|
|
static struct rte_eth_conf port_conf = {
|
|
|
|
.txmode = {
|
2013-06-03 00:00:00 +00:00
|
|
|
.mq_mode = ETH_MQ_TX_NONE,
|
2012-12-19 23:00:00 +00:00
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Mempool for mbufs */
|
|
|
|
static struct rte_mempool * pktmbuf_pool = NULL;
|
|
|
|
|
|
|
|
/* Mask of enabled ports */
|
|
|
|
static uint32_t ports_mask = 0;
|
2013-09-18 10:00:00 +00:00
|
|
|
/* Ports set in promiscuous mode off by default. */
|
|
|
|
static int promiscuous_on = 0;
|
2018-10-24 22:26:29 +00:00
|
|
|
/* Monitor link status continually. off by default. */
|
|
|
|
static int monitor_links;
|
2012-12-19 23:00:00 +00:00
|
|
|
|
|
|
|
/* Structure type for recording kni interface specific stats */
|
|
|
|
struct kni_interface_stats {
|
|
|
|
/* number of pkts received from NIC, and sent to KNI */
|
|
|
|
uint64_t rx_packets;
|
|
|
|
|
|
|
|
/* number of pkts received from NIC, but failed to send to KNI */
|
|
|
|
uint64_t rx_dropped;
|
|
|
|
|
|
|
|
/* number of pkts received from KNI, and sent to NIC */
|
|
|
|
uint64_t tx_packets;
|
|
|
|
|
|
|
|
/* number of pkts received from KNI, but failed to send to NIC */
|
|
|
|
uint64_t tx_dropped;
|
|
|
|
};
|
|
|
|
|
|
|
|
/* kni device statistics array */
|
|
|
|
static struct kni_interface_stats kni_stats[RTE_MAX_ETHPORTS];
|
|
|
|
|
2017-09-29 07:17:24 +00:00
|
|
|
static int kni_change_mtu(uint16_t port_id, unsigned int new_mtu);
|
|
|
|
static int kni_config_network_interface(uint16_t port_id, uint8_t if_up);
|
2018-01-18 06:12:58 +00:00
|
|
|
static int kni_config_mac_address(uint16_t port_id, uint8_t mac_addr[]);
|
2012-12-19 23:00:00 +00:00
|
|
|
|
2013-06-03 00:00:00 +00:00
|
|
|
static rte_atomic32_t kni_stop = RTE_ATOMIC32_INIT(0);
|
2019-01-15 17:28:02 +00:00
|
|
|
static rte_atomic32_t kni_pause = RTE_ATOMIC32_INIT(0);
|
2013-06-03 00:00:00 +00:00
|
|
|
|
2012-12-19 23:00:00 +00:00
|
|
|
/* Print out statistics on packets handled */
|
|
|
|
static void
|
|
|
|
print_stats(void)
|
|
|
|
{
|
2017-09-29 07:17:24 +00:00
|
|
|
uint16_t i;
|
2012-12-19 23:00:00 +00:00
|
|
|
|
|
|
|
printf("\n**KNI example application statistics**\n"
|
|
|
|
"====== ============== ============ ============ ============ ============\n"
|
|
|
|
" Port Lcore(RX/TX) rx_packets rx_dropped tx_packets tx_dropped\n"
|
|
|
|
"------ -------------- ------------ ------------ ------------ ------------\n");
|
|
|
|
for (i = 0; i < RTE_MAX_ETHPORTS; i++) {
|
2013-09-18 10:00:00 +00:00
|
|
|
if (!kni_port_params_array[i])
|
2012-12-19 23:00:00 +00:00
|
|
|
continue;
|
|
|
|
|
|
|
|
printf("%7d %10u/%2u %13"PRIu64" %13"PRIu64" %13"PRIu64" "
|
|
|
|
"%13"PRIu64"\n", i,
|
2013-09-18 10:00:00 +00:00
|
|
|
kni_port_params_array[i]->lcore_rx,
|
|
|
|
kni_port_params_array[i]->lcore_tx,
|
2012-12-19 23:00:00 +00:00
|
|
|
kni_stats[i].rx_packets,
|
|
|
|
kni_stats[i].rx_dropped,
|
|
|
|
kni_stats[i].tx_packets,
|
|
|
|
kni_stats[i].tx_dropped);
|
|
|
|
}
|
|
|
|
printf("====== ============== ============ ============ ============ ============\n");
|
|
|
|
}
|
|
|
|
|
2013-06-03 00:00:00 +00:00
|
|
|
/* Custom handling of signals to handle stats and kni processing */
|
2012-12-19 23:00:00 +00:00
|
|
|
static void
|
|
|
|
signal_handler(int signum)
|
|
|
|
{
|
|
|
|
/* When we receive a USR1 signal, print stats */
|
|
|
|
if (signum == SIGUSR1) {
|
|
|
|
print_stats();
|
|
|
|
}
|
|
|
|
|
|
|
|
/* When we receive a USR2 signal, reset stats */
|
|
|
|
if (signum == SIGUSR2) {
|
|
|
|
memset(&kni_stats, 0, sizeof(kni_stats));
|
2018-10-24 22:26:30 +00:00
|
|
|
printf("\n** Statistics have been reset **\n");
|
2012-12-19 23:00:00 +00:00
|
|
|
return;
|
|
|
|
}
|
2013-06-03 00:00:00 +00:00
|
|
|
|
2014-02-11 15:35:19 +00:00
|
|
|
/* When we receive a RTMIN or SIGINT signal, stop kni processing */
|
|
|
|
if (signum == SIGRTMIN || signum == SIGINT){
|
2018-10-24 22:26:30 +00:00
|
|
|
printf("\nSIGRTMIN/SIGINT received. KNI processing stopping.\n");
|
2013-06-03 00:00:00 +00:00
|
|
|
rte_atomic32_inc(&kni_stop);
|
|
|
|
return;
|
|
|
|
}
|
2012-12-19 23:00:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
kni_burst_free_mbufs(struct rte_mbuf **pkts, unsigned num)
|
|
|
|
{
|
|
|
|
unsigned i;
|
|
|
|
|
|
|
|
if (pkts == NULL)
|
|
|
|
return;
|
|
|
|
|
|
|
|
for (i = 0; i < num; i++) {
|
|
|
|
rte_pktmbuf_free(pkts[i]);
|
|
|
|
pkts[i] = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Interface to burst rx and enqueue mbufs into rx_q
|
|
|
|
*/
|
|
|
|
static void
|
2013-09-18 10:00:00 +00:00
|
|
|
kni_ingress(struct kni_port_params *p)
|
2012-12-19 23:00:00 +00:00
|
|
|
{
|
2017-09-29 07:17:24 +00:00
|
|
|
uint8_t i;
|
|
|
|
uint16_t port_id;
|
2012-12-19 23:00:00 +00:00
|
|
|
unsigned nb_rx, num;
|
2013-09-18 10:00:00 +00:00
|
|
|
uint32_t nb_kni;
|
2012-12-19 23:00:00 +00:00
|
|
|
struct rte_mbuf *pkts_burst[PKT_BURST_SZ];
|
|
|
|
|
2013-09-18 10:00:00 +00:00
|
|
|
if (p == NULL)
|
2012-12-19 23:00:00 +00:00
|
|
|
return;
|
|
|
|
|
2013-09-18 10:00:00 +00:00
|
|
|
nb_kni = p->nb_kni;
|
|
|
|
port_id = p->port_id;
|
|
|
|
for (i = 0; i < nb_kni; i++) {
|
|
|
|
/* Burst rx from eth */
|
|
|
|
nb_rx = rte_eth_rx_burst(port_id, 0, pkts_burst, PKT_BURST_SZ);
|
|
|
|
if (unlikely(nb_rx > PKT_BURST_SZ)) {
|
|
|
|
RTE_LOG(ERR, APP, "Error receiving from eth\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
/* Burst tx to kni */
|
|
|
|
num = rte_kni_tx_burst(p->kni[i], pkts_burst, nb_rx);
|
2018-10-24 22:26:31 +00:00
|
|
|
if (num)
|
|
|
|
kni_stats[port_id].rx_packets += num;
|
2013-09-18 10:00:00 +00:00
|
|
|
|
|
|
|
rte_kni_handle_request(p->kni[i]);
|
|
|
|
if (unlikely(num < nb_rx)) {
|
|
|
|
/* Free mbufs not tx to kni interface */
|
|
|
|
kni_burst_free_mbufs(&pkts_burst[num], nb_rx - num);
|
|
|
|
kni_stats[port_id].rx_dropped += nb_rx - num;
|
|
|
|
}
|
2012-12-19 23:00:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Interface to dequeue mbufs from tx_q and burst tx
|
|
|
|
*/
|
|
|
|
static void
|
2013-09-18 10:00:00 +00:00
|
|
|
kni_egress(struct kni_port_params *p)
|
2012-12-19 23:00:00 +00:00
|
|
|
{
|
2017-09-29 07:17:24 +00:00
|
|
|
uint8_t i;
|
|
|
|
uint16_t port_id;
|
2012-12-19 23:00:00 +00:00
|
|
|
unsigned nb_tx, num;
|
2013-09-18 10:00:00 +00:00
|
|
|
uint32_t nb_kni;
|
2012-12-19 23:00:00 +00:00
|
|
|
struct rte_mbuf *pkts_burst[PKT_BURST_SZ];
|
|
|
|
|
2013-09-18 10:00:00 +00:00
|
|
|
if (p == NULL)
|
2012-12-19 23:00:00 +00:00
|
|
|
return;
|
|
|
|
|
2013-09-18 10:00:00 +00:00
|
|
|
nb_kni = p->nb_kni;
|
|
|
|
port_id = p->port_id;
|
|
|
|
for (i = 0; i < nb_kni; i++) {
|
|
|
|
/* Burst rx from kni */
|
|
|
|
num = rte_kni_rx_burst(p->kni[i], pkts_burst, PKT_BURST_SZ);
|
|
|
|
if (unlikely(num > PKT_BURST_SZ)) {
|
|
|
|
RTE_LOG(ERR, APP, "Error receiving from KNI\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
/* Burst tx to eth */
|
|
|
|
nb_tx = rte_eth_tx_burst(port_id, 0, pkts_burst, (uint16_t)num);
|
2018-10-24 22:26:31 +00:00
|
|
|
if (nb_tx)
|
|
|
|
kni_stats[port_id].tx_packets += nb_tx;
|
2013-09-18 10:00:00 +00:00
|
|
|
if (unlikely(nb_tx < num)) {
|
|
|
|
/* Free mbufs not tx to NIC */
|
|
|
|
kni_burst_free_mbufs(&pkts_burst[nb_tx], num - nb_tx);
|
|
|
|
kni_stats[port_id].tx_dropped += num - nb_tx;
|
|
|
|
}
|
2012-12-19 23:00:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-06-03 00:00:00 +00:00
|
|
|
static int
|
2012-12-19 23:00:00 +00:00
|
|
|
main_loop(__rte_unused void *arg)
|
|
|
|
{
|
2018-04-05 15:33:20 +00:00
|
|
|
uint16_t i;
|
2013-09-18 10:00:00 +00:00
|
|
|
int32_t f_stop;
|
2019-01-15 17:28:02 +00:00
|
|
|
int32_t f_pause;
|
2012-12-19 23:00:00 +00:00
|
|
|
const unsigned lcore_id = rte_lcore_id();
|
2013-09-18 10:00:00 +00:00
|
|
|
enum lcore_rxtx {
|
|
|
|
LCORE_NONE,
|
|
|
|
LCORE_RX,
|
|
|
|
LCORE_TX,
|
|
|
|
LCORE_MAX
|
|
|
|
};
|
|
|
|
enum lcore_rxtx flag = LCORE_NONE;
|
|
|
|
|
2018-04-05 15:33:20 +00:00
|
|
|
RTE_ETH_FOREACH_DEV(i) {
|
2013-09-18 10:00:00 +00:00
|
|
|
if (!kni_port_params_array[i])
|
|
|
|
continue;
|
|
|
|
if (kni_port_params_array[i]->lcore_rx == (uint8_t)lcore_id) {
|
|
|
|
flag = LCORE_RX;
|
|
|
|
break;
|
|
|
|
} else if (kni_port_params_array[i]->lcore_tx ==
|
|
|
|
(uint8_t)lcore_id) {
|
|
|
|
flag = LCORE_TX;
|
|
|
|
break;
|
2012-12-19 23:00:00 +00:00
|
|
|
}
|
|
|
|
}
|
2013-06-03 00:00:00 +00:00
|
|
|
|
2013-09-18 10:00:00 +00:00
|
|
|
if (flag == LCORE_RX) {
|
|
|
|
RTE_LOG(INFO, APP, "Lcore %u is reading from port %d\n",
|
|
|
|
kni_port_params_array[i]->lcore_rx,
|
|
|
|
kni_port_params_array[i]->port_id);
|
|
|
|
while (1) {
|
|
|
|
f_stop = rte_atomic32_read(&kni_stop);
|
2019-01-15 17:28:02 +00:00
|
|
|
f_pause = rte_atomic32_read(&kni_pause);
|
2013-09-18 10:00:00 +00:00
|
|
|
if (f_stop)
|
|
|
|
break;
|
2019-01-15 17:28:02 +00:00
|
|
|
if (f_pause)
|
|
|
|
continue;
|
2013-09-18 10:00:00 +00:00
|
|
|
kni_ingress(kni_port_params_array[i]);
|
|
|
|
}
|
|
|
|
} else if (flag == LCORE_TX) {
|
|
|
|
RTE_LOG(INFO, APP, "Lcore %u is writing to port %d\n",
|
|
|
|
kni_port_params_array[i]->lcore_tx,
|
|
|
|
kni_port_params_array[i]->port_id);
|
|
|
|
while (1) {
|
|
|
|
f_stop = rte_atomic32_read(&kni_stop);
|
2019-01-15 17:28:02 +00:00
|
|
|
f_pause = rte_atomic32_read(&kni_pause);
|
2013-09-18 10:00:00 +00:00
|
|
|
if (f_stop)
|
|
|
|
break;
|
2019-01-15 17:28:02 +00:00
|
|
|
if (f_pause)
|
|
|
|
continue;
|
2013-09-18 10:00:00 +00:00
|
|
|
kni_egress(kni_port_params_array[i]);
|
|
|
|
}
|
|
|
|
} else
|
|
|
|
RTE_LOG(INFO, APP, "Lcore %u has nothing to do\n", lcore_id);
|
2013-06-03 00:00:00 +00:00
|
|
|
|
|
|
|
return 0;
|
2012-12-19 23:00:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Display usage instructions */
|
|
|
|
static void
|
|
|
|
print_usage(const char *prgname)
|
|
|
|
{
|
2018-10-24 22:26:29 +00:00
|
|
|
RTE_LOG(INFO, APP, "\nUsage: %s [EAL options] -- -p PORTMASK -P -m "
|
2013-09-18 10:00:00 +00:00
|
|
|
"[--config (port,lcore_rx,lcore_tx,lcore_kthread...)"
|
|
|
|
"[,(port,lcore_rx,lcore_tx,lcore_kthread...)]]\n"
|
2013-06-03 00:00:00 +00:00
|
|
|
" -p PORTMASK: hex bitmask of ports to use\n"
|
2013-09-18 10:00:00 +00:00
|
|
|
" -P : enable promiscuous mode\n"
|
2018-10-24 22:26:29 +00:00
|
|
|
" -m : enable monitoring of port carrier state\n"
|
2013-09-18 10:00:00 +00:00
|
|
|
" --config (port,lcore_rx,lcore_tx,lcore_kthread...): "
|
|
|
|
"port and lcore configurations\n",
|
2012-12-19 23:00:00 +00:00
|
|
|
prgname);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Convert string to unsigned number. 0 is returned if error occurs */
|
|
|
|
static uint32_t
|
|
|
|
parse_unsigned(const char *portmask)
|
|
|
|
{
|
|
|
|
char *end = NULL;
|
|
|
|
unsigned long num;
|
|
|
|
|
|
|
|
num = strtoul(portmask, &end, 16);
|
|
|
|
if ((portmask[0] == '\0') || (end == NULL) || (*end != '\0'))
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
return (uint32_t)num;
|
|
|
|
}
|
|
|
|
|
2013-09-18 10:00:00 +00:00
|
|
|
static void
|
|
|
|
print_config(void)
|
2012-12-19 23:00:00 +00:00
|
|
|
{
|
2013-09-18 10:00:00 +00:00
|
|
|
uint32_t i, j;
|
|
|
|
struct kni_port_params **p = kni_port_params_array;
|
2012-12-19 23:00:00 +00:00
|
|
|
|
2013-09-18 10:00:00 +00:00
|
|
|
for (i = 0; i < RTE_MAX_ETHPORTS; i++) {
|
|
|
|
if (!p[i])
|
2012-12-19 23:00:00 +00:00
|
|
|
continue;
|
2013-09-18 10:00:00 +00:00
|
|
|
RTE_LOG(DEBUG, APP, "Port ID: %d\n", p[i]->port_id);
|
|
|
|
RTE_LOG(DEBUG, APP, "Rx lcore ID: %u, Tx lcore ID: %u\n",
|
|
|
|
p[i]->lcore_rx, p[i]->lcore_tx);
|
|
|
|
for (j = 0; j < p[i]->nb_lcore_k; j++)
|
|
|
|
RTE_LOG(DEBUG, APP, "Kernel thread lcore ID: %u\n",
|
|
|
|
p[i]->lcore_k[j]);
|
|
|
|
}
|
|
|
|
}
|
2012-12-19 23:00:00 +00:00
|
|
|
|
2013-09-18 10:00:00 +00:00
|
|
|
static int
|
|
|
|
parse_config(const char *arg)
|
|
|
|
{
|
|
|
|
const char *p, *p0 = arg;
|
|
|
|
char s[256], *end;
|
|
|
|
unsigned size;
|
|
|
|
enum fieldnames {
|
|
|
|
FLD_PORT = 0,
|
|
|
|
FLD_LCORE_RX,
|
|
|
|
FLD_LCORE_TX,
|
|
|
|
_NUM_FLD = KNI_MAX_KTHREAD + 3,
|
|
|
|
};
|
|
|
|
int i, j, nb_token;
|
|
|
|
char *str_fld[_NUM_FLD];
|
|
|
|
unsigned long int_fld[_NUM_FLD];
|
2017-09-29 07:17:24 +00:00
|
|
|
uint16_t port_id, nb_kni_port_params = 0;
|
2013-09-18 10:00:00 +00:00
|
|
|
|
|
|
|
memset(&kni_port_params_array, 0, sizeof(kni_port_params_array));
|
|
|
|
while (((p = strchr(p0, '(')) != NULL) &&
|
|
|
|
nb_kni_port_params < RTE_MAX_ETHPORTS) {
|
|
|
|
p++;
|
|
|
|
if ((p0 = strchr(p, ')')) == NULL)
|
|
|
|
goto fail;
|
|
|
|
size = p0 - p;
|
|
|
|
if (size >= sizeof(s)) {
|
|
|
|
printf("Invalid config parameters\n");
|
|
|
|
goto fail;
|
2012-12-19 23:00:00 +00:00
|
|
|
}
|
2014-06-24 18:15:28 +00:00
|
|
|
snprintf(s, sizeof(s), "%.*s", size, p);
|
2013-09-18 10:00:00 +00:00
|
|
|
nb_token = rte_strsplit(s, sizeof(s), str_fld, _NUM_FLD, ',');
|
|
|
|
if (nb_token <= FLD_LCORE_TX) {
|
|
|
|
printf("Invalid config parameters\n");
|
|
|
|
goto fail;
|
2012-12-19 23:00:00 +00:00
|
|
|
}
|
2013-09-18 10:00:00 +00:00
|
|
|
for (i = 0; i < nb_token; i++) {
|
|
|
|
errno = 0;
|
|
|
|
int_fld[i] = strtoul(str_fld[i], &end, 0);
|
|
|
|
if (errno != 0 || end == str_fld[i]) {
|
|
|
|
printf("Invalid config parameters\n");
|
|
|
|
goto fail;
|
2012-12-19 23:00:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-09-18 10:00:00 +00:00
|
|
|
i = 0;
|
2017-09-29 07:17:24 +00:00
|
|
|
port_id = int_fld[i++];
|
2013-09-18 10:00:00 +00:00
|
|
|
if (port_id >= RTE_MAX_ETHPORTS) {
|
|
|
|
printf("Port ID %d could not exceed the maximum %d\n",
|
|
|
|
port_id, RTE_MAX_ETHPORTS);
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
if (kni_port_params_array[port_id]) {
|
|
|
|
printf("Port %d has been configured\n", port_id);
|
|
|
|
goto fail;
|
|
|
|
}
|
2014-06-03 23:42:50 +00:00
|
|
|
kni_port_params_array[port_id] =
|
2015-02-14 14:59:10 +00:00
|
|
|
rte_zmalloc("KNI_port_params",
|
|
|
|
sizeof(struct kni_port_params), RTE_CACHE_LINE_SIZE);
|
2013-09-18 10:00:00 +00:00
|
|
|
kni_port_params_array[port_id]->port_id = port_id;
|
|
|
|
kni_port_params_array[port_id]->lcore_rx =
|
|
|
|
(uint8_t)int_fld[i++];
|
|
|
|
kni_port_params_array[port_id]->lcore_tx =
|
|
|
|
(uint8_t)int_fld[i++];
|
|
|
|
if (kni_port_params_array[port_id]->lcore_rx >= RTE_MAX_LCORE ||
|
|
|
|
kni_port_params_array[port_id]->lcore_tx >= RTE_MAX_LCORE) {
|
|
|
|
printf("lcore_rx %u or lcore_tx %u ID could not "
|
|
|
|
"exceed the maximum %u\n",
|
|
|
|
kni_port_params_array[port_id]->lcore_rx,
|
|
|
|
kni_port_params_array[port_id]->lcore_tx,
|
|
|
|
(unsigned)RTE_MAX_LCORE);
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
for (j = 0; i < nb_token && j < KNI_MAX_KTHREAD; i++, j++)
|
|
|
|
kni_port_params_array[port_id]->lcore_k[j] =
|
|
|
|
(uint8_t)int_fld[i];
|
|
|
|
kni_port_params_array[port_id]->nb_lcore_k = j;
|
2012-12-19 23:00:00 +00:00
|
|
|
}
|
2013-09-18 10:00:00 +00:00
|
|
|
print_config();
|
2012-12-19 23:00:00 +00:00
|
|
|
|
|
|
|
return 0;
|
2013-09-18 10:00:00 +00:00
|
|
|
|
|
|
|
fail:
|
|
|
|
for (i = 0; i < RTE_MAX_ETHPORTS; i++) {
|
|
|
|
if (kni_port_params_array[i]) {
|
|
|
|
rte_free(kni_port_params_array[i]);
|
|
|
|
kni_port_params_array[i] = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return -1;
|
2012-12-19 23:00:00 +00:00
|
|
|
}
|
|
|
|
|
2013-09-18 10:00:00 +00:00
|
|
|
static int
|
|
|
|
validate_parameters(uint32_t portmask)
|
2012-12-19 23:00:00 +00:00
|
|
|
{
|
2013-09-18 10:00:00 +00:00
|
|
|
uint32_t i;
|
2012-12-19 23:00:00 +00:00
|
|
|
|
2013-09-18 10:00:00 +00:00
|
|
|
if (!portmask) {
|
|
|
|
printf("No port configured in port mask\n");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < RTE_MAX_ETHPORTS; i++) {
|
|
|
|
if (((portmask & (1 << i)) && !kni_port_params_array[i]) ||
|
|
|
|
(!(portmask & (1 << i)) && kni_port_params_array[i]))
|
|
|
|
rte_exit(EXIT_FAILURE, "portmask is not consistent "
|
|
|
|
"to port ids specified in --config\n");
|
|
|
|
|
|
|
|
if (kni_port_params_array[i] && !rte_lcore_is_enabled(\
|
|
|
|
(unsigned)(kni_port_params_array[i]->lcore_rx)))
|
|
|
|
rte_exit(EXIT_FAILURE, "lcore id %u for "
|
|
|
|
"port %d receiving not enabled\n",
|
|
|
|
kni_port_params_array[i]->lcore_rx,
|
|
|
|
kni_port_params_array[i]->port_id);
|
|
|
|
|
|
|
|
if (kni_port_params_array[i] && !rte_lcore_is_enabled(\
|
|
|
|
(unsigned)(kni_port_params_array[i]->lcore_tx)))
|
|
|
|
rte_exit(EXIT_FAILURE, "lcore id %u for "
|
|
|
|
"port %d transmitting not enabled\n",
|
|
|
|
kni_port_params_array[i]->lcore_tx,
|
|
|
|
kni_port_params_array[i]->port_id);
|
2014-06-03 23:42:50 +00:00
|
|
|
|
2012-12-19 23:00:00 +00:00
|
|
|
}
|
|
|
|
|
2013-09-18 10:00:00 +00:00
|
|
|
return 0;
|
2012-12-19 23:00:00 +00:00
|
|
|
}
|
|
|
|
|
2013-09-18 10:00:00 +00:00
|
|
|
#define CMDLINE_OPT_CONFIG "config"
|
|
|
|
|
2012-12-19 23:00:00 +00:00
|
|
|
/* Parse the arguments given in the command line of the application */
|
2013-09-18 10:00:00 +00:00
|
|
|
static int
|
2012-12-19 23:00:00 +00:00
|
|
|
parse_args(int argc, char **argv)
|
|
|
|
{
|
2013-09-18 10:00:00 +00:00
|
|
|
int opt, longindex, ret = 0;
|
2012-12-19 23:00:00 +00:00
|
|
|
const char *prgname = argv[0];
|
2013-09-18 10:00:00 +00:00
|
|
|
static struct option longopts[] = {
|
|
|
|
{CMDLINE_OPT_CONFIG, required_argument, NULL, 0},
|
|
|
|
{NULL, 0, NULL, 0}
|
|
|
|
};
|
2012-12-19 23:00:00 +00:00
|
|
|
|
|
|
|
/* Disable printing messages within getopt() */
|
|
|
|
opterr = 0;
|
|
|
|
|
|
|
|
/* Parse command line */
|
2018-10-24 22:26:29 +00:00
|
|
|
while ((opt = getopt_long(argc, argv, "p:Pm", longopts,
|
2013-09-18 10:00:00 +00:00
|
|
|
&longindex)) != EOF) {
|
2012-12-19 23:00:00 +00:00
|
|
|
switch (opt) {
|
|
|
|
case 'p':
|
|
|
|
ports_mask = parse_unsigned(optarg);
|
|
|
|
break;
|
2013-09-18 10:00:00 +00:00
|
|
|
case 'P':
|
|
|
|
promiscuous_on = 1;
|
|
|
|
break;
|
2018-10-24 22:26:29 +00:00
|
|
|
case 'm':
|
|
|
|
monitor_links = 1;
|
|
|
|
break;
|
2013-09-18 10:00:00 +00:00
|
|
|
case 0:
|
|
|
|
if (!strncmp(longopts[longindex].name,
|
|
|
|
CMDLINE_OPT_CONFIG,
|
|
|
|
sizeof(CMDLINE_OPT_CONFIG))) {
|
|
|
|
ret = parse_config(optarg);
|
|
|
|
if (ret) {
|
|
|
|
printf("Invalid config\n");
|
|
|
|
print_usage(prgname);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
2012-12-19 23:00:00 +00:00
|
|
|
default:
|
|
|
|
print_usage(prgname);
|
2013-09-18 10:00:00 +00:00
|
|
|
rte_exit(EXIT_FAILURE, "Invalid option specified\n");
|
2012-12-19 23:00:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Check that options were parsed ok */
|
2013-09-18 10:00:00 +00:00
|
|
|
if (validate_parameters(ports_mask) < 0) {
|
2012-12-19 23:00:00 +00:00
|
|
|
print_usage(prgname);
|
2013-09-18 10:00:00 +00:00
|
|
|
rte_exit(EXIT_FAILURE, "Invalid parameters\n");
|
2012-12-19 23:00:00 +00:00
|
|
|
}
|
2013-09-18 10:00:00 +00:00
|
|
|
|
|
|
|
return ret;
|
2012-12-19 23:00:00 +00:00
|
|
|
}
|
|
|
|
|
2014-10-21 10:46:55 +00:00
|
|
|
/* Initialize KNI subsystem */
|
|
|
|
static void
|
|
|
|
init_kni(void)
|
|
|
|
{
|
|
|
|
unsigned int num_of_kni_ports = 0, i;
|
|
|
|
struct kni_port_params **params = kni_port_params_array;
|
|
|
|
|
|
|
|
/* Calculate the maximum number of KNI interfaces that will be used */
|
|
|
|
for (i = 0; i < RTE_MAX_ETHPORTS; i++) {
|
|
|
|
if (kni_port_params_array[i]) {
|
|
|
|
num_of_kni_ports += (params[i]->nb_lcore_k ?
|
|
|
|
params[i]->nb_lcore_k : 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Invoke rte KNI init to preallocate the ports */
|
|
|
|
rte_kni_init(num_of_kni_ports);
|
|
|
|
}
|
|
|
|
|
2012-12-19 23:00:00 +00:00
|
|
|
/* Initialise a single port on an Ethernet device */
|
|
|
|
static void
|
2017-10-13 13:17:00 +00:00
|
|
|
init_port(uint16_t port)
|
2012-12-19 23:00:00 +00:00
|
|
|
{
|
|
|
|
int ret;
|
2017-05-25 15:57:54 +00:00
|
|
|
uint16_t nb_rxd = NB_RXD;
|
|
|
|
uint16_t nb_txd = NB_TXD;
|
2017-12-26 09:23:10 +00:00
|
|
|
struct rte_eth_dev_info dev_info;
|
|
|
|
struct rte_eth_rxconf rxq_conf;
|
|
|
|
struct rte_eth_txconf txq_conf;
|
|
|
|
struct rte_eth_conf local_port_conf = port_conf;
|
2012-12-19 23:00:00 +00:00
|
|
|
|
|
|
|
/* Initialise device and RX/TX queues */
|
|
|
|
RTE_LOG(INFO, APP, "Initialising port %u ...\n", (unsigned)port);
|
|
|
|
fflush(stdout);
|
2017-12-26 09:23:10 +00:00
|
|
|
rte_eth_dev_info_get(port, &dev_info);
|
|
|
|
if (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_MBUF_FAST_FREE)
|
|
|
|
local_port_conf.txmode.offloads |=
|
|
|
|
DEV_TX_OFFLOAD_MBUF_FAST_FREE;
|
|
|
|
ret = rte_eth_dev_configure(port, 1, 1, &local_port_conf);
|
2012-12-19 23:00:00 +00:00
|
|
|
if (ret < 0)
|
2013-09-18 10:00:00 +00:00
|
|
|
rte_exit(EXIT_FAILURE, "Could not configure port%u (%d)\n",
|
2012-12-19 23:00:00 +00:00
|
|
|
(unsigned)port, ret);
|
|
|
|
|
2017-05-25 15:57:54 +00:00
|
|
|
ret = rte_eth_dev_adjust_nb_rx_tx_desc(port, &nb_rxd, &nb_txd);
|
|
|
|
if (ret < 0)
|
|
|
|
rte_exit(EXIT_FAILURE, "Could not adjust number of descriptors "
|
|
|
|
"for port%u (%d)\n", (unsigned)port, ret);
|
|
|
|
|
2017-12-26 09:23:10 +00:00
|
|
|
rxq_conf = dev_info.default_rxconf;
|
|
|
|
rxq_conf.offloads = local_port_conf.rxmode.offloads;
|
2017-05-25 15:57:54 +00:00
|
|
|
ret = rte_eth_rx_queue_setup(port, 0, nb_rxd,
|
2017-12-26 09:23:10 +00:00
|
|
|
rte_eth_dev_socket_id(port), &rxq_conf, pktmbuf_pool);
|
2012-12-19 23:00:00 +00:00
|
|
|
if (ret < 0)
|
|
|
|
rte_exit(EXIT_FAILURE, "Could not setup up RX queue for "
|
2013-09-18 10:00:00 +00:00
|
|
|
"port%u (%d)\n", (unsigned)port, ret);
|
2012-12-19 23:00:00 +00:00
|
|
|
|
2017-12-26 09:23:10 +00:00
|
|
|
txq_conf = dev_info.default_txconf;
|
|
|
|
txq_conf.offloads = local_port_conf.txmode.offloads;
|
2017-05-25 15:57:54 +00:00
|
|
|
ret = rte_eth_tx_queue_setup(port, 0, nb_txd,
|
2017-12-26 09:23:10 +00:00
|
|
|
rte_eth_dev_socket_id(port), &txq_conf);
|
2012-12-19 23:00:00 +00:00
|
|
|
if (ret < 0)
|
|
|
|
rte_exit(EXIT_FAILURE, "Could not setup up TX queue for "
|
2013-09-18 10:00:00 +00:00
|
|
|
"port%u (%d)\n", (unsigned)port, ret);
|
2012-12-19 23:00:00 +00:00
|
|
|
|
|
|
|
ret = rte_eth_dev_start(port);
|
|
|
|
if (ret < 0)
|
2013-09-18 10:00:00 +00:00
|
|
|
rte_exit(EXIT_FAILURE, "Could not start port%u (%d)\n",
|
2012-12-19 23:00:00 +00:00
|
|
|
(unsigned)port, ret);
|
|
|
|
|
2013-09-18 10:00:00 +00:00
|
|
|
if (promiscuous_on)
|
|
|
|
rte_eth_promiscuous_enable(port);
|
2012-12-19 23:00:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Check the link status of all ports in up to 9s, and print them finally */
|
|
|
|
static void
|
2018-04-05 15:33:20 +00:00
|
|
|
check_all_ports_link_status(uint32_t port_mask)
|
2012-12-19 23:00:00 +00:00
|
|
|
{
|
|
|
|
#define CHECK_INTERVAL 100 /* 100ms */
|
|
|
|
#define MAX_CHECK_TIME 90 /* 9s (90 * 100ms) in total */
|
2017-10-13 13:17:00 +00:00
|
|
|
uint16_t portid;
|
|
|
|
uint8_t count, all_ports_up, print_flag = 0;
|
2012-12-19 23:00:00 +00:00
|
|
|
struct rte_eth_link link;
|
|
|
|
|
2013-09-18 10:00:00 +00:00
|
|
|
printf("\nChecking link status\n");
|
2012-12-19 23:00:00 +00:00
|
|
|
fflush(stdout);
|
|
|
|
for (count = 0; count <= MAX_CHECK_TIME; count++) {
|
|
|
|
all_ports_up = 1;
|
2018-04-05 15:33:20 +00:00
|
|
|
RTE_ETH_FOREACH_DEV(portid) {
|
2012-12-19 23:00:00 +00:00
|
|
|
if ((port_mask & (1 << portid)) == 0)
|
|
|
|
continue;
|
|
|
|
memset(&link, 0, sizeof(link));
|
|
|
|
rte_eth_link_get_nowait(portid, &link);
|
|
|
|
/* print link status if flag set */
|
|
|
|
if (print_flag == 1) {
|
|
|
|
if (link.link_status)
|
2017-10-13 13:17:00 +00:00
|
|
|
printf(
|
|
|
|
"Port%d Link Up - speed %uMbps - %s\n",
|
|
|
|
portid, link.link_speed,
|
2012-12-19 23:00:00 +00:00
|
|
|
(link.link_duplex == ETH_LINK_FULL_DUPLEX) ?
|
|
|
|
("full-duplex") : ("half-duplex\n"));
|
|
|
|
else
|
2017-10-13 13:17:00 +00:00
|
|
|
printf("Port %d Link Down\n", portid);
|
2012-12-19 23:00:00 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
/* clear all_ports_up flag if any link down */
|
2016-03-31 22:12:24 +00:00
|
|
|
if (link.link_status == ETH_LINK_DOWN) {
|
2012-12-19 23:00:00 +00:00
|
|
|
all_ports_up = 0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/* after finally printing all link status, get out */
|
|
|
|
if (print_flag == 1)
|
|
|
|
break;
|
|
|
|
|
|
|
|
if (all_ports_up == 0) {
|
|
|
|
printf(".");
|
|
|
|
fflush(stdout);
|
|
|
|
rte_delay_ms(CHECK_INTERVAL);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* set the print_flag if all ports up or timeout */
|
|
|
|
if (all_ports_up == 1 || count == (MAX_CHECK_TIME - 1)) {
|
|
|
|
print_flag = 1;
|
|
|
|
printf("done\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-24 22:26:29 +00:00
|
|
|
static void
|
|
|
|
log_link_state(struct rte_kni *kni, int prev, struct rte_eth_link *link)
|
|
|
|
{
|
|
|
|
if (kni == NULL || link == NULL)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (prev == ETH_LINK_DOWN && link->link_status == ETH_LINK_UP) {
|
|
|
|
RTE_LOG(INFO, APP, "%s NIC Link is Up %d Mbps %s %s.\n",
|
|
|
|
rte_kni_get_name(kni),
|
|
|
|
link->link_speed,
|
|
|
|
link->link_autoneg ? "(AutoNeg)" : "(Fixed)",
|
|
|
|
link->link_duplex ? "Full Duplex" : "Half Duplex");
|
|
|
|
} else if (prev == ETH_LINK_UP && link->link_status == ETH_LINK_DOWN) {
|
|
|
|
RTE_LOG(INFO, APP, "%s NIC Link is Down.\n",
|
|
|
|
rte_kni_get_name(kni));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Monitor the link status of all ports and update the
|
|
|
|
* corresponding KNI interface(s)
|
|
|
|
*/
|
|
|
|
static void *
|
|
|
|
monitor_all_ports_link_status(void *arg)
|
|
|
|
{
|
|
|
|
uint16_t portid;
|
|
|
|
struct rte_eth_link link;
|
|
|
|
unsigned int i;
|
|
|
|
struct kni_port_params **p = kni_port_params_array;
|
|
|
|
int prev;
|
|
|
|
(void) arg;
|
|
|
|
|
|
|
|
while (monitor_links) {
|
|
|
|
rte_delay_ms(500);
|
|
|
|
RTE_ETH_FOREACH_DEV(portid) {
|
|
|
|
if ((ports_mask & (1 << portid)) == 0)
|
|
|
|
continue;
|
|
|
|
memset(&link, 0, sizeof(link));
|
|
|
|
rte_eth_link_get_nowait(portid, &link);
|
|
|
|
for (i = 0; i < p[portid]->nb_kni; i++) {
|
|
|
|
prev = rte_kni_update_link(p[portid]->kni[i],
|
|
|
|
link.link_status);
|
|
|
|
log_link_state(p[portid]->kni[i], prev, &link);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2012-12-19 23:00:00 +00:00
|
|
|
/* Callback for request of changing MTU */
|
|
|
|
static int
|
2017-09-29 07:17:24 +00:00
|
|
|
kni_change_mtu(uint16_t port_id, unsigned int new_mtu)
|
2012-12-19 23:00:00 +00:00
|
|
|
{
|
|
|
|
int ret;
|
2017-12-26 09:23:10 +00:00
|
|
|
uint16_t nb_rxd = NB_RXD;
|
2012-12-19 23:00:00 +00:00
|
|
|
struct rte_eth_conf conf;
|
2017-12-26 09:23:10 +00:00
|
|
|
struct rte_eth_dev_info dev_info;
|
|
|
|
struct rte_eth_rxconf rxq_conf;
|
2012-12-19 23:00:00 +00:00
|
|
|
|
2018-04-05 15:33:21 +00:00
|
|
|
if (!rte_eth_dev_is_valid_port(port_id)) {
|
2012-12-19 23:00:00 +00:00
|
|
|
RTE_LOG(ERR, APP, "Invalid port id %d\n", port_id);
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
RTE_LOG(INFO, APP, "Change MTU of port %d to %u\n", port_id, new_mtu);
|
|
|
|
|
|
|
|
/* Stop specific port */
|
|
|
|
rte_eth_dev_stop(port_id);
|
|
|
|
|
|
|
|
memcpy(&conf, &port_conf, sizeof(conf));
|
|
|
|
/* Set new MTU */
|
2019-05-21 16:13:05 +00:00
|
|
|
if (new_mtu > RTE_ETHER_MAX_LEN)
|
2017-12-26 09:23:10 +00:00
|
|
|
conf.rxmode.offloads |= DEV_RX_OFFLOAD_JUMBO_FRAME;
|
2014-06-03 23:42:50 +00:00
|
|
|
else
|
2017-12-26 09:23:10 +00:00
|
|
|
conf.rxmode.offloads &= ~DEV_RX_OFFLOAD_JUMBO_FRAME;
|
2012-12-19 23:00:00 +00:00
|
|
|
|
|
|
|
/* mtu + length of header + length of FCS = max pkt length */
|
|
|
|
conf.rxmode.max_rx_pkt_len = new_mtu + KNI_ENET_HEADER_SIZE +
|
|
|
|
KNI_ENET_FCS_SIZE;
|
|
|
|
ret = rte_eth_dev_configure(port_id, 1, 1, &conf);
|
|
|
|
if (ret < 0) {
|
|
|
|
RTE_LOG(ERR, APP, "Fail to reconfigure port %d\n", port_id);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2017-12-26 09:23:10 +00:00
|
|
|
ret = rte_eth_dev_adjust_nb_rx_tx_desc(port_id, &nb_rxd, NULL);
|
|
|
|
if (ret < 0)
|
|
|
|
rte_exit(EXIT_FAILURE, "Could not adjust number of descriptors "
|
|
|
|
"for port%u (%d)\n", (unsigned int)port_id,
|
|
|
|
ret);
|
|
|
|
|
|
|
|
rte_eth_dev_info_get(port_id, &dev_info);
|
|
|
|
rxq_conf = dev_info.default_rxconf;
|
|
|
|
rxq_conf.offloads = conf.rxmode.offloads;
|
|
|
|
ret = rte_eth_rx_queue_setup(port_id, 0, nb_rxd,
|
|
|
|
rte_eth_dev_socket_id(port_id), &rxq_conf, pktmbuf_pool);
|
|
|
|
if (ret < 0) {
|
|
|
|
RTE_LOG(ERR, APP, "Fail to setup Rx queue of port %d\n",
|
|
|
|
port_id);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2012-12-19 23:00:00 +00:00
|
|
|
/* Restart specific port */
|
|
|
|
ret = rte_eth_dev_start(port_id);
|
|
|
|
if (ret < 0) {
|
|
|
|
RTE_LOG(ERR, APP, "Fail to restart port %d\n", port_id);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Callback for request of configuring network interface up/down */
|
|
|
|
static int
|
2017-09-29 07:17:24 +00:00
|
|
|
kni_config_network_interface(uint16_t port_id, uint8_t if_up)
|
2012-12-19 23:00:00 +00:00
|
|
|
{
|
|
|
|
int ret = 0;
|
|
|
|
|
2018-04-05 15:33:21 +00:00
|
|
|
if (!rte_eth_dev_is_valid_port(port_id)) {
|
2012-12-19 23:00:00 +00:00
|
|
|
RTE_LOG(ERR, APP, "Invalid port id %d\n", port_id);
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
RTE_LOG(INFO, APP, "Configure network interface of %d %s\n",
|
|
|
|
port_id, if_up ? "up" : "down");
|
|
|
|
|
2019-01-15 17:28:02 +00:00
|
|
|
rte_atomic32_inc(&kni_pause);
|
|
|
|
|
2012-12-19 23:00:00 +00:00
|
|
|
if (if_up != 0) { /* Configure network interface up */
|
|
|
|
rte_eth_dev_stop(port_id);
|
|
|
|
ret = rte_eth_dev_start(port_id);
|
|
|
|
} else /* Configure network interface down */
|
|
|
|
rte_eth_dev_stop(port_id);
|
|
|
|
|
2019-01-15 17:28:02 +00:00
|
|
|
rte_atomic32_dec(&kni_pause);
|
|
|
|
|
2012-12-19 23:00:00 +00:00
|
|
|
if (ret < 0)
|
|
|
|
RTE_LOG(ERR, APP, "Failed to start port %d\n", port_id);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2018-01-18 06:12:58 +00:00
|
|
|
static void
|
2019-05-21 16:13:03 +00:00
|
|
|
print_ethaddr(const char *name, struct rte_ether_addr *mac_addr)
|
2018-01-18 06:12:58 +00:00
|
|
|
{
|
2019-05-21 16:13:05 +00:00
|
|
|
char buf[RTE_ETHER_ADDR_FMT_SIZE];
|
|
|
|
rte_ether_format_addr(buf, RTE_ETHER_ADDR_FMT_SIZE, mac_addr);
|
2018-01-18 06:12:58 +00:00
|
|
|
RTE_LOG(INFO, APP, "\t%s%s\n", name, buf);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Callback for request of configuring mac address */
|
|
|
|
static int
|
|
|
|
kni_config_mac_address(uint16_t port_id, uint8_t mac_addr[])
|
|
|
|
{
|
|
|
|
int ret = 0;
|
|
|
|
|
2018-04-05 15:33:21 +00:00
|
|
|
if (!rte_eth_dev_is_valid_port(port_id)) {
|
2018-01-18 06:12:58 +00:00
|
|
|
RTE_LOG(ERR, APP, "Invalid port id %d\n", port_id);
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
RTE_LOG(INFO, APP, "Configure mac address of %d\n", port_id);
|
2019-05-21 16:13:03 +00:00
|
|
|
print_ethaddr("Address:", (struct rte_ether_addr *)mac_addr);
|
2018-01-18 06:12:58 +00:00
|
|
|
|
|
|
|
ret = rte_eth_dev_default_mac_addr_set(port_id,
|
2019-05-21 16:13:03 +00:00
|
|
|
(struct rte_ether_addr *)mac_addr);
|
2018-01-18 06:12:58 +00:00
|
|
|
if (ret < 0)
|
|
|
|
RTE_LOG(ERR, APP, "Failed to config mac_addr for port %d\n",
|
|
|
|
port_id);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2013-09-18 10:00:00 +00:00
|
|
|
static int
|
2017-09-29 07:17:24 +00:00
|
|
|
kni_alloc(uint16_t port_id)
|
2013-09-18 10:00:00 +00:00
|
|
|
{
|
|
|
|
uint8_t i;
|
|
|
|
struct rte_kni *kni;
|
|
|
|
struct rte_kni_conf conf;
|
|
|
|
struct kni_port_params **params = kni_port_params_array;
|
|
|
|
|
|
|
|
if (port_id >= RTE_MAX_ETHPORTS || !params[port_id])
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
params[port_id]->nb_kni = params[port_id]->nb_lcore_k ?
|
|
|
|
params[port_id]->nb_lcore_k : 1;
|
|
|
|
|
|
|
|
for (i = 0; i < params[port_id]->nb_kni; i++) {
|
|
|
|
/* Clear conf at first */
|
|
|
|
memset(&conf, 0, sizeof(conf));
|
|
|
|
if (params[port_id]->nb_lcore_k) {
|
2014-06-24 18:15:28 +00:00
|
|
|
snprintf(conf.name, RTE_KNI_NAMESIZE,
|
2013-09-18 10:00:00 +00:00
|
|
|
"vEth%u_%u", port_id, i);
|
|
|
|
conf.core_id = params[port_id]->lcore_k[i];
|
|
|
|
conf.force_bind = 1;
|
|
|
|
} else
|
2014-06-24 18:15:28 +00:00
|
|
|
snprintf(conf.name, RTE_KNI_NAMESIZE,
|
2013-09-18 10:00:00 +00:00
|
|
|
"vEth%u", port_id);
|
2017-09-29 07:17:24 +00:00
|
|
|
conf.group_id = port_id;
|
2013-09-18 10:00:00 +00:00
|
|
|
conf.mbuf_size = MAX_PACKET_SZ;
|
|
|
|
/*
|
|
|
|
* The first KNI device associated to a port
|
|
|
|
* is the master, for multiple kernel thread
|
|
|
|
* environment.
|
|
|
|
*/
|
|
|
|
if (i == 0) {
|
|
|
|
struct rte_kni_ops ops;
|
|
|
|
struct rte_eth_dev_info dev_info;
|
|
|
|
|
|
|
|
memset(&dev_info, 0, sizeof(dev_info));
|
|
|
|
rte_eth_dev_info_get(port_id, &dev_info);
|
2017-10-16 11:45:47 +00:00
|
|
|
|
2018-01-18 06:12:58 +00:00
|
|
|
/* Get the interface default mac address */
|
|
|
|
rte_eth_macaddr_get(port_id,
|
2019-05-21 16:13:03 +00:00
|
|
|
(struct rte_ether_addr *)&conf.mac_addr);
|
2013-09-18 10:00:00 +00:00
|
|
|
|
2018-01-18 06:13:00 +00:00
|
|
|
rte_eth_dev_get_mtu(port_id, &conf.mtu);
|
|
|
|
|
2013-09-18 10:00:00 +00:00
|
|
|
memset(&ops, 0, sizeof(ops));
|
|
|
|
ops.port_id = port_id;
|
|
|
|
ops.change_mtu = kni_change_mtu;
|
|
|
|
ops.config_network_if = kni_config_network_interface;
|
2018-01-18 06:12:58 +00:00
|
|
|
ops.config_mac_address = kni_config_mac_address;
|
2013-09-18 10:00:00 +00:00
|
|
|
|
|
|
|
kni = rte_kni_alloc(pktmbuf_pool, &conf, &ops);
|
|
|
|
} else
|
|
|
|
kni = rte_kni_alloc(pktmbuf_pool, &conf, NULL);
|
|
|
|
|
|
|
|
if (!kni)
|
|
|
|
rte_exit(EXIT_FAILURE, "Fail to create kni for "
|
|
|
|
"port: %d\n", port_id);
|
|
|
|
params[port_id]->kni[i] = kni;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2017-09-29 07:17:24 +00:00
|
|
|
kni_free_kni(uint16_t port_id)
|
2013-09-18 10:00:00 +00:00
|
|
|
{
|
|
|
|
uint8_t i;
|
|
|
|
struct kni_port_params **p = kni_port_params_array;
|
|
|
|
|
|
|
|
if (port_id >= RTE_MAX_ETHPORTS || !p[port_id])
|
|
|
|
return -1;
|
|
|
|
|
2015-08-05 21:58:04 +00:00
|
|
|
for (i = 0; i < p[port_id]->nb_kni; i++) {
|
2016-05-09 09:38:30 +00:00
|
|
|
if (rte_kni_release(p[port_id]->kni[i]))
|
|
|
|
printf("Fail to release kni\n");
|
2015-08-05 21:58:04 +00:00
|
|
|
p[port_id]->kni[i] = NULL;
|
2013-09-18 10:00:00 +00:00
|
|
|
}
|
|
|
|
rte_eth_dev_stop(port_id);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-12-19 23:00:00 +00:00
|
|
|
/* Initialise ports/queues etc. and start main loop on each core */
|
|
|
|
int
|
|
|
|
main(int argc, char** argv)
|
|
|
|
{
|
|
|
|
int ret;
|
2017-09-29 07:17:24 +00:00
|
|
|
uint16_t nb_sys_ports, port;
|
2013-09-18 10:00:00 +00:00
|
|
|
unsigned i;
|
2018-10-24 22:26:29 +00:00
|
|
|
void *retval;
|
|
|
|
pthread_t kni_link_tid;
|
2018-10-24 22:26:30 +00:00
|
|
|
int pid;
|
2012-12-19 23:00:00 +00:00
|
|
|
|
|
|
|
/* Associate signal_hanlder function with USR signals */
|
|
|
|
signal(SIGUSR1, signal_handler);
|
|
|
|
signal(SIGUSR2, signal_handler);
|
2013-06-03 00:00:00 +00:00
|
|
|
signal(SIGRTMIN, signal_handler);
|
2014-02-11 15:35:19 +00:00
|
|
|
signal(SIGINT, signal_handler);
|
2012-12-19 23:00:00 +00:00
|
|
|
|
|
|
|
/* Initialise EAL */
|
|
|
|
ret = rte_eal_init(argc, argv);
|
|
|
|
if (ret < 0)
|
2013-09-18 10:00:00 +00:00
|
|
|
rte_exit(EXIT_FAILURE, "Could not initialise EAL (%d)\n", ret);
|
2012-12-19 23:00:00 +00:00
|
|
|
argc -= ret;
|
|
|
|
argv += ret;
|
|
|
|
|
|
|
|
/* Parse application arguments (after the EAL ones) */
|
2013-09-18 10:00:00 +00:00
|
|
|
ret = parse_args(argc, argv);
|
|
|
|
if (ret < 0)
|
|
|
|
rte_exit(EXIT_FAILURE, "Could not parse input parameters\n");
|
2012-12-19 23:00:00 +00:00
|
|
|
|
|
|
|
/* Create the mbuf pool */
|
2015-04-22 09:57:24 +00:00
|
|
|
pktmbuf_pool = rte_pktmbuf_pool_create("mbuf_pool", NB_MBUF,
|
|
|
|
MEMPOOL_CACHE_SZ, 0, MBUF_DATA_SZ, rte_socket_id());
|
2012-12-19 23:00:00 +00:00
|
|
|
if (pktmbuf_pool == NULL) {
|
2013-09-18 10:00:00 +00:00
|
|
|
rte_exit(EXIT_FAILURE, "Could not initialise mbuf pool\n");
|
2012-12-19 23:00:00 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Get number of ports found in scan */
|
2018-04-05 15:33:22 +00:00
|
|
|
nb_sys_ports = rte_eth_dev_count_avail();
|
2012-12-19 23:00:00 +00:00
|
|
|
if (nb_sys_ports == 0)
|
2014-11-07 11:48:59 +00:00
|
|
|
rte_exit(EXIT_FAILURE, "No supported Ethernet device found\n");
|
2012-12-19 23:00:00 +00:00
|
|
|
|
2013-09-18 10:00:00 +00:00
|
|
|
/* Check if the configured port ID is valid */
|
|
|
|
for (i = 0; i < RTE_MAX_ETHPORTS; i++)
|
2018-04-05 15:33:21 +00:00
|
|
|
if (kni_port_params_array[i] && !rte_eth_dev_is_valid_port(i))
|
2013-09-18 10:00:00 +00:00
|
|
|
rte_exit(EXIT_FAILURE, "Configured invalid "
|
|
|
|
"port ID %u\n", i);
|
2012-12-19 23:00:00 +00:00
|
|
|
|
2014-10-21 10:46:55 +00:00
|
|
|
/* Initialize KNI subsystem */
|
|
|
|
init_kni();
|
|
|
|
|
2012-12-19 23:00:00 +00:00
|
|
|
/* Initialise each port */
|
2018-04-05 15:33:20 +00:00
|
|
|
RTE_ETH_FOREACH_DEV(port) {
|
2012-12-19 23:00:00 +00:00
|
|
|
/* Skip ports that are not enabled */
|
2013-09-18 10:00:00 +00:00
|
|
|
if (!(ports_mask & (1 << port)))
|
2012-12-19 23:00:00 +00:00
|
|
|
continue;
|
|
|
|
init_port(port);
|
|
|
|
|
|
|
|
if (port >= RTE_MAX_ETHPORTS)
|
|
|
|
rte_exit(EXIT_FAILURE, "Can not use more than "
|
|
|
|
"%d ports for kni\n", RTE_MAX_ETHPORTS);
|
|
|
|
|
2013-09-18 10:00:00 +00:00
|
|
|
kni_alloc(port);
|
2012-12-19 23:00:00 +00:00
|
|
|
}
|
2018-04-05 15:33:20 +00:00
|
|
|
check_all_ports_link_status(ports_mask);
|
2012-12-19 23:00:00 +00:00
|
|
|
|
2018-10-24 22:26:30 +00:00
|
|
|
pid = getpid();
|
|
|
|
RTE_LOG(INFO, APP, "========================\n");
|
|
|
|
RTE_LOG(INFO, APP, "KNI Running\n");
|
|
|
|
RTE_LOG(INFO, APP, "kill -SIGUSR1 %d\n", pid);
|
|
|
|
RTE_LOG(INFO, APP, " Show KNI Statistics.\n");
|
|
|
|
RTE_LOG(INFO, APP, "kill -SIGUSR2 %d\n", pid);
|
|
|
|
RTE_LOG(INFO, APP, " Zero KNI Statistics.\n");
|
|
|
|
RTE_LOG(INFO, APP, "========================\n");
|
|
|
|
fflush(stdout);
|
|
|
|
|
2018-10-24 22:26:29 +00:00
|
|
|
ret = rte_ctrl_thread_create(&kni_link_tid,
|
|
|
|
"KNI link status check", NULL,
|
|
|
|
monitor_all_ports_link_status, NULL);
|
|
|
|
if (ret < 0)
|
|
|
|
rte_exit(EXIT_FAILURE,
|
|
|
|
"Could not create link status thread!\n");
|
|
|
|
|
2012-12-19 23:00:00 +00:00
|
|
|
/* Launch per-lcore function on every lcore */
|
|
|
|
rte_eal_mp_remote_launch(main_loop, NULL, CALL_MASTER);
|
|
|
|
RTE_LCORE_FOREACH_SLAVE(i) {
|
|
|
|
if (rte_eal_wait_lcore(i) < 0)
|
|
|
|
return -1;
|
|
|
|
}
|
2018-10-24 22:26:29 +00:00
|
|
|
monitor_links = 0;
|
|
|
|
pthread_join(kni_link_tid, &retval);
|
2012-12-19 23:00:00 +00:00
|
|
|
|
2013-09-18 10:00:00 +00:00
|
|
|
/* Release resources */
|
2018-04-05 15:33:20 +00:00
|
|
|
RTE_ETH_FOREACH_DEV(port) {
|
2013-09-18 10:00:00 +00:00
|
|
|
if (!(ports_mask & (1 << port)))
|
|
|
|
continue;
|
|
|
|
kni_free_kni(port);
|
2013-06-03 00:00:00 +00:00
|
|
|
}
|
2013-09-18 10:00:00 +00:00
|
|
|
for (i = 0; i < RTE_MAX_ETHPORTS; i++)
|
|
|
|
if (kni_port_params_array[i]) {
|
|
|
|
rte_free(kni_port_params_array[i]);
|
|
|
|
kni_port_params_array[i] = NULL;
|
|
|
|
}
|
2013-06-03 00:00:00 +00:00
|
|
|
|
2012-12-19 23:00:00 +00:00
|
|
|
return 0;
|
|
|
|
}
|