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