bfd: use tw_timer_template instead of legacy wheel
[vpp.git] / src / vnet / bfd / bfd_api.c
1 /*
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  */
19 /**
20  * @file
21  * @brief BFD binary API implementation
22  */
23
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>
31 #include <vnet/ip/ip_types_api.h>
32
33 #include <vnet/vnet_msg_enum.h>
34
35 #define vl_typedefs             /* define message structures */
36 #include <vnet/vnet_all_api_h.h>
37 #undef vl_typedefs
38
39 #define vl_endianfun            /* define message structures */
40 #include <vnet/vnet_all_api_h.h>
41 #undef vl_endianfun
42
43 /* instantiate all the print functions we know about */
44 #define vl_print(handle, ...) vlib_cli_output (handle, __VA_ARGS__)
45 #define vl_printfun
46 #include <vnet/vnet_all_api_h.h>
47 #undef vl_printfun
48
49 #include <vlibapi/api_helper_macros.h>
50
51 #define foreach_vpe_api_msg                                \
52   _ (BFD_UDP_ADD, bfd_udp_add)                             \
53   _ (BFD_UDP_MOD, bfd_udp_mod)                             \
54   _ (BFD_UDP_DEL, bfd_udp_del)                             \
55   _ (BFD_UDP_SESSION_DUMP, bfd_udp_session_dump)           \
56   _ (BFD_UDP_SESSION_SET_FLAGS, bfd_udp_session_set_flags) \
57   _ (WANT_BFD_EVENTS, want_bfd_events)                     \
58   _ (BFD_AUTH_SET_KEY, bfd_auth_set_key)                   \
59   _ (BFD_AUTH_DEL_KEY, bfd_auth_del_key)                   \
60   _ (BFD_AUTH_KEYS_DUMP, bfd_auth_keys_dump)               \
61   _ (BFD_UDP_AUTH_ACTIVATE, bfd_udp_auth_activate)         \
62   _ (BFD_UDP_AUTH_DEACTIVATE, bfd_udp_auth_deactivate)     \
63   _ (BFD_UDP_SET_ECHO_SOURCE, bfd_udp_set_echo_source)     \
64   _ (BFD_UDP_DEL_ECHO_SOURCE, bfd_udp_del_echo_source)     \
65   _ (BFD_UDP_GET_ECHO_SOURCE, bfd_udp_get_echo_source)
66
67 pub_sub_handler (bfd_events, BFD_EVENTS);
68
69 #define BFD_UDP_API_PARAM_COMMON_CODE                                         \
70   ip46_address_t local_addr;                                                  \
71   ip46_address_t peer_addr;                                                   \
72   ip_address_decode(&mp->local_addr, &local_addr);                             \
73   ip_address_decode(&mp->peer_addr, &peer_addr);
74
75 #define BFD_UDP_API_PARAM_FROM_MP(mp) \
76   clib_net_to_host_u32 (mp->sw_if_index), &local_addr, &peer_addr
77
78 static void
79 vl_api_bfd_udp_add_t_handler (vl_api_bfd_udp_add_t * mp)
80 {
81   vl_api_bfd_udp_add_reply_t *rmp;
82   int rv;
83
84   VALIDATE_SW_IF_INDEX (mp);
85
86   BFD_UDP_API_PARAM_COMMON_CODE;
87
88   rv = bfd_udp_add_session (BFD_UDP_API_PARAM_FROM_MP (mp),
89                             clib_net_to_host_u32 (mp->desired_min_tx),
90                             clib_net_to_host_u32 (mp->required_min_rx),
91                             mp->detect_mult, mp->is_authenticated,
92                             clib_net_to_host_u32 (mp->conf_key_id),
93                             mp->bfd_key_id);
94
95   BAD_SW_IF_INDEX_LABEL;
96   REPLY_MACRO (VL_API_BFD_UDP_ADD_REPLY);
97 }
98
99 static void
100 vl_api_bfd_udp_mod_t_handler (vl_api_bfd_udp_mod_t * mp)
101 {
102   vl_api_bfd_udp_mod_reply_t *rmp;
103   int rv;
104
105   VALIDATE_SW_IF_INDEX (mp);
106
107   BFD_UDP_API_PARAM_COMMON_CODE;
108
109   rv = bfd_udp_mod_session (BFD_UDP_API_PARAM_FROM_MP (mp),
110                             clib_net_to_host_u32 (mp->desired_min_tx),
111                             clib_net_to_host_u32 (mp->required_min_rx),
112                             mp->detect_mult);
113
114   BAD_SW_IF_INDEX_LABEL;
115   REPLY_MACRO (VL_API_BFD_UDP_MOD_REPLY);
116 }
117
118 static void
119 vl_api_bfd_udp_del_t_handler (vl_api_bfd_udp_del_t * mp)
120 {
121   vl_api_bfd_udp_del_reply_t *rmp;
122   int rv;
123
124   VALIDATE_SW_IF_INDEX (mp);
125
126   BFD_UDP_API_PARAM_COMMON_CODE;
127
128   rv = bfd_udp_del_session (BFD_UDP_API_PARAM_FROM_MP (mp));
129
130   BAD_SW_IF_INDEX_LABEL;
131   REPLY_MACRO (VL_API_BFD_UDP_DEL_REPLY);
132 }
133
134 void
135 send_bfd_udp_session_details (vl_api_registration_t * reg, u32 context,
136                               bfd_session_t * bs)
137 {
138   if (bs->transport != BFD_TRANSPORT_UDP4 &&
139       bs->transport != BFD_TRANSPORT_UDP6)
140     {
141       return;
142     }
143
144   vl_api_bfd_udp_session_details_t *mp = vl_msg_api_alloc (sizeof (*mp));
145   clib_memset (mp, 0, sizeof (*mp));
146   mp->_vl_msg_id = ntohs (VL_API_BFD_UDP_SESSION_DETAILS);
147   mp->context = context;
148   mp->state = clib_host_to_net_u32 (bs->local_state);
149   bfd_udp_session_t *bus = &bs->udp;
150   bfd_udp_key_t *key = &bus->key;
151   mp->sw_if_index = clib_host_to_net_u32 (key->sw_if_index);
152   if ((!bs->auth.is_delayed && bs->auth.curr_key) ||
153       (bs->auth.is_delayed && bs->auth.next_key))
154     {
155       mp->is_authenticated = true;
156     }
157   if (bs->auth.is_delayed && bs->auth.next_key)
158     {
159       mp->bfd_key_id = bs->auth.next_bfd_key_id;
160       mp->conf_key_id = clib_host_to_net_u32 (bs->auth.next_key->conf_key_id);
161     }
162   else if (!bs->auth.is_delayed && bs->auth.curr_key)
163     {
164       mp->bfd_key_id = bs->auth.curr_bfd_key_id;
165       mp->conf_key_id = clib_host_to_net_u32 (bs->auth.curr_key->conf_key_id);
166     }
167   ip_address_encode (&key->local_addr, IP46_TYPE_ANY, &mp->local_addr);
168   ip_address_encode (&key->peer_addr, IP46_TYPE_ANY, &mp->peer_addr);
169
170   mp->required_min_rx =
171     clib_host_to_net_u32 (bs->config_required_min_rx_usec);
172   mp->desired_min_tx = clib_host_to_net_u32 (bs->config_desired_min_tx_usec);
173   mp->detect_mult = bs->local_detect_mult;
174   vl_api_send_msg (reg, (u8 *) mp);
175 }
176
177 void
178 bfd_event (bfd_main_t * bm, bfd_session_t * bs)
179 {
180   vpe_api_main_t *vam = &vpe_api_main;
181   vpe_client_registration_t *reg;
182   vl_api_registration_t *vl_reg;
183   /* *INDENT-OFF* */
184   pool_foreach (reg, vam->bfd_events_registrations, ({
185     vl_reg = vl_api_client_index_to_registration (reg->client_index);
186     if (vl_reg)
187       {
188         switch (bs->transport)
189           {
190           case BFD_TRANSPORT_UDP4:
191           /* fallthrough */
192           case BFD_TRANSPORT_UDP6:
193             send_bfd_udp_session_details (vl_reg, 0, bs);
194           }
195       }
196   }));
197   /* *INDENT-ON* */
198 }
199
200 static void
201 vl_api_bfd_udp_session_dump_t_handler (vl_api_bfd_udp_session_dump_t * mp)
202 {
203   vl_api_registration_t *reg;
204
205   reg = vl_api_client_index_to_registration (mp->client_index);
206   if (!reg)
207     return;
208
209   bfd_session_t *bs = NULL;
210   /* *INDENT-OFF* */
211   pool_foreach (bs, bfd_main.sessions, ({
212     if (bs->transport == BFD_TRANSPORT_UDP4 ||
213         bs->transport == BFD_TRANSPORT_UDP6)
214       send_bfd_udp_session_details (reg, mp->context, bs);
215   }));
216   /* *INDENT-ON* */
217 }
218
219 static void
220 vl_api_bfd_udp_session_set_flags_t_handler (vl_api_bfd_udp_session_set_flags_t
221                                             * mp)
222 {
223   vl_api_bfd_udp_session_set_flags_reply_t *rmp;
224   int rv;
225
226   BFD_UDP_API_PARAM_COMMON_CODE;
227
228   rv = bfd_udp_session_set_flags (vlib_get_main (),
229                                   BFD_UDP_API_PARAM_FROM_MP (mp),
230                                   clib_net_to_host_u32 (mp->flags) &
231                                   IF_STATUS_API_FLAG_ADMIN_UP);
232
233   REPLY_MACRO (VL_API_BFD_UDP_SESSION_SET_FLAGS_REPLY);
234 }
235
236 static void
237 vl_api_bfd_auth_set_key_t_handler (vl_api_bfd_auth_set_key_t * mp)
238 {
239   vl_api_bfd_auth_set_key_reply_t *rmp;
240   int rv = bfd_auth_set_key (clib_net_to_host_u32 (mp->conf_key_id),
241                              mp->auth_type, mp->key_len, mp->key);
242
243   REPLY_MACRO (VL_API_BFD_AUTH_SET_KEY_REPLY);
244 }
245
246 static void
247 vl_api_bfd_auth_del_key_t_handler (vl_api_bfd_auth_del_key_t * mp)
248 {
249   vl_api_bfd_auth_del_key_reply_t *rmp;
250   int rv = bfd_auth_del_key (clib_net_to_host_u32 (mp->conf_key_id));
251
252   REPLY_MACRO (VL_API_BFD_AUTH_DEL_KEY_REPLY);
253 }
254
255 static void
256 vl_api_bfd_auth_keys_dump_t_handler (vl_api_bfd_auth_keys_dump_t * mp)
257 {
258   vl_api_registration_t *reg;
259
260   reg = vl_api_client_index_to_registration (mp->client_index);
261   if (!reg)
262     return;
263
264   bfd_auth_key_t *key = NULL;
265   vl_api_bfd_auth_keys_details_t *rmp = NULL;
266
267   /* *INDENT-OFF* */
268   pool_foreach (key, bfd_main.auth_keys, ({
269     rmp = vl_msg_api_alloc (sizeof (*rmp));
270     clib_memset (rmp, 0, sizeof (*rmp));
271     rmp->_vl_msg_id = ntohs (VL_API_BFD_AUTH_KEYS_DETAILS);
272     rmp->context = mp->context;
273     rmp->conf_key_id = clib_host_to_net_u32 (key->conf_key_id);
274     rmp->auth_type = key->auth_type;
275     rmp->use_count = clib_host_to_net_u32 (key->use_count);
276     vl_api_send_msg (reg, (u8 *)rmp);
277   }));
278   /* *INDENT-ON* */
279 }
280
281 static void
282 vl_api_bfd_udp_auth_activate_t_handler (vl_api_bfd_udp_auth_activate_t * mp)
283 {
284   vl_api_bfd_udp_auth_activate_reply_t *rmp;
285   int rv;
286
287   VALIDATE_SW_IF_INDEX (mp);
288
289   BFD_UDP_API_PARAM_COMMON_CODE;
290
291   rv = bfd_udp_auth_activate (BFD_UDP_API_PARAM_FROM_MP (mp),
292                               clib_net_to_host_u32 (mp->conf_key_id),
293                               mp->bfd_key_id, mp->is_delayed);
294
295   BAD_SW_IF_INDEX_LABEL;
296   REPLY_MACRO (VL_API_BFD_UDP_AUTH_ACTIVATE_REPLY);
297 }
298
299 static void
300 vl_api_bfd_udp_auth_deactivate_t_handler (vl_api_bfd_udp_auth_deactivate_t *
301                                           mp)
302 {
303   vl_api_bfd_udp_auth_deactivate_reply_t *rmp;
304   int rv;
305
306   VALIDATE_SW_IF_INDEX (mp);
307
308   BFD_UDP_API_PARAM_COMMON_CODE;
309
310   rv =
311     bfd_udp_auth_deactivate (BFD_UDP_API_PARAM_FROM_MP (mp), mp->is_delayed);
312
313   BAD_SW_IF_INDEX_LABEL;
314   REPLY_MACRO (VL_API_BFD_UDP_AUTH_DEACTIVATE_REPLY);
315 }
316
317 static void
318 vl_api_bfd_udp_set_echo_source_t_handler (vl_api_bfd_udp_set_echo_source_t *
319                                           mp)
320 {
321   vl_api_bfd_udp_set_echo_source_reply_t *rmp;
322   int rv;
323
324   VALIDATE_SW_IF_INDEX (mp);
325
326   rv = bfd_udp_set_echo_source (clib_net_to_host_u32 (mp->sw_if_index));
327
328   BAD_SW_IF_INDEX_LABEL;
329   REPLY_MACRO (VL_API_BFD_UDP_SET_ECHO_SOURCE_REPLY);
330 }
331
332 static void
333 vl_api_bfd_udp_del_echo_source_t_handler (vl_api_bfd_udp_del_echo_source_t *
334                                           mp)
335 {
336   vl_api_bfd_udp_del_echo_source_reply_t *rmp;
337   int rv;
338
339   rv = bfd_udp_del_echo_source ();
340
341   REPLY_MACRO (VL_API_BFD_UDP_DEL_ECHO_SOURCE_REPLY);
342 }
343
344 static void
345 vl_api_bfd_udp_get_echo_source_t_handler (vl_api_bfd_udp_get_echo_source_t *
346                                           mp)
347 {
348   vl_api_bfd_udp_get_echo_source_reply_t *rmp;
349   int rv = 0;
350   int is_set;
351   u32 sw_if_index;
352   int have_usable_ip4;
353   ip4_address_t ip4;
354   int have_usable_ip6;
355   ip6_address_t ip6;
356
357   bfd_udp_get_echo_source (&is_set, &sw_if_index, &have_usable_ip4, &ip4,
358                            &have_usable_ip6, &ip6);
359
360   /* *INDENT-OFF* */
361   REPLY_MACRO2 (VL_API_BFD_UDP_GET_ECHO_SOURCE_REPLY,
362   ({
363     rmp->sw_if_index = ntohl (sw_if_index);
364     if (is_set)
365       {
366         rmp->is_set = true;
367         rmp->sw_if_index = clib_host_to_net_u32 (sw_if_index);
368         if (have_usable_ip4)
369           {
370             rmp->have_usable_ip4 = true;
371             ip4_address_encode(&ip4, rmp->ip4_addr);
372           }
373         else
374           {
375             rmp->have_usable_ip4 = false;
376           }
377         if (have_usable_ip6)
378           {
379             rmp->have_usable_ip6 = true;
380             ip6_address_encode(&ip6, rmp->ip6_addr);
381           }
382         else
383           {
384             rmp->have_usable_ip6 = false;
385           }
386       }
387     else
388       {
389         rmp->is_set = false;
390         rmp->have_usable_ip4 = false;
391         rmp->have_usable_ip6 = false;
392       }
393   }))
394   /* *INDENT-ON* */
395 }
396
397 /*
398  * bfd_api_hookup
399  * Add vpe's API message handlers to the table.
400  * vlib has already mapped shared memory and
401  * added the client registration handlers.
402  * See .../vlib-api/vlibmemory/memclnt_vlib.c:memclnt_process()
403  */
404 #define vl_msg_name_crc_list
405 #include <vnet/vnet_all_api_h.h>
406 #undef vl_msg_name_crc_list
407
408 static void
409 setup_message_id_table (api_main_t * am)
410 {
411 #define _(id, n, crc) vl_msg_api_add_msg_name_crc (am, #n "_" #crc, id);
412   foreach_vl_msg_name_crc_bfd;
413 #undef _
414 }
415
416 static clib_error_t *
417 bfd_api_hookup (vlib_main_t * vm)
418 {
419   api_main_t *am = vlibapi_get_main ();
420
421 #define _(N, n)                                                    \
422   vl_msg_api_set_handlers (VL_API_##N, #n, vl_api_##n##_t_handler, \
423                            vl_noop_handler, vl_api_##n##_t_endian, \
424                            vl_api_##n##_t_print, sizeof (vl_api_##n##_t), 1);
425   foreach_vpe_api_msg;
426 #undef _
427
428   /*
429    * Set up the (msg_name, crc, message-id) table
430    */
431   setup_message_id_table (am);
432
433   return 0;
434 }
435
436 VLIB_API_INIT_FUNCTION (bfd_api_hookup);
437
438 /*
439  * fd.io coding-style-patch-verification: ON
440  *
441  * Local Variables:
442  * eval: (c-set-style "gnu")
443  * End:
444  */