blob: 8a7667c14d311a470de59be09cd3a0f08fd6711a [file] [log] [blame]
Florin Corase86a8ed2018-01-05 03:20:25 -08001/*
2 *------------------------------------------------------------------
3 * Copyright (c) 2018 Cisco and/or its affiliates.
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at:
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 *------------------------------------------------------------------
16 */
17
18#ifndef SRC_VLIBMEMORY_MEMORY_SHARED_H_
19#define SRC_VLIBMEMORY_MEMORY_SHARED_H_
20
21#include <vlibapi/api_common.h>
22#include <vppinfra/error.h>
23
24/* Allocated in shared memory */
25
26/*
27 * Ring-allocation scheme for client API messages
28 *
29 * Only one proc/thread has control of a given message buffer.
30 * To free a buffer allocated from one of these rings, we clear
31 * a field in the buffer (header), and leave.
32 *
33 * No locks, no hits, no errors...
34 */
35typedef struct ring_alloc_
36{
37 svm_queue_t *rp;
38 u16 size;
39 u16 nitems;
40 u32 hits;
41 u32 misses;
42} ring_alloc_t;
43
44typedef enum
45{
46 VL_API_VLIB_RING,
47 VL_API_CLIENT_RING,
48 VL_API_QUEUE
49} vl_api_shm_config_type_t;
50
51typedef struct vl_api_shm_elem_config_
52{
53 u8 type;
54 u8 _pad;
55 u16 count;
56 u32 size;
57} vl_api_shm_elem_config_t;
58
59STATIC_ASSERT (sizeof (vl_api_shm_elem_config_t) == 8,
60 "Size must be exactly 8 bytes");
61
62/*
63 * Initializers for the (shared-memory) rings
64 * _(size, n). Note: each msg has space for a header.
65 */
66#define foreach_vl_aring_size \
67_(64+sizeof(ring_alloc_t), 1024) \
68_(256+sizeof(ring_alloc_t), 128) \
69_(1024+sizeof(ring_alloc_t), 64)
70
71#define foreach_clnt_aring_size \
72 _(1024+sizeof(ring_alloc_t), 1024) \
73 _(2048+sizeof(ring_alloc_t), 128) \
74 _(4096+sizeof(ring_alloc_t), 8)
75
76typedef struct vl_shmem_hdr_
77{
78 int version;
79
80 /* getpid () for the VLIB client process */
81 volatile int vl_pid;
82
83 /* Client sends VLIB msgs here. */
84 svm_queue_t *vl_input_queue;
85
86 /* Vector of rings; one for each size. */
87
88 /* VLIB allocates buffers to send msgs to clients here. */
89 ring_alloc_t *vl_rings;
90
91 /* Clients allocate buffer to send msgs to VLIB here. */
92 ring_alloc_t *client_rings;
93
94 /* Number of detected application restarts */
95 u32 application_restarts;
96
97 /* Number of messages reclaimed during application restart */
98 u32 restart_reclaims;
99
100 /* Number of garbage-collected messages */
101 u32 garbage_collects;
102} vl_shmem_hdr_t;
103
104#define VL_SHM_VERSION 2
105#define VL_API_EPOCH_MASK 0xFF
106#define VL_API_EPOCH_SHIFT 8
107
108void *vl_msg_api_alloc (int nbytes);
109void *vl_msg_api_alloc_or_null (int nbytes);
110void *vl_msg_api_alloc_as_if_client (int nbytes);
111void *vl_msg_api_alloc_as_if_client_or_null (int nbytes);
112void vl_msg_api_free (void *a);
113int vl_map_shmem (const char *region_name, int is_vlib);
114void vl_unmap_shmem (void);
115void vl_register_mapped_shmem_region (svm_region_t * rp);
116void vl_msg_api_send_shmem (svm_queue_t * q, u8 * elem);
117void vl_msg_api_send_shmem_nolock (svm_queue_t * q, u8 * elem);
Florin Corasaf0ff5a2018-01-10 08:17:03 -0800118int vl_mem_api_can_send (svm_queue_t * q);
Florin Corase86a8ed2018-01-05 03:20:25 -0800119void vl_set_memory_region_name (const char *name);
120void vl_set_memory_root_path (const char *root_path);
121void vl_set_memory_uid (int uid);
122void vl_set_memory_gid (int gid);
123void vl_set_global_memory_baseva (u64 baseva);
124void vl_set_global_memory_size (u64 size);
125void vl_set_api_memory_size (u64 size);
126void vl_set_global_pvt_heap_size (u64 size);
127void vl_set_api_pvt_heap_size (u64 size);
128void vl_init_shmem (svm_region_t * vlib_rp, vl_api_shm_elem_config_t * config,
129 int is_vlib, int is_private_region);
130
131#endif /* SRC_VLIBMEMORY_MEMORY_SHARED_H_ */
132
133/*
134 * fd.io coding-style-patch-verification: ON
135 *
136 * Local Variables:
137 * eval: (c-set-style "gnu")
138 * End:
139 */