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