Mohsin Kazmi | 61b94c6 | 2018-08-20 18:32:39 +0200 | [diff] [blame] | 1 | /* |
| 2 | *------------------------------------------------------------------ |
| 3 | * vxlan_gbp_api.c - vxlan gbp api |
| 4 | * |
| 5 | * Copyright (c) 2018 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-gbp/vxlan_gbp.h> |
| 27 | #include <vnet/fib/fib_table.h> |
Neale Ranns | 79a05f5 | 2018-09-11 07:39:43 -0700 | [diff] [blame] | 28 | #include <vnet/ip/ip_types_api.h> |
Mohsin Kazmi | 61b94c6 | 2018-08-20 18:32:39 +0200 | [diff] [blame] | 29 | |
| 30 | #include <vnet/vnet_msg_enum.h> |
| 31 | |
| 32 | #define vl_typedefs /* define message structures */ |
| 33 | #include <vnet/vnet_all_api_h.h> |
| 34 | #undef vl_typedefs |
| 35 | |
| 36 | #define vl_endianfun /* define message structures */ |
| 37 | #include <vnet/vnet_all_api_h.h> |
| 38 | #undef vl_endianfun |
| 39 | |
| 40 | /* instantiate all the print functions we know about */ |
| 41 | #define vl_print(handle, ...) vlib_cli_output (handle, __VA_ARGS__) |
| 42 | #define vl_printfun |
| 43 | #include <vnet/vnet_all_api_h.h> |
| 44 | #undef vl_printfun |
| 45 | |
| 46 | #include <vlibapi/api_helper_macros.h> |
| 47 | |
| 48 | #define foreach_vpe_api_msg \ |
| 49 | _(SW_INTERFACE_SET_VXLAN_GBP_BYPASS, sw_interface_set_vxlan_gbp_bypass) \ |
Neale Ranns | 79a05f5 | 2018-09-11 07:39:43 -0700 | [diff] [blame] | 50 | _(VXLAN_GBP_TUNNEL_ADD_DEL, vxlan_gbp_tunnel_add_del) \ |
Mohsin Kazmi | 61b94c6 | 2018-08-20 18:32:39 +0200 | [diff] [blame] | 51 | _(VXLAN_GBP_TUNNEL_DUMP, vxlan_gbp_tunnel_dump) |
| 52 | |
| 53 | static void |
| 54 | vl_api_sw_interface_set_vxlan_gbp_bypass_t_handler |
| 55 | (vl_api_sw_interface_set_vxlan_gbp_bypass_t * mp) |
| 56 | { |
| 57 | vl_api_sw_interface_set_vxlan_gbp_bypass_reply_t *rmp; |
| 58 | int rv = 0; |
| 59 | u32 sw_if_index = ntohl (mp->sw_if_index); |
| 60 | |
| 61 | VALIDATE_SW_IF_INDEX (mp); |
| 62 | |
| 63 | vnet_int_vxlan_gbp_bypass_mode (sw_if_index, mp->is_ipv6, mp->enable); |
| 64 | BAD_SW_IF_INDEX_LABEL; |
| 65 | |
| 66 | REPLY_MACRO (VL_API_SW_INTERFACE_SET_VXLAN_GBP_BYPASS_REPLY); |
| 67 | } |
| 68 | |
Neale Ranns | 4dd4cf4 | 2019-03-27 05:06:47 -0700 | [diff] [blame] | 69 | static int |
| 70 | vxlan_gbp_tunnel_mode_decode (vl_api_vxlan_gbp_api_tunnel_mode_t in, |
| 71 | vxlan_gbp_tunnel_mode_t * out) |
| 72 | { |
| 73 | in = clib_net_to_host_u32 (in); |
| 74 | |
| 75 | switch (in) |
| 76 | { |
| 77 | case VXLAN_GBP_API_TUNNEL_MODE_L2: |
| 78 | *out = VXLAN_GBP_TUNNEL_MODE_L2; |
| 79 | return (0); |
| 80 | case VXLAN_GBP_API_TUNNEL_MODE_L3: |
| 81 | *out = VXLAN_GBP_TUNNEL_MODE_L3; |
| 82 | return (0); |
| 83 | } |
Paul Vinciguerra | 9dd9434 | 2019-06-18 10:27:32 -0400 | [diff] [blame] | 84 | return (VNET_API_ERROR_INVALID_VALUE); |
Neale Ranns | 4dd4cf4 | 2019-03-27 05:06:47 -0700 | [diff] [blame] | 85 | } |
| 86 | |
Neale Ranns | 79a05f5 | 2018-09-11 07:39:43 -0700 | [diff] [blame] | 87 | static void vl_api_vxlan_gbp_tunnel_add_del_t_handler |
| 88 | (vl_api_vxlan_gbp_tunnel_add_del_t * mp) |
Mohsin Kazmi | 61b94c6 | 2018-08-20 18:32:39 +0200 | [diff] [blame] | 89 | { |
Neale Ranns | 79a05f5 | 2018-09-11 07:39:43 -0700 | [diff] [blame] | 90 | vl_api_vxlan_gbp_tunnel_add_del_reply_t *rmp; |
Neale Ranns | 4dd4cf4 | 2019-03-27 05:06:47 -0700 | [diff] [blame] | 91 | vxlan_gbp_tunnel_mode_t mode; |
Neale Ranns | 79a05f5 | 2018-09-11 07:39:43 -0700 | [diff] [blame] | 92 | ip46_address_t src, dst; |
| 93 | ip46_type_t itype; |
Mohsin Kazmi | 61b94c6 | 2018-08-20 18:32:39 +0200 | [diff] [blame] | 94 | int rv = 0; |
Paul Vinciguerra | aaba610 | 2019-06-25 17:57:31 -0400 | [diff] [blame] | 95 | u32 sw_if_index = ~0; |
Mohsin Kazmi | 61b94c6 | 2018-08-20 18:32:39 +0200 | [diff] [blame] | 96 | u32 fib_index; |
| 97 | |
Neale Ranns | 79a05f5 | 2018-09-11 07:39:43 -0700 | [diff] [blame] | 98 | itype = ip_address_decode (&mp->tunnel.src, &src); |
| 99 | itype = ip_address_decode (&mp->tunnel.dst, &dst); |
| 100 | |
| 101 | fib_index = fib_table_find (fib_proto_from_ip46 (itype), |
| 102 | ntohl (mp->tunnel.encap_table_id)); |
Mohsin Kazmi | 61b94c6 | 2018-08-20 18:32:39 +0200 | [diff] [blame] | 103 | if (fib_index == ~0) |
| 104 | { |
| 105 | rv = VNET_API_ERROR_NO_SUCH_FIB; |
| 106 | goto out; |
| 107 | } |
| 108 | |
Neale Ranns | 4dd4cf4 | 2019-03-27 05:06:47 -0700 | [diff] [blame] | 109 | rv = vxlan_gbp_tunnel_mode_decode (mp->tunnel.mode, &mode); |
| 110 | |
| 111 | if (rv) |
| 112 | goto out; |
| 113 | |
Neale Ranns | 79a05f5 | 2018-09-11 07:39:43 -0700 | [diff] [blame] | 114 | vnet_vxlan_gbp_tunnel_add_del_args_t a = { |
Mohsin Kazmi | 61b94c6 | 2018-08-20 18:32:39 +0200 | [diff] [blame] | 115 | .is_add = mp->is_add, |
Neale Ranns | 79a05f5 | 2018-09-11 07:39:43 -0700 | [diff] [blame] | 116 | .is_ip6 = (itype == IP46_TYPE_IP6), |
| 117 | .instance = ntohl (mp->tunnel.instance), |
| 118 | .mcast_sw_if_index = ntohl (mp->tunnel.mcast_sw_if_index), |
Mohsin Kazmi | 61b94c6 | 2018-08-20 18:32:39 +0200 | [diff] [blame] | 119 | .encap_fib_index = fib_index, |
Neale Ranns | 79a05f5 | 2018-09-11 07:39:43 -0700 | [diff] [blame] | 120 | .vni = ntohl (mp->tunnel.vni), |
| 121 | .dst = dst, |
| 122 | .src = src, |
Neale Ranns | 4dd4cf4 | 2019-03-27 05:06:47 -0700 | [diff] [blame] | 123 | .mode = mode, |
Mohsin Kazmi | 61b94c6 | 2018-08-20 18:32:39 +0200 | [diff] [blame] | 124 | }; |
| 125 | |
| 126 | /* Check src & dst are different */ |
| 127 | if (ip46_address_cmp (&a.dst, &a.src) == 0) |
| 128 | { |
| 129 | rv = VNET_API_ERROR_SAME_SRC_DST; |
| 130 | goto out; |
| 131 | } |
| 132 | if (ip46_address_is_multicast (&a.dst) && |
| 133 | !vnet_sw_if_index_is_api_valid (a.mcast_sw_if_index)) |
| 134 | { |
| 135 | rv = VNET_API_ERROR_INVALID_SW_IF_INDEX; |
| 136 | goto out; |
| 137 | } |
| 138 | |
Neale Ranns | 79a05f5 | 2018-09-11 07:39:43 -0700 | [diff] [blame] | 139 | rv = vnet_vxlan_gbp_tunnel_add_del (&a, &sw_if_index); |
Mohsin Kazmi | 61b94c6 | 2018-08-20 18:32:39 +0200 | [diff] [blame] | 140 | |
| 141 | out: |
| 142 | /* *INDENT-OFF* */ |
Neale Ranns | 79a05f5 | 2018-09-11 07:39:43 -0700 | [diff] [blame] | 143 | REPLY_MACRO2(VL_API_VXLAN_GBP_TUNNEL_ADD_DEL_REPLY, |
Mohsin Kazmi | 61b94c6 | 2018-08-20 18:32:39 +0200 | [diff] [blame] | 144 | ({ |
| 145 | rmp->sw_if_index = ntohl (sw_if_index); |
| 146 | })); |
| 147 | /* *INDENT-ON* */ |
| 148 | } |
| 149 | |
| 150 | static void send_vxlan_gbp_tunnel_details |
| 151 | (vxlan_gbp_tunnel_t * t, vl_api_registration_t * reg, u32 context) |
| 152 | { |
| 153 | vl_api_vxlan_gbp_tunnel_details_t *rmp; |
Neale Ranns | 79a05f5 | 2018-09-11 07:39:43 -0700 | [diff] [blame] | 154 | ip46_type_t itype = (ip46_address_is_ip4 (&t->dst) ? |
| 155 | IP46_TYPE_IP4 : IP46_TYPE_IP6); |
Mohsin Kazmi | 61b94c6 | 2018-08-20 18:32:39 +0200 | [diff] [blame] | 156 | |
| 157 | rmp = vl_msg_api_alloc (sizeof (*rmp)); |
Dave Barach | b7b9299 | 2018-10-17 10:38:51 -0400 | [diff] [blame] | 158 | clib_memset (rmp, 0, sizeof (*rmp)); |
Mohsin Kazmi | 61b94c6 | 2018-08-20 18:32:39 +0200 | [diff] [blame] | 159 | rmp->_vl_msg_id = ntohs (VL_API_VXLAN_GBP_TUNNEL_DETAILS); |
Mohsin Kazmi | 61b94c6 | 2018-08-20 18:32:39 +0200 | [diff] [blame] | 160 | |
Neale Ranns | 79a05f5 | 2018-09-11 07:39:43 -0700 | [diff] [blame] | 161 | ip_address_encode (&t->src, itype, &rmp->tunnel.src); |
| 162 | ip_address_encode (&t->dst, itype, &rmp->tunnel.dst); |
| 163 | rmp->tunnel.encap_table_id = |
| 164 | fib_table_get_table_id (t->encap_fib_index, fib_proto_from_ip46 (itype)); |
| 165 | |
| 166 | rmp->tunnel.instance = htonl (t->user_instance); |
| 167 | rmp->tunnel.mcast_sw_if_index = htonl (t->mcast_sw_if_index); |
| 168 | rmp->tunnel.vni = htonl (t->vni); |
Neale Ranns | 79a05f5 | 2018-09-11 07:39:43 -0700 | [diff] [blame] | 169 | rmp->tunnel.sw_if_index = htonl (t->sw_if_index); |
Mohsin Kazmi | 61b94c6 | 2018-08-20 18:32:39 +0200 | [diff] [blame] | 170 | rmp->context = context; |
| 171 | |
| 172 | vl_api_send_msg (reg, (u8 *) rmp); |
| 173 | } |
| 174 | |
| 175 | static void vl_api_vxlan_gbp_tunnel_dump_t_handler |
| 176 | (vl_api_vxlan_gbp_tunnel_dump_t * mp) |
| 177 | { |
| 178 | vl_api_registration_t *reg; |
| 179 | vxlan_gbp_main_t *vxm = &vxlan_gbp_main; |
| 180 | vxlan_gbp_tunnel_t *t; |
| 181 | u32 sw_if_index; |
| 182 | |
| 183 | reg = vl_api_client_index_to_registration (mp->client_index); |
| 184 | if (!reg) |
| 185 | return; |
| 186 | |
| 187 | sw_if_index = ntohl (mp->sw_if_index); |
| 188 | |
| 189 | if (~0 == sw_if_index) |
| 190 | { |
| 191 | /* *INDENT-OFF* */ |
| 192 | pool_foreach (t, vxm->tunnels, |
| 193 | ({ |
| 194 | send_vxlan_gbp_tunnel_details(t, reg, mp->context); |
| 195 | })); |
| 196 | /* *INDENT-ON* */ |
| 197 | } |
| 198 | else |
| 199 | { |
| 200 | if ((sw_if_index >= vec_len (vxm->tunnel_index_by_sw_if_index)) || |
| 201 | (~0 == vxm->tunnel_index_by_sw_if_index[sw_if_index])) |
| 202 | { |
| 203 | return; |
| 204 | } |
| 205 | t = &vxm->tunnels[vxm->tunnel_index_by_sw_if_index[sw_if_index]]; |
| 206 | send_vxlan_gbp_tunnel_details (t, reg, mp->context); |
| 207 | } |
| 208 | } |
| 209 | |
| 210 | /* |
| 211 | * vpe_api_hookup |
| 212 | * Add vpe's API message handlers to the table. |
Paul Vinciguerra | bdc0e6b | 2018-09-22 05:32:50 -0700 | [diff] [blame] | 213 | * vlib has already mapped shared memory and |
Mohsin Kazmi | 61b94c6 | 2018-08-20 18:32:39 +0200 | [diff] [blame] | 214 | * added the client registration handlers. |
| 215 | * See .../vlib-api/vlibmemory/memclnt_vlib.c:memclnt_process() |
| 216 | */ |
| 217 | #define vl_msg_name_crc_list |
| 218 | #include <vnet/vnet_all_api_h.h> |
| 219 | #undef vl_msg_name_crc_list |
| 220 | |
| 221 | static void |
| 222 | setup_message_id_table (api_main_t * am) |
| 223 | { |
| 224 | #define _(id,n,crc) vl_msg_api_add_msg_name_crc (am, #n "_" #crc, id); |
| 225 | foreach_vl_msg_name_crc_vxlan_gbp; |
| 226 | #undef _ |
| 227 | } |
| 228 | |
| 229 | static clib_error_t * |
| 230 | vxlan_gbp_api_hookup (vlib_main_t * vm) |
| 231 | { |
Dave Barach | 39d6911 | 2019-11-27 11:42:13 -0500 | [diff] [blame] | 232 | api_main_t *am = vlibapi_get_main (); |
Mohsin Kazmi | 61b94c6 | 2018-08-20 18:32:39 +0200 | [diff] [blame] | 233 | |
| 234 | #define _(N,n) \ |
| 235 | vl_msg_api_set_handlers(VL_API_##N, #n, \ |
| 236 | vl_api_##n##_t_handler, \ |
| 237 | vl_noop_handler, \ |
| 238 | vl_api_##n##_t_endian, \ |
| 239 | vl_api_##n##_t_print, \ |
| 240 | sizeof(vl_api_##n##_t), 1); |
| 241 | foreach_vpe_api_msg; |
| 242 | #undef _ |
| 243 | |
| 244 | /* |
| 245 | * Set up the (msg_name, crc, message-id) table |
| 246 | */ |
| 247 | setup_message_id_table (am); |
| 248 | |
| 249 | return 0; |
| 250 | } |
| 251 | |
| 252 | VLIB_API_INIT_FUNCTION (vxlan_gbp_api_hookup); |
| 253 | |
| 254 | /* |
| 255 | * fd.io coding-style-patch-verification: ON |
| 256 | * |
| 257 | * Local Variables: |
| 258 | * eval: (c-set-style "gnu") |
| 259 | * End: |
| 260 | */ |