blob: 812d727f74bbd57b2c93247d46fde044fa9b5bb3 [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>
19
20#include <vnet/vnet_msg_enum.h>
21#include "application_interface.h"
22
23#define vl_typedefs /* define message structures */
24#include <vnet/vnet_all_api_h.h>
25#undef vl_typedefs
26
27#define vl_endianfun /* define message structures */
28#include <vnet/vnet_all_api_h.h>
29#undef vl_endianfun
30
31/* instantiate all the print functions we know about */
32#define vl_print(handle, ...) vlib_cli_output (handle, __VA_ARGS__)
33#define vl_printfun
34#include <vnet/vnet_all_api_h.h>
35#undef vl_printfun
36
37#include <vlibapi/api_helper_macros.h>
38
39#define foreach_session_api_msg \
40_(MAP_ANOTHER_SEGMENT_REPLY, map_another_segment_reply) \
Florin Coras6cf30ad2017-04-04 23:08:23 -070041_(APPLICATION_ATTACH, application_attach) \
42_(APPLICATION_DETACH, application_detach) \
Dave Barach68b0fb02017-02-28 15:15:56 -050043_(BIND_URI, bind_uri) \
44_(UNBIND_URI, unbind_uri) \
45_(CONNECT_URI, connect_uri) \
46_(DISCONNECT_SESSION, disconnect_session) \
47_(DISCONNECT_SESSION_REPLY, disconnect_session_reply) \
48_(ACCEPT_SESSION_REPLY, accept_session_reply) \
49_(RESET_SESSION_REPLY, reset_session_reply) \
Florin Corascea194d2017-10-02 00:18:51 -070050_(BIND_SOCK, bind_sock) \
Dave Barach68b0fb02017-02-28 15:15:56 -050051_(UNBIND_SOCK, unbind_sock) \
52_(CONNECT_SOCK, connect_sock) \
Florin Corase04c2992017-03-01 08:17:34 -080053_(SESSION_ENABLE_DISABLE, session_enable_disable) \
Florin Corascea194d2017-10-02 00:18:51 -070054_(APP_NAMESPACE_ADD_DEL, app_namespace_add_del) \
Florin Corase04c2992017-03-01 08:17:34 -080055
Dave Barach68b0fb02017-02-28 15:15:56 -050056static int
57send_add_segment_callback (u32 api_client_index, const u8 * segment_name,
58 u32 segment_size)
59{
60 vl_api_map_another_segment_t *mp;
61 unix_shared_memory_queue_t *q;
62
63 q = vl_api_client_index_to_input_queue (api_client_index);
64
65 if (!q)
66 return -1;
67
68 mp = vl_msg_api_alloc (sizeof (*mp));
69 memset (mp, 0, sizeof (*mp));
70 mp->_vl_msg_id = clib_host_to_net_u16 (VL_API_MAP_ANOTHER_SEGMENT);
71 mp->segment_size = segment_size;
72 strncpy ((char *) mp->segment_name, (char *) segment_name,
73 sizeof (mp->segment_name) - 1);
74
75 vl_msg_api_send_shmem (q, (u8 *) & mp);
76
77 return 0;
78}
79
80static int
Florin Coras6cf30ad2017-04-04 23:08:23 -070081send_session_accept_callback (stream_session_t * s)
Dave Barach68b0fb02017-02-28 15:15:56 -050082{
83 vl_api_accept_session_t *mp;
84 unix_shared_memory_queue_t *q, *vpp_queue;
85 application_t *server = application_get (s->app_index);
Florin Coras6cf30ad2017-04-04 23:08:23 -070086 transport_connection_t *tc;
87 transport_proto_vft_t *tp_vft;
88 stream_session_t *listener;
Dave Barach68b0fb02017-02-28 15:15:56 -050089
90 q = vl_api_client_index_to_input_queue (server->api_client_index);
91 vpp_queue = session_manager_get_vpp_event_queue (s->thread_index);
92
93 if (!q)
94 return -1;
95
96 mp = vl_msg_api_alloc (sizeof (*mp));
Florin Coras6cf30ad2017-04-04 23:08:23 -070097 memset (mp, 0, sizeof (*mp));
98
Dave Barach68b0fb02017-02-28 15:15:56 -050099 mp->_vl_msg_id = clib_host_to_net_u16 (VL_API_ACCEPT_SESSION);
Florin Corasa5464812017-04-19 13:00:05 -0700100 mp->context = server->index;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700101 listener = listen_session_get (s->session_type, s->listener_index);
Florin Coras3cbc04b2017-10-02 00:18:51 -0700102 tp_vft = transport_protocol_get_vft (s->session_type);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700103 tc = tp_vft->get_connection (s->connection_index, s->thread_index);
104 mp->listener_handle = listen_session_get_handle (listener);
Florin Coras3cbc04b2017-10-02 00:18:51 -0700105 mp->handle = session_handle (s);
Damjan Marion7bee80c2017-04-26 15:32:12 +0200106 mp->server_rx_fifo = pointer_to_uword (s->server_rx_fifo);
107 mp->server_tx_fifo = pointer_to_uword (s->server_tx_fifo);
108 mp->vpp_event_queue_address = pointer_to_uword (vpp_queue);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700109 mp->port = tc->rmt_port;
110 mp->is_ip4 = tc->is_ip4;
111 clib_memcpy (&mp->ip, &tc->rmt_ip, sizeof (tc->rmt_ip));
Dave Barach68b0fb02017-02-28 15:15:56 -0500112 vl_msg_api_send_shmem (q, (u8 *) & mp);
113
114 return 0;
115}
116
117static void
Florin Coras6cf30ad2017-04-04 23:08:23 -0700118send_session_disconnect_callback (stream_session_t * s)
Dave Barach68b0fb02017-02-28 15:15:56 -0500119{
120 vl_api_disconnect_session_t *mp;
121 unix_shared_memory_queue_t *q;
122 application_t *app = application_get (s->app_index);
123
124 q = vl_api_client_index_to_input_queue (app->api_client_index);
125
126 if (!q)
127 return;
128
129 mp = vl_msg_api_alloc (sizeof (*mp));
130 memset (mp, 0, sizeof (*mp));
131 mp->_vl_msg_id = clib_host_to_net_u16 (VL_API_DISCONNECT_SESSION);
Florin Coras3cbc04b2017-10-02 00:18:51 -0700132 mp->handle = session_handle (s);
Dave Barach68b0fb02017-02-28 15:15:56 -0500133 vl_msg_api_send_shmem (q, (u8 *) & mp);
134}
135
Florin Corasd79b41e2017-03-04 05:37:52 -0800136static void
Florin Coras6cf30ad2017-04-04 23:08:23 -0700137send_session_reset_callback (stream_session_t * s)
Florin Corasd79b41e2017-03-04 05:37:52 -0800138{
139 vl_api_reset_session_t *mp;
140 unix_shared_memory_queue_t *q;
141 application_t *app = application_get (s->app_index);
142
143 q = vl_api_client_index_to_input_queue (app->api_client_index);
144
145 if (!q)
146 return;
147
148 mp = vl_msg_api_alloc (sizeof (*mp));
149 memset (mp, 0, sizeof (*mp));
150 mp->_vl_msg_id = clib_host_to_net_u16 (VL_API_RESET_SESSION);
Florin Coras3cbc04b2017-10-02 00:18:51 -0700151 mp->handle = session_handle (s);
Florin Corasd79b41e2017-03-04 05:37:52 -0800152 vl_msg_api_send_shmem (q, (u8 *) & mp);
153}
154
Dave Barach0194f1a2017-05-15 10:11:39 -0400155int
Florin Coras6cf30ad2017-04-04 23:08:23 -0700156send_session_connected_callback (u32 app_index, u32 api_context,
157 stream_session_t * s, u8 is_fail)
Dave Barach68b0fb02017-02-28 15:15:56 -0500158{
Dave Wallace33e002b2017-09-06 01:20:02 -0400159 vl_api_connect_session_reply_t *mp;
Dave Barach68b0fb02017-02-28 15:15:56 -0500160 unix_shared_memory_queue_t *q;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700161 application_t *app;
Dave Barach68b0fb02017-02-28 15:15:56 -0500162 unix_shared_memory_queue_t *vpp_queue;
Florin Corasade70e42017-10-14 18:56:41 -0700163 transport_connection_t *tc;
Dave Barach68b0fb02017-02-28 15:15:56 -0500164
Florin Coras6cf30ad2017-04-04 23:08:23 -0700165 app = application_get (app_index);
Dave Barach68b0fb02017-02-28 15:15:56 -0500166 q = vl_api_client_index_to_input_queue (app->api_client_index);
167
168 if (!q)
169 return -1;
170
171 mp = vl_msg_api_alloc (sizeof (*mp));
Dave Wallace33e002b2017-09-06 01:20:02 -0400172 mp->_vl_msg_id = clib_host_to_net_u16 (VL_API_CONNECT_SESSION_REPLY);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700173 mp->context = api_context;
Dave Wallace965fec92017-10-17 16:19:41 -0400174
175 if (is_fail)
176 goto done;
177
178 tc = session_get_transport (s);
179 if (!tc)
Dave Barach68b0fb02017-02-28 15:15:56 -0500180 {
Dave Wallace965fec92017-10-17 16:19:41 -0400181 is_fail = 1;
182 goto done;
Florin Corase04c2992017-03-01 08:17:34 -0800183 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500184
Dave Wallace965fec92017-10-17 16:19:41 -0400185 vpp_queue = session_manager_get_vpp_event_queue (s->thread_index);
186 mp->server_rx_fifo = pointer_to_uword (s->server_rx_fifo);
187 mp->server_tx_fifo = pointer_to_uword (s->server_tx_fifo);
188 mp->handle = session_handle (s);
189 mp->vpp_event_queue_address = pointer_to_uword (vpp_queue);
190 clib_memcpy (mp->lcl_ip, &tc->lcl_ip, sizeof (tc->lcl_ip));
191 mp->is_ip4 = tc->is_ip4;
192 mp->lcl_port = tc->lcl_port;
193
194done:
195 mp->retval = is_fail ?
196 clib_host_to_net_u32 (VNET_API_ERROR_SESSION_CONNECT) : 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500197 vl_msg_api_send_shmem (q, (u8 *) & mp);
Dave Barach68b0fb02017-02-28 15:15:56 -0500198 return 0;
199}
200
201/**
202 * Redirect a connect_uri message to the indicated server.
203 * Only sent if the server has bound the related port with
204 * URI_OPTIONS_FLAGS_USE_FIFO
205 */
206static int
Florin Coras6cf30ad2017-04-04 23:08:23 -0700207redirect_connect_callback (u32 server_api_client_index, void *mp_arg)
Dave Barach68b0fb02017-02-28 15:15:56 -0500208{
Florin Corascea194d2017-10-02 00:18:51 -0700209 vl_api_connect_sock_t *mp = mp_arg;
Dave Barach68b0fb02017-02-28 15:15:56 -0500210 unix_shared_memory_queue_t *server_q, *client_q;
211 vlib_main_t *vm = vlib_get_main ();
212 f64 timeout = vlib_time_now (vm) + 0.5;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700213 application_t *app;
Dave Barach68b0fb02017-02-28 15:15:56 -0500214 int rv = 0;
215
216 server_q = vl_api_client_index_to_input_queue (server_api_client_index);
217
218 if (!server_q)
219 {
220 rv = VNET_API_ERROR_INVALID_VALUE;
221 goto out;
222 }
223
224 client_q = vl_api_client_index_to_input_queue (mp->client_index);
225 if (!client_q)
226 {
227 rv = VNET_API_ERROR_INVALID_VALUE_2;
228 goto out;
229 }
230
231 /* Tell the server the client's API queue address, so it can reply */
Damjan Marion7bee80c2017-04-26 15:32:12 +0200232 mp->client_queue_address = pointer_to_uword (client_q);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700233 app = application_lookup (mp->client_index);
Florin Coras82b13a82017-04-25 11:58:06 -0700234 if (!app)
235 {
236 clib_warning ("no client application");
237 return -1;
238 }
239
Florin Coras6cf30ad2017-04-04 23:08:23 -0700240 mp->options[SESSION_OPTIONS_RX_FIFO_SIZE] = app->sm_properties.rx_fifo_size;
241 mp->options[SESSION_OPTIONS_TX_FIFO_SIZE] = app->sm_properties.tx_fifo_size;
Dave Barach68b0fb02017-02-28 15:15:56 -0500242
243 /*
244 * Bounce message handlers MUST NOT block the data-plane.
245 * Spin waiting for the queue lock, but
246 */
247
248 while (vlib_time_now (vm) < timeout)
249 {
250 rv =
251 unix_shared_memory_queue_add (server_q, (u8 *) & mp, 1 /*nowait */ );
252 switch (rv)
253 {
254 /* correctly enqueued */
255 case 0:
Florin Corascea194d2017-10-02 00:18:51 -0700256 return VNET_API_ERROR_SESSION_REDIRECT;
Dave Barach68b0fb02017-02-28 15:15:56 -0500257
258 /* continue spinning, wait for pthread_mutex_trylock to work */
259 case -1:
260 continue;
261
262 /* queue stuffed, drop the msg */
263 case -2:
264 rv = VNET_API_ERROR_QUEUE_FULL;
265 goto out;
266 }
267 }
268out:
269 /* Dispose of the message */
270 vl_msg_api_free (mp);
271 return rv;
272}
273
Florin Corascea194d2017-10-02 00:18:51 -0700274static session_cb_vft_t session_cb_vft = {
Dave Barach68b0fb02017-02-28 15:15:56 -0500275 .session_accept_callback = send_session_accept_callback,
276 .session_disconnect_callback = send_session_disconnect_callback,
277 .session_connected_callback = send_session_connected_callback,
Florin Corasd79b41e2017-03-04 05:37:52 -0800278 .session_reset_callback = send_session_reset_callback,
Dave Barach68b0fb02017-02-28 15:15:56 -0500279 .add_segment_callback = send_add_segment_callback,
280 .redirect_connect_callback = redirect_connect_callback
281};
282
Dave Barach68b0fb02017-02-28 15:15:56 -0500283static void
Florin Corase04c2992017-03-01 08:17:34 -0800284vl_api_session_enable_disable_t_handler (vl_api_session_enable_disable_t * mp)
285{
286 vl_api_session_enable_disable_reply_t *rmp;
287 vlib_main_t *vm = vlib_get_main ();
288 int rv = 0;
289
290 vnet_session_enable_disable (vm, mp->is_enable);
291 REPLY_MACRO (VL_API_SESSION_ENABLE_DISABLE_REPLY);
292}
293
294static void
Florin Coras6cf30ad2017-04-04 23:08:23 -0700295vl_api_application_attach_t_handler (vl_api_application_attach_t * mp)
Dave Barach68b0fb02017-02-28 15:15:56 -0500296{
Florin Coras6cf30ad2017-04-04 23:08:23 -0700297 vl_api_application_attach_reply_t *rmp;
298 vnet_app_attach_args_t _a, *a = &_a;
Florin Corascea194d2017-10-02 00:18:51 -0700299 clib_error_t *error = 0;
300 int rv = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500301
Florin Coras6cf30ad2017-04-04 23:08:23 -0700302 if (session_manager_is_enabled () == 0)
303 {
304 rv = VNET_API_ERROR_FEATURE_DISABLED;
305 goto done;
306 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500307
Florin Coras6cf30ad2017-04-04 23:08:23 -0700308 STATIC_ASSERT (sizeof (u64) * SESSION_OPTIONS_N_OPTIONS <=
309 sizeof (mp->options),
310 "Out of options, fix api message definition");
Dave Barach68b0fb02017-02-28 15:15:56 -0500311
312 memset (a, 0, sizeof (*a));
Dave Barach68b0fb02017-02-28 15:15:56 -0500313 a->api_client_index = mp->client_index;
314 a->options = mp->options;
Florin Corascea194d2017-10-02 00:18:51 -0700315 a->session_cb_vft = &session_cb_vft;
Dave Barach68b0fb02017-02-28 15:15:56 -0500316
Florin Corascea194d2017-10-02 00:18:51 -0700317 if (mp->namespace_id_len > 64)
318 {
319 rv = VNET_API_ERROR_INVALID_VALUE;
320 goto done;
321 }
322
323 if (mp->namespace_id_len)
324 {
325 vec_validate (a->namespace_id, mp->namespace_id_len);
326 clib_memcpy (a->namespace_id, mp->namespace_id, mp->namespace_id_len);
327 }
328
329 if ((error = vnet_application_attach (a)))
330 {
331 rv = clib_error_get_code (error);
332 clib_error_report (error);
333 }
334 vec_free (a->namespace_id);
Dave Barach68b0fb02017-02-28 15:15:56 -0500335
Florin Coras6cf30ad2017-04-04 23:08:23 -0700336done:
Florin Corasa5464812017-04-19 13:00:05 -0700337
Dave Barach68b0fb02017-02-28 15:15:56 -0500338 /* *INDENT-OFF* */
Florin Coras6cf30ad2017-04-04 23:08:23 -0700339 REPLY_MACRO2 (VL_API_APPLICATION_ATTACH_REPLY, ({
Dave Barach68b0fb02017-02-28 15:15:56 -0500340 if (!rv)
341 {
342 rmp->segment_name_length = 0;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700343 rmp->segment_size = a->segment_size;
344 if (a->segment_name_length)
Dave Barach68b0fb02017-02-28 15:15:56 -0500345 {
Florin Coras6cf30ad2017-04-04 23:08:23 -0700346 memcpy (rmp->segment_name, a->segment_name,
347 a->segment_name_length);
348 rmp->segment_name_length = a->segment_name_length;
Dave Barach68b0fb02017-02-28 15:15:56 -0500349 }
Florin Coras6cf30ad2017-04-04 23:08:23 -0700350 rmp->app_event_queue_address = a->app_event_queue_address;
Dave Barach68b0fb02017-02-28 15:15:56 -0500351 }
352 }));
353 /* *INDENT-ON* */
Dave Barach68b0fb02017-02-28 15:15:56 -0500354}
355
356static void
Florin Coras6cf30ad2017-04-04 23:08:23 -0700357vl_api_application_detach_t_handler (vl_api_application_detach_t * mp)
358{
359 vl_api_application_detach_reply_t *rmp;
360 int rv = VNET_API_ERROR_INVALID_VALUE_2;
361 vnet_app_detach_args_t _a, *a = &_a;
362 application_t *app;
363
364 if (session_manager_is_enabled () == 0)
365 {
366 rv = VNET_API_ERROR_FEATURE_DISABLED;
367 goto done;
368 }
369
370 app = application_lookup (mp->client_index);
371 if (app)
372 {
373 a->app_index = app->index;
374 rv = vnet_application_detach (a);
375 }
376
377done:
378 REPLY_MACRO (VL_API_APPLICATION_DETACH_REPLY);
379}
380
381static void
382vl_api_bind_uri_t_handler (vl_api_bind_uri_t * mp)
383{
384 vl_api_bind_uri_reply_t *rmp;
385 vnet_bind_args_t _a, *a = &_a;
386 application_t *app;
387 int rv;
388
389 if (session_manager_is_enabled () == 0)
390 {
391 rv = VNET_API_ERROR_FEATURE_DISABLED;
392 goto done;
393 }
394
395 app = application_lookup (mp->client_index);
396 if (app)
397 {
398 memset (a, 0, sizeof (*a));
399 a->uri = (char *) mp->uri;
400 a->app_index = app->index;
401 rv = vnet_bind_uri (a);
402 }
403 else
404 {
405 rv = VNET_API_ERROR_APPLICATION_NOT_ATTACHED;
406 }
407
408done:
409 REPLY_MACRO (VL_API_BIND_URI_REPLY);
410}
411
412static void
Dave Barach68b0fb02017-02-28 15:15:56 -0500413vl_api_unbind_uri_t_handler (vl_api_unbind_uri_t * mp)
414{
415 vl_api_unbind_uri_reply_t *rmp;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700416 application_t *app;
417 vnet_unbind_args_t _a, *a = &_a;
Dave Barach68b0fb02017-02-28 15:15:56 -0500418 int rv;
419
Florin Coras6cf30ad2017-04-04 23:08:23 -0700420 if (session_manager_is_enabled () == 0)
421 {
422 rv = VNET_API_ERROR_FEATURE_DISABLED;
423 goto done;
424 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500425
Florin Coras6cf30ad2017-04-04 23:08:23 -0700426 app = application_lookup (mp->client_index);
427 if (app)
428 {
429 a->uri = (char *) mp->uri;
430 a->app_index = app->index;
431 rv = vnet_unbind_uri (a);
432 }
433 else
434 {
435 rv = VNET_API_ERROR_APPLICATION_NOT_ATTACHED;
436 }
437
438done:
Dave Barach68b0fb02017-02-28 15:15:56 -0500439 REPLY_MACRO (VL_API_UNBIND_URI_REPLY);
440}
441
Florin Corasf03a59a2017-06-09 21:07:32 -0700442static void
Dave Barach68b0fb02017-02-28 15:15:56 -0500443vl_api_connect_uri_t_handler (vl_api_connect_uri_t * mp)
444{
Dave Wallace33e002b2017-09-06 01:20:02 -0400445 vl_api_connect_session_reply_t *rmp;
Dave Barach68b0fb02017-02-28 15:15:56 -0500446 vnet_connect_args_t _a, *a = &_a;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700447 application_t *app;
Florin Corascea194d2017-10-02 00:18:51 -0700448 clib_error_t *error = 0;
449 int rv = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500450
Florin Coras6cf30ad2017-04-04 23:08:23 -0700451 if (session_manager_is_enabled () == 0)
452 {
453 rv = VNET_API_ERROR_FEATURE_DISABLED;
454 goto done;
455 }
Florin Corase04c2992017-03-01 08:17:34 -0800456
Florin Coras6cf30ad2017-04-04 23:08:23 -0700457 app = application_lookup (mp->client_index);
458 if (app)
459 {
460 a->uri = (char *) mp->uri;
461 a->api_context = mp->context;
462 a->app_index = app->index;
463 a->mp = mp;
Florin Corascea194d2017-10-02 00:18:51 -0700464 if ((error = vnet_connect_uri (a)))
465 {
466 rv = clib_error_get_code (error);
467 if (rv != VNET_API_ERROR_SESSION_REDIRECT)
468 clib_error_report (error);
469 }
Florin Coras6cf30ad2017-04-04 23:08:23 -0700470 }
471 else
472 {
473 rv = VNET_API_ERROR_APPLICATION_NOT_ATTACHED;
474 }
Florin Corase04c2992017-03-01 08:17:34 -0800475
Florin Coras3cbc04b2017-10-02 00:18:51 -0700476 /*
477 * Don't reply to stream (tcp) connects. The reply will come once
478 * the connection is established. In case of the redirects, the reply
479 * will come from the server app.
480 */
Florin Corascea194d2017-10-02 00:18:51 -0700481 if (rv == 0 || rv == VNET_API_ERROR_SESSION_REDIRECT)
Florin Corase04c2992017-03-01 08:17:34 -0800482 return;
483
Florin Coras6cf30ad2017-04-04 23:08:23 -0700484done:
Florin Corase04c2992017-03-01 08:17:34 -0800485 /* *INDENT-OFF* */
Dave Wallace33e002b2017-09-06 01:20:02 -0400486 REPLY_MACRO (VL_API_CONNECT_SESSION_REPLY);
Florin Corase04c2992017-03-01 08:17:34 -0800487 /* *INDENT-ON* */
Dave Barach68b0fb02017-02-28 15:15:56 -0500488}
489
490static void
491vl_api_disconnect_session_t_handler (vl_api_disconnect_session_t * mp)
492{
493 vl_api_disconnect_session_reply_t *rmp;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700494 vnet_disconnect_args_t _a, *a = &_a;
495 application_t *app;
496 int rv = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500497
Florin Coras6cf30ad2017-04-04 23:08:23 -0700498 if (session_manager_is_enabled () == 0)
499 {
500 rv = VNET_API_ERROR_FEATURE_DISABLED;
501 goto done;
502 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500503
Florin Coras6cf30ad2017-04-04 23:08:23 -0700504 app = application_lookup (mp->client_index);
505 if (app)
506 {
507 a->handle = mp->handle;
508 a->app_index = app->index;
509 rv = vnet_disconnect_session (a);
510 }
511 else
512 {
513 rv = VNET_API_ERROR_APPLICATION_NOT_ATTACHED;
514 }
515
516done:
Dave Barach68b0fb02017-02-28 15:15:56 -0500517 REPLY_MACRO (VL_API_DISCONNECT_SESSION_REPLY);
518}
519
520static void
521vl_api_disconnect_session_reply_t_handler (vl_api_disconnect_session_reply_t *
522 mp)
523{
Florin Coras6cf30ad2017-04-04 23:08:23 -0700524 vnet_disconnect_args_t _a, *a = &_a;
525 application_t *app;
Dave Barach68b0fb02017-02-28 15:15:56 -0500526
527 /* Client objected to disconnecting the session, log and continue */
528 if (mp->retval)
529 {
530 clib_warning ("client retval %d", mp->retval);
531 return;
532 }
533
534 /* Disconnect has been confirmed. Confirm close to transport */
Florin Coras6cf30ad2017-04-04 23:08:23 -0700535 app = application_lookup (mp->client_index);
536 if (app)
537 {
538 a->handle = mp->handle;
539 a->app_index = app->index;
540 vnet_disconnect_session (a);
541 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500542}
543
544static void
545vl_api_reset_session_reply_t_handler (vl_api_reset_session_reply_t * mp)
546{
Florin Coras6cf30ad2017-04-04 23:08:23 -0700547 application_t *app;
Dave Barach68b0fb02017-02-28 15:15:56 -0500548 stream_session_t *s;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700549 u32 index, thread_index;
Dave Barach68b0fb02017-02-28 15:15:56 -0500550
Florin Coras6cf30ad2017-04-04 23:08:23 -0700551 app = application_lookup (mp->client_index);
552 if (!app)
553 return;
554
Florin Corascea194d2017-10-02 00:18:51 -0700555 session_parse_handle (mp->handle, &index, &thread_index);
Florin Coras3cbc04b2017-10-02 00:18:51 -0700556 s = session_get_if_valid (index, thread_index);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700557 if (s == 0 || app->index != s->app_index)
Dave Barach68b0fb02017-02-28 15:15:56 -0500558 {
559 clib_warning ("Invalid session!");
560 return;
561 }
562
563 /* Client objected to resetting the session, log and continue */
564 if (mp->retval)
565 {
566 clib_warning ("client retval %d", mp->retval);
567 return;
568 }
569
Dave Barach68b0fb02017-02-28 15:15:56 -0500570 /* This comes as a response to a reset, transport only waiting for
571 * confirmation to remove connection state, no need to disconnect */
572 stream_session_cleanup (s);
573}
574
575static void
576vl_api_accept_session_reply_t_handler (vl_api_accept_session_reply_t * mp)
577{
578 stream_session_t *s;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700579 u32 session_index, thread_index;
Florin Corasa5464812017-04-19 13:00:05 -0700580 vnet_disconnect_args_t _a, *a = &_a;
Dave Barach68b0fb02017-02-28 15:15:56 -0500581
Florin Corasa5464812017-04-19 13:00:05 -0700582 /* Server isn't interested, kill the session */
583 if (mp->retval)
Dave Barach68b0fb02017-02-28 15:15:56 -0500584 {
Florin Corasa5464812017-04-19 13:00:05 -0700585 a->app_index = mp->context;
586 a->handle = mp->handle;
587 vnet_disconnect_session (a);
Dave Barach68b0fb02017-02-28 15:15:56 -0500588 }
Florin Corasa5464812017-04-19 13:00:05 -0700589 else
590 {
Florin Corascea194d2017-10-02 00:18:51 -0700591 session_parse_handle (mp->handle, &session_index, &thread_index);
Florin Coras3cbc04b2017-10-02 00:18:51 -0700592 s = session_get_if_valid (session_index, thread_index);
Florin Corasa5464812017-04-19 13:00:05 -0700593 if (!s)
594 {
595 clib_warning ("session doesn't exist");
596 return;
597 }
598 if (s->app_index != mp->context)
599 {
600 clib_warning ("app doesn't own session");
601 return;
602 }
Florin Corasa5464812017-04-19 13:00:05 -0700603 s->session_state = SESSION_STATE_READY;
604 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500605}
606
607static void
608vl_api_map_another_segment_reply_t_handler (vl_api_map_another_segment_reply_t
609 * mp)
610{
611 clib_warning ("not implemented");
612}
613
614static void
615vl_api_bind_sock_t_handler (vl_api_bind_sock_t * mp)
616{
617 vl_api_bind_sock_reply_t *rmp;
618 vnet_bind_args_t _a, *a = &_a;
Florin Corascea194d2017-10-02 00:18:51 -0700619 int rv = 0;
620 clib_error_t *error;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700621 application_t *app;
Dave Barach68b0fb02017-02-28 15:15:56 -0500622
Florin Coras6cf30ad2017-04-04 23:08:23 -0700623 if (session_manager_is_enabled () == 0)
624 {
625 rv = VNET_API_ERROR_FEATURE_DISABLED;
626 goto done;
627 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500628
Florin Coras6cf30ad2017-04-04 23:08:23 -0700629 app = application_lookup (mp->client_index);
630 if (app)
631 {
Dave Wallace33e002b2017-09-06 01:20:02 -0400632 ip46_address_t *ip46 = (ip46_address_t *) mp->ip;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700633 memset (a, 0, sizeof (*a));
Florin Corascea194d2017-10-02 00:18:51 -0700634 a->sep.is_ip4 = mp->is_ip4;
635 a->sep.ip = *ip46;
636 a->sep.port = mp->port;
637 a->sep.fib_index = mp->vrf;
638 a->sep.sw_if_index = ENDPOINT_INVALID_INDEX;
Florin Coras3cbc04b2017-10-02 00:18:51 -0700639 a->sep.transport_proto = mp->proto;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700640 a->app_index = app->index;
Dave Barach68b0fb02017-02-28 15:15:56 -0500641
Florin Corascea194d2017-10-02 00:18:51 -0700642 if ((error = vnet_bind (a)))
643 {
644 rv = clib_error_get_code (error);
645 clib_error_report (error);
646 }
Florin Coras6cf30ad2017-04-04 23:08:23 -0700647 }
648done:
Florin Corascea194d2017-10-02 00:18:51 -0700649 /* *INDENT-OFF* */
650 REPLY_MACRO2 (VL_API_BIND_SOCK_REPLY,({
651 if (!rv)
652 rmp->handle = a->handle;
653 }));
654 /* *INDENT-ON* */
Dave Barach68b0fb02017-02-28 15:15:56 -0500655}
656
657static void
658vl_api_unbind_sock_t_handler (vl_api_unbind_sock_t * mp)
659{
660 vl_api_unbind_sock_reply_t *rmp;
661 vnet_unbind_args_t _a, *a = &_a;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700662 application_t *app;
Florin Corascea194d2017-10-02 00:18:51 -0700663 clib_error_t *error;
664 int rv = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500665
Florin Coras6cf30ad2017-04-04 23:08:23 -0700666 if (session_manager_is_enabled () == 0)
667 {
668 rv = VNET_API_ERROR_FEATURE_DISABLED;
669 goto done;
670 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500671
Florin Coras6cf30ad2017-04-04 23:08:23 -0700672 app = application_lookup (mp->client_index);
673 if (app)
674 {
675 a->app_index = mp->client_index;
676 a->handle = mp->handle;
Florin Corascea194d2017-10-02 00:18:51 -0700677 if ((error = vnet_unbind (a)))
678 {
679 rv = clib_error_get_code (error);
680 clib_error_report (error);
681 }
Florin Coras6cf30ad2017-04-04 23:08:23 -0700682 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500683
Florin Coras6cf30ad2017-04-04 23:08:23 -0700684done:
Dave Barach68b0fb02017-02-28 15:15:56 -0500685 REPLY_MACRO (VL_API_UNBIND_SOCK_REPLY);
686}
687
688static void
689vl_api_connect_sock_t_handler (vl_api_connect_sock_t * mp)
690{
Dave Wallace33e002b2017-09-06 01:20:02 -0400691 vl_api_connect_session_reply_t *rmp;
Dave Barach68b0fb02017-02-28 15:15:56 -0500692 vnet_connect_args_t _a, *a = &_a;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700693 application_t *app;
Florin Corascea194d2017-10-02 00:18:51 -0700694 clib_error_t *error = 0;
695 int rv = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500696
Florin Coras6cf30ad2017-04-04 23:08:23 -0700697 if (session_manager_is_enabled () == 0)
698 {
699 rv = VNET_API_ERROR_FEATURE_DISABLED;
700 goto done;
701 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500702
Florin Coras6cf30ad2017-04-04 23:08:23 -0700703 app = application_lookup (mp->client_index);
704 if (app)
705 {
Dave Wallaceb2d5ff32017-06-14 12:38:28 -0400706 unix_shared_memory_queue_t *client_q;
Dave Wallace33e002b2017-09-06 01:20:02 -0400707 ip46_address_t *ip46 = (ip46_address_t *) mp->ip;
Dave Wallaceb2d5ff32017-06-14 12:38:28 -0400708
709 client_q = vl_api_client_index_to_input_queue (mp->client_index);
710 mp->client_queue_address = pointer_to_uword (client_q);
Florin Corascea194d2017-10-02 00:18:51 -0700711 a->sep.is_ip4 = mp->is_ip4;
712 a->sep.ip = *ip46;
713 a->sep.port = mp->port;
714 a->sep.transport_proto = mp->proto;
715 a->sep.fib_index = mp->vrf;
716 a->sep.sw_if_index = ENDPOINT_INVALID_INDEX;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700717 a->api_context = mp->context;
718 a->app_index = app->index;
719 a->mp = mp;
Florin Corascea194d2017-10-02 00:18:51 -0700720 if ((error = vnet_connect (a)))
721 {
722 rv = clib_error_get_code (error);
723 if (rv != VNET_API_ERROR_SESSION_REDIRECT)
724 clib_error_report (error);
725 }
Florin Coras6cf30ad2017-04-04 23:08:23 -0700726 }
727 else
728 {
729 rv = VNET_API_ERROR_APPLICATION_NOT_ATTACHED;
730 }
Florin Corase04c2992017-03-01 08:17:34 -0800731
Florin Corascea194d2017-10-02 00:18:51 -0700732 if (rv == 0 || rv == VNET_API_ERROR_SESSION_REDIRECT)
Florin Corase04c2992017-03-01 08:17:34 -0800733 return;
734
735 /* Got some error, relay it */
736
Florin Coras6cf30ad2017-04-04 23:08:23 -0700737done:
Dave Wallace33e002b2017-09-06 01:20:02 -0400738 REPLY_MACRO (VL_API_CONNECT_SESSION_REPLY);
Dave Barach68b0fb02017-02-28 15:15:56 -0500739}
740
Florin Corascea194d2017-10-02 00:18:51 -0700741static void
742vl_api_app_namespace_add_del_t_handler (vl_api_app_namespace_add_del_t * mp)
743{
744 vl_api_app_namespace_add_del_reply_t *rmp;
745 u8 *ns_id = 0;
746 clib_error_t *error = 0;
747 int rv = 0;
748 if (!session_manager_is_enabled ())
749 {
750 rv = VNET_API_ERROR_FEATURE_DISABLED;
751 goto done;
752 }
753
754 if (mp->namespace_id_len > ARRAY_LEN (mp->namespace_id))
755 {
756 rv = VNET_API_ERROR_INVALID_VALUE;
757 goto done;
758 }
759
760 vec_validate (ns_id, mp->namespace_id_len - 1);
761 clib_memcpy (ns_id, mp->namespace_id, mp->namespace_id_len);
762 vnet_app_namespace_add_del_args_t args = {
763 .ns_id = ns_id,
764 .secret = mp->secret,
765 .sw_if_index = clib_net_to_host_u32 (mp->sw_if_index),
766 .ip4_fib_id = clib_net_to_host_u32 (mp->ip4_fib_id),
767 .ip6_fib_id = clib_net_to_host_u32 (mp->ip6_fib_id),
768 .is_add = 1
769 };
770 error = vnet_app_namespace_add_del (&args);
771 if (error)
772 {
773 rv = clib_error_get_code (error);
774 clib_error_report (error);
775 }
776 vec_free (ns_id);
777done:
778 REPLY_MACRO (VL_API_APP_NAMESPACE_ADD_DEL_REPLY);
779}
780
Florin Coras6cf30ad2017-04-04 23:08:23 -0700781static clib_error_t *
782application_reaper_cb (u32 client_index)
Dave Barach68b0fb02017-02-28 15:15:56 -0500783{
Florin Coras6cf30ad2017-04-04 23:08:23 -0700784 application_t *app = application_lookup (client_index);
785 vnet_app_detach_args_t _a, *a = &_a;
786 if (app)
787 {
788 a->app_index = app->index;
789 vnet_application_detach (a);
790 }
791 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500792}
793
Florin Coras6cf30ad2017-04-04 23:08:23 -0700794VL_MSG_API_REAPER_FUNCTION (application_reaper_cb);
Dave Barach68b0fb02017-02-28 15:15:56 -0500795
796#define vl_msg_name_crc_list
797#include <vnet/vnet_all_api_h.h>
798#undef vl_msg_name_crc_list
799
800static void
801setup_message_id_table (api_main_t * am)
802{
803#define _(id,n,crc) vl_msg_api_add_msg_name_crc (am, #n "_" #crc, id);
804 foreach_vl_msg_name_crc_session;
805#undef _
806}
807
808/*
809 * session_api_hookup
810 * Add uri's API message handlers to the table.
811 * vlib has alread mapped shared memory and
812 * added the client registration handlers.
813 * See .../open-repo/vlib/memclnt_vlib.c:memclnt_process()
814 */
815static clib_error_t *
816session_api_hookup (vlib_main_t * vm)
817{
818 api_main_t *am = &api_main;
819
820#define _(N,n) \
821 vl_msg_api_set_handlers(VL_API_##N, #n, \
822 vl_api_##n##_t_handler, \
823 vl_noop_handler, \
824 vl_api_##n##_t_endian, \
825 vl_api_##n##_t_print, \
826 sizeof(vl_api_##n##_t), 1);
827 foreach_session_api_msg;
828#undef _
829
830 /*
831 * Messages which bounce off the data-plane to
832 * an API client. Simply tells the message handling infra not
833 * to free the message.
834 *
835 * Bounced message handlers MUST NOT block the data plane
836 */
837 am->message_bounce[VL_API_CONNECT_URI] = 1;
838 am->message_bounce[VL_API_CONNECT_SOCK] = 1;
839
840 /*
841 * Set up the (msg_name, crc, message-id) table
842 */
843 setup_message_id_table (am);
844
845 return 0;
846}
847
848VLIB_API_INIT_FUNCTION (session_api_hookup);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700849
Dave Barach68b0fb02017-02-28 15:15:56 -0500850/*
851 * fd.io coding-style-patch-verification: ON
852 *
853 * Local Variables:
854 * eval: (c-set-style "gnu")
855 * End:
856 */