Pavel Kotucek | 0f971d8 | 2017-01-03 10:48:54 +0100 | [diff] [blame] | 1 | /* |
| 2 | *------------------------------------------------------------------ |
| 3 | * mpls_api.c - mpls 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/mpls/mpls.h> |
| 26 | #include <vnet/mpls/mpls_tunnel.h> |
| 27 | #include <vnet/fib/fib_table.h> |
| 28 | #include <vnet/fib/fib_api.h> |
| 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 | _(MPLS_IP_BIND_UNBIND, mpls_ip_bind_unbind) \ |
| 50 | _(MPLS_ROUTE_ADD_DEL, mpls_route_add_del) \ |
| 51 | _(MPLS_TUNNEL_ADD_DEL, mpls_tunnel_add_del) \ |
| 52 | _(MPLS_TUNNEL_DUMP, mpls_tunnel_dump) \ |
Dave Barach | a1a093d | 2017-03-02 13:13:23 -0500 | [diff] [blame] | 53 | _(MPLS_FIB_DUMP, mpls_fib_dump) |
Pavel Kotucek | 0f971d8 | 2017-01-03 10:48:54 +0100 | [diff] [blame] | 54 | |
| 55 | extern void stats_dslock_with_hint (int hint, int tag); |
| 56 | extern void stats_dsunlock (void); |
| 57 | |
| 58 | static int |
| 59 | mpls_ip_bind_unbind_handler (vnet_main_t * vnm, |
| 60 | vl_api_mpls_ip_bind_unbind_t * mp) |
| 61 | { |
| 62 | u32 mpls_fib_index, ip_fib_index; |
| 63 | |
| 64 | mpls_fib_index = |
| 65 | fib_table_find (FIB_PROTOCOL_MPLS, ntohl (mp->mb_mpls_table_id)); |
| 66 | |
| 67 | if (~0 == mpls_fib_index) |
| 68 | { |
| 69 | if (mp->mb_create_table_if_needed) |
| 70 | { |
| 71 | mpls_fib_index = |
| 72 | fib_table_find_or_create_and_lock (FIB_PROTOCOL_MPLS, |
| 73 | ntohl (mp->mb_mpls_table_id)); |
| 74 | } |
| 75 | else |
| 76 | return VNET_API_ERROR_NO_SUCH_FIB; |
| 77 | } |
| 78 | |
| 79 | ip_fib_index = fib_table_find ((mp->mb_is_ip4 ? |
| 80 | FIB_PROTOCOL_IP4 : |
| 81 | FIB_PROTOCOL_IP6), |
| 82 | ntohl (mp->mb_ip_table_id)); |
| 83 | if (~0 == ip_fib_index) |
| 84 | return VNET_API_ERROR_NO_SUCH_FIB; |
| 85 | |
| 86 | fib_prefix_t pfx = { |
| 87 | .fp_len = mp->mb_address_length, |
| 88 | }; |
| 89 | |
| 90 | if (mp->mb_is_ip4) |
| 91 | { |
| 92 | pfx.fp_proto = FIB_PROTOCOL_IP4; |
| 93 | clib_memcpy (&pfx.fp_addr.ip4, mp->mb_address, |
| 94 | sizeof (pfx.fp_addr.ip4)); |
| 95 | } |
| 96 | else |
| 97 | { |
| 98 | pfx.fp_proto = FIB_PROTOCOL_IP6; |
| 99 | clib_memcpy (&pfx.fp_addr.ip6, mp->mb_address, |
| 100 | sizeof (pfx.fp_addr.ip6)); |
| 101 | } |
| 102 | |
| 103 | if (mp->mb_is_bind) |
| 104 | fib_table_entry_local_label_add (ip_fib_index, &pfx, |
| 105 | ntohl (mp->mb_label)); |
| 106 | else |
| 107 | fib_table_entry_local_label_remove (ip_fib_index, &pfx, |
| 108 | ntohl (mp->mb_label)); |
| 109 | |
| 110 | return (0); |
| 111 | } |
| 112 | |
| 113 | void |
| 114 | vl_api_mpls_ip_bind_unbind_t_handler (vl_api_mpls_ip_bind_unbind_t * mp) |
| 115 | { |
| 116 | vl_api_mpls_ip_bind_unbind_reply_t *rmp; |
| 117 | vnet_main_t *vnm; |
| 118 | int rv; |
| 119 | |
| 120 | vnm = vnet_get_main (); |
| 121 | vnm->api_errno = 0; |
| 122 | |
| 123 | rv = mpls_ip_bind_unbind_handler (vnm, mp); |
| 124 | rv = (rv == 0) ? vnm->api_errno : rv; |
| 125 | |
| 126 | REPLY_MACRO (VL_API_MPLS_IP_BIND_UNBIND_REPLY); |
| 127 | } |
| 128 | |
| 129 | static int |
| 130 | mpls_route_add_del_t_handler (vnet_main_t * vnm, |
| 131 | vl_api_mpls_route_add_del_t * mp) |
| 132 | { |
| 133 | u32 fib_index, next_hop_fib_index; |
| 134 | mpls_label_t *label_stack = NULL; |
| 135 | int rv, ii, n_labels;; |
| 136 | |
| 137 | fib_prefix_t pfx = { |
| 138 | .fp_len = 21, |
| 139 | .fp_proto = FIB_PROTOCOL_MPLS, |
| 140 | .fp_eos = mp->mr_eos, |
| 141 | .fp_label = ntohl (mp->mr_label), |
| 142 | }; |
| 143 | if (pfx.fp_eos) |
| 144 | { |
| 145 | if (mp->mr_next_hop_proto_is_ip4) |
| 146 | { |
| 147 | pfx.fp_payload_proto = DPO_PROTO_IP4; |
| 148 | } |
| 149 | else |
| 150 | { |
| 151 | pfx.fp_payload_proto = DPO_PROTO_IP6; |
| 152 | } |
| 153 | } |
| 154 | else |
| 155 | { |
| 156 | pfx.fp_payload_proto = DPO_PROTO_MPLS; |
| 157 | } |
| 158 | |
| 159 | rv = add_del_route_check (FIB_PROTOCOL_MPLS, |
| 160 | mp->mr_table_id, |
| 161 | mp->mr_next_hop_sw_if_index, |
| 162 | dpo_proto_to_fib (pfx.fp_payload_proto), |
| 163 | mp->mr_next_hop_table_id, |
| 164 | mp->mr_create_table_if_needed, |
| 165 | &fib_index, &next_hop_fib_index); |
| 166 | |
| 167 | if (0 != rv) |
| 168 | return (rv); |
| 169 | |
| 170 | ip46_address_t nh; |
| 171 | memset (&nh, 0, sizeof (nh)); |
| 172 | |
| 173 | if (mp->mr_next_hop_proto_is_ip4) |
| 174 | memcpy (&nh.ip4, mp->mr_next_hop, sizeof (nh.ip4)); |
| 175 | else |
| 176 | memcpy (&nh.ip6, mp->mr_next_hop, sizeof (nh.ip6)); |
| 177 | |
| 178 | n_labels = mp->mr_next_hop_n_out_labels; |
| 179 | if (n_labels == 0) |
| 180 | ; |
| 181 | else if (1 == n_labels) |
| 182 | vec_add1 (label_stack, ntohl (mp->mr_next_hop_out_label_stack[0])); |
| 183 | else |
| 184 | { |
| 185 | vec_validate (label_stack, n_labels - 1); |
| 186 | for (ii = 0; ii < n_labels; ii++) |
| 187 | label_stack[ii] = ntohl (mp->mr_next_hop_out_label_stack[ii]); |
| 188 | } |
| 189 | |
| 190 | return (add_del_route_t_handler (mp->mr_is_multipath, mp->mr_is_add, 0, // mp->is_drop, |
| 191 | 0, // mp->is_unreach, |
| 192 | 0, // mp->is_prohibit, |
| 193 | 0, // mp->is_local, |
| 194 | mp->mr_is_classify, |
| 195 | mp->mr_classify_table_index, |
| 196 | mp->mr_is_resolve_host, |
| 197 | mp->mr_is_resolve_attached, |
| 198 | fib_index, &pfx, |
| 199 | mp->mr_next_hop_proto_is_ip4, |
| 200 | &nh, ntohl (mp->mr_next_hop_sw_if_index), |
| 201 | next_hop_fib_index, |
| 202 | mp->mr_next_hop_weight, |
| 203 | ntohl (mp->mr_next_hop_via_label), |
| 204 | label_stack)); |
| 205 | } |
| 206 | |
| 207 | void |
| 208 | vl_api_mpls_route_add_del_t_handler (vl_api_mpls_route_add_del_t * mp) |
| 209 | { |
| 210 | vl_api_mpls_route_add_del_reply_t *rmp; |
| 211 | vnet_main_t *vnm; |
| 212 | int rv; |
| 213 | |
| 214 | vnm = vnet_get_main (); |
| 215 | vnm->api_errno = 0; |
| 216 | |
| 217 | rv = mpls_route_add_del_t_handler (vnm, mp); |
| 218 | |
| 219 | rv = (rv == 0) ? vnm->api_errno : rv; |
| 220 | |
| 221 | REPLY_MACRO (VL_API_MPLS_ROUTE_ADD_DEL_REPLY); |
| 222 | } |
| 223 | |
| 224 | static void |
| 225 | vl_api_mpls_tunnel_add_del_t_handler (vl_api_mpls_tunnel_add_del_t * mp) |
| 226 | { |
| 227 | vl_api_mpls_tunnel_add_del_reply_t *rmp; |
| 228 | int rv = 0; |
| 229 | u32 tunnel_sw_if_index; |
| 230 | int ii; |
| 231 | |
| 232 | stats_dslock_with_hint (1 /* release hint */ , 5 /* tag */ ); |
| 233 | |
| 234 | if (mp->mt_is_add) |
| 235 | { |
| 236 | fib_route_path_t rpath, *rpaths = NULL; |
| 237 | mpls_label_t *label_stack = NULL; |
| 238 | |
| 239 | memset (&rpath, 0, sizeof (rpath)); |
| 240 | |
| 241 | if (mp->mt_next_hop_proto_is_ip4) |
| 242 | { |
| 243 | rpath.frp_proto = FIB_PROTOCOL_IP4; |
| 244 | clib_memcpy (&rpath.frp_addr.ip4, |
| 245 | mp->mt_next_hop, sizeof (rpath.frp_addr.ip4)); |
| 246 | } |
| 247 | else |
| 248 | { |
| 249 | rpath.frp_proto = FIB_PROTOCOL_IP6; |
| 250 | clib_memcpy (&rpath.frp_addr.ip6, |
| 251 | mp->mt_next_hop, sizeof (rpath.frp_addr.ip6)); |
| 252 | } |
| 253 | rpath.frp_sw_if_index = ntohl (mp->mt_next_hop_sw_if_index); |
| 254 | |
| 255 | for (ii = 0; ii < mp->mt_next_hop_n_out_labels; ii++) |
| 256 | vec_add1 (label_stack, ntohl (mp->mt_next_hop_out_label_stack[ii])); |
| 257 | |
| 258 | vec_add1 (rpaths, rpath); |
| 259 | |
| 260 | vnet_mpls_tunnel_add (rpaths, label_stack, |
| 261 | mp->mt_l2_only, &tunnel_sw_if_index); |
| 262 | vec_free (rpaths); |
| 263 | vec_free (label_stack); |
| 264 | } |
| 265 | else |
| 266 | { |
| 267 | tunnel_sw_if_index = ntohl (mp->mt_sw_if_index); |
| 268 | vnet_mpls_tunnel_del (tunnel_sw_if_index); |
| 269 | } |
| 270 | |
| 271 | stats_dsunlock (); |
| 272 | |
| 273 | /* *INDENT-OFF* */ |
| 274 | REPLY_MACRO2(VL_API_MPLS_TUNNEL_ADD_DEL_REPLY, |
| 275 | ({ |
| 276 | rmp->sw_if_index = ntohl(tunnel_sw_if_index); |
| 277 | })); |
| 278 | /* *INDENT-ON* */ |
| 279 | } |
| 280 | |
Pavel Kotucek | 0f971d8 | 2017-01-03 10:48:54 +0100 | [diff] [blame] | 281 | typedef struct mpls_tunnel_send_walk_ctx_t_ |
| 282 | { |
| 283 | unix_shared_memory_queue_t *q; |
| 284 | u32 index; |
| 285 | u32 context; |
| 286 | } mpls_tunnel_send_walk_ctx_t; |
| 287 | |
| 288 | static void |
| 289 | send_mpls_tunnel_entry (u32 mti, void *arg) |
| 290 | { |
| 291 | mpls_tunnel_send_walk_ctx_t *ctx; |
| 292 | vl_api_mpls_tunnel_details_t *mp; |
| 293 | const mpls_tunnel_t *mt; |
| 294 | u32 nlabels; |
| 295 | |
| 296 | ctx = arg; |
| 297 | |
| 298 | if (~0 != ctx->index && mti != ctx->index) |
| 299 | return; |
| 300 | |
| 301 | mt = mpls_tunnel_get (mti); |
| 302 | nlabels = vec_len (mt->mt_label_stack); |
| 303 | |
| 304 | mp = vl_msg_api_alloc (sizeof (*mp) + nlabels * sizeof (u32)); |
| 305 | memset (mp, 0, sizeof (*mp)); |
| 306 | mp->_vl_msg_id = ntohs (VL_API_MPLS_TUNNEL_DETAILS); |
| 307 | mp->context = ctx->context; |
| 308 | |
| 309 | mp->tunnel_index = ntohl (mti); |
| 310 | memcpy (mp->mt_next_hop_out_labels, |
| 311 | mt->mt_label_stack, nlabels * sizeof (u32)); |
| 312 | |
| 313 | // FIXME |
| 314 | |
| 315 | vl_msg_api_send_shmem (ctx->q, (u8 *) & mp); |
| 316 | } |
| 317 | |
| 318 | static void |
| 319 | vl_api_mpls_tunnel_dump_t_handler (vl_api_mpls_tunnel_dump_t * mp) |
| 320 | { |
| 321 | unix_shared_memory_queue_t *q; |
| 322 | |
| 323 | q = vl_api_client_index_to_input_queue (mp->client_index); |
| 324 | if (q == 0) |
| 325 | return; |
| 326 | |
| 327 | mpls_tunnel_send_walk_ctx_t ctx = { |
| 328 | .q = q, |
| 329 | .index = ntohl (mp->tunnel_index), |
| 330 | .context = mp->context, |
| 331 | }; |
| 332 | mpls_tunnel_walk (send_mpls_tunnel_entry, &ctx); |
| 333 | } |
| 334 | |
| 335 | static void |
Pavel Kotucek | 0f971d8 | 2017-01-03 10:48:54 +0100 | [diff] [blame] | 336 | send_mpls_fib_details (vpe_api_main_t * am, |
| 337 | unix_shared_memory_queue_t * q, |
| 338 | u32 table_id, u32 label, u32 eos, |
| 339 | fib_route_path_encode_t * api_rpaths, u32 context) |
| 340 | { |
| 341 | vl_api_mpls_fib_details_t *mp; |
| 342 | fib_route_path_encode_t *api_rpath; |
| 343 | vl_api_fib_path2_t *fp; |
| 344 | int path_count; |
| 345 | |
| 346 | path_count = vec_len (api_rpaths); |
| 347 | mp = vl_msg_api_alloc (sizeof (*mp) + path_count * sizeof (*fp)); |
| 348 | if (!mp) |
| 349 | return; |
| 350 | memset (mp, 0, sizeof (*mp)); |
| 351 | mp->_vl_msg_id = ntohs (VL_API_MPLS_FIB_DETAILS); |
| 352 | mp->context = context; |
| 353 | |
| 354 | mp->table_id = htonl (table_id); |
| 355 | mp->eos_bit = eos; |
| 356 | mp->label = htonl (label); |
| 357 | |
| 358 | mp->count = htonl (path_count); |
| 359 | fp = mp->path; |
| 360 | vec_foreach (api_rpath, api_rpaths) |
| 361 | { |
| 362 | memset (fp, 0, sizeof (*fp)); |
| 363 | fp->weight = htonl (api_rpath->rpath.frp_weight); |
| 364 | fp->sw_if_index = htonl (api_rpath->rpath.frp_sw_if_index); |
| 365 | copy_fib_next_hop (api_rpath, fp); |
| 366 | fp++; |
| 367 | } |
| 368 | |
| 369 | vl_msg_api_send_shmem (q, (u8 *) & mp); |
| 370 | } |
| 371 | |
| 372 | static void |
| 373 | vl_api_mpls_fib_dump_t_handler (vl_api_mpls_fib_dump_t * mp) |
| 374 | { |
| 375 | vpe_api_main_t *am = &vpe_api_main; |
| 376 | unix_shared_memory_queue_t *q; |
| 377 | mpls_main_t *mm = &mpls_main; |
| 378 | fib_table_t *fib_table; |
| 379 | fib_node_index_t lfei, *lfeip, *lfeis = NULL; |
| 380 | mpls_label_t key; |
| 381 | fib_prefix_t pfx; |
| 382 | u32 fib_index; |
| 383 | fib_route_path_encode_t *api_rpaths; |
| 384 | |
| 385 | q = vl_api_client_index_to_input_queue (mp->client_index); |
| 386 | if (q == 0) |
| 387 | return; |
| 388 | |
| 389 | /* *INDENT-OFF* */ |
| 390 | pool_foreach (fib_table, mm->fibs, |
| 391 | ({ |
| 392 | hash_foreach(key, lfei, fib_table->mpls.mf_entries, |
| 393 | ({ |
| 394 | vec_add1(lfeis, lfei); |
| 395 | })); |
| 396 | })); |
| 397 | /* *INDENT-ON* */ |
| 398 | vec_sort_with_function (lfeis, fib_entry_cmp_for_sort); |
| 399 | |
| 400 | vec_foreach (lfeip, lfeis) |
| 401 | { |
| 402 | fib_entry_get_prefix (*lfeip, &pfx); |
| 403 | fib_index = fib_entry_get_fib_index (*lfeip); |
| 404 | fib_table = fib_table_get (fib_index, pfx.fp_proto); |
| 405 | api_rpaths = NULL; |
| 406 | fib_entry_encode (*lfeip, &api_rpaths); |
| 407 | send_mpls_fib_details (am, q, |
| 408 | fib_table->ft_table_id, |
| 409 | pfx.fp_label, pfx.fp_eos, api_rpaths, mp->context); |
| 410 | vec_free (api_rpaths); |
| 411 | } |
| 412 | |
| 413 | vec_free (lfeis); |
| 414 | } |
| 415 | |
| 416 | /* |
| 417 | * mpls_api_hookup |
| 418 | * Add vpe's API message handlers to the table. |
| 419 | * vlib has alread mapped shared memory and |
| 420 | * added the client registration handlers. |
| 421 | * See .../vlib-api/vlibmemory/memclnt_vlib.c:memclnt_process() |
| 422 | */ |
| 423 | #define vl_msg_name_crc_list |
| 424 | #include <vnet/vnet_all_api_h.h> |
| 425 | #undef vl_msg_name_crc_list |
| 426 | |
| 427 | static void |
| 428 | setup_message_id_table (api_main_t * am) |
| 429 | { |
| 430 | #define _(id,n,crc) vl_msg_api_add_msg_name_crc (am, #n "_" #crc, id); |
| 431 | foreach_vl_msg_name_crc_mpls; |
| 432 | #undef _ |
| 433 | } |
| 434 | |
| 435 | static clib_error_t * |
| 436 | mpls_api_hookup (vlib_main_t * vm) |
| 437 | { |
| 438 | api_main_t *am = &api_main; |
| 439 | |
| 440 | #define _(N,n) \ |
| 441 | vl_msg_api_set_handlers(VL_API_##N, #n, \ |
| 442 | vl_api_##n##_t_handler, \ |
| 443 | vl_noop_handler, \ |
| 444 | vl_api_##n##_t_endian, \ |
| 445 | vl_api_##n##_t_print, \ |
| 446 | sizeof(vl_api_##n##_t), 1); |
| 447 | foreach_vpe_api_msg; |
| 448 | #undef _ |
| 449 | |
| 450 | /* |
| 451 | * Trace space for 8 MPLS encap labels |
| 452 | */ |
| 453 | am->api_trace_cfg[VL_API_MPLS_TUNNEL_ADD_DEL].size += 8 * sizeof (u32); |
| 454 | |
| 455 | /* |
| 456 | * Set up the (msg_name, crc, message-id) table |
| 457 | */ |
| 458 | setup_message_id_table (am); |
| 459 | |
| 460 | return 0; |
| 461 | } |
| 462 | |
| 463 | VLIB_API_INIT_FUNCTION (mpls_api_hookup); |
| 464 | |
| 465 | /* |
| 466 | * fd.io coding-style-patch-verification: ON |
| 467 | * |
| 468 | * Local Variables: |
| 469 | * eval: (c-set-style "gnu") |
| 470 | * End: |
| 471 | */ |