blob: 22fb7d43a31eff4e83abfa214dd940b9baa4ac20 [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) \
53_(MPLS_TUNNEL_ADD_DEL, mpls_tunnel_add_del) \
54_(MPLS_TUNNEL_DUMP, mpls_tunnel_dump) \
Dave Baracha1a093d2017-03-02 13:13:23 -050055_(MPLS_FIB_DUMP, mpls_fib_dump)
Pavel Kotucek0f971d82017-01-03 10:48:54 +010056
57extern void stats_dslock_with_hint (int hint, int tag);
58extern void stats_dsunlock (void);
59
60static int
61mpls_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
115void
116vl_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
131static int
132mpls_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,
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800167 mp->mr_is_rpf_id,
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100168 &fib_index, &next_hop_fib_index);
169
170 if (0 != rv)
171 return (rv);
172
173 ip46_address_t nh;
174 memset (&nh, 0, sizeof (nh));
175
176 if (mp->mr_next_hop_proto_is_ip4)
177 memcpy (&nh.ip4, mp->mr_next_hop, sizeof (nh.ip4));
178 else
179 memcpy (&nh.ip6, mp->mr_next_hop, sizeof (nh.ip6));
180
181 n_labels = mp->mr_next_hop_n_out_labels;
182 if (n_labels == 0)
183 ;
184 else if (1 == n_labels)
185 vec_add1 (label_stack, ntohl (mp->mr_next_hop_out_label_stack[0]));
186 else
187 {
188 vec_validate (label_stack, n_labels - 1);
189 for (ii = 0; ii < n_labels; ii++)
190 label_stack[ii] = ntohl (mp->mr_next_hop_out_label_stack[ii]);
191 }
192
193 return (add_del_route_t_handler (mp->mr_is_multipath, mp->mr_is_add, 0, // mp->is_drop,
194 0, // mp->is_unreach,
195 0, // mp->is_prohibit,
196 0, // mp->is_local,
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800197 mp->mr_is_multicast,
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100198 mp->mr_is_classify,
199 mp->mr_classify_table_index,
200 mp->mr_is_resolve_host,
201 mp->mr_is_resolve_attached,
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800202 mp->mr_is_interface_rx,
203 mp->mr_is_rpf_id,
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100204 fib_index, &pfx,
205 mp->mr_next_hop_proto_is_ip4,
206 &nh, ntohl (mp->mr_next_hop_sw_if_index),
207 next_hop_fib_index,
208 mp->mr_next_hop_weight,
Neale Ranns57b58602017-07-15 07:37:25 -0700209 mp->mr_next_hop_preference,
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100210 ntohl (mp->mr_next_hop_via_label),
211 label_stack));
212}
213
214void
215vl_api_mpls_route_add_del_t_handler (vl_api_mpls_route_add_del_t * mp)
216{
217 vl_api_mpls_route_add_del_reply_t *rmp;
218 vnet_main_t *vnm;
219 int rv;
220
221 vnm = vnet_get_main ();
222 vnm->api_errno = 0;
223
224 rv = mpls_route_add_del_t_handler (vnm, mp);
225
226 rv = (rv == 0) ? vnm->api_errno : rv;
227
228 REPLY_MACRO (VL_API_MPLS_ROUTE_ADD_DEL_REPLY);
229}
230
231static void
232vl_api_mpls_tunnel_add_del_t_handler (vl_api_mpls_tunnel_add_del_t * mp)
233{
234 vl_api_mpls_tunnel_add_del_reply_t *rmp;
235 int rv = 0;
236 u32 tunnel_sw_if_index;
237 int ii;
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800238 fib_route_path_t rpath, *rpaths = NULL;
239
240 memset (&rpath, 0, sizeof (rpath));
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100241
242 stats_dslock_with_hint (1 /* release hint */ , 5 /* tag */ );
243
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800244 if (mp->mt_next_hop_proto_is_ip4)
245 {
246 rpath.frp_proto = FIB_PROTOCOL_IP4;
247 clib_memcpy (&rpath.frp_addr.ip4,
248 mp->mt_next_hop, sizeof (rpath.frp_addr.ip4));
249 }
250 else
251 {
252 rpath.frp_proto = FIB_PROTOCOL_IP6;
253 clib_memcpy (&rpath.frp_addr.ip6,
254 mp->mt_next_hop, sizeof (rpath.frp_addr.ip6));
255 }
256 rpath.frp_sw_if_index = ntohl (mp->mt_next_hop_sw_if_index);
257 rpath.frp_weight = 1;
258
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100259 if (mp->mt_is_add)
260 {
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100261 for (ii = 0; ii < mp->mt_next_hop_n_out_labels; ii++)
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800262 vec_add1 (rpath.frp_label_stack,
263 ntohl (mp->mt_next_hop_out_label_stack[ii]));
264 }
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100265
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800266 vec_add1 (rpaths, rpath);
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100267
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800268 tunnel_sw_if_index = ntohl (mp->mt_sw_if_index);
269
270 if (mp->mt_is_add)
271 {
272 if (~0 == tunnel_sw_if_index)
273 tunnel_sw_if_index = vnet_mpls_tunnel_create (mp->mt_l2_only,
274 mp->mt_is_multicast);
275 vnet_mpls_tunnel_path_add (tunnel_sw_if_index, rpaths);
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100276 }
277 else
278 {
279 tunnel_sw_if_index = ntohl (mp->mt_sw_if_index);
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800280 if (!vnet_mpls_tunnel_path_remove (tunnel_sw_if_index, rpaths))
281 vnet_mpls_tunnel_del (tunnel_sw_if_index);
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100282 }
283
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800284 vec_free (rpaths);
285
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100286 stats_dsunlock ();
287
288 /* *INDENT-OFF* */
289 REPLY_MACRO2(VL_API_MPLS_TUNNEL_ADD_DEL_REPLY,
290 ({
291 rmp->sw_if_index = ntohl(tunnel_sw_if_index);
292 }));
293 /* *INDENT-ON* */
294}
295
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100296typedef struct mpls_tunnel_send_walk_ctx_t_
297{
298 unix_shared_memory_queue_t *q;
299 u32 index;
300 u32 context;
301} mpls_tunnel_send_walk_ctx_t;
302
303static void
304send_mpls_tunnel_entry (u32 mti, void *arg)
305{
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800306 fib_route_path_encode_t *api_rpaths, *api_rpath;
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100307 mpls_tunnel_send_walk_ctx_t *ctx;
308 vl_api_mpls_tunnel_details_t *mp;
309 const mpls_tunnel_t *mt;
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800310 vl_api_fib_path2_t *fp;
311 u32 n;
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100312
313 ctx = arg;
314
315 if (~0 != ctx->index && mti != ctx->index)
316 return;
317
318 mt = mpls_tunnel_get (mti);
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800319 n = fib_path_list_get_n_paths (mt->mt_path_list);
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100320
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800321 mp = vl_msg_api_alloc (sizeof (*mp) + n * sizeof (vl_api_fib_path2_t));
322 memset (mp, 0, sizeof (*mp) + n * sizeof (vl_api_fib_path2_t));
323
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100324 mp->_vl_msg_id = ntohs (VL_API_MPLS_TUNNEL_DETAILS);
325 mp->context = ctx->context;
326
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800327 mp->mt_tunnel_index = ntohl (mti);
328 mp->mt_count = ntohl (n);
329
330 fib_path_list_walk (mt->mt_path_list, fib_path_encode, &api_rpaths);
331
332 fp = mp->mt_paths;
333 vec_foreach (api_rpath, api_rpaths)
334 {
335 memset (fp, 0, sizeof (*fp));
336
337 fp->weight = htonl (api_rpath->rpath.frp_weight);
338 fp->sw_if_index = htonl (api_rpath->rpath.frp_sw_if_index);
339 copy_fib_next_hop (api_rpath, fp);
340 fp++;
341 }
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100342
343 // FIXME
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800344 // memcpy (mp->mt_next_hop_out_labels,
345 // mt->mt_label_stack, nlabels * sizeof (u32));
346
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100347
348 vl_msg_api_send_shmem (ctx->q, (u8 *) & mp);
349}
350
351static void
352vl_api_mpls_tunnel_dump_t_handler (vl_api_mpls_tunnel_dump_t * mp)
353{
354 unix_shared_memory_queue_t *q;
355
356 q = vl_api_client_index_to_input_queue (mp->client_index);
357 if (q == 0)
358 return;
359
360 mpls_tunnel_send_walk_ctx_t ctx = {
361 .q = q,
362 .index = ntohl (mp->tunnel_index),
363 .context = mp->context,
364 };
365 mpls_tunnel_walk (send_mpls_tunnel_entry, &ctx);
366}
367
368static void
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100369send_mpls_fib_details (vpe_api_main_t * am,
370 unix_shared_memory_queue_t * q,
371 u32 table_id, u32 label, u32 eos,
372 fib_route_path_encode_t * api_rpaths, u32 context)
373{
374 vl_api_mpls_fib_details_t *mp;
375 fib_route_path_encode_t *api_rpath;
376 vl_api_fib_path2_t *fp;
377 int path_count;
378
379 path_count = vec_len (api_rpaths);
380 mp = vl_msg_api_alloc (sizeof (*mp) + path_count * sizeof (*fp));
381 if (!mp)
382 return;
383 memset (mp, 0, sizeof (*mp));
384 mp->_vl_msg_id = ntohs (VL_API_MPLS_FIB_DETAILS);
385 mp->context = context;
386
387 mp->table_id = htonl (table_id);
388 mp->eos_bit = eos;
389 mp->label = htonl (label);
390
391 mp->count = htonl (path_count);
392 fp = mp->path;
393 vec_foreach (api_rpath, api_rpaths)
394 {
395 memset (fp, 0, sizeof (*fp));
396 fp->weight = htonl (api_rpath->rpath.frp_weight);
397 fp->sw_if_index = htonl (api_rpath->rpath.frp_sw_if_index);
398 copy_fib_next_hop (api_rpath, fp);
399 fp++;
400 }
401
402 vl_msg_api_send_shmem (q, (u8 *) & mp);
403}
404
Neale Rannsa3af3372017-03-28 03:49:52 -0700405typedef struct vl_api_mpls_fib_dump_table_walk_ctx_t_
406{
407 fib_node_index_t *lfeis;
408} vl_api_mpls_fib_dump_table_walk_ctx_t;
409
410static int
411vl_api_mpls_fib_dump_table_walk (fib_node_index_t fei, void *arg)
412{
413 vl_api_mpls_fib_dump_table_walk_ctx_t *ctx = arg;
414
415 vec_add1 (ctx->lfeis, fei);
416
417 return (1);
418}
419
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100420static void
421vl_api_mpls_fib_dump_t_handler (vl_api_mpls_fib_dump_t * mp)
422{
423 vpe_api_main_t *am = &vpe_api_main;
424 unix_shared_memory_queue_t *q;
425 mpls_main_t *mm = &mpls_main;
426 fib_table_t *fib_table;
Neale Rannsa3af3372017-03-28 03:49:52 -0700427 mpls_fib_t *mpls_fib;
428 fib_node_index_t *lfeip = NULL;
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100429 fib_prefix_t pfx;
430 u32 fib_index;
431 fib_route_path_encode_t *api_rpaths;
Neale Rannsa3af3372017-03-28 03:49:52 -0700432 vl_api_mpls_fib_dump_table_walk_ctx_t ctx = {
433 .lfeis = NULL,
434 };
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100435
436 q = vl_api_client_index_to_input_queue (mp->client_index);
437 if (q == 0)
438 return;
439
440 /* *INDENT-OFF* */
Neale Rannsa3af3372017-03-28 03:49:52 -0700441 pool_foreach (mpls_fib, mm->mpls_fibs,
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100442 ({
Neale Rannsa3af3372017-03-28 03:49:52 -0700443 mpls_fib_table_walk (mpls_fib,
444 vl_api_mpls_fib_dump_table_walk,
445 &ctx);
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100446 }));
447 /* *INDENT-ON* */
Neale Rannsa3af3372017-03-28 03:49:52 -0700448 vec_sort_with_function (ctx.lfeis, fib_entry_cmp_for_sort);
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100449
Neale Rannsa3af3372017-03-28 03:49:52 -0700450 vec_foreach (lfeip, ctx.lfeis)
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100451 {
452 fib_entry_get_prefix (*lfeip, &pfx);
453 fib_index = fib_entry_get_fib_index (*lfeip);
454 fib_table = fib_table_get (fib_index, pfx.fp_proto);
455 api_rpaths = NULL;
456 fib_entry_encode (*lfeip, &api_rpaths);
457 send_mpls_fib_details (am, q,
458 fib_table->ft_table_id,
459 pfx.fp_label, pfx.fp_eos, api_rpaths, mp->context);
460 vec_free (api_rpaths);
461 }
462
Neale Rannsa3af3372017-03-28 03:49:52 -0700463 vec_free (ctx.lfeis);
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100464}
465
466/*
467 * mpls_api_hookup
468 * Add vpe's API message handlers to the table.
469 * vlib has alread mapped shared memory and
470 * added the client registration handlers.
471 * See .../vlib-api/vlibmemory/memclnt_vlib.c:memclnt_process()
472 */
473#define vl_msg_name_crc_list
474#include <vnet/vnet_all_api_h.h>
475#undef vl_msg_name_crc_list
476
477static void
478setup_message_id_table (api_main_t * am)
479{
480#define _(id,n,crc) vl_msg_api_add_msg_name_crc (am, #n "_" #crc, id);
481 foreach_vl_msg_name_crc_mpls;
482#undef _
483}
484
485static clib_error_t *
486mpls_api_hookup (vlib_main_t * vm)
487{
488 api_main_t *am = &api_main;
489
490#define _(N,n) \
491 vl_msg_api_set_handlers(VL_API_##N, #n, \
492 vl_api_##n##_t_handler, \
493 vl_noop_handler, \
494 vl_api_##n##_t_endian, \
495 vl_api_##n##_t_print, \
496 sizeof(vl_api_##n##_t), 1);
497 foreach_vpe_api_msg;
498#undef _
499
500 /*
501 * Trace space for 8 MPLS encap labels
502 */
503 am->api_trace_cfg[VL_API_MPLS_TUNNEL_ADD_DEL].size += 8 * sizeof (u32);
504
505 /*
506 * Set up the (msg_name, crc, message-id) table
507 */
508 setup_message_id_table (am);
509
510 return 0;
511}
512
513VLIB_API_INIT_FUNCTION (mpls_api_hookup);
514
515/*
516 * fd.io coding-style-patch-verification: ON
517 *
518 * Local Variables:
519 * eval: (c-set-style "gnu")
520 * End:
521 */