app/testpmd: fix flow tunnel commands
[dpdk.git] / app / test-pmd / cmdline_flow.c
index cf40744..585cab9 100644 (file)
 #include <rte_flow.h>
 #include <rte_hexdump.h>
 #include <rte_vxlan.h>
+#include <rte_gre.h>
+#include <rte_mpls.h>
+#include <rte_gtp.h>
+#include <rte_geneve.h>
 
 #include "testpmd.h"
 
@@ -74,6 +78,14 @@ enum index {
        LIST,
        AGED,
        ISOLATE,
+       TUNNEL,
+
+       /* Tunnel arguments. */
+       TUNNEL_CREATE,
+       TUNNEL_CREATE_TYPE,
+       TUNNEL_LIST,
+       TUNNEL_DESTROY,
+       TUNNEL_DESTROY_ID,
 
        /* Destroy arguments. */
        DESTROY_RULE,
@@ -93,6 +105,8 @@ enum index {
        INGRESS,
        EGRESS,
        TRANSFER,
+       TUNNEL_SET,
+       TUNNEL_MATCH,
 
        /* Shared action arguments */
        SHARED_ACTION_CREATE,
@@ -104,6 +118,7 @@ enum index {
        SHARED_ACTION_CREATE_ID,
        SHARED_ACTION_INGRESS,
        SHARED_ACTION_EGRESS,
+       SHARED_ACTION_TRANSFER,
        SHARED_ACTION_SPEC,
 
        /* Shared action destroy arguments */
@@ -141,14 +156,17 @@ enum index {
        ITEM_ETH_DST,
        ITEM_ETH_SRC,
        ITEM_ETH_TYPE,
+       ITEM_ETH_HAS_VLAN,
        ITEM_VLAN,
        ITEM_VLAN_TCI,
        ITEM_VLAN_PCP,
        ITEM_VLAN_DEI,
        ITEM_VLAN_VID,
        ITEM_VLAN_INNER_TYPE,
+       ITEM_VLAN_HAS_MORE_VLAN,
        ITEM_IPV4,
        ITEM_IPV4_TOS,
+       ITEM_IPV4_FRAGMENT_OFFSET,
        ITEM_IPV4_TTL,
        ITEM_IPV4_PROTO,
        ITEM_IPV4_SRC,
@@ -160,6 +178,7 @@ enum index {
        ITEM_IPV6_HOP,
        ITEM_IPV6_SRC,
        ITEM_IPV6_DST,
+       ITEM_IPV6_HAS_FRAG_EXT,
        ITEM_ICMP,
        ITEM_ICMP_TYPE,
        ITEM_ICMP_CODE,
@@ -213,6 +232,9 @@ enum index {
        ITEM_ARP_ETH_IPV4_TPA,
        ITEM_IPV6_EXT,
        ITEM_IPV6_EXT_NEXT_HDR,
+       ITEM_IPV6_FRAG_EXT,
+       ITEM_IPV6_FRAG_EXT_NEXT_HDR,
+       ITEM_IPV6_FRAG_EXT_FRAG_DATA,
        ITEM_ICMP6,
        ITEM_ICMP6_TYPE,
        ITEM_ICMP6_CODE,
@@ -706,6 +728,7 @@ struct buffer {
                } sa; /* Shared action query arguments */
                struct {
                        struct rte_flow_attr attr;
+                       struct tunnel_ops tunnel_ops;
                        struct rte_flow_item *pattern;
                        struct rte_flow_action *actions;
                        uint32_t pattern_n;
@@ -764,6 +787,7 @@ static const enum index next_sa_create_attr[] = {
        SHARED_ACTION_CREATE_ID,
        SHARED_ACTION_INGRESS,
        SHARED_ACTION_EGRESS,
+       SHARED_ACTION_TRANSFER,
        SHARED_ACTION_SPEC,
        ZERO,
 };
@@ -782,6 +806,8 @@ static const enum index next_vc_attr[] = {
        INGRESS,
        EGRESS,
        TRANSFER,
+       TUNNEL_SET,
+       TUNNEL_MATCH,
        PATTERN,
        ZERO,
 };
@@ -857,6 +883,7 @@ static const enum index next_item[] = {
        ITEM_VXLAN_GPE,
        ITEM_ARP_ETH_IPV4,
        ITEM_IPV6_EXT,
+       ITEM_IPV6_FRAG_EXT,
        ITEM_ICMP6,
        ITEM_ICMP6_ND_NS,
        ITEM_ICMP6_ND_NA,
@@ -930,6 +957,7 @@ static const enum index item_eth[] = {
        ITEM_ETH_DST,
        ITEM_ETH_SRC,
        ITEM_ETH_TYPE,
+       ITEM_ETH_HAS_VLAN,
        ITEM_NEXT,
        ZERO,
 };
@@ -940,12 +968,14 @@ static const enum index item_vlan[] = {
        ITEM_VLAN_DEI,
        ITEM_VLAN_VID,
        ITEM_VLAN_INNER_TYPE,
+       ITEM_VLAN_HAS_MORE_VLAN,
        ITEM_NEXT,
        ZERO,
 };
 
 static const enum index item_ipv4[] = {
        ITEM_IPV4_TOS,
+       ITEM_IPV4_FRAGMENT_OFFSET,
        ITEM_IPV4_TTL,
        ITEM_IPV4_PROTO,
        ITEM_IPV4_SRC,
@@ -961,6 +991,7 @@ static const enum index item_ipv6[] = {
        ITEM_IPV6_HOP,
        ITEM_IPV6_SRC,
        ITEM_IPV6_DST,
+       ITEM_IPV6_HAS_FRAG_EXT,
        ITEM_NEXT,
        ZERO,
 };
@@ -1076,6 +1107,13 @@ static const enum index item_ipv6_ext[] = {
        ZERO,
 };
 
+static const enum index item_ipv6_frag_ext[] = {
+       ITEM_IPV6_FRAG_EXT_NEXT_HDR,
+       ITEM_IPV6_FRAG_EXT_FRAG_DATA,
+       ITEM_NEXT,
+       ZERO,
+};
+
 static const enum index item_icmp6[] = {
        ITEM_ICMP6_TYPE,
        ITEM_ICMP6_CODE,
@@ -1624,6 +1662,9 @@ static int parse_aged(struct context *, const struct token *,
 static int parse_isolate(struct context *, const struct token *,
                         const char *, unsigned int,
                         void *, unsigned int);
+static int parse_tunnel(struct context *, const struct token *,
+                       const char *, unsigned int,
+                       void *, unsigned int);
 static int parse_int(struct context *, const struct token *,
                     const char *, unsigned int,
                     void *, unsigned int);
@@ -1825,7 +1866,8 @@ static const struct token token_list[] = {
                              LIST,
                              AGED,
                              QUERY,
-                             ISOLATE)),
+                             ISOLATE,
+                             TUNNEL)),
                .call = parse_init,
        },
        /* Top-level command. */
@@ -1936,6 +1978,51 @@ static const struct token token_list[] = {
                             ARGS_ENTRY(struct buffer, port)),
                .call = parse_isolate,
        },
+       [TUNNEL] = {
+               .name = "tunnel",
+               .help = "new tunnel API",
+               .next = NEXT(NEXT_ENTRY
+                            (TUNNEL_CREATE, TUNNEL_LIST, TUNNEL_DESTROY)),
+               .call = parse_tunnel,
+       },
+       /* Tunnel arguments. */
+       [TUNNEL_CREATE] = {
+               .name = "create",
+               .help = "create new tunnel object",
+               .next = NEXT(NEXT_ENTRY(TUNNEL_CREATE_TYPE),
+                            NEXT_ENTRY(PORT_ID)),
+               .args = ARGS(ARGS_ENTRY(struct buffer, port)),
+               .call = parse_tunnel,
+       },
+       [TUNNEL_CREATE_TYPE] = {
+               .name = "type",
+               .help = "create new tunnel",
+               .next = NEXT(NEXT_ENTRY(FILE_PATH)),
+               .args = ARGS(ARGS_ENTRY(struct tunnel_ops, type)),
+               .call = parse_tunnel,
+       },
+       [TUNNEL_DESTROY] = {
+               .name = "destroy",
+               .help = "destroy tunel",
+               .next = NEXT(NEXT_ENTRY(TUNNEL_DESTROY_ID),
+                            NEXT_ENTRY(PORT_ID)),
+               .args = ARGS(ARGS_ENTRY(struct buffer, port)),
+               .call = parse_tunnel,
+       },
+       [TUNNEL_DESTROY_ID] = {
+               .name = "id",
+               .help = "tunnel identifier to testroy",
+               .next = NEXT(NEXT_ENTRY(UNSIGNED)),
+               .args = ARGS(ARGS_ENTRY(struct tunnel_ops, id)),
+               .call = parse_tunnel,
+       },
+       [TUNNEL_LIST] = {
+               .name = "list",
+               .help = "list existing tunnels",
+               .next = NEXT(NEXT_ENTRY(PORT_ID)),
+               .args = ARGS(ARGS_ENTRY(struct buffer, port)),
+               .call = parse_tunnel,
+       },
        /* Destroy arguments. */
        [DESTROY_RULE] = {
                .name = "rule",
@@ -1999,6 +2086,20 @@ static const struct token token_list[] = {
                .next = NEXT(next_vc_attr),
                .call = parse_vc,
        },
+       [TUNNEL_SET] = {
+               .name = "tunnel_set",
+               .help = "tunnel steer rule",
+               .next = NEXT(next_vc_attr, NEXT_ENTRY(UNSIGNED)),
+               .args = ARGS(ARGS_ENTRY(struct tunnel_ops, id)),
+               .call = parse_vc,
+       },
+       [TUNNEL_MATCH] = {
+               .name = "tunnel_match",
+               .help = "tunnel match rule",
+               .next = NEXT(next_vc_attr, NEXT_ENTRY(UNSIGNED)),
+               .args = ARGS(ARGS_ENTRY(struct tunnel_ops, id)),
+               .call = parse_vc,
+       },
        /* Validate/create pattern. */
        [PATTERN] = {
                .name = "pattern",
@@ -2202,6 +2303,13 @@ static const struct token token_list[] = {
                .next = NEXT(item_eth, NEXT_ENTRY(UNSIGNED), item_param),
                .args = ARGS(ARGS_ENTRY_HTON(struct rte_flow_item_eth, type)),
        },
+       [ITEM_ETH_HAS_VLAN] = {
+               .name = "has_vlan",
+               .help = "packet header contains VLAN",
+               .next = NEXT(item_eth, NEXT_ENTRY(UNSIGNED), item_param),
+               .args = ARGS(ARGS_ENTRY_BF(struct rte_flow_item_eth,
+                                          has_vlan, 1)),
+       },
        [ITEM_VLAN] = {
                .name = "vlan",
                .help = "match 802.1Q/ad VLAN tag",
@@ -2243,6 +2351,13 @@ static const struct token token_list[] = {
                .args = ARGS(ARGS_ENTRY_HTON(struct rte_flow_item_vlan,
                                             inner_type)),
        },
+       [ITEM_VLAN_HAS_MORE_VLAN] = {
+               .name = "has_more_vlan",
+               .help = "packet header contains another VLAN",
+               .next = NEXT(item_vlan, NEXT_ENTRY(UNSIGNED), item_param),
+               .args = ARGS(ARGS_ENTRY_BF(struct rte_flow_item_vlan,
+                                          has_more_vlan, 1)),
+       },
        [ITEM_IPV4] = {
                .name = "ipv4",
                .help = "match IPv4 header",
@@ -2257,6 +2372,13 @@ static const struct token token_list[] = {
                .args = ARGS(ARGS_ENTRY_HTON(struct rte_flow_item_ipv4,
                                             hdr.type_of_service)),
        },
+       [ITEM_IPV4_FRAGMENT_OFFSET] = {
+               .name = "fragment_offset",
+               .help = "fragmentation flags and fragment offset",
+               .next = NEXT(item_ipv4, NEXT_ENTRY(UNSIGNED), item_param),
+               .args = ARGS(ARGS_ENTRY_HTON(struct rte_flow_item_ipv4,
+                                            hdr.fragment_offset)),
+       },
        [ITEM_IPV4_TTL] = {
                .name = "ttl",
                .help = "time to live",
@@ -2336,6 +2458,13 @@ static const struct token token_list[] = {
                .args = ARGS(ARGS_ENTRY_HTON(struct rte_flow_item_ipv6,
                                             hdr.dst_addr)),
        },
+       [ITEM_IPV6_HAS_FRAG_EXT] = {
+               .name = "has_frag_ext",
+               .help = "fragment packet attribute",
+               .next = NEXT(item_ipv6, NEXT_ENTRY(UNSIGNED), item_param),
+               .args = ARGS(ARGS_ENTRY_BF(struct rte_flow_item_ipv6,
+                                          has_frag_ext, 1)),
+       },
        [ITEM_ICMP] = {
                .name = "icmp",
                .help = "match ICMP header",
@@ -2720,6 +2849,30 @@ static const struct token token_list[] = {
                .args = ARGS(ARGS_ENTRY_HTON(struct rte_flow_item_ipv6_ext,
                                             next_hdr)),
        },
+       [ITEM_IPV6_FRAG_EXT] = {
+               .name = "ipv6_frag_ext",
+               .help = "match presence of IPv6 fragment extension header",
+               .priv = PRIV_ITEM(IPV6_FRAG_EXT,
+                               sizeof(struct rte_flow_item_ipv6_frag_ext)),
+               .next = NEXT(item_ipv6_frag_ext),
+               .call = parse_vc,
+       },
+       [ITEM_IPV6_FRAG_EXT_NEXT_HDR] = {
+               .name = "next_hdr",
+               .help = "next header",
+               .next = NEXT(item_ipv6_frag_ext, NEXT_ENTRY(UNSIGNED),
+                            item_param),
+               .args = ARGS(ARGS_ENTRY(struct rte_flow_item_ipv6_frag_ext,
+                                       hdr.next_header)),
+       },
+       [ITEM_IPV6_FRAG_EXT_FRAG_DATA] = {
+               .name = "frag_data",
+               .help = "Fragment flags and offset",
+               .next = NEXT(item_ipv6_frag_ext, NEXT_ENTRY(UNSIGNED),
+                            item_param),
+               .args = ARGS(ARGS_ENTRY_HTON(struct rte_flow_item_ipv6_frag_ext,
+                                            hdr.frag_data)),
+       },
        [ITEM_ICMP6] = {
                .name = "icmp6",
                .help = "match any ICMPv6 header",
@@ -3039,7 +3192,9 @@ static const struct token token_list[] = {
        [ITEM_ECPRI_MSG_IQ_DATA_PCID] = {
                .name = "pc_id",
                .help = "Physical Channel ID",
-               .next = NEXT(item_ecpri, NEXT_ENTRY(UNSIGNED), item_param),
+               .next = NEXT(NEXT_ENTRY(ITEM_ECPRI_MSG_IQ_DATA_PCID,
+                               ITEM_ECPRI_COMMON, ITEM_NEXT),
+                               NEXT_ENTRY(UNSIGNED), item_param),
                .args = ARGS(ARGS_ENTRY_HTON(struct rte_flow_item_ecpri,
                                hdr.type0.pc_id)),
        },
@@ -3053,7 +3208,9 @@ static const struct token token_list[] = {
        [ITEM_ECPRI_MSG_RTC_CTRL_RTCID] = {
                .name = "rtc_id",
                .help = "Real-Time Control Data ID",
-               .next = NEXT(item_ecpri, NEXT_ENTRY(UNSIGNED), item_param),
+               .next = NEXT(NEXT_ENTRY(ITEM_ECPRI_MSG_RTC_CTRL_RTCID,
+                               ITEM_ECPRI_COMMON, ITEM_NEXT),
+                               NEXT_ENTRY(UNSIGNED), item_param),
                .args = ARGS(ARGS_ENTRY_HTON(struct rte_flow_item_ecpri,
                                hdr.type2.rtc_id)),
        },
@@ -3067,7 +3224,9 @@ static const struct token token_list[] = {
        [ITEM_ECPRI_MSG_DLY_MSR_MSRID] = {
                .name = "msr_id",
                .help = "Measurement ID",
-               .next = NEXT(item_ecpri, NEXT_ENTRY(UNSIGNED), item_param),
+               .next = NEXT(NEXT_ENTRY(ITEM_ECPRI_MSG_DLY_MSR_MSRID,
+                               ITEM_ECPRI_COMMON, ITEM_NEXT),
+                               NEXT_ENTRY(UNSIGNED), item_param),
                .args = ARGS(ARGS_ENTRY_HTON(struct rte_flow_item_ecpri,
                                hdr.type5.msr_id)),
        },
@@ -4115,6 +4274,12 @@ static const struct token token_list[] = {
                .next = NEXT(next_sa_create_attr),
                .call = parse_sa,
        },
+       [SHARED_ACTION_TRANSFER] = {
+               .name = "transfer",
+               .help = "affect rule to transfer",
+               .next = NEXT(next_sa_create_attr),
+               .call = parse_sa,
+       },
        [SHARED_ACTION_SPEC] = {
                .name = "action",
                .help = "specify action to share",
@@ -4350,6 +4515,9 @@ parse_sa(struct context *ctx, const struct token *token,
        case SHARED_ACTION_INGRESS:
                out->args.vc.attr.ingress = 1;
                return len;
+       case SHARED_ACTION_TRANSFER:
+               out->args.vc.attr.transfer = 1;
+               return len;
        default:
                return -1;
        }
@@ -4424,12 +4592,28 @@ parse_vc(struct context *ctx, const struct token *token,
                return len;
        }
        ctx->objdata = 0;
-       ctx->object = &out->args.vc.attr;
+       switch (ctx->curr) {
+       default:
+               ctx->object = &out->args.vc.attr;
+               break;
+       case TUNNEL_SET:
+       case TUNNEL_MATCH:
+               ctx->object = &out->args.vc.tunnel_ops;
+               break;
+       }
        ctx->objmask = NULL;
        switch (ctx->curr) {
        case GROUP:
        case PRIORITY:
                return len;
+       case TUNNEL_SET:
+               out->args.vc.tunnel_ops.enabled = 1;
+               out->args.vc.tunnel_ops.actions = 1;
+               return len;
+       case TUNNEL_MATCH:
+               out->args.vc.tunnel_ops.enabled = 1;
+               out->args.vc.tunnel_ops.items = 1;
+               return len;
        case INGRESS:
                out->args.vc.attr.ingress = 1;
                return len;
@@ -4669,30 +4853,15 @@ parse_vc_action_rss(struct context *ctx, const struct token *token,
                        .func = RTE_ETH_HASH_FUNCTION_DEFAULT,
                        .level = 0,
                        .types = rss_hf,
-                       .key_len = sizeof(action_rss_data->key),
+                       .key_len = 0,
                        .queue_num = RTE_MIN(nb_rxq, ACTION_RSS_QUEUE_NUM),
-                       .key = action_rss_data->key,
+                       .key = NULL,
                        .queue = action_rss_data->queue,
                },
-               .key = "testpmd's default RSS hash key, "
-                       "override it for better balancing",
                .queue = { 0 },
        };
        for (i = 0; i < action_rss_data->conf.queue_num; ++i)
                action_rss_data->queue[i] = i;
-       if (!port_id_is_invalid(ctx->port, DISABLED_WARN) &&
-           ctx->port != (portid_t)RTE_PORT_ALL) {
-               struct rte_eth_dev_info info;
-               int ret2;
-
-               ret2 = rte_eth_dev_info_get(ctx->port, &info);
-               if (ret2 != 0)
-                       return ret2;
-
-               action_rss_data->conf.key_len =
-                       RTE_MIN(sizeof(action_rss_data->key),
-                               info.hash_key_size);
-       }
        action->conf = &action_rss_data->conf;
        return ret;
 }
@@ -6037,6 +6206,47 @@ parse_isolate(struct context *ctx, const struct token *token,
        return len;
 }
 
+static int
+parse_tunnel(struct context *ctx, const struct token *token,
+            const char *str, unsigned int len,
+            void *buf, unsigned int size)
+{
+       struct buffer *out = buf;
+
+       /* Token name must match. */
+       if (parse_default(ctx, token, str, len, NULL, 0) < 0)
+               return -1;
+       /* Nothing else to do if there is no buffer. */
+       if (!out)
+               return len;
+       if (!out->command) {
+               if (ctx->curr != TUNNEL)
+                       return -1;
+               if (sizeof(*out) > size)
+                       return -1;
+               out->command = ctx->curr;
+               ctx->objdata = 0;
+               ctx->object = out;
+               ctx->objmask = NULL;
+       } else {
+               switch (ctx->curr) {
+               default:
+                       break;
+               case TUNNEL_CREATE:
+               case TUNNEL_DESTROY:
+               case TUNNEL_LIST:
+                       out->command = ctx->curr;
+                       break;
+               case TUNNEL_CREATE_TYPE:
+               case TUNNEL_DESTROY_ID:
+                       ctx->object = &out->args.vc.tunnel_ops;
+                       break;
+               }
+       }
+
+       return len;
+}
+
 /**
  * Parse signed/unsigned integers 8 to 64-bit long.
  *
@@ -7060,6 +7270,7 @@ cmd_flow_parsed(const struct buffer *in)
                                &((const struct rte_flow_shared_action_conf) {
                                        .ingress = in->args.vc.attr.ingress,
                                        .egress = in->args.vc.attr.egress,
+                                       .transfer = in->args.vc.attr.transfer,
                                }),
                                in->args.vc.actions);
                break;
@@ -7077,11 +7288,13 @@ cmd_flow_parsed(const struct buffer *in)
                break;
        case VALIDATE:
                port_flow_validate(in->port, &in->args.vc.attr,
-                                  in->args.vc.pattern, in->args.vc.actions);
+                                  in->args.vc.pattern, in->args.vc.actions,
+                                  &in->args.vc.tunnel_ops);
                break;
        case CREATE:
                port_flow_create(in->port, &in->args.vc.attr,
-                                in->args.vc.pattern, in->args.vc.actions);
+                                in->args.vc.pattern, in->args.vc.actions,
+                                &in->args.vc.tunnel_ops);
                break;
        case DESTROY:
                port_flow_destroy(in->port, in->args.destroy.rule_n,
@@ -7107,6 +7320,15 @@ cmd_flow_parsed(const struct buffer *in)
        case AGED:
                port_flow_aged(in->port, in->args.aged.destroy);
                break;
+       case TUNNEL_CREATE:
+               port_flow_tunnel_create(in->port, &in->args.vc.tunnel_ops);
+               break;
+       case TUNNEL_DESTROY:
+               port_flow_tunnel_destroy(in->port, in->args.vc.tunnel_ops.id);
+               break;
+       case TUNNEL_LIST:
+               port_flow_tunnel_list(in->port);
+               break;
        default:
                break;
        }
@@ -7137,42 +7359,42 @@ cmdline_parse_inst_t cmd_flow = {
 static void
 update_fields(uint8_t *buf, struct rte_flow_item *item, uint16_t next_proto)
 {
-       struct rte_flow_item_ipv4 *ipv4;
-       struct rte_flow_item_eth *eth;
-       struct rte_flow_item_ipv6 *ipv6;
-       struct rte_flow_item_vxlan *vxlan;
-       struct rte_flow_item_vxlan_gpe *gpe;
+       struct rte_ipv4_hdr *ipv4;
+       struct rte_ether_hdr *eth;
+       struct rte_ipv6_hdr *ipv6;
+       struct rte_vxlan_hdr *vxlan;
+       struct rte_vxlan_gpe_hdr *gpe;
        struct rte_flow_item_nvgre *nvgre;
        uint32_t ipv6_vtc_flow;
 
        switch (item->type) {
        case RTE_FLOW_ITEM_TYPE_ETH:
-               eth = (struct rte_flow_item_eth *)buf;
+               eth = (struct rte_ether_hdr *)buf;
                if (next_proto)
-                       eth->type = rte_cpu_to_be_16(next_proto);
+                       eth->ether_type = rte_cpu_to_be_16(next_proto);
                break;
        case RTE_FLOW_ITEM_TYPE_IPV4:
-               ipv4 = (struct rte_flow_item_ipv4 *)buf;
-               ipv4->hdr.version_ihl = 0x45;
-               if (next_proto && ipv4->hdr.next_proto_id == 0)
-                       ipv4->hdr.next_proto_id = (uint8_t)next_proto;
+               ipv4 = (struct rte_ipv4_hdr *)buf;
+               ipv4->version_ihl = 0x45;
+               if (next_proto && ipv4->next_proto_id == 0)
+                       ipv4->next_proto_id = (uint8_t)next_proto;
                break;
        case RTE_FLOW_ITEM_TYPE_IPV6:
-               ipv6 = (struct rte_flow_item_ipv6 *)buf;
-               if (next_proto && ipv6->hdr.proto == 0)
-                       ipv6->hdr.proto = (uint8_t)next_proto;
-               ipv6_vtc_flow = rte_be_to_cpu_32(ipv6->hdr.vtc_flow);
+               ipv6 = (struct rte_ipv6_hdr *)buf;
+               if (next_proto && ipv6->proto == 0)
+                       ipv6->proto = (uint8_t)next_proto;
+               ipv6_vtc_flow = rte_be_to_cpu_32(ipv6->vtc_flow);
                ipv6_vtc_flow &= 0x0FFFFFFF; /*< reset version bits. */
                ipv6_vtc_flow |= 0x60000000; /*< set ipv6 version. */
-               ipv6->hdr.vtc_flow = rte_cpu_to_be_32(ipv6_vtc_flow);
+               ipv6->vtc_flow = rte_cpu_to_be_32(ipv6_vtc_flow);
                break;
        case RTE_FLOW_ITEM_TYPE_VXLAN:
-               vxlan = (struct rte_flow_item_vxlan *)buf;
-               vxlan->flags = 0x08;
+               vxlan = (struct rte_vxlan_hdr *)buf;
+               vxlan->vx_flags = 0x08;
                break;
        case RTE_FLOW_ITEM_TYPE_VXLAN_GPE:
-               gpe = (struct rte_flow_item_vxlan_gpe *)buf;
-               gpe->flags = 0x0C;
+               gpe = (struct rte_vxlan_gpe_hdr *)buf;
+               gpe->vx_flags = 0x0C;
                break;
        case RTE_FLOW_ITEM_TYPE_NVGRE:
                nvgre = (struct rte_flow_item_nvgre *)buf;
@@ -7381,36 +7603,36 @@ cmd_set_raw_parsed(const struct buffer *in)
                        item->spec = flow_item_default_mask(item);
                switch (item->type) {
                case RTE_FLOW_ITEM_TYPE_ETH:
-                       size = sizeof(struct rte_flow_item_eth);
+                       size = sizeof(struct rte_ether_hdr);
                        break;
                case RTE_FLOW_ITEM_TYPE_VLAN:
-                       size = sizeof(struct rte_flow_item_vlan);
+                       size = sizeof(struct rte_vlan_hdr);
                        proto = RTE_ETHER_TYPE_VLAN;
                        break;
                case RTE_FLOW_ITEM_TYPE_IPV4:
-                       size = sizeof(struct rte_flow_item_ipv4);
+                       size = sizeof(struct rte_ipv4_hdr);
                        proto = RTE_ETHER_TYPE_IPV4;
                        break;
                case RTE_FLOW_ITEM_TYPE_IPV6:
-                       size = sizeof(struct rte_flow_item_ipv6);
+                       size = sizeof(struct rte_ipv6_hdr);
                        proto = RTE_ETHER_TYPE_IPV6;
                        break;
                case RTE_FLOW_ITEM_TYPE_UDP:
-                       size = sizeof(struct rte_flow_item_udp);
+                       size = sizeof(struct rte_udp_hdr);
                        proto = 0x11;
                        break;
                case RTE_FLOW_ITEM_TYPE_TCP:
-                       size = sizeof(struct rte_flow_item_tcp);
+                       size = sizeof(struct rte_tcp_hdr);
                        proto = 0x06;
                        break;
                case RTE_FLOW_ITEM_TYPE_VXLAN:
-                       size = sizeof(struct rte_flow_item_vxlan);
+                       size = sizeof(struct rte_vxlan_hdr);
                        break;
                case RTE_FLOW_ITEM_TYPE_VXLAN_GPE:
-                       size = sizeof(struct rte_flow_item_vxlan_gpe);
+                       size = sizeof(struct rte_vxlan_gpe_hdr);
                        break;
                case RTE_FLOW_ITEM_TYPE_GRE:
-                       size = sizeof(struct rte_flow_item_gre);
+                       size = sizeof(struct rte_gre_hdr);
                        proto = 0x2F;
                        break;
                case RTE_FLOW_ITEM_TYPE_GRE_KEY:
@@ -7418,7 +7640,7 @@ cmd_set_raw_parsed(const struct buffer *in)
                        proto = 0x0;
                        break;
                case RTE_FLOW_ITEM_TYPE_MPLS:
-                       size = sizeof(struct rte_flow_item_mpls);
+                       size = sizeof(struct rte_mpls_hdr);
                        proto = 0x0;
                        break;
                case RTE_FLOW_ITEM_TYPE_NVGRE:
@@ -7426,14 +7648,14 @@ cmd_set_raw_parsed(const struct buffer *in)
                        proto = 0x2F;
                        break;
                case RTE_FLOW_ITEM_TYPE_GENEVE:
-                       size = sizeof(struct rte_flow_item_geneve);
+                       size = sizeof(struct rte_geneve_hdr);
                        break;
                case RTE_FLOW_ITEM_TYPE_L2TPV3OIP:
-                       size = sizeof(struct rte_flow_item_l2tpv3oip);
+                       size = sizeof(rte_be32_t);
                        proto = 0x73;
                        break;
                case RTE_FLOW_ITEM_TYPE_ESP:
-                       size = sizeof(struct rte_flow_item_esp);
+                       size = sizeof(struct rte_esp_hdr);
                        proto = 0x32;
                        break;
                case RTE_FLOW_ITEM_TYPE_AH:
@@ -7441,7 +7663,7 @@ cmd_set_raw_parsed(const struct buffer *in)
                        proto = 0x33;
                        break;
                case RTE_FLOW_ITEM_TYPE_GTP:
-                       size = sizeof(struct rte_flow_item_gtp);
+                       size = sizeof(struct rte_gtp_hdr);
                        break;
                case RTE_FLOW_ITEM_TYPE_PFCP:
                        size = sizeof(struct rte_flow_item_pfcp);
@@ -7598,7 +7820,7 @@ cmdline_parse_token_string_t cmd_show_set_raw_cmd_what =
                        cmd_what, "raw_encap#raw_decap");
 cmdline_parse_token_num_t cmd_show_set_raw_cmd_index =
        TOKEN_NUM_INITIALIZER(struct cmd_show_set_raw_result,
-                       cmd_index, UINT16);
+                       cmd_index, RTE_UINT16);
 cmdline_parse_token_string_t cmd_show_set_raw_cmd_all =
        TOKEN_STRING_INITIALIZER(struct cmd_show_set_raw_result,
                        cmd_all, "all");