blob: 4c4773d060b0f164fdfbf5d9d6bac9d752fbf4eb [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;
Florin Corasb384b542018-01-15 01:08:33 -0800102
103 /* Socket file index used to bootstrap shmem region */
104 u32 clib_file_index;
Florin Corase86a8ed2018-01-05 03:20:25 -0800105} vl_shmem_hdr_t;
106
107#define VL_SHM_VERSION 2
108#define VL_API_EPOCH_MASK 0xFF
109#define VL_API_EPOCH_SHIFT 8
110
111void *vl_msg_api_alloc (int nbytes);
Vratko Polakfc4828c2019-07-02 11:07:24 +0200112void *vl_msg_api_alloc_zero (int nbytes);
Florin Corase86a8ed2018-01-05 03:20:25 -0800113void *vl_msg_api_alloc_or_null (int nbytes);
114void *vl_msg_api_alloc_as_if_client (int nbytes);
Vratko Polakfc4828c2019-07-02 11:07:24 +0200115void *vl_msg_api_alloc_zero_as_if_client (int nbytes);
Florin Corase86a8ed2018-01-05 03:20:25 -0800116void *vl_msg_api_alloc_as_if_client_or_null (int nbytes);
Florin Corasb384b542018-01-15 01:08:33 -0800117void *vl_mem_api_alloc_as_if_client_w_reg (vl_api_registration_t * reg,
118 int nbytes);
Florin Corase86a8ed2018-01-05 03:20:25 -0800119void vl_msg_api_free (void *a);
Florin Coras8d820852019-11-27 09:15:25 -0800120void vl_msg_api_free_w_region (svm_region_t * vlib_rp, void *a);
Florin Corase86a8ed2018-01-05 03:20:25 -0800121int vl_map_shmem (const char *region_name, int is_vlib);
122void vl_unmap_shmem (void);
Florin Corasd6c30d92018-01-29 05:11:24 -0800123void vl_unmap_shmem_client (void);
Florin Corase86a8ed2018-01-05 03:20:25 -0800124void vl_register_mapped_shmem_region (svm_region_t * rp);
125void vl_msg_api_send_shmem (svm_queue_t * q, u8 * elem);
Florin Corasaf0ff5a2018-01-10 08:17:03 -0800126int vl_mem_api_can_send (svm_queue_t * q);
Florin Corase86a8ed2018-01-05 03:20:25 -0800127void vl_set_memory_region_name (const char *name);
128void vl_set_memory_root_path (const char *root_path);
129void vl_set_memory_uid (int uid);
130void vl_set_memory_gid (int gid);
131void vl_set_global_memory_baseva (u64 baseva);
132void vl_set_global_memory_size (u64 size);
133void vl_set_api_memory_size (u64 size);
134void vl_set_global_pvt_heap_size (u64 size);
135void vl_set_api_pvt_heap_size (u64 size);
136void vl_init_shmem (svm_region_t * vlib_rp, vl_api_shm_elem_config_t * config,
137 int is_vlib, int is_private_region);
138
139#endif /* SRC_VLIBMEMORY_MEMORY_SHARED_H_ */
140
141/*
142 * fd.io coding-style-patch-verification: ON
143 *
144 * Local Variables:
145 * eval: (c-set-style "gnu")
146 * End:
147 */