blob: 816e71081ffc4f31775a706972a27f536346356c [file] [log] [blame]
Pavel Kotucek20d12322016-12-21 09:13:17 +01001/*
2 *------------------------------------------------------------------
3 * bfd_api.c - bfd 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 */
Klement Sekerab16bfe32017-02-28 11:56:48 +010019/**
20 * @file
21 * @brief BFD binary API implementation
22 */
Pavel Kotucek20d12322016-12-21 09:13:17 +010023
24#include <vnet/vnet.h>
25#include <vlibmemory/api.h>
26
27#include <vnet/interface.h>
28#include <vnet/api_errno.h>
29#include <vnet/bfd/bfd_main.h>
30#include <vnet/bfd/bfd_api.h>
Jakub Grajciar4682feb2019-09-02 13:28:52 +020031#include <vnet/ip/ip_types_api.h>
Pavel Kotucek20d12322016-12-21 09:13:17 +010032
Filip Tehlard2e5cf22021-06-21 13:21:59 +000033#include <vnet/format_fns.h>
34#include <vnet/bfd/bfd.api_enum.h>
35#include <vnet/bfd/bfd.api_types.h>
Pavel Kotucek20d12322016-12-21 09:13:17 +010036
Filip Tehlard2e5cf22021-06-21 13:21:59 +000037#define REPLY_MSG_ID_BASE bfd_main.msg_id_base
Pavel Kotucek20d12322016-12-21 09:13:17 +010038#include <vlibapi/api_helper_macros.h>
39
Pavel Kotucek20d12322016-12-21 09:13:17 +010040
41pub_sub_handler (bfd_events, BFD_EVENTS);
42
Klement Sekerab17dd962017-01-09 07:43:48 +010043#define BFD_UDP_API_PARAM_COMMON_CODE \
44 ip46_address_t local_addr; \
Klement Sekerab17dd962017-01-09 07:43:48 +010045 ip46_address_t peer_addr; \
Jakub Grajciar4682feb2019-09-02 13:28:52 +020046 ip_address_decode(&mp->local_addr, &local_addr); \
47 ip_address_decode(&mp->peer_addr, &peer_addr);
Klement Sekerab17dd962017-01-09 07:43:48 +010048
49#define BFD_UDP_API_PARAM_FROM_MP(mp) \
50 clib_net_to_host_u32 (mp->sw_if_index), &local_addr, &peer_addr
51
Pavel Kotucek20d12322016-12-21 09:13:17 +010052static void
53vl_api_bfd_udp_add_t_handler (vl_api_bfd_udp_add_t * mp)
54{
55 vl_api_bfd_udp_add_reply_t *rmp;
56 int rv;
57
58 VALIDATE_SW_IF_INDEX (mp);
59
Klement Sekerab17dd962017-01-09 07:43:48 +010060 BFD_UDP_API_PARAM_COMMON_CODE;
Pavel Kotucek20d12322016-12-21 09:13:17 +010061
Klement Sekerab17dd962017-01-09 07:43:48 +010062 rv = bfd_udp_add_session (BFD_UDP_API_PARAM_FROM_MP (mp),
Pavel Kotucek20d12322016-12-21 09:13:17 +010063 clib_net_to_host_u32 (mp->desired_min_tx),
64 clib_net_to_host_u32 (mp->required_min_rx),
Klement Sekerab17dd962017-01-09 07:43:48 +010065 mp->detect_mult, mp->is_authenticated,
66 clib_net_to_host_u32 (mp->conf_key_id),
67 mp->bfd_key_id);
Pavel Kotucek20d12322016-12-21 09:13:17 +010068
69 BAD_SW_IF_INDEX_LABEL;
Klement Sekerab17dd962017-01-09 07:43:48 +010070 REPLY_MACRO (VL_API_BFD_UDP_ADD_REPLY);
Pavel Kotucek20d12322016-12-21 09:13:17 +010071}
72
73static void
Neale Ranns63f2c7d2022-02-09 13:47:29 +000074vl_api_bfd_udp_upd_t_handler (vl_api_bfd_udp_add_t *mp)
75{
76 vl_api_bfd_udp_upd_reply_t *rmp;
77 int rv;
78
79 VALIDATE_SW_IF_INDEX (mp);
80
81 BFD_UDP_API_PARAM_COMMON_CODE;
82
83 rv = bfd_udp_upd_session (
84 BFD_UDP_API_PARAM_FROM_MP (mp), clib_net_to_host_u32 (mp->desired_min_tx),
85 clib_net_to_host_u32 (mp->required_min_rx), mp->detect_mult,
86 mp->is_authenticated, clib_net_to_host_u32 (mp->conf_key_id),
87 mp->bfd_key_id);
88
89 BAD_SW_IF_INDEX_LABEL;
90 REPLY_MACRO2 (VL_API_BFD_UDP_UPD_REPLY,
91 ({ rmp->stats_index = clib_host_to_net_u32 (0); }));
92}
93
94static void
Klement Sekeraa57a9702017-02-02 06:58:07 +010095vl_api_bfd_udp_mod_t_handler (vl_api_bfd_udp_mod_t * mp)
96{
97 vl_api_bfd_udp_mod_reply_t *rmp;
98 int rv;
99
100 VALIDATE_SW_IF_INDEX (mp);
101
102 BFD_UDP_API_PARAM_COMMON_CODE;
103
104 rv = bfd_udp_mod_session (BFD_UDP_API_PARAM_FROM_MP (mp),
105 clib_net_to_host_u32 (mp->desired_min_tx),
106 clib_net_to_host_u32 (mp->required_min_rx),
107 mp->detect_mult);
108
109 BAD_SW_IF_INDEX_LABEL;
110 REPLY_MACRO (VL_API_BFD_UDP_MOD_REPLY);
111}
112
113static void
Pavel Kotucek20d12322016-12-21 09:13:17 +0100114vl_api_bfd_udp_del_t_handler (vl_api_bfd_udp_del_t * mp)
115{
116 vl_api_bfd_udp_del_reply_t *rmp;
117 int rv;
118
119 VALIDATE_SW_IF_INDEX (mp);
120
Klement Sekerab17dd962017-01-09 07:43:48 +0100121 BFD_UDP_API_PARAM_COMMON_CODE;
Pavel Kotucek20d12322016-12-21 09:13:17 +0100122
Klement Sekerab17dd962017-01-09 07:43:48 +0100123 rv = bfd_udp_del_session (BFD_UDP_API_PARAM_FROM_MP (mp));
Pavel Kotucek20d12322016-12-21 09:13:17 +0100124
125 BAD_SW_IF_INDEX_LABEL;
126 REPLY_MACRO (VL_API_BFD_UDP_DEL_REPLY);
127}
128
129void
Florin Coras6c4dae22018-01-09 06:39:23 -0800130send_bfd_udp_session_details (vl_api_registration_t * reg, u32 context,
Pavel Kotucek20d12322016-12-21 09:13:17 +0100131 bfd_session_t * bs)
132{
133 if (bs->transport != BFD_TRANSPORT_UDP4 &&
134 bs->transport != BFD_TRANSPORT_UDP6)
135 {
136 return;
137 }
138
139 vl_api_bfd_udp_session_details_t *mp = vl_msg_api_alloc (sizeof (*mp));
Dave Barachb7b92992018-10-17 10:38:51 -0400140 clib_memset (mp, 0, sizeof (*mp));
Filip Tehlard2e5cf22021-06-21 13:21:59 +0000141 mp->_vl_msg_id = ntohs (REPLY_MSG_ID_BASE + VL_API_BFD_UDP_SESSION_DETAILS);
Pavel Kotucek20d12322016-12-21 09:13:17 +0100142 mp->context = context;
Jakub Grajciar4682feb2019-09-02 13:28:52 +0200143 mp->state = clib_host_to_net_u32 (bs->local_state);
Pavel Kotucek20d12322016-12-21 09:13:17 +0100144 bfd_udp_session_t *bus = &bs->udp;
145 bfd_udp_key_t *key = &bus->key;
146 mp->sw_if_index = clib_host_to_net_u32 (key->sw_if_index);
Klement Sekera73884482017-02-23 09:26:30 +0100147 if ((!bs->auth.is_delayed && bs->auth.curr_key) ||
148 (bs->auth.is_delayed && bs->auth.next_key))
149 {
Jakub Grajciar4682feb2019-09-02 13:28:52 +0200150 mp->is_authenticated = true;
Klement Sekera73884482017-02-23 09:26:30 +0100151 }
152 if (bs->auth.is_delayed && bs->auth.next_key)
153 {
154 mp->bfd_key_id = bs->auth.next_bfd_key_id;
155 mp->conf_key_id = clib_host_to_net_u32 (bs->auth.next_key->conf_key_id);
156 }
157 else if (!bs->auth.is_delayed && bs->auth.curr_key)
158 {
159 mp->bfd_key_id = bs->auth.curr_bfd_key_id;
160 mp->conf_key_id = clib_host_to_net_u32 (bs->auth.curr_key->conf_key_id);
161 }
Jakub Grajciar4682feb2019-09-02 13:28:52 +0200162 ip_address_encode (&key->local_addr, IP46_TYPE_ANY, &mp->local_addr);
163 ip_address_encode (&key->peer_addr, IP46_TYPE_ANY, &mp->peer_addr);
Pavel Kotucek20d12322016-12-21 09:13:17 +0100164
Klement Sekeraa57a9702017-02-02 06:58:07 +0100165 mp->required_min_rx =
166 clib_host_to_net_u32 (bs->config_required_min_rx_usec);
167 mp->desired_min_tx = clib_host_to_net_u32 (bs->config_desired_min_tx_usec);
168 mp->detect_mult = bs->local_detect_mult;
Florin Coras6c4dae22018-01-09 06:39:23 -0800169 vl_api_send_msg (reg, (u8 *) mp);
Pavel Kotucek20d12322016-12-21 09:13:17 +0100170}
171
172void
Ole Troan4376ab22021-03-03 10:40:05 +0100173send_bfd_udp_session_event (vl_api_registration_t *reg, u32 pid,
174 bfd_session_t *bs)
175{
176 if (bs->transport != BFD_TRANSPORT_UDP4 &&
177 bs->transport != BFD_TRANSPORT_UDP6)
178 {
179 return;
180 }
181
182 vl_api_bfd_udp_session_event_t *mp = vl_msg_api_alloc (sizeof (*mp));
183 clib_memset (mp, 0, sizeof (*mp));
Filip Tehlard2e5cf22021-06-21 13:21:59 +0000184 mp->_vl_msg_id = ntohs (REPLY_MSG_ID_BASE + VL_API_BFD_UDP_SESSION_EVENT);
Ole Troan4376ab22021-03-03 10:40:05 +0100185 mp->pid = pid;
186 mp->state = clib_host_to_net_u32 (bs->local_state);
187 bfd_udp_session_t *bus = &bs->udp;
188 bfd_udp_key_t *key = &bus->key;
189 mp->sw_if_index = clib_host_to_net_u32 (key->sw_if_index);
190 if ((!bs->auth.is_delayed && bs->auth.curr_key) ||
191 (bs->auth.is_delayed && bs->auth.next_key))
192 {
193 mp->is_authenticated = true;
194 }
195 if (bs->auth.is_delayed && bs->auth.next_key)
196 {
197 mp->bfd_key_id = bs->auth.next_bfd_key_id;
198 mp->conf_key_id = clib_host_to_net_u32 (bs->auth.next_key->conf_key_id);
199 }
200 else if (!bs->auth.is_delayed && bs->auth.curr_key)
201 {
202 mp->bfd_key_id = bs->auth.curr_bfd_key_id;
203 mp->conf_key_id = clib_host_to_net_u32 (bs->auth.curr_key->conf_key_id);
204 }
205 ip_address_encode (&key->local_addr, IP46_TYPE_ANY, &mp->local_addr);
206 ip_address_encode (&key->peer_addr, IP46_TYPE_ANY, &mp->peer_addr);
207
208 mp->required_min_rx = clib_host_to_net_u32 (bs->config_required_min_rx_usec);
209 mp->desired_min_tx = clib_host_to_net_u32 (bs->config_desired_min_tx_usec);
210 mp->detect_mult = bs->local_detect_mult;
211 vl_api_send_msg (reg, (u8 *) mp);
212}
213
214void
Pavel Kotucek20d12322016-12-21 09:13:17 +0100215bfd_event (bfd_main_t * bm, bfd_session_t * bs)
216{
217 vpe_api_main_t *vam = &vpe_api_main;
218 vpe_client_registration_t *reg;
Florin Coras6c4dae22018-01-09 06:39:23 -0800219 vl_api_registration_t *vl_reg;
Damjan Marionb2c31b62020-12-13 21:47:40 +0100220 pool_foreach (reg, vam->bfd_events_registrations) {
Florin Coras6c4dae22018-01-09 06:39:23 -0800221 vl_reg = vl_api_client_index_to_registration (reg->client_index);
222 if (vl_reg)
223 {
224 switch (bs->transport)
225 {
226 case BFD_TRANSPORT_UDP4:
227 /* fallthrough */
228 case BFD_TRANSPORT_UDP6:
Ole Troan4376ab22021-03-03 10:40:05 +0100229 send_bfd_udp_session_event (vl_reg, 0, bs);
Florin Coras6c4dae22018-01-09 06:39:23 -0800230 }
231 }
Damjan Marionb2c31b62020-12-13 21:47:40 +0100232 }
Pavel Kotucek20d12322016-12-21 09:13:17 +0100233}
234
235static void
236vl_api_bfd_udp_session_dump_t_handler (vl_api_bfd_udp_session_dump_t * mp)
237{
Florin Coras6c4dae22018-01-09 06:39:23 -0800238 vl_api_registration_t *reg;
Pavel Kotucek20d12322016-12-21 09:13:17 +0100239
Florin Coras6c4dae22018-01-09 06:39:23 -0800240 reg = vl_api_client_index_to_registration (mp->client_index);
241 if (!reg)
Pavel Kotucek20d12322016-12-21 09:13:17 +0100242 return;
243
244 bfd_session_t *bs = NULL;
Damjan Marionb2c31b62020-12-13 21:47:40 +0100245 pool_foreach (bs, bfd_main.sessions) {
Florin Coras6c4dae22018-01-09 06:39:23 -0800246 if (bs->transport == BFD_TRANSPORT_UDP4 ||
247 bs->transport == BFD_TRANSPORT_UDP6)
248 send_bfd_udp_session_details (reg, mp->context, bs);
Damjan Marionb2c31b62020-12-13 21:47:40 +0100249 }
Pavel Kotucek20d12322016-12-21 09:13:17 +0100250}
251
252static void
Klement Sekerab17dd962017-01-09 07:43:48 +0100253vl_api_bfd_udp_session_set_flags_t_handler (vl_api_bfd_udp_session_set_flags_t
254 * mp)
Pavel Kotucek20d12322016-12-21 09:13:17 +0100255{
Klement Sekerab17dd962017-01-09 07:43:48 +0100256 vl_api_bfd_udp_session_set_flags_reply_t *rmp;
Pavel Kotucek20d12322016-12-21 09:13:17 +0100257 int rv;
258
Klement Sekerab17dd962017-01-09 07:43:48 +0100259 BFD_UDP_API_PARAM_COMMON_CODE;
Pavel Kotucek20d12322016-12-21 09:13:17 +0100260
Klement Sekeraa3167442020-02-10 11:49:52 +0000261 rv = bfd_udp_session_set_flags (vlib_get_main (),
262 BFD_UDP_API_PARAM_FROM_MP (mp),
Jakub Grajciar4682feb2019-09-02 13:28:52 +0200263 clib_net_to_host_u32 (mp->flags) &
264 IF_STATUS_API_FLAG_ADMIN_UP);
Klement Sekerab17dd962017-01-09 07:43:48 +0100265
266 REPLY_MACRO (VL_API_BFD_UDP_SESSION_SET_FLAGS_REPLY);
267}
268
269static void
270vl_api_bfd_auth_set_key_t_handler (vl_api_bfd_auth_set_key_t * mp)
271{
272 vl_api_bfd_auth_set_key_reply_t *rmp;
273 int rv = bfd_auth_set_key (clib_net_to_host_u32 (mp->conf_key_id),
274 mp->auth_type, mp->key_len, mp->key);
275
276 REPLY_MACRO (VL_API_BFD_AUTH_SET_KEY_REPLY);
277}
278
279static void
280vl_api_bfd_auth_del_key_t_handler (vl_api_bfd_auth_del_key_t * mp)
281{
282 vl_api_bfd_auth_del_key_reply_t *rmp;
283 int rv = bfd_auth_del_key (clib_net_to_host_u32 (mp->conf_key_id));
284
285 REPLY_MACRO (VL_API_BFD_AUTH_DEL_KEY_REPLY);
286}
287
288static void
289vl_api_bfd_auth_keys_dump_t_handler (vl_api_bfd_auth_keys_dump_t * mp)
290{
Florin Coras6c4dae22018-01-09 06:39:23 -0800291 vl_api_registration_t *reg;
Klement Sekerab17dd962017-01-09 07:43:48 +0100292
Florin Coras6c4dae22018-01-09 06:39:23 -0800293 reg = vl_api_client_index_to_registration (mp->client_index);
294 if (!reg)
Klement Sekerab17dd962017-01-09 07:43:48 +0100295 return;
296
297 bfd_auth_key_t *key = NULL;
298 vl_api_bfd_auth_keys_details_t *rmp = NULL;
299
Damjan Marionb2c31b62020-12-13 21:47:40 +0100300 pool_foreach (key, bfd_main.auth_keys) {
Florin Coras6c4dae22018-01-09 06:39:23 -0800301 rmp = vl_msg_api_alloc (sizeof (*rmp));
Dave Barachb7b92992018-10-17 10:38:51 -0400302 clib_memset (rmp, 0, sizeof (*rmp));
Filip Tehlard2e5cf22021-06-21 13:21:59 +0000303 rmp->_vl_msg_id = ntohs (REPLY_MSG_ID_BASE + VL_API_BFD_AUTH_KEYS_DETAILS);
Florin Coras6c4dae22018-01-09 06:39:23 -0800304 rmp->context = mp->context;
305 rmp->conf_key_id = clib_host_to_net_u32 (key->conf_key_id);
306 rmp->auth_type = key->auth_type;
307 rmp->use_count = clib_host_to_net_u32 (key->use_count);
Florin Corasf0c8a812018-01-15 01:17:29 -0800308 vl_api_send_msg (reg, (u8 *)rmp);
Damjan Marionb2c31b62020-12-13 21:47:40 +0100309 }
Klement Sekerab17dd962017-01-09 07:43:48 +0100310}
311
312static void
313vl_api_bfd_udp_auth_activate_t_handler (vl_api_bfd_udp_auth_activate_t * mp)
314{
315 vl_api_bfd_udp_auth_activate_reply_t *rmp;
316 int rv;
317
318 VALIDATE_SW_IF_INDEX (mp);
319
320 BFD_UDP_API_PARAM_COMMON_CODE;
321
Klement Sekera73884482017-02-23 09:26:30 +0100322 rv = bfd_udp_auth_activate (BFD_UDP_API_PARAM_FROM_MP (mp),
323 clib_net_to_host_u32 (mp->conf_key_id),
324 mp->bfd_key_id, mp->is_delayed);
Klement Sekerab17dd962017-01-09 07:43:48 +0100325
326 BAD_SW_IF_INDEX_LABEL;
327 REPLY_MACRO (VL_API_BFD_UDP_AUTH_ACTIVATE_REPLY);
328}
329
330static void
331vl_api_bfd_udp_auth_deactivate_t_handler (vl_api_bfd_udp_auth_deactivate_t *
332 mp)
333{
334 vl_api_bfd_udp_auth_deactivate_reply_t *rmp;
335 int rv;
336
337 VALIDATE_SW_IF_INDEX (mp);
338
339 BFD_UDP_API_PARAM_COMMON_CODE;
340
341 rv =
342 bfd_udp_auth_deactivate (BFD_UDP_API_PARAM_FROM_MP (mp), mp->is_delayed);
343
344 BAD_SW_IF_INDEX_LABEL;
345 REPLY_MACRO (VL_API_BFD_UDP_AUTH_DEACTIVATE_REPLY);
Pavel Kotucek20d12322016-12-21 09:13:17 +0100346}
347
Klement Sekera239790f2017-02-16 10:53:53 +0100348static void
349vl_api_bfd_udp_set_echo_source_t_handler (vl_api_bfd_udp_set_echo_source_t *
350 mp)
351{
352 vl_api_bfd_udp_set_echo_source_reply_t *rmp;
353 int rv;
354
355 VALIDATE_SW_IF_INDEX (mp);
356
357 rv = bfd_udp_set_echo_source (clib_net_to_host_u32 (mp->sw_if_index));
358
359 BAD_SW_IF_INDEX_LABEL;
360 REPLY_MACRO (VL_API_BFD_UDP_SET_ECHO_SOURCE_REPLY);
361}
362
363static void
364vl_api_bfd_udp_del_echo_source_t_handler (vl_api_bfd_udp_del_echo_source_t *
365 mp)
366{
367 vl_api_bfd_udp_del_echo_source_reply_t *rmp;
368 int rv;
369
370 rv = bfd_udp_del_echo_source ();
371
372 REPLY_MACRO (VL_API_BFD_UDP_DEL_ECHO_SOURCE_REPLY);
373}
374
Matus Fabian2d3c7b92018-10-02 03:22:18 -0700375static void
376vl_api_bfd_udp_get_echo_source_t_handler (vl_api_bfd_udp_get_echo_source_t *
377 mp)
378{
379 vl_api_bfd_udp_get_echo_source_reply_t *rmp;
380 int rv = 0;
381 int is_set;
382 u32 sw_if_index;
383 int have_usable_ip4;
384 ip4_address_t ip4;
385 int have_usable_ip6;
386 ip6_address_t ip6;
387
388 bfd_udp_get_echo_source (&is_set, &sw_if_index, &have_usable_ip4, &ip4,
389 &have_usable_ip6, &ip6);
390
Matus Fabian2d3c7b92018-10-02 03:22:18 -0700391 REPLY_MACRO2 (VL_API_BFD_UDP_GET_ECHO_SOURCE_REPLY,
392 ({
393 rmp->sw_if_index = ntohl (sw_if_index);
394 if (is_set)
395 {
Jakub Grajciar4682feb2019-09-02 13:28:52 +0200396 rmp->is_set = true;
Matus Fabian2d3c7b92018-10-02 03:22:18 -0700397 rmp->sw_if_index = clib_host_to_net_u32 (sw_if_index);
398 if (have_usable_ip4)
399 {
Jakub Grajciar4682feb2019-09-02 13:28:52 +0200400 rmp->have_usable_ip4 = true;
401 ip4_address_encode(&ip4, rmp->ip4_addr);
Matus Fabian2d3c7b92018-10-02 03:22:18 -0700402 }
403 else
404 {
Jakub Grajciar4682feb2019-09-02 13:28:52 +0200405 rmp->have_usable_ip4 = false;
Matus Fabian2d3c7b92018-10-02 03:22:18 -0700406 }
407 if (have_usable_ip6)
408 {
Jakub Grajciar4682feb2019-09-02 13:28:52 +0200409 rmp->have_usable_ip6 = true;
410 ip6_address_encode(&ip6, rmp->ip6_addr);
Matus Fabian2d3c7b92018-10-02 03:22:18 -0700411 }
412 else
413 {
Jakub Grajciar4682feb2019-09-02 13:28:52 +0200414 rmp->have_usable_ip6 = false;
Matus Fabian2d3c7b92018-10-02 03:22:18 -0700415 }
416 }
417 else
418 {
Jakub Grajciar4682feb2019-09-02 13:28:52 +0200419 rmp->is_set = false;
420 rmp->have_usable_ip4 = false;
421 rmp->have_usable_ip6 = false;
Matus Fabian2d3c7b92018-10-02 03:22:18 -0700422 }
423 }))
Matus Fabian2d3c7b92018-10-02 03:22:18 -0700424}
425
Filip Tehlard2e5cf22021-06-21 13:21:59 +0000426#include <vnet/bfd/bfd.api.c>
Pavel Kotucek20d12322016-12-21 09:13:17 +0100427static clib_error_t *
428bfd_api_hookup (vlib_main_t * vm)
429{
Pavel Kotucek20d12322016-12-21 09:13:17 +0100430 /*
431 * Set up the (msg_name, crc, message-id) table
432 */
Filip Tehlard2e5cf22021-06-21 13:21:59 +0000433 REPLY_MSG_ID_BASE = setup_message_id_table ();
Pavel Kotucek20d12322016-12-21 09:13:17 +0100434
435 return 0;
436}
437
438VLIB_API_INIT_FUNCTION (bfd_api_hookup);
439
440/*
441 * fd.io coding-style-patch-verification: ON
442 *
443 * Local Variables:
444 * eval: (c-set-style "gnu")
445 * End:
446 */