f9ed891f90ae72f070a8f1236f6bab8cc6ff4271
[vpp.git] / src / vlibmemory / vlib_api.c
1 /*
2  *------------------------------------------------------------------
3  * vlib_api.c VLIB API implementation
4  *
5  * Copyright (c) 2009 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 <fcntl.h>
21 #include <pthread.h>
22 #include <vppinfra/vec.h>
23 #include <vppinfra/hash.h>
24 #include <vppinfra/pool.h>
25 #include <vppinfra/format.h>
26 #include <vppinfra/byte_order.h>
27 #include <vppinfra/elog.h>
28 #include <vlib/vlib.h>
29 #include <vlib/unix/unix.h>
30 #include <vlibapi/api.h>
31 #include <vlibmemory/api.h>
32
33 /**
34  * @file
35  * @brief Binary API messaging via shared memory
36  * Low-level, primary provisioning interface
37  */
38 /*? %%clicmd:group_label Binary API CLI %% ?*/
39 /*? %%syscfg:group_label Binary API configuration %% ?*/
40
41 #define TRACE_VLIB_MEMORY_QUEUE 0
42
43 #include <vlibmemory/vl_memory_msg_enum.h>      /* enumerate all vlib messages */
44
45 #define vl_typedefs             /* define message structures */
46 #include <vlibmemory/vl_memory_api_h.h>
47 #undef vl_typedefs
48
49 /* instantiate all the print functions we know about */
50 #define vl_print(handle, ...) vlib_cli_output (handle, __VA_ARGS__)
51 #define vl_printfun
52 #include <vlibmemory/vl_memory_api_h.h>
53 #undef vl_printfun
54
55 static inline void *
56 vl_api_trace_plugin_msg_ids_t_print (vl_api_trace_plugin_msg_ids_t * a,
57                                      void *handle)
58 {
59   vl_print (handle, "vl_api_trace_plugin_msg_ids: %s first %u last %u\n",
60             a->plugin_name,
61             clib_host_to_net_u16 (a->first_msg_id),
62             clib_host_to_net_u16 (a->last_msg_id));
63   return handle;
64 }
65
66 /* instantiate all the endian swap functions we know about */
67 #define vl_endianfun
68 #include <vlibmemory/vl_memory_api_h.h>
69 #undef vl_endianfun
70
71 static void
72 vl_api_get_first_msg_id_t_handler (vl_api_get_first_msg_id_t * mp)
73 {
74   vl_api_get_first_msg_id_reply_t *rmp;
75   vl_api_registration_t *regp;
76   uword *p;
77   api_main_t *am = vlibapi_get_main ();
78   vl_api_msg_range_t *rp;
79   u8 name[64];
80   u16 first_msg_id = ~0;
81   int rv = -7;                  /* VNET_API_ERROR_INVALID_VALUE */
82
83   regp = vl_api_client_index_to_registration (mp->client_index);
84   if (!regp)
85     return;
86
87   if (am->msg_range_by_name == 0)
88     goto out;
89   strncpy ((char *) name, (char *) mp->name, ARRAY_LEN (name));
90   name[ARRAY_LEN (name) - 1] = '\0';
91   p = hash_get_mem (am->msg_range_by_name, name);
92   if (p == 0)
93     goto out;
94
95   rp = vec_elt_at_index (am->msg_ranges, p[0]);
96   first_msg_id = rp->first_msg_id;
97   rv = 0;
98
99 out:
100   rmp = vl_msg_api_alloc (sizeof (*rmp));
101   rmp->_vl_msg_id = ntohs (VL_API_GET_FIRST_MSG_ID_REPLY);
102   rmp->context = mp->context;
103   rmp->retval = ntohl (rv);
104   rmp->first_msg_id = ntohs (first_msg_id);
105   vl_api_send_msg (regp, (u8 *) rmp);
106 }
107
108 void
109 vl_api_api_versions_t_handler (vl_api_api_versions_t * mp)
110 {
111   api_main_t *am = vlibapi_get_main ();
112   vl_api_api_versions_reply_t *rmp;
113   vl_api_registration_t *reg;
114   u32 nmsg = vec_len (am->api_version_list);
115   int msg_size = sizeof (*rmp) + sizeof (rmp->api_versions[0]) * nmsg;
116   int i;
117
118   reg = vl_api_client_index_to_registration (mp->client_index);
119   if (!reg)
120     return;
121
122   rmp = vl_msg_api_alloc (msg_size);
123   clib_memset (rmp, 0, msg_size);
124   rmp->_vl_msg_id = ntohs (VL_API_API_VERSIONS_REPLY);
125
126   /* fill in the message */
127   rmp->context = mp->context;
128   rmp->count = htonl (nmsg);
129
130   for (i = 0; i < nmsg; ++i)
131     {
132       api_version_t *vl = &am->api_version_list[i];
133       rmp->api_versions[i].major = htonl (vl->major);
134       rmp->api_versions[i].minor = htonl (vl->minor);
135       rmp->api_versions[i].patch = htonl (vl->patch);
136       strncpy ((char *) rmp->api_versions[i].name, vl->name,
137                ARRAY_LEN (rmp->api_versions[i].name));
138       rmp->api_versions[i].name[ARRAY_LEN (rmp->api_versions[i].name) - 1] =
139         '\0';
140     }
141
142   vl_api_send_msg (reg, (u8 *) rmp);
143 }
144
145 #define foreach_vlib_api_msg                            \
146 _(GET_FIRST_MSG_ID, get_first_msg_id)                   \
147 _(API_VERSIONS, api_versions)
148
149 /*
150  * vl_api_init
151  */
152 static int
153 vlib_api_init (void)
154 {
155   vl_msg_api_msg_config_t cfg;
156   vl_msg_api_msg_config_t *c = &cfg;
157
158   clib_memset (c, 0, sizeof (*c));
159
160 #define _(N,n) do {                                             \
161     c->id = VL_API_##N;                                         \
162     c->name = #n;                                               \
163     c->handler = vl_api_##n##_t_handler;                        \
164     c->cleanup = vl_noop_handler;                               \
165     c->endian = vl_api_##n##_t_endian;                          \
166     c->print = vl_api_##n##_t_print;                            \
167     c->size = sizeof(vl_api_##n##_t);                           \
168     c->traced = 1; /* trace, so these msgs print */             \
169     c->replay = 0; /* don't replay client create/delete msgs */ \
170     c->message_bounce = 0; /* don't bounce this message */      \
171     vl_msg_api_config(c);} while (0);
172
173   foreach_vlib_api_msg;
174 #undef _
175
176   return 0;
177 }
178
179 u64 vector_rate_histogram[SLEEP_N_BUCKETS];
180
181 /*
182  * Callback to send ourselves a plugin numbering-space trace msg
183  */
184 static void
185 send_one_plugin_msg_ids_msg (u8 * name, u16 first_msg_id, u16 last_msg_id)
186 {
187   vl_api_trace_plugin_msg_ids_t *mp;
188   api_main_t *am = vlibapi_get_main ();
189   vl_shmem_hdr_t *shmem_hdr = am->shmem_hdr;
190   svm_queue_t *q;
191
192   mp = vl_msg_api_alloc_as_if_client (sizeof (*mp));
193   clib_memset (mp, 0, sizeof (*mp));
194
195   mp->_vl_msg_id = clib_host_to_net_u16 (VL_API_TRACE_PLUGIN_MSG_IDS);
196   strncpy ((char *) mp->plugin_name, (char *) name,
197            sizeof (mp->plugin_name) - 1);
198   mp->first_msg_id = clib_host_to_net_u16 (first_msg_id);
199   mp->last_msg_id = clib_host_to_net_u16 (last_msg_id);
200
201   q = shmem_hdr->vl_input_queue;
202
203   vl_msg_api_send_shmem (q, (u8 *) & mp);
204 }
205
206 void
207 vl_api_save_msg_table (void)
208 {
209   u8 *serialized_message_table;
210   api_main_t *am = vlibapi_get_main ();
211   u8 *chroot_file;
212   int fd, rv;
213
214   /*
215    * Snapshoot the api message table.
216    */
217   if (strstr ((char *) am->save_msg_table_filename, "..")
218       || index ((char *) am->save_msg_table_filename, '/'))
219     {
220       clib_warning ("illegal save-message-table filename '%s'",
221                     am->save_msg_table_filename);
222       return;
223     }
224
225   chroot_file = format (0, "/tmp/%s%c", am->save_msg_table_filename, 0);
226
227   fd = creat ((char *) chroot_file, 0644);
228
229   if (fd < 0)
230     {
231       clib_unix_warning ("creat");
232       return;
233     }
234
235   serialized_message_table = vl_api_serialize_message_table (am, 0);
236
237   rv = write (fd, serialized_message_table,
238               vec_len (serialized_message_table));
239
240   if (rv != vec_len (serialized_message_table))
241     clib_unix_warning ("write");
242
243   rv = close (fd);
244   if (rv < 0)
245     clib_unix_warning ("close");
246
247   vec_free (chroot_file);
248   vec_free (serialized_message_table);
249 }
250
251 clib_error_t *vat_builtin_main_init (vlib_main_t * vm) __attribute__ ((weak));
252 clib_error_t *
253 vat_builtin_main_init (vlib_main_t * vm)
254 {
255   return 0;
256 }
257
258 static uword
259 vl_api_clnt_process (vlib_main_t * vm, vlib_node_runtime_t * node,
260                      vlib_frame_t * f)
261 {
262   vlib_global_main_t *vgm = vlib_get_global_main ();
263   int private_segment_rotor = 0, i, rv;
264   vl_socket_args_for_process_t *a;
265   vl_shmem_hdr_t *shm;
266   svm_queue_t *q;
267   clib_error_t *e;
268   api_main_t *am = vlibapi_get_main ();
269   f64 dead_client_scan_time;
270   f64 sleep_time, start_time;
271   f64 vector_rate;
272   clib_error_t *error;
273   uword event_type;
274   uword *event_data = 0;
275   f64 now;
276
277   if ((error = vl_sock_api_init (vm)))
278     {
279       clib_error_report (error);
280       clib_warning ("socksvr_api_init failed, quitting...");
281       return 0;
282     }
283
284   if ((rv = vlib_api_init ()) < 0)
285     {
286       clib_warning ("vlib_api_init returned %d, quitting...", rv);
287       return 0;
288     }
289
290   shm = am->shmem_hdr;
291   q = shm->vl_input_queue;
292
293   e = vlib_call_init_exit_functions (vm, &vgm->api_init_function_registrations,
294                                      1 /* call_once */, 1 /* is_global */);
295   if (e)
296     clib_error_report (e);
297
298   e = vat_builtin_main_init (vm);
299   if (e)
300     clib_error_report (e);
301
302   sleep_time = 10.0;
303   dead_client_scan_time = vlib_time_now (vm) + 10.0;
304
305   /*
306    * Send plugin message range messages for each plugin we loaded
307    */
308   for (i = 0; i < vec_len (am->msg_ranges); i++)
309     {
310       vl_api_msg_range_t *rp = am->msg_ranges + i;
311       send_one_plugin_msg_ids_msg (rp->name, rp->first_msg_id,
312                                    rp->last_msg_id);
313     }
314
315   /*
316    * Save the api message table snapshot, if configured
317    */
318   if (am->save_msg_table_filename)
319     vl_api_save_msg_table ();
320
321   /* $$$ pay attention to frame size, control CPU usage */
322   while (1)
323     {
324       /*
325        * There's a reason for checking the queue before
326        * sleeping. If the vlib application crashes, it's entirely
327        * possible for a client to enqueue a connect request
328        * during the process restart interval.
329        *
330        * Unless some force of physics causes the new incarnation
331        * of the application to process the request, the client will
332        * sit and wait for Godot...
333        */
334       vector_rate = (f64) vlib_last_vectors_per_main_loop (vm);
335       start_time = vlib_time_now (vm);
336       while (1)
337         {
338           if (vl_mem_api_handle_rpc (vm, node)
339               || vl_mem_api_handle_msg_main (vm, node))
340             {
341               vm->api_queue_nonempty = 0;
342               VL_MEM_API_LOG_Q_LEN ("q-underflow: len %d", 0);
343               sleep_time = 20.0;
344               break;
345             }
346
347           /* Allow no more than 10us without a pause */
348           if (vlib_time_now (vm) > start_time + 10e-6)
349             {
350               int index = SLEEP_400_US;
351               if (vector_rate > 40.0)
352                 sleep_time = 400e-6;
353               else if (vector_rate > 20.0)
354                 {
355                   index = SLEEP_200_US;
356                   sleep_time = 200e-6;
357                 }
358               else if (vector_rate >= 1.0)
359                 {
360                   index = SLEEP_100_US;
361                   sleep_time = 100e-6;
362                 }
363               else
364                 {
365                   index = SLEEP_10_US;
366                   sleep_time = 10e-6;
367                 }
368               vector_rate_histogram[index] += 1;
369               break;
370             }
371         }
372
373       /*
374        * see if we have any private api shared-memory segments
375        * If so, push required context variables, and process
376        * a message.
377        */
378       if (PREDICT_FALSE (vec_len (am->vlib_private_rps)))
379         {
380           if (private_segment_rotor >= vec_len (am->vlib_private_rps))
381             private_segment_rotor = 0;
382           vl_mem_api_handle_msg_private (vm, node, private_segment_rotor++);
383         }
384
385       vlib_process_wait_for_event_or_clock (vm, sleep_time);
386       vec_reset_length (event_data);
387       event_type = vlib_process_get_events (vm, &event_data);
388       now = vlib_time_now (vm);
389
390       switch (event_type)
391         {
392         case QUEUE_SIGNAL_EVENT:
393           vm->queue_signal_pending = 0;
394           VL_MEM_API_LOG_Q_LEN ("q-awake: len %d", q->cursize);
395
396           break;
397         case SOCKET_READ_EVENT:
398           for (i = 0; i < vec_len (event_data); i++)
399             {
400               vl_api_registration_t *regp;
401
402               a = pool_elt_at_index (socket_main.process_args, event_data[i]);
403               regp = vl_socket_get_registration (a->reg_index);
404               if (regp)
405                 {
406                   vl_socket_process_api_msg (regp, (i8 *) a->data);
407                   a = pool_elt_at_index (socket_main.process_args,
408                                          event_data[i]);
409                 }
410               vec_free (a->data);
411               pool_put (socket_main.process_args, a);
412             }
413           break;
414
415           /* Timeout... */
416         case -1:
417           break;
418
419         default:
420           clib_warning ("unknown event type %d", event_type);
421           break;
422         }
423
424       if (now > dead_client_scan_time)
425         {
426           vl_mem_api_dead_client_scan (am, shm, now);
427           dead_client_scan_time = vlib_time_now (vm) + 10.0;
428         }
429     }
430
431   return 0;
432 }
433 /* *INDENT-OFF* */
434 VLIB_REGISTER_NODE (vl_api_clnt_node) =
435 {
436   .function = vl_api_clnt_process,
437   .type = VLIB_NODE_TYPE_PROCESS,
438   .name = "api-rx-from-ring",
439   .state = VLIB_NODE_STATE_DISABLED,
440   .process_log2_n_stack_bytes = 18,
441 };
442 /* *INDENT-ON* */
443
444 void
445 vl_mem_api_enable_disable (vlib_main_t * vm, int enable)
446 {
447   vlib_node_set_state (vm, vl_api_clnt_node.index,
448                        (enable
449                         ? VLIB_NODE_STATE_POLLING
450                         : VLIB_NODE_STATE_DISABLED));
451 }
452
453 static uword
454 api_rx_from_node (vlib_main_t * vm,
455                   vlib_node_runtime_t * node, vlib_frame_t * frame)
456 {
457   uword n_packets = frame->n_vectors;
458   uword n_left_from;
459   u32 *from;
460   static u8 *long_msg;
461
462   vec_validate (long_msg, 4095);
463   n_left_from = frame->n_vectors;
464   from = vlib_frame_vector_args (frame);
465
466   while (n_left_from > 0)
467     {
468       u32 bi0;
469       vlib_buffer_t *b0;
470       void *msg;
471       uword msg_len;
472
473       bi0 = from[0];
474       b0 = vlib_get_buffer (vm, bi0);
475       from += 1;
476       n_left_from -= 1;
477
478       msg = b0->data + b0->current_data;
479       msg_len = b0->current_length;
480       if (b0->flags & VLIB_BUFFER_NEXT_PRESENT)
481         {
482           ASSERT (long_msg != 0);
483           _vec_len (long_msg) = 0;
484           vec_add (long_msg, msg, msg_len);
485           while (b0->flags & VLIB_BUFFER_NEXT_PRESENT)
486             {
487               b0 = vlib_get_buffer (vm, b0->next_buffer);
488               msg = b0->data + b0->current_data;
489               msg_len = b0->current_length;
490               vec_add (long_msg, msg, msg_len);
491             }
492           msg = long_msg;
493         }
494       vl_msg_api_handler_no_trace_no_free (msg);
495     }
496
497   /* Free what we've been given. */
498   vlib_buffer_free (vm, vlib_frame_vector_args (frame), n_packets);
499
500   return n_packets;
501 }
502
503 /* *INDENT-OFF* */
504 VLIB_REGISTER_NODE (api_rx_from_node_node,static) = {
505     .function = api_rx_from_node,
506     .type = VLIB_NODE_TYPE_INTERNAL,
507     .vector_size = 4,
508     .name = "api-rx-from-node",
509 };
510 /* *INDENT-ON* */
511
512 static void
513 vl_api_rpc_call_t_handler (vl_api_rpc_call_t * mp)
514 {
515   vl_api_rpc_call_reply_t *rmp;
516   int (*fp) (void *);
517   i32 rv = 0;
518   vlib_main_t *vm = vlib_get_main ();
519
520   if (mp->function == 0)
521     {
522       rv = -1;
523       clib_warning ("rpc NULL function pointer");
524     }
525
526   else
527     {
528       if (mp->need_barrier_sync)
529         vlib_worker_thread_barrier_sync (vm);
530
531       fp = uword_to_pointer (mp->function, int (*)(void *));
532       rv = fp (mp->data);
533
534       if (mp->need_barrier_sync)
535         vlib_worker_thread_barrier_release (vm);
536     }
537
538   if (mp->send_reply)
539     {
540       svm_queue_t *q = vl_api_client_index_to_input_queue (mp->client_index);
541       if (q)
542         {
543           rmp = vl_msg_api_alloc_as_if_client (sizeof (*rmp));
544           rmp->_vl_msg_id = ntohs (VL_API_RPC_CALL_REPLY);
545           rmp->context = mp->context;
546           rmp->retval = rv;
547           vl_msg_api_send_shmem (q, (u8 *) & rmp);
548         }
549     }
550   if (mp->multicast)
551     {
552       clib_warning ("multicast not yet implemented...");
553     }
554 }
555
556 static void
557 vl_api_rpc_call_reply_t_handler (vl_api_rpc_call_reply_t * mp)
558 {
559   clib_warning ("unimplemented");
560 }
561
562 void
563 vl_api_send_pending_rpc_requests (vlib_main_t * vm)
564 {
565   vlib_main_t *vm_global = vlib_get_first_main ();
566
567   ASSERT (vm != vm_global);
568
569   clib_spinlock_lock_if_init (&vm_global->pending_rpc_lock);
570   vec_append (vm_global->pending_rpc_requests, vm->pending_rpc_requests);
571   vec_reset_length (vm->pending_rpc_requests);
572   clib_spinlock_unlock_if_init (&vm_global->pending_rpc_lock);
573 }
574
575 always_inline void
576 vl_api_rpc_call_main_thread_inline (void *fp, u8 * data, u32 data_length,
577                                     u8 force_rpc)
578 {
579   vl_api_rpc_call_t *mp;
580   vlib_main_t *vm_global = vlib_get_first_main ();
581   vlib_main_t *vm = vlib_get_main ();
582
583   /* Main thread and not a forced RPC: call the function directly */
584   if ((force_rpc == 0) && (vlib_get_thread_index () == 0))
585     {
586       void (*call_fp) (void *);
587
588       vlib_worker_thread_barrier_sync (vm);
589
590       call_fp = fp;
591       call_fp (data);
592
593       vlib_worker_thread_barrier_release (vm);
594       return;
595     }
596
597   /* Otherwise, actually do an RPC */
598   mp = vl_msg_api_alloc_as_if_client (sizeof (*mp) + data_length);
599
600   clib_memset (mp, 0, sizeof (*mp));
601   clib_memcpy_fast (mp->data, data, data_length);
602   mp->_vl_msg_id = ntohs (VL_API_RPC_CALL);
603   mp->function = pointer_to_uword (fp);
604   mp->need_barrier_sync = 1;
605
606   /* Add to the pending vector. Thread 0 requires locking. */
607   if (vm == vm_global)
608     clib_spinlock_lock_if_init (&vm_global->pending_rpc_lock);
609   vec_add1 (vm->pending_rpc_requests, (uword) mp);
610   if (vm == vm_global)
611     clib_spinlock_unlock_if_init (&vm_global->pending_rpc_lock);
612 }
613
614 /*
615  * Check if called from worker threads.
616  * If so, make rpc call of fp through shmem.
617  * Otherwise, call fp directly
618  */
619 void
620 vl_api_rpc_call_main_thread (void *fp, u8 * data, u32 data_length)
621 {
622   vl_api_rpc_call_main_thread_inline (fp, data, data_length,    /*force_rpc */
623                                       0);
624 }
625
626 /*
627  * Always make rpc call of fp through shmem, useful for calling from threads
628  * not setup as worker threads, such as DPDK callback thread
629  */
630 void
631 vl_api_force_rpc_call_main_thread (void *fp, u8 * data, u32 data_length)
632 {
633   vl_api_rpc_call_main_thread_inline (fp, data, data_length,    /*force_rpc */
634                                       1);
635 }
636
637 static void
638 vl_api_trace_plugin_msg_ids_t_handler (vl_api_trace_plugin_msg_ids_t * mp)
639 {
640   api_main_t *am = vlibapi_get_main ();
641   vl_api_msg_range_t *rp;
642   uword *p;
643
644   /* Noop (except for tracing) during normal operation */
645   if (am->replay_in_progress == 0)
646     return;
647
648   p = hash_get_mem (am->msg_range_by_name, mp->plugin_name);
649   if (p == 0)
650     {
651       clib_warning ("WARNING: traced plugin '%s' not in current image",
652                     mp->plugin_name);
653       return;
654     }
655
656   rp = vec_elt_at_index (am->msg_ranges, p[0]);
657   if (rp->first_msg_id != clib_net_to_host_u16 (mp->first_msg_id))
658     {
659       clib_warning ("WARNING: traced plugin '%s' first message id %d not %d",
660                     mp->plugin_name, clib_net_to_host_u16 (mp->first_msg_id),
661                     rp->first_msg_id);
662     }
663
664   if (rp->last_msg_id != clib_net_to_host_u16 (mp->last_msg_id))
665     {
666       clib_warning ("WARNING: traced plugin '%s' last message id %d not %d",
667                     mp->plugin_name, clib_net_to_host_u16 (mp->last_msg_id),
668                     rp->last_msg_id);
669     }
670 }
671
672 #define foreach_rpc_api_msg                     \
673 _(RPC_CALL,rpc_call)                            \
674 _(RPC_CALL_REPLY,rpc_call_reply)
675
676 #define foreach_plugin_trace_msg                \
677 _(TRACE_PLUGIN_MSG_IDS,trace_plugin_msg_ids)
678
679 /*
680  * Set the rpc callback at our earliest possible convenience.
681  * This avoids ordering issues between thread_init() -> start_workers and
682  * an init function which we could define here. If we ever intend to use
683  * vlib all by itself, we can't create a link-time dependency on
684  * an init function here and a typical "call foo_init first"
685  * guitar lick.
686  */
687
688 extern void *rpc_call_main_thread_cb_fn;
689
690 static clib_error_t *
691 rpc_api_hookup (vlib_main_t * vm)
692 {
693   api_main_t *am = vlibapi_get_main ();
694 #define _(N,n)                                                  \
695     vl_msg_api_set_handlers(VL_API_##N, #n,                     \
696                            vl_api_##n##_t_handler,              \
697                            vl_noop_handler,                     \
698                            vl_noop_handler,                     \
699                            vl_api_##n##_t_print,                \
700                            sizeof(vl_api_##n##_t), 0 /* do not trace */);
701   foreach_rpc_api_msg;
702 #undef _
703
704 #define _(N,n)                                                  \
705     vl_msg_api_set_handlers(VL_API_##N, #n,                     \
706                            vl_api_##n##_t_handler,              \
707                            vl_noop_handler,                     \
708                            vl_noop_handler,                     \
709                            vl_api_##n##_t_print,                \
710                            sizeof(vl_api_##n##_t), 1 /* do trace */);
711   foreach_plugin_trace_msg;
712 #undef _
713
714   /* No reason to halt the parade to create a trace record... */
715   am->is_mp_safe[VL_API_TRACE_PLUGIN_MSG_IDS] = 1;
716   rpc_call_main_thread_cb_fn = vl_api_rpc_call_main_thread;
717   return 0;
718 }
719
720 VLIB_API_INIT_FUNCTION (rpc_api_hookup);
721
722 /*
723  * fd.io coding-style-patch-verification: ON
724  *
725  * Local Variables:
726  * eval: (c-set-style "gnu")
727  * End:
728  */