New upstream version 18.02
[deb_dpdk.git] / drivers / net / i40e / i40e_flow.c
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright(c) 2016-2017 Intel Corporation
3  */
4
5 #include <sys/queue.h>
6 #include <stdio.h>
7 #include <errno.h>
8 #include <stdint.h>
9 #include <string.h>
10 #include <unistd.h>
11 #include <stdarg.h>
12
13 #include <rte_ether.h>
14 #include <rte_ethdev_driver.h>
15 #include <rte_log.h>
16 #include <rte_malloc.h>
17 #include <rte_eth_ctrl.h>
18 #include <rte_tailq.h>
19 #include <rte_flow_driver.h>
20
21 #include "i40e_logs.h"
22 #include "base/i40e_type.h"
23 #include "base/i40e_prototype.h"
24 #include "i40e_ethdev.h"
25
26 #define I40E_IPV6_TC_MASK       (0xFF << I40E_FDIR_IPv6_TC_OFFSET)
27 #define I40E_IPV6_FRAG_HEADER   44
28 #define I40E_TENANT_ARRAY_NUM   3
29 #define I40E_TCI_MASK           0xFFFF
30
31 static int i40e_flow_validate(struct rte_eth_dev *dev,
32                               const struct rte_flow_attr *attr,
33                               const struct rte_flow_item pattern[],
34                               const struct rte_flow_action actions[],
35                               struct rte_flow_error *error);
36 static struct rte_flow *i40e_flow_create(struct rte_eth_dev *dev,
37                                          const struct rte_flow_attr *attr,
38                                          const struct rte_flow_item pattern[],
39                                          const struct rte_flow_action actions[],
40                                          struct rte_flow_error *error);
41 static int i40e_flow_destroy(struct rte_eth_dev *dev,
42                              struct rte_flow *flow,
43                              struct rte_flow_error *error);
44 static int i40e_flow_flush(struct rte_eth_dev *dev,
45                            struct rte_flow_error *error);
46 static int
47 i40e_flow_parse_ethertype_pattern(struct rte_eth_dev *dev,
48                                   const struct rte_flow_item *pattern,
49                                   struct rte_flow_error *error,
50                                   struct rte_eth_ethertype_filter *filter);
51 static int i40e_flow_parse_ethertype_action(struct rte_eth_dev *dev,
52                                     const struct rte_flow_action *actions,
53                                     struct rte_flow_error *error,
54                                     struct rte_eth_ethertype_filter *filter);
55 static int i40e_flow_parse_fdir_pattern(struct rte_eth_dev *dev,
56                                         const struct rte_flow_item *pattern,
57                                         struct rte_flow_error *error,
58                                         struct i40e_fdir_filter_conf *filter);
59 static int i40e_flow_parse_fdir_action(struct rte_eth_dev *dev,
60                                        const struct rte_flow_action *actions,
61                                        struct rte_flow_error *error,
62                                        struct i40e_fdir_filter_conf *filter);
63 static int i40e_flow_parse_tunnel_action(struct rte_eth_dev *dev,
64                                  const struct rte_flow_action *actions,
65                                  struct rte_flow_error *error,
66                                  struct i40e_tunnel_filter_conf *filter);
67 static int i40e_flow_parse_attr(const struct rte_flow_attr *attr,
68                                 struct rte_flow_error *error);
69 static int i40e_flow_parse_ethertype_filter(struct rte_eth_dev *dev,
70                                     const struct rte_flow_attr *attr,
71                                     const struct rte_flow_item pattern[],
72                                     const struct rte_flow_action actions[],
73                                     struct rte_flow_error *error,
74                                     union i40e_filter_t *filter);
75 static int i40e_flow_parse_fdir_filter(struct rte_eth_dev *dev,
76                                        const struct rte_flow_attr *attr,
77                                        const struct rte_flow_item pattern[],
78                                        const struct rte_flow_action actions[],
79                                        struct rte_flow_error *error,
80                                        union i40e_filter_t *filter);
81 static int i40e_flow_parse_vxlan_filter(struct rte_eth_dev *dev,
82                                         const struct rte_flow_attr *attr,
83                                         const struct rte_flow_item pattern[],
84                                         const struct rte_flow_action actions[],
85                                         struct rte_flow_error *error,
86                                         union i40e_filter_t *filter);
87 static int i40e_flow_parse_nvgre_filter(struct rte_eth_dev *dev,
88                                         const struct rte_flow_attr *attr,
89                                         const struct rte_flow_item pattern[],
90                                         const struct rte_flow_action actions[],
91                                         struct rte_flow_error *error,
92                                         union i40e_filter_t *filter);
93 static int i40e_flow_parse_mpls_filter(struct rte_eth_dev *dev,
94                                        const struct rte_flow_attr *attr,
95                                        const struct rte_flow_item pattern[],
96                                        const struct rte_flow_action actions[],
97                                        struct rte_flow_error *error,
98                                        union i40e_filter_t *filter);
99 static int i40e_flow_parse_gtp_filter(struct rte_eth_dev *dev,
100                                       const struct rte_flow_attr *attr,
101                                       const struct rte_flow_item pattern[],
102                                       const struct rte_flow_action actions[],
103                                       struct rte_flow_error *error,
104                                       union i40e_filter_t *filter);
105 static int i40e_flow_destroy_ethertype_filter(struct i40e_pf *pf,
106                                       struct i40e_ethertype_filter *filter);
107 static int i40e_flow_destroy_tunnel_filter(struct i40e_pf *pf,
108                                            struct i40e_tunnel_filter *filter);
109 static int i40e_flow_flush_fdir_filter(struct i40e_pf *pf);
110 static int i40e_flow_flush_ethertype_filter(struct i40e_pf *pf);
111 static int i40e_flow_flush_tunnel_filter(struct i40e_pf *pf);
112 static int
113 i40e_flow_flush_rss_filter(struct rte_eth_dev *dev);
114 static int
115 i40e_flow_parse_qinq_filter(struct rte_eth_dev *dev,
116                               const struct rte_flow_attr *attr,
117                               const struct rte_flow_item pattern[],
118                               const struct rte_flow_action actions[],
119                               struct rte_flow_error *error,
120                               union i40e_filter_t *filter);
121 static int
122 i40e_flow_parse_qinq_pattern(struct rte_eth_dev *dev,
123                               const struct rte_flow_item *pattern,
124                               struct rte_flow_error *error,
125                               struct i40e_tunnel_filter_conf *filter);
126
127 const struct rte_flow_ops i40e_flow_ops = {
128         .validate = i40e_flow_validate,
129         .create = i40e_flow_create,
130         .destroy = i40e_flow_destroy,
131         .flush = i40e_flow_flush,
132 };
133
134 union i40e_filter_t cons_filter;
135 enum rte_filter_type cons_filter_type = RTE_ETH_FILTER_NONE;
136
137 /* Pattern matched ethertype filter */
138 static enum rte_flow_item_type pattern_ethertype[] = {
139         RTE_FLOW_ITEM_TYPE_ETH,
140         RTE_FLOW_ITEM_TYPE_END,
141 };
142
143 /* Pattern matched flow director filter */
144 static enum rte_flow_item_type pattern_fdir_ipv4[] = {
145         RTE_FLOW_ITEM_TYPE_ETH,
146         RTE_FLOW_ITEM_TYPE_IPV4,
147         RTE_FLOW_ITEM_TYPE_END,
148 };
149
150 static enum rte_flow_item_type pattern_fdir_ipv4_udp[] = {
151         RTE_FLOW_ITEM_TYPE_ETH,
152         RTE_FLOW_ITEM_TYPE_IPV4,
153         RTE_FLOW_ITEM_TYPE_UDP,
154         RTE_FLOW_ITEM_TYPE_END,
155 };
156
157 static enum rte_flow_item_type pattern_fdir_ipv4_tcp[] = {
158         RTE_FLOW_ITEM_TYPE_ETH,
159         RTE_FLOW_ITEM_TYPE_IPV4,
160         RTE_FLOW_ITEM_TYPE_TCP,
161         RTE_FLOW_ITEM_TYPE_END,
162 };
163
164 static enum rte_flow_item_type pattern_fdir_ipv4_sctp[] = {
165         RTE_FLOW_ITEM_TYPE_ETH,
166         RTE_FLOW_ITEM_TYPE_IPV4,
167         RTE_FLOW_ITEM_TYPE_SCTP,
168         RTE_FLOW_ITEM_TYPE_END,
169 };
170
171 static enum rte_flow_item_type pattern_fdir_ipv4_gtpc[] = {
172         RTE_FLOW_ITEM_TYPE_ETH,
173         RTE_FLOW_ITEM_TYPE_IPV4,
174         RTE_FLOW_ITEM_TYPE_UDP,
175         RTE_FLOW_ITEM_TYPE_GTPC,
176         RTE_FLOW_ITEM_TYPE_END,
177 };
178
179 static enum rte_flow_item_type pattern_fdir_ipv4_gtpu[] = {
180         RTE_FLOW_ITEM_TYPE_ETH,
181         RTE_FLOW_ITEM_TYPE_IPV4,
182         RTE_FLOW_ITEM_TYPE_UDP,
183         RTE_FLOW_ITEM_TYPE_GTPU,
184         RTE_FLOW_ITEM_TYPE_END,
185 };
186
187 static enum rte_flow_item_type pattern_fdir_ipv4_gtpu_ipv4[] = {
188         RTE_FLOW_ITEM_TYPE_ETH,
189         RTE_FLOW_ITEM_TYPE_IPV4,
190         RTE_FLOW_ITEM_TYPE_UDP,
191         RTE_FLOW_ITEM_TYPE_GTPU,
192         RTE_FLOW_ITEM_TYPE_IPV4,
193         RTE_FLOW_ITEM_TYPE_END,
194 };
195
196 static enum rte_flow_item_type pattern_fdir_ipv4_gtpu_ipv6[] = {
197         RTE_FLOW_ITEM_TYPE_ETH,
198         RTE_FLOW_ITEM_TYPE_IPV4,
199         RTE_FLOW_ITEM_TYPE_UDP,
200         RTE_FLOW_ITEM_TYPE_GTPU,
201         RTE_FLOW_ITEM_TYPE_IPV6,
202         RTE_FLOW_ITEM_TYPE_END,
203 };
204
205 static enum rte_flow_item_type pattern_fdir_ipv6[] = {
206         RTE_FLOW_ITEM_TYPE_ETH,
207         RTE_FLOW_ITEM_TYPE_IPV6,
208         RTE_FLOW_ITEM_TYPE_END,
209 };
210
211 static enum rte_flow_item_type pattern_fdir_ipv6_udp[] = {
212         RTE_FLOW_ITEM_TYPE_ETH,
213         RTE_FLOW_ITEM_TYPE_IPV6,
214         RTE_FLOW_ITEM_TYPE_UDP,
215         RTE_FLOW_ITEM_TYPE_END,
216 };
217
218 static enum rte_flow_item_type pattern_fdir_ipv6_tcp[] = {
219         RTE_FLOW_ITEM_TYPE_ETH,
220         RTE_FLOW_ITEM_TYPE_IPV6,
221         RTE_FLOW_ITEM_TYPE_TCP,
222         RTE_FLOW_ITEM_TYPE_END,
223 };
224
225 static enum rte_flow_item_type pattern_fdir_ipv6_sctp[] = {
226         RTE_FLOW_ITEM_TYPE_ETH,
227         RTE_FLOW_ITEM_TYPE_IPV6,
228         RTE_FLOW_ITEM_TYPE_SCTP,
229         RTE_FLOW_ITEM_TYPE_END,
230 };
231
232 static enum rte_flow_item_type pattern_fdir_ipv6_gtpc[] = {
233         RTE_FLOW_ITEM_TYPE_ETH,
234         RTE_FLOW_ITEM_TYPE_IPV6,
235         RTE_FLOW_ITEM_TYPE_UDP,
236         RTE_FLOW_ITEM_TYPE_GTPC,
237         RTE_FLOW_ITEM_TYPE_END,
238 };
239
240 static enum rte_flow_item_type pattern_fdir_ipv6_gtpu[] = {
241         RTE_FLOW_ITEM_TYPE_ETH,
242         RTE_FLOW_ITEM_TYPE_IPV6,
243         RTE_FLOW_ITEM_TYPE_UDP,
244         RTE_FLOW_ITEM_TYPE_GTPU,
245         RTE_FLOW_ITEM_TYPE_END,
246 };
247
248 static enum rte_flow_item_type pattern_fdir_ipv6_gtpu_ipv4[] = {
249         RTE_FLOW_ITEM_TYPE_ETH,
250         RTE_FLOW_ITEM_TYPE_IPV6,
251         RTE_FLOW_ITEM_TYPE_UDP,
252         RTE_FLOW_ITEM_TYPE_GTPU,
253         RTE_FLOW_ITEM_TYPE_IPV4,
254         RTE_FLOW_ITEM_TYPE_END,
255 };
256
257 static enum rte_flow_item_type pattern_fdir_ipv6_gtpu_ipv6[] = {
258         RTE_FLOW_ITEM_TYPE_ETH,
259         RTE_FLOW_ITEM_TYPE_IPV6,
260         RTE_FLOW_ITEM_TYPE_UDP,
261         RTE_FLOW_ITEM_TYPE_GTPU,
262         RTE_FLOW_ITEM_TYPE_IPV6,
263         RTE_FLOW_ITEM_TYPE_END,
264 };
265
266 static enum rte_flow_item_type pattern_fdir_ethertype_raw_1[] = {
267         RTE_FLOW_ITEM_TYPE_ETH,
268         RTE_FLOW_ITEM_TYPE_RAW,
269         RTE_FLOW_ITEM_TYPE_END,
270 };
271
272 static enum rte_flow_item_type pattern_fdir_ethertype_raw_2[] = {
273         RTE_FLOW_ITEM_TYPE_ETH,
274         RTE_FLOW_ITEM_TYPE_RAW,
275         RTE_FLOW_ITEM_TYPE_RAW,
276         RTE_FLOW_ITEM_TYPE_END,
277 };
278
279 static enum rte_flow_item_type pattern_fdir_ethertype_raw_3[] = {
280         RTE_FLOW_ITEM_TYPE_ETH,
281         RTE_FLOW_ITEM_TYPE_RAW,
282         RTE_FLOW_ITEM_TYPE_RAW,
283         RTE_FLOW_ITEM_TYPE_RAW,
284         RTE_FLOW_ITEM_TYPE_END,
285 };
286
287 static enum rte_flow_item_type pattern_fdir_ipv4_raw_1[] = {
288         RTE_FLOW_ITEM_TYPE_ETH,
289         RTE_FLOW_ITEM_TYPE_IPV4,
290         RTE_FLOW_ITEM_TYPE_RAW,
291         RTE_FLOW_ITEM_TYPE_END,
292 };
293
294 static enum rte_flow_item_type pattern_fdir_ipv4_raw_2[] = {
295         RTE_FLOW_ITEM_TYPE_ETH,
296         RTE_FLOW_ITEM_TYPE_IPV4,
297         RTE_FLOW_ITEM_TYPE_RAW,
298         RTE_FLOW_ITEM_TYPE_RAW,
299         RTE_FLOW_ITEM_TYPE_END,
300 };
301
302 static enum rte_flow_item_type pattern_fdir_ipv4_raw_3[] = {
303         RTE_FLOW_ITEM_TYPE_ETH,
304         RTE_FLOW_ITEM_TYPE_IPV4,
305         RTE_FLOW_ITEM_TYPE_RAW,
306         RTE_FLOW_ITEM_TYPE_RAW,
307         RTE_FLOW_ITEM_TYPE_RAW,
308         RTE_FLOW_ITEM_TYPE_END,
309 };
310
311 static enum rte_flow_item_type pattern_fdir_ipv4_udp_raw_1[] = {
312         RTE_FLOW_ITEM_TYPE_ETH,
313         RTE_FLOW_ITEM_TYPE_IPV4,
314         RTE_FLOW_ITEM_TYPE_UDP,
315         RTE_FLOW_ITEM_TYPE_RAW,
316         RTE_FLOW_ITEM_TYPE_END,
317 };
318
319 static enum rte_flow_item_type pattern_fdir_ipv4_udp_raw_2[] = {
320         RTE_FLOW_ITEM_TYPE_ETH,
321         RTE_FLOW_ITEM_TYPE_IPV4,
322         RTE_FLOW_ITEM_TYPE_UDP,
323         RTE_FLOW_ITEM_TYPE_RAW,
324         RTE_FLOW_ITEM_TYPE_RAW,
325         RTE_FLOW_ITEM_TYPE_END,
326 };
327
328 static enum rte_flow_item_type pattern_fdir_ipv4_udp_raw_3[] = {
329         RTE_FLOW_ITEM_TYPE_ETH,
330         RTE_FLOW_ITEM_TYPE_IPV4,
331         RTE_FLOW_ITEM_TYPE_UDP,
332         RTE_FLOW_ITEM_TYPE_RAW,
333         RTE_FLOW_ITEM_TYPE_RAW,
334         RTE_FLOW_ITEM_TYPE_RAW,
335         RTE_FLOW_ITEM_TYPE_END,
336 };
337
338 static enum rte_flow_item_type pattern_fdir_ipv4_tcp_raw_1[] = {
339         RTE_FLOW_ITEM_TYPE_ETH,
340         RTE_FLOW_ITEM_TYPE_IPV4,
341         RTE_FLOW_ITEM_TYPE_TCP,
342         RTE_FLOW_ITEM_TYPE_RAW,
343         RTE_FLOW_ITEM_TYPE_END,
344 };
345
346 static enum rte_flow_item_type pattern_fdir_ipv4_tcp_raw_2[] = {
347         RTE_FLOW_ITEM_TYPE_ETH,
348         RTE_FLOW_ITEM_TYPE_IPV4,
349         RTE_FLOW_ITEM_TYPE_TCP,
350         RTE_FLOW_ITEM_TYPE_RAW,
351         RTE_FLOW_ITEM_TYPE_RAW,
352         RTE_FLOW_ITEM_TYPE_END,
353 };
354
355 static enum rte_flow_item_type pattern_fdir_ipv4_tcp_raw_3[] = {
356         RTE_FLOW_ITEM_TYPE_ETH,
357         RTE_FLOW_ITEM_TYPE_IPV4,
358         RTE_FLOW_ITEM_TYPE_TCP,
359         RTE_FLOW_ITEM_TYPE_RAW,
360         RTE_FLOW_ITEM_TYPE_RAW,
361         RTE_FLOW_ITEM_TYPE_RAW,
362         RTE_FLOW_ITEM_TYPE_END,
363 };
364
365 static enum rte_flow_item_type pattern_fdir_ipv4_sctp_raw_1[] = {
366         RTE_FLOW_ITEM_TYPE_ETH,
367         RTE_FLOW_ITEM_TYPE_IPV4,
368         RTE_FLOW_ITEM_TYPE_SCTP,
369         RTE_FLOW_ITEM_TYPE_RAW,
370         RTE_FLOW_ITEM_TYPE_END,
371 };
372
373 static enum rte_flow_item_type pattern_fdir_ipv4_sctp_raw_2[] = {
374         RTE_FLOW_ITEM_TYPE_ETH,
375         RTE_FLOW_ITEM_TYPE_IPV4,
376         RTE_FLOW_ITEM_TYPE_SCTP,
377         RTE_FLOW_ITEM_TYPE_RAW,
378         RTE_FLOW_ITEM_TYPE_RAW,
379         RTE_FLOW_ITEM_TYPE_END,
380 };
381
382 static enum rte_flow_item_type pattern_fdir_ipv4_sctp_raw_3[] = {
383         RTE_FLOW_ITEM_TYPE_ETH,
384         RTE_FLOW_ITEM_TYPE_IPV4,
385         RTE_FLOW_ITEM_TYPE_SCTP,
386         RTE_FLOW_ITEM_TYPE_RAW,
387         RTE_FLOW_ITEM_TYPE_RAW,
388         RTE_FLOW_ITEM_TYPE_RAW,
389         RTE_FLOW_ITEM_TYPE_END,
390 };
391
392 static enum rte_flow_item_type pattern_fdir_ipv6_raw_1[] = {
393         RTE_FLOW_ITEM_TYPE_ETH,
394         RTE_FLOW_ITEM_TYPE_IPV6,
395         RTE_FLOW_ITEM_TYPE_RAW,
396         RTE_FLOW_ITEM_TYPE_END,
397 };
398
399 static enum rte_flow_item_type pattern_fdir_ipv6_raw_2[] = {
400         RTE_FLOW_ITEM_TYPE_ETH,
401         RTE_FLOW_ITEM_TYPE_IPV6,
402         RTE_FLOW_ITEM_TYPE_RAW,
403         RTE_FLOW_ITEM_TYPE_RAW,
404         RTE_FLOW_ITEM_TYPE_END,
405 };
406
407 static enum rte_flow_item_type pattern_fdir_ipv6_raw_3[] = {
408         RTE_FLOW_ITEM_TYPE_ETH,
409         RTE_FLOW_ITEM_TYPE_IPV6,
410         RTE_FLOW_ITEM_TYPE_RAW,
411         RTE_FLOW_ITEM_TYPE_RAW,
412         RTE_FLOW_ITEM_TYPE_RAW,
413         RTE_FLOW_ITEM_TYPE_END,
414 };
415
416 static enum rte_flow_item_type pattern_fdir_ipv6_udp_raw_1[] = {
417         RTE_FLOW_ITEM_TYPE_ETH,
418         RTE_FLOW_ITEM_TYPE_IPV6,
419         RTE_FLOW_ITEM_TYPE_UDP,
420         RTE_FLOW_ITEM_TYPE_RAW,
421         RTE_FLOW_ITEM_TYPE_END,
422 };
423
424 static enum rte_flow_item_type pattern_fdir_ipv6_udp_raw_2[] = {
425         RTE_FLOW_ITEM_TYPE_ETH,
426         RTE_FLOW_ITEM_TYPE_IPV6,
427         RTE_FLOW_ITEM_TYPE_UDP,
428         RTE_FLOW_ITEM_TYPE_RAW,
429         RTE_FLOW_ITEM_TYPE_RAW,
430         RTE_FLOW_ITEM_TYPE_END,
431 };
432
433 static enum rte_flow_item_type pattern_fdir_ipv6_udp_raw_3[] = {
434         RTE_FLOW_ITEM_TYPE_ETH,
435         RTE_FLOW_ITEM_TYPE_IPV6,
436         RTE_FLOW_ITEM_TYPE_UDP,
437         RTE_FLOW_ITEM_TYPE_RAW,
438         RTE_FLOW_ITEM_TYPE_RAW,
439         RTE_FLOW_ITEM_TYPE_RAW,
440         RTE_FLOW_ITEM_TYPE_END,
441 };
442
443 static enum rte_flow_item_type pattern_fdir_ipv6_tcp_raw_1[] = {
444         RTE_FLOW_ITEM_TYPE_ETH,
445         RTE_FLOW_ITEM_TYPE_IPV6,
446         RTE_FLOW_ITEM_TYPE_TCP,
447         RTE_FLOW_ITEM_TYPE_RAW,
448         RTE_FLOW_ITEM_TYPE_END,
449 };
450
451 static enum rte_flow_item_type pattern_fdir_ipv6_tcp_raw_2[] = {
452         RTE_FLOW_ITEM_TYPE_ETH,
453         RTE_FLOW_ITEM_TYPE_IPV6,
454         RTE_FLOW_ITEM_TYPE_TCP,
455         RTE_FLOW_ITEM_TYPE_RAW,
456         RTE_FLOW_ITEM_TYPE_RAW,
457         RTE_FLOW_ITEM_TYPE_END,
458 };
459
460 static enum rte_flow_item_type pattern_fdir_ipv6_tcp_raw_3[] = {
461         RTE_FLOW_ITEM_TYPE_ETH,
462         RTE_FLOW_ITEM_TYPE_IPV6,
463         RTE_FLOW_ITEM_TYPE_TCP,
464         RTE_FLOW_ITEM_TYPE_RAW,
465         RTE_FLOW_ITEM_TYPE_RAW,
466         RTE_FLOW_ITEM_TYPE_RAW,
467         RTE_FLOW_ITEM_TYPE_END,
468 };
469
470 static enum rte_flow_item_type pattern_fdir_ipv6_sctp_raw_1[] = {
471         RTE_FLOW_ITEM_TYPE_ETH,
472         RTE_FLOW_ITEM_TYPE_IPV6,
473         RTE_FLOW_ITEM_TYPE_SCTP,
474         RTE_FLOW_ITEM_TYPE_RAW,
475         RTE_FLOW_ITEM_TYPE_END,
476 };
477
478 static enum rte_flow_item_type pattern_fdir_ipv6_sctp_raw_2[] = {
479         RTE_FLOW_ITEM_TYPE_ETH,
480         RTE_FLOW_ITEM_TYPE_IPV6,
481         RTE_FLOW_ITEM_TYPE_SCTP,
482         RTE_FLOW_ITEM_TYPE_RAW,
483         RTE_FLOW_ITEM_TYPE_RAW,
484         RTE_FLOW_ITEM_TYPE_END,
485 };
486
487 static enum rte_flow_item_type pattern_fdir_ipv6_sctp_raw_3[] = {
488         RTE_FLOW_ITEM_TYPE_ETH,
489         RTE_FLOW_ITEM_TYPE_IPV6,
490         RTE_FLOW_ITEM_TYPE_SCTP,
491         RTE_FLOW_ITEM_TYPE_RAW,
492         RTE_FLOW_ITEM_TYPE_RAW,
493         RTE_FLOW_ITEM_TYPE_RAW,
494         RTE_FLOW_ITEM_TYPE_END,
495 };
496
497 static enum rte_flow_item_type pattern_fdir_ethertype_vlan[] = {
498         RTE_FLOW_ITEM_TYPE_ETH,
499         RTE_FLOW_ITEM_TYPE_VLAN,
500         RTE_FLOW_ITEM_TYPE_END,
501 };
502
503 static enum rte_flow_item_type pattern_fdir_vlan_ipv4[] = {
504         RTE_FLOW_ITEM_TYPE_ETH,
505         RTE_FLOW_ITEM_TYPE_VLAN,
506         RTE_FLOW_ITEM_TYPE_IPV4,
507         RTE_FLOW_ITEM_TYPE_END,
508 };
509
510 static enum rte_flow_item_type pattern_fdir_vlan_ipv4_udp[] = {
511         RTE_FLOW_ITEM_TYPE_ETH,
512         RTE_FLOW_ITEM_TYPE_VLAN,
513         RTE_FLOW_ITEM_TYPE_IPV4,
514         RTE_FLOW_ITEM_TYPE_UDP,
515         RTE_FLOW_ITEM_TYPE_END,
516 };
517
518 static enum rte_flow_item_type pattern_fdir_vlan_ipv4_tcp[] = {
519         RTE_FLOW_ITEM_TYPE_ETH,
520         RTE_FLOW_ITEM_TYPE_VLAN,
521         RTE_FLOW_ITEM_TYPE_IPV4,
522         RTE_FLOW_ITEM_TYPE_TCP,
523         RTE_FLOW_ITEM_TYPE_END,
524 };
525
526 static enum rte_flow_item_type pattern_fdir_vlan_ipv4_sctp[] = {
527         RTE_FLOW_ITEM_TYPE_ETH,
528         RTE_FLOW_ITEM_TYPE_VLAN,
529         RTE_FLOW_ITEM_TYPE_IPV4,
530         RTE_FLOW_ITEM_TYPE_SCTP,
531         RTE_FLOW_ITEM_TYPE_END,
532 };
533
534 static enum rte_flow_item_type pattern_fdir_vlan_ipv6[] = {
535         RTE_FLOW_ITEM_TYPE_ETH,
536         RTE_FLOW_ITEM_TYPE_VLAN,
537         RTE_FLOW_ITEM_TYPE_IPV6,
538         RTE_FLOW_ITEM_TYPE_END,
539 };
540
541 static enum rte_flow_item_type pattern_fdir_vlan_ipv6_udp[] = {
542         RTE_FLOW_ITEM_TYPE_ETH,
543         RTE_FLOW_ITEM_TYPE_VLAN,
544         RTE_FLOW_ITEM_TYPE_IPV6,
545         RTE_FLOW_ITEM_TYPE_UDP,
546         RTE_FLOW_ITEM_TYPE_END,
547 };
548
549 static enum rte_flow_item_type pattern_fdir_vlan_ipv6_tcp[] = {
550         RTE_FLOW_ITEM_TYPE_ETH,
551         RTE_FLOW_ITEM_TYPE_VLAN,
552         RTE_FLOW_ITEM_TYPE_IPV6,
553         RTE_FLOW_ITEM_TYPE_TCP,
554         RTE_FLOW_ITEM_TYPE_END,
555 };
556
557 static enum rte_flow_item_type pattern_fdir_vlan_ipv6_sctp[] = {
558         RTE_FLOW_ITEM_TYPE_ETH,
559         RTE_FLOW_ITEM_TYPE_VLAN,
560         RTE_FLOW_ITEM_TYPE_IPV6,
561         RTE_FLOW_ITEM_TYPE_SCTP,
562         RTE_FLOW_ITEM_TYPE_END,
563 };
564
565 static enum rte_flow_item_type pattern_fdir_ethertype_vlan_raw_1[] = {
566         RTE_FLOW_ITEM_TYPE_ETH,
567         RTE_FLOW_ITEM_TYPE_VLAN,
568         RTE_FLOW_ITEM_TYPE_RAW,
569         RTE_FLOW_ITEM_TYPE_END,
570 };
571
572 static enum rte_flow_item_type pattern_fdir_ethertype_vlan_raw_2[] = {
573         RTE_FLOW_ITEM_TYPE_ETH,
574         RTE_FLOW_ITEM_TYPE_VLAN,
575         RTE_FLOW_ITEM_TYPE_RAW,
576         RTE_FLOW_ITEM_TYPE_RAW,
577         RTE_FLOW_ITEM_TYPE_END,
578 };
579
580 static enum rte_flow_item_type pattern_fdir_ethertype_vlan_raw_3[] = {
581         RTE_FLOW_ITEM_TYPE_ETH,
582         RTE_FLOW_ITEM_TYPE_VLAN,
583         RTE_FLOW_ITEM_TYPE_RAW,
584         RTE_FLOW_ITEM_TYPE_RAW,
585         RTE_FLOW_ITEM_TYPE_RAW,
586         RTE_FLOW_ITEM_TYPE_END,
587 };
588
589 static enum rte_flow_item_type pattern_fdir_vlan_ipv4_raw_1[] = {
590         RTE_FLOW_ITEM_TYPE_ETH,
591         RTE_FLOW_ITEM_TYPE_VLAN,
592         RTE_FLOW_ITEM_TYPE_IPV4,
593         RTE_FLOW_ITEM_TYPE_RAW,
594         RTE_FLOW_ITEM_TYPE_END,
595 };
596
597 static enum rte_flow_item_type pattern_fdir_vlan_ipv4_raw_2[] = {
598         RTE_FLOW_ITEM_TYPE_ETH,
599         RTE_FLOW_ITEM_TYPE_VLAN,
600         RTE_FLOW_ITEM_TYPE_IPV4,
601         RTE_FLOW_ITEM_TYPE_RAW,
602         RTE_FLOW_ITEM_TYPE_RAW,
603         RTE_FLOW_ITEM_TYPE_END,
604 };
605
606 static enum rte_flow_item_type pattern_fdir_vlan_ipv4_raw_3[] = {
607         RTE_FLOW_ITEM_TYPE_ETH,
608         RTE_FLOW_ITEM_TYPE_VLAN,
609         RTE_FLOW_ITEM_TYPE_IPV4,
610         RTE_FLOW_ITEM_TYPE_RAW,
611         RTE_FLOW_ITEM_TYPE_RAW,
612         RTE_FLOW_ITEM_TYPE_RAW,
613         RTE_FLOW_ITEM_TYPE_END,
614 };
615
616 static enum rte_flow_item_type pattern_fdir_vlan_ipv4_udp_raw_1[] = {
617         RTE_FLOW_ITEM_TYPE_ETH,
618         RTE_FLOW_ITEM_TYPE_VLAN,
619         RTE_FLOW_ITEM_TYPE_IPV4,
620         RTE_FLOW_ITEM_TYPE_UDP,
621         RTE_FLOW_ITEM_TYPE_RAW,
622         RTE_FLOW_ITEM_TYPE_END,
623 };
624
625 static enum rte_flow_item_type pattern_fdir_vlan_ipv4_udp_raw_2[] = {
626         RTE_FLOW_ITEM_TYPE_ETH,
627         RTE_FLOW_ITEM_TYPE_VLAN,
628         RTE_FLOW_ITEM_TYPE_IPV4,
629         RTE_FLOW_ITEM_TYPE_UDP,
630         RTE_FLOW_ITEM_TYPE_RAW,
631         RTE_FLOW_ITEM_TYPE_RAW,
632         RTE_FLOW_ITEM_TYPE_END,
633 };
634
635 static enum rte_flow_item_type pattern_fdir_vlan_ipv4_udp_raw_3[] = {
636         RTE_FLOW_ITEM_TYPE_ETH,
637         RTE_FLOW_ITEM_TYPE_VLAN,
638         RTE_FLOW_ITEM_TYPE_IPV4,
639         RTE_FLOW_ITEM_TYPE_UDP,
640         RTE_FLOW_ITEM_TYPE_RAW,
641         RTE_FLOW_ITEM_TYPE_RAW,
642         RTE_FLOW_ITEM_TYPE_RAW,
643         RTE_FLOW_ITEM_TYPE_END,
644 };
645
646 static enum rte_flow_item_type pattern_fdir_vlan_ipv4_tcp_raw_1[] = {
647         RTE_FLOW_ITEM_TYPE_ETH,
648         RTE_FLOW_ITEM_TYPE_VLAN,
649         RTE_FLOW_ITEM_TYPE_IPV4,
650         RTE_FLOW_ITEM_TYPE_TCP,
651         RTE_FLOW_ITEM_TYPE_RAW,
652         RTE_FLOW_ITEM_TYPE_END,
653 };
654
655 static enum rte_flow_item_type pattern_fdir_vlan_ipv4_tcp_raw_2[] = {
656         RTE_FLOW_ITEM_TYPE_ETH,
657         RTE_FLOW_ITEM_TYPE_VLAN,
658         RTE_FLOW_ITEM_TYPE_IPV4,
659         RTE_FLOW_ITEM_TYPE_TCP,
660         RTE_FLOW_ITEM_TYPE_RAW,
661         RTE_FLOW_ITEM_TYPE_RAW,
662         RTE_FLOW_ITEM_TYPE_END,
663 };
664
665 static enum rte_flow_item_type pattern_fdir_vlan_ipv4_tcp_raw_3[] = {
666         RTE_FLOW_ITEM_TYPE_ETH,
667         RTE_FLOW_ITEM_TYPE_VLAN,
668         RTE_FLOW_ITEM_TYPE_IPV4,
669         RTE_FLOW_ITEM_TYPE_TCP,
670         RTE_FLOW_ITEM_TYPE_RAW,
671         RTE_FLOW_ITEM_TYPE_RAW,
672         RTE_FLOW_ITEM_TYPE_RAW,
673         RTE_FLOW_ITEM_TYPE_END,
674 };
675
676 static enum rte_flow_item_type pattern_fdir_vlan_ipv4_sctp_raw_1[] = {
677         RTE_FLOW_ITEM_TYPE_ETH,
678         RTE_FLOW_ITEM_TYPE_VLAN,
679         RTE_FLOW_ITEM_TYPE_IPV4,
680         RTE_FLOW_ITEM_TYPE_SCTP,
681         RTE_FLOW_ITEM_TYPE_RAW,
682         RTE_FLOW_ITEM_TYPE_END,
683 };
684
685 static enum rte_flow_item_type pattern_fdir_vlan_ipv4_sctp_raw_2[] = {
686         RTE_FLOW_ITEM_TYPE_ETH,
687         RTE_FLOW_ITEM_TYPE_VLAN,
688         RTE_FLOW_ITEM_TYPE_IPV4,
689         RTE_FLOW_ITEM_TYPE_SCTP,
690         RTE_FLOW_ITEM_TYPE_RAW,
691         RTE_FLOW_ITEM_TYPE_RAW,
692         RTE_FLOW_ITEM_TYPE_END,
693 };
694
695 static enum rte_flow_item_type pattern_fdir_vlan_ipv4_sctp_raw_3[] = {
696         RTE_FLOW_ITEM_TYPE_ETH,
697         RTE_FLOW_ITEM_TYPE_VLAN,
698         RTE_FLOW_ITEM_TYPE_IPV4,
699         RTE_FLOW_ITEM_TYPE_SCTP,
700         RTE_FLOW_ITEM_TYPE_RAW,
701         RTE_FLOW_ITEM_TYPE_RAW,
702         RTE_FLOW_ITEM_TYPE_RAW,
703         RTE_FLOW_ITEM_TYPE_END,
704 };
705
706 static enum rte_flow_item_type pattern_fdir_vlan_ipv6_raw_1[] = {
707         RTE_FLOW_ITEM_TYPE_ETH,
708         RTE_FLOW_ITEM_TYPE_VLAN,
709         RTE_FLOW_ITEM_TYPE_IPV6,
710         RTE_FLOW_ITEM_TYPE_RAW,
711         RTE_FLOW_ITEM_TYPE_END,
712 };
713
714 static enum rte_flow_item_type pattern_fdir_vlan_ipv6_raw_2[] = {
715         RTE_FLOW_ITEM_TYPE_ETH,
716         RTE_FLOW_ITEM_TYPE_VLAN,
717         RTE_FLOW_ITEM_TYPE_IPV6,
718         RTE_FLOW_ITEM_TYPE_RAW,
719         RTE_FLOW_ITEM_TYPE_RAW,
720         RTE_FLOW_ITEM_TYPE_END,
721 };
722
723 static enum rte_flow_item_type pattern_fdir_vlan_ipv6_raw_3[] = {
724         RTE_FLOW_ITEM_TYPE_ETH,
725         RTE_FLOW_ITEM_TYPE_VLAN,
726         RTE_FLOW_ITEM_TYPE_IPV6,
727         RTE_FLOW_ITEM_TYPE_RAW,
728         RTE_FLOW_ITEM_TYPE_RAW,
729         RTE_FLOW_ITEM_TYPE_RAW,
730         RTE_FLOW_ITEM_TYPE_END,
731 };
732
733 static enum rte_flow_item_type pattern_fdir_vlan_ipv6_udp_raw_1[] = {
734         RTE_FLOW_ITEM_TYPE_ETH,
735         RTE_FLOW_ITEM_TYPE_VLAN,
736         RTE_FLOW_ITEM_TYPE_IPV6,
737         RTE_FLOW_ITEM_TYPE_UDP,
738         RTE_FLOW_ITEM_TYPE_RAW,
739         RTE_FLOW_ITEM_TYPE_END,
740 };
741
742 static enum rte_flow_item_type pattern_fdir_vlan_ipv6_udp_raw_2[] = {
743         RTE_FLOW_ITEM_TYPE_ETH,
744         RTE_FLOW_ITEM_TYPE_VLAN,
745         RTE_FLOW_ITEM_TYPE_IPV6,
746         RTE_FLOW_ITEM_TYPE_UDP,
747         RTE_FLOW_ITEM_TYPE_RAW,
748         RTE_FLOW_ITEM_TYPE_RAW,
749         RTE_FLOW_ITEM_TYPE_END,
750 };
751
752 static enum rte_flow_item_type pattern_fdir_vlan_ipv6_udp_raw_3[] = {
753         RTE_FLOW_ITEM_TYPE_ETH,
754         RTE_FLOW_ITEM_TYPE_VLAN,
755         RTE_FLOW_ITEM_TYPE_IPV6,
756         RTE_FLOW_ITEM_TYPE_UDP,
757         RTE_FLOW_ITEM_TYPE_RAW,
758         RTE_FLOW_ITEM_TYPE_RAW,
759         RTE_FLOW_ITEM_TYPE_RAW,
760         RTE_FLOW_ITEM_TYPE_END,
761 };
762
763 static enum rte_flow_item_type pattern_fdir_vlan_ipv6_tcp_raw_1[] = {
764         RTE_FLOW_ITEM_TYPE_ETH,
765         RTE_FLOW_ITEM_TYPE_VLAN,
766         RTE_FLOW_ITEM_TYPE_IPV6,
767         RTE_FLOW_ITEM_TYPE_TCP,
768         RTE_FLOW_ITEM_TYPE_RAW,
769         RTE_FLOW_ITEM_TYPE_END,
770 };
771
772 static enum rte_flow_item_type pattern_fdir_vlan_ipv6_tcp_raw_2[] = {
773         RTE_FLOW_ITEM_TYPE_ETH,
774         RTE_FLOW_ITEM_TYPE_VLAN,
775         RTE_FLOW_ITEM_TYPE_IPV6,
776         RTE_FLOW_ITEM_TYPE_TCP,
777         RTE_FLOW_ITEM_TYPE_RAW,
778         RTE_FLOW_ITEM_TYPE_RAW,
779         RTE_FLOW_ITEM_TYPE_END,
780 };
781
782 static enum rte_flow_item_type pattern_fdir_vlan_ipv6_tcp_raw_3[] = {
783         RTE_FLOW_ITEM_TYPE_ETH,
784         RTE_FLOW_ITEM_TYPE_VLAN,
785         RTE_FLOW_ITEM_TYPE_IPV6,
786         RTE_FLOW_ITEM_TYPE_TCP,
787         RTE_FLOW_ITEM_TYPE_RAW,
788         RTE_FLOW_ITEM_TYPE_RAW,
789         RTE_FLOW_ITEM_TYPE_RAW,
790         RTE_FLOW_ITEM_TYPE_END,
791 };
792
793 static enum rte_flow_item_type pattern_fdir_vlan_ipv6_sctp_raw_1[] = {
794         RTE_FLOW_ITEM_TYPE_ETH,
795         RTE_FLOW_ITEM_TYPE_VLAN,
796         RTE_FLOW_ITEM_TYPE_IPV6,
797         RTE_FLOW_ITEM_TYPE_SCTP,
798         RTE_FLOW_ITEM_TYPE_RAW,
799         RTE_FLOW_ITEM_TYPE_END,
800 };
801
802 static enum rte_flow_item_type pattern_fdir_vlan_ipv6_sctp_raw_2[] = {
803         RTE_FLOW_ITEM_TYPE_ETH,
804         RTE_FLOW_ITEM_TYPE_VLAN,
805         RTE_FLOW_ITEM_TYPE_IPV6,
806         RTE_FLOW_ITEM_TYPE_SCTP,
807         RTE_FLOW_ITEM_TYPE_RAW,
808         RTE_FLOW_ITEM_TYPE_RAW,
809         RTE_FLOW_ITEM_TYPE_END,
810 };
811
812 static enum rte_flow_item_type pattern_fdir_vlan_ipv6_sctp_raw_3[] = {
813         RTE_FLOW_ITEM_TYPE_ETH,
814         RTE_FLOW_ITEM_TYPE_VLAN,
815         RTE_FLOW_ITEM_TYPE_IPV6,
816         RTE_FLOW_ITEM_TYPE_SCTP,
817         RTE_FLOW_ITEM_TYPE_RAW,
818         RTE_FLOW_ITEM_TYPE_RAW,
819         RTE_FLOW_ITEM_TYPE_RAW,
820         RTE_FLOW_ITEM_TYPE_END,
821 };
822
823 static enum rte_flow_item_type pattern_fdir_ipv4_vf[] = {
824         RTE_FLOW_ITEM_TYPE_ETH,
825         RTE_FLOW_ITEM_TYPE_IPV4,
826         RTE_FLOW_ITEM_TYPE_VF,
827         RTE_FLOW_ITEM_TYPE_END,
828 };
829
830 static enum rte_flow_item_type pattern_fdir_ipv4_udp_vf[] = {
831         RTE_FLOW_ITEM_TYPE_ETH,
832         RTE_FLOW_ITEM_TYPE_IPV4,
833         RTE_FLOW_ITEM_TYPE_UDP,
834         RTE_FLOW_ITEM_TYPE_VF,
835         RTE_FLOW_ITEM_TYPE_END,
836 };
837
838 static enum rte_flow_item_type pattern_fdir_ipv4_tcp_vf[] = {
839         RTE_FLOW_ITEM_TYPE_ETH,
840         RTE_FLOW_ITEM_TYPE_IPV4,
841         RTE_FLOW_ITEM_TYPE_TCP,
842         RTE_FLOW_ITEM_TYPE_VF,
843         RTE_FLOW_ITEM_TYPE_END,
844 };
845
846 static enum rte_flow_item_type pattern_fdir_ipv4_sctp_vf[] = {
847         RTE_FLOW_ITEM_TYPE_ETH,
848         RTE_FLOW_ITEM_TYPE_IPV4,
849         RTE_FLOW_ITEM_TYPE_SCTP,
850         RTE_FLOW_ITEM_TYPE_VF,
851         RTE_FLOW_ITEM_TYPE_END,
852 };
853
854 static enum rte_flow_item_type pattern_fdir_ipv6_vf[] = {
855         RTE_FLOW_ITEM_TYPE_ETH,
856         RTE_FLOW_ITEM_TYPE_IPV6,
857         RTE_FLOW_ITEM_TYPE_VF,
858         RTE_FLOW_ITEM_TYPE_END,
859 };
860
861 static enum rte_flow_item_type pattern_fdir_ipv6_udp_vf[] = {
862         RTE_FLOW_ITEM_TYPE_ETH,
863         RTE_FLOW_ITEM_TYPE_IPV6,
864         RTE_FLOW_ITEM_TYPE_UDP,
865         RTE_FLOW_ITEM_TYPE_VF,
866         RTE_FLOW_ITEM_TYPE_END,
867 };
868
869 static enum rte_flow_item_type pattern_fdir_ipv6_tcp_vf[] = {
870         RTE_FLOW_ITEM_TYPE_ETH,
871         RTE_FLOW_ITEM_TYPE_IPV6,
872         RTE_FLOW_ITEM_TYPE_TCP,
873         RTE_FLOW_ITEM_TYPE_VF,
874         RTE_FLOW_ITEM_TYPE_END,
875 };
876
877 static enum rte_flow_item_type pattern_fdir_ipv6_sctp_vf[] = {
878         RTE_FLOW_ITEM_TYPE_ETH,
879         RTE_FLOW_ITEM_TYPE_IPV6,
880         RTE_FLOW_ITEM_TYPE_SCTP,
881         RTE_FLOW_ITEM_TYPE_VF,
882         RTE_FLOW_ITEM_TYPE_END,
883 };
884
885 static enum rte_flow_item_type pattern_fdir_ethertype_raw_1_vf[] = {
886         RTE_FLOW_ITEM_TYPE_ETH,
887         RTE_FLOW_ITEM_TYPE_RAW,
888         RTE_FLOW_ITEM_TYPE_VF,
889         RTE_FLOW_ITEM_TYPE_END,
890 };
891
892 static enum rte_flow_item_type pattern_fdir_ethertype_raw_2_vf[] = {
893         RTE_FLOW_ITEM_TYPE_ETH,
894         RTE_FLOW_ITEM_TYPE_RAW,
895         RTE_FLOW_ITEM_TYPE_RAW,
896         RTE_FLOW_ITEM_TYPE_VF,
897         RTE_FLOW_ITEM_TYPE_END,
898 };
899
900 static enum rte_flow_item_type pattern_fdir_ethertype_raw_3_vf[] = {
901         RTE_FLOW_ITEM_TYPE_ETH,
902         RTE_FLOW_ITEM_TYPE_RAW,
903         RTE_FLOW_ITEM_TYPE_RAW,
904         RTE_FLOW_ITEM_TYPE_RAW,
905         RTE_FLOW_ITEM_TYPE_VF,
906         RTE_FLOW_ITEM_TYPE_END,
907 };
908
909 static enum rte_flow_item_type pattern_fdir_ipv4_raw_1_vf[] = {
910         RTE_FLOW_ITEM_TYPE_ETH,
911         RTE_FLOW_ITEM_TYPE_IPV4,
912         RTE_FLOW_ITEM_TYPE_RAW,
913         RTE_FLOW_ITEM_TYPE_VF,
914         RTE_FLOW_ITEM_TYPE_END,
915 };
916
917 static enum rte_flow_item_type pattern_fdir_ipv4_raw_2_vf[] = {
918         RTE_FLOW_ITEM_TYPE_ETH,
919         RTE_FLOW_ITEM_TYPE_IPV4,
920         RTE_FLOW_ITEM_TYPE_RAW,
921         RTE_FLOW_ITEM_TYPE_RAW,
922         RTE_FLOW_ITEM_TYPE_VF,
923         RTE_FLOW_ITEM_TYPE_END,
924 };
925
926 static enum rte_flow_item_type pattern_fdir_ipv4_raw_3_vf[] = {
927         RTE_FLOW_ITEM_TYPE_ETH,
928         RTE_FLOW_ITEM_TYPE_IPV4,
929         RTE_FLOW_ITEM_TYPE_RAW,
930         RTE_FLOW_ITEM_TYPE_RAW,
931         RTE_FLOW_ITEM_TYPE_RAW,
932         RTE_FLOW_ITEM_TYPE_VF,
933         RTE_FLOW_ITEM_TYPE_END,
934 };
935
936 static enum rte_flow_item_type pattern_fdir_ipv4_udp_raw_1_vf[] = {
937         RTE_FLOW_ITEM_TYPE_ETH,
938         RTE_FLOW_ITEM_TYPE_IPV4,
939         RTE_FLOW_ITEM_TYPE_UDP,
940         RTE_FLOW_ITEM_TYPE_RAW,
941         RTE_FLOW_ITEM_TYPE_VF,
942         RTE_FLOW_ITEM_TYPE_END,
943 };
944
945 static enum rte_flow_item_type pattern_fdir_ipv4_udp_raw_2_vf[] = {
946         RTE_FLOW_ITEM_TYPE_ETH,
947         RTE_FLOW_ITEM_TYPE_IPV4,
948         RTE_FLOW_ITEM_TYPE_UDP,
949         RTE_FLOW_ITEM_TYPE_RAW,
950         RTE_FLOW_ITEM_TYPE_RAW,
951         RTE_FLOW_ITEM_TYPE_VF,
952         RTE_FLOW_ITEM_TYPE_END,
953 };
954
955 static enum rte_flow_item_type pattern_fdir_ipv4_udp_raw_3_vf[] = {
956         RTE_FLOW_ITEM_TYPE_ETH,
957         RTE_FLOW_ITEM_TYPE_IPV4,
958         RTE_FLOW_ITEM_TYPE_UDP,
959         RTE_FLOW_ITEM_TYPE_RAW,
960         RTE_FLOW_ITEM_TYPE_RAW,
961         RTE_FLOW_ITEM_TYPE_RAW,
962         RTE_FLOW_ITEM_TYPE_VF,
963         RTE_FLOW_ITEM_TYPE_END,
964 };
965
966 static enum rte_flow_item_type pattern_fdir_ipv4_tcp_raw_1_vf[] = {
967         RTE_FLOW_ITEM_TYPE_ETH,
968         RTE_FLOW_ITEM_TYPE_IPV4,
969         RTE_FLOW_ITEM_TYPE_TCP,
970         RTE_FLOW_ITEM_TYPE_RAW,
971         RTE_FLOW_ITEM_TYPE_VF,
972         RTE_FLOW_ITEM_TYPE_END,
973 };
974
975 static enum rte_flow_item_type pattern_fdir_ipv4_tcp_raw_2_vf[] = {
976         RTE_FLOW_ITEM_TYPE_ETH,
977         RTE_FLOW_ITEM_TYPE_IPV4,
978         RTE_FLOW_ITEM_TYPE_TCP,
979         RTE_FLOW_ITEM_TYPE_RAW,
980         RTE_FLOW_ITEM_TYPE_RAW,
981         RTE_FLOW_ITEM_TYPE_VF,
982         RTE_FLOW_ITEM_TYPE_END,
983 };
984
985 static enum rte_flow_item_type pattern_fdir_ipv4_tcp_raw_3_vf[] = {
986         RTE_FLOW_ITEM_TYPE_ETH,
987         RTE_FLOW_ITEM_TYPE_IPV4,
988         RTE_FLOW_ITEM_TYPE_TCP,
989         RTE_FLOW_ITEM_TYPE_RAW,
990         RTE_FLOW_ITEM_TYPE_RAW,
991         RTE_FLOW_ITEM_TYPE_RAW,
992         RTE_FLOW_ITEM_TYPE_VF,
993         RTE_FLOW_ITEM_TYPE_END,
994 };
995
996 static enum rte_flow_item_type pattern_fdir_ipv4_sctp_raw_1_vf[] = {
997         RTE_FLOW_ITEM_TYPE_ETH,
998         RTE_FLOW_ITEM_TYPE_IPV4,
999         RTE_FLOW_ITEM_TYPE_SCTP,
1000         RTE_FLOW_ITEM_TYPE_RAW,
1001         RTE_FLOW_ITEM_TYPE_VF,
1002         RTE_FLOW_ITEM_TYPE_END,
1003 };
1004
1005 static enum rte_flow_item_type pattern_fdir_ipv4_sctp_raw_2_vf[] = {
1006         RTE_FLOW_ITEM_TYPE_ETH,
1007         RTE_FLOW_ITEM_TYPE_IPV4,
1008         RTE_FLOW_ITEM_TYPE_SCTP,
1009         RTE_FLOW_ITEM_TYPE_RAW,
1010         RTE_FLOW_ITEM_TYPE_RAW,
1011         RTE_FLOW_ITEM_TYPE_VF,
1012         RTE_FLOW_ITEM_TYPE_END,
1013 };
1014
1015 static enum rte_flow_item_type pattern_fdir_ipv4_sctp_raw_3_vf[] = {
1016         RTE_FLOW_ITEM_TYPE_ETH,
1017         RTE_FLOW_ITEM_TYPE_IPV4,
1018         RTE_FLOW_ITEM_TYPE_SCTP,
1019         RTE_FLOW_ITEM_TYPE_RAW,
1020         RTE_FLOW_ITEM_TYPE_RAW,
1021         RTE_FLOW_ITEM_TYPE_RAW,
1022         RTE_FLOW_ITEM_TYPE_VF,
1023         RTE_FLOW_ITEM_TYPE_END,
1024 };
1025
1026 static enum rte_flow_item_type pattern_fdir_ipv6_raw_1_vf[] = {
1027         RTE_FLOW_ITEM_TYPE_ETH,
1028         RTE_FLOW_ITEM_TYPE_IPV6,
1029         RTE_FLOW_ITEM_TYPE_RAW,
1030         RTE_FLOW_ITEM_TYPE_VF,
1031         RTE_FLOW_ITEM_TYPE_END,
1032 };
1033
1034 static enum rte_flow_item_type pattern_fdir_ipv6_raw_2_vf[] = {
1035         RTE_FLOW_ITEM_TYPE_ETH,
1036         RTE_FLOW_ITEM_TYPE_IPV6,
1037         RTE_FLOW_ITEM_TYPE_RAW,
1038         RTE_FLOW_ITEM_TYPE_RAW,
1039         RTE_FLOW_ITEM_TYPE_VF,
1040         RTE_FLOW_ITEM_TYPE_END,
1041 };
1042
1043 static enum rte_flow_item_type pattern_fdir_ipv6_raw_3_vf[] = {
1044         RTE_FLOW_ITEM_TYPE_ETH,
1045         RTE_FLOW_ITEM_TYPE_IPV6,
1046         RTE_FLOW_ITEM_TYPE_RAW,
1047         RTE_FLOW_ITEM_TYPE_RAW,
1048         RTE_FLOW_ITEM_TYPE_RAW,
1049         RTE_FLOW_ITEM_TYPE_VF,
1050         RTE_FLOW_ITEM_TYPE_END,
1051 };
1052
1053 static enum rte_flow_item_type pattern_fdir_ipv6_udp_raw_1_vf[] = {
1054         RTE_FLOW_ITEM_TYPE_ETH,
1055         RTE_FLOW_ITEM_TYPE_IPV6,
1056         RTE_FLOW_ITEM_TYPE_UDP,
1057         RTE_FLOW_ITEM_TYPE_RAW,
1058         RTE_FLOW_ITEM_TYPE_VF,
1059         RTE_FLOW_ITEM_TYPE_END,
1060 };
1061
1062 static enum rte_flow_item_type pattern_fdir_ipv6_udp_raw_2_vf[] = {
1063         RTE_FLOW_ITEM_TYPE_ETH,
1064         RTE_FLOW_ITEM_TYPE_IPV6,
1065         RTE_FLOW_ITEM_TYPE_UDP,
1066         RTE_FLOW_ITEM_TYPE_RAW,
1067         RTE_FLOW_ITEM_TYPE_RAW,
1068         RTE_FLOW_ITEM_TYPE_VF,
1069         RTE_FLOW_ITEM_TYPE_END,
1070 };
1071
1072 static enum rte_flow_item_type pattern_fdir_ipv6_udp_raw_3_vf[] = {
1073         RTE_FLOW_ITEM_TYPE_ETH,
1074         RTE_FLOW_ITEM_TYPE_IPV6,
1075         RTE_FLOW_ITEM_TYPE_UDP,
1076         RTE_FLOW_ITEM_TYPE_RAW,
1077         RTE_FLOW_ITEM_TYPE_RAW,
1078         RTE_FLOW_ITEM_TYPE_RAW,
1079         RTE_FLOW_ITEM_TYPE_VF,
1080         RTE_FLOW_ITEM_TYPE_END,
1081 };
1082
1083 static enum rte_flow_item_type pattern_fdir_ipv6_tcp_raw_1_vf[] = {
1084         RTE_FLOW_ITEM_TYPE_ETH,
1085         RTE_FLOW_ITEM_TYPE_IPV6,
1086         RTE_FLOW_ITEM_TYPE_TCP,
1087         RTE_FLOW_ITEM_TYPE_RAW,
1088         RTE_FLOW_ITEM_TYPE_VF,
1089         RTE_FLOW_ITEM_TYPE_END,
1090 };
1091
1092 static enum rte_flow_item_type pattern_fdir_ipv6_tcp_raw_2_vf[] = {
1093         RTE_FLOW_ITEM_TYPE_ETH,
1094         RTE_FLOW_ITEM_TYPE_IPV6,
1095         RTE_FLOW_ITEM_TYPE_TCP,
1096         RTE_FLOW_ITEM_TYPE_RAW,
1097         RTE_FLOW_ITEM_TYPE_RAW,
1098         RTE_FLOW_ITEM_TYPE_VF,
1099         RTE_FLOW_ITEM_TYPE_END,
1100 };
1101
1102 static enum rte_flow_item_type pattern_fdir_ipv6_tcp_raw_3_vf[] = {
1103         RTE_FLOW_ITEM_TYPE_ETH,
1104         RTE_FLOW_ITEM_TYPE_IPV6,
1105         RTE_FLOW_ITEM_TYPE_TCP,
1106         RTE_FLOW_ITEM_TYPE_RAW,
1107         RTE_FLOW_ITEM_TYPE_RAW,
1108         RTE_FLOW_ITEM_TYPE_RAW,
1109         RTE_FLOW_ITEM_TYPE_VF,
1110         RTE_FLOW_ITEM_TYPE_END,
1111 };
1112
1113 static enum rte_flow_item_type pattern_fdir_ipv6_sctp_raw_1_vf[] = {
1114         RTE_FLOW_ITEM_TYPE_ETH,
1115         RTE_FLOW_ITEM_TYPE_IPV6,
1116         RTE_FLOW_ITEM_TYPE_SCTP,
1117         RTE_FLOW_ITEM_TYPE_RAW,
1118         RTE_FLOW_ITEM_TYPE_VF,
1119         RTE_FLOW_ITEM_TYPE_END,
1120 };
1121
1122 static enum rte_flow_item_type pattern_fdir_ipv6_sctp_raw_2_vf[] = {
1123         RTE_FLOW_ITEM_TYPE_ETH,
1124         RTE_FLOW_ITEM_TYPE_IPV6,
1125         RTE_FLOW_ITEM_TYPE_SCTP,
1126         RTE_FLOW_ITEM_TYPE_RAW,
1127         RTE_FLOW_ITEM_TYPE_RAW,
1128         RTE_FLOW_ITEM_TYPE_VF,
1129         RTE_FLOW_ITEM_TYPE_END,
1130 };
1131
1132 static enum rte_flow_item_type pattern_fdir_ipv6_sctp_raw_3_vf[] = {
1133         RTE_FLOW_ITEM_TYPE_ETH,
1134         RTE_FLOW_ITEM_TYPE_IPV6,
1135         RTE_FLOW_ITEM_TYPE_SCTP,
1136         RTE_FLOW_ITEM_TYPE_RAW,
1137         RTE_FLOW_ITEM_TYPE_RAW,
1138         RTE_FLOW_ITEM_TYPE_RAW,
1139         RTE_FLOW_ITEM_TYPE_VF,
1140         RTE_FLOW_ITEM_TYPE_END,
1141 };
1142
1143 static enum rte_flow_item_type pattern_fdir_ethertype_vlan_vf[] = {
1144         RTE_FLOW_ITEM_TYPE_ETH,
1145         RTE_FLOW_ITEM_TYPE_VLAN,
1146         RTE_FLOW_ITEM_TYPE_VF,
1147         RTE_FLOW_ITEM_TYPE_END,
1148 };
1149
1150 static enum rte_flow_item_type pattern_fdir_vlan_ipv4_vf[] = {
1151         RTE_FLOW_ITEM_TYPE_ETH,
1152         RTE_FLOW_ITEM_TYPE_VLAN,
1153         RTE_FLOW_ITEM_TYPE_IPV4,
1154         RTE_FLOW_ITEM_TYPE_VF,
1155         RTE_FLOW_ITEM_TYPE_END,
1156 };
1157
1158 static enum rte_flow_item_type pattern_fdir_vlan_ipv4_udp_vf[] = {
1159         RTE_FLOW_ITEM_TYPE_ETH,
1160         RTE_FLOW_ITEM_TYPE_VLAN,
1161         RTE_FLOW_ITEM_TYPE_IPV4,
1162         RTE_FLOW_ITEM_TYPE_UDP,
1163         RTE_FLOW_ITEM_TYPE_VF,
1164         RTE_FLOW_ITEM_TYPE_END,
1165 };
1166
1167 static enum rte_flow_item_type pattern_fdir_vlan_ipv4_tcp_vf[] = {
1168         RTE_FLOW_ITEM_TYPE_ETH,
1169         RTE_FLOW_ITEM_TYPE_VLAN,
1170         RTE_FLOW_ITEM_TYPE_IPV4,
1171         RTE_FLOW_ITEM_TYPE_TCP,
1172         RTE_FLOW_ITEM_TYPE_VF,
1173         RTE_FLOW_ITEM_TYPE_END,
1174 };
1175
1176 static enum rte_flow_item_type pattern_fdir_vlan_ipv4_sctp_vf[] = {
1177         RTE_FLOW_ITEM_TYPE_ETH,
1178         RTE_FLOW_ITEM_TYPE_VLAN,
1179         RTE_FLOW_ITEM_TYPE_IPV4,
1180         RTE_FLOW_ITEM_TYPE_SCTP,
1181         RTE_FLOW_ITEM_TYPE_VF,
1182         RTE_FLOW_ITEM_TYPE_END,
1183 };
1184
1185 static enum rte_flow_item_type pattern_fdir_vlan_ipv6_vf[] = {
1186         RTE_FLOW_ITEM_TYPE_ETH,
1187         RTE_FLOW_ITEM_TYPE_VLAN,
1188         RTE_FLOW_ITEM_TYPE_IPV6,
1189         RTE_FLOW_ITEM_TYPE_VF,
1190         RTE_FLOW_ITEM_TYPE_END,
1191 };
1192
1193 static enum rte_flow_item_type pattern_fdir_vlan_ipv6_udp_vf[] = {
1194         RTE_FLOW_ITEM_TYPE_ETH,
1195         RTE_FLOW_ITEM_TYPE_VLAN,
1196         RTE_FLOW_ITEM_TYPE_IPV6,
1197         RTE_FLOW_ITEM_TYPE_UDP,
1198         RTE_FLOW_ITEM_TYPE_VF,
1199         RTE_FLOW_ITEM_TYPE_END,
1200 };
1201
1202 static enum rte_flow_item_type pattern_fdir_vlan_ipv6_tcp_vf[] = {
1203         RTE_FLOW_ITEM_TYPE_ETH,
1204         RTE_FLOW_ITEM_TYPE_VLAN,
1205         RTE_FLOW_ITEM_TYPE_IPV6,
1206         RTE_FLOW_ITEM_TYPE_TCP,
1207         RTE_FLOW_ITEM_TYPE_VF,
1208         RTE_FLOW_ITEM_TYPE_END,
1209 };
1210
1211 static enum rte_flow_item_type pattern_fdir_vlan_ipv6_sctp_vf[] = {
1212         RTE_FLOW_ITEM_TYPE_ETH,
1213         RTE_FLOW_ITEM_TYPE_VLAN,
1214         RTE_FLOW_ITEM_TYPE_IPV6,
1215         RTE_FLOW_ITEM_TYPE_SCTP,
1216         RTE_FLOW_ITEM_TYPE_VF,
1217         RTE_FLOW_ITEM_TYPE_END,
1218 };
1219
1220 static enum rte_flow_item_type pattern_fdir_ethertype_vlan_raw_1_vf[] = {
1221         RTE_FLOW_ITEM_TYPE_ETH,
1222         RTE_FLOW_ITEM_TYPE_VLAN,
1223         RTE_FLOW_ITEM_TYPE_RAW,
1224         RTE_FLOW_ITEM_TYPE_VF,
1225         RTE_FLOW_ITEM_TYPE_END,
1226 };
1227
1228 static enum rte_flow_item_type pattern_fdir_ethertype_vlan_raw_2_vf[] = {
1229         RTE_FLOW_ITEM_TYPE_ETH,
1230         RTE_FLOW_ITEM_TYPE_VLAN,
1231         RTE_FLOW_ITEM_TYPE_RAW,
1232         RTE_FLOW_ITEM_TYPE_RAW,
1233         RTE_FLOW_ITEM_TYPE_VF,
1234         RTE_FLOW_ITEM_TYPE_END,
1235 };
1236
1237 static enum rte_flow_item_type pattern_fdir_ethertype_vlan_raw_3_vf[] = {
1238         RTE_FLOW_ITEM_TYPE_ETH,
1239         RTE_FLOW_ITEM_TYPE_VLAN,
1240         RTE_FLOW_ITEM_TYPE_RAW,
1241         RTE_FLOW_ITEM_TYPE_RAW,
1242         RTE_FLOW_ITEM_TYPE_RAW,
1243         RTE_FLOW_ITEM_TYPE_VF,
1244         RTE_FLOW_ITEM_TYPE_END,
1245 };
1246
1247 static enum rte_flow_item_type pattern_fdir_vlan_ipv4_raw_1_vf[] = {
1248         RTE_FLOW_ITEM_TYPE_ETH,
1249         RTE_FLOW_ITEM_TYPE_VLAN,
1250         RTE_FLOW_ITEM_TYPE_IPV4,
1251         RTE_FLOW_ITEM_TYPE_RAW,
1252         RTE_FLOW_ITEM_TYPE_VF,
1253         RTE_FLOW_ITEM_TYPE_END,
1254 };
1255
1256 static enum rte_flow_item_type pattern_fdir_vlan_ipv4_raw_2_vf[] = {
1257         RTE_FLOW_ITEM_TYPE_ETH,
1258         RTE_FLOW_ITEM_TYPE_VLAN,
1259         RTE_FLOW_ITEM_TYPE_IPV4,
1260         RTE_FLOW_ITEM_TYPE_RAW,
1261         RTE_FLOW_ITEM_TYPE_RAW,
1262         RTE_FLOW_ITEM_TYPE_VF,
1263         RTE_FLOW_ITEM_TYPE_END,
1264 };
1265
1266 static enum rte_flow_item_type pattern_fdir_vlan_ipv4_raw_3_vf[] = {
1267         RTE_FLOW_ITEM_TYPE_ETH,
1268         RTE_FLOW_ITEM_TYPE_VLAN,
1269         RTE_FLOW_ITEM_TYPE_IPV4,
1270         RTE_FLOW_ITEM_TYPE_RAW,
1271         RTE_FLOW_ITEM_TYPE_RAW,
1272         RTE_FLOW_ITEM_TYPE_RAW,
1273         RTE_FLOW_ITEM_TYPE_VF,
1274         RTE_FLOW_ITEM_TYPE_END,
1275 };
1276
1277 static enum rte_flow_item_type pattern_fdir_vlan_ipv4_udp_raw_1_vf[] = {
1278         RTE_FLOW_ITEM_TYPE_ETH,
1279         RTE_FLOW_ITEM_TYPE_VLAN,
1280         RTE_FLOW_ITEM_TYPE_IPV4,
1281         RTE_FLOW_ITEM_TYPE_UDP,
1282         RTE_FLOW_ITEM_TYPE_RAW,
1283         RTE_FLOW_ITEM_TYPE_VF,
1284         RTE_FLOW_ITEM_TYPE_END,
1285 };
1286
1287 static enum rte_flow_item_type pattern_fdir_vlan_ipv4_udp_raw_2_vf[] = {
1288         RTE_FLOW_ITEM_TYPE_ETH,
1289         RTE_FLOW_ITEM_TYPE_VLAN,
1290         RTE_FLOW_ITEM_TYPE_IPV4,
1291         RTE_FLOW_ITEM_TYPE_UDP,
1292         RTE_FLOW_ITEM_TYPE_RAW,
1293         RTE_FLOW_ITEM_TYPE_RAW,
1294         RTE_FLOW_ITEM_TYPE_VF,
1295         RTE_FLOW_ITEM_TYPE_END,
1296 };
1297
1298 static enum rte_flow_item_type pattern_fdir_vlan_ipv4_udp_raw_3_vf[] = {
1299         RTE_FLOW_ITEM_TYPE_ETH,
1300         RTE_FLOW_ITEM_TYPE_VLAN,
1301         RTE_FLOW_ITEM_TYPE_IPV4,
1302         RTE_FLOW_ITEM_TYPE_UDP,
1303         RTE_FLOW_ITEM_TYPE_RAW,
1304         RTE_FLOW_ITEM_TYPE_RAW,
1305         RTE_FLOW_ITEM_TYPE_RAW,
1306         RTE_FLOW_ITEM_TYPE_VF,
1307         RTE_FLOW_ITEM_TYPE_END,
1308 };
1309
1310 static enum rte_flow_item_type pattern_fdir_vlan_ipv4_tcp_raw_1_vf[] = {
1311         RTE_FLOW_ITEM_TYPE_ETH,
1312         RTE_FLOW_ITEM_TYPE_VLAN,
1313         RTE_FLOW_ITEM_TYPE_IPV4,
1314         RTE_FLOW_ITEM_TYPE_TCP,
1315         RTE_FLOW_ITEM_TYPE_RAW,
1316         RTE_FLOW_ITEM_TYPE_VF,
1317         RTE_FLOW_ITEM_TYPE_END,
1318 };
1319
1320 static enum rte_flow_item_type pattern_fdir_vlan_ipv4_tcp_raw_2_vf[] = {
1321         RTE_FLOW_ITEM_TYPE_ETH,
1322         RTE_FLOW_ITEM_TYPE_VLAN,
1323         RTE_FLOW_ITEM_TYPE_IPV4,
1324         RTE_FLOW_ITEM_TYPE_TCP,
1325         RTE_FLOW_ITEM_TYPE_RAW,
1326         RTE_FLOW_ITEM_TYPE_RAW,
1327         RTE_FLOW_ITEM_TYPE_VF,
1328         RTE_FLOW_ITEM_TYPE_END,
1329 };
1330
1331 static enum rte_flow_item_type pattern_fdir_vlan_ipv4_tcp_raw_3_vf[] = {
1332         RTE_FLOW_ITEM_TYPE_ETH,
1333         RTE_FLOW_ITEM_TYPE_VLAN,
1334         RTE_FLOW_ITEM_TYPE_IPV4,
1335         RTE_FLOW_ITEM_TYPE_TCP,
1336         RTE_FLOW_ITEM_TYPE_RAW,
1337         RTE_FLOW_ITEM_TYPE_RAW,
1338         RTE_FLOW_ITEM_TYPE_RAW,
1339         RTE_FLOW_ITEM_TYPE_VF,
1340         RTE_FLOW_ITEM_TYPE_END,
1341 };
1342
1343 static enum rte_flow_item_type pattern_fdir_vlan_ipv4_sctp_raw_1_vf[] = {
1344         RTE_FLOW_ITEM_TYPE_ETH,
1345         RTE_FLOW_ITEM_TYPE_VLAN,
1346         RTE_FLOW_ITEM_TYPE_IPV4,
1347         RTE_FLOW_ITEM_TYPE_SCTP,
1348         RTE_FLOW_ITEM_TYPE_RAW,
1349         RTE_FLOW_ITEM_TYPE_VF,
1350         RTE_FLOW_ITEM_TYPE_END,
1351 };
1352
1353 static enum rte_flow_item_type pattern_fdir_vlan_ipv4_sctp_raw_2_vf[] = {
1354         RTE_FLOW_ITEM_TYPE_ETH,
1355         RTE_FLOW_ITEM_TYPE_VLAN,
1356         RTE_FLOW_ITEM_TYPE_IPV4,
1357         RTE_FLOW_ITEM_TYPE_SCTP,
1358         RTE_FLOW_ITEM_TYPE_RAW,
1359         RTE_FLOW_ITEM_TYPE_RAW,
1360         RTE_FLOW_ITEM_TYPE_VF,
1361         RTE_FLOW_ITEM_TYPE_END,
1362 };
1363
1364 static enum rte_flow_item_type pattern_fdir_vlan_ipv4_sctp_raw_3_vf[] = {
1365         RTE_FLOW_ITEM_TYPE_ETH,
1366         RTE_FLOW_ITEM_TYPE_VLAN,
1367         RTE_FLOW_ITEM_TYPE_IPV4,
1368         RTE_FLOW_ITEM_TYPE_SCTP,
1369         RTE_FLOW_ITEM_TYPE_RAW,
1370         RTE_FLOW_ITEM_TYPE_RAW,
1371         RTE_FLOW_ITEM_TYPE_RAW,
1372         RTE_FLOW_ITEM_TYPE_VF,
1373         RTE_FLOW_ITEM_TYPE_END,
1374 };
1375
1376 static enum rte_flow_item_type pattern_fdir_vlan_ipv6_raw_1_vf[] = {
1377         RTE_FLOW_ITEM_TYPE_ETH,
1378         RTE_FLOW_ITEM_TYPE_VLAN,
1379         RTE_FLOW_ITEM_TYPE_IPV6,
1380         RTE_FLOW_ITEM_TYPE_RAW,
1381         RTE_FLOW_ITEM_TYPE_VF,
1382         RTE_FLOW_ITEM_TYPE_END,
1383 };
1384
1385 static enum rte_flow_item_type pattern_fdir_vlan_ipv6_raw_2_vf[] = {
1386         RTE_FLOW_ITEM_TYPE_ETH,
1387         RTE_FLOW_ITEM_TYPE_VLAN,
1388         RTE_FLOW_ITEM_TYPE_IPV6,
1389         RTE_FLOW_ITEM_TYPE_RAW,
1390         RTE_FLOW_ITEM_TYPE_RAW,
1391         RTE_FLOW_ITEM_TYPE_VF,
1392         RTE_FLOW_ITEM_TYPE_END,
1393 };
1394
1395 static enum rte_flow_item_type pattern_fdir_vlan_ipv6_raw_3_vf[] = {
1396         RTE_FLOW_ITEM_TYPE_ETH,
1397         RTE_FLOW_ITEM_TYPE_VLAN,
1398         RTE_FLOW_ITEM_TYPE_IPV6,
1399         RTE_FLOW_ITEM_TYPE_RAW,
1400         RTE_FLOW_ITEM_TYPE_RAW,
1401         RTE_FLOW_ITEM_TYPE_RAW,
1402         RTE_FLOW_ITEM_TYPE_VF,
1403         RTE_FLOW_ITEM_TYPE_END,
1404 };
1405
1406 static enum rte_flow_item_type pattern_fdir_vlan_ipv6_udp_raw_1_vf[] = {
1407         RTE_FLOW_ITEM_TYPE_ETH,
1408         RTE_FLOW_ITEM_TYPE_VLAN,
1409         RTE_FLOW_ITEM_TYPE_IPV6,
1410         RTE_FLOW_ITEM_TYPE_UDP,
1411         RTE_FLOW_ITEM_TYPE_RAW,
1412         RTE_FLOW_ITEM_TYPE_VF,
1413         RTE_FLOW_ITEM_TYPE_END,
1414 };
1415
1416 static enum rte_flow_item_type pattern_fdir_vlan_ipv6_udp_raw_2_vf[] = {
1417         RTE_FLOW_ITEM_TYPE_ETH,
1418         RTE_FLOW_ITEM_TYPE_VLAN,
1419         RTE_FLOW_ITEM_TYPE_IPV6,
1420         RTE_FLOW_ITEM_TYPE_UDP,
1421         RTE_FLOW_ITEM_TYPE_RAW,
1422         RTE_FLOW_ITEM_TYPE_RAW,
1423         RTE_FLOW_ITEM_TYPE_VF,
1424         RTE_FLOW_ITEM_TYPE_END,
1425 };
1426
1427 static enum rte_flow_item_type pattern_fdir_vlan_ipv6_udp_raw_3_vf[] = {
1428         RTE_FLOW_ITEM_TYPE_ETH,
1429         RTE_FLOW_ITEM_TYPE_VLAN,
1430         RTE_FLOW_ITEM_TYPE_IPV6,
1431         RTE_FLOW_ITEM_TYPE_UDP,
1432         RTE_FLOW_ITEM_TYPE_RAW,
1433         RTE_FLOW_ITEM_TYPE_RAW,
1434         RTE_FLOW_ITEM_TYPE_RAW,
1435         RTE_FLOW_ITEM_TYPE_VF,
1436         RTE_FLOW_ITEM_TYPE_END,
1437 };
1438
1439 static enum rte_flow_item_type pattern_fdir_vlan_ipv6_tcp_raw_1_vf[] = {
1440         RTE_FLOW_ITEM_TYPE_ETH,
1441         RTE_FLOW_ITEM_TYPE_VLAN,
1442         RTE_FLOW_ITEM_TYPE_IPV6,
1443         RTE_FLOW_ITEM_TYPE_TCP,
1444         RTE_FLOW_ITEM_TYPE_RAW,
1445         RTE_FLOW_ITEM_TYPE_VF,
1446         RTE_FLOW_ITEM_TYPE_END,
1447 };
1448
1449 static enum rte_flow_item_type pattern_fdir_vlan_ipv6_tcp_raw_2_vf[] = {
1450         RTE_FLOW_ITEM_TYPE_ETH,
1451         RTE_FLOW_ITEM_TYPE_VLAN,
1452         RTE_FLOW_ITEM_TYPE_IPV6,
1453         RTE_FLOW_ITEM_TYPE_TCP,
1454         RTE_FLOW_ITEM_TYPE_RAW,
1455         RTE_FLOW_ITEM_TYPE_RAW,
1456         RTE_FLOW_ITEM_TYPE_VF,
1457         RTE_FLOW_ITEM_TYPE_END,
1458 };
1459
1460 static enum rte_flow_item_type pattern_fdir_vlan_ipv6_tcp_raw_3_vf[] = {
1461         RTE_FLOW_ITEM_TYPE_ETH,
1462         RTE_FLOW_ITEM_TYPE_VLAN,
1463         RTE_FLOW_ITEM_TYPE_IPV6,
1464         RTE_FLOW_ITEM_TYPE_TCP,
1465         RTE_FLOW_ITEM_TYPE_RAW,
1466         RTE_FLOW_ITEM_TYPE_RAW,
1467         RTE_FLOW_ITEM_TYPE_RAW,
1468         RTE_FLOW_ITEM_TYPE_VF,
1469         RTE_FLOW_ITEM_TYPE_END,
1470 };
1471
1472 static enum rte_flow_item_type pattern_fdir_vlan_ipv6_sctp_raw_1_vf[] = {
1473         RTE_FLOW_ITEM_TYPE_ETH,
1474         RTE_FLOW_ITEM_TYPE_VLAN,
1475         RTE_FLOW_ITEM_TYPE_IPV6,
1476         RTE_FLOW_ITEM_TYPE_SCTP,
1477         RTE_FLOW_ITEM_TYPE_RAW,
1478         RTE_FLOW_ITEM_TYPE_VF,
1479         RTE_FLOW_ITEM_TYPE_END,
1480 };
1481
1482 static enum rte_flow_item_type pattern_fdir_vlan_ipv6_sctp_raw_2_vf[] = {
1483         RTE_FLOW_ITEM_TYPE_ETH,
1484         RTE_FLOW_ITEM_TYPE_VLAN,
1485         RTE_FLOW_ITEM_TYPE_IPV6,
1486         RTE_FLOW_ITEM_TYPE_SCTP,
1487         RTE_FLOW_ITEM_TYPE_RAW,
1488         RTE_FLOW_ITEM_TYPE_RAW,
1489         RTE_FLOW_ITEM_TYPE_VF,
1490         RTE_FLOW_ITEM_TYPE_END,
1491 };
1492
1493 static enum rte_flow_item_type pattern_fdir_vlan_ipv6_sctp_raw_3_vf[] = {
1494         RTE_FLOW_ITEM_TYPE_ETH,
1495         RTE_FLOW_ITEM_TYPE_VLAN,
1496         RTE_FLOW_ITEM_TYPE_IPV6,
1497         RTE_FLOW_ITEM_TYPE_SCTP,
1498         RTE_FLOW_ITEM_TYPE_RAW,
1499         RTE_FLOW_ITEM_TYPE_RAW,
1500         RTE_FLOW_ITEM_TYPE_RAW,
1501         RTE_FLOW_ITEM_TYPE_VF,
1502         RTE_FLOW_ITEM_TYPE_END,
1503 };
1504
1505 /* Pattern matched tunnel filter */
1506 static enum rte_flow_item_type pattern_vxlan_1[] = {
1507         RTE_FLOW_ITEM_TYPE_ETH,
1508         RTE_FLOW_ITEM_TYPE_IPV4,
1509         RTE_FLOW_ITEM_TYPE_UDP,
1510         RTE_FLOW_ITEM_TYPE_VXLAN,
1511         RTE_FLOW_ITEM_TYPE_ETH,
1512         RTE_FLOW_ITEM_TYPE_END,
1513 };
1514
1515 static enum rte_flow_item_type pattern_vxlan_2[] = {
1516         RTE_FLOW_ITEM_TYPE_ETH,
1517         RTE_FLOW_ITEM_TYPE_IPV6,
1518         RTE_FLOW_ITEM_TYPE_UDP,
1519         RTE_FLOW_ITEM_TYPE_VXLAN,
1520         RTE_FLOW_ITEM_TYPE_ETH,
1521         RTE_FLOW_ITEM_TYPE_END,
1522 };
1523
1524 static enum rte_flow_item_type pattern_vxlan_3[] = {
1525         RTE_FLOW_ITEM_TYPE_ETH,
1526         RTE_FLOW_ITEM_TYPE_IPV4,
1527         RTE_FLOW_ITEM_TYPE_UDP,
1528         RTE_FLOW_ITEM_TYPE_VXLAN,
1529         RTE_FLOW_ITEM_TYPE_ETH,
1530         RTE_FLOW_ITEM_TYPE_VLAN,
1531         RTE_FLOW_ITEM_TYPE_END,
1532 };
1533
1534 static enum rte_flow_item_type pattern_vxlan_4[] = {
1535         RTE_FLOW_ITEM_TYPE_ETH,
1536         RTE_FLOW_ITEM_TYPE_IPV6,
1537         RTE_FLOW_ITEM_TYPE_UDP,
1538         RTE_FLOW_ITEM_TYPE_VXLAN,
1539         RTE_FLOW_ITEM_TYPE_ETH,
1540         RTE_FLOW_ITEM_TYPE_VLAN,
1541         RTE_FLOW_ITEM_TYPE_END,
1542 };
1543
1544 static enum rte_flow_item_type pattern_nvgre_1[] = {
1545         RTE_FLOW_ITEM_TYPE_ETH,
1546         RTE_FLOW_ITEM_TYPE_IPV4,
1547         RTE_FLOW_ITEM_TYPE_NVGRE,
1548         RTE_FLOW_ITEM_TYPE_ETH,
1549         RTE_FLOW_ITEM_TYPE_END,
1550 };
1551
1552 static enum rte_flow_item_type pattern_nvgre_2[] = {
1553         RTE_FLOW_ITEM_TYPE_ETH,
1554         RTE_FLOW_ITEM_TYPE_IPV6,
1555         RTE_FLOW_ITEM_TYPE_NVGRE,
1556         RTE_FLOW_ITEM_TYPE_ETH,
1557         RTE_FLOW_ITEM_TYPE_END,
1558 };
1559
1560 static enum rte_flow_item_type pattern_nvgre_3[] = {
1561         RTE_FLOW_ITEM_TYPE_ETH,
1562         RTE_FLOW_ITEM_TYPE_IPV4,
1563         RTE_FLOW_ITEM_TYPE_NVGRE,
1564         RTE_FLOW_ITEM_TYPE_ETH,
1565         RTE_FLOW_ITEM_TYPE_VLAN,
1566         RTE_FLOW_ITEM_TYPE_END,
1567 };
1568
1569 static enum rte_flow_item_type pattern_nvgre_4[] = {
1570         RTE_FLOW_ITEM_TYPE_ETH,
1571         RTE_FLOW_ITEM_TYPE_IPV6,
1572         RTE_FLOW_ITEM_TYPE_NVGRE,
1573         RTE_FLOW_ITEM_TYPE_ETH,
1574         RTE_FLOW_ITEM_TYPE_VLAN,
1575         RTE_FLOW_ITEM_TYPE_END,
1576 };
1577
1578 static enum rte_flow_item_type pattern_mpls_1[] = {
1579         RTE_FLOW_ITEM_TYPE_ETH,
1580         RTE_FLOW_ITEM_TYPE_IPV4,
1581         RTE_FLOW_ITEM_TYPE_UDP,
1582         RTE_FLOW_ITEM_TYPE_MPLS,
1583         RTE_FLOW_ITEM_TYPE_END,
1584 };
1585
1586 static enum rte_flow_item_type pattern_mpls_2[] = {
1587         RTE_FLOW_ITEM_TYPE_ETH,
1588         RTE_FLOW_ITEM_TYPE_IPV6,
1589         RTE_FLOW_ITEM_TYPE_UDP,
1590         RTE_FLOW_ITEM_TYPE_MPLS,
1591         RTE_FLOW_ITEM_TYPE_END,
1592 };
1593
1594 static enum rte_flow_item_type pattern_mpls_3[] = {
1595         RTE_FLOW_ITEM_TYPE_ETH,
1596         RTE_FLOW_ITEM_TYPE_IPV4,
1597         RTE_FLOW_ITEM_TYPE_GRE,
1598         RTE_FLOW_ITEM_TYPE_MPLS,
1599         RTE_FLOW_ITEM_TYPE_END,
1600 };
1601
1602 static enum rte_flow_item_type pattern_mpls_4[] = {
1603         RTE_FLOW_ITEM_TYPE_ETH,
1604         RTE_FLOW_ITEM_TYPE_IPV6,
1605         RTE_FLOW_ITEM_TYPE_GRE,
1606         RTE_FLOW_ITEM_TYPE_MPLS,
1607         RTE_FLOW_ITEM_TYPE_END,
1608 };
1609
1610 static enum rte_flow_item_type pattern_qinq_1[] = {
1611         RTE_FLOW_ITEM_TYPE_ETH,
1612         RTE_FLOW_ITEM_TYPE_VLAN,
1613         RTE_FLOW_ITEM_TYPE_VLAN,
1614         RTE_FLOW_ITEM_TYPE_END,
1615 };
1616
1617 static struct i40e_valid_pattern i40e_supported_patterns[] = {
1618         /* Ethertype */
1619         { pattern_ethertype, i40e_flow_parse_ethertype_filter },
1620         /* FDIR - support default flow type without flexible payload*/
1621         { pattern_ethertype, i40e_flow_parse_fdir_filter },
1622         { pattern_fdir_ipv4, i40e_flow_parse_fdir_filter },
1623         { pattern_fdir_ipv4_udp, i40e_flow_parse_fdir_filter },
1624         { pattern_fdir_ipv4_tcp, i40e_flow_parse_fdir_filter },
1625         { pattern_fdir_ipv4_sctp, i40e_flow_parse_fdir_filter },
1626         { pattern_fdir_ipv4_gtpc, i40e_flow_parse_fdir_filter },
1627         { pattern_fdir_ipv4_gtpu, i40e_flow_parse_fdir_filter },
1628         { pattern_fdir_ipv4_gtpu_ipv4, i40e_flow_parse_fdir_filter },
1629         { pattern_fdir_ipv4_gtpu_ipv6, i40e_flow_parse_fdir_filter },
1630         { pattern_fdir_ipv6, i40e_flow_parse_fdir_filter },
1631         { pattern_fdir_ipv6_udp, i40e_flow_parse_fdir_filter },
1632         { pattern_fdir_ipv6_tcp, i40e_flow_parse_fdir_filter },
1633         { pattern_fdir_ipv6_sctp, i40e_flow_parse_fdir_filter },
1634         { pattern_fdir_ipv6_gtpc, i40e_flow_parse_fdir_filter },
1635         { pattern_fdir_ipv6_gtpu, i40e_flow_parse_fdir_filter },
1636         { pattern_fdir_ipv6_gtpu_ipv4, i40e_flow_parse_fdir_filter },
1637         { pattern_fdir_ipv6_gtpu_ipv6, i40e_flow_parse_fdir_filter },
1638         /* FDIR - support default flow type with flexible payload */
1639         { pattern_fdir_ethertype_raw_1, i40e_flow_parse_fdir_filter },
1640         { pattern_fdir_ethertype_raw_2, i40e_flow_parse_fdir_filter },
1641         { pattern_fdir_ethertype_raw_3, i40e_flow_parse_fdir_filter },
1642         { pattern_fdir_ipv4_raw_1, i40e_flow_parse_fdir_filter },
1643         { pattern_fdir_ipv4_raw_2, i40e_flow_parse_fdir_filter },
1644         { pattern_fdir_ipv4_raw_3, i40e_flow_parse_fdir_filter },
1645         { pattern_fdir_ipv4_udp_raw_1, i40e_flow_parse_fdir_filter },
1646         { pattern_fdir_ipv4_udp_raw_2, i40e_flow_parse_fdir_filter },
1647         { pattern_fdir_ipv4_udp_raw_3, i40e_flow_parse_fdir_filter },
1648         { pattern_fdir_ipv4_tcp_raw_1, i40e_flow_parse_fdir_filter },
1649         { pattern_fdir_ipv4_tcp_raw_2, i40e_flow_parse_fdir_filter },
1650         { pattern_fdir_ipv4_tcp_raw_3, i40e_flow_parse_fdir_filter },
1651         { pattern_fdir_ipv4_sctp_raw_1, i40e_flow_parse_fdir_filter },
1652         { pattern_fdir_ipv4_sctp_raw_2, i40e_flow_parse_fdir_filter },
1653         { pattern_fdir_ipv4_sctp_raw_3, i40e_flow_parse_fdir_filter },
1654         { pattern_fdir_ipv6_raw_1, i40e_flow_parse_fdir_filter },
1655         { pattern_fdir_ipv6_raw_2, i40e_flow_parse_fdir_filter },
1656         { pattern_fdir_ipv6_raw_3, i40e_flow_parse_fdir_filter },
1657         { pattern_fdir_ipv6_udp_raw_1, i40e_flow_parse_fdir_filter },
1658         { pattern_fdir_ipv6_udp_raw_2, i40e_flow_parse_fdir_filter },
1659         { pattern_fdir_ipv6_udp_raw_3, i40e_flow_parse_fdir_filter },
1660         { pattern_fdir_ipv6_tcp_raw_1, i40e_flow_parse_fdir_filter },
1661         { pattern_fdir_ipv6_tcp_raw_2, i40e_flow_parse_fdir_filter },
1662         { pattern_fdir_ipv6_tcp_raw_3, i40e_flow_parse_fdir_filter },
1663         { pattern_fdir_ipv6_sctp_raw_1, i40e_flow_parse_fdir_filter },
1664         { pattern_fdir_ipv6_sctp_raw_2, i40e_flow_parse_fdir_filter },
1665         { pattern_fdir_ipv6_sctp_raw_3, i40e_flow_parse_fdir_filter },
1666         /* FDIR - support single vlan input set */
1667         { pattern_fdir_ethertype_vlan, i40e_flow_parse_fdir_filter },
1668         { pattern_fdir_vlan_ipv4, i40e_flow_parse_fdir_filter },
1669         { pattern_fdir_vlan_ipv4_udp, i40e_flow_parse_fdir_filter },
1670         { pattern_fdir_vlan_ipv4_tcp, i40e_flow_parse_fdir_filter },
1671         { pattern_fdir_vlan_ipv4_sctp, i40e_flow_parse_fdir_filter },
1672         { pattern_fdir_vlan_ipv6, i40e_flow_parse_fdir_filter },
1673         { pattern_fdir_vlan_ipv6_udp, i40e_flow_parse_fdir_filter },
1674         { pattern_fdir_vlan_ipv6_tcp, i40e_flow_parse_fdir_filter },
1675         { pattern_fdir_vlan_ipv6_sctp, i40e_flow_parse_fdir_filter },
1676         { pattern_fdir_ethertype_vlan_raw_1, i40e_flow_parse_fdir_filter },
1677         { pattern_fdir_ethertype_vlan_raw_2, i40e_flow_parse_fdir_filter },
1678         { pattern_fdir_ethertype_vlan_raw_3, i40e_flow_parse_fdir_filter },
1679         { pattern_fdir_vlan_ipv4_raw_1, i40e_flow_parse_fdir_filter },
1680         { pattern_fdir_vlan_ipv4_raw_2, i40e_flow_parse_fdir_filter },
1681         { pattern_fdir_vlan_ipv4_raw_3, i40e_flow_parse_fdir_filter },
1682         { pattern_fdir_vlan_ipv4_udp_raw_1, i40e_flow_parse_fdir_filter },
1683         { pattern_fdir_vlan_ipv4_udp_raw_2, i40e_flow_parse_fdir_filter },
1684         { pattern_fdir_vlan_ipv4_udp_raw_3, i40e_flow_parse_fdir_filter },
1685         { pattern_fdir_vlan_ipv4_tcp_raw_1, i40e_flow_parse_fdir_filter },
1686         { pattern_fdir_vlan_ipv4_tcp_raw_2, i40e_flow_parse_fdir_filter },
1687         { pattern_fdir_vlan_ipv4_tcp_raw_3, i40e_flow_parse_fdir_filter },
1688         { pattern_fdir_vlan_ipv4_sctp_raw_1, i40e_flow_parse_fdir_filter },
1689         { pattern_fdir_vlan_ipv4_sctp_raw_2, i40e_flow_parse_fdir_filter },
1690         { pattern_fdir_vlan_ipv4_sctp_raw_3, i40e_flow_parse_fdir_filter },
1691         { pattern_fdir_vlan_ipv6_raw_1, i40e_flow_parse_fdir_filter },
1692         { pattern_fdir_vlan_ipv6_raw_2, i40e_flow_parse_fdir_filter },
1693         { pattern_fdir_vlan_ipv6_raw_3, i40e_flow_parse_fdir_filter },
1694         { pattern_fdir_vlan_ipv6_udp_raw_1, i40e_flow_parse_fdir_filter },
1695         { pattern_fdir_vlan_ipv6_udp_raw_2, i40e_flow_parse_fdir_filter },
1696         { pattern_fdir_vlan_ipv6_udp_raw_3, i40e_flow_parse_fdir_filter },
1697         { pattern_fdir_vlan_ipv6_tcp_raw_1, i40e_flow_parse_fdir_filter },
1698         { pattern_fdir_vlan_ipv6_tcp_raw_2, i40e_flow_parse_fdir_filter },
1699         { pattern_fdir_vlan_ipv6_tcp_raw_3, i40e_flow_parse_fdir_filter },
1700         { pattern_fdir_vlan_ipv6_sctp_raw_1, i40e_flow_parse_fdir_filter },
1701         { pattern_fdir_vlan_ipv6_sctp_raw_2, i40e_flow_parse_fdir_filter },
1702         { pattern_fdir_vlan_ipv6_sctp_raw_3, i40e_flow_parse_fdir_filter },
1703         /* FDIR - support VF item */
1704         { pattern_fdir_ipv4_vf, i40e_flow_parse_fdir_filter },
1705         { pattern_fdir_ipv4_udp_vf, i40e_flow_parse_fdir_filter },
1706         { pattern_fdir_ipv4_tcp_vf, i40e_flow_parse_fdir_filter },
1707         { pattern_fdir_ipv4_sctp_vf, i40e_flow_parse_fdir_filter },
1708         { pattern_fdir_ipv6_vf, i40e_flow_parse_fdir_filter },
1709         { pattern_fdir_ipv6_udp_vf, i40e_flow_parse_fdir_filter },
1710         { pattern_fdir_ipv6_tcp_vf, i40e_flow_parse_fdir_filter },
1711         { pattern_fdir_ipv6_sctp_vf, i40e_flow_parse_fdir_filter },
1712         { pattern_fdir_ethertype_raw_1_vf, i40e_flow_parse_fdir_filter },
1713         { pattern_fdir_ethertype_raw_2_vf, i40e_flow_parse_fdir_filter },
1714         { pattern_fdir_ethertype_raw_3_vf, i40e_flow_parse_fdir_filter },
1715         { pattern_fdir_ipv4_raw_1_vf, i40e_flow_parse_fdir_filter },
1716         { pattern_fdir_ipv4_raw_2_vf, i40e_flow_parse_fdir_filter },
1717         { pattern_fdir_ipv4_raw_3_vf, i40e_flow_parse_fdir_filter },
1718         { pattern_fdir_ipv4_udp_raw_1_vf, i40e_flow_parse_fdir_filter },
1719         { pattern_fdir_ipv4_udp_raw_2_vf, i40e_flow_parse_fdir_filter },
1720         { pattern_fdir_ipv4_udp_raw_3_vf, i40e_flow_parse_fdir_filter },
1721         { pattern_fdir_ipv4_tcp_raw_1_vf, i40e_flow_parse_fdir_filter },
1722         { pattern_fdir_ipv4_tcp_raw_2_vf, i40e_flow_parse_fdir_filter },
1723         { pattern_fdir_ipv4_tcp_raw_3_vf, i40e_flow_parse_fdir_filter },
1724         { pattern_fdir_ipv4_sctp_raw_1_vf, i40e_flow_parse_fdir_filter },
1725         { pattern_fdir_ipv4_sctp_raw_2_vf, i40e_flow_parse_fdir_filter },
1726         { pattern_fdir_ipv4_sctp_raw_3_vf, i40e_flow_parse_fdir_filter },
1727         { pattern_fdir_ipv6_raw_1_vf, i40e_flow_parse_fdir_filter },
1728         { pattern_fdir_ipv6_raw_2_vf, i40e_flow_parse_fdir_filter },
1729         { pattern_fdir_ipv6_raw_3_vf, i40e_flow_parse_fdir_filter },
1730         { pattern_fdir_ipv6_udp_raw_1_vf, i40e_flow_parse_fdir_filter },
1731         { pattern_fdir_ipv6_udp_raw_2_vf, i40e_flow_parse_fdir_filter },
1732         { pattern_fdir_ipv6_udp_raw_3_vf, i40e_flow_parse_fdir_filter },
1733         { pattern_fdir_ipv6_tcp_raw_1_vf, i40e_flow_parse_fdir_filter },
1734         { pattern_fdir_ipv6_tcp_raw_2_vf, i40e_flow_parse_fdir_filter },
1735         { pattern_fdir_ipv6_tcp_raw_3_vf, i40e_flow_parse_fdir_filter },
1736         { pattern_fdir_ipv6_sctp_raw_1_vf, i40e_flow_parse_fdir_filter },
1737         { pattern_fdir_ipv6_sctp_raw_2_vf, i40e_flow_parse_fdir_filter },
1738         { pattern_fdir_ipv6_sctp_raw_3_vf, i40e_flow_parse_fdir_filter },
1739         { pattern_fdir_ethertype_vlan_vf, i40e_flow_parse_fdir_filter },
1740         { pattern_fdir_vlan_ipv4_vf, i40e_flow_parse_fdir_filter },
1741         { pattern_fdir_vlan_ipv4_udp_vf, i40e_flow_parse_fdir_filter },
1742         { pattern_fdir_vlan_ipv4_tcp_vf, i40e_flow_parse_fdir_filter },
1743         { pattern_fdir_vlan_ipv4_sctp_vf, i40e_flow_parse_fdir_filter },
1744         { pattern_fdir_vlan_ipv6_vf, i40e_flow_parse_fdir_filter },
1745         { pattern_fdir_vlan_ipv6_udp_vf, i40e_flow_parse_fdir_filter },
1746         { pattern_fdir_vlan_ipv6_tcp_vf, i40e_flow_parse_fdir_filter },
1747         { pattern_fdir_vlan_ipv6_sctp_vf, i40e_flow_parse_fdir_filter },
1748         { pattern_fdir_ethertype_vlan_raw_1_vf, i40e_flow_parse_fdir_filter },
1749         { pattern_fdir_ethertype_vlan_raw_2_vf, i40e_flow_parse_fdir_filter },
1750         { pattern_fdir_ethertype_vlan_raw_3_vf, i40e_flow_parse_fdir_filter },
1751         { pattern_fdir_vlan_ipv4_raw_1_vf, i40e_flow_parse_fdir_filter },
1752         { pattern_fdir_vlan_ipv4_raw_2_vf, i40e_flow_parse_fdir_filter },
1753         { pattern_fdir_vlan_ipv4_raw_3_vf, i40e_flow_parse_fdir_filter },
1754         { pattern_fdir_vlan_ipv4_udp_raw_1_vf, i40e_flow_parse_fdir_filter },
1755         { pattern_fdir_vlan_ipv4_udp_raw_2_vf, i40e_flow_parse_fdir_filter },
1756         { pattern_fdir_vlan_ipv4_udp_raw_3_vf, i40e_flow_parse_fdir_filter },
1757         { pattern_fdir_vlan_ipv4_tcp_raw_1_vf, i40e_flow_parse_fdir_filter },
1758         { pattern_fdir_vlan_ipv4_tcp_raw_2_vf, i40e_flow_parse_fdir_filter },
1759         { pattern_fdir_vlan_ipv4_tcp_raw_3_vf, i40e_flow_parse_fdir_filter },
1760         { pattern_fdir_vlan_ipv4_sctp_raw_1_vf, i40e_flow_parse_fdir_filter },
1761         { pattern_fdir_vlan_ipv4_sctp_raw_2_vf, i40e_flow_parse_fdir_filter },
1762         { pattern_fdir_vlan_ipv4_sctp_raw_3_vf, i40e_flow_parse_fdir_filter },
1763         { pattern_fdir_vlan_ipv6_raw_1_vf, i40e_flow_parse_fdir_filter },
1764         { pattern_fdir_vlan_ipv6_raw_2_vf, i40e_flow_parse_fdir_filter },
1765         { pattern_fdir_vlan_ipv6_raw_3_vf, i40e_flow_parse_fdir_filter },
1766         { pattern_fdir_vlan_ipv6_udp_raw_1_vf, i40e_flow_parse_fdir_filter },
1767         { pattern_fdir_vlan_ipv6_udp_raw_2_vf, i40e_flow_parse_fdir_filter },
1768         { pattern_fdir_vlan_ipv6_udp_raw_3_vf, i40e_flow_parse_fdir_filter },
1769         { pattern_fdir_vlan_ipv6_tcp_raw_1_vf, i40e_flow_parse_fdir_filter },
1770         { pattern_fdir_vlan_ipv6_tcp_raw_2_vf, i40e_flow_parse_fdir_filter },
1771         { pattern_fdir_vlan_ipv6_tcp_raw_3_vf, i40e_flow_parse_fdir_filter },
1772         { pattern_fdir_vlan_ipv6_sctp_raw_1_vf, i40e_flow_parse_fdir_filter },
1773         { pattern_fdir_vlan_ipv6_sctp_raw_2_vf, i40e_flow_parse_fdir_filter },
1774         { pattern_fdir_vlan_ipv6_sctp_raw_3_vf, i40e_flow_parse_fdir_filter },
1775         /* VXLAN */
1776         { pattern_vxlan_1, i40e_flow_parse_vxlan_filter },
1777         { pattern_vxlan_2, i40e_flow_parse_vxlan_filter },
1778         { pattern_vxlan_3, i40e_flow_parse_vxlan_filter },
1779         { pattern_vxlan_4, i40e_flow_parse_vxlan_filter },
1780         /* NVGRE */
1781         { pattern_nvgre_1, i40e_flow_parse_nvgre_filter },
1782         { pattern_nvgre_2, i40e_flow_parse_nvgre_filter },
1783         { pattern_nvgre_3, i40e_flow_parse_nvgre_filter },
1784         { pattern_nvgre_4, i40e_flow_parse_nvgre_filter },
1785         /* MPLSoUDP & MPLSoGRE */
1786         { pattern_mpls_1, i40e_flow_parse_mpls_filter },
1787         { pattern_mpls_2, i40e_flow_parse_mpls_filter },
1788         { pattern_mpls_3, i40e_flow_parse_mpls_filter },
1789         { pattern_mpls_4, i40e_flow_parse_mpls_filter },
1790         /* GTP-C & GTP-U */
1791         { pattern_fdir_ipv4_gtpc, i40e_flow_parse_gtp_filter },
1792         { pattern_fdir_ipv4_gtpu, i40e_flow_parse_gtp_filter },
1793         { pattern_fdir_ipv6_gtpc, i40e_flow_parse_gtp_filter },
1794         { pattern_fdir_ipv6_gtpu, i40e_flow_parse_gtp_filter },
1795         /* QINQ */
1796         { pattern_qinq_1, i40e_flow_parse_qinq_filter },
1797 };
1798
1799 #define NEXT_ITEM_OF_ACTION(act, actions, index)                        \
1800         do {                                                            \
1801                 act = actions + index;                                  \
1802                 while (act->type == RTE_FLOW_ACTION_TYPE_VOID) {        \
1803                         index++;                                        \
1804                         act = actions + index;                          \
1805                 }                                                       \
1806         } while (0)
1807
1808 /* Find the first VOID or non-VOID item pointer */
1809 static const struct rte_flow_item *
1810 i40e_find_first_item(const struct rte_flow_item *item, bool is_void)
1811 {
1812         bool is_find;
1813
1814         while (item->type != RTE_FLOW_ITEM_TYPE_END) {
1815                 if (is_void)
1816                         is_find = item->type == RTE_FLOW_ITEM_TYPE_VOID;
1817                 else
1818                         is_find = item->type != RTE_FLOW_ITEM_TYPE_VOID;
1819                 if (is_find)
1820                         break;
1821                 item++;
1822         }
1823         return item;
1824 }
1825
1826 /* Skip all VOID items of the pattern */
1827 static void
1828 i40e_pattern_skip_void_item(struct rte_flow_item *items,
1829                             const struct rte_flow_item *pattern)
1830 {
1831         uint32_t cpy_count = 0;
1832         const struct rte_flow_item *pb = pattern, *pe = pattern;
1833
1834         for (;;) {
1835                 /* Find a non-void item first */
1836                 pb = i40e_find_first_item(pb, false);
1837                 if (pb->type == RTE_FLOW_ITEM_TYPE_END) {
1838                         pe = pb;
1839                         break;
1840                 }
1841
1842                 /* Find a void item */
1843                 pe = i40e_find_first_item(pb + 1, true);
1844
1845                 cpy_count = pe - pb;
1846                 rte_memcpy(items, pb, sizeof(struct rte_flow_item) * cpy_count);
1847
1848                 items += cpy_count;
1849
1850                 if (pe->type == RTE_FLOW_ITEM_TYPE_END) {
1851                         pb = pe;
1852                         break;
1853                 }
1854
1855                 pb = pe + 1;
1856         }
1857         /* Copy the END item. */
1858         rte_memcpy(items, pe, sizeof(struct rte_flow_item));
1859 }
1860
1861 /* Check if the pattern matches a supported item type array */
1862 static bool
1863 i40e_match_pattern(enum rte_flow_item_type *item_array,
1864                    struct rte_flow_item *pattern)
1865 {
1866         struct rte_flow_item *item = pattern;
1867
1868         while ((*item_array == item->type) &&
1869                (*item_array != RTE_FLOW_ITEM_TYPE_END)) {
1870                 item_array++;
1871                 item++;
1872         }
1873
1874         return (*item_array == RTE_FLOW_ITEM_TYPE_END &&
1875                 item->type == RTE_FLOW_ITEM_TYPE_END);
1876 }
1877
1878 /* Find if there's parse filter function matched */
1879 static parse_filter_t
1880 i40e_find_parse_filter_func(struct rte_flow_item *pattern, uint32_t *idx)
1881 {
1882         parse_filter_t parse_filter = NULL;
1883         uint8_t i = *idx;
1884
1885         for (; i < RTE_DIM(i40e_supported_patterns); i++) {
1886                 if (i40e_match_pattern(i40e_supported_patterns[i].items,
1887                                         pattern)) {
1888                         parse_filter = i40e_supported_patterns[i].parse_filter;
1889                         break;
1890                 }
1891         }
1892
1893         *idx = ++i;
1894
1895         return parse_filter;
1896 }
1897
1898 /* Parse attributes */
1899 static int
1900 i40e_flow_parse_attr(const struct rte_flow_attr *attr,
1901                      struct rte_flow_error *error)
1902 {
1903         /* Must be input direction */
1904         if (!attr->ingress) {
1905                 rte_flow_error_set(error, EINVAL,
1906                                    RTE_FLOW_ERROR_TYPE_ATTR_INGRESS,
1907                                    attr, "Only support ingress.");
1908                 return -rte_errno;
1909         }
1910
1911         /* Not supported */
1912         if (attr->egress) {
1913                 rte_flow_error_set(error, EINVAL,
1914                                    RTE_FLOW_ERROR_TYPE_ATTR_EGRESS,
1915                                    attr, "Not support egress.");
1916                 return -rte_errno;
1917         }
1918
1919         /* Not supported */
1920         if (attr->priority) {
1921                 rte_flow_error_set(error, EINVAL,
1922                                    RTE_FLOW_ERROR_TYPE_ATTR_PRIORITY,
1923                                    attr, "Not support priority.");
1924                 return -rte_errno;
1925         }
1926
1927         /* Not supported */
1928         if (attr->group) {
1929                 rte_flow_error_set(error, EINVAL,
1930                                    RTE_FLOW_ERROR_TYPE_ATTR_GROUP,
1931                                    attr, "Not support group.");
1932                 return -rte_errno;
1933         }
1934
1935         return 0;
1936 }
1937
1938 static uint16_t
1939 i40e_get_outer_vlan(struct rte_eth_dev *dev)
1940 {
1941         struct i40e_hw *hw = I40E_DEV_PRIVATE_TO_HW(dev->data->dev_private);
1942         int qinq = dev->data->dev_conf.rxmode.hw_vlan_extend;
1943         uint64_t reg_r = 0;
1944         uint16_t reg_id;
1945         uint16_t tpid;
1946
1947         if (qinq)
1948                 reg_id = 2;
1949         else
1950                 reg_id = 3;
1951
1952         i40e_aq_debug_read_register(hw, I40E_GL_SWT_L2TAGCTRL(reg_id),
1953                                     &reg_r, NULL);
1954
1955         tpid = (reg_r >> I40E_GL_SWT_L2TAGCTRL_ETHERTYPE_SHIFT) & 0xFFFF;
1956
1957         return tpid;
1958 }
1959
1960 /* 1. Last in item should be NULL as range is not supported.
1961  * 2. Supported filter types: MAC_ETHTYPE and ETHTYPE.
1962  * 3. SRC mac_addr mask should be 00:00:00:00:00:00.
1963  * 4. DST mac_addr mask should be 00:00:00:00:00:00 or
1964  *    FF:FF:FF:FF:FF:FF
1965  * 5. Ether_type mask should be 0xFFFF.
1966  */
1967 static int
1968 i40e_flow_parse_ethertype_pattern(struct rte_eth_dev *dev,
1969                                   const struct rte_flow_item *pattern,
1970                                   struct rte_flow_error *error,
1971                                   struct rte_eth_ethertype_filter *filter)
1972 {
1973         const struct rte_flow_item *item = pattern;
1974         const struct rte_flow_item_eth *eth_spec;
1975         const struct rte_flow_item_eth *eth_mask;
1976         enum rte_flow_item_type item_type;
1977         uint16_t outer_tpid;
1978
1979         outer_tpid = i40e_get_outer_vlan(dev);
1980
1981         for (; item->type != RTE_FLOW_ITEM_TYPE_END; item++) {
1982                 if (item->last) {
1983                         rte_flow_error_set(error, EINVAL,
1984                                            RTE_FLOW_ERROR_TYPE_ITEM,
1985                                            item,
1986                                            "Not support range");
1987                         return -rte_errno;
1988                 }
1989                 item_type = item->type;
1990                 switch (item_type) {
1991                 case RTE_FLOW_ITEM_TYPE_ETH:
1992                         eth_spec = item->spec;
1993                         eth_mask = item->mask;
1994                         /* Get the MAC info. */
1995                         if (!eth_spec || !eth_mask) {
1996                                 rte_flow_error_set(error, EINVAL,
1997                                                    RTE_FLOW_ERROR_TYPE_ITEM,
1998                                                    item,
1999                                                    "NULL ETH spec/mask");
2000                                 return -rte_errno;
2001                         }
2002
2003                         /* Mask bits of source MAC address must be full of 0.
2004                          * Mask bits of destination MAC address must be full
2005                          * of 1 or full of 0.
2006                          */
2007                         if (!is_zero_ether_addr(&eth_mask->src) ||
2008                             (!is_zero_ether_addr(&eth_mask->dst) &&
2009                              !is_broadcast_ether_addr(&eth_mask->dst))) {
2010                                 rte_flow_error_set(error, EINVAL,
2011                                                    RTE_FLOW_ERROR_TYPE_ITEM,
2012                                                    item,
2013                                                    "Invalid MAC_addr mask");
2014                                 return -rte_errno;
2015                         }
2016
2017                         if ((eth_mask->type & UINT16_MAX) != UINT16_MAX) {
2018                                 rte_flow_error_set(error, EINVAL,
2019                                                    RTE_FLOW_ERROR_TYPE_ITEM,
2020                                                    item,
2021                                                    "Invalid ethertype mask");
2022                                 return -rte_errno;
2023                         }
2024
2025                         /* If mask bits of destination MAC address
2026                          * are full of 1, set RTE_ETHTYPE_FLAGS_MAC.
2027                          */
2028                         if (is_broadcast_ether_addr(&eth_mask->dst)) {
2029                                 filter->mac_addr = eth_spec->dst;
2030                                 filter->flags |= RTE_ETHTYPE_FLAGS_MAC;
2031                         } else {
2032                                 filter->flags &= ~RTE_ETHTYPE_FLAGS_MAC;
2033                         }
2034                         filter->ether_type = rte_be_to_cpu_16(eth_spec->type);
2035
2036                         if (filter->ether_type == ETHER_TYPE_IPv4 ||
2037                             filter->ether_type == ETHER_TYPE_IPv6 ||
2038                             filter->ether_type == ETHER_TYPE_LLDP ||
2039                             filter->ether_type == outer_tpid) {
2040                                 rte_flow_error_set(error, EINVAL,
2041                                                    RTE_FLOW_ERROR_TYPE_ITEM,
2042                                                    item,
2043                                                    "Unsupported ether_type in"
2044                                                    " control packet filter.");
2045                                 return -rte_errno;
2046                         }
2047                         break;
2048                 default:
2049                         break;
2050                 }
2051         }
2052
2053         return 0;
2054 }
2055
2056 /* Ethertype action only supports QUEUE or DROP. */
2057 static int
2058 i40e_flow_parse_ethertype_action(struct rte_eth_dev *dev,
2059                                  const struct rte_flow_action *actions,
2060                                  struct rte_flow_error *error,
2061                                  struct rte_eth_ethertype_filter *filter)
2062 {
2063         struct i40e_pf *pf = I40E_DEV_PRIVATE_TO_PF(dev->data->dev_private);
2064         const struct rte_flow_action *act;
2065         const struct rte_flow_action_queue *act_q;
2066         uint32_t index = 0;
2067
2068         /* Check if the first non-void action is QUEUE or DROP. */
2069         NEXT_ITEM_OF_ACTION(act, actions, index);
2070         if (act->type != RTE_FLOW_ACTION_TYPE_QUEUE &&
2071             act->type != RTE_FLOW_ACTION_TYPE_DROP) {
2072                 rte_flow_error_set(error, EINVAL, RTE_FLOW_ERROR_TYPE_ACTION,
2073                                    act, "Not supported action.");
2074                 return -rte_errno;
2075         }
2076
2077         if (act->type == RTE_FLOW_ACTION_TYPE_QUEUE) {
2078                 act_q = act->conf;
2079                 filter->queue = act_q->index;
2080                 if (filter->queue >= pf->dev_data->nb_rx_queues) {
2081                         rte_flow_error_set(error, EINVAL,
2082                                            RTE_FLOW_ERROR_TYPE_ACTION,
2083                                            act, "Invalid queue ID for"
2084                                            " ethertype_filter.");
2085                         return -rte_errno;
2086                 }
2087         } else {
2088                 filter->flags |= RTE_ETHTYPE_FLAGS_DROP;
2089         }
2090
2091         /* Check if the next non-void item is END */
2092         index++;
2093         NEXT_ITEM_OF_ACTION(act, actions, index);
2094         if (act->type != RTE_FLOW_ACTION_TYPE_END) {
2095                 rte_flow_error_set(error, EINVAL, RTE_FLOW_ERROR_TYPE_ACTION,
2096                                    act, "Not supported action.");
2097                 return -rte_errno;
2098         }
2099
2100         return 0;
2101 }
2102
2103 static int
2104 i40e_flow_parse_ethertype_filter(struct rte_eth_dev *dev,
2105                                  const struct rte_flow_attr *attr,
2106                                  const struct rte_flow_item pattern[],
2107                                  const struct rte_flow_action actions[],
2108                                  struct rte_flow_error *error,
2109                                  union i40e_filter_t *filter)
2110 {
2111         struct rte_eth_ethertype_filter *ethertype_filter =
2112                 &filter->ethertype_filter;
2113         int ret;
2114
2115         ret = i40e_flow_parse_ethertype_pattern(dev, pattern, error,
2116                                                 ethertype_filter);
2117         if (ret)
2118                 return ret;
2119
2120         ret = i40e_flow_parse_ethertype_action(dev, actions, error,
2121                                                ethertype_filter);
2122         if (ret)
2123                 return ret;
2124
2125         ret = i40e_flow_parse_attr(attr, error);
2126         if (ret)
2127                 return ret;
2128
2129         cons_filter_type = RTE_ETH_FILTER_ETHERTYPE;
2130
2131         return ret;
2132 }
2133
2134 static int
2135 i40e_flow_check_raw_item(const struct rte_flow_item *item,
2136                          const struct rte_flow_item_raw *raw_spec,
2137                          struct rte_flow_error *error)
2138 {
2139         if (!raw_spec->relative) {
2140                 rte_flow_error_set(error, EINVAL,
2141                                    RTE_FLOW_ERROR_TYPE_ITEM,
2142                                    item,
2143                                    "Relative should be 1.");
2144                 return -rte_errno;
2145         }
2146
2147         if (raw_spec->offset % sizeof(uint16_t)) {
2148                 rte_flow_error_set(error, EINVAL,
2149                                    RTE_FLOW_ERROR_TYPE_ITEM,
2150                                    item,
2151                                    "Offset should be even.");
2152                 return -rte_errno;
2153         }
2154
2155         if (raw_spec->search || raw_spec->limit) {
2156                 rte_flow_error_set(error, EINVAL,
2157                                    RTE_FLOW_ERROR_TYPE_ITEM,
2158                                    item,
2159                                    "search or limit is not supported.");
2160                 return -rte_errno;
2161         }
2162
2163         if (raw_spec->offset < 0) {
2164                 rte_flow_error_set(error, EINVAL,
2165                                    RTE_FLOW_ERROR_TYPE_ITEM,
2166                                    item,
2167                                    "Offset should be non-negative.");
2168                 return -rte_errno;
2169         }
2170         return 0;
2171 }
2172
2173 static int
2174 i40e_flow_store_flex_pit(struct i40e_pf *pf,
2175                          struct i40e_fdir_flex_pit *flex_pit,
2176                          enum i40e_flxpld_layer_idx layer_idx,
2177                          uint8_t raw_id)
2178 {
2179         uint8_t field_idx;
2180
2181         field_idx = layer_idx * I40E_MAX_FLXPLD_FIED + raw_id;
2182         /* Check if the configuration is conflicted */
2183         if (pf->fdir.flex_pit_flag[layer_idx] &&
2184             (pf->fdir.flex_set[field_idx].src_offset != flex_pit->src_offset ||
2185              pf->fdir.flex_set[field_idx].size != flex_pit->size ||
2186              pf->fdir.flex_set[field_idx].dst_offset != flex_pit->dst_offset))
2187                 return -1;
2188
2189         /* Check if the configuration exists. */
2190         if (pf->fdir.flex_pit_flag[layer_idx] &&
2191             (pf->fdir.flex_set[field_idx].src_offset == flex_pit->src_offset &&
2192              pf->fdir.flex_set[field_idx].size == flex_pit->size &&
2193              pf->fdir.flex_set[field_idx].dst_offset == flex_pit->dst_offset))
2194                 return 1;
2195
2196         pf->fdir.flex_set[field_idx].src_offset =
2197                 flex_pit->src_offset;
2198         pf->fdir.flex_set[field_idx].size =
2199                 flex_pit->size;
2200         pf->fdir.flex_set[field_idx].dst_offset =
2201                 flex_pit->dst_offset;
2202
2203         return 0;
2204 }
2205
2206 static int
2207 i40e_flow_store_flex_mask(struct i40e_pf *pf,
2208                           enum i40e_filter_pctype pctype,
2209                           uint8_t *mask)
2210 {
2211         struct i40e_fdir_flex_mask flex_mask;
2212         uint16_t mask_tmp;
2213         uint8_t i, nb_bitmask = 0;
2214
2215         memset(&flex_mask, 0, sizeof(struct i40e_fdir_flex_mask));
2216         for (i = 0; i < I40E_FDIR_MAX_FLEX_LEN; i += sizeof(uint16_t)) {
2217                 mask_tmp = I40E_WORD(mask[i], mask[i + 1]);
2218                 if (mask_tmp) {
2219                         flex_mask.word_mask |=
2220                                 I40E_FLEX_WORD_MASK(i / sizeof(uint16_t));
2221                         if (mask_tmp != UINT16_MAX) {
2222                                 flex_mask.bitmask[nb_bitmask].mask = ~mask_tmp;
2223                                 flex_mask.bitmask[nb_bitmask].offset =
2224                                         i / sizeof(uint16_t);
2225                                 nb_bitmask++;
2226                                 if (nb_bitmask > I40E_FDIR_BITMASK_NUM_WORD)
2227                                         return -1;
2228                         }
2229                 }
2230         }
2231         flex_mask.nb_bitmask = nb_bitmask;
2232
2233         if (pf->fdir.flex_mask_flag[pctype] &&
2234             (memcmp(&flex_mask, &pf->fdir.flex_mask[pctype],
2235                     sizeof(struct i40e_fdir_flex_mask))))
2236                 return -2;
2237         else if (pf->fdir.flex_mask_flag[pctype] &&
2238                  !(memcmp(&flex_mask, &pf->fdir.flex_mask[pctype],
2239                           sizeof(struct i40e_fdir_flex_mask))))
2240                 return 1;
2241
2242         memcpy(&pf->fdir.flex_mask[pctype], &flex_mask,
2243                sizeof(struct i40e_fdir_flex_mask));
2244         return 0;
2245 }
2246
2247 static void
2248 i40e_flow_set_fdir_flex_pit(struct i40e_pf *pf,
2249                             enum i40e_flxpld_layer_idx layer_idx,
2250                             uint8_t raw_id)
2251 {
2252         struct i40e_hw *hw = I40E_PF_TO_HW(pf);
2253         uint32_t flx_pit, flx_ort;
2254         uint8_t field_idx;
2255         uint16_t min_next_off = 0;  /* in words */
2256         uint8_t i;
2257
2258         if (raw_id) {
2259                 flx_ort = (1 << I40E_GLQF_ORT_FLX_PAYLOAD_SHIFT) |
2260                           (raw_id << I40E_GLQF_ORT_FIELD_CNT_SHIFT) |
2261                           (layer_idx * I40E_MAX_FLXPLD_FIED);
2262                 I40E_WRITE_REG(hw, I40E_GLQF_ORT(33 + layer_idx), flx_ort);
2263                 i40e_global_cfg_warning(I40E_WARNING_ENA_FLX_PLD);
2264         }
2265
2266         /* Set flex pit */
2267         for (i = 0; i < raw_id; i++) {
2268                 field_idx = layer_idx * I40E_MAX_FLXPLD_FIED + i;
2269                 flx_pit = MK_FLX_PIT(pf->fdir.flex_set[field_idx].src_offset,
2270                                      pf->fdir.flex_set[field_idx].size,
2271                                      pf->fdir.flex_set[field_idx].dst_offset);
2272
2273                 I40E_WRITE_REG(hw, I40E_PRTQF_FLX_PIT(field_idx), flx_pit);
2274                 min_next_off = pf->fdir.flex_set[field_idx].src_offset +
2275                         pf->fdir.flex_set[field_idx].size;
2276         }
2277
2278         for (; i < I40E_MAX_FLXPLD_FIED; i++) {
2279                 /* set the non-used register obeying register's constrain */
2280                 field_idx = layer_idx * I40E_MAX_FLXPLD_FIED + i;
2281                 flx_pit = MK_FLX_PIT(min_next_off, NONUSE_FLX_PIT_FSIZE,
2282                                      NONUSE_FLX_PIT_DEST_OFF);
2283                 I40E_WRITE_REG(hw, I40E_PRTQF_FLX_PIT(field_idx), flx_pit);
2284                 min_next_off++;
2285         }
2286
2287         pf->fdir.flex_pit_flag[layer_idx] = 1;
2288 }
2289
2290 static void
2291 i40e_flow_set_fdir_flex_msk(struct i40e_pf *pf,
2292                             enum i40e_filter_pctype pctype)
2293 {
2294         struct i40e_hw *hw = I40E_PF_TO_HW(pf);
2295         struct i40e_fdir_flex_mask *flex_mask;
2296         uint32_t flxinset, fd_mask;
2297         uint8_t i;
2298
2299         /* Set flex mask */
2300         flex_mask = &pf->fdir.flex_mask[pctype];
2301         flxinset = (flex_mask->word_mask <<
2302                     I40E_PRTQF_FD_FLXINSET_INSET_SHIFT) &
2303                 I40E_PRTQF_FD_FLXINSET_INSET_MASK;
2304         i40e_write_rx_ctl(hw, I40E_PRTQF_FD_FLXINSET(pctype), flxinset);
2305
2306         for (i = 0; i < flex_mask->nb_bitmask; i++) {
2307                 fd_mask = (flex_mask->bitmask[i].mask <<
2308                            I40E_PRTQF_FD_MSK_MASK_SHIFT) &
2309                         I40E_PRTQF_FD_MSK_MASK_MASK;
2310                 fd_mask |= ((flex_mask->bitmask[i].offset +
2311                              I40E_FLX_OFFSET_IN_FIELD_VECTOR) <<
2312                             I40E_PRTQF_FD_MSK_OFFSET_SHIFT) &
2313                         I40E_PRTQF_FD_MSK_OFFSET_MASK;
2314                 i40e_write_rx_ctl(hw, I40E_PRTQF_FD_MSK(pctype, i), fd_mask);
2315         }
2316
2317         pf->fdir.flex_mask_flag[pctype] = 1;
2318 }
2319
2320 static int
2321 i40e_flow_set_fdir_inset(struct i40e_pf *pf,
2322                          enum i40e_filter_pctype pctype,
2323                          uint64_t input_set)
2324 {
2325         struct i40e_hw *hw = I40E_PF_TO_HW(pf);
2326         uint64_t inset_reg = 0;
2327         uint32_t mask_reg[I40E_INSET_MASK_NUM_REG] = {0};
2328         int i, num;
2329
2330         /* Check if the input set is valid */
2331         if (i40e_validate_input_set(pctype, RTE_ETH_FILTER_FDIR,
2332                                     input_set) != 0) {
2333                 PMD_DRV_LOG(ERR, "Invalid input set");
2334                 return -EINVAL;
2335         }
2336
2337         /* Check if the configuration is conflicted */
2338         if (pf->fdir.inset_flag[pctype] &&
2339             memcmp(&pf->fdir.input_set[pctype], &input_set, sizeof(uint64_t)))
2340                 return -1;
2341
2342         if (pf->fdir.inset_flag[pctype] &&
2343             !memcmp(&pf->fdir.input_set[pctype], &input_set, sizeof(uint64_t)))
2344                 return 0;
2345
2346         num = i40e_generate_inset_mask_reg(input_set, mask_reg,
2347                                            I40E_INSET_MASK_NUM_REG);
2348         if (num < 0)
2349                 return -EINVAL;
2350
2351         inset_reg |= i40e_translate_input_set_reg(hw->mac.type, input_set);
2352
2353         i40e_check_write_reg(hw, I40E_PRTQF_FD_INSET(pctype, 0),
2354                              (uint32_t)(inset_reg & UINT32_MAX));
2355         i40e_check_write_reg(hw, I40E_PRTQF_FD_INSET(pctype, 1),
2356                              (uint32_t)((inset_reg >>
2357                                          I40E_32_BIT_WIDTH) & UINT32_MAX));
2358
2359         for (i = 0; i < num; i++)
2360                 i40e_check_write_reg(hw, I40E_GLQF_FD_MSK(i, pctype),
2361                                      mask_reg[i]);
2362
2363         /*clear unused mask registers of the pctype */
2364         for (i = num; i < I40E_INSET_MASK_NUM_REG; i++)
2365                 i40e_check_write_reg(hw, I40E_GLQF_FD_MSK(i, pctype), 0);
2366         I40E_WRITE_FLUSH(hw);
2367
2368         pf->fdir.input_set[pctype] = input_set;
2369         pf->fdir.inset_flag[pctype] = 1;
2370         return 0;
2371 }
2372
2373 static uint8_t
2374 i40e_flow_fdir_get_pctype_value(struct i40e_pf *pf,
2375                                 enum rte_flow_item_type item_type,
2376                                 struct i40e_fdir_filter_conf *filter)
2377 {
2378         struct i40e_customized_pctype *cus_pctype = NULL;
2379
2380         switch (item_type) {
2381         case RTE_FLOW_ITEM_TYPE_GTPC:
2382                 cus_pctype = i40e_find_customized_pctype(pf,
2383                                                          I40E_CUSTOMIZED_GTPC);
2384                 break;
2385         case RTE_FLOW_ITEM_TYPE_GTPU:
2386                 if (!filter->input.flow_ext.inner_ip)
2387                         cus_pctype = i40e_find_customized_pctype(pf,
2388                                                          I40E_CUSTOMIZED_GTPU);
2389                 else if (filter->input.flow_ext.iip_type ==
2390                          I40E_FDIR_IPTYPE_IPV4)
2391                         cus_pctype = i40e_find_customized_pctype(pf,
2392                                                  I40E_CUSTOMIZED_GTPU_IPV4);
2393                 else if (filter->input.flow_ext.iip_type ==
2394                          I40E_FDIR_IPTYPE_IPV6)
2395                         cus_pctype = i40e_find_customized_pctype(pf,
2396                                                  I40E_CUSTOMIZED_GTPU_IPV6);
2397                 break;
2398         default:
2399                 PMD_DRV_LOG(ERR, "Unsupported item type");
2400                 break;
2401         }
2402
2403         if (cus_pctype)
2404                 return cus_pctype->pctype;
2405
2406         return I40E_FILTER_PCTYPE_INVALID;
2407 }
2408
2409 /* 1. Last in item should be NULL as range is not supported.
2410  * 2. Supported patterns: refer to array i40e_supported_patterns.
2411  * 3. Default supported flow type and input set: refer to array
2412  *    valid_fdir_inset_table in i40e_ethdev.c.
2413  * 4. Mask of fields which need to be matched should be
2414  *    filled with 1.
2415  * 5. Mask of fields which needn't to be matched should be
2416  *    filled with 0.
2417  * 6. GTP profile supports GTPv1 only.
2418  * 7. GTP-C response message ('source_port' = 2123) is not supported.
2419  */
2420 static int
2421 i40e_flow_parse_fdir_pattern(struct rte_eth_dev *dev,
2422                              const struct rte_flow_item *pattern,
2423                              struct rte_flow_error *error,
2424                              struct i40e_fdir_filter_conf *filter)
2425 {
2426         struct i40e_pf *pf = I40E_DEV_PRIVATE_TO_PF(dev->data->dev_private);
2427         const struct rte_flow_item *item = pattern;
2428         const struct rte_flow_item_eth *eth_spec, *eth_mask;
2429         const struct rte_flow_item_vlan *vlan_spec, *vlan_mask;
2430         const struct rte_flow_item_ipv4 *ipv4_spec, *ipv4_mask;
2431         const struct rte_flow_item_ipv6 *ipv6_spec, *ipv6_mask;
2432         const struct rte_flow_item_tcp *tcp_spec, *tcp_mask;
2433         const struct rte_flow_item_udp *udp_spec, *udp_mask;
2434         const struct rte_flow_item_sctp *sctp_spec, *sctp_mask;
2435         const struct rte_flow_item_gtp *gtp_spec, *gtp_mask;
2436         const struct rte_flow_item_raw *raw_spec, *raw_mask;
2437         const struct rte_flow_item_vf *vf_spec;
2438
2439         uint8_t pctype = 0;
2440         uint64_t input_set = I40E_INSET_NONE;
2441         uint16_t frag_off;
2442         enum rte_flow_item_type item_type;
2443         enum rte_flow_item_type l3 = RTE_FLOW_ITEM_TYPE_END;
2444         enum rte_flow_item_type cus_proto = RTE_FLOW_ITEM_TYPE_END;
2445         uint32_t i, j;
2446         uint8_t  ipv6_addr_mask[16] = {
2447                 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF,
2448                 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF };
2449         enum i40e_flxpld_layer_idx layer_idx = I40E_FLXPLD_L2_IDX;
2450         uint8_t raw_id = 0;
2451         int32_t off_arr[I40E_MAX_FLXPLD_FIED];
2452         uint16_t len_arr[I40E_MAX_FLXPLD_FIED];
2453         struct i40e_fdir_flex_pit flex_pit;
2454         uint8_t next_dst_off = 0;
2455         uint8_t flex_mask[I40E_FDIR_MAX_FLEX_LEN];
2456         uint16_t flex_size;
2457         bool cfg_flex_pit = true;
2458         bool cfg_flex_msk = true;
2459         uint16_t outer_tpid;
2460         uint16_t ether_type;
2461         uint32_t vtc_flow_cpu;
2462         bool outer_ip = true;
2463         int ret;
2464
2465         memset(off_arr, 0, sizeof(off_arr));
2466         memset(len_arr, 0, sizeof(len_arr));
2467         memset(flex_mask, 0, I40E_FDIR_MAX_FLEX_LEN);
2468         outer_tpid = i40e_get_outer_vlan(dev);
2469         filter->input.flow_ext.customized_pctype = false;
2470         for (; item->type != RTE_FLOW_ITEM_TYPE_END; item++) {
2471                 if (item->last) {
2472                         rte_flow_error_set(error, EINVAL,
2473                                            RTE_FLOW_ERROR_TYPE_ITEM,
2474                                            item,
2475                                            "Not support range");
2476                         return -rte_errno;
2477                 }
2478                 item_type = item->type;
2479                 switch (item_type) {
2480                 case RTE_FLOW_ITEM_TYPE_ETH:
2481                         eth_spec = item->spec;
2482                         eth_mask = item->mask;
2483
2484                         if (eth_spec && eth_mask) {
2485                                 if (!is_zero_ether_addr(&eth_mask->src) ||
2486                                     !is_zero_ether_addr(&eth_mask->dst)) {
2487                                         rte_flow_error_set(error, EINVAL,
2488                                                       RTE_FLOW_ERROR_TYPE_ITEM,
2489                                                       item,
2490                                                       "Invalid MAC_addr mask.");
2491                                         return -rte_errno;
2492                                 }
2493
2494                                 if ((eth_mask->type & UINT16_MAX) ==
2495                                     UINT16_MAX) {
2496                                         input_set |= I40E_INSET_LAST_ETHER_TYPE;
2497                                         filter->input.flow.l2_flow.ether_type =
2498                                                 eth_spec->type;
2499                                 }
2500
2501                                 ether_type = rte_be_to_cpu_16(eth_spec->type);
2502                                 if (ether_type == ETHER_TYPE_IPv4 ||
2503                                     ether_type == ETHER_TYPE_IPv6 ||
2504                                     ether_type == ETHER_TYPE_ARP ||
2505                                     ether_type == outer_tpid) {
2506                                         rte_flow_error_set(error, EINVAL,
2507                                                      RTE_FLOW_ERROR_TYPE_ITEM,
2508                                                      item,
2509                                                      "Unsupported ether_type.");
2510                                         return -rte_errno;
2511                                 }
2512                         }
2513
2514                         pctype = I40E_FILTER_PCTYPE_L2_PAYLOAD;
2515                         layer_idx = I40E_FLXPLD_L2_IDX;
2516
2517                         break;
2518                 case RTE_FLOW_ITEM_TYPE_VLAN:
2519                         vlan_spec = item->spec;
2520                         vlan_mask = item->mask;
2521                         if (vlan_spec && vlan_mask) {
2522                                 if (vlan_mask->tci ==
2523                                     rte_cpu_to_be_16(I40E_TCI_MASK)) {
2524                                         input_set |= I40E_INSET_VLAN_INNER;
2525                                         filter->input.flow_ext.vlan_tci =
2526                                                 vlan_spec->tci;
2527                                 }
2528                         }
2529
2530                         pctype = I40E_FILTER_PCTYPE_L2_PAYLOAD;
2531                         layer_idx = I40E_FLXPLD_L2_IDX;
2532
2533                         break;
2534                 case RTE_FLOW_ITEM_TYPE_IPV4:
2535                         l3 = RTE_FLOW_ITEM_TYPE_IPV4;
2536                         ipv4_spec = item->spec;
2537                         ipv4_mask = item->mask;
2538                         pctype = I40E_FILTER_PCTYPE_NONF_IPV4_OTHER;
2539                         layer_idx = I40E_FLXPLD_L3_IDX;
2540
2541                         if (ipv4_spec && ipv4_mask && outer_ip) {
2542                                 /* Check IPv4 mask and update input set */
2543                                 if (ipv4_mask->hdr.version_ihl ||
2544                                     ipv4_mask->hdr.total_length ||
2545                                     ipv4_mask->hdr.packet_id ||
2546                                     ipv4_mask->hdr.fragment_offset ||
2547                                     ipv4_mask->hdr.hdr_checksum) {
2548                                         rte_flow_error_set(error, EINVAL,
2549                                                    RTE_FLOW_ERROR_TYPE_ITEM,
2550                                                    item,
2551                                                    "Invalid IPv4 mask.");
2552                                         return -rte_errno;
2553                                 }
2554
2555                                 if (ipv4_mask->hdr.src_addr == UINT32_MAX)
2556                                         input_set |= I40E_INSET_IPV4_SRC;
2557                                 if (ipv4_mask->hdr.dst_addr == UINT32_MAX)
2558                                         input_set |= I40E_INSET_IPV4_DST;
2559                                 if (ipv4_mask->hdr.type_of_service == UINT8_MAX)
2560                                         input_set |= I40E_INSET_IPV4_TOS;
2561                                 if (ipv4_mask->hdr.time_to_live == UINT8_MAX)
2562                                         input_set |= I40E_INSET_IPV4_TTL;
2563                                 if (ipv4_mask->hdr.next_proto_id == UINT8_MAX)
2564                                         input_set |= I40E_INSET_IPV4_PROTO;
2565
2566                                 /* Check if it is fragment. */
2567                                 frag_off = ipv4_spec->hdr.fragment_offset;
2568                                 frag_off = rte_be_to_cpu_16(frag_off);
2569                                 if (frag_off & IPV4_HDR_OFFSET_MASK ||
2570                                     frag_off & IPV4_HDR_MF_FLAG)
2571                                         pctype = I40E_FILTER_PCTYPE_FRAG_IPV4;
2572
2573                                 /* Get the filter info */
2574                                 filter->input.flow.ip4_flow.proto =
2575                                         ipv4_spec->hdr.next_proto_id;
2576                                 filter->input.flow.ip4_flow.tos =
2577                                         ipv4_spec->hdr.type_of_service;
2578                                 filter->input.flow.ip4_flow.ttl =
2579                                         ipv4_spec->hdr.time_to_live;
2580                                 filter->input.flow.ip4_flow.src_ip =
2581                                         ipv4_spec->hdr.src_addr;
2582                                 filter->input.flow.ip4_flow.dst_ip =
2583                                         ipv4_spec->hdr.dst_addr;
2584                         } else if (!ipv4_spec && !ipv4_mask && !outer_ip) {
2585                                 filter->input.flow_ext.inner_ip = true;
2586                                 filter->input.flow_ext.iip_type =
2587                                         I40E_FDIR_IPTYPE_IPV4;
2588                         } else if ((ipv4_spec || ipv4_mask) && !outer_ip) {
2589                                 rte_flow_error_set(error, EINVAL,
2590                                                    RTE_FLOW_ERROR_TYPE_ITEM,
2591                                                    item,
2592                                                    "Invalid inner IPv4 mask.");
2593                                 return -rte_errno;
2594                         }
2595
2596                         if (outer_ip)
2597                                 outer_ip = false;
2598
2599                         break;
2600                 case RTE_FLOW_ITEM_TYPE_IPV6:
2601                         l3 = RTE_FLOW_ITEM_TYPE_IPV6;
2602                         ipv6_spec = item->spec;
2603                         ipv6_mask = item->mask;
2604                         pctype = I40E_FILTER_PCTYPE_NONF_IPV6_OTHER;
2605                         layer_idx = I40E_FLXPLD_L3_IDX;
2606
2607                         if (ipv6_spec && ipv6_mask && outer_ip) {
2608                                 /* Check IPv6 mask and update input set */
2609                                 if (ipv6_mask->hdr.payload_len) {
2610                                         rte_flow_error_set(error, EINVAL,
2611                                                    RTE_FLOW_ERROR_TYPE_ITEM,
2612                                                    item,
2613                                                    "Invalid IPv6 mask");
2614                                         return -rte_errno;
2615                                 }
2616
2617                                 if (!memcmp(ipv6_mask->hdr.src_addr,
2618                                             ipv6_addr_mask,
2619                                             RTE_DIM(ipv6_mask->hdr.src_addr)))
2620                                         input_set |= I40E_INSET_IPV6_SRC;
2621                                 if (!memcmp(ipv6_mask->hdr.dst_addr,
2622                                             ipv6_addr_mask,
2623                                             RTE_DIM(ipv6_mask->hdr.dst_addr)))
2624                                         input_set |= I40E_INSET_IPV6_DST;
2625
2626                                 if ((ipv6_mask->hdr.vtc_flow &
2627                                      rte_cpu_to_be_32(I40E_IPV6_TC_MASK))
2628                                     == rte_cpu_to_be_32(I40E_IPV6_TC_MASK))
2629                                         input_set |= I40E_INSET_IPV6_TC;
2630                                 if (ipv6_mask->hdr.proto == UINT8_MAX)
2631                                         input_set |= I40E_INSET_IPV6_NEXT_HDR;
2632                                 if (ipv6_mask->hdr.hop_limits == UINT8_MAX)
2633                                         input_set |= I40E_INSET_IPV6_HOP_LIMIT;
2634
2635                                 /* Get filter info */
2636                                 vtc_flow_cpu =
2637                                       rte_be_to_cpu_32(ipv6_spec->hdr.vtc_flow);
2638                                 filter->input.flow.ipv6_flow.tc =
2639                                         (uint8_t)(vtc_flow_cpu >>
2640                                                   I40E_FDIR_IPv6_TC_OFFSET);
2641                                 filter->input.flow.ipv6_flow.proto =
2642                                         ipv6_spec->hdr.proto;
2643                                 filter->input.flow.ipv6_flow.hop_limits =
2644                                         ipv6_spec->hdr.hop_limits;
2645
2646                                 rte_memcpy(filter->input.flow.ipv6_flow.src_ip,
2647                                            ipv6_spec->hdr.src_addr, 16);
2648                                 rte_memcpy(filter->input.flow.ipv6_flow.dst_ip,
2649                                            ipv6_spec->hdr.dst_addr, 16);
2650
2651                                 /* Check if it is fragment. */
2652                                 if (ipv6_spec->hdr.proto ==
2653                                     I40E_IPV6_FRAG_HEADER)
2654                                         pctype = I40E_FILTER_PCTYPE_FRAG_IPV6;
2655                         } else if (!ipv6_spec && !ipv6_mask && !outer_ip) {
2656                                 filter->input.flow_ext.inner_ip = true;
2657                                 filter->input.flow_ext.iip_type =
2658                                         I40E_FDIR_IPTYPE_IPV6;
2659                         } else if ((ipv6_spec || ipv6_mask) && !outer_ip) {
2660                                 rte_flow_error_set(error, EINVAL,
2661                                                    RTE_FLOW_ERROR_TYPE_ITEM,
2662                                                    item,
2663                                                    "Invalid inner IPv6 mask");
2664                                 return -rte_errno;
2665                         }
2666
2667                         if (outer_ip)
2668                                 outer_ip = false;
2669                         break;
2670                 case RTE_FLOW_ITEM_TYPE_TCP:
2671                         tcp_spec = item->spec;
2672                         tcp_mask = item->mask;
2673
2674                         if (l3 == RTE_FLOW_ITEM_TYPE_IPV4)
2675                                 pctype =
2676                                         I40E_FILTER_PCTYPE_NONF_IPV4_TCP;
2677                         else if (l3 == RTE_FLOW_ITEM_TYPE_IPV6)
2678                                 pctype =
2679                                         I40E_FILTER_PCTYPE_NONF_IPV6_TCP;
2680                         if (tcp_spec && tcp_mask) {
2681                                 /* Check TCP mask and update input set */
2682                                 if (tcp_mask->hdr.sent_seq ||
2683                                     tcp_mask->hdr.recv_ack ||
2684                                     tcp_mask->hdr.data_off ||
2685                                     tcp_mask->hdr.tcp_flags ||
2686                                     tcp_mask->hdr.rx_win ||
2687                                     tcp_mask->hdr.cksum ||
2688                                     tcp_mask->hdr.tcp_urp) {
2689                                         rte_flow_error_set(error, EINVAL,
2690                                                    RTE_FLOW_ERROR_TYPE_ITEM,
2691                                                    item,
2692                                                    "Invalid TCP mask");
2693                                         return -rte_errno;
2694                                 }
2695
2696                                 if (tcp_mask->hdr.src_port == UINT16_MAX)
2697                                         input_set |= I40E_INSET_SRC_PORT;
2698                                 if (tcp_mask->hdr.dst_port == UINT16_MAX)
2699                                         input_set |= I40E_INSET_DST_PORT;
2700
2701                                 /* Get filter info */
2702                                 if (l3 == RTE_FLOW_ITEM_TYPE_IPV4) {
2703                                         filter->input.flow.tcp4_flow.src_port =
2704                                                 tcp_spec->hdr.src_port;
2705                                         filter->input.flow.tcp4_flow.dst_port =
2706                                                 tcp_spec->hdr.dst_port;
2707                                 } else if (l3 == RTE_FLOW_ITEM_TYPE_IPV6) {
2708                                         filter->input.flow.tcp6_flow.src_port =
2709                                                 tcp_spec->hdr.src_port;
2710                                         filter->input.flow.tcp6_flow.dst_port =
2711                                                 tcp_spec->hdr.dst_port;
2712                                 }
2713                         }
2714
2715                         layer_idx = I40E_FLXPLD_L4_IDX;
2716
2717                         break;
2718                 case RTE_FLOW_ITEM_TYPE_UDP:
2719                         udp_spec = item->spec;
2720                         udp_mask = item->mask;
2721
2722                         if (l3 == RTE_FLOW_ITEM_TYPE_IPV4)
2723                                 pctype =
2724                                         I40E_FILTER_PCTYPE_NONF_IPV4_UDP;
2725                         else if (l3 == RTE_FLOW_ITEM_TYPE_IPV6)
2726                                 pctype =
2727                                         I40E_FILTER_PCTYPE_NONF_IPV6_UDP;
2728
2729                         if (udp_spec && udp_mask) {
2730                                 /* Check UDP mask and update input set*/
2731                                 if (udp_mask->hdr.dgram_len ||
2732                                     udp_mask->hdr.dgram_cksum) {
2733                                         rte_flow_error_set(error, EINVAL,
2734                                                    RTE_FLOW_ERROR_TYPE_ITEM,
2735                                                    item,
2736                                                    "Invalid UDP mask");
2737                                         return -rte_errno;
2738                                 }
2739
2740                                 if (udp_mask->hdr.src_port == UINT16_MAX)
2741                                         input_set |= I40E_INSET_SRC_PORT;
2742                                 if (udp_mask->hdr.dst_port == UINT16_MAX)
2743                                         input_set |= I40E_INSET_DST_PORT;
2744
2745                                 /* Get filter info */
2746                                 if (l3 == RTE_FLOW_ITEM_TYPE_IPV4) {
2747                                         filter->input.flow.udp4_flow.src_port =
2748                                                 udp_spec->hdr.src_port;
2749                                         filter->input.flow.udp4_flow.dst_port =
2750                                                 udp_spec->hdr.dst_port;
2751                                 } else if (l3 == RTE_FLOW_ITEM_TYPE_IPV6) {
2752                                         filter->input.flow.udp6_flow.src_port =
2753                                                 udp_spec->hdr.src_port;
2754                                         filter->input.flow.udp6_flow.dst_port =
2755                                                 udp_spec->hdr.dst_port;
2756                                 }
2757                         }
2758
2759                         layer_idx = I40E_FLXPLD_L4_IDX;
2760
2761                         break;
2762                 case RTE_FLOW_ITEM_TYPE_GTPC:
2763                 case RTE_FLOW_ITEM_TYPE_GTPU:
2764                         if (!pf->gtp_support) {
2765                                 rte_flow_error_set(error, EINVAL,
2766                                                    RTE_FLOW_ERROR_TYPE_ITEM,
2767                                                    item,
2768                                                    "Unsupported protocol");
2769                                 return -rte_errno;
2770                         }
2771
2772                         gtp_spec = item->spec;
2773                         gtp_mask = item->mask;
2774
2775                         if (gtp_spec && gtp_mask) {
2776                                 if (gtp_mask->v_pt_rsv_flags ||
2777                                     gtp_mask->msg_type ||
2778                                     gtp_mask->msg_len ||
2779                                     gtp_mask->teid != UINT32_MAX) {
2780                                         rte_flow_error_set(error, EINVAL,
2781                                                    RTE_FLOW_ERROR_TYPE_ITEM,
2782                                                    item,
2783                                                    "Invalid GTP mask");
2784                                         return -rte_errno;
2785                                 }
2786
2787                                 filter->input.flow.gtp_flow.teid =
2788                                         gtp_spec->teid;
2789                                 filter->input.flow_ext.customized_pctype = true;
2790                                 cus_proto = item_type;
2791                         }
2792                         break;
2793                 case RTE_FLOW_ITEM_TYPE_SCTP:
2794                         sctp_spec = item->spec;
2795                         sctp_mask = item->mask;
2796
2797                         if (l3 == RTE_FLOW_ITEM_TYPE_IPV4)
2798                                 pctype =
2799                                         I40E_FILTER_PCTYPE_NONF_IPV4_SCTP;
2800                         else if (l3 == RTE_FLOW_ITEM_TYPE_IPV6)
2801                                 pctype =
2802                                         I40E_FILTER_PCTYPE_NONF_IPV6_SCTP;
2803
2804                         if (sctp_spec && sctp_mask) {
2805                                 /* Check SCTP mask and update input set */
2806                                 if (sctp_mask->hdr.cksum) {
2807                                         rte_flow_error_set(error, EINVAL,
2808                                                    RTE_FLOW_ERROR_TYPE_ITEM,
2809                                                    item,
2810                                                    "Invalid UDP mask");
2811                                         return -rte_errno;
2812                                 }
2813
2814                                 if (sctp_mask->hdr.src_port == UINT16_MAX)
2815                                         input_set |= I40E_INSET_SRC_PORT;
2816                                 if (sctp_mask->hdr.dst_port == UINT16_MAX)
2817                                         input_set |= I40E_INSET_DST_PORT;
2818                                 if (sctp_mask->hdr.tag == UINT32_MAX)
2819                                         input_set |= I40E_INSET_SCTP_VT;
2820
2821                                 /* Get filter info */
2822                                 if (l3 == RTE_FLOW_ITEM_TYPE_IPV4) {
2823                                         filter->input.flow.sctp4_flow.src_port =
2824                                                 sctp_spec->hdr.src_port;
2825                                         filter->input.flow.sctp4_flow.dst_port =
2826                                                 sctp_spec->hdr.dst_port;
2827                                         filter->input.flow.sctp4_flow.verify_tag
2828                                                 = sctp_spec->hdr.tag;
2829                                 } else if (l3 == RTE_FLOW_ITEM_TYPE_IPV6) {
2830                                         filter->input.flow.sctp6_flow.src_port =
2831                                                 sctp_spec->hdr.src_port;
2832                                         filter->input.flow.sctp6_flow.dst_port =
2833                                                 sctp_spec->hdr.dst_port;
2834                                         filter->input.flow.sctp6_flow.verify_tag
2835                                                 = sctp_spec->hdr.tag;
2836                                 }
2837                         }
2838
2839                         layer_idx = I40E_FLXPLD_L4_IDX;
2840
2841                         break;
2842                 case RTE_FLOW_ITEM_TYPE_RAW:
2843                         raw_spec = item->spec;
2844                         raw_mask = item->mask;
2845
2846                         if (!raw_spec || !raw_mask) {
2847                                 rte_flow_error_set(error, EINVAL,
2848                                                    RTE_FLOW_ERROR_TYPE_ITEM,
2849                                                    item,
2850                                                    "NULL RAW spec/mask");
2851                                 return -rte_errno;
2852                         }
2853
2854                         if (pf->support_multi_driver) {
2855                                 rte_flow_error_set(error, ENOTSUP,
2856                                                    RTE_FLOW_ERROR_TYPE_ITEM,
2857                                                    item,
2858                                                    "Unsupported flexible payload.");
2859                                 return -rte_errno;
2860                         }
2861
2862                         ret = i40e_flow_check_raw_item(item, raw_spec, error);
2863                         if (ret < 0)
2864                                 return ret;
2865
2866                         off_arr[raw_id] = raw_spec->offset;
2867                         len_arr[raw_id] = raw_spec->length;
2868
2869                         flex_size = 0;
2870                         memset(&flex_pit, 0, sizeof(struct i40e_fdir_flex_pit));
2871                         flex_pit.size =
2872                                 raw_spec->length / sizeof(uint16_t);
2873                         flex_pit.dst_offset =
2874                                 next_dst_off / sizeof(uint16_t);
2875
2876                         for (i = 0; i <= raw_id; i++) {
2877                                 if (i == raw_id)
2878                                         flex_pit.src_offset +=
2879                                                 raw_spec->offset /
2880                                                 sizeof(uint16_t);
2881                                 else
2882                                         flex_pit.src_offset +=
2883                                                 (off_arr[i] + len_arr[i]) /
2884                                                 sizeof(uint16_t);
2885                                 flex_size += len_arr[i];
2886                         }
2887                         if (((flex_pit.src_offset + flex_pit.size) >=
2888                              I40E_MAX_FLX_SOURCE_OFF / sizeof(uint16_t)) ||
2889                                 flex_size > I40E_FDIR_MAX_FLEXLEN) {
2890                                 rte_flow_error_set(error, EINVAL,
2891                                            RTE_FLOW_ERROR_TYPE_ITEM,
2892                                            item,
2893                                            "Exceeds maxmial payload limit.");
2894                                 return -rte_errno;
2895                         }
2896
2897                         /* Store flex pit to SW */
2898                         ret = i40e_flow_store_flex_pit(pf, &flex_pit,
2899                                                        layer_idx, raw_id);
2900                         if (ret < 0) {
2901                                 rte_flow_error_set(error, EINVAL,
2902                                    RTE_FLOW_ERROR_TYPE_ITEM,
2903                                    item,
2904                                    "Conflict with the first flexible rule.");
2905                                 return -rte_errno;
2906                         } else if (ret > 0)
2907                                 cfg_flex_pit = false;
2908
2909                         for (i = 0; i < raw_spec->length; i++) {
2910                                 j = i + next_dst_off;
2911                                 filter->input.flow_ext.flexbytes[j] =
2912                                         raw_spec->pattern[i];
2913                                 flex_mask[j] = raw_mask->pattern[i];
2914                         }
2915
2916                         next_dst_off += raw_spec->length;
2917                         raw_id++;
2918                         break;
2919                 case RTE_FLOW_ITEM_TYPE_VF:
2920                         vf_spec = item->spec;
2921                         filter->input.flow_ext.is_vf = 1;
2922                         filter->input.flow_ext.dst_id = vf_spec->id;
2923                         if (filter->input.flow_ext.is_vf &&
2924                             filter->input.flow_ext.dst_id >= pf->vf_num) {
2925                                 rte_flow_error_set(error, EINVAL,
2926                                                    RTE_FLOW_ERROR_TYPE_ITEM,
2927                                                    item,
2928                                                    "Invalid VF ID for FDIR.");
2929                                 return -rte_errno;
2930                         }
2931                         break;
2932                 default:
2933                         break;
2934                 }
2935         }
2936
2937         /* Get customized pctype value */
2938         if (filter->input.flow_ext.customized_pctype) {
2939                 pctype = i40e_flow_fdir_get_pctype_value(pf, cus_proto, filter);
2940                 if (pctype == I40E_FILTER_PCTYPE_INVALID) {
2941                         rte_flow_error_set(error, EINVAL,
2942                                            RTE_FLOW_ERROR_TYPE_ITEM,
2943                                            item,
2944                                            "Unsupported pctype");
2945                         return -rte_errno;
2946                 }
2947         }
2948
2949         /* If customized pctype is not used, set fdir configuration.*/
2950         if (!filter->input.flow_ext.customized_pctype) {
2951                 ret = i40e_flow_set_fdir_inset(pf, pctype, input_set);
2952                 if (ret == -1) {
2953                         rte_flow_error_set(error, EINVAL,
2954                                            RTE_FLOW_ERROR_TYPE_ITEM, item,
2955                                            "Conflict with the first rule's input set.");
2956                         return -rte_errno;
2957                 } else if (ret == -EINVAL) {
2958                         rte_flow_error_set(error, EINVAL,
2959                                            RTE_FLOW_ERROR_TYPE_ITEM, item,
2960                                            "Invalid pattern mask.");
2961                         return -rte_errno;
2962                 }
2963
2964                 /* Store flex mask to SW */
2965                 ret = i40e_flow_store_flex_mask(pf, pctype, flex_mask);
2966                 if (ret == -1) {
2967                         rte_flow_error_set(error, EINVAL,
2968                                            RTE_FLOW_ERROR_TYPE_ITEM,
2969                                            item,
2970                                            "Exceed maximal number of bitmasks");
2971                         return -rte_errno;
2972                 } else if (ret == -2) {
2973                         rte_flow_error_set(error, EINVAL,
2974                                            RTE_FLOW_ERROR_TYPE_ITEM,
2975                                            item,
2976                                            "Conflict with the first flexible rule");
2977                         return -rte_errno;
2978                 } else if (ret > 0)
2979                         cfg_flex_msk = false;
2980
2981                 if (cfg_flex_pit)
2982                         i40e_flow_set_fdir_flex_pit(pf, layer_idx, raw_id);
2983
2984                 if (cfg_flex_msk)
2985                         i40e_flow_set_fdir_flex_msk(pf, pctype);
2986         }
2987
2988         filter->input.pctype = pctype;
2989
2990         return 0;
2991 }
2992
2993 /* Parse to get the action info of a FDIR filter.
2994  * FDIR action supports QUEUE or (QUEUE + MARK).
2995  */
2996 static int
2997 i40e_flow_parse_fdir_action(struct rte_eth_dev *dev,
2998                             const struct rte_flow_action *actions,
2999                             struct rte_flow_error *error,
3000                             struct i40e_fdir_filter_conf *filter)
3001 {
3002         struct i40e_pf *pf = I40E_DEV_PRIVATE_TO_PF(dev->data->dev_private);
3003         const struct rte_flow_action *act;
3004         const struct rte_flow_action_queue *act_q;
3005         const struct rte_flow_action_mark *mark_spec;
3006         uint32_t index = 0;
3007
3008         /* Check if the first non-void action is QUEUE or DROP or PASSTHRU. */
3009         NEXT_ITEM_OF_ACTION(act, actions, index);
3010         switch (act->type) {
3011         case RTE_FLOW_ACTION_TYPE_QUEUE:
3012                 act_q = act->conf;
3013                 filter->action.rx_queue = act_q->index;
3014                 if ((!filter->input.flow_ext.is_vf &&
3015                      filter->action.rx_queue >= pf->dev_data->nb_rx_queues) ||
3016                     (filter->input.flow_ext.is_vf &&
3017                      filter->action.rx_queue >= pf->vf_nb_qps)) {
3018                         rte_flow_error_set(error, EINVAL,
3019                                            RTE_FLOW_ERROR_TYPE_ACTION, act,
3020                                            "Invalid queue ID for FDIR.");
3021                         return -rte_errno;
3022                 }
3023                 filter->action.behavior = I40E_FDIR_ACCEPT;
3024                 break;
3025         case RTE_FLOW_ACTION_TYPE_DROP:
3026                 filter->action.behavior = I40E_FDIR_REJECT;
3027                 break;
3028         case RTE_FLOW_ACTION_TYPE_PASSTHRU:
3029                 filter->action.behavior = I40E_FDIR_PASSTHRU;
3030                 break;
3031         default:
3032                 rte_flow_error_set(error, EINVAL,
3033                                    RTE_FLOW_ERROR_TYPE_ACTION, act,
3034                                    "Invalid action.");
3035                 return -rte_errno;
3036         }
3037
3038         /* Check if the next non-void item is MARK or FLAG or END. */
3039         index++;
3040         NEXT_ITEM_OF_ACTION(act, actions, index);
3041         switch (act->type) {
3042         case RTE_FLOW_ACTION_TYPE_MARK:
3043                 mark_spec = act->conf;
3044                 filter->action.report_status = I40E_FDIR_REPORT_ID;
3045                 filter->soft_id = mark_spec->id;
3046                 break;
3047         case RTE_FLOW_ACTION_TYPE_FLAG:
3048                 filter->action.report_status = I40E_FDIR_NO_REPORT_STATUS;
3049                 break;
3050         case RTE_FLOW_ACTION_TYPE_END:
3051                 return 0;
3052         default:
3053                 rte_flow_error_set(error, EINVAL, RTE_FLOW_ERROR_TYPE_ACTION,
3054                                    act, "Invalid action.");
3055                 return -rte_errno;
3056         }
3057
3058         /* Check if the next non-void item is END */
3059         index++;
3060         NEXT_ITEM_OF_ACTION(act, actions, index);
3061         if (act->type != RTE_FLOW_ACTION_TYPE_END) {
3062                 rte_flow_error_set(error, EINVAL,
3063                                    RTE_FLOW_ERROR_TYPE_ACTION,
3064                                    act, "Invalid action.");
3065                 return -rte_errno;
3066         }
3067
3068         return 0;
3069 }
3070
3071 static int
3072 i40e_flow_parse_fdir_filter(struct rte_eth_dev *dev,
3073                             const struct rte_flow_attr *attr,
3074                             const struct rte_flow_item pattern[],
3075                             const struct rte_flow_action actions[],
3076                             struct rte_flow_error *error,
3077                             union i40e_filter_t *filter)
3078 {
3079         struct i40e_fdir_filter_conf *fdir_filter =
3080                 &filter->fdir_filter;
3081         int ret;
3082
3083         ret = i40e_flow_parse_fdir_pattern(dev, pattern, error, fdir_filter);
3084         if (ret)
3085                 return ret;
3086
3087         ret = i40e_flow_parse_fdir_action(dev, actions, error, fdir_filter);
3088         if (ret)
3089                 return ret;
3090
3091         ret = i40e_flow_parse_attr(attr, error);
3092         if (ret)
3093                 return ret;
3094
3095         cons_filter_type = RTE_ETH_FILTER_FDIR;
3096
3097         if (dev->data->dev_conf.fdir_conf.mode !=
3098             RTE_FDIR_MODE_PERFECT) {
3099                 rte_flow_error_set(error, ENOTSUP,
3100                                    RTE_FLOW_ERROR_TYPE_UNSPECIFIED,
3101                                    NULL,
3102                                    "Check the mode in fdir_conf.");
3103                 return -rte_errno;
3104         }
3105
3106         return 0;
3107 }
3108
3109 /* Parse to get the action info of a tunnel filter
3110  * Tunnel action only supports PF, VF and QUEUE.
3111  */
3112 static int
3113 i40e_flow_parse_tunnel_action(struct rte_eth_dev *dev,
3114                               const struct rte_flow_action *actions,
3115                               struct rte_flow_error *error,
3116                               struct i40e_tunnel_filter_conf *filter)
3117 {
3118         struct i40e_pf *pf = I40E_DEV_PRIVATE_TO_PF(dev->data->dev_private);
3119         const struct rte_flow_action *act;
3120         const struct rte_flow_action_queue *act_q;
3121         const struct rte_flow_action_vf *act_vf;
3122         uint32_t index = 0;
3123
3124         /* Check if the first non-void action is PF or VF. */
3125         NEXT_ITEM_OF_ACTION(act, actions, index);
3126         if (act->type != RTE_FLOW_ACTION_TYPE_PF &&
3127             act->type != RTE_FLOW_ACTION_TYPE_VF) {
3128                 rte_flow_error_set(error, EINVAL, RTE_FLOW_ERROR_TYPE_ACTION,
3129                                    act, "Not supported action.");
3130                 return -rte_errno;
3131         }
3132
3133         if (act->type == RTE_FLOW_ACTION_TYPE_VF) {
3134                 act_vf = act->conf;
3135                 filter->vf_id = act_vf->id;
3136                 filter->is_to_vf = 1;
3137                 if (filter->vf_id >= pf->vf_num) {
3138                         rte_flow_error_set(error, EINVAL,
3139                                    RTE_FLOW_ERROR_TYPE_ACTION,
3140                                    act, "Invalid VF ID for tunnel filter");
3141                         return -rte_errno;
3142                 }
3143         }
3144
3145         /* Check if the next non-void item is QUEUE */
3146         index++;
3147         NEXT_ITEM_OF_ACTION(act, actions, index);
3148         if (act->type == RTE_FLOW_ACTION_TYPE_QUEUE) {
3149                 act_q = act->conf;
3150                 filter->queue_id = act_q->index;
3151                 if ((!filter->is_to_vf) &&
3152                     (filter->queue_id >= pf->dev_data->nb_rx_queues)) {
3153                         rte_flow_error_set(error, EINVAL,
3154                                    RTE_FLOW_ERROR_TYPE_ACTION,
3155                                    act, "Invalid queue ID for tunnel filter");
3156                         return -rte_errno;
3157                 } else if (filter->is_to_vf &&
3158                            (filter->queue_id >= pf->vf_nb_qps)) {
3159                         rte_flow_error_set(error, EINVAL,
3160                                    RTE_FLOW_ERROR_TYPE_ACTION,
3161                                    act, "Invalid queue ID for tunnel filter");
3162                         return -rte_errno;
3163                 }
3164         }
3165
3166         /* Check if the next non-void item is END */
3167         index++;
3168         NEXT_ITEM_OF_ACTION(act, actions, index);
3169         if (act->type != RTE_FLOW_ACTION_TYPE_END) {
3170                 rte_flow_error_set(error, EINVAL, RTE_FLOW_ERROR_TYPE_ACTION,
3171                                    act, "Not supported action.");
3172                 return -rte_errno;
3173         }
3174
3175         return 0;
3176 }
3177
3178 static uint16_t i40e_supported_tunnel_filter_types[] = {
3179         ETH_TUNNEL_FILTER_IMAC | ETH_TUNNEL_FILTER_TENID |
3180         ETH_TUNNEL_FILTER_IVLAN,
3181         ETH_TUNNEL_FILTER_IMAC | ETH_TUNNEL_FILTER_IVLAN,
3182         ETH_TUNNEL_FILTER_IMAC | ETH_TUNNEL_FILTER_TENID,
3183         ETH_TUNNEL_FILTER_OMAC | ETH_TUNNEL_FILTER_TENID |
3184         ETH_TUNNEL_FILTER_IMAC,
3185         ETH_TUNNEL_FILTER_IMAC,
3186 };
3187
3188 static int
3189 i40e_check_tunnel_filter_type(uint8_t filter_type)
3190 {
3191         uint8_t i;
3192
3193         for (i = 0; i < RTE_DIM(i40e_supported_tunnel_filter_types); i++) {
3194                 if (filter_type == i40e_supported_tunnel_filter_types[i])
3195                         return 0;
3196         }
3197
3198         return -1;
3199 }
3200
3201 /* 1. Last in item should be NULL as range is not supported.
3202  * 2. Supported filter types: IMAC_IVLAN_TENID, IMAC_IVLAN,
3203  *    IMAC_TENID, OMAC_TENID_IMAC and IMAC.
3204  * 3. Mask of fields which need to be matched should be
3205  *    filled with 1.
3206  * 4. Mask of fields which needn't to be matched should be
3207  *    filled with 0.
3208  */
3209 static int
3210 i40e_flow_parse_vxlan_pattern(__rte_unused struct rte_eth_dev *dev,
3211                               const struct rte_flow_item *pattern,
3212                               struct rte_flow_error *error,
3213                               struct i40e_tunnel_filter_conf *filter)
3214 {
3215         const struct rte_flow_item *item = pattern;
3216         const struct rte_flow_item_eth *eth_spec;
3217         const struct rte_flow_item_eth *eth_mask;
3218         const struct rte_flow_item_vxlan *vxlan_spec;
3219         const struct rte_flow_item_vxlan *vxlan_mask;
3220         const struct rte_flow_item_vlan *vlan_spec;
3221         const struct rte_flow_item_vlan *vlan_mask;
3222         uint8_t filter_type = 0;
3223         bool is_vni_masked = 0;
3224         uint8_t vni_mask[] = {0xFF, 0xFF, 0xFF};
3225         enum rte_flow_item_type item_type;
3226         bool vxlan_flag = 0;
3227         uint32_t tenant_id_be = 0;
3228         int ret;
3229
3230         for (; item->type != RTE_FLOW_ITEM_TYPE_END; item++) {
3231                 if (item->last) {
3232                         rte_flow_error_set(error, EINVAL,
3233                                            RTE_FLOW_ERROR_TYPE_ITEM,
3234                                            item,
3235                                            "Not support range");
3236                         return -rte_errno;
3237                 }
3238                 item_type = item->type;
3239                 switch (item_type) {
3240                 case RTE_FLOW_ITEM_TYPE_ETH:
3241                         eth_spec = item->spec;
3242                         eth_mask = item->mask;
3243
3244                         /* Check if ETH item is used for place holder.
3245                          * If yes, both spec and mask should be NULL.
3246                          * If no, both spec and mask shouldn't be NULL.
3247                          */
3248                         if ((!eth_spec && eth_mask) ||
3249                             (eth_spec && !eth_mask)) {
3250                                 rte_flow_error_set(error, EINVAL,
3251                                                    RTE_FLOW_ERROR_TYPE_ITEM,
3252                                                    item,
3253                                                    "Invalid ether spec/mask");
3254                                 return -rte_errno;
3255                         }
3256
3257                         if (eth_spec && eth_mask) {
3258                                 /* DST address of inner MAC shouldn't be masked.
3259                                  * SRC address of Inner MAC should be masked.
3260                                  */
3261                                 if (!is_broadcast_ether_addr(&eth_mask->dst) ||
3262                                     !is_zero_ether_addr(&eth_mask->src) ||
3263                                     eth_mask->type) {
3264                                         rte_flow_error_set(error, EINVAL,
3265                                                    RTE_FLOW_ERROR_TYPE_ITEM,
3266                                                    item,
3267                                                    "Invalid ether spec/mask");
3268                                         return -rte_errno;
3269                                 }
3270
3271                                 if (!vxlan_flag) {
3272                                         rte_memcpy(&filter->outer_mac,
3273                                                    &eth_spec->dst,
3274                                                    ETHER_ADDR_LEN);
3275                                         filter_type |= ETH_TUNNEL_FILTER_OMAC;
3276                                 } else {
3277                                         rte_memcpy(&filter->inner_mac,
3278                                                    &eth_spec->dst,
3279                                                    ETHER_ADDR_LEN);
3280                                         filter_type |= ETH_TUNNEL_FILTER_IMAC;
3281                                 }
3282                         }
3283                         break;
3284                 case RTE_FLOW_ITEM_TYPE_VLAN:
3285                         vlan_spec = item->spec;
3286                         vlan_mask = item->mask;
3287                         if (!(vlan_spec && vlan_mask)) {
3288                                 rte_flow_error_set(error, EINVAL,
3289                                                    RTE_FLOW_ERROR_TYPE_ITEM,
3290                                                    item,
3291                                                    "Invalid vlan item");
3292                                 return -rte_errno;
3293                         }
3294
3295                         if (vlan_spec && vlan_mask) {
3296                                 if (vlan_mask->tci ==
3297                                     rte_cpu_to_be_16(I40E_TCI_MASK))
3298                                         filter->inner_vlan =
3299                                               rte_be_to_cpu_16(vlan_spec->tci) &
3300                                               I40E_TCI_MASK;
3301                                 filter_type |= ETH_TUNNEL_FILTER_IVLAN;
3302                         }
3303                         break;
3304                 case RTE_FLOW_ITEM_TYPE_IPV4:
3305                         filter->ip_type = I40E_TUNNEL_IPTYPE_IPV4;
3306                         /* IPv4 is used to describe protocol,
3307                          * spec and mask should be NULL.
3308                          */
3309                         if (item->spec || item->mask) {
3310                                 rte_flow_error_set(error, EINVAL,
3311                                                    RTE_FLOW_ERROR_TYPE_ITEM,
3312                                                    item,
3313                                                    "Invalid IPv4 item");
3314                                 return -rte_errno;
3315                         }
3316                         break;
3317                 case RTE_FLOW_ITEM_TYPE_IPV6:
3318                         filter->ip_type = I40E_TUNNEL_IPTYPE_IPV6;
3319                         /* IPv6 is used to describe protocol,
3320                          * spec and mask should be NULL.
3321                          */
3322                         if (item->spec || item->mask) {
3323                                 rte_flow_error_set(error, EINVAL,
3324                                                    RTE_FLOW_ERROR_TYPE_ITEM,
3325                                                    item,
3326                                                    "Invalid IPv6 item");
3327                                 return -rte_errno;
3328                         }
3329                         break;
3330                 case RTE_FLOW_ITEM_TYPE_UDP:
3331                         /* UDP is used to describe protocol,
3332                          * spec and mask should be NULL.
3333                          */
3334                         if (item->spec || item->mask) {
3335                                 rte_flow_error_set(error, EINVAL,
3336                                            RTE_FLOW_ERROR_TYPE_ITEM,
3337                                            item,
3338                                            "Invalid UDP item");
3339                                 return -rte_errno;
3340                         }
3341                         break;
3342                 case RTE_FLOW_ITEM_TYPE_VXLAN:
3343                         vxlan_spec = item->spec;
3344                         vxlan_mask = item->mask;
3345                         /* Check if VXLAN item is used to describe protocol.
3346                          * If yes, both spec and mask should be NULL.
3347                          * If no, both spec and mask shouldn't be NULL.
3348                          */
3349                         if ((!vxlan_spec && vxlan_mask) ||
3350                             (vxlan_spec && !vxlan_mask)) {
3351                                 rte_flow_error_set(error, EINVAL,
3352                                            RTE_FLOW_ERROR_TYPE_ITEM,
3353                                            item,
3354                                            "Invalid VXLAN item");
3355                                 return -rte_errno;
3356                         }
3357
3358                         /* Check if VNI is masked. */
3359                         if (vxlan_spec && vxlan_mask) {
3360                                 is_vni_masked =
3361                                         !!memcmp(vxlan_mask->vni, vni_mask,
3362                                                  RTE_DIM(vni_mask));
3363                                 if (is_vni_masked) {
3364                                         rte_flow_error_set(error, EINVAL,
3365                                                    RTE_FLOW_ERROR_TYPE_ITEM,
3366                                                    item,
3367                                                    "Invalid VNI mask");
3368                                         return -rte_errno;
3369                                 }
3370
3371                                 rte_memcpy(((uint8_t *)&tenant_id_be + 1),
3372                                            vxlan_spec->vni, 3);
3373                                 filter->tenant_id =
3374                                         rte_be_to_cpu_32(tenant_id_be);
3375                                 filter_type |= ETH_TUNNEL_FILTER_TENID;
3376                         }
3377
3378                         vxlan_flag = 1;
3379                         break;
3380                 default:
3381                         break;
3382                 }
3383         }
3384
3385         ret = i40e_check_tunnel_filter_type(filter_type);
3386         if (ret < 0) {
3387                 rte_flow_error_set(error, EINVAL,
3388                                    RTE_FLOW_ERROR_TYPE_ITEM,
3389                                    NULL,
3390                                    "Invalid filter type");
3391                 return -rte_errno;
3392         }
3393         filter->filter_type = filter_type;
3394
3395         filter->tunnel_type = I40E_TUNNEL_TYPE_VXLAN;
3396
3397         return 0;
3398 }
3399
3400 static int
3401 i40e_flow_parse_vxlan_filter(struct rte_eth_dev *dev,
3402                              const struct rte_flow_attr *attr,
3403                              const struct rte_flow_item pattern[],
3404                              const struct rte_flow_action actions[],
3405                              struct rte_flow_error *error,
3406                              union i40e_filter_t *filter)
3407 {
3408         struct i40e_tunnel_filter_conf *tunnel_filter =
3409                 &filter->consistent_tunnel_filter;
3410         int ret;
3411
3412         ret = i40e_flow_parse_vxlan_pattern(dev, pattern,
3413                                             error, tunnel_filter);
3414         if (ret)
3415                 return ret;
3416
3417         ret = i40e_flow_parse_tunnel_action(dev, actions, error, tunnel_filter);
3418         if (ret)
3419                 return ret;
3420
3421         ret = i40e_flow_parse_attr(attr, error);
3422         if (ret)
3423                 return ret;
3424
3425         cons_filter_type = RTE_ETH_FILTER_TUNNEL;
3426
3427         return ret;
3428 }
3429
3430 /* 1. Last in item should be NULL as range is not supported.
3431  * 2. Supported filter types: IMAC_IVLAN_TENID, IMAC_IVLAN,
3432  *    IMAC_TENID, OMAC_TENID_IMAC and IMAC.
3433  * 3. Mask of fields which need to be matched should be
3434  *    filled with 1.
3435  * 4. Mask of fields which needn't to be matched should be
3436  *    filled with 0.
3437  */
3438 static int
3439 i40e_flow_parse_nvgre_pattern(__rte_unused struct rte_eth_dev *dev,
3440                               const struct rte_flow_item *pattern,
3441                               struct rte_flow_error *error,
3442                               struct i40e_tunnel_filter_conf *filter)
3443 {
3444         const struct rte_flow_item *item = pattern;
3445         const struct rte_flow_item_eth *eth_spec;
3446         const struct rte_flow_item_eth *eth_mask;
3447         const struct rte_flow_item_nvgre *nvgre_spec;
3448         const struct rte_flow_item_nvgre *nvgre_mask;
3449         const struct rte_flow_item_vlan *vlan_spec;
3450         const struct rte_flow_item_vlan *vlan_mask;
3451         enum rte_flow_item_type item_type;
3452         uint8_t filter_type = 0;
3453         bool is_tni_masked = 0;
3454         uint8_t tni_mask[] = {0xFF, 0xFF, 0xFF};
3455         bool nvgre_flag = 0;
3456         uint32_t tenant_id_be = 0;
3457         int ret;
3458
3459         for (; item->type != RTE_FLOW_ITEM_TYPE_END; item++) {
3460                 if (item->last) {
3461                         rte_flow_error_set(error, EINVAL,
3462                                            RTE_FLOW_ERROR_TYPE_ITEM,
3463                                            item,
3464                                            "Not support range");
3465                         return -rte_errno;
3466                 }
3467                 item_type = item->type;
3468                 switch (item_type) {
3469                 case RTE_FLOW_ITEM_TYPE_ETH:
3470                         eth_spec = item->spec;
3471                         eth_mask = item->mask;
3472
3473                         /* Check if ETH item is used for place holder.
3474                          * If yes, both spec and mask should be NULL.
3475                          * If no, both spec and mask shouldn't be NULL.
3476                          */
3477                         if ((!eth_spec && eth_mask) ||
3478                             (eth_spec && !eth_mask)) {
3479                                 rte_flow_error_set(error, EINVAL,
3480                                                    RTE_FLOW_ERROR_TYPE_ITEM,
3481                                                    item,
3482                                                    "Invalid ether spec/mask");
3483                                 return -rte_errno;
3484                         }
3485
3486                         if (eth_spec && eth_mask) {
3487                                 /* DST address of inner MAC shouldn't be masked.
3488                                  * SRC address of Inner MAC should be masked.
3489                                  */
3490                                 if (!is_broadcast_ether_addr(&eth_mask->dst) ||
3491                                     !is_zero_ether_addr(&eth_mask->src) ||
3492                                     eth_mask->type) {
3493                                         rte_flow_error_set(error, EINVAL,
3494                                                    RTE_FLOW_ERROR_TYPE_ITEM,
3495                                                    item,
3496                                                    "Invalid ether spec/mask");
3497                                         return -rte_errno;
3498                                 }
3499
3500                                 if (!nvgre_flag) {
3501                                         rte_memcpy(&filter->outer_mac,
3502                                                    &eth_spec->dst,
3503                                                    ETHER_ADDR_LEN);
3504                                         filter_type |= ETH_TUNNEL_FILTER_OMAC;
3505                                 } else {
3506                                         rte_memcpy(&filter->inner_mac,
3507                                                    &eth_spec->dst,
3508                                                    ETHER_ADDR_LEN);
3509                                         filter_type |= ETH_TUNNEL_FILTER_IMAC;
3510                                 }
3511                         }
3512
3513                         break;
3514                 case RTE_FLOW_ITEM_TYPE_VLAN:
3515                         vlan_spec = item->spec;
3516                         vlan_mask = item->mask;
3517                         if (!(vlan_spec && vlan_mask)) {
3518                                 rte_flow_error_set(error, EINVAL,
3519                                                    RTE_FLOW_ERROR_TYPE_ITEM,
3520                                                    item,
3521                                                    "Invalid vlan item");
3522                                 return -rte_errno;
3523                         }
3524
3525                         if (vlan_spec && vlan_mask) {
3526                                 if (vlan_mask->tci ==
3527                                     rte_cpu_to_be_16(I40E_TCI_MASK))
3528                                         filter->inner_vlan =
3529                                               rte_be_to_cpu_16(vlan_spec->tci) &
3530                                               I40E_TCI_MASK;
3531                                 filter_type |= ETH_TUNNEL_FILTER_IVLAN;
3532                         }
3533                         break;
3534                 case RTE_FLOW_ITEM_TYPE_IPV4:
3535                         filter->ip_type = I40E_TUNNEL_IPTYPE_IPV4;
3536                         /* IPv4 is used to describe protocol,
3537                          * spec and mask should be NULL.
3538                          */
3539                         if (item->spec || item->mask) {
3540                                 rte_flow_error_set(error, EINVAL,
3541                                                    RTE_FLOW_ERROR_TYPE_ITEM,
3542                                                    item,
3543                                                    "Invalid IPv4 item");
3544                                 return -rte_errno;
3545                         }
3546                         break;
3547                 case RTE_FLOW_ITEM_TYPE_IPV6:
3548                         filter->ip_type = I40E_TUNNEL_IPTYPE_IPV6;
3549                         /* IPv6 is used to describe protocol,
3550                          * spec and mask should be NULL.
3551                          */
3552                         if (item->spec || item->mask) {
3553                                 rte_flow_error_set(error, EINVAL,
3554                                                    RTE_FLOW_ERROR_TYPE_ITEM,
3555                                                    item,
3556                                                    "Invalid IPv6 item");
3557                                 return -rte_errno;
3558                         }
3559                         break;
3560                 case RTE_FLOW_ITEM_TYPE_NVGRE:
3561                         nvgre_spec = item->spec;
3562                         nvgre_mask = item->mask;
3563                         /* Check if NVGRE item is used to describe protocol.
3564                          * If yes, both spec and mask should be NULL.
3565                          * If no, both spec and mask shouldn't be NULL.
3566                          */
3567                         if ((!nvgre_spec && nvgre_mask) ||
3568                             (nvgre_spec && !nvgre_mask)) {
3569                                 rte_flow_error_set(error, EINVAL,
3570                                            RTE_FLOW_ERROR_TYPE_ITEM,
3571                                            item,
3572                                            "Invalid NVGRE item");
3573                                 return -rte_errno;
3574                         }
3575
3576                         if (nvgre_spec && nvgre_mask) {
3577                                 is_tni_masked =
3578                                         !!memcmp(nvgre_mask->tni, tni_mask,
3579                                                  RTE_DIM(tni_mask));
3580                                 if (is_tni_masked) {
3581                                         rte_flow_error_set(error, EINVAL,
3582                                                        RTE_FLOW_ERROR_TYPE_ITEM,
3583                                                        item,
3584                                                        "Invalid TNI mask");
3585                                         return -rte_errno;
3586                                 }
3587                                 if (nvgre_mask->protocol &&
3588                                         nvgre_mask->protocol != 0xFFFF) {
3589                                         rte_flow_error_set(error, EINVAL,
3590                                                 RTE_FLOW_ERROR_TYPE_ITEM,
3591                                                 item,
3592                                                 "Invalid NVGRE item");
3593                                         return -rte_errno;
3594                                 }
3595                                 if (nvgre_mask->c_k_s_rsvd0_ver &&
3596                                         nvgre_mask->c_k_s_rsvd0_ver !=
3597                                         rte_cpu_to_be_16(0xFFFF)) {
3598                                         rte_flow_error_set(error, EINVAL,
3599                                                    RTE_FLOW_ERROR_TYPE_ITEM,
3600                                                    item,
3601                                                    "Invalid NVGRE item");
3602                                         return -rte_errno;
3603                                 }
3604                                 if (nvgre_spec->c_k_s_rsvd0_ver !=
3605                                         rte_cpu_to_be_16(0x2000) &&
3606                                         nvgre_mask->c_k_s_rsvd0_ver) {
3607                                         rte_flow_error_set(error, EINVAL,
3608                                                    RTE_FLOW_ERROR_TYPE_ITEM,
3609                                                    item,
3610                                                    "Invalid NVGRE item");
3611                                         return -rte_errno;
3612                                 }
3613                                 if (nvgre_mask->protocol &&
3614                                         nvgre_spec->protocol !=
3615                                         rte_cpu_to_be_16(0x6558)) {
3616                                         rte_flow_error_set(error, EINVAL,
3617                                                    RTE_FLOW_ERROR_TYPE_ITEM,
3618                                                    item,
3619                                                    "Invalid NVGRE item");
3620                                         return -rte_errno;
3621                                 }
3622                                 rte_memcpy(((uint8_t *)&tenant_id_be + 1),
3623                                            nvgre_spec->tni, 3);
3624                                 filter->tenant_id =
3625                                         rte_be_to_cpu_32(tenant_id_be);
3626                                 filter_type |= ETH_TUNNEL_FILTER_TENID;
3627                         }
3628
3629                         nvgre_flag = 1;
3630                         break;
3631                 default:
3632                         break;
3633                 }
3634         }
3635
3636         ret = i40e_check_tunnel_filter_type(filter_type);
3637         if (ret < 0) {
3638                 rte_flow_error_set(error, EINVAL,
3639                                    RTE_FLOW_ERROR_TYPE_ITEM,
3640                                    NULL,
3641                                    "Invalid filter type");
3642                 return -rte_errno;
3643         }
3644         filter->filter_type = filter_type;
3645
3646         filter->tunnel_type = I40E_TUNNEL_TYPE_NVGRE;
3647
3648         return 0;
3649 }
3650
3651 static int
3652 i40e_flow_parse_nvgre_filter(struct rte_eth_dev *dev,
3653                              const struct rte_flow_attr *attr,
3654                              const struct rte_flow_item pattern[],
3655                              const struct rte_flow_action actions[],
3656                              struct rte_flow_error *error,
3657                              union i40e_filter_t *filter)
3658 {
3659         struct i40e_tunnel_filter_conf *tunnel_filter =
3660                 &filter->consistent_tunnel_filter;
3661         int ret;
3662
3663         ret = i40e_flow_parse_nvgre_pattern(dev, pattern,
3664                                             error, tunnel_filter);
3665         if (ret)
3666                 return ret;
3667
3668         ret = i40e_flow_parse_tunnel_action(dev, actions, error, tunnel_filter);
3669         if (ret)
3670                 return ret;
3671
3672         ret = i40e_flow_parse_attr(attr, error);
3673         if (ret)
3674                 return ret;
3675
3676         cons_filter_type = RTE_ETH_FILTER_TUNNEL;
3677
3678         return ret;
3679 }
3680
3681 /* 1. Last in item should be NULL as range is not supported.
3682  * 2. Supported filter types: MPLS label.
3683  * 3. Mask of fields which need to be matched should be
3684  *    filled with 1.
3685  * 4. Mask of fields which needn't to be matched should be
3686  *    filled with 0.
3687  */
3688 static int
3689 i40e_flow_parse_mpls_pattern(__rte_unused struct rte_eth_dev *dev,
3690                              const struct rte_flow_item *pattern,
3691                              struct rte_flow_error *error,
3692                              struct i40e_tunnel_filter_conf *filter)
3693 {
3694         const struct rte_flow_item *item = pattern;
3695         const struct rte_flow_item_mpls *mpls_spec;
3696         const struct rte_flow_item_mpls *mpls_mask;
3697         enum rte_flow_item_type item_type;
3698         bool is_mplsoudp = 0; /* 1 - MPLSoUDP, 0 - MPLSoGRE */
3699         const uint8_t label_mask[3] = {0xFF, 0xFF, 0xF0};
3700         uint32_t label_be = 0;
3701
3702         for (; item->type != RTE_FLOW_ITEM_TYPE_END; item++) {
3703                 if (item->last) {
3704                         rte_flow_error_set(error, EINVAL,
3705                                            RTE_FLOW_ERROR_TYPE_ITEM,
3706                                            item,
3707                                            "Not support range");
3708                         return -rte_errno;
3709                 }
3710                 item_type = item->type;
3711                 switch (item_type) {
3712                 case RTE_FLOW_ITEM_TYPE_ETH:
3713                         if (item->spec || item->mask) {
3714                                 rte_flow_error_set(error, EINVAL,
3715                                                    RTE_FLOW_ERROR_TYPE_ITEM,
3716                                                    item,
3717                                                    "Invalid ETH item");
3718                                 return -rte_errno;
3719                         }
3720                         break;
3721                 case RTE_FLOW_ITEM_TYPE_IPV4:
3722                         filter->ip_type = I40E_TUNNEL_IPTYPE_IPV4;
3723                         /* IPv4 is used to describe protocol,
3724                          * spec and mask should be NULL.
3725                          */
3726                         if (item->spec || item->mask) {
3727                                 rte_flow_error_set(error, EINVAL,
3728                                                    RTE_FLOW_ERROR_TYPE_ITEM,
3729                                                    item,
3730                                                    "Invalid IPv4 item");
3731                                 return -rte_errno;
3732                         }
3733                         break;
3734                 case RTE_FLOW_ITEM_TYPE_IPV6:
3735                         filter->ip_type = I40E_TUNNEL_IPTYPE_IPV6;
3736                         /* IPv6 is used to describe protocol,
3737                          * spec and mask should be NULL.
3738                          */
3739                         if (item->spec || item->mask) {
3740                                 rte_flow_error_set(error, EINVAL,
3741                                                    RTE_FLOW_ERROR_TYPE_ITEM,
3742                                                    item,
3743                                                    "Invalid IPv6 item");
3744                                 return -rte_errno;
3745                         }
3746                         break;
3747                 case RTE_FLOW_ITEM_TYPE_UDP:
3748                         /* UDP is used to describe protocol,
3749                          * spec and mask should be NULL.
3750                          */
3751                         if (item->spec || item->mask) {
3752                                 rte_flow_error_set(error, EINVAL,
3753                                                    RTE_FLOW_ERROR_TYPE_ITEM,
3754                                                    item,
3755                                                    "Invalid UDP item");
3756                                 return -rte_errno;
3757                         }
3758                         is_mplsoudp = 1;
3759                         break;
3760                 case RTE_FLOW_ITEM_TYPE_GRE:
3761                         /* GRE is used to describe protocol,
3762                          * spec and mask should be NULL.
3763                          */
3764                         if (item->spec || item->mask) {
3765                                 rte_flow_error_set(error, EINVAL,
3766                                                    RTE_FLOW_ERROR_TYPE_ITEM,
3767                                                    item,
3768                                                    "Invalid GRE item");
3769                                 return -rte_errno;
3770                         }
3771                         break;
3772                 case RTE_FLOW_ITEM_TYPE_MPLS:
3773                         mpls_spec = item->spec;
3774                         mpls_mask = item->mask;
3775
3776                         if (!mpls_spec || !mpls_mask) {
3777                                 rte_flow_error_set(error, EINVAL,
3778                                                    RTE_FLOW_ERROR_TYPE_ITEM,
3779                                                    item,
3780                                                    "Invalid MPLS item");
3781                                 return -rte_errno;
3782                         }
3783
3784                         if (memcmp(mpls_mask->label_tc_s, label_mask, 3)) {
3785                                 rte_flow_error_set(error, EINVAL,
3786                                                    RTE_FLOW_ERROR_TYPE_ITEM,
3787                                                    item,
3788                                                    "Invalid MPLS label mask");
3789                                 return -rte_errno;
3790                         }
3791                         rte_memcpy(((uint8_t *)&label_be + 1),
3792                                    mpls_spec->label_tc_s, 3);
3793                         filter->tenant_id = rte_be_to_cpu_32(label_be) >> 4;
3794                         break;
3795                 default:
3796                         break;
3797                 }
3798         }
3799
3800         if (is_mplsoudp)
3801                 filter->tunnel_type = I40E_TUNNEL_TYPE_MPLSoUDP;
3802         else
3803                 filter->tunnel_type = I40E_TUNNEL_TYPE_MPLSoGRE;
3804
3805         return 0;
3806 }
3807
3808 static int
3809 i40e_flow_parse_mpls_filter(struct rte_eth_dev *dev,
3810                             const struct rte_flow_attr *attr,
3811                             const struct rte_flow_item pattern[],
3812                             const struct rte_flow_action actions[],
3813                             struct rte_flow_error *error,
3814                             union i40e_filter_t *filter)
3815 {
3816         struct i40e_tunnel_filter_conf *tunnel_filter =
3817                 &filter->consistent_tunnel_filter;
3818         int ret;
3819
3820         ret = i40e_flow_parse_mpls_pattern(dev, pattern,
3821                                            error, tunnel_filter);
3822         if (ret)
3823                 return ret;
3824
3825         ret = i40e_flow_parse_tunnel_action(dev, actions, error, tunnel_filter);
3826         if (ret)
3827                 return ret;
3828
3829         ret = i40e_flow_parse_attr(attr, error);
3830         if (ret)
3831                 return ret;
3832
3833         cons_filter_type = RTE_ETH_FILTER_TUNNEL;
3834
3835         return ret;
3836 }
3837
3838 /* 1. Last in item should be NULL as range is not supported.
3839  * 2. Supported filter types: GTP TEID.
3840  * 3. Mask of fields which need to be matched should be
3841  *    filled with 1.
3842  * 4. Mask of fields which needn't to be matched should be
3843  *    filled with 0.
3844  * 5. GTP profile supports GTPv1 only.
3845  * 6. GTP-C response message ('source_port' = 2123) is not supported.
3846  */
3847 static int
3848 i40e_flow_parse_gtp_pattern(struct rte_eth_dev *dev,
3849                             const struct rte_flow_item *pattern,
3850                             struct rte_flow_error *error,
3851                             struct i40e_tunnel_filter_conf *filter)
3852 {
3853         struct i40e_pf *pf = I40E_DEV_PRIVATE_TO_PF(dev->data->dev_private);
3854         const struct rte_flow_item *item = pattern;
3855         const struct rte_flow_item_gtp *gtp_spec;
3856         const struct rte_flow_item_gtp *gtp_mask;
3857         enum rte_flow_item_type item_type;
3858
3859         if (!pf->gtp_support) {
3860                 rte_flow_error_set(error, EINVAL,
3861                                    RTE_FLOW_ERROR_TYPE_ITEM,
3862                                    item,
3863                                    "GTP is not supported by default.");
3864                 return -rte_errno;
3865         }
3866
3867         for (; item->type != RTE_FLOW_ITEM_TYPE_END; item++) {
3868                 if (item->last) {
3869                         rte_flow_error_set(error, EINVAL,
3870                                            RTE_FLOW_ERROR_TYPE_ITEM,
3871                                            item,
3872                                            "Not support range");
3873                         return -rte_errno;
3874                 }
3875                 item_type = item->type;
3876                 switch (item_type) {
3877                 case RTE_FLOW_ITEM_TYPE_ETH:
3878                         if (item->spec || item->mask) {
3879                                 rte_flow_error_set(error, EINVAL,
3880                                                    RTE_FLOW_ERROR_TYPE_ITEM,
3881                                                    item,
3882                                                    "Invalid ETH item");
3883                                 return -rte_errno;
3884                         }
3885                         break;
3886                 case RTE_FLOW_ITEM_TYPE_IPV4:
3887                         filter->ip_type = I40E_TUNNEL_IPTYPE_IPV4;
3888                         /* IPv4 is used to describe protocol,
3889                          * spec and mask should be NULL.
3890                          */
3891                         if (item->spec || item->mask) {
3892                                 rte_flow_error_set(error, EINVAL,
3893                                                    RTE_FLOW_ERROR_TYPE_ITEM,
3894                                                    item,
3895                                                    "Invalid IPv4 item");
3896                                 return -rte_errno;
3897                         }
3898                         break;
3899                 case RTE_FLOW_ITEM_TYPE_UDP:
3900                         if (item->spec || item->mask) {
3901                                 rte_flow_error_set(error, EINVAL,
3902                                                    RTE_FLOW_ERROR_TYPE_ITEM,
3903                                                    item,
3904                                                    "Invalid UDP item");
3905                                 return -rte_errno;
3906                         }
3907                         break;
3908                 case RTE_FLOW_ITEM_TYPE_GTPC:
3909                 case RTE_FLOW_ITEM_TYPE_GTPU:
3910                         gtp_spec = item->spec;
3911                         gtp_mask = item->mask;
3912
3913                         if (!gtp_spec || !gtp_mask) {
3914                                 rte_flow_error_set(error, EINVAL,
3915                                                    RTE_FLOW_ERROR_TYPE_ITEM,
3916                                                    item,
3917                                                    "Invalid GTP item");
3918                                 return -rte_errno;
3919                         }
3920
3921                         if (gtp_mask->v_pt_rsv_flags ||
3922                             gtp_mask->msg_type ||
3923                             gtp_mask->msg_len ||
3924                             gtp_mask->teid != UINT32_MAX) {
3925                                 rte_flow_error_set(error, EINVAL,
3926                                                    RTE_FLOW_ERROR_TYPE_ITEM,
3927                                                    item,
3928                                                    "Invalid GTP mask");
3929                                 return -rte_errno;
3930                         }
3931
3932                         if (item_type == RTE_FLOW_ITEM_TYPE_GTPC)
3933                                 filter->tunnel_type = I40E_TUNNEL_TYPE_GTPC;
3934                         else if (item_type == RTE_FLOW_ITEM_TYPE_GTPU)
3935                                 filter->tunnel_type = I40E_TUNNEL_TYPE_GTPU;
3936
3937                         filter->tenant_id = rte_be_to_cpu_32(gtp_spec->teid);
3938
3939                         break;
3940                 default:
3941                         break;
3942                 }
3943         }
3944
3945         return 0;
3946 }
3947
3948 static int
3949 i40e_flow_parse_gtp_filter(struct rte_eth_dev *dev,
3950                            const struct rte_flow_attr *attr,
3951                            const struct rte_flow_item pattern[],
3952                            const struct rte_flow_action actions[],
3953                            struct rte_flow_error *error,
3954                            union i40e_filter_t *filter)
3955 {
3956         struct i40e_tunnel_filter_conf *tunnel_filter =
3957                 &filter->consistent_tunnel_filter;
3958         int ret;
3959
3960         ret = i40e_flow_parse_gtp_pattern(dev, pattern,
3961                                           error, tunnel_filter);
3962         if (ret)
3963                 return ret;
3964
3965         ret = i40e_flow_parse_tunnel_action(dev, actions, error, tunnel_filter);
3966         if (ret)
3967                 return ret;
3968
3969         ret = i40e_flow_parse_attr(attr, error);
3970         if (ret)
3971                 return ret;
3972
3973         cons_filter_type = RTE_ETH_FILTER_TUNNEL;
3974
3975         return ret;
3976 }
3977
3978 /* 1. Last in item should be NULL as range is not supported.
3979  * 2. Supported filter types: QINQ.
3980  * 3. Mask of fields which need to be matched should be
3981  *    filled with 1.
3982  * 4. Mask of fields which needn't to be matched should be
3983  *    filled with 0.
3984  */
3985 static int
3986 i40e_flow_parse_qinq_pattern(__rte_unused struct rte_eth_dev *dev,
3987                               const struct rte_flow_item *pattern,
3988                               struct rte_flow_error *error,
3989                               struct i40e_tunnel_filter_conf *filter)
3990 {
3991         const struct rte_flow_item *item = pattern;
3992         const struct rte_flow_item_vlan *vlan_spec = NULL;
3993         const struct rte_flow_item_vlan *vlan_mask = NULL;
3994         const struct rte_flow_item_vlan *i_vlan_spec = NULL;
3995         const struct rte_flow_item_vlan *i_vlan_mask = NULL;
3996         const struct rte_flow_item_vlan *o_vlan_spec = NULL;
3997         const struct rte_flow_item_vlan *o_vlan_mask = NULL;
3998
3999         enum rte_flow_item_type item_type;
4000         bool vlan_flag = 0;
4001
4002         for (; item->type != RTE_FLOW_ITEM_TYPE_END; item++) {
4003                 if (item->last) {
4004                         rte_flow_error_set(error, EINVAL,
4005                                            RTE_FLOW_ERROR_TYPE_ITEM,
4006                                            item,
4007                                            "Not support range");
4008                         return -rte_errno;
4009                 }
4010                 item_type = item->type;
4011                 switch (item_type) {
4012                 case RTE_FLOW_ITEM_TYPE_ETH:
4013                         if (item->spec || item->mask) {
4014                                 rte_flow_error_set(error, EINVAL,
4015                                                    RTE_FLOW_ERROR_TYPE_ITEM,
4016                                                    item,
4017                                                    "Invalid ETH item");
4018                                 return -rte_errno;
4019                         }
4020                         break;
4021                 case RTE_FLOW_ITEM_TYPE_VLAN:
4022                         vlan_spec = item->spec;
4023                         vlan_mask = item->mask;
4024
4025                         if (!(vlan_spec && vlan_mask)) {
4026                                 rte_flow_error_set(error, EINVAL,
4027                                            RTE_FLOW_ERROR_TYPE_ITEM,
4028                                            item,
4029                                            "Invalid vlan item");
4030                                 return -rte_errno;
4031                         }
4032
4033                         if (!vlan_flag) {
4034                                 o_vlan_spec = vlan_spec;
4035                                 o_vlan_mask = vlan_mask;
4036                                 vlan_flag = 1;
4037                         } else {
4038                                 i_vlan_spec = vlan_spec;
4039                                 i_vlan_mask = vlan_mask;
4040                                 vlan_flag = 0;
4041                         }
4042                         break;
4043
4044                 default:
4045                         break;
4046                 }
4047         }
4048
4049         /* Get filter specification */
4050         if ((o_vlan_mask != NULL) && (o_vlan_mask->tci ==
4051                         rte_cpu_to_be_16(I40E_TCI_MASK)) &&
4052                         (i_vlan_mask != NULL) &&
4053                         (i_vlan_mask->tci == rte_cpu_to_be_16(I40E_TCI_MASK))) {
4054                 filter->outer_vlan = rte_be_to_cpu_16(o_vlan_spec->tci)
4055                         & I40E_TCI_MASK;
4056                 filter->inner_vlan = rte_be_to_cpu_16(i_vlan_spec->tci)
4057                         & I40E_TCI_MASK;
4058         } else {
4059                         rte_flow_error_set(error, EINVAL,
4060                                            RTE_FLOW_ERROR_TYPE_ITEM,
4061                                            NULL,
4062                                            "Invalid filter type");
4063                         return -rte_errno;
4064         }
4065
4066         filter->tunnel_type = I40E_TUNNEL_TYPE_QINQ;
4067         return 0;
4068 }
4069
4070 static int
4071 i40e_flow_parse_qinq_filter(struct rte_eth_dev *dev,
4072                               const struct rte_flow_attr *attr,
4073                               const struct rte_flow_item pattern[],
4074                               const struct rte_flow_action actions[],
4075                               struct rte_flow_error *error,
4076                               union i40e_filter_t *filter)
4077 {
4078         struct i40e_tunnel_filter_conf *tunnel_filter =
4079                 &filter->consistent_tunnel_filter;
4080         int ret;
4081
4082         ret = i40e_flow_parse_qinq_pattern(dev, pattern,
4083                                              error, tunnel_filter);
4084         if (ret)
4085                 return ret;
4086
4087         ret = i40e_flow_parse_tunnel_action(dev, actions, error, tunnel_filter);
4088         if (ret)
4089                 return ret;
4090
4091         ret = i40e_flow_parse_attr(attr, error);
4092         if (ret)
4093                 return ret;
4094
4095         cons_filter_type = RTE_ETH_FILTER_TUNNEL;
4096
4097         return ret;
4098 }
4099
4100 /**
4101  * This function is used to do configuration i40e existing RSS with rte_flow.
4102  * It also enable queue region configuration using flow API for i40e.
4103  * pattern can be used indicate what parameters will be include in flow,
4104  * like user_priority or flowtype for queue region or HASH function for RSS.
4105  * Action is used to transmit parameter like queue index and HASH
4106  * function for RSS, or flowtype for queue region configuration.
4107  * For example:
4108  * pattern:
4109  * Case 1: only ETH, indicate  flowtype for queue region will be parsed.
4110  * Case 2: only VLAN, indicate user_priority for queue region will be parsed.
4111  * Case 3: none, indicate RSS related will be parsed in action.
4112  * Any pattern other the ETH or VLAN will be treated as invalid except END.
4113  * So, pattern choice is depened on the purpose of configuration of
4114  * that flow.
4115  * action:
4116  * action RSS will be uaed to transmit valid parameter with
4117  * struct rte_flow_action_rss for all the 3 case.
4118  */
4119 static int
4120 i40e_flow_parse_rss_pattern(__rte_unused struct rte_eth_dev *dev,
4121                              const struct rte_flow_item *pattern,
4122                              struct rte_flow_error *error,
4123                              uint8_t *action_flag,
4124                              struct i40e_queue_regions *info)
4125 {
4126         const struct rte_flow_item_vlan *vlan_spec, *vlan_mask;
4127         const struct rte_flow_item *item = pattern;
4128         enum rte_flow_item_type item_type;
4129
4130         if (item->type == RTE_FLOW_ITEM_TYPE_END)
4131                 return 0;
4132
4133         for (; item->type != RTE_FLOW_ITEM_TYPE_END; item++) {
4134                 if (item->last) {
4135                         rte_flow_error_set(error, EINVAL,
4136                                            RTE_FLOW_ERROR_TYPE_ITEM,
4137                                            item,
4138                                            "Not support range");
4139                         return -rte_errno;
4140                 }
4141                 item_type = item->type;
4142                 switch (item_type) {
4143                 case RTE_FLOW_ITEM_TYPE_ETH:
4144                         *action_flag = 1;
4145                         break;
4146                 case RTE_FLOW_ITEM_TYPE_VLAN:
4147                         vlan_spec = item->spec;
4148                         vlan_mask = item->mask;
4149                         if (vlan_spec && vlan_mask) {
4150                                 if (vlan_mask->tci ==
4151                                         rte_cpu_to_be_16(I40E_TCI_MASK)) {
4152                                         info->region[0].user_priority[0] =
4153                                                 (vlan_spec->tci >> 13) & 0x7;
4154                                         info->region[0].user_priority_num = 1;
4155                                         info->queue_region_number = 1;
4156                                         *action_flag = 0;
4157                                 }
4158                         }
4159                         break;
4160                 default:
4161                         rte_flow_error_set(error, EINVAL,
4162                                         RTE_FLOW_ERROR_TYPE_ITEM,
4163                                         item,
4164                                         "Not support range");
4165                         return -rte_errno;
4166                 }
4167         }
4168
4169         return 0;
4170 }
4171
4172 static int
4173 i40e_flow_parse_rss_action(struct rte_eth_dev *dev,
4174                             const struct rte_flow_action *actions,
4175                             struct rte_flow_error *error,
4176                             uint8_t action_flag,
4177                             struct i40e_queue_regions *conf_info,
4178                             union i40e_filter_t *filter)
4179 {
4180         const struct rte_flow_action *act;
4181         const struct rte_flow_action_rss *rss;
4182         struct i40e_pf *pf = I40E_DEV_PRIVATE_TO_PF(dev->data->dev_private);
4183         struct i40e_queue_regions *info = &pf->queue_region;
4184         struct i40e_rte_flow_rss_conf *rss_config =
4185                         &filter->rss_conf;
4186         struct i40e_rte_flow_rss_conf *rss_info = &pf->rss_info;
4187         uint16_t i, j, n, tmp;
4188         uint32_t index = 0;
4189         uint64_t hf_bit = 1;
4190
4191         NEXT_ITEM_OF_ACTION(act, actions, index);
4192         rss = act->conf;
4193
4194         /**
4195          * rss only supports forwarding,
4196          * check if the first not void action is RSS.
4197          */
4198         if (act->type != RTE_FLOW_ACTION_TYPE_RSS) {
4199                 memset(rss_config, 0, sizeof(struct i40e_rte_flow_rss_conf));
4200                 rte_flow_error_set(error, EINVAL,
4201                         RTE_FLOW_ERROR_TYPE_ACTION,
4202                         act, "Not supported action.");
4203                 return -rte_errno;
4204         }
4205
4206         if (action_flag) {
4207                 for (n = 0; n < 64; n++) {
4208                         if (rss->rss_conf->rss_hf & (hf_bit << n)) {
4209                                 conf_info->region[0].hw_flowtype[0] = n;
4210                                 conf_info->region[0].flowtype_num = 1;
4211                                 conf_info->queue_region_number = 1;
4212                                 break;
4213                         }
4214                 }
4215         }
4216
4217         for (n = 0; n < conf_info->queue_region_number; n++) {
4218                 if (conf_info->region[n].user_priority_num ||
4219                                 conf_info->region[n].flowtype_num) {
4220                         if (!((rte_is_power_of_2(rss->num)) &&
4221                                         rss->num <= 64)) {
4222                                 PMD_DRV_LOG(ERR, "The region sizes should be any of the following values: 1, 2, 4, 8, 16, 32, 64 as long as the "
4223                                 "total number of queues do not exceed the VSI allocation");
4224                                 return -rte_errno;
4225                         }
4226
4227                         if (conf_info->region[n].user_priority[n] >=
4228                                         I40E_MAX_USER_PRIORITY) {
4229                                 PMD_DRV_LOG(ERR, "the user priority max index is 7");
4230                                 return -rte_errno;
4231                         }
4232
4233                         if (conf_info->region[n].hw_flowtype[n] >=
4234                                         I40E_FILTER_PCTYPE_MAX) {
4235                                 PMD_DRV_LOG(ERR, "the hw_flowtype or PCTYPE max index is 63");
4236                                 return -rte_errno;
4237                         }
4238
4239                         if (rss_info->num < rss->num ||
4240                                 rss_info->queue[0] < rss->queue[0] ||
4241                                 (rss->queue[0] + rss->num >
4242                                         rss_info->num + rss_info->queue[0])) {
4243                                 rte_flow_error_set(error, EINVAL,
4244                                         RTE_FLOW_ERROR_TYPE_ACTION,
4245                                         act,
4246                                         "no valid queues");
4247                                 return -rte_errno;
4248                         }
4249
4250                         for (i = 0; i < info->queue_region_number; i++) {
4251                                 if (info->region[i].queue_num == rss->num &&
4252                                         info->region[i].queue_start_index ==
4253                                                 rss->queue[0])
4254                                         break;
4255                         }
4256
4257                         if (i == info->queue_region_number) {
4258                                 if (i > I40E_REGION_MAX_INDEX) {
4259                                         PMD_DRV_LOG(ERR, "the queue region max index is 7");
4260                                         return -rte_errno;
4261                                 }
4262
4263                                 info->region[i].queue_num =
4264                                         rss->num;
4265                                 info->region[i].queue_start_index =
4266                                         rss->queue[0];
4267                                 info->region[i].region_id =
4268                                         info->queue_region_number;
4269
4270                                 j = info->region[i].user_priority_num;
4271                                 tmp = conf_info->region[n].user_priority[0];
4272                                 if (conf_info->region[n].user_priority_num) {
4273                                         info->region[i].user_priority[j] = tmp;
4274                                         info->region[i].user_priority_num++;
4275                                 }
4276
4277                                 j = info->region[i].flowtype_num;
4278                                 tmp = conf_info->region[n].hw_flowtype[0];
4279                                 if (conf_info->region[n].flowtype_num) {
4280                                         info->region[i].hw_flowtype[j] = tmp;
4281                                         info->region[i].flowtype_num++;
4282                                 }
4283                                 info->queue_region_number++;
4284                         } else {
4285                                 j = info->region[i].user_priority_num;
4286                                 tmp = conf_info->region[n].user_priority[0];
4287                                 if (conf_info->region[n].user_priority_num) {
4288                                         info->region[i].user_priority[j] = tmp;
4289                                         info->region[i].user_priority_num++;
4290                                 }
4291
4292                                 j = info->region[i].flowtype_num;
4293                                 tmp = conf_info->region[n].hw_flowtype[0];
4294                                 if (conf_info->region[n].flowtype_num) {
4295                                         info->region[i].hw_flowtype[j] = tmp;
4296                                         info->region[i].flowtype_num++;
4297                                 }
4298                         }
4299                 }
4300
4301                 rss_config->queue_region_conf = TRUE;
4302         }
4303
4304         if (rss_config->queue_region_conf)
4305                 return 0;
4306
4307         if (!rss || !rss->num) {
4308                 rte_flow_error_set(error, EINVAL,
4309                                 RTE_FLOW_ERROR_TYPE_ACTION,
4310                                 act,
4311                                 "no valid queues");
4312                 return -rte_errno;
4313         }
4314
4315         for (n = 0; n < rss->num; n++) {
4316                 if (rss->queue[n] >= dev->data->nb_rx_queues) {
4317                         rte_flow_error_set(error, EINVAL,
4318                                    RTE_FLOW_ERROR_TYPE_ACTION,
4319                                    act,
4320                                    "queue id > max number of queues");
4321                         return -rte_errno;
4322                 }
4323         }
4324         if (rss->rss_conf)
4325                 rss_config->rss_conf = *rss->rss_conf;
4326         else
4327                 rss_config->rss_conf.rss_hf =
4328                         pf->adapter->flow_types_mask;
4329
4330         for (n = 0; n < rss->num; ++n)
4331                 rss_config->queue[n] = rss->queue[n];
4332         rss_config->num = rss->num;
4333         index++;
4334
4335         /* check if the next not void action is END */
4336         NEXT_ITEM_OF_ACTION(act, actions, index);
4337         if (act->type != RTE_FLOW_ACTION_TYPE_END) {
4338                 memset(rss_config, 0, sizeof(struct i40e_rte_flow_rss_conf));
4339                 rte_flow_error_set(error, EINVAL,
4340                         RTE_FLOW_ERROR_TYPE_ACTION,
4341                         act, "Not supported action.");
4342                 return -rte_errno;
4343         }
4344         rss_config->queue_region_conf = FALSE;
4345
4346         return 0;
4347 }
4348
4349 static int
4350 i40e_parse_rss_filter(struct rte_eth_dev *dev,
4351                         const struct rte_flow_attr *attr,
4352                         const struct rte_flow_item pattern[],
4353                         const struct rte_flow_action actions[],
4354                         union i40e_filter_t *filter,
4355                         struct rte_flow_error *error)
4356 {
4357         int ret;
4358         struct i40e_queue_regions info;
4359         uint8_t action_flag = 0;
4360
4361         memset(&info, 0, sizeof(struct i40e_queue_regions));
4362
4363         ret = i40e_flow_parse_rss_pattern(dev, pattern,
4364                                         error, &action_flag, &info);
4365         if (ret)
4366                 return ret;
4367
4368         ret = i40e_flow_parse_rss_action(dev, actions, error,
4369                                         action_flag, &info, filter);
4370         if (ret)
4371                 return ret;
4372
4373         ret = i40e_flow_parse_attr(attr, error);
4374         if (ret)
4375                 return ret;
4376
4377         cons_filter_type = RTE_ETH_FILTER_HASH;
4378
4379         return 0;
4380 }
4381
4382 static int
4383 i40e_config_rss_filter_set(struct rte_eth_dev *dev,
4384                 struct i40e_rte_flow_rss_conf *conf)
4385 {
4386         struct i40e_pf *pf = I40E_DEV_PRIVATE_TO_PF(dev->data->dev_private);
4387         struct i40e_hw *hw = I40E_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4388
4389         if (conf->queue_region_conf) {
4390                 i40e_flush_queue_region_all_conf(dev, hw, pf, 1);
4391                 conf->queue_region_conf = 0;
4392         } else {
4393                 i40e_config_rss_filter(pf, conf, 1);
4394         }
4395         return 0;
4396 }
4397
4398 static int
4399 i40e_config_rss_filter_del(struct rte_eth_dev *dev,
4400                 struct i40e_rte_flow_rss_conf *conf)
4401 {
4402         struct i40e_pf *pf = I40E_DEV_PRIVATE_TO_PF(dev->data->dev_private);
4403         struct i40e_hw *hw = I40E_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4404
4405         i40e_flush_queue_region_all_conf(dev, hw, pf, 0);
4406
4407         i40e_config_rss_filter(pf, conf, 0);
4408         return 0;
4409 }
4410
4411 static int
4412 i40e_flow_validate(struct rte_eth_dev *dev,
4413                    const struct rte_flow_attr *attr,
4414                    const struct rte_flow_item pattern[],
4415                    const struct rte_flow_action actions[],
4416                    struct rte_flow_error *error)
4417 {
4418         struct rte_flow_item *items; /* internal pattern w/o VOID items */
4419         parse_filter_t parse_filter;
4420         uint32_t item_num = 0; /* non-void item number of pattern*/
4421         uint32_t i = 0;
4422         bool flag = false;
4423         int ret = I40E_NOT_SUPPORTED;
4424
4425         if (!pattern) {
4426                 rte_flow_error_set(error, EINVAL, RTE_FLOW_ERROR_TYPE_ITEM_NUM,
4427                                    NULL, "NULL pattern.");
4428                 return -rte_errno;
4429         }
4430
4431         if (!actions) {
4432                 rte_flow_error_set(error, EINVAL,
4433                                    RTE_FLOW_ERROR_TYPE_ACTION_NUM,
4434                                    NULL, "NULL action.");
4435                 return -rte_errno;
4436         }
4437
4438         if (!attr) {
4439                 rte_flow_error_set(error, EINVAL,
4440                                    RTE_FLOW_ERROR_TYPE_ATTR,
4441                                    NULL, "NULL attribute.");
4442                 return -rte_errno;
4443         }
4444
4445         memset(&cons_filter, 0, sizeof(cons_filter));
4446
4447         /* Get the non-void item of action */
4448         while ((actions + i)->type == RTE_FLOW_ACTION_TYPE_VOID)
4449                 i++;
4450
4451         if ((actions + i)->type == RTE_FLOW_ACTION_TYPE_RSS) {
4452                 ret = i40e_parse_rss_filter(dev, attr, pattern,
4453                                         actions, &cons_filter, error);
4454                 return ret;
4455         }
4456
4457         i = 0;
4458         /* Get the non-void item number of pattern */
4459         while ((pattern + i)->type != RTE_FLOW_ITEM_TYPE_END) {
4460                 if ((pattern + i)->type != RTE_FLOW_ITEM_TYPE_VOID)
4461                         item_num++;
4462                 i++;
4463         }
4464         item_num++;
4465
4466         items = rte_zmalloc("i40e_pattern",
4467                             item_num * sizeof(struct rte_flow_item), 0);
4468         if (!items) {
4469                 rte_flow_error_set(error, ENOMEM, RTE_FLOW_ERROR_TYPE_ITEM_NUM,
4470                                    NULL, "No memory for PMD internal items.");
4471                 return -ENOMEM;
4472         }
4473
4474         i40e_pattern_skip_void_item(items, pattern);
4475
4476         i = 0;
4477         do {
4478                 parse_filter = i40e_find_parse_filter_func(items, &i);
4479                 if (!parse_filter && !flag) {
4480                         rte_flow_error_set(error, EINVAL,
4481                                            RTE_FLOW_ERROR_TYPE_ITEM,
4482                                            pattern, "Unsupported pattern");
4483                         rte_free(items);
4484                         return -rte_errno;
4485                 }
4486                 if (parse_filter)
4487                         ret = parse_filter(dev, attr, items, actions,
4488                                            error, &cons_filter);
4489                 flag = true;
4490         } while ((ret < 0) && (i < RTE_DIM(i40e_supported_patterns)));
4491
4492         rte_free(items);
4493
4494         return ret;
4495 }
4496
4497 static struct rte_flow *
4498 i40e_flow_create(struct rte_eth_dev *dev,
4499                  const struct rte_flow_attr *attr,
4500                  const struct rte_flow_item pattern[],
4501                  const struct rte_flow_action actions[],
4502                  struct rte_flow_error *error)
4503 {
4504         struct i40e_pf *pf = I40E_DEV_PRIVATE_TO_PF(dev->data->dev_private);
4505         struct rte_flow *flow;
4506         int ret;
4507
4508         flow = rte_zmalloc("i40e_flow", sizeof(struct rte_flow), 0);
4509         if (!flow) {
4510                 rte_flow_error_set(error, ENOMEM,
4511                                    RTE_FLOW_ERROR_TYPE_HANDLE, NULL,
4512                                    "Failed to allocate memory");
4513                 return flow;
4514         }
4515
4516         ret = i40e_flow_validate(dev, attr, pattern, actions, error);
4517         if (ret < 0)
4518                 return NULL;
4519
4520         switch (cons_filter_type) {
4521         case RTE_ETH_FILTER_ETHERTYPE:
4522                 ret = i40e_ethertype_filter_set(pf,
4523                                         &cons_filter.ethertype_filter, 1);
4524                 if (ret)
4525                         goto free_flow;
4526                 flow->rule = TAILQ_LAST(&pf->ethertype.ethertype_list,
4527                                         i40e_ethertype_filter_list);
4528                 break;
4529         case RTE_ETH_FILTER_FDIR:
4530                 ret = i40e_flow_add_del_fdir_filter(dev,
4531                                        &cons_filter.fdir_filter, 1);
4532                 if (ret)
4533                         goto free_flow;
4534                 flow->rule = TAILQ_LAST(&pf->fdir.fdir_list,
4535                                         i40e_fdir_filter_list);
4536                 break;
4537         case RTE_ETH_FILTER_TUNNEL:
4538                 ret = i40e_dev_consistent_tunnel_filter_set(pf,
4539                             &cons_filter.consistent_tunnel_filter, 1);
4540                 if (ret)
4541                         goto free_flow;
4542                 flow->rule = TAILQ_LAST(&pf->tunnel.tunnel_list,
4543                                         i40e_tunnel_filter_list);
4544                 break;
4545         case RTE_ETH_FILTER_HASH:
4546                 ret = i40e_config_rss_filter_set(dev,
4547                             &cons_filter.rss_conf);
4548                 flow->rule = &pf->rss_info;
4549                 break;
4550         default:
4551                 goto free_flow;
4552         }
4553
4554         flow->filter_type = cons_filter_type;
4555         TAILQ_INSERT_TAIL(&pf->flow_list, flow, node);
4556         return flow;
4557
4558 free_flow:
4559         rte_flow_error_set(error, -ret,
4560                            RTE_FLOW_ERROR_TYPE_HANDLE, NULL,
4561                            "Failed to create flow.");
4562         rte_free(flow);
4563         return NULL;
4564 }
4565
4566 static int
4567 i40e_flow_destroy(struct rte_eth_dev *dev,
4568                   struct rte_flow *flow,
4569                   struct rte_flow_error *error)
4570 {
4571         struct i40e_pf *pf = I40E_DEV_PRIVATE_TO_PF(dev->data->dev_private);
4572         enum rte_filter_type filter_type = flow->filter_type;
4573         int ret = 0;
4574
4575         switch (filter_type) {
4576         case RTE_ETH_FILTER_ETHERTYPE:
4577                 ret = i40e_flow_destroy_ethertype_filter(pf,
4578                          (struct i40e_ethertype_filter *)flow->rule);
4579                 break;
4580         case RTE_ETH_FILTER_TUNNEL:
4581                 ret = i40e_flow_destroy_tunnel_filter(pf,
4582                               (struct i40e_tunnel_filter *)flow->rule);
4583                 break;
4584         case RTE_ETH_FILTER_FDIR:
4585                 ret = i40e_flow_add_del_fdir_filter(dev,
4586                        &((struct i40e_fdir_filter *)flow->rule)->fdir, 0);
4587                 break;
4588         case RTE_ETH_FILTER_HASH:
4589                 ret = i40e_config_rss_filter_del(dev,
4590                            (struct i40e_rte_flow_rss_conf *)flow->rule);
4591                 break;
4592         default:
4593                 PMD_DRV_LOG(WARNING, "Filter type (%d) not supported",
4594                             filter_type);
4595                 ret = -EINVAL;
4596                 break;
4597         }
4598
4599         if (!ret) {
4600                 TAILQ_REMOVE(&pf->flow_list, flow, node);
4601                 rte_free(flow);
4602         } else
4603                 rte_flow_error_set(error, -ret,
4604                                    RTE_FLOW_ERROR_TYPE_HANDLE, NULL,
4605                                    "Failed to destroy flow.");
4606
4607         return ret;
4608 }
4609
4610 static int
4611 i40e_flow_destroy_ethertype_filter(struct i40e_pf *pf,
4612                                    struct i40e_ethertype_filter *filter)
4613 {
4614         struct i40e_hw *hw = I40E_PF_TO_HW(pf);
4615         struct i40e_ethertype_rule *ethertype_rule = &pf->ethertype;
4616         struct i40e_ethertype_filter *node;
4617         struct i40e_control_filter_stats stats;
4618         uint16_t flags = 0;
4619         int ret = 0;
4620
4621         if (!(filter->flags & RTE_ETHTYPE_FLAGS_MAC))
4622                 flags |= I40E_AQC_ADD_CONTROL_PACKET_FLAGS_IGNORE_MAC;
4623         if (filter->flags & RTE_ETHTYPE_FLAGS_DROP)
4624                 flags |= I40E_AQC_ADD_CONTROL_PACKET_FLAGS_DROP;
4625         flags |= I40E_AQC_ADD_CONTROL_PACKET_FLAGS_TO_QUEUE;
4626
4627         memset(&stats, 0, sizeof(stats));
4628         ret = i40e_aq_add_rem_control_packet_filter(hw,
4629                                     filter->input.mac_addr.addr_bytes,
4630                                     filter->input.ether_type,
4631                                     flags, pf->main_vsi->seid,
4632                                     filter->queue, 0, &stats, NULL);
4633         if (ret < 0)
4634                 return ret;
4635
4636         node = i40e_sw_ethertype_filter_lookup(ethertype_rule, &filter->input);
4637         if (!node)
4638                 return -EINVAL;
4639
4640         ret = i40e_sw_ethertype_filter_del(pf, &node->input);
4641
4642         return ret;
4643 }
4644
4645 static int
4646 i40e_flow_destroy_tunnel_filter(struct i40e_pf *pf,
4647                                 struct i40e_tunnel_filter *filter)
4648 {
4649         struct i40e_hw *hw = I40E_PF_TO_HW(pf);
4650         struct i40e_vsi *vsi;
4651         struct i40e_pf_vf *vf;
4652         struct i40e_aqc_add_rm_cloud_filt_elem_ext cld_filter;
4653         struct i40e_tunnel_rule *tunnel_rule = &pf->tunnel;
4654         struct i40e_tunnel_filter *node;
4655         bool big_buffer = 0;
4656         int ret = 0;
4657
4658         memset(&cld_filter, 0, sizeof(cld_filter));
4659         ether_addr_copy((struct ether_addr *)&filter->input.outer_mac,
4660                         (struct ether_addr *)&cld_filter.element.outer_mac);
4661         ether_addr_copy((struct ether_addr *)&filter->input.inner_mac,
4662                         (struct ether_addr *)&cld_filter.element.inner_mac);
4663         cld_filter.element.inner_vlan = filter->input.inner_vlan;
4664         cld_filter.element.flags = filter->input.flags;
4665         cld_filter.element.tenant_id = filter->input.tenant_id;
4666         cld_filter.element.queue_number = filter->queue;
4667         rte_memcpy(cld_filter.general_fields,
4668                    filter->input.general_fields,
4669                    sizeof(cld_filter.general_fields));
4670
4671         if (!filter->is_to_vf)
4672                 vsi = pf->main_vsi;
4673         else {
4674                 vf = &pf->vfs[filter->vf_id];
4675                 vsi = vf->vsi;
4676         }
4677
4678         if (((filter->input.flags & I40E_AQC_ADD_CLOUD_FILTER_0X11) ==
4679             I40E_AQC_ADD_CLOUD_FILTER_0X11) ||
4680             ((filter->input.flags & I40E_AQC_ADD_CLOUD_FILTER_0X12) ==
4681             I40E_AQC_ADD_CLOUD_FILTER_0X12) ||
4682             ((filter->input.flags & I40E_AQC_ADD_CLOUD_FILTER_0X10) ==
4683             I40E_AQC_ADD_CLOUD_FILTER_0X10))
4684                 big_buffer = 1;
4685
4686         if (big_buffer)
4687                 ret = i40e_aq_remove_cloud_filters_big_buffer(hw, vsi->seid,
4688                                                               &cld_filter, 1);
4689         else
4690                 ret = i40e_aq_remove_cloud_filters(hw, vsi->seid,
4691                                                    &cld_filter.element, 1);
4692         if (ret < 0)
4693                 return -ENOTSUP;
4694
4695         node = i40e_sw_tunnel_filter_lookup(tunnel_rule, &filter->input);
4696         if (!node)
4697                 return -EINVAL;
4698
4699         ret = i40e_sw_tunnel_filter_del(pf, &node->input);
4700
4701         return ret;
4702 }
4703
4704 static int
4705 i40e_flow_flush(struct rte_eth_dev *dev, struct rte_flow_error *error)
4706 {
4707         struct i40e_pf *pf = I40E_DEV_PRIVATE_TO_PF(dev->data->dev_private);
4708         int ret;
4709
4710         ret = i40e_flow_flush_fdir_filter(pf);
4711         if (ret) {
4712                 rte_flow_error_set(error, -ret,
4713                                    RTE_FLOW_ERROR_TYPE_HANDLE, NULL,
4714                                    "Failed to flush FDIR flows.");
4715                 return -rte_errno;
4716         }
4717
4718         ret = i40e_flow_flush_ethertype_filter(pf);
4719         if (ret) {
4720                 rte_flow_error_set(error, -ret,
4721                                    RTE_FLOW_ERROR_TYPE_HANDLE, NULL,
4722                                    "Failed to ethertype flush flows.");
4723                 return -rte_errno;
4724         }
4725
4726         ret = i40e_flow_flush_tunnel_filter(pf);
4727         if (ret) {
4728                 rte_flow_error_set(error, -ret,
4729                                    RTE_FLOW_ERROR_TYPE_HANDLE, NULL,
4730                                    "Failed to flush tunnel flows.");
4731                 return -rte_errno;
4732         }
4733
4734         ret = i40e_flow_flush_rss_filter(dev);
4735         if (ret) {
4736                 rte_flow_error_set(error, -ret,
4737                                    RTE_FLOW_ERROR_TYPE_HANDLE, NULL,
4738                                    "Failed to flush rss flows.");
4739                 return -rte_errno;
4740         }
4741
4742         return ret;
4743 }
4744
4745 static int
4746 i40e_flow_flush_fdir_filter(struct i40e_pf *pf)
4747 {
4748         struct rte_eth_dev *dev = pf->adapter->eth_dev;
4749         struct i40e_fdir_info *fdir_info = &pf->fdir;
4750         struct i40e_fdir_filter *fdir_filter;
4751         enum i40e_filter_pctype pctype;
4752         struct rte_flow *flow;
4753         void *temp;
4754         int ret;
4755
4756         ret = i40e_fdir_flush(dev);
4757         if (!ret) {
4758                 /* Delete FDIR filters in FDIR list. */
4759                 while ((fdir_filter = TAILQ_FIRST(&fdir_info->fdir_list))) {
4760                         ret = i40e_sw_fdir_filter_del(pf,
4761                                                       &fdir_filter->fdir.input);
4762                         if (ret < 0)
4763                                 return ret;
4764                 }
4765
4766                 /* Delete FDIR flows in flow list. */
4767                 TAILQ_FOREACH_SAFE(flow, &pf->flow_list, node, temp) {
4768                         if (flow->filter_type == RTE_ETH_FILTER_FDIR) {
4769                                 TAILQ_REMOVE(&pf->flow_list, flow, node);
4770                                 rte_free(flow);
4771                         }
4772                 }
4773
4774                 for (pctype = I40E_FILTER_PCTYPE_NONF_IPV4_UDP;
4775                      pctype <= I40E_FILTER_PCTYPE_L2_PAYLOAD; pctype++)
4776                         pf->fdir.inset_flag[pctype] = 0;
4777         }
4778
4779         return ret;
4780 }
4781
4782 /* Flush all ethertype filters */
4783 static int
4784 i40e_flow_flush_ethertype_filter(struct i40e_pf *pf)
4785 {
4786         struct i40e_ethertype_filter_list
4787                 *ethertype_list = &pf->ethertype.ethertype_list;
4788         struct i40e_ethertype_filter *filter;
4789         struct rte_flow *flow;
4790         void *temp;
4791         int ret = 0;
4792
4793         while ((filter = TAILQ_FIRST(ethertype_list))) {
4794                 ret = i40e_flow_destroy_ethertype_filter(pf, filter);
4795                 if (ret)
4796                         return ret;
4797         }
4798
4799         /* Delete ethertype flows in flow list. */
4800         TAILQ_FOREACH_SAFE(flow, &pf->flow_list, node, temp) {
4801                 if (flow->filter_type == RTE_ETH_FILTER_ETHERTYPE) {
4802                         TAILQ_REMOVE(&pf->flow_list, flow, node);
4803                         rte_free(flow);
4804                 }
4805         }
4806
4807         return ret;
4808 }
4809
4810 /* Flush all tunnel filters */
4811 static int
4812 i40e_flow_flush_tunnel_filter(struct i40e_pf *pf)
4813 {
4814         struct i40e_tunnel_filter_list
4815                 *tunnel_list = &pf->tunnel.tunnel_list;
4816         struct i40e_tunnel_filter *filter;
4817         struct rte_flow *flow;
4818         void *temp;
4819         int ret = 0;
4820
4821         while ((filter = TAILQ_FIRST(tunnel_list))) {
4822                 ret = i40e_flow_destroy_tunnel_filter(pf, filter);
4823                 if (ret)
4824                         return ret;
4825         }
4826
4827         /* Delete tunnel flows in flow list. */
4828         TAILQ_FOREACH_SAFE(flow, &pf->flow_list, node, temp) {
4829                 if (flow->filter_type == RTE_ETH_FILTER_TUNNEL) {
4830                         TAILQ_REMOVE(&pf->flow_list, flow, node);
4831                         rte_free(flow);
4832                 }
4833         }
4834
4835         return ret;
4836 }
4837
4838 /* remove the rss filter */
4839 static int
4840 i40e_flow_flush_rss_filter(struct rte_eth_dev *dev)
4841 {
4842         struct i40e_pf *pf = I40E_DEV_PRIVATE_TO_PF(dev->data->dev_private);
4843         struct i40e_rte_flow_rss_conf *rss_info = &pf->rss_info;
4844         struct i40e_hw *hw = I40E_DEV_PRIVATE_TO_HW(dev->data->dev_private);
4845         int32_t ret = -EINVAL;
4846
4847         ret = i40e_flush_queue_region_all_conf(dev, hw, pf, 0);
4848
4849         if (rss_info->num)
4850                 ret = i40e_config_rss_filter(pf, rss_info, FALSE);
4851         return ret;
4852 }