blob: 33e53419a8d2da9a5509eb4e3a620593bb0ddb97 [file] [log] [blame]
Dave Barach68b0fb02017-02-28 15:15:56 -05001/*
Florin Coras64424012019-03-02 10:47:47 -08002 * Copyright (c) 2015-2019 Cisco and/or its affiliates.
Dave Barach68b0fb02017-02-28 15:15:56 -05003 * 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 */
Dave Barach0d056e52017-09-28 15:11:16 -040015
Florin Coras458089b2019-08-21 16:20:44 -070016option version = "1.7.0";
Dave Barach0d056e52017-09-28 15:11:16 -040017
Florin Coras6cf30ad2017-04-04 23:08:23 -070018/** \brief client->vpp, attach application to session layer
Florin Coras458089b2019-08-21 16:20:44 -070019 ### WILL BE DEPRECATED POST 20.01 ###
Florin Coras6cf30ad2017-04-04 23:08:23 -070020 @param client_index - opaque cookie to identify the sender
21 @param context - sender context, to match reply w/ request
Florin Coras458089b2019-08-21 16:20:44 -070022 @param initial_segment_size - size of the initial shm segment to be
Florin Coras6cf30ad2017-04-04 23:08:23 -070023 allocated
24 @param options - segment size, fifo sizes, etc.
Florin Corascea194d2017-10-02 00:18:51 -070025 @param namespace_id_len - length of the namespace id c-string
26 @param namespace_id - 0 terminted c-string
Florin Coras6cf30ad2017-04-04 23:08:23 -070027*/
28 define application_attach {
29 u32 client_index;
30 u32 context;
31 u32 initial_segment_size;
32 u64 options[16];
Florin Corascea194d2017-10-02 00:18:51 -070033 u8 namespace_id_len;
34 u8 namespace_id [64];
Florin Coras6cf30ad2017-04-04 23:08:23 -070035 };
Florin Coras458089b2019-08-21 16:20:44 -070036
Florin Coras6cf30ad2017-04-04 23:08:23 -070037 /** \brief Application attach reply
Florin Coras458089b2019-08-21 16:20:44 -070038 ### WILL BE DEPRECATED POST 20.01 ###
Florin Coras6cf30ad2017-04-04 23:08:23 -070039 @param context - sender context, to match reply w/ request
40 @param retval - return code for the request
Florin Coras458089b2019-08-21 16:20:44 -070041 @param app_event_queue_address - vpp event queue address or 0 if this
Florin Coras6cf30ad2017-04-04 23:08:23 -070042 connection shouldn't send events
Florin Coras99368312018-08-02 10:45:44 -070043 @param n_fds - number of fds exchanged
44 @param fd_flags - set of flags that indicate which fds are to be expected
Florin Coras458089b2019-08-21 16:20:44 -070045 over the socket (set only if socket transport available)
Florin Coras6cf30ad2017-04-04 23:08:23 -070046 @param segment_size - size of first shm segment
Florin Coras458089b2019-08-21 16:20:44 -070047 @param segment_name_length - length of segment name
Florin Coras6cf30ad2017-04-04 23:08:23 -070048 @param segment_name - name of segment client needs to attach to
Florin Corasc1f5a432018-11-20 11:31:26 -080049 @param app_index - index of the newly created app
Florin Corasd85de682018-11-29 17:02:29 -080050 @param segment_handle - handle for segment
Florin Coras6cf30ad2017-04-04 23:08:23 -070051*/
52define application_attach_reply {
53 u32 context;
54 i32 retval;
55 u64 app_event_queue_address;
Florin Coras99368312018-08-02 10:45:44 -070056 u8 n_fds;
57 u8 fd_flags;
Florin Coras6cf30ad2017-04-04 23:08:23 -070058 u32 segment_size;
59 u8 segment_name_length;
60 u8 segment_name[128];
Florin Corasc1f5a432018-11-20 11:31:26 -080061 u32 app_index;
Florin Corasd85de682018-11-29 17:02:29 -080062 u64 segment_handle;
Florin Coras6cf30ad2017-04-04 23:08:23 -070063};
64
Florin Coras458089b2019-08-21 16:20:44 -070065/** \brief Application attach to session layer
66 @param client_index - opaque cookie to identify the sender
67 @param context - sender context, to match reply w/ request
68 @param options - segment size, fifo sizes, etc.
69 @param namespace_id_len - length of the namespace id c-string
70 @param namespace_id - 0 terminted c-string
71*/
72 define app_attach {
73 u32 client_index;
74 u32 context;
75 u64 options[16];
76 u8 namespace_id_len;
77 u8 namespace_id[64];
78 };
79
80 /** \brief Application attach reply
81 @param context - sender context, to match reply w/ request
82 @param retval - return code for the request
83 @param app_mq - app message queue
84 @param vpp_ctrl_mq - vpp message queue for control events that should
85 be handled in main thread, i.e., bind/connect
86 @param vpp_ctrl_mq_thread_index - thread index of the ctrl mq
87 @param app_index - index of the newly created app
88 @param n_fds - number of fds exchanged
89 @param fd_flags - set of flags that indicate which fds are to be expected
90 over the socket (set only if socket transport available)
91 @param segment_size - size of first shm segment
92 @param segment_name_length - length of segment name
93 @param segment_name - name of segment client needs to attach to
94 @param segment_handle - handle for segment
95*/
96define app_attach_reply {
97 u32 context;
98 i32 retval;
99 u64 app_mq;
100 u64 vpp_ctrl_mq;
101 u8 vpp_ctrl_mq_thread;
102 u32 app_index;
103 u8 n_fds;
104 u8 fd_flags;
105 u32 segment_size;
106 u8 segment_name_length;
107 u8 segment_name[128];
108 u64 segment_handle;
109};
110
Nathan Skrzypczak79f89532019-09-13 11:08:13 +0200111/** \brief Add certificate and key
112 @param client_index - opaque cookie to identify the sender
113 @param context - sender context, to match reply w/ request
114 @param engine - crypto engine
115 @param cert_len - cert length (comes first)
116 @param certkey_len - cert and key length
117 @param certkey - cert & key data (due to API limitation)
118*/
119define app_add_cert_key_pair {
120 u32 client_index;
121 u32 context;
122 u16 cert_len;
123 u16 certkey_len;
124 u8 certkey[certkey_len];
125};
126
127/** \brief Add certificate and key
128 @param context - sender context, to match reply w/ request
129 @param retval - return code for the request
130 @param index - index in certificate store
131*/
132define app_add_cert_key_pair_reply {
133 u32 context;
134 i32 retval;
135 u32 index;
136};
137
138/** \brief Delete certificate and key
139 @param client_index - opaque cookie to identify the sender
140 @param context - sender context, to match reply w/ request
141 @param index - index in certificate store
142*/
143autoreply define app_del_cert_key_pair {
144 u32 client_index;
145 u32 context;
146 u32 index;
147};
148
Florin Coras371ca502018-02-21 12:07:41 -0800149/** \brief Application add TLS certificate
Nathan Skrzypczak79f89532019-09-13 11:08:13 +0200150 ### WILL BE DEPRECATED POST 20.01 ###
Florin Coras371ca502018-02-21 12:07:41 -0800151 @param client_index - opaque cookie to identify the sender
152 @param context - sender context, to match reply w/ request
153 @param cert_len - certificate length
154 @param cert - certificate as a string
155*/
156autoreply define application_tls_cert_add {
157 u32 client_index;
158 u32 context;
159 u32 app_index;
160 u16 cert_len;
161 u8 cert[cert_len];
162};
163
164/** \brief Application add TLS key
Nathan Skrzypczak79f89532019-09-13 11:08:13 +0200165 ### WILL BE DEPRECATED POST 20.01 ###
Florin Coras371ca502018-02-21 12:07:41 -0800166 @param client_index - opaque cookie to identify the sender
167 @param context - sender context, to match reply w/ request
168 @param key_len - certificate length
169 @param key - PEM encoded key as a string
170*/
171autoreply define application_tls_key_add {
172 u32 client_index;
173 u32 context;
174 u32 app_index;
175 u16 key_len;
176 u8 key[key_len];
177};
178
Florin Coras6cf30ad2017-04-04 23:08:23 -0700179 /** \brief client->vpp, attach application to session layer
Florin Coras458089b2019-08-21 16:20:44 -0700180 ### WILL BE DEPRECATED POST 20.01 ###
Florin Coras6cf30ad2017-04-04 23:08:23 -0700181 @param client_index - opaque cookie to identify the sender
182 @param context - sender context, to match reply w/ request
183*/
Dave Barach11b8dbf2017-04-24 10:46:54 -0400184autoreply define application_detach {
Florin Coras6cf30ad2017-04-04 23:08:23 -0700185 u32 client_index;
186 u32 context;
187 };
Florin Coras458089b2019-08-21 16:20:44 -0700188
Florin Coras6cf30ad2017-04-04 23:08:23 -0700189/** \brief vpp->client, please map an additional shared memory segment
190 @param client_index - opaque cookie to identify the sender
191 @param context - sender context, to match reply w/ request
Florin Coras458089b2019-08-21 16:20:44 -0700192 @param fd_flags - set of flags that indicate which, if any, fds are
193 to be expected over the socket. This is set only if
Florin Coras99368312018-08-02 10:45:44 -0700194 socket transport available
195 @param segment_size - size of the segment to be mapped
196 @param segment_name - name of the segment to be mapped
Florin Corasfa76a762018-11-29 12:40:10 -0800197 @param segment_handle - unique identifier for segment
Florin Coras6cf30ad2017-04-04 23:08:23 -0700198*/
Dave Barach11b8dbf2017-04-24 10:46:54 -0400199autoreply define map_another_segment {
Florin Coras6cf30ad2017-04-04 23:08:23 -0700200 u32 client_index;
201 u32 context;
Florin Coras99368312018-08-02 10:45:44 -0700202 u8 fd_flags;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700203 u32 segment_size;
204 u8 segment_name[128];
Florin Corasfa76a762018-11-29 12:40:10 -0800205 u64 segment_handle;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700206};
207
Florin Corasf8f516a2018-02-08 15:10:09 -0800208/** \brief vpp->client unmap shared memory segment
209 @param client_index - opaque cookie to identify the sender
210 @param context - sender context, to match reply w/ request
Florin Corasfa76a762018-11-29 12:40:10 -0800211 @param segment_name - segment name
Florin Coras458089b2019-08-21 16:20:44 -0700212 @param segment_handle - handle of the segment to be unmapped
Florin Corasf8f516a2018-02-08 15:10:09 -0800213*/
214autoreply define unmap_segment {
215 u32 client_index;
216 u32 context;
Florin Corasfa76a762018-11-29 12:40:10 -0800217 u64 segment_handle;
Florin Corasf8f516a2018-02-08 15:10:09 -0800218};
219
Dave Barach68b0fb02017-02-28 15:15:56 -0500220 /** \brief Bind to a given URI
Florin Coras458089b2019-08-21 16:20:44 -0700221 ### WILL BE DEPRECATED POST 20.01 ###
Dave Barach68b0fb02017-02-28 15:15:56 -0500222 @param client_index - opaque cookie to identify the sender
223 @param context - sender context, to match reply w/ request
224 @param accept_cookie - sender accept cookie, to identify this bind flavor
225 @param uri - a URI, e.g. "tcp://0.0.0.0/0/80" [ipv4]
226 "tcp://::/0/80" [ipv6] etc.
227 @param options - socket options, fifo sizes, etc.
228*/
Florin Coras64424012019-03-02 10:47:47 -0800229autoreply define bind_uri {
Dave Barach68b0fb02017-02-28 15:15:56 -0500230 u32 client_index;
231 u32 context;
232 u32 accept_cookie;
Dave Barach68b0fb02017-02-28 15:15:56 -0500233 u8 uri[128];
Dave Barach68b0fb02017-02-28 15:15:56 -0500234};
Florin Coras7fb0fe12018-04-09 09:24:52 -0700235
Dave Barach68b0fb02017-02-28 15:15:56 -0500236/** \brief Unbind a given URI
Florin Coras458089b2019-08-21 16:20:44 -0700237 ### WILL BE DEPRECATED POST 20.01 ###
Dave Barach68b0fb02017-02-28 15:15:56 -0500238 @param client_index - opaque cookie to identify the sender
239 @param context - sender context, to match reply w/ request
240 @param uri - a URI, e.g. "tcp://0.0.0.0/0/80" [ipv4]
241 "tcp://::/0/80" [ipv6], etc.
242 @param options - socket options, fifo sizes, etc.
243*/
Dave Barach11b8dbf2017-04-24 10:46:54 -0400244autoreply define unbind_uri {
Dave Barach68b0fb02017-02-28 15:15:56 -0500245 u32 client_index;
246 u32 context;
247 u8 uri[128];
248};
249
250/** \brief Connect to a given URI
Florin Coras458089b2019-08-21 16:20:44 -0700251 ### WILL BE DEPRECATED POST 20.01 ###
Dave Barach68b0fb02017-02-28 15:15:56 -0500252 @param client_index - opaque cookie to identify the sender
253 @param context - sender context, to match reply w/ request
Florin Coras458089b2019-08-21 16:20:44 -0700254 @param client_queue_address - binary API client queue address. Used by
Florin Coras6cf30ad2017-04-04 23:08:23 -0700255 local server when connect was redirected.
Florin Corascea194d2017-10-02 00:18:51 -0700256 @param options - socket options, fifo sizes, etc. passed by vpp to the
Florin Coras458089b2019-08-21 16:20:44 -0700257 server when redirecting connects
Florin Corascea194d2017-10-02 00:18:51 -0700258 @param uri - a URI, e.g. "tcp4://0.0.0.0/0/80"
259 "tcp6://::/0/80" [ipv6], etc.
Dave Barach68b0fb02017-02-28 15:15:56 -0500260*/
Dave Wallace33e002b2017-09-06 01:20:02 -0400261autoreply define connect_uri {
Dave Barach68b0fb02017-02-28 15:15:56 -0500262 u32 client_index;
263 u32 context;
Dave Barach68b0fb02017-02-28 15:15:56 -0500264 u64 client_queue_address;
265 u64 options[16];
Florin Corascea194d2017-10-02 00:18:51 -0700266 u8 uri[128];
Dave Barach68b0fb02017-02-28 15:15:56 -0500267};
268
Dave Barach68b0fb02017-02-28 15:15:56 -0500269/** \brief bidirectional disconnect API
Florin Coras458089b2019-08-21 16:20:44 -0700270 ### WILL BE DEPRECATED POST 20.01 ###
Dave Barach68b0fb02017-02-28 15:15:56 -0500271 @param client_index - opaque cookie to identify the sender
272 client to vpp direction only
273 @param context - sender context, to match reply w/ request
Florin Coras6cf30ad2017-04-04 23:08:23 -0700274 @param handle - session handle obtained from accept/connect
Dave Barach68b0fb02017-02-28 15:15:56 -0500275*/
276define disconnect_session {
277 u32 client_index;
278 u32 context;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700279 u64 handle;
Dave Barach68b0fb02017-02-28 15:15:56 -0500280};
281
282/** \brief bidirectional disconnect reply API
Florin Coras458089b2019-08-21 16:20:44 -0700283 ### WILL BE DEPRECATED POST 20.01 ###
Dave Barach68b0fb02017-02-28 15:15:56 -0500284 @param client_index - opaque cookie to identify the sender
285 client to vpp direction only
286 @param context - sender context, to match reply w/ request
287 @param retval - return code for the request
Florin Coras6cf30ad2017-04-04 23:08:23 -0700288 @param handle - session handle
Dave Barach68b0fb02017-02-28 15:15:56 -0500289*/
290define disconnect_session_reply {
Dave Barach68b0fb02017-02-28 15:15:56 -0500291 u32 context;
292 i32 retval;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700293 u64 handle;
Dave Barach68b0fb02017-02-28 15:15:56 -0500294};
295
Dave Barach68b0fb02017-02-28 15:15:56 -0500296/** \brief Bind to an ip:port pair for a given transport protocol
Florin Coras458089b2019-08-21 16:20:44 -0700297 ### WILL BE DEPRECATED POST 20.01 ###
Dave Barach68b0fb02017-02-28 15:15:56 -0500298 @param client_index - opaque cookie to identify the sender
299 @param context - sender context, to match reply w/ request
Florin Coras15531972018-08-12 23:50:53 -0700300 @param wrk_index - index of worker requesting the bind
Dave Barach68b0fb02017-02-28 15:15:56 -0500301 @param vrf - bind namespace
302 @param is_ip4 - flag that is 1 if ip address family is IPv4
303 @param ip - ip address
Florin Coras458089b2019-08-21 16:20:44 -0700304 @param port - port
Dave Barach68b0fb02017-02-28 15:15:56 -0500305 @param proto - protocol 0 - TCP 1 - UDP
306 @param options - socket options, fifo sizes, etc.
307*/
Florin Coras64424012019-03-02 10:47:47 -0800308autoreply define bind_sock {
Dave Barach68b0fb02017-02-28 15:15:56 -0500309 u32 client_index;
310 u32 context;
Florin Coras15531972018-08-12 23:50:53 -0700311 u32 wrk_index;
Dave Barach68b0fb02017-02-28 15:15:56 -0500312 u32 vrf;
313 u8 is_ip4;
314 u8 ip[16];
315 u16 port;
316 u8 proto;
317 u64 options[16];
318};
319
Florin Coras458089b2019-08-21 16:20:44 -0700320/** \brief Unbind
321 ### WILL BE DEPRECATED POST 20.01 ###s
Dave Barach68b0fb02017-02-28 15:15:56 -0500322 @param client_index - opaque cookie to identify the sender
323 @param context - sender context, to match reply w/ request
Florin Corasab2f6db2018-08-31 14:31:41 -0700324 @param wrk_index - index of worker requesting the bind
Dave Barach68b0fb02017-02-28 15:15:56 -0500325 @param handle - bind handle obtained from bind reply
326*/
Dave Barach11b8dbf2017-04-24 10:46:54 -0400327autoreply define unbind_sock {
Dave Barach68b0fb02017-02-28 15:15:56 -0500328 u32 client_index;
329 u32 context;
Florin Corasab2f6db2018-08-31 14:31:41 -0700330 u32 wrk_index;
Dave Barach68b0fb02017-02-28 15:15:56 -0500331 u64 handle;
332};
333
334/** \brief Connect to a remote peer
Florin Coras458089b2019-08-21 16:20:44 -0700335 ### WILL BE DEPRECATED POST 20.01 ###
Dave Barach68b0fb02017-02-28 15:15:56 -0500336 @param client_index - opaque cookie to identify the sender
337 @param context - sender context, to match reply w/ request
Florin Coras15531972018-08-12 23:50:53 -0700338 @param wrk_index - worker that requests the connect
Florin Coras458089b2019-08-21 16:20:44 -0700339 @param client_queue_address - client's API queue address. Non-zero when
Florin Corascea194d2017-10-02 00:18:51 -0700340 used to perform redirects
341 @param options - socket options, fifo sizes, etc. when doing redirects
Dave Barach68b0fb02017-02-28 15:15:56 -0500342 @param vrf - connection namespace
343 @param is_ip4 - flag that is 1 if ip address family is IPv4
344 @param ip - ip address
Florin Coras458089b2019-08-21 16:20:44 -0700345 @param port - port
Dave Barach68b0fb02017-02-28 15:15:56 -0500346 @param proto - protocol 0 - TCP 1 - UDP
Florin Coras8f89dd02018-03-05 16:53:07 -0800347 @param hostname-len - length of hostname
348 @param hostname - destination's hostname. If present, used by protocols
349 like tls.
Nathan Skrzypczak8ac1d6d2019-07-17 11:02:20 +0200350 @param parent_handle - handle of parent session (e.g. for opening quic streams).
Dave Barach68b0fb02017-02-28 15:15:56 -0500351*/
Dave Wallace33e002b2017-09-06 01:20:02 -0400352autoreply define connect_sock {
Dave Barach68b0fb02017-02-28 15:15:56 -0500353 u32 client_index;
354 u32 context;
Florin Coras15531972018-08-12 23:50:53 -0700355 u32 wrk_index;
Florin Corascea194d2017-10-02 00:18:51 -0700356 u64 client_queue_address;
357 u64 options[16];
Dave Barach68b0fb02017-02-28 15:15:56 -0500358 u32 vrf;
359 u8 is_ip4;
360 u8 ip[16];
361 u16 port;
362 u8 proto;
Ole Troane5ff5a32019-08-23 22:55:18 +0200363 u64 parent_handle;
Florin Coras8f89dd02018-03-05 16:53:07 -0800364 u8 hostname_len;
365 u8 hostname[hostname_len];
Dave Barach68b0fb02017-02-28 15:15:56 -0500366};
367
Florin Coras99368312018-08-02 10:45:44 -0700368/** \brief ask app to add a new cut-through registration
Florin Coras458089b2019-08-21 16:20:44 -0700369 ### WILL BE DEPRECATED POST 20.01 ###
Florin Coras99368312018-08-02 10:45:44 -0700370 @param client_index - opaque cookie to identify the sender
371 client to vpp direction only
372 @param context - sender context, to match reply w/ request
373 @param evt_q_address - address of the mq in ssvm segment
374 @param peer_evt_q_address - address of peer's mq in ssvm segment
Florin Coras134a9962018-08-28 11:32:04 -0700375 @param wrk_index - index of worker to receive the registration
Florin Coras99368312018-08-02 10:45:44 -0700376 @param n_fds - number of fds exchanged
377 @param fd_flags - flag indicating the fds that will be exchanged over
378 api socket
379*/
380autoreply define app_cut_through_registration_add
381{
382 u32 client_index;
383 u32 context;
384 u64 evt_q_address;
385 u64 peer_evt_q_address;
Florin Coras134a9962018-08-28 11:32:04 -0700386 u32 wrk_index;
Florin Coras99368312018-08-02 10:45:44 -0700387 u8 n_fds;
388 u8 fd_flags;
389};
390
Florin Coras15531972018-08-12 23:50:53 -0700391/** \brief add/del application worker
392 @param client_index - opaque cookie to identify the sender
393 client to vpp direction only
394 @param context - sender context, to match reply w/ request
Florin Corasc1f5a432018-11-20 11:31:26 -0800395 @param app_index - application index
Florin Coras15531972018-08-12 23:50:53 -0700396 @param wrk_index - worker index, if a delete
397 @param is_add - set if an add
398*/
399define app_worker_add_del
400{
401 u32 client_index;
402 u32 context;
Florin Corasc1f5a432018-11-20 11:31:26 -0800403 u32 app_index;
Florin Coras15531972018-08-12 23:50:53 -0700404 u32 wrk_index;
405 u8 is_add;
406};
407
408/** \brief Reply for app worker add/del
409 @param context - returned sender context, to match reply w/ request
410 @param retval - return code
411 @param wrk_index - worker index, if add
412 @param app_event_queue_address - vpp event queue address of new worker
413 @param n_fds - number of fds exchanged
414 @param fd_flags - set of flags that indicate which fds are to be expected
Florin Coras458089b2019-08-21 16:20:44 -0700415 over the socket (set only if socket transport available)
416 @param segment_name_length - length of segment name
Florin Coras15531972018-08-12 23:50:53 -0700417 @param segment_name - name of segment client needs to attach to
Florin Corasfa76a762018-11-29 12:40:10 -0800418 @param segment_handle - handle for segment
Florin Coras15531972018-08-12 23:50:53 -0700419*/
420define app_worker_add_del_reply
421{
422 u32 context;
423 i32 retval;
424 u32 wrk_index;
425 u64 app_event_queue_address;
426 u8 n_fds;
427 u8 fd_flags;
428 u8 segment_name_length;
429 u8 segment_name[128];
Florin Corasfa76a762018-11-29 12:40:10 -0800430 u64 segment_handle;
Florin Coras15531972018-08-12 23:50:53 -0700431 u8 is_add;
432};
433
Florin Corase04c2992017-03-01 08:17:34 -0800434/** \brief enable/disable session layer
435 @param client_index - opaque cookie to identify the sender
436 client to vpp direction only
437 @param context - sender context, to match reply w/ request
438 @param is_enable - disable session layer if 0, enable otherwise
439*/
Dave Barach11b8dbf2017-04-24 10:46:54 -0400440autoreply define session_enable_disable {
Florin Corase04c2992017-03-01 08:17:34 -0800441 u32 client_index;
442 u32 context;
443 u8 is_enable;
444};
445
Florin Corascea194d2017-10-02 00:18:51 -0700446/** \brief add/del application namespace
447 @param client_index - opaque cookie to identify the sender
448 client to vpp direction only
449 @param context - sender context, to match reply w/ request
Florin Coras64424012019-03-02 10:47:47 -0800450 @param secret - secret shared between app and vpp
Florin Corascea194d2017-10-02 00:18:51 -0700451 @param sw_if_index - local interface that "supports" namespace. Set to
Florin Coras64424012019-03-02 10:47:47 -0800452 ~0 if no preference
453 @param ip4_fib_id - id of ip4 fib that "supports" the namespace. Ignored
454 if sw_if_index set.
455 @param ip6_fib_id - id of ip6 fib that "supports" the namespace. Ignored
456 if sw_if_index set.
Florin Corascea194d2017-10-02 00:18:51 -0700457 @param namespace_id_len - length of namespace id lower
458 @param namespace_id - namespace id
459*/
Florin Coras6e8c6672017-11-10 09:03:54 -0800460define app_namespace_add_del {
Florin Corascea194d2017-10-02 00:18:51 -0700461 u32 client_index;
462 u32 context;
463 u64 secret;
464 u32 sw_if_index;
465 u32 ip4_fib_id;
466 u32 ip6_fib_id;
467 u8 namespace_id_len;
468 u8 namespace_id[64];
469};
470
Florin Coras6e8c6672017-11-10 09:03:54 -0800471/** \brief Reply for app namespace add/del
472 @param context - returned sender context, to match reply w/ request
473 @param retval - return code
474 @param appns_index - app namespace index
475*/
476define app_namespace_add_del_reply
477{
478 u32 context;
479 i32 retval;
480 u32 appns_index;
481};
482
Florin Coras1c710452017-10-17 00:03:13 -0700483/** \brief add/del session rule
484 @param client_index - opaque cookie to identify the sender
485 client to vpp direction only
486 @param context - sender context, to match reply w/ request
487 @param transport_proto - transport protocol (0 - tcp 1 - udp)
488 @param is_ip4 - flag to indicate if ip addresses are ip4 or 6
489 @param lcl_ip - local ip
490 @param lcl_plen - local prefix length
491 @param rmt_ip - remote ip
492 @param rmt_ple - remote prefix length
493 @param lcl_port - local port
494 @param rmt_port - remote port
Florin Coras64424012019-03-02 10:47:47 -0800495 @param action_index - the only action defined now is forward to
496 application with index action_index
497 @param is_add - flag to indicate if add or del
498 @param appns_index - application namespace where rule is to be applied to
499 @param scope - flag that indicates scope of the rule: global or local.
500 If 0, default is global, 1 is global 2 is local, 3 is both
Florin Coras1c710452017-10-17 00:03:13 -0700501*/
502autoreply define session_rule_add_del {
503 u32 client_index;
504 u32 context;
505 u8 transport_proto;
506 u8 is_ip4;
507 u8 lcl_ip[16];
508 u8 lcl_plen;
509 u8 rmt_ip[16];
510 u8 rmt_plen;
511 u16 lcl_port;
512 u16 rmt_port;
513 u32 action_index;
514 u8 is_add;
515 u32 appns_index;
516 u8 scope;
Florin Corasc97a7392017-11-05 23:07:07 -0800517 u8 tag[64];
Florin Coras1c710452017-10-17 00:03:13 -0700518};
519
Florin Coras6c36f532017-11-03 18:32:34 -0700520/** \brief Dump session rules
521 @param client_index - opaque cookie to identify the sender
522 @param context - sender context, to match reply w/ request
523 */
524define session_rules_dump
525{
526 u32 client_index;
527 u32 context;
528};
529
530/** \brief Session rules details
Florin Coras64424012019-03-02 10:47:47 -0800531 @param context - sender context, to match reply w/ request
Florin Coras6c36f532017-11-03 18:32:34 -0700532 @param transport_proto - transport protocol (0 - tcp 1 - udp)
533 @param is_ip4 - flag to indicate if ip addresses are ip4 or 6
534 @param lcl_ip - local ip
535 @param lcl_plen - local prefix length
536 @param rmt_ip - remote ip
537 @param rmt_ple - remote prefix length
538 @param lcl_port - local port
539 @param rmt_port - remote port
540 @param action_index - the only action defined now is forward to
Florin Coras64424012019-03-02 10:47:47 -0800541 application with index action_index
542 @param appns_index - application namespace where rule is to be applied to
543 @param scope - flag that indicates scope of the rule: global or local.
544 If 0, default is global, 1 is global 2 is local, 3 is both
Florin Coras6c36f532017-11-03 18:32:34 -0700545 */
546define session_rules_details
547{
548 u32 context;
549 u8 transport_proto;
550 u8 is_ip4;
551 u8 lcl_ip[16];
552 u8 lcl_plen;
553 u8 rmt_ip[16];
554 u8 rmt_plen;
555 u16 lcl_port;
556 u16 rmt_port;
557 u32 action_index;
558 u32 appns_index;
559 u8 scope;
Florin Corasc97a7392017-11-05 23:07:07 -0800560 u8 tag[64];
Florin Coras6c36f532017-11-03 18:32:34 -0700561};
562
Dave Barach68b0fb02017-02-28 15:15:56 -0500563/*
564 * Local Variables:
565 * eval: (c-set-style "gnu")
566 * End:
Dave Barach11b8dbf2017-04-24 10:46:54 -0400567 */