ed852443642377fbe31afb27dcfe287ffddb1de9
[dpdk.git] / drivers / net / tap / rte_eth_tap.h
1 /*-
2  *   BSD LICENSE
3  *
4  *   Copyright 2017 6WIND S.A.
5  *   Copyright 2017 Mellanox.
6  *
7  *   Redistribution and use in source and binary forms, with or without
8  *   modification, are permitted provided that the following conditions
9  *   are met:
10  *
11  *     * Redistributions of source code must retain the above copyright
12  *       notice, this list of conditions and the following disclaimer.
13  *     * Redistributions in binary form must reproduce the above copyright
14  *       notice, this list of conditions and the following disclaimer in
15  *       the documentation and/or other materials provided with the
16  *       distribution.
17  *     * Neither the name of 6WIND S.A. nor the names of its
18  *       contributors may be used to endorse or promote products derived
19  *       from this software without specific prior written permission.
20  *
21  *   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22  *   "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23  *   LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
24  *   A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
25  *   OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
26  *   SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
27  *   LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
28  *   DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
29  *   THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30  *   (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
31  *   OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32  */
33
34 #ifndef _RTE_ETH_TAP_H_
35 #define _RTE_ETH_TAP_H_
36
37 #include <sys/queue.h>
38 #include <sys/uio.h>
39 #include <inttypes.h>
40 #include <net/if.h>
41
42 #include <linux/if_tun.h>
43
44 #include <rte_ethdev_driver.h>
45 #include <rte_ether.h>
46
47 #ifdef IFF_MULTI_QUEUE
48 #define RTE_PMD_TAP_MAX_QUEUES  TAP_MAX_QUEUES
49 #else
50 #define RTE_PMD_TAP_MAX_QUEUES  1
51 #endif
52
53 struct pkt_stats {
54         uint64_t opackets;              /* Number of output packets */
55         uint64_t ipackets;              /* Number of input packets */
56         uint64_t obytes;                /* Number of bytes on output */
57         uint64_t ibytes;                /* Number of bytes on input */
58         uint64_t errs;                  /* Number of TX error packets */
59         uint64_t ierrors;               /* Number of RX error packets */
60         uint64_t rx_nombuf;             /* Nb of RX mbuf alloc failures */
61 };
62
63 struct rx_queue {
64         struct rte_mempool *mp;         /* Mempool for RX packets */
65         uint32_t trigger_seen;          /* Last seen Rx trigger value */
66         uint16_t in_port;               /* Port ID */
67         int fd;
68         struct pkt_stats stats;         /* Stats for this RX queue */
69         uint16_t nb_rx_desc;            /* max number of mbufs available */
70         struct rte_eth_rxmode *rxmode;  /* RX features */
71         struct rte_mbuf *pool;          /* mbufs pool for this queue */
72         struct iovec (*iovecs)[];       /* descriptors for this queue */
73         struct tun_pi pi;               /* packet info for iovecs */
74 };
75
76 struct tx_queue {
77         int fd;
78         uint16_t *mtu;                  /* Pointer to MTU from dev_data */
79         uint16_t csum:1;                /* Enable checksum offloading */
80         struct pkt_stats stats;         /* Stats for this TX queue */
81 };
82
83 struct pmd_internals {
84         struct rte_eth_dev *dev;          /* Ethernet device. */
85         char remote_iface[RTE_ETH_NAME_MAX_LEN]; /* Remote netdevice name */
86         char name[RTE_ETH_NAME_MAX_LEN];  /* Internal Tap device name */
87         struct ether_addr eth_addr;       /* Mac address of the device port */
88         struct ifreq remote_initial_flags;   /* Remote netdevice flags on init */
89         int remote_if_index;              /* remote netdevice IF_INDEX */
90         int if_index;                     /* IF_INDEX for the port */
91         int ioctl_sock;                   /* socket for ioctl calls */
92         int nlsk_fd;                      /* Netlink socket fd */
93         int flow_isolate;                 /* 1 if flow isolation is enabled */
94         int flower_support;               /* 1 if kernel supports, else 0 */
95         int flower_vlan_support;          /* 1 if kernel supports, else 0 */
96         int rss_enabled;                  /* 1 if RSS is enabled, else 0 */
97         /* implicit rules set when RSS is enabled */
98         int map_fd;                       /* BPF RSS map fd */
99         int bpf_fd[RTE_PMD_TAP_MAX_QUEUES];/* List of bpf fds per queue */
100         LIST_HEAD(tap_rss_flows, rte_flow) rss_flows;
101         LIST_HEAD(tap_flows, rte_flow) flows;        /* rte_flow rules */
102         /* implicit rte_flow rules set when a remote device is active */
103         LIST_HEAD(tap_implicit_flows, rte_flow) implicit_flows;
104         struct rx_queue rxq[RTE_PMD_TAP_MAX_QUEUES]; /* List of RX queues */
105         struct tx_queue txq[RTE_PMD_TAP_MAX_QUEUES]; /* List of TX queues */
106         struct rte_intr_handle intr_handle;          /* LSC interrupt handle. */
107 };
108
109 /* tap_intr.c */
110
111 int tap_rx_intr_vec_set(struct rte_eth_dev *dev, int set);
112
113 #endif /* _RTE_ETH_TAP_H_ */