]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
IB/core: Add flow spec tunneling support
authorMoses Reuben <mosesr@mellanox.com>
Mon, 14 Nov 2016 17:04:47 +0000 (19:04 +0200)
committerDoug Ledford <dledford@redhat.com>
Tue, 13 Dec 2016 18:34:21 +0000 (13:34 -0500)
In order to support tunneling, that can be used by the QP,
both struct ib_flow_spec_tunnel and struct ib_flow_tunnel_filter can be
used to more IP or UDP based tunneling protocols (e.g NVGRE, GRE, etc).

IB_FLOW_SPEC_VXLAN_TUNNEL type flow specification is added to use this
functionality and match specific Vxlan packets.

In similar to IPv6, we check overflow of the vni value by
comparing with the maximum size.

Signed-off-by: Moses Reuben <mosesr@mellanox.com>
Reviewed-by: Maor Gottlieb <maorg@mellanox.com>
Signed-off-by: Leon Romanovsky <leon@kernel.org>
Signed-off-by: Doug Ledford <dledford@redhat.com>
drivers/infiniband/core/uverbs_cmd.c
include/rdma/ib_verbs.h

index 2690c9263ee460d9a0daf9aa0c07f6bcf5975525..deb06fa3548ba7e80ef49c2c8e864f439a313945 100644 (file)
@@ -3175,6 +3175,21 @@ static int kern_spec_to_ib_spec(struct ib_uverbs_flow_spec *kern_spec,
                memcpy(&ib_spec->tcp_udp.val, kern_spec_val, actual_filter_sz);
                memcpy(&ib_spec->tcp_udp.mask, kern_spec_mask, actual_filter_sz);
                break;
+       case IB_FLOW_SPEC_VXLAN_TUNNEL:
+               ib_filter_sz = offsetof(struct ib_flow_tunnel_filter, real_sz);
+               actual_filter_sz = spec_filter_size(kern_spec_mask,
+                                                   kern_filter_sz,
+                                                   ib_filter_sz);
+               if (actual_filter_sz <= 0)
+                       return -EINVAL;
+               ib_spec->tunnel.size = sizeof(struct ib_flow_spec_tunnel);
+               memcpy(&ib_spec->tunnel.val, kern_spec_val, actual_filter_sz);
+               memcpy(&ib_spec->tunnel.mask, kern_spec_mask, actual_filter_sz);
+
+               if ((ntohl(ib_spec->tunnel.mask.tunnel_id)) >= BIT(24) ||
+                   (ntohl(ib_spec->tunnel.val.tunnel_id)) >= BIT(24))
+                       return -EINVAL;
+               break;
        default:
                return -EINVAL;
        }
index 467a4b476e295b81616dae3ab4f8339d15c89301..b8213818de8963b66d705709da95b2dabaee9c01 100644 (file)
@@ -1599,7 +1599,8 @@ enum ib_flow_spec_type {
        IB_FLOW_SPEC_IPV6       = 0x31,
        /* L4 headers*/
        IB_FLOW_SPEC_TCP        = 0x40,
-       IB_FLOW_SPEC_UDP        = 0x41
+       IB_FLOW_SPEC_UDP        = 0x41,
+       IB_FLOW_SPEC_VXLAN_TUNNEL       = 0x50,
 };
 #define IB_FLOW_SPEC_LAYER_MASK        0xF0
 #define IB_FLOW_SPEC_SUPPORT_LAYERS 4
@@ -1707,6 +1708,21 @@ struct ib_flow_spec_tcp_udp {
        struct ib_flow_tcp_udp_filter mask;
 };
 
+struct ib_flow_tunnel_filter {
+       __be32  tunnel_id;
+       u8      real_sz[0];
+};
+
+/* ib_flow_spec_tunnel describes the Vxlan tunnel
+ * the tunnel_id from val has the vni value
+ */
+struct ib_flow_spec_tunnel {
+       enum ib_flow_spec_type        type;
+       u16                           size;
+       struct ib_flow_tunnel_filter  val;
+       struct ib_flow_tunnel_filter  mask;
+};
+
 union ib_flow_spec {
        struct {
                enum ib_flow_spec_type  type;
@@ -1717,6 +1733,7 @@ union ib_flow_spec {
        struct ib_flow_spec_ipv4        ipv4;
        struct ib_flow_spec_tcp_udp     tcp_udp;
        struct ib_flow_spec_ipv6        ipv6;
+       struct ib_flow_spec_tunnel      tunnel;
 };
 
 struct ib_flow_attr {