From: Flavia Musatescu Date: Wed, 23 Oct 2019 13:19:27 +0000 (+0100) Subject: net: add new header file for VXLAN X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=512d873ff19939a9890f7b4e857bbf76d995db95;p=dpdk.git net: add new header file for VXLAN The VXLAN related definitions and structures are moved from rte_ether.h to a new header file: rte_xvlan.h. Also introducing a new define macro for VXLAN default port id: RTE_VXLAN_DEFAULT_PORT Signed-off-by: Flavia Musatescu Reviewed-by: Ferruh Yigit Tested-by: Raslan Darawsheh --- diff --git a/app/test-pmd/csumonly.c b/app/test-pmd/csumonly.c index c3fd5e17d1..e12695d947 100644 --- a/app/test-pmd/csumonly.c +++ b/app/test-pmd/csumonly.c @@ -35,6 +35,7 @@ #include #include #include +#include #include #include #include diff --git a/app/test-pmd/util.c b/app/test-pmd/util.c index 1570270a8d..f20531dc91 100644 --- a/app/test-pmd/util.c +++ b/app/test-pmd/util.c @@ -8,6 +8,7 @@ #include #include #include +#include #include #include diff --git a/doc/api/doxy-api-index.md b/doc/api/doxy-api-index.md index 49ac0d14da..b11f8530a5 100644 --- a/doc/api/doxy-api-index.md +++ b/doc/api/doxy-api-index.md @@ -107,7 +107,8 @@ The public API headers are grouped by topics: [GSO] (@ref rte_gso.h), [frag/reass] (@ref rte_ip_frag.h), [LPM IPv4 route] (@ref rte_lpm.h), - [LPM IPv6 route] (@ref rte_lpm6.h) + [LPM IPv6 route] (@ref rte_lpm6.h), + [VXLAN] (@ref rte_vxlan.h) - **QoS**: [metering] (@ref rte_meter.h), diff --git a/drivers/net/enic/enic.h b/drivers/net/enic/enic.h index 14563dbb92..4cf73723f1 100644 --- a/drivers/net/enic/enic.h +++ b/drivers/net/enic/enic.h @@ -6,6 +6,8 @@ #ifndef _ENIC_H_ #define _ENIC_H_ +#include + #include "vnic_enet.h" #include "vnic_dev.h" #include "vnic_flowman.h" @@ -51,9 +53,6 @@ #define ENICPMD_FDIR_MAX 64 -/* HW default VXLAN port */ -#define ENIC_DEFAULT_VXLAN_PORT 4789 - /* * Interrupt 0: LSC and errors * Interrupt 1: rx queue 0 diff --git a/drivers/net/enic/enic_ethdev.c b/drivers/net/enic/enic_ethdev.c index 746e0458aa..12c59a3c59 100644 --- a/drivers/net/enic/enic_ethdev.c +++ b/drivers/net/enic/enic_ethdev.c @@ -1056,7 +1056,7 @@ static int enicpmd_dev_udp_tunnel_port_del(struct rte_eth_dev *eth_dev, tnl->udp_port); return -EINVAL; } - return update_vxlan_port(enic, ENIC_DEFAULT_VXLAN_PORT); + return update_vxlan_port(enic, RTE_VXLAN_DEFAULT_PORT); } static int enicpmd_dev_fw_version_get(struct rte_eth_dev *eth_dev, diff --git a/drivers/net/enic/enic_main.c b/drivers/net/enic/enic_main.c index cb07aa5c94..dda0afede5 100644 --- a/drivers/net/enic/enic_main.c +++ b/drivers/net/enic/enic_main.c @@ -1767,14 +1767,14 @@ static int enic_dev_init(struct enic *enic) * enable/disable. */ if (enic->vxlan) { - enic->vxlan_port = ENIC_DEFAULT_VXLAN_PORT; + enic->vxlan_port = RTE_VXLAN_DEFAULT_PORT; /* * Reset the vxlan port to the default, as the NIC firmware * does not reset it automatically and keeps the old setting. */ if (vnic_dev_overlay_offload_cfg(enic->vdev, OVERLAY_CFG_VXLAN_PORT_UPDATE, - ENIC_DEFAULT_VXLAN_PORT)) { + RTE_VXLAN_DEFAULT_PORT)) { dev_err(enic, "failed to update vxlan port\n"); return -EINVAL; } diff --git a/drivers/net/hns3/hns3_rxtx.c b/drivers/net/hns3/hns3_rxtx.c index 184b8e4b68..fdac55aae5 100644 --- a/drivers/net/hns3/hns3_rxtx.c +++ b/drivers/net/hns3/hns3_rxtx.c @@ -15,6 +15,7 @@ #include #include #include +#include #include #include #include diff --git a/drivers/net/ixgbe/ixgbe_fdir.c b/drivers/net/ixgbe/ixgbe_fdir.c index e559f0fa85..166dae1e03 100644 --- a/drivers/net/ixgbe/ixgbe_fdir.c +++ b/drivers/net/ixgbe/ixgbe_fdir.c @@ -12,7 +12,7 @@ #include #include #include -#include +#include #include #include @@ -77,7 +77,6 @@ rte_memcpy((ipaddr), ipv6_addr, sizeof(ipv6_addr));\ } while (0) -#define DEFAULT_VXLAN_PORT 4789 #define IXGBE_FDIRIP6M_INNER_MAC_SHIFT 4 static int fdir_erase_filter_82599(struct ixgbe_hw *hw, uint32_t fdirhash); @@ -366,7 +365,7 @@ fdir_set_input_mask_x550(struct rte_eth_dev *dev) /* set the default UDP port for VxLAN */ if (mode == RTE_FDIR_MODE_PERFECT_TUNNEL) - IXGBE_WRITE_REG(hw, IXGBE_VXLANCTRL, DEFAULT_VXLAN_PORT); + IXGBE_WRITE_REG(hw, IXGBE_VXLANCTRL, RTE_VXLAN_DEFAULT_PORT); /* some bits must be set for mac vlan or tunnel mode */ fdirm |= IXGBE_FDIRM_L4P | IXGBE_FDIRM_L3P; diff --git a/drivers/net/mlx5/mlx5_defs.h b/drivers/net/mlx5/mlx5_defs.h index 248ef3c8ac..e36ab55251 100644 --- a/drivers/net/mlx5/mlx5_defs.h +++ b/drivers/net/mlx5/mlx5_defs.h @@ -7,6 +7,7 @@ #define RTE_PMD_MLX5_DEFS_H_ #include +#include #include "mlx5_autoconf.h" diff --git a/drivers/net/mlx5/mlx5_flow_dv.c b/drivers/net/mlx5/mlx5_flow_dv.c index b1aa427851..e5f4c4c519 100644 --- a/drivers/net/mlx5/mlx5_flow_dv.c +++ b/drivers/net/mlx5/mlx5_flow_dv.c @@ -26,6 +26,7 @@ #include #include #include +#include #include "mlx5.h" #include "mlx5_defs.h" diff --git a/examples/tep_termination/vxlan.c b/examples/tep_termination/vxlan.c index 52c35a74bb..0ba6b8be8b 100644 --- a/examples/tep_termination/vxlan.c +++ b/examples/tep_termination/vxlan.c @@ -159,7 +159,7 @@ decapsulation(struct rte_mbuf *pkt) /** check udp destination port, 4789 is the default vxlan port * (rfc7348) or that the rx offload flag is set (i40e only * currently)*/ - if (udp_hdr->dst_port != rte_cpu_to_be_16(DEFAULT_VXLAN_PORT) && + if (udp_hdr->dst_port != rte_cpu_to_be_16(RTE_VXLAN_DEFAULT_PORT) && (pkt->packet_type & RTE_PTYPE_TUNNEL_MASK) == 0) return -1; outer_header_len = info.outer_l2_len + info.outer_l3_len diff --git a/examples/tep_termination/vxlan.h b/examples/tep_termination/vxlan.h index 689aea4514..587fb9fe57 100644 --- a/examples/tep_termination/vxlan.h +++ b/examples/tep_termination/vxlan.h @@ -7,6 +7,7 @@ #include #include +#include #define PORT_MIN 49152 #define PORT_MAX 65535 @@ -14,7 +15,6 @@ #define VXLAN_N_PORTS 2 #define VXLAN_HF_VNI 0x08000000 -#define DEFAULT_VXLAN_PORT 4789 extern struct rte_ipv4_hdr app_ip_hdr[VXLAN_N_PORTS]; extern struct rte_ether_hdr app_l2_hdr[VXLAN_N_PORTS]; diff --git a/lib/librte_gro/gro_tcp4.h b/lib/librte_gro/gro_tcp4.h index 9fe291191f..bb875a5ef0 100644 --- a/lib/librte_gro/gro_tcp4.h +++ b/lib/librte_gro/gro_tcp4.h @@ -7,6 +7,7 @@ #include #include +#include #define INVALID_ARRAY_INDEX 0xffffffffUL #define GRO_TCP4_TBL_MAX_ITEM_NUM (1024UL * 1024UL) diff --git a/lib/librte_net/Makefile b/lib/librte_net/Makefile index 9379e116bd..c79f84d7c6 100644 --- a/lib/librte_net/Makefile +++ b/lib/librte_net/Makefile @@ -22,6 +22,6 @@ SYMLINK-$(CONFIG_RTE_LIBRTE_NET)-include := rte_ip.h rte_tcp.h rte_udp.h rte_esp SYMLINK-$(CONFIG_RTE_LIBRTE_NET)-include += rte_sctp.h rte_icmp.h rte_arp.h SYMLINK-$(CONFIG_RTE_LIBRTE_NET)-include += rte_ether.h rte_gre.h rte_net.h SYMLINK-$(CONFIG_RTE_LIBRTE_NET)-include += rte_net_crc.h rte_mpls.h rte_higig.h -SYMLINK-$(CONFIG_RTE_LIBRTE_NET)-include += rte_gtp.h +SYMLINK-$(CONFIG_RTE_LIBRTE_NET)-include += rte_gtp.h rte_vxlan.h include $(RTE_SDK)/mk/rte.lib.mk diff --git a/lib/librte_net/meson.build b/lib/librte_net/meson.build index b017168b49..090284b688 100644 --- a/lib/librte_net/meson.build +++ b/lib/librte_net/meson.build @@ -11,6 +11,7 @@ headers = files('rte_ip.h', 'rte_icmp.h', 'rte_arp.h', 'rte_ether.h', + 'rte_vxlan.h', 'rte_gre.h', 'rte_gtp.h', 'rte_net.h', diff --git a/lib/librte_net/rte_ether.h b/lib/librte_net/rte_ether.h index 7c89626edd..13210f2fd0 100644 --- a/lib/librte_net/rte_ether.h +++ b/lib/librte_net/rte_ether.h @@ -285,15 +285,7 @@ struct rte_vlan_hdr { uint16_t eth_proto;/**< Ethernet type of encapsulated frame. */ } __attribute__((__packed__)); -/** - * VXLAN protocol header. - * Contains the 8-bit flag, 24-bit VXLAN Network Identifier and - * Reserved fields (24 bits and 8 bits) - */ -struct rte_vxlan_hdr { - uint32_t vx_flags; /**< flag (8) + Reserved (24). */ - uint32_t vx_vni; /**< VNI (24) + Reserved (8). */ -} __attribute__((__packed__)); + /* Ethernet frame types */ #define RTE_ETHER_TYPE_IPV4 0x0800 /**< IPv4 Protocol. */ @@ -313,35 +305,6 @@ struct rte_vxlan_hdr { #define RTE_ETHER_TYPE_MPLS 0x8847 /**< MPLS ethertype. */ #define RTE_ETHER_TYPE_MPLSM 0x8848 /**< MPLS multicast ethertype. */ -#define RTE_ETHER_VXLAN_HLEN \ - (sizeof(struct rte_udp_hdr) + sizeof(struct rte_vxlan_hdr)) - /**< VXLAN tunnel header length. */ - -/** - * VXLAN-GPE protocol header (draft-ietf-nvo3-vxlan-gpe-05). - * Contains the 8-bit flag, 8-bit next-protocol, 24-bit VXLAN Network - * Identifier and Reserved fields (16 bits and 8 bits). - */ -struct rte_vxlan_gpe_hdr { - uint8_t vx_flags; /**< flag (8). */ - uint8_t reserved[2]; /**< Reserved (16). */ - uint8_t proto; /**< next-protocol (8). */ - uint32_t vx_vni; /**< VNI (24) + Reserved (8). */ -} __attribute__((__packed__)); - -/* VXLAN-GPE next protocol types */ -#define RTE_VXLAN_GPE_TYPE_IPV4 1 /**< IPv4 Protocol. */ -#define RTE_VXLAN_GPE_TYPE_IPV6 2 /**< IPv6 Protocol. */ -#define RTE_VXLAN_GPE_TYPE_ETH 3 /**< Ethernet Protocol. */ -#define RTE_VXLAN_GPE_TYPE_NSH 4 /**< NSH Protocol. */ -#define RTE_VXLAN_GPE_TYPE_MPLS 5 /**< MPLS Protocol. */ -#define RTE_VXLAN_GPE_TYPE_GBP 6 /**< GBP Protocol. */ -#define RTE_VXLAN_GPE_TYPE_VBNG 7 /**< vBNG Protocol. */ - -#define RTE_ETHER_VXLAN_GPE_HLEN (sizeof(struct rte_udp_hdr) + \ - sizeof(struct rte_vxlan_gpe_hdr)) -/**< VXLAN-GPE tunnel header length. */ - /** * Extract VLAN tag information into mbuf * diff --git a/lib/librte_net/rte_vxlan.h b/lib/librte_net/rte_vxlan.h new file mode 100644 index 0000000000..63fc27240f --- /dev/null +++ b/lib/librte_net/rte_vxlan.h @@ -0,0 +1,71 @@ +/* SPDX-License-Identifier: BSD-3-Clause + * Copyright(c) 2018-2019 Intel Corporation + */ + +#ifndef _RTE_VXLAN_H_ +#define _RTE_VXLAN_H_ + +/** + * @file + * + * VXLAN-related definitions + */ + +#include + +#include + + +#ifdef __cplusplus +extern "C" { +#endif + +/** VXLAN default port. */ +#define RTE_VXLAN_DEFAULT_PORT 4789 + +/** + * VXLAN protocol header. + * Contains the 8-bit flag, 24-bit VXLAN Network Identifier and + * Reserved fields (24 bits and 8 bits) + */ +struct rte_vxlan_hdr { + uint32_t vx_flags; /**< flag (8) + Reserved (24). */ + uint32_t vx_vni; /**< VNI (24) + Reserved (8). */ +} __attribute__((__packed__)); + +/** VXLAN tunnel header length. */ +#define RTE_ETHER_VXLAN_HLEN \ + (sizeof(struct rte_udp_hdr) + sizeof(struct rte_vxlan_hdr)) + + +/** + * VXLAN-GPE protocol header (draft-ietf-nvo3-vxlan-gpe-05). + * Contains the 8-bit flag, 8-bit next-protocol, 24-bit VXLAN Network + * Identifier and Reserved fields (16 bits and 8 bits). + */ +struct rte_vxlan_gpe_hdr { + uint8_t vx_flags; /**< flag (8). */ + uint8_t reserved[2]; /**< Reserved (16). */ + uint8_t proto; /**< next-protocol (8). */ + uint32_t vx_vni; /**< VNI (24) + Reserved (8). */ +} __attribute__((__packed__)); + +/** VXLAN-GPE tunnel header length. */ +#define RTE_ETHER_VXLAN_GPE_HLEN (sizeof(struct rte_udp_hdr) + \ + sizeof(struct rte_vxlan_gpe_hdr)) + +/* VXLAN-GPE next protocol types */ +#define RTE_VXLAN_GPE_TYPE_IPV4 1 /**< IPv4 Protocol. */ +#define RTE_VXLAN_GPE_TYPE_IPV6 2 /**< IPv6 Protocol. */ +#define RTE_VXLAN_GPE_TYPE_ETH 3 /**< Ethernet Protocol. */ +#define RTE_VXLAN_GPE_TYPE_NSH 4 /**< NSH Protocol. */ +#define RTE_VXLAN_GPE_TYPE_MPLS 5 /**< MPLS Protocol. */ +#define RTE_VXLAN_GPE_TYPE_GBP 6 /**< GBP Protocol. */ +#define RTE_VXLAN_GPE_TYPE_VBNG 7 /**< vBNG Protocol. */ + + +#ifdef __cplusplus +} +#endif + +#endif /* RTE_VXLAN_H_ */ diff --git a/lib/librte_pipeline/rte_table_action.c b/lib/librte_pipeline/rte_table_action.c index 45dde7119f..961f006607 100644 --- a/lib/librte_pipeline/rte_table_action.c +++ b/lib/librte_pipeline/rte_table_action.c @@ -14,6 +14,7 @@ #include #include #include +#include #include #include