FD.io VPP  v17.10-9-gd594711
Vector Packet Processing
session.api
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2015-2016 Cisco and/or its affiliates.
3  * Licensed under the Apache License, Version 2.0 (the "License");
4  * you may not use this file except in compliance with the License.
5  * You may obtain a copy of the License at:
6  *
7  * http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software
10  * distributed under the License is distributed on an "AS IS" BASIS,
11  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12  * See the License for the specific language governing permissions and
13  * limitations under the License.
14  */
15 
16 /** \brief client->vpp, attach application to session layer
17  @param client_index - opaque cookie to identify the sender
18  @param context - sender context, to match reply w/ request
19  @param initial_segment_size - size of the initial shm segment to be
20  allocated
21  @param options - segment size, fifo sizes, etc.
22 */
23  define application_attach {
27  u64 options[16];
28  };
29 
30  /** \brief Application attach reply
31  @param context - sender context, to match reply w/ request
32  @param retval - return code for the request
33  @param app_event_queue_address - vpp event queue address or 0 if this
34  connection shouldn't send events
35  @param segment_size - size of first shm segment
36  @param segment_name_length - length of segment name
37  @param segment_name - name of segment client needs to attach to
38 */
39 define application_attach_reply {
45  u8 segment_name[128];
46 };
47 
48  /** \brief client->vpp, attach application to session layer
49  @param client_index - opaque cookie to identify the sender
50  @param context - sender context, to match reply w/ request
51 */
52 autoreply define application_detach {
55  };
56 
57 /** \brief vpp->client, please map an additional shared memory segment
58  @param client_index - opaque cookie to identify the sender
59  @param context - sender context, to match reply w/ request
60  @param segment_name -
61 */
62 autoreply define map_another_segment {
66  u8 segment_name[128];
67 };
68 
69  /** \brief Bind to a given URI
70  @param client_index - opaque cookie to identify the sender
71  @param context - sender context, to match reply w/ request
72  @param accept_cookie - sender accept cookie, to identify this bind flavor
73  @param uri - a URI, e.g. "tcp://0.0.0.0/0/80" [ipv4]
74  "tcp://::/0/80" [ipv6] etc.
75  @param options - socket options, fifo sizes, etc.
76 */
77 autoreply define bind_uri {
81  u8 uri[128];
82 };
83 
84 /** \brief Unbind a given URI
85  @param client_index - opaque cookie to identify the sender
86  @param context - sender context, to match reply w/ request
87  @param uri - a URI, e.g. "tcp://0.0.0.0/0/80" [ipv4]
88  "tcp://::/0/80" [ipv6], etc.
89  @param options - socket options, fifo sizes, etc.
90 */
91 autoreply define unbind_uri {
94  u8 uri[128];
95 };
96 
97 /** \brief Connect to a given URI
98  @param client_index - opaque cookie to identify the sender
99  @param context - sender context, to match reply w/ request
100  @param accept_cookie - sender accept cookie, to identify this bind flavor
101  @param uri - a URI, e.g. "tcp4://0.0.0.0/0/80"
102  "tcp6://::/0/80" [ipv6], etc.
103  @param options - socket options, fifo sizes, etc. passed by vpp to the
104  server when redirecting connects
105  @param client_queue_address - binary API client queue address. Used by
106  local server when connect was redirected.
107 */
108 autoreply define connect_uri {
111  u8 uri[128];
113  u64 options[16];
114 };
115 
116 /** \brief vpp->client, accept this session
117  @param context - sender context, to match reply w/ request
118  @param listener_handle - tells client which listener this pertains to
119  @param handle - unique session identifier
120  @param session_thread_index - thread index of new session
121  @param rx_fifo_address - rx (vpp -> vpp-client) fifo address
122  @param tx_fifo_address - tx (vpp-client -> vpp) fifo address
123  @param vpp_event_queue_address - vpp's event queue address
124  @param port - remote port
125  @param is_ip4 - 1 if the ip is ip4
126  @param ip - remote ip
127 */
128 define accept_session {
138  u8 ip[16];
139 };
140 
141 /** \brief client->vpp, reply to an accept message
142  @param context - sender context, to match reply w/ request
143  @param retval - return code for the request
144  @param session_index - session index from accept_session / connect_reply
145  @param session_thread_index - thread index from accept_session /
146  connect_reply
147 */
148 define accept_session_reply {
152 };
153 
154 /** \brief bidirectional disconnect API
155  @param client_index - opaque cookie to identify the sender
156  client to vpp direction only
157  @param context - sender context, to match reply w/ request
158  @param handle - session handle obtained from accept/connect
159 */
160 define disconnect_session {
164 };
165 
166 /** \brief bidirectional disconnect reply API
167  @param client_index - opaque cookie to identify the sender
168  client to vpp direction only
169  @param context - sender context, to match reply w/ request
170  @param retval - return code for the request
171  @param handle - session handle
172 */
173 define disconnect_session_reply {
178 };
179 
180 /** \brief vpp->client reset session API
181  @param client_index - opaque cookie to identify the sender
182  client to vpp direction only
183  @param context - sender context, to match reply w/ request
184  @param handle - session handle obtained via accept/connects
185 */
186 define reset_session {
190 };
191 
192 /** \brief client->vpp reset session reply
193  @param client_index - opaque cookie to identify the sender
194  client to vpp direction only
195  @param context - sender context, to match reply w/ request
196  @param retval - return code for the request
197  @param handle - session handle obtained via accept/connect
198 */
199 define reset_session_reply {
204 };
205 
206 /** \brief Bind to an ip:port pair for a given transport protocol
207  @param client_index - opaque cookie to identify the sender
208  @param context - sender context, to match reply w/ request
209  @param vrf - bind namespace
210  @param is_ip4 - flag that is 1 if ip address family is IPv4
211  @param ip - ip address
212  @param port - port
213  @param proto - protocol 0 - TCP 1 - UDP
214  @param options - socket options, fifo sizes, etc.
215 */
216 define bind_sock {
221  u8 ip[16];
224  u64 options[16];
225 };
226 
227 /** \brief Unbind
228  @param client_index - opaque cookie to identify the sender
229  @param context - sender context, to match reply w/ request
230  @param handle - bind handle obtained from bind reply
231 */
232 autoreply define unbind_sock {
236 };
237 
238 /** \brief Connect to a remote peer
239  @param client_index - opaque cookie to identify the sender
240  @param context - sender context, to match reply w/ request
241  @param app_connect - application connection id to be returned in reply
242  @param vrf - connection namespace
243  @param is_ip4 - flag that is 1 if ip address family is IPv4
244  @param ip - ip address
245  @param port - port
246  @param proto - protocol 0 - TCP 1 - UDP
247  @param client_queue_address - client's API queue address. Non-zero when
248  used to perform redirects
249  @param options - socket options, fifo sizes, etc. when doing redirects
250 */
251 autoreply define connect_sock {
256  u8 ip[16];
260  u64 options[16];
261 };
262 
263 /** \brief Bind reply
264  @param context - sender context, to match reply w/ request
265  @param handle - bind handle
266  @param retval - return code for the request
267  @param event_queue_address - vpp event queue address or 0 if this
268  connection shouldn't send events
269  @param segment_name_length - length of segment name
270  @param segment_name - name of segment client needs to attach to
271 */
272 define bind_sock_reply {
279  u8 segment_name[128];
280 };
281 
282 /* Dummy connect message -- needed to satisfy api generators
283 *
284 * NEVER USED, doxygen tags elided on purpose.
285 */
286 define connect_session {
289 };
290 
291 /** \brief vpp/server->client, connect reply -- used for all connect_* messages
292  @param context - sender context, to match reply w/ request
293  @param retval - return code for the request
294  @param handle - connection handle
295  @param server_rx_fifo - rx (vpp -> vpp-client) fifo address
296  @param server_tx_fifo - tx (vpp-client -> vpp) fifo address
297  @param vpp_event_queue_address - vpp's event queue address
298  @param segment_size - size of segment to be attached. Only for redirects.
299  @param segment_name_length - non-zero if the client needs to attach to
300  the fifo segment
301  @param segment_name - set if the client needs to attach to the segment
302 */
303 define connect_session_reply {
312  u8 segment_name[128];
313 };
314 
315 /** \brief enable/disable session layer
316  @param client_index - opaque cookie to identify the sender
317  client to vpp direction only
318  @param context - sender context, to match reply w/ request
319  @param is_enable - disable session layer if 0, enable otherwise
320 */
321 autoreply define session_enable_disable {
325 };
326 
327 /*
328  * Local Variables:
329  * eval: (c-set-style "gnu")
330  * End:
331  */
int i32
Definition: types.h:81
unsigned long u64
Definition: types.h:89
unsigned int u32
Definition: types.h:88
unsigned short u16
Definition: types.h:57
unsigned char u8
Definition: types.h:56