blob: 19daecdfb6aca488273748c7252418ad1d4545aa [file] [log] [blame]
Klement Sekera58eb8662017-06-09 06:06:49 +02001/*
2 *------------------------------------------------------------------
3 * Copyright (c) 2009 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 included_vlibmemory_api_common_h
19#define included_vlibmemory_api_common_h
20
21#include <svm/svm_common.h>
22#include <vlibapi/api_common.h>
23#include <vlibmemory/unix_shared_memory_queue.h>
24
25/* Allocated in shared memory */
26
27/*
28 * Ring-allocation scheme for client API messages
29 *
30 * Only one proc/thread has control of a given message buffer.
31 * To free a buffer allocated from one of these rings, we clear
32 * a field in the buffer (header), and leave.
33 *
34 * No locks, no hits, no errors...
35 */
36typedef struct ring_alloc_
37{
38 unix_shared_memory_queue_t *rp;
39 u16 size;
40 u16 nitems;
41 u32 hits;
42 u32 misses;
43} ring_alloc_t;
44
45/*
46 * Initializers for the (shared-memory) rings
47 * _(size, n). Note: each msg has an 8 byte header.
48 * Might want to change that to an index sometime.
49 */
50#define foreach_vl_aring_size \
51_(64+8, 1024) \
52_(256+8, 128) \
53_(1024+8, 64)
54
55#define foreach_clnt_aring_size \
56_(1024+8, 1024) \
57_(2048+8, 128) \
58_(4096+8, 8)
59
60typedef struct vl_shmem_hdr_
61{
62 int version;
63
64 /* getpid () for the VLIB client process */
65 volatile int vl_pid;
66
67 /* Client sends VLIB msgs here. */
68 unix_shared_memory_queue_t *vl_input_queue;
69
70 /* Vector of rings; one for each size. */
71
72 /* VLIB allocates buffers to send msgs to clients here. */
73 ring_alloc_t *vl_rings;
74
75 /* Clients allocate buffer to send msgs to VLIB here. */
76 ring_alloc_t *client_rings;
77
78 /* Number of detected application restarts */
79 u32 application_restarts;
80
81 /* Number of messages reclaimed during application restart */
82 u32 restart_reclaims;
83
84 /* Number of garbage-collected messages */
85 u32 garbage_collects;
86
87} vl_shmem_hdr_t;
88
89#define VL_SHM_VERSION 2
90
91#define VL_API_EPOCH_MASK 0xFF
92#define VL_API_EPOCH_SHIFT 8
93
94void *vl_msg_api_alloc (int nbytes);
95void *vl_msg_api_alloc_or_null (int nbytes);
96void *vl_msg_api_alloc_as_if_client (int nbytes);
97void *vl_msg_api_alloc_as_if_client_or_null (int nbytes);
98void vl_msg_api_free (void *a);
99int vl_map_shmem (const char *region_name, int is_vlib);
100void vl_register_mapped_shmem_region (svm_region_t * rp);
101void vl_unmap_shmem (void);
102void vl_msg_api_send_shmem (unix_shared_memory_queue_t * q, u8 * elem);
103void vl_msg_api_send_shmem_nolock (unix_shared_memory_queue_t * q, u8 * elem);
104void vl_msg_api_send (vl_api_registration_t * rp, u8 * elem);
105int vl_client_connect (const char *name, int ctx_quota, int input_queue_size);
106void vl_client_disconnect (void);
107unix_shared_memory_queue_t *vl_api_client_index_to_input_queue (u32 index);
108vl_api_registration_t *vl_api_client_index_to_registration (u32 index);
109int vl_client_api_map (const char *region_name);
110void vl_client_api_unmap (void);
111void vl_set_memory_region_name (const char *name);
112void vl_set_memory_root_path (const char *root_path);
113void vl_set_memory_uid (int uid);
114void vl_set_memory_gid (int gid);
115void vl_set_global_memory_baseva (u64 baseva);
116void vl_set_global_memory_size (u64 size);
117void vl_set_api_memory_size (u64 size);
118void vl_set_global_pvt_heap_size (u64 size);
119void vl_set_api_pvt_heap_size (u64 size);
120void vl_client_disconnect_from_vlib (void);
121int vl_client_connect_to_vlib (const char *svm_name, const char *client_name,
122 int rx_queue_size);
123int vl_client_connect_to_vlib_no_rx_pthread (const char *svm_name,
124 const char *client_name,
125 int rx_queue_size);
126u16 vl_client_get_first_plugin_msg_id (const char *plugin_name);
127
128void vl_api_rpc_call_main_thread (void *fp, u8 * data, u32 data_length);
Dave Barach52851e62017-08-07 09:35:25 -0400129u32 vl_api_memclnt_create_internal (char *, unix_shared_memory_queue_t *);
Klement Sekera58eb8662017-06-09 06:06:49 +0200130
131#endif /* included_vlibmemory_api_common_h */
132
133/*
134 * fd.io coding-style-patch-verification: ON
135 *
136 * Local Variables:
137 * eval: (c-set-style "gnu")
138 * End:
139 */