blob: 6affae4112d58d631cc0b2706794ad66c4fffea9 [file] [log] [blame]
Dave Barach68b0fb02017-02-28 15:15:56 -05001/*
Vratko Polak6fdd7a52020-04-06 15:01:46 +02002 * Copyright (c) 2015-2020 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 Corasa5a9efd2021-01-05 17:03:29 -080016option version = "4.0.0";
Jakub Grajciarb4e5e502020-01-31 09:35:29 +010017
18import "vnet/interface_types.api";
19import "vnet/ip/ip_types.api";
20
21
22enum transport_proto : u8
23{
24 TRANSPORT_PROTO_API_TCP,
25 TRANSPORT_PROTO_API_UDP,
Jakub Grajciarb4e5e502020-01-31 09:35:29 +010026 TRANSPORT_PROTO_API_NONE,
27 TRANSPORT_PROTO_API_TLS,
Jakub Grajciarb4e5e502020-01-31 09:35:29 +010028 TRANSPORT_PROTO_API_QUIC,
29};
Dave Barach0d056e52017-09-28 15:11:16 -040030
Florin Coras458089b2019-08-21 16:20:44 -070031/** \brief Application attach to session layer
32 @param client_index - opaque cookie to identify the sender
33 @param context - sender context, to match reply w/ request
34 @param options - segment size, fifo sizes, etc.
Jakub Grajciarb4e5e502020-01-31 09:35:29 +010035 @param namespace_id - string
Florin Coras458089b2019-08-21 16:20:44 -070036*/
37 define app_attach {
38 u32 client_index;
39 u32 context;
Florin Coras9845c202020-04-28 01:54:22 +000040 u64 options[18];
Jakub Grajciarb4e5e502020-01-31 09:35:29 +010041 string namespace_id[];
Florin Coras458089b2019-08-21 16:20:44 -070042 };
43
Vratko Polak6fdd7a52020-04-06 15:01:46 +020044/** \brief Application attach reply
Florin Coras458089b2019-08-21 16:20:44 -070045 @param context - sender context, to match reply w/ request
46 @param retval - return code for the request
47 @param app_mq - app message queue
48 @param vpp_ctrl_mq - vpp message queue for control events that should
49 be handled in main thread, i.e., bind/connect
50 @param vpp_ctrl_mq_thread_index - thread index of the ctrl mq
51 @param app_index - index of the newly created app
52 @param n_fds - number of fds exchanged
53 @param fd_flags - set of flags that indicate which fds are to be expected
54 over the socket (set only if socket transport available)
55 @param segment_size - size of first shm segment
Florin Coras458089b2019-08-21 16:20:44 -070056 @param segment_handle - handle for segment
Jakub Grajciarb4e5e502020-01-31 09:35:29 +010057 @param segment_name - name of segment client needs to attach to
Florin Coras458089b2019-08-21 16:20:44 -070058*/
59define app_attach_reply {
60 u32 context;
61 i32 retval;
62 u64 app_mq;
63 u64 vpp_ctrl_mq;
64 u8 vpp_ctrl_mq_thread;
65 u32 app_index;
66 u8 n_fds;
67 u8 fd_flags;
68 u32 segment_size;
Florin Coras458089b2019-08-21 16:20:44 -070069 u64 segment_handle;
Jakub Grajciarb4e5e502020-01-31 09:35:29 +010070 string segment_name[];
Florin Coras458089b2019-08-21 16:20:44 -070071};
72
Vratko Polak6fdd7a52020-04-06 15:01:46 +020073/** \brief Application detach from session layer
Florin Coras888d9f02020-04-02 23:00:13 +000074 @param client_index - opaque cookie to identify the sender
75 @param context - sender context, to match reply w/ request
76*/
77autoreply define application_detach {
78 u32 client_index;
79 u32 context;
80};
81
Nathan Skrzypczak79f89532019-09-13 11:08:13 +020082/** \brief Add certificate and key
83 @param client_index - opaque cookie to identify the sender
84 @param context - sender context, to match reply w/ request
85 @param engine - crypto engine
86 @param cert_len - cert length (comes first)
87 @param certkey_len - cert and key length
88 @param certkey - cert & key data (due to API limitation)
89*/
90define app_add_cert_key_pair {
91 u32 client_index;
92 u32 context;
93 u16 cert_len;
94 u16 certkey_len;
95 u8 certkey[certkey_len];
96};
97
98/** \brief Add certificate and key
99 @param context - sender context, to match reply w/ request
100 @param retval - return code for the request
101 @param index - index in certificate store
102*/
103define app_add_cert_key_pair_reply {
104 u32 context;
105 i32 retval;
106 u32 index;
107};
108
109/** \brief Delete certificate and key
110 @param client_index - opaque cookie to identify the sender
111 @param context - sender context, to match reply w/ request
112 @param index - index in certificate store
113*/
114autoreply define app_del_cert_key_pair {
115 u32 client_index;
116 u32 context;
117 u32 index;
118};
119
Florin Coras15531972018-08-12 23:50:53 -0700120/** \brief add/del application worker
121 @param client_index - opaque cookie to identify the sender
122 client to vpp direction only
123 @param context - sender context, to match reply w/ request
Florin Corasc1f5a432018-11-20 11:31:26 -0800124 @param app_index - application index
Florin Coras15531972018-08-12 23:50:53 -0700125 @param wrk_index - worker index, if a delete
126 @param is_add - set if an add
127*/
128define app_worker_add_del
129{
130 u32 client_index;
131 u32 context;
Florin Corasc1f5a432018-11-20 11:31:26 -0800132 u32 app_index;
Florin Coras15531972018-08-12 23:50:53 -0700133 u32 wrk_index;
Jakub Grajciarb4e5e502020-01-31 09:35:29 +0100134 bool is_add [default=true];
Florin Coras15531972018-08-12 23:50:53 -0700135};
136
137/** \brief Reply for app worker add/del
138 @param context - returned sender context, to match reply w/ request
139 @param retval - return code
140 @param wrk_index - worker index, if add
141 @param app_event_queue_address - vpp event queue address of new worker
142 @param n_fds - number of fds exchanged
143 @param fd_flags - set of flags that indicate which fds are to be expected
Florin Coras458089b2019-08-21 16:20:44 -0700144 over the socket (set only if socket transport available)
Florin Corasfa76a762018-11-29 12:40:10 -0800145 @param segment_handle - handle for segment
Jakub Grajciarb4e5e502020-01-31 09:35:29 +0100146 @param is_add - add if non zero, else delete
147 @param segment_name - name of segment client needs to attach to
Florin Coras15531972018-08-12 23:50:53 -0700148*/
149define app_worker_add_del_reply
150{
151 u32 context;
152 i32 retval;
153 u32 wrk_index;
154 u64 app_event_queue_address;
155 u8 n_fds;
156 u8 fd_flags;
Florin Corasfa76a762018-11-29 12:40:10 -0800157 u64 segment_handle;
Jakub Grajciarb4e5e502020-01-31 09:35:29 +0100158 bool is_add [default=true];
159 string segment_name[];
Florin Coras15531972018-08-12 23:50:53 -0700160};
161
Florin Corase04c2992017-03-01 08:17:34 -0800162/** \brief enable/disable session layer
163 @param client_index - opaque cookie to identify the sender
164 client to vpp direction only
165 @param context - sender context, to match reply w/ request
166 @param is_enable - disable session layer if 0, enable otherwise
167*/
Dave Barach11b8dbf2017-04-24 10:46:54 -0400168autoreply define session_enable_disable {
Florin Corase04c2992017-03-01 08:17:34 -0800169 u32 client_index;
170 u32 context;
Jakub Grajciarb4e5e502020-01-31 09:35:29 +0100171 bool is_enable [default=true];
Florin Corase04c2992017-03-01 08:17:34 -0800172};
173
Nathan Skrzypczak7b3a3df2021-07-28 14:09:50 +0200174/** \brief enable/disable session layer socket api
175 @param client_index - opaque cookie to identify the sender
176 client to vpp direction only
177 @param context - sender context, to match reply w/ request
178 @param is_enable - disable session layer if 0, enable otherwise
179*/
180autoreply define session_sapi_enable_disable {
181 u32 client_index;
182 u32 context;
183 bool is_enable [default=true];
184};
185
Florin Corascea194d2017-10-02 00:18:51 -0700186/** \brief add/del application namespace
187 @param client_index - opaque cookie to identify the sender
188 client to vpp direction only
189 @param context - sender context, to match reply w/ request
Florin Coras64424012019-03-02 10:47:47 -0800190 @param secret - secret shared between app and vpp
Florin Corascea194d2017-10-02 00:18:51 -0700191 @param sw_if_index - local interface that "supports" namespace. Set to
Florin Coras64424012019-03-02 10:47:47 -0800192 ~0 if no preference
193 @param ip4_fib_id - id of ip4 fib that "supports" the namespace. Ignored
194 if sw_if_index set.
195 @param ip6_fib_id - id of ip6 fib that "supports" the namespace. Ignored
196 if sw_if_index set.
Florin Corascea194d2017-10-02 00:18:51 -0700197 @param namespace_id - namespace id
198*/
Florin Coras6e8c6672017-11-10 09:03:54 -0800199define app_namespace_add_del {
Florin Coras7cb471a2021-07-23 08:39:26 -0700200 option deprecated;
Florin Corascea194d2017-10-02 00:18:51 -0700201 u32 client_index;
202 u32 context;
203 u64 secret;
Paul Vinciguerrac0e94412020-04-28 01:12:04 -0400204 vl_api_interface_index_t sw_if_index [default=0xffffffff];
Florin Corascea194d2017-10-02 00:18:51 -0700205 u32 ip4_fib_id;
206 u32 ip6_fib_id;
Jakub Grajciarb4e5e502020-01-31 09:35:29 +0100207 string namespace_id[];
Florin Corascea194d2017-10-02 00:18:51 -0700208};
209
Florin Coras7cb471a2021-07-23 08:39:26 -0700210/** \brief add/del application namespace
211 @param client_index - opaque cookie to identify the sender
212 client to vpp direction only
213 @param context - sender context, to match reply w/ request
214 @param secret - secret shared between app and vpp
215 @param sw_if_index - local interface that "supports" namespace. Set to
216 ~0 if no preference
217 @param ip4_fib_id - id of ip4 fib that "supports" the namespace. Ignored
218 if sw_if_index set.
219 @param ip6_fib_id - id of ip6 fib that "supports" the namespace. Ignored
220 if sw_if_index set.
221 @param namespace_id - namespace id
Nathan Skrzypczak51f1b262023-04-27 12:43:46 +0200222 @param sock_name - socket name (path, abstract socket name)
223*/
224define app_namespace_add_del_v4 {
225 option deprecated;
226 u32 client_index;
227 u32 context;
228 u64 secret;
229 bool is_add [default=true];
230 vl_api_interface_index_t sw_if_index [default=0xffffffff];
231 u32 ip4_fib_id;
232 u32 ip6_fib_id;
233 string namespace_id[64];
234 string sock_name[];
235};
236
237/** \brief Reply for app namespace add/del
238 @param context - returned sender context, to match reply w/ request
239 @param retval - return code
240 @param appns_index - app namespace index
241*/
242define app_namespace_add_del_v4_reply
243{
244 u32 context;
245 i32 retval;
246 u32 appns_index;
247};
248
249/** \brief add/del application namespace
250 @param client_index - opaque cookie to identify the sender
251 client to vpp direction only
252 @param context - sender context, to match reply w/ request
253 @param secret - secret shared between app and vpp
254 @param sw_if_index - local interface that "supports" namespace. Set to
255 ~0 if no preference
256 @param ip4_fib_id - id of ip4 fib that "supports" the namespace. Ignored
257 if sw_if_index set.
258 @param ip6_fib_id - id of ip6 fib that "supports" the namespace. Ignored
259 if sw_if_index set.
260 @param namespace_id - namespace id
Florin Coras7cb471a2021-07-23 08:39:26 -0700261 @param netns - linux net namespace
262*/
263define app_namespace_add_del_v2 {
Nathan Skrzypczak51f1b262023-04-27 12:43:46 +0200264 option deprecated;
Florin Coras7cb471a2021-07-23 08:39:26 -0700265 u32 client_index;
266 u32 context;
267 u64 secret;
268 vl_api_interface_index_t sw_if_index [default=0xffffffff];
269 u32 ip4_fib_id;
270 u32 ip6_fib_id;
271 string namespace_id[64];
272 string netns[64];
273};
274
Nathan Skrzypczak1a9e2f92021-07-28 19:35:08 +0200275/** \brief add/del application namespace
276 @param client_index - opaque cookie to identify the sender
277 client to vpp direction only
278 @param context - sender context, to match reply w/ request
279 @param secret - secret shared between app and vpp
280 @param sw_if_index - local interface that "supports" namespace. Set to
281 ~0 if no preference
282 @param ip4_fib_id - id of ip4 fib that "supports" the namespace. Ignored
283 if sw_if_index set.
284 @param ip6_fib_id - id of ip6 fib that "supports" the namespace. Ignored
285 if sw_if_index set.
286 @param namespace_id - namespace id
287 @param netns - linux net namespace
288 @param sock_name - socket name (path, abstract socket name)
289*/
290define app_namespace_add_del_v3 {
Nathan Skrzypczak51f1b262023-04-27 12:43:46 +0200291 option deprecated;
Nathan Skrzypczak1a9e2f92021-07-28 19:35:08 +0200292 u32 client_index;
293 u32 context;
294 u64 secret;
295 bool is_add [default=true];
296 vl_api_interface_index_t sw_if_index [default=0xffffffff];
297 u32 ip4_fib_id;
298 u32 ip6_fib_id;
299 string namespace_id[64];
300 string netns[64];
301 string sock_name[];
302};
303
Florin Coras6e8c6672017-11-10 09:03:54 -0800304/** \brief Reply for app namespace add/del
305 @param context - returned sender context, to match reply w/ request
306 @param retval - return code
307 @param appns_index - app namespace index
308*/
309define app_namespace_add_del_reply
310{
Florin Coras7cb471a2021-07-23 08:39:26 -0700311 option deprecated;
312 u32 context;
313 i32 retval;
314 u32 appns_index;
315};
316
317/** \brief Reply for app namespace add/del
318 @param context - returned sender context, to match reply w/ request
319 @param retval - return code
320 @param appns_index - app namespace index
321*/
322define app_namespace_add_del_v2_reply
323{
Nathan Skrzypczak51f1b262023-04-27 12:43:46 +0200324 option deprecated;
Florin Coras6e8c6672017-11-10 09:03:54 -0800325 u32 context;
326 i32 retval;
327 u32 appns_index;
328};
329
Nathan Skrzypczak1a9e2f92021-07-28 19:35:08 +0200330define app_namespace_add_del_v3_reply
331{
Nathan Skrzypczak51f1b262023-04-27 12:43:46 +0200332 option deprecated;
Nathan Skrzypczak1a9e2f92021-07-28 19:35:08 +0200333 u32 context;
334 i32 retval;
335 u32 appns_index;
336};
337
Jakub Grajciarb4e5e502020-01-31 09:35:29 +0100338enum session_rule_scope {
339 SESSION_RULE_SCOPE_API_GLOBAL = 0,
340 SESSION_RULE_SCOPE_API_LOCAL = 1,
341 SESSION_RULE_SCOPE_API_BOTH = 2,
342};
343
Florin Coras1c710452017-10-17 00:03:13 -0700344/** \brief add/del session rule
345 @param client_index - opaque cookie to identify the sender
346 client to vpp direction only
347 @param context - sender context, to match reply w/ request
Jakub Grajciarb4e5e502020-01-31 09:35:29 +0100348 @param transport_proto - transport protocol
Florin Coras1c710452017-10-17 00:03:13 -0700349 @param is_ip4 - flag to indicate if ip addresses are ip4 or 6
350 @param lcl_ip - local ip
351 @param lcl_plen - local prefix length
352 @param rmt_ip - remote ip
353 @param rmt_ple - remote prefix length
354 @param lcl_port - local port
355 @param rmt_port - remote port
Florin Coras64424012019-03-02 10:47:47 -0800356 @param action_index - the only action defined now is forward to
357 application with index action_index
358 @param is_add - flag to indicate if add or del
359 @param appns_index - application namespace where rule is to be applied to
Jakub Grajciarb4e5e502020-01-31 09:35:29 +0100360 @param scope - enum that indicates scope of the rule: global or local.
Florin Coras64424012019-03-02 10:47:47 -0800361 If 0, default is global, 1 is global 2 is local, 3 is both
Jakub Grajciarb4e5e502020-01-31 09:35:29 +0100362 @param tag - tag
Florin Coras1c710452017-10-17 00:03:13 -0700363*/
364autoreply define session_rule_add_del {
365 u32 client_index;
366 u32 context;
Jakub Grajciarb4e5e502020-01-31 09:35:29 +0100367 vl_api_transport_proto_t transport_proto;
368 vl_api_prefix_t lcl;
369 vl_api_prefix_t rmt;
Florin Coras1c710452017-10-17 00:03:13 -0700370 u16 lcl_port;
371 u16 rmt_port;
372 u32 action_index;
Jakub Grajciarb4e5e502020-01-31 09:35:29 +0100373 bool is_add [default=true];
Florin Coras1c710452017-10-17 00:03:13 -0700374 u32 appns_index;
Jakub Grajciarb4e5e502020-01-31 09:35:29 +0100375 vl_api_session_rule_scope_t scope;
376 string tag[64];
Florin Coras1c710452017-10-17 00:03:13 -0700377};
378
Florin Coras6c36f532017-11-03 18:32:34 -0700379/** \brief Dump session rules
380 @param client_index - opaque cookie to identify the sender
381 @param context - sender context, to match reply w/ request
382 */
383define session_rules_dump
384{
385 u32 client_index;
386 u32 context;
387};
388
389/** \brief Session rules details
Florin Coras64424012019-03-02 10:47:47 -0800390 @param context - sender context, to match reply w/ request
Jakub Grajciarb4e5e502020-01-31 09:35:29 +0100391 @param transport_proto - transport protocol
Florin Coras6c36f532017-11-03 18:32:34 -0700392 @param is_ip4 - flag to indicate if ip addresses are ip4 or 6
393 @param lcl_ip - local ip
394 @param lcl_plen - local prefix length
395 @param rmt_ip - remote ip
396 @param rmt_ple - remote prefix length
397 @param lcl_port - local port
398 @param rmt_port - remote port
399 @param action_index - the only action defined now is forward to
Florin Coras64424012019-03-02 10:47:47 -0800400 application with index action_index
401 @param appns_index - application namespace where rule is to be applied to
Jakub Grajciarb4e5e502020-01-31 09:35:29 +0100402 @param scope - enum that indicates scope of the rule: global or local.
Florin Coras64424012019-03-02 10:47:47 -0800403 If 0, default is global, 1 is global 2 is local, 3 is both
Jakub Grajciarb4e5e502020-01-31 09:35:29 +0100404 @param tag - tag
Florin Coras6c36f532017-11-03 18:32:34 -0700405 */
406define session_rules_details
407{
408 u32 context;
Jakub Grajciarb4e5e502020-01-31 09:35:29 +0100409 vl_api_transport_proto_t transport_proto;
410 vl_api_prefix_t lcl;
411 vl_api_prefix_t rmt;
Florin Coras6c36f532017-11-03 18:32:34 -0700412 u16 lcl_port;
413 u16 rmt_port;
414 u32 action_index;
415 u32 appns_index;
Jakub Grajciarb4e5e502020-01-31 09:35:29 +0100416 vl_api_session_rule_scope_t scope;
417 string tag[64];
Florin Coras6c36f532017-11-03 18:32:34 -0700418};
419
Dave Barach68b0fb02017-02-28 15:15:56 -0500420/*
421 * Local Variables:
422 * eval: (c-set-style "gnu")
423 * End:
Dave Barach11b8dbf2017-04-24 10:46:54 -0400424 */