blob: 686b4181a7c2c08fb5b65294c1973473408c2fe8 [file] [log] [blame]
Dave Barach68b0fb02017-02-28 15:15:56 -05001/*
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 Coras6cf30ad2017-04-04 23:08:23 -070025typedef struct _vnet_app_attach_args_t
26{
Florin Corasa5464812017-04-19 13:00:05 -070027 /** Binary API client index */
Florin Coras6cf30ad2017-04-04 23:08:23 -070028 u32 api_client_index;
Florin Corasa5464812017-04-19 13:00:05 -070029
30 /** Application and segment manager options */
Florin Coras6cf30ad2017-04-04 23:08:23 -070031 u64 *options;
Florin Corasa5464812017-04-19 13:00:05 -070032
Florin Corascea194d2017-10-02 00:18:51 -070033 /* Namespace id */
34 u8 *namespace_id;
35
Florin Corasa5464812017-04-19 13:00:05 -070036 /** Session to application callback functions */
Florin Coras6cf30ad2017-04-04 23:08:23 -070037 session_cb_vft_t *session_cb_vft;
38
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
49typedef struct _vnet_app_detach_args_t
50{
51 u32 app_index;
52} vnet_app_detach_args_t;
53
Dave Barach68b0fb02017-02-28 15:15:56 -050054typedef struct _vnet_bind_args_t
55{
56 union
57 {
58 char *uri;
Florin Coras3cbc04b2017-10-02 00:18:51 -070059 session_endpoint_t sep;
Dave Barach68b0fb02017-02-28 15:15:56 -050060 };
61
Florin Coras6cf30ad2017-04-04 23:08:23 -070062 u32 app_index;
Dave Barach68b0fb02017-02-28 15:15:56 -050063
64 /*
65 * Results
66 */
67 char *segment_name;
68 u32 segment_name_length;
69 u64 server_event_queue_address;
70 u64 handle;
71} vnet_bind_args_t;
72
73typedef struct _vnet_unbind_args_t
74{
75 union
76 {
77 char *uri;
78 u64 handle;
79 };
Florin Coras6cf30ad2017-04-04 23:08:23 -070080 u32 app_index;
Dave Barach68b0fb02017-02-28 15:15:56 -050081} vnet_unbind_args_t;
82
83typedef struct _vnet_connect_args
84{
Florin Coras3cbc04b2017-10-02 00:18:51 -070085 char *uri;
86 session_endpoint_t sep;
Florin Coras6cf30ad2017-04-04 23:08:23 -070087 u32 app_index;
Dave Barach68b0fb02017-02-28 15:15:56 -050088 u32 api_context;
Dave Barach68b0fb02017-02-28 15:15:56 -050089
90 /* Used for redirects */
91 void *mp;
Florin Coras3cbc04b2017-10-02 00:18:51 -070092 u64 session_handle;
Dave Barach68b0fb02017-02-28 15:15:56 -050093} vnet_connect_args_t;
94
95typedef struct _vnet_disconnect_args_t
96{
97 u64 handle;
Florin Coras6cf30ad2017-04-04 23:08:23 -070098 u32 app_index;
Dave Barach68b0fb02017-02-28 15:15:56 -050099} vnet_disconnect_args_t;
100
Florin Coras6cf30ad2017-04-04 23:08:23 -0700101/* Application attach options */
Dave Barach68b0fb02017-02-28 15:15:56 -0500102typedef enum
103{
Florin Coras6cf30ad2017-04-04 23:08:23 -0700104 APP_EVT_QUEUE_SIZE,
Florin Corasa5464812017-04-19 13:00:05 -0700105 APP_OPTIONS_FLAGS,
Dave Barach10d8cc62017-05-30 09:30:07 -0400106 APP_OPTIONS_PREALLOC_FIFO_PAIRS,
Dave Barach2c25a622017-06-26 11:35:07 -0400107 APP_OPTIONS_PRIVATE_SEGMENT_COUNT,
108 APP_OPTIONS_PRIVATE_SEGMENT_SIZE,
Florin Corascea194d2017-10-02 00:18:51 -0700109 APP_OPTIONS_NAMESPACE,
110 APP_OPTIONS_NAMESPACE_SECRET,
Florin Coras7999e832017-10-31 01:51:04 -0700111 APP_OPTIONS_PROXY_TRANSPORT,
Dave Barach68b0fb02017-02-28 15:15:56 -0500112 SESSION_OPTIONS_SEGMENT_SIZE,
113 SESSION_OPTIONS_ADD_SEGMENT_SIZE,
114 SESSION_OPTIONS_RX_FIFO_SIZE,
115 SESSION_OPTIONS_TX_FIFO_SIZE,
Dave Barach10d8cc62017-05-30 09:30:07 -0400116 SESSION_OPTIONS_PREALLOCATED_FIFO_PAIRS,
Dave Barach68b0fb02017-02-28 15:15:56 -0500117 SESSION_OPTIONS_ACCEPT_COOKIE,
118 SESSION_OPTIONS_N_OPTIONS
Florin Coras6cf30ad2017-04-04 23:08:23 -0700119} app_attach_options_index_t;
Dave Barach68b0fb02017-02-28 15:15:56 -0500120
Florin Corasa5464812017-04-19 13:00:05 -0700121#define foreach_app_options_flags \
Florin Corascea194d2017-10-02 00:18:51 -0700122 _(ACCEPT_REDIRECT, "Use FIFO with redirects") \
Florin Corasa5464812017-04-19 13:00:05 -0700123 _(ADD_SEGMENT, "Add segment and signal app if needed") \
Florin Coras7999e832017-10-31 01:51:04 -0700124 _(IS_BUILTIN, "Application is builtin") \
Florin Corascea194d2017-10-02 00:18:51 -0700125 _(IS_PROXY, "Application is proxying") \
126 _(USE_GLOBAL_SCOPE, "App can use global session scope") \
127 _(USE_LOCAL_SCOPE, "App can use local session scope")
Dave Barach68b0fb02017-02-28 15:15:56 -0500128
Florin Corasa5464812017-04-19 13:00:05 -0700129typedef enum _app_options
130{
131#define _(sym, str) APP_OPTIONS_##sym,
132 foreach_app_options_flags
133#undef _
134} app_options_t;
135
136typedef enum _app_options_flags
137{
138#define _(sym, str) APP_OPTIONS_FLAGS_##sym = 1 << APP_OPTIONS_##sym,
139 foreach_app_options_flags
140#undef _
141} app_options_flags_t;
142
Florin Corascea194d2017-10-02 00:18:51 -0700143clib_error_t *vnet_application_attach (vnet_app_attach_args_t * a);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700144int vnet_application_detach (vnet_app_detach_args_t * a);
145
Dave Barach68b0fb02017-02-28 15:15:56 -0500146int vnet_bind_uri (vnet_bind_args_t *);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700147int vnet_unbind_uri (vnet_unbind_args_t * a);
Florin Corascea194d2017-10-02 00:18:51 -0700148clib_error_t *vnet_connect_uri (vnet_connect_args_t * a);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700149int vnet_disconnect_session (vnet_disconnect_args_t * a);
Dave Barach68b0fb02017-02-28 15:15:56 -0500150
Florin Corascea194d2017-10-02 00:18:51 -0700151clib_error_t *vnet_bind (vnet_bind_args_t * a);
152clib_error_t *vnet_connect (vnet_connect_args_t * a);
153clib_error_t *vnet_unbind (vnet_unbind_args_t * a);
Dave Barach68b0fb02017-02-28 15:15:56 -0500154
155int
156api_parse_session_handle (u64 handle, u32 * session_index,
157 u32 * thread_index);
158
159#endif /* __included_uri_h__ */
160
161/*
162 * fd.io coding-style-patch-verification: ON
163 *
164 * Local Variables:
165 * eval: (c-set-style "gnu")
166 * End:
167 */