#include <signal.h>
#include <getopt.h>
#define RX_DESC_PER_QUEUE 1024
#define TX_DESC_PER_QUEUE 1024
#define MAX_PKTS_BURST 32
#define REORDER_BUFFER_SIZE 8192
#define MBUF_PER_POOL 65535
#define MBUF_POOL_CACHE_SIZE 250
#define RING_SIZE 16384
#define RTE_LOGTYPE_REORDERAPP          RTE_LOGTYPE_USER1
unsigned int portmask;
unsigned int disable_reorder;
volatile uint8_t quit_signal;
struct worker_thread_args {
};
struct send_thread_args {
    struct rte_reorder_buffer *buffer;
};
volatile struct app_stats {
    struct {
        uint64_t rx_pkts;
        uint64_t enqueue_pkts;
        uint64_t enqueue_failed_pkts;
    struct {
        uint64_t dequeue_pkts;
        uint64_t enqueue_pkts;
        uint64_t enqueue_failed_pkts;
    struct {
        uint64_t dequeue_pkts;
        
        uint64_t early_pkts_txtd_woro;
        
        uint64_t early_pkts_tx_failed_woro;
        uint64_t ro_tx_pkts;
        uint64_t ro_tx_failed_pkts;
} app_stats;
static unsigned int
get_last_lcore_id(void)
{
    int i;
    for (i = RTE_MAX_LCORE - 1; i >= 0; i--)
            return i;
    return 0;
}
static unsigned int
get_previous_lcore_id(unsigned int id)
{
    int i;
    for (i = id - 1; i >= 0; i--)
            return i;
    return id;
}
static inline void
pktmbuf_free_bulk(
struct rte_mbuf *mbuf_table[], 
unsigned n)
{
    unsigned int i;
    for (i = 0; i < n; i++)
}
static void
print_usage(const char *prgname)
{
    printf("%s [EAL options] -- -p PORTMASK\n"
            "  -p PORTMASK: hexadecimal bitmask of ports to configure\n",
            prgname);
}
static int
parse_portmask(const char *portmask)
{
    unsigned long pm;
    char *end = NULL;
    
    pm = strtoul(portmask, &end, 16);
    if ((portmask[0] == '\0') || (end == NULL) || (*end != '\0'))
        return -1;
    if (pm == 0)
        return -1;
    return pm;
}
static int
parse_args(int argc, char **argv)
{
    int opt;
    int option_index;
    char **argvopt;
    char *prgname = argv[0];
    static struct option lgopts[] = {
        {"disable-reorder", 0, 0, 0},
        {NULL, 0, 0, 0}
    };
    argvopt = argv;
    while ((opt = getopt_long(argc, argvopt, "p:",
                    lgopts, &option_index)) != EOF) {
        switch (opt) {
        
        case 'p':
            portmask = parse_portmask(optarg);
            if (portmask == 0) {
                printf("invalid portmask\n");
                print_usage(prgname);
                return -1;
            }
            break;
        
        case 0:
            if (!strcmp(lgopts[option_index].name, "disable-reorder")) {
                printf("reorder disabled\n");
                disable_reorder = 1;
            }
            break;
        default:
            print_usage(prgname);
            return -1;
        }
    }
    if (optind <= 1) {
        print_usage(prgname);
        return -1;
    }
    argv[optind-1] = prgname;
    optind = 1; 
    return 0;
}
static void
flush_tx_error_callback(
struct rte_mbuf **unsent, uint16_t count,
    
    app_stats.tx.ro_tx_failed_pkts += count;
    RTE_LOG_DP(DEBUG, REORDERAPP, 
"%s:Packet loss with tx_burst\n", __func__);
 
    pktmbuf_free_bulk(unsent, count);
}
static inline int
    uint16_t port_id;
    
        
        if ((portmask & (1 << port_id)) == 0)
            continue;
    }
    return 0;
}
static inline int
{
    uint16_t port_id;
    int ret;
    
        
        if ((portmask & (1 << port_id)) == 0)
            continue;
        
        if (tx_buffer[port_id] == NULL)
            rte_exit(EXIT_FAILURE, 
"Cannot allocate buffer for tx on port %u\n",
 
                 port_id);
                flush_tx_error_callback, NULL);
        if (ret < 0)
            "Cannot set error callback for tx buffer on port %u\n",
                 port_id);
    }
    return 0;
}
static inline int
configure_eth_port(uint16_t port_id)
{
    const uint16_t rxRings = 1, txRings = 1;
    int ret;
    uint16_t q;
    uint16_t nb_rxd = RX_DESC_PER_QUEUE;
    uint16_t nb_txd = TX_DESC_PER_QUEUE;
        return -1;
    if (ret != 0)
        return ret;
    if (ret != 0)
        return ret;
    for (q = 0; q < rxRings; q++) {
                mbuf_pool);
        if (ret < 0)
            return ret;
    }
    txconf = dev_info.default_txconf;
    for (q = 0; q < txRings; q++) {
        if (ret < 0)
            return ret;
    }
    if (ret < 0)
        return ret;
    printf("Port %u MAC: %02"PRIx8" %02"PRIx8" %02"PRIx8
            " %02"PRIx8" %02"PRIx8" %02"PRIx8"\n",
            port_id,
            addr.addr_bytes[0], addr.addr_bytes[1],
            addr.addr_bytes[2], addr.addr_bytes[3],
            addr.addr_bytes[4], addr.addr_bytes[5]);
    return 0;
}
static void
print_stats(void)
{
    uint16_t i;
    printf("\nRX thread stats:\n");
    printf(" - Pkts rxd:                %"PRIu64"\n",
                        app_stats.rx.rx_pkts);
    printf(" - Pkts enqd to workers ring:       %"PRIu64"\n",
                        app_stats.rx.enqueue_pkts);
    printf("\nWorker thread stats:\n");
    printf(" - Pkts deqd from workers ring:     %"PRIu64"\n",
                        app_stats.wkr.dequeue_pkts);
    printf(" - Pkts enqd to tx ring:        %"PRIu64"\n",
                        app_stats.wkr.enqueue_pkts);
    printf(" - Pkts enq to tx failed:       %"PRIu64"\n",
                        app_stats.wkr.enqueue_failed_pkts);
    printf("\nTX stats:\n");
    printf(" - Pkts deqd from tx ring:      %"PRIu64"\n",
                        app_stats.tx.dequeue_pkts);
    printf(" - Ro Pkts transmitted:         %"PRIu64"\n",
                        app_stats.tx.ro_tx_pkts);
    printf(" - Ro Pkts tx failed:           %"PRIu64"\n",
                        app_stats.tx.ro_tx_failed_pkts);
    printf(" - Pkts transmitted w/o reorder:    %"PRIu64"\n",
                        app_stats.tx.early_pkts_txtd_woro);
    printf(" - Pkts tx failed w/o reorder:      %"PRIu64"\n",
                        app_stats.tx.early_pkts_tx_failed_woro);
        printf("\nPort %u stats:\n", i);
        printf(" - Pkts in:   %"PRIu64"\n", eth_stats.ipackets);
        printf(" - Pkts out:  %"PRIu64"\n", eth_stats.opackets);
        printf(" - In Errs:   %"PRIu64"\n", eth_stats.ierrors);
        printf(" - Out Errs:  %"PRIu64"\n", eth_stats.oerrors);
        printf(" - Mbuf Errs: %"PRIu64"\n", eth_stats.rx_nombuf);
    }
}
static void
int_handler(int sig_num)
{
    printf("Exiting on signal %d\n", sig_num);
    quit_signal = 1;
}
static int
{
    uint32_t seqn = 0;
    uint16_t i, ret = 0;
    uint16_t nb_rx_pkts;
    uint16_t port_id;
    RTE_LOG(INFO, REORDERAPP, 
"%s() started on lcore %u\n", __func__,
 
    while (!quit_signal) {
            if ((portmask & (1 << port_id)) != 0) {
                
                                pkts, MAX_PKTS_BURST);
                if (nb_rx_pkts == 0) {
                    "%s():Received zero packets\n", __func__);
                    continue;
                }
                app_stats.rx.rx_pkts += nb_rx_pkts;
                
                for (i = 0; i < nb_rx_pkts; )
                    pkts[i++]->seqn = seqn++;
                
                        (void *)pkts, nb_rx_pkts, NULL);
                app_stats.rx.enqueue_pkts += ret;
                    app_stats.rx.enqueue_failed_pkts +=
                                    (nb_rx_pkts-ret);
                    pktmbuf_free_bulk(&pkts[ret], nb_rx_pkts - ret);
                }
            }
        }
    }
    return 0;
}
static int
worker_thread(void *args_ptr)
{
    uint16_t i, ret = 0;
    uint16_t burst_size = 0;
    struct worker_thread_args *args;
    struct rte_mbuf *burst_buffer[MAX_PKTS_BURST] = { NULL };
 
    const unsigned xor_val = (nb_ports > 1);
    args = (struct worker_thread_args *) args_ptr;
    ring_in  = args->ring_in;
    ring_out = args->ring_out;
    RTE_LOG(INFO, REORDERAPP, 
"%s() started on lcore %u\n", __func__,
 
    while (!quit_signal) {
        
                (void *)burst_buffer, MAX_PKTS_BURST, NULL);
            continue;
        __sync_fetch_and_add(&app_stats.wkr.dequeue_pkts, burst_size);
        
        for (i = 0; i < burst_size;)
            burst_buffer[i++]->
port ^= xor_val;
        
                burst_size, NULL);
        __sync_fetch_and_add(&app_stats.wkr.enqueue_pkts, ret);
            
            __sync_fetch_and_add(&app_stats.wkr.enqueue_failed_pkts,
                    (int)burst_size - ret);
            pktmbuf_free_bulk(&burst_buffer[ret], burst_size - ret);
        }
    }
    return 0;
}
static int
send_thread(struct send_thread_args *args)
{
    int ret;
    unsigned int i, dret;
    uint16_t nb_dq_mbufs;
    uint8_t outp;
    unsigned sent;
    struct rte_mbuf *rombufs[MAX_PKTS_BURST] = {NULL};
 
    configure_tx_buffers(tx_buffer);
    while (!quit_signal) {
        
                (void *)mbufs, MAX_PKTS_BURST, NULL);
            continue;
        app_stats.tx.dequeue_pkts += nb_dq_mbufs;
        for (i = 0; i < nb_dq_mbufs; i++) {
            
                
                        "%s():Cannot reorder early packet "
                        "direct enqueuing to TX\n", __func__);
                if ((portmask & (1 << outp)) == 0) {
                    continue;
                }
                    app_stats.tx.early_pkts_tx_failed_woro++;
                } else
                    app_stats.tx.early_pkts_txtd_woro++;
            } 
else if (ret == -1 && 
rte_errno == ENOSPC) {
            }
        }
        
        for (i = 0; i < dret; i++) {
            uint8_t outp1;
            outp1 = rombufs[i]->
port;
            
            if ((portmask & (1 << outp1)) == 0) {
                continue;
            }
            outbuf = tx_buffer[outp1];
            if (sent)
                app_stats.tx.ro_tx_pkts += sent;
        }
    }
    free_tx_buffers(tx_buffer);
    return 0;
}
static int
{
    uint32_t i, dqnum;
    uint8_t outp;
    unsigned sent;
    RTE_LOG(INFO, REORDERAPP, 
"%s() started on lcore %u\n", __func__,
 
    configure_tx_buffers(tx_buffer);
    while (!quit_signal) {
        
                (void *)mbufs, MAX_PKTS_BURST, NULL);
            continue;
        app_stats.tx.dequeue_pkts += dqnum;
        for (i = 0; i < dqnum; i++) {
            
            if ((portmask & (1 << outp)) == 0) {
                continue;
            }
            outbuf = tx_buffer[outp];
            if (sent)
                app_stats.tx.ro_tx_pkts += sent;
        }
    }
    return 0;
}
int
main(int argc, char **argv)
{
    int ret;
    unsigned nb_ports;
    unsigned int lcore_id, last_lcore_id, master_lcore_id;
    uint16_t port_id;
    uint16_t nb_ports_available;
    struct worker_thread_args worker_args = {NULL, NULL};
    struct send_thread_args send_args = {NULL, NULL};
    
    signal(SIGINT, int_handler);
    
    if (ret < 0)
        rte_exit(EXIT_FAILURE, 
"Invalid EAL arguments\n");
 
    argc -= ret;
    argv += ret;
    
    ret = parse_args(argc, argv);
    if (ret < 0)
        rte_exit(EXIT_FAILURE, 
"Invalid packet_ordering arguments\n");
 
    
        rte_exit(EXIT_FAILURE, 
"Error, This application needs at " 
                "least 3 logical cores to run:\n"
                "1 lcore for packet RX\n"
                "1 lcore for packet TX\n"
                "and at least 1 lcore for worker threads\n");
    if (nb_ports == 0)
        rte_exit(EXIT_FAILURE, 
"Error: no ethernet ports detected\n");
 
    if (nb_ports != 1 && (nb_ports & 1))
        rte_exit(EXIT_FAILURE, 
"Error: number of ports must be even, except " 
                "when using a single port\n");
            MBUF_POOL_CACHE_SIZE, 0, RTE_MBUF_DEFAULT_BUF_SIZE,
    if (mbuf_pool == NULL)
    nb_ports_available = nb_ports;
    
        
        if ((portmask & (1 << port_id)) == 0) {
            printf("\nSkipping disabled port %d\n", port_id);
            nb_ports_available--;
            continue;
        }
        
        printf("Initializing port %u... done\n", port_id);
        if (configure_eth_port(port_id) != 0)
            rte_exit(EXIT_FAILURE, 
"Cannot initialize port %"PRIu8
"\n",
 
                    port_id);
    }
    if (!nb_ports_available) {
            "All available ports are disabled. Please set portmask.\n");
    }
    
    if (rx_to_workers == NULL)
    if (workers_to_tx == NULL)
    if (!disable_reorder) {
                REORDER_BUFFER_SIZE);
        if (send_args.buffer == NULL)
    }
    last_lcore_id   = get_last_lcore_id();
    worker_args.ring_in  = rx_to_workers;
    worker_args.ring_out = workers_to_tx;
    
    for (lcore_id = 0; lcore_id <= get_previous_lcore_id(last_lcore_id); lcore_id++)
                    lcore_id);
    if (disable_reorder) {
        
                last_lcore_id);
    } else {
        send_args.ring_in = workers_to_tx;
        
                (void *)&send_args, last_lcore_id);
    }
    
    rx_thread(rx_to_workers);
            return -1;
    }
    print_stats();
    return 0;
}