blob: 2af6af8fd4863e5b1c038f4f66dc4e8aa150c561 [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) \
Dave Baracha1a093d2017-03-02 13:13:23 -050056_(MPLS_FIB_DUMP, mpls_fib_dump)
Pavel Kotucek0f971d82017-01-03 10:48:54 +010057
58extern void stats_dslock_with_hint (int hint, int tag);
59extern void stats_dsunlock (void);
60
Neale Ranns28ab9cc2017-08-14 07:18:42 -070061void
62vl_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
Pavel Kotucek0f971d82017-01-03 10:48:54 +010077static int
78mpls_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
132void
133vl_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
148static int
149mpls_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 {
Neale Rannsda78f952017-05-24 09:15:43 -0700164 pfx.fp_payload_proto = mp->mr_next_hop_proto;
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100165 }
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,
Neale Rannsda78f952017-05-24 09:15:43 -0700174 pfx.fp_payload_proto,
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100175 mp->mr_next_hop_table_id,
176 mp->mr_create_table_if_needed,
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800177 mp->mr_is_rpf_id,
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100178 &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
Neale Rannsda78f952017-05-24 09:15:43 -0700186 if (DPO_PROTO_IP4 == mp->mr_next_hop_proto)
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100187 memcpy (&nh.ip4, mp->mr_next_hop, sizeof (nh.ip4));
Neale Rannsda78f952017-05-24 09:15:43 -0700188 else if (DPO_PROTO_IP6 == mp->mr_next_hop_proto)
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100189 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,
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800207 mp->mr_is_multicast,
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100208 mp->mr_is_classify,
209 mp->mr_classify_table_index,
210 mp->mr_is_resolve_host,
211 mp->mr_is_resolve_attached,
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800212 mp->mr_is_interface_rx,
213 mp->mr_is_rpf_id,
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100214 fib_index, &pfx,
Neale Rannsda78f952017-05-24 09:15:43 -0700215 mp->mr_next_hop_proto,
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100216 &nh, ntohl (mp->mr_next_hop_sw_if_index),
217 next_hop_fib_index,
218 mp->mr_next_hop_weight,
Neale Ranns57b58602017-07-15 07:37:25 -0700219 mp->mr_next_hop_preference,
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100220 ntohl (mp->mr_next_hop_via_label),
221 label_stack));
222}
223
224void
225vl_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
241static void
242vl_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;
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800248 fib_route_path_t rpath, *rpaths = NULL;
249
250 memset (&rpath, 0, sizeof (rpath));
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100251
252 stats_dslock_with_hint (1 /* release hint */ , 5 /* tag */ );
253
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800254 if (mp->mt_next_hop_proto_is_ip4)
255 {
Neale Rannsda78f952017-05-24 09:15:43 -0700256 rpath.frp_proto = DPO_PROTO_IP4;
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800257 clib_memcpy (&rpath.frp_addr.ip4,
258 mp->mt_next_hop, sizeof (rpath.frp_addr.ip4));
259 }
260 else
261 {
Neale Rannsda78f952017-05-24 09:15:43 -0700262 rpath.frp_proto = DPO_PROTO_IP6;
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800263 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
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100269 if (mp->mt_is_add)
270 {
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100271 for (ii = 0; ii < mp->mt_next_hop_n_out_labels; ii++)
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800272 vec_add1 (rpath.frp_label_stack,
273 ntohl (mp->mt_next_hop_out_label_stack[ii]));
274 }
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100275
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800276 vec_add1 (rpaths, rpath);
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100277
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800278 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);
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100286 }
287 else
288 {
289 tunnel_sw_if_index = ntohl (mp->mt_sw_if_index);
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800290 if (!vnet_mpls_tunnel_path_remove (tunnel_sw_if_index, rpaths))
291 vnet_mpls_tunnel_del (tunnel_sw_if_index);
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100292 }
293
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800294 vec_free (rpaths);
295
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100296 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
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100306typedef 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
313static void
314send_mpls_tunnel_entry (u32 mti, void *arg)
315{
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800316 fib_route_path_encode_t *api_rpaths, *api_rpath;
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100317 mpls_tunnel_send_walk_ctx_t *ctx;
318 vl_api_mpls_tunnel_details_t *mp;
319 const mpls_tunnel_t *mt;
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800320 vl_api_fib_path2_t *fp;
321 u32 n;
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100322
323 ctx = arg;
324
325 if (~0 != ctx->index && mti != ctx->index)
326 return;
327
328 mt = mpls_tunnel_get (mti);
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800329 n = fib_path_list_get_n_paths (mt->mt_path_list);
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100330
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800331 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
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100334 mp->_vl_msg_id = ntohs (VL_API_MPLS_TUNNEL_DETAILS);
335 mp->context = ctx->context;
336
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800337 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
Neale Rannsa0a908f2017-08-01 11:40:03 -0700347 fp->weight = api_rpath->rpath.frp_weight;
348 fp->preference = api_rpath->rpath.frp_preference;
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800349 fp->sw_if_index = htonl (api_rpath->rpath.frp_sw_if_index);
350 copy_fib_next_hop (api_rpath, fp);
351 fp++;
352 }
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100353
354 // FIXME
Neale Ranns0f26c5a2017-03-01 15:12:11 -0800355 // memcpy (mp->mt_next_hop_out_labels,
356 // mt->mt_label_stack, nlabels * sizeof (u32));
357
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100358
359 vl_msg_api_send_shmem (ctx->q, (u8 *) & mp);
360}
361
362static void
363vl_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
379static void
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100380send_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));
Neale Rannsa0a908f2017-08-01 11:40:03 -0700407 fp->weight = api_rpath->rpath.frp_weight;
408 fp->preference = api_rpath->rpath.frp_preference;
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100409 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
Neale Rannsa3af3372017-03-28 03:49:52 -0700417typedef 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
422static int
423vl_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
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100432static void
433vl_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;
Neale Rannsa3af3372017-03-28 03:49:52 -0700439 mpls_fib_t *mpls_fib;
440 fib_node_index_t *lfeip = NULL;
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100441 fib_prefix_t pfx;
442 u32 fib_index;
443 fib_route_path_encode_t *api_rpaths;
Neale Rannsa3af3372017-03-28 03:49:52 -0700444 vl_api_mpls_fib_dump_table_walk_ctx_t ctx = {
445 .lfeis = NULL,
446 };
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100447
448 q = vl_api_client_index_to_input_queue (mp->client_index);
449 if (q == 0)
450 return;
451
452 /* *INDENT-OFF* */
Neale Rannsa3af3372017-03-28 03:49:52 -0700453 pool_foreach (mpls_fib, mm->mpls_fibs,
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100454 ({
Neale Rannsa3af3372017-03-28 03:49:52 -0700455 mpls_fib_table_walk (mpls_fib,
456 vl_api_mpls_fib_dump_table_walk,
457 &ctx);
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100458 }));
459 /* *INDENT-ON* */
Neale Rannsa3af3372017-03-28 03:49:52 -0700460 vec_sort_with_function (ctx.lfeis, fib_entry_cmp_for_sort);
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100461
Neale Rannsa3af3372017-03-28 03:49:52 -0700462 vec_foreach (lfeip, ctx.lfeis)
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100463 {
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
Neale Rannsa3af3372017-03-28 03:49:52 -0700475 vec_free (ctx.lfeis);
Pavel Kotucek0f971d82017-01-03 10:48:54 +0100476}
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
489static void
490setup_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
497static clib_error_t *
498mpls_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
525VLIB_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 */