blob: 58877010326c21da75caae94e58e58ab45fe57c6 [file] [log] [blame]
Dave Barach68b0fb02017-02-28 15:15:56 -05001/*
2 * Copyright (c) 2015-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
16#include <vnet/vnet.h>
17#include <vlibmemory/api.h>
18#include <vnet/session/application.h>
Florin Coras1c710452017-10-17 00:03:13 -070019#include <vnet/session/application_interface.h>
20#include <vnet/session/session_rules_table.h>
Florin Coras6c36f532017-11-03 18:32:34 -070021#include <vnet/session/session_table.h>
Dave Barach68b0fb02017-02-28 15:15:56 -050022
23#include <vnet/vnet_msg_enum.h>
Dave Barach68b0fb02017-02-28 15:15:56 -050024
25#define vl_typedefs /* define message structures */
26#include <vnet/vnet_all_api_h.h>
27#undef vl_typedefs
28
29#define vl_endianfun /* define message structures */
30#include <vnet/vnet_all_api_h.h>
31#undef vl_endianfun
32
33/* instantiate all the print functions we know about */
34#define vl_print(handle, ...) vlib_cli_output (handle, __VA_ARGS__)
35#define vl_printfun
36#include <vnet/vnet_all_api_h.h>
37#undef vl_printfun
38
39#include <vlibapi/api_helper_macros.h>
40
41#define foreach_session_api_msg \
42_(MAP_ANOTHER_SEGMENT_REPLY, map_another_segment_reply) \
Florin Coras6cf30ad2017-04-04 23:08:23 -070043_(APPLICATION_ATTACH, application_attach) \
44_(APPLICATION_DETACH, application_detach) \
Dave Barach68b0fb02017-02-28 15:15:56 -050045_(BIND_URI, bind_uri) \
46_(UNBIND_URI, unbind_uri) \
47_(CONNECT_URI, connect_uri) \
48_(DISCONNECT_SESSION, disconnect_session) \
49_(DISCONNECT_SESSION_REPLY, disconnect_session_reply) \
50_(ACCEPT_SESSION_REPLY, accept_session_reply) \
51_(RESET_SESSION_REPLY, reset_session_reply) \
Florin Corascea194d2017-10-02 00:18:51 -070052_(BIND_SOCK, bind_sock) \
Dave Barach68b0fb02017-02-28 15:15:56 -050053_(UNBIND_SOCK, unbind_sock) \
54_(CONNECT_SOCK, connect_sock) \
Florin Corase04c2992017-03-01 08:17:34 -080055_(SESSION_ENABLE_DISABLE, session_enable_disable) \
Florin Corascea194d2017-10-02 00:18:51 -070056_(APP_NAMESPACE_ADD_DEL, app_namespace_add_del) \
Florin Coras1c710452017-10-17 00:03:13 -070057_(SESSION_RULE_ADD_DEL, session_rule_add_del) \
Florin Coras6c36f532017-11-03 18:32:34 -070058_(SESSION_RULES_DUMP, session_rules_dump) \
Florin Coras371ca502018-02-21 12:07:41 -080059_(APPLICATION_TLS_CERT_ADD, application_tls_cert_add) \
60_(APPLICATION_TLS_KEY_ADD, application_tls_key_add) \
Florin Coras15531972018-08-12 23:50:53 -070061_(APP_WORKER_ADD_DEL, app_worker_add_del) \
Florin Corase04c2992017-03-01 08:17:34 -080062
Dave Barach68b0fb02017-02-28 15:15:56 -050063static int
Florin Coras99368312018-08-02 10:45:44 -070064session_send_fds (vl_api_registration_t * reg, int fds[], int n_fds)
Florin Corasb384b542018-01-15 01:08:33 -080065{
66 clib_error_t *error;
67 if (vl_api_registration_file_index (reg) == VL_API_INVALID_FI)
68 {
69 clib_warning ("can't send memfd fd");
70 return -1;
71 }
Florin Coras99368312018-08-02 10:45:44 -070072 error = vl_api_send_fd_msg (reg, fds, n_fds);
Florin Corasb384b542018-01-15 01:08:33 -080073 if (error)
74 {
75 clib_error_report (error);
76 return -1;
77 }
78 return 0;
79}
80
81static int
82send_add_segment_callback (u32 api_client_index, const ssvm_private_t * sp)
Dave Barach68b0fb02017-02-28 15:15:56 -050083{
Florin Coras99368312018-08-02 10:45:44 -070084 int fds[SESSION_N_FD_TYPE], n_fds = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -050085 vl_api_map_another_segment_t *mp;
Florin Corasb384b542018-01-15 01:08:33 -080086 vl_api_registration_t *reg;
Florin Coras99368312018-08-02 10:45:44 -070087 u8 fd_flags = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -050088
Florin Corasb384b542018-01-15 01:08:33 -080089 reg = vl_mem_api_client_index_to_registration (api_client_index);
90 if (!reg)
91 {
92 clib_warning ("no registration: %u", api_client_index);
93 return -1;
94 }
Dave Barach68b0fb02017-02-28 15:15:56 -050095
Florin Coras99368312018-08-02 10:45:44 -070096 if (ssvm_type (sp) == SSVM_SEGMENT_MEMFD)
Florin Corasb384b542018-01-15 01:08:33 -080097 {
Florin Coras99368312018-08-02 10:45:44 -070098 if (vl_api_registration_file_index (reg) == VL_API_INVALID_FI)
99 {
100 clib_warning ("can't send memfd fd");
101 return -1;
102 }
103
104 fd_flags |= SESSION_FD_F_MEMFD_SEGMENT;
105 fds[n_fds] = sp->fd;
106 n_fds += 1;
Florin Corasb384b542018-01-15 01:08:33 -0800107 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500108
Florin Coras99368312018-08-02 10:45:44 -0700109 mp = vl_mem_api_alloc_as_if_client_w_reg (reg, sizeof (*mp));
Dave Barachb7b92992018-10-17 10:38:51 -0400110 clib_memset (mp, 0, sizeof (*mp));
Dave Barach68b0fb02017-02-28 15:15:56 -0500111 mp->_vl_msg_id = clib_host_to_net_u16 (VL_API_MAP_ANOTHER_SEGMENT);
Florin Corasb384b542018-01-15 01:08:33 -0800112 mp->segment_size = sp->ssvm_size;
Florin Coras99368312018-08-02 10:45:44 -0700113 mp->fd_flags = fd_flags;
Florin Corasb384b542018-01-15 01:08:33 -0800114 strncpy ((char *) mp->segment_name, (char *) sp->name,
Dave Barach68b0fb02017-02-28 15:15:56 -0500115 sizeof (mp->segment_name) - 1);
116
Florin Corasb384b542018-01-15 01:08:33 -0800117 vl_msg_api_send_shmem (reg->vl_input_queue, (u8 *) & mp);
118
Florin Coras99368312018-08-02 10:45:44 -0700119 if (n_fds)
120 return session_send_fds (reg, fds, n_fds);
Dave Barach68b0fb02017-02-28 15:15:56 -0500121
122 return 0;
123}
124
125static int
Florin Corasf8f516a2018-02-08 15:10:09 -0800126send_del_segment_callback (u32 api_client_index, const ssvm_private_t * fs)
127{
128 vl_api_unmap_segment_t *mp;
129 vl_api_registration_t *reg;
130
131 reg = vl_mem_api_client_index_to_registration (api_client_index);
132 if (!reg)
133 {
134 clib_warning ("no registration: %u", api_client_index);
135 return -1;
136 }
137
Florin Coras99368312018-08-02 10:45:44 -0700138 mp = vl_mem_api_alloc_as_if_client_w_reg (reg, sizeof (*mp));
Dave Barachb7b92992018-10-17 10:38:51 -0400139 clib_memset (mp, 0, sizeof (*mp));
Florin Corasf8f516a2018-02-08 15:10:09 -0800140 mp->_vl_msg_id = clib_host_to_net_u16 (VL_API_UNMAP_SEGMENT);
Florin Coras15531972018-08-12 23:50:53 -0700141 strncpy ((char *) mp->segment_name, (char *) fs->name,
142 sizeof (mp->segment_name) - 1);
Florin Corasf8f516a2018-02-08 15:10:09 -0800143
144 vl_msg_api_send_shmem (reg->vl_input_queue, (u8 *) & mp);
145
Florin Coras99368312018-08-02 10:45:44 -0700146 return 0;
147}
148
149static int
Florin Coras134a9962018-08-28 11:32:04 -0700150send_app_cut_through_registration_add (u32 api_client_index,
151 u32 wrk_map_index, u64 mq_addr,
Florin Coras99368312018-08-02 10:45:44 -0700152 u64 peer_mq_addr)
153{
154 vl_api_app_cut_through_registration_add_t *mp;
155 vl_api_registration_t *reg;
156 svm_msg_q_t *mq, *peer_mq;
157 int fds[2];
158
159 reg = vl_mem_api_client_index_to_registration (api_client_index);
160 if (!reg)
161 {
162 clib_warning ("no registration: %u", api_client_index);
163 return -1;
164 }
165
166 mp = vl_mem_api_alloc_as_if_client_w_reg (reg, sizeof (*mp));
Dave Barachb7b92992018-10-17 10:38:51 -0400167 clib_memset (mp, 0, sizeof (*mp));
Florin Coras99368312018-08-02 10:45:44 -0700168 mp->_vl_msg_id =
169 clib_host_to_net_u16 (VL_API_APP_CUT_THROUGH_REGISTRATION_ADD);
170
171 mp->evt_q_address = mq_addr;
172 mp->peer_evt_q_address = peer_mq_addr;
Florin Coras134a9962018-08-28 11:32:04 -0700173 mp->wrk_index = wrk_map_index;
Florin Coras99368312018-08-02 10:45:44 -0700174
175 mq = uword_to_pointer (mq_addr, svm_msg_q_t *);
176 peer_mq = uword_to_pointer (peer_mq_addr, svm_msg_q_t *);
177
178 if (svm_msg_q_get_producer_eventfd (mq) != -1)
179 {
180 mp->fd_flags |= SESSION_FD_F_MQ_EVENTFD;
181 mp->n_fds = 2;
182 /* app will overwrite exactly the fds we pass here. So
183 * when we swap mq with peer_mq (accept vs connect) the
184 * fds will still be valid */
185 fds[0] = svm_msg_q_get_consumer_eventfd (mq);
186 fds[1] = svm_msg_q_get_producer_eventfd (peer_mq);
187 }
188
189 vl_msg_api_send_shmem (reg->vl_input_queue, (u8 *) & mp);
190
191 if (mp->n_fds != 0)
192 session_send_fds (reg, fds, mp->n_fds);
Florin Corasf8f516a2018-02-08 15:10:09 -0800193
194 return 0;
195}
196
197static int
Florin Coras6cf30ad2017-04-04 23:08:23 -0700198send_session_accept_callback (stream_session_t * s)
Dave Barach68b0fb02017-02-28 15:15:56 -0500199{
Florin Coras15531972018-08-12 23:50:53 -0700200 app_worker_t *server_wrk = app_worker_get (s->app_wrk_index);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700201 transport_proto_vft_t *tp_vft;
Florin Corasb384b542018-01-15 01:08:33 -0800202 vl_api_accept_session_t *mp;
203 vl_api_registration_t *reg;
204 transport_connection_t *tc;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700205 stream_session_t *listener;
Florin Coras3c2fed52018-07-04 04:15:05 -0700206 svm_msg_q_t *vpp_queue;
Florin Coras15531972018-08-12 23:50:53 -0700207 application_t *server;
Dave Barach68b0fb02017-02-28 15:15:56 -0500208
Florin Coras15531972018-08-12 23:50:53 -0700209 server = application_get (server_wrk->app_index);
Florin Corasb384b542018-01-15 01:08:33 -0800210 reg = vl_mem_api_client_index_to_registration (server->api_client_index);
211 if (!reg)
212 {
213 clib_warning ("no registration: %u", server->api_client_index);
214 return -1;
215 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500216
Florin Corasb384b542018-01-15 01:08:33 -0800217 mp = vl_mem_api_alloc_as_if_client_w_reg (reg, sizeof (*mp));
Dave Barachb7b92992018-10-17 10:38:51 -0400218 clib_memset (mp, 0, sizeof (*mp));
Florin Coras6cf30ad2017-04-04 23:08:23 -0700219
Dave Barach68b0fb02017-02-28 15:15:56 -0500220 mp->_vl_msg_id = clib_host_to_net_u16 (VL_API_ACCEPT_SESSION);
Florin Coras15531972018-08-12 23:50:53 -0700221 mp->context = server_wrk->wrk_index;
Damjan Marion7bee80c2017-04-26 15:32:12 +0200222 mp->server_rx_fifo = pointer_to_uword (s->server_rx_fifo);
223 mp->server_tx_fifo = pointer_to_uword (s->server_tx_fifo);
Florin Corasf8f516a2018-02-08 15:10:09 -0800224
225 if (session_has_transport (s))
226 {
Florin Coras5c9083d2018-04-13 06:39:07 -0700227 listener = listen_session_get (s->listener_index);
Florin Corasf8f516a2018-02-08 15:10:09 -0800228 mp->listener_handle = listen_session_get_handle (listener);
229 if (application_is_proxy (server))
230 {
231 listener =
Florin Coras15531972018-08-12 23:50:53 -0700232 app_worker_first_listener (server_wrk, session_get_fib_proto (s),
233 session_get_transport_proto (s));
Florin Corasf8f516a2018-02-08 15:10:09 -0800234 if (listener)
235 mp->listener_handle = listen_session_get_handle (listener);
236 }
237 vpp_queue = session_manager_get_vpp_event_queue (s->thread_index);
238 mp->vpp_event_queue_address = pointer_to_uword (vpp_queue);
239 mp->handle = session_handle (s);
240 tp_vft = transport_protocol_get_vft (session_get_transport_proto (s));
241 tc = tp_vft->get_connection (s->connection_index, s->thread_index);
242 mp->port = tc->rmt_port;
243 mp->is_ip4 = tc->is_ip4;
Dave Barach178cf492018-11-13 16:34:13 -0500244 clib_memcpy_fast (&mp->ip, &tc->rmt_ip, sizeof (tc->rmt_ip));
Florin Corasf8f516a2018-02-08 15:10:09 -0800245 }
246 else
247 {
248 local_session_t *ls = (local_session_t *) s;
249 local_session_t *ll;
250 if (application_local_session_listener_has_transport (ls))
251 {
Florin Coras5c9083d2018-04-13 06:39:07 -0700252 listener = listen_session_get (ls->listener_index);
Florin Corasf8f516a2018-02-08 15:10:09 -0800253 mp->listener_handle = listen_session_get_handle (listener);
Florin Coras5fda7a32018-02-14 08:04:31 -0800254 mp->is_ip4 = session_type_is_ip4 (listener->session_type);
Florin Corasf8f516a2018-02-08 15:10:09 -0800255 }
256 else
257 {
Florin Corasab2f6db2018-08-31 14:31:41 -0700258 ll = application_get_local_listen_session (server,
Florin Corasf8f516a2018-02-08 15:10:09 -0800259 ls->listener_index);
Florin Coras5fda7a32018-02-14 08:04:31 -0800260 if (ll->transport_listener_index != ~0)
261 {
Florin Coras5c9083d2018-04-13 06:39:07 -0700262 listener = listen_session_get (ll->transport_listener_index);
Florin Coras5fda7a32018-02-14 08:04:31 -0800263 mp->listener_handle = listen_session_get_handle (listener);
264 }
265 else
266 {
267 mp->listener_handle = application_local_session_handle (ll);
268 }
269 mp->is_ip4 = session_type_is_ip4 (ll->listener_session_type);
Florin Corasf8f516a2018-02-08 15:10:09 -0800270 }
271 mp->handle = application_local_session_handle (ls);
272 mp->port = ls->port;
273 mp->vpp_event_queue_address = ls->client_evt_q;
274 mp->server_event_queue_address = ls->server_evt_q;
275 }
Florin Corasb384b542018-01-15 01:08:33 -0800276 vl_msg_api_send_shmem (reg->vl_input_queue, (u8 *) & mp);
Dave Barach68b0fb02017-02-28 15:15:56 -0500277
278 return 0;
279}
280
281static void
Florin Coras6cf30ad2017-04-04 23:08:23 -0700282send_session_disconnect_callback (stream_session_t * s)
Dave Barach68b0fb02017-02-28 15:15:56 -0500283{
Florin Coras15531972018-08-12 23:50:53 -0700284 app_worker_t *app_wrk = app_worker_get (s->app_wrk_index);
Florin Corasb384b542018-01-15 01:08:33 -0800285 vl_api_disconnect_session_t *mp;
286 vl_api_registration_t *reg;
Florin Coras15531972018-08-12 23:50:53 -0700287 application_t *app;
Dave Barach68b0fb02017-02-28 15:15:56 -0500288
Florin Coras15531972018-08-12 23:50:53 -0700289 app = application_get (app_wrk->app_index);
Florin Corasb384b542018-01-15 01:08:33 -0800290 reg = vl_mem_api_client_index_to_registration (app->api_client_index);
291 if (!reg)
292 {
293 clib_warning ("no registration: %u", app->api_client_index);
294 return;
295 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500296
Florin Corasb384b542018-01-15 01:08:33 -0800297 mp = vl_mem_api_alloc_as_if_client_w_reg (reg, sizeof (*mp));
Dave Barachb7b92992018-10-17 10:38:51 -0400298 clib_memset (mp, 0, sizeof (*mp));
Dave Barach68b0fb02017-02-28 15:15:56 -0500299 mp->_vl_msg_id = clib_host_to_net_u16 (VL_API_DISCONNECT_SESSION);
Florin Coras3cbc04b2017-10-02 00:18:51 -0700300 mp->handle = session_handle (s);
Florin Corasf8f516a2018-02-08 15:10:09 -0800301 mp->context = app->api_client_index;
Florin Corasb384b542018-01-15 01:08:33 -0800302 vl_msg_api_send_shmem (reg->vl_input_queue, (u8 *) & mp);
Dave Barach68b0fb02017-02-28 15:15:56 -0500303}
304
Florin Corasd79b41e2017-03-04 05:37:52 -0800305static void
Florin Coras6cf30ad2017-04-04 23:08:23 -0700306send_session_reset_callback (stream_session_t * s)
Florin Corasd79b41e2017-03-04 05:37:52 -0800307{
Florin Coras15531972018-08-12 23:50:53 -0700308 app_worker_t *app_wrk = app_worker_get (s->app_wrk_index);
Florin Corasb384b542018-01-15 01:08:33 -0800309 vl_api_registration_t *reg;
310 vl_api_reset_session_t *mp;
Florin Coras15531972018-08-12 23:50:53 -0700311 application_t *app;
Florin Corasd79b41e2017-03-04 05:37:52 -0800312
Florin Coras15531972018-08-12 23:50:53 -0700313 app = application_get (app_wrk->app_index);
Florin Corasb384b542018-01-15 01:08:33 -0800314 reg = vl_mem_api_client_index_to_registration (app->api_client_index);
315 if (!reg)
316 {
317 clib_warning ("no registration: %u", app->api_client_index);
318 return;
319 }
Florin Corasd79b41e2017-03-04 05:37:52 -0800320
Florin Corasb384b542018-01-15 01:08:33 -0800321 mp = vl_mem_api_alloc_as_if_client_w_reg (reg, sizeof (*mp));
Dave Barachb7b92992018-10-17 10:38:51 -0400322 clib_memset (mp, 0, sizeof (*mp));
Florin Corasd79b41e2017-03-04 05:37:52 -0800323 mp->_vl_msg_id = clib_host_to_net_u16 (VL_API_RESET_SESSION);
Florin Coras3cbc04b2017-10-02 00:18:51 -0700324 mp->handle = session_handle (s);
Florin Corasb384b542018-01-15 01:08:33 -0800325 vl_msg_api_send_shmem (reg->vl_input_queue, (u8 *) & mp);
Florin Corasd79b41e2017-03-04 05:37:52 -0800326}
327
Dave Barach0194f1a2017-05-15 10:11:39 -0400328int
Florin Coras15531972018-08-12 23:50:53 -0700329send_session_connected_callback (u32 app_wrk_index, u32 api_context,
Florin Coras6cf30ad2017-04-04 23:08:23 -0700330 stream_session_t * s, u8 is_fail)
Dave Barach68b0fb02017-02-28 15:15:56 -0500331{
Dave Wallace33e002b2017-09-06 01:20:02 -0400332 vl_api_connect_session_reply_t *mp;
Florin Corasade70e42017-10-14 18:56:41 -0700333 transport_connection_t *tc;
Florin Corasb384b542018-01-15 01:08:33 -0800334 vl_api_registration_t *reg;
Florin Coras3c2fed52018-07-04 04:15:05 -0700335 svm_msg_q_t *vpp_queue;
Florin Coras15531972018-08-12 23:50:53 -0700336 app_worker_t *app_wrk;
Florin Corasb384b542018-01-15 01:08:33 -0800337 application_t *app;
Dave Barach68b0fb02017-02-28 15:15:56 -0500338
Florin Coras15531972018-08-12 23:50:53 -0700339 app_wrk = app_worker_get (app_wrk_index);
340 app = application_get (app_wrk->app_index);
Florin Corasb384b542018-01-15 01:08:33 -0800341 reg = vl_mem_api_client_index_to_registration (app->api_client_index);
342 if (!reg)
343 {
344 clib_warning ("no registration: %u", app->api_client_index);
345 return -1;
346 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500347
Florin Corasb384b542018-01-15 01:08:33 -0800348 mp = vl_mem_api_alloc_as_if_client_w_reg (reg, sizeof (*mp));
Dave Wallace33e002b2017-09-06 01:20:02 -0400349 mp->_vl_msg_id = clib_host_to_net_u16 (VL_API_CONNECT_SESSION_REPLY);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700350 mp->context = api_context;
Dave Wallace965fec92017-10-17 16:19:41 -0400351
352 if (is_fail)
353 goto done;
354
Florin Corasf8f516a2018-02-08 15:10:09 -0800355 if (session_has_transport (s))
Dave Barach68b0fb02017-02-28 15:15:56 -0500356 {
Florin Corasf8f516a2018-02-08 15:10:09 -0800357 tc = session_get_transport (s);
358 if (!tc)
359 {
360 is_fail = 1;
361 goto done;
362 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500363
Florin Corasf8f516a2018-02-08 15:10:09 -0800364 vpp_queue = session_manager_get_vpp_event_queue (s->thread_index);
365 mp->handle = session_handle (s);
366 mp->vpp_event_queue_address = pointer_to_uword (vpp_queue);
Dave Barach178cf492018-11-13 16:34:13 -0500367 clib_memcpy_fast (mp->lcl_ip, &tc->lcl_ip, sizeof (tc->lcl_ip));
Florin Corasf8f516a2018-02-08 15:10:09 -0800368 mp->is_ip4 = tc->is_ip4;
369 mp->lcl_port = tc->lcl_port;
370 mp->server_rx_fifo = pointer_to_uword (s->server_rx_fifo);
371 mp->server_tx_fifo = pointer_to_uword (s->server_tx_fifo);
372 }
373 else
374 {
375 local_session_t *ls = (local_session_t *) s;
376 mp->handle = application_local_session_handle (ls);
377 mp->lcl_port = ls->port;
378 mp->vpp_event_queue_address = ls->server_evt_q;
379 mp->client_event_queue_address = ls->client_evt_q;
380 mp->server_rx_fifo = pointer_to_uword (s->server_tx_fifo);
381 mp->server_tx_fifo = pointer_to_uword (s->server_rx_fifo);
382 }
Dave Wallace965fec92017-10-17 16:19:41 -0400383
384done:
385 mp->retval = is_fail ?
386 clib_host_to_net_u32 (VNET_API_ERROR_SESSION_CONNECT) : 0;
Florin Corasb384b542018-01-15 01:08:33 -0800387 vl_msg_api_send_shmem (reg->vl_input_queue, (u8 *) & mp);
Dave Barach68b0fb02017-02-28 15:15:56 -0500388 return 0;
389}
390
Florin Corascea194d2017-10-02 00:18:51 -0700391static session_cb_vft_t session_cb_vft = {
Dave Barach68b0fb02017-02-28 15:15:56 -0500392 .session_accept_callback = send_session_accept_callback,
393 .session_disconnect_callback = send_session_disconnect_callback,
394 .session_connected_callback = send_session_connected_callback,
Florin Corasd79b41e2017-03-04 05:37:52 -0800395 .session_reset_callback = send_session_reset_callback,
Dave Barach68b0fb02017-02-28 15:15:56 -0500396 .add_segment_callback = send_add_segment_callback,
Florin Corasf8f516a2018-02-08 15:10:09 -0800397 .del_segment_callback = send_del_segment_callback,
Dave Barach68b0fb02017-02-28 15:15:56 -0500398};
399
Florin Coras52207f12018-07-12 14:48:06 -0700400static int
Florin Coras83ea6692018-10-12 16:55:14 -0700401mq_try_lock_and_alloc_msg (svm_msg_q_t * app_mq, svm_msg_q_msg_t * msg)
402{
403 int rv;
404 u8 try = 0;
405 while (try < 100)
406 {
407 rv = svm_msg_q_lock_and_alloc_msg_w_ring (app_mq,
408 SESSION_MQ_CTRL_EVT_RING,
409 SVM_Q_NOWAIT, msg);
410 if (!rv)
411 return 0;
412 try++;
413 }
414 return -1;
415}
416
417static int
Florin Coras52207f12018-07-12 14:48:06 -0700418mq_send_session_accepted_cb (stream_session_t * s)
419{
Florin Coras15531972018-08-12 23:50:53 -0700420 app_worker_t *app_wrk = app_worker_get (s->app_wrk_index);
Florin Coras52207f12018-07-12 14:48:06 -0700421 svm_msg_q_msg_t _msg, *msg = &_msg;
422 svm_msg_q_t *vpp_queue, *app_mq;
423 transport_proto_vft_t *tp_vft;
424 transport_connection_t *tc;
425 stream_session_t *listener;
426 session_accepted_msg_t *mp;
427 session_event_t *evt;
Florin Coras15531972018-08-12 23:50:53 -0700428 application_t *app;
Florin Coras52207f12018-07-12 14:48:06 -0700429
Florin Coras15531972018-08-12 23:50:53 -0700430 app = application_get (app_wrk->app_index);
431 app_mq = app_wrk->event_queue;
Florin Coras83ea6692018-10-12 16:55:14 -0700432 if (mq_try_lock_and_alloc_msg (app_mq, msg))
433 return -1;
Florin Coras52207f12018-07-12 14:48:06 -0700434
435 evt = svm_msg_q_msg_data (app_mq, msg);
Dave Barachb7b92992018-10-17 10:38:51 -0400436 clib_memset (evt, 0, sizeof (*evt));
Florin Coras52207f12018-07-12 14:48:06 -0700437 evt->event_type = SESSION_CTRL_EVT_ACCEPTED;
438 mp = (session_accepted_msg_t *) evt->data;
Florin Corasab2f6db2018-08-31 14:31:41 -0700439 mp->context = app->app_index;
Florin Coras52207f12018-07-12 14:48:06 -0700440 mp->server_rx_fifo = pointer_to_uword (s->server_rx_fifo);
441 mp->server_tx_fifo = pointer_to_uword (s->server_tx_fifo);
442
443 if (session_has_transport (s))
444 {
445 listener = listen_session_get (s->listener_index);
446 mp->listener_handle = listen_session_get_handle (listener);
447 if (application_is_proxy (app))
448 {
449 listener =
Florin Coras15531972018-08-12 23:50:53 -0700450 app_worker_first_listener (app_wrk, session_get_fib_proto (s),
451 session_get_transport_proto (s));
Florin Coras52207f12018-07-12 14:48:06 -0700452 if (listener)
453 mp->listener_handle = listen_session_get_handle (listener);
454 }
455 vpp_queue = session_manager_get_vpp_event_queue (s->thread_index);
456 mp->vpp_event_queue_address = pointer_to_uword (vpp_queue);
457 mp->handle = session_handle (s);
458 tp_vft = transport_protocol_get_vft (session_get_transport_proto (s));
459 tc = tp_vft->get_connection (s->connection_index, s->thread_index);
460 mp->port = tc->rmt_port;
461 mp->is_ip4 = tc->is_ip4;
Dave Barach178cf492018-11-13 16:34:13 -0500462 clib_memcpy_fast (&mp->ip, &tc->rmt_ip, sizeof (tc->rmt_ip));
Florin Coras52207f12018-07-12 14:48:06 -0700463 }
464 else
465 {
466 local_session_t *ls = (local_session_t *) s;
467 local_session_t *ll;
Florin Coras99368312018-08-02 10:45:44 -0700468 u8 main_thread = vlib_num_workers ()? 1 : 0;
469
470 send_app_cut_through_registration_add (app->api_client_index,
Florin Coras134a9962018-08-28 11:32:04 -0700471 app_wrk->wrk_map_index,
Florin Coras99368312018-08-02 10:45:44 -0700472 ls->server_evt_q,
473 ls->client_evt_q);
474
Florin Coras52207f12018-07-12 14:48:06 -0700475 if (application_local_session_listener_has_transport (ls))
476 {
477 listener = listen_session_get (ls->listener_index);
478 mp->listener_handle = listen_session_get_handle (listener);
479 mp->is_ip4 = session_type_is_ip4 (listener->session_type);
480 }
481 else
482 {
Florin Corasab2f6db2018-08-31 14:31:41 -0700483 ll = application_get_local_listen_session (app, ls->listener_index);
Florin Coras52207f12018-07-12 14:48:06 -0700484 if (ll->transport_listener_index != ~0)
485 {
486 listener = listen_session_get (ll->transport_listener_index);
487 mp->listener_handle = listen_session_get_handle (listener);
488 }
489 else
490 {
491 mp->listener_handle = application_local_session_handle (ll);
492 }
493 mp->is_ip4 = session_type_is_ip4 (ll->listener_session_type);
494 }
495 mp->handle = application_local_session_handle (ls);
496 mp->port = ls->port;
Florin Coras99368312018-08-02 10:45:44 -0700497 vpp_queue = session_manager_get_vpp_event_queue (main_thread);
Florin Coras54693d22018-07-17 10:46:29 -0700498 mp->vpp_event_queue_address = pointer_to_uword (vpp_queue);
499 mp->client_event_queue_address = ls->client_evt_q;
Florin Coras52207f12018-07-12 14:48:06 -0700500 mp->server_event_queue_address = ls->server_evt_q;
501 }
Florin Coras537b17e2018-09-28 10:35:45 -0700502 svm_msg_q_add_and_unlock (app_mq, msg);
Florin Coras52207f12018-07-12 14:48:06 -0700503
504 return 0;
505}
506
507static void
508mq_send_session_disconnected_cb (stream_session_t * s)
509{
Florin Coras15531972018-08-12 23:50:53 -0700510 app_worker_t *app_wrk = app_worker_get (s->app_wrk_index);
Florin Coras52207f12018-07-12 14:48:06 -0700511 svm_msg_q_msg_t _msg, *msg = &_msg;
512 session_disconnected_msg_t *mp;
513 svm_msg_q_t *app_mq;
514 session_event_t *evt;
Florin Coras15531972018-08-12 23:50:53 -0700515 application_t *app;
Florin Coras52207f12018-07-12 14:48:06 -0700516
Florin Coras15531972018-08-12 23:50:53 -0700517 app = application_get (app_wrk->app_index);
518 app_mq = app_wrk->event_queue;
Florin Coras83ea6692018-10-12 16:55:14 -0700519 if (mq_try_lock_and_alloc_msg (app_mq, msg))
520 return;
Florin Coras52207f12018-07-12 14:48:06 -0700521 evt = svm_msg_q_msg_data (app_mq, msg);
Dave Barachb7b92992018-10-17 10:38:51 -0400522 clib_memset (evt, 0, sizeof (*evt));
Florin Coras52207f12018-07-12 14:48:06 -0700523 evt->event_type = SESSION_CTRL_EVT_DISCONNECTED;
524 mp = (session_disconnected_msg_t *) evt->data;
525 mp->handle = session_handle (s);
526 mp->context = app->api_client_index;
Florin Coras537b17e2018-09-28 10:35:45 -0700527 svm_msg_q_add_and_unlock (app_mq, msg);
Florin Coras52207f12018-07-12 14:48:06 -0700528}
529
Florin Corasaa27eb92018-10-13 12:20:01 -0700530void
531mq_send_local_session_disconnected_cb (u32 app_wrk_index,
532 local_session_t * ls)
533{
534 app_worker_t *app_wrk = app_worker_get (app_wrk_index);
535 svm_msg_q_msg_t _msg, *msg = &_msg;
536 session_disconnected_msg_t *mp;
537 svm_msg_q_t *app_mq;
538 session_event_t *evt;
539 application_t *app;
540
541 app = application_get (app_wrk->app_index);
542 app_mq = app_wrk->event_queue;
543 if (mq_try_lock_and_alloc_msg (app_mq, msg))
544 return;
545 evt = svm_msg_q_msg_data (app_mq, msg);
Dave Barachb7b92992018-10-17 10:38:51 -0400546 clib_memset (evt, 0, sizeof (*evt));
Florin Corasaa27eb92018-10-13 12:20:01 -0700547 evt->event_type = SESSION_CTRL_EVT_DISCONNECTED;
548 mp = (session_disconnected_msg_t *) evt->data;
549 mp->handle = application_local_session_handle (ls);
550 mp->context = app->api_client_index;
551 svm_msg_q_add_and_unlock (app_mq, msg);
552}
553
Florin Coras52207f12018-07-12 14:48:06 -0700554static void
555mq_send_session_reset_cb (stream_session_t * s)
556{
Florin Coras15531972018-08-12 23:50:53 -0700557 app_worker_t *app = app_worker_get (s->app_wrk_index);
Florin Coras52207f12018-07-12 14:48:06 -0700558 svm_msg_q_msg_t _msg, *msg = &_msg;
559 session_reset_msg_t *mp;
560 svm_msg_q_t *app_mq;
561 session_event_t *evt;
562
563 app_mq = app->event_queue;
Florin Coras83ea6692018-10-12 16:55:14 -0700564 if (mq_try_lock_and_alloc_msg (app_mq, msg))
565 return;
Florin Coras52207f12018-07-12 14:48:06 -0700566 evt = svm_msg_q_msg_data (app_mq, msg);
Dave Barachb7b92992018-10-17 10:38:51 -0400567 clib_memset (evt, 0, sizeof (*evt));
Florin Coras52207f12018-07-12 14:48:06 -0700568 evt->event_type = SESSION_CTRL_EVT_RESET;
569 mp = (session_reset_msg_t *) evt->data;
570 mp->handle = session_handle (s);
Florin Coras537b17e2018-09-28 10:35:45 -0700571 svm_msg_q_add_and_unlock (app_mq, msg);
Florin Coras52207f12018-07-12 14:48:06 -0700572}
573
574static int
Florin Coras15531972018-08-12 23:50:53 -0700575mq_send_session_connected_cb (u32 app_wrk_index, u32 api_context,
Florin Coras52207f12018-07-12 14:48:06 -0700576 stream_session_t * s, u8 is_fail)
577{
578 svm_msg_q_msg_t _msg, *msg = &_msg;
579 session_connected_msg_t *mp;
580 svm_msg_q_t *vpp_mq, *app_mq;
581 transport_connection_t *tc;
Florin Coras15531972018-08-12 23:50:53 -0700582 app_worker_t *app_wrk;
Florin Coras52207f12018-07-12 14:48:06 -0700583 session_event_t *evt;
584 application_t *app;
585
Florin Coras15531972018-08-12 23:50:53 -0700586 app_wrk = app_worker_get (app_wrk_index);
587 app = application_get (app_wrk->app_index);
588 app_mq = app_wrk->event_queue;
Florin Coras52207f12018-07-12 14:48:06 -0700589 if (!app_mq)
590 {
Florin Coras15531972018-08-12 23:50:53 -0700591 clib_warning ("app %u with api index: %u not attached", app->app_index,
Florin Coras52207f12018-07-12 14:48:06 -0700592 app->api_client_index);
593 return -1;
594 }
595
Florin Coras83ea6692018-10-12 16:55:14 -0700596 if (mq_try_lock_and_alloc_msg (app_mq, msg))
597 return -1;
Florin Coras52207f12018-07-12 14:48:06 -0700598 evt = svm_msg_q_msg_data (app_mq, msg);
Dave Barachb7b92992018-10-17 10:38:51 -0400599 clib_memset (evt, 0, sizeof (*evt));
Florin Coras52207f12018-07-12 14:48:06 -0700600 evt->event_type = SESSION_CTRL_EVT_CONNECTED;
601 mp = (session_connected_msg_t *) evt->data;
602 mp->context = api_context;
603
604 if (is_fail)
605 goto done;
606
607 if (session_has_transport (s))
608 {
609 tc = session_get_transport (s);
610 if (!tc)
611 {
612 is_fail = 1;
613 goto done;
614 }
615
616 vpp_mq = session_manager_get_vpp_event_queue (s->thread_index);
617 mp->handle = session_handle (s);
618 mp->vpp_event_queue_address = pointer_to_uword (vpp_mq);
Dave Barach178cf492018-11-13 16:34:13 -0500619 clib_memcpy_fast (mp->lcl_ip, &tc->lcl_ip, sizeof (tc->lcl_ip));
Florin Coras52207f12018-07-12 14:48:06 -0700620 mp->is_ip4 = tc->is_ip4;
621 mp->lcl_port = tc->lcl_port;
622 mp->server_rx_fifo = pointer_to_uword (s->server_rx_fifo);
623 mp->server_tx_fifo = pointer_to_uword (s->server_tx_fifo);
624 }
625 else
626 {
627 local_session_t *ls = (local_session_t *) s;
Florin Coras99368312018-08-02 10:45:44 -0700628 u8 main_thread = vlib_num_workers ()? 1 : 0;
629
630 send_app_cut_through_registration_add (app->api_client_index,
Florin Coras134a9962018-08-28 11:32:04 -0700631 app_wrk->wrk_map_index,
Florin Coras99368312018-08-02 10:45:44 -0700632 ls->client_evt_q,
633 ls->server_evt_q);
634
Florin Coras52207f12018-07-12 14:48:06 -0700635 mp->handle = application_local_session_handle (ls);
636 mp->lcl_port = ls->port;
Florin Coras99368312018-08-02 10:45:44 -0700637 vpp_mq = session_manager_get_vpp_event_queue (main_thread);
Florin Coras54693d22018-07-17 10:46:29 -0700638 mp->vpp_event_queue_address = pointer_to_uword (vpp_mq);
Florin Coras52207f12018-07-12 14:48:06 -0700639 mp->client_event_queue_address = ls->client_evt_q;
Florin Coras54693d22018-07-17 10:46:29 -0700640 mp->server_event_queue_address = ls->server_evt_q;
Florin Coras52207f12018-07-12 14:48:06 -0700641 mp->server_rx_fifo = pointer_to_uword (s->server_tx_fifo);
642 mp->server_tx_fifo = pointer_to_uword (s->server_rx_fifo);
643 }
644
645done:
646 mp->retval = is_fail ?
647 clib_host_to_net_u32 (VNET_API_ERROR_SESSION_CONNECT) : 0;
648
Florin Coras537b17e2018-09-28 10:35:45 -0700649 svm_msg_q_add_and_unlock (app_mq, msg);
Florin Coras52207f12018-07-12 14:48:06 -0700650 return 0;
651}
652
Florin Coras60116992018-08-27 09:52:18 -0700653static int
654mq_send_session_bound_cb (u32 app_wrk_index, u32 api_context,
655 session_handle_t handle, int rv)
656{
657 svm_msg_q_msg_t _msg, *msg = &_msg;
658 svm_msg_q_t *app_mq, *vpp_evt_q;
659 transport_connection_t *tc;
660 stream_session_t *ls = 0;
661 session_bound_msg_t *mp;
662 app_worker_t *app_wrk;
663 session_event_t *evt;
664 application_t *app;
665
666 app_wrk = app_worker_get (app_wrk_index);
667 app = application_get (app_wrk->app_index);
668 app_mq = app_wrk->event_queue;
669 if (!app_mq)
670 {
671 clib_warning ("app %u with api index: %u not attached", app->app_index,
672 app->api_client_index);
673 return -1;
674 }
675
Florin Coras83ea6692018-10-12 16:55:14 -0700676 if (mq_try_lock_and_alloc_msg (app_mq, msg))
677 return -1;
678
Florin Coras60116992018-08-27 09:52:18 -0700679 evt = svm_msg_q_msg_data (app_mq, msg);
Dave Barachb7b92992018-10-17 10:38:51 -0400680 clib_memset (evt, 0, sizeof (*evt));
Florin Coras60116992018-08-27 09:52:18 -0700681 evt->event_type = SESSION_CTRL_EVT_BOUND;
682 mp = (session_bound_msg_t *) evt->data;
683 mp->context = api_context;
684
685 if (rv)
686 goto done;
687
688 mp->handle = handle;
689 if (application_has_global_scope (app))
690 {
691 ls = listen_session_get_from_handle (handle);
692 tc = listen_session_get_transport (ls);
693 mp->lcl_port = tc->lcl_port;
694 mp->lcl_is_ip4 = tc->is_ip4;
Dave Barach178cf492018-11-13 16:34:13 -0500695 clib_memcpy_fast (mp->lcl_ip, &tc->lcl_ip, sizeof (tc->lcl_ip));
Florin Coras60116992018-08-27 09:52:18 -0700696 }
697 else
698 {
699 local_session_t *local;
Florin Corasab2f6db2018-08-31 14:31:41 -0700700 local = application_get_local_listener_w_handle (handle);
Florin Coras60116992018-08-27 09:52:18 -0700701 mp->lcl_port = local->port;
702 mp->lcl_is_ip4 = session_type_is_ip4 (local->session_type);
703 }
704
705 if (ls && session_transport_service_type (ls) == TRANSPORT_SERVICE_CL)
706 {
707 mp->rx_fifo = pointer_to_uword (ls->server_rx_fifo);
708 mp->tx_fifo = pointer_to_uword (ls->server_tx_fifo);
709 vpp_evt_q = session_manager_get_vpp_event_queue (0);
710 mp->vpp_evt_q = pointer_to_uword (vpp_evt_q);
711 }
712
713done:
714 mp->retval = rv;
Florin Coras537b17e2018-09-28 10:35:45 -0700715 svm_msg_q_add_and_unlock (app_mq, msg);
Florin Coras60116992018-08-27 09:52:18 -0700716 return 0;
717}
718
Florin Coras52207f12018-07-12 14:48:06 -0700719static session_cb_vft_t session_mq_cb_vft = {
720 .session_accept_callback = mq_send_session_accepted_cb,
721 .session_disconnect_callback = mq_send_session_disconnected_cb,
722 .session_connected_callback = mq_send_session_connected_cb,
723 .session_reset_callback = mq_send_session_reset_cb,
724 .add_segment_callback = send_add_segment_callback,
725 .del_segment_callback = send_del_segment_callback,
726};
727
Dave Barach68b0fb02017-02-28 15:15:56 -0500728static void
Florin Corase04c2992017-03-01 08:17:34 -0800729vl_api_session_enable_disable_t_handler (vl_api_session_enable_disable_t * mp)
730{
731 vl_api_session_enable_disable_reply_t *rmp;
732 vlib_main_t *vm = vlib_get_main ();
733 int rv = 0;
734
735 vnet_session_enable_disable (vm, mp->is_enable);
736 REPLY_MACRO (VL_API_SESSION_ENABLE_DISABLE_REPLY);
737}
738
739static void
Florin Coras6cf30ad2017-04-04 23:08:23 -0700740vl_api_application_attach_t_handler (vl_api_application_attach_t * mp)
Dave Barach68b0fb02017-02-28 15:15:56 -0500741{
Florin Coras99368312018-08-02 10:45:44 -0700742 int rv = 0, fds[SESSION_N_FD_TYPE], n_fds = 0;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700743 vl_api_application_attach_reply_t *rmp;
Florin Corasb384b542018-01-15 01:08:33 -0800744 ssvm_private_t *segp, *evt_q_segment;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700745 vnet_app_attach_args_t _a, *a = &_a;
Florin Corasb384b542018-01-15 01:08:33 -0800746 vl_api_registration_t *reg;
Florin Corascea194d2017-10-02 00:18:51 -0700747 clib_error_t *error = 0;
Florin Coras99368312018-08-02 10:45:44 -0700748 u8 fd_flags = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500749
Florin Corasfc804d92018-01-26 01:27:01 -0800750 reg = vl_api_client_index_to_registration (mp->client_index);
751 if (!reg)
752 return;
753
Florin Coras6cf30ad2017-04-04 23:08:23 -0700754 if (session_manager_is_enabled () == 0)
755 {
756 rv = VNET_API_ERROR_FEATURE_DISABLED;
757 goto done;
758 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500759
Florin Corasff6e7692017-12-11 04:59:01 -0800760 STATIC_ASSERT (sizeof (u64) * APP_OPTIONS_N_OPTIONS <=
Florin Coras6cf30ad2017-04-04 23:08:23 -0700761 sizeof (mp->options),
762 "Out of options, fix api message definition");
Dave Barach68b0fb02017-02-28 15:15:56 -0500763
Dave Barachb7b92992018-10-17 10:38:51 -0400764 clib_memset (a, 0, sizeof (*a));
Dave Barach68b0fb02017-02-28 15:15:56 -0500765 a->api_client_index = mp->client_index;
766 a->options = mp->options;
Florin Coras52207f12018-07-12 14:48:06 -0700767
768 if (a->options[APP_OPTIONS_FLAGS] & APP_OPTIONS_FLAGS_USE_MQ_FOR_CTRL_MSGS)
769 a->session_cb_vft = &session_mq_cb_vft;
770 else
771 a->session_cb_vft = &session_cb_vft;
Dave Barach68b0fb02017-02-28 15:15:56 -0500772
Florin Corascea194d2017-10-02 00:18:51 -0700773 if (mp->namespace_id_len > 64)
774 {
775 rv = VNET_API_ERROR_INVALID_VALUE;
776 goto done;
777 }
778
779 if (mp->namespace_id_len)
780 {
Dave Wallace8af20542017-10-26 03:29:30 -0400781 vec_validate (a->namespace_id, mp->namespace_id_len - 1);
Dave Barach178cf492018-11-13 16:34:13 -0500782 clib_memcpy_fast (a->namespace_id, mp->namespace_id,
783 mp->namespace_id_len);
Florin Corascea194d2017-10-02 00:18:51 -0700784 }
785
786 if ((error = vnet_application_attach (a)))
787 {
788 rv = clib_error_get_code (error);
789 clib_error_report (error);
Florin Coras99368312018-08-02 10:45:44 -0700790 vec_free (a->namespace_id);
791 goto done;
Florin Corascea194d2017-10-02 00:18:51 -0700792 }
793 vec_free (a->namespace_id);
Dave Barach68b0fb02017-02-28 15:15:56 -0500794
Florin Coras99368312018-08-02 10:45:44 -0700795 /* Send event queues segment */
796 if ((evt_q_segment = session_manager_get_evt_q_segment ()))
797 {
798 fd_flags |= SESSION_FD_F_VPP_MQ_SEGMENT;
799 fds[n_fds] = evt_q_segment->fd;
800 n_fds += 1;
801 }
802 /* Send fifo segment fd if needed */
803 if (ssvm_type (a->segment) == SSVM_SEGMENT_MEMFD)
804 {
805 fd_flags |= SESSION_FD_F_MEMFD_SEGMENT;
806 fds[n_fds] = a->segment->fd;
807 n_fds += 1;
808 }
809 if (a->options[APP_OPTIONS_FLAGS] & APP_OPTIONS_FLAGS_EVT_MQ_USE_EVENTFD)
810 {
811 fd_flags |= SESSION_FD_F_MQ_EVENTFD;
812 fds[n_fds] = svm_msg_q_get_producer_eventfd (a->app_evt_q);
813 n_fds += 1;
814 }
815
Florin Coras6cf30ad2017-04-04 23:08:23 -0700816done:
Florin Corasa5464812017-04-19 13:00:05 -0700817
Dave Barach68b0fb02017-02-28 15:15:56 -0500818 /* *INDENT-OFF* */
Florin Coras6cf30ad2017-04-04 23:08:23 -0700819 REPLY_MACRO2 (VL_API_APPLICATION_ATTACH_REPLY, ({
Dave Barach68b0fb02017-02-28 15:15:56 -0500820 if (!rv)
821 {
Florin Corasb384b542018-01-15 01:08:33 -0800822 segp = a->segment;
Dave Barach68b0fb02017-02-28 15:15:56 -0500823 rmp->segment_name_length = 0;
Florin Corasb384b542018-01-15 01:08:33 -0800824 rmp->segment_size = segp->ssvm_size;
825 if (vec_len (segp->name))
Dave Barach68b0fb02017-02-28 15:15:56 -0500826 {
Florin Corasb384b542018-01-15 01:08:33 -0800827 memcpy (rmp->segment_name, segp->name, vec_len (segp->name));
828 rmp->segment_name_length = vec_len (segp->name);
Dave Barach68b0fb02017-02-28 15:15:56 -0500829 }
Florin Coras99368312018-08-02 10:45:44 -0700830 rmp->app_event_queue_address = pointer_to_uword (a->app_evt_q);
831 rmp->n_fds = n_fds;
832 rmp->fd_flags = fd_flags;
Dave Barach68b0fb02017-02-28 15:15:56 -0500833 }
834 }));
835 /* *INDENT-ON* */
Florin Corasb384b542018-01-15 01:08:33 -0800836
Florin Coras99368312018-08-02 10:45:44 -0700837 if (n_fds)
838 session_send_fds (reg, fds, n_fds);
Dave Barach68b0fb02017-02-28 15:15:56 -0500839}
840
841static void
Florin Coras6cf30ad2017-04-04 23:08:23 -0700842vl_api_application_detach_t_handler (vl_api_application_detach_t * mp)
843{
844 vl_api_application_detach_reply_t *rmp;
845 int rv = VNET_API_ERROR_INVALID_VALUE_2;
846 vnet_app_detach_args_t _a, *a = &_a;
847 application_t *app;
848
849 if (session_manager_is_enabled () == 0)
850 {
851 rv = VNET_API_ERROR_FEATURE_DISABLED;
852 goto done;
853 }
854
855 app = application_lookup (mp->client_index);
856 if (app)
857 {
Florin Coras15531972018-08-12 23:50:53 -0700858 a->app_index = app->app_index;
Florin Coras053a0e42018-11-13 15:52:38 -0800859 a->api_client_index = mp->client_index;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700860 rv = vnet_application_detach (a);
861 }
862
863done:
864 REPLY_MACRO (VL_API_APPLICATION_DETACH_REPLY);
865}
866
867static void
868vl_api_bind_uri_t_handler (vl_api_bind_uri_t * mp)
869{
Florin Coras7fb0fe12018-04-09 09:24:52 -0700870 transport_connection_t *tc = 0;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700871 vnet_bind_args_t _a, *a = &_a;
Florin Coras7fb0fe12018-04-09 09:24:52 -0700872 vl_api_bind_uri_reply_t *rmp;
873 stream_session_t *s;
874 application_t *app = 0;
Florin Coras3c2fed52018-07-04 04:15:05 -0700875 svm_msg_q_t *vpp_evt_q;
Florin Coras60116992018-08-27 09:52:18 -0700876 app_worker_t *app_wrk;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700877 int rv;
878
879 if (session_manager_is_enabled () == 0)
880 {
881 rv = VNET_API_ERROR_FEATURE_DISABLED;
882 goto done;
883 }
884
885 app = application_lookup (mp->client_index);
886 if (app)
887 {
Dave Barachb7b92992018-10-17 10:38:51 -0400888 clib_memset (a, 0, sizeof (*a));
Florin Coras6cf30ad2017-04-04 23:08:23 -0700889 a->uri = (char *) mp->uri;
Florin Coras15531972018-08-12 23:50:53 -0700890 a->app_index = app->app_index;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700891 rv = vnet_bind_uri (a);
892 }
893 else
894 {
895 rv = VNET_API_ERROR_APPLICATION_NOT_ATTACHED;
896 }
897
898done:
Florin Coras7fb0fe12018-04-09 09:24:52 -0700899
900 /* *INDENT-OFF* */
901 REPLY_MACRO2 (VL_API_BIND_URI_REPLY, ({
902 if (!rv)
903 {
904 rmp->handle = a->handle;
Florin Coras7fb0fe12018-04-09 09:24:52 -0700905 if (app && application_has_global_scope (app))
906 {
907 s = listen_session_get_from_handle (a->handle);
908 tc = listen_session_get_transport (s);
Florin Coras6c354942018-04-18 00:05:21 -0700909 rmp->lcl_is_ip4 = tc->is_ip4;
910 rmp->lcl_port = tc->lcl_port;
Dave Barach178cf492018-11-13 16:34:13 -0500911 clib_memcpy_fast (rmp->lcl_ip, &tc->lcl_ip, sizeof(tc->lcl_ip));
Florin Coras7fb0fe12018-04-09 09:24:52 -0700912 if (session_transport_service_type (s) == TRANSPORT_SERVICE_CL)
913 {
914 rmp->rx_fifo = pointer_to_uword (s->server_rx_fifo);
915 rmp->tx_fifo = pointer_to_uword (s->server_tx_fifo);
916 vpp_evt_q = session_manager_get_vpp_event_queue (0);
917 rmp->vpp_evt_q = pointer_to_uword (vpp_evt_q);
918 }
919 }
920 }
921 }));
922 /* *INDENT-ON* */
Florin Coras60116992018-08-27 09:52:18 -0700923
924 /* If app uses mq for control messages, send an mq message as well */
925 if (app && application_use_mq_for_ctrl (app))
926 {
927 app_wrk = application_get_worker (app, 0);
928 mq_send_session_bound_cb (app_wrk->wrk_index, mp->context, a->handle,
929 rv);
930 }
Florin Coras6cf30ad2017-04-04 23:08:23 -0700931}
932
933static void
Dave Barach68b0fb02017-02-28 15:15:56 -0500934vl_api_unbind_uri_t_handler (vl_api_unbind_uri_t * mp)
935{
936 vl_api_unbind_uri_reply_t *rmp;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700937 application_t *app;
938 vnet_unbind_args_t _a, *a = &_a;
Dave Barach68b0fb02017-02-28 15:15:56 -0500939 int rv;
940
Florin Coras6cf30ad2017-04-04 23:08:23 -0700941 if (session_manager_is_enabled () == 0)
942 {
943 rv = VNET_API_ERROR_FEATURE_DISABLED;
944 goto done;
945 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500946
Florin Coras6cf30ad2017-04-04 23:08:23 -0700947 app = application_lookup (mp->client_index);
948 if (app)
949 {
950 a->uri = (char *) mp->uri;
Florin Coras15531972018-08-12 23:50:53 -0700951 a->app_index = app->app_index;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700952 rv = vnet_unbind_uri (a);
953 }
954 else
955 {
956 rv = VNET_API_ERROR_APPLICATION_NOT_ATTACHED;
957 }
958
959done:
Dave Barach68b0fb02017-02-28 15:15:56 -0500960 REPLY_MACRO (VL_API_UNBIND_URI_REPLY);
961}
962
Florin Corasf03a59a2017-06-09 21:07:32 -0700963static void
Dave Barach68b0fb02017-02-28 15:15:56 -0500964vl_api_connect_uri_t_handler (vl_api_connect_uri_t * mp)
965{
Dave Wallace33e002b2017-09-06 01:20:02 -0400966 vl_api_connect_session_reply_t *rmp;
Dave Barach68b0fb02017-02-28 15:15:56 -0500967 vnet_connect_args_t _a, *a = &_a;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700968 application_t *app;
Florin Corascea194d2017-10-02 00:18:51 -0700969 clib_error_t *error = 0;
970 int rv = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500971
Florin Coras6cf30ad2017-04-04 23:08:23 -0700972 if (session_manager_is_enabled () == 0)
973 {
974 rv = VNET_API_ERROR_FEATURE_DISABLED;
975 goto done;
976 }
Florin Corase04c2992017-03-01 08:17:34 -0800977
Florin Coras6cf30ad2017-04-04 23:08:23 -0700978 app = application_lookup (mp->client_index);
979 if (app)
980 {
Dave Barachb7b92992018-10-17 10:38:51 -0400981 clib_memset (a, 0, sizeof (*a));
Florin Coras6cf30ad2017-04-04 23:08:23 -0700982 a->uri = (char *) mp->uri;
983 a->api_context = mp->context;
Florin Coras15531972018-08-12 23:50:53 -0700984 a->app_index = app->app_index;
Florin Corascea194d2017-10-02 00:18:51 -0700985 if ((error = vnet_connect_uri (a)))
986 {
987 rv = clib_error_get_code (error);
Florin Coras8f89dd02018-03-05 16:53:07 -0800988 clib_error_report (error);
Florin Corascea194d2017-10-02 00:18:51 -0700989 }
Florin Coras6cf30ad2017-04-04 23:08:23 -0700990 }
991 else
992 {
993 rv = VNET_API_ERROR_APPLICATION_NOT_ATTACHED;
994 }
Florin Corase04c2992017-03-01 08:17:34 -0800995
Florin Coras3cbc04b2017-10-02 00:18:51 -0700996 /*
997 * Don't reply to stream (tcp) connects. The reply will come once
998 * the connection is established. In case of the redirects, the reply
999 * will come from the server app.
1000 */
Florin Coras8f89dd02018-03-05 16:53:07 -08001001 if (rv == 0)
Florin Corase04c2992017-03-01 08:17:34 -08001002 return;
1003
Florin Coras6cf30ad2017-04-04 23:08:23 -07001004done:
Florin Corase04c2992017-03-01 08:17:34 -08001005 /* *INDENT-OFF* */
Dave Wallace33e002b2017-09-06 01:20:02 -04001006 REPLY_MACRO (VL_API_CONNECT_SESSION_REPLY);
Florin Corase04c2992017-03-01 08:17:34 -08001007 /* *INDENT-ON* */
Dave Barach68b0fb02017-02-28 15:15:56 -05001008}
1009
1010static void
1011vl_api_disconnect_session_t_handler (vl_api_disconnect_session_t * mp)
1012{
1013 vl_api_disconnect_session_reply_t *rmp;
Florin Coras6cf30ad2017-04-04 23:08:23 -07001014 vnet_disconnect_args_t _a, *a = &_a;
1015 application_t *app;
1016 int rv = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001017
Florin Coras6cf30ad2017-04-04 23:08:23 -07001018 if (session_manager_is_enabled () == 0)
1019 {
1020 rv = VNET_API_ERROR_FEATURE_DISABLED;
1021 goto done;
1022 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001023
Florin Coras6cf30ad2017-04-04 23:08:23 -07001024 app = application_lookup (mp->client_index);
1025 if (app)
1026 {
1027 a->handle = mp->handle;
Florin Coras15531972018-08-12 23:50:53 -07001028 a->app_index = app->app_index;
Florin Coras6cf30ad2017-04-04 23:08:23 -07001029 rv = vnet_disconnect_session (a);
1030 }
1031 else
1032 {
1033 rv = VNET_API_ERROR_APPLICATION_NOT_ATTACHED;
1034 }
1035
1036done:
Dave Wallacede5fec92017-11-11 22:41:34 -05001037 REPLY_MACRO2 (VL_API_DISCONNECT_SESSION_REPLY, rmp->handle = mp->handle);
Dave Barach68b0fb02017-02-28 15:15:56 -05001038}
1039
1040static void
1041vl_api_disconnect_session_reply_t_handler (vl_api_disconnect_session_reply_t *
1042 mp)
1043{
Florin Coras6cf30ad2017-04-04 23:08:23 -07001044 vnet_disconnect_args_t _a, *a = &_a;
1045 application_t *app;
Dave Barach68b0fb02017-02-28 15:15:56 -05001046
1047 /* Client objected to disconnecting the session, log and continue */
1048 if (mp->retval)
1049 {
1050 clib_warning ("client retval %d", mp->retval);
1051 return;
1052 }
1053
1054 /* Disconnect has been confirmed. Confirm close to transport */
Florin Corasf8f516a2018-02-08 15:10:09 -08001055 app = application_lookup (mp->context);
Florin Coras6cf30ad2017-04-04 23:08:23 -07001056 if (app)
1057 {
1058 a->handle = mp->handle;
Florin Coras15531972018-08-12 23:50:53 -07001059 a->app_index = app->app_index;
Florin Coras6cf30ad2017-04-04 23:08:23 -07001060 vnet_disconnect_session (a);
1061 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001062}
1063
1064static void
1065vl_api_reset_session_reply_t_handler (vl_api_reset_session_reply_t * mp)
1066{
Florin Coras15531972018-08-12 23:50:53 -07001067 app_worker_t *app_wrk;
Florin Coras6cf30ad2017-04-04 23:08:23 -07001068 application_t *app;
Dave Barach68b0fb02017-02-28 15:15:56 -05001069 stream_session_t *s;
Florin Coras6cf30ad2017-04-04 23:08:23 -07001070 u32 index, thread_index;
Dave Barach68b0fb02017-02-28 15:15:56 -05001071
Ondrej Fabry6bd197e2018-08-15 08:46:46 +02001072 app = application_lookup (mp->context);
Florin Coras6cf30ad2017-04-04 23:08:23 -07001073 if (!app)
1074 return;
1075
Florin Corascea194d2017-10-02 00:18:51 -07001076 session_parse_handle (mp->handle, &index, &thread_index);
Florin Coras3cbc04b2017-10-02 00:18:51 -07001077 s = session_get_if_valid (index, thread_index);
Florin Coras15531972018-08-12 23:50:53 -07001078 if (!s)
Dave Barach68b0fb02017-02-28 15:15:56 -05001079 {
1080 clib_warning ("Invalid session!");
1081 return;
1082 }
1083
Florin Coras15531972018-08-12 23:50:53 -07001084 app_wrk = app_worker_get (s->app_wrk_index);
1085 if (app_wrk->app_index != app->app_index)
1086 {
1087 clib_warning ("app %u does not own handle 0x%lx", app->app_index,
1088 mp->handle);
1089 return;
1090 }
1091
Dave Barach68b0fb02017-02-28 15:15:56 -05001092 /* Client objected to resetting the session, log and continue */
1093 if (mp->retval)
1094 {
1095 clib_warning ("client retval %d", mp->retval);
1096 return;
1097 }
1098
Dave Barach68b0fb02017-02-28 15:15:56 -05001099 /* This comes as a response to a reset, transport only waiting for
1100 * confirmation to remove connection state, no need to disconnect */
1101 stream_session_cleanup (s);
1102}
1103
1104static void
1105vl_api_accept_session_reply_t_handler (vl_api_accept_session_reply_t * mp)
1106{
Florin Corasf8f516a2018-02-08 15:10:09 -08001107 vnet_disconnect_args_t _a = { 0 }, *a = &_a;
1108 local_session_t *ls;
Dave Barach68b0fb02017-02-28 15:15:56 -05001109 stream_session_t *s;
Dave Barach68b0fb02017-02-28 15:15:56 -05001110
Florin Corasa5464812017-04-19 13:00:05 -07001111 /* Server isn't interested, kill the session */
1112 if (mp->retval)
Dave Barach68b0fb02017-02-28 15:15:56 -05001113 {
Florin Corasa5464812017-04-19 13:00:05 -07001114 a->app_index = mp->context;
1115 a->handle = mp->handle;
1116 vnet_disconnect_session (a);
Florin Corasf8f516a2018-02-08 15:10:09 -08001117 return;
1118 }
1119
1120 if (session_handle_is_local (mp->handle))
1121 {
1122 ls = application_get_local_session_from_handle (mp->handle);
Florin Coras15531972018-08-12 23:50:53 -07001123 if (!ls || ls->app_wrk_index != mp->context)
Florin Corasf8f516a2018-02-08 15:10:09 -08001124 {
1125 clib_warning ("server %u doesn't own local handle %llu",
1126 mp->context, mp->handle);
1127 return;
1128 }
1129 if (application_local_session_connect_notify (ls))
1130 return;
1131 ls->session_state = SESSION_STATE_READY;
Dave Barach68b0fb02017-02-28 15:15:56 -05001132 }
Florin Corasa5464812017-04-19 13:00:05 -07001133 else
1134 {
Florin Corasf8f516a2018-02-08 15:10:09 -08001135 s = session_get_from_handle_if_valid (mp->handle);
Florin Corasa5464812017-04-19 13:00:05 -07001136 if (!s)
1137 {
1138 clib_warning ("session doesn't exist");
1139 return;
1140 }
Florin Coras15531972018-08-12 23:50:53 -07001141 if (s->app_wrk_index != mp->context)
Florin Corasa5464812017-04-19 13:00:05 -07001142 {
1143 clib_warning ("app doesn't own session");
1144 return;
1145 }
Florin Corasa5464812017-04-19 13:00:05 -07001146 s->session_state = SESSION_STATE_READY;
1147 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001148}
1149
1150static void
1151vl_api_map_another_segment_reply_t_handler (vl_api_map_another_segment_reply_t
1152 * mp)
1153{
1154 clib_warning ("not implemented");
1155}
1156
1157static void
1158vl_api_bind_sock_t_handler (vl_api_bind_sock_t * mp)
1159{
1160 vl_api_bind_sock_reply_t *rmp;
1161 vnet_bind_args_t _a, *a = &_a;
Florin Corascea194d2017-10-02 00:18:51 -07001162 int rv = 0;
1163 clib_error_t *error;
Florin Coraseb2945c2017-11-22 10:39:09 -08001164 application_t *app = 0;
Florin Coras60116992018-08-27 09:52:18 -07001165 app_worker_t *app_wrk;
Florin Corasdcf55ce2017-11-16 15:32:50 -08001166 stream_session_t *s;
1167 transport_connection_t *tc = 0;
1168 ip46_address_t *ip46;
Florin Coras3c2fed52018-07-04 04:15:05 -07001169 svm_msg_q_t *vpp_evt_q;
Dave Barach68b0fb02017-02-28 15:15:56 -05001170
Florin Coras6cf30ad2017-04-04 23:08:23 -07001171 if (session_manager_is_enabled () == 0)
1172 {
1173 rv = VNET_API_ERROR_FEATURE_DISABLED;
1174 goto done;
1175 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001176
Florin Coras6cf30ad2017-04-04 23:08:23 -07001177 app = application_lookup (mp->client_index);
Florin Corasdcf55ce2017-11-16 15:32:50 -08001178 if (!app)
Florin Coras6cf30ad2017-04-04 23:08:23 -07001179 {
Florin Corasdcf55ce2017-11-16 15:32:50 -08001180 rv = VNET_API_ERROR_APPLICATION_NOT_ATTACHED;
1181 goto done;
Florin Coras6cf30ad2017-04-04 23:08:23 -07001182 }
Florin Corasdcf55ce2017-11-16 15:32:50 -08001183
1184 ip46 = (ip46_address_t *) mp->ip;
Dave Barachb7b92992018-10-17 10:38:51 -04001185 clib_memset (a, 0, sizeof (*a));
Florin Corasdcf55ce2017-11-16 15:32:50 -08001186 a->sep.is_ip4 = mp->is_ip4;
1187 a->sep.ip = *ip46;
1188 a->sep.port = mp->port;
1189 a->sep.fib_index = mp->vrf;
1190 a->sep.sw_if_index = ENDPOINT_INVALID_INDEX;
1191 a->sep.transport_proto = mp->proto;
Florin Coras15531972018-08-12 23:50:53 -07001192 a->app_index = app->app_index;
1193 a->wrk_map_index = mp->wrk_index;
Florin Corasdcf55ce2017-11-16 15:32:50 -08001194
1195 if ((error = vnet_bind (a)))
1196 {
1197 rv = clib_error_get_code (error);
1198 clib_error_report (error);
1199 }
Florin Corasdcf55ce2017-11-16 15:32:50 -08001200
Florin Coras6cf30ad2017-04-04 23:08:23 -07001201done:
Florin Corascea194d2017-10-02 00:18:51 -07001202 /* *INDENT-OFF* */
1203 REPLY_MACRO2 (VL_API_BIND_SOCK_REPLY,({
1204 if (!rv)
Florin Corasdcf55ce2017-11-16 15:32:50 -08001205 {
1206 rmp->handle = a->handle;
Florin Coraseb2945c2017-11-22 10:39:09 -08001207 rmp->lcl_port = mp->port;
Keith Burns (alagalah)60ae80f2018-03-15 10:04:20 -07001208 rmp->lcl_is_ip4 = mp->is_ip4;
Dave Wallace97b1a272017-12-18 13:51:59 -05001209 if (app && application_has_global_scope (app))
Florin Coraseb2945c2017-11-22 10:39:09 -08001210 {
1211 s = listen_session_get_from_handle (a->handle);
1212 tc = listen_session_get_transport (s);
Dave Barach178cf492018-11-13 16:34:13 -05001213 clib_memcpy_fast (rmp->lcl_ip, &tc->lcl_ip, sizeof (tc->lcl_ip));
Florin Coras7fb0fe12018-04-09 09:24:52 -07001214 if (session_transport_service_type (s) == TRANSPORT_SERVICE_CL)
1215 {
1216 rmp->rx_fifo = pointer_to_uword (s->server_rx_fifo);
1217 rmp->tx_fifo = pointer_to_uword (s->server_tx_fifo);
1218 vpp_evt_q = session_manager_get_vpp_event_queue (0);
1219 rmp->vpp_evt_q = pointer_to_uword (vpp_evt_q);
1220 }
Florin Coraseb2945c2017-11-22 10:39:09 -08001221 }
Florin Corasdcf55ce2017-11-16 15:32:50 -08001222 }
Florin Corascea194d2017-10-02 00:18:51 -07001223 }));
1224 /* *INDENT-ON* */
Florin Coras60116992018-08-27 09:52:18 -07001225
1226 /* If app uses mq for control messages, send an mq message as well */
1227 if (app && application_use_mq_for_ctrl (app))
1228 {
1229 app_wrk = application_get_worker (app, mp->wrk_index);
1230 mq_send_session_bound_cb (app_wrk->wrk_index, mp->context, a->handle,
1231 rv);
1232 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001233}
1234
1235static void
1236vl_api_unbind_sock_t_handler (vl_api_unbind_sock_t * mp)
1237{
1238 vl_api_unbind_sock_reply_t *rmp;
1239 vnet_unbind_args_t _a, *a = &_a;
Florin Coras6cf30ad2017-04-04 23:08:23 -07001240 application_t *app;
Florin Corascea194d2017-10-02 00:18:51 -07001241 clib_error_t *error;
1242 int rv = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001243
Florin Coras6cf30ad2017-04-04 23:08:23 -07001244 if (session_manager_is_enabled () == 0)
1245 {
1246 rv = VNET_API_ERROR_FEATURE_DISABLED;
1247 goto done;
1248 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001249
Florin Coras6cf30ad2017-04-04 23:08:23 -07001250 app = application_lookup (mp->client_index);
1251 if (app)
1252 {
Florin Coras15531972018-08-12 23:50:53 -07001253 a->app_index = app->app_index;
Florin Coras6cf30ad2017-04-04 23:08:23 -07001254 a->handle = mp->handle;
Florin Corasab2f6db2018-08-31 14:31:41 -07001255 a->wrk_map_index = mp->wrk_index;
Florin Corascea194d2017-10-02 00:18:51 -07001256 if ((error = vnet_unbind (a)))
1257 {
1258 rv = clib_error_get_code (error);
1259 clib_error_report (error);
1260 }
Florin Coras6cf30ad2017-04-04 23:08:23 -07001261 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001262
Florin Coras6cf30ad2017-04-04 23:08:23 -07001263done:
Dave Barach68b0fb02017-02-28 15:15:56 -05001264 REPLY_MACRO (VL_API_UNBIND_SOCK_REPLY);
1265}
1266
1267static void
1268vl_api_connect_sock_t_handler (vl_api_connect_sock_t * mp)
1269{
Dave Wallace33e002b2017-09-06 01:20:02 -04001270 vl_api_connect_session_reply_t *rmp;
Dave Barach68b0fb02017-02-28 15:15:56 -05001271 vnet_connect_args_t _a, *a = &_a;
Florin Corasab2f6db2018-08-31 14:31:41 -07001272 application_t *app = 0;
Florin Corascea194d2017-10-02 00:18:51 -07001273 clib_error_t *error = 0;
1274 int rv = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001275
Florin Coras6cf30ad2017-04-04 23:08:23 -07001276 if (session_manager_is_enabled () == 0)
1277 {
1278 rv = VNET_API_ERROR_FEATURE_DISABLED;
1279 goto done;
1280 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001281
Florin Coras6cf30ad2017-04-04 23:08:23 -07001282 app = application_lookup (mp->client_index);
1283 if (app)
1284 {
Florin Corase86a8ed2018-01-05 03:20:25 -08001285 svm_queue_t *client_q;
Dave Wallace33e002b2017-09-06 01:20:02 -04001286 ip46_address_t *ip46 = (ip46_address_t *) mp->ip;
Dave Wallaceb2d5ff32017-06-14 12:38:28 -04001287
Dave Barachb7b92992018-10-17 10:38:51 -04001288 clib_memset (a, 0, sizeof (*a));
Dave Wallaceb2d5ff32017-06-14 12:38:28 -04001289 client_q = vl_api_client_index_to_input_queue (mp->client_index);
1290 mp->client_queue_address = pointer_to_uword (client_q);
Florin Corascea194d2017-10-02 00:18:51 -07001291 a->sep.is_ip4 = mp->is_ip4;
1292 a->sep.ip = *ip46;
1293 a->sep.port = mp->port;
1294 a->sep.transport_proto = mp->proto;
Florin Coras5665ced2018-10-25 18:03:45 -07001295 a->sep.peer.fib_index = mp->vrf;
1296 a->sep.peer.sw_if_index = ENDPOINT_INVALID_INDEX;
Florin Coras8f89dd02018-03-05 16:53:07 -08001297 if (mp->hostname_len)
1298 {
Florin Coras15531972018-08-12 23:50:53 -07001299 vec_validate (a->sep_ext.hostname, mp->hostname_len - 1);
Dave Barach178cf492018-11-13 16:34:13 -05001300 clib_memcpy_fast (a->sep_ext.hostname, mp->hostname,
1301 mp->hostname_len);
Florin Coras8f89dd02018-03-05 16:53:07 -08001302 }
Florin Coras6cf30ad2017-04-04 23:08:23 -07001303 a->api_context = mp->context;
Florin Coras15531972018-08-12 23:50:53 -07001304 a->app_index = app->app_index;
1305 a->wrk_map_index = mp->wrk_index;
Florin Corascea194d2017-10-02 00:18:51 -07001306 if ((error = vnet_connect (a)))
1307 {
1308 rv = clib_error_get_code (error);
Florin Coras8f89dd02018-03-05 16:53:07 -08001309 clib_error_report (error);
Florin Corascea194d2017-10-02 00:18:51 -07001310 }
Florin Coras15531972018-08-12 23:50:53 -07001311 vec_free (a->sep_ext.hostname);
Florin Coras6cf30ad2017-04-04 23:08:23 -07001312 }
1313 else
1314 {
1315 rv = VNET_API_ERROR_APPLICATION_NOT_ATTACHED;
1316 }
Florin Corase04c2992017-03-01 08:17:34 -08001317
Florin Coras8f89dd02018-03-05 16:53:07 -08001318 if (rv == 0)
Florin Corase04c2992017-03-01 08:17:34 -08001319 return;
1320
1321 /* Got some error, relay it */
1322
Florin Coras6cf30ad2017-04-04 23:08:23 -07001323done:
Dave Wallace33e002b2017-09-06 01:20:02 -04001324 REPLY_MACRO (VL_API_CONNECT_SESSION_REPLY);
Florin Corasab2f6db2018-08-31 14:31:41 -07001325
1326 if (app && application_use_mq_for_ctrl (app))
1327 {
1328 app_worker_t *app_wrk = application_get_worker (app, mp->wrk_index);
1329 mq_send_session_connected_cb (app_wrk->wrk_index, mp->context, 0, 1);
1330 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001331}
1332
Florin Corascea194d2017-10-02 00:18:51 -07001333static void
Florin Coras15531972018-08-12 23:50:53 -07001334vl_api_app_worker_add_del_t_handler (vl_api_app_worker_add_del_t * mp)
1335{
1336 int rv = 0, fds[SESSION_N_FD_TYPE], n_fds = 0;
1337 vl_api_app_worker_add_del_reply_t *rmp;
1338 vl_api_registration_t *reg;
1339 clib_error_t *error = 0;
1340 application_t *app;
1341 u8 fd_flags = 0;
1342
1343 if (!session_manager_is_enabled ())
1344 {
1345 rv = VNET_API_ERROR_FEATURE_DISABLED;
1346 goto done;
1347 }
1348
1349 reg = vl_api_client_index_to_registration (mp->client_index);
1350 if (!reg)
1351 return;
1352
Florin Coras6d4bb422018-09-04 22:07:27 -07001353 app = application_lookup (clib_net_to_host_u32 (mp->app_api_index));
Florin Coras15531972018-08-12 23:50:53 -07001354 if (!app)
1355 {
1356 rv = VNET_API_ERROR_INVALID_VALUE;
1357 goto done;
1358 }
1359
1360 vnet_app_worker_add_del_args_t args = {
1361 .app_index = app->app_index,
1362 .wrk_index = clib_net_to_host_u32 (mp->wrk_index),
Florin Coras053a0e42018-11-13 15:52:38 -08001363 .api_index = mp->client_index,
Florin Coras15531972018-08-12 23:50:53 -07001364 .is_add = mp->is_add
1365 };
1366 error = vnet_app_worker_add_del (&args);
1367 if (error)
1368 {
1369 rv = clib_error_get_code (error);
1370 clib_error_report (error);
1371 goto done;
1372 }
1373
Florin Coras14598772018-09-04 19:47:52 -07001374 if (!mp->is_add)
1375 goto done;
Florin Corasc3638fe2018-08-24 13:58:49 -07001376
Florin Coras15531972018-08-12 23:50:53 -07001377 /* Send fifo segment fd if needed */
1378 if (ssvm_type (args.segment) == SSVM_SEGMENT_MEMFD)
1379 {
1380 fd_flags |= SESSION_FD_F_MEMFD_SEGMENT;
1381 fds[n_fds] = args.segment->fd;
1382 n_fds += 1;
1383 }
1384 if (application_segment_manager_properties (app)->use_mq_eventfd)
1385 {
1386 fd_flags |= SESSION_FD_F_MQ_EVENTFD;
1387 fds[n_fds] = svm_msg_q_get_producer_eventfd (args.evt_q);
1388 n_fds += 1;
1389 }
1390
1391 /* *INDENT-OFF* */
1392done:
1393 REPLY_MACRO2 (VL_API_APP_WORKER_ADD_DEL_REPLY, ({
1394 rmp->is_add = mp->is_add;
Florin Coras3348a4c2018-09-07 17:09:35 -07001395 rmp->wrk_index = clib_host_to_net_u32 (args.wrk_index);
Florin Coras14598772018-09-04 19:47:52 -07001396 if (!rv && mp->is_add)
Florin Coras15531972018-08-12 23:50:53 -07001397 {
Florin Coras15531972018-08-12 23:50:53 -07001398 if (vec_len (args.segment->name))
1399 {
1400 memcpy (rmp->segment_name, args.segment->name,
1401 vec_len (args.segment->name));
1402 rmp->segment_name_length = vec_len (args.segment->name);
1403 }
1404 rmp->app_event_queue_address = pointer_to_uword (args.evt_q);
1405 rmp->n_fds = n_fds;
1406 rmp->fd_flags = fd_flags;
1407 }
1408 }));
1409 /* *INDENT-ON* */
1410
1411 if (n_fds)
1412 session_send_fds (reg, fds, n_fds);
1413}
1414
1415static void
Florin Corascea194d2017-10-02 00:18:51 -07001416vl_api_app_namespace_add_del_t_handler (vl_api_app_namespace_add_del_t * mp)
1417{
1418 vl_api_app_namespace_add_del_reply_t *rmp;
Florin Corascea194d2017-10-02 00:18:51 -07001419 clib_error_t *error = 0;
Florin Coras6e8c6672017-11-10 09:03:54 -08001420 u32 appns_index = 0;
1421 u8 *ns_id = 0;
Florin Corascea194d2017-10-02 00:18:51 -07001422 int rv = 0;
1423 if (!session_manager_is_enabled ())
1424 {
1425 rv = VNET_API_ERROR_FEATURE_DISABLED;
1426 goto done;
1427 }
1428
1429 if (mp->namespace_id_len > ARRAY_LEN (mp->namespace_id))
1430 {
1431 rv = VNET_API_ERROR_INVALID_VALUE;
1432 goto done;
1433 }
1434
1435 vec_validate (ns_id, mp->namespace_id_len - 1);
Dave Barach178cf492018-11-13 16:34:13 -05001436 clib_memcpy_fast (ns_id, mp->namespace_id, mp->namespace_id_len);
Florin Corascea194d2017-10-02 00:18:51 -07001437 vnet_app_namespace_add_del_args_t args = {
1438 .ns_id = ns_id,
Florin Coras9a9adb22017-10-26 08:16:59 -07001439 .secret = clib_net_to_host_u64 (mp->secret),
Florin Corascea194d2017-10-02 00:18:51 -07001440 .sw_if_index = clib_net_to_host_u32 (mp->sw_if_index),
1441 .ip4_fib_id = clib_net_to_host_u32 (mp->ip4_fib_id),
1442 .ip6_fib_id = clib_net_to_host_u32 (mp->ip6_fib_id),
1443 .is_add = 1
1444 };
1445 error = vnet_app_namespace_add_del (&args);
1446 if (error)
1447 {
1448 rv = clib_error_get_code (error);
1449 clib_error_report (error);
1450 }
Florin Coras6e8c6672017-11-10 09:03:54 -08001451 else
1452 {
1453 appns_index = app_namespace_index_from_id (ns_id);
1454 if (appns_index == APP_NAMESPACE_INVALID_INDEX)
1455 {
1456 clib_warning ("app ns lookup failed");
1457 rv = VNET_API_ERROR_UNSPECIFIED;
1458 }
1459 }
Florin Corascea194d2017-10-02 00:18:51 -07001460 vec_free (ns_id);
Florin Coras6e8c6672017-11-10 09:03:54 -08001461
1462 /* *INDENT-OFF* */
Florin Corascea194d2017-10-02 00:18:51 -07001463done:
Florin Coras6e8c6672017-11-10 09:03:54 -08001464 REPLY_MACRO2 (VL_API_APP_NAMESPACE_ADD_DEL_REPLY, ({
1465 if (!rv)
1466 rmp->appns_index = clib_host_to_net_u32 (appns_index);
1467 }));
1468 /* *INDENT-ON* */
Florin Corascea194d2017-10-02 00:18:51 -07001469}
1470
Florin Coras1c710452017-10-17 00:03:13 -07001471static void
1472vl_api_session_rule_add_del_t_handler (vl_api_session_rule_add_del_t * mp)
1473{
1474 vl_api_session_rule_add_del_reply_t *rmp;
1475 session_rule_add_del_args_t args;
1476 session_rule_table_add_del_args_t *table_args = &args.table_args;
1477 clib_error_t *error;
1478 u8 fib_proto;
1479 int rv = 0;
1480
Dave Barachb7b92992018-10-17 10:38:51 -04001481 clib_memset (&args, 0, sizeof (args));
Florin Coras1c710452017-10-17 00:03:13 -07001482 fib_proto = mp->is_ip4 ? FIB_PROTOCOL_IP4 : FIB_PROTOCOL_IP6;
1483
1484 table_args->lcl.fp_len = mp->lcl_plen;
1485 table_args->lcl.fp_proto = fib_proto;
1486 table_args->rmt.fp_len = mp->rmt_plen;
1487 table_args->rmt.fp_proto = fib_proto;
Milan Lenco8b9a5d12017-11-24 17:12:33 +01001488 table_args->lcl_port = mp->lcl_port;
1489 table_args->rmt_port = mp->rmt_port;
Florin Coras1c710452017-10-17 00:03:13 -07001490 table_args->action_index = clib_net_to_host_u32 (mp->action_index);
1491 table_args->is_add = mp->is_add;
Florin Corasc97a7392017-11-05 23:07:07 -08001492 mp->tag[sizeof (mp->tag) - 1] = 0;
1493 table_args->tag = format (0, "%s", mp->tag);
Florin Coras1c710452017-10-17 00:03:13 -07001494 args.appns_index = clib_net_to_host_u32 (mp->appns_index);
1495 args.scope = mp->scope;
Florin Coras42324ad2017-11-18 18:45:20 -08001496 args.transport_proto = mp->transport_proto;
Florin Coras1c710452017-10-17 00:03:13 -07001497
Dave Barachb7b92992018-10-17 10:38:51 -04001498 clib_memset (&table_args->lcl.fp_addr, 0, sizeof (table_args->lcl.fp_addr));
1499 clib_memset (&table_args->rmt.fp_addr, 0, sizeof (table_args->rmt.fp_addr));
Florin Coras1c710452017-10-17 00:03:13 -07001500 ip_set (&table_args->lcl.fp_addr, mp->lcl_ip, mp->is_ip4);
1501 ip_set (&table_args->rmt.fp_addr, mp->rmt_ip, mp->is_ip4);
1502 error = vnet_session_rule_add_del (&args);
1503 if (error)
1504 {
1505 rv = clib_error_get_code (error);
1506 clib_error_report (error);
1507 }
Florin Corasc97a7392017-11-05 23:07:07 -08001508 vec_free (table_args->tag);
Florin Coras1c710452017-10-17 00:03:13 -07001509 REPLY_MACRO (VL_API_SESSION_RULE_ADD_DEL_REPLY);
1510}
1511
Florin Coras6c36f532017-11-03 18:32:34 -07001512static void
1513send_session_rule_details4 (mma_rule_16_t * rule, u8 is_local,
Florin Corasc97a7392017-11-05 23:07:07 -08001514 u8 transport_proto, u32 appns_index, u8 * tag,
Florin Coras6c4dae22018-01-09 06:39:23 -08001515 vl_api_registration_t * reg, u32 context)
Florin Coras6c36f532017-11-03 18:32:34 -07001516{
1517 vl_api_session_rules_details_t *rmp = 0;
1518 session_mask_or_match_4_t *match =
1519 (session_mask_or_match_4_t *) & rule->match;
1520 session_mask_or_match_4_t *mask =
1521 (session_mask_or_match_4_t *) & rule->mask;
1522
1523 rmp = vl_msg_api_alloc (sizeof (*rmp));
Dave Barachb7b92992018-10-17 10:38:51 -04001524 clib_memset (rmp, 0, sizeof (*rmp));
Florin Coras6c36f532017-11-03 18:32:34 -07001525 rmp->_vl_msg_id = ntohs (VL_API_SESSION_RULES_DETAILS);
1526 rmp->context = context;
1527
1528 rmp->is_ip4 = 1;
Dave Barach178cf492018-11-13 16:34:13 -05001529 clib_memcpy_fast (rmp->lcl_ip, &match->lcl_ip, sizeof (match->lcl_ip));
1530 clib_memcpy_fast (rmp->rmt_ip, &match->rmt_ip, sizeof (match->rmt_ip));
Florin Coras6c36f532017-11-03 18:32:34 -07001531 rmp->lcl_plen = ip4_mask_to_preflen (&mask->lcl_ip);
1532 rmp->rmt_plen = ip4_mask_to_preflen (&mask->rmt_ip);
Milan Lenco8b9a5d12017-11-24 17:12:33 +01001533 rmp->lcl_port = match->lcl_port;
1534 rmp->rmt_port = match->rmt_port;
Florin Coras6c36f532017-11-03 18:32:34 -07001535 rmp->action_index = clib_host_to_net_u32 (rule->action_index);
1536 rmp->scope =
1537 is_local ? SESSION_RULE_SCOPE_LOCAL : SESSION_RULE_SCOPE_GLOBAL;
1538 rmp->transport_proto = transport_proto;
1539 rmp->appns_index = clib_host_to_net_u32 (appns_index);
Florin Corasc97a7392017-11-05 23:07:07 -08001540 if (tag)
1541 {
Dave Barach178cf492018-11-13 16:34:13 -05001542 clib_memcpy_fast (rmp->tag, tag, vec_len (tag));
Florin Corasc97a7392017-11-05 23:07:07 -08001543 rmp->tag[vec_len (tag)] = 0;
1544 }
Florin Coras6c36f532017-11-03 18:32:34 -07001545
Florin Coras6c4dae22018-01-09 06:39:23 -08001546 vl_api_send_msg (reg, (u8 *) rmp);
Florin Coras6c36f532017-11-03 18:32:34 -07001547}
1548
1549static void
Florin Corasc97a7392017-11-05 23:07:07 -08001550send_session_rule_details6 (mma_rule_40_t * rule, u8 is_local,
1551 u8 transport_proto, u32 appns_index, u8 * tag,
Florin Coras6c4dae22018-01-09 06:39:23 -08001552 vl_api_registration_t * reg, u32 context)
Florin Coras6c36f532017-11-03 18:32:34 -07001553{
1554 vl_api_session_rules_details_t *rmp = 0;
1555 session_mask_or_match_6_t *match =
1556 (session_mask_or_match_6_t *) & rule->match;
1557 session_mask_or_match_6_t *mask =
1558 (session_mask_or_match_6_t *) & rule->mask;
1559
1560 rmp = vl_msg_api_alloc (sizeof (*rmp));
Dave Barachb7b92992018-10-17 10:38:51 -04001561 clib_memset (rmp, 0, sizeof (*rmp));
Florin Coras6c36f532017-11-03 18:32:34 -07001562 rmp->_vl_msg_id = ntohs (VL_API_SESSION_RULES_DETAILS);
1563 rmp->context = context;
1564
1565 rmp->is_ip4 = 0;
Dave Barach178cf492018-11-13 16:34:13 -05001566 clib_memcpy_fast (rmp->lcl_ip, &match->lcl_ip, sizeof (match->lcl_ip));
1567 clib_memcpy_fast (rmp->rmt_ip, &match->rmt_ip, sizeof (match->rmt_ip));
Florin Coras6c36f532017-11-03 18:32:34 -07001568 rmp->lcl_plen = ip6_mask_to_preflen (&mask->lcl_ip);
1569 rmp->rmt_plen = ip6_mask_to_preflen (&mask->rmt_ip);
Milan Lenco8b9a5d12017-11-24 17:12:33 +01001570 rmp->lcl_port = match->lcl_port;
1571 rmp->rmt_port = match->rmt_port;
Florin Coras6c36f532017-11-03 18:32:34 -07001572 rmp->action_index = clib_host_to_net_u32 (rule->action_index);
Florin Corasc97a7392017-11-05 23:07:07 -08001573 rmp->scope =
1574 is_local ? SESSION_RULE_SCOPE_LOCAL : SESSION_RULE_SCOPE_GLOBAL;
Florin Coras6c36f532017-11-03 18:32:34 -07001575 rmp->transport_proto = transport_proto;
1576 rmp->appns_index = clib_host_to_net_u32 (appns_index);
Florin Corasc97a7392017-11-05 23:07:07 -08001577 if (tag)
1578 {
Dave Barach178cf492018-11-13 16:34:13 -05001579 clib_memcpy_fast (rmp->tag, tag, vec_len (tag));
Florin Corasc97a7392017-11-05 23:07:07 -08001580 rmp->tag[vec_len (tag)] = 0;
1581 }
Florin Coras6c36f532017-11-03 18:32:34 -07001582
Florin Coras6c4dae22018-01-09 06:39:23 -08001583 vl_api_send_msg (reg, (u8 *) rmp);
Florin Coras6c36f532017-11-03 18:32:34 -07001584}
1585
1586static void
1587send_session_rules_table_details (session_rules_table_t * srt, u8 fib_proto,
Florin Corasc97a7392017-11-05 23:07:07 -08001588 u8 tp, u8 is_local, u32 appns_index,
Florin Coras6c4dae22018-01-09 06:39:23 -08001589 vl_api_registration_t * reg, u32 context)
Florin Coras6c36f532017-11-03 18:32:34 -07001590{
1591 mma_rule_16_t *rule16;
1592 mma_rule_40_t *rule40;
1593 mma_rules_table_16_t *srt16;
1594 mma_rules_table_40_t *srt40;
Florin Corasc97a7392017-11-05 23:07:07 -08001595 u32 ri;
Florin Coras6c36f532017-11-03 18:32:34 -07001596
Florin Corasc97a7392017-11-05 23:07:07 -08001597 if (is_local || fib_proto == FIB_PROTOCOL_IP4)
Florin Coras6c36f532017-11-03 18:32:34 -07001598 {
Florin Corasc97a7392017-11-05 23:07:07 -08001599 u8 *tag = 0;
1600 /* *INDENT-OFF* */
1601 srt16 = &srt->session_rules_tables_16;
1602 pool_foreach (rule16, srt16->rules, ({
1603 ri = mma_rules_table_rule_index_16 (srt16, rule16);
1604 tag = session_rules_table_rule_tag (srt, ri, 1);
1605 send_session_rule_details4 (rule16, is_local, tp, appns_index, tag,
Florin Coras6c4dae22018-01-09 06:39:23 -08001606 reg, context);
Florin Corasc97a7392017-11-05 23:07:07 -08001607 }));
1608 /* *INDENT-ON* */
1609 }
1610 if (is_local || fib_proto == FIB_PROTOCOL_IP6)
1611 {
1612 u8 *tag = 0;
1613 /* *INDENT-OFF* */
1614 srt40 = &srt->session_rules_tables_40;
1615 pool_foreach (rule40, srt40->rules, ({
1616 ri = mma_rules_table_rule_index_40 (srt40, rule40);
1617 tag = session_rules_table_rule_tag (srt, ri, 1);
1618 send_session_rule_details6 (rule40, is_local, tp, appns_index, tag,
Florin Coras6c4dae22018-01-09 06:39:23 -08001619 reg, context);
Florin Corasc97a7392017-11-05 23:07:07 -08001620 }));
1621 /* *INDENT-ON* */
Florin Coras6c36f532017-11-03 18:32:34 -07001622 }
1623}
1624
1625static void
1626vl_api_session_rules_dump_t_handler (vl_api_one_map_server_dump_t * mp)
1627{
Florin Coras6c4dae22018-01-09 06:39:23 -08001628 vl_api_registration_t *reg;
Florin Coras6c36f532017-11-03 18:32:34 -07001629 session_table_t *st;
Florin Corasc97a7392017-11-05 23:07:07 -08001630 u8 tp;
Florin Coras6c36f532017-11-03 18:32:34 -07001631
Florin Coras6c4dae22018-01-09 06:39:23 -08001632 reg = vl_api_client_index_to_registration (mp->client_index);
1633 if (!reg)
Florin Coras6c36f532017-11-03 18:32:34 -07001634 return;
1635
1636 /* *INDENT-OFF* */
1637 session_table_foreach (st, ({
Florin Corasc97a7392017-11-05 23:07:07 -08001638 for (tp = 0; tp < TRANSPORT_N_PROTO; tp++)
1639 {
1640 send_session_rules_table_details (&st->session_rules[tp],
1641 st->active_fib_proto, tp,
Florin Coras6c4dae22018-01-09 06:39:23 -08001642 st->is_local, st->appns_index, reg,
Florin Corasc97a7392017-11-05 23:07:07 -08001643 mp->context);
1644 }
Florin Coras6c36f532017-11-03 18:32:34 -07001645 }));
1646 /* *INDENT-ON* */
1647}
1648
Florin Coras371ca502018-02-21 12:07:41 -08001649static void
1650vl_api_application_tls_cert_add_t_handler (vl_api_application_tls_cert_add_t *
1651 mp)
1652{
1653 vl_api_app_namespace_add_del_reply_t *rmp;
1654 vnet_app_add_tls_cert_args_t _a, *a = &_a;
1655 clib_error_t *error;
Florin Corase3e2f072018-03-04 07:24:30 -08001656 application_t *app;
Florin Coras371ca502018-02-21 12:07:41 -08001657 u32 cert_len;
1658 int rv = 0;
1659 if (!session_manager_is_enabled ())
1660 {
1661 rv = VNET_API_ERROR_FEATURE_DISABLED;
1662 goto done;
1663 }
Florin Corase3e2f072018-03-04 07:24:30 -08001664 if (!(app = application_lookup (mp->client_index)))
1665 {
1666 rv = VNET_API_ERROR_APPLICATION_NOT_ATTACHED;
1667 goto done;
1668 }
Dave Barachb7b92992018-10-17 10:38:51 -04001669 clib_memset (a, 0, sizeof (*a));
Florin Coras15531972018-08-12 23:50:53 -07001670 a->app_index = app->app_index;
Florin Coras371ca502018-02-21 12:07:41 -08001671 cert_len = clib_net_to_host_u16 (mp->cert_len);
Florin Coras5090c572018-03-18 08:22:17 -07001672 if (cert_len > 10000)
1673 {
1674 rv = VNET_API_ERROR_INVALID_VALUE;
1675 goto done;
1676 }
Florin Coras371ca502018-02-21 12:07:41 -08001677 vec_validate (a->cert, cert_len);
Dave Barach178cf492018-11-13 16:34:13 -05001678 clib_memcpy_fast (a->cert, mp->cert, cert_len);
Florin Coras371ca502018-02-21 12:07:41 -08001679 if ((error = vnet_app_add_tls_cert (a)))
1680 {
1681 rv = clib_error_get_code (error);
1682 clib_error_report (error);
1683 }
1684 vec_free (a->cert);
1685done:
1686 REPLY_MACRO (VL_API_APPLICATION_TLS_CERT_ADD_REPLY);
1687}
1688
1689static void
1690vl_api_application_tls_key_add_t_handler (vl_api_application_tls_key_add_t *
1691 mp)
1692{
1693 vl_api_app_namespace_add_del_reply_t *rmp;
1694 vnet_app_add_tls_key_args_t _a, *a = &_a;
1695 clib_error_t *error;
Florin Corase3e2f072018-03-04 07:24:30 -08001696 application_t *app;
Florin Coras371ca502018-02-21 12:07:41 -08001697 u32 key_len;
1698 int rv = 0;
1699 if (!session_manager_is_enabled ())
1700 {
1701 rv = VNET_API_ERROR_FEATURE_DISABLED;
1702 goto done;
1703 }
Florin Corase3e2f072018-03-04 07:24:30 -08001704 if (!(app = application_lookup (mp->client_index)))
1705 {
1706 rv = VNET_API_ERROR_APPLICATION_NOT_ATTACHED;
1707 goto done;
1708 }
Dave Barachb7b92992018-10-17 10:38:51 -04001709 clib_memset (a, 0, sizeof (*a));
Florin Coras15531972018-08-12 23:50:53 -07001710 a->app_index = app->app_index;
Florin Coras371ca502018-02-21 12:07:41 -08001711 key_len = clib_net_to_host_u16 (mp->key_len);
Florin Coras5090c572018-03-18 08:22:17 -07001712 if (key_len > 10000)
1713 {
1714 rv = VNET_API_ERROR_INVALID_VALUE;
1715 goto done;
1716 }
Florin Coras371ca502018-02-21 12:07:41 -08001717 vec_validate (a->key, key_len);
Dave Barach178cf492018-11-13 16:34:13 -05001718 clib_memcpy_fast (a->key, mp->key, key_len);
Florin Coras371ca502018-02-21 12:07:41 -08001719 if ((error = vnet_app_add_tls_key (a)))
1720 {
1721 rv = clib_error_get_code (error);
1722 clib_error_report (error);
1723 }
1724 vec_free (a->key);
1725done:
1726 REPLY_MACRO (VL_API_APPLICATION_TLS_KEY_ADD_REPLY);
1727}
1728
Florin Coras6cf30ad2017-04-04 23:08:23 -07001729static clib_error_t *
1730application_reaper_cb (u32 client_index)
Dave Barach68b0fb02017-02-28 15:15:56 -05001731{
Florin Coras6cf30ad2017-04-04 23:08:23 -07001732 application_t *app = application_lookup (client_index);
1733 vnet_app_detach_args_t _a, *a = &_a;
1734 if (app)
1735 {
Florin Coras15531972018-08-12 23:50:53 -07001736 a->app_index = app->app_index;
Florin Coras053a0e42018-11-13 15:52:38 -08001737 a->api_client_index = client_index;
Florin Coras6cf30ad2017-04-04 23:08:23 -07001738 vnet_application_detach (a);
1739 }
1740 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001741}
1742
Florin Coras6cf30ad2017-04-04 23:08:23 -07001743VL_MSG_API_REAPER_FUNCTION (application_reaper_cb);
Dave Barach68b0fb02017-02-28 15:15:56 -05001744
1745#define vl_msg_name_crc_list
1746#include <vnet/vnet_all_api_h.h>
1747#undef vl_msg_name_crc_list
1748
1749static void
1750setup_message_id_table (api_main_t * am)
1751{
1752#define _(id,n,crc) vl_msg_api_add_msg_name_crc (am, #n "_" #crc, id);
1753 foreach_vl_msg_name_crc_session;
1754#undef _
1755}
1756
1757/*
1758 * session_api_hookup
1759 * Add uri's API message handlers to the table.
1760 * vlib has alread mapped shared memory and
1761 * added the client registration handlers.
1762 * See .../open-repo/vlib/memclnt_vlib.c:memclnt_process()
1763 */
1764static clib_error_t *
1765session_api_hookup (vlib_main_t * vm)
1766{
1767 api_main_t *am = &api_main;
1768
1769#define _(N,n) \
1770 vl_msg_api_set_handlers(VL_API_##N, #n, \
1771 vl_api_##n##_t_handler, \
1772 vl_noop_handler, \
1773 vl_api_##n##_t_endian, \
1774 vl_api_##n##_t_print, \
1775 sizeof(vl_api_##n##_t), 1);
1776 foreach_session_api_msg;
1777#undef _
1778
1779 /*
1780 * Messages which bounce off the data-plane to
1781 * an API client. Simply tells the message handling infra not
1782 * to free the message.
1783 *
1784 * Bounced message handlers MUST NOT block the data plane
1785 */
1786 am->message_bounce[VL_API_CONNECT_URI] = 1;
1787 am->message_bounce[VL_API_CONNECT_SOCK] = 1;
1788
1789 /*
1790 * Set up the (msg_name, crc, message-id) table
1791 */
1792 setup_message_id_table (am);
1793
1794 return 0;
1795}
1796
1797VLIB_API_INIT_FUNCTION (session_api_hookup);
Florin Coras6cf30ad2017-04-04 23:08:23 -07001798
Dave Barach68b0fb02017-02-28 15:15:56 -05001799/*
1800 * fd.io coding-style-patch-verification: ON
1801 *
1802 * Local Variables:
1803 * eval: (c-set-style "gnu")
1804 * End:
1805 */