Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2015 Cisco and/or its affiliates. |
| 3 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | * you may not use this file except in compliance with the License. |
| 5 | * You may obtain a copy of the License at: |
| 6 | * |
| 7 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | * |
| 9 | * Unless required by applicable law or agreed to in writing, software |
| 10 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | * See the License for the specific language governing permissions and |
| 13 | * limitations under the License. |
| 14 | */ |
| 15 | #ifndef included_vnet_vxlan_h |
| 16 | #define included_vnet_vxlan_h |
| 17 | |
| 18 | #include <vppinfra/error.h> |
| 19 | #include <vppinfra/hash.h> |
Eyal Bari | dd47eca | 2018-07-08 08:15:56 +0300 | [diff] [blame] | 20 | #include <vppinfra/bihash_16_8.h> |
Eyal Bari | 0fa5678 | 2018-06-04 12:25:05 +0300 | [diff] [blame] | 21 | #include <vppinfra/bihash_24_8.h> |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 22 | #include <vnet/vnet.h> |
| 23 | #include <vnet/ip/ip.h> |
| 24 | #include <vnet/l2/l2_input.h> |
John Lo | 3ef822e | 2016-06-07 09:14:07 -0400 | [diff] [blame] | 25 | #include <vnet/l2/l2_output.h> |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 26 | #include <vnet/l2/l2_bd.h> |
| 27 | #include <vnet/ethernet/ethernet.h> |
| 28 | #include <vnet/vxlan/vxlan_packet.h> |
| 29 | #include <vnet/ip/ip4_packet.h> |
Chris Luke | 99cb335 | 2016-04-26 10:49:53 -0400 | [diff] [blame] | 30 | #include <vnet/ip/ip6_packet.h> |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 31 | #include <vnet/udp/udp.h> |
John Lo | c42912d | 2016-11-07 18:30:47 -0500 | [diff] [blame] | 32 | #include <vnet/dpo/dpo.h> |
Eyal Bari | c5b1360 | 2016-11-24 19:42:43 +0200 | [diff] [blame] | 33 | #include <vnet/adj/adj_types.h> |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 34 | |
Eyal Bari | 0fa5678 | 2018-06-04 12:25:05 +0300 | [diff] [blame] | 35 | /* *INDENT-OFF* */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 36 | typedef CLIB_PACKED (struct { |
Eyal Bari | 0fa5678 | 2018-06-04 12:25:05 +0300 | [diff] [blame] | 37 | ip4_header_t ip4; /* 20 bytes */ |
| 38 | udp_header_t udp; /* 8 bytes */ |
| 39 | vxlan_header_t vxlan; /* 8 bytes */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 40 | }) ip4_vxlan_header_t; |
| 41 | |
Chris Luke | 99cb335 | 2016-04-26 10:49:53 -0400 | [diff] [blame] | 42 | typedef CLIB_PACKED (struct { |
Eyal Bari | 0fa5678 | 2018-06-04 12:25:05 +0300 | [diff] [blame] | 43 | ip6_header_t ip6; /* 40 bytes */ |
| 44 | udp_header_t udp; /* 8 bytes */ |
| 45 | vxlan_header_t vxlan; /* 8 bytes */ |
Chris Luke | 99cb335 | 2016-04-26 10:49:53 -0400 | [diff] [blame] | 46 | }) ip6_vxlan_header_t; |
Eyal Bari | dd47eca | 2018-07-08 08:15:56 +0300 | [diff] [blame] | 47 | /* *INDENT-ON* */ |
Chris Luke | 99cb335 | 2016-04-26 10:49:53 -0400 | [diff] [blame] | 48 | |
Eyal Bari | dd47eca | 2018-07-08 08:15:56 +0300 | [diff] [blame] | 49 | /* |
| 50 | * Key fields: remote ip, vni on incoming VXLAN packet |
| 51 | * all fields in NET byte order |
| 52 | */ |
| 53 | typedef clib_bihash_kv_16_8_t vxlan4_tunnel_key_t; |
Chris Luke | 99cb335 | 2016-04-26 10:49:53 -0400 | [diff] [blame] | 54 | |
Eyal Bari | 0fa5678 | 2018-06-04 12:25:05 +0300 | [diff] [blame] | 55 | /* |
| 56 | * Key fields: remote ip, vni and fib index on incoming VXLAN packet |
| 57 | * ip, vni fields in NET byte order |
| 58 | * fib index field in host byte order |
| 59 | */ |
Eyal Bari | dd47eca | 2018-07-08 08:15:56 +0300 | [diff] [blame] | 60 | typedef clib_bihash_kv_24_8_t vxlan6_tunnel_key_t; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 61 | |
Eyal Bari | 0fa5678 | 2018-06-04 12:25:05 +0300 | [diff] [blame] | 62 | typedef struct |
| 63 | { |
Dave Barach | eb987d3 | 2018-05-03 08:26:39 -0400 | [diff] [blame] | 64 | /* Required for pool_get_aligned */ |
Eyal Bari | 0fa5678 | 2018-06-04 12:25:05 +0300 | [diff] [blame] | 65 | CLIB_CACHE_LINE_ALIGN_MARK (cacheline0); |
Dave Barach | eb987d3 | 2018-05-03 08:26:39 -0400 | [diff] [blame] | 66 | |
John Lo | c42912d | 2016-11-07 18:30:47 -0500 | [diff] [blame] | 67 | /* FIB DPO for IP forwarding of VXLAN encap packet */ |
Eyal Bari | 0fa5678 | 2018-06-04 12:25:05 +0300 | [diff] [blame] | 68 | dpo_id_t next_dpo; |
John Lo | c42912d | 2016-11-07 18:30:47 -0500 | [diff] [blame] | 69 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 70 | /* vxlan VNI in HOST byte order */ |
| 71 | u32 vni; |
| 72 | |
John Lo | c42912d | 2016-11-07 18:30:47 -0500 | [diff] [blame] | 73 | /* tunnel src and dst addresses */ |
| 74 | ip46_address_t src; |
| 75 | ip46_address_t dst; |
Chris Luke | 99cb335 | 2016-04-26 10:49:53 -0400 | [diff] [blame] | 76 | |
John Lo | 56912c8 | 2016-12-08 16:10:02 -0500 | [diff] [blame] | 77 | /* mcast packet output intfc index (used only if dst is mcast) */ |
Eyal Bari | c5b1360 | 2016-11-24 19:42:43 +0200 | [diff] [blame] | 78 | u32 mcast_sw_if_index; |
John Lo | 56912c8 | 2016-12-08 16:10:02 -0500 | [diff] [blame] | 79 | |
Hongjun Ni | beb4bf7 | 2016-11-25 00:03:46 +0800 | [diff] [blame] | 80 | /* decap next index */ |
Eyal Bari | a5679e8 | 2018-08-26 15:20:07 +0300 | [diff] [blame] | 81 | u16 decap_next_index; |
Eyal Bari | c5b1360 | 2016-11-24 19:42:43 +0200 | [diff] [blame] | 82 | |
John Lo | c42912d | 2016-11-07 18:30:47 -0500 | [diff] [blame] | 83 | /* The FIB index for src/dst addresses */ |
| 84 | u32 encap_fib_index; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 85 | |
John Lo | c42912d | 2016-11-07 18:30:47 -0500 | [diff] [blame] | 86 | /* vnet intfc index */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 87 | u32 sw_if_index; |
John Lo | c42912d | 2016-11-07 18:30:47 -0500 | [diff] [blame] | 88 | u32 hw_if_index; |
Chris Luke | 99cb335 | 2016-04-26 10:49:53 -0400 | [diff] [blame] | 89 | |
John Lo | c42912d | 2016-11-07 18:30:47 -0500 | [diff] [blame] | 90 | /** |
| 91 | * Linkage into the FIB object graph |
| 92 | */ |
| 93 | fib_node_t node; |
Chris Luke | 99cb335 | 2016-04-26 10:49:53 -0400 | [diff] [blame] | 94 | |
Eyal Bari | c5b1360 | 2016-11-24 19:42:43 +0200 | [diff] [blame] | 95 | /* |
| 96 | * The FIB entry for (depending on VXLAN tunnel is unicast or mcast) |
| 97 | * sending unicast VXLAN encap packets or receiving mcast VXLAN packets |
| 98 | */ |
John Lo | c42912d | 2016-11-07 18:30:47 -0500 | [diff] [blame] | 99 | fib_node_index_t fib_entry_index; |
Eyal Bari | c5b1360 | 2016-11-24 19:42:43 +0200 | [diff] [blame] | 100 | adj_index_t mcast_adj_index; |
John Lo | c42912d | 2016-11-07 18:30:47 -0500 | [diff] [blame] | 101 | |
| 102 | /** |
Paul Vinciguerra | bdc0e6b | 2018-09-22 05:32:50 -0700 | [diff] [blame] | 103 | * The tunnel is a child of the FIB entry for its destination. This is |
John Lo | c42912d | 2016-11-07 18:30:47 -0500 | [diff] [blame] | 104 | * so it receives updates when the forwarding information for that entry |
| 105 | * changes. |
| 106 | * The tunnels sibling index on the FIB entry's dependency list. |
| 107 | */ |
| 108 | u32 sibling_index; |
Jon Loeliger | 3d460bd | 2018-02-01 16:36:12 -0600 | [diff] [blame] | 109 | |
Eyal Bari | 0fa5678 | 2018-06-04 12:25:05 +0300 | [diff] [blame] | 110 | u32 flow_index; /* infra flow index */ |
| 111 | u32 dev_instance; /* Real device instance in tunnel vector */ |
| 112 | u32 user_instance; /* Instance name being shown to user */ |
eyal bari | 82e21d7 | 2018-04-26 13:14:55 +0300 | [diff] [blame] | 113 | |
Eyal Bari | 0fa5678 | 2018-06-04 12:25:05 +0300 | [diff] [blame] | 114 | vnet_declare_rewrite (VLIB_BUFFER_PRE_DATA_SIZE); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 115 | } vxlan_tunnel_t; |
| 116 | |
| 117 | #define foreach_vxlan_input_next \ |
| 118 | _(DROP, "error-drop") \ |
John Lo | c42912d | 2016-11-07 18:30:47 -0500 | [diff] [blame] | 119 | _(L2_INPUT, "l2-input") |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 120 | |
Eyal Bari | 0fa5678 | 2018-06-04 12:25:05 +0300 | [diff] [blame] | 121 | typedef enum |
| 122 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 123 | #define _(s,n) VXLAN_INPUT_NEXT_##s, |
| 124 | foreach_vxlan_input_next |
| 125 | #undef _ |
Eyal Bari | 0fa5678 | 2018-06-04 12:25:05 +0300 | [diff] [blame] | 126 | VXLAN_INPUT_N_NEXT, |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 127 | } vxlan_input_next_t; |
| 128 | |
Eyal Bari | 0fa5678 | 2018-06-04 12:25:05 +0300 | [diff] [blame] | 129 | typedef enum |
| 130 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 131 | #define vxlan_error(n,s) VXLAN_ERROR_##n, |
| 132 | #include <vnet/vxlan/vxlan_error.def> |
| 133 | #undef vxlan_error |
| 134 | VXLAN_N_ERROR, |
| 135 | } vxlan_input_error_t; |
| 136 | |
Eyal Bari | 0fa5678 | 2018-06-04 12:25:05 +0300 | [diff] [blame] | 137 | typedef struct |
| 138 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 139 | /* vector of encap tunnel instances */ |
Eyal Bari | 0fa5678 | 2018-06-04 12:25:05 +0300 | [diff] [blame] | 140 | vxlan_tunnel_t *tunnels; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 141 | |
| 142 | /* lookup tunnel by key */ |
Eyal Bari | dd47eca | 2018-07-08 08:15:56 +0300 | [diff] [blame] | 143 | clib_bihash_16_8_t vxlan4_tunnel_by_key; /* keyed on ipv4.dst + fib + vni */ |
| 144 | clib_bihash_24_8_t vxlan6_tunnel_by_key; /* keyed on ipv6.dst + fib + vni */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 145 | |
Eyal Bari | fff67c8 | 2016-12-21 12:45:47 +0200 | [diff] [blame] | 146 | /* local VTEP IPs ref count used by vxlan-bypass node to check if |
| 147 | received VXLAN packet DIP matches any local VTEP address */ |
Eyal Bari | 0fa5678 | 2018-06-04 12:25:05 +0300 | [diff] [blame] | 148 | uword *vtep4; /* local ip4 VTEPs keyed on their ip4 addr */ |
| 149 | uword *vtep6; /* local ip6 VTEPs keyed on their ip6 addr */ |
John Lo | 37682e1 | 2016-11-30 12:51:39 -0500 | [diff] [blame] | 150 | |
Eyal Bari | 0ded851 | 2017-01-19 17:01:09 +0200 | [diff] [blame] | 151 | /* mcast shared info */ |
Eyal Bari | 0fa5678 | 2018-06-04 12:25:05 +0300 | [diff] [blame] | 152 | uword *mcast_shared; /* keyed on mcast ip46 addr */ |
Eyal Bari | fff67c8 | 2016-12-21 12:45:47 +0200 | [diff] [blame] | 153 | |
Dave Wallace | 60231f3 | 2015-12-17 21:04:30 -0500 | [diff] [blame] | 154 | /* Mapping from sw_if_index to tunnel index */ |
Eyal Bari | 0fa5678 | 2018-06-04 12:25:05 +0300 | [diff] [blame] | 155 | u32 *tunnel_index_by_sw_if_index; |
Dave Wallace | 60231f3 | 2015-12-17 21:04:30 -0500 | [diff] [blame] | 156 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 157 | /* convenience */ |
Eyal Bari | 0fa5678 | 2018-06-04 12:25:05 +0300 | [diff] [blame] | 158 | vlib_main_t *vlib_main; |
| 159 | vnet_main_t *vnet_main; |
Jon Loeliger | 3d460bd | 2018-02-01 16:36:12 -0600 | [diff] [blame] | 160 | |
| 161 | /* Record used instances */ |
| 162 | uword *instance_used; |
eyal bari | af86a48 | 2018-04-17 11:20:27 +0300 | [diff] [blame] | 163 | u32 flow_id_start; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 164 | } vxlan_main_t; |
| 165 | |
Dave Wallace | 71612d6 | 2017-10-24 01:32:41 -0400 | [diff] [blame] | 166 | extern vxlan_main_t vxlan_main; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 167 | |
Chris Luke | 99cb335 | 2016-04-26 10:49:53 -0400 | [diff] [blame] | 168 | extern vlib_node_registration_t vxlan4_input_node; |
| 169 | extern vlib_node_registration_t vxlan6_input_node; |
John Lo | c42912d | 2016-11-07 18:30:47 -0500 | [diff] [blame] | 170 | extern vlib_node_registration_t vxlan4_encap_node; |
| 171 | extern vlib_node_registration_t vxlan6_encap_node; |
eyal bari | af86a48 | 2018-04-17 11:20:27 +0300 | [diff] [blame] | 172 | extern vlib_node_registration_t vxlan4_flow_input_node; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 173 | |
Eyal Bari | 0fa5678 | 2018-06-04 12:25:05 +0300 | [diff] [blame] | 174 | u8 *format_vxlan_encap_trace (u8 * s, va_list * args); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 175 | |
Eyal Bari | 0fa5678 | 2018-06-04 12:25:05 +0300 | [diff] [blame] | 176 | typedef struct |
| 177 | { |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 178 | u8 is_add; |
Chris Luke | 99cb335 | 2016-04-26 10:49:53 -0400 | [diff] [blame] | 179 | |
| 180 | /* we normally use is_ip4, but since this adds to the |
Paul Vinciguerra | bdc0e6b | 2018-09-22 05:32:50 -0700 | [diff] [blame] | 181 | * structure, this seems less of a breaking change */ |
Chris Luke | 99cb335 | 2016-04-26 10:49:53 -0400 | [diff] [blame] | 182 | u8 is_ip6; |
Jon Loeliger | 3d460bd | 2018-02-01 16:36:12 -0600 | [diff] [blame] | 183 | u32 instance; |
Chris Luke | 99cb335 | 2016-04-26 10:49:53 -0400 | [diff] [blame] | 184 | ip46_address_t src, dst; |
Eyal Bari | c5b1360 | 2016-11-24 19:42:43 +0200 | [diff] [blame] | 185 | u32 mcast_sw_if_index; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 186 | u32 encap_fib_index; |
| 187 | u32 decap_next_index; |
| 188 | u32 vni; |
| 189 | } vnet_vxlan_add_del_tunnel_args_t; |
| 190 | |
Eyal Bari | 0fa5678 | 2018-06-04 12:25:05 +0300 | [diff] [blame] | 191 | int vnet_vxlan_add_del_tunnel |
| 192 | (vnet_vxlan_add_del_tunnel_args_t * a, u32 * sw_if_indexp); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 193 | |
Eyal Bari | 0fa5678 | 2018-06-04 12:25:05 +0300 | [diff] [blame] | 194 | void vnet_int_vxlan_bypass_mode (u32 sw_if_index, u8 is_ip6, u8 is_enable); |
eyal bari | af86a48 | 2018-04-17 11:20:27 +0300 | [diff] [blame] | 195 | |
Eyal Bari | 0fa5678 | 2018-06-04 12:25:05 +0300 | [diff] [blame] | 196 | int vnet_vxlan_add_del_rx_flow (u32 hw_if_index, u32 t_imdex, int is_add); |
eyal bari | af86a48 | 2018-04-17 11:20:27 +0300 | [diff] [blame] | 197 | |
| 198 | u32 vnet_vxlan_get_tunnel_index (u32 sw_if_index); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 199 | #endif /* included_vnet_vxlan_h */ |
Jon Loeliger | 3d460bd | 2018-02-01 16:36:12 -0600 | [diff] [blame] | 200 | |
| 201 | /* |
Eyal Bari | 0fa5678 | 2018-06-04 12:25:05 +0300 | [diff] [blame] | 202 | * fd.io coding-style-patch-verification: ON |
| 203 | * |
Jon Loeliger | 3d460bd | 2018-02-01 16:36:12 -0600 | [diff] [blame] | 204 | * Local Variables: |
| 205 | * eval: (c-set-style "gnu") |
| 206 | * End: |
| 207 | */ |