tls: add openssl engine
[vpp.git] / src / vnet / session / application_interface.h
1 /*
2  * Copyright (c) 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 #ifndef __included_uri_h__
16 #define __included_uri_h__
17
18 #include <vlib/vlib.h>
19 #include <vnet/vnet.h>
20 #include <svm/svm_fifo_segment.h>
21 #include <vnet/session/session.h>
22 #include <vnet/session/application.h>
23 #include <vnet/session/transport.h>
24 #include <vnet/tls/tls.h>
25
26 typedef struct _vnet_app_attach_args_t
27 {
28   /** Binary API client index */
29   u32 api_client_index;
30
31   /** Application and segment manager options */
32   u64 *options;
33
34   /** ID of the namespace the app has access to */
35   u8 *namespace_id;
36
37   /** Session to application callback functions */
38   session_cb_vft_t *session_cb_vft;
39
40   /*
41    * Results
42    */
43   ssvm_private_t *segment;
44   u64 app_event_queue_address;
45   u32 app_index;
46 } vnet_app_attach_args_t;
47
48 typedef struct _vnet_app_detach_args_t
49 {
50   u32 app_index;
51 } vnet_app_detach_args_t;
52
53 typedef struct _vnet_bind_args_t
54 {
55   union
56   {
57     char *uri;
58     session_endpoint_t sep;
59   };
60
61   u32 app_index;
62
63   /*
64    * Results
65    */
66   char *segment_name;
67   u32 segment_name_length;
68   u64 server_event_queue_address;
69   u64 handle;
70 } vnet_bind_args_t;
71
72 typedef struct _vnet_unbind_args_t
73 {
74   union
75   {
76     char *uri;
77     u64 handle;
78   };
79   u32 app_index;
80 } vnet_unbind_args_t;
81
82 typedef struct _vnet_connect_args
83 {
84   union
85   {
86     char *uri;
87     session_endpoint_extended_t sep;
88   };
89   u32 app_index;
90   u32 api_context;
91
92   session_handle_t session_handle;
93 } vnet_connect_args_t;
94
95 typedef struct _vnet_disconnect_args_t
96 {
97   session_handle_t handle;
98   u32 app_index;
99 } vnet_disconnect_args_t;
100
101 typedef struct _vnet_application_add_tls_cert_args_t
102 {
103   u32 app_index;
104   u8 *cert;
105 } vnet_app_add_tls_cert_args_t;
106
107 typedef struct _vnet_application_add_tls_key_args_t
108 {
109   u32 app_index;
110   u8 *key;
111 } vnet_app_add_tls_key_args_t;
112
113 /* Application attach options */
114 typedef enum
115 {
116   APP_OPTIONS_FLAGS,
117   APP_OPTIONS_EVT_QUEUE_SIZE,
118   APP_OPTIONS_SEGMENT_SIZE,
119   APP_OPTIONS_ADD_SEGMENT_SIZE,
120   APP_OPTIONS_PRIVATE_SEGMENT_COUNT,
121   APP_OPTIONS_RX_FIFO_SIZE,
122   APP_OPTIONS_TX_FIFO_SIZE,
123   APP_OPTIONS_PREALLOC_FIFO_PAIRS,
124   APP_OPTIONS_NAMESPACE,
125   APP_OPTIONS_NAMESPACE_SECRET,
126   APP_OPTIONS_PROXY_TRANSPORT,
127   APP_OPTIONS_ACCEPT_COOKIE,
128   APP_OPTIONS_TLS_ENGINE,
129   APP_OPTIONS_N_OPTIONS
130 } app_attach_options_index_t;
131
132 #define foreach_app_options_flags                               \
133   _(ACCEPT_REDIRECT, "Use FIFO with redirects")                 \
134   _(ADD_SEGMENT, "Add segment and signal app if needed")        \
135   _(IS_BUILTIN, "Application is builtin")                       \
136   _(IS_PROXY, "Application is proxying")                                \
137   _(USE_GLOBAL_SCOPE, "App can use global session scope")       \
138   _(USE_LOCAL_SCOPE, "App can use local session scope")
139
140 typedef enum _app_options
141 {
142 #define _(sym, str) APP_OPTIONS_##sym,
143   foreach_app_options_flags
144 #undef _
145 } app_options_t;
146
147 typedef enum _app_options_flags
148 {
149 #define _(sym, str) APP_OPTIONS_FLAGS_##sym = 1 << APP_OPTIONS_##sym,
150   foreach_app_options_flags
151 #undef _
152 } app_options_flags_t;
153
154 int vnet_bind_uri (vnet_bind_args_t *);
155 int vnet_unbind_uri (vnet_unbind_args_t * a);
156 clib_error_t *vnet_connect_uri (vnet_connect_args_t * a);
157
158 clib_error_t *vnet_application_attach (vnet_app_attach_args_t * a);
159 clib_error_t *vnet_bind (vnet_bind_args_t * a);
160 clib_error_t *vnet_connect (vnet_connect_args_t * a);
161 clib_error_t *vnet_unbind (vnet_unbind_args_t * a);
162 int vnet_application_detach (vnet_app_detach_args_t * a);
163 int vnet_disconnect_session (vnet_disconnect_args_t * a);
164
165 clib_error_t *vnet_app_add_tls_cert (vnet_app_add_tls_cert_args_t * a);
166 clib_error_t *vnet_app_add_tls_key (vnet_app_add_tls_key_args_t * a);
167
168 extern const char test_srv_crt_rsa[];
169 extern const u32 test_srv_crt_rsa_len;
170 extern const char test_srv_key_rsa[];
171 extern const u32 test_srv_key_rsa_len;
172
173 #endif /* __included_uri_h__ */
174
175 /*
176  * fd.io coding-style-patch-verification: ON
177  *
178  * Local Variables:
179  * eval: (c-set-style "gnu")
180  * End:
181  */