FD.io VPP  v17.07.01-10-g3be13f0
Vector Packet Processing
mpls_api.c
Go to the documentation of this file.
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 
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
63 {
64  u32 mpls_fib_index, ip_fib_index;
65 
66  mpls_fib_index =
68 
69  if (~0 == mpls_fib_index)
70  {
72  {
73  mpls_fib_index =
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 ?
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 = {
90  };
91 
92  if (mp->mb_is_ip4)
93  {
95  clib_memcpy (&pfx.fp_addr.ip4, mp->mb_address,
96  sizeof (pfx.fp_addr.ip4));
97  }
98  else
99  {
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
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
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  {
150  }
151  else
152  {
154  }
155  }
156  else
157  {
159  }
160 
162  mp->mr_table_id,
167  mp->mr_is_rpf_id,
168  &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,
197  mp->mr_is_multicast,
198  mp->mr_is_classify,
200  mp->mr_is_resolve_host,
202  mp->mr_is_interface_rx,
203  mp->mr_is_rpf_id,
204  fib_index, &pfx,
206  &nh, ntohl (mp->mr_next_hop_sw_if_index),
207  next_hop_fib_index,
208  mp->mr_next_hop_weight,
209  ntohl (mp->mr_next_hop_via_label),
210  label_stack));
211 }
212 
213 void
215 {
216  vl_api_mpls_route_add_del_reply_t *rmp;
217  vnet_main_t *vnm;
218  int rv;
219 
220  vnm = vnet_get_main ();
221  vnm->api_errno = 0;
222 
223  rv = mpls_route_add_del_t_handler (vnm, mp);
224 
225  rv = (rv == 0) ? vnm->api_errno : rv;
226 
227  REPLY_MACRO (VL_API_MPLS_ROUTE_ADD_DEL_REPLY);
228 }
229 
230 static void
232 {
234  int rv = 0;
235  u32 tunnel_sw_if_index;
236  int ii;
237  fib_route_path_t rpath, *rpaths = NULL;
238 
239  memset (&rpath, 0, sizeof (rpath));
240 
241  stats_dslock_with_hint (1 /* release hint */ , 5 /* tag */ );
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  rpath.frp_weight = 1;
257 
258  if (mp->mt_is_add)
259  {
260  for (ii = 0; ii < mp->mt_next_hop_n_out_labels; ii++)
261  vec_add1 (rpath.frp_label_stack,
262  ntohl (mp->mt_next_hop_out_label_stack[ii]));
263  }
264 
265  vec_add1 (rpaths, rpath);
266 
267  tunnel_sw_if_index = ntohl (mp->mt_sw_if_index);
268 
269  if (mp->mt_is_add)
270  {
271  if (~0 == tunnel_sw_if_index)
272  tunnel_sw_if_index = vnet_mpls_tunnel_create (mp->mt_l2_only,
273  mp->mt_is_multicast);
274  vnet_mpls_tunnel_path_add (tunnel_sw_if_index, rpaths);
275  }
276  else
277  {
278  tunnel_sw_if_index = ntohl (mp->mt_sw_if_index);
279  if (!vnet_mpls_tunnel_path_remove (tunnel_sw_if_index, rpaths))
280  vnet_mpls_tunnel_del (tunnel_sw_if_index);
281  }
282 
283  vec_free (rpaths);
284 
285  stats_dsunlock ();
286 
287  /* *INDENT-OFF* */
288  REPLY_MACRO2(VL_API_MPLS_TUNNEL_ADD_DEL_REPLY,
289  ({
290  rmp->sw_if_index = ntohl(tunnel_sw_if_index);
291  }));
292  /* *INDENT-ON* */
293 }
294 
296 {
301 
302 static void
303 send_mpls_tunnel_entry (u32 mti, void *arg)
304 {
305  fib_route_path_encode_t *api_rpaths, *api_rpath;
308  const mpls_tunnel_t *mt;
309  vl_api_fib_path2_t *fp;
310  u32 n;
311 
312  ctx = arg;
313 
314  if (~0 != ctx->index && mti != ctx->index)
315  return;
316 
317  mt = mpls_tunnel_get (mti);
319 
320  mp = vl_msg_api_alloc (sizeof (*mp) + n * sizeof (vl_api_fib_path2_t));
321  memset (mp, 0, sizeof (*mp) + n * sizeof (vl_api_fib_path2_t));
322 
323  mp->_vl_msg_id = ntohs (VL_API_MPLS_TUNNEL_DETAILS);
324  mp->context = ctx->context;
325 
326  mp->mt_tunnel_index = ntohl (mti);
327  mp->mt_count = ntohl (n);
328 
329  fib_path_list_walk (mt->mt_path_list, fib_path_encode, &api_rpaths);
330 
331  fp = mp->mt_paths;
332  vec_foreach (api_rpath, api_rpaths)
333  {
334  memset (fp, 0, sizeof (*fp));
335 
336  fp->weight = htonl (api_rpath->rpath.frp_weight);
337  fp->sw_if_index = htonl (api_rpath->rpath.frp_sw_if_index);
338  copy_fib_next_hop (api_rpath, fp);
339  fp++;
340  }
341 
342  // FIXME
343  // memcpy (mp->mt_next_hop_out_labels,
344  // mt->mt_label_stack, nlabels * sizeof (u32));
345 
346 
347  vl_msg_api_send_shmem (ctx->q, (u8 *) & mp);
348 }
349 
350 static void
352 {
354 
356  if (q == 0)
357  return;
358 
360  .q = q,
361  .index = ntohl (mp->tunnel_index),
362  .context = mp->context,
363  };
365 }
366 
367 static void
370  u32 table_id, u32 label, u32 eos,
371  fib_route_path_encode_t * api_rpaths, u32 context)
372 {
374  fib_route_path_encode_t *api_rpath;
375  vl_api_fib_path2_t *fp;
376  int path_count;
377 
378  path_count = vec_len (api_rpaths);
379  mp = vl_msg_api_alloc (sizeof (*mp) + path_count * sizeof (*fp));
380  if (!mp)
381  return;
382  memset (mp, 0, sizeof (*mp));
383  mp->_vl_msg_id = ntohs (VL_API_MPLS_FIB_DETAILS);
384  mp->context = context;
385 
386  mp->table_id = htonl (table_id);
387  mp->eos_bit = eos;
388  mp->label = htonl (label);
389 
390  mp->count = htonl (path_count);
391  fp = mp->path;
392  vec_foreach (api_rpath, api_rpaths)
393  {
394  memset (fp, 0, sizeof (*fp));
395  fp->weight = htonl (api_rpath->rpath.frp_weight);
396  fp->sw_if_index = htonl (api_rpath->rpath.frp_sw_if_index);
397  copy_fib_next_hop (api_rpath, fp);
398  fp++;
399  }
400 
401  vl_msg_api_send_shmem (q, (u8 *) & mp);
402 }
403 
405 {
408 
409 static int
411 {
413 
414  vec_add1 (ctx->lfeis, fei);
415 
416  return (1);
417 }
418 
419 static void
421 {
424  mpls_main_t *mm = &mpls_main;
425  fib_table_t *fib_table;
426  mpls_fib_t *mpls_fib;
427  fib_node_index_t *lfeip = NULL;
428  fib_prefix_t pfx;
429  u32 fib_index;
430  fib_route_path_encode_t *api_rpaths;
432  .lfeis = NULL,
433  };
434 
436  if (q == 0)
437  return;
438 
439  /* *INDENT-OFF* */
440  pool_foreach (mpls_fib, mm->mpls_fibs,
441  ({
442  mpls_fib_table_walk (mpls_fib,
443  vl_api_mpls_fib_dump_table_walk,
444  &ctx);
445  }));
446  /* *INDENT-ON* */
448 
449  vec_foreach (lfeip, ctx.lfeis)
450  {
451  fib_entry_get_prefix (*lfeip, &pfx);
452  fib_index = fib_entry_get_fib_index (*lfeip);
453  fib_table = fib_table_get (fib_index, pfx.fp_proto);
454  api_rpaths = NULL;
455  fib_entry_encode (*lfeip, &api_rpaths);
456  send_mpls_fib_details (am, q,
457  fib_table->ft_table_id,
458  pfx.fp_label, pfx.fp_eos, api_rpaths, mp->context);
459  vec_free (api_rpaths);
460  }
461 
462  vec_free (ctx.lfeis);
463 }
464 
465 /*
466  * mpls_api_hookup
467  * Add vpe's API message handlers to the table.
468  * vlib has alread mapped shared memory and
469  * added the client registration handlers.
470  * See .../vlib-api/vlibmemory/memclnt_vlib.c:memclnt_process()
471  */
472 #define vl_msg_name_crc_list
473 #include <vnet/vnet_all_api_h.h>
474 #undef vl_msg_name_crc_list
475 
476 static void
478 {
479 #define _(id,n,crc) vl_msg_api_add_msg_name_crc (am, #n "_" #crc, id);
480  foreach_vl_msg_name_crc_mpls;
481 #undef _
482 }
483 
484 static clib_error_t *
486 {
487  api_main_t *am = &api_main;
488 
489 #define _(N,n) \
490  vl_msg_api_set_handlers(VL_API_##N, #n, \
491  vl_api_##n##_t_handler, \
492  vl_noop_handler, \
493  vl_api_##n##_t_endian, \
494  vl_api_##n##_t_print, \
495  sizeof(vl_api_##n##_t), 1);
497 #undef _
498 
499  /*
500  * Trace space for 8 MPLS encap labels
501  */
502  am->api_trace_cfg[VL_API_MPLS_TUNNEL_ADD_DEL].size += 8 * sizeof (u32);
503 
504  /*
505  * Set up the (msg_name, crc, message-id) table
506  */
508 
509  return 0;
510 }
511 
513 
514 /*
515  * fd.io coding-style-patch-verification: ON
516  *
517  * Local Variables:
518  * eval: (c-set-style "gnu")
519  * End:
520  */
Bind/Unbind an MPLS local label to an IP prefix.
Definition: mpls.api:29
#define vec_validate(V, I)
Make sure vector is long enough for given index (no header, unspecified alignment) ...
Definition: vec.h:436
fib_protocol_t fp_proto
protocol type
Definition: fib_types.h:169
u32 fib_entry_get_fib_index(fib_node_index_t fib_entry_index)
Definition: fib_entry.c:1542
fib_protocol_t frp_proto
The protocol of the address below.
Definition: fib_types.h:341
ip46_address_t frp_addr
The next-hop address.
Definition: fib_types.h:350
A representation of a fib path for fib_path_encode to convey the information to the caller...
Definition: fib_types.h:398
struct vl_api_mpls_fib_dump_table_walk_ctx_t_ vl_api_mpls_fib_dump_table_walk_ctx_t
int add_del_route_check(fib_protocol_t table_proto, u32 table_id, u32 next_hop_sw_if_index, fib_protocol_t next_hop_table_proto, u32 next_hop_table_id, u8 create_missing_tables, u8 is_rpf_id, u32 *fib_index, u32 *next_hop_fib_index)
Definition: ip_api.c:857
A representation of a path as described by a route producer.
Definition: fib_types.h:336
vnet_main_t * vnet_get_main(void)
Definition: misc.c:46
fib_node_index_t mt_path_list
The path-list over which the tunnel&#39;s destination is reachable.
Definition: mpls_tunnel.h:75
u32 mr_next_hop_out_label_stack[mr_next_hop_n_out_labels]
Definition: mpls.api:189
void fib_entry_get_prefix(fib_node_index_t fib_entry_index, fib_prefix_t *pfx)
Definition: fib_entry.c:1532
#define REPLY_MACRO2(t, body)
#define NULL
Definition: clib.h:55
static void send_mpls_tunnel_entry(u32 mti, void *arg)
Definition: mpls_api.c:303
struct mpls_tunnel_send_walk_ctx_t_ mpls_tunnel_send_walk_ctx_t
A uni-directional MPLS tunnel.
Definition: mpls_tunnel.h:49
u32 mpls_label_t
A label value only, i.e.
Definition: packet.h:24
#define vec_add1(V, E)
Add 1 element to end of vector (unspecified alignment).
Definition: vec.h:522
void fib_path_list_walk(fib_node_index_t path_list_index, fib_path_list_walk_fn_t func, void *ctx)
Dump MPLS fib table.
Definition: mpls.api:195
vl_api_fib_path2_t path[count]
Definition: mpls.api:215
const mpls_tunnel_t * mpls_tunnel_get(u32 mti)
Definition: mpls_tunnel.c:535
#define foreach_vpe_api_msg
Definition: mpls_api.c:50
void fib_table_entry_local_label_remove(u32 fib_index, const fib_prefix_t *prefix, mpls_label_t label)
remove a MPLS local label for the prefix/route.
Definition: fib_table.c:897
trace_cfg_t * api_trace_cfg
Definition: api_common.h:185
int add_del_route_t_handler(u8 is_multipath, u8 is_add, u8 is_drop, u8 is_unreach, u8 is_prohibit, u8 is_local, u8 is_multicast, u8 is_classify, u32 classify_table_index, u8 is_resolve_host, u8 is_resolve_attached, u8 is_interface_rx, u8 is_rpf_id, u32 fib_index, const fib_prefix_t *prefix, u8 next_hop_proto_is_ip4, const ip46_address_t *next_hop, u32 next_hop_sw_if_index, u8 next_hop_fib_index, u32 next_hop_weight, mpls_label_t next_hop_via_label, mpls_label_t *next_hop_out_label_stack)
Definition: ip_api.c:700
static void vl_api_mpls_tunnel_add_del_t_handler(vl_api_mpls_tunnel_add_del_t *mp)
Definition: mpls_api.c:231
void vl_api_mpls_route_add_del_t_handler(vl_api_mpls_route_add_del_t *mp)
Definition: mpls_api.c:214
dpo_proto_t fp_payload_proto
This protocol determines the payload protocol of packets that will be forwarded by this entry once th...
Definition: fib_types.h:193
static void vl_api_mpls_fib_dump_t_handler(vl_api_mpls_fib_dump_t *mp)
Definition: mpls_api.c:420
static void send_mpls_fib_details(vpe_api_main_t *am, unix_shared_memory_queue_t *q, u32 table_id, u32 label, u32 eos, fib_route_path_encode_t *api_rpaths, u32 context)
Definition: mpls_api.c:368
#define pool_foreach(VAR, POOL, BODY)
Iterate through pool.
Definition: pool.h:376
u32 frp_sw_if_index
The interface.
Definition: fib_types.h:369
mpls_label_t * frp_label_stack
The outgoing MPLS label Stack.
Definition: fib_types.h:391
static clib_error_t * mpls_api_hookup(vlib_main_t *vm)
Definition: mpls_api.c:485
Aggregrate type for a prefix.
Definition: fib_types.h:160
void stats_dsunlock(void)
u32 fib_table_find(fib_protocol_t proto, u32 table_id)
Get the index of the FIB for a Table-ID.
Definition: fib_table.c:1025
fib_protocol_t dpo_proto_to_fib(dpo_proto_t dpo_proto)
Definition: fib_types.c:227
u16 fp_len
The mask length.
Definition: fib_types.h:164
Dump mpls eth tunnel table.
Definition: mpls.api:90
int fib_entry_cmp_for_sort(void *i1, void *i2)
Definition: fib_entry.c:1484
void * vl_msg_api_alloc(int nbytes)
vnet_api_error_t api_errno
Definition: vnet.h:76
void vnet_mpls_tunnel_del(u32 sw_if_index)
Delete an MPLS tunnel.
Definition: mpls_tunnel.c:556
ip46_address_t fp_addr
The address type is not deriveable from the fp_addr member.
Definition: fib_types.h:183
mpls FIB table response
Definition: mpls.api:208
static int mpls_ip_bind_unbind_handler(vnet_main_t *vnm, vl_api_mpls_ip_bind_unbind_t *mp)
Definition: mpls_api.c:61
MPLS Route Add / del route.
Definition: mpls.api:165
#define REPLY_MACRO(t)
u32 mt_next_hop_out_label_stack[mt_next_hop_n_out_labels]
Definition: mpls.api:71
static int mpls_route_add_del_t_handler(vnet_main_t *vnm, vl_api_mpls_route_add_del_t *mp)
Definition: mpls_api.c:132
Reply for MPLS tunnel add / del request.
Definition: mpls.api:79
vl_api_fib_path2_t mt_paths[mt_count]
Definition: mpls.api:133
api_main_t api_main
Definition: api_shared.c:35
fib_node_index_t fib_table_entry_local_label_add(u32 fib_index, const fib_prefix_t *prefix, mpls_label_t label)
Add a MPLS local label for the prefix/route.
Definition: fib_table.c:870
mpls_main_t mpls_main
Definition: mpls.c:25
u32 ft_table_id
Table ID (hash key) for this FIB.
Definition: fib_table.h:44
#define vec_free(V)
Free vector&#39;s memory (no header).
Definition: vec.h:340
u32 frp_weight
[un]equal cost path weight
Definition: fib_types.h:383
#define clib_memcpy(a, b, c)
Definition: string.h:69
unix_shared_memory_queue_t * vl_api_client_index_to_input_queue(u32 index)
u32 fib_path_list_get_n_paths(fib_node_index_t path_list_index)
u32 fib_node_index_t
A typedef of a node index.
Definition: fib_types.h:28
void mpls_tunnel_walk(mpls_tunnel_walk_cb_t cb, void *ctx)
Walk all the MPLS tunnels.
Definition: mpls_tunnel.c:544
unix_shared_memory_queue_t * q
Definition: mpls_api.c:297
mpls_label_t fp_label
Definition: fib_types.h:186
void vl_msg_api_send_shmem(unix_shared_memory_queue_t *q, u8 *elem)
u32 vnet_mpls_tunnel_create(u8 l2_only, u8 is_multicast)
Create a new MPLS tunnel.
Definition: mpls_tunnel.c:577
int vnet_mpls_tunnel_path_remove(u32 sw_if_index, fib_route_path_t *rpaths)
remove a path from a tunnel.
Definition: mpls_tunnel.c:696
unsigned int u32
Definition: types.h:88
MPLS tunnel Add / del route.
Definition: mpls.api:57
fib_path_list_walk_rc_t fib_path_encode(fib_node_index_t path_list_index, fib_node_index_t path_index, void *ctx)
Definition: fib_path.c:2106
static int vl_api_mpls_fib_dump_table_walk(fib_node_index_t fei, void *arg)
Definition: mpls_api.c:410
u32 fib_table_find_or_create_and_lock(fib_protocol_t proto, u32 table_id)
Get the index of the FIB for a Table-ID.
Definition: fib_table.c:1041
void fib_entry_encode(fib_node_index_t fib_entry_index, fib_route_path_encode_t **api_rpaths)
Definition: fib_entry.c:1519
void vnet_mpls_tunnel_path_add(u32 sw_if_index, fib_route_path_t *rpaths)
Add a path to an MPLS tunnel.
Definition: mpls_tunnel.c:644
#define vec_len(v)
Number of elements in vector (rvalue-only, NULL tolerant)
unsigned char u8
Definition: types.h:56
static void vl_api_mpls_tunnel_dump_t_handler(vl_api_mpls_tunnel_dump_t *mp)
Definition: mpls_api.c:351
VLIB_API_INIT_FUNCTION(mpls_api_hookup)
#define vec_sort_with_function(vec, f)
Sort a vector using the supplied element comparison function.
Definition: vec.h:960
void stats_dslock_with_hint(int hint, int tag)
void copy_fib_next_hop(fib_route_path_encode_t *api_rpath, void *fp_arg)
Definition: ip_api.c:154
fib_table_t * fib_table_get(fib_node_index_t index, fib_protocol_t proto)
Get a pointer to a FIB table.
Definition: fib_table.c:27
FIB path.
Definition: mpls.api:110
#define vec_foreach(var, vec)
Vector iterator.
fib_route_path_t rpath
Definition: fib_types.h:399
mpls tunnel details
Definition: mpls.api:125
vpe_api_main_t vpe_api_main
Definition: interface_api.c:49
static void setup_message_id_table(api_main_t *am)
Definition: mpls_api.c:477
struct mpls_fib_t_ * mpls_fibs
A pool of all the MPLS FIBs.
Definition: mpls.h:48
void vl_api_mpls_ip_bind_unbind_t_handler(vl_api_mpls_ip_bind_unbind_t *mp)
Definition: mpls_api.c:116
A protocol Independent FIB table.
Definition: fib_table.h:29
struct _unix_shared_memory_queue unix_shared_memory_queue_t
mpls_eos_bit_t fp_eos
Definition: fib_types.h:187