737299e6a2b9cb1ef2015180574d6a56cc3d4fbd
[vpp.git] / src / vnet / mpls / mpls_api.c
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 #include <vnet/fib/mpls_fib.h>
30 #include <vnet/fib/fib_path_list.h>
31
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)                       \
55 _(MPLS_FIB_DUMP, mpls_fib_dump)
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       pfx.fp_payload_proto = mp->mr_next_hop_proto;
148     }
149   else
150     {
151       pfx.fp_payload_proto = DPO_PROTO_MPLS;
152     }
153
154   rv = add_del_route_check (FIB_PROTOCOL_MPLS,
155                             mp->mr_table_id,
156                             mp->mr_next_hop_sw_if_index,
157                             pfx.fp_payload_proto,
158                             mp->mr_next_hop_table_id,
159                             mp->mr_create_table_if_needed,
160                             mp->mr_is_rpf_id,
161                             &fib_index, &next_hop_fib_index);
162
163   if (0 != rv)
164     return (rv);
165
166   ip46_address_t nh;
167   memset (&nh, 0, sizeof (nh));
168
169   if (DPO_PROTO_IP4 == mp->mr_next_hop_proto)
170     memcpy (&nh.ip4, mp->mr_next_hop, sizeof (nh.ip4));
171   else if (DPO_PROTO_IP6 == mp->mr_next_hop_proto)
172     memcpy (&nh.ip6, mp->mr_next_hop, sizeof (nh.ip6));
173
174   n_labels = mp->mr_next_hop_n_out_labels;
175   if (n_labels == 0)
176     ;
177   else if (1 == n_labels)
178     vec_add1 (label_stack, ntohl (mp->mr_next_hop_out_label_stack[0]));
179   else
180     {
181       vec_validate (label_stack, n_labels - 1);
182       for (ii = 0; ii < n_labels; ii++)
183         label_stack[ii] = ntohl (mp->mr_next_hop_out_label_stack[ii]);
184     }
185
186   return (add_del_route_t_handler (mp->mr_is_multipath, mp->mr_is_add, 0,       // mp->is_drop,
187                                    0,   // mp->is_unreach,
188                                    0,   // mp->is_prohibit,
189                                    0,   // mp->is_local,
190                                    mp->mr_is_multicast,
191                                    mp->mr_is_classify,
192                                    mp->mr_classify_table_index,
193                                    mp->mr_is_resolve_host,
194                                    mp->mr_is_resolve_attached,
195                                    mp->mr_is_interface_rx,
196                                    mp->mr_is_rpf_id,
197                                    fib_index, &pfx,
198                                    mp->mr_next_hop_proto,
199                                    &nh, ntohl (mp->mr_next_hop_sw_if_index),
200                                    next_hop_fib_index,
201                                    mp->mr_next_hop_weight,
202                                    mp->mr_next_hop_preference,
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   fib_route_path_t rpath, *rpaths = NULL;
232
233   memset (&rpath, 0, sizeof (rpath));
234
235   stats_dslock_with_hint (1 /* release hint */ , 5 /* tag */ );
236
237   if (mp->mt_next_hop_proto_is_ip4)
238     {
239       rpath.frp_proto = DPO_PROTO_IP4;
240       clib_memcpy (&rpath.frp_addr.ip4,
241                    mp->mt_next_hop, sizeof (rpath.frp_addr.ip4));
242     }
243   else
244     {
245       rpath.frp_proto = DPO_PROTO_IP6;
246       clib_memcpy (&rpath.frp_addr.ip6,
247                    mp->mt_next_hop, sizeof (rpath.frp_addr.ip6));
248     }
249   rpath.frp_sw_if_index = ntohl (mp->mt_next_hop_sw_if_index);
250   rpath.frp_weight = 1;
251
252   if (mp->mt_is_add)
253     {
254       for (ii = 0; ii < mp->mt_next_hop_n_out_labels; ii++)
255         vec_add1 (rpath.frp_label_stack,
256                   ntohl (mp->mt_next_hop_out_label_stack[ii]));
257     }
258
259   vec_add1 (rpaths, rpath);
260
261   tunnel_sw_if_index = ntohl (mp->mt_sw_if_index);
262
263   if (mp->mt_is_add)
264     {
265       if (~0 == tunnel_sw_if_index)
266         tunnel_sw_if_index = vnet_mpls_tunnel_create (mp->mt_l2_only,
267                                                       mp->mt_is_multicast);
268       vnet_mpls_tunnel_path_add (tunnel_sw_if_index, rpaths);
269     }
270   else
271     {
272       tunnel_sw_if_index = ntohl (mp->mt_sw_if_index);
273       if (!vnet_mpls_tunnel_path_remove (tunnel_sw_if_index, rpaths))
274         vnet_mpls_tunnel_del (tunnel_sw_if_index);
275     }
276
277   vec_free (rpaths);
278
279   stats_dsunlock ();
280
281   /* *INDENT-OFF* */
282   REPLY_MACRO2(VL_API_MPLS_TUNNEL_ADD_DEL_REPLY,
283   ({
284     rmp->sw_if_index = ntohl(tunnel_sw_if_index);
285   }));
286   /* *INDENT-ON* */
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   fib_route_path_encode_t *api_rpaths, *api_rpath;
300   mpls_tunnel_send_walk_ctx_t *ctx;
301   vl_api_mpls_tunnel_details_t *mp;
302   const mpls_tunnel_t *mt;
303   vl_api_fib_path2_t *fp;
304   u32 n;
305
306   ctx = arg;
307
308   if (~0 != ctx->index && mti != ctx->index)
309     return;
310
311   mt = mpls_tunnel_get (mti);
312   n = fib_path_list_get_n_paths (mt->mt_path_list);
313
314   mp = vl_msg_api_alloc (sizeof (*mp) + n * sizeof (vl_api_fib_path2_t));
315   memset (mp, 0, sizeof (*mp) + n * sizeof (vl_api_fib_path2_t));
316
317   mp->_vl_msg_id = ntohs (VL_API_MPLS_TUNNEL_DETAILS);
318   mp->context = ctx->context;
319
320   mp->mt_tunnel_index = ntohl (mti);
321   mp->mt_count = ntohl (n);
322
323   fib_path_list_walk (mt->mt_path_list, fib_path_encode, &api_rpaths);
324
325   fp = mp->mt_paths;
326   vec_foreach (api_rpath, api_rpaths)
327   {
328     memset (fp, 0, sizeof (*fp));
329
330     fp->weight = api_rpath->rpath.frp_weight;
331     fp->preference = api_rpath->rpath.frp_preference;
332     fp->sw_if_index = htonl (api_rpath->rpath.frp_sw_if_index);
333     copy_fib_next_hop (api_rpath, fp);
334     fp++;
335   }
336
337   // FIXME
338   // memcpy (mp->mt_next_hop_out_labels,
339   //   mt->mt_label_stack, nlabels * sizeof (u32));
340
341
342   vl_msg_api_send_shmem (ctx->q, (u8 *) & mp);
343 }
344
345 static void
346 vl_api_mpls_tunnel_dump_t_handler (vl_api_mpls_tunnel_dump_t * mp)
347 {
348   unix_shared_memory_queue_t *q;
349
350   q = vl_api_client_index_to_input_queue (mp->client_index);
351   if (q == 0)
352     return;
353
354   mpls_tunnel_send_walk_ctx_t ctx = {
355     .q = q,
356     .index = ntohl (mp->tunnel_index),
357     .context = mp->context,
358   };
359   mpls_tunnel_walk (send_mpls_tunnel_entry, &ctx);
360 }
361
362 static void
363 send_mpls_fib_details (vpe_api_main_t * am,
364                        unix_shared_memory_queue_t * q,
365                        u32 table_id, u32 label, u32 eos,
366                        fib_route_path_encode_t * api_rpaths, u32 context)
367 {
368   vl_api_mpls_fib_details_t *mp;
369   fib_route_path_encode_t *api_rpath;
370   vl_api_fib_path2_t *fp;
371   int path_count;
372
373   path_count = vec_len (api_rpaths);
374   mp = vl_msg_api_alloc (sizeof (*mp) + path_count * sizeof (*fp));
375   if (!mp)
376     return;
377   memset (mp, 0, sizeof (*mp));
378   mp->_vl_msg_id = ntohs (VL_API_MPLS_FIB_DETAILS);
379   mp->context = context;
380
381   mp->table_id = htonl (table_id);
382   mp->eos_bit = eos;
383   mp->label = htonl (label);
384
385   mp->count = htonl (path_count);
386   fp = mp->path;
387   vec_foreach (api_rpath, api_rpaths)
388   {
389     memset (fp, 0, sizeof (*fp));
390     fp->weight = api_rpath->rpath.frp_weight;
391     fp->preference = api_rpath->rpath.frp_preference;
392     fp->sw_if_index = htonl (api_rpath->rpath.frp_sw_if_index);
393     copy_fib_next_hop (api_rpath, fp);
394     fp++;
395   }
396
397   vl_msg_api_send_shmem (q, (u8 *) & mp);
398 }
399
400 typedef struct vl_api_mpls_fib_dump_table_walk_ctx_t_
401 {
402   fib_node_index_t *lfeis;
403 } vl_api_mpls_fib_dump_table_walk_ctx_t;
404
405 static int
406 vl_api_mpls_fib_dump_table_walk (fib_node_index_t fei, void *arg)
407 {
408   vl_api_mpls_fib_dump_table_walk_ctx_t *ctx = arg;
409
410   vec_add1 (ctx->lfeis, fei);
411
412   return (1);
413 }
414
415 static void
416 vl_api_mpls_fib_dump_t_handler (vl_api_mpls_fib_dump_t * mp)
417 {
418   vpe_api_main_t *am = &vpe_api_main;
419   unix_shared_memory_queue_t *q;
420   mpls_main_t *mm = &mpls_main;
421   fib_table_t *fib_table;
422   mpls_fib_t *mpls_fib;
423   fib_node_index_t *lfeip = NULL;
424   fib_prefix_t pfx;
425   u32 fib_index;
426   fib_route_path_encode_t *api_rpaths;
427   vl_api_mpls_fib_dump_table_walk_ctx_t ctx = {
428     .lfeis = NULL,
429   };
430
431   q = vl_api_client_index_to_input_queue (mp->client_index);
432   if (q == 0)
433     return;
434
435   /* *INDENT-OFF* */
436   pool_foreach (mpls_fib, mm->mpls_fibs,
437   ({
438     mpls_fib_table_walk (mpls_fib,
439                          vl_api_mpls_fib_dump_table_walk,
440                          &ctx);
441   }));
442   /* *INDENT-ON* */
443   vec_sort_with_function (ctx.lfeis, fib_entry_cmp_for_sort);
444
445   vec_foreach (lfeip, ctx.lfeis)
446   {
447     fib_entry_get_prefix (*lfeip, &pfx);
448     fib_index = fib_entry_get_fib_index (*lfeip);
449     fib_table = fib_table_get (fib_index, pfx.fp_proto);
450     api_rpaths = NULL;
451     fib_entry_encode (*lfeip, &api_rpaths);
452     send_mpls_fib_details (am, q,
453                            fib_table->ft_table_id,
454                            pfx.fp_label, pfx.fp_eos, api_rpaths, mp->context);
455     vec_free (api_rpaths);
456   }
457
458   vec_free (ctx.lfeis);
459 }
460
461 /*
462  * mpls_api_hookup
463  * Add vpe's API message handlers to the table.
464  * vlib has alread mapped shared memory and
465  * added the client registration handlers.
466  * See .../vlib-api/vlibmemory/memclnt_vlib.c:memclnt_process()
467  */
468 #define vl_msg_name_crc_list
469 #include <vnet/vnet_all_api_h.h>
470 #undef vl_msg_name_crc_list
471
472 static void
473 setup_message_id_table (api_main_t * am)
474 {
475 #define _(id,n,crc) vl_msg_api_add_msg_name_crc (am, #n "_" #crc, id);
476   foreach_vl_msg_name_crc_mpls;
477 #undef _
478 }
479
480 static clib_error_t *
481 mpls_api_hookup (vlib_main_t * vm)
482 {
483   api_main_t *am = &api_main;
484
485 #define _(N,n)                                                  \
486     vl_msg_api_set_handlers(VL_API_##N, #n,                     \
487                            vl_api_##n##_t_handler,              \
488                            vl_noop_handler,                     \
489                            vl_api_##n##_t_endian,               \
490                            vl_api_##n##_t_print,                \
491                            sizeof(vl_api_##n##_t), 1);
492   foreach_vpe_api_msg;
493 #undef _
494
495   /*
496    * Trace space for 8 MPLS encap labels
497    */
498   am->api_trace_cfg[VL_API_MPLS_TUNNEL_ADD_DEL].size += 8 * sizeof (u32);
499
500   /*
501    * Set up the (msg_name, crc, message-id) table
502    */
503   setup_message_id_table (am);
504
505   return 0;
506 }
507
508 VLIB_API_INIT_FUNCTION (mpls_api_hookup);
509
510 /*
511  * fd.io coding-style-patch-verification: ON
512  *
513  * Local Variables:
514  * eval: (c-set-style "gnu")
515  * End:
516  */