blob: 8bdcda01c4d15d34a2b31be9a0fbb7567f897cf5 [file] [log] [blame]
Damjan Marion7cd468a2016-12-19 23:05:39 +01001/*
2 * Copyright (c) 2016 Cisco and/or its affiliates.
3 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at:
6 *
7 * http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
14 */
15#include <stdio.h>
16#include <stdlib.h>
17#include <stddef.h>
18#include <sys/types.h>
19#include <sys/socket.h>
20#include <sys/mman.h>
21#include <sys/stat.h>
22#include <netinet/in.h>
23#include <netdb.h>
24#include <signal.h>
Damjan Marion7cd468a2016-12-19 23:05:39 +010025#include <stdbool.h>
Damjan Marion7cd468a2016-12-19 23:05:39 +010026#include <vnet/vnet.h>
27#include <vlib/vlib.h>
28#include <vlib/unix/unix.h>
29#include <vlibapi/api.h>
30#include <vlibmemory/api.h>
31
32#include <vpp/api/vpe_msg_enum.h>
33
Damjan Marion5fec1e82017-04-13 19:13:47 +020034#include "vppapiclient.h"
Damjan Marion7cd468a2016-12-19 23:05:39 +010035
Ole Troandfc9b7c2017-03-06 23:51:57 +010036/*
37 * Asynchronous mode:
38 * Client registers a callback. All messages are sent to the callback.
39 * Synchronous mode:
40 * Client calls blocking read().
41 * Clients are expected to collate events on a queue.
Damjan Marion5fec1e82017-04-13 19:13:47 +020042 * vac_write() -> suspends RX thread
43 * vac_read() -> resumes RX thread
Ole Troandfc9b7c2017-03-06 23:51:57 +010044 */
45
Damjan Marion7cd468a2016-12-19 23:05:39 +010046#define vl_typedefs /* define message structures */
47#include <vpp/api/vpe_all_api_h.h>
48#undef vl_typedefs
49
50#define vl_endianfun /* define message structures */
51#include <vpp/api/vpe_all_api_h.h>
52#undef vl_endianfun
53
54vlib_main_t vlib_global_main;
55vlib_main_t **vlib_mains;
56
57typedef struct {
Damjan Marion7cd468a2016-12-19 23:05:39 +010058 u8 connected_to_vlib;
Damjan Marion7cd468a2016-12-19 23:05:39 +010059 pthread_t rx_thread_handle;
Ole Troandfc9b7c2017-03-06 23:51:57 +010060 pthread_t timeout_thread_handle;
61 pthread_mutex_t queue_lock;
62 pthread_cond_t suspend_cv;
63 pthread_cond_t resume_cv;
64 pthread_mutex_t timeout_lock;
65 pthread_cond_t timeout_cv;
66 pthread_cond_t timeout_cancel_cv;
67 pthread_cond_t terminate_cv;
Damjan Marion5fec1e82017-04-13 19:13:47 +020068} vac_main_t;
Damjan Marion7cd468a2016-12-19 23:05:39 +010069
Damjan Marion5fec1e82017-04-13 19:13:47 +020070vac_main_t vac_main;
71vac_callback_t vac_callback;
Ole Troandfc9b7c2017-03-06 23:51:57 +010072u16 read_timeout = 0;
73bool rx_is_running = false;
74
75static void
76init (void)
77{
Damjan Marion5fec1e82017-04-13 19:13:47 +020078 vac_main_t *pm = &vac_main;
Ole Troandfc9b7c2017-03-06 23:51:57 +010079 memset(pm, 0, sizeof(*pm));
80 pthread_mutex_init(&pm->queue_lock, NULL);
81 pthread_cond_init(&pm->suspend_cv, NULL);
82 pthread_cond_init(&pm->resume_cv, NULL);
83 pthread_mutex_init(&pm->timeout_lock, NULL);
84 pthread_cond_init(&pm->timeout_cv, NULL);
85 pthread_cond_init(&pm->timeout_cancel_cv, NULL);
86 pthread_cond_init(&pm->terminate_cv, NULL);
87}
88
89static void
90cleanup (void)
91{
Damjan Marion5fec1e82017-04-13 19:13:47 +020092 vac_main_t *pm = &vac_main;
Ole Troandfc9b7c2017-03-06 23:51:57 +010093 pthread_cond_destroy(&pm->suspend_cv);
94 pthread_cond_destroy(&pm->resume_cv);
95 pthread_cond_destroy(&pm->timeout_cv);
96 pthread_cond_destroy(&pm->timeout_cancel_cv);
97 pthread_cond_destroy(&pm->terminate_cv);
98 pthread_mutex_destroy(&pm->queue_lock);
99 pthread_mutex_destroy(&pm->timeout_lock);
100 memset (pm, 0, sizeof (*pm));
101}
Damjan Marion7cd468a2016-12-19 23:05:39 +0100102
103/*
104 * Satisfy external references when -lvlib is not available.
105 */
106void vlib_cli_output (struct vlib_main_t * vm, char * fmt, ...)
107{
108 clib_warning ("vlib_cli_output called...");
109}
110
111void
Damjan Marion5fec1e82017-04-13 19:13:47 +0200112vac_free (void * msg)
Damjan Marion7cd468a2016-12-19 23:05:39 +0100113{
114 vl_msg_api_free (msg);
115}
116
117static void
Damjan Marion5fec1e82017-04-13 19:13:47 +0200118vac_api_handler (void *msg)
Damjan Marion7cd468a2016-12-19 23:05:39 +0100119{
120 u16 id = ntohs(*((u16 *)msg));
Damjan Marion7cd468a2016-12-19 23:05:39 +0100121 msgbuf_t *msgbuf = (msgbuf_t *)(((u8 *)msg) - offsetof(msgbuf_t, data));
122 int l = ntohl(msgbuf->data_len);
123 if (l == 0)
124 clib_warning("Message ID %d has wrong length: %d\n", id, l);
125
126 /* Call Python callback */
Damjan Marion5fec1e82017-04-13 19:13:47 +0200127 ASSERT(vac_callback);
128 (vac_callback)(msg, l);
129 vac_free(msg);
Damjan Marion7cd468a2016-12-19 23:05:39 +0100130}
131
132static void *
Damjan Marion5fec1e82017-04-13 19:13:47 +0200133vac_rx_thread_fn (void *arg)
Damjan Marion7cd468a2016-12-19 23:05:39 +0100134{
135 unix_shared_memory_queue_t *q;
Damjan Marion5fec1e82017-04-13 19:13:47 +0200136 vac_main_t *pm = &vac_main;
Damjan Marion7cd468a2016-12-19 23:05:39 +0100137 api_main_t *am = &api_main;
138 uword msg;
139
140 q = am->vl_input_queue;
141
Ole Troandfc9b7c2017-03-06 23:51:57 +0100142 while (1)
143 while (!unix_shared_memory_queue_sub(q, (u8 *)&msg, 0))
144 {
145 u16 id = ntohs(*((u16 *)msg));
146 switch (id) {
147 case VL_API_RX_THREAD_EXIT:
148 vl_msg_api_free((void *) msg);
149 /* signal waiting threads that this thread is about to terminate */
150 pthread_mutex_lock(&pm->queue_lock);
151 pthread_cond_signal(&pm->terminate_cv);
152 pthread_mutex_unlock(&pm->queue_lock);
153 pthread_exit(0);
154 return 0;
155 break;
156
157 case VL_API_MEMCLNT_RX_THREAD_SUSPEND:
158 vl_msg_api_free((void * )msg);
159 /* Suspend thread and signal reader */
160 pthread_mutex_lock(&pm->queue_lock);
161 pthread_cond_signal(&pm->suspend_cv);
162 /* Wait for the resume signal */
163 pthread_cond_wait (&pm->resume_cv, &pm->queue_lock);
164 pthread_mutex_unlock(&pm->queue_lock);
165 break;
166
167 case VL_API_MEMCLNT_READ_TIMEOUT:
168 clib_warning("Received read timeout in async thread\n");
169 vl_msg_api_free((void *) msg);
170 break;
171
172 default:
Damjan Marion5fec1e82017-04-13 19:13:47 +0200173 vac_api_handler((void *)msg);
Ole Troandfc9b7c2017-03-06 23:51:57 +0100174 }
175 }
176}
177
178static void *
Damjan Marion5fec1e82017-04-13 19:13:47 +0200179vac_timeout_thread_fn (void *arg)
Ole Troandfc9b7c2017-03-06 23:51:57 +0100180{
181 vl_api_memclnt_read_timeout_t *ep;
Damjan Marion5fec1e82017-04-13 19:13:47 +0200182 vac_main_t *pm = &vac_main;
Ole Troandfc9b7c2017-03-06 23:51:57 +0100183 api_main_t *am = &api_main;
184 struct timespec ts;
185 struct timeval tv;
186 u16 timeout;
187 int rv;
188
189 while (1)
190 {
191 /* Wait for poke */
192 pthread_mutex_lock(&pm->timeout_lock);
193 pthread_cond_wait (&pm->timeout_cv, &pm->timeout_lock);
194 timeout = read_timeout;
195 gettimeofday(&tv, NULL);
196 ts.tv_sec = tv.tv_sec + timeout;
197 ts.tv_nsec = 0;
198 rv = pthread_cond_timedwait (&pm->timeout_cancel_cv,
199 &pm->timeout_lock, &ts);
200 pthread_mutex_unlock(&pm->timeout_lock);
201 if (rv == ETIMEDOUT)
202 {
203 ep = vl_msg_api_alloc (sizeof (*ep));
204 ep->_vl_msg_id = ntohs(VL_API_MEMCLNT_READ_TIMEOUT);
205 vl_msg_api_send_shmem(am->vl_input_queue, (u8 *)&ep);
206 }
207 }
Damjan Marion7cd468a2016-12-19 23:05:39 +0100208 pthread_exit(0);
209}
210
Ole Troandfc9b7c2017-03-06 23:51:57 +0100211void
Damjan Marion5fec1e82017-04-13 19:13:47 +0200212vac_rx_suspend (void)
Ole Troandfc9b7c2017-03-06 23:51:57 +0100213{
214 api_main_t *am = &api_main;
Damjan Marion5fec1e82017-04-13 19:13:47 +0200215 vac_main_t *pm = &vac_main;
Ole Troandfc9b7c2017-03-06 23:51:57 +0100216 vl_api_memclnt_rx_thread_suspend_t *ep;
217
218 if (!pm->rx_thread_handle) return;
219 pthread_mutex_lock(&pm->queue_lock);
220 if (rx_is_running)
221 {
222 ep = vl_msg_api_alloc (sizeof (*ep));
223 ep->_vl_msg_id = ntohs(VL_API_MEMCLNT_RX_THREAD_SUSPEND);
224 vl_msg_api_send_shmem(am->vl_input_queue, (u8 *)&ep);
225 /* Wait for RX thread to tell us it has suspendend */
226 pthread_cond_wait(&pm->suspend_cv, &pm->queue_lock);
227 rx_is_running = false;
228 }
229 pthread_mutex_unlock(&pm->queue_lock);
230}
231
232void
Damjan Marion5fec1e82017-04-13 19:13:47 +0200233vac_rx_resume (void)
Ole Troandfc9b7c2017-03-06 23:51:57 +0100234{
Damjan Marion5fec1e82017-04-13 19:13:47 +0200235 vac_main_t *pm = &vac_main;
Ole Troandfc9b7c2017-03-06 23:51:57 +0100236 if (!pm->rx_thread_handle) return;
237 pthread_mutex_lock(&pm->queue_lock);
Ole Troanad0697a2017-03-09 21:10:45 +0100238 if (rx_is_running) goto unlock;
Ole Troandfc9b7c2017-03-06 23:51:57 +0100239 pthread_cond_signal(&pm->resume_cv);
240 rx_is_running = true;
Ole Troanad0697a2017-03-09 21:10:45 +0100241 unlock:
Ole Troandfc9b7c2017-03-06 23:51:57 +0100242 pthread_mutex_unlock(&pm->queue_lock);
243}
244
Ole Troan3cc49712017-03-08 12:02:24 +0100245static uword *
Damjan Marion5fec1e82017-04-13 19:13:47 +0200246vac_msg_table_get_hash (void)
Damjan Marion7cd468a2016-12-19 23:05:39 +0100247{
248 api_main_t *am = &api_main;
249 return (am->msg_index_by_name_and_crc);
250}
251
252int
Damjan Marion5fec1e82017-04-13 19:13:47 +0200253vac_msg_table_size(void)
Damjan Marion7cd468a2016-12-19 23:05:39 +0100254{
255 api_main_t *am = &api_main;
256 return hash_elts(am->msg_index_by_name_and_crc);
257}
258
259int
Damjan Marion5fec1e82017-04-13 19:13:47 +0200260vac_connect (char * name, char * chroot_prefix, vac_callback_t cb,
Dave Barachf9526922017-01-06 16:33:06 -0500261 int rx_qlen)
Damjan Marion7cd468a2016-12-19 23:05:39 +0100262{
263 int rv = 0;
Damjan Marion5fec1e82017-04-13 19:13:47 +0200264 vac_main_t *pm = &vac_main;
Damjan Marion7cd468a2016-12-19 23:05:39 +0100265
Ole Troandfc9b7c2017-03-06 23:51:57 +0100266 init();
Damjan Marion7cd468a2016-12-19 23:05:39 +0100267 if (chroot_prefix != NULL)
268 vl_set_memory_root_path (chroot_prefix);
269
270 if ((rv = vl_client_api_map("/vpe-api"))) {
271 clib_warning ("vl_client_api map rv %d", rv);
272 return rv;
273 }
274
Dave Barachf9526922017-01-06 16:33:06 -0500275 if (vl_client_connect(name, 0, rx_qlen) < 0) {
Damjan Marion7cd468a2016-12-19 23:05:39 +0100276 vl_client_api_unmap();
277 return (-1);
278 }
279
280 if (cb) {
281 /* Start the rx queue thread */
Damjan Marion5fec1e82017-04-13 19:13:47 +0200282 rv = pthread_create(&pm->rx_thread_handle, NULL, vac_rx_thread_fn, 0);
Damjan Marion7cd468a2016-12-19 23:05:39 +0100283 if (rv) {
284 clib_warning("pthread_create returned %d", rv);
285 vl_client_api_unmap();
286 return (-1);
287 }
Damjan Marion5fec1e82017-04-13 19:13:47 +0200288 vac_callback = cb;
Ole Troandfc9b7c2017-03-06 23:51:57 +0100289 rx_is_running = true;
290 }
291
292 /* Start read timeout thread */
293 rv = pthread_create(&pm->timeout_thread_handle, NULL,
Damjan Marion5fec1e82017-04-13 19:13:47 +0200294 vac_timeout_thread_fn, 0);
Ole Troandfc9b7c2017-03-06 23:51:57 +0100295 if (rv) {
296 clib_warning("pthread_create returned %d", rv);
297 vl_client_api_unmap();
298 return (-1);
Damjan Marion7cd468a2016-12-19 23:05:39 +0100299 }
300
301 pm->connected_to_vlib = 1;
302
303 return (0);
304}
305
306int
Damjan Marion5fec1e82017-04-13 19:13:47 +0200307vac_disconnect (void)
Damjan Marion7cd468a2016-12-19 23:05:39 +0100308{
309 api_main_t *am = &api_main;
Damjan Marion5fec1e82017-04-13 19:13:47 +0200310 vac_main_t *pm = &vac_main;
Damjan Marion7cd468a2016-12-19 23:05:39 +0100311
Ole Troandfc9b7c2017-03-06 23:51:57 +0100312 if (!pm->connected_to_vlib) return 0;
313
314 if (pm->rx_thread_handle) {
Damjan Marion7cd468a2016-12-19 23:05:39 +0100315 vl_api_rx_thread_exit_t *ep;
316 uword junk;
317 ep = vl_msg_api_alloc (sizeof (*ep));
318 ep->_vl_msg_id = ntohs(VL_API_RX_THREAD_EXIT);
319 vl_msg_api_send_shmem(am->vl_input_queue, (u8 *)&ep);
Ole Troandfc9b7c2017-03-06 23:51:57 +0100320
321 /* wait (with timeout) until RX thread has finished */
322 struct timespec ts;
323 struct timeval tv;
324 gettimeofday(&tv, NULL);
325 ts.tv_sec = tv.tv_sec + 5;
326 ts.tv_nsec = 0;
327 pthread_mutex_lock(&pm->queue_lock);
328 int rv = pthread_cond_timedwait(&pm->terminate_cv, &pm->queue_lock, &ts);
329 pthread_mutex_unlock(&pm->queue_lock);
330 /* now join so we wait until thread has -really- finished */
331 if (rv == ETIMEDOUT)
332 pthread_cancel(pm->rx_thread_handle);
333 else
334 pthread_join(pm->rx_thread_handle, (void **) &junk);
Damjan Marion7cd468a2016-12-19 23:05:39 +0100335 }
Ole Troandfc9b7c2017-03-06 23:51:57 +0100336 if (pm->timeout_thread_handle)
337 pthread_cancel(pm->timeout_thread_handle);
338
339 vl_client_disconnect();
340 vl_client_api_unmap();
Damjan Marion5fec1e82017-04-13 19:13:47 +0200341 vac_callback = 0;
Ole Troandfc9b7c2017-03-06 23:51:57 +0100342
343 cleanup();
Damjan Marion7cd468a2016-12-19 23:05:39 +0100344
345 return (0);
346}
347
Ole Troandfc9b7c2017-03-06 23:51:57 +0100348static void
349set_timeout (unsigned short timeout)
350{
Damjan Marion5fec1e82017-04-13 19:13:47 +0200351 vac_main_t *pm = &vac_main;
Ole Troandfc9b7c2017-03-06 23:51:57 +0100352 pthread_mutex_lock(&pm->timeout_lock);
353 read_timeout = timeout;
354 pthread_cond_signal(&pm->timeout_cv);
355 pthread_mutex_unlock(&pm->timeout_lock);
356}
357
358static void
359unset_timeout (void)
360{
Damjan Marion5fec1e82017-04-13 19:13:47 +0200361 vac_main_t *pm = &vac_main;
Ole Troandfc9b7c2017-03-06 23:51:57 +0100362 pthread_mutex_lock(&pm->timeout_lock);
363 pthread_cond_signal(&pm->timeout_cancel_cv);
364 pthread_mutex_unlock(&pm->timeout_lock);
365}
366
Damjan Marion7cd468a2016-12-19 23:05:39 +0100367int
Damjan Marion5fec1e82017-04-13 19:13:47 +0200368vac_read (char **p, int *l, u16 timeout)
Damjan Marion7cd468a2016-12-19 23:05:39 +0100369{
370 unix_shared_memory_queue_t *q;
371 api_main_t *am = &api_main;
Damjan Marion5fec1e82017-04-13 19:13:47 +0200372 vac_main_t *pm = &vac_main;
Damjan Marion7cd468a2016-12-19 23:05:39 +0100373 uword msg;
Ole Troandfc9b7c2017-03-06 23:51:57 +0100374 msgbuf_t *msgbuf;
Damjan Marion7cd468a2016-12-19 23:05:39 +0100375
376 if (!pm->connected_to_vlib) return -1;
377
378 *l = 0;
379
380 if (am->our_pid == 0) return (-1);
381
Ole Troandfc9b7c2017-03-06 23:51:57 +0100382 /* Poke timeout thread */
383 if (timeout)
384 set_timeout(timeout);
385
Damjan Marion7cd468a2016-12-19 23:05:39 +0100386 q = am->vl_input_queue;
387 int rv = unix_shared_memory_queue_sub(q, (u8 *)&msg, 0);
388 if (rv == 0) {
389 u16 msg_id = ntohs(*((u16 *)msg));
Ole Troandfc9b7c2017-03-06 23:51:57 +0100390 switch (msg_id) {
391 case VL_API_RX_THREAD_EXIT:
392 printf("Received thread exit\n");
393 return -1;
394 case VL_API_MEMCLNT_RX_THREAD_SUSPEND:
395 printf("Received thread suspend\n");
396 goto error;
397 case VL_API_MEMCLNT_READ_TIMEOUT:
398 printf("Received read timeout %ds\n", timeout);
399 goto error;
400
401 default:
402 msgbuf = (msgbuf_t *)(((u8 *)msg) - offsetof(msgbuf_t, data));
403 *l = ntohl(msgbuf->data_len);
404 if (*l == 0) {
405 printf("Unregistered API message: %d\n", msg_id);
406 goto error;
407 }
Damjan Marion7cd468a2016-12-19 23:05:39 +0100408 }
409 *p = (char *)msg;
Ole Troandfc9b7c2017-03-06 23:51:57 +0100410
411 /* Let timeout notification thread know we're done */
412 unset_timeout();
413
Damjan Marion7cd468a2016-12-19 23:05:39 +0100414 } else {
415 printf("Read failed with %d\n", rv);
416 }
417 return (rv);
Ole Troandfc9b7c2017-03-06 23:51:57 +0100418
419 error:
420 vl_msg_api_free((void *) msg);
421 /* Client might forget to resume RX thread on failure */
Damjan Marion5fec1e82017-04-13 19:13:47 +0200422 vac_rx_resume ();
Ole Troandfc9b7c2017-03-06 23:51:57 +0100423 return -1;
Damjan Marion7cd468a2016-12-19 23:05:39 +0100424}
425
426/*
427 * XXX: Makes the assumption that client_index is the first member
428 */
429typedef VL_API_PACKED(struct _vl_api_header {
430 u16 _vl_msg_id;
431 u32 client_index;
432}) vl_api_header_t;
433
434static unsigned int
Damjan Marion5fec1e82017-04-13 19:13:47 +0200435vac_client_index (void)
Damjan Marion7cd468a2016-12-19 23:05:39 +0100436{
437 return (api_main.my_client_index);
438}
439
440int
Damjan Marion5fec1e82017-04-13 19:13:47 +0200441vac_write (char *p, int l)
Damjan Marion7cd468a2016-12-19 23:05:39 +0100442{
443 int rv = -1;
444 api_main_t *am = &api_main;
445 vl_api_header_t *mp = vl_msg_api_alloc(l);
446 unix_shared_memory_queue_t *q;
Damjan Marion5fec1e82017-04-13 19:13:47 +0200447 vac_main_t *pm = &vac_main;
Damjan Marion7cd468a2016-12-19 23:05:39 +0100448
449 if (!pm->connected_to_vlib) return -1;
450 if (!mp) return (-1);
Ole Troandfc9b7c2017-03-06 23:51:57 +0100451
Damjan Marion7cd468a2016-12-19 23:05:39 +0100452 memcpy(mp, p, l);
Damjan Marion5fec1e82017-04-13 19:13:47 +0200453 mp->client_index = vac_client_index();
Damjan Marion7cd468a2016-12-19 23:05:39 +0100454 q = am->shmem_hdr->vl_input_queue;
455 rv = unix_shared_memory_queue_add(q, (u8 *)&mp, 0);
456 if (rv != 0) {
Ole Troandfc9b7c2017-03-06 23:51:57 +0100457 clib_warning("vpe_api_write fails: %d\n", rv);
Damjan Marion7cd468a2016-12-19 23:05:39 +0100458 /* Clear message */
Damjan Marion5fec1e82017-04-13 19:13:47 +0200459 vac_free(mp);
Damjan Marion7cd468a2016-12-19 23:05:39 +0100460 }
461 return (rv);
462}
463
Ole Troan3cc49712017-03-08 12:02:24 +0100464int
Damjan Marion5fec1e82017-04-13 19:13:47 +0200465vac_get_msg_index (unsigned char * name)
Damjan Marion7cd468a2016-12-19 23:05:39 +0100466{
467 return vl_api_get_msg_index (name);
468}
Ole Troan3cc49712017-03-08 12:02:24 +0100469
470int
Damjan Marion5fec1e82017-04-13 19:13:47 +0200471vac_msg_table_max_index(void)
Ole Troan3cc49712017-03-08 12:02:24 +0100472{
473 int max = 0;
474 hash_pair_t *hp;
Damjan Marion5fec1e82017-04-13 19:13:47 +0200475 uword *h = vac_msg_table_get_hash();
Ole Troan3cc49712017-03-08 12:02:24 +0100476 hash_foreach_pair (hp, h,
477 ({
478 if (hp->value[0] > max)
479 max = hp->value[0];
480 }));
481
482 return max;
483}
484
485void
Damjan Marion5fec1e82017-04-13 19:13:47 +0200486vac_set_error_handler (vac_error_callback_t cb)
Ole Troan3cc49712017-03-08 12:02:24 +0100487{
488 if (cb) clib_error_register_handler (cb, 0);
489}