9a7bb0139bd11bcd0996b9c3fbaa4455a03009df
[vpp.git] / src / vnet / session / session.api
1 /*
2  * Copyright (c) 2015-2020 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 option version = "4.0.0";
17
18 import "vnet/interface_types.api";
19 import "vnet/ip/ip_types.api";
20
21
22 enum transport_proto : u8
23 {
24         TRANSPORT_PROTO_API_TCP,
25         TRANSPORT_PROTO_API_UDP,
26         TRANSPORT_PROTO_API_NONE,
27         TRANSPORT_PROTO_API_TLS,
28         TRANSPORT_PROTO_API_QUIC,
29 };
30
31 /** \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.
35     @param namespace_id - string
36 */
37  define app_attach {
38     u32 client_index;
39     u32 context;
40     u64 options[18];
41     string namespace_id[];
42  };
43
44 /** \brief Application attach reply
45     @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
56     @param segment_handle - handle for segment
57     @param segment_name - name of segment client needs to attach to
58 */
59 define 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;
69     u64 segment_handle;
70     string segment_name[];
71 };
72
73 /** \brief Application detach from session layer
74     @param client_index - opaque cookie to identify the sender
75     @param context - sender context, to match reply w/ request
76 */
77 autoreply define application_detach {
78     u32 client_index;
79     u32 context;
80 };
81
82 /** \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 */
90 define 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 */
103 define 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 */
114 autoreply define app_del_cert_key_pair {
115     u32 client_index;
116     u32 context;
117     u32 index;
118 };
119
120 /** \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
124     @param app_index - application index
125     @param wrk_index - worker index, if a delete
126     @param is_add - set if an add
127 */
128 define app_worker_add_del
129 {
130   u32 client_index;
131   u32 context;
132   u32 app_index;
133   u32 wrk_index;
134   bool is_add [default=true];
135 };
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
144                                   over the socket (set only if socket transport available)
145     @param segment_handle - handle for segment
146     @param is_add - add if non zero, else delete
147     @param segment_name - name of segment client needs to attach to
148 */
149 define 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;
157   u64 segment_handle;
158   bool is_add [default=true];
159   string segment_name[];
160 };
161
162 /** \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 */
168 autoreply define session_enable_disable {
169   u32 client_index;
170   u32 context;
171   bool is_enable [default=true];
172 };
173
174 /** \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 */
180 autoreply define session_sapi_enable_disable {
181   u32 client_index;
182   u32 context;
183   bool is_enable [default=true];
184 };
185
186 /** \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
190     @param secret - secret shared between app and vpp
191     @param sw_if_index - local interface that "supports" namespace. Set to
192                          ~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.
197     @param namespace_id - namespace id
198 */
199 define app_namespace_add_del {
200   option deprecated;
201   u32 client_index;
202   u32 context;
203   u64 secret;
204   vl_api_interface_index_t sw_if_index [default=0xffffffff];
205   u32 ip4_fib_id;
206   u32 ip6_fib_id;
207   string namespace_id[];
208 };
209
210 /** \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
222     @param netns - linux net namespace
223 */
224 define app_namespace_add_del_v2 {
225   u32 client_index;
226   u32 context;
227   u64 secret;
228   vl_api_interface_index_t sw_if_index [default=0xffffffff];
229   u32 ip4_fib_id;
230   u32 ip6_fib_id;
231   string namespace_id[64];
232   string netns[64];
233 };
234
235 /** \brief add/del application namespace
236     @param client_index - opaque cookie to identify the sender
237                           client to vpp direction only
238     @param context - sender context, to match reply w/ request
239     @param secret - secret shared between app and vpp
240     @param sw_if_index - local interface that "supports" namespace. Set to
241                          ~0 if no preference
242     @param ip4_fib_id - id of ip4 fib that "supports" the namespace. Ignored
243                         if sw_if_index set.
244     @param ip6_fib_id - id of ip6 fib that "supports" the namespace. Ignored
245                         if sw_if_index set.
246     @param namespace_id - namespace id
247     @param netns - linux net namespace
248     @param sock_name - socket name (path, abstract socket name)
249 */
250 define app_namespace_add_del_v3 {
251   u32 client_index;
252   u32 context;
253   u64 secret;
254   bool is_add [default=true];
255   vl_api_interface_index_t sw_if_index [default=0xffffffff];
256   u32 ip4_fib_id;
257   u32 ip6_fib_id;
258   string namespace_id[64];
259   string netns[64];
260   string sock_name[];
261 };
262
263 /** \brief Reply for app namespace add/del
264     @param context - returned sender context, to match reply w/ request
265     @param retval - return code
266     @param appns_index - app namespace index
267 */
268 define app_namespace_add_del_reply
269 {
270   option deprecated;
271   u32 context;
272   i32 retval;
273   u32 appns_index;
274 };
275
276 /** \brief Reply for app namespace add/del
277     @param context - returned sender context, to match reply w/ request
278     @param retval - return code
279     @param appns_index - app namespace index
280 */
281 define app_namespace_add_del_v2_reply
282 {
283   u32 context;
284   i32 retval;
285   u32 appns_index;
286 };
287
288 define app_namespace_add_del_v3_reply
289 {
290   u32 context;
291   i32 retval;
292   u32 appns_index;
293 };
294
295 enum session_rule_scope {
296         SESSION_RULE_SCOPE_API_GLOBAL = 0,
297         SESSION_RULE_SCOPE_API_LOCAL = 1,
298         SESSION_RULE_SCOPE_API_BOTH = 2,
299 };
300
301 /** \brief add/del session rule
302     @param client_index - opaque cookie to identify the sender
303                           client to vpp direction only
304     @param context - sender context, to match reply w/ request
305     @param transport_proto - transport protocol
306     @param is_ip4 - flag to indicate if ip addresses are ip4 or 6
307     @param lcl_ip - local ip
308     @param lcl_plen - local prefix length
309     @param rmt_ip - remote ip
310     @param rmt_ple - remote prefix length
311     @param lcl_port - local port
312     @param rmt_port - remote port
313     @param action_index - the only action defined now is forward to
314                           application with index action_index
315     @param is_add - flag to indicate if add or del
316     @param appns_index - application namespace where rule is to be applied to
317     @param scope - enum that indicates scope of the rule: global or local.
318                    If 0, default is global, 1 is global 2 is local, 3 is both
319     @param tag - tag
320 */
321 autoreply define session_rule_add_del {
322   u32 client_index;
323   u32 context;
324   vl_api_transport_proto_t transport_proto;
325   vl_api_prefix_t lcl;
326   vl_api_prefix_t rmt;
327   u16 lcl_port;
328   u16 rmt_port;
329   u32 action_index;
330   bool is_add [default=true];
331   u32 appns_index;
332   vl_api_session_rule_scope_t scope;
333   string tag[64];
334 };
335
336 /** \brief Dump session rules
337     @param client_index - opaque cookie to identify the sender
338     @param context - sender context, to match reply w/ request
339  */
340 define session_rules_dump
341 {
342   u32 client_index;
343   u32 context;
344 };
345
346 /** \brief Session rules details
347     @param context - sender context, to match reply w/ request
348     @param transport_proto - transport protocol
349     @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
356     @param action_index - the only action defined now is forward to
357                           application with index action_index
358     @param appns_index - application namespace where rule is to be applied to
359     @param scope - enum that indicates scope of the rule: global or local.
360                    If 0, default is global, 1 is global 2 is local, 3 is both
361     @param tag - tag
362   */
363 define session_rules_details
364 {
365   u32 context;
366   vl_api_transport_proto_t transport_proto;
367   vl_api_prefix_t lcl;
368   vl_api_prefix_t rmt;
369   u16 lcl_port;
370   u16 rmt_port;
371   u32 action_index;
372   u32 appns_index;
373   vl_api_session_rule_scope_t scope;
374   string tag[64];
375 };
376
377 /*
378  * Local Variables:
379  * eval: (c-set-style "gnu")
380  * End:
381  */