app/testpmd: fix flow tunnel commands
[dpdk.git] / app / test-pmd / cmdline_flow.c
index ddb49bc..585cab9 100644 (file)
 #include <rte_byteorder.h>
 #include <cmdline_parse.h>
 #include <cmdline_parse_etheraddr.h>
+#include <cmdline_parse_string.h>
+#include <cmdline_parse_num.h>
 #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"
 
@@ -38,6 +46,7 @@ enum index {
        BOOLEAN,
        STRING,
        HEX,
+       FILE_PATH,
        MAC_ADDR,
        IPV4_ADDR,
        IPV6_ADDR,
@@ -45,23 +54,38 @@ enum index {
        PORT_ID,
        GROUP_ID,
        PRIORITY_LEVEL,
+       SHARED_ACTION_ID,
 
        /* Top-level command. */
        SET,
        /* Sub-leve commands. */
        SET_RAW_ENCAP,
        SET_RAW_DECAP,
+       SET_RAW_INDEX,
+       SET_SAMPLE_ACTIONS,
+       SET_SAMPLE_INDEX,
 
        /* Top-level command. */
        FLOW,
        /* Sub-level commands. */
+       SHARED_ACTION,
        VALIDATE,
        CREATE,
        DESTROY,
        FLUSH,
+       DUMP,
        QUERY,
        LIST,
+       AGED,
        ISOLATE,
+       TUNNEL,
+
+       /* Tunnel arguments. */
+       TUNNEL_CREATE,
+       TUNNEL_CREATE_TYPE,
+       TUNNEL_LIST,
+       TUNNEL_DESTROY,
+       TUNNEL_DESTROY_ID,
 
        /* Destroy arguments. */
        DESTROY_RULE,
@@ -72,12 +96,33 @@ enum index {
        /* List arguments. */
        LIST_GROUP,
 
+       /* Destroy aged flow arguments. */
+       AGED_DESTROY,
+
        /* Validate/create arguments. */
        GROUP,
        PRIORITY,
        INGRESS,
        EGRESS,
        TRANSFER,
+       TUNNEL_SET,
+       TUNNEL_MATCH,
+
+       /* Shared action arguments */
+       SHARED_ACTION_CREATE,
+       SHARED_ACTION_UPDATE,
+       SHARED_ACTION_DESTROY,
+       SHARED_ACTION_QUERY,
+
+       /* Shared action create arguments */
+       SHARED_ACTION_CREATE_ID,
+       SHARED_ACTION_INGRESS,
+       SHARED_ACTION_EGRESS,
+       SHARED_ACTION_TRANSFER,
+       SHARED_ACTION_SPEC,
+
+       /* Shared action destroy arguments */
+       SHARED_ACTION_DESTROY_ID,
 
        /* Validate/create pattern. */
        PATTERN,
@@ -111,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,
@@ -130,9 +178,12 @@ enum index {
        ITEM_IPV6_HOP,
        ITEM_IPV6_SRC,
        ITEM_IPV6_DST,
+       ITEM_IPV6_HAS_FRAG_EXT,
        ITEM_ICMP,
        ITEM_ICMP_TYPE,
        ITEM_ICMP_CODE,
+       ITEM_ICMP_IDENT,
+       ITEM_ICMP_SEQ,
        ITEM_UDP,
        ITEM_UDP_SRC,
        ITEM_UDP_DST,
@@ -164,6 +215,8 @@ enum index {
        ITEM_FUZZY,
        ITEM_FUZZY_THRESH,
        ITEM_GTP,
+       ITEM_GTP_FLAGS,
+       ITEM_GTP_MSG_TYPE,
        ITEM_GTP_TEID,
        ITEM_GTPC,
        ITEM_GTPU,
@@ -179,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,
@@ -203,6 +259,30 @@ enum index {
        ITEM_PPPOED,
        ITEM_PPPOE_SEID,
        ITEM_PPPOE_PROTO_ID,
+       ITEM_HIGIG2,
+       ITEM_HIGIG2_CLASSIFICATION,
+       ITEM_HIGIG2_VID,
+       ITEM_TAG,
+       ITEM_TAG_DATA,
+       ITEM_TAG_INDEX,
+       ITEM_L2TPV3OIP,
+       ITEM_L2TPV3OIP_SESSION_ID,
+       ITEM_ESP,
+       ITEM_ESP_SPI,
+       ITEM_AH,
+       ITEM_AH_SPI,
+       ITEM_PFCP,
+       ITEM_PFCP_S_FIELD,
+       ITEM_PFCP_SEID,
+       ITEM_ECPRI,
+       ITEM_ECPRI_COMMON,
+       ITEM_ECPRI_COMMON_TYPE,
+       ITEM_ECPRI_COMMON_TYPE_IQ_DATA,
+       ITEM_ECPRI_COMMON_TYPE_RTC_CTRL,
+       ITEM_ECPRI_COMMON_TYPE_DLY_MSR,
+       ITEM_ECPRI_MSG_IQ_DATA_PCID,
+       ITEM_ECPRI_MSG_RTC_CTRL_RTCID,
+       ITEM_ECPRI_MSG_DLY_MSR_MSRID,
 
        /* Validate/create actions. */
        ACTIONS,
@@ -227,6 +307,7 @@ enum index {
        ACTION_RSS_FUNC_DEFAULT,
        ACTION_RSS_FUNC_TOEPLITZ,
        ACTION_RSS_FUNC_SIMPLE_XOR,
+       ACTION_RSS_FUNC_SYMMETRIC_TOEPLITZ,
        ACTION_RSS_TYPES,
        ACTION_RSS_TYPE,
        ACTION_RSS_KEY,
@@ -304,6 +385,29 @@ enum index {
        ACTION_DEC_TCP_ACK_VALUE,
        ACTION_RAW_ENCAP,
        ACTION_RAW_DECAP,
+       ACTION_RAW_ENCAP_INDEX,
+       ACTION_RAW_ENCAP_INDEX_VALUE,
+       ACTION_RAW_DECAP_INDEX,
+       ACTION_RAW_DECAP_INDEX_VALUE,
+       ACTION_SET_TAG,
+       ACTION_SET_TAG_DATA,
+       ACTION_SET_TAG_INDEX,
+       ACTION_SET_TAG_MASK,
+       ACTION_SET_META,
+       ACTION_SET_META_DATA,
+       ACTION_SET_META_MASK,
+       ACTION_SET_IPV4_DSCP,
+       ACTION_SET_IPV4_DSCP_VALUE,
+       ACTION_SET_IPV6_DSCP,
+       ACTION_SET_IPV6_DSCP_VALUE,
+       ACTION_AGE,
+       ACTION_AGE_TIMEOUT,
+       ACTION_SAMPLE,
+       ACTION_SAMPLE_RATIO,
+       ACTION_SAMPLE_INDEX,
+       ACTION_SAMPLE_INDEX_VALUE,
+       ACTION_SHARED,
+       SHARED_ACTION_ID2PTR,
 };
 
 /** Maximum size for pattern in struct rte_flow_item_raw. */
@@ -314,7 +418,7 @@ enum index {
        (sizeof(struct rte_flow_item_raw) + ITEM_RAW_PATTERN_SIZE)
 
 /** Maximum number of queue indices in struct rte_flow_action_rss. */
-#define ACTION_RSS_QUEUE_NUM 32
+#define ACTION_RSS_QUEUE_NUM 128
 
 /** Storage for struct rte_flow_action_rss including external data. */
 struct action_rss_data {
@@ -323,10 +427,9 @@ struct action_rss_data {
        uint16_t queue[ACTION_RSS_QUEUE_NUM];
 };
 
-/** Maximum number of items in struct rte_flow_action_vxlan_encap. */
-#define ACTION_VXLAN_ENCAP_ITEMS_NUM 6
-
+/** Maximum data size in struct rte_flow_action_raw_encap. */
 #define ACTION_RAW_ENCAP_MAX_DATA 128
+#define RAW_ENCAP_CONFS_MAX_NUM 8
 
 /** Storage for struct rte_flow_action_raw_encap. */
 struct raw_encap_conf {
@@ -335,7 +438,15 @@ struct raw_encap_conf {
        size_t size;
 };
 
-struct raw_encap_conf raw_encap_conf = {.size = 0};
+struct raw_encap_conf raw_encap_confs[RAW_ENCAP_CONFS_MAX_NUM];
+
+/** Storage for struct rte_flow_action_raw_encap including external data. */
+struct action_raw_encap_data {
+       struct rte_flow_action_raw_encap conf;
+       uint8_t data[ACTION_RAW_ENCAP_MAX_DATA];
+       uint8_t preserve[ACTION_RAW_ENCAP_MAX_DATA];
+       uint16_t idx;
+};
 
 /** Storage for struct rte_flow_action_raw_decap. */
 struct raw_decap_conf {
@@ -343,7 +454,37 @@ struct raw_decap_conf {
        size_t size;
 };
 
-struct raw_decap_conf raw_decap_conf = {.size = 0};
+struct raw_decap_conf raw_decap_confs[RAW_ENCAP_CONFS_MAX_NUM];
+
+/** Storage for struct rte_flow_action_raw_decap including external data. */
+struct action_raw_decap_data {
+       struct rte_flow_action_raw_decap conf;
+       uint8_t data[ACTION_RAW_ENCAP_MAX_DATA];
+       uint16_t idx;
+};
+
+struct vxlan_encap_conf vxlan_encap_conf = {
+       .select_ipv4 = 1,
+       .select_vlan = 0,
+       .select_tos_ttl = 0,
+       .vni = "\x00\x00\x00",
+       .udp_src = 0,
+       .udp_dst = RTE_BE16(RTE_VXLAN_DEFAULT_PORT),
+       .ipv4_src = RTE_IPV4(127, 0, 0, 1),
+       .ipv4_dst = RTE_IPV4(255, 255, 255, 255),
+       .ipv6_src = "\x00\x00\x00\x00\x00\x00\x00\x00"
+               "\x00\x00\x00\x00\x00\x00\x00\x01",
+       .ipv6_dst = "\x00\x00\x00\x00\x00\x00\x00\x00"
+               "\x00\x00\x00\x00\x00\x00\x11\x11",
+       .vlan_tci = 0,
+       .ip_tos = 0,
+       .ip_ttl = 255,
+       .eth_src = "\x00\x00\x00\x00\x00\x00",
+       .eth_dst = "\xff\xff\xff\xff\xff\xff",
+};
+
+/** Maximum number of items in struct rte_flow_action_vxlan_encap. */
+#define ACTION_VXLAN_ENCAP_ITEMS_NUM 6
 
 /** Storage for struct rte_flow_action_vxlan_encap including external data. */
 struct action_vxlan_encap_data {
@@ -359,6 +500,21 @@ struct action_vxlan_encap_data {
        struct rte_flow_item_vxlan item_vxlan;
 };
 
+struct nvgre_encap_conf nvgre_encap_conf = {
+       .select_ipv4 = 1,
+       .select_vlan = 0,
+       .tni = "\x00\x00\x00",
+       .ipv4_src = RTE_IPV4(127, 0, 0, 1),
+       .ipv4_dst = RTE_IPV4(255, 255, 255, 255),
+       .ipv6_src = "\x00\x00\x00\x00\x00\x00\x00\x00"
+               "\x00\x00\x00\x00\x00\x00\x00\x01",
+       .ipv6_dst = "\x00\x00\x00\x00\x00\x00\x00\x00"
+               "\x00\x00\x00\x00\x00\x00\x11\x11",
+       .vlan_tci = 0,
+       .eth_src = "\x00\x00\x00\x00\x00\x00",
+       .eth_dst = "\xff\xff\xff\xff\xff\xff",
+};
+
 /** Maximum number of items in struct rte_flow_action_nvgre_encap. */
 #define ACTION_NVGRE_ENCAP_ITEMS_NUM 5
 
@@ -375,21 +531,35 @@ struct action_nvgre_encap_data {
        struct rte_flow_item_nvgre item_nvgre;
 };
 
-/** Maximum data size in struct rte_flow_action_raw_encap. */
-#define ACTION_RAW_ENCAP_MAX_DATA 128
+struct l2_encap_conf l2_encap_conf;
 
-/** Storage for struct rte_flow_action_raw_encap including external data. */
-struct action_raw_encap_data {
-       struct rte_flow_action_raw_encap conf;
-       uint8_t data[ACTION_RAW_ENCAP_MAX_DATA];
-       uint8_t preserve[ACTION_RAW_ENCAP_MAX_DATA];
-};
+struct l2_decap_conf l2_decap_conf;
 
-/** Storage for struct rte_flow_action_raw_decap including external data. */
-struct action_raw_decap_data {
-       struct rte_flow_action_raw_decap conf;
-       uint8_t data[ACTION_RAW_ENCAP_MAX_DATA];
+struct mplsogre_encap_conf mplsogre_encap_conf;
+
+struct mplsogre_decap_conf mplsogre_decap_conf;
+
+struct mplsoudp_encap_conf mplsoudp_encap_conf;
+
+struct mplsoudp_decap_conf mplsoudp_decap_conf;
+
+#define ACTION_SAMPLE_ACTIONS_NUM 10
+#define RAW_SAMPLE_CONFS_MAX_NUM 8
+/** Storage for struct rte_flow_action_sample including external data. */
+struct action_sample_data {
+       struct rte_flow_action_sample conf;
+       uint32_t idx;
+};
+/** Storage for struct rte_flow_action_sample. */
+struct raw_sample_conf {
+       struct rte_flow_action data[ACTION_SAMPLE_ACTIONS_NUM];
 };
+struct raw_sample_conf raw_sample_confs[RAW_SAMPLE_CONFS_MAX_NUM];
+struct rte_flow_action_mark sample_mark[RAW_SAMPLE_CONFS_MAX_NUM];
+struct rte_flow_action_queue sample_queue[RAW_SAMPLE_CONFS_MAX_NUM];
+struct rte_flow_action_count sample_count[RAW_SAMPLE_CONFS_MAX_NUM];
+struct rte_flow_action_port_id sample_port_id[RAW_SAMPLE_CONFS_MAX_NUM];
+struct rte_flow_action_raw_encap sample_encap[RAW_SAMPLE_CONFS_MAX_NUM];
 
 /** Maximum number of subsequent tokens and arguments on the stack. */
 #define CTX_STACK_SIZE 16
@@ -549,8 +719,16 @@ struct buffer {
        enum index command; /**< Flow command. */
        portid_t port; /**< Affected port ID. */
        union {
+               struct {
+                       uint32_t *action_id;
+                       uint32_t action_id_n;
+               } sa_destroy; /**< Shared action destroy arguments. */
+               struct {
+                       uint32_t action_id;
+               } 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;
@@ -561,6 +739,9 @@ struct buffer {
                        uint32_t *rule;
                        uint32_t rule_n;
                } destroy; /**< Destroy arguments. */
+               struct {
+                       char file[128];
+               } dump; /**< Dump arguments. */
                struct {
                        uint32_t rule;
                        struct rte_flow_action action;
@@ -572,6 +753,9 @@ struct buffer {
                struct {
                        int set;
                } isolate; /**< Isolated mode arguments. */
+               struct {
+                       int destroy;
+               } aged; /**< Aged arguments. */
        } args; /**< Command arguments. */
 };
 
@@ -599,12 +783,31 @@ struct parse_action_priv {
                .size = s, \
        })
 
+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,
+};
+
+static const enum index next_sa_subcmd[] = {
+       SHARED_ACTION_CREATE,
+       SHARED_ACTION_UPDATE,
+       SHARED_ACTION_DESTROY,
+       SHARED_ACTION_QUERY,
+       ZERO,
+};
+
 static const enum index next_vc_attr[] = {
        GROUP,
        PRIORITY,
        INGRESS,
        EGRESS,
        TRANSFER,
+       TUNNEL_SET,
+       TUNNEL_MATCH,
        PATTERN,
        ZERO,
 };
@@ -615,12 +818,30 @@ static const enum index next_destroy_attr[] = {
        ZERO,
 };
 
+static const enum index next_dump_attr[] = {
+       FILE_PATH,
+       END,
+       ZERO,
+};
+
 static const enum index next_list_attr[] = {
        LIST_GROUP,
        END,
        ZERO,
 };
 
+static const enum index next_aged_attr[] = {
+       AGED_DESTROY,
+       END,
+       ZERO,
+};
+
+static const enum index next_sa_destroy_attr[] = {
+       SHARED_ACTION_DESTROY_ID,
+       END,
+       ZERO,
+};
+
 static const enum index item_param[] = {
        ITEM_PARAM_IS,
        ITEM_PARAM_SPEC,
@@ -662,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,
@@ -674,6 +896,13 @@ static const enum index next_item[] = {
        ITEM_PPPOES,
        ITEM_PPPOED,
        ITEM_PPPOE_PROTO_ID,
+       ITEM_HIGIG2,
+       ITEM_TAG,
+       ITEM_L2TPV3OIP,
+       ITEM_ESP,
+       ITEM_AH,
+       ITEM_PFCP,
+       ITEM_ECPRI,
        END_SET,
        ZERO,
 };
@@ -728,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,
 };
@@ -738,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,
@@ -759,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,
 };
@@ -766,6 +999,8 @@ static const enum index item_ipv6[] = {
 static const enum index item_icmp[] = {
        ITEM_ICMP_TYPE,
        ITEM_ICMP_CODE,
+       ITEM_ICMP_IDENT,
+       ITEM_ICMP_SEQ,
        ITEM_NEXT,
        ZERO,
 };
@@ -837,6 +1072,8 @@ static const enum index item_gre_key[] = {
 };
 
 static const enum index item_gtp[] = {
+       ITEM_GTP_FLAGS,
+       ITEM_GTP_MSG_TYPE,
        ITEM_GTP_TEID,
        ITEM_NEXT,
        ZERO,
@@ -870,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,
@@ -933,11 +1177,73 @@ static const enum index item_pppoes[] = {
 };
 
 static const enum index item_pppoe_proto_id[] = {
-       ITEM_PPPOE_PROTO_ID,
        ITEM_NEXT,
        ZERO,
 };
 
+static const enum index item_higig2[] = {
+       ITEM_HIGIG2_CLASSIFICATION,
+       ITEM_HIGIG2_VID,
+       ITEM_NEXT,
+       ZERO,
+};
+
+static const enum index item_esp[] = {
+       ITEM_ESP_SPI,
+       ITEM_NEXT,
+       ZERO,
+};
+
+static const enum index item_ah[] = {
+       ITEM_AH_SPI,
+       ITEM_NEXT,
+       ZERO,
+};
+
+static const enum index item_pfcp[] = {
+       ITEM_PFCP_S_FIELD,
+       ITEM_PFCP_SEID,
+       ITEM_NEXT,
+       ZERO,
+};
+
+static const enum index next_set_raw[] = {
+       SET_RAW_INDEX,
+       ITEM_ETH,
+       ZERO,
+};
+
+static const enum index item_tag[] = {
+       ITEM_TAG_DATA,
+       ITEM_TAG_INDEX,
+       ITEM_NEXT,
+       ZERO,
+};
+
+static const enum index item_l2tpv3oip[] = {
+       ITEM_L2TPV3OIP_SESSION_ID,
+       ITEM_NEXT,
+       ZERO,
+};
+
+static const enum index item_ecpri[] = {
+       ITEM_ECPRI_COMMON,
+       ITEM_NEXT,
+       ZERO,
+};
+
+static const enum index item_ecpri_common[] = {
+       ITEM_ECPRI_COMMON_TYPE,
+       ZERO,
+};
+
+static const enum index item_ecpri_common_type[] = {
+       ITEM_ECPRI_COMMON_TYPE_IQ_DATA,
+       ITEM_ECPRI_COMMON_TYPE_RTC_CTRL,
+       ITEM_ECPRI_COMMON_TYPE_DLY_MSR,
+       ZERO,
+};
+
 static const enum index next_action[] = {
        ACTION_END,
        ACTION_VOID,
@@ -993,6 +1299,13 @@ static const enum index next_action[] = {
        ACTION_DEC_TCP_ACK,
        ACTION_RAW_ENCAP,
        ACTION_RAW_DECAP,
+       ACTION_SET_TAG,
+       ACTION_SET_META,
+       ACTION_SET_IPV4_DSCP,
+       ACTION_SET_IPV6_DSCP,
+       ACTION_AGE,
+       ACTION_SAMPLE,
+       ACTION_SHARED,
        ZERO,
 };
 
@@ -1179,9 +1492,76 @@ static const enum index action_dec_tcp_ack[] = {
        ZERO,
 };
 
+static const enum index action_raw_encap[] = {
+       ACTION_RAW_ENCAP_INDEX,
+       ACTION_NEXT,
+       ZERO,
+};
+
+static const enum index action_raw_decap[] = {
+       ACTION_RAW_DECAP_INDEX,
+       ACTION_NEXT,
+       ZERO,
+};
+
+static const enum index action_set_tag[] = {
+       ACTION_SET_TAG_DATA,
+       ACTION_SET_TAG_INDEX,
+       ACTION_SET_TAG_MASK,
+       ACTION_NEXT,
+       ZERO,
+};
+
+static const enum index action_set_meta[] = {
+       ACTION_SET_META_DATA,
+       ACTION_SET_META_MASK,
+       ACTION_NEXT,
+       ZERO,
+};
+
+static const enum index action_set_ipv4_dscp[] = {
+       ACTION_SET_IPV4_DSCP_VALUE,
+       ACTION_NEXT,
+       ZERO,
+};
+
+static const enum index action_set_ipv6_dscp[] = {
+       ACTION_SET_IPV6_DSCP_VALUE,
+       ACTION_NEXT,
+       ZERO,
+};
+
+static const enum index action_age[] = {
+       ACTION_AGE,
+       ACTION_AGE_TIMEOUT,
+       ACTION_NEXT,
+       ZERO,
+};
+
+static const enum index action_sample[] = {
+       ACTION_SAMPLE,
+       ACTION_SAMPLE_RATIO,
+       ACTION_SAMPLE_INDEX,
+       ACTION_NEXT,
+       ZERO,
+};
+
+static const enum index next_action_sample[] = {
+       ACTION_QUEUE,
+       ACTION_MARK,
+       ACTION_COUNT,
+       ACTION_PORT_ID,
+       ACTION_RAW_ENCAP,
+       ACTION_NEXT,
+       ZERO,
+};
+
 static int parse_set_raw_encap_decap(struct context *, const struct token *,
                                     const char *, unsigned int,
                                     void *, unsigned int);
+static int parse_set_sample_action(struct context *, const struct token *,
+                                  const char *, unsigned int,
+                                  void *, unsigned int);
 static int parse_set_init(struct context *, const struct token *,
                          const char *, unsigned int,
                          void *, unsigned int);
@@ -1195,6 +1575,9 @@ static int parse_vc_spec(struct context *, const struct token *,
                         const char *, unsigned int, void *, unsigned int);
 static int parse_vc_conf(struct context *, const struct token *,
                         const char *, unsigned int, void *, unsigned int);
+static int parse_vc_item_ecpri_type(struct context *, const struct token *,
+                                   const char *, unsigned int,
+                                   void *, unsigned int);
 static int parse_vc_action_rss(struct context *, const struct token *,
                               const char *, unsigned int, void *,
                               unsigned int);
@@ -1237,12 +1620,33 @@ static int parse_vc_action_raw_encap(struct context *,
 static int parse_vc_action_raw_decap(struct context *,
                                     const struct token *, const char *,
                                     unsigned int, void *, unsigned int);
+static int parse_vc_action_raw_encap_index(struct context *,
+                                          const struct token *, const char *,
+                                          unsigned int, void *, unsigned int);
+static int parse_vc_action_raw_decap_index(struct context *,
+                                          const struct token *, const char *,
+                                          unsigned int, void *, unsigned int);
+static int parse_vc_action_set_meta(struct context *ctx,
+                                   const struct token *token, const char *str,
+                                   unsigned int len, void *buf,
+                                       unsigned int size);
+static int parse_vc_action_sample(struct context *ctx,
+                                   const struct token *token, const char *str,
+                                   unsigned int len, void *buf,
+                                   unsigned int size);
+static int
+parse_vc_action_sample_index(struct context *ctx, const struct token *token,
+                               const char *str, unsigned int len, void *buf,
+                               unsigned int size);
 static int parse_destroy(struct context *, const struct token *,
                         const char *, unsigned int,
                         void *, unsigned int);
 static int parse_flush(struct context *, const struct token *,
                       const char *, unsigned int,
                       void *, unsigned int);
+static int parse_dump(struct context *, const struct token *,
+                     const char *, unsigned int,
+                     void *, unsigned int);
 static int parse_query(struct context *, const struct token *,
                       const char *, unsigned int,
                       void *, unsigned int);
@@ -1252,9 +1656,15 @@ static int parse_action(struct context *, const struct token *,
 static int parse_list(struct context *, const struct token *,
                      const char *, unsigned int,
                      void *, unsigned int);
+static int parse_aged(struct context *, const struct token *,
+                     const char *, unsigned int,
+                     void *, unsigned int);
 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);
@@ -1270,6 +1680,9 @@ static int parse_string(struct context *, const struct token *,
 static int parse_hex(struct context *ctx, const struct token *token,
                        const char *str, unsigned int len,
                        void *buf, unsigned int size);
+static int parse_string0(struct context *, const struct token *,
+                       const char *, unsigned int,
+                       void *, unsigned int);
 static int parse_mac_addr(struct context *, const struct token *,
                          const char *, unsigned int,
                          void *, unsigned int);
@@ -1282,6 +1695,15 @@ static int parse_ipv6_addr(struct context *, const struct token *,
 static int parse_port(struct context *, const struct token *,
                      const char *, unsigned int,
                      void *, unsigned int);
+static int parse_sa(struct context *, const struct token *,
+                   const char *, unsigned int,
+                   void *, unsigned int);
+static int parse_sa_destroy(struct context *ctx, const struct token *token,
+                           const char *str, unsigned int len,
+                           void *buf, unsigned int size);
+static int parse_sa_id2ptr(struct context *ctx, const struct token *token,
+                          const char *str, unsigned int len, void *buf,
+                          unsigned int size);
 static int comp_none(struct context *, const struct token *,
                     unsigned int, char *, unsigned int);
 static int comp_boolean(struct context *, const struct token *,
@@ -1296,6 +1718,10 @@ static int comp_vc_action_rss_type(struct context *, const struct token *,
                                   unsigned int, char *, unsigned int);
 static int comp_vc_action_rss_queue(struct context *, const struct token *,
                                    unsigned int, char *, unsigned int);
+static int comp_set_raw_index(struct context *, const struct token *,
+                             unsigned int, char *, unsigned int);
+static int comp_set_sample_index(struct context *, const struct token *,
+                             unsigned int, char *, unsigned int);
 
 /** Token definitions. */
 static const struct token token_list[] = {
@@ -1361,6 +1787,12 @@ static const struct token token_list[] = {
                .type = "HEX",
                .help = "fixed string",
                .call = parse_hex,
+       },
+       [FILE_PATH] = {
+               .name = "{file path}",
+               .type = "STRING",
+               .help = "file path",
+               .call = parse_string0,
                .comp = comp_none,
        },
        [MAC_ADDR] = {
@@ -1412,22 +1844,70 @@ static const struct token token_list[] = {
                .call = parse_int,
                .comp = comp_none,
        },
+       [SHARED_ACTION_ID] = {
+               .name = "{shared_action_id}",
+               .type = "SHARED_ACTION_ID",
+               .help = "shared action id",
+               .call = parse_int,
+               .comp = comp_none,
+       },
        /* Top-level command. */
        [FLOW] = {
                .name = "flow",
                .type = "{command} {port_id} [{arg} [...]]",
                .help = "manage ingress/egress flow rules",
                .next = NEXT(NEXT_ENTRY
-                            (VALIDATE,
+                            (SHARED_ACTION,
+                             VALIDATE,
                              CREATE,
                              DESTROY,
                              FLUSH,
+                             DUMP,
                              LIST,
+                             AGED,
                              QUERY,
-                             ISOLATE)),
+                             ISOLATE,
+                             TUNNEL)),
                .call = parse_init,
        },
+       /* Top-level command. */
+       [SHARED_ACTION] = {
+               .name = "shared_action",
+               .type = "{command} {port_id} [{arg} [...]]",
+               .help = "manage shared actions",
+               .next = NEXT(next_sa_subcmd, NEXT_ENTRY(PORT_ID)),
+               .args = ARGS(ARGS_ENTRY(struct buffer, port)),
+               .call = parse_sa,
+       },
        /* Sub-level commands. */
+       [SHARED_ACTION_CREATE] = {
+               .name = "create",
+               .help = "create shared action",
+               .next = NEXT(next_sa_create_attr),
+               .call = parse_sa,
+       },
+       [SHARED_ACTION_UPDATE] = {
+               .name = "update",
+               .help = "update shared action",
+               .next = NEXT(NEXT_ENTRY(SHARED_ACTION_SPEC),
+                            NEXT_ENTRY(SHARED_ACTION_ID)),
+               .args = ARGS(ARGS_ENTRY(struct buffer, args.vc.attr.group)),
+               .call = parse_sa,
+       },
+       [SHARED_ACTION_DESTROY] = {
+               .name = "destroy",
+               .help = "destroy shared action",
+               .next = NEXT(NEXT_ENTRY(SHARED_ACTION_DESTROY_ID)),
+               .args = ARGS(ARGS_ENTRY(struct buffer, port)),
+               .call = parse_sa_destroy,
+       },
+       [SHARED_ACTION_QUERY] = {
+               .name = "query",
+               .help = "query shared action",
+               .next = NEXT(NEXT_ENTRY(END), NEXT_ENTRY(SHARED_ACTION_ID)),
+               .args = ARGS(ARGS_ENTRY(struct buffer, args.sa.action_id)),
+               .call = parse_sa,
+       },
        [VALIDATE] = {
                .name = "validate",
                .help = "check whether a flow rule can be created",
@@ -1456,6 +1936,14 @@ static const struct token token_list[] = {
                .args = ARGS(ARGS_ENTRY(struct buffer, port)),
                .call = parse_flush,
        },
+       [DUMP] = {
+               .name = "dump",
+               .help = "dump all flow rules to file",
+               .next = NEXT(next_dump_attr, NEXT_ENTRY(PORT_ID)),
+               .args = ARGS(ARGS_ENTRY(struct buffer, args.dump.file),
+                            ARGS_ENTRY(struct buffer, port)),
+               .call = parse_dump,
+       },
        [QUERY] = {
                .name = "query",
                .help = "query an existing flow rule",
@@ -1474,6 +1962,13 @@ static const struct token token_list[] = {
                .args = ARGS(ARGS_ENTRY(struct buffer, port)),
                .call = parse_list,
        },
+       [AGED] = {
+               .name = "aged",
+               .help = "list and destroy aged flows",
+               .next = NEXT(next_aged_attr, NEXT_ENTRY(PORT_ID)),
+               .args = ARGS(ARGS_ENTRY(struct buffer, port)),
+               .call = parse_aged,
+       },
        [ISOLATE] = {
                .name = "isolate",
                .help = "restrict ingress traffic to the defined flow rules",
@@ -1483,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",
@@ -1507,6 +2047,12 @@ static const struct token token_list[] = {
                .args = ARGS(ARGS_ENTRY_PTR(struct buffer, args.list.group)),
                .call = parse_list,
        },
+       [AGED_DESTROY] = {
+               .name = "destroy",
+               .help = "specify aged flows need be destroyed",
+               .call = parse_aged,
+               .comp = comp_none,
+       },
        /* Validate/create attributes. */
        [GROUP] = {
                .name = "group",
@@ -1540,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",
@@ -1743,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",
@@ -1784,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",
@@ -1798,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",
@@ -1877,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",
@@ -1898,6 +2486,20 @@ static const struct token token_list[] = {
                .args = ARGS(ARGS_ENTRY_HTON(struct rte_flow_item_icmp,
                                             hdr.icmp_code)),
        },
+       [ITEM_ICMP_IDENT] = {
+               .name = "ident",
+               .help = "ICMP packet identifier",
+               .next = NEXT(item_icmp, NEXT_ENTRY(UNSIGNED), item_param),
+               .args = ARGS(ARGS_ENTRY_HTON(struct rte_flow_item_icmp,
+                                            hdr.icmp_ident)),
+       },
+       [ITEM_ICMP_SEQ] = {
+               .name = "seq",
+               .help = "ICMP packet sequence number",
+               .next = NEXT(item_icmp, NEXT_ENTRY(UNSIGNED), item_param),
+               .args = ARGS(ARGS_ENTRY_HTON(struct rte_flow_item_icmp,
+                                            hdr.icmp_seq_nb)),
+       },
        [ITEM_UDP] = {
                .name = "udp",
                .help = "match UDP header",
@@ -2124,6 +2726,19 @@ static const struct token token_list[] = {
                .next = NEXT(item_gtp),
                .call = parse_vc,
        },
+       [ITEM_GTP_FLAGS] = {
+               .name = "v_pt_rsv_flags",
+               .help = "GTP flags",
+               .next = NEXT(item_gtp, NEXT_ENTRY(UNSIGNED), item_param),
+               .args = ARGS(ARGS_ENTRY(struct rte_flow_item_gtp,
+                                       v_pt_rsv_flags)),
+       },
+       [ITEM_GTP_MSG_TYPE] = {
+               .name = "msg_type",
+               .help = "GTP message type",
+               .next = NEXT(item_gtp, NEXT_ENTRY(UNSIGNED), item_param),
+               .args = ARGS(ARGS_ENTRY(struct rte_flow_item_gtp, msg_type)),
+       },
        [ITEM_GTP_TEID] = {
                .name = "teid",
                .help = "tunnel endpoint identifier",
@@ -2234,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",
@@ -2351,8 +2990,8 @@ static const struct token token_list[] = {
                .name = "data",
                .help = "metadata value",
                .next = NEXT(item_meta, NEXT_ENTRY(UNSIGNED), item_param),
-               .args = ARGS(ARGS_ENTRY_MASK_HTON(struct rte_flow_item_meta,
-                                                 data, "\xff\xff\xff\xff")),
+               .args = ARGS(ARGS_ENTRY_MASK(struct rte_flow_item_meta,
+                                            data, "\xff\xff\xff\xff")),
        },
        [ITEM_GRE_KEY] = {
                .name = "gre_key",
@@ -2411,34 +3050,207 @@ static const struct token token_list[] = {
                                        session_id)),
        },
        [ITEM_PPPOE_PROTO_ID] = {
-               .name = "proto_id",
+               .name = "pppoe_proto_id",
                .help = "match PPPoE session protocol identifier",
                .priv = PRIV_ITEM(PPPOE_PROTO_ID,
                                sizeof(struct rte_flow_item_pppoe_proto_id)),
-               .next = NEXT(item_pppoe_proto_id),
+               .next = NEXT(item_pppoe_proto_id, NEXT_ENTRY(UNSIGNED),
+                            item_param),
+               .args = ARGS(ARGS_ENTRY_HTON
+                            (struct rte_flow_item_pppoe_proto_id, proto_id)),
                .call = parse_vc,
        },
-       /* Validate/create actions. */
-       [ACTIONS] = {
-               .name = "actions",
-               .help = "submit a list of associated actions",
-               .next = NEXT(next_action),
+       [ITEM_HIGIG2] = {
+               .name = "higig2",
+               .help = "matches higig2 header",
+               .priv = PRIV_ITEM(HIGIG2,
+                               sizeof(struct rte_flow_item_higig2_hdr)),
+               .next = NEXT(item_higig2),
                .call = parse_vc,
        },
-       [ACTION_NEXT] = {
-               .name = "/",
-               .help = "specify next action",
-               .next = NEXT(next_action),
+       [ITEM_HIGIG2_CLASSIFICATION] = {
+               .name = "classification",
+               .help = "matches classification of higig2 header",
+               .next = NEXT(item_higig2, NEXT_ENTRY(UNSIGNED), item_param),
+               .args = ARGS(ARGS_ENTRY_HTON(struct rte_flow_item_higig2_hdr,
+                                       hdr.ppt1.classification)),
        },
-       [ACTION_END] = {
-               .name = "end",
-               .help = "end list of actions",
-               .priv = PRIV_ACTION(END, 0),
+       [ITEM_HIGIG2_VID] = {
+               .name = "vid",
+               .help = "matches vid of higig2 header",
+               .next = NEXT(item_higig2, NEXT_ENTRY(UNSIGNED), item_param),
+               .args = ARGS(ARGS_ENTRY_HTON(struct rte_flow_item_higig2_hdr,
+                                       hdr.ppt1.vid)),
+       },
+       [ITEM_TAG] = {
+               .name = "tag",
+               .help = "match tag value",
+               .priv = PRIV_ITEM(TAG, sizeof(struct rte_flow_item_tag)),
+               .next = NEXT(item_tag),
                .call = parse_vc,
        },
-       [ACTION_VOID] = {
-               .name = "void",
-               .help = "no-op action",
+       [ITEM_TAG_DATA] = {
+               .name = "data",
+               .help = "tag value to match",
+               .next = NEXT(item_tag, NEXT_ENTRY(UNSIGNED), item_param),
+               .args = ARGS(ARGS_ENTRY(struct rte_flow_item_tag, data)),
+       },
+       [ITEM_TAG_INDEX] = {
+               .name = "index",
+               .help = "index of tag array to match",
+               .next = NEXT(item_tag, NEXT_ENTRY(UNSIGNED),
+                            NEXT_ENTRY(ITEM_PARAM_IS)),
+               .args = ARGS(ARGS_ENTRY(struct rte_flow_item_tag, index)),
+       },
+       [ITEM_L2TPV3OIP] = {
+               .name = "l2tpv3oip",
+               .help = "match L2TPv3 over IP header",
+               .priv = PRIV_ITEM(L2TPV3OIP,
+                                 sizeof(struct rte_flow_item_l2tpv3oip)),
+               .next = NEXT(item_l2tpv3oip),
+               .call = parse_vc,
+       },
+       [ITEM_L2TPV3OIP_SESSION_ID] = {
+               .name = "session_id",
+               .help = "session identifier",
+               .next = NEXT(item_l2tpv3oip, NEXT_ENTRY(UNSIGNED), item_param),
+               .args = ARGS(ARGS_ENTRY_HTON(struct rte_flow_item_l2tpv3oip,
+                                            session_id)),
+       },
+       [ITEM_ESP] = {
+               .name = "esp",
+               .help = "match ESP header",
+               .priv = PRIV_ITEM(ESP, sizeof(struct rte_flow_item_esp)),
+               .next = NEXT(item_esp),
+               .call = parse_vc,
+       },
+       [ITEM_ESP_SPI] = {
+               .name = "spi",
+               .help = "security policy index",
+               .next = NEXT(item_esp, NEXT_ENTRY(UNSIGNED), item_param),
+               .args = ARGS(ARGS_ENTRY_HTON(struct rte_flow_item_esp,
+                               hdr.spi)),
+       },
+       [ITEM_AH] = {
+               .name = "ah",
+               .help = "match AH header",
+               .priv = PRIV_ITEM(AH, sizeof(struct rte_flow_item_ah)),
+               .next = NEXT(item_ah),
+               .call = parse_vc,
+       },
+       [ITEM_AH_SPI] = {
+               .name = "spi",
+               .help = "security parameters index",
+               .next = NEXT(item_ah, NEXT_ENTRY(UNSIGNED), item_param),
+               .args = ARGS(ARGS_ENTRY_HTON(struct rte_flow_item_ah, spi)),
+       },
+       [ITEM_PFCP] = {
+               .name = "pfcp",
+               .help = "match pfcp header",
+               .priv = PRIV_ITEM(PFCP, sizeof(struct rte_flow_item_pfcp)),
+               .next = NEXT(item_pfcp),
+               .call = parse_vc,
+       },
+       [ITEM_PFCP_S_FIELD] = {
+               .name = "s_field",
+               .help = "S field",
+               .next = NEXT(item_pfcp, NEXT_ENTRY(UNSIGNED), item_param),
+               .args = ARGS(ARGS_ENTRY_HTON(struct rte_flow_item_pfcp,
+                               s_field)),
+       },
+       [ITEM_PFCP_SEID] = {
+               .name = "seid",
+               .help = "session endpoint identifier",
+               .next = NEXT(item_pfcp, NEXT_ENTRY(UNSIGNED), item_param),
+               .args = ARGS(ARGS_ENTRY_HTON(struct rte_flow_item_pfcp, seid)),
+       },
+       [ITEM_ECPRI] = {
+               .name = "ecpri",
+               .help = "match eCPRI header",
+               .priv = PRIV_ITEM(ECPRI, sizeof(struct rte_flow_item_ecpri)),
+               .next = NEXT(item_ecpri),
+               .call = parse_vc,
+       },
+       [ITEM_ECPRI_COMMON] = {
+               .name = "common",
+               .help = "eCPRI common header",
+               .next = NEXT(item_ecpri_common),
+       },
+       [ITEM_ECPRI_COMMON_TYPE] = {
+               .name = "type",
+               .help = "type of common header",
+               .next = NEXT(item_ecpri_common_type),
+               .args = ARGS(ARG_ENTRY_HTON(struct rte_flow_item_ecpri)),
+       },
+       [ITEM_ECPRI_COMMON_TYPE_IQ_DATA] = {
+               .name = "iq_data",
+               .help = "Type #0: IQ Data",
+               .next = NEXT(NEXT_ENTRY(ITEM_ECPRI_MSG_IQ_DATA_PCID,
+                                       ITEM_NEXT)),
+               .call = parse_vc_item_ecpri_type,
+       },
+       [ITEM_ECPRI_MSG_IQ_DATA_PCID] = {
+               .name = "pc_id",
+               .help = "Physical Channel ID",
+               .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)),
+       },
+       [ITEM_ECPRI_COMMON_TYPE_RTC_CTRL] = {
+               .name = "rtc_ctrl",
+               .help = "Type #2: Real-Time Control Data",
+               .next = NEXT(NEXT_ENTRY(ITEM_ECPRI_MSG_RTC_CTRL_RTCID,
+                                       ITEM_NEXT)),
+               .call = parse_vc_item_ecpri_type,
+       },
+       [ITEM_ECPRI_MSG_RTC_CTRL_RTCID] = {
+               .name = "rtc_id",
+               .help = "Real-Time Control Data ID",
+               .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)),
+       },
+       [ITEM_ECPRI_COMMON_TYPE_DLY_MSR] = {
+               .name = "delay_measure",
+               .help = "Type #5: One-Way Delay Measurement",
+               .next = NEXT(NEXT_ENTRY(ITEM_ECPRI_MSG_DLY_MSR_MSRID,
+                                       ITEM_NEXT)),
+               .call = parse_vc_item_ecpri_type,
+       },
+       [ITEM_ECPRI_MSG_DLY_MSR_MSRID] = {
+               .name = "msr_id",
+               .help = "Measurement ID",
+               .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)),
+       },
+       /* Validate/create actions. */
+       [ACTIONS] = {
+               .name = "actions",
+               .help = "submit a list of associated actions",
+               .next = NEXT(next_action),
+               .call = parse_vc,
+       },
+       [ACTION_NEXT] = {
+               .name = "/",
+               .help = "specify next action",
+               .next = NEXT(next_action),
+       },
+       [ACTION_END] = {
+               .name = "end",
+               .help = "end list of actions",
+               .priv = PRIV_ACTION(END, 0),
+               .call = parse_vc,
+       },
+       [ACTION_VOID] = {
+               .name = "void",
+               .help = "no-op action",
                .priv = PRIV_ACTION(VOID, 0),
                .next = NEXT(NEXT_ENTRY(ACTION_NEXT)),
                .call = parse_vc,
@@ -2543,7 +3355,8 @@ static const struct token token_list[] = {
                .next = NEXT(action_rss,
                             NEXT_ENTRY(ACTION_RSS_FUNC_DEFAULT,
                                        ACTION_RSS_FUNC_TOEPLITZ,
-                                       ACTION_RSS_FUNC_SIMPLE_XOR)),
+                                       ACTION_RSS_FUNC_SIMPLE_XOR,
+                                       ACTION_RSS_FUNC_SYMMETRIC_TOEPLITZ)),
        },
        [ACTION_RSS_FUNC_DEFAULT] = {
                .name = "default",
@@ -2560,6 +3373,11 @@ static const struct token token_list[] = {
                .help = "simple XOR hash function",
                .call = parse_vc_action_rss_func,
        },
+       [ACTION_RSS_FUNC_SYMMETRIC_TOEPLITZ] = {
+               .name = "symmetric_toeplitz",
+               .help = "Symmetric Toeplitz hash function",
+               .call = parse_vc_action_rss_func,
+       },
        [ACTION_RSS_LEVEL] = {
                .name = "level",
                .help = "encapsulation level for \"types\"",
@@ -3181,41 +3999,292 @@ static const struct token token_list[] = {
                .name = "raw_encap",
                .help = "encapsulation data, defined by set raw_encap",
                .priv = PRIV_ACTION(RAW_ENCAP,
-                       sizeof(struct rte_flow_action_raw_encap)),
-               .next = NEXT(NEXT_ENTRY(ACTION_NEXT)),
+                       sizeof(struct action_raw_encap_data)),
+               .next = NEXT(action_raw_encap),
                .call = parse_vc_action_raw_encap,
        },
+       [ACTION_RAW_ENCAP_INDEX] = {
+               .name = "index",
+               .help = "the index of raw_encap_confs",
+               .next = NEXT(NEXT_ENTRY(ACTION_RAW_ENCAP_INDEX_VALUE)),
+       },
+       [ACTION_RAW_ENCAP_INDEX_VALUE] = {
+               .name = "{index}",
+               .type = "UNSIGNED",
+               .help = "unsigned integer value",
+               .next = NEXT(NEXT_ENTRY(ACTION_NEXT)),
+               .call = parse_vc_action_raw_encap_index,
+               .comp = comp_set_raw_index,
+       },
        [ACTION_RAW_DECAP] = {
                .name = "raw_decap",
                .help = "decapsulation data, defined by set raw_encap",
                .priv = PRIV_ACTION(RAW_DECAP,
-                       sizeof(struct rte_flow_action_raw_decap)),
-               .next = NEXT(NEXT_ENTRY(ACTION_NEXT)),
+                       sizeof(struct action_raw_decap_data)),
+               .next = NEXT(action_raw_decap),
                .call = parse_vc_action_raw_decap,
        },
+       [ACTION_RAW_DECAP_INDEX] = {
+               .name = "index",
+               .help = "the index of raw_encap_confs",
+               .next = NEXT(NEXT_ENTRY(ACTION_RAW_DECAP_INDEX_VALUE)),
+       },
+       [ACTION_RAW_DECAP_INDEX_VALUE] = {
+               .name = "{index}",
+               .type = "UNSIGNED",
+               .help = "unsigned integer value",
+               .next = NEXT(NEXT_ENTRY(ACTION_NEXT)),
+               .call = parse_vc_action_raw_decap_index,
+               .comp = comp_set_raw_index,
+       },
        /* Top level command. */
        [SET] = {
                .name = "set",
-               .help = "set raw encap/decap data",
-               .type = "set raw_encap|raw_decap <pattern>",
+               .help = "set raw encap/decap/sample data",
+               .type = "set raw_encap|raw_decap <index> <pattern>"
+                               " or set sample_actions <index> <action>",
                .next = NEXT(NEXT_ENTRY
                             (SET_RAW_ENCAP,
-                             SET_RAW_DECAP)),
+                             SET_RAW_DECAP,
+                             SET_SAMPLE_ACTIONS)),
                .call = parse_set_init,
        },
        /* Sub-level commands. */
        [SET_RAW_ENCAP] = {
                .name = "raw_encap",
                .help = "set raw encap data",
-               .next = NEXT(next_item),
+               .next = NEXT(next_set_raw),
+               .args = ARGS(ARGS_ENTRY_ARB_BOUNDED
+                               (offsetof(struct buffer, port),
+                                sizeof(((struct buffer *)0)->port),
+                                0, RAW_ENCAP_CONFS_MAX_NUM - 1)),
                .call = parse_set_raw_encap_decap,
        },
        [SET_RAW_DECAP] = {
                .name = "raw_decap",
                .help = "set raw decap data",
-               .next = NEXT(next_item),
+               .next = NEXT(next_set_raw),
+               .args = ARGS(ARGS_ENTRY_ARB_BOUNDED
+                               (offsetof(struct buffer, port),
+                                sizeof(((struct buffer *)0)->port),
+                                0, RAW_ENCAP_CONFS_MAX_NUM - 1)),
                .call = parse_set_raw_encap_decap,
-       }
+       },
+       [SET_RAW_INDEX] = {
+               .name = "{index}",
+               .type = "UNSIGNED",
+               .help = "index of raw_encap/raw_decap data",
+               .next = NEXT(next_item),
+               .call = parse_port,
+       },
+       [SET_SAMPLE_INDEX] = {
+               .name = "{index}",
+               .type = "UNSIGNED",
+               .help = "index of sample actions",
+               .next = NEXT(next_action_sample),
+               .call = parse_port,
+       },
+       [SET_SAMPLE_ACTIONS] = {
+               .name = "sample_actions",
+               .help = "set sample actions list",
+               .next = NEXT(NEXT_ENTRY(SET_SAMPLE_INDEX)),
+               .args = ARGS(ARGS_ENTRY_ARB_BOUNDED
+                               (offsetof(struct buffer, port),
+                                sizeof(((struct buffer *)0)->port),
+                                0, RAW_SAMPLE_CONFS_MAX_NUM - 1)),
+               .call = parse_set_sample_action,
+       },
+       [ACTION_SET_TAG] = {
+               .name = "set_tag",
+               .help = "set tag",
+               .priv = PRIV_ACTION(SET_TAG,
+                       sizeof(struct rte_flow_action_set_tag)),
+               .next = NEXT(action_set_tag),
+               .call = parse_vc,
+       },
+       [ACTION_SET_TAG_INDEX] = {
+               .name = "index",
+               .help = "index of tag array",
+               .next = NEXT(action_set_tag, NEXT_ENTRY(UNSIGNED)),
+               .args = ARGS(ARGS_ENTRY(struct rte_flow_action_set_tag, index)),
+               .call = parse_vc_conf,
+       },
+       [ACTION_SET_TAG_DATA] = {
+               .name = "data",
+               .help = "tag value",
+               .next = NEXT(action_set_tag, NEXT_ENTRY(UNSIGNED)),
+               .args = ARGS(ARGS_ENTRY
+                            (struct rte_flow_action_set_tag, data)),
+               .call = parse_vc_conf,
+       },
+       [ACTION_SET_TAG_MASK] = {
+               .name = "mask",
+               .help = "mask for tag value",
+               .next = NEXT(action_set_tag, NEXT_ENTRY(UNSIGNED)),
+               .args = ARGS(ARGS_ENTRY
+                            (struct rte_flow_action_set_tag, mask)),
+               .call = parse_vc_conf,
+       },
+       [ACTION_SET_META] = {
+               .name = "set_meta",
+               .help = "set metadata",
+               .priv = PRIV_ACTION(SET_META,
+                       sizeof(struct rte_flow_action_set_meta)),
+               .next = NEXT(action_set_meta),
+               .call = parse_vc_action_set_meta,
+       },
+       [ACTION_SET_META_DATA] = {
+               .name = "data",
+               .help = "metadata value",
+               .next = NEXT(action_set_meta, NEXT_ENTRY(UNSIGNED)),
+               .args = ARGS(ARGS_ENTRY
+                            (struct rte_flow_action_set_meta, data)),
+               .call = parse_vc_conf,
+       },
+       [ACTION_SET_META_MASK] = {
+               .name = "mask",
+               .help = "mask for metadata value",
+               .next = NEXT(action_set_meta, NEXT_ENTRY(UNSIGNED)),
+               .args = ARGS(ARGS_ENTRY
+                            (struct rte_flow_action_set_meta, mask)),
+               .call = parse_vc_conf,
+       },
+       [ACTION_SET_IPV4_DSCP] = {
+               .name = "set_ipv4_dscp",
+               .help = "set DSCP value",
+               .priv = PRIV_ACTION(SET_IPV4_DSCP,
+                       sizeof(struct rte_flow_action_set_dscp)),
+               .next = NEXT(action_set_ipv4_dscp),
+               .call = parse_vc,
+       },
+       [ACTION_SET_IPV4_DSCP_VALUE] = {
+               .name = "dscp_value",
+               .help = "new IPv4 DSCP value to set",
+               .next = NEXT(action_set_ipv4_dscp, NEXT_ENTRY(UNSIGNED)),
+               .args = ARGS(ARGS_ENTRY
+                            (struct rte_flow_action_set_dscp, dscp)),
+               .call = parse_vc_conf,
+       },
+       [ACTION_SET_IPV6_DSCP] = {
+               .name = "set_ipv6_dscp",
+               .help = "set DSCP value",
+               .priv = PRIV_ACTION(SET_IPV6_DSCP,
+                       sizeof(struct rte_flow_action_set_dscp)),
+               .next = NEXT(action_set_ipv6_dscp),
+               .call = parse_vc,
+       },
+       [ACTION_SET_IPV6_DSCP_VALUE] = {
+               .name = "dscp_value",
+               .help = "new IPv6 DSCP value to set",
+               .next = NEXT(action_set_ipv6_dscp, NEXT_ENTRY(UNSIGNED)),
+               .args = ARGS(ARGS_ENTRY
+                            (struct rte_flow_action_set_dscp, dscp)),
+               .call = parse_vc_conf,
+       },
+       [ACTION_AGE] = {
+               .name = "age",
+               .help = "set a specific metadata header",
+               .next = NEXT(action_age),
+               .priv = PRIV_ACTION(AGE,
+                       sizeof(struct rte_flow_action_age)),
+               .call = parse_vc,
+       },
+       [ACTION_AGE_TIMEOUT] = {
+               .name = "timeout",
+               .help = "flow age timeout value",
+               .args = ARGS(ARGS_ENTRY_BF(struct rte_flow_action_age,
+                                          timeout, 24)),
+               .next = NEXT(action_age, NEXT_ENTRY(UNSIGNED)),
+               .call = parse_vc_conf,
+       },
+       [ACTION_SAMPLE] = {
+               .name = "sample",
+               .help = "set a sample action",
+               .next = NEXT(action_sample),
+               .priv = PRIV_ACTION(SAMPLE,
+                       sizeof(struct action_sample_data)),
+               .call = parse_vc_action_sample,
+       },
+       [ACTION_SAMPLE_RATIO] = {
+               .name = "ratio",
+               .help = "flow sample ratio value",
+               .next = NEXT(action_sample, NEXT_ENTRY(UNSIGNED)),
+               .args = ARGS(ARGS_ENTRY_ARB
+                            (offsetof(struct action_sample_data, conf) +
+                             offsetof(struct rte_flow_action_sample, ratio),
+                             sizeof(((struct rte_flow_action_sample *)0)->
+                                    ratio))),
+       },
+       [ACTION_SAMPLE_INDEX] = {
+               .name = "index",
+               .help = "the index of sample actions list",
+               .next = NEXT(NEXT_ENTRY(ACTION_SAMPLE_INDEX_VALUE)),
+       },
+       [ACTION_SAMPLE_INDEX_VALUE] = {
+               .name = "{index}",
+               .type = "UNSIGNED",
+               .help = "unsigned integer value",
+               .next = NEXT(NEXT_ENTRY(ACTION_NEXT)),
+               .call = parse_vc_action_sample_index,
+               .comp = comp_set_sample_index,
+       },
+       /* Shared action destroy arguments. */
+       [SHARED_ACTION_DESTROY_ID] = {
+               .name = "action_id",
+               .help = "specify a shared action id to destroy",
+               .next = NEXT(next_sa_destroy_attr,
+                            NEXT_ENTRY(SHARED_ACTION_ID)),
+               .args = ARGS(ARGS_ENTRY_PTR(struct buffer,
+                                           args.sa_destroy.action_id)),
+               .call = parse_sa_destroy,
+       },
+       /* Shared action create arguments. */
+       [SHARED_ACTION_CREATE_ID] = {
+               .name = "action_id",
+               .help = "specify a shared action id to create",
+               .next = NEXT(next_sa_create_attr,
+                            NEXT_ENTRY(SHARED_ACTION_ID)),
+               .args = ARGS(ARGS_ENTRY(struct buffer, args.vc.attr.group)),
+       },
+       [ACTION_SHARED] = {
+               .name = "shared",
+               .help = "apply shared action by id",
+               .priv = PRIV_ACTION(SHARED, 0),
+               .next = NEXT(NEXT_ENTRY(SHARED_ACTION_ID2PTR)),
+               .args = ARGS(ARGS_ENTRY_ARB(0, sizeof(uint32_t))),
+               .call = parse_vc,
+       },
+       [SHARED_ACTION_ID2PTR] = {
+               .name = "{action_id}",
+               .type = "SHARED_ACTION_ID",
+               .help = "shared action id",
+               .next = NEXT(NEXT_ENTRY(ACTION_NEXT)),
+               .call = parse_sa_id2ptr,
+               .comp = comp_none,
+       },
+       [SHARED_ACTION_INGRESS] = {
+               .name = "ingress",
+               .help = "affect rule to ingress",
+               .next = NEXT(next_sa_create_attr),
+               .call = parse_sa,
+       },
+       [SHARED_ACTION_EGRESS] = {
+               .name = "egress",
+               .help = "affect rule to egress",
+               .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",
+               .next = NEXT(next_action),
+       },
 };
 
 /** Remove and return last entry from argument stack. */
@@ -3400,6 +4469,100 @@ parse_init(struct context *ctx, const struct token *token,
        return len;
 }
 
+/** Parse tokens for shared action commands. */
+static int
+parse_sa(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 != SHARED_ACTION)
+                       return -1;
+               if (sizeof(*out) > size)
+                       return -1;
+               out->command = ctx->curr;
+               ctx->objdata = 0;
+               ctx->object = out;
+               ctx->objmask = NULL;
+               out->args.vc.data = (uint8_t *)out + size;
+               return len;
+       }
+       switch (ctx->curr) {
+       case SHARED_ACTION_CREATE:
+       case SHARED_ACTION_UPDATE:
+               out->args.vc.actions =
+                       (void *)RTE_ALIGN_CEIL((uintptr_t)(out + 1),
+                                              sizeof(double));
+               out->args.vc.attr.group = UINT32_MAX;
+               /* fallthrough */
+       case SHARED_ACTION_QUERY:
+               out->command = ctx->curr;
+               ctx->objdata = 0;
+               ctx->object = out;
+               ctx->objmask = NULL;
+               return len;
+       case SHARED_ACTION_EGRESS:
+               out->args.vc.attr.egress = 1;
+               return len;
+       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;
+       }
+}
+
+
+/** Parse tokens for shared action destroy command. */
+static int
+parse_sa_destroy(struct context *ctx, const struct token *token,
+                const char *str, unsigned int len,
+                void *buf, unsigned int size)
+{
+       struct buffer *out = buf;
+       uint32_t *action_id;
+
+       /* 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 || out->command == SHARED_ACTION) {
+               if (ctx->curr != SHARED_ACTION_DESTROY)
+                       return -1;
+               if (sizeof(*out) > size)
+                       return -1;
+               out->command = ctx->curr;
+               ctx->objdata = 0;
+               ctx->object = out;
+               ctx->objmask = NULL;
+               out->args.sa_destroy.action_id =
+                       (void *)RTE_ALIGN_CEIL((uintptr_t)(out + 1),
+                                              sizeof(double));
+               return len;
+       }
+       action_id = out->args.sa_destroy.action_id
+                   + out->args.sa_destroy.action_id_n++;
+       if ((uint8_t *)action_id > (uint8_t *)out + size)
+               return -1;
+       ctx->objdata = 0;
+       ctx->object = action_id;
+       ctx->objmask = NULL;
+       return len;
+}
+
 /** Parse tokens for validate/create commands. */
 static int
 parse_vc(struct context *ctx, const struct token *token,
@@ -3429,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;
@@ -3590,6 +4769,59 @@ parse_vc_conf(struct context *ctx, const struct token *token,
        return len;
 }
 
+/** Parse eCPRI common header type field. */
+static int
+parse_vc_item_ecpri_type(struct context *ctx, const struct token *token,
+                        const char *str, unsigned int len,
+                        void *buf, unsigned int size)
+{
+       struct rte_flow_item_ecpri *ecpri;
+       struct rte_flow_item_ecpri *ecpri_mask;
+       struct rte_flow_item *item;
+       uint32_t data_size;
+       uint8_t msg_type;
+       struct buffer *out = buf;
+       const struct arg *arg;
+
+       (void)size;
+       /* Token name must match. */
+       if (parse_default(ctx, token, str, len, NULL, 0) < 0)
+               return -1;
+       switch (ctx->curr) {
+       case ITEM_ECPRI_COMMON_TYPE_IQ_DATA:
+               msg_type = RTE_ECPRI_MSG_TYPE_IQ_DATA;
+               break;
+       case ITEM_ECPRI_COMMON_TYPE_RTC_CTRL:
+               msg_type = RTE_ECPRI_MSG_TYPE_RTC_CTRL;
+               break;
+       case ITEM_ECPRI_COMMON_TYPE_DLY_MSR:
+               msg_type = RTE_ECPRI_MSG_TYPE_DLY_MSR;
+               break;
+       default:
+               return -1;
+       }
+       if (!ctx->object)
+               return len;
+       arg = pop_args(ctx);
+       if (!arg)
+               return -1;
+       ecpri = (struct rte_flow_item_ecpri *)out->args.vc.data;
+       ecpri->hdr.common.type = msg_type;
+       data_size = ctx->objdata / 3; /* spec, last, mask */
+       ecpri_mask = (struct rte_flow_item_ecpri *)(out->args.vc.data +
+                                                   (data_size * 2));
+       ecpri_mask->hdr.common.type = 0xFF;
+       if (arg->hton) {
+               ecpri->hdr.common.u32 = rte_cpu_to_be_32(ecpri->hdr.common.u32);
+               ecpri_mask->hdr.common.u32 =
+                               rte_cpu_to_be_32(ecpri_mask->hdr.common.u32);
+       }
+       item = &out->args.vc.pattern[out->args.vc.pattern_n - 1];
+       item->spec = ecpri;
+       item->mask = ecpri_mask;
+       return len;
+}
+
 /** Parse RSS action. */
 static int
 parse_vc_action_rss(struct context *ctx, const struct token *token,
@@ -3621,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;
 }
@@ -3678,6 +4895,9 @@ parse_vc_action_rss_func(struct context *ctx, const struct token *token,
        case ACTION_RSS_FUNC_SIMPLE_XOR:
                func = RTE_ETH_HASH_FUNCTION_SIMPLE_XOR;
                break;
+       case ACTION_RSS_FUNC_SYMMETRIC_TOEPLITZ:
+               func = RTE_ETH_HASH_FUNCTION_SYMMETRIC_TOEPLITZ;
+               break;
        default:
                return -1;
        }
@@ -4158,7 +5378,9 @@ parse_vc_action_mplsogre_encap(struct context *ctx, const struct token *token,
        struct rte_flow_item_gre gre = {
                .protocol = rte_cpu_to_be_16(ETHER_TYPE_MPLS_UNICAST),
        };
-       struct rte_flow_item_mpls mpls;
+       struct rte_flow_item_mpls mpls = {
+               .ttl = 0,
+       };
        uint8_t *header;
        int ret;
 
@@ -4514,37 +5736,111 @@ parse_vc_action_mplsoudp_decap(struct context *ctx, const struct token *token,
 }
 
 static int
-parse_vc_action_raw_encap(struct context *ctx, const struct token *token,
-                         const char *str, unsigned int len, void *buf,
-                         unsigned int size)
+parse_vc_action_raw_decap_index(struct context *ctx, const struct token *token,
+                               const char *str, unsigned int len, void *buf,
+                               unsigned int size)
 {
-       struct buffer *out = buf;
+       struct action_raw_decap_data *action_raw_decap_data;
        struct rte_flow_action *action;
-       struct rte_flow_action_raw_encap *action_raw_encap_conf = NULL;
-       uint8_t *data = NULL;
+       const struct arg *arg;
+       struct buffer *out = buf;
        int ret;
-
-       ret = parse_vc(ctx, token, str, len, buf, size);
-       if (ret < 0)
-               return ret;
-       /* Nothing else to do if there is no buffer. */
-       if (!out)
-               return ret;
-       if (!out->args.vc.actions_n)
+       uint16_t idx;
+
+       RTE_SET_USED(token);
+       RTE_SET_USED(buf);
+       RTE_SET_USED(size);
+       arg = ARGS_ENTRY_ARB_BOUNDED
+               (offsetof(struct action_raw_decap_data, idx),
+                sizeof(((struct action_raw_decap_data *)0)->idx),
+                0, RAW_ENCAP_CONFS_MAX_NUM - 1);
+       if (push_args(ctx, arg))
                return -1;
-       action = &out->args.vc.actions[out->args.vc.actions_n - 1];
-       /* Point to selected object. */
-       ctx->object = out->args.vc.data;
-       ctx->objmask = NULL;
+       ret = parse_int(ctx, token, str, len, NULL, 0);
+       if (ret < 0) {
+               pop_args(ctx);
+               return -1;
+       }
+       if (!ctx->object)
+               return len;
+       action = &out->args.vc.actions[out->args.vc.actions_n - 1];
+       action_raw_decap_data = ctx->object;
+       idx = action_raw_decap_data->idx;
+       action_raw_decap_data->conf.data = raw_decap_confs[idx].data;
+       action_raw_decap_data->conf.size = raw_decap_confs[idx].size;
+       action->conf = &action_raw_decap_data->conf;
+       return len;
+}
+
+
+static int
+parse_vc_action_raw_encap_index(struct context *ctx, const struct token *token,
+                               const char *str, unsigned int len, void *buf,
+                               unsigned int size)
+{
+       struct action_raw_encap_data *action_raw_encap_data;
+       struct rte_flow_action *action;
+       const struct arg *arg;
+       struct buffer *out = buf;
+       int ret;
+       uint16_t idx;
+
+       RTE_SET_USED(token);
+       RTE_SET_USED(buf);
+       RTE_SET_USED(size);
+       if (ctx->curr != ACTION_RAW_ENCAP_INDEX_VALUE)
+               return -1;
+       arg = ARGS_ENTRY_ARB_BOUNDED
+               (offsetof(struct action_raw_encap_data, idx),
+                sizeof(((struct action_raw_encap_data *)0)->idx),
+                0, RAW_ENCAP_CONFS_MAX_NUM - 1);
+       if (push_args(ctx, arg))
+               return -1;
+       ret = parse_int(ctx, token, str, len, NULL, 0);
+       if (ret < 0) {
+               pop_args(ctx);
+               return -1;
+       }
+       if (!ctx->object)
+               return len;
+       action = &out->args.vc.actions[out->args.vc.actions_n - 1];
+       action_raw_encap_data = ctx->object;
+       idx = action_raw_encap_data->idx;
+       action_raw_encap_data->conf.data = raw_encap_confs[idx].data;
+       action_raw_encap_data->conf.size = raw_encap_confs[idx].size;
+       action_raw_encap_data->conf.preserve = NULL;
+       action->conf = &action_raw_encap_data->conf;
+       return len;
+}
+
+static int
+parse_vc_action_raw_encap(struct context *ctx, const struct token *token,
+                         const char *str, unsigned int len, void *buf,
+                         unsigned int size)
+{
+       struct buffer *out = buf;
+       struct rte_flow_action *action;
+       struct action_raw_encap_data *action_raw_encap_data = NULL;
+       int ret;
+
+       ret = parse_vc(ctx, token, str, len, buf, size);
+       if (ret < 0)
+               return ret;
+       /* Nothing else to do if there is no buffer. */
+       if (!out)
+               return ret;
+       if (!out->args.vc.actions_n)
+               return -1;
+       action = &out->args.vc.actions[out->args.vc.actions_n - 1];
+       /* Point to selected object. */
+       ctx->object = out->args.vc.data;
+       ctx->objmask = NULL;
        /* Copy the headers to the buffer. */
-       action_raw_encap_conf = ctx->object;
-       /* data stored from tail of data buffer */
-       data = (uint8_t *)&(raw_encap_conf.data) +
-               ACTION_RAW_ENCAP_MAX_DATA - raw_encap_conf.size;
-       action_raw_encap_conf->data = data;
-       action_raw_encap_conf->preserve = NULL;
-       action_raw_encap_conf->size = raw_encap_conf.size;
-       action->conf = action_raw_encap_conf;
+       action_raw_encap_data = ctx->object;
+       action_raw_encap_data->conf.data = raw_encap_confs[0].data;
+       action_raw_encap_data->conf.preserve = NULL;
+       action_raw_encap_data->conf.size = raw_encap_confs[0].size;
+       action->conf = &action_raw_encap_data->conf;
        return ret;
 }
 
@@ -4555,8 +5851,7 @@ parse_vc_action_raw_decap(struct context *ctx, const struct token *token,
 {
        struct buffer *out = buf;
        struct rte_flow_action *action;
-       struct rte_flow_action_raw_decap *action_raw_decap_conf = NULL;
-       uint8_t *data = NULL;
+       struct action_raw_decap_data *action_raw_decap_data = NULL;
        int ret;
 
        ret = parse_vc(ctx, token, str, len, buf, size);
@@ -4572,16 +5867,99 @@ parse_vc_action_raw_decap(struct context *ctx, const struct token *token,
        ctx->object = out->args.vc.data;
        ctx->objmask = NULL;
        /* Copy the headers to the buffer. */
-       action_raw_decap_conf = ctx->object;
-       /* data stored from tail of data buffer */
-       data = (uint8_t *)&(raw_decap_conf.data) +
-               ACTION_RAW_ENCAP_MAX_DATA - raw_decap_conf.size;
-       action_raw_decap_conf->data = data;
-       action_raw_decap_conf->size = raw_decap_conf.size;
-       action->conf = action_raw_decap_conf;
+       action_raw_decap_data = ctx->object;
+       action_raw_decap_data->conf.data = raw_decap_confs[0].data;
+       action_raw_decap_data->conf.size = raw_decap_confs[0].size;
+       action->conf = &action_raw_decap_data->conf;
        return ret;
 }
 
+static int
+parse_vc_action_set_meta(struct context *ctx, const struct token *token,
+                        const char *str, unsigned int len, void *buf,
+                        unsigned int size)
+{
+       int ret;
+
+       ret = parse_vc(ctx, token, str, len, buf, size);
+       if (ret < 0)
+               return ret;
+       ret = rte_flow_dynf_metadata_register();
+       if (ret < 0)
+               return -1;
+       return len;
+}
+
+static int
+parse_vc_action_sample(struct context *ctx, const struct token *token,
+                        const char *str, unsigned int len, void *buf,
+                        unsigned int size)
+{
+       struct buffer *out = buf;
+       struct rte_flow_action *action;
+       struct action_sample_data *action_sample_data = NULL;
+       static struct rte_flow_action end_action = {
+               RTE_FLOW_ACTION_TYPE_END, 0
+       };
+       int ret;
+
+       ret = parse_vc(ctx, token, str, len, buf, size);
+       if (ret < 0)
+               return ret;
+       /* Nothing else to do if there is no buffer. */
+       if (!out)
+               return ret;
+       if (!out->args.vc.actions_n)
+               return -1;
+       action = &out->args.vc.actions[out->args.vc.actions_n - 1];
+       /* Point to selected object. */
+       ctx->object = out->args.vc.data;
+       ctx->objmask = NULL;
+       /* Copy the headers to the buffer. */
+       action_sample_data = ctx->object;
+       action_sample_data->conf.actions = &end_action;
+       action->conf = &action_sample_data->conf;
+       return ret;
+}
+
+static int
+parse_vc_action_sample_index(struct context *ctx, const struct token *token,
+                               const char *str, unsigned int len, void *buf,
+                               unsigned int size)
+{
+       struct action_sample_data *action_sample_data;
+       struct rte_flow_action *action;
+       const struct arg *arg;
+       struct buffer *out = buf;
+       int ret;
+       uint16_t idx;
+
+       RTE_SET_USED(token);
+       RTE_SET_USED(buf);
+       RTE_SET_USED(size);
+       if (ctx->curr != ACTION_SAMPLE_INDEX_VALUE)
+               return -1;
+       arg = ARGS_ENTRY_ARB_BOUNDED
+               (offsetof(struct action_sample_data, idx),
+                sizeof(((struct action_sample_data *)0)->idx),
+                0, RAW_SAMPLE_CONFS_MAX_NUM - 1);
+       if (push_args(ctx, arg))
+               return -1;
+       ret = parse_int(ctx, token, str, len, NULL, 0);
+       if (ret < 0) {
+               pop_args(ctx);
+               return -1;
+       }
+       if (!ctx->object)
+               return len;
+       action = &out->args.vc.actions[out->args.vc.actions_n - 1];
+       action_sample_data = ctx->object;
+       idx = action_sample_data->idx;
+       action_sample_data->conf.actions = raw_sample_confs[idx].data;
+       action->conf = &action_sample_data->conf;
+       return len;
+}
+
 /** Parse tokens for destroy command. */
 static int
 parse_destroy(struct context *ctx, const struct token *token,
@@ -4646,6 +6024,33 @@ parse_flush(struct context *ctx, const struct token *token,
        return len;
 }
 
+/** Parse tokens for dump command. */
+static int
+parse_dump(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 != DUMP)
+                       return -1;
+               if (sizeof(*out) > size)
+                       return -1;
+               out->command = ctx->curr;
+               ctx->objdata = 0;
+               ctx->object = out;
+               ctx->objmask = NULL;
+       }
+       return len;
+}
+
 /** Parse tokens for query command. */
 static int
 parse_query(struct context *ctx, const struct token *token,
@@ -4745,6 +6150,35 @@ parse_list(struct context *ctx, const struct token *token,
        return len;
 }
 
+/** Parse tokens for list all aged flows command. */
+static int
+parse_aged(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 != AGED)
+                       return -1;
+               if (sizeof(*out) > size)
+                       return -1;
+               out->command = ctx->curr;
+               ctx->objdata = 0;
+               ctx->object = out;
+               ctx->objmask = NULL;
+       }
+       if (ctx->curr == AGED_DESTROY)
+               out->args.aged.destroy = 1;
+       return len;
+}
+
 /** Parse tokens for isolate command. */
 static int
 parse_isolate(struct context *ctx, const struct token *token,
@@ -4772,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.
  *
@@ -5043,6 +6518,35 @@ error:
 
 }
 
+/**
+ * Parse a zero-ended string.
+ */
+static int
+parse_string0(struct context *ctx, const struct token *token __rte_unused,
+            const char *str, unsigned int len,
+            void *buf, unsigned int size)
+{
+       const struct arg *arg_data = pop_args(ctx);
+
+       /* Arguments are expected. */
+       if (!arg_data)
+               return -1;
+       size = arg_data->size;
+       /* Bit-mask fill is not supported. */
+       if (arg_data->mask || size < len + 1)
+               goto error;
+       if (!ctx->object)
+               return len;
+       buf = (uint8_t *)ctx->object + arg_data->offset;
+       strncpy(buf, str, len);
+       if (ctx->objmask)
+               memset((uint8_t *)ctx->objmask + arg_data->offset, 0xff, len);
+       return len;
+error:
+       push_args(ctx, arg_data);
+       return -1;
+}
+
 /**
  * Parse a MAC address.
  *
@@ -5238,6 +6742,32 @@ parse_port(struct context *ctx, const struct token *token,
        return ret;
 }
 
+static int
+parse_sa_id2ptr(struct context *ctx, const struct token *token,
+               const char *str, unsigned int len,
+               void *buf, unsigned int size)
+{
+       struct rte_flow_action *action = ctx->object;
+       uint32_t id;
+       int ret;
+
+       (void)buf;
+       (void)size;
+       ctx->objdata = 0;
+       ctx->object = &id;
+       ctx->objmask = NULL;
+       ret = parse_int(ctx, token, str, len, ctx->object, sizeof(id));
+       ctx->object = action;
+       if (ret != (int)len)
+               return ret;
+       /* set shared action */
+       if (action) {
+               action->conf = port_shared_action_get_by_id(ctx->port, id);
+               ret = (action->conf) ? ret : -1;
+       }
+       return ret;
+}
+
 /** Parse set command, initialize output buffer for subsequent tokens. */
 static int
 parse_set_raw_encap_decap(struct context *ctx, const struct token *token,
@@ -5257,9 +6787,42 @@ parse_set_raw_encap_decap(struct context *ctx, const struct token *token,
                return -1;
        ctx->objdata = 0;
        ctx->objmask = NULL;
+       ctx->object = out;
+       if (!out->command)
+               return -1;
+       out->command = ctx->curr;
+       /* For encap/decap we need is pattern */
+       out->args.vc.pattern = (void *)RTE_ALIGN_CEIL((uintptr_t)(out + 1),
+                                                      sizeof(double));
+       return len;
+}
+
+/** Parse set command, initialize output buffer for subsequent tokens. */
+static int
+parse_set_sample_action(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;
+       /* Make sure buffer is large enough. */
+       if (size < sizeof(*out))
+               return -1;
+       ctx->objdata = 0;
+       ctx->objmask = NULL;
+       ctx->object = out;
        if (!out->command)
                return -1;
        out->command = ctx->curr;
+       /* For sampler we need is actions */
+       out->args.vc.actions = (void *)RTE_ALIGN_CEIL((uintptr_t)(out + 1),
+                                                      sizeof(double));
        return len;
 }
 
@@ -5296,11 +6859,8 @@ parse_set_init(struct context *ctx, const struct token *token,
                        return -1;
                out->command = ctx->curr;
                out->args.vc.data = (uint8_t *)out + size;
-               /* All we need is pattern */
-               out->args.vc.pattern =
-                       (void *)RTE_ALIGN_CEIL((uintptr_t)(out + 1),
-                                              sizeof(double));
-               ctx->object = out->args.vc.pattern;
+               ctx->object  = (void *)RTE_ALIGN_CEIL((uintptr_t)(out + 1),
+                                                      sizeof(double));
        }
        return len;
 }
@@ -5433,6 +6993,42 @@ comp_vc_action_rss_queue(struct context *ctx, const struct token *token,
        return -1;
 }
 
+/** Complete index number for set raw_encap/raw_decap commands. */
+static int
+comp_set_raw_index(struct context *ctx, const struct token *token,
+                  unsigned int ent, char *buf, unsigned int size)
+{
+       uint16_t idx = 0;
+       uint16_t nb = 0;
+
+       RTE_SET_USED(ctx);
+       RTE_SET_USED(token);
+       for (idx = 0; idx < RAW_ENCAP_CONFS_MAX_NUM; ++idx) {
+               if (buf && idx == ent)
+                       return snprintf(buf, size, "%u", idx);
+               ++nb;
+       }
+       return nb;
+}
+
+/** Complete index number for set raw_encap/raw_decap commands. */
+static int
+comp_set_sample_index(struct context *ctx, const struct token *token,
+                  unsigned int ent, char *buf, unsigned int size)
+{
+       uint16_t idx = 0;
+       uint16_t nb = 0;
+
+       RTE_SET_USED(ctx);
+       RTE_SET_USED(token);
+       for (idx = 0; idx < RAW_SAMPLE_CONFS_MAX_NUM; ++idx) {
+               if (buf && idx == ent)
+                       return snprintf(buf, size, "%u", idx);
+               ++nb;
+       }
+       return nb;
+}
+
 /** Internal context. */
 static struct context cmd_flow_context;
 
@@ -5668,13 +7264,37 @@ static void
 cmd_flow_parsed(const struct buffer *in)
 {
        switch (in->command) {
+       case SHARED_ACTION_CREATE:
+               port_shared_action_create(
+                               in->port, in->args.vc.attr.group,
+                               &((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;
+       case SHARED_ACTION_DESTROY:
+               port_shared_action_destroy(in->port,
+                                          in->args.sa_destroy.action_id_n,
+                                          in->args.sa_destroy.action_id);
+               break;
+       case SHARED_ACTION_UPDATE:
+               port_shared_action_update(in->port, in->args.vc.attr.group,
+                                         in->args.vc.actions);
+               break;
+       case SHARED_ACTION_QUERY:
+               port_shared_action_query(in->port, in->args.sa.action_id);
+               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,
@@ -5683,6 +7303,9 @@ cmd_flow_parsed(const struct buffer *in)
        case FLUSH:
                port_flow_flush(in->port);
                break;
+       case DUMP:
+               port_flow_dump(in->port, in->args.dump.file);
+               break;
        case QUERY:
                port_flow_query(in->port, in->args.query.rule,
                                &in->args.query.action);
@@ -5694,6 +7317,18 @@ cmd_flow_parsed(const struct buffer *in)
        case ISOLATE:
                port_flow_isolate(in->port, in->args.isolate.set);
                break;
+       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;
        }
@@ -5724,40 +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;
-               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;
-               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;
@@ -5843,21 +7480,92 @@ flow_item_default_mask(const struct rte_flow_item *item)
        case RTE_FLOW_ITEM_TYPE_GTP:
                mask = &rte_flow_item_gtp_mask;
                break;
-       case RTE_FLOW_ITEM_TYPE_ESP:
-               mask = &rte_flow_item_esp_mask;
-               break;
        case RTE_FLOW_ITEM_TYPE_GTP_PSC:
                mask = &rte_flow_item_gtp_psc_mask;
                break;
+       case RTE_FLOW_ITEM_TYPE_GENEVE:
+               mask = &rte_flow_item_geneve_mask;
+               break;
        case RTE_FLOW_ITEM_TYPE_PPPOE_PROTO_ID:
                mask = &rte_flow_item_pppoe_proto_id_mask;
+               break;
+       case RTE_FLOW_ITEM_TYPE_L2TPV3OIP:
+               mask = &rte_flow_item_l2tpv3oip_mask;
+               break;
+       case RTE_FLOW_ITEM_TYPE_ESP:
+               mask = &rte_flow_item_esp_mask;
+               break;
+       case RTE_FLOW_ITEM_TYPE_AH:
+               mask = &rte_flow_item_ah_mask;
+               break;
+       case RTE_FLOW_ITEM_TYPE_PFCP:
+               mask = &rte_flow_item_pfcp_mask;
+               break;
        default:
                break;
        }
        return mask;
 }
 
-
+/** Dispatch parsed buffer to function calls. */
+static void
+cmd_set_raw_parsed_sample(const struct buffer *in)
+{
+       uint32_t n = in->args.vc.actions_n;
+       uint32_t i = 0;
+       struct rte_flow_action *action = NULL;
+       struct rte_flow_action *data = NULL;
+       size_t size = 0;
+       uint16_t idx = in->port; /* We borrow port field as index */
+       uint32_t max_size = sizeof(struct rte_flow_action) *
+                                               ACTION_SAMPLE_ACTIONS_NUM;
+
+       RTE_ASSERT(in->command == SET_SAMPLE_ACTIONS);
+       data = (struct rte_flow_action *)&raw_sample_confs[idx].data;
+       memset(data, 0x00, max_size);
+       for (; i <= n - 1; i++) {
+               action = in->args.vc.actions + i;
+               if (action->type == RTE_FLOW_ACTION_TYPE_END)
+                       break;
+               switch (action->type) {
+               case RTE_FLOW_ACTION_TYPE_MARK:
+                       size = sizeof(struct rte_flow_action_mark);
+                       rte_memcpy(&sample_mark[idx],
+                               (const void *)action->conf, size);
+                       action->conf = &sample_mark[idx];
+                       break;
+               case RTE_FLOW_ACTION_TYPE_COUNT:
+                       size = sizeof(struct rte_flow_action_count);
+                       rte_memcpy(&sample_count[idx],
+                               (const void *)action->conf, size);
+                       action->conf = &sample_count[idx];
+                       break;
+               case RTE_FLOW_ACTION_TYPE_QUEUE:
+                       size = sizeof(struct rte_flow_action_queue);
+                       rte_memcpy(&sample_queue[idx],
+                               (const void *)action->conf, size);
+                       action->conf = &sample_queue[idx];
+                       break;
+               case RTE_FLOW_ACTION_TYPE_RAW_ENCAP:
+                       size = sizeof(struct rte_flow_action_raw_encap);
+                       rte_memcpy(&sample_encap[idx],
+                               (const void *)action->conf, size);
+                       action->conf = &sample_encap[idx];
+                       break;
+               case RTE_FLOW_ACTION_TYPE_PORT_ID:
+                       size = sizeof(struct rte_flow_action_port_id);
+                       rte_memcpy(&sample_port_id[idx],
+                               (const void *)action->conf, size);
+                       action->conf = &sample_port_id[idx];
+                       break;
+               default:
+                       printf("Error - Not supported action\n");
+                       return;
+               }
+               rte_memcpy(data, action, sizeof(struct rte_flow_action));
+               data++;
+       }
+}
 
 /** Dispatch parsed buffer to function calls. */
 static void
@@ -5872,15 +7580,18 @@ cmd_set_raw_parsed(const struct buffer *in)
        size_t *total_size = NULL;
        uint16_t upper_layer = 0;
        uint16_t proto = 0;
+       uint16_t idx = in->port; /* We borrow port field as index */
 
+       if (in->command == SET_SAMPLE_ACTIONS)
+               return cmd_set_raw_parsed_sample(in);
        RTE_ASSERT(in->command == SET_RAW_ENCAP ||
                   in->command == SET_RAW_DECAP);
        if (in->command == SET_RAW_ENCAP) {
-               total_size = &raw_encap_conf.size;
-               data = (uint8_t *)&raw_encap_conf.data;
+               total_size = &raw_encap_confs[idx].size;
+               data = (uint8_t *)&raw_encap_confs[idx].data;
        } else {
-               total_size = &raw_decap_conf.size;
-               data = (uint8_t *)&raw_decap_conf.data;
+               total_size = &raw_decap_confs[idx].size;
+               data = (uint8_t *)&raw_decap_confs[idx].data;
        }
        *total_size = 0;
        memset(data, 0x00, ACTION_RAW_ENCAP_MAX_DATA);
@@ -5892,48 +7603,71 @@ 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:
                        size = sizeof(rte_be32_t);
+                       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:
                        size = sizeof(struct rte_flow_item_nvgre);
                        proto = 0x2F;
                        break;
+               case RTE_FLOW_ITEM_TYPE_GENEVE:
+                       size = sizeof(struct rte_geneve_hdr);
+                       break;
+               case RTE_FLOW_ITEM_TYPE_L2TPV3OIP:
+                       size = sizeof(rte_be32_t);
+                       proto = 0x73;
+                       break;
+               case RTE_FLOW_ITEM_TYPE_ESP:
+                       size = sizeof(struct rte_esp_hdr);
+                       proto = 0x32;
+                       break;
+               case RTE_FLOW_ITEM_TYPE_AH:
+                       size = sizeof(struct rte_flow_item_ah);
+                       proto = 0x33;
+                       break;
+               case RTE_FLOW_ITEM_TYPE_GTP:
+                       size = sizeof(struct rte_gtp_hdr);
+                       break;
+               case RTE_FLOW_ITEM_TYPE_PFCP:
+                       size = sizeof(struct rte_flow_item_pfcp);
+                       break;
                default:
                        printf("Error - Not supported item\n");
                        *total_size = 0;
@@ -5950,6 +7684,7 @@ cmd_set_raw_parsed(const struct buffer *in)
        if (verbose_level & 0x1)
                printf("total data size is %zu\n", (*total_size));
        RTE_ASSERT((*total_size) <= ACTION_RAW_ENCAP_MAX_DATA);
+       memmove(data, (data_tail - (*total_size)), *total_size);
 }
 
 /** Populate help strings for current token (cmdline API). */
@@ -6034,3 +7769,80 @@ cmdline_parse_inst_t cmd_set_raw = {
                NULL,
        }, /**< Tokens are returned by cmd_flow_tok(). */
 };
+
+/* *** display raw_encap/raw_decap buf */
+struct cmd_show_set_raw_result {
+       cmdline_fixed_string_t cmd_show;
+       cmdline_fixed_string_t cmd_what;
+       cmdline_fixed_string_t cmd_all;
+       uint16_t cmd_index;
+};
+
+static void
+cmd_show_set_raw_parsed(void *parsed_result, struct cmdline *cl, void *data)
+{
+       struct cmd_show_set_raw_result *res = parsed_result;
+       uint16_t index = res->cmd_index;
+       uint8_t all = 0;
+       uint8_t *raw_data = NULL;
+       size_t raw_size = 0;
+       char title[16] = {0};
+
+       RTE_SET_USED(cl);
+       RTE_SET_USED(data);
+       if (!strcmp(res->cmd_all, "all")) {
+               all = 1;
+               index = 0;
+       } else if (index >= RAW_ENCAP_CONFS_MAX_NUM) {
+               printf("index should be 0-%u\n", RAW_ENCAP_CONFS_MAX_NUM - 1);
+               return;
+       }
+       do {
+               if (!strcmp(res->cmd_what, "raw_encap")) {
+                       raw_data = (uint8_t *)&raw_encap_confs[index].data;
+                       raw_size = raw_encap_confs[index].size;
+                       snprintf(title, 16, "\nindex: %u", index);
+                       rte_hexdump(stdout, title, raw_data, raw_size);
+               } else {
+                       raw_data = (uint8_t *)&raw_decap_confs[index].data;
+                       raw_size = raw_decap_confs[index].size;
+                       snprintf(title, 16, "\nindex: %u", index);
+                       rte_hexdump(stdout, title, raw_data, raw_size);
+               }
+       } while (all && ++index < RAW_ENCAP_CONFS_MAX_NUM);
+}
+
+cmdline_parse_token_string_t cmd_show_set_raw_cmd_show =
+       TOKEN_STRING_INITIALIZER(struct cmd_show_set_raw_result,
+                       cmd_show, "show");
+cmdline_parse_token_string_t cmd_show_set_raw_cmd_what =
+       TOKEN_STRING_INITIALIZER(struct cmd_show_set_raw_result,
+                       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, 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");
+cmdline_parse_inst_t cmd_show_set_raw = {
+       .f = cmd_show_set_raw_parsed,
+       .data = NULL,
+       .help_str = "show <raw_encap|raw_decap> <index>",
+       .tokens = {
+               (void *)&cmd_show_set_raw_cmd_show,
+               (void *)&cmd_show_set_raw_cmd_what,
+               (void *)&cmd_show_set_raw_cmd_index,
+               NULL,
+       },
+};
+cmdline_parse_inst_t cmd_show_set_raw_all = {
+       .f = cmd_show_set_raw_parsed,
+       .data = NULL,
+       .help_str = "show <raw_encap|raw_decap> all",
+       .tokens = {
+               (void *)&cmd_show_set_raw_cmd_show,
+               (void *)&cmd_show_set_raw_cmd_what,
+               (void *)&cmd_show_set_raw_cmd_all,
+               NULL,
+       },
+};