002510b8513b5cca5d8e7464070858b28fcb7a8e
[dpdk.git] / examples / l3fwd / l3fwd.h
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright(c) 2010-2021 Intel Corporation
3  */
4
5 #ifndef __L3_FWD_H__
6 #define __L3_FWD_H__
7
8 #include <rte_ethdev.h>
9 #include <rte_vect.h>
10
11 #define DO_RFC_1812_CHECKS
12
13 #define RTE_LOGTYPE_L3FWD RTE_LOGTYPE_USER1
14
15 #if !defined(NO_HASH_MULTI_LOOKUP) && defined(__ARM_NEON)
16 #define NO_HASH_MULTI_LOOKUP 1
17 #endif
18
19 /*
20  * Configurable number of RX/TX ring descriptors
21  */
22 #define RTE_TEST_RX_DESC_DEFAULT 1024
23 #define RTE_TEST_TX_DESC_DEFAULT 1024
24
25 #define MAX_PKT_BURST     32
26 #define BURST_TX_DRAIN_US 100 /* TX drain every ~100us */
27
28 #define MEMPOOL_CACHE_SIZE 256
29 #define MAX_RX_QUEUE_PER_LCORE 16
30
31 #define VECTOR_SIZE_DEFAULT   MAX_PKT_BURST
32 #define VECTOR_TMO_NS_DEFAULT 1E6 /* 1ms */
33 /*
34  * Try to avoid TX buffering if we have at least MAX_TX_BURST packets to send.
35  */
36 #define MAX_TX_BURST      (MAX_PKT_BURST / 2)
37
38 #define NB_SOCKETS        8
39
40 /* Configure how many packets ahead to prefetch, when reading packets */
41 #define PREFETCH_OFFSET   3
42
43 /* Used to mark destination port as 'invalid'. */
44 #define BAD_PORT ((uint16_t)-1)
45
46 #define FWDSTEP 4
47
48 /* replace first 12B of the ethernet header. */
49 #define MASK_ETH 0x3f
50
51 /* Hash parameters. */
52 #ifdef RTE_ARCH_64
53 /* default to 4 million hash entries (approx) */
54 #define L3FWD_HASH_ENTRIES              (1024*1024*4)
55 #else
56 /* 32-bit has less address-space for hugepage memory, limit to 1M entries */
57 #define L3FWD_HASH_ENTRIES              (1024*1024*1)
58 #endif
59 #define HASH_ENTRY_NUMBER_DEFAULT       16
60
61 struct parm_cfg {
62         const char *rule_ipv4_name;
63         const char *rule_ipv6_name;
64 };
65
66 struct mbuf_table {
67         uint16_t len;
68         struct rte_mbuf *m_table[MAX_PKT_BURST];
69 };
70
71 struct lcore_rx_queue {
72         uint16_t port_id;
73         uint8_t queue_id;
74 } __rte_cache_aligned;
75
76 struct lcore_conf {
77         uint16_t n_rx_queue;
78         struct lcore_rx_queue rx_queue_list[MAX_RX_QUEUE_PER_LCORE];
79         uint16_t n_tx_port;
80         uint16_t tx_port_id[RTE_MAX_ETHPORTS];
81         uint16_t tx_queue_id[RTE_MAX_ETHPORTS];
82         struct mbuf_table tx_mbufs[RTE_MAX_ETHPORTS];
83         void *ipv4_lookup_struct;
84         void *ipv6_lookup_struct;
85 } __rte_cache_aligned;
86
87 extern volatile bool force_quit;
88
89 /* ethernet addresses of ports */
90 extern uint64_t dest_eth_addr[RTE_MAX_ETHPORTS];
91 extern struct rte_ether_addr ports_eth_addr[RTE_MAX_ETHPORTS];
92
93 /* mask of enabled ports */
94 extern uint32_t enabled_port_mask;
95
96 /* Used only in exact match mode. */
97 extern int ipv6; /**< ipv6 is false by default. */
98 extern uint32_t hash_entry_number;
99
100 extern xmm_t val_eth[RTE_MAX_ETHPORTS];
101
102 extern struct lcore_conf lcore_conf[RTE_MAX_LCORE];
103
104 extern struct parm_cfg parm_config;
105
106 /* Send burst of packets on an output interface */
107 static inline int
108 send_burst(struct lcore_conf *qconf, uint16_t n, uint16_t port)
109 {
110         struct rte_mbuf **m_table;
111         int ret;
112         uint16_t queueid;
113
114         queueid = qconf->tx_queue_id[port];
115         m_table = (struct rte_mbuf **)qconf->tx_mbufs[port].m_table;
116
117         ret = rte_eth_tx_burst(port, queueid, m_table, n);
118         if (unlikely(ret < n)) {
119                 do {
120                         rte_pktmbuf_free(m_table[ret]);
121                 } while (++ret < n);
122         }
123
124         return 0;
125 }
126
127 /* Enqueue a single packet, and send burst if queue is filled */
128 static inline int
129 send_single_packet(struct lcore_conf *qconf,
130                    struct rte_mbuf *m, uint16_t port)
131 {
132         uint16_t len;
133
134         len = qconf->tx_mbufs[port].len;
135         qconf->tx_mbufs[port].m_table[len] = m;
136         len++;
137
138         /* enough pkts to be sent */
139         if (unlikely(len == MAX_PKT_BURST)) {
140                 send_burst(qconf, MAX_PKT_BURST, port);
141                 len = 0;
142         }
143
144         qconf->tx_mbufs[port].len = len;
145         return 0;
146 }
147
148 #ifdef DO_RFC_1812_CHECKS
149 static inline int
150 is_valid_ipv4_pkt(struct rte_ipv4_hdr *pkt, uint32_t link_len)
151 {
152         /* From http://www.rfc-editor.org/rfc/rfc1812.txt section 5.2.2 */
153         /*
154          * 1. The packet length reported by the Link Layer must be large
155          * enough to hold the minimum length legal IP datagram (20 bytes).
156          */
157         if (link_len < sizeof(struct rte_ipv4_hdr))
158                 return -1;
159
160         /* 2. The IP checksum must be correct. */
161         /* this is checked in H/W */
162
163         /*
164          * 3. The IP version number must be 4. If the version number is not 4
165          * then the packet may be another version of IP, such as IPng or
166          * ST-II.
167          */
168         if (((pkt->version_ihl) >> 4) != 4)
169                 return -3;
170         /*
171          * 4. The IP header length field must be large enough to hold the
172          * minimum length legal IP datagram (20 bytes = 5 words).
173          */
174         if ((pkt->version_ihl & 0xf) < 5)
175                 return -4;
176
177         /*
178          * 5. The IP total length field must be large enough to hold the IP
179          * datagram header, whose length is specified in the IP header length
180          * field.
181          */
182         if (rte_cpu_to_be_16(pkt->total_length) < sizeof(struct rte_ipv4_hdr))
183                 return -5;
184
185         return 0;
186 }
187 #endif /* DO_RFC_1812_CHECKS */
188
189 int
190 init_mem(uint16_t portid, unsigned int nb_mbuf);
191
192 /* Function pointers for LPM, EM or FIB functionality. */
193 void
194 setup_lpm(const int socketid);
195
196 void
197 setup_hash(const int socketid);
198
199 void
200 setup_fib(const int socketid);
201
202 int
203 em_check_ptype(int portid);
204
205 int
206 lpm_check_ptype(int portid);
207
208 uint16_t
209 em_cb_parse_ptype(uint16_t port, uint16_t queue, struct rte_mbuf *pkts[],
210                   uint16_t nb_pkts, uint16_t max_pkts, void *user_param);
211
212 uint16_t
213 lpm_cb_parse_ptype(uint16_t port, uint16_t queue, struct rte_mbuf *pkts[],
214                    uint16_t nb_pkts, uint16_t max_pkts, void *user_param);
215
216 int
217 em_main_loop(__rte_unused void *dummy);
218
219 int
220 lpm_main_loop(__rte_unused void *dummy);
221
222 int
223 fib_main_loop(__rte_unused void *dummy);
224
225 int
226 lpm_event_main_loop_tx_d(__rte_unused void *dummy);
227 int
228 lpm_event_main_loop_tx_d_burst(__rte_unused void *dummy);
229 int
230 lpm_event_main_loop_tx_q(__rte_unused void *dummy);
231 int
232 lpm_event_main_loop_tx_q_burst(__rte_unused void *dummy);
233 int
234 lpm_event_main_loop_tx_d_vector(__rte_unused void *dummy);
235 int
236 lpm_event_main_loop_tx_d_burst_vector(__rte_unused void *dummy);
237 int
238 lpm_event_main_loop_tx_q_vector(__rte_unused void *dummy);
239 int
240 lpm_event_main_loop_tx_q_burst_vector(__rte_unused void *dummy);
241
242 int
243 em_event_main_loop_tx_d(__rte_unused void *dummy);
244 int
245 em_event_main_loop_tx_d_burst(__rte_unused void *dummy);
246 int
247 em_event_main_loop_tx_q(__rte_unused void *dummy);
248 int
249 em_event_main_loop_tx_q_burst(__rte_unused void *dummy);
250 int
251 em_event_main_loop_tx_d_vector(__rte_unused void *dummy);
252 int
253 em_event_main_loop_tx_d_burst_vector(__rte_unused void *dummy);
254 int
255 em_event_main_loop_tx_q_vector(__rte_unused void *dummy);
256 int
257 em_event_main_loop_tx_q_burst_vector(__rte_unused void *dummy);
258
259 int
260 fib_event_main_loop_tx_d(__rte_unused void *dummy);
261 int
262 fib_event_main_loop_tx_d_burst(__rte_unused void *dummy);
263 int
264 fib_event_main_loop_tx_q(__rte_unused void *dummy);
265 int
266 fib_event_main_loop_tx_q_burst(__rte_unused void *dummy);
267 int
268 fib_event_main_loop_tx_d_vector(__rte_unused void *dummy);
269 int
270 fib_event_main_loop_tx_d_burst_vector(__rte_unused void *dummy);
271 int
272 fib_event_main_loop_tx_q_vector(__rte_unused void *dummy);
273 int
274 fib_event_main_loop_tx_q_burst_vector(__rte_unused void *dummy);
275
276
277 /* Return ipv4/ipv6 fwd lookup struct for LPM, EM or FIB. */
278 void *
279 em_get_ipv4_l3fwd_lookup_struct(const int socketid);
280
281 void *
282 em_get_ipv6_l3fwd_lookup_struct(const int socketid);
283
284 void *
285 lpm_get_ipv4_l3fwd_lookup_struct(const int socketid);
286
287 void *
288 lpm_get_ipv6_l3fwd_lookup_struct(const int socketid);
289
290 void *
291 fib_get_ipv4_l3fwd_lookup_struct(const int socketid);
292
293 void *
294 fib_get_ipv6_l3fwd_lookup_struct(const int socketid);
295
296 #endif  /* __L3_FWD_H__ */