diff options
author | Florin Coras <fcoras@cisco.com> | 2018-02-21 12:07:41 -0800 |
---|---|---|
committer | Dave Barach <openvpp@barachs.net> | 2018-03-02 12:54:31 +0000 |
commit | 371ca50a74a9c4f1b74c4c1b65c6fdec610fcfc3 (patch) | |
tree | 947e800faa7846223bdf8fb73429c657ddaf5805 /src/vnet/session/application_interface.h | |
parent | 9e6356962a0cbb84f7ea9056b954d65aaa231a61 (diff) |
session: first approximation implementation of tls
It consists of two main parts. First, add an application transport type
whereby applications can offer transport to other applications. For
instance, a tls app can offer transport services to other applications.
And second, a tls transport app that leverages the mbedtls library for
tls protocol implementation.
Change-Id: I616996c6e6539a9e2368fab8a1ac874d7c5d9838
Signed-off-by: Florin Coras <fcoras@cisco.com>
Diffstat (limited to 'src/vnet/session/application_interface.h')
-rw-r--r-- | src/vnet/session/application_interface.h | 39 |
1 files changed, 27 insertions, 12 deletions
diff --git a/src/vnet/session/application_interface.h b/src/vnet/session/application_interface.h index 4b7a2dfa66c..2ab09d6f52d 100644 --- a/src/vnet/session/application_interface.h +++ b/src/vnet/session/application_interface.h @@ -30,7 +30,7 @@ typedef struct _vnet_app_attach_args_t /** Application and segment manager options */ u64 *options; - /* Namespace id */ + /** ID of the namespace the app has access to */ u8 *namespace_id; /** Session to application callback functions */ @@ -80,8 +80,11 @@ typedef struct _vnet_unbind_args_t typedef struct _vnet_connect_args { - char *uri; - session_endpoint_t sep; + union + { + char *uri; + session_endpoint_t sep; + }; u32 app_index; u32 api_context; @@ -96,6 +99,18 @@ typedef struct _vnet_disconnect_args_t u32 app_index; } vnet_disconnect_args_t; +typedef struct _vnet_application_add_tls_cert_args_t +{ + u32 app_index; + u8 *cert; +} vnet_app_add_tls_cert_args_t; + +typedef struct _vnet_application_add_tls_key_args_t +{ + u32 app_index; + u8 *key; +} vnet_app_add_tls_key_args_t; + /* Application attach options */ typedef enum { @@ -136,24 +151,24 @@ typedef enum _app_options_flags #undef _ } app_options_flags_t; -clib_error_t *vnet_application_attach (vnet_app_attach_args_t * a); -int vnet_application_detach (vnet_app_detach_args_t * a); - int vnet_bind_uri (vnet_bind_args_t *); int vnet_unbind_uri (vnet_unbind_args_t * a); clib_error_t *vnet_connect_uri (vnet_connect_args_t * a); -int vnet_disconnect_session (vnet_disconnect_args_t * a); +clib_error_t *vnet_application_attach (vnet_app_attach_args_t * a); clib_error_t *vnet_bind (vnet_bind_args_t * a); clib_error_t *vnet_connect (vnet_connect_args_t * a); clib_error_t *vnet_unbind (vnet_unbind_args_t * a); +int vnet_application_detach (vnet_app_detach_args_t * a); +int vnet_disconnect_session (vnet_disconnect_args_t * a); -int -api_parse_session_handle (u64 handle, u32 * session_index, - u32 * thread_index); +clib_error_t *vnet_app_add_tls_cert (vnet_app_add_tls_cert_args_t * a); +clib_error_t *vnet_app_add_tls_key (vnet_app_add_tls_key_args_t * a); -void send_local_session_disconnect_callback (u32 app_index, - local_session_t * ls); +extern const char test_srv_crt_rsa[]; +extern const u32 test_srv_crt_rsa_len; +extern const char test_srv_key_rsa[]; +extern const u32 test_srv_key_rsa_len; #endif /* __included_uri_h__ */ |