Fix issues when handling unkown ipv6 packets
[samplevnf.git] / VNFs / DPPD-PROX / prox_port_cfg.h
1 /*
2 // Copyright (c) 2010-2020 Intel Corporation
3 //
4 // Licensed under the Apache License, Version 2.0 (the "License");
5 // you may not use this file except in compliance with the License.
6 // You may obtain a copy of the License at
7 //
8 //     http://www.apache.org/licenses/LICENSE-2.0
9 //
10 // Unless required by applicable law or agreed to in writing, software
11 // distributed under the License is distributed on an "AS IS" BASIS,
12 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 // See the License for the specific language governing permissions and
14 // limitations under the License.
15 */
16
17 #ifndef _PROX_PORT_CFG_H
18 #define _PROX_PORT_CFG_H
19
20 #include <rte_pci.h>
21 #include <rte_ether.h>
22 #include <rte_ethdev.h>
23 #include <rte_version.h>
24 #if RTE_VERSION >= RTE_VERSION_NUM(17,11,0,0)
25 #include <rte_bus_pci.h>
26 #endif
27 #include <rte_pci.h>
28
29 #include "prox_compat.h"
30 #include "prox_globals.h"
31 #include "ip_subnet.h"
32
33 enum addr_type {PROX_PORT_MAC_HW, PROX_PORT_MAC_SET, PROX_PORT_MAC_RAND};
34
35 #define IPV4_CKSUM      1
36 #define UDP_CKSUM       2
37 #define NB_MCAST_ADDR   16
38 #define PROX_MAX_VLAN_TAGS      256
39
40 struct prox_port_cfg {
41         struct rte_mempool *pool[32];  /* Rx/Tx mempool */
42         size_t pool_size[32];
43         uint8_t promiscuous;
44         uint8_t lsc_set_explicitely; /* Explicitly enable/disable lsc */
45         uint8_t lsc_val;
46         uint8_t active;
47         int socket;
48         uint16_t max_rxq;         /* max number of Tx queues */
49         uint16_t max_txq;         /* max number of Tx queues */
50         uint16_t n_rxq;           /* number of used Rx queues */
51         uint16_t n_txq;           /* number of used Tx queues */
52         uint32_t n_rxd;
53         uint32_t n_txd;
54         uint8_t  link_up;
55         uint32_t  link_speed;
56         uint32_t  max_link_speed;
57         uint32_t  mtu;
58         enum addr_type    type;
59         prox_rte_ether_addr eth_addr;    /* port MAC address */
60         char names[PROX_MAX_VLAN_TAGS][MAX_NAME_SIZE];
61         char vdev[MAX_NAME_SIZE];
62         char short_name[MAX_NAME_SIZE];
63         char driver_name[MAX_NAME_SIZE];
64         char rx_ring[MAX_NAME_SIZE];
65         char tx_ring[MAX_NAME_SIZE];
66         char pci_addr[32];
67         struct rte_eth_conf port_conf;
68         struct rte_eth_rxconf rx_conf;
69         struct rte_eth_txconf tx_conf;
70         uint64_t requested_rx_offload;
71         uint64_t requested_tx_offload;
72         uint64_t disabled_tx_offload;
73         struct rte_eth_dev_info dev_info;
74         struct {
75                 int tx_offload_cksum;
76         } capabilities;
77         uint32_t max_rx_pkt_len;
78         uint32_t min_rx_bufsize;
79         uint16_t min_rx_desc;
80         uint16_t max_rx_desc;
81         uint16_t min_tx_desc;
82         uint16_t max_tx_desc;
83         uint32_t nb_mc_addr;
84         uint8_t available;
85         prox_rte_ether_addr mc_addr[NB_MCAST_ADDR];
86         int dpdk_mapping;
87         struct ip4_subnet ip_addr[PROX_MAX_VLAN_TAGS];
88         int fds[PROX_MAX_VLAN_TAGS];
89         uint32_t vlan_tags[PROX_MAX_VLAN_TAGS];
90         uint8_t is_vdev;
91         uint8_t virtual;
92         uint8_t all_rx_queues;
93         uint16_t n_vlans;
94         uint32_t v6_mask_length;
95 };
96
97 extern rte_atomic32_t lsc;
98
99 int prox_nb_active_ports(void);
100 int prox_last_port_active(void);
101
102 extern struct prox_port_cfg prox_port_cfg[];
103
104 void init_rte_dev(int use_dummy_devices);
105 uint8_t init_rte_ring_dev(void);
106 void init_port_addr(void);
107 void init_port_all(void);
108 void close_ports_atexit(void);
109
110 struct rte_mempool;
111
112 void prox_pktmbuf_init(struct rte_mempool *mp, void *opaque_arg, void *_m, unsigned i);
113 void prox_pktmbuf_reinit(void *arg, void *start, void *end, uint32_t idx);
114
115 int port_is_active(uint8_t port_id);
116
117 #endif /* __PROX_PORT_CFG_H_ */