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 | |
| 33 | /** Session to application callback functions */ |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 34 | session_cb_vft_t *session_cb_vft; |
| 35 | |
Florin Coras | a546481 | 2017-04-19 13:00:05 -0700 | [diff] [blame] | 36 | /** Flag that indicates if app is builtin */ |
| 37 | u8 builtin; |
| 38 | |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 39 | /* |
| 40 | * Results |
| 41 | */ |
| 42 | u8 *segment_name; |
| 43 | u32 segment_name_length; |
| 44 | u32 segment_size; |
| 45 | u64 app_event_queue_address; |
| 46 | u32 app_index; |
| 47 | } vnet_app_attach_args_t; |
| 48 | |
| 49 | typedef struct _vnet_app_detach_args_t |
| 50 | { |
| 51 | u32 app_index; |
| 52 | } vnet_app_detach_args_t; |
| 53 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 54 | typedef struct _vnet_bind_args_t |
| 55 | { |
| 56 | union |
| 57 | { |
| 58 | char *uri; |
| 59 | struct |
| 60 | { |
| 61 | transport_endpoint_t tep; |
Dave Barach | 2c25a62 | 2017-06-26 11:35:07 -0400 | [diff] [blame] | 62 | transport_proto_t proto; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 63 | }; |
| 64 | }; |
| 65 | |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 66 | u32 app_index; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 67 | |
| 68 | /* |
| 69 | * Results |
| 70 | */ |
| 71 | char *segment_name; |
| 72 | u32 segment_name_length; |
| 73 | u64 server_event_queue_address; |
| 74 | u64 handle; |
| 75 | } vnet_bind_args_t; |
| 76 | |
| 77 | typedef struct _vnet_unbind_args_t |
| 78 | { |
| 79 | union |
| 80 | { |
| 81 | char *uri; |
| 82 | u64 handle; |
| 83 | }; |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 84 | u32 app_index; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 85 | } vnet_unbind_args_t; |
| 86 | |
| 87 | typedef struct _vnet_connect_args |
| 88 | { |
| 89 | union |
| 90 | { |
| 91 | char *uri; |
| 92 | struct |
| 93 | { |
| 94 | transport_endpoint_t tep; |
Dave Barach | 2c25a62 | 2017-06-26 11:35:07 -0400 | [diff] [blame] | 95 | transport_proto_t proto; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 96 | }; |
| 97 | }; |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 98 | u32 app_index; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 99 | u32 api_context; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 100 | |
| 101 | /* Used for redirects */ |
| 102 | void *mp; |
| 103 | } vnet_connect_args_t; |
| 104 | |
| 105 | typedef struct _vnet_disconnect_args_t |
| 106 | { |
| 107 | u64 handle; |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 108 | u32 app_index; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 109 | } vnet_disconnect_args_t; |
| 110 | |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 111 | /* Application attach options */ |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 112 | typedef enum |
| 113 | { |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 114 | APP_EVT_QUEUE_SIZE, |
Florin Coras | a546481 | 2017-04-19 13:00:05 -0700 | [diff] [blame] | 115 | APP_OPTIONS_FLAGS, |
Dave Barach | 10d8cc6 | 2017-05-30 09:30:07 -0400 | [diff] [blame] | 116 | APP_OPTIONS_PREALLOC_FIFO_PAIRS, |
Dave Barach | 2c25a62 | 2017-06-26 11:35:07 -0400 | [diff] [blame] | 117 | APP_OPTIONS_PRIVATE_SEGMENT_COUNT, |
| 118 | APP_OPTIONS_PRIVATE_SEGMENT_SIZE, |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 119 | SESSION_OPTIONS_SEGMENT_SIZE, |
| 120 | SESSION_OPTIONS_ADD_SEGMENT_SIZE, |
| 121 | SESSION_OPTIONS_RX_FIFO_SIZE, |
| 122 | SESSION_OPTIONS_TX_FIFO_SIZE, |
Dave Barach | 10d8cc6 | 2017-05-30 09:30:07 -0400 | [diff] [blame] | 123 | SESSION_OPTIONS_PREALLOCATED_FIFO_PAIRS, |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 124 | SESSION_OPTIONS_ACCEPT_COOKIE, |
| 125 | SESSION_OPTIONS_N_OPTIONS |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 126 | } app_attach_options_index_t; |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 127 | |
Florin Coras | a546481 | 2017-04-19 13:00:05 -0700 | [diff] [blame] | 128 | #define foreach_app_options_flags \ |
| 129 | _(USE_FIFO, "Use FIFO with redirects") \ |
| 130 | _(ADD_SEGMENT, "Add segment and signal app if needed") \ |
| 131 | _(BUILTIN_APP, "Application is builtin") \ |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 132 | |
Florin Coras | a546481 | 2017-04-19 13:00:05 -0700 | [diff] [blame] | 133 | typedef enum _app_options |
| 134 | { |
| 135 | #define _(sym, str) APP_OPTIONS_##sym, |
| 136 | foreach_app_options_flags |
| 137 | #undef _ |
| 138 | } app_options_t; |
| 139 | |
| 140 | typedef enum _app_options_flags |
| 141 | { |
| 142 | #define _(sym, str) APP_OPTIONS_FLAGS_##sym = 1 << APP_OPTIONS_##sym, |
| 143 | foreach_app_options_flags |
| 144 | #undef _ |
| 145 | } app_options_flags_t; |
| 146 | |
| 147 | ///** Server can handle delegated connect requests from local clients */ |
| 148 | //#define APP_OPTIONS_FLAGS_USE_FIFO (1<<0) |
| 149 | // |
| 150 | ///** Server wants vpp to add segments when out of memory for fifos */ |
| 151 | //#define APP_OPTIONS_FLAGS_ADD_SEGMENT (1<<1) |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 152 | |
| 153 | #define VNET_CONNECT_REDIRECTED 123 |
| 154 | |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 155 | int vnet_application_attach (vnet_app_attach_args_t * a); |
| 156 | int vnet_application_detach (vnet_app_detach_args_t * a); |
| 157 | |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 158 | int vnet_bind_uri (vnet_bind_args_t *); |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 159 | int vnet_unbind_uri (vnet_unbind_args_t * a); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 160 | int vnet_connect_uri (vnet_connect_args_t * a); |
Florin Coras | 6cf30ad | 2017-04-04 23:08:23 -0700 | [diff] [blame] | 161 | int vnet_disconnect_session (vnet_disconnect_args_t * a); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 162 | |
| 163 | int vnet_bind (vnet_bind_args_t * a); |
| 164 | int vnet_connect (vnet_connect_args_t * a); |
| 165 | int vnet_unbind (vnet_unbind_args_t * a); |
Dave Barach | 68b0fb0 | 2017-02-28 15:15:56 -0500 | [diff] [blame] | 166 | |
| 167 | int |
| 168 | api_parse_session_handle (u64 handle, u32 * session_index, |
| 169 | u32 * thread_index); |
| 170 | |
| 171 | #endif /* __included_uri_h__ */ |
| 172 | |
| 173 | /* |
| 174 | * fd.io coding-style-patch-verification: ON |
| 175 | * |
| 176 | * Local Variables: |
| 177 | * eval: (c-set-style "gnu") |
| 178 | * End: |
| 179 | */ |