Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 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 | |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 25 | typedef struct _vnet_app_attach_args_t |
| 26 | { |
Florin Coras | a546481 | 2017-04-19 13:00:05 -0700 | [diff] [blame] | 27 | /** Binary API client index */ |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 28 | u32 api_client_index; |
Florin Coras | a546481 | 2017-04-19 13:00:05 -0700 | [diff] [blame] | 29 | |
| 30 | /** Application and segment manager options */ |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 31 | u64 *options; |
Florin Coras | a546481 | 2017-04-19 13:00:05 -0700 | [diff] [blame] | 32 | |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 33 | /* Namespace id */ |
| 34 | u8 *namespace_id; |
| 35 | |
Florin Coras | a546481 | 2017-04-19 13:00:05 -0700 | [diff] [blame] | 36 | /** Session to application callback functions */ |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 37 | session_cb_vft_t *session_cb_vft; |
| 38 | |
| 39 | /* |
| 40 | * Results |
| 41 | */ |
Florin Coras | b384b54 | 2018-01-15 01:08:33 -0800 | [diff] [blame] | 42 | ssvm_private_t *segment; |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 43 | u64 app_event_queue_address; |
| 44 | u32 app_index; |
| 45 | } vnet_app_attach_args_t; |
| 46 | |
| 47 | typedef struct _vnet_app_detach_args_t |
| 48 | { |
| 49 | u32 app_index; |
| 50 | } vnet_app_detach_args_t; |
| 51 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 52 | typedef struct _vnet_bind_args_t |
| 53 | { |
| 54 | union |
| 55 | { |
| 56 | char *uri; |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 57 | session_endpoint_t sep; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 58 | }; |
| 59 | |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 60 | u32 app_index; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 61 | |
| 62 | /* |
| 63 | * Results |
| 64 | */ |
| 65 | char *segment_name; |
| 66 | u32 segment_name_length; |
| 67 | u64 server_event_queue_address; |
| 68 | u64 handle; |
| 69 | } vnet_bind_args_t; |
| 70 | |
| 71 | typedef struct _vnet_unbind_args_t |
| 72 | { |
| 73 | union |
| 74 | { |
| 75 | char *uri; |
| 76 | u64 handle; |
| 77 | }; |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 78 | u32 app_index; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 79 | } vnet_unbind_args_t; |
| 80 | |
| 81 | typedef struct _vnet_connect_args |
| 82 | { |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 83 | char *uri; |
| 84 | session_endpoint_t sep; |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 85 | u32 app_index; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 86 | u32 api_context; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 87 | |
| 88 | /* Used for redirects */ |
| 89 | void *mp; |
Florin Coras | 3cbc04b | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 90 | u64 session_handle; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 91 | } vnet_connect_args_t; |
| 92 | |
| 93 | typedef struct _vnet_disconnect_args_t |
| 94 | { |
| 95 | u64 handle; |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 96 | u32 app_index; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 97 | } vnet_disconnect_args_t; |
| 98 | |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 99 | /* Application attach options */ |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 100 | typedef enum |
| 101 | { |
Florin Coras | a546481 | 2017-04-19 13:00:05 -0700 | [diff] [blame] | 102 | APP_OPTIONS_FLAGS, |
Florin Coras | ff6e769 | 2017-12-11 04:59:01 -0800 | [diff] [blame] | 103 | APP_OPTIONS_EVT_QUEUE_SIZE, |
| 104 | APP_OPTIONS_SEGMENT_SIZE, |
| 105 | APP_OPTIONS_ADD_SEGMENT_SIZE, |
Dave Barach | 2c25a62 | 2017-06-26 11:35:07 -0400 | [diff] [blame] | 106 | APP_OPTIONS_PRIVATE_SEGMENT_COUNT, |
Florin Coras | ff6e769 | 2017-12-11 04:59:01 -0800 | [diff] [blame] | 107 | APP_OPTIONS_RX_FIFO_SIZE, |
| 108 | APP_OPTIONS_TX_FIFO_SIZE, |
| 109 | APP_OPTIONS_PREALLOC_FIFO_PAIRS, |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 110 | APP_OPTIONS_NAMESPACE, |
| 111 | APP_OPTIONS_NAMESPACE_SECRET, |
Florin Coras | 7999e83 | 2017-10-31 01:51:04 -0700 | [diff] [blame] | 112 | APP_OPTIONS_PROXY_TRANSPORT, |
Florin Coras | ff6e769 | 2017-12-11 04:59:01 -0800 | [diff] [blame] | 113 | APP_OPTIONS_ACCEPT_COOKIE, |
| 114 | APP_OPTIONS_N_OPTIONS |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 115 | } app_attach_options_index_t; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 116 | |
Florin Coras | a546481 | 2017-04-19 13:00:05 -0700 | [diff] [blame] | 117 | #define foreach_app_options_flags \ |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 118 | _(ACCEPT_REDIRECT, "Use FIFO with redirects") \ |
Florin Coras | a546481 | 2017-04-19 13:00:05 -0700 | [diff] [blame] | 119 | _(ADD_SEGMENT, "Add segment and signal app if needed") \ |
Florin Coras | 7999e83 | 2017-10-31 01:51:04 -0700 | [diff] [blame] | 120 | _(IS_BUILTIN, "Application is builtin") \ |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 121 | _(IS_PROXY, "Application is proxying") \ |
| 122 | _(USE_GLOBAL_SCOPE, "App can use global session scope") \ |
| 123 | _(USE_LOCAL_SCOPE, "App can use local session scope") |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 124 | |
Florin Coras | a546481 | 2017-04-19 13:00:05 -0700 | [diff] [blame] | 125 | typedef enum _app_options |
| 126 | { |
| 127 | #define _(sym, str) APP_OPTIONS_##sym, |
| 128 | foreach_app_options_flags |
| 129 | #undef _ |
| 130 | } app_options_t; |
| 131 | |
| 132 | typedef enum _app_options_flags |
| 133 | { |
| 134 | #define _(sym, str) APP_OPTIONS_FLAGS_##sym = 1 << APP_OPTIONS_##sym, |
| 135 | foreach_app_options_flags |
| 136 | #undef _ |
| 137 | } app_options_flags_t; |
| 138 | |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 139 | clib_error_t *vnet_application_attach (vnet_app_attach_args_t * a); |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 140 | int vnet_application_detach (vnet_app_detach_args_t * a); |
| 141 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 142 | int vnet_bind_uri (vnet_bind_args_t *); |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 143 | int vnet_unbind_uri (vnet_unbind_args_t * a); |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 144 | clib_error_t *vnet_connect_uri (vnet_connect_args_t * a); |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 145 | int vnet_disconnect_session (vnet_disconnect_args_t * a); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 146 | |
Florin Coras | cea194d | 2017-10-02 00:18:51 -0700 | [diff] [blame] | 147 | clib_error_t *vnet_bind (vnet_bind_args_t * a); |
| 148 | clib_error_t *vnet_connect (vnet_connect_args_t * a); |
| 149 | clib_error_t *vnet_unbind (vnet_unbind_args_t * a); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 150 | |
| 151 | int |
| 152 | api_parse_session_handle (u64 handle, u32 * session_index, |
| 153 | u32 * thread_index); |
| 154 | |
| 155 | #endif /* __included_uri_h__ */ |
| 156 | |
| 157 | /* |
| 158 | * fd.io coding-style-patch-verification: ON |
| 159 | * |
| 160 | * Local Variables: |
| 161 | * eval: (c-set-style "gnu") |
| 162 | * End: |
| 163 | */ |