blob: c54e635d5349222cb772fb784e07d8530a9803bc [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 Corase04c2992017-03-01 08:17:34 -080059
Dave Barach68b0fb02017-02-28 15:15:56 -050060static int
61send_add_segment_callback (u32 api_client_index, const u8 * segment_name,
62 u32 segment_size)
63{
64 vl_api_map_another_segment_t *mp;
65 unix_shared_memory_queue_t *q;
66
67 q = vl_api_client_index_to_input_queue (api_client_index);
68
69 if (!q)
70 return -1;
71
72 mp = vl_msg_api_alloc (sizeof (*mp));
73 memset (mp, 0, sizeof (*mp));
74 mp->_vl_msg_id = clib_host_to_net_u16 (VL_API_MAP_ANOTHER_SEGMENT);
75 mp->segment_size = segment_size;
76 strncpy ((char *) mp->segment_name, (char *) segment_name,
77 sizeof (mp->segment_name) - 1);
78
79 vl_msg_api_send_shmem (q, (u8 *) & mp);
80
81 return 0;
82}
83
84static int
Florin Coras6cf30ad2017-04-04 23:08:23 -070085send_session_accept_callback (stream_session_t * s)
Dave Barach68b0fb02017-02-28 15:15:56 -050086{
87 vl_api_accept_session_t *mp;
88 unix_shared_memory_queue_t *q, *vpp_queue;
89 application_t *server = application_get (s->app_index);
Florin Coras6cf30ad2017-04-04 23:08:23 -070090 transport_connection_t *tc;
91 transport_proto_vft_t *tp_vft;
92 stream_session_t *listener;
Dave Barach68b0fb02017-02-28 15:15:56 -050093
94 q = vl_api_client_index_to_input_queue (server->api_client_index);
95 vpp_queue = session_manager_get_vpp_event_queue (s->thread_index);
96
97 if (!q)
98 return -1;
99
100 mp = vl_msg_api_alloc (sizeof (*mp));
Florin Coras6cf30ad2017-04-04 23:08:23 -0700101 memset (mp, 0, sizeof (*mp));
102
Dave Barach68b0fb02017-02-28 15:15:56 -0500103 mp->_vl_msg_id = clib_host_to_net_u16 (VL_API_ACCEPT_SESSION);
Florin Corasa5464812017-04-19 13:00:05 -0700104 mp->context = server->index;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700105 listener = listen_session_get (s->session_type, s->listener_index);
Florin Coras3cbc04b2017-10-02 00:18:51 -0700106 tp_vft = transport_protocol_get_vft (s->session_type);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700107 tc = tp_vft->get_connection (s->connection_index, s->thread_index);
108 mp->listener_handle = listen_session_get_handle (listener);
Florin Corasc3ddea82017-11-27 03:12:00 -0800109
110 if (application_is_proxy (server))
111 {
112 listener =
113 application_first_listener (server,
114 transport_connection_fib_proto (tc),
115 tc->proto);
116 if (listener)
117 mp->listener_handle = listen_session_get_handle (listener);
118 }
Florin Coras3cbc04b2017-10-02 00:18:51 -0700119 mp->handle = session_handle (s);
Damjan Marion7bee80c2017-04-26 15:32:12 +0200120 mp->server_rx_fifo = pointer_to_uword (s->server_rx_fifo);
121 mp->server_tx_fifo = pointer_to_uword (s->server_tx_fifo);
122 mp->vpp_event_queue_address = pointer_to_uword (vpp_queue);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700123 mp->port = tc->rmt_port;
124 mp->is_ip4 = tc->is_ip4;
125 clib_memcpy (&mp->ip, &tc->rmt_ip, sizeof (tc->rmt_ip));
Dave Barach68b0fb02017-02-28 15:15:56 -0500126 vl_msg_api_send_shmem (q, (u8 *) & mp);
127
128 return 0;
129}
130
131static void
Florin Coras6cf30ad2017-04-04 23:08:23 -0700132send_session_disconnect_callback (stream_session_t * s)
Dave Barach68b0fb02017-02-28 15:15:56 -0500133{
134 vl_api_disconnect_session_t *mp;
135 unix_shared_memory_queue_t *q;
136 application_t *app = application_get (s->app_index);
137
138 q = vl_api_client_index_to_input_queue (app->api_client_index);
139
140 if (!q)
141 return;
142
143 mp = vl_msg_api_alloc (sizeof (*mp));
144 memset (mp, 0, sizeof (*mp));
145 mp->_vl_msg_id = clib_host_to_net_u16 (VL_API_DISCONNECT_SESSION);
Florin Coras3cbc04b2017-10-02 00:18:51 -0700146 mp->handle = session_handle (s);
Dave Barach68b0fb02017-02-28 15:15:56 -0500147 vl_msg_api_send_shmem (q, (u8 *) & mp);
148}
149
Florin Corasd79b41e2017-03-04 05:37:52 -0800150static void
Florin Coras6cf30ad2017-04-04 23:08:23 -0700151send_session_reset_callback (stream_session_t * s)
Florin Corasd79b41e2017-03-04 05:37:52 -0800152{
153 vl_api_reset_session_t *mp;
154 unix_shared_memory_queue_t *q;
155 application_t *app = application_get (s->app_index);
156
157 q = vl_api_client_index_to_input_queue (app->api_client_index);
158
159 if (!q)
160 return;
161
162 mp = vl_msg_api_alloc (sizeof (*mp));
163 memset (mp, 0, sizeof (*mp));
164 mp->_vl_msg_id = clib_host_to_net_u16 (VL_API_RESET_SESSION);
Florin Coras3cbc04b2017-10-02 00:18:51 -0700165 mp->handle = session_handle (s);
Florin Corasd79b41e2017-03-04 05:37:52 -0800166 vl_msg_api_send_shmem (q, (u8 *) & mp);
167}
168
Dave Barach0194f1a2017-05-15 10:11:39 -0400169int
Florin Coras6cf30ad2017-04-04 23:08:23 -0700170send_session_connected_callback (u32 app_index, u32 api_context,
171 stream_session_t * s, u8 is_fail)
Dave Barach68b0fb02017-02-28 15:15:56 -0500172{
Dave Wallace33e002b2017-09-06 01:20:02 -0400173 vl_api_connect_session_reply_t *mp;
Dave Barach68b0fb02017-02-28 15:15:56 -0500174 unix_shared_memory_queue_t *q;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700175 application_t *app;
Dave Barach68b0fb02017-02-28 15:15:56 -0500176 unix_shared_memory_queue_t *vpp_queue;
Florin Corasade70e42017-10-14 18:56:41 -0700177 transport_connection_t *tc;
Dave Barach68b0fb02017-02-28 15:15:56 -0500178
Florin Coras6cf30ad2017-04-04 23:08:23 -0700179 app = application_get (app_index);
Dave Barach68b0fb02017-02-28 15:15:56 -0500180 q = vl_api_client_index_to_input_queue (app->api_client_index);
181
182 if (!q)
183 return -1;
184
185 mp = vl_msg_api_alloc (sizeof (*mp));
Dave Wallace33e002b2017-09-06 01:20:02 -0400186 mp->_vl_msg_id = clib_host_to_net_u16 (VL_API_CONNECT_SESSION_REPLY);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700187 mp->context = api_context;
Dave Wallace965fec92017-10-17 16:19:41 -0400188
189 if (is_fail)
190 goto done;
191
192 tc = session_get_transport (s);
193 if (!tc)
Dave Barach68b0fb02017-02-28 15:15:56 -0500194 {
Dave Wallace965fec92017-10-17 16:19:41 -0400195 is_fail = 1;
196 goto done;
Florin Corase04c2992017-03-01 08:17:34 -0800197 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500198
Dave Wallace965fec92017-10-17 16:19:41 -0400199 vpp_queue = session_manager_get_vpp_event_queue (s->thread_index);
200 mp->server_rx_fifo = pointer_to_uword (s->server_rx_fifo);
201 mp->server_tx_fifo = pointer_to_uword (s->server_tx_fifo);
202 mp->handle = session_handle (s);
203 mp->vpp_event_queue_address = pointer_to_uword (vpp_queue);
204 clib_memcpy (mp->lcl_ip, &tc->lcl_ip, sizeof (tc->lcl_ip));
205 mp->is_ip4 = tc->is_ip4;
206 mp->lcl_port = tc->lcl_port;
207
208done:
209 mp->retval = is_fail ?
210 clib_host_to_net_u32 (VNET_API_ERROR_SESSION_CONNECT) : 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500211 vl_msg_api_send_shmem (q, (u8 *) & mp);
Dave Barach68b0fb02017-02-28 15:15:56 -0500212 return 0;
213}
214
215/**
216 * Redirect a connect_uri message to the indicated server.
217 * Only sent if the server has bound the related port with
218 * URI_OPTIONS_FLAGS_USE_FIFO
219 */
220static int
Florin Coras6cf30ad2017-04-04 23:08:23 -0700221redirect_connect_callback (u32 server_api_client_index, void *mp_arg)
Dave Barach68b0fb02017-02-28 15:15:56 -0500222{
Florin Corascea194d2017-10-02 00:18:51 -0700223 vl_api_connect_sock_t *mp = mp_arg;
Dave Barach68b0fb02017-02-28 15:15:56 -0500224 unix_shared_memory_queue_t *server_q, *client_q;
Florin Corasad0c77f2017-11-09 18:00:15 -0800225 segment_manager_properties_t *props;
Dave Barach68b0fb02017-02-28 15:15:56 -0500226 vlib_main_t *vm = vlib_get_main ();
227 f64 timeout = vlib_time_now (vm) + 0.5;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700228 application_t *app;
Dave Barach68b0fb02017-02-28 15:15:56 -0500229 int rv = 0;
230
231 server_q = vl_api_client_index_to_input_queue (server_api_client_index);
232
233 if (!server_q)
234 {
235 rv = VNET_API_ERROR_INVALID_VALUE;
236 goto out;
237 }
238
239 client_q = vl_api_client_index_to_input_queue (mp->client_index);
240 if (!client_q)
241 {
242 rv = VNET_API_ERROR_INVALID_VALUE_2;
243 goto out;
244 }
245
246 /* Tell the server the client's API queue address, so it can reply */
Damjan Marion7bee80c2017-04-26 15:32:12 +0200247 mp->client_queue_address = pointer_to_uword (client_q);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700248 app = application_lookup (mp->client_index);
Florin Coras82b13a82017-04-25 11:58:06 -0700249 if (!app)
250 {
251 clib_warning ("no client application");
252 return -1;
253 }
254
Florin Corasad0c77f2017-11-09 18:00:15 -0800255 props = segment_manager_properties_get (app->sm_properties);
256 mp->options[SESSION_OPTIONS_RX_FIFO_SIZE] = props->rx_fifo_size;
257 mp->options[SESSION_OPTIONS_TX_FIFO_SIZE] = props->tx_fifo_size;
Dave Barach68b0fb02017-02-28 15:15:56 -0500258
259 /*
260 * Bounce message handlers MUST NOT block the data-plane.
261 * Spin waiting for the queue lock, but
262 */
263
264 while (vlib_time_now (vm) < timeout)
265 {
266 rv =
267 unix_shared_memory_queue_add (server_q, (u8 *) & mp, 1 /*nowait */ );
268 switch (rv)
269 {
270 /* correctly enqueued */
271 case 0:
Florin Corascea194d2017-10-02 00:18:51 -0700272 return VNET_API_ERROR_SESSION_REDIRECT;
Dave Barach68b0fb02017-02-28 15:15:56 -0500273
274 /* continue spinning, wait for pthread_mutex_trylock to work */
275 case -1:
276 continue;
277
278 /* queue stuffed, drop the msg */
279 case -2:
280 rv = VNET_API_ERROR_QUEUE_FULL;
281 goto out;
282 }
283 }
284out:
285 /* Dispose of the message */
286 vl_msg_api_free (mp);
287 return rv;
288}
289
Florin Corascea194d2017-10-02 00:18:51 -0700290static session_cb_vft_t session_cb_vft = {
Dave Barach68b0fb02017-02-28 15:15:56 -0500291 .session_accept_callback = send_session_accept_callback,
292 .session_disconnect_callback = send_session_disconnect_callback,
293 .session_connected_callback = send_session_connected_callback,
Florin Corasd79b41e2017-03-04 05:37:52 -0800294 .session_reset_callback = send_session_reset_callback,
Dave Barach68b0fb02017-02-28 15:15:56 -0500295 .add_segment_callback = send_add_segment_callback,
296 .redirect_connect_callback = redirect_connect_callback
297};
298
Dave Barach68b0fb02017-02-28 15:15:56 -0500299static void
Florin Corase04c2992017-03-01 08:17:34 -0800300vl_api_session_enable_disable_t_handler (vl_api_session_enable_disable_t * mp)
301{
302 vl_api_session_enable_disable_reply_t *rmp;
303 vlib_main_t *vm = vlib_get_main ();
304 int rv = 0;
305
306 vnet_session_enable_disable (vm, mp->is_enable);
307 REPLY_MACRO (VL_API_SESSION_ENABLE_DISABLE_REPLY);
308}
309
310static void
Florin Coras6cf30ad2017-04-04 23:08:23 -0700311vl_api_application_attach_t_handler (vl_api_application_attach_t * mp)
Dave Barach68b0fb02017-02-28 15:15:56 -0500312{
Florin Coras6cf30ad2017-04-04 23:08:23 -0700313 vl_api_application_attach_reply_t *rmp;
314 vnet_app_attach_args_t _a, *a = &_a;
Florin Corascea194d2017-10-02 00:18:51 -0700315 clib_error_t *error = 0;
316 int rv = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500317
Florin Coras6cf30ad2017-04-04 23:08:23 -0700318 if (session_manager_is_enabled () == 0)
319 {
320 rv = VNET_API_ERROR_FEATURE_DISABLED;
321 goto done;
322 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500323
Florin Coras6cf30ad2017-04-04 23:08:23 -0700324 STATIC_ASSERT (sizeof (u64) * SESSION_OPTIONS_N_OPTIONS <=
325 sizeof (mp->options),
326 "Out of options, fix api message definition");
Dave Barach68b0fb02017-02-28 15:15:56 -0500327
328 memset (a, 0, sizeof (*a));
Dave Barach68b0fb02017-02-28 15:15:56 -0500329 a->api_client_index = mp->client_index;
330 a->options = mp->options;
Florin Corascea194d2017-10-02 00:18:51 -0700331 a->session_cb_vft = &session_cb_vft;
Dave Barach68b0fb02017-02-28 15:15:56 -0500332
Florin Corascea194d2017-10-02 00:18:51 -0700333 if (mp->namespace_id_len > 64)
334 {
335 rv = VNET_API_ERROR_INVALID_VALUE;
336 goto done;
337 }
338
339 if (mp->namespace_id_len)
340 {
Dave Wallace8af20542017-10-26 03:29:30 -0400341 vec_validate (a->namespace_id, mp->namespace_id_len - 1);
Florin Corascea194d2017-10-02 00:18:51 -0700342 clib_memcpy (a->namespace_id, mp->namespace_id, mp->namespace_id_len);
343 }
344
345 if ((error = vnet_application_attach (a)))
346 {
347 rv = clib_error_get_code (error);
348 clib_error_report (error);
349 }
350 vec_free (a->namespace_id);
Dave Barach68b0fb02017-02-28 15:15:56 -0500351
Florin Coras6cf30ad2017-04-04 23:08:23 -0700352done:
Florin Corasa5464812017-04-19 13:00:05 -0700353
Dave Barach68b0fb02017-02-28 15:15:56 -0500354 /* *INDENT-OFF* */
Florin Coras6cf30ad2017-04-04 23:08:23 -0700355 REPLY_MACRO2 (VL_API_APPLICATION_ATTACH_REPLY, ({
Dave Barach68b0fb02017-02-28 15:15:56 -0500356 if (!rv)
357 {
358 rmp->segment_name_length = 0;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700359 rmp->segment_size = a->segment_size;
360 if (a->segment_name_length)
Dave Barach68b0fb02017-02-28 15:15:56 -0500361 {
Florin Coras6cf30ad2017-04-04 23:08:23 -0700362 memcpy (rmp->segment_name, a->segment_name,
363 a->segment_name_length);
364 rmp->segment_name_length = a->segment_name_length;
Dave Barach68b0fb02017-02-28 15:15:56 -0500365 }
Florin Coras6cf30ad2017-04-04 23:08:23 -0700366 rmp->app_event_queue_address = a->app_event_queue_address;
Dave Barach68b0fb02017-02-28 15:15:56 -0500367 }
368 }));
369 /* *INDENT-ON* */
Dave Barach68b0fb02017-02-28 15:15:56 -0500370}
371
372static void
Florin Coras6cf30ad2017-04-04 23:08:23 -0700373vl_api_application_detach_t_handler (vl_api_application_detach_t * mp)
374{
375 vl_api_application_detach_reply_t *rmp;
376 int rv = VNET_API_ERROR_INVALID_VALUE_2;
377 vnet_app_detach_args_t _a, *a = &_a;
378 application_t *app;
379
380 if (session_manager_is_enabled () == 0)
381 {
382 rv = VNET_API_ERROR_FEATURE_DISABLED;
383 goto done;
384 }
385
386 app = application_lookup (mp->client_index);
387 if (app)
388 {
389 a->app_index = app->index;
390 rv = vnet_application_detach (a);
391 }
392
393done:
394 REPLY_MACRO (VL_API_APPLICATION_DETACH_REPLY);
395}
396
397static void
398vl_api_bind_uri_t_handler (vl_api_bind_uri_t * mp)
399{
400 vl_api_bind_uri_reply_t *rmp;
401 vnet_bind_args_t _a, *a = &_a;
402 application_t *app;
403 int rv;
404
405 if (session_manager_is_enabled () == 0)
406 {
407 rv = VNET_API_ERROR_FEATURE_DISABLED;
408 goto done;
409 }
410
411 app = application_lookup (mp->client_index);
412 if (app)
413 {
414 memset (a, 0, sizeof (*a));
415 a->uri = (char *) mp->uri;
416 a->app_index = app->index;
417 rv = vnet_bind_uri (a);
418 }
419 else
420 {
421 rv = VNET_API_ERROR_APPLICATION_NOT_ATTACHED;
422 }
423
424done:
425 REPLY_MACRO (VL_API_BIND_URI_REPLY);
426}
427
428static void
Dave Barach68b0fb02017-02-28 15:15:56 -0500429vl_api_unbind_uri_t_handler (vl_api_unbind_uri_t * mp)
430{
431 vl_api_unbind_uri_reply_t *rmp;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700432 application_t *app;
433 vnet_unbind_args_t _a, *a = &_a;
Dave Barach68b0fb02017-02-28 15:15:56 -0500434 int rv;
435
Florin Coras6cf30ad2017-04-04 23:08:23 -0700436 if (session_manager_is_enabled () == 0)
437 {
438 rv = VNET_API_ERROR_FEATURE_DISABLED;
439 goto done;
440 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500441
Florin Coras6cf30ad2017-04-04 23:08:23 -0700442 app = application_lookup (mp->client_index);
443 if (app)
444 {
445 a->uri = (char *) mp->uri;
446 a->app_index = app->index;
447 rv = vnet_unbind_uri (a);
448 }
449 else
450 {
451 rv = VNET_API_ERROR_APPLICATION_NOT_ATTACHED;
452 }
453
454done:
Dave Barach68b0fb02017-02-28 15:15:56 -0500455 REPLY_MACRO (VL_API_UNBIND_URI_REPLY);
456}
457
Florin Corasf03a59a2017-06-09 21:07:32 -0700458static void
Dave Barach68b0fb02017-02-28 15:15:56 -0500459vl_api_connect_uri_t_handler (vl_api_connect_uri_t * mp)
460{
Dave Wallace33e002b2017-09-06 01:20:02 -0400461 vl_api_connect_session_reply_t *rmp;
Dave Barach68b0fb02017-02-28 15:15:56 -0500462 vnet_connect_args_t _a, *a = &_a;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700463 application_t *app;
Florin Corascea194d2017-10-02 00:18:51 -0700464 clib_error_t *error = 0;
465 int rv = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500466
Florin Coras6cf30ad2017-04-04 23:08:23 -0700467 if (session_manager_is_enabled () == 0)
468 {
469 rv = VNET_API_ERROR_FEATURE_DISABLED;
470 goto done;
471 }
Florin Corase04c2992017-03-01 08:17:34 -0800472
Florin Coras6cf30ad2017-04-04 23:08:23 -0700473 app = application_lookup (mp->client_index);
474 if (app)
475 {
476 a->uri = (char *) mp->uri;
477 a->api_context = mp->context;
478 a->app_index = app->index;
479 a->mp = mp;
Florin Corascea194d2017-10-02 00:18:51 -0700480 if ((error = vnet_connect_uri (a)))
481 {
482 rv = clib_error_get_code (error);
483 if (rv != VNET_API_ERROR_SESSION_REDIRECT)
484 clib_error_report (error);
485 }
Florin Coras6cf30ad2017-04-04 23:08:23 -0700486 }
487 else
488 {
489 rv = VNET_API_ERROR_APPLICATION_NOT_ATTACHED;
490 }
Florin Corase04c2992017-03-01 08:17:34 -0800491
Florin Coras3cbc04b2017-10-02 00:18:51 -0700492 /*
493 * Don't reply to stream (tcp) connects. The reply will come once
494 * the connection is established. In case of the redirects, the reply
495 * will come from the server app.
496 */
Florin Corascea194d2017-10-02 00:18:51 -0700497 if (rv == 0 || rv == VNET_API_ERROR_SESSION_REDIRECT)
Florin Corase04c2992017-03-01 08:17:34 -0800498 return;
499
Florin Coras6cf30ad2017-04-04 23:08:23 -0700500done:
Florin Corase04c2992017-03-01 08:17:34 -0800501 /* *INDENT-OFF* */
Dave Wallace33e002b2017-09-06 01:20:02 -0400502 REPLY_MACRO (VL_API_CONNECT_SESSION_REPLY);
Florin Corase04c2992017-03-01 08:17:34 -0800503 /* *INDENT-ON* */
Dave Barach68b0fb02017-02-28 15:15:56 -0500504}
505
506static void
507vl_api_disconnect_session_t_handler (vl_api_disconnect_session_t * mp)
508{
509 vl_api_disconnect_session_reply_t *rmp;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700510 vnet_disconnect_args_t _a, *a = &_a;
511 application_t *app;
512 int rv = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500513
Florin Coras6cf30ad2017-04-04 23:08:23 -0700514 if (session_manager_is_enabled () == 0)
515 {
516 rv = VNET_API_ERROR_FEATURE_DISABLED;
517 goto done;
518 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500519
Florin Coras6cf30ad2017-04-04 23:08:23 -0700520 app = application_lookup (mp->client_index);
521 if (app)
522 {
523 a->handle = mp->handle;
524 a->app_index = app->index;
525 rv = vnet_disconnect_session (a);
526 }
527 else
528 {
529 rv = VNET_API_ERROR_APPLICATION_NOT_ATTACHED;
530 }
531
532done:
Dave Wallacede5fec92017-11-11 22:41:34 -0500533 REPLY_MACRO2 (VL_API_DISCONNECT_SESSION_REPLY, rmp->handle = mp->handle);
Dave Barach68b0fb02017-02-28 15:15:56 -0500534}
535
536static void
537vl_api_disconnect_session_reply_t_handler (vl_api_disconnect_session_reply_t *
538 mp)
539{
Florin Coras6cf30ad2017-04-04 23:08:23 -0700540 vnet_disconnect_args_t _a, *a = &_a;
541 application_t *app;
Dave Barach68b0fb02017-02-28 15:15:56 -0500542
543 /* Client objected to disconnecting the session, log and continue */
544 if (mp->retval)
545 {
546 clib_warning ("client retval %d", mp->retval);
547 return;
548 }
549
550 /* Disconnect has been confirmed. Confirm close to transport */
Florin Coras6cf30ad2017-04-04 23:08:23 -0700551 app = application_lookup (mp->client_index);
552 if (app)
553 {
554 a->handle = mp->handle;
555 a->app_index = app->index;
556 vnet_disconnect_session (a);
557 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500558}
559
560static void
561vl_api_reset_session_reply_t_handler (vl_api_reset_session_reply_t * mp)
562{
Florin Coras6cf30ad2017-04-04 23:08:23 -0700563 application_t *app;
Dave Barach68b0fb02017-02-28 15:15:56 -0500564 stream_session_t *s;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700565 u32 index, thread_index;
Dave Barach68b0fb02017-02-28 15:15:56 -0500566
Florin Coras6cf30ad2017-04-04 23:08:23 -0700567 app = application_lookup (mp->client_index);
568 if (!app)
569 return;
570
Florin Corascea194d2017-10-02 00:18:51 -0700571 session_parse_handle (mp->handle, &index, &thread_index);
Florin Coras3cbc04b2017-10-02 00:18:51 -0700572 s = session_get_if_valid (index, thread_index);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700573 if (s == 0 || app->index != s->app_index)
Dave Barach68b0fb02017-02-28 15:15:56 -0500574 {
575 clib_warning ("Invalid session!");
576 return;
577 }
578
579 /* Client objected to resetting the session, log and continue */
580 if (mp->retval)
581 {
582 clib_warning ("client retval %d", mp->retval);
583 return;
584 }
585
Dave Barach68b0fb02017-02-28 15:15:56 -0500586 /* This comes as a response to a reset, transport only waiting for
587 * confirmation to remove connection state, no need to disconnect */
588 stream_session_cleanup (s);
589}
590
591static void
592vl_api_accept_session_reply_t_handler (vl_api_accept_session_reply_t * mp)
593{
594 stream_session_t *s;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700595 u32 session_index, thread_index;
Florin Corasa5464812017-04-19 13:00:05 -0700596 vnet_disconnect_args_t _a, *a = &_a;
Dave Barach68b0fb02017-02-28 15:15:56 -0500597
Florin Corasa5464812017-04-19 13:00:05 -0700598 /* Server isn't interested, kill the session */
599 if (mp->retval)
Dave Barach68b0fb02017-02-28 15:15:56 -0500600 {
Florin Corasa5464812017-04-19 13:00:05 -0700601 a->app_index = mp->context;
602 a->handle = mp->handle;
603 vnet_disconnect_session (a);
Dave Barach68b0fb02017-02-28 15:15:56 -0500604 }
Florin Corasa5464812017-04-19 13:00:05 -0700605 else
606 {
Florin Corascea194d2017-10-02 00:18:51 -0700607 session_parse_handle (mp->handle, &session_index, &thread_index);
Florin Coras3cbc04b2017-10-02 00:18:51 -0700608 s = session_get_if_valid (session_index, thread_index);
Florin Corasa5464812017-04-19 13:00:05 -0700609 if (!s)
610 {
611 clib_warning ("session doesn't exist");
612 return;
613 }
614 if (s->app_index != mp->context)
615 {
616 clib_warning ("app doesn't own session");
617 return;
618 }
Florin Corasa5464812017-04-19 13:00:05 -0700619 s->session_state = SESSION_STATE_READY;
620 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500621}
622
623static void
624vl_api_map_another_segment_reply_t_handler (vl_api_map_another_segment_reply_t
625 * mp)
626{
627 clib_warning ("not implemented");
628}
629
630static void
631vl_api_bind_sock_t_handler (vl_api_bind_sock_t * mp)
632{
633 vl_api_bind_sock_reply_t *rmp;
634 vnet_bind_args_t _a, *a = &_a;
Florin Corascea194d2017-10-02 00:18:51 -0700635 int rv = 0;
636 clib_error_t *error;
Florin Coraseb2945c2017-11-22 10:39:09 -0800637 application_t *app = 0;
Florin Corasdcf55ce2017-11-16 15:32:50 -0800638 stream_session_t *s;
639 transport_connection_t *tc = 0;
640 ip46_address_t *ip46;
Dave Barach68b0fb02017-02-28 15:15:56 -0500641
Florin Coras6cf30ad2017-04-04 23:08:23 -0700642 if (session_manager_is_enabled () == 0)
643 {
644 rv = VNET_API_ERROR_FEATURE_DISABLED;
645 goto done;
646 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500647
Florin Coras6cf30ad2017-04-04 23:08:23 -0700648 app = application_lookup (mp->client_index);
Florin Corasdcf55ce2017-11-16 15:32:50 -0800649 if (!app)
Florin Coras6cf30ad2017-04-04 23:08:23 -0700650 {
Florin Corasdcf55ce2017-11-16 15:32:50 -0800651 rv = VNET_API_ERROR_APPLICATION_NOT_ATTACHED;
652 goto done;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700653 }
Florin Corasdcf55ce2017-11-16 15:32:50 -0800654
655 ip46 = (ip46_address_t *) mp->ip;
656 memset (a, 0, sizeof (*a));
657 a->sep.is_ip4 = mp->is_ip4;
658 a->sep.ip = *ip46;
659 a->sep.port = mp->port;
660 a->sep.fib_index = mp->vrf;
661 a->sep.sw_if_index = ENDPOINT_INVALID_INDEX;
662 a->sep.transport_proto = mp->proto;
663 a->app_index = app->index;
664
665 if ((error = vnet_bind (a)))
666 {
667 rv = clib_error_get_code (error);
668 clib_error_report (error);
669 }
Florin Corasdcf55ce2017-11-16 15:32:50 -0800670
Florin Coras6cf30ad2017-04-04 23:08:23 -0700671done:
Florin Corascea194d2017-10-02 00:18:51 -0700672 /* *INDENT-OFF* */
673 REPLY_MACRO2 (VL_API_BIND_SOCK_REPLY,({
674 if (!rv)
Florin Corasdcf55ce2017-11-16 15:32:50 -0800675 {
676 rmp->handle = a->handle;
Florin Coraseb2945c2017-11-22 10:39:09 -0800677 rmp->lcl_port = mp->port;
678 if (application_has_global_scope (app))
679 {
680 s = listen_session_get_from_handle (a->handle);
681 tc = listen_session_get_transport (s);
682 rmp->lcl_is_ip4 = tc->is_ip4;
683 clib_memcpy (rmp->lcl_ip, &tc->lcl_ip, sizeof (tc->lcl_ip));
684 }
Florin Corasdcf55ce2017-11-16 15:32:50 -0800685 }
Florin Corascea194d2017-10-02 00:18:51 -0700686 }));
687 /* *INDENT-ON* */
Dave Barach68b0fb02017-02-28 15:15:56 -0500688}
689
690static void
691vl_api_unbind_sock_t_handler (vl_api_unbind_sock_t * mp)
692{
693 vl_api_unbind_sock_reply_t *rmp;
694 vnet_unbind_args_t _a, *a = &_a;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700695 application_t *app;
Florin Corascea194d2017-10-02 00:18:51 -0700696 clib_error_t *error;
697 int rv = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500698
Florin Coras6cf30ad2017-04-04 23:08:23 -0700699 if (session_manager_is_enabled () == 0)
700 {
701 rv = VNET_API_ERROR_FEATURE_DISABLED;
702 goto done;
703 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500704
Florin Coras6cf30ad2017-04-04 23:08:23 -0700705 app = application_lookup (mp->client_index);
706 if (app)
707 {
Florin Corasef24d422017-11-09 10:05:42 -0800708 a->app_index = app->index;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700709 a->handle = mp->handle;
Florin Corascea194d2017-10-02 00:18:51 -0700710 if ((error = vnet_unbind (a)))
711 {
712 rv = clib_error_get_code (error);
713 clib_error_report (error);
714 }
Florin Coras6cf30ad2017-04-04 23:08:23 -0700715 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500716
Florin Coras6cf30ad2017-04-04 23:08:23 -0700717done:
Dave Barach68b0fb02017-02-28 15:15:56 -0500718 REPLY_MACRO (VL_API_UNBIND_SOCK_REPLY);
719}
720
721static void
722vl_api_connect_sock_t_handler (vl_api_connect_sock_t * mp)
723{
Dave Wallace33e002b2017-09-06 01:20:02 -0400724 vl_api_connect_session_reply_t *rmp;
Dave Barach68b0fb02017-02-28 15:15:56 -0500725 vnet_connect_args_t _a, *a = &_a;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700726 application_t *app;
Florin Corascea194d2017-10-02 00:18:51 -0700727 clib_error_t *error = 0;
728 int rv = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500729
Florin Coras6cf30ad2017-04-04 23:08:23 -0700730 if (session_manager_is_enabled () == 0)
731 {
732 rv = VNET_API_ERROR_FEATURE_DISABLED;
733 goto done;
734 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500735
Florin Coras6cf30ad2017-04-04 23:08:23 -0700736 app = application_lookup (mp->client_index);
737 if (app)
738 {
Dave Wallaceb2d5ff32017-06-14 12:38:28 -0400739 unix_shared_memory_queue_t *client_q;
Dave Wallace33e002b2017-09-06 01:20:02 -0400740 ip46_address_t *ip46 = (ip46_address_t *) mp->ip;
Dave Wallaceb2d5ff32017-06-14 12:38:28 -0400741
742 client_q = vl_api_client_index_to_input_queue (mp->client_index);
743 mp->client_queue_address = pointer_to_uword (client_q);
Florin Corascea194d2017-10-02 00:18:51 -0700744 a->sep.is_ip4 = mp->is_ip4;
745 a->sep.ip = *ip46;
746 a->sep.port = mp->port;
747 a->sep.transport_proto = mp->proto;
748 a->sep.fib_index = mp->vrf;
749 a->sep.sw_if_index = ENDPOINT_INVALID_INDEX;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700750 a->api_context = mp->context;
751 a->app_index = app->index;
752 a->mp = mp;
Florin Corascea194d2017-10-02 00:18:51 -0700753 if ((error = vnet_connect (a)))
754 {
755 rv = clib_error_get_code (error);
756 if (rv != VNET_API_ERROR_SESSION_REDIRECT)
757 clib_error_report (error);
758 }
Florin Coras6cf30ad2017-04-04 23:08:23 -0700759 }
760 else
761 {
762 rv = VNET_API_ERROR_APPLICATION_NOT_ATTACHED;
763 }
Florin Corase04c2992017-03-01 08:17:34 -0800764
Florin Corascea194d2017-10-02 00:18:51 -0700765 if (rv == 0 || rv == VNET_API_ERROR_SESSION_REDIRECT)
Florin Corase04c2992017-03-01 08:17:34 -0800766 return;
767
768 /* Got some error, relay it */
769
Florin Coras6cf30ad2017-04-04 23:08:23 -0700770done:
Dave Wallace33e002b2017-09-06 01:20:02 -0400771 REPLY_MACRO (VL_API_CONNECT_SESSION_REPLY);
Dave Barach68b0fb02017-02-28 15:15:56 -0500772}
773
Florin Corascea194d2017-10-02 00:18:51 -0700774static void
775vl_api_app_namespace_add_del_t_handler (vl_api_app_namespace_add_del_t * mp)
776{
777 vl_api_app_namespace_add_del_reply_t *rmp;
Florin Corascea194d2017-10-02 00:18:51 -0700778 clib_error_t *error = 0;
Florin Coras6e8c6672017-11-10 09:03:54 -0800779 u32 appns_index = 0;
780 u8 *ns_id = 0;
Florin Corascea194d2017-10-02 00:18:51 -0700781 int rv = 0;
782 if (!session_manager_is_enabled ())
783 {
784 rv = VNET_API_ERROR_FEATURE_DISABLED;
785 goto done;
786 }
787
788 if (mp->namespace_id_len > ARRAY_LEN (mp->namespace_id))
789 {
790 rv = VNET_API_ERROR_INVALID_VALUE;
791 goto done;
792 }
793
794 vec_validate (ns_id, mp->namespace_id_len - 1);
795 clib_memcpy (ns_id, mp->namespace_id, mp->namespace_id_len);
796 vnet_app_namespace_add_del_args_t args = {
797 .ns_id = ns_id,
Florin Coras9a9adb22017-10-26 08:16:59 -0700798 .secret = clib_net_to_host_u64 (mp->secret),
Florin Corascea194d2017-10-02 00:18:51 -0700799 .sw_if_index = clib_net_to_host_u32 (mp->sw_if_index),
800 .ip4_fib_id = clib_net_to_host_u32 (mp->ip4_fib_id),
801 .ip6_fib_id = clib_net_to_host_u32 (mp->ip6_fib_id),
802 .is_add = 1
803 };
804 error = vnet_app_namespace_add_del (&args);
805 if (error)
806 {
807 rv = clib_error_get_code (error);
808 clib_error_report (error);
809 }
Florin Coras6e8c6672017-11-10 09:03:54 -0800810 else
811 {
812 appns_index = app_namespace_index_from_id (ns_id);
813 if (appns_index == APP_NAMESPACE_INVALID_INDEX)
814 {
815 clib_warning ("app ns lookup failed");
816 rv = VNET_API_ERROR_UNSPECIFIED;
817 }
818 }
Florin Corascea194d2017-10-02 00:18:51 -0700819 vec_free (ns_id);
Florin Coras6e8c6672017-11-10 09:03:54 -0800820
821 /* *INDENT-OFF* */
Florin Corascea194d2017-10-02 00:18:51 -0700822done:
Florin Coras6e8c6672017-11-10 09:03:54 -0800823 REPLY_MACRO2 (VL_API_APP_NAMESPACE_ADD_DEL_REPLY, ({
824 if (!rv)
825 rmp->appns_index = clib_host_to_net_u32 (appns_index);
826 }));
827 /* *INDENT-ON* */
Florin Corascea194d2017-10-02 00:18:51 -0700828}
829
Florin Coras1c710452017-10-17 00:03:13 -0700830static void
831vl_api_session_rule_add_del_t_handler (vl_api_session_rule_add_del_t * mp)
832{
833 vl_api_session_rule_add_del_reply_t *rmp;
834 session_rule_add_del_args_t args;
835 session_rule_table_add_del_args_t *table_args = &args.table_args;
836 clib_error_t *error;
837 u8 fib_proto;
838 int rv = 0;
839
Florin Corasc97a7392017-11-05 23:07:07 -0800840 memset (&args, 0, sizeof (args));
Florin Coras1c710452017-10-17 00:03:13 -0700841 fib_proto = mp->is_ip4 ? FIB_PROTOCOL_IP4 : FIB_PROTOCOL_IP6;
842
843 table_args->lcl.fp_len = mp->lcl_plen;
844 table_args->lcl.fp_proto = fib_proto;
845 table_args->rmt.fp_len = mp->rmt_plen;
846 table_args->rmt.fp_proto = fib_proto;
Milan Lenco8b9a5d12017-11-24 17:12:33 +0100847 table_args->lcl_port = mp->lcl_port;
848 table_args->rmt_port = mp->rmt_port;
Florin Coras1c710452017-10-17 00:03:13 -0700849 table_args->action_index = clib_net_to_host_u32 (mp->action_index);
850 table_args->is_add = mp->is_add;
Florin Corasc97a7392017-11-05 23:07:07 -0800851 mp->tag[sizeof (mp->tag) - 1] = 0;
852 table_args->tag = format (0, "%s", mp->tag);
Florin Coras1c710452017-10-17 00:03:13 -0700853 args.appns_index = clib_net_to_host_u32 (mp->appns_index);
854 args.scope = mp->scope;
Florin Coras42324ad2017-11-18 18:45:20 -0800855 args.transport_proto = mp->transport_proto;
Florin Coras1c710452017-10-17 00:03:13 -0700856
857 memset (&table_args->lcl.fp_addr, 0, sizeof (table_args->lcl.fp_addr));
858 memset (&table_args->rmt.fp_addr, 0, sizeof (table_args->rmt.fp_addr));
859 ip_set (&table_args->lcl.fp_addr, mp->lcl_ip, mp->is_ip4);
860 ip_set (&table_args->rmt.fp_addr, mp->rmt_ip, mp->is_ip4);
861 error = vnet_session_rule_add_del (&args);
862 if (error)
863 {
864 rv = clib_error_get_code (error);
865 clib_error_report (error);
866 }
Florin Corasc97a7392017-11-05 23:07:07 -0800867 vec_free (table_args->tag);
Florin Coras1c710452017-10-17 00:03:13 -0700868 REPLY_MACRO (VL_API_SESSION_RULE_ADD_DEL_REPLY);
869}
870
Florin Coras6c36f532017-11-03 18:32:34 -0700871static void
872send_session_rule_details4 (mma_rule_16_t * rule, u8 is_local,
Florin Corasc97a7392017-11-05 23:07:07 -0800873 u8 transport_proto, u32 appns_index, u8 * tag,
Florin Coras6c36f532017-11-03 18:32:34 -0700874 unix_shared_memory_queue_t * q, u32 context)
875{
876 vl_api_session_rules_details_t *rmp = 0;
877 session_mask_or_match_4_t *match =
878 (session_mask_or_match_4_t *) & rule->match;
879 session_mask_or_match_4_t *mask =
880 (session_mask_or_match_4_t *) & rule->mask;
881
882 rmp = vl_msg_api_alloc (sizeof (*rmp));
883 memset (rmp, 0, sizeof (*rmp));
884 rmp->_vl_msg_id = ntohs (VL_API_SESSION_RULES_DETAILS);
885 rmp->context = context;
886
887 rmp->is_ip4 = 1;
888 clib_memcpy (rmp->lcl_ip, &match->lcl_ip, sizeof (match->lcl_ip));
889 clib_memcpy (rmp->rmt_ip, &match->rmt_ip, sizeof (match->rmt_ip));
890 rmp->lcl_plen = ip4_mask_to_preflen (&mask->lcl_ip);
891 rmp->rmt_plen = ip4_mask_to_preflen (&mask->rmt_ip);
Milan Lenco8b9a5d12017-11-24 17:12:33 +0100892 rmp->lcl_port = match->lcl_port;
893 rmp->rmt_port = match->rmt_port;
Florin Coras6c36f532017-11-03 18:32:34 -0700894 rmp->action_index = clib_host_to_net_u32 (rule->action_index);
895 rmp->scope =
896 is_local ? SESSION_RULE_SCOPE_LOCAL : SESSION_RULE_SCOPE_GLOBAL;
897 rmp->transport_proto = transport_proto;
898 rmp->appns_index = clib_host_to_net_u32 (appns_index);
Florin Corasc97a7392017-11-05 23:07:07 -0800899 if (tag)
900 {
901 clib_memcpy (rmp->tag, tag, vec_len (tag));
902 rmp->tag[vec_len (tag)] = 0;
903 }
Florin Coras6c36f532017-11-03 18:32:34 -0700904
905 vl_msg_api_send_shmem (q, (u8 *) & rmp);
906}
907
908static void
Florin Corasc97a7392017-11-05 23:07:07 -0800909send_session_rule_details6 (mma_rule_40_t * rule, u8 is_local,
910 u8 transport_proto, u32 appns_index, u8 * tag,
Florin Coras6c36f532017-11-03 18:32:34 -0700911 unix_shared_memory_queue_t * q, u32 context)
912{
913 vl_api_session_rules_details_t *rmp = 0;
914 session_mask_or_match_6_t *match =
915 (session_mask_or_match_6_t *) & rule->match;
916 session_mask_or_match_6_t *mask =
917 (session_mask_or_match_6_t *) & rule->mask;
918
919 rmp = vl_msg_api_alloc (sizeof (*rmp));
920 memset (rmp, 0, sizeof (*rmp));
921 rmp->_vl_msg_id = ntohs (VL_API_SESSION_RULES_DETAILS);
922 rmp->context = context;
923
924 rmp->is_ip4 = 0;
925 clib_memcpy (rmp->lcl_ip, &match->lcl_ip, sizeof (match->lcl_ip));
926 clib_memcpy (rmp->rmt_ip, &match->rmt_ip, sizeof (match->rmt_ip));
927 rmp->lcl_plen = ip6_mask_to_preflen (&mask->lcl_ip);
928 rmp->rmt_plen = ip6_mask_to_preflen (&mask->rmt_ip);
Milan Lenco8b9a5d12017-11-24 17:12:33 +0100929 rmp->lcl_port = match->lcl_port;
930 rmp->rmt_port = match->rmt_port;
Florin Coras6c36f532017-11-03 18:32:34 -0700931 rmp->action_index = clib_host_to_net_u32 (rule->action_index);
Florin Corasc97a7392017-11-05 23:07:07 -0800932 rmp->scope =
933 is_local ? SESSION_RULE_SCOPE_LOCAL : SESSION_RULE_SCOPE_GLOBAL;
Florin Coras6c36f532017-11-03 18:32:34 -0700934 rmp->transport_proto = transport_proto;
935 rmp->appns_index = clib_host_to_net_u32 (appns_index);
Florin Corasc97a7392017-11-05 23:07:07 -0800936 if (tag)
937 {
938 clib_memcpy (rmp->tag, tag, vec_len (tag));
939 rmp->tag[vec_len (tag)] = 0;
940 }
Florin Coras6c36f532017-11-03 18:32:34 -0700941
942 vl_msg_api_send_shmem (q, (u8 *) & rmp);
943}
944
945static void
946send_session_rules_table_details (session_rules_table_t * srt, u8 fib_proto,
Florin Corasc97a7392017-11-05 23:07:07 -0800947 u8 tp, u8 is_local, u32 appns_index,
Florin Coras6c36f532017-11-03 18:32:34 -0700948 unix_shared_memory_queue_t * q, u32 context)
949{
950 mma_rule_16_t *rule16;
951 mma_rule_40_t *rule40;
952 mma_rules_table_16_t *srt16;
953 mma_rules_table_40_t *srt40;
Florin Corasc97a7392017-11-05 23:07:07 -0800954 u32 ri;
Florin Coras6c36f532017-11-03 18:32:34 -0700955
Florin Corasc97a7392017-11-05 23:07:07 -0800956 if (is_local || fib_proto == FIB_PROTOCOL_IP4)
Florin Coras6c36f532017-11-03 18:32:34 -0700957 {
Florin Corasc97a7392017-11-05 23:07:07 -0800958 u8 *tag = 0;
959 /* *INDENT-OFF* */
960 srt16 = &srt->session_rules_tables_16;
961 pool_foreach (rule16, srt16->rules, ({
962 ri = mma_rules_table_rule_index_16 (srt16, rule16);
963 tag = session_rules_table_rule_tag (srt, ri, 1);
964 send_session_rule_details4 (rule16, is_local, tp, appns_index, tag,
965 q, context);
966 }));
967 /* *INDENT-ON* */
968 }
969 if (is_local || fib_proto == FIB_PROTOCOL_IP6)
970 {
971 u8 *tag = 0;
972 /* *INDENT-OFF* */
973 srt40 = &srt->session_rules_tables_40;
974 pool_foreach (rule40, srt40->rules, ({
975 ri = mma_rules_table_rule_index_40 (srt40, rule40);
976 tag = session_rules_table_rule_tag (srt, ri, 1);
977 send_session_rule_details6 (rule40, is_local, tp, appns_index, tag,
978 q, context);
979 }));
980 /* *INDENT-ON* */
Florin Coras6c36f532017-11-03 18:32:34 -0700981 }
982}
983
984static void
985vl_api_session_rules_dump_t_handler (vl_api_one_map_server_dump_t * mp)
986{
987 unix_shared_memory_queue_t *q = NULL;
988 session_table_t *st;
Florin Corasc97a7392017-11-05 23:07:07 -0800989 u8 tp;
Florin Coras6c36f532017-11-03 18:32:34 -0700990
991 q = vl_api_client_index_to_input_queue (mp->client_index);
992 if (q == 0)
993 return;
994
995 /* *INDENT-OFF* */
996 session_table_foreach (st, ({
Florin Corasc97a7392017-11-05 23:07:07 -0800997 for (tp = 0; tp < TRANSPORT_N_PROTO; tp++)
998 {
999 send_session_rules_table_details (&st->session_rules[tp],
1000 st->active_fib_proto, tp,
1001 st->is_local, st->appns_index, q,
1002 mp->context);
1003 }
Florin Coras6c36f532017-11-03 18:32:34 -07001004 }));
1005 /* *INDENT-ON* */
1006}
1007
Florin Coras6cf30ad2017-04-04 23:08:23 -07001008static clib_error_t *
1009application_reaper_cb (u32 client_index)
Dave Barach68b0fb02017-02-28 15:15:56 -05001010{
Florin Coras6cf30ad2017-04-04 23:08:23 -07001011 application_t *app = application_lookup (client_index);
1012 vnet_app_detach_args_t _a, *a = &_a;
1013 if (app)
1014 {
1015 a->app_index = app->index;
1016 vnet_application_detach (a);
1017 }
1018 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001019}
1020
Florin Coras6cf30ad2017-04-04 23:08:23 -07001021VL_MSG_API_REAPER_FUNCTION (application_reaper_cb);
Dave Barach68b0fb02017-02-28 15:15:56 -05001022
1023#define vl_msg_name_crc_list
1024#include <vnet/vnet_all_api_h.h>
1025#undef vl_msg_name_crc_list
1026
1027static void
1028setup_message_id_table (api_main_t * am)
1029{
1030#define _(id,n,crc) vl_msg_api_add_msg_name_crc (am, #n "_" #crc, id);
1031 foreach_vl_msg_name_crc_session;
1032#undef _
1033}
1034
1035/*
1036 * session_api_hookup
1037 * Add uri's API message handlers to the table.
1038 * vlib has alread mapped shared memory and
1039 * added the client registration handlers.
1040 * See .../open-repo/vlib/memclnt_vlib.c:memclnt_process()
1041 */
1042static clib_error_t *
1043session_api_hookup (vlib_main_t * vm)
1044{
1045 api_main_t *am = &api_main;
1046
1047#define _(N,n) \
1048 vl_msg_api_set_handlers(VL_API_##N, #n, \
1049 vl_api_##n##_t_handler, \
1050 vl_noop_handler, \
1051 vl_api_##n##_t_endian, \
1052 vl_api_##n##_t_print, \
1053 sizeof(vl_api_##n##_t), 1);
1054 foreach_session_api_msg;
1055#undef _
1056
1057 /*
1058 * Messages which bounce off the data-plane to
1059 * an API client. Simply tells the message handling infra not
1060 * to free the message.
1061 *
1062 * Bounced message handlers MUST NOT block the data plane
1063 */
1064 am->message_bounce[VL_API_CONNECT_URI] = 1;
1065 am->message_bounce[VL_API_CONNECT_SOCK] = 1;
1066
1067 /*
1068 * Set up the (msg_name, crc, message-id) table
1069 */
1070 setup_message_id_table (am);
1071
1072 return 0;
1073}
1074
1075VLIB_API_INIT_FUNCTION (session_api_hookup);
Florin Coras6cf30ad2017-04-04 23:08:23 -07001076
Dave Barach68b0fb02017-02-28 15:15:56 -05001077/*
1078 * fd.io coding-style-patch-verification: ON
1079 *
1080 * Local Variables:
1081 * eval: (c-set-style "gnu")
1082 * End:
1083 */