FD.io VPP  v18.04-17-g3a0d853
Vector Packet Processing
memclnt.api
Go to the documentation of this file.
1 /* Hey Emacs use -*- mode: C -*- */
2 /*
3  * Copyright (c) 2015 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 option version = "1.0.0";
18 
19 /*
20  * Define services not following the normal convetions here
21  */
23  rpc memclnt_rx_thread_suspend returns null;
24  rpc memclnt_read_timeout returns null;
25  rpc rx_thread_exit returns null;
26  rpc trace_plugin_msg_ids returns null;
27 };
28 
29 /*
30  * Create a client registration
31  */
32 manual_print
33 define memclnt_create {
34  i32 ctx_quota; /* requested punt context quota */
35  u32 context; /* opaque value to be returned in the reply */
36  u64 input_queue; /* client's queue */
37  u8 name[64]; /* for show, find by name, whatever */
38  u32 api_versions[8]; /* client-server pairs use as desired */
39 };
40 
41 define memclnt_create_reply {
42  i32 response; /* Non-negative = success */
43  u64 handle; /* handle by which vlib knows this client */
44  u32 index; /* index, used e.g. by API trace replay */
45  u32 context; /* opaque value from the create request */
46  u64 message_table; /* serialized message table in shmem */
47 };
48 
49 /*
50  * Delete a client registration
51  */
52 manual_print
53 define memclnt_delete {
54  u32 index; /* index, used e.g. by API trace replay */
55  u64 handle; /* handle by which vlib knows this client */
56 };
57 
58 define memclnt_delete_reply {
59  i32 response; /* Non-negative = success */
60  u64 handle; /* in case the client wonders */
61 };
62 
63 /*
64  * Client RX thread exit
65  */
66 define rx_thread_exit {
68 };
69 
70 /*
71  * Client RX thread suspend
72  */
73 define memclnt_rx_thread_suspend {
75 };
76 
77 /*
78  * Client read timeout
79  */
80 define memclnt_read_timeout {
82 };
83 
84 /*
85  * RPC
86  */
87 autoreply define rpc_call {
90  u64 function;
94  u8 data[0];
95 };
96 
97 /*
98  * Lookup message-ID base by name
99  */
100 define get_first_msg_id {
103  u8 name[64];
104 };
105 
106 define get_first_msg_id_reply {
111 };
112 
113 /*
114  * Get API version table (includes built-in and plugins)
115  */
116 typeonly define module_version {
120  u8 name[64];
121 };
122 define api_versions {
125 };
126 define api_versions_reply {
132 };
133 
134 /*
135  * Trace the plugin message-id allocator
136  * so we stand a chance of dealing with different sets of plugins
137  * at api trace replay time
138  */
139 
140 manual_print define trace_plugin_msg_ids
141 {
144  u8 plugin_name[128];
147 };
148 
149 /*
150  * Create a socket client registration.
151  */
152 define sockclnt_create {
153  u8 name[64]; /* for show, find by name, whatever */
154  u32 context; /* opaque value to be returned in the reply */
155 };
156 
157 define sockclnt_create_reply {
158  i32 response; /* Non-negative = success */
159  u64 handle; /* handle by which vlib knows this client */
160  u32 index; /* index, used e.g. by API trace replay */
161  u32 context; /* opaque value from the create request */
162 };
163 
164 /*
165  * Delete a client registration
166  */
167 define sockclnt_delete {
168  u32 index; /* index, used e.g. by API trace replay */
169  u64 handle; /* handle by which vlib knows this client */
170 };
171 
172 define sockclnt_delete_reply {
173  i32 response; /* Non-negative = success */
174  u64 handle; /* in case the client wonders */
175 };
176 
177 /*
178  * Ask vpp for a memfd shared segment
179  */
180 define memfd_segment_create {
184 };
185 
186 /*
187  * Reply
188  */
189 define memfd_segment_create_reply
190 {
194 };
195 
196 /*
197  * Initialize shm api over socket api
198  */
199 define sock_init_shm {
204  u64 configs[nitems];
205 };
206 
207 define sock_init_shm_reply {
211 };
212 
213 /*
214  * Memory client ping / response
215  * Only sent on inactive connections
216  */
217 autoreply define memclnt_keepalive
218 {
221 };
service
Definition: memclnt.api:22
rpc memclnt_read_timeout returns null
Definition: memclnt.api:24
int i32
Definition: types.h:81
unsigned long u64
Definition: types.h:89
unsigned int u32
Definition: types.h:88
option version
Definition: memclnt.api:17
size_t count
Definition: vapi.c:42
unsigned short u16
Definition: types.h:57
unsigned char u8
Definition: types.h:56