blob: 8585b57b0306b63e7a75671f75a9c1e0d1ea1397 [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 Corase04c2992017-03-01 08:17:34 -080061
Dave Barach68b0fb02017-02-28 15:15:56 -050062static int
Florin Corasb384b542018-01-15 01:08:33 -080063session_send_memfd_fd (vl_api_registration_t * reg, const ssvm_private_t * sp)
64{
65 clib_error_t *error;
66 if (vl_api_registration_file_index (reg) == VL_API_INVALID_FI)
67 {
68 clib_warning ("can't send memfd fd");
69 return -1;
70 }
71 error = vl_api_send_fd_msg (reg, sp->fd);
72 if (error)
73 {
74 clib_error_report (error);
75 return -1;
76 }
77 return 0;
78}
79
80static int
81send_add_segment_callback (u32 api_client_index, const ssvm_private_t * sp)
Dave Barach68b0fb02017-02-28 15:15:56 -050082{
83 vl_api_map_another_segment_t *mp;
Florin Corasb384b542018-01-15 01:08:33 -080084 vl_api_registration_t *reg;
Dave Barach68b0fb02017-02-28 15:15:56 -050085
Florin Corasb384b542018-01-15 01:08:33 -080086 reg = vl_mem_api_client_index_to_registration (api_client_index);
87 if (!reg)
88 {
89 clib_warning ("no registration: %u", api_client_index);
90 return -1;
91 }
Dave Barach68b0fb02017-02-28 15:15:56 -050092
Florin Corasb384b542018-01-15 01:08:33 -080093 if (ssvm_type (sp) == SSVM_SEGMENT_MEMFD
94 && vl_api_registration_file_index (reg) == VL_API_INVALID_FI)
95 {
96 clib_warning ("can't send memfd fd");
97 return -1;
98 }
Dave Barach68b0fb02017-02-28 15:15:56 -050099
Florin Coras7a2e1bd2017-11-30 16:07:39 -0500100 mp = vl_msg_api_alloc_as_if_client (sizeof (*mp));
Dave Barach68b0fb02017-02-28 15:15:56 -0500101 memset (mp, 0, sizeof (*mp));
102 mp->_vl_msg_id = clib_host_to_net_u16 (VL_API_MAP_ANOTHER_SEGMENT);
Florin Corasb384b542018-01-15 01:08:33 -0800103 mp->segment_size = sp->ssvm_size;
104 strncpy ((char *) mp->segment_name, (char *) sp->name,
Dave Barach68b0fb02017-02-28 15:15:56 -0500105 sizeof (mp->segment_name) - 1);
106
Florin Corasb384b542018-01-15 01:08:33 -0800107 vl_msg_api_send_shmem (reg->vl_input_queue, (u8 *) & mp);
108
109 if (ssvm_type (sp) == SSVM_SEGMENT_MEMFD)
110 return session_send_memfd_fd (reg, sp);
Dave Barach68b0fb02017-02-28 15:15:56 -0500111
112 return 0;
113}
114
115static int
Florin Corasf8f516a2018-02-08 15:10:09 -0800116send_del_segment_callback (u32 api_client_index, const ssvm_private_t * fs)
117{
118 vl_api_unmap_segment_t *mp;
119 vl_api_registration_t *reg;
120
121 reg = vl_mem_api_client_index_to_registration (api_client_index);
122 if (!reg)
123 {
124 clib_warning ("no registration: %u", api_client_index);
125 return -1;
126 }
127
128 if (ssvm_type (fs) == SSVM_SEGMENT_MEMFD
129 && vl_api_registration_file_index (reg) == VL_API_INVALID_FI)
130 {
131 clib_warning ("can't send memfd fd");
132 return -1;
133 }
134
135 mp = vl_msg_api_alloc_as_if_client (sizeof (*mp));
136 memset (mp, 0, sizeof (*mp));
137 mp->_vl_msg_id = clib_host_to_net_u16 (VL_API_UNMAP_SEGMENT);
138 strncpy ((char *) mp->segment_name, (char *) fs->name,
139 sizeof (mp->segment_name) - 1);
140
141 vl_msg_api_send_shmem (reg->vl_input_queue, (u8 *) & mp);
142
143 if (ssvm_type (fs) == SSVM_SEGMENT_MEMFD)
144 return session_send_memfd_fd (reg, fs);
145
146 return 0;
147}
148
149static int
Florin Coras6cf30ad2017-04-04 23:08:23 -0700150send_session_accept_callback (stream_session_t * s)
Dave Barach68b0fb02017-02-28 15:15:56 -0500151{
Dave Barach68b0fb02017-02-28 15:15:56 -0500152 application_t *server = application_get (s->app_index);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700153 transport_proto_vft_t *tp_vft;
Florin Corasb384b542018-01-15 01:08:33 -0800154 vl_api_accept_session_t *mp;
155 vl_api_registration_t *reg;
156 transport_connection_t *tc;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700157 stream_session_t *listener;
Florin Coras3c2fed52018-07-04 04:15:05 -0700158 svm_msg_q_t *vpp_queue;
Dave Barach68b0fb02017-02-28 15:15:56 -0500159
Florin Corasb384b542018-01-15 01:08:33 -0800160 reg = vl_mem_api_client_index_to_registration (server->api_client_index);
161 if (!reg)
162 {
163 clib_warning ("no registration: %u", server->api_client_index);
164 return -1;
165 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500166
Florin Corasb384b542018-01-15 01:08:33 -0800167 mp = vl_mem_api_alloc_as_if_client_w_reg (reg, sizeof (*mp));
Florin Coras6cf30ad2017-04-04 23:08:23 -0700168 memset (mp, 0, sizeof (*mp));
169
Dave Barach68b0fb02017-02-28 15:15:56 -0500170 mp->_vl_msg_id = clib_host_to_net_u16 (VL_API_ACCEPT_SESSION);
Florin Corasa5464812017-04-19 13:00:05 -0700171 mp->context = server->index;
Damjan Marion7bee80c2017-04-26 15:32:12 +0200172 mp->server_rx_fifo = pointer_to_uword (s->server_rx_fifo);
173 mp->server_tx_fifo = pointer_to_uword (s->server_tx_fifo);
Florin Corasf8f516a2018-02-08 15:10:09 -0800174
175 if (session_has_transport (s))
176 {
Florin Coras5c9083d2018-04-13 06:39:07 -0700177 listener = listen_session_get (s->listener_index);
Florin Corasf8f516a2018-02-08 15:10:09 -0800178 mp->listener_handle = listen_session_get_handle (listener);
179 if (application_is_proxy (server))
180 {
181 listener =
182 application_first_listener (server, session_get_fib_proto (s),
183 session_get_transport_proto (s));
184 if (listener)
185 mp->listener_handle = listen_session_get_handle (listener);
186 }
187 vpp_queue = session_manager_get_vpp_event_queue (s->thread_index);
188 mp->vpp_event_queue_address = pointer_to_uword (vpp_queue);
189 mp->handle = session_handle (s);
190 tp_vft = transport_protocol_get_vft (session_get_transport_proto (s));
191 tc = tp_vft->get_connection (s->connection_index, s->thread_index);
192 mp->port = tc->rmt_port;
193 mp->is_ip4 = tc->is_ip4;
194 clib_memcpy (&mp->ip, &tc->rmt_ip, sizeof (tc->rmt_ip));
195 }
196 else
197 {
198 local_session_t *ls = (local_session_t *) s;
199 local_session_t *ll;
200 if (application_local_session_listener_has_transport (ls))
201 {
Florin Coras5c9083d2018-04-13 06:39:07 -0700202 listener = listen_session_get (ls->listener_index);
Florin Corasf8f516a2018-02-08 15:10:09 -0800203 mp->listener_handle = listen_session_get_handle (listener);
Florin Coras5fda7a32018-02-14 08:04:31 -0800204 mp->is_ip4 = session_type_is_ip4 (listener->session_type);
Florin Corasf8f516a2018-02-08 15:10:09 -0800205 }
206 else
207 {
208 ll = application_get_local_listen_session (server,
209 ls->listener_index);
Florin Coras5fda7a32018-02-14 08:04:31 -0800210 if (ll->transport_listener_index != ~0)
211 {
Florin Coras5c9083d2018-04-13 06:39:07 -0700212 listener = listen_session_get (ll->transport_listener_index);
Florin Coras5fda7a32018-02-14 08:04:31 -0800213 mp->listener_handle = listen_session_get_handle (listener);
214 }
215 else
216 {
217 mp->listener_handle = application_local_session_handle (ll);
218 }
219 mp->is_ip4 = session_type_is_ip4 (ll->listener_session_type);
Florin Corasf8f516a2018-02-08 15:10:09 -0800220 }
221 mp->handle = application_local_session_handle (ls);
222 mp->port = ls->port;
223 mp->vpp_event_queue_address = ls->client_evt_q;
224 mp->server_event_queue_address = ls->server_evt_q;
225 }
Florin Corasb384b542018-01-15 01:08:33 -0800226 vl_msg_api_send_shmem (reg->vl_input_queue, (u8 *) & mp);
Dave Barach68b0fb02017-02-28 15:15:56 -0500227
228 return 0;
229}
230
Florin Corasf8f516a2018-02-08 15:10:09 -0800231void
232send_local_session_disconnect_callback (u32 app_index, local_session_t * ls)
233{
234 application_t *app = application_get (app_index);
235 vl_api_disconnect_session_t *mp;
236 vl_api_registration_t *reg;
237
238 reg = vl_mem_api_client_index_to_registration (app->api_client_index);
239 if (!reg)
240 {
241 clib_warning ("no registration: %u", app->api_client_index);
242 return;
243 }
244
245 mp = vl_mem_api_alloc_as_if_client_w_reg (reg, sizeof (*mp));
246 memset (mp, 0, sizeof (*mp));
247 mp->_vl_msg_id = clib_host_to_net_u16 (VL_API_DISCONNECT_SESSION);
248 mp->handle = application_local_session_handle (ls);
249 mp->context = app->api_client_index;
250 vl_msg_api_send_shmem (reg->vl_input_queue, (u8 *) & mp);
251}
252
Dave Barach68b0fb02017-02-28 15:15:56 -0500253static void
Florin Coras6cf30ad2017-04-04 23:08:23 -0700254send_session_disconnect_callback (stream_session_t * s)
Dave Barach68b0fb02017-02-28 15:15:56 -0500255{
Dave Barach68b0fb02017-02-28 15:15:56 -0500256 application_t *app = application_get (s->app_index);
Florin Corasb384b542018-01-15 01:08:33 -0800257 vl_api_disconnect_session_t *mp;
258 vl_api_registration_t *reg;
Dave Barach68b0fb02017-02-28 15:15:56 -0500259
Florin Corasb384b542018-01-15 01:08:33 -0800260 reg = vl_mem_api_client_index_to_registration (app->api_client_index);
261 if (!reg)
262 {
263 clib_warning ("no registration: %u", app->api_client_index);
264 return;
265 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500266
Florin Corasb384b542018-01-15 01:08:33 -0800267 mp = vl_mem_api_alloc_as_if_client_w_reg (reg, sizeof (*mp));
Dave Barach68b0fb02017-02-28 15:15:56 -0500268 memset (mp, 0, sizeof (*mp));
269 mp->_vl_msg_id = clib_host_to_net_u16 (VL_API_DISCONNECT_SESSION);
Florin Coras3cbc04b2017-10-02 00:18:51 -0700270 mp->handle = session_handle (s);
Florin Corasf8f516a2018-02-08 15:10:09 -0800271 mp->context = app->api_client_index;
Florin Corasb384b542018-01-15 01:08:33 -0800272 vl_msg_api_send_shmem (reg->vl_input_queue, (u8 *) & mp);
Dave Barach68b0fb02017-02-28 15:15:56 -0500273}
274
Florin Corasd79b41e2017-03-04 05:37:52 -0800275static void
Florin Coras6cf30ad2017-04-04 23:08:23 -0700276send_session_reset_callback (stream_session_t * s)
Florin Corasd79b41e2017-03-04 05:37:52 -0800277{
Florin Corasd79b41e2017-03-04 05:37:52 -0800278 application_t *app = application_get (s->app_index);
Florin Corasb384b542018-01-15 01:08:33 -0800279 vl_api_registration_t *reg;
280 vl_api_reset_session_t *mp;
Florin Corasd79b41e2017-03-04 05:37:52 -0800281
Florin Corasb384b542018-01-15 01:08:33 -0800282 reg = vl_mem_api_client_index_to_registration (app->api_client_index);
283 if (!reg)
284 {
285 clib_warning ("no registration: %u", app->api_client_index);
286 return;
287 }
Florin Corasd79b41e2017-03-04 05:37:52 -0800288
Florin Corasb384b542018-01-15 01:08:33 -0800289 mp = vl_mem_api_alloc_as_if_client_w_reg (reg, sizeof (*mp));
Florin Corasd79b41e2017-03-04 05:37:52 -0800290 memset (mp, 0, sizeof (*mp));
291 mp->_vl_msg_id = clib_host_to_net_u16 (VL_API_RESET_SESSION);
Florin Coras3cbc04b2017-10-02 00:18:51 -0700292 mp->handle = session_handle (s);
Florin Corasb384b542018-01-15 01:08:33 -0800293 vl_msg_api_send_shmem (reg->vl_input_queue, (u8 *) & mp);
Florin Corasd79b41e2017-03-04 05:37:52 -0800294}
295
Dave Barach0194f1a2017-05-15 10:11:39 -0400296int
Florin Coras6cf30ad2017-04-04 23:08:23 -0700297send_session_connected_callback (u32 app_index, u32 api_context,
298 stream_session_t * s, u8 is_fail)
Dave Barach68b0fb02017-02-28 15:15:56 -0500299{
Dave Wallace33e002b2017-09-06 01:20:02 -0400300 vl_api_connect_session_reply_t *mp;
Florin Corasade70e42017-10-14 18:56:41 -0700301 transport_connection_t *tc;
Florin Corasb384b542018-01-15 01:08:33 -0800302 vl_api_registration_t *reg;
Florin Coras3c2fed52018-07-04 04:15:05 -0700303 svm_msg_q_t *vpp_queue;
Florin Corasb384b542018-01-15 01:08:33 -0800304 application_t *app;
Dave Barach68b0fb02017-02-28 15:15:56 -0500305
Florin Coras6cf30ad2017-04-04 23:08:23 -0700306 app = application_get (app_index);
Florin Corasb384b542018-01-15 01:08:33 -0800307 reg = vl_mem_api_client_index_to_registration (app->api_client_index);
308 if (!reg)
309 {
310 clib_warning ("no registration: %u", app->api_client_index);
311 return -1;
312 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500313
Florin Corasb384b542018-01-15 01:08:33 -0800314 mp = vl_mem_api_alloc_as_if_client_w_reg (reg, sizeof (*mp));
Dave Wallace33e002b2017-09-06 01:20:02 -0400315 mp->_vl_msg_id = clib_host_to_net_u16 (VL_API_CONNECT_SESSION_REPLY);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700316 mp->context = api_context;
Dave Wallace965fec92017-10-17 16:19:41 -0400317
318 if (is_fail)
319 goto done;
320
Florin Corasf8f516a2018-02-08 15:10:09 -0800321 if (session_has_transport (s))
Dave Barach68b0fb02017-02-28 15:15:56 -0500322 {
Florin Corasf8f516a2018-02-08 15:10:09 -0800323 tc = session_get_transport (s);
324 if (!tc)
325 {
326 is_fail = 1;
327 goto done;
328 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500329
Florin Corasf8f516a2018-02-08 15:10:09 -0800330 vpp_queue = session_manager_get_vpp_event_queue (s->thread_index);
331 mp->handle = session_handle (s);
332 mp->vpp_event_queue_address = pointer_to_uword (vpp_queue);
333 clib_memcpy (mp->lcl_ip, &tc->lcl_ip, sizeof (tc->lcl_ip));
334 mp->is_ip4 = tc->is_ip4;
335 mp->lcl_port = tc->lcl_port;
336 mp->server_rx_fifo = pointer_to_uword (s->server_rx_fifo);
337 mp->server_tx_fifo = pointer_to_uword (s->server_tx_fifo);
338 }
339 else
340 {
341 local_session_t *ls = (local_session_t *) s;
342 mp->handle = application_local_session_handle (ls);
343 mp->lcl_port = ls->port;
344 mp->vpp_event_queue_address = ls->server_evt_q;
345 mp->client_event_queue_address = ls->client_evt_q;
346 mp->server_rx_fifo = pointer_to_uword (s->server_tx_fifo);
347 mp->server_tx_fifo = pointer_to_uword (s->server_rx_fifo);
348 }
Dave Wallace965fec92017-10-17 16:19:41 -0400349
350done:
351 mp->retval = is_fail ?
352 clib_host_to_net_u32 (VNET_API_ERROR_SESSION_CONNECT) : 0;
Florin Corasb384b542018-01-15 01:08:33 -0800353 vl_msg_api_send_shmem (reg->vl_input_queue, (u8 *) & mp);
Dave Barach68b0fb02017-02-28 15:15:56 -0500354 return 0;
355}
356
Florin Corascea194d2017-10-02 00:18:51 -0700357static session_cb_vft_t session_cb_vft = {
Dave Barach68b0fb02017-02-28 15:15:56 -0500358 .session_accept_callback = send_session_accept_callback,
359 .session_disconnect_callback = send_session_disconnect_callback,
360 .session_connected_callback = send_session_connected_callback,
Florin Corasd79b41e2017-03-04 05:37:52 -0800361 .session_reset_callback = send_session_reset_callback,
Dave Barach68b0fb02017-02-28 15:15:56 -0500362 .add_segment_callback = send_add_segment_callback,
Florin Corasf8f516a2018-02-08 15:10:09 -0800363 .del_segment_callback = send_del_segment_callback,
Dave Barach68b0fb02017-02-28 15:15:56 -0500364};
365
Florin Coras52207f12018-07-12 14:48:06 -0700366static int
367mq_send_session_accepted_cb (stream_session_t * s)
368{
369 application_t *app = application_get (s->app_index);
370 svm_msg_q_msg_t _msg, *msg = &_msg;
371 svm_msg_q_t *vpp_queue, *app_mq;
372 transport_proto_vft_t *tp_vft;
373 transport_connection_t *tc;
374 stream_session_t *listener;
375 session_accepted_msg_t *mp;
376 session_event_t *evt;
377
378 app_mq = app->event_queue;
379 svm_msg_q_lock_and_alloc_msg_w_ring (app_mq, SESSION_MQ_CTRL_EVT_RING,
380 SVM_Q_WAIT, msg);
381 svm_msg_q_unlock (app_mq);
382
383 evt = svm_msg_q_msg_data (app_mq, msg);
384 memset (evt, 0, sizeof (*evt));
385 evt->event_type = SESSION_CTRL_EVT_ACCEPTED;
386 mp = (session_accepted_msg_t *) evt->data;
387 mp->context = app->index;
388 mp->server_rx_fifo = pointer_to_uword (s->server_rx_fifo);
389 mp->server_tx_fifo = pointer_to_uword (s->server_tx_fifo);
390
391 if (session_has_transport (s))
392 {
393 listener = listen_session_get (s->listener_index);
394 mp->listener_handle = listen_session_get_handle (listener);
395 if (application_is_proxy (app))
396 {
397 listener =
398 application_first_listener (app, session_get_fib_proto (s),
399 session_get_transport_proto (s));
400 if (listener)
401 mp->listener_handle = listen_session_get_handle (listener);
402 }
403 vpp_queue = session_manager_get_vpp_event_queue (s->thread_index);
404 mp->vpp_event_queue_address = pointer_to_uword (vpp_queue);
405 mp->handle = session_handle (s);
406 tp_vft = transport_protocol_get_vft (session_get_transport_proto (s));
407 tc = tp_vft->get_connection (s->connection_index, s->thread_index);
408 mp->port = tc->rmt_port;
409 mp->is_ip4 = tc->is_ip4;
410 clib_memcpy (&mp->ip, &tc->rmt_ip, sizeof (tc->rmt_ip));
411 }
412 else
413 {
414 local_session_t *ls = (local_session_t *) s;
415 local_session_t *ll;
416 if (application_local_session_listener_has_transport (ls))
417 {
418 listener = listen_session_get (ls->listener_index);
419 mp->listener_handle = listen_session_get_handle (listener);
420 mp->is_ip4 = session_type_is_ip4 (listener->session_type);
421 }
422 else
423 {
424 ll = application_get_local_listen_session (app, ls->listener_index);
425 if (ll->transport_listener_index != ~0)
426 {
427 listener = listen_session_get (ll->transport_listener_index);
428 mp->listener_handle = listen_session_get_handle (listener);
429 }
430 else
431 {
432 mp->listener_handle = application_local_session_handle (ll);
433 }
434 mp->is_ip4 = session_type_is_ip4 (ll->listener_session_type);
435 }
436 mp->handle = application_local_session_handle (ls);
437 mp->port = ls->port;
Florin Coras54693d22018-07-17 10:46:29 -0700438 vpp_queue = session_manager_get_vpp_event_queue (0);
439 mp->vpp_event_queue_address = pointer_to_uword (vpp_queue);
440 mp->client_event_queue_address = ls->client_evt_q;
Florin Coras52207f12018-07-12 14:48:06 -0700441 mp->server_event_queue_address = ls->server_evt_q;
442 }
443 svm_msg_q_add (app_mq, msg, SVM_Q_WAIT);
444
445 return 0;
446}
447
448static void
449mq_send_session_disconnected_cb (stream_session_t * s)
450{
451 application_t *app = application_get (s->app_index);
452 svm_msg_q_msg_t _msg, *msg = &_msg;
453 session_disconnected_msg_t *mp;
454 svm_msg_q_t *app_mq;
455 session_event_t *evt;
456
457 app_mq = app->event_queue;
458 svm_msg_q_lock_and_alloc_msg_w_ring (app_mq, SESSION_MQ_CTRL_EVT_RING,
459 SVM_Q_WAIT, msg);
460 svm_msg_q_unlock (app_mq);
461 evt = svm_msg_q_msg_data (app_mq, msg);
462 memset (evt, 0, sizeof (*evt));
463 evt->event_type = SESSION_CTRL_EVT_DISCONNECTED;
464 mp = (session_disconnected_msg_t *) evt->data;
465 mp->handle = session_handle (s);
466 mp->context = app->api_client_index;
467 svm_msg_q_add (app_mq, msg, SVM_Q_WAIT);
468}
469
470static void
471mq_send_session_reset_cb (stream_session_t * s)
472{
473 application_t *app = application_get (s->app_index);
474 svm_msg_q_msg_t _msg, *msg = &_msg;
475 session_reset_msg_t *mp;
476 svm_msg_q_t *app_mq;
477 session_event_t *evt;
478
479 app_mq = app->event_queue;
480 svm_msg_q_lock_and_alloc_msg_w_ring (app_mq, SESSION_MQ_CTRL_EVT_RING,
481 SVM_Q_WAIT, msg);
482 svm_msg_q_unlock (app_mq);
483 evt = svm_msg_q_msg_data (app_mq, msg);
484 memset (evt, 0, sizeof (*evt));
485 evt->event_type = SESSION_CTRL_EVT_RESET;
486 mp = (session_reset_msg_t *) evt->data;
487 mp->handle = session_handle (s);
488 svm_msg_q_add (app_mq, msg, SVM_Q_WAIT);
489}
490
491static int
492mq_send_session_connected_cb (u32 app_index, u32 api_context,
493 stream_session_t * s, u8 is_fail)
494{
495 svm_msg_q_msg_t _msg, *msg = &_msg;
496 session_connected_msg_t *mp;
497 svm_msg_q_t *vpp_mq, *app_mq;
498 transport_connection_t *tc;
499 session_event_t *evt;
500 application_t *app;
501
502 app = application_get (app_index);
503 app_mq = app->event_queue;
504 if (!app_mq)
505 {
506 clib_warning ("app %u with api index: %u not attached", app->index,
507 app->api_client_index);
508 return -1;
509 }
510
511 svm_msg_q_lock_and_alloc_msg_w_ring (app_mq, SESSION_MQ_CTRL_EVT_RING,
512 SVM_Q_WAIT, msg);
513 svm_msg_q_unlock (app_mq);
514 evt = svm_msg_q_msg_data (app_mq, msg);
515 memset (evt, 0, sizeof (*evt));
516 evt->event_type = SESSION_CTRL_EVT_CONNECTED;
517 mp = (session_connected_msg_t *) evt->data;
518 mp->context = api_context;
519
520 if (is_fail)
521 goto done;
522
523 if (session_has_transport (s))
524 {
525 tc = session_get_transport (s);
526 if (!tc)
527 {
528 is_fail = 1;
529 goto done;
530 }
531
532 vpp_mq = session_manager_get_vpp_event_queue (s->thread_index);
533 mp->handle = session_handle (s);
534 mp->vpp_event_queue_address = pointer_to_uword (vpp_mq);
535 clib_memcpy (mp->lcl_ip, &tc->lcl_ip, sizeof (tc->lcl_ip));
536 mp->is_ip4 = tc->is_ip4;
537 mp->lcl_port = tc->lcl_port;
538 mp->server_rx_fifo = pointer_to_uword (s->server_rx_fifo);
539 mp->server_tx_fifo = pointer_to_uword (s->server_tx_fifo);
540 }
541 else
542 {
543 local_session_t *ls = (local_session_t *) s;
544 mp->handle = application_local_session_handle (ls);
545 mp->lcl_port = ls->port;
Florin Coras54693d22018-07-17 10:46:29 -0700546 vpp_mq = session_manager_get_vpp_event_queue (0);
547 mp->vpp_event_queue_address = pointer_to_uword (vpp_mq);
Florin Coras52207f12018-07-12 14:48:06 -0700548 mp->client_event_queue_address = ls->client_evt_q;
Florin Coras54693d22018-07-17 10:46:29 -0700549 mp->server_event_queue_address = ls->server_evt_q;
Florin Coras52207f12018-07-12 14:48:06 -0700550 mp->server_rx_fifo = pointer_to_uword (s->server_tx_fifo);
551 mp->server_tx_fifo = pointer_to_uword (s->server_rx_fifo);
552 }
553
554done:
555 mp->retval = is_fail ?
556 clib_host_to_net_u32 (VNET_API_ERROR_SESSION_CONNECT) : 0;
557
558 svm_msg_q_add (app_mq, msg, SVM_Q_WAIT);
559 return 0;
560}
561
562static session_cb_vft_t session_mq_cb_vft = {
563 .session_accept_callback = mq_send_session_accepted_cb,
564 .session_disconnect_callback = mq_send_session_disconnected_cb,
565 .session_connected_callback = mq_send_session_connected_cb,
566 .session_reset_callback = mq_send_session_reset_cb,
567 .add_segment_callback = send_add_segment_callback,
568 .del_segment_callback = send_del_segment_callback,
569};
570
Dave Barach68b0fb02017-02-28 15:15:56 -0500571static void
Florin Corase04c2992017-03-01 08:17:34 -0800572vl_api_session_enable_disable_t_handler (vl_api_session_enable_disable_t * mp)
573{
574 vl_api_session_enable_disable_reply_t *rmp;
575 vlib_main_t *vm = vlib_get_main ();
576 int rv = 0;
577
578 vnet_session_enable_disable (vm, mp->is_enable);
579 REPLY_MACRO (VL_API_SESSION_ENABLE_DISABLE_REPLY);
580}
581
582static void
Florin Coras6cf30ad2017-04-04 23:08:23 -0700583vl_api_application_attach_t_handler (vl_api_application_attach_t * mp)
Dave Barach68b0fb02017-02-28 15:15:56 -0500584{
Florin Coras6cf30ad2017-04-04 23:08:23 -0700585 vl_api_application_attach_reply_t *rmp;
Florin Corasb384b542018-01-15 01:08:33 -0800586 ssvm_private_t *segp, *evt_q_segment;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700587 vnet_app_attach_args_t _a, *a = &_a;
Florin Corasb384b542018-01-15 01:08:33 -0800588 vl_api_registration_t *reg;
Florin Corascea194d2017-10-02 00:18:51 -0700589 clib_error_t *error = 0;
590 int rv = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500591
Florin Corasfc804d92018-01-26 01:27:01 -0800592 reg = vl_api_client_index_to_registration (mp->client_index);
593 if (!reg)
594 return;
595
Florin Coras6cf30ad2017-04-04 23:08:23 -0700596 if (session_manager_is_enabled () == 0)
597 {
598 rv = VNET_API_ERROR_FEATURE_DISABLED;
599 goto done;
600 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500601
Florin Corasff6e7692017-12-11 04:59:01 -0800602 STATIC_ASSERT (sizeof (u64) * APP_OPTIONS_N_OPTIONS <=
Florin Coras6cf30ad2017-04-04 23:08:23 -0700603 sizeof (mp->options),
604 "Out of options, fix api message definition");
Dave Barach68b0fb02017-02-28 15:15:56 -0500605
606 memset (a, 0, sizeof (*a));
Dave Barach68b0fb02017-02-28 15:15:56 -0500607 a->api_client_index = mp->client_index;
608 a->options = mp->options;
Florin Coras52207f12018-07-12 14:48:06 -0700609
610 if (a->options[APP_OPTIONS_FLAGS] & APP_OPTIONS_FLAGS_USE_MQ_FOR_CTRL_MSGS)
611 a->session_cb_vft = &session_mq_cb_vft;
612 else
613 a->session_cb_vft = &session_cb_vft;
Dave Barach68b0fb02017-02-28 15:15:56 -0500614
Florin Corascea194d2017-10-02 00:18:51 -0700615 if (mp->namespace_id_len > 64)
616 {
617 rv = VNET_API_ERROR_INVALID_VALUE;
618 goto done;
619 }
620
621 if (mp->namespace_id_len)
622 {
Dave Wallace8af20542017-10-26 03:29:30 -0400623 vec_validate (a->namespace_id, mp->namespace_id_len - 1);
Florin Corascea194d2017-10-02 00:18:51 -0700624 clib_memcpy (a->namespace_id, mp->namespace_id, mp->namespace_id_len);
625 }
626
627 if ((error = vnet_application_attach (a)))
628 {
629 rv = clib_error_get_code (error);
630 clib_error_report (error);
631 }
632 vec_free (a->namespace_id);
Dave Barach68b0fb02017-02-28 15:15:56 -0500633
Florin Coras6cf30ad2017-04-04 23:08:23 -0700634done:
Florin Corasa5464812017-04-19 13:00:05 -0700635
Dave Barach68b0fb02017-02-28 15:15:56 -0500636 /* *INDENT-OFF* */
Florin Coras6cf30ad2017-04-04 23:08:23 -0700637 REPLY_MACRO2 (VL_API_APPLICATION_ATTACH_REPLY, ({
Dave Barach68b0fb02017-02-28 15:15:56 -0500638 if (!rv)
639 {
Florin Corasb384b542018-01-15 01:08:33 -0800640 segp = a->segment;
Dave Barach68b0fb02017-02-28 15:15:56 -0500641 rmp->segment_name_length = 0;
Florin Corasb384b542018-01-15 01:08:33 -0800642 rmp->segment_size = segp->ssvm_size;
643 if (vec_len (segp->name))
Dave Barach68b0fb02017-02-28 15:15:56 -0500644 {
Florin Corasb384b542018-01-15 01:08:33 -0800645 memcpy (rmp->segment_name, segp->name, vec_len (segp->name));
646 rmp->segment_name_length = vec_len (segp->name);
Dave Barach68b0fb02017-02-28 15:15:56 -0500647 }
Florin Coras6cf30ad2017-04-04 23:08:23 -0700648 rmp->app_event_queue_address = a->app_event_queue_address;
Dave Barach68b0fb02017-02-28 15:15:56 -0500649 }
650 }));
651 /* *INDENT-ON* */
Florin Corasb384b542018-01-15 01:08:33 -0800652
653 if (rv)
654 return;
655
Florin Corasb384b542018-01-15 01:08:33 -0800656 /* Send fifo segment fd if needed */
657 if (ssvm_type (a->segment) == SSVM_SEGMENT_MEMFD)
658 session_send_memfd_fd (reg, a->segment);
659 /* Send event queues segment */
660 if ((evt_q_segment = session_manager_get_evt_q_segment ()))
661 session_send_memfd_fd (reg, evt_q_segment);
Dave Barach68b0fb02017-02-28 15:15:56 -0500662}
663
664static void
Florin Coras6cf30ad2017-04-04 23:08:23 -0700665vl_api_application_detach_t_handler (vl_api_application_detach_t * mp)
666{
667 vl_api_application_detach_reply_t *rmp;
668 int rv = VNET_API_ERROR_INVALID_VALUE_2;
669 vnet_app_detach_args_t _a, *a = &_a;
670 application_t *app;
671
672 if (session_manager_is_enabled () == 0)
673 {
674 rv = VNET_API_ERROR_FEATURE_DISABLED;
675 goto done;
676 }
677
678 app = application_lookup (mp->client_index);
679 if (app)
680 {
681 a->app_index = app->index;
682 rv = vnet_application_detach (a);
683 }
684
685done:
686 REPLY_MACRO (VL_API_APPLICATION_DETACH_REPLY);
687}
688
689static void
690vl_api_bind_uri_t_handler (vl_api_bind_uri_t * mp)
691{
Florin Coras7fb0fe12018-04-09 09:24:52 -0700692 transport_connection_t *tc = 0;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700693 vnet_bind_args_t _a, *a = &_a;
Florin Coras7fb0fe12018-04-09 09:24:52 -0700694 vl_api_bind_uri_reply_t *rmp;
695 stream_session_t *s;
696 application_t *app = 0;
Florin Coras3c2fed52018-07-04 04:15:05 -0700697 svm_msg_q_t *vpp_evt_q;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700698 int rv;
699
700 if (session_manager_is_enabled () == 0)
701 {
702 rv = VNET_API_ERROR_FEATURE_DISABLED;
703 goto done;
704 }
705
706 app = application_lookup (mp->client_index);
707 if (app)
708 {
709 memset (a, 0, sizeof (*a));
710 a->uri = (char *) mp->uri;
711 a->app_index = app->index;
712 rv = vnet_bind_uri (a);
713 }
714 else
715 {
716 rv = VNET_API_ERROR_APPLICATION_NOT_ATTACHED;
717 }
718
719done:
Florin Coras7fb0fe12018-04-09 09:24:52 -0700720
721 /* *INDENT-OFF* */
722 REPLY_MACRO2 (VL_API_BIND_URI_REPLY, ({
723 if (!rv)
724 {
725 rmp->handle = a->handle;
Florin Coras7fb0fe12018-04-09 09:24:52 -0700726 if (app && application_has_global_scope (app))
727 {
728 s = listen_session_get_from_handle (a->handle);
729 tc = listen_session_get_transport (s);
Florin Coras6c354942018-04-18 00:05:21 -0700730 rmp->lcl_is_ip4 = tc->is_ip4;
731 rmp->lcl_port = tc->lcl_port;
Florin Coras7fb0fe12018-04-09 09:24:52 -0700732 clib_memcpy (rmp->lcl_ip, &tc->lcl_ip, sizeof(tc->lcl_ip));
733 if (session_transport_service_type (s) == TRANSPORT_SERVICE_CL)
734 {
735 rmp->rx_fifo = pointer_to_uword (s->server_rx_fifo);
736 rmp->tx_fifo = pointer_to_uword (s->server_tx_fifo);
737 vpp_evt_q = session_manager_get_vpp_event_queue (0);
738 rmp->vpp_evt_q = pointer_to_uword (vpp_evt_q);
739 }
740 }
741 }
742 }));
743 /* *INDENT-ON* */
Florin Coras6cf30ad2017-04-04 23:08:23 -0700744}
745
746static void
Dave Barach68b0fb02017-02-28 15:15:56 -0500747vl_api_unbind_uri_t_handler (vl_api_unbind_uri_t * mp)
748{
749 vl_api_unbind_uri_reply_t *rmp;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700750 application_t *app;
751 vnet_unbind_args_t _a, *a = &_a;
Dave Barach68b0fb02017-02-28 15:15:56 -0500752 int rv;
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 Coras6cf30ad2017-04-04 23:08:23 -0700760 app = application_lookup (mp->client_index);
761 if (app)
762 {
763 a->uri = (char *) mp->uri;
764 a->app_index = app->index;
765 rv = vnet_unbind_uri (a);
766 }
767 else
768 {
769 rv = VNET_API_ERROR_APPLICATION_NOT_ATTACHED;
770 }
771
772done:
Dave Barach68b0fb02017-02-28 15:15:56 -0500773 REPLY_MACRO (VL_API_UNBIND_URI_REPLY);
774}
775
Florin Corasf03a59a2017-06-09 21:07:32 -0700776static void
Dave Barach68b0fb02017-02-28 15:15:56 -0500777vl_api_connect_uri_t_handler (vl_api_connect_uri_t * mp)
778{
Dave Wallace33e002b2017-09-06 01:20:02 -0400779 vl_api_connect_session_reply_t *rmp;
Dave Barach68b0fb02017-02-28 15:15:56 -0500780 vnet_connect_args_t _a, *a = &_a;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700781 application_t *app;
Florin Corascea194d2017-10-02 00:18:51 -0700782 clib_error_t *error = 0;
783 int rv = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500784
Florin Coras6cf30ad2017-04-04 23:08:23 -0700785 if (session_manager_is_enabled () == 0)
786 {
787 rv = VNET_API_ERROR_FEATURE_DISABLED;
788 goto done;
789 }
Florin Corase04c2992017-03-01 08:17:34 -0800790
Florin Coras6cf30ad2017-04-04 23:08:23 -0700791 app = application_lookup (mp->client_index);
792 if (app)
793 {
794 a->uri = (char *) mp->uri;
795 a->api_context = mp->context;
796 a->app_index = app->index;
Florin Corascea194d2017-10-02 00:18:51 -0700797 if ((error = vnet_connect_uri (a)))
798 {
799 rv = clib_error_get_code (error);
Florin Coras8f89dd02018-03-05 16:53:07 -0800800 clib_error_report (error);
Florin Corascea194d2017-10-02 00:18:51 -0700801 }
Florin Coras6cf30ad2017-04-04 23:08:23 -0700802 }
803 else
804 {
805 rv = VNET_API_ERROR_APPLICATION_NOT_ATTACHED;
806 }
Florin Corase04c2992017-03-01 08:17:34 -0800807
Florin Coras3cbc04b2017-10-02 00:18:51 -0700808 /*
809 * Don't reply to stream (tcp) connects. The reply will come once
810 * the connection is established. In case of the redirects, the reply
811 * will come from the server app.
812 */
Florin Coras8f89dd02018-03-05 16:53:07 -0800813 if (rv == 0)
Florin Corase04c2992017-03-01 08:17:34 -0800814 return;
815
Florin Coras6cf30ad2017-04-04 23:08:23 -0700816done:
Florin Corase04c2992017-03-01 08:17:34 -0800817 /* *INDENT-OFF* */
Dave Wallace33e002b2017-09-06 01:20:02 -0400818 REPLY_MACRO (VL_API_CONNECT_SESSION_REPLY);
Florin Corase04c2992017-03-01 08:17:34 -0800819 /* *INDENT-ON* */
Dave Barach68b0fb02017-02-28 15:15:56 -0500820}
821
822static void
823vl_api_disconnect_session_t_handler (vl_api_disconnect_session_t * mp)
824{
825 vl_api_disconnect_session_reply_t *rmp;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700826 vnet_disconnect_args_t _a, *a = &_a;
827 application_t *app;
828 int rv = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500829
Florin Coras6cf30ad2017-04-04 23:08:23 -0700830 if (session_manager_is_enabled () == 0)
831 {
832 rv = VNET_API_ERROR_FEATURE_DISABLED;
833 goto done;
834 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500835
Florin Coras6cf30ad2017-04-04 23:08:23 -0700836 app = application_lookup (mp->client_index);
837 if (app)
838 {
839 a->handle = mp->handle;
840 a->app_index = app->index;
841 rv = vnet_disconnect_session (a);
842 }
843 else
844 {
845 rv = VNET_API_ERROR_APPLICATION_NOT_ATTACHED;
846 }
847
848done:
Dave Wallacede5fec92017-11-11 22:41:34 -0500849 REPLY_MACRO2 (VL_API_DISCONNECT_SESSION_REPLY, rmp->handle = mp->handle);
Dave Barach68b0fb02017-02-28 15:15:56 -0500850}
851
852static void
853vl_api_disconnect_session_reply_t_handler (vl_api_disconnect_session_reply_t *
854 mp)
855{
Florin Coras6cf30ad2017-04-04 23:08:23 -0700856 vnet_disconnect_args_t _a, *a = &_a;
857 application_t *app;
Dave Barach68b0fb02017-02-28 15:15:56 -0500858
859 /* Client objected to disconnecting the session, log and continue */
860 if (mp->retval)
861 {
862 clib_warning ("client retval %d", mp->retval);
863 return;
864 }
865
866 /* Disconnect has been confirmed. Confirm close to transport */
Florin Corasf8f516a2018-02-08 15:10:09 -0800867 app = application_lookup (mp->context);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700868 if (app)
869 {
870 a->handle = mp->handle;
871 a->app_index = app->index;
872 vnet_disconnect_session (a);
873 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500874}
875
876static void
877vl_api_reset_session_reply_t_handler (vl_api_reset_session_reply_t * mp)
878{
Florin Coras6cf30ad2017-04-04 23:08:23 -0700879 application_t *app;
Dave Barach68b0fb02017-02-28 15:15:56 -0500880 stream_session_t *s;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700881 u32 index, thread_index;
Dave Barach68b0fb02017-02-28 15:15:56 -0500882
Florin Coras6cf30ad2017-04-04 23:08:23 -0700883 app = application_lookup (mp->client_index);
884 if (!app)
885 return;
886
Florin Corascea194d2017-10-02 00:18:51 -0700887 session_parse_handle (mp->handle, &index, &thread_index);
Florin Coras3cbc04b2017-10-02 00:18:51 -0700888 s = session_get_if_valid (index, thread_index);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700889 if (s == 0 || app->index != s->app_index)
Dave Barach68b0fb02017-02-28 15:15:56 -0500890 {
891 clib_warning ("Invalid session!");
892 return;
893 }
894
895 /* Client objected to resetting the session, log and continue */
896 if (mp->retval)
897 {
898 clib_warning ("client retval %d", mp->retval);
899 return;
900 }
901
Dave Barach68b0fb02017-02-28 15:15:56 -0500902 /* This comes as a response to a reset, transport only waiting for
903 * confirmation to remove connection state, no need to disconnect */
904 stream_session_cleanup (s);
905}
906
907static void
908vl_api_accept_session_reply_t_handler (vl_api_accept_session_reply_t * mp)
909{
Florin Corasf8f516a2018-02-08 15:10:09 -0800910 vnet_disconnect_args_t _a = { 0 }, *a = &_a;
911 local_session_t *ls;
Dave Barach68b0fb02017-02-28 15:15:56 -0500912 stream_session_t *s;
Dave Barach68b0fb02017-02-28 15:15:56 -0500913
Florin Corasa5464812017-04-19 13:00:05 -0700914 /* Server isn't interested, kill the session */
915 if (mp->retval)
Dave Barach68b0fb02017-02-28 15:15:56 -0500916 {
Florin Corasa5464812017-04-19 13:00:05 -0700917 a->app_index = mp->context;
918 a->handle = mp->handle;
919 vnet_disconnect_session (a);
Florin Corasf8f516a2018-02-08 15:10:09 -0800920 return;
921 }
922
923 if (session_handle_is_local (mp->handle))
924 {
925 ls = application_get_local_session_from_handle (mp->handle);
926 if (!ls || ls->app_index != mp->context)
927 {
928 clib_warning ("server %u doesn't own local handle %llu",
929 mp->context, mp->handle);
930 return;
931 }
932 if (application_local_session_connect_notify (ls))
933 return;
934 ls->session_state = SESSION_STATE_READY;
Dave Barach68b0fb02017-02-28 15:15:56 -0500935 }
Florin Corasa5464812017-04-19 13:00:05 -0700936 else
937 {
Florin Corasf8f516a2018-02-08 15:10:09 -0800938 s = session_get_from_handle_if_valid (mp->handle);
Florin Corasa5464812017-04-19 13:00:05 -0700939 if (!s)
940 {
941 clib_warning ("session doesn't exist");
942 return;
943 }
944 if (s->app_index != mp->context)
945 {
946 clib_warning ("app doesn't own session");
947 return;
948 }
Florin Corasa5464812017-04-19 13:00:05 -0700949 s->session_state = SESSION_STATE_READY;
950 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500951}
952
953static void
954vl_api_map_another_segment_reply_t_handler (vl_api_map_another_segment_reply_t
955 * mp)
956{
957 clib_warning ("not implemented");
958}
959
960static void
961vl_api_bind_sock_t_handler (vl_api_bind_sock_t * mp)
962{
963 vl_api_bind_sock_reply_t *rmp;
964 vnet_bind_args_t _a, *a = &_a;
Florin Corascea194d2017-10-02 00:18:51 -0700965 int rv = 0;
966 clib_error_t *error;
Florin Coraseb2945c2017-11-22 10:39:09 -0800967 application_t *app = 0;
Florin Corasdcf55ce2017-11-16 15:32:50 -0800968 stream_session_t *s;
969 transport_connection_t *tc = 0;
970 ip46_address_t *ip46;
Florin Coras3c2fed52018-07-04 04:15:05 -0700971 svm_msg_q_t *vpp_evt_q;
Dave Barach68b0fb02017-02-28 15:15:56 -0500972
Florin Coras6cf30ad2017-04-04 23:08:23 -0700973 if (session_manager_is_enabled () == 0)
974 {
975 rv = VNET_API_ERROR_FEATURE_DISABLED;
976 goto done;
977 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500978
Florin Coras6cf30ad2017-04-04 23:08:23 -0700979 app = application_lookup (mp->client_index);
Florin Corasdcf55ce2017-11-16 15:32:50 -0800980 if (!app)
Florin Coras6cf30ad2017-04-04 23:08:23 -0700981 {
Florin Corasdcf55ce2017-11-16 15:32:50 -0800982 rv = VNET_API_ERROR_APPLICATION_NOT_ATTACHED;
983 goto done;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700984 }
Florin Corasdcf55ce2017-11-16 15:32:50 -0800985
986 ip46 = (ip46_address_t *) mp->ip;
987 memset (a, 0, sizeof (*a));
988 a->sep.is_ip4 = mp->is_ip4;
989 a->sep.ip = *ip46;
990 a->sep.port = mp->port;
991 a->sep.fib_index = mp->vrf;
992 a->sep.sw_if_index = ENDPOINT_INVALID_INDEX;
993 a->sep.transport_proto = mp->proto;
994 a->app_index = app->index;
995
996 if ((error = vnet_bind (a)))
997 {
998 rv = clib_error_get_code (error);
999 clib_error_report (error);
1000 }
Florin Corasdcf55ce2017-11-16 15:32:50 -08001001
Florin Coras6cf30ad2017-04-04 23:08:23 -07001002done:
Florin Corascea194d2017-10-02 00:18:51 -07001003 /* *INDENT-OFF* */
1004 REPLY_MACRO2 (VL_API_BIND_SOCK_REPLY,({
1005 if (!rv)
Florin Corasdcf55ce2017-11-16 15:32:50 -08001006 {
1007 rmp->handle = a->handle;
Florin Coraseb2945c2017-11-22 10:39:09 -08001008 rmp->lcl_port = mp->port;
Keith Burns (alagalah)60ae80f2018-03-15 10:04:20 -07001009 rmp->lcl_is_ip4 = mp->is_ip4;
Dave Wallace97b1a272017-12-18 13:51:59 -05001010 if (app && application_has_global_scope (app))
Florin Coraseb2945c2017-11-22 10:39:09 -08001011 {
1012 s = listen_session_get_from_handle (a->handle);
1013 tc = listen_session_get_transport (s);
Florin Coraseb2945c2017-11-22 10:39:09 -08001014 clib_memcpy (rmp->lcl_ip, &tc->lcl_ip, sizeof (tc->lcl_ip));
Florin Coras7fb0fe12018-04-09 09:24:52 -07001015 if (session_transport_service_type (s) == TRANSPORT_SERVICE_CL)
1016 {
1017 rmp->rx_fifo = pointer_to_uword (s->server_rx_fifo);
1018 rmp->tx_fifo = pointer_to_uword (s->server_tx_fifo);
1019 vpp_evt_q = session_manager_get_vpp_event_queue (0);
1020 rmp->vpp_evt_q = pointer_to_uword (vpp_evt_q);
1021 }
Florin Coraseb2945c2017-11-22 10:39:09 -08001022 }
Florin Corasdcf55ce2017-11-16 15:32:50 -08001023 }
Florin Corascea194d2017-10-02 00:18:51 -07001024 }));
1025 /* *INDENT-ON* */
Dave Barach68b0fb02017-02-28 15:15:56 -05001026}
1027
1028static void
1029vl_api_unbind_sock_t_handler (vl_api_unbind_sock_t * mp)
1030{
1031 vl_api_unbind_sock_reply_t *rmp;
1032 vnet_unbind_args_t _a, *a = &_a;
Florin Coras6cf30ad2017-04-04 23:08:23 -07001033 application_t *app;
Florin Corascea194d2017-10-02 00:18:51 -07001034 clib_error_t *error;
1035 int rv = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001036
Florin Coras6cf30ad2017-04-04 23:08:23 -07001037 if (session_manager_is_enabled () == 0)
1038 {
1039 rv = VNET_API_ERROR_FEATURE_DISABLED;
1040 goto done;
1041 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001042
Florin Coras6cf30ad2017-04-04 23:08:23 -07001043 app = application_lookup (mp->client_index);
1044 if (app)
1045 {
Florin Corasef24d422017-11-09 10:05:42 -08001046 a->app_index = app->index;
Florin Coras6cf30ad2017-04-04 23:08:23 -07001047 a->handle = mp->handle;
Florin Corascea194d2017-10-02 00:18:51 -07001048 if ((error = vnet_unbind (a)))
1049 {
1050 rv = clib_error_get_code (error);
1051 clib_error_report (error);
1052 }
Florin Coras6cf30ad2017-04-04 23:08:23 -07001053 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001054
Florin Coras6cf30ad2017-04-04 23:08:23 -07001055done:
Dave Barach68b0fb02017-02-28 15:15:56 -05001056 REPLY_MACRO (VL_API_UNBIND_SOCK_REPLY);
1057}
1058
1059static void
1060vl_api_connect_sock_t_handler (vl_api_connect_sock_t * mp)
1061{
Dave Wallace33e002b2017-09-06 01:20:02 -04001062 vl_api_connect_session_reply_t *rmp;
Dave Barach68b0fb02017-02-28 15:15:56 -05001063 vnet_connect_args_t _a, *a = &_a;
Florin Coras6cf30ad2017-04-04 23:08:23 -07001064 application_t *app;
Florin Corascea194d2017-10-02 00:18:51 -07001065 clib_error_t *error = 0;
1066 int rv = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001067
Florin Coras6cf30ad2017-04-04 23:08:23 -07001068 if (session_manager_is_enabled () == 0)
1069 {
1070 rv = VNET_API_ERROR_FEATURE_DISABLED;
1071 goto done;
1072 }
Dave Barach68b0fb02017-02-28 15:15:56 -05001073
Florin Coras6cf30ad2017-04-04 23:08:23 -07001074 app = application_lookup (mp->client_index);
1075 if (app)
1076 {
Florin Corase86a8ed2018-01-05 03:20:25 -08001077 svm_queue_t *client_q;
Dave Wallace33e002b2017-09-06 01:20:02 -04001078 ip46_address_t *ip46 = (ip46_address_t *) mp->ip;
Dave Wallaceb2d5ff32017-06-14 12:38:28 -04001079
Florin Coras8f89dd02018-03-05 16:53:07 -08001080 memset (a, 0, sizeof (*a));
Dave Wallaceb2d5ff32017-06-14 12:38:28 -04001081 client_q = vl_api_client_index_to_input_queue (mp->client_index);
1082 mp->client_queue_address = pointer_to_uword (client_q);
Florin Corascea194d2017-10-02 00:18:51 -07001083 a->sep.is_ip4 = mp->is_ip4;
1084 a->sep.ip = *ip46;
1085 a->sep.port = mp->port;
1086 a->sep.transport_proto = mp->proto;
1087 a->sep.fib_index = mp->vrf;
1088 a->sep.sw_if_index = ENDPOINT_INVALID_INDEX;
Florin Coras8f89dd02018-03-05 16:53:07 -08001089 if (mp->hostname_len)
1090 {
1091 vec_validate (a->sep.hostname, mp->hostname_len - 1);
1092 clib_memcpy (a->sep.hostname, mp->hostname, mp->hostname_len);
1093 }
Florin Coras6cf30ad2017-04-04 23:08:23 -07001094 a->api_context = mp->context;
1095 a->app_index = app->index;
Florin Corascea194d2017-10-02 00:18:51 -07001096 if ((error = vnet_connect (a)))
1097 {
1098 rv = clib_error_get_code (error);
Florin Coras8f89dd02018-03-05 16:53:07 -08001099 clib_error_report (error);
Florin Corascea194d2017-10-02 00:18:51 -07001100 }
Florin Coras8f89dd02018-03-05 16:53:07 -08001101 vec_free (a->sep.hostname);
Florin Coras6cf30ad2017-04-04 23:08:23 -07001102 }
1103 else
1104 {
1105 rv = VNET_API_ERROR_APPLICATION_NOT_ATTACHED;
1106 }
Florin Corase04c2992017-03-01 08:17:34 -08001107
Florin Coras8f89dd02018-03-05 16:53:07 -08001108 if (rv == 0)
Florin Corase04c2992017-03-01 08:17:34 -08001109 return;
1110
1111 /* Got some error, relay it */
1112
Florin Coras6cf30ad2017-04-04 23:08:23 -07001113done:
Dave Wallace33e002b2017-09-06 01:20:02 -04001114 REPLY_MACRO (VL_API_CONNECT_SESSION_REPLY);
Dave Barach68b0fb02017-02-28 15:15:56 -05001115}
1116
Florin Corascea194d2017-10-02 00:18:51 -07001117static void
1118vl_api_app_namespace_add_del_t_handler (vl_api_app_namespace_add_del_t * mp)
1119{
1120 vl_api_app_namespace_add_del_reply_t *rmp;
Florin Corascea194d2017-10-02 00:18:51 -07001121 clib_error_t *error = 0;
Florin Coras6e8c6672017-11-10 09:03:54 -08001122 u32 appns_index = 0;
1123 u8 *ns_id = 0;
Florin Corascea194d2017-10-02 00:18:51 -07001124 int rv = 0;
1125 if (!session_manager_is_enabled ())
1126 {
1127 rv = VNET_API_ERROR_FEATURE_DISABLED;
1128 goto done;
1129 }
1130
1131 if (mp->namespace_id_len > ARRAY_LEN (mp->namespace_id))
1132 {
1133 rv = VNET_API_ERROR_INVALID_VALUE;
1134 goto done;
1135 }
1136
1137 vec_validate (ns_id, mp->namespace_id_len - 1);
1138 clib_memcpy (ns_id, mp->namespace_id, mp->namespace_id_len);
1139 vnet_app_namespace_add_del_args_t args = {
1140 .ns_id = ns_id,
Florin Coras9a9adb22017-10-26 08:16:59 -07001141 .secret = clib_net_to_host_u64 (mp->secret),
Florin Corascea194d2017-10-02 00:18:51 -07001142 .sw_if_index = clib_net_to_host_u32 (mp->sw_if_index),
1143 .ip4_fib_id = clib_net_to_host_u32 (mp->ip4_fib_id),
1144 .ip6_fib_id = clib_net_to_host_u32 (mp->ip6_fib_id),
1145 .is_add = 1
1146 };
1147 error = vnet_app_namespace_add_del (&args);
1148 if (error)
1149 {
1150 rv = clib_error_get_code (error);
1151 clib_error_report (error);
1152 }
Florin Coras6e8c6672017-11-10 09:03:54 -08001153 else
1154 {
1155 appns_index = app_namespace_index_from_id (ns_id);
1156 if (appns_index == APP_NAMESPACE_INVALID_INDEX)
1157 {
1158 clib_warning ("app ns lookup failed");
1159 rv = VNET_API_ERROR_UNSPECIFIED;
1160 }
1161 }
Florin Corascea194d2017-10-02 00:18:51 -07001162 vec_free (ns_id);
Florin Coras6e8c6672017-11-10 09:03:54 -08001163
1164 /* *INDENT-OFF* */
Florin Corascea194d2017-10-02 00:18:51 -07001165done:
Florin Coras6e8c6672017-11-10 09:03:54 -08001166 REPLY_MACRO2 (VL_API_APP_NAMESPACE_ADD_DEL_REPLY, ({
1167 if (!rv)
1168 rmp->appns_index = clib_host_to_net_u32 (appns_index);
1169 }));
1170 /* *INDENT-ON* */
Florin Corascea194d2017-10-02 00:18:51 -07001171}
1172
Florin Coras1c710452017-10-17 00:03:13 -07001173static void
1174vl_api_session_rule_add_del_t_handler (vl_api_session_rule_add_del_t * mp)
1175{
1176 vl_api_session_rule_add_del_reply_t *rmp;
1177 session_rule_add_del_args_t args;
1178 session_rule_table_add_del_args_t *table_args = &args.table_args;
1179 clib_error_t *error;
1180 u8 fib_proto;
1181 int rv = 0;
1182
Florin Corasc97a7392017-11-05 23:07:07 -08001183 memset (&args, 0, sizeof (args));
Florin Coras1c710452017-10-17 00:03:13 -07001184 fib_proto = mp->is_ip4 ? FIB_PROTOCOL_IP4 : FIB_PROTOCOL_IP6;
1185
1186 table_args->lcl.fp_len = mp->lcl_plen;
1187 table_args->lcl.fp_proto = fib_proto;
1188 table_args->rmt.fp_len = mp->rmt_plen;
1189 table_args->rmt.fp_proto = fib_proto;
Milan Lenco8b9a5d12017-11-24 17:12:33 +01001190 table_args->lcl_port = mp->lcl_port;
1191 table_args->rmt_port = mp->rmt_port;
Florin Coras1c710452017-10-17 00:03:13 -07001192 table_args->action_index = clib_net_to_host_u32 (mp->action_index);
1193 table_args->is_add = mp->is_add;
Florin Corasc97a7392017-11-05 23:07:07 -08001194 mp->tag[sizeof (mp->tag) - 1] = 0;
1195 table_args->tag = format (0, "%s", mp->tag);
Florin Coras1c710452017-10-17 00:03:13 -07001196 args.appns_index = clib_net_to_host_u32 (mp->appns_index);
1197 args.scope = mp->scope;
Florin Coras42324ad2017-11-18 18:45:20 -08001198 args.transport_proto = mp->transport_proto;
Florin Coras1c710452017-10-17 00:03:13 -07001199
1200 memset (&table_args->lcl.fp_addr, 0, sizeof (table_args->lcl.fp_addr));
1201 memset (&table_args->rmt.fp_addr, 0, sizeof (table_args->rmt.fp_addr));
1202 ip_set (&table_args->lcl.fp_addr, mp->lcl_ip, mp->is_ip4);
1203 ip_set (&table_args->rmt.fp_addr, mp->rmt_ip, mp->is_ip4);
1204 error = vnet_session_rule_add_del (&args);
1205 if (error)
1206 {
1207 rv = clib_error_get_code (error);
1208 clib_error_report (error);
1209 }
Florin Corasc97a7392017-11-05 23:07:07 -08001210 vec_free (table_args->tag);
Florin Coras1c710452017-10-17 00:03:13 -07001211 REPLY_MACRO (VL_API_SESSION_RULE_ADD_DEL_REPLY);
1212}
1213
Florin Coras6c36f532017-11-03 18:32:34 -07001214static void
1215send_session_rule_details4 (mma_rule_16_t * rule, u8 is_local,
Florin Corasc97a7392017-11-05 23:07:07 -08001216 u8 transport_proto, u32 appns_index, u8 * tag,
Florin Coras6c4dae22018-01-09 06:39:23 -08001217 vl_api_registration_t * reg, u32 context)
Florin Coras6c36f532017-11-03 18:32:34 -07001218{
1219 vl_api_session_rules_details_t *rmp = 0;
1220 session_mask_or_match_4_t *match =
1221 (session_mask_or_match_4_t *) & rule->match;
1222 session_mask_or_match_4_t *mask =
1223 (session_mask_or_match_4_t *) & rule->mask;
1224
1225 rmp = vl_msg_api_alloc (sizeof (*rmp));
1226 memset (rmp, 0, sizeof (*rmp));
1227 rmp->_vl_msg_id = ntohs (VL_API_SESSION_RULES_DETAILS);
1228 rmp->context = context;
1229
1230 rmp->is_ip4 = 1;
1231 clib_memcpy (rmp->lcl_ip, &match->lcl_ip, sizeof (match->lcl_ip));
1232 clib_memcpy (rmp->rmt_ip, &match->rmt_ip, sizeof (match->rmt_ip));
1233 rmp->lcl_plen = ip4_mask_to_preflen (&mask->lcl_ip);
1234 rmp->rmt_plen = ip4_mask_to_preflen (&mask->rmt_ip);
Milan Lenco8b9a5d12017-11-24 17:12:33 +01001235 rmp->lcl_port = match->lcl_port;
1236 rmp->rmt_port = match->rmt_port;
Florin Coras6c36f532017-11-03 18:32:34 -07001237 rmp->action_index = clib_host_to_net_u32 (rule->action_index);
1238 rmp->scope =
1239 is_local ? SESSION_RULE_SCOPE_LOCAL : SESSION_RULE_SCOPE_GLOBAL;
1240 rmp->transport_proto = transport_proto;
1241 rmp->appns_index = clib_host_to_net_u32 (appns_index);
Florin Corasc97a7392017-11-05 23:07:07 -08001242 if (tag)
1243 {
1244 clib_memcpy (rmp->tag, tag, vec_len (tag));
1245 rmp->tag[vec_len (tag)] = 0;
1246 }
Florin Coras6c36f532017-11-03 18:32:34 -07001247
Florin Coras6c4dae22018-01-09 06:39:23 -08001248 vl_api_send_msg (reg, (u8 *) rmp);
Florin Coras6c36f532017-11-03 18:32:34 -07001249}
1250
1251static void
Florin Corasc97a7392017-11-05 23:07:07 -08001252send_session_rule_details6 (mma_rule_40_t * rule, u8 is_local,
1253 u8 transport_proto, u32 appns_index, u8 * tag,
Florin Coras6c4dae22018-01-09 06:39:23 -08001254 vl_api_registration_t * reg, u32 context)
Florin Coras6c36f532017-11-03 18:32:34 -07001255{
1256 vl_api_session_rules_details_t *rmp = 0;
1257 session_mask_or_match_6_t *match =
1258 (session_mask_or_match_6_t *) & rule->match;
1259 session_mask_or_match_6_t *mask =
1260 (session_mask_or_match_6_t *) & rule->mask;
1261
1262 rmp = vl_msg_api_alloc (sizeof (*rmp));
1263 memset (rmp, 0, sizeof (*rmp));
1264 rmp->_vl_msg_id = ntohs (VL_API_SESSION_RULES_DETAILS);
1265 rmp->context = context;
1266
1267 rmp->is_ip4 = 0;
1268 clib_memcpy (rmp->lcl_ip, &match->lcl_ip, sizeof (match->lcl_ip));
1269 clib_memcpy (rmp->rmt_ip, &match->rmt_ip, sizeof (match->rmt_ip));
1270 rmp->lcl_plen = ip6_mask_to_preflen (&mask->lcl_ip);
1271 rmp->rmt_plen = ip6_mask_to_preflen (&mask->rmt_ip);
Milan Lenco8b9a5d12017-11-24 17:12:33 +01001272 rmp->lcl_port = match->lcl_port;
1273 rmp->rmt_port = match->rmt_port;
Florin Coras6c36f532017-11-03 18:32:34 -07001274 rmp->action_index = clib_host_to_net_u32 (rule->action_index);
Florin Corasc97a7392017-11-05 23:07:07 -08001275 rmp->scope =
1276 is_local ? SESSION_RULE_SCOPE_LOCAL : SESSION_RULE_SCOPE_GLOBAL;
Florin Coras6c36f532017-11-03 18:32:34 -07001277 rmp->transport_proto = transport_proto;
1278 rmp->appns_index = clib_host_to_net_u32 (appns_index);
Florin Corasc97a7392017-11-05 23:07:07 -08001279 if (tag)
1280 {
1281 clib_memcpy (rmp->tag, tag, vec_len (tag));
1282 rmp->tag[vec_len (tag)] = 0;
1283 }
Florin Coras6c36f532017-11-03 18:32:34 -07001284
Florin Coras6c4dae22018-01-09 06:39:23 -08001285 vl_api_send_msg (reg, (u8 *) rmp);
Florin Coras6c36f532017-11-03 18:32:34 -07001286}
1287
1288static void
1289send_session_rules_table_details (session_rules_table_t * srt, u8 fib_proto,
Florin Corasc97a7392017-11-05 23:07:07 -08001290 u8 tp, u8 is_local, u32 appns_index,
Florin Coras6c4dae22018-01-09 06:39:23 -08001291 vl_api_registration_t * reg, u32 context)
Florin Coras6c36f532017-11-03 18:32:34 -07001292{
1293 mma_rule_16_t *rule16;
1294 mma_rule_40_t *rule40;
1295 mma_rules_table_16_t *srt16;
1296 mma_rules_table_40_t *srt40;
Florin Corasc97a7392017-11-05 23:07:07 -08001297 u32 ri;
Florin Coras6c36f532017-11-03 18:32:34 -07001298
Florin Corasc97a7392017-11-05 23:07:07 -08001299 if (is_local || fib_proto == FIB_PROTOCOL_IP4)
Florin Coras6c36f532017-11-03 18:32:34 -07001300 {
Florin Corasc97a7392017-11-05 23:07:07 -08001301 u8 *tag = 0;
1302 /* *INDENT-OFF* */
1303 srt16 = &srt->session_rules_tables_16;
1304 pool_foreach (rule16, srt16->rules, ({
1305 ri = mma_rules_table_rule_index_16 (srt16, rule16);
1306 tag = session_rules_table_rule_tag (srt, ri, 1);
1307 send_session_rule_details4 (rule16, is_local, tp, appns_index, tag,
Florin Coras6c4dae22018-01-09 06:39:23 -08001308 reg, context);
Florin Corasc97a7392017-11-05 23:07:07 -08001309 }));
1310 /* *INDENT-ON* */
1311 }
1312 if (is_local || fib_proto == FIB_PROTOCOL_IP6)
1313 {
1314 u8 *tag = 0;
1315 /* *INDENT-OFF* */
1316 srt40 = &srt->session_rules_tables_40;
1317 pool_foreach (rule40, srt40->rules, ({
1318 ri = mma_rules_table_rule_index_40 (srt40, rule40);
1319 tag = session_rules_table_rule_tag (srt, ri, 1);
1320 send_session_rule_details6 (rule40, is_local, tp, appns_index, tag,
Florin Coras6c4dae22018-01-09 06:39:23 -08001321 reg, context);
Florin Corasc97a7392017-11-05 23:07:07 -08001322 }));
1323 /* *INDENT-ON* */
Florin Coras6c36f532017-11-03 18:32:34 -07001324 }
1325}
1326
1327static void
1328vl_api_session_rules_dump_t_handler (vl_api_one_map_server_dump_t * mp)
1329{
Florin Coras6c4dae22018-01-09 06:39:23 -08001330 vl_api_registration_t *reg;
Florin Coras6c36f532017-11-03 18:32:34 -07001331 session_table_t *st;
Florin Corasc97a7392017-11-05 23:07:07 -08001332 u8 tp;
Florin Coras6c36f532017-11-03 18:32:34 -07001333
Florin Coras6c4dae22018-01-09 06:39:23 -08001334 reg = vl_api_client_index_to_registration (mp->client_index);
1335 if (!reg)
Florin Coras6c36f532017-11-03 18:32:34 -07001336 return;
1337
1338 /* *INDENT-OFF* */
1339 session_table_foreach (st, ({
Florin Corasc97a7392017-11-05 23:07:07 -08001340 for (tp = 0; tp < TRANSPORT_N_PROTO; tp++)
1341 {
1342 send_session_rules_table_details (&st->session_rules[tp],
1343 st->active_fib_proto, tp,
Florin Coras6c4dae22018-01-09 06:39:23 -08001344 st->is_local, st->appns_index, reg,
Florin Corasc97a7392017-11-05 23:07:07 -08001345 mp->context);
1346 }
Florin Coras6c36f532017-11-03 18:32:34 -07001347 }));
1348 /* *INDENT-ON* */
1349}
1350
Florin Coras371ca502018-02-21 12:07:41 -08001351static void
1352vl_api_application_tls_cert_add_t_handler (vl_api_application_tls_cert_add_t *
1353 mp)
1354{
1355 vl_api_app_namespace_add_del_reply_t *rmp;
1356 vnet_app_add_tls_cert_args_t _a, *a = &_a;
1357 clib_error_t *error;
Florin Corase3e2f072018-03-04 07:24:30 -08001358 application_t *app;
Florin Coras371ca502018-02-21 12:07:41 -08001359 u32 cert_len;
1360 int rv = 0;
1361 if (!session_manager_is_enabled ())
1362 {
1363 rv = VNET_API_ERROR_FEATURE_DISABLED;
1364 goto done;
1365 }
Florin Corase3e2f072018-03-04 07:24:30 -08001366 if (!(app = application_lookup (mp->client_index)))
1367 {
1368 rv = VNET_API_ERROR_APPLICATION_NOT_ATTACHED;
1369 goto done;
1370 }
Florin Coras371ca502018-02-21 12:07:41 -08001371 memset (a, 0, sizeof (*a));
Florin Corase3e2f072018-03-04 07:24:30 -08001372 a->app_index = app->index;
Florin Coras371ca502018-02-21 12:07:41 -08001373 cert_len = clib_net_to_host_u16 (mp->cert_len);
Florin Coras5090c572018-03-18 08:22:17 -07001374 if (cert_len > 10000)
1375 {
1376 rv = VNET_API_ERROR_INVALID_VALUE;
1377 goto done;
1378 }
Florin Coras371ca502018-02-21 12:07:41 -08001379 vec_validate (a->cert, cert_len);
1380 clib_memcpy (a->cert, mp->cert, cert_len);
1381 if ((error = vnet_app_add_tls_cert (a)))
1382 {
1383 rv = clib_error_get_code (error);
1384 clib_error_report (error);
1385 }
1386 vec_free (a->cert);
1387done:
1388 REPLY_MACRO (VL_API_APPLICATION_TLS_CERT_ADD_REPLY);
1389}
1390
1391static void
1392vl_api_application_tls_key_add_t_handler (vl_api_application_tls_key_add_t *
1393 mp)
1394{
1395 vl_api_app_namespace_add_del_reply_t *rmp;
1396 vnet_app_add_tls_key_args_t _a, *a = &_a;
1397 clib_error_t *error;
Florin Corase3e2f072018-03-04 07:24:30 -08001398 application_t *app;
Florin Coras371ca502018-02-21 12:07:41 -08001399 u32 key_len;
1400 int rv = 0;
1401 if (!session_manager_is_enabled ())
1402 {
1403 rv = VNET_API_ERROR_FEATURE_DISABLED;
1404 goto done;
1405 }
Florin Corase3e2f072018-03-04 07:24:30 -08001406 if (!(app = application_lookup (mp->client_index)))
1407 {
1408 rv = VNET_API_ERROR_APPLICATION_NOT_ATTACHED;
1409 goto done;
1410 }
Florin Coras371ca502018-02-21 12:07:41 -08001411 memset (a, 0, sizeof (*a));
Florin Corase3e2f072018-03-04 07:24:30 -08001412 a->app_index = app->index;
Florin Coras371ca502018-02-21 12:07:41 -08001413 key_len = clib_net_to_host_u16 (mp->key_len);
Florin Coras5090c572018-03-18 08:22:17 -07001414 if (key_len > 10000)
1415 {
1416 rv = VNET_API_ERROR_INVALID_VALUE;
1417 goto done;
1418 }
Florin Coras371ca502018-02-21 12:07:41 -08001419 vec_validate (a->key, key_len);
1420 clib_memcpy (a->key, mp->key, key_len);
1421 if ((error = vnet_app_add_tls_key (a)))
1422 {
1423 rv = clib_error_get_code (error);
1424 clib_error_report (error);
1425 }
1426 vec_free (a->key);
1427done:
1428 REPLY_MACRO (VL_API_APPLICATION_TLS_KEY_ADD_REPLY);
1429}
1430
Florin Coras6cf30ad2017-04-04 23:08:23 -07001431static clib_error_t *
1432application_reaper_cb (u32 client_index)
Dave Barach68b0fb02017-02-28 15:15:56 -05001433{
Florin Coras6cf30ad2017-04-04 23:08:23 -07001434 application_t *app = application_lookup (client_index);
1435 vnet_app_detach_args_t _a, *a = &_a;
1436 if (app)
1437 {
1438 a->app_index = app->index;
1439 vnet_application_detach (a);
1440 }
1441 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001442}
1443
Florin Coras6cf30ad2017-04-04 23:08:23 -07001444VL_MSG_API_REAPER_FUNCTION (application_reaper_cb);
Dave Barach68b0fb02017-02-28 15:15:56 -05001445
1446#define vl_msg_name_crc_list
1447#include <vnet/vnet_all_api_h.h>
1448#undef vl_msg_name_crc_list
1449
1450static void
1451setup_message_id_table (api_main_t * am)
1452{
1453#define _(id,n,crc) vl_msg_api_add_msg_name_crc (am, #n "_" #crc, id);
1454 foreach_vl_msg_name_crc_session;
1455#undef _
1456}
1457
1458/*
1459 * session_api_hookup
1460 * Add uri's API message handlers to the table.
1461 * vlib has alread mapped shared memory and
1462 * added the client registration handlers.
1463 * See .../open-repo/vlib/memclnt_vlib.c:memclnt_process()
1464 */
1465static clib_error_t *
1466session_api_hookup (vlib_main_t * vm)
1467{
1468 api_main_t *am = &api_main;
1469
1470#define _(N,n) \
1471 vl_msg_api_set_handlers(VL_API_##N, #n, \
1472 vl_api_##n##_t_handler, \
1473 vl_noop_handler, \
1474 vl_api_##n##_t_endian, \
1475 vl_api_##n##_t_print, \
1476 sizeof(vl_api_##n##_t), 1);
1477 foreach_session_api_msg;
1478#undef _
1479
1480 /*
1481 * Messages which bounce off the data-plane to
1482 * an API client. Simply tells the message handling infra not
1483 * to free the message.
1484 *
1485 * Bounced message handlers MUST NOT block the data plane
1486 */
1487 am->message_bounce[VL_API_CONNECT_URI] = 1;
1488 am->message_bounce[VL_API_CONNECT_SOCK] = 1;
1489
1490 /*
1491 * Set up the (msg_name, crc, message-id) table
1492 */
1493 setup_message_id_table (am);
1494
1495 return 0;
1496}
1497
1498VLIB_API_INIT_FUNCTION (session_api_hookup);
Florin Coras6cf30ad2017-04-04 23:08:23 -07001499
Dave Barach68b0fb02017-02-28 15:15:56 -05001500/*
1501 * fd.io coding-style-patch-verification: ON
1502 *
1503 * Local Variables:
1504 * eval: (c-set-style "gnu")
1505 * End:
1506 */