blob: dbd1d8b6e31657b24bfdf99266cdb71d3f871a73 [file] [log] [blame]
Pavel Kotucek0f971d82017-01-03 10:48:54 +01001/*
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>
Neale Rannsa3af3372017-03-28 03:49:52 -070029#include <vnet/fib/mpls_fib.h>
Neale Ranns0f26c5a2017-03-01 15:12:11 -080030#include <vnet/fib/fib_path_list.h>
Pavel Kotucek0f971d82017-01-03 10:48:54 +010031
32#include <vnet/vnet_msg_enum.h>
33
34#define vl_typedefs /* define message structures */
35#include <vnet/vnet_all_api_h.h>
36#undef vl_typedefs
37
38#define vl_endianfun /* define message structures */
39#include <vnet/vnet_all_api_h.h>
40#undef vl_endianfun
41
42/* instantiate all the print functions we know about */
43#define vl_print(handle, ...) vlib_cli_output (handle, __VA_ARGS__)
44#define vl_printfun
45#include <vnet/vnet_all_api_h.h>
46#undef vl_printfun
47
48#include <vlibapi/api_helper_macros.h>
49
50#define foreach_vpe_api_msg \
51_(MPLS_IP_BIND_UNBIND, mpls_ip_bind_unbind) \
52_(MPLS_ROUTE_ADD_DEL, mpls_route_add_del) \
Neale Ranns28ab9cc2017-08-14 07:18:42 -070053_(MPLS_TABLE_ADD_DEL, mpls_table_add_del) \
Pavel Kotucek0f971d82017-01-03 10:48:54 +010054_(MPLS_TUNNEL_ADD_DEL, mpls_tunnel_add_del) \
55_(MPLS_TUNNEL_DUMP, mpls_tunnel_dump) \
Neale Rannsb8d44812017-11-10 06:53:54 -080056_(SW_INTERFACE_SET_MPLS_ENABLE, sw_interface_set_mpls_enable) \
Dave Baracha1a093d2017-03-02 13:13:23 -050057_(MPLS_FIB_DUMP, mpls_fib_dump)
Pavel Kotucek0f971d82017-01-03 10:48:54 +010058
59extern void stats_dslock_with_hint (int hint, int tag);
60extern void stats_dsunlock (void);
61
Neale Ranns28ab9cc2017-08-14 07:18:42 -070062void
Neale Ranns15002542017-09-10 04:39:11 -070063mpls_table_delete (u32 table_id, u8 is_api)
64{
65 u32 fib_index;
66
67 /*
68 * The MPLS defult table must also be explicitly created via the API.
69 * So in contrast to IP, it gets no special treatment here.
70 *
71 * The API holds only one lock on the table.
72 * i.e. it can be added many times via the API but needs to be
73 * deleted only once.
74 */
75 fib_index = fib_table_find (FIB_PROTOCOL_MPLS, table_id);
76
77 if (~0 != fib_index)
78 {
79 fib_table_unlock (fib_index,
80 FIB_PROTOCOL_MPLS,
81 (is_api ? FIB_SOURCE_API : FIB_SOURCE_CLI));
82 }
83}
84
85void
Neale Ranns28ab9cc2017-08-14 07:18:42 -070086vl_api_mpls_table_add_del_t_handler (vl_api_mpls_table_add_del_t * mp)
87{
88 vl_api_mpls_table_add_del_reply_t *rmp;
89 vnet_main_t *vnm;
90 int rv = 0;
91
92 vnm = vnet_get_main ();
93 vnm->api_errno = 0;
94
Neale Ranns15002542017-09-10 04:39:11 -070095 if (mp->mt_is_add)
Neale Ranns2297af02017-09-12 09:45:04 -070096 mpls_table_create (ntohl (mp->mt_table_id), 1, mp->mt_name);
Neale Ranns15002542017-09-10 04:39:11 -070097 else
98 mpls_table_delete (ntohl (mp->mt_table_id), 1);
99
Chris Lukeb2bcad62017-09-18 08:51:22 -0400100 // NB: Nothing sets rv; none of the above returns an error
Neale Ranns15002542017-09-10 04:39:11 -0700101
Neale Ranns28ab9cc2017-08-14 07:18:42 -0700102 REPLY_MACRO (VL_API_MPLS_TABLE_ADD_DEL_REPLY);
103}
104
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100105static int
106mpls_ip_bind_unbind_handler (vnet_main_t * vnm,
107 vl_api_mpls_ip_bind_unbind_t * mp)
108{
109 u32 mpls_fib_index, ip_fib_index;
110
111 mpls_fib_index =
112 fib_table_find (FIB_PROTOCOL_MPLS, ntohl (mp->mb_mpls_table_id));
113
114 if (~0 == mpls_fib_index)
115 {
Neale Ranns15002542017-09-10 04:39:11 -0700116 return VNET_API_ERROR_NO_SUCH_FIB;
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100117 }
118
119 ip_fib_index = fib_table_find ((mp->mb_is_ip4 ?
120 FIB_PROTOCOL_IP4 :
121 FIB_PROTOCOL_IP6),
122 ntohl (mp->mb_ip_table_id));
123 if (~0 == ip_fib_index)
124 return VNET_API_ERROR_NO_SUCH_FIB;
125
126 fib_prefix_t pfx = {
127 .fp_len = mp->mb_address_length,
128 };
129
130 if (mp->mb_is_ip4)
131 {
132 pfx.fp_proto = FIB_PROTOCOL_IP4;
133 clib_memcpy (&pfx.fp_addr.ip4, mp->mb_address,
134 sizeof (pfx.fp_addr.ip4));
135 }
136 else
137 {
138 pfx.fp_proto = FIB_PROTOCOL_IP6;
139 clib_memcpy (&pfx.fp_addr.ip6, mp->mb_address,
140 sizeof (pfx.fp_addr.ip6));
141 }
142
143 if (mp->mb_is_bind)
144 fib_table_entry_local_label_add (ip_fib_index, &pfx,
145 ntohl (mp->mb_label));
146 else
147 fib_table_entry_local_label_remove (ip_fib_index, &pfx,
148 ntohl (mp->mb_label));
149
150 return (0);
151}
152
153void
154vl_api_mpls_ip_bind_unbind_t_handler (vl_api_mpls_ip_bind_unbind_t * mp)
155{
156 vl_api_mpls_ip_bind_unbind_reply_t *rmp;
157 vnet_main_t *vnm;
158 int rv;
159
160 vnm = vnet_get_main ();
161 vnm->api_errno = 0;
162
163 rv = mpls_ip_bind_unbind_handler (vnm, mp);
164 rv = (rv == 0) ? vnm->api_errno : rv;
165
166 REPLY_MACRO (VL_API_MPLS_IP_BIND_UNBIND_REPLY);
167}
168
169static int
170mpls_route_add_del_t_handler (vnet_main_t * vnm,
Neale Ranns008dbe12018-09-07 09:32:36 -0700171 vl_api_mpls_route_add_del_t * mp,
172 u32 * stats_index)
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100173{
Neale Ranns31ed7442018-02-23 05:29:09 -0800174 fib_mpls_label_t *label_stack = NULL;
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100175 u32 fib_index, next_hop_fib_index;
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100176 int rv, ii, n_labels;;
177
178 fib_prefix_t pfx = {
179 .fp_len = 21,
180 .fp_proto = FIB_PROTOCOL_MPLS,
181 .fp_eos = mp->mr_eos,
182 .fp_label = ntohl (mp->mr_label),
183 };
184 if (pfx.fp_eos)
185 {
Neale Rannsda78f952017-05-24 09:15:43 -0700186 pfx.fp_payload_proto = mp->mr_next_hop_proto;
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100187 }
188 else
189 {
190 pfx.fp_payload_proto = DPO_PROTO_MPLS;
191 }
192
193 rv = add_del_route_check (FIB_PROTOCOL_MPLS,
194 mp->mr_table_id,
195 mp->mr_next_hop_sw_if_index,
Neale Rannsda78f952017-05-24 09:15:43 -0700196 pfx.fp_payload_proto,
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100197 mp->mr_next_hop_table_id,
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800198 mp->mr_is_rpf_id,
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100199 &fib_index, &next_hop_fib_index);
200
201 if (0 != rv)
202 return (rv);
203
204 ip46_address_t nh;
205 memset (&nh, 0, sizeof (nh));
206
Neale Rannsda78f952017-05-24 09:15:43 -0700207 if (DPO_PROTO_IP4 == mp->mr_next_hop_proto)
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100208 memcpy (&nh.ip4, mp->mr_next_hop, sizeof (nh.ip4));
Neale Rannsda78f952017-05-24 09:15:43 -0700209 else if (DPO_PROTO_IP6 == mp->mr_next_hop_proto)
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100210 memcpy (&nh.ip6, mp->mr_next_hop, sizeof (nh.ip6));
211
212 n_labels = mp->mr_next_hop_n_out_labels;
213 if (n_labels == 0)
214 ;
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100215 else
216 {
217 vec_validate (label_stack, n_labels - 1);
218 for (ii = 0; ii < n_labels; ii++)
Neale Ranns31ed7442018-02-23 05:29:09 -0800219 {
220 label_stack[ii].fml_value =
221 ntohl (mp->mr_next_hop_out_label_stack[ii].label);
222 label_stack[ii].fml_ttl = mp->mr_next_hop_out_label_stack[ii].ttl;
223 label_stack[ii].fml_exp = mp->mr_next_hop_out_label_stack[ii].exp;
224 label_stack[ii].fml_mode =
225 (mp->mr_next_hop_out_label_stack[ii].is_uniform ?
226 FIB_MPLS_LSP_MODE_UNIFORM : FIB_MPLS_LSP_MODE_PIPE);
227 }
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100228 }
229
Neale Ranns054c03a2017-10-13 05:15:07 -0700230 /* *INDENT-OFF* */
Neale Ranns008dbe12018-09-07 09:32:36 -0700231 rv = add_del_route_t_handler (mp->mr_is_multipath, mp->mr_is_add,
232 0, // mp->is_drop,
233 0, // mp->is_unreach,
234 0, // mp->is_prohibit,
235 0, // mp->is_local,
236 mp->mr_is_multicast,
237 mp->mr_is_classify,
238 mp->mr_classify_table_index,
239 mp->mr_is_resolve_host,
240 mp->mr_is_resolve_attached,
241 mp->mr_is_interface_rx,
242 mp->mr_is_rpf_id,
243 0, // l2_bridged
244 0, // is source_lookup
245 0, // is_udp_encap
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100246 fib_index, &pfx,
Neale Ranns008dbe12018-09-07 09:32:36 -0700247 mp->mr_next_hop_proto,
248 &nh, ~0, // next_hop_id
249 ntohl (mp->mr_next_hop_sw_if_index),
250 next_hop_fib_index,
251 mp->mr_next_hop_weight,
252 mp->mr_next_hop_preference,
253 ntohl (mp->mr_next_hop_via_label),
254 label_stack);
Neale Ranns054c03a2017-10-13 05:15:07 -0700255 /* *INDENT-ON* */
Neale Ranns008dbe12018-09-07 09:32:36 -0700256
257 if (mp->mr_is_add && 0 == rv)
258 *stats_index = fib_table_entry_get_stats_index (fib_index, &pfx);
259
260 return (rv);
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100261}
262
263void
264vl_api_mpls_route_add_del_t_handler (vl_api_mpls_route_add_del_t * mp)
265{
266 vl_api_mpls_route_add_del_reply_t *rmp;
267 vnet_main_t *vnm;
Neale Ranns008dbe12018-09-07 09:32:36 -0700268 u32 stats_index;
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100269 int rv;
270
271 vnm = vnet_get_main ();
Neale Ranns008dbe12018-09-07 09:32:36 -0700272 stats_index = ~0;
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100273
Neale Ranns008dbe12018-09-07 09:32:36 -0700274 rv = mpls_route_add_del_t_handler (vnm, mp, &stats_index);
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100275
Neale Ranns008dbe12018-09-07 09:32:36 -0700276 /* *INDENT-OFF* */
277 REPLY_MACRO2 (VL_API_MPLS_ROUTE_ADD_DEL_REPLY,
278 ({
279 rmp->stats_index = htonl (stats_index);
280 }));
281 /* *INDENT-ON* */
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100282}
283
Neale Ranns15002542017-09-10 04:39:11 -0700284void
Neale Ranns2297af02017-09-12 09:45:04 -0700285mpls_table_create (u32 table_id, u8 is_api, const u8 * name)
Neale Ranns15002542017-09-10 04:39:11 -0700286{
287 u32 fib_index;
288
289 /*
290 * The MPLS defult table must also be explicitly created via the API.
291 * So in contrast to IP, it gets no special treatment here.
292 */
293
294 /*
295 * The API holds only one lock on the table.
296 * i.e. it can be added many times via the API but needs to be
297 * deleted only once.
298 */
299 fib_index = fib_table_find (FIB_PROTOCOL_MPLS, table_id);
300
301 if (~0 == fib_index)
302 {
Neale Ranns2297af02017-09-12 09:45:04 -0700303 fib_table_find_or_create_and_lock_w_name (FIB_PROTOCOL_MPLS,
304 table_id,
305 (is_api ?
306 FIB_SOURCE_API :
307 FIB_SOURCE_CLI), name);
Neale Ranns15002542017-09-10 04:39:11 -0700308 }
309}
310
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100311static void
312vl_api_mpls_tunnel_add_del_t_handler (vl_api_mpls_tunnel_add_del_t * mp)
313{
314 vl_api_mpls_tunnel_add_del_reply_t *rmp;
315 int rv = 0;
316 u32 tunnel_sw_if_index;
317 int ii;
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800318 fib_route_path_t rpath, *rpaths = NULL;
Neale Ranns7c922dc2018-08-30 06:12:27 -0700319 u32 next_hop_via_label;
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800320
321 memset (&rpath, 0, sizeof (rpath));
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100322
323 stats_dslock_with_hint (1 /* release hint */ , 5 /* tag */ );
324
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800325 if (mp->mt_next_hop_proto_is_ip4)
326 {
Neale Rannsda78f952017-05-24 09:15:43 -0700327 rpath.frp_proto = DPO_PROTO_IP4;
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800328 clib_memcpy (&rpath.frp_addr.ip4,
329 mp->mt_next_hop, sizeof (rpath.frp_addr.ip4));
330 }
331 else
332 {
Neale Rannsda78f952017-05-24 09:15:43 -0700333 rpath.frp_proto = DPO_PROTO_IP6;
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800334 clib_memcpy (&rpath.frp_addr.ip6,
335 mp->mt_next_hop, sizeof (rpath.frp_addr.ip6));
336 }
337 rpath.frp_sw_if_index = ntohl (mp->mt_next_hop_sw_if_index);
338 rpath.frp_weight = 1;
339
Neale Ranns7c922dc2018-08-30 06:12:27 -0700340 next_hop_via_label = ntohl (mp->mt_next_hop_via_label);
341 if ((MPLS_LABEL_INVALID != next_hop_via_label) && (0 != next_hop_via_label))
342 {
343 rpath.frp_proto = DPO_PROTO_MPLS;
344 rpath.frp_local_label = next_hop_via_label;
345 rpath.frp_eos = MPLS_NON_EOS;
346 }
347
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100348 if (mp->mt_is_add)
349 {
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100350 for (ii = 0; ii < mp->mt_next_hop_n_out_labels; ii++)
Neale Ranns31ed7442018-02-23 05:29:09 -0800351 {
352 fib_mpls_label_t fml = {
353 .fml_value = ntohl (mp->mt_next_hop_out_label_stack[ii].label),
354 .fml_ttl = mp->mt_next_hop_out_label_stack[ii].ttl,
355 .fml_exp = mp->mt_next_hop_out_label_stack[ii].exp,
356 .fml_mode = (mp->mt_next_hop_out_label_stack[ii].is_uniform ?
357 FIB_MPLS_LSP_MODE_UNIFORM : FIB_MPLS_LSP_MODE_PIPE),
358 };
359 vec_add1 (rpath.frp_label_stack, fml);
360 }
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800361 }
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100362
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800363 vec_add1 (rpaths, rpath);
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100364
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800365 tunnel_sw_if_index = ntohl (mp->mt_sw_if_index);
366
367 if (mp->mt_is_add)
368 {
369 if (~0 == tunnel_sw_if_index)
370 tunnel_sw_if_index = vnet_mpls_tunnel_create (mp->mt_l2_only,
371 mp->mt_is_multicast);
372 vnet_mpls_tunnel_path_add (tunnel_sw_if_index, rpaths);
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100373 }
374 else
375 {
376 tunnel_sw_if_index = ntohl (mp->mt_sw_if_index);
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800377 if (!vnet_mpls_tunnel_path_remove (tunnel_sw_if_index, rpaths))
378 vnet_mpls_tunnel_del (tunnel_sw_if_index);
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100379 }
380
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800381 vec_free (rpaths);
382
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100383 stats_dsunlock ();
384
385 /* *INDENT-OFF* */
386 REPLY_MACRO2(VL_API_MPLS_TUNNEL_ADD_DEL_REPLY,
387 ({
388 rmp->sw_if_index = ntohl(tunnel_sw_if_index);
389 }));
390 /* *INDENT-ON* */
391}
392
Neale Rannsb8d44812017-11-10 06:53:54 -0800393static void
394 vl_api_sw_interface_set_mpls_enable_t_handler
395 (vl_api_sw_interface_set_mpls_enable_t * mp)
396{
397 vl_api_sw_interface_set_mpls_enable_reply_t *rmp;
398 int rv = 0;
399
400 VALIDATE_SW_IF_INDEX (mp);
401
402 rv = mpls_sw_interface_enable_disable (&mpls_main,
403 ntohl (mp->sw_if_index),
404 mp->enable, 1);
405
406 BAD_SW_IF_INDEX_LABEL;
407 REPLY_MACRO (VL_API_SW_INTERFACE_SET_MPLS_ENABLE_REPLY);
408}
409
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100410typedef struct mpls_tunnel_send_walk_ctx_t_
411{
Florin Coras6c4dae22018-01-09 06:39:23 -0800412 vl_api_registration_t *reg;
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100413 u32 index;
414 u32 context;
415} mpls_tunnel_send_walk_ctx_t;
416
417static void
418send_mpls_tunnel_entry (u32 mti, void *arg)
419{
Neale Rannsd792d9c2017-10-21 10:53:20 -0700420 fib_route_path_encode_t *api_rpaths = NULL, *api_rpath;
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100421 mpls_tunnel_send_walk_ctx_t *ctx;
422 vl_api_mpls_tunnel_details_t *mp;
423 const mpls_tunnel_t *mt;
Neale Ranns31ed7442018-02-23 05:29:09 -0800424 vl_api_fib_path_t *fp;
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800425 u32 n;
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100426
427 ctx = arg;
428
429 if (~0 != ctx->index && mti != ctx->index)
430 return;
431
432 mt = mpls_tunnel_get (mti);
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800433 n = fib_path_list_get_n_paths (mt->mt_path_list);
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100434
Neale Ranns31ed7442018-02-23 05:29:09 -0800435 mp = vl_msg_api_alloc (sizeof (*mp) + n * sizeof (vl_api_fib_path_t));
436 memset (mp, 0, sizeof (*mp) + n * sizeof (vl_api_fib_path_t));
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800437
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100438 mp->_vl_msg_id = ntohs (VL_API_MPLS_TUNNEL_DETAILS);
439 mp->context = ctx->context;
440
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800441 mp->mt_tunnel_index = ntohl (mti);
442 mp->mt_count = ntohl (n);
443
444 fib_path_list_walk (mt->mt_path_list, fib_path_encode, &api_rpaths);
445
446 fp = mp->mt_paths;
447 vec_foreach (api_rpath, api_rpaths)
448 {
Neale Ranns81458422018-03-12 06:59:36 -0700449 fib_api_path_encode (api_rpath, fp);
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800450 fp++;
451 }
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100452
453 // FIXME
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800454 // memcpy (mp->mt_next_hop_out_labels,
455 // mt->mt_label_stack, nlabels * sizeof (u32));
456
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100457
Florin Coras6c4dae22018-01-09 06:39:23 -0800458 vl_api_send_msg (ctx->reg, (u8 *) mp);
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100459}
460
461static void
462vl_api_mpls_tunnel_dump_t_handler (vl_api_mpls_tunnel_dump_t * mp)
463{
Florin Coras6c4dae22018-01-09 06:39:23 -0800464 vl_api_registration_t *reg;
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100465
Florin Coras6c4dae22018-01-09 06:39:23 -0800466 reg = vl_api_client_index_to_registration (mp->client_index);
467 if (!reg)
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100468 return;
469
470 mpls_tunnel_send_walk_ctx_t ctx = {
Florin Coras6c4dae22018-01-09 06:39:23 -0800471 .reg = reg,
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100472 .index = ntohl (mp->tunnel_index),
473 .context = mp->context,
474 };
475 mpls_tunnel_walk (send_mpls_tunnel_entry, &ctx);
476}
477
478static void
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100479send_mpls_fib_details (vpe_api_main_t * am,
Florin Coras6c4dae22018-01-09 06:39:23 -0800480 vl_api_registration_t * reg,
Neale Ranns2297af02017-09-12 09:45:04 -0700481 const fib_table_t * table,
Neale Rannsc5d43172018-07-30 08:04:40 -0700482 const fib_prefix_t * pfx,
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100483 fib_route_path_encode_t * api_rpaths, u32 context)
484{
485 vl_api_mpls_fib_details_t *mp;
486 fib_route_path_encode_t *api_rpath;
Neale Ranns31ed7442018-02-23 05:29:09 -0800487 vl_api_fib_path_t *fp;
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100488 int path_count;
489
490 path_count = vec_len (api_rpaths);
491 mp = vl_msg_api_alloc (sizeof (*mp) + path_count * sizeof (*fp));
492 if (!mp)
493 return;
494 memset (mp, 0, sizeof (*mp));
495 mp->_vl_msg_id = ntohs (VL_API_MPLS_FIB_DETAILS);
496 mp->context = context;
497
Neale Ranns2297af02017-09-12 09:45:04 -0700498 mp->table_id = htonl (table->ft_table_id);
499 memcpy (mp->table_name, table->ft_desc,
500 clib_min (vec_len (table->ft_desc), sizeof (mp->table_name)));
Neale Rannsc5d43172018-07-30 08:04:40 -0700501 mp->eos_bit = pfx->fp_eos;
502 mp->label = htonl (pfx->fp_label);
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100503
504 mp->count = htonl (path_count);
505 fp = mp->path;
506 vec_foreach (api_rpath, api_rpaths)
507 {
Neale Ranns81458422018-03-12 06:59:36 -0700508 fib_api_path_encode (api_rpath, fp);
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100509 fp++;
510 }
511
Florin Coras6c4dae22018-01-09 06:39:23 -0800512 vl_api_send_msg (reg, (u8 *) mp);
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100513}
514
Neale Rannsa3af3372017-03-28 03:49:52 -0700515typedef struct vl_api_mpls_fib_dump_table_walk_ctx_t_
516{
517 fib_node_index_t *lfeis;
518} vl_api_mpls_fib_dump_table_walk_ctx_t;
519
Neale Ranns89541992017-04-06 04:41:02 -0700520static fib_table_walk_rc_t
Neale Rannsa3af3372017-03-28 03:49:52 -0700521vl_api_mpls_fib_dump_table_walk (fib_node_index_t fei, void *arg)
522{
523 vl_api_mpls_fib_dump_table_walk_ctx_t *ctx = arg;
524
525 vec_add1 (ctx->lfeis, fei);
526
Neale Ranns89541992017-04-06 04:41:02 -0700527 return (FIB_TABLE_WALK_CONTINUE);
Neale Rannsa3af3372017-03-28 03:49:52 -0700528}
529
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100530static void
531vl_api_mpls_fib_dump_t_handler (vl_api_mpls_fib_dump_t * mp)
532{
533 vpe_api_main_t *am = &vpe_api_main;
Florin Coras6c4dae22018-01-09 06:39:23 -0800534 vl_api_registration_t *reg;
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100535 mpls_main_t *mm = &mpls_main;
536 fib_table_t *fib_table;
Neale Rannsa3af3372017-03-28 03:49:52 -0700537 mpls_fib_t *mpls_fib;
538 fib_node_index_t *lfeip = NULL;
Neale Rannsc5d43172018-07-30 08:04:40 -0700539 const fib_prefix_t *pfx;
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100540 u32 fib_index;
541 fib_route_path_encode_t *api_rpaths;
Neale Rannsa3af3372017-03-28 03:49:52 -0700542 vl_api_mpls_fib_dump_table_walk_ctx_t ctx = {
543 .lfeis = NULL,
544 };
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100545
Florin Coras6c4dae22018-01-09 06:39:23 -0800546 reg = vl_api_client_index_to_registration (mp->client_index);
547 if (!reg)
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100548 return;
549
550 /* *INDENT-OFF* */
Neale Rannsa3af3372017-03-28 03:49:52 -0700551 pool_foreach (mpls_fib, mm->mpls_fibs,
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100552 ({
Neale Rannsa3af3372017-03-28 03:49:52 -0700553 mpls_fib_table_walk (mpls_fib,
554 vl_api_mpls_fib_dump_table_walk,
555 &ctx);
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100556 }));
557 /* *INDENT-ON* */
Neale Rannsa3af3372017-03-28 03:49:52 -0700558 vec_sort_with_function (ctx.lfeis, fib_entry_cmp_for_sort);
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100559
Neale Rannsa3af3372017-03-28 03:49:52 -0700560 vec_foreach (lfeip, ctx.lfeis)
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100561 {
Neale Rannsc5d43172018-07-30 08:04:40 -0700562 pfx = fib_entry_get_prefix (*lfeip);
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100563 fib_index = fib_entry_get_fib_index (*lfeip);
Neale Rannsc5d43172018-07-30 08:04:40 -0700564 fib_table = fib_table_get (fib_index, pfx->fp_proto);
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100565 api_rpaths = NULL;
566 fib_entry_encode (*lfeip, &api_rpaths);
Neale Rannsc5d43172018-07-30 08:04:40 -0700567 send_mpls_fib_details (am, reg, fib_table, pfx, api_rpaths, mp->context);
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100568 vec_free (api_rpaths);
569 }
570
Neale Rannsa3af3372017-03-28 03:49:52 -0700571 vec_free (ctx.lfeis);
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100572}
573
574/*
575 * mpls_api_hookup
576 * Add vpe's API message handlers to the table.
577 * vlib has alread mapped shared memory and
578 * added the client registration handlers.
579 * See .../vlib-api/vlibmemory/memclnt_vlib.c:memclnt_process()
580 */
581#define vl_msg_name_crc_list
582#include <vnet/vnet_all_api_h.h>
583#undef vl_msg_name_crc_list
584
585static void
586setup_message_id_table (api_main_t * am)
587{
588#define _(id,n,crc) vl_msg_api_add_msg_name_crc (am, #n "_" #crc, id);
589 foreach_vl_msg_name_crc_mpls;
590#undef _
591}
592
593static clib_error_t *
594mpls_api_hookup (vlib_main_t * vm)
595{
596 api_main_t *am = &api_main;
597
598#define _(N,n) \
599 vl_msg_api_set_handlers(VL_API_##N, #n, \
600 vl_api_##n##_t_handler, \
601 vl_noop_handler, \
602 vl_api_##n##_t_endian, \
603 vl_api_##n##_t_print, \
604 sizeof(vl_api_##n##_t), 1);
605 foreach_vpe_api_msg;
606#undef _
607
608 /*
609 * Trace space for 8 MPLS encap labels
610 */
611 am->api_trace_cfg[VL_API_MPLS_TUNNEL_ADD_DEL].size += 8 * sizeof (u32);
612
613 /*
614 * Set up the (msg_name, crc, message-id) table
615 */
616 setup_message_id_table (am);
617
618 return 0;
619}
620
621VLIB_API_INIT_FUNCTION (mpls_api_hookup);
622
623/*
624 * fd.io coding-style-patch-verification: ON
625 *
626 * Local Variables:
627 * eval: (c-set-style "gnu")
628 * End:
629 */