blob: fa9936982ee7e434f55c604ff5557fd29cc0a42f [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>
Florin Corase86a8ed2018-01-05 03:20:25 -080028
Ed Warnickecb9cada2015-12-08 15:45:58 -070029#include <vppinfra/format.h>
30#include <vppinfra/byte_order.h>
31#include <vppinfra/error.h>
Florin Corase86a8ed2018-01-05 03:20:25 -080032#include <svm/queue.h>
Ed Warnickecb9cada2015-12-08 15:45:58 -070033#include <vlib/vlib.h>
34#include <vlib/unix/unix.h>
Florin Corase86a8ed2018-01-05 03:20:25 -080035#include <vlibmemory/memory_api.h>
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 -040042#define DEBUG_MESSAGE_BUFFER_OVERRUN 0
43
Dave Barach371e4e12016-07-08 09:38:52 -040044static inline void *
Dave Barach77378332016-10-13 17:35:09 -040045vl_msg_api_alloc_internal (int nbytes, int pool, int may_return_null)
Ed Warnickecb9cada2015-12-08 15:45:58 -070046{
Dave Barach371e4e12016-07-08 09:38:52 -040047 int i;
48 msgbuf_t *rv;
49 ring_alloc_t *ap;
Florin Corase86a8ed2018-01-05 03:20:25 -080050 svm_queue_t *q;
Dave Barach371e4e12016-07-08 09:38:52 -040051 void *oldheap;
52 vl_shmem_hdr_t *shmem_hdr;
53 api_main_t *am = &api_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -070054
Dave Barach371e4e12016-07-08 09:38:52 -040055 shmem_hdr = am->shmem_hdr;
Ed Warnickecb9cada2015-12-08 15:45:58 -070056
Dave Barach59b25652017-09-10 15:04:27 -040057#if DEBUG_MESSAGE_BUFFER_OVERRUN > 0
58 nbytes += 4;
59#endif
60
Florin Coras7a2e1bd2017-11-30 16:07:39 -050061 ASSERT (pool == 0 || vlib_get_thread_index () == 0);
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;
Brian Nesbitt194212c2019-01-22 14:47:53 +0000179 rv->gc_mark_timestamp = 0;
Dave Barach371e4e12016-07-08 09:38:52 -0400180 svm_pop_heap (oldheap);
181 pthread_mutex_unlock (&am->vlib_rp->mutex);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700182
Dave Barach371e4e12016-07-08 09:38:52 -0400183out:
Dave Barach59b25652017-09-10 15:04:27 -0400184#if DEBUG_MESSAGE_BUFFER_OVERRUN > 0
185 {
186 nbytes -= 4;
187 u32 *overrun;
188 overrun = (u32 *) (rv->data + nbytes - sizeof (msgbuf_t));
189 *overrun = 0x1badbabe;
190 }
191#endif
Dave Barach371e4e12016-07-08 09:38:52 -0400192 rv->data_len = htonl (nbytes - sizeof (msgbuf_t));
Dave Barach59b25652017-09-10 15:04:27 -0400193
Dave Barach371e4e12016-07-08 09:38:52 -0400194 return (rv->data);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700195}
196
Dave Barach371e4e12016-07-08 09:38:52 -0400197void *
198vl_msg_api_alloc (int nbytes)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700199{
Dave Barach371e4e12016-07-08 09:38:52 -0400200 int pool;
201 api_main_t *am = &api_main;
202 vl_shmem_hdr_t *shmem_hdr = am->shmem_hdr;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700203
Dave Barach371e4e12016-07-08 09:38:52 -0400204 /*
205 * Clients use pool-0, vlib proc uses pool 1
206 */
207 pool = (am->our_pid == shmem_hdr->vl_pid);
Dave Barach77378332016-10-13 17:35:09 -0400208 return vl_msg_api_alloc_internal (nbytes, pool, 0 /* may_return_null */ );
209}
210
211void *
Vratko Polakfc4828c2019-07-02 11:07:24 +0200212vl_msg_api_alloc_zero (int nbytes)
213{
214 void *ret;
215
216 ret = vl_msg_api_alloc (nbytes);
217 clib_memset (ret, 0, nbytes);
218 return ret;
219}
220
221void *
Dave Barach77378332016-10-13 17:35:09 -0400222vl_msg_api_alloc_or_null (int nbytes)
223{
224 int pool;
225 api_main_t *am = &api_main;
226 vl_shmem_hdr_t *shmem_hdr = am->shmem_hdr;
227
228 pool = (am->our_pid == shmem_hdr->vl_pid);
229 return vl_msg_api_alloc_internal (nbytes, pool, 1 /* may_return_null */ );
Ed Warnickecb9cada2015-12-08 15:45:58 -0700230}
231
Dave Barach371e4e12016-07-08 09:38:52 -0400232void *
233vl_msg_api_alloc_as_if_client (int nbytes)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700234{
Dave Barach77378332016-10-13 17:35:09 -0400235 return vl_msg_api_alloc_internal (nbytes, 0, 0 /* may_return_null */ );
236}
237
238void *
Vratko Polakfc4828c2019-07-02 11:07:24 +0200239vl_msg_api_alloc_zero_as_if_client (int nbytes)
240{
241 void *ret;
242
243 ret = vl_msg_api_alloc_as_if_client (nbytes);
244 clib_memset (ret, 0, nbytes);
245 return ret;
246}
247
248void *
Dave Barach77378332016-10-13 17:35:09 -0400249vl_msg_api_alloc_as_if_client_or_null (int nbytes)
250{
251 return vl_msg_api_alloc_internal (nbytes, 0, 1 /* may_return_null */ );
Ed Warnickecb9cada2015-12-08 15:45:58 -0700252}
253
Florin Corasb384b542018-01-15 01:08:33 -0800254void *
255vl_mem_api_alloc_as_if_client_w_reg (vl_api_registration_t * reg, int nbytes)
256{
257 api_main_t *am = &api_main;
258 vl_shmem_hdr_t *save_shmem_hdr = am->shmem_hdr;
259 svm_region_t *vlib_rp, *save_vlib_rp = am->vlib_rp;
260 void *msg;
261
262 vlib_rp = am->vlib_rp = reg->vlib_rp;
263 am->shmem_hdr = (void *) vlib_rp->user_ctx;
264
265 msg = vl_msg_api_alloc_internal (nbytes, 0, 0 /* may_return_null */ );
266
267 am->shmem_hdr = save_shmem_hdr;
268 am->vlib_rp = save_vlib_rp;
269
270 return msg;
271}
272
Dave Barach371e4e12016-07-08 09:38:52 -0400273void
274vl_msg_api_free (void *a)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700275{
Dave Barach371e4e12016-07-08 09:38:52 -0400276 msgbuf_t *rv;
277 void *oldheap;
278 api_main_t *am = &api_main;
Ole Troan6855f6c2016-04-09 03:16:30 +0200279
Dave Barach371e4e12016-07-08 09:38:52 -0400280 rv = (msgbuf_t *) (((u8 *) a) - offsetof (msgbuf_t, data));
281
282 /*
283 * Here's the beauty of the scheme. Only one proc/thread has
284 * control of a given message buffer. To free a buffer, we just clear the
285 * queue field, and leave. No locks, no hits, no errors...
286 */
287 if (rv->q)
288 {
289 rv->q = 0;
Dave Barach842b9c52017-01-09 15:54:00 -0500290 rv->gc_mark_timestamp = 0;
Dave Barach59b25652017-09-10 15:04:27 -0400291#if DEBUG_MESSAGE_BUFFER_OVERRUN > 0
292 {
293 u32 *overrun;
294 overrun = (u32 *) (rv->data + ntohl (rv->data_len));
295 ASSERT (*overrun == 0x1badbabe);
296 }
297#endif
Dave Barach371e4e12016-07-08 09:38:52 -0400298 return;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700299 }
300
Dave Barach371e4e12016-07-08 09:38:52 -0400301 pthread_mutex_lock (&am->vlib_rp->mutex);
302 oldheap = svm_push_data_heap (am->vlib_rp);
Dave Barach59b25652017-09-10 15:04:27 -0400303
304#if DEBUG_MESSAGE_BUFFER_OVERRUN > 0
305 {
306 u32 *overrun;
307 overrun = (u32 *) (rv->data + ntohl (rv->data_len));
308 ASSERT (*overrun == 0x1badbabe);
309 }
310#endif
311
Dave Barach371e4e12016-07-08 09:38:52 -0400312 clib_mem_free (rv);
313 svm_pop_heap (oldheap);
314 pthread_mutex_unlock (&am->vlib_rp->mutex);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700315}
316
Dave Barach371e4e12016-07-08 09:38:52 -0400317static void
318vl_msg_api_free_nolock (void *a)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700319{
Dave Barach371e4e12016-07-08 09:38:52 -0400320 msgbuf_t *rv;
321 void *oldheap;
322 api_main_t *am = &api_main;
323
324 rv = (msgbuf_t *) (((u8 *) a) - offsetof (msgbuf_t, data));
325 /*
326 * Here's the beauty of the scheme. Only one proc/thread has
327 * control of a given message buffer. To free a buffer, we just clear the
328 * queue field, and leave. No locks, no hits, no errors...
329 */
330 if (rv->q)
331 {
332 rv->q = 0;
333 return;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700334 }
335
Dave Barach371e4e12016-07-08 09:38:52 -0400336 oldheap = svm_push_data_heap (am->vlib_rp);
337 clib_mem_free (rv);
338 svm_pop_heap (oldheap);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700339}
340
Dave Barach371e4e12016-07-08 09:38:52 -0400341void
Neale Rannse72be392017-04-26 13:59:20 -0700342vl_set_memory_root_path (const char *name)
Dave Barach309bef22016-01-22 16:09:52 -0500343{
Dave Barach371e4e12016-07-08 09:38:52 -0400344 api_main_t *am = &api_main;
Dave Barach309bef22016-01-22 16:09:52 -0500345
Dave Barach371e4e12016-07-08 09:38:52 -0400346 am->root_path = name;
Dave Barach309bef22016-01-22 16:09:52 -0500347}
348
Dave Barach371e4e12016-07-08 09:38:52 -0400349void
350vl_set_memory_uid (int uid)
Dave Barach16c75df2016-05-31 14:05:46 -0400351{
Dave Barach371e4e12016-07-08 09:38:52 -0400352 api_main_t *am = &api_main;
Dave Barach16c75df2016-05-31 14:05:46 -0400353
Dave Barach371e4e12016-07-08 09:38:52 -0400354 am->api_uid = uid;
Dave Barach16c75df2016-05-31 14:05:46 -0400355}
356
Dave Barach371e4e12016-07-08 09:38:52 -0400357void
358vl_set_memory_gid (int gid)
Dave Barach16c75df2016-05-31 14:05:46 -0400359{
Dave Barach371e4e12016-07-08 09:38:52 -0400360 api_main_t *am = &api_main;
Dave Barach16c75df2016-05-31 14:05:46 -0400361
Dave Barach371e4e12016-07-08 09:38:52 -0400362 am->api_gid = gid;
Dave Barach16c75df2016-05-31 14:05:46 -0400363}
364
Dave Barachb3d93da2016-08-03 14:34:38 -0400365void
366vl_set_global_memory_baseva (u64 baseva)
367{
368 api_main_t *am = &api_main;
369
370 am->global_baseva = baseva;
371}
372
373void
374vl_set_global_memory_size (u64 size)
375{
376 api_main_t *am = &api_main;
377
378 am->global_size = size;
379}
380
381void
382vl_set_api_memory_size (u64 size)
383{
384 api_main_t *am = &api_main;
385
386 am->api_size = size;
387}
388
389void
390vl_set_global_pvt_heap_size (u64 size)
391{
392 api_main_t *am = &api_main;
393
394 am->global_pvt_heap_size = size;
395}
396
397void
398vl_set_api_pvt_heap_size (u64 size)
399{
400 api_main_t *am = &api_main;
401
402 am->api_pvt_heap_size = size;
403}
404
Florin Coras90a63982017-12-19 04:50:01 -0800405static void
406vl_api_default_mem_config (vl_shmem_hdr_t * shmem_hdr)
Dave Barach59b25652017-09-10 15:04:27 -0400407{
408 api_main_t *am = &api_main;
Dave Barach59b25652017-09-10 15:04:27 -0400409 u32 vlib_input_queue_length;
Dave Barach59b25652017-09-10 15:04:27 -0400410
411 /* vlib main input queue */
412 vlib_input_queue_length = 1024;
413 if (am->vlib_input_queue_length)
414 vlib_input_queue_length = am->vlib_input_queue_length;
415
416 shmem_hdr->vl_input_queue =
Florin Corasc470e222018-08-01 07:53:18 -0700417 svm_queue_alloc_and_init (vlib_input_queue_length, sizeof (uword),
418 getpid ());
Dave Barach59b25652017-09-10 15:04:27 -0400419
Dave Barach59b25652017-09-10 15:04:27 -0400420#define _(sz,n) \
421 do { \
422 ring_alloc_t _rp; \
Florin Corasc470e222018-08-01 07:53:18 -0700423 _rp.rp = svm_queue_alloc_and_init ((n), (sz), 0); \
Dave Barach59b25652017-09-10 15:04:27 -0400424 _rp.size = (sz); \
425 _rp.nitems = n; \
426 _rp.hits = 0; \
427 _rp.misses = 0; \
428 vec_add1(shmem_hdr->vl_rings, _rp); \
429 } while (0);
430
431 foreach_vl_aring_size;
432#undef _
433
434#define _(sz,n) \
435 do { \
436 ring_alloc_t _rp; \
Florin Corasc470e222018-08-01 07:53:18 -0700437 _rp.rp = svm_queue_alloc_and_init ((n), (sz), 0); \
Dave Barach59b25652017-09-10 15:04:27 -0400438 _rp.size = (sz); \
439 _rp.nitems = n; \
440 _rp.hits = 0; \
441 _rp.misses = 0; \
442 vec_add1(shmem_hdr->client_rings, _rp); \
443 } while (0);
444
445 foreach_clnt_aring_size;
446#undef _
Florin Coras90a63982017-12-19 04:50:01 -0800447}
448
449void
450vl_api_mem_config (vl_shmem_hdr_t * hdr, vl_api_shm_elem_config_t * config)
451{
Florin Coras90a63982017-12-19 04:50:01 -0800452 vl_api_shm_elem_config_t *c;
453 ring_alloc_t *rp;
454 u32 size;
455
456 if (!config)
457 {
458 vl_api_default_mem_config (hdr);
459 return;
460 }
461
462 vec_foreach (c, config)
463 {
464 switch (c->type)
465 {
466 case VL_API_QUEUE:
Florin Corasc470e222018-08-01 07:53:18 -0700467 hdr->vl_input_queue = svm_queue_alloc_and_init (c->count, c->size,
468 getpid ());
Florin Coras90a63982017-12-19 04:50:01 -0800469 continue;
470 case VL_API_VLIB_RING:
471 vec_add2 (hdr->vl_rings, rp, 1);
472 break;
473 case VL_API_CLIENT_RING:
474 vec_add2 (hdr->client_rings, rp, 1);
475 break;
476 default:
477 clib_warning ("unknown config type: %d", c->type);
478 continue;
479 }
480
481 size = sizeof (ring_alloc_t) + c->size;
Florin Corasc470e222018-08-01 07:53:18 -0700482 rp->rp = svm_queue_alloc_and_init (c->count, size, 0);
Florin Coras90a63982017-12-19 04:50:01 -0800483 rp->size = size;
484 rp->nitems = c->count;
485 rp->hits = 0;
486 rp->misses = 0;
487 }
488}
489
490void
491vl_init_shmem (svm_region_t * vlib_rp, vl_api_shm_elem_config_t * config,
492 int is_vlib, int is_private_region)
493{
494 api_main_t *am = &api_main;
495 vl_shmem_hdr_t *shmem_hdr = 0;
496 void *oldheap;
497 ASSERT (vlib_rp);
498
499 /* $$$$ need private region config parameters */
500
501 oldheap = svm_push_data_heap (vlib_rp);
502
503 vec_validate (shmem_hdr, 0);
504 shmem_hdr->version = VL_SHM_VERSION;
Florin Corasb384b542018-01-15 01:08:33 -0800505 shmem_hdr->clib_file_index = VL_API_INVALID_FI;
Florin Coras90a63982017-12-19 04:50:01 -0800506
507 /* Set up the queue and msg ring allocator */
508 vl_api_mem_config (shmem_hdr, config);
Dave Barach59b25652017-09-10 15:04:27 -0400509
510 if (is_private_region == 0)
511 {
512 am->shmem_hdr = shmem_hdr;
513 am->vlib_rp = vlib_rp;
514 am->our_pid = getpid ();
515 if (is_vlib)
516 am->shmem_hdr->vl_pid = am->our_pid;
517 }
518 else
519 shmem_hdr->vl_pid = am->our_pid;
520
521 svm_pop_heap (oldheap);
522
523 /*
524 * After absolutely everything that a client might see is set up,
525 * declare the shmem region valid
526 */
527 vlib_rp->user_ctx = shmem_hdr;
528
529 pthread_mutex_unlock (&vlib_rp->mutex);
530}
531
Dave Barach371e4e12016-07-08 09:38:52 -0400532int
Neale Rannse72be392017-04-26 13:59:20 -0700533vl_map_shmem (const char *region_name, int is_vlib)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700534{
Dave Barach371e4e12016-07-08 09:38:52 -0400535 svm_map_region_args_t _a, *a = &_a;
536 svm_region_t *vlib_rp, *root_rp;
Dave Barach371e4e12016-07-08 09:38:52 -0400537 api_main_t *am = &api_main;
Neale Ranns30307af2019-02-19 00:41:22 -0800538 int i;
Dave Barach371e4e12016-07-08 09:38:52 -0400539 struct timespec ts, tsrem;
Dave Wallacecfc997e2017-08-22 18:32:34 -0400540 char *vpe_api_region_suffix = "-vpe-api";
Ed Warnickecb9cada2015-12-08 15:45:58 -0700541
Dave Barachb7b92992018-10-17 10:38:51 -0400542 clib_memset (a, 0, sizeof (*a));
Jan Srnicek5beec812017-03-24 10:18:11 +0100543
Dave Wallacecfc997e2017-08-22 18:32:34 -0400544 if (strstr (region_name, vpe_api_region_suffix))
Jan Srnicek5beec812017-03-24 10:18:11 +0100545 {
Dave Wallacecfc997e2017-08-22 18:32:34 -0400546 u8 *root_path = format (0, "%s", region_name);
547 _vec_len (root_path) = (vec_len (root_path) -
548 strlen (vpe_api_region_suffix));
549 vec_terminate_c_string (root_path);
550 a->root_path = (const char *) root_path;
551 am->root_path = (const char *) root_path;
Jan Srnicek5beec812017-03-24 10:18:11 +0100552 }
553
Dave Barach371e4e12016-07-08 09:38:52 -0400554 if (is_vlib == 0)
Ole Troan3cdc25f2017-08-17 11:07:33 +0200555 {
Dave Barach22af4472018-12-27 13:57:41 -0500556 int tfd;
557 u8 *api_name;
558 /*
559 * Clients wait for vpp to set up the root / API regioins
560 */
561 if (am->root_path)
562 api_name = format (0, "/dev/shm/%s-%s%c", am->root_path,
563 region_name + 1, 0);
564 else
565 api_name = format (0, "/dev/shm%s%c", region_name, 0);
566
567 /* Wait up to 100 seconds... */
568 for (i = 0; i < 10000; i++)
569 {
570 ts.tv_sec = 0;
571 ts.tv_nsec = 10000 * 1000; /* 10 ms */
572 while (nanosleep (&ts, &tsrem) < 0)
573 ts = tsrem;
574 tfd = open ((char *) api_name, O_RDWR);
Steven Luong89053472019-03-05 20:07:31 -0800575 if (tfd >= 0)
Dave Barach22af4472018-12-27 13:57:41 -0500576 break;
577 }
578 vec_free (api_name);
579 if (tfd < 0)
580 {
581 clib_warning ("region init fail");
582 return -2;
583 }
584 close (tfd);
Neale Ranns30307af2019-02-19 00:41:22 -0800585 svm_region_init_chroot_uid_gid (am->root_path, getuid (), getgid ());
Ole Troan3cdc25f2017-08-17 11:07:33 +0200586 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700587
Jan Srnicek5beec812017-03-24 10:18:11 +0100588 if (a->root_path != NULL)
589 {
590 a->name = "/vpe-api";
591 }
592 else
593 a->name = region_name;
Dave Barachc3799992016-08-15 11:12:27 -0400594 a->size = am->api_size ? am->api_size : (16 << 20);
Dave Barach371e4e12016-07-08 09:38:52 -0400595 a->flags = SVM_FLAGS_MHEAP;
596 a->uid = am->api_uid;
597 a->gid = am->api_gid;
Dave Barachb3d93da2016-08-03 14:34:38 -0400598 a->pvt_heap_size = am->api_pvt_heap_size;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700599
Dave Barach371e4e12016-07-08 09:38:52 -0400600 vlib_rp = svm_region_find_or_create (a);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700601
Dave Barach371e4e12016-07-08 09:38:52 -0400602 if (vlib_rp == 0)
603 return (-2);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700604
Dave Barach371e4e12016-07-08 09:38:52 -0400605 pthread_mutex_lock (&vlib_rp->mutex);
606 /* Has someone else set up the shared-memory variable table? */
607 if (vlib_rp->user_ctx)
608 {
609 am->shmem_hdr = (void *) vlib_rp->user_ctx;
610 am->our_pid = getpid ();
611 if (is_vlib)
612 {
Florin Corase86a8ed2018-01-05 03:20:25 -0800613 svm_queue_t *q;
Dave Barach371e4e12016-07-08 09:38:52 -0400614 uword old_msg;
615 /*
616 * application restart. Reset cached pids, API message
617 * rings, list of clients; otherwise, various things
618 * fail. (e.g. queue non-empty notification)
619 */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700620
Dave Barach371e4e12016-07-08 09:38:52 -0400621 /* ghosts keep the region from disappearing properly */
622 svm_client_scan_this_region_nolock (vlib_rp);
623 am->shmem_hdr->application_restarts++;
624 q = am->shmem_hdr->vl_input_queue;
625 am->shmem_hdr->vl_pid = getpid ();
626 q->consumer_pid = am->shmem_hdr->vl_pid;
627 /* Drain the input queue, freeing msgs */
628 for (i = 0; i < 10; i++)
629 {
630 if (pthread_mutex_trylock (&q->mutex) == 0)
631 {
632 pthread_mutex_unlock (&q->mutex);
633 goto mutex_ok;
634 }
635 ts.tv_sec = 0;
636 ts.tv_nsec = 10000 * 1000; /* 10 ms */
637 while (nanosleep (&ts, &tsrem) < 0)
638 ts = tsrem;
639 }
640 /* Mutex buggered, "fix" it */
Dave Barachb7b92992018-10-17 10:38:51 -0400641 clib_memset (&q->mutex, 0, sizeof (q->mutex));
Dave Barach371e4e12016-07-08 09:38:52 -0400642 clib_warning ("forcibly release main input queue mutex");
643
644 mutex_ok:
645 am->vlib_rp = vlib_rp;
Mohsin Kazmi3fca5672018-01-04 18:57:26 +0100646 while (svm_queue_sub (q, (u8 *) & old_msg, SVM_Q_NOWAIT, 0)
Dave Barach371e4e12016-07-08 09:38:52 -0400647 != -2 /* queue underflow */ )
648 {
649 vl_msg_api_free_nolock ((void *) old_msg);
650 am->shmem_hdr->restart_reclaims++;
651 }
652 pthread_mutex_unlock (&vlib_rp->mutex);
653 root_rp = svm_get_root_rp ();
654 ASSERT (root_rp);
655 /* Clean up the root region client list */
656 pthread_mutex_lock (&root_rp->mutex);
657 svm_client_scan_this_region_nolock (root_rp);
658 pthread_mutex_unlock (&root_rp->mutex);
659 }
660 else
661 {
662 pthread_mutex_unlock (&vlib_rp->mutex);
663 }
664 am->vlib_rp = vlib_rp;
665 vec_add1 (am->mapped_shmem_regions, vlib_rp);
666 return 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700667 }
Dave Barach371e4e12016-07-08 09:38:52 -0400668 /* Clients simply have to wait... */
669 if (!is_vlib)
670 {
671 pthread_mutex_unlock (&vlib_rp->mutex);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700672
Dave Barach371e4e12016-07-08 09:38:52 -0400673 /* Wait up to 100 seconds... */
674 for (i = 0; i < 10000; i++)
675 {
676 ts.tv_sec = 0;
677 ts.tv_nsec = 10000 * 1000; /* 10 ms */
678 while (nanosleep (&ts, &tsrem) < 0)
679 ts = tsrem;
680 if (vlib_rp->user_ctx)
681 goto ready;
682 }
683 /* Clean up and leave... */
684 svm_region_unmap (vlib_rp);
685 clib_warning ("region init fail");
686 return (-2);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700687
688 ready:
Dave Barach371e4e12016-07-08 09:38:52 -0400689 am->shmem_hdr = (void *) vlib_rp->user_ctx;
690 am->our_pid = getpid ();
691 am->vlib_rp = vlib_rp;
692 vec_add1 (am->mapped_shmem_regions, vlib_rp);
693 return 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700694 }
695
Dave Barach371e4e12016-07-08 09:38:52 -0400696 /* Nope, it's our problem... */
Florin Coras90a63982017-12-19 04:50:01 -0800697 vl_init_shmem (vlib_rp, 0 /* default config */ , 1 /* is vlib */ ,
698 0 /* is_private_region */ );
Ed Warnickecb9cada2015-12-08 15:45:58 -0700699
Dave Barach371e4e12016-07-08 09:38:52 -0400700 vec_add1 (am->mapped_shmem_regions, vlib_rp);
701 return 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700702}
703
Dave Barach371e4e12016-07-08 09:38:52 -0400704void
705vl_register_mapped_shmem_region (svm_region_t * rp)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700706{
Dave Barach371e4e12016-07-08 09:38:52 -0400707 api_main_t *am = &api_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700708
Dave Barach371e4e12016-07-08 09:38:52 -0400709 vec_add1 (am->mapped_shmem_regions, rp);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700710}
711
Florin Corasd6c30d92018-01-29 05:11:24 -0800712static void
713vl_unmap_shmem_internal (u8 is_client)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700714{
Dave Barach371e4e12016-07-08 09:38:52 -0400715 svm_region_t *rp;
716 int i;
717 api_main_t *am = &api_main;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700718
Dave Barach371e4e12016-07-08 09:38:52 -0400719 if (!svm_get_root_rp ())
720 return;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700721
Dave Barach371e4e12016-07-08 09:38:52 -0400722 for (i = 0; i < vec_len (am->mapped_shmem_regions); i++)
723 {
724 rp = am->mapped_shmem_regions[i];
Florin Corasd6c30d92018-01-29 05:11:24 -0800725 is_client ? svm_region_unmap_client (rp) : svm_region_unmap (rp);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700726 }
727
Dave Barach371e4e12016-07-08 09:38:52 -0400728 vec_free (am->mapped_shmem_regions);
729 am->shmem_hdr = 0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700730
Florin Corasd6c30d92018-01-29 05:11:24 -0800731 is_client ? svm_region_exit_client () : svm_region_exit ();
732
Dave Barach371e4e12016-07-08 09:38:52 -0400733 /* $$$ more careful cleanup, valgrind run... */
734 vec_free (am->msg_handlers);
735 vec_free (am->msg_endian_handlers);
736 vec_free (am->msg_print_handlers);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700737}
738
Dave Barach371e4e12016-07-08 09:38:52 -0400739void
Florin Corasd6c30d92018-01-29 05:11:24 -0800740vl_unmap_shmem (void)
741{
742 vl_unmap_shmem_internal (0);
743}
744
745void
746vl_unmap_shmem_client (void)
747{
748 vl_unmap_shmem_internal (1);
749}
750
751void
Florin Corase86a8ed2018-01-05 03:20:25 -0800752vl_msg_api_send_shmem (svm_queue_t * q, u8 * elem)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700753{
Dave Barach371e4e12016-07-08 09:38:52 -0400754 api_main_t *am = &api_main;
755 uword *trace = (uword *) elem;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700756
Dave Barach371e4e12016-07-08 09:38:52 -0400757 if (am->tx_trace && am->tx_trace->enabled)
758 vl_msg_api_trace (am, am->tx_trace, (void *) trace[0]);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700759
Dave Barach0c4fec02018-11-18 12:03:48 -0500760 /*
761 * Announce a probable binary API client bug:
762 * some client's input queue is stuffed.
763 * The situation may be recoverable, or not.
764 */
765 if (PREDICT_FALSE
766 (am->vl_clients /* vpp side */ && (q->cursize == q->maxsize)))
767 clib_warning ("WARNING: client input queue at %llx is stuffed...", q);
Florin Corase86a8ed2018-01-05 03:20:25 -0800768 (void) svm_queue_add (q, elem, 0 /* nowait */ );
Ed Warnickecb9cada2015-12-08 15:45:58 -0700769}
770
Florin Corasaf0ff5a2018-01-10 08:17:03 -0800771int
772vl_mem_api_can_send (svm_queue_t * q)
773{
774 return (q->cursize < q->maxsize);
775}
776
Dave Barach371e4e12016-07-08 09:38:52 -0400777void
Florin Corase86a8ed2018-01-05 03:20:25 -0800778vl_msg_api_send_shmem_nolock (svm_queue_t * q, u8 * elem)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700779{
Dave Barach371e4e12016-07-08 09:38:52 -0400780 api_main_t *am = &api_main;
781 uword *trace = (uword *) elem;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700782
Dave Barach371e4e12016-07-08 09:38:52 -0400783 if (am->tx_trace && am->tx_trace->enabled)
784 vl_msg_api_trace (am, am->tx_trace, (void *) trace[0]);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700785
Florin Corase86a8ed2018-01-05 03:20:25 -0800786 (void) svm_queue_add_nolock (q, elem);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700787}
788
Dave Barach371e4e12016-07-08 09:38:52 -0400789/*
790 * fd.io coding-style-patch-verification: ON
791 *
792 * Local Variables:
793 * eval: (c-set-style "gnu")
794 * End:
795 */