blob: f21701c3896de4f832da46015baef14dc37ad3ca [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
Florin Corasb384b542018-01-15 01:08:33 -080061session_send_memfd_fd (vl_api_registration_t * reg, const ssvm_private_t * sp)
62{
63 clib_error_t *error;
64 if (vl_api_registration_file_index (reg) == VL_API_INVALID_FI)
65 {
66 clib_warning ("can't send memfd fd");
67 return -1;
68 }
69 error = vl_api_send_fd_msg (reg, sp->fd);
70 if (error)
71 {
72 clib_error_report (error);
73 return -1;
74 }
75 return 0;
76}
77
78static int
79send_add_segment_callback (u32 api_client_index, const ssvm_private_t * sp)
Dave Barach68b0fb02017-02-28 15:15:56 -050080{
81 vl_api_map_another_segment_t *mp;
Florin Corasb384b542018-01-15 01:08:33 -080082 vl_api_registration_t *reg;
Dave Barach68b0fb02017-02-28 15:15:56 -050083
Florin Corasb384b542018-01-15 01:08:33 -080084 reg = vl_mem_api_client_index_to_registration (api_client_index);
85 if (!reg)
86 {
87 clib_warning ("no registration: %u", api_client_index);
88 return -1;
89 }
Dave Barach68b0fb02017-02-28 15:15:56 -050090
Florin Corasb384b542018-01-15 01:08:33 -080091 if (ssvm_type (sp) == SSVM_SEGMENT_MEMFD
92 && vl_api_registration_file_index (reg) == VL_API_INVALID_FI)
93 {
94 clib_warning ("can't send memfd fd");
95 return -1;
96 }
Dave Barach68b0fb02017-02-28 15:15:56 -050097
Florin Coras7a2e1bd2017-11-30 16:07:39 -050098 mp = vl_msg_api_alloc_as_if_client (sizeof (*mp));
Dave Barach68b0fb02017-02-28 15:15:56 -050099 memset (mp, 0, sizeof (*mp));
100 mp->_vl_msg_id = clib_host_to_net_u16 (VL_API_MAP_ANOTHER_SEGMENT);
Florin Corasb384b542018-01-15 01:08:33 -0800101 mp->segment_size = sp->ssvm_size;
102 strncpy ((char *) mp->segment_name, (char *) sp->name,
Dave Barach68b0fb02017-02-28 15:15:56 -0500103 sizeof (mp->segment_name) - 1);
104
Florin Corasb384b542018-01-15 01:08:33 -0800105 vl_msg_api_send_shmem (reg->vl_input_queue, (u8 *) & mp);
106
107 if (ssvm_type (sp) == SSVM_SEGMENT_MEMFD)
108 return session_send_memfd_fd (reg, sp);
Dave Barach68b0fb02017-02-28 15:15:56 -0500109
110 return 0;
111}
112
113static int
Florin Corasf8f516a2018-02-08 15:10:09 -0800114send_del_segment_callback (u32 api_client_index, const ssvm_private_t * fs)
115{
116 vl_api_unmap_segment_t *mp;
117 vl_api_registration_t *reg;
118
119 reg = vl_mem_api_client_index_to_registration (api_client_index);
120 if (!reg)
121 {
122 clib_warning ("no registration: %u", api_client_index);
123 return -1;
124 }
125
126 if (ssvm_type (fs) == SSVM_SEGMENT_MEMFD
127 && vl_api_registration_file_index (reg) == VL_API_INVALID_FI)
128 {
129 clib_warning ("can't send memfd fd");
130 return -1;
131 }
132
133 mp = vl_msg_api_alloc_as_if_client (sizeof (*mp));
134 memset (mp, 0, sizeof (*mp));
135 mp->_vl_msg_id = clib_host_to_net_u16 (VL_API_UNMAP_SEGMENT);
136 strncpy ((char *) mp->segment_name, (char *) fs->name,
137 sizeof (mp->segment_name) - 1);
138
139 vl_msg_api_send_shmem (reg->vl_input_queue, (u8 *) & mp);
140
141 if (ssvm_type (fs) == SSVM_SEGMENT_MEMFD)
142 return session_send_memfd_fd (reg, fs);
143
144 return 0;
145}
146
147static int
Florin Coras6cf30ad2017-04-04 23:08:23 -0700148send_session_accept_callback (stream_session_t * s)
Dave Barach68b0fb02017-02-28 15:15:56 -0500149{
Dave Barach68b0fb02017-02-28 15:15:56 -0500150 application_t *server = application_get (s->app_index);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700151 transport_proto_vft_t *tp_vft;
Florin Corasb384b542018-01-15 01:08:33 -0800152 vl_api_accept_session_t *mp;
153 vl_api_registration_t *reg;
154 transport_connection_t *tc;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700155 stream_session_t *listener;
Florin Corasb384b542018-01-15 01:08:33 -0800156 svm_queue_t *vpp_queue;
Dave Barach68b0fb02017-02-28 15:15:56 -0500157
Florin Corasb384b542018-01-15 01:08:33 -0800158 reg = vl_mem_api_client_index_to_registration (server->api_client_index);
159 if (!reg)
160 {
161 clib_warning ("no registration: %u", server->api_client_index);
162 return -1;
163 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500164
Florin Corasb384b542018-01-15 01:08:33 -0800165 mp = vl_mem_api_alloc_as_if_client_w_reg (reg, sizeof (*mp));
Florin Coras6cf30ad2017-04-04 23:08:23 -0700166 memset (mp, 0, sizeof (*mp));
167
Dave Barach68b0fb02017-02-28 15:15:56 -0500168 mp->_vl_msg_id = clib_host_to_net_u16 (VL_API_ACCEPT_SESSION);
Florin Corasa5464812017-04-19 13:00:05 -0700169 mp->context = server->index;
Damjan Marion7bee80c2017-04-26 15:32:12 +0200170 mp->server_rx_fifo = pointer_to_uword (s->server_rx_fifo);
171 mp->server_tx_fifo = pointer_to_uword (s->server_tx_fifo);
Florin Corasf8f516a2018-02-08 15:10:09 -0800172
173 if (session_has_transport (s))
174 {
175 listener = listen_session_get (s->session_type, s->listener_index);
176 mp->listener_handle = listen_session_get_handle (listener);
177 if (application_is_proxy (server))
178 {
179 listener =
180 application_first_listener (server, session_get_fib_proto (s),
181 session_get_transport_proto (s));
182 if (listener)
183 mp->listener_handle = listen_session_get_handle (listener);
184 }
185 vpp_queue = session_manager_get_vpp_event_queue (s->thread_index);
186 mp->vpp_event_queue_address = pointer_to_uword (vpp_queue);
187 mp->handle = session_handle (s);
188 tp_vft = transport_protocol_get_vft (session_get_transport_proto (s));
189 tc = tp_vft->get_connection (s->connection_index, s->thread_index);
190 mp->port = tc->rmt_port;
191 mp->is_ip4 = tc->is_ip4;
192 clib_memcpy (&mp->ip, &tc->rmt_ip, sizeof (tc->rmt_ip));
193 }
194 else
195 {
196 local_session_t *ls = (local_session_t *) s;
197 local_session_t *ll;
198 if (application_local_session_listener_has_transport (ls))
199 {
200 listener = listen_session_get (ls->listener_session_type,
201 ls->listener_index);
202 mp->listener_handle = listen_session_get_handle (listener);
Florin Coras5fda7a32018-02-14 08:04:31 -0800203 mp->is_ip4 = session_type_is_ip4 (listener->session_type);
Florin Corasf8f516a2018-02-08 15:10:09 -0800204 }
205 else
206 {
207 ll = application_get_local_listen_session (server,
208 ls->listener_index);
Florin Coras5fda7a32018-02-14 08:04:31 -0800209 if (ll->transport_listener_index != ~0)
210 {
211 listener = listen_session_get (ll->listener_session_type,
212 ll->transport_listener_index);
213 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;
303 svm_queue_t *vpp_queue;
304 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
Dave Barach68b0fb02017-02-28 15:15:56 -0500366static void
Florin Corase04c2992017-03-01 08:17:34 -0800367vl_api_session_enable_disable_t_handler (vl_api_session_enable_disable_t * mp)
368{
369 vl_api_session_enable_disable_reply_t *rmp;
370 vlib_main_t *vm = vlib_get_main ();
371 int rv = 0;
372
373 vnet_session_enable_disable (vm, mp->is_enable);
374 REPLY_MACRO (VL_API_SESSION_ENABLE_DISABLE_REPLY);
375}
376
377static void
Florin Coras6cf30ad2017-04-04 23:08:23 -0700378vl_api_application_attach_t_handler (vl_api_application_attach_t * mp)
Dave Barach68b0fb02017-02-28 15:15:56 -0500379{
Florin Coras6cf30ad2017-04-04 23:08:23 -0700380 vl_api_application_attach_reply_t *rmp;
Florin Corasb384b542018-01-15 01:08:33 -0800381 ssvm_private_t *segp, *evt_q_segment;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700382 vnet_app_attach_args_t _a, *a = &_a;
Florin Corasb384b542018-01-15 01:08:33 -0800383 vl_api_registration_t *reg;
Florin Corascea194d2017-10-02 00:18:51 -0700384 clib_error_t *error = 0;
385 int rv = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500386
Florin Corasfc804d92018-01-26 01:27:01 -0800387 reg = vl_api_client_index_to_registration (mp->client_index);
388 if (!reg)
389 return;
390
Florin Coras6cf30ad2017-04-04 23:08:23 -0700391 if (session_manager_is_enabled () == 0)
392 {
393 rv = VNET_API_ERROR_FEATURE_DISABLED;
394 goto done;
395 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500396
Florin Corasff6e7692017-12-11 04:59:01 -0800397 STATIC_ASSERT (sizeof (u64) * APP_OPTIONS_N_OPTIONS <=
Florin Coras6cf30ad2017-04-04 23:08:23 -0700398 sizeof (mp->options),
399 "Out of options, fix api message definition");
Dave Barach68b0fb02017-02-28 15:15:56 -0500400
401 memset (a, 0, sizeof (*a));
Dave Barach68b0fb02017-02-28 15:15:56 -0500402 a->api_client_index = mp->client_index;
403 a->options = mp->options;
Florin Corascea194d2017-10-02 00:18:51 -0700404 a->session_cb_vft = &session_cb_vft;
Dave Barach68b0fb02017-02-28 15:15:56 -0500405
Florin Corascea194d2017-10-02 00:18:51 -0700406 if (mp->namespace_id_len > 64)
407 {
408 rv = VNET_API_ERROR_INVALID_VALUE;
409 goto done;
410 }
411
412 if (mp->namespace_id_len)
413 {
Dave Wallace8af20542017-10-26 03:29:30 -0400414 vec_validate (a->namespace_id, mp->namespace_id_len - 1);
Florin Corascea194d2017-10-02 00:18:51 -0700415 clib_memcpy (a->namespace_id, mp->namespace_id, mp->namespace_id_len);
416 }
417
418 if ((error = vnet_application_attach (a)))
419 {
420 rv = clib_error_get_code (error);
421 clib_error_report (error);
422 }
423 vec_free (a->namespace_id);
Dave Barach68b0fb02017-02-28 15:15:56 -0500424
Florin Coras6cf30ad2017-04-04 23:08:23 -0700425done:
Florin Corasa5464812017-04-19 13:00:05 -0700426
Dave Barach68b0fb02017-02-28 15:15:56 -0500427 /* *INDENT-OFF* */
Florin Coras6cf30ad2017-04-04 23:08:23 -0700428 REPLY_MACRO2 (VL_API_APPLICATION_ATTACH_REPLY, ({
Dave Barach68b0fb02017-02-28 15:15:56 -0500429 if (!rv)
430 {
Florin Corasb384b542018-01-15 01:08:33 -0800431 segp = a->segment;
Dave Barach68b0fb02017-02-28 15:15:56 -0500432 rmp->segment_name_length = 0;
Florin Corasb384b542018-01-15 01:08:33 -0800433 rmp->segment_size = segp->ssvm_size;
434 if (vec_len (segp->name))
Dave Barach68b0fb02017-02-28 15:15:56 -0500435 {
Florin Corasb384b542018-01-15 01:08:33 -0800436 memcpy (rmp->segment_name, segp->name, vec_len (segp->name));
437 rmp->segment_name_length = vec_len (segp->name);
Dave Barach68b0fb02017-02-28 15:15:56 -0500438 }
Florin Coras6cf30ad2017-04-04 23:08:23 -0700439 rmp->app_event_queue_address = a->app_event_queue_address;
Dave Barach68b0fb02017-02-28 15:15:56 -0500440 }
441 }));
442 /* *INDENT-ON* */
Florin Corasb384b542018-01-15 01:08:33 -0800443
444 if (rv)
445 return;
446
Florin Corasb384b542018-01-15 01:08:33 -0800447 /* Send fifo segment fd if needed */
448 if (ssvm_type (a->segment) == SSVM_SEGMENT_MEMFD)
449 session_send_memfd_fd (reg, a->segment);
450 /* Send event queues segment */
451 if ((evt_q_segment = session_manager_get_evt_q_segment ()))
452 session_send_memfd_fd (reg, evt_q_segment);
Dave Barach68b0fb02017-02-28 15:15:56 -0500453}
454
455static void
Florin Coras6cf30ad2017-04-04 23:08:23 -0700456vl_api_application_detach_t_handler (vl_api_application_detach_t * mp)
457{
458 vl_api_application_detach_reply_t *rmp;
459 int rv = VNET_API_ERROR_INVALID_VALUE_2;
460 vnet_app_detach_args_t _a, *a = &_a;
461 application_t *app;
462
463 if (session_manager_is_enabled () == 0)
464 {
465 rv = VNET_API_ERROR_FEATURE_DISABLED;
466 goto done;
467 }
468
469 app = application_lookup (mp->client_index);
470 if (app)
471 {
472 a->app_index = app->index;
473 rv = vnet_application_detach (a);
474 }
475
476done:
477 REPLY_MACRO (VL_API_APPLICATION_DETACH_REPLY);
478}
479
480static void
481vl_api_bind_uri_t_handler (vl_api_bind_uri_t * mp)
482{
483 vl_api_bind_uri_reply_t *rmp;
484 vnet_bind_args_t _a, *a = &_a;
485 application_t *app;
486 int rv;
487
488 if (session_manager_is_enabled () == 0)
489 {
490 rv = VNET_API_ERROR_FEATURE_DISABLED;
491 goto done;
492 }
493
494 app = application_lookup (mp->client_index);
495 if (app)
496 {
497 memset (a, 0, sizeof (*a));
498 a->uri = (char *) mp->uri;
499 a->app_index = app->index;
500 rv = vnet_bind_uri (a);
501 }
502 else
503 {
504 rv = VNET_API_ERROR_APPLICATION_NOT_ATTACHED;
505 }
506
507done:
508 REPLY_MACRO (VL_API_BIND_URI_REPLY);
509}
510
511static void
Dave Barach68b0fb02017-02-28 15:15:56 -0500512vl_api_unbind_uri_t_handler (vl_api_unbind_uri_t * mp)
513{
514 vl_api_unbind_uri_reply_t *rmp;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700515 application_t *app;
516 vnet_unbind_args_t _a, *a = &_a;
Dave Barach68b0fb02017-02-28 15:15:56 -0500517 int rv;
518
Florin Coras6cf30ad2017-04-04 23:08:23 -0700519 if (session_manager_is_enabled () == 0)
520 {
521 rv = VNET_API_ERROR_FEATURE_DISABLED;
522 goto done;
523 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500524
Florin Coras6cf30ad2017-04-04 23:08:23 -0700525 app = application_lookup (mp->client_index);
526 if (app)
527 {
528 a->uri = (char *) mp->uri;
529 a->app_index = app->index;
530 rv = vnet_unbind_uri (a);
531 }
532 else
533 {
534 rv = VNET_API_ERROR_APPLICATION_NOT_ATTACHED;
535 }
536
537done:
Dave Barach68b0fb02017-02-28 15:15:56 -0500538 REPLY_MACRO (VL_API_UNBIND_URI_REPLY);
539}
540
Florin Corasf03a59a2017-06-09 21:07:32 -0700541static void
Dave Barach68b0fb02017-02-28 15:15:56 -0500542vl_api_connect_uri_t_handler (vl_api_connect_uri_t * mp)
543{
Dave Wallace33e002b2017-09-06 01:20:02 -0400544 vl_api_connect_session_reply_t *rmp;
Dave Barach68b0fb02017-02-28 15:15:56 -0500545 vnet_connect_args_t _a, *a = &_a;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700546 application_t *app;
Florin Corascea194d2017-10-02 00:18:51 -0700547 clib_error_t *error = 0;
548 int rv = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500549
Florin Coras6cf30ad2017-04-04 23:08:23 -0700550 if (session_manager_is_enabled () == 0)
551 {
552 rv = VNET_API_ERROR_FEATURE_DISABLED;
553 goto done;
554 }
Florin Corase04c2992017-03-01 08:17:34 -0800555
Florin Coras6cf30ad2017-04-04 23:08:23 -0700556 app = application_lookup (mp->client_index);
557 if (app)
558 {
559 a->uri = (char *) mp->uri;
560 a->api_context = mp->context;
561 a->app_index = app->index;
562 a->mp = mp;
Florin Corascea194d2017-10-02 00:18:51 -0700563 if ((error = vnet_connect_uri (a)))
564 {
565 rv = clib_error_get_code (error);
566 if (rv != VNET_API_ERROR_SESSION_REDIRECT)
567 clib_error_report (error);
568 }
Florin Coras6cf30ad2017-04-04 23:08:23 -0700569 }
570 else
571 {
572 rv = VNET_API_ERROR_APPLICATION_NOT_ATTACHED;
573 }
Florin Corase04c2992017-03-01 08:17:34 -0800574
Florin Coras3cbc04b2017-10-02 00:18:51 -0700575 /*
576 * Don't reply to stream (tcp) connects. The reply will come once
577 * the connection is established. In case of the redirects, the reply
578 * will come from the server app.
579 */
Florin Corascea194d2017-10-02 00:18:51 -0700580 if (rv == 0 || rv == VNET_API_ERROR_SESSION_REDIRECT)
Florin Corase04c2992017-03-01 08:17:34 -0800581 return;
582
Florin Coras6cf30ad2017-04-04 23:08:23 -0700583done:
Florin Corase04c2992017-03-01 08:17:34 -0800584 /* *INDENT-OFF* */
Dave Wallace33e002b2017-09-06 01:20:02 -0400585 REPLY_MACRO (VL_API_CONNECT_SESSION_REPLY);
Florin Corase04c2992017-03-01 08:17:34 -0800586 /* *INDENT-ON* */
Dave Barach68b0fb02017-02-28 15:15:56 -0500587}
588
589static void
590vl_api_disconnect_session_t_handler (vl_api_disconnect_session_t * mp)
591{
592 vl_api_disconnect_session_reply_t *rmp;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700593 vnet_disconnect_args_t _a, *a = &_a;
594 application_t *app;
595 int rv = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500596
Florin Coras6cf30ad2017-04-04 23:08:23 -0700597 if (session_manager_is_enabled () == 0)
598 {
599 rv = VNET_API_ERROR_FEATURE_DISABLED;
600 goto done;
601 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500602
Florin Coras6cf30ad2017-04-04 23:08:23 -0700603 app = application_lookup (mp->client_index);
604 if (app)
605 {
606 a->handle = mp->handle;
607 a->app_index = app->index;
608 rv = vnet_disconnect_session (a);
609 }
610 else
611 {
612 rv = VNET_API_ERROR_APPLICATION_NOT_ATTACHED;
613 }
614
615done:
Dave Wallacede5fec92017-11-11 22:41:34 -0500616 REPLY_MACRO2 (VL_API_DISCONNECT_SESSION_REPLY, rmp->handle = mp->handle);
Dave Barach68b0fb02017-02-28 15:15:56 -0500617}
618
619static void
620vl_api_disconnect_session_reply_t_handler (vl_api_disconnect_session_reply_t *
621 mp)
622{
Florin Coras6cf30ad2017-04-04 23:08:23 -0700623 vnet_disconnect_args_t _a, *a = &_a;
624 application_t *app;
Dave Barach68b0fb02017-02-28 15:15:56 -0500625
626 /* Client objected to disconnecting the session, log and continue */
627 if (mp->retval)
628 {
629 clib_warning ("client retval %d", mp->retval);
630 return;
631 }
632
633 /* Disconnect has been confirmed. Confirm close to transport */
Florin Corasf8f516a2018-02-08 15:10:09 -0800634 app = application_lookup (mp->context);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700635 if (app)
636 {
637 a->handle = mp->handle;
638 a->app_index = app->index;
639 vnet_disconnect_session (a);
640 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500641}
642
643static void
644vl_api_reset_session_reply_t_handler (vl_api_reset_session_reply_t * mp)
645{
Florin Coras6cf30ad2017-04-04 23:08:23 -0700646 application_t *app;
Dave Barach68b0fb02017-02-28 15:15:56 -0500647 stream_session_t *s;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700648 u32 index, thread_index;
Dave Barach68b0fb02017-02-28 15:15:56 -0500649
Florin Coras6cf30ad2017-04-04 23:08:23 -0700650 app = application_lookup (mp->client_index);
651 if (!app)
652 return;
653
Florin Corascea194d2017-10-02 00:18:51 -0700654 session_parse_handle (mp->handle, &index, &thread_index);
Florin Coras3cbc04b2017-10-02 00:18:51 -0700655 s = session_get_if_valid (index, thread_index);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700656 if (s == 0 || app->index != s->app_index)
Dave Barach68b0fb02017-02-28 15:15:56 -0500657 {
658 clib_warning ("Invalid session!");
659 return;
660 }
661
662 /* Client objected to resetting the session, log and continue */
663 if (mp->retval)
664 {
665 clib_warning ("client retval %d", mp->retval);
666 return;
667 }
668
Dave Barach68b0fb02017-02-28 15:15:56 -0500669 /* This comes as a response to a reset, transport only waiting for
670 * confirmation to remove connection state, no need to disconnect */
671 stream_session_cleanup (s);
672}
673
674static void
675vl_api_accept_session_reply_t_handler (vl_api_accept_session_reply_t * mp)
676{
Florin Corasf8f516a2018-02-08 15:10:09 -0800677 vnet_disconnect_args_t _a = { 0 }, *a = &_a;
678 local_session_t *ls;
Dave Barach68b0fb02017-02-28 15:15:56 -0500679 stream_session_t *s;
Dave Barach68b0fb02017-02-28 15:15:56 -0500680
Florin Corasa5464812017-04-19 13:00:05 -0700681 /* Server isn't interested, kill the session */
682 if (mp->retval)
Dave Barach68b0fb02017-02-28 15:15:56 -0500683 {
Florin Corasa5464812017-04-19 13:00:05 -0700684 a->app_index = mp->context;
685 a->handle = mp->handle;
686 vnet_disconnect_session (a);
Florin Corasf8f516a2018-02-08 15:10:09 -0800687 return;
688 }
689
690 if (session_handle_is_local (mp->handle))
691 {
692 ls = application_get_local_session_from_handle (mp->handle);
693 if (!ls || ls->app_index != mp->context)
694 {
695 clib_warning ("server %u doesn't own local handle %llu",
696 mp->context, mp->handle);
697 return;
698 }
699 if (application_local_session_connect_notify (ls))
700 return;
701 ls->session_state = SESSION_STATE_READY;
Dave Barach68b0fb02017-02-28 15:15:56 -0500702 }
Florin Corasa5464812017-04-19 13:00:05 -0700703 else
704 {
Florin Corasf8f516a2018-02-08 15:10:09 -0800705 s = session_get_from_handle_if_valid (mp->handle);
Florin Corasa5464812017-04-19 13:00:05 -0700706 if (!s)
707 {
708 clib_warning ("session doesn't exist");
709 return;
710 }
711 if (s->app_index != mp->context)
712 {
713 clib_warning ("app doesn't own session");
714 return;
715 }
Florin Corasa5464812017-04-19 13:00:05 -0700716 s->session_state = SESSION_STATE_READY;
717 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500718}
719
720static void
721vl_api_map_another_segment_reply_t_handler (vl_api_map_another_segment_reply_t
722 * mp)
723{
724 clib_warning ("not implemented");
725}
726
727static void
728vl_api_bind_sock_t_handler (vl_api_bind_sock_t * mp)
729{
730 vl_api_bind_sock_reply_t *rmp;
731 vnet_bind_args_t _a, *a = &_a;
Florin Corascea194d2017-10-02 00:18:51 -0700732 int rv = 0;
733 clib_error_t *error;
Florin Coraseb2945c2017-11-22 10:39:09 -0800734 application_t *app = 0;
Florin Corasdcf55ce2017-11-16 15:32:50 -0800735 stream_session_t *s;
736 transport_connection_t *tc = 0;
737 ip46_address_t *ip46;
Dave Barach68b0fb02017-02-28 15:15:56 -0500738
Florin Coras6cf30ad2017-04-04 23:08:23 -0700739 if (session_manager_is_enabled () == 0)
740 {
741 rv = VNET_API_ERROR_FEATURE_DISABLED;
742 goto done;
743 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500744
Florin Coras6cf30ad2017-04-04 23:08:23 -0700745 app = application_lookup (mp->client_index);
Florin Corasdcf55ce2017-11-16 15:32:50 -0800746 if (!app)
Florin Coras6cf30ad2017-04-04 23:08:23 -0700747 {
Florin Corasdcf55ce2017-11-16 15:32:50 -0800748 rv = VNET_API_ERROR_APPLICATION_NOT_ATTACHED;
749 goto done;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700750 }
Florin Corasdcf55ce2017-11-16 15:32:50 -0800751
752 ip46 = (ip46_address_t *) mp->ip;
753 memset (a, 0, sizeof (*a));
754 a->sep.is_ip4 = mp->is_ip4;
755 a->sep.ip = *ip46;
756 a->sep.port = mp->port;
757 a->sep.fib_index = mp->vrf;
758 a->sep.sw_if_index = ENDPOINT_INVALID_INDEX;
759 a->sep.transport_proto = mp->proto;
760 a->app_index = app->index;
761
762 if ((error = vnet_bind (a)))
763 {
764 rv = clib_error_get_code (error);
765 clib_error_report (error);
766 }
Florin Corasdcf55ce2017-11-16 15:32:50 -0800767
Florin Coras6cf30ad2017-04-04 23:08:23 -0700768done:
Florin Corascea194d2017-10-02 00:18:51 -0700769 /* *INDENT-OFF* */
770 REPLY_MACRO2 (VL_API_BIND_SOCK_REPLY,({
771 if (!rv)
Florin Corasdcf55ce2017-11-16 15:32:50 -0800772 {
773 rmp->handle = a->handle;
Florin Coraseb2945c2017-11-22 10:39:09 -0800774 rmp->lcl_port = mp->port;
Dave Wallace97b1a272017-12-18 13:51:59 -0500775 if (app && application_has_global_scope (app))
Florin Coraseb2945c2017-11-22 10:39:09 -0800776 {
777 s = listen_session_get_from_handle (a->handle);
778 tc = listen_session_get_transport (s);
779 rmp->lcl_is_ip4 = tc->is_ip4;
780 clib_memcpy (rmp->lcl_ip, &tc->lcl_ip, sizeof (tc->lcl_ip));
781 }
Florin Corasdcf55ce2017-11-16 15:32:50 -0800782 }
Florin Corascea194d2017-10-02 00:18:51 -0700783 }));
784 /* *INDENT-ON* */
Dave Barach68b0fb02017-02-28 15:15:56 -0500785}
786
787static void
788vl_api_unbind_sock_t_handler (vl_api_unbind_sock_t * mp)
789{
790 vl_api_unbind_sock_reply_t *rmp;
791 vnet_unbind_args_t _a, *a = &_a;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700792 application_t *app;
Florin Corascea194d2017-10-02 00:18:51 -0700793 clib_error_t *error;
794 int rv = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500795
Florin Coras6cf30ad2017-04-04 23:08:23 -0700796 if (session_manager_is_enabled () == 0)
797 {
798 rv = VNET_API_ERROR_FEATURE_DISABLED;
799 goto done;
800 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500801
Florin Coras6cf30ad2017-04-04 23:08:23 -0700802 app = application_lookup (mp->client_index);
803 if (app)
804 {
Florin Corasef24d422017-11-09 10:05:42 -0800805 a->app_index = app->index;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700806 a->handle = mp->handle;
Florin Corascea194d2017-10-02 00:18:51 -0700807 if ((error = vnet_unbind (a)))
808 {
809 rv = clib_error_get_code (error);
810 clib_error_report (error);
811 }
Florin Coras6cf30ad2017-04-04 23:08:23 -0700812 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500813
Florin Coras6cf30ad2017-04-04 23:08:23 -0700814done:
Dave Barach68b0fb02017-02-28 15:15:56 -0500815 REPLY_MACRO (VL_API_UNBIND_SOCK_REPLY);
816}
817
818static void
819vl_api_connect_sock_t_handler (vl_api_connect_sock_t * mp)
820{
Dave Wallace33e002b2017-09-06 01:20:02 -0400821 vl_api_connect_session_reply_t *rmp;
Dave Barach68b0fb02017-02-28 15:15:56 -0500822 vnet_connect_args_t _a, *a = &_a;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700823 application_t *app;
Florin Corascea194d2017-10-02 00:18:51 -0700824 clib_error_t *error = 0;
825 int rv = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500826
Florin Coras6cf30ad2017-04-04 23:08:23 -0700827 if (session_manager_is_enabled () == 0)
828 {
829 rv = VNET_API_ERROR_FEATURE_DISABLED;
830 goto done;
831 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500832
Florin Coras6cf30ad2017-04-04 23:08:23 -0700833 app = application_lookup (mp->client_index);
834 if (app)
835 {
Florin Corase86a8ed2018-01-05 03:20:25 -0800836 svm_queue_t *client_q;
Dave Wallace33e002b2017-09-06 01:20:02 -0400837 ip46_address_t *ip46 = (ip46_address_t *) mp->ip;
Dave Wallaceb2d5ff32017-06-14 12:38:28 -0400838
839 client_q = vl_api_client_index_to_input_queue (mp->client_index);
840 mp->client_queue_address = pointer_to_uword (client_q);
Florin Corascea194d2017-10-02 00:18:51 -0700841 a->sep.is_ip4 = mp->is_ip4;
842 a->sep.ip = *ip46;
843 a->sep.port = mp->port;
844 a->sep.transport_proto = mp->proto;
845 a->sep.fib_index = mp->vrf;
846 a->sep.sw_if_index = ENDPOINT_INVALID_INDEX;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700847 a->api_context = mp->context;
848 a->app_index = app->index;
849 a->mp = mp;
Florin Corascea194d2017-10-02 00:18:51 -0700850 if ((error = vnet_connect (a)))
851 {
852 rv = clib_error_get_code (error);
853 if (rv != VNET_API_ERROR_SESSION_REDIRECT)
854 clib_error_report (error);
855 }
Florin Coras6cf30ad2017-04-04 23:08:23 -0700856 }
857 else
858 {
859 rv = VNET_API_ERROR_APPLICATION_NOT_ATTACHED;
860 }
Florin Corase04c2992017-03-01 08:17:34 -0800861
Florin Corascea194d2017-10-02 00:18:51 -0700862 if (rv == 0 || rv == VNET_API_ERROR_SESSION_REDIRECT)
Florin Corase04c2992017-03-01 08:17:34 -0800863 return;
864
865 /* Got some error, relay it */
866
Florin Coras6cf30ad2017-04-04 23:08:23 -0700867done:
Dave Wallace33e002b2017-09-06 01:20:02 -0400868 REPLY_MACRO (VL_API_CONNECT_SESSION_REPLY);
Dave Barach68b0fb02017-02-28 15:15:56 -0500869}
870
Florin Corascea194d2017-10-02 00:18:51 -0700871static void
872vl_api_app_namespace_add_del_t_handler (vl_api_app_namespace_add_del_t * mp)
873{
874 vl_api_app_namespace_add_del_reply_t *rmp;
Florin Corascea194d2017-10-02 00:18:51 -0700875 clib_error_t *error = 0;
Florin Coras6e8c6672017-11-10 09:03:54 -0800876 u32 appns_index = 0;
877 u8 *ns_id = 0;
Florin Corascea194d2017-10-02 00:18:51 -0700878 int rv = 0;
879 if (!session_manager_is_enabled ())
880 {
881 rv = VNET_API_ERROR_FEATURE_DISABLED;
882 goto done;
883 }
884
885 if (mp->namespace_id_len > ARRAY_LEN (mp->namespace_id))
886 {
887 rv = VNET_API_ERROR_INVALID_VALUE;
888 goto done;
889 }
890
891 vec_validate (ns_id, mp->namespace_id_len - 1);
892 clib_memcpy (ns_id, mp->namespace_id, mp->namespace_id_len);
893 vnet_app_namespace_add_del_args_t args = {
894 .ns_id = ns_id,
Florin Coras9a9adb22017-10-26 08:16:59 -0700895 .secret = clib_net_to_host_u64 (mp->secret),
Florin Corascea194d2017-10-02 00:18:51 -0700896 .sw_if_index = clib_net_to_host_u32 (mp->sw_if_index),
897 .ip4_fib_id = clib_net_to_host_u32 (mp->ip4_fib_id),
898 .ip6_fib_id = clib_net_to_host_u32 (mp->ip6_fib_id),
899 .is_add = 1
900 };
901 error = vnet_app_namespace_add_del (&args);
902 if (error)
903 {
904 rv = clib_error_get_code (error);
905 clib_error_report (error);
906 }
Florin Coras6e8c6672017-11-10 09:03:54 -0800907 else
908 {
909 appns_index = app_namespace_index_from_id (ns_id);
910 if (appns_index == APP_NAMESPACE_INVALID_INDEX)
911 {
912 clib_warning ("app ns lookup failed");
913 rv = VNET_API_ERROR_UNSPECIFIED;
914 }
915 }
Florin Corascea194d2017-10-02 00:18:51 -0700916 vec_free (ns_id);
Florin Coras6e8c6672017-11-10 09:03:54 -0800917
918 /* *INDENT-OFF* */
Florin Corascea194d2017-10-02 00:18:51 -0700919done:
Florin Coras6e8c6672017-11-10 09:03:54 -0800920 REPLY_MACRO2 (VL_API_APP_NAMESPACE_ADD_DEL_REPLY, ({
921 if (!rv)
922 rmp->appns_index = clib_host_to_net_u32 (appns_index);
923 }));
924 /* *INDENT-ON* */
Florin Corascea194d2017-10-02 00:18:51 -0700925}
926
Florin Coras1c710452017-10-17 00:03:13 -0700927static void
928vl_api_session_rule_add_del_t_handler (vl_api_session_rule_add_del_t * mp)
929{
930 vl_api_session_rule_add_del_reply_t *rmp;
931 session_rule_add_del_args_t args;
932 session_rule_table_add_del_args_t *table_args = &args.table_args;
933 clib_error_t *error;
934 u8 fib_proto;
935 int rv = 0;
936
Florin Corasc97a7392017-11-05 23:07:07 -0800937 memset (&args, 0, sizeof (args));
Florin Coras1c710452017-10-17 00:03:13 -0700938 fib_proto = mp->is_ip4 ? FIB_PROTOCOL_IP4 : FIB_PROTOCOL_IP6;
939
940 table_args->lcl.fp_len = mp->lcl_plen;
941 table_args->lcl.fp_proto = fib_proto;
942 table_args->rmt.fp_len = mp->rmt_plen;
943 table_args->rmt.fp_proto = fib_proto;
Milan Lenco8b9a5d12017-11-24 17:12:33 +0100944 table_args->lcl_port = mp->lcl_port;
945 table_args->rmt_port = mp->rmt_port;
Florin Coras1c710452017-10-17 00:03:13 -0700946 table_args->action_index = clib_net_to_host_u32 (mp->action_index);
947 table_args->is_add = mp->is_add;
Florin Corasc97a7392017-11-05 23:07:07 -0800948 mp->tag[sizeof (mp->tag) - 1] = 0;
949 table_args->tag = format (0, "%s", mp->tag);
Florin Coras1c710452017-10-17 00:03:13 -0700950 args.appns_index = clib_net_to_host_u32 (mp->appns_index);
951 args.scope = mp->scope;
Florin Coras42324ad2017-11-18 18:45:20 -0800952 args.transport_proto = mp->transport_proto;
Florin Coras1c710452017-10-17 00:03:13 -0700953
954 memset (&table_args->lcl.fp_addr, 0, sizeof (table_args->lcl.fp_addr));
955 memset (&table_args->rmt.fp_addr, 0, sizeof (table_args->rmt.fp_addr));
956 ip_set (&table_args->lcl.fp_addr, mp->lcl_ip, mp->is_ip4);
957 ip_set (&table_args->rmt.fp_addr, mp->rmt_ip, mp->is_ip4);
958 error = vnet_session_rule_add_del (&args);
959 if (error)
960 {
961 rv = clib_error_get_code (error);
962 clib_error_report (error);
963 }
Florin Corasc97a7392017-11-05 23:07:07 -0800964 vec_free (table_args->tag);
Florin Coras1c710452017-10-17 00:03:13 -0700965 REPLY_MACRO (VL_API_SESSION_RULE_ADD_DEL_REPLY);
966}
967
Florin Coras6c36f532017-11-03 18:32:34 -0700968static void
969send_session_rule_details4 (mma_rule_16_t * rule, u8 is_local,
Florin Corasc97a7392017-11-05 23:07:07 -0800970 u8 transport_proto, u32 appns_index, u8 * tag,
Florin Coras6c4dae22018-01-09 06:39:23 -0800971 vl_api_registration_t * reg, u32 context)
Florin Coras6c36f532017-11-03 18:32:34 -0700972{
973 vl_api_session_rules_details_t *rmp = 0;
974 session_mask_or_match_4_t *match =
975 (session_mask_or_match_4_t *) & rule->match;
976 session_mask_or_match_4_t *mask =
977 (session_mask_or_match_4_t *) & rule->mask;
978
979 rmp = vl_msg_api_alloc (sizeof (*rmp));
980 memset (rmp, 0, sizeof (*rmp));
981 rmp->_vl_msg_id = ntohs (VL_API_SESSION_RULES_DETAILS);
982 rmp->context = context;
983
984 rmp->is_ip4 = 1;
985 clib_memcpy (rmp->lcl_ip, &match->lcl_ip, sizeof (match->lcl_ip));
986 clib_memcpy (rmp->rmt_ip, &match->rmt_ip, sizeof (match->rmt_ip));
987 rmp->lcl_plen = ip4_mask_to_preflen (&mask->lcl_ip);
988 rmp->rmt_plen = ip4_mask_to_preflen (&mask->rmt_ip);
Milan Lenco8b9a5d12017-11-24 17:12:33 +0100989 rmp->lcl_port = match->lcl_port;
990 rmp->rmt_port = match->rmt_port;
Florin Coras6c36f532017-11-03 18:32:34 -0700991 rmp->action_index = clib_host_to_net_u32 (rule->action_index);
992 rmp->scope =
993 is_local ? SESSION_RULE_SCOPE_LOCAL : SESSION_RULE_SCOPE_GLOBAL;
994 rmp->transport_proto = transport_proto;
995 rmp->appns_index = clib_host_to_net_u32 (appns_index);
Florin Corasc97a7392017-11-05 23:07:07 -0800996 if (tag)
997 {
998 clib_memcpy (rmp->tag, tag, vec_len (tag));
999 rmp->tag[vec_len (tag)] = 0;
1000 }
Florin Coras6c36f532017-11-03 18:32:34 -07001001
Florin Coras6c4dae22018-01-09 06:39:23 -08001002 vl_api_send_msg (reg, (u8 *) rmp);
Florin Coras6c36f532017-11-03 18:32:34 -07001003}
1004
1005static void
Florin Corasc97a7392017-11-05 23:07:07 -08001006send_session_rule_details6 (mma_rule_40_t * rule, u8 is_local,
1007 u8 transport_proto, u32 appns_index, u8 * tag,
Florin Coras6c4dae22018-01-09 06:39:23 -08001008 vl_api_registration_t * reg, u32 context)
Florin Coras6c36f532017-11-03 18:32:34 -07001009{
1010 vl_api_session_rules_details_t *rmp = 0;
1011 session_mask_or_match_6_t *match =
1012 (session_mask_or_match_6_t *) & rule->match;
1013 session_mask_or_match_6_t *mask =
1014 (session_mask_or_match_6_t *) & rule->mask;
1015
1016 rmp = vl_msg_api_alloc (sizeof (*rmp));
1017 memset (rmp, 0, sizeof (*rmp));
1018 rmp->_vl_msg_id = ntohs (VL_API_SESSION_RULES_DETAILS);
1019 rmp->context = context;
1020
1021 rmp->is_ip4 = 0;
1022 clib_memcpy (rmp->lcl_ip, &match->lcl_ip, sizeof (match->lcl_ip));
1023 clib_memcpy (rmp->rmt_ip, &match->rmt_ip, sizeof (match->rmt_ip));
1024 rmp->lcl_plen = ip6_mask_to_preflen (&mask->lcl_ip);
1025 rmp->rmt_plen = ip6_mask_to_preflen (&mask->rmt_ip);
Milan Lenco8b9a5d12017-11-24 17:12:33 +01001026 rmp->lcl_port = match->lcl_port;
1027 rmp->rmt_port = match->rmt_port;
Florin Coras6c36f532017-11-03 18:32:34 -07001028 rmp->action_index = clib_host_to_net_u32 (rule->action_index);
Florin Corasc97a7392017-11-05 23:07:07 -08001029 rmp->scope =
1030 is_local ? SESSION_RULE_SCOPE_LOCAL : SESSION_RULE_SCOPE_GLOBAL;
Florin Coras6c36f532017-11-03 18:32:34 -07001031 rmp->transport_proto = transport_proto;
1032 rmp->appns_index = clib_host_to_net_u32 (appns_index);
Florin Corasc97a7392017-11-05 23:07:07 -08001033 if (tag)
1034 {
1035 clib_memcpy (rmp->tag, tag, vec_len (tag));
1036 rmp->tag[vec_len (tag)] = 0;
1037 }
Florin Coras6c36f532017-11-03 18:32:34 -07001038
Florin Coras6c4dae22018-01-09 06:39:23 -08001039 vl_api_send_msg (reg, (u8 *) rmp);
Florin Coras6c36f532017-11-03 18:32:34 -07001040}
1041
1042static void
1043send_session_rules_table_details (session_rules_table_t * srt, u8 fib_proto,
Florin Corasc97a7392017-11-05 23:07:07 -08001044 u8 tp, u8 is_local, u32 appns_index,
Florin Coras6c4dae22018-01-09 06:39:23 -08001045 vl_api_registration_t * reg, u32 context)
Florin Coras6c36f532017-11-03 18:32:34 -07001046{
1047 mma_rule_16_t *rule16;
1048 mma_rule_40_t *rule40;
1049 mma_rules_table_16_t *srt16;
1050 mma_rules_table_40_t *srt40;
Florin Corasc97a7392017-11-05 23:07:07 -08001051 u32 ri;
Florin Coras6c36f532017-11-03 18:32:34 -07001052
Florin Corasc97a7392017-11-05 23:07:07 -08001053 if (is_local || fib_proto == FIB_PROTOCOL_IP4)
Florin Coras6c36f532017-11-03 18:32:34 -07001054 {
Florin Corasc97a7392017-11-05 23:07:07 -08001055 u8 *tag = 0;
1056 /* *INDENT-OFF* */
1057 srt16 = &srt->session_rules_tables_16;
1058 pool_foreach (rule16, srt16->rules, ({
1059 ri = mma_rules_table_rule_index_16 (srt16, rule16);
1060 tag = session_rules_table_rule_tag (srt, ri, 1);
1061 send_session_rule_details4 (rule16, is_local, tp, appns_index, tag,
Florin Coras6c4dae22018-01-09 06:39:23 -08001062 reg, context);
Florin Corasc97a7392017-11-05 23:07:07 -08001063 }));
1064 /* *INDENT-ON* */
1065 }
1066 if (is_local || fib_proto == FIB_PROTOCOL_IP6)
1067 {
1068 u8 *tag = 0;
1069 /* *INDENT-OFF* */
1070 srt40 = &srt->session_rules_tables_40;
1071 pool_foreach (rule40, srt40->rules, ({
1072 ri = mma_rules_table_rule_index_40 (srt40, rule40);
1073 tag = session_rules_table_rule_tag (srt, ri, 1);
1074 send_session_rule_details6 (rule40, is_local, tp, appns_index, tag,
Florin Coras6c4dae22018-01-09 06:39:23 -08001075 reg, context);
Florin Corasc97a7392017-11-05 23:07:07 -08001076 }));
1077 /* *INDENT-ON* */
Florin Coras6c36f532017-11-03 18:32:34 -07001078 }
1079}
1080
1081static void
1082vl_api_session_rules_dump_t_handler (vl_api_one_map_server_dump_t * mp)
1083{
Florin Coras6c4dae22018-01-09 06:39:23 -08001084 vl_api_registration_t *reg;
Florin Coras6c36f532017-11-03 18:32:34 -07001085 session_table_t *st;
Florin Corasc97a7392017-11-05 23:07:07 -08001086 u8 tp;
Florin Coras6c36f532017-11-03 18:32:34 -07001087
Florin Coras6c4dae22018-01-09 06:39:23 -08001088 reg = vl_api_client_index_to_registration (mp->client_index);
1089 if (!reg)
Florin Coras6c36f532017-11-03 18:32:34 -07001090 return;
1091
1092 /* *INDENT-OFF* */
1093 session_table_foreach (st, ({
Florin Corasc97a7392017-11-05 23:07:07 -08001094 for (tp = 0; tp < TRANSPORT_N_PROTO; tp++)
1095 {
1096 send_session_rules_table_details (&st->session_rules[tp],
1097 st->active_fib_proto, tp,
Florin Coras6c4dae22018-01-09 06:39:23 -08001098 st->is_local, st->appns_index, reg,
Florin Corasc97a7392017-11-05 23:07:07 -08001099 mp->context);
1100 }
Florin Coras6c36f532017-11-03 18:32:34 -07001101 }));
1102 /* *INDENT-ON* */
1103}
1104
Florin Coras6cf30ad2017-04-04 23:08:23 -07001105static clib_error_t *
1106application_reaper_cb (u32 client_index)
Dave Barach68b0fb02017-02-28 15:15:56 -05001107{
Florin Coras6cf30ad2017-04-04 23:08:23 -07001108 application_t *app = application_lookup (client_index);
1109 vnet_app_detach_args_t _a, *a = &_a;
1110 if (app)
1111 {
1112 a->app_index = app->index;
1113 vnet_application_detach (a);
1114 }
1115 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001116}
1117
Florin Coras6cf30ad2017-04-04 23:08:23 -07001118VL_MSG_API_REAPER_FUNCTION (application_reaper_cb);
Dave Barach68b0fb02017-02-28 15:15:56 -05001119
1120#define vl_msg_name_crc_list
1121#include <vnet/vnet_all_api_h.h>
1122#undef vl_msg_name_crc_list
1123
1124static void
1125setup_message_id_table (api_main_t * am)
1126{
1127#define _(id,n,crc) vl_msg_api_add_msg_name_crc (am, #n "_" #crc, id);
1128 foreach_vl_msg_name_crc_session;
1129#undef _
1130}
1131
1132/*
1133 * session_api_hookup
1134 * Add uri's API message handlers to the table.
1135 * vlib has alread mapped shared memory and
1136 * added the client registration handlers.
1137 * See .../open-repo/vlib/memclnt_vlib.c:memclnt_process()
1138 */
1139static clib_error_t *
1140session_api_hookup (vlib_main_t * vm)
1141{
1142 api_main_t *am = &api_main;
1143
1144#define _(N,n) \
1145 vl_msg_api_set_handlers(VL_API_##N, #n, \
1146 vl_api_##n##_t_handler, \
1147 vl_noop_handler, \
1148 vl_api_##n##_t_endian, \
1149 vl_api_##n##_t_print, \
1150 sizeof(vl_api_##n##_t), 1);
1151 foreach_session_api_msg;
1152#undef _
1153
1154 /*
1155 * Messages which bounce off the data-plane to
1156 * an API client. Simply tells the message handling infra not
1157 * to free the message.
1158 *
1159 * Bounced message handlers MUST NOT block the data plane
1160 */
1161 am->message_bounce[VL_API_CONNECT_URI] = 1;
1162 am->message_bounce[VL_API_CONNECT_SOCK] = 1;
1163
1164 /*
1165 * Set up the (msg_name, crc, message-id) table
1166 */
1167 setup_message_id_table (am);
1168
1169 return 0;
1170}
1171
1172VLIB_API_INIT_FUNCTION (session_api_hookup);
Florin Coras6cf30ad2017-04-04 23:08:23 -07001173
Dave Barach68b0fb02017-02-28 15:15:56 -05001174/*
1175 * fd.io coding-style-patch-verification: ON
1176 *
1177 * Local Variables:
1178 * eval: (c-set-style "gnu")
1179 * End:
1180 */