Signed-off-by: Nelio Laranjeiro <nelio.laranje...@6wind.com>
Acked-by: Adrien Mazarguil <adrien.mazarg...@6wind.com>
---
 drivers/net/mlx5/mlx5_flow.c | 72 ++++++++++++++++++++++++++++++++++++++++----
 1 file changed, 66 insertions(+), 6 deletions(-)

diff --git a/drivers/net/mlx5/mlx5_flow.c b/drivers/net/mlx5/mlx5_flow.c
index 549da6c..1ec0ef5 100644
--- a/drivers/net/mlx5/mlx5_flow.c
+++ b/drivers/net/mlx5/mlx5_flow.c
@@ -69,6 +69,9 @@ mlx5_flow_create_udp(const struct rte_flow_item *item, void 
*data);
 static int
 mlx5_flow_create_tcp(const struct rte_flow_item *item, void *data);
 
+static int
+mlx5_flow_create_vxlan(const struct rte_flow_item *item, void *data);
+
 struct rte_flow {
        LIST_ENTRY(rte_flow) next; /**< Pointer to the next flow structure. */
        struct ibv_exp_flow_attr *ibv_attr; /**< Pointer to Verbs attributes. */
@@ -123,7 +126,8 @@ static const enum rte_flow_action_type valid_actions[] = {
 static const struct mlx5_flow_items mlx5_flow_items[] = {
        [RTE_FLOW_ITEM_TYPE_VOID] = {
                .items = ITEMS(RTE_FLOW_ITEM_TYPE_VOID,
-                              RTE_FLOW_ITEM_TYPE_ETH),
+                              RTE_FLOW_ITEM_TYPE_ETH,
+                              RTE_FLOW_ITEM_TYPE_VXLAN),
                .actions = valid_actions,
                .mask = &(const struct rte_flow_item_eth){
                        .dst.addr_bytes = "\xff\xff\xff\xff\xff\xff",
@@ -196,6 +200,7 @@ static const struct mlx5_flow_items mlx5_flow_items[] = {
                .dst_sz = sizeof(struct ibv_exp_flow_spec_ipv6),
        },
        [RTE_FLOW_ITEM_TYPE_UDP] = {
+               .items = ITEMS(RTE_FLOW_ITEM_TYPE_VXLAN),
                .actions = valid_actions,
                .mask = &(const struct rte_flow_item_udp){
                        .hdr = {
@@ -219,12 +224,23 @@ static const struct mlx5_flow_items mlx5_flow_items[] = {
                .convert = mlx5_flow_create_tcp,
                .dst_sz = sizeof(struct ibv_exp_flow_spec_tcp_udp),
        },
+       [RTE_FLOW_ITEM_TYPE_VXLAN] = {
+               .items = ITEMS(RTE_FLOW_ITEM_TYPE_ETH),
+               .actions = valid_actions,
+               .mask = &(const struct rte_flow_item_vxlan){
+                       .vni = "\xff\xff\xff",
+               },
+               .mask_sz = sizeof(struct rte_flow_item_vxlan),
+               .convert = mlx5_flow_create_vxlan,
+               .dst_sz = sizeof(struct ibv_exp_flow_spec_tunnel),
+       },
 };
 
 /** Structure to pass to the conversion function. */
 struct mlx5_flow {
        struct ibv_exp_flow_attr *ibv_attr; /**< Verbs attribute. */
        unsigned int offset; /**< Offset in bytes in the ibv_attr buffer. */
+       uint32_t inner; /**< Set once VXLAN is encountered. */
 };
 
 struct mlx5_flow_action {
@@ -474,7 +490,7 @@ mlx5_flow_create_eth(const struct rte_flow_item *item, void 
*data)
 
        eth = (void *)((uintptr_t)flow->ibv_attr + flow->offset);
        *eth = (struct ibv_exp_flow_spec_eth) {
-               .type = IBV_EXP_FLOW_SPEC_ETH,
+               .type = flow->inner | IBV_EXP_FLOW_SPEC_ETH,
                .size = eth_size,
        };
        if (spec) {
@@ -541,7 +557,7 @@ mlx5_flow_create_ipv4(const struct rte_flow_item *item, 
void *data)
 
        ipv4 = (void *)((uintptr_t)flow->ibv_attr + flow->offset);
        *ipv4 = (struct ibv_exp_flow_spec_ipv4) {
-               .type = IBV_EXP_FLOW_SPEC_IPV4,
+               .type = flow->inner | IBV_EXP_FLOW_SPEC_IPV4,
                .size = ipv4_size,
        };
        if (spec) {
@@ -584,7 +600,7 @@ mlx5_flow_create_ipv6(const struct rte_flow_item *item, 
void *data)
 
        ipv6 = (void *)((uintptr_t)flow->ibv_attr + flow->offset);
        *ipv6 = (struct ibv_exp_flow_spec_ipv6) {
-               .type = IBV_EXP_FLOW_SPEC_IPV6,
+               .type = flow->inner | IBV_EXP_FLOW_SPEC_IPV6,
                .size = ipv6_size,
        };
        if (spec) {
@@ -628,7 +644,7 @@ mlx5_flow_create_udp(const struct rte_flow_item *item, void 
*data)
 
        udp = (void *)((uintptr_t)flow->ibv_attr + flow->offset);
        *udp = (struct ibv_exp_flow_spec_tcp_udp) {
-               .type = IBV_EXP_FLOW_SPEC_UDP,
+               .type = flow->inner | IBV_EXP_FLOW_SPEC_UDP,
                .size = udp_size,
        };
        if (spec) {
@@ -666,7 +682,7 @@ mlx5_flow_create_tcp(const struct rte_flow_item *item, void 
*data)
 
        tcp = (void *)((uintptr_t)flow->ibv_attr + flow->offset);
        *tcp = (struct ibv_exp_flow_spec_tcp_udp) {
-               .type = IBV_EXP_FLOW_SPEC_TCP,
+               .type = flow->inner | IBV_EXP_FLOW_SPEC_TCP,
                .size = tcp_size,
        };
        if (spec) {
@@ -686,6 +702,49 @@ mlx5_flow_create_tcp(const struct rte_flow_item *item, 
void *data)
 }
 
 /**
+ * Convert VXLAN item to Verbs specification.
+ *
+ * @param item[in]
+ *   Item specification.
+ * @param data[in, out]
+ *   User structure.
+ */
+static int
+mlx5_flow_create_vxlan(const struct rte_flow_item *item, void *data)
+{
+       const struct rte_flow_item_vxlan *spec = item->spec;
+       const struct rte_flow_item_vxlan *mask = item->mask;
+       struct mlx5_flow *flow = (struct mlx5_flow *)data;
+       struct ibv_exp_flow_spec_tunnel *vxlan;
+       unsigned int size = sizeof(struct ibv_exp_flow_spec_tunnel);
+       union vni {
+               uint32_t vlan_id;
+               uint8_t vni[4];
+       } id;
+
+       id.vni[0] = 0;
+       vxlan = (void *)((uintptr_t)flow->ibv_attr + flow->offset);
+       *vxlan = (struct ibv_exp_flow_spec_tunnel) {
+               .type = flow->inner | IBV_EXP_FLOW_SPEC_VXLAN_TUNNEL,
+               .size = size,
+       };
+       if (spec) {
+               memcpy(&id.vni[1], spec->vni, 3);
+               vxlan->val.tunnel_id = id.vlan_id;
+       }
+       if (mask) {
+               memcpy(&id.vni[1], mask->vni, 3);
+               vxlan->mask.tunnel_id = id.vlan_id;
+       }
+       /* Remove unwanted bits from values. */
+       vxlan->val.tunnel_id &= vxlan->mask.tunnel_id;
+       ++flow->ibv_attr->num_of_specs;
+       flow->ibv_attr->priority = 0;
+       flow->inner = IBV_EXP_FLOW_SPEC_INNER;
+       return 0;
+}
+
+/**
  * Complete flow rule creation.
  *
  * @param priv
@@ -852,6 +911,7 @@ priv_flow_create(struct priv *priv,
                .flags = 0,
                .reserved = 0,
        };
+       flow.inner = 0;
        claim_zero(priv_flow_validate(priv, attr, items, actions,
                                      error, &flow));
        action = (struct mlx5_flow_action){
-- 
2.1.4

Reply via email to