c11 safe string handling support
[vpp.git] / src / vlibmemory / memory_client.c
1 /*
2  *------------------------------------------------------------------
3  * memory_client.c - API message handling, client code.
4  *
5  * Copyright (c) 2010 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 <setjmp.h>
21
22 #include <svm/svm.h>
23 #include <svm/ssvm.h>
24 #include <vppinfra/serialize.h>
25 #include <vppinfra/hash.h>
26 #include <vlibmemory/memory_client.h>
27
28 /* A hack. vl_client_get_first_plugin_msg_id depends on it */
29 #include <vlibmemory/socket_client.h>
30
31 #include <vlibmemory/vl_memory_msg_enum.h>
32
33 #define vl_typedefs             /* define message structures */
34 #include <vlibmemory/vl_memory_api_h.h>
35 #undef vl_typedefs
36
37 #define vl_endianfun            /* define message structures */
38 #include <vlibmemory/vl_memory_api_h.h>
39 #undef vl_endianfun
40
41 /* instantiate all the print functions we know about */
42 #define vl_print(handle, ...) clib_warning (__VA_ARGS__)
43 #define vl_printfun
44 #include <vlibmemory/vl_memory_api_h.h>
45 #undef vl_printfun
46
47 typedef struct
48 {
49   u8 rx_thread_jmpbuf_valid;
50   u8 connected_to_vlib;
51   jmp_buf rx_thread_jmpbuf;
52   pthread_t rx_thread_handle;
53   /* Plugin message base lookup scheme */
54   volatile u8 first_msg_id_reply_ready;
55   u16 first_msg_id_reply;
56 } memory_client_main_t;
57
58 memory_client_main_t memory_client_main;
59
60 static void *
61 rx_thread_fn (void *arg)
62 {
63   svm_queue_t *q;
64   memory_client_main_t *mm = &memory_client_main;
65   api_main_t *am = &api_main;
66   int i;
67
68   q = am->vl_input_queue;
69
70   /* So we can make the rx thread terminate cleanly */
71   if (setjmp (mm->rx_thread_jmpbuf) == 0)
72     {
73       mm->rx_thread_jmpbuf_valid = 1;
74       /*
75        * Find an unused slot in the per-cpu-mheaps array,
76        * and grab it for this thread. We need to be able to
77        * push/pop the thread heap without affecting other thread(s).
78        */
79       if (__os_thread_index == 0)
80         {
81           for (i = 0; i < ARRAY_LEN (clib_per_cpu_mheaps); i++)
82             {
83               if (clib_per_cpu_mheaps[i] == 0)
84                 {
85                   /* Copy the main thread mheap pointer */
86                   clib_per_cpu_mheaps[i] = clib_per_cpu_mheaps[0];
87                   __os_thread_index = i;
88                   break;
89                 }
90             }
91           ASSERT (__os_thread_index > 0);
92         }
93       while (1)
94         vl_msg_api_queue_handler (q);
95     }
96   pthread_exit (0);
97 }
98
99 static void
100 vl_api_rx_thread_exit_t_handler (vl_api_rx_thread_exit_t * mp)
101 {
102   memory_client_main_t *mm = &memory_client_main;
103   vl_msg_api_free (mp);
104   longjmp (mm->rx_thread_jmpbuf, 1);
105 }
106
107 static void
108 vl_api_name_and_crc_free (void)
109 {
110   api_main_t *am = &api_main;
111   int i;
112   u8 **keys = 0;
113   hash_pair_t *hp;
114
115   if (!am->msg_index_by_name_and_crc)
116     return;
117
118   /* *INDENT-OFF* */
119   hash_foreach_pair (hp, am->msg_index_by_name_and_crc,
120       ({
121         vec_add1 (keys, (u8 *) hp->key);
122       }));
123   /* *INDENT-ON* */
124   for (i = 0; i < vec_len (keys); i++)
125     vec_free (keys[i]);
126   vec_free (keys);
127   hash_free (am->msg_index_by_name_and_crc);
128 }
129
130 static void
131 vl_api_memclnt_create_reply_t_handler (vl_api_memclnt_create_reply_t * mp)
132 {
133   serialize_main_t _sm, *sm = &_sm;
134   api_main_t *am = &api_main;
135   u8 *tblv;
136   u32 nmsgs;
137   int i;
138   u8 *name_and_crc;
139   u32 msg_index;
140
141   am->my_client_index = mp->index;
142   am->my_registration = (vl_api_registration_t *) (uword) mp->handle;
143
144   /* Clean out any previous hash table (unlikely) */
145   vl_api_name_and_crc_free ();
146
147   am->msg_index_by_name_and_crc = hash_create_string (0, sizeof (uword));
148
149   /* Recreate the vnet-side API message handler table */
150   tblv = uword_to_pointer (mp->message_table, u8 *);
151   unserialize_open_data (sm, tblv, vec_len (tblv));
152   unserialize_integer (sm, &nmsgs, sizeof (u32));
153
154   for (i = 0; i < nmsgs; i++)
155     {
156       msg_index = unserialize_likely_small_unsigned_integer (sm);
157       unserialize_cstring (sm, (char **) &name_and_crc);
158       hash_set_mem (am->msg_index_by_name_and_crc, name_and_crc, msg_index);
159     }
160 }
161
162 static void
163 noop_handler (void *notused)
164 {
165 }
166
167 int
168 vl_client_connect (const char *name, int ctx_quota, int input_queue_size)
169 {
170   svm_region_t *svm;
171   vl_api_memclnt_create_t *mp;
172   vl_api_memclnt_create_reply_t *rp;
173   svm_queue_t *vl_input_queue;
174   vl_shmem_hdr_t *shmem_hdr;
175   int rv = 0;
176   void *oldheap;
177   api_main_t *am = &api_main;
178
179   if (am->my_registration)
180     {
181       clib_warning ("client %s already connected...", name);
182       return -1;
183     }
184
185   if (am->vlib_rp == 0)
186     {
187       clib_warning ("am->vlib_rp NULL");
188       return -1;
189     }
190
191   svm = am->vlib_rp;
192   shmem_hdr = am->shmem_hdr;
193
194   if (shmem_hdr == 0 || shmem_hdr->vl_input_queue == 0)
195     {
196       clib_warning ("shmem_hdr / input queue NULL");
197       return -1;
198     }
199
200   pthread_mutex_lock (&svm->mutex);
201   oldheap = svm_push_data_heap (svm);
202   vl_input_queue = svm_queue_alloc_and_init (input_queue_size, sizeof (uword),
203                                              getpid ());
204   svm_pop_heap (oldheap);
205   pthread_mutex_unlock (&svm->mutex);
206
207   am->my_client_index = ~0;
208   am->my_registration = 0;
209   am->vl_input_queue = vl_input_queue;
210
211   mp = vl_msg_api_alloc (sizeof (vl_api_memclnt_create_t));
212   clib_memset (mp, 0, sizeof (*mp));
213   mp->_vl_msg_id = ntohs (VL_API_MEMCLNT_CREATE);
214   mp->ctx_quota = ctx_quota;
215   mp->input_queue = (uword) vl_input_queue;
216   strncpy ((char *) mp->name, name, sizeof (mp->name) - 1);
217
218   vl_msg_api_send_shmem (shmem_hdr->vl_input_queue, (u8 *) & mp);
219
220   while (1)
221     {
222       int qstatus;
223       struct timespec ts, tsrem;
224       int i;
225
226       /* Wait up to 10 seconds */
227       for (i = 0; i < 1000; i++)
228         {
229           qstatus = svm_queue_sub (vl_input_queue, (u8 *) & rp,
230                                    SVM_Q_NOWAIT, 0);
231           if (qstatus == 0)
232             goto read_one_msg;
233           ts.tv_sec = 0;
234           ts.tv_nsec = 10000 * 1000;    /* 10 ms */
235           while (nanosleep (&ts, &tsrem) < 0)
236             ts = tsrem;
237         }
238       /* Timeout... */
239       clib_warning ("memclnt_create_reply timeout");
240       return -1;
241
242     read_one_msg:
243       if (ntohs (rp->_vl_msg_id) != VL_API_MEMCLNT_CREATE_REPLY)
244         {
245           clib_warning ("unexpected reply: id %d", ntohs (rp->_vl_msg_id));
246           continue;
247         }
248       rv = clib_net_to_host_u32 (rp->response);
249
250       vl_msg_api_handler ((void *) rp);
251       break;
252     }
253   return (rv);
254 }
255
256 static void
257 vl_api_memclnt_delete_reply_t_handler (vl_api_memclnt_delete_reply_t * mp)
258 {
259   void *oldheap;
260   api_main_t *am = &api_main;
261
262   pthread_mutex_lock (&am->vlib_rp->mutex);
263   oldheap = svm_push_data_heap (am->vlib_rp);
264   svm_queue_free (am->vl_input_queue);
265   pthread_mutex_unlock (&am->vlib_rp->mutex);
266   svm_pop_heap (oldheap);
267
268   am->my_client_index = ~0;
269   am->my_registration = 0;
270   am->vl_input_queue = 0;
271 }
272
273 int
274 vl_client_disconnect (void)
275 {
276   vl_api_memclnt_delete_t *mp;
277   vl_api_memclnt_delete_reply_t *rp;
278   svm_queue_t *vl_input_queue;
279   vl_shmem_hdr_t *shmem_hdr;
280   time_t begin;
281   api_main_t *am = &api_main;
282
283   ASSERT (am->vlib_rp);
284   shmem_hdr = am->shmem_hdr;
285   ASSERT (shmem_hdr && shmem_hdr->vl_input_queue);
286
287   vl_input_queue = am->vl_input_queue;
288
289   mp = vl_msg_api_alloc (sizeof (vl_api_memclnt_delete_t));
290   clib_memset (mp, 0, sizeof (*mp));
291   mp->_vl_msg_id = ntohs (VL_API_MEMCLNT_DELETE);
292   mp->index = am->my_client_index;
293   mp->handle = (uword) am->my_registration;
294
295   vl_msg_api_send_shmem (shmem_hdr->vl_input_queue, (u8 *) & mp);
296
297   /*
298    * Have to be careful here, in case the client is disconnecting
299    * because e.g. the vlib process died, or is unresponsive.
300    */
301   begin = time (0);
302   while (1)
303     {
304       time_t now;
305
306       now = time (0);
307
308       if (now >= (begin + 2))
309         {
310           clib_warning ("peer unresponsive, give up");
311           am->my_client_index = ~0;
312           am->my_registration = 0;
313           am->shmem_hdr = 0;
314           return -1;
315         }
316       if (svm_queue_sub (vl_input_queue, (u8 *) & rp, SVM_Q_NOWAIT, 0) < 0)
317         continue;
318
319       /* drain the queue */
320       if (ntohs (rp->_vl_msg_id) != VL_API_MEMCLNT_DELETE_REPLY)
321         {
322           clib_warning ("queue drain: %d", ntohs (rp->_vl_msg_id));
323           vl_msg_api_handler ((void *) rp);
324           continue;
325         }
326       vl_msg_api_handler ((void *) rp);
327       break;
328     }
329
330   vl_api_name_and_crc_free ();
331   return 0;
332 }
333
334 /**
335  * Stave off the binary API dead client reaper
336  * Only sent to inactive clients
337  */
338 static void
339 vl_api_memclnt_keepalive_t_handler (vl_api_memclnt_keepalive_t * mp)
340 {
341   vl_api_memclnt_keepalive_reply_t *rmp;
342   api_main_t *am;
343   vl_shmem_hdr_t *shmem_hdr;
344
345   am = &api_main;
346   shmem_hdr = am->shmem_hdr;
347
348   rmp = vl_msg_api_alloc_as_if_client (sizeof (*rmp));
349   clib_memset (rmp, 0, sizeof (*rmp));
350   rmp->_vl_msg_id = ntohs (VL_API_MEMCLNT_KEEPALIVE_REPLY);
351   rmp->context = mp->context;
352   vl_msg_api_send_shmem (shmem_hdr->vl_input_queue, (u8 *) & rmp);
353 }
354
355 #define foreach_api_msg                         \
356 _(RX_THREAD_EXIT, rx_thread_exit)               \
357 _(MEMCLNT_CREATE_REPLY, memclnt_create_reply)   \
358 _(MEMCLNT_DELETE_REPLY, memclnt_delete_reply)   \
359 _(MEMCLNT_KEEPALIVE, memclnt_keepalive)
360
361 void
362 vl_client_install_client_message_handlers (void)
363 {
364
365 #define _(N,n)                                                  \
366     vl_msg_api_set_handlers(VL_API_##N, #n,                     \
367                             vl_api_##n##_t_handler,             \
368                             noop_handler,                       \
369                             vl_api_##n##_t_endian,              \
370                             vl_api_##n##_t_print,               \
371                             sizeof(vl_api_##n##_t), 1);
372   foreach_api_msg;
373 #undef _
374 }
375
376 int
377 vl_client_api_map (const char *region_name)
378 {
379   int rv;
380
381   if ((rv = vl_map_shmem (region_name, 0 /* is_vlib */ )) < 0)
382     return rv;
383
384   vl_client_install_client_message_handlers ();
385   return 0;
386 }
387
388 void
389 vl_client_api_unmap (void)
390 {
391   vl_unmap_shmem_client ();
392 }
393
394 u8
395 vl_mem_client_is_connected (void)
396 {
397   return (memory_client_main.connected_to_vlib != 0);
398 }
399
400 static int
401 connect_to_vlib_internal (const char *svm_name,
402                           const char *client_name,
403                           int rx_queue_size, int want_pthread, int do_map)
404 {
405   int rv = 0;
406   memory_client_main_t *mm = &memory_client_main;
407
408   if (do_map && (rv = vl_client_api_map (svm_name)))
409     {
410       clib_warning ("vl_client_api map rv %d", rv);
411       return rv;
412     }
413
414   if (vl_client_connect (client_name, 0 /* punt quota */ ,
415                          rx_queue_size /* input queue */ ) < 0)
416     {
417       vl_client_api_unmap ();
418       return -1;
419     }
420
421   /* Start the rx queue thread */
422
423   if (want_pthread)
424     {
425       rv = pthread_create (&mm->rx_thread_handle,
426                            NULL /*attr */ , rx_thread_fn, 0);
427       if (rv)
428         clib_warning ("pthread_create returned %d", rv);
429     }
430
431   mm->connected_to_vlib = 1;
432   return 0;
433 }
434
435 int
436 vl_client_connect_to_vlib (const char *svm_name,
437                            const char *client_name, int rx_queue_size)
438 {
439   return connect_to_vlib_internal (svm_name, client_name, rx_queue_size,
440                                    1 /* want pthread */ ,
441                                    1 /* do map */ );
442 }
443
444 int
445 vl_client_connect_to_vlib_no_rx_pthread (const char *svm_name,
446                                          const char *client_name,
447                                          int rx_queue_size)
448 {
449   return connect_to_vlib_internal (svm_name, client_name, rx_queue_size,
450                                    0 /* want pthread */ ,
451                                    1 /* do map */ );
452 }
453
454 int
455 vl_client_connect_to_vlib_no_map (const char *svm_name,
456                                   const char *client_name, int rx_queue_size)
457 {
458   return connect_to_vlib_internal (svm_name, client_name, rx_queue_size,
459                                    1 /* want pthread */ ,
460                                    0 /* dont map */ );
461 }
462
463 static void
464 disconnect_from_vlib_internal (u8 do_unmap)
465 {
466   memory_client_main_t *mm = &memory_client_main;
467   api_main_t *am = &api_main;
468   uword junk;
469
470   if (mm->rx_thread_jmpbuf_valid)
471     {
472       vl_api_rx_thread_exit_t *ep;
473       ep = vl_msg_api_alloc (sizeof (*ep));
474       ep->_vl_msg_id = ntohs (VL_API_RX_THREAD_EXIT);
475       vl_msg_api_send_shmem (am->vl_input_queue, (u8 *) & ep);
476       pthread_join (mm->rx_thread_handle, (void **) &junk);
477     }
478   if (mm->connected_to_vlib)
479     {
480       vl_client_disconnect ();
481       if (do_unmap)
482         vl_client_api_unmap ();
483     }
484   clib_memset (mm, 0, sizeof (*mm));
485 }
486
487 void
488 vl_client_disconnect_from_vlib (void)
489 {
490   disconnect_from_vlib_internal (1);
491 }
492
493 void
494 vl_client_disconnect_from_vlib_no_unmap (void)
495 {
496   disconnect_from_vlib_internal (0);
497 }
498
499 static void vl_api_get_first_msg_id_reply_t_handler
500   (vl_api_get_first_msg_id_reply_t * mp)
501 {
502   memory_client_main_t *mm = &memory_client_main;
503   i32 retval = ntohl (mp->retval);
504
505   mm->first_msg_id_reply = (retval >= 0) ? ntohs (mp->first_msg_id) : ~0;
506   mm->first_msg_id_reply_ready = 1;
507 }
508
509 u16
510 vl_client_get_first_plugin_msg_id (const char *plugin_name)
511 {
512   vl_api_get_first_msg_id_t *mp;
513   api_main_t *am = &api_main;
514   memory_client_main_t *mm = &memory_client_main;
515   f64 timeout;
516   void *old_handler;
517   clib_time_t clib_time;
518   u16 rv = ~0;
519
520   if (strlen (plugin_name) + 1 > sizeof (mp->name))
521     return (rv);
522
523   clib_memset (&clib_time, 0, sizeof (clib_time));
524   clib_time_init (&clib_time);
525
526   /* Push this plugin's first_msg_id_reply handler */
527   old_handler = am->msg_handlers[VL_API_GET_FIRST_MSG_ID_REPLY];
528   am->msg_handlers[VL_API_GET_FIRST_MSG_ID_REPLY] = (void *)
529     vl_api_get_first_msg_id_reply_t_handler;
530
531   /* Ask the data-plane for the message-ID base of the indicated plugin */
532   mm->first_msg_id_reply_ready = 0;
533
534   /* Not using shm client */
535   if (!am->my_registration)
536     {
537       mp = vl_socket_client_msg_alloc (sizeof (*mp));
538       clib_memset (mp, 0, sizeof (*mp));
539       mp->_vl_msg_id = ntohs (VL_API_GET_FIRST_MSG_ID);
540       mp->client_index = am->my_client_index;
541       strncpy ((char *) mp->name, plugin_name, sizeof (mp->name) - 1);
542
543       if (vl_socket_client_write () <= 0)
544         goto sock_err;
545       if (vl_socket_client_read (1))
546         goto sock_err;
547
548       if (mm->first_msg_id_reply_ready == 1)
549         {
550           rv = mm->first_msg_id_reply;
551           goto result;
552         }
553
554     sock_err:
555       /* Restore old handler */
556       am->msg_handlers[VL_API_GET_FIRST_MSG_ID_REPLY] = old_handler;
557
558       return -1;
559     }
560   else
561     {
562       mp = vl_msg_api_alloc (sizeof (*mp));
563       clib_memset (mp, 0, sizeof (*mp));
564       mp->_vl_msg_id = ntohs (VL_API_GET_FIRST_MSG_ID);
565       mp->client_index = am->my_client_index;
566       strncpy ((char *) mp->name, plugin_name, sizeof (mp->name) - 1);
567
568       vl_msg_api_send_shmem (am->shmem_hdr->vl_input_queue, (u8 *) & mp);
569
570       /* Synchronously wait for the answer */
571       timeout = clib_time_now (&clib_time) + 1.0;
572       while (clib_time_now (&clib_time) < timeout)
573         {
574           if (mm->first_msg_id_reply_ready == 1)
575             {
576               rv = mm->first_msg_id_reply;
577               goto result;
578             }
579         }
580       /* Restore old handler */
581       am->msg_handlers[VL_API_GET_FIRST_MSG_ID_REPLY] = old_handler;
582
583       return rv;
584     }
585
586 result:
587
588   /* Restore the old handler */
589   am->msg_handlers[VL_API_GET_FIRST_MSG_ID_REPLY] = old_handler;
590
591   if (rv == (u16) ~ 0)
592     clib_warning ("plugin '%s' not registered", plugin_name);
593
594   return rv;
595 }
596
597 /*
598  * fd.io coding-style-patch-verification: ON
599  *
600  * Local Variables:
601  * eval: (c-set-style "gnu")
602  * End:
603  */