Pavel Kotucek | adb13d6 | 2016-12-19 14:35:35 +0100 | [diff] [blame] | 1 | /* |
| 2 | *------------------------------------------------------------------ |
| 3 | * vxlan_api.c - vxlan api |
| 4 | * |
| 5 | * Copyright (c) 2016 Cisco and/or its affiliates. |
| 6 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 7 | * you may not use this file except in compliance with the License. |
| 8 | * You may obtain a copy of the License at: |
| 9 | * |
| 10 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 11 | * |
| 12 | * Unless required by applicable law or agreed to in writing, software |
| 13 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 15 | * See the License for the specific language governing permissions and |
| 16 | * limitations under the License. |
| 17 | *------------------------------------------------------------------ |
| 18 | */ |
| 19 | |
| 20 | #include <vnet/vnet.h> |
| 21 | #include <vlibmemory/api.h> |
| 22 | |
| 23 | #include <vnet/interface.h> |
| 24 | #include <vnet/api_errno.h> |
| 25 | #include <vnet/feature/feature.h> |
| 26 | #include <vnet/vxlan/vxlan.h> |
| 27 | #include <vnet/fib/fib_table.h> |
Jakub Grajciar | 7c0eb56 | 2020-03-02 13:55:31 +0100 | [diff] [blame] | 28 | #include <vnet/ip/ip_types_api.h> |
Artem Glazychev | 839dcc0 | 2020-12-01 02:39:21 +0700 | [diff] [blame] | 29 | #include <vnet/udp/udp_local.h> |
Filip Tehlar | 26c8a7f | 2021-06-04 13:37:00 +0000 | [diff] [blame] | 30 | #include <vnet/format_fns.h> |
| 31 | #include <vxlan/vxlan.api_enum.h> |
| 32 | #include <vxlan/vxlan.api_types.h> |
Jakub Grajciar | 7c0eb56 | 2020-03-02 13:55:31 +0100 | [diff] [blame] | 33 | |
Filip Tehlar | 26c8a7f | 2021-06-04 13:37:00 +0000 | [diff] [blame] | 34 | static u16 msg_id_base; |
Pavel Kotucek | adb13d6 | 2016-12-19 14:35:35 +0100 | [diff] [blame] | 35 | |
Filip Tehlar | 26c8a7f | 2021-06-04 13:37:00 +0000 | [diff] [blame] | 36 | #define REPLY_MSG_ID_BASE msg_id_base |
Pavel Kotucek | adb13d6 | 2016-12-19 14:35:35 +0100 | [diff] [blame] | 37 | #include <vlibapi/api_helper_macros.h> |
| 38 | |
eyal bari | af86a48 | 2018-04-17 11:20:27 +0300 | [diff] [blame] | 39 | static void |
| 40 | vl_api_vxlan_offload_rx_t_handler (vl_api_vxlan_offload_rx_t * mp) |
| 41 | { |
| 42 | vl_api_vxlan_offload_rx_reply_t *rmp; |
| 43 | int rv = 0; |
| 44 | u32 hw_if_index = ntohl (mp->hw_if_index); |
| 45 | u32 sw_if_index = ntohl (mp->sw_if_index); |
| 46 | |
| 47 | if (!vnet_hw_interface_is_valid (vnet_get_main (), hw_if_index)) |
| 48 | { |
| 49 | rv = VNET_API_ERROR_NO_SUCH_ENTRY; |
| 50 | goto err; |
| 51 | } |
| 52 | VALIDATE_SW_IF_INDEX (mp); |
| 53 | |
| 54 | u32 t_index = vnet_vxlan_get_tunnel_index (sw_if_index); |
| 55 | if (t_index == ~0) |
| 56 | { |
| 57 | rv = VNET_API_ERROR_INVALID_SW_IF_INDEX_2; |
| 58 | goto err; |
| 59 | } |
| 60 | |
| 61 | vxlan_main_t *vxm = &vxlan_main; |
| 62 | vxlan_tunnel_t *t = pool_elt_at_index (vxm->tunnels, t_index); |
| 63 | if (!ip46_address_is_ip4 (&t->dst)) |
| 64 | { |
| 65 | rv = VNET_API_ERROR_INVALID_ADDRESS_FAMILY; |
| 66 | goto err; |
| 67 | } |
| 68 | |
| 69 | vnet_main_t *vnm = vnet_get_main (); |
| 70 | vnet_hw_interface_t *hw_if = vnet_get_hw_interface (vnm, hw_if_index); |
| 71 | ip4_main_t *im = &ip4_main; |
| 72 | u32 rx_fib_index = |
| 73 | vec_elt (im->fib_index_by_sw_if_index, hw_if->sw_if_index); |
| 74 | |
| 75 | if (t->encap_fib_index != rx_fib_index) |
| 76 | { |
| 77 | rv = VNET_API_ERROR_NO_SUCH_FIB; |
| 78 | goto err; |
| 79 | } |
| 80 | |
| 81 | if (vnet_vxlan_add_del_rx_flow (hw_if_index, t_index, mp->enable)) |
| 82 | { |
| 83 | rv = VNET_API_ERROR_UNSPECIFIED; |
| 84 | goto err; |
| 85 | } |
| 86 | BAD_SW_IF_INDEX_LABEL; |
| 87 | err: |
| 88 | |
| 89 | REPLY_MACRO (VL_API_VXLAN_OFFLOAD_RX_REPLY); |
| 90 | } |
Pavel Kotucek | adb13d6 | 2016-12-19 14:35:35 +0100 | [diff] [blame] | 91 | |
| 92 | static void |
| 93 | vl_api_sw_interface_set_vxlan_bypass_t_handler |
| 94 | (vl_api_sw_interface_set_vxlan_bypass_t * mp) |
| 95 | { |
| 96 | vl_api_sw_interface_set_vxlan_bypass_reply_t *rmp; |
| 97 | int rv = 0; |
| 98 | u32 sw_if_index = ntohl (mp->sw_if_index); |
| 99 | |
| 100 | VALIDATE_SW_IF_INDEX (mp); |
| 101 | |
John Lo | 2b81eb8 | 2017-01-30 13:12:10 -0500 | [diff] [blame] | 102 | vnet_int_vxlan_bypass_mode (sw_if_index, mp->is_ipv6, mp->enable); |
Pavel Kotucek | adb13d6 | 2016-12-19 14:35:35 +0100 | [diff] [blame] | 103 | BAD_SW_IF_INDEX_LABEL; |
| 104 | |
| 105 | REPLY_MACRO (VL_API_SW_INTERFACE_SET_VXLAN_BYPASS_REPLY); |
| 106 | } |
| 107 | |
Nathan Skrzypczak | 3e38422 | 2021-04-21 19:56:34 +0200 | [diff] [blame] | 108 | static int |
| 109 | vxlan_add_del_tunnel_clean_input (vnet_vxlan_add_del_tunnel_args_t *a, |
| 110 | u32 encap_vrf_id) |
| 111 | { |
| 112 | a->is_ip6 = !ip46_address_is_ip4 (&a->src); |
| 113 | |
| 114 | a->encap_fib_index = fib_table_find (fib_ip_proto (a->is_ip6), encap_vrf_id); |
| 115 | if (a->encap_fib_index == ~0) |
| 116 | { |
| 117 | return VNET_API_ERROR_NO_SUCH_FIB; |
| 118 | } |
| 119 | |
| 120 | if (ip46_address_is_ip4 (&a->src) != ip46_address_is_ip4 (&a->dst)) |
| 121 | { |
| 122 | return VNET_API_ERROR_INVALID_VALUE; |
| 123 | } |
| 124 | |
| 125 | /* Check src & dst are different */ |
| 126 | if (ip46_address_cmp (&a->dst, &a->src) == 0) |
| 127 | { |
| 128 | return VNET_API_ERROR_SAME_SRC_DST; |
| 129 | } |
| 130 | if (ip46_address_is_multicast (&a->dst) && |
| 131 | !vnet_sw_if_index_is_api_valid (a->mcast_sw_if_index)) |
| 132 | { |
| 133 | return VNET_API_ERROR_INVALID_SW_IF_INDEX; |
| 134 | } |
| 135 | return 0; |
| 136 | } |
| 137 | |
| 138 | static void |
| 139 | vl_api_vxlan_add_del_tunnel_t_handler (vl_api_vxlan_add_del_tunnel_t *mp) |
Pavel Kotucek | adb13d6 | 2016-12-19 14:35:35 +0100 | [diff] [blame] | 140 | { |
| 141 | vl_api_vxlan_add_del_tunnel_reply_t *rmp; |
Nathan Skrzypczak | 3e38422 | 2021-04-21 19:56:34 +0200 | [diff] [blame] | 142 | u32 sw_if_index = ~0; |
Pavel Kotucek | adb13d6 | 2016-12-19 14:35:35 +0100 | [diff] [blame] | 143 | int rv = 0; |
Pavel Kotucek | adb13d6 | 2016-12-19 14:35:35 +0100 | [diff] [blame] | 144 | |
Eyal Bari | e101e1f | 2017-03-15 08:23:42 +0200 | [diff] [blame] | 145 | vnet_vxlan_add_del_tunnel_args_t a = { |
| 146 | .is_add = mp->is_add, |
Jon Loeliger | 3d460bd | 2018-02-01 16:36:12 -0600 | [diff] [blame] | 147 | .instance = ntohl (mp->instance), |
Eyal Bari | e101e1f | 2017-03-15 08:23:42 +0200 | [diff] [blame] | 148 | .mcast_sw_if_index = ntohl (mp->mcast_sw_if_index), |
Eyal Bari | e101e1f | 2017-03-15 08:23:42 +0200 | [diff] [blame] | 149 | .decap_next_index = ntohl (mp->decap_next_index), |
| 150 | .vni = ntohl (mp->vni), |
Eyal Bari | e101e1f | 2017-03-15 08:23:42 +0200 | [diff] [blame] | 151 | }; |
Nathan Skrzypczak | 3e38422 | 2021-04-21 19:56:34 +0200 | [diff] [blame] | 152 | ip_address_decode (&mp->src_address, &a.src); |
| 153 | ip_address_decode (&mp->dst_address, &a.dst); |
Pavel Kotucek | adb13d6 | 2016-12-19 14:35:35 +0100 | [diff] [blame] | 154 | |
Nathan Skrzypczak | 3e38422 | 2021-04-21 19:56:34 +0200 | [diff] [blame] | 155 | rv = vxlan_add_del_tunnel_clean_input (&a, ntohl (mp->encap_vrf_id)); |
| 156 | if (rv) |
| 157 | goto out; |
| 158 | a.dst_port = a.is_ip6 ? UDP_DST_PORT_vxlan6 : UDP_DST_PORT_vxlan, |
| 159 | a.src_port = a.is_ip6 ? UDP_DST_PORT_vxlan6 : UDP_DST_PORT_vxlan, |
Eyal Bari | e101e1f | 2017-03-15 08:23:42 +0200 | [diff] [blame] | 160 | rv = vnet_vxlan_add_del_tunnel (&a, &sw_if_index); |
Pavel Kotucek | adb13d6 | 2016-12-19 14:35:35 +0100 | [diff] [blame] | 161 | |
| 162 | out: |
Pavel Kotucek | adb13d6 | 2016-12-19 14:35:35 +0100 | [diff] [blame] | 163 | REPLY_MACRO2(VL_API_VXLAN_ADD_DEL_TUNNEL_REPLY, |
| 164 | ({ |
| 165 | rmp->sw_if_index = ntohl (sw_if_index); |
| 166 | })); |
Artem Glazychev | 839dcc0 | 2020-12-01 02:39:21 +0700 | [diff] [blame] | 167 | } |
| 168 | |
| 169 | static void |
| 170 | vl_api_vxlan_add_del_tunnel_v2_t_handler (vl_api_vxlan_add_del_tunnel_v2_t *mp) |
| 171 | { |
| 172 | vl_api_vxlan_add_del_tunnel_v2_reply_t *rmp; |
Nathan Skrzypczak | 3e38422 | 2021-04-21 19:56:34 +0200 | [diff] [blame] | 173 | u32 sw_if_index = ~0; |
Artem Glazychev | 839dcc0 | 2020-12-01 02:39:21 +0700 | [diff] [blame] | 174 | int rv = 0; |
Artem Glazychev | 839dcc0 | 2020-12-01 02:39:21 +0700 | [diff] [blame] | 175 | |
| 176 | vnet_vxlan_add_del_tunnel_args_t a = { |
| 177 | .is_add = mp->is_add, |
Artem Glazychev | 839dcc0 | 2020-12-01 02:39:21 +0700 | [diff] [blame] | 178 | .instance = ntohl (mp->instance), |
| 179 | .mcast_sw_if_index = ntohl (mp->mcast_sw_if_index), |
Artem Glazychev | 839dcc0 | 2020-12-01 02:39:21 +0700 | [diff] [blame] | 180 | .decap_next_index = ntohl (mp->decap_next_index), |
| 181 | .vni = ntohl (mp->vni), |
Artem Glazychev | 839dcc0 | 2020-12-01 02:39:21 +0700 | [diff] [blame] | 182 | .dst_port = ntohs (mp->dst_port), |
| 183 | .src_port = ntohs (mp->src_port), |
| 184 | }; |
| 185 | |
Nathan Skrzypczak | 3e38422 | 2021-04-21 19:56:34 +0200 | [diff] [blame] | 186 | ip_address_decode (&mp->src_address, &a.src); |
| 187 | ip_address_decode (&mp->dst_address, &a.dst); |
Artem Glazychev | 839dcc0 | 2020-12-01 02:39:21 +0700 | [diff] [blame] | 188 | |
Nathan Skrzypczak | 3e38422 | 2021-04-21 19:56:34 +0200 | [diff] [blame] | 189 | rv = vxlan_add_del_tunnel_clean_input (&a, ntohl (mp->encap_vrf_id)); |
| 190 | if (rv) |
| 191 | goto out; |
Artem Glazychev | 839dcc0 | 2020-12-01 02:39:21 +0700 | [diff] [blame] | 192 | rv = vnet_vxlan_add_del_tunnel (&a, &sw_if_index); |
Artem Glazychev | 839dcc0 | 2020-12-01 02:39:21 +0700 | [diff] [blame] | 193 | out: |
| 194 | REPLY_MACRO2 (VL_API_VXLAN_ADD_DEL_TUNNEL_V2_REPLY, |
| 195 | ({ rmp->sw_if_index = ntohl (sw_if_index); })); |
Pavel Kotucek | adb13d6 | 2016-12-19 14:35:35 +0100 | [diff] [blame] | 196 | } |
| 197 | |
Nathan Skrzypczak | 3e38422 | 2021-04-21 19:56:34 +0200 | [diff] [blame] | 198 | static void |
| 199 | vl_api_vxlan_add_del_tunnel_v3_t_handler (vl_api_vxlan_add_del_tunnel_v3_t *mp) |
| 200 | { |
| 201 | vl_api_vxlan_add_del_tunnel_v3_reply_t *rmp; |
| 202 | u32 sw_if_index = ~0; |
| 203 | int rv = 0; |
| 204 | |
| 205 | vnet_vxlan_add_del_tunnel_args_t a = { |
| 206 | .is_add = mp->is_add, |
| 207 | .instance = ntohl (mp->instance), |
| 208 | .mcast_sw_if_index = ntohl (mp->mcast_sw_if_index), |
| 209 | .decap_next_index = ntohl (mp->decap_next_index), |
| 210 | .vni = ntohl (mp->vni), |
| 211 | .dst_port = ntohs (mp->dst_port), |
| 212 | .src_port = ntohs (mp->src_port), |
| 213 | .is_l3 = mp->is_l3, |
| 214 | }; |
| 215 | |
| 216 | ip_address_decode (&mp->src_address, &a.src); |
| 217 | ip_address_decode (&mp->dst_address, &a.dst); |
| 218 | |
| 219 | rv = vxlan_add_del_tunnel_clean_input (&a, ntohl (mp->encap_vrf_id)); |
| 220 | if (rv) |
| 221 | goto out; |
| 222 | rv = vnet_vxlan_add_del_tunnel (&a, &sw_if_index); |
| 223 | out: |
| 224 | REPLY_MACRO2 (VL_API_VXLAN_ADD_DEL_TUNNEL_V3_REPLY, |
| 225 | ({ rmp->sw_if_index = ntohl (sw_if_index); })); |
| 226 | } |
| 227 | |
Pavel Kotucek | adb13d6 | 2016-12-19 14:35:35 +0100 | [diff] [blame] | 228 | static void send_vxlan_tunnel_details |
Florin Coras | 6c4dae2 | 2018-01-09 06:39:23 -0800 | [diff] [blame] | 229 | (vxlan_tunnel_t * t, vl_api_registration_t * reg, u32 context) |
Pavel Kotucek | adb13d6 | 2016-12-19 14:35:35 +0100 | [diff] [blame] | 230 | { |
| 231 | vl_api_vxlan_tunnel_details_t *rmp; |
| 232 | ip4_main_t *im4 = &ip4_main; |
| 233 | ip6_main_t *im6 = &ip6_main; |
Pavel Kotucek | adb13d6 | 2016-12-19 14:35:35 +0100 | [diff] [blame] | 234 | |
| 235 | rmp = vl_msg_api_alloc (sizeof (*rmp)); |
Dave Barach | b7b9299 | 2018-10-17 10:38:51 -0400 | [diff] [blame] | 236 | clib_memset (rmp, 0, sizeof (*rmp)); |
Filip Tehlar | 26c8a7f | 2021-06-04 13:37:00 +0000 | [diff] [blame] | 237 | rmp->_vl_msg_id = ntohs (REPLY_MSG_ID_BASE + VL_API_VXLAN_TUNNEL_DETAILS); |
Jakub Grajciar | 7c0eb56 | 2020-03-02 13:55:31 +0100 | [diff] [blame] | 238 | |
| 239 | ip_address_encode (&t->src, IP46_TYPE_ANY, &rmp->src_address); |
| 240 | ip_address_encode (&t->dst, IP46_TYPE_ANY, &rmp->dst_address); |
| 241 | |
| 242 | if (ip46_address_is_ip4 (&t->dst)) |
| 243 | rmp->encap_vrf_id = htonl (im4->fibs[t->encap_fib_index].ft_table_id); |
Pavel Kotucek | adb13d6 | 2016-12-19 14:35:35 +0100 | [diff] [blame] | 244 | else |
Jakub Grajciar | 7c0eb56 | 2020-03-02 13:55:31 +0100 | [diff] [blame] | 245 | rmp->encap_vrf_id = htonl (im6->fibs[t->encap_fib_index].ft_table_id); |
Jon Loeliger | 3d460bd | 2018-02-01 16:36:12 -0600 | [diff] [blame] | 246 | |
| 247 | rmp->instance = htonl (t->user_instance); |
Pavel Kotucek | adb13d6 | 2016-12-19 14:35:35 +0100 | [diff] [blame] | 248 | rmp->mcast_sw_if_index = htonl (t->mcast_sw_if_index); |
| 249 | rmp->vni = htonl (t->vni); |
| 250 | rmp->decap_next_index = htonl (t->decap_next_index); |
| 251 | rmp->sw_if_index = htonl (t->sw_if_index); |
Pavel Kotucek | adb13d6 | 2016-12-19 14:35:35 +0100 | [diff] [blame] | 252 | rmp->context = context; |
| 253 | |
Florin Coras | 6c4dae2 | 2018-01-09 06:39:23 -0800 | [diff] [blame] | 254 | vl_api_send_msg (reg, (u8 *) rmp); |
Pavel Kotucek | adb13d6 | 2016-12-19 14:35:35 +0100 | [diff] [blame] | 255 | } |
| 256 | |
| 257 | static void vl_api_vxlan_tunnel_dump_t_handler |
| 258 | (vl_api_vxlan_tunnel_dump_t * mp) |
| 259 | { |
Florin Coras | 6c4dae2 | 2018-01-09 06:39:23 -0800 | [diff] [blame] | 260 | vl_api_registration_t *reg; |
Pavel Kotucek | adb13d6 | 2016-12-19 14:35:35 +0100 | [diff] [blame] | 261 | vxlan_main_t *vxm = &vxlan_main; |
| 262 | vxlan_tunnel_t *t; |
| 263 | u32 sw_if_index; |
| 264 | |
Florin Coras | 6c4dae2 | 2018-01-09 06:39:23 -0800 | [diff] [blame] | 265 | reg = vl_api_client_index_to_registration (mp->client_index); |
| 266 | if (!reg) |
| 267 | return; |
Pavel Kotucek | adb13d6 | 2016-12-19 14:35:35 +0100 | [diff] [blame] | 268 | |
| 269 | sw_if_index = ntohl (mp->sw_if_index); |
| 270 | |
| 271 | if (~0 == sw_if_index) |
| 272 | { |
Damjan Marion | b2c31b6 | 2020-12-13 21:47:40 +0100 | [diff] [blame] | 273 | pool_foreach (t, vxm->tunnels) |
Florin Coras | 6c4dae2 | 2018-01-09 06:39:23 -0800 | [diff] [blame] | 274 | send_vxlan_tunnel_details(t, reg, mp->context); |
Pavel Kotucek | adb13d6 | 2016-12-19 14:35:35 +0100 | [diff] [blame] | 275 | } |
| 276 | else |
| 277 | { |
| 278 | if ((sw_if_index >= vec_len (vxm->tunnel_index_by_sw_if_index)) || |
| 279 | (~0 == vxm->tunnel_index_by_sw_if_index[sw_if_index])) |
| 280 | { |
| 281 | return; |
| 282 | } |
| 283 | t = &vxm->tunnels[vxm->tunnel_index_by_sw_if_index[sw_if_index]]; |
Florin Coras | 6c4dae2 | 2018-01-09 06:39:23 -0800 | [diff] [blame] | 284 | send_vxlan_tunnel_details (t, reg, mp->context); |
Pavel Kotucek | adb13d6 | 2016-12-19 14:35:35 +0100 | [diff] [blame] | 285 | } |
| 286 | } |
| 287 | |
Artem Glazychev | 839dcc0 | 2020-12-01 02:39:21 +0700 | [diff] [blame] | 288 | static void |
| 289 | send_vxlan_tunnel_v2_details (vxlan_tunnel_t *t, vl_api_registration_t *reg, |
| 290 | u32 context) |
| 291 | { |
| 292 | vl_api_vxlan_tunnel_v2_details_t *rmp; |
| 293 | ip4_main_t *im4 = &ip4_main; |
| 294 | ip6_main_t *im6 = &ip6_main; |
| 295 | |
| 296 | rmp = vl_msg_api_alloc (sizeof (*rmp)); |
| 297 | clib_memset (rmp, 0, sizeof (*rmp)); |
Filip Tehlar | 26c8a7f | 2021-06-04 13:37:00 +0000 | [diff] [blame] | 298 | rmp->_vl_msg_id = ntohs (REPLY_MSG_ID_BASE + VL_API_VXLAN_TUNNEL_V2_DETAILS); |
Artem Glazychev | 839dcc0 | 2020-12-01 02:39:21 +0700 | [diff] [blame] | 299 | |
| 300 | ip_address_encode (&t->src, IP46_TYPE_ANY, &rmp->src_address); |
| 301 | ip_address_encode (&t->dst, IP46_TYPE_ANY, &rmp->dst_address); |
| 302 | rmp->src_port = htons (t->src_port); |
| 303 | rmp->dst_port = htons (t->dst_port); |
| 304 | |
| 305 | if (ip46_address_is_ip4 (&t->dst)) |
| 306 | rmp->encap_vrf_id = htonl (im4->fibs[t->encap_fib_index].ft_table_id); |
| 307 | else |
| 308 | rmp->encap_vrf_id = htonl (im6->fibs[t->encap_fib_index].ft_table_id); |
| 309 | |
| 310 | rmp->instance = htonl (t->user_instance); |
| 311 | rmp->mcast_sw_if_index = htonl (t->mcast_sw_if_index); |
| 312 | rmp->vni = htonl (t->vni); |
| 313 | rmp->decap_next_index = htonl (t->decap_next_index); |
| 314 | rmp->sw_if_index = htonl (t->sw_if_index); |
| 315 | rmp->context = context; |
| 316 | |
| 317 | vl_api_send_msg (reg, (u8 *) rmp); |
| 318 | } |
| 319 | |
| 320 | static void |
| 321 | vl_api_vxlan_tunnel_v2_dump_t_handler (vl_api_vxlan_tunnel_v2_dump_t *mp) |
| 322 | { |
| 323 | vl_api_registration_t *reg; |
| 324 | vxlan_main_t *vxm = &vxlan_main; |
| 325 | vxlan_tunnel_t *t; |
| 326 | u32 sw_if_index; |
| 327 | |
| 328 | reg = vl_api_client_index_to_registration (mp->client_index); |
| 329 | if (!reg) |
| 330 | return; |
| 331 | |
| 332 | sw_if_index = ntohl (mp->sw_if_index); |
| 333 | |
| 334 | if (~0 == sw_if_index) |
| 335 | { |
| 336 | pool_foreach (t, vxm->tunnels) |
| 337 | send_vxlan_tunnel_v2_details (t, reg, mp->context); |
| 338 | } |
| 339 | else |
| 340 | { |
| 341 | if ((sw_if_index >= vec_len (vxm->tunnel_index_by_sw_if_index)) || |
| 342 | (~0 == vxm->tunnel_index_by_sw_if_index[sw_if_index])) |
| 343 | { |
| 344 | return; |
| 345 | } |
| 346 | t = &vxm->tunnels[vxm->tunnel_index_by_sw_if_index[sw_if_index]]; |
| 347 | send_vxlan_tunnel_v2_details (t, reg, mp->context); |
| 348 | } |
| 349 | } |
| 350 | |
Filip Tehlar | 26c8a7f | 2021-06-04 13:37:00 +0000 | [diff] [blame] | 351 | #include <vxlan/vxlan.api.c> |
Pavel Kotucek | adb13d6 | 2016-12-19 14:35:35 +0100 | [diff] [blame] | 352 | static clib_error_t * |
| 353 | vxlan_api_hookup (vlib_main_t * vm) |
| 354 | { |
Dave Barach | 39d6911 | 2019-11-27 11:42:13 -0500 | [diff] [blame] | 355 | api_main_t *am = vlibapi_get_main (); |
Pavel Kotucek | adb13d6 | 2016-12-19 14:35:35 +0100 | [diff] [blame] | 356 | |
Pavel Kotucek | adb13d6 | 2016-12-19 14:35:35 +0100 | [diff] [blame] | 357 | am->api_trace_cfg[VL_API_VXLAN_ADD_DEL_TUNNEL].size += 16 * sizeof (u32); |
| 358 | |
| 359 | /* |
| 360 | * Set up the (msg_name, crc, message-id) table |
| 361 | */ |
Filip Tehlar | 26c8a7f | 2021-06-04 13:37:00 +0000 | [diff] [blame] | 362 | msg_id_base = setup_message_id_table (); |
Pavel Kotucek | adb13d6 | 2016-12-19 14:35:35 +0100 | [diff] [blame] | 363 | |
| 364 | return 0; |
| 365 | } |
| 366 | |
| 367 | VLIB_API_INIT_FUNCTION (vxlan_api_hookup); |
| 368 | |
| 369 | /* |
| 370 | * fd.io coding-style-patch-verification: ON |
| 371 | * |
| 372 | * Local Variables: |
| 373 | * eval: (c-set-style "gnu") |
| 374 | * End: |
| 375 | */ |