blob: 021c54ef95397bbbe10b1baaf6a152c60d8a6618 [file] [log] [blame]
Dave Barach371e4e12016-07-08 09:38:52 -04001/*
Ed Warnickecb9cada2015-12-08 15:45:58 -07002 *------------------------------------------------------------------
3 * memclnt_shared.c - API message handling, common code for both clients
4 * and the vlib process itself.
Dave Barach371e4e12016-07-08 09:38:52 -04005 *
Ed Warnickecb9cada2015-12-08 15:45:58 -07006 *
7 * Copyright (c) 2009 Cisco and/or its affiliates.
8 * Licensed under the Apache License, Version 2.0 (the "License");
9 * you may not use this file except in compliance with the License.
10 * You may obtain a copy of the License at:
11 *
12 * http://www.apache.org/licenses/LICENSE-2.0
13 *
14 * Unless required by applicable law or agreed to in writing, software
15 * distributed under the License is distributed on an "AS IS" BASIS,
16 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17 * See the License for the specific language governing permissions and
18 * limitations under the License.
19 *------------------------------------------------------------------
20 */
21
22#include <stdio.h>
23#include <stdlib.h>
Ole Troan6855f6c2016-04-09 03:16:30 +020024#include <stddef.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070025#include <string.h>
26#include <unistd.h>
27#include <signal.h>
28#include <vppinfra/format.h>
29#include <vppinfra/byte_order.h>
30#include <vppinfra/error.h>
31#include <vlib/vlib.h>
32#include <vlib/unix/unix.h>
33#include <vlibmemory/api.h>
34#include <vlibmemory/unix_shared_memory_queue.h>
35
Dave Barach371e4e12016-07-08 09:38:52 -040036#include <vlibmemory/vl_memory_msg_enum.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070037
Dave Barach371e4e12016-07-08 09:38:52 -040038#define vl_typedefs
Ed Warnickecb9cada2015-12-08 15:45:58 -070039#include <vlibmemory/vl_memory_api_h.h>
40#undef vl_typedefs
41
Dave Barach59b25652017-09-10 15:04:27 -040042socket_main_t socket_main;
43
44#define DEBUG_MESSAGE_BUFFER_OVERRUN 0
45
Dave Barach371e4e12016-07-08 09:38:52 -040046static inline void *
Dave Barach77378332016-10-13 17:35:09 -040047vl_msg_api_alloc_internal (int nbytes, int pool, int may_return_null)
Ed Warnickecb9cada2015-12-08 15:45:58 -070048{
Dave Barach371e4e12016-07-08 09:38:52 -040049 int i;
50 msgbuf_t *rv;
51 ring_alloc_t *ap;
52 unix_shared_memory_queue_t *q;
53 void *oldheap;
54 vl_shmem_hdr_t *shmem_hdr;
55 api_main_t *am = &api_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -070056
Dave Barach371e4e12016-07-08 09:38:52 -040057 shmem_hdr = am->shmem_hdr;
Ed Warnickecb9cada2015-12-08 15:45:58 -070058
Dave Barach59b25652017-09-10 15:04:27 -040059#if DEBUG_MESSAGE_BUFFER_OVERRUN > 0
60 nbytes += 4;
61#endif
62
Dave Barach371e4e12016-07-08 09:38:52 -040063 if (shmem_hdr == 0)
64 {
65 clib_warning ("shared memory header NULL");
66 return 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -070067 }
68
Dave Barach371e4e12016-07-08 09:38:52 -040069 /* account for the msgbuf_t header */
70 nbytes += sizeof (msgbuf_t);
Ed Warnickecb9cada2015-12-08 15:45:58 -070071
Dave Barach371e4e12016-07-08 09:38:52 -040072 if (shmem_hdr->vl_rings == 0)
73 {
74 clib_warning ("vl_rings NULL");
Dave Barach77378332016-10-13 17:35:09 -040075 ASSERT (0);
76 abort ();
Ed Warnickecb9cada2015-12-08 15:45:58 -070077 }
78
Dave Barach371e4e12016-07-08 09:38:52 -040079 if (shmem_hdr->client_rings == 0)
80 {
81 clib_warning ("client_rings NULL");
Dave Barach77378332016-10-13 17:35:09 -040082 ASSERT (0);
83 abort ();
Ed Warnickecb9cada2015-12-08 15:45:58 -070084 }
85
Dave Barach371e4e12016-07-08 09:38:52 -040086 ap = pool ? shmem_hdr->vl_rings : shmem_hdr->client_rings;
87 for (i = 0; i < vec_len (ap); i++)
88 {
89 /* Too big? */
90 if (nbytes > ap[i].size)
91 {
92 continue;
93 }
Ed Warnickecb9cada2015-12-08 15:45:58 -070094
Dave Barach371e4e12016-07-08 09:38:52 -040095 q = ap[i].rp;
96 if (pool == 0)
97 {
98 pthread_mutex_lock (&q->mutex);
99 }
100 rv = (msgbuf_t *) (&q->data[0] + q->head * q->elsize);
101 /*
102 * Is this item still in use?
103 */
104 if (rv->q)
105 {
Dave Barach842b9c52017-01-09 15:54:00 -0500106 u32 now = (u32) time (0);
107
108 if (PREDICT_TRUE (rv->gc_mark_timestamp == 0))
109 rv->gc_mark_timestamp = now;
110 else
111 {
112 if (now - rv->gc_mark_timestamp > 10)
113 {
114 if (CLIB_DEBUG > 0)
Dave Barach10d8cc62017-05-30 09:30:07 -0400115 {
116 u16 *msg_idp, msg_id;
117 clib_warning
118 ("garbage collect pool %d ring %d index %d", pool, i,
119 q->head);
120 msg_idp = (u16 *) (rv->data);
121 msg_id = clib_net_to_host_u16 (*msg_idp);
122 if (msg_id < vec_len (api_main.msg_names))
123 clib_warning ("msg id %d name %s", (u32) msg_id,
124 api_main.msg_names[msg_id]);
125 }
Dave Barach842b9c52017-01-09 15:54:00 -0500126 shmem_hdr->garbage_collects++;
127 goto collected;
128 }
129 }
130
131
Dave Barach371e4e12016-07-08 09:38:52 -0400132 /* yes, loser; try next larger pool */
133 ap[i].misses++;
134 if (pool == 0)
135 pthread_mutex_unlock (&q->mutex);
136 continue;
137 }
Dave Barach842b9c52017-01-09 15:54:00 -0500138 collected:
139
Dave Barach371e4e12016-07-08 09:38:52 -0400140 /* OK, we have a winner */
141 ap[i].hits++;
142 /*
143 * Remember the source queue, although we
144 * don't need to know the queue to free the item.
145 */
146 rv->q = q;
Dave Barach842b9c52017-01-09 15:54:00 -0500147 rv->gc_mark_timestamp = 0;
Dave Barach371e4e12016-07-08 09:38:52 -0400148 q->head++;
149 if (q->head == q->maxsize)
150 q->head = 0;
151
152 if (pool == 0)
153 pthread_mutex_unlock (&q->mutex);
154 goto out;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700155 }
156
Dave Barach371e4e12016-07-08 09:38:52 -0400157 /*
158 * Request too big, or head element of all size-compatible rings
159 * still in use. Fall back to shared-memory malloc.
160 */
161 am->ring_misses++;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700162
Dave Barach371e4e12016-07-08 09:38:52 -0400163 pthread_mutex_lock (&am->vlib_rp->mutex);
164 oldheap = svm_push_data_heap (am->vlib_rp);
Dave Barach77378332016-10-13 17:35:09 -0400165 if (may_return_null)
166 {
167 rv = clib_mem_alloc_or_null (nbytes);
168 if (PREDICT_FALSE (rv == 0))
169 {
170 svm_pop_heap (oldheap);
171 pthread_mutex_unlock (&am->vlib_rp->mutex);
172 return 0;
173 }
174 }
175 else
176 rv = clib_mem_alloc (nbytes);
177
Dave Barach371e4e12016-07-08 09:38:52 -0400178 rv->q = 0;
179 svm_pop_heap (oldheap);
180 pthread_mutex_unlock (&am->vlib_rp->mutex);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700181
Dave Barach371e4e12016-07-08 09:38:52 -0400182out:
Dave Barach59b25652017-09-10 15:04:27 -0400183#if DEBUG_MESSAGE_BUFFER_OVERRUN > 0
184 {
185 nbytes -= 4;
186 u32 *overrun;
187 overrun = (u32 *) (rv->data + nbytes - sizeof (msgbuf_t));
188 *overrun = 0x1badbabe;
189 }
190#endif
Dave Barach371e4e12016-07-08 09:38:52 -0400191 rv->data_len = htonl (nbytes - sizeof (msgbuf_t));
Dave Barach59b25652017-09-10 15:04:27 -0400192
Dave Barach371e4e12016-07-08 09:38:52 -0400193 return (rv->data);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700194}
195
Dave Barach371e4e12016-07-08 09:38:52 -0400196void *
197vl_msg_api_alloc (int nbytes)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700198{
Dave Barach371e4e12016-07-08 09:38:52 -0400199 int pool;
200 api_main_t *am = &api_main;
201 vl_shmem_hdr_t *shmem_hdr = am->shmem_hdr;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700202
Dave Barach371e4e12016-07-08 09:38:52 -0400203 /*
204 * Clients use pool-0, vlib proc uses pool 1
205 */
206 pool = (am->our_pid == shmem_hdr->vl_pid);
Dave Barach77378332016-10-13 17:35:09 -0400207 return vl_msg_api_alloc_internal (nbytes, pool, 0 /* may_return_null */ );
208}
209
210void *
211vl_msg_api_alloc_or_null (int nbytes)
212{
213 int pool;
214 api_main_t *am = &api_main;
215 vl_shmem_hdr_t *shmem_hdr = am->shmem_hdr;
216
217 pool = (am->our_pid == shmem_hdr->vl_pid);
218 return vl_msg_api_alloc_internal (nbytes, pool, 1 /* may_return_null */ );
Ed Warnickecb9cada2015-12-08 15:45:58 -0700219}
220
Dave Barach371e4e12016-07-08 09:38:52 -0400221void *
222vl_msg_api_alloc_as_if_client (int nbytes)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700223{
Dave Barach77378332016-10-13 17:35:09 -0400224 return vl_msg_api_alloc_internal (nbytes, 0, 0 /* may_return_null */ );
225}
226
227void *
228vl_msg_api_alloc_as_if_client_or_null (int nbytes)
229{
230 return vl_msg_api_alloc_internal (nbytes, 0, 1 /* may_return_null */ );
Ed Warnickecb9cada2015-12-08 15:45:58 -0700231}
232
Dave Barach371e4e12016-07-08 09:38:52 -0400233void
234vl_msg_api_free (void *a)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700235{
Dave Barach371e4e12016-07-08 09:38:52 -0400236 msgbuf_t *rv;
237 void *oldheap;
238 api_main_t *am = &api_main;
Ole Troan6855f6c2016-04-09 03:16:30 +0200239
Dave Barach371e4e12016-07-08 09:38:52 -0400240 rv = (msgbuf_t *) (((u8 *) a) - offsetof (msgbuf_t, data));
241
242 /*
243 * Here's the beauty of the scheme. Only one proc/thread has
244 * control of a given message buffer. To free a buffer, we just clear the
245 * queue field, and leave. No locks, no hits, no errors...
246 */
247 if (rv->q)
248 {
249 rv->q = 0;
Dave Barach842b9c52017-01-09 15:54:00 -0500250 rv->gc_mark_timestamp = 0;
Dave Barach59b25652017-09-10 15:04:27 -0400251#if DEBUG_MESSAGE_BUFFER_OVERRUN > 0
252 {
253 u32 *overrun;
254 overrun = (u32 *) (rv->data + ntohl (rv->data_len));
255 ASSERT (*overrun == 0x1badbabe);
256 }
257#endif
Dave Barach371e4e12016-07-08 09:38:52 -0400258 return;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700259 }
260
Dave Barach371e4e12016-07-08 09:38:52 -0400261 pthread_mutex_lock (&am->vlib_rp->mutex);
262 oldheap = svm_push_data_heap (am->vlib_rp);
Dave Barach59b25652017-09-10 15:04:27 -0400263
264#if DEBUG_MESSAGE_BUFFER_OVERRUN > 0
265 {
266 u32 *overrun;
267 overrun = (u32 *) (rv->data + ntohl (rv->data_len));
268 ASSERT (*overrun == 0x1badbabe);
269 }
270#endif
271
Dave Barach371e4e12016-07-08 09:38:52 -0400272 clib_mem_free (rv);
273 svm_pop_heap (oldheap);
274 pthread_mutex_unlock (&am->vlib_rp->mutex);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700275}
276
Dave Barach371e4e12016-07-08 09:38:52 -0400277static void
278vl_msg_api_free_nolock (void *a)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700279{
Dave Barach371e4e12016-07-08 09:38:52 -0400280 msgbuf_t *rv;
281 void *oldheap;
282 api_main_t *am = &api_main;
283
284 rv = (msgbuf_t *) (((u8 *) a) - offsetof (msgbuf_t, data));
285 /*
286 * Here's the beauty of the scheme. Only one proc/thread has
287 * control of a given message buffer. To free a buffer, we just clear the
288 * queue field, and leave. No locks, no hits, no errors...
289 */
290 if (rv->q)
291 {
292 rv->q = 0;
293 return;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700294 }
295
Dave Barach371e4e12016-07-08 09:38:52 -0400296 oldheap = svm_push_data_heap (am->vlib_rp);
297 clib_mem_free (rv);
298 svm_pop_heap (oldheap);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700299}
300
Dave Barach371e4e12016-07-08 09:38:52 -0400301void
Neale Rannse72be392017-04-26 13:59:20 -0700302vl_set_memory_root_path (const char *name)
Dave Barach309bef22016-01-22 16:09:52 -0500303{
Dave Barach371e4e12016-07-08 09:38:52 -0400304 api_main_t *am = &api_main;
Dave Barach309bef22016-01-22 16:09:52 -0500305
Dave Barach371e4e12016-07-08 09:38:52 -0400306 am->root_path = name;
Dave Barach309bef22016-01-22 16:09:52 -0500307}
308
Dave Barach371e4e12016-07-08 09:38:52 -0400309void
310vl_set_memory_uid (int uid)
Dave Barach16c75df2016-05-31 14:05:46 -0400311{
Dave Barach371e4e12016-07-08 09:38:52 -0400312 api_main_t *am = &api_main;
Dave Barach16c75df2016-05-31 14:05:46 -0400313
Dave Barach371e4e12016-07-08 09:38:52 -0400314 am->api_uid = uid;
Dave Barach16c75df2016-05-31 14:05:46 -0400315}
316
Dave Barach371e4e12016-07-08 09:38:52 -0400317void
318vl_set_memory_gid (int gid)
Dave Barach16c75df2016-05-31 14:05:46 -0400319{
Dave Barach371e4e12016-07-08 09:38:52 -0400320 api_main_t *am = &api_main;
Dave Barach16c75df2016-05-31 14:05:46 -0400321
Dave Barach371e4e12016-07-08 09:38:52 -0400322 am->api_gid = gid;
Dave Barach16c75df2016-05-31 14:05:46 -0400323}
324
Dave Barachb3d93da2016-08-03 14:34:38 -0400325void
326vl_set_global_memory_baseva (u64 baseva)
327{
328 api_main_t *am = &api_main;
329
330 am->global_baseva = baseva;
331}
332
333void
334vl_set_global_memory_size (u64 size)
335{
336 api_main_t *am = &api_main;
337
338 am->global_size = size;
339}
340
341void
342vl_set_api_memory_size (u64 size)
343{
344 api_main_t *am = &api_main;
345
346 am->api_size = size;
347}
348
349void
350vl_set_global_pvt_heap_size (u64 size)
351{
352 api_main_t *am = &api_main;
353
354 am->global_pvt_heap_size = size;
355}
356
357void
358vl_set_api_pvt_heap_size (u64 size)
359{
360 api_main_t *am = &api_main;
361
362 am->api_pvt_heap_size = size;
363}
364
Dave Barach59b25652017-09-10 15:04:27 -0400365void
366vl_init_shmem (svm_region_t * vlib_rp, int is_vlib, int is_private_region)
367{
368 api_main_t *am = &api_main;
369 vl_shmem_hdr_t *shmem_hdr = 0;
370 u32 vlib_input_queue_length;
371 void *oldheap;
372 ASSERT (vlib_rp);
373
374 /* $$$$ need private region config parameters */
375
376 oldheap = svm_push_data_heap (vlib_rp);
377
378 vec_validate (shmem_hdr, 0);
379 shmem_hdr->version = VL_SHM_VERSION;
380
381 /* vlib main input queue */
382 vlib_input_queue_length = 1024;
383 if (am->vlib_input_queue_length)
384 vlib_input_queue_length = am->vlib_input_queue_length;
385
386 shmem_hdr->vl_input_queue =
387 unix_shared_memory_queue_init (vlib_input_queue_length, sizeof (uword),
388 getpid (), am->vlib_signal);
389
390 /* Set up the msg ring allocator */
391#define _(sz,n) \
392 do { \
393 ring_alloc_t _rp; \
394 _rp.rp = unix_shared_memory_queue_init ((n), (sz), 0, 0); \
395 _rp.size = (sz); \
396 _rp.nitems = n; \
397 _rp.hits = 0; \
398 _rp.misses = 0; \
399 vec_add1(shmem_hdr->vl_rings, _rp); \
400 } while (0);
401
402 foreach_vl_aring_size;
403#undef _
404
405#define _(sz,n) \
406 do { \
407 ring_alloc_t _rp; \
408 _rp.rp = unix_shared_memory_queue_init ((n), (sz), 0, 0); \
409 _rp.size = (sz); \
410 _rp.nitems = n; \
411 _rp.hits = 0; \
412 _rp.misses = 0; \
413 vec_add1(shmem_hdr->client_rings, _rp); \
414 } while (0);
415
416 foreach_clnt_aring_size;
417#undef _
418
419 if (is_private_region == 0)
420 {
421 am->shmem_hdr = shmem_hdr;
422 am->vlib_rp = vlib_rp;
423 am->our_pid = getpid ();
424 if (is_vlib)
425 am->shmem_hdr->vl_pid = am->our_pid;
426 }
427 else
428 shmem_hdr->vl_pid = am->our_pid;
429
430 svm_pop_heap (oldheap);
431
432 /*
433 * After absolutely everything that a client might see is set up,
434 * declare the shmem region valid
435 */
436 vlib_rp->user_ctx = shmem_hdr;
437
438 pthread_mutex_unlock (&vlib_rp->mutex);
439}
440
441
Dave Barach371e4e12016-07-08 09:38:52 -0400442int
Neale Rannse72be392017-04-26 13:59:20 -0700443vl_map_shmem (const char *region_name, int is_vlib)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700444{
Dave Barach371e4e12016-07-08 09:38:52 -0400445 svm_map_region_args_t _a, *a = &_a;
446 svm_region_t *vlib_rp, *root_rp;
Dave Barach371e4e12016-07-08 09:38:52 -0400447 api_main_t *am = &api_main;
Ole Troan3cdc25f2017-08-17 11:07:33 +0200448 int i, rv;
Dave Barach371e4e12016-07-08 09:38:52 -0400449 struct timespec ts, tsrem;
Dave Wallacecfc997e2017-08-22 18:32:34 -0400450 char *vpe_api_region_suffix = "-vpe-api";
Ed Warnickecb9cada2015-12-08 15:45:58 -0700451
Jan Srnicek5beec812017-03-24 10:18:11 +0100452 memset (a, 0, sizeof (*a));
453
Dave Wallacecfc997e2017-08-22 18:32:34 -0400454 if (strstr (region_name, vpe_api_region_suffix))
Jan Srnicek5beec812017-03-24 10:18:11 +0100455 {
Dave Wallacecfc997e2017-08-22 18:32:34 -0400456 u8 *root_path = format (0, "%s", region_name);
457 _vec_len (root_path) = (vec_len (root_path) -
458 strlen (vpe_api_region_suffix));
459 vec_terminate_c_string (root_path);
460 a->root_path = (const char *) root_path;
461 am->root_path = (const char *) root_path;
Jan Srnicek5beec812017-03-24 10:18:11 +0100462 }
463
Dave Barach371e4e12016-07-08 09:38:52 -0400464 if (is_vlib == 0)
Ole Troan3cdc25f2017-08-17 11:07:33 +0200465 {
466 rv = svm_region_init_chroot (am->root_path);
467 if (rv)
468 return rv;
469 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700470
Jan Srnicek5beec812017-03-24 10:18:11 +0100471 if (a->root_path != NULL)
472 {
473 a->name = "/vpe-api";
474 }
475 else
476 a->name = region_name;
Dave Barachc3799992016-08-15 11:12:27 -0400477 a->size = am->api_size ? am->api_size : (16 << 20);
Dave Barach371e4e12016-07-08 09:38:52 -0400478 a->flags = SVM_FLAGS_MHEAP;
479 a->uid = am->api_uid;
480 a->gid = am->api_gid;
Dave Barachb3d93da2016-08-03 14:34:38 -0400481 a->pvt_heap_size = am->api_pvt_heap_size;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700482
Dave Barach371e4e12016-07-08 09:38:52 -0400483 vlib_rp = svm_region_find_or_create (a);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700484
Dave Barach371e4e12016-07-08 09:38:52 -0400485 if (vlib_rp == 0)
486 return (-2);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700487
Dave Barach371e4e12016-07-08 09:38:52 -0400488 pthread_mutex_lock (&vlib_rp->mutex);
489 /* Has someone else set up the shared-memory variable table? */
490 if (vlib_rp->user_ctx)
491 {
492 am->shmem_hdr = (void *) vlib_rp->user_ctx;
493 am->our_pid = getpid ();
494 if (is_vlib)
495 {
496 unix_shared_memory_queue_t *q;
497 uword old_msg;
498 /*
499 * application restart. Reset cached pids, API message
500 * rings, list of clients; otherwise, various things
501 * fail. (e.g. queue non-empty notification)
502 */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700503
Dave Barach371e4e12016-07-08 09:38:52 -0400504 /* ghosts keep the region from disappearing properly */
505 svm_client_scan_this_region_nolock (vlib_rp);
506 am->shmem_hdr->application_restarts++;
507 q = am->shmem_hdr->vl_input_queue;
508 am->shmem_hdr->vl_pid = getpid ();
509 q->consumer_pid = am->shmem_hdr->vl_pid;
510 /* Drain the input queue, freeing msgs */
511 for (i = 0; i < 10; i++)
512 {
513 if (pthread_mutex_trylock (&q->mutex) == 0)
514 {
515 pthread_mutex_unlock (&q->mutex);
516 goto mutex_ok;
517 }
518 ts.tv_sec = 0;
519 ts.tv_nsec = 10000 * 1000; /* 10 ms */
520 while (nanosleep (&ts, &tsrem) < 0)
521 ts = tsrem;
522 }
523 /* Mutex buggered, "fix" it */
524 memset (&q->mutex, 0, sizeof (q->mutex));
525 clib_warning ("forcibly release main input queue mutex");
526
527 mutex_ok:
528 am->vlib_rp = vlib_rp;
529 while (unix_shared_memory_queue_sub (q,
530 (u8 *) & old_msg,
531 1 /* nowait */ )
532 != -2 /* queue underflow */ )
533 {
534 vl_msg_api_free_nolock ((void *) old_msg);
535 am->shmem_hdr->restart_reclaims++;
536 }
537 pthread_mutex_unlock (&vlib_rp->mutex);
538 root_rp = svm_get_root_rp ();
539 ASSERT (root_rp);
540 /* Clean up the root region client list */
541 pthread_mutex_lock (&root_rp->mutex);
542 svm_client_scan_this_region_nolock (root_rp);
543 pthread_mutex_unlock (&root_rp->mutex);
544 }
545 else
546 {
547 pthread_mutex_unlock (&vlib_rp->mutex);
548 }
549 am->vlib_rp = vlib_rp;
550 vec_add1 (am->mapped_shmem_regions, vlib_rp);
551 return 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700552 }
Dave Barach371e4e12016-07-08 09:38:52 -0400553 /* Clients simply have to wait... */
554 if (!is_vlib)
555 {
556 pthread_mutex_unlock (&vlib_rp->mutex);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700557
Dave Barach371e4e12016-07-08 09:38:52 -0400558 /* Wait up to 100 seconds... */
559 for (i = 0; i < 10000; i++)
560 {
561 ts.tv_sec = 0;
562 ts.tv_nsec = 10000 * 1000; /* 10 ms */
563 while (nanosleep (&ts, &tsrem) < 0)
564 ts = tsrem;
565 if (vlib_rp->user_ctx)
566 goto ready;
567 }
568 /* Clean up and leave... */
569 svm_region_unmap (vlib_rp);
570 clib_warning ("region init fail");
571 return (-2);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700572
573 ready:
Dave Barach371e4e12016-07-08 09:38:52 -0400574 am->shmem_hdr = (void *) vlib_rp->user_ctx;
575 am->our_pid = getpid ();
576 am->vlib_rp = vlib_rp;
577 vec_add1 (am->mapped_shmem_regions, vlib_rp);
578 return 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700579 }
580
Dave Barach371e4e12016-07-08 09:38:52 -0400581 /* Nope, it's our problem... */
Dave Barach59b25652017-09-10 15:04:27 -0400582 vl_init_shmem (vlib_rp, 1 /* is vlib */ , 0 /* is_private_region */ );
Ed Warnickecb9cada2015-12-08 15:45:58 -0700583
Dave Barach371e4e12016-07-08 09:38:52 -0400584 vec_add1 (am->mapped_shmem_regions, vlib_rp);
585 return 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700586}
587
Dave Barach371e4e12016-07-08 09:38:52 -0400588void
589vl_register_mapped_shmem_region (svm_region_t * rp)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700590{
Dave Barach371e4e12016-07-08 09:38:52 -0400591 api_main_t *am = &api_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700592
Dave Barach371e4e12016-07-08 09:38:52 -0400593 vec_add1 (am->mapped_shmem_regions, rp);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700594}
595
Dave Barach371e4e12016-07-08 09:38:52 -0400596void
597vl_unmap_shmem (void)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700598{
Dave Barach371e4e12016-07-08 09:38:52 -0400599 svm_region_t *rp;
600 int i;
601 api_main_t *am = &api_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700602
Dave Barach371e4e12016-07-08 09:38:52 -0400603 if (!svm_get_root_rp ())
604 return;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700605
Dave Barach371e4e12016-07-08 09:38:52 -0400606 for (i = 0; i < vec_len (am->mapped_shmem_regions); i++)
607 {
608 rp = am->mapped_shmem_regions[i];
609 svm_region_unmap (rp);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700610 }
611
Dave Barach371e4e12016-07-08 09:38:52 -0400612 vec_free (am->mapped_shmem_regions);
613 am->shmem_hdr = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700614
Dave Barach371e4e12016-07-08 09:38:52 -0400615 svm_region_exit ();
616 /* $$$ more careful cleanup, valgrind run... */
617 vec_free (am->msg_handlers);
618 vec_free (am->msg_endian_handlers);
619 vec_free (am->msg_print_handlers);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700620}
621
Dave Barach371e4e12016-07-08 09:38:52 -0400622void
623vl_msg_api_send_shmem (unix_shared_memory_queue_t * q, u8 * elem)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700624{
Dave Barach371e4e12016-07-08 09:38:52 -0400625 api_main_t *am = &api_main;
626 uword *trace = (uword *) elem;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700627
Dave Barach371e4e12016-07-08 09:38:52 -0400628 if (am->tx_trace && am->tx_trace->enabled)
629 vl_msg_api_trace (am, am->tx_trace, (void *) trace[0]);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700630
Dave Barach371e4e12016-07-08 09:38:52 -0400631 (void) unix_shared_memory_queue_add (q, elem, 0 /* nowait */ );
Ed Warnickecb9cada2015-12-08 15:45:58 -0700632}
633
Dave Barach371e4e12016-07-08 09:38:52 -0400634void
635vl_msg_api_send_shmem_nolock (unix_shared_memory_queue_t * q, u8 * elem)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700636{
Dave Barach371e4e12016-07-08 09:38:52 -0400637 api_main_t *am = &api_main;
638 uword *trace = (uword *) elem;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700639
Dave Barach371e4e12016-07-08 09:38:52 -0400640 if (am->tx_trace && am->tx_trace->enabled)
641 vl_msg_api_trace (am, am->tx_trace, (void *) trace[0]);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700642
Dave Barach371e4e12016-07-08 09:38:52 -0400643 (void) unix_shared_memory_queue_add_nolock (q, elem);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700644}
645
Dave Barach557d1282016-11-10 14:22:49 -0500646u32
647vl_api_get_msg_index (u8 * name_and_crc)
Dave Barach371e4e12016-07-08 09:38:52 -0400648{
Dave Barach557d1282016-11-10 14:22:49 -0500649 api_main_t *am = &api_main;
650 uword *p;
Dave Barach371e4e12016-07-08 09:38:52 -0400651
Dave Barach557d1282016-11-10 14:22:49 -0500652 if (am->msg_index_by_name_and_crc)
653 {
654 p = hash_get_mem (am->msg_index_by_name_and_crc, name_and_crc);
655 if (p)
656 return p[0];
657 }
658 return ~0;
Dave Barach371e4e12016-07-08 09:38:52 -0400659}
660
Dave Barach371e4e12016-07-08 09:38:52 -0400661static inline vl_api_registration_t *
662vl_api_client_index_to_registration_internal (u32 handle)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700663{
Dave Barach371e4e12016-07-08 09:38:52 -0400664 vl_api_registration_t **regpp;
665 vl_api_registration_t *regp;
666 api_main_t *am = &api_main;
667 u32 index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700668
Dave Barach371e4e12016-07-08 09:38:52 -0400669 index = vl_msg_api_handle_get_index (handle);
670 if ((am->shmem_hdr->application_restarts & VL_API_EPOCH_MASK)
671 != vl_msg_api_handle_get_epoch (handle))
672 {
673 vl_msg_api_increment_missing_client_counter ();
674 return 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700675 }
676
Dave Barach371e4e12016-07-08 09:38:52 -0400677 regpp = am->vl_clients + index;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700678
Dave Barach371e4e12016-07-08 09:38:52 -0400679 if (pool_is_free (am->vl_clients, regpp))
680 {
681 vl_msg_api_increment_missing_client_counter ();
682 return 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700683 }
Dave Barach371e4e12016-07-08 09:38:52 -0400684 regp = *regpp;
685 return (regp);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700686}
687
Dave Barach371e4e12016-07-08 09:38:52 -0400688vl_api_registration_t *
689vl_api_client_index_to_registration (u32 index)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700690{
Dave Barach59b25652017-09-10 15:04:27 -0400691 if (PREDICT_FALSE (socket_main.current_rp != 0))
692 return socket_main.current_rp;
693
Dave Barach371e4e12016-07-08 09:38:52 -0400694 return (vl_api_client_index_to_registration_internal (index));
Ed Warnickecb9cada2015-12-08 15:45:58 -0700695}
696
Dave Barach371e4e12016-07-08 09:38:52 -0400697unix_shared_memory_queue_t *
698vl_api_client_index_to_input_queue (u32 index)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700699{
Dave Barach371e4e12016-07-08 09:38:52 -0400700 vl_api_registration_t *regp;
Dave Barachfc262a02016-12-14 14:49:55 -0500701 api_main_t *am = &api_main;
702
703 /* Special case: vlib trying to send itself a message */
704 if (index == (u32) ~ 0)
705 return (am->shmem_hdr->vl_input_queue);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700706
Dave Barach371e4e12016-07-08 09:38:52 -0400707 regp = vl_api_client_index_to_registration_internal (index);
708 if (!regp)
709 return 0;
710 return (regp->vl_input_queue);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700711}
712
Dave Barach371e4e12016-07-08 09:38:52 -0400713/*
714 * fd.io coding-style-patch-verification: ON
715 *
716 * Local Variables:
717 * eval: (c-set-style "gnu")
718 * End:
719 */