blob: 8e37d42898261d9bd9a0dd0ecc7d897bd05040c9 [file] [log] [blame]
Dave Barach68b0fb02017-02-28 15:15:56 -05001/*
Florin Coras288eaab2019-02-03 15:26:14 -08002 * Copyright (c) 2015-2019 Cisco and/or its affiliates.
Dave Barach68b0fb02017-02-28 15:15:56 -05003 * 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>
Florin Corasba7d8f52019-02-22 13:11:38 -080020#include <vnet/session/application_local.h>
Florin Coras1c710452017-10-17 00:03:13 -070021#include <vnet/session/session_rules_table.h>
Florin Coras6c36f532017-11-03 18:32:34 -070022#include <vnet/session/session_table.h>
Florin Corasc9940fc2019-02-05 20:55:11 -080023#include <vnet/session/session.h>
Dave Barach68b0fb02017-02-28 15:15:56 -050024
25#include <vnet/vnet_msg_enum.h>
Dave Barach68b0fb02017-02-28 15:15:56 -050026
27#define vl_typedefs /* define message structures */
28#include <vnet/vnet_all_api_h.h>
29#undef vl_typedefs
30
31#define vl_endianfun /* define message structures */
32#include <vnet/vnet_all_api_h.h>
33#undef vl_endianfun
34
35/* instantiate all the print functions we know about */
36#define vl_print(handle, ...) vlib_cli_output (handle, __VA_ARGS__)
37#define vl_printfun
38#include <vnet/vnet_all_api_h.h>
39#undef vl_printfun
40
41#include <vlibapi/api_helper_macros.h>
42
43#define foreach_session_api_msg \
44_(MAP_ANOTHER_SEGMENT_REPLY, map_another_segment_reply) \
Florin Coras6cf30ad2017-04-04 23:08:23 -070045_(APPLICATION_ATTACH, application_attach) \
46_(APPLICATION_DETACH, application_detach) \
Dave Barach68b0fb02017-02-28 15:15:56 -050047_(BIND_URI, bind_uri) \
48_(UNBIND_URI, unbind_uri) \
49_(CONNECT_URI, connect_uri) \
50_(DISCONNECT_SESSION, disconnect_session) \
51_(DISCONNECT_SESSION_REPLY, disconnect_session_reply) \
Florin Corascea194d2017-10-02 00:18:51 -070052_(BIND_SOCK, bind_sock) \
Dave Barach68b0fb02017-02-28 15:15:56 -050053_(UNBIND_SOCK, unbind_sock) \
54_(CONNECT_SOCK, connect_sock) \
Florin Corase04c2992017-03-01 08:17:34 -080055_(SESSION_ENABLE_DISABLE, session_enable_disable) \
Florin Corascea194d2017-10-02 00:18:51 -070056_(APP_NAMESPACE_ADD_DEL, app_namespace_add_del) \
Florin Coras1c710452017-10-17 00:03:13 -070057_(SESSION_RULE_ADD_DEL, session_rule_add_del) \
Florin Coras6c36f532017-11-03 18:32:34 -070058_(SESSION_RULES_DUMP, session_rules_dump) \
Florin Coras371ca502018-02-21 12:07:41 -080059_(APPLICATION_TLS_CERT_ADD, application_tls_cert_add) \
60_(APPLICATION_TLS_KEY_ADD, application_tls_key_add) \
Florin Coras15531972018-08-12 23:50:53 -070061_(APP_WORKER_ADD_DEL, app_worker_add_del) \
Florin Corase04c2992017-03-01 08:17:34 -080062
Dave Barach68b0fb02017-02-28 15:15:56 -050063static int
Florin Coras99368312018-08-02 10:45:44 -070064session_send_fds (vl_api_registration_t * reg, int fds[], int n_fds)
Florin Corasb384b542018-01-15 01:08:33 -080065{
66 clib_error_t *error;
67 if (vl_api_registration_file_index (reg) == VL_API_INVALID_FI)
68 {
69 clib_warning ("can't send memfd fd");
70 return -1;
71 }
Florin Coras99368312018-08-02 10:45:44 -070072 error = vl_api_send_fd_msg (reg, fds, n_fds);
Florin Corasb384b542018-01-15 01:08:33 -080073 if (error)
74 {
75 clib_error_report (error);
76 return -1;
77 }
78 return 0;
79}
80
81static int
Florin Corasfa76a762018-11-29 12:40:10 -080082send_add_segment_callback (u32 api_client_index, u64 segment_handle)
Dave Barach68b0fb02017-02-28 15:15:56 -050083{
Florin Coras99368312018-08-02 10:45:44 -070084 int fds[SESSION_N_FD_TYPE], n_fds = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -050085 vl_api_map_another_segment_t *mp;
Florin Corasfa76a762018-11-29 12:40:10 -080086 svm_fifo_segment_private_t *fs;
Florin Corasb384b542018-01-15 01:08:33 -080087 vl_api_registration_t *reg;
Florin Corasfa76a762018-11-29 12:40:10 -080088 ssvm_private_t *sp;
Florin Coras99368312018-08-02 10:45:44 -070089 u8 fd_flags = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -050090
Florin Corasb384b542018-01-15 01:08:33 -080091 reg = vl_mem_api_client_index_to_registration (api_client_index);
92 if (!reg)
93 {
Florin Corasfa76a762018-11-29 12:40:10 -080094 clib_warning ("no api registration for client: %u", api_client_index);
Florin Corasb384b542018-01-15 01:08:33 -080095 return -1;
96 }
Dave Barach68b0fb02017-02-28 15:15:56 -050097
Florin Corasfa76a762018-11-29 12:40:10 -080098 fs = segment_manager_get_segment_w_handle (segment_handle);
99 sp = &fs->ssvm;
Florin Coras99368312018-08-02 10:45:44 -0700100 if (ssvm_type (sp) == SSVM_SEGMENT_MEMFD)
Florin Corasb384b542018-01-15 01:08:33 -0800101 {
Florin Coras99368312018-08-02 10:45:44 -0700102 if (vl_api_registration_file_index (reg) == VL_API_INVALID_FI)
103 {
104 clib_warning ("can't send memfd fd");
105 return -1;
106 }
107
108 fd_flags |= SESSION_FD_F_MEMFD_SEGMENT;
109 fds[n_fds] = sp->fd;
110 n_fds += 1;
Florin Corasb384b542018-01-15 01:08:33 -0800111 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500112
Florin Coras99368312018-08-02 10:45:44 -0700113 mp = vl_mem_api_alloc_as_if_client_w_reg (reg, sizeof (*mp));
Dave Barachb7b92992018-10-17 10:38:51 -0400114 clib_memset (mp, 0, sizeof (*mp));
Dave Barach68b0fb02017-02-28 15:15:56 -0500115 mp->_vl_msg_id = clib_host_to_net_u16 (VL_API_MAP_ANOTHER_SEGMENT);
Florin Corasb384b542018-01-15 01:08:33 -0800116 mp->segment_size = sp->ssvm_size;
Florin Coras99368312018-08-02 10:45:44 -0700117 mp->fd_flags = fd_flags;
Florin Corasfa76a762018-11-29 12:40:10 -0800118 mp->segment_handle = clib_host_to_net_u64 (segment_handle);
Florin Corasb384b542018-01-15 01:08:33 -0800119 strncpy ((char *) mp->segment_name, (char *) sp->name,
Dave Barach68b0fb02017-02-28 15:15:56 -0500120 sizeof (mp->segment_name) - 1);
121
Florin Corasb384b542018-01-15 01:08:33 -0800122 vl_msg_api_send_shmem (reg->vl_input_queue, (u8 *) & mp);
123
Florin Coras99368312018-08-02 10:45:44 -0700124 if (n_fds)
125 return session_send_fds (reg, fds, n_fds);
Dave Barach68b0fb02017-02-28 15:15:56 -0500126
127 return 0;
128}
129
130static int
Florin Corasfa76a762018-11-29 12:40:10 -0800131send_del_segment_callback (u32 api_client_index, u64 segment_handle)
Florin Corasf8f516a2018-02-08 15:10:09 -0800132{
133 vl_api_unmap_segment_t *mp;
134 vl_api_registration_t *reg;
135
136 reg = vl_mem_api_client_index_to_registration (api_client_index);
137 if (!reg)
138 {
139 clib_warning ("no registration: %u", api_client_index);
140 return -1;
141 }
142
Florin Coras99368312018-08-02 10:45:44 -0700143 mp = vl_mem_api_alloc_as_if_client_w_reg (reg, sizeof (*mp));
Dave Barachb7b92992018-10-17 10:38:51 -0400144 clib_memset (mp, 0, sizeof (*mp));
Florin Corasf8f516a2018-02-08 15:10:09 -0800145 mp->_vl_msg_id = clib_host_to_net_u16 (VL_API_UNMAP_SEGMENT);
Florin Corasfa76a762018-11-29 12:40:10 -0800146 mp->segment_handle = clib_host_to_net_u64 (segment_handle);
Florin Corasf8f516a2018-02-08 15:10:09 -0800147 vl_msg_api_send_shmem (reg->vl_input_queue, (u8 *) & mp);
148
Florin Coras99368312018-08-02 10:45:44 -0700149 return 0;
150}
151
152static int
Florin Coras83ea6692018-10-12 16:55:14 -0700153mq_try_lock_and_alloc_msg (svm_msg_q_t * app_mq, svm_msg_q_msg_t * msg)
154{
155 int rv;
156 u8 try = 0;
157 while (try < 100)
158 {
159 rv = svm_msg_q_lock_and_alloc_msg_w_ring (app_mq,
160 SESSION_MQ_CTRL_EVT_RING,
161 SVM_Q_NOWAIT, msg);
162 if (!rv)
163 return 0;
164 try++;
Florin Corase2ea1932018-12-17 23:08:14 -0800165 usleep (1);
Florin Coras83ea6692018-10-12 16:55:14 -0700166 }
Florin Corasdc2e2512018-12-03 17:47:26 -0800167 clib_warning ("failed to alloc msg");
Florin Coras83ea6692018-10-12 16:55:14 -0700168 return -1;
169}
170
171static int
Florin Coras288eaab2019-02-03 15:26:14 -0800172mq_send_session_accepted_cb (session_t * s)
Florin Coras52207f12018-07-12 14:48:06 -0700173{
Florin Coras15531972018-08-12 23:50:53 -0700174 app_worker_t *app_wrk = app_worker_get (s->app_wrk_index);
Florin Coras52207f12018-07-12 14:48:06 -0700175 svm_msg_q_msg_t _msg, *msg = &_msg;
176 svm_msg_q_t *vpp_queue, *app_mq;
Florin Coras52207f12018-07-12 14:48:06 -0700177 transport_connection_t *tc;
Florin Coras288eaab2019-02-03 15:26:14 -0800178 session_t *listener;
Florin Coras52207f12018-07-12 14:48:06 -0700179 session_accepted_msg_t *mp;
180 session_event_t *evt;
Florin Coras15531972018-08-12 23:50:53 -0700181 application_t *app;
Florin Corasc9940fc2019-02-05 20:55:11 -0800182 app_listener_t *al;
Florin Coras52207f12018-07-12 14:48:06 -0700183
Florin Coras15531972018-08-12 23:50:53 -0700184 app = application_get (app_wrk->app_index);
185 app_mq = app_wrk->event_queue;
Florin Coras83ea6692018-10-12 16:55:14 -0700186 if (mq_try_lock_and_alloc_msg (app_mq, msg))
187 return -1;
Florin Coras52207f12018-07-12 14:48:06 -0700188
189 evt = svm_msg_q_msg_data (app_mq, msg);
Dave Barachb7b92992018-10-17 10:38:51 -0400190 clib_memset (evt, 0, sizeof (*evt));
Florin Coras52207f12018-07-12 14:48:06 -0700191 evt->event_type = SESSION_CTRL_EVT_ACCEPTED;
192 mp = (session_accepted_msg_t *) evt->data;
Florin Coras87c65702019-01-26 14:33:26 -0800193 clib_memset (mp, 0, sizeof (*mp));
Florin Corasab2f6db2018-08-31 14:31:41 -0700194 mp->context = app->app_index;
Florin Coras288eaab2019-02-03 15:26:14 -0800195 mp->server_rx_fifo = pointer_to_uword (s->rx_fifo);
196 mp->server_tx_fifo = pointer_to_uword (s->tx_fifo);
Florin Corasfa76a762018-11-29 12:40:10 -0800197 mp->segment_handle = session_segment_handle (s);
Florin Coras52207f12018-07-12 14:48:06 -0700198
199 if (session_has_transport (s))
200 {
201 listener = listen_session_get (s->listener_index);
Florin Corasc9940fc2019-02-05 20:55:11 -0800202 al = app_listener_get (app, listener->al_index);
203 mp->listener_handle = app_listener_handle (al);
Florin Coras52207f12018-07-12 14:48:06 -0700204 if (application_is_proxy (app))
205 {
206 listener =
Florin Coras15531972018-08-12 23:50:53 -0700207 app_worker_first_listener (app_wrk, session_get_fib_proto (s),
208 session_get_transport_proto (s));
Florin Coras52207f12018-07-12 14:48:06 -0700209 if (listener)
210 mp->listener_handle = listen_session_get_handle (listener);
211 }
Florin Coras31c99552019-03-01 13:00:58 -0800212 vpp_queue = session_main_get_vpp_event_queue (s->thread_index);
Florin Coras52207f12018-07-12 14:48:06 -0700213 mp->vpp_event_queue_address = pointer_to_uword (vpp_queue);
214 mp->handle = session_handle (s);
Florin Coras1ee78302019-02-05 15:51:15 -0800215 tc = transport_get_connection (session_get_transport_proto (s),
216 s->connection_index, s->thread_index);
Florin Coras52207f12018-07-12 14:48:06 -0700217 mp->port = tc->rmt_port;
218 mp->is_ip4 = tc->is_ip4;
Dave Barach178cf492018-11-13 16:34:13 -0500219 clib_memcpy_fast (&mp->ip, &tc->rmt_ip, sizeof (tc->rmt_ip));
Florin Coras52207f12018-07-12 14:48:06 -0700220 }
221 else
222 {
Florin Coras2b81e3c2019-02-27 07:55:46 -0800223 ct_connection_t *ct;
Florin Coras99368312018-08-02 10:45:44 -0700224
Florin Coras2b81e3c2019-02-27 07:55:46 -0800225 ct = (ct_connection_t *) session_get_transport (s);
Florin Coras2b81e3c2019-02-27 07:55:46 -0800226 listener = listen_session_get (s->listener_index);
Florin Corasd4295e62019-02-22 13:11:38 -0800227 al = app_listener_get (app, listener->al_index);
228 mp->listener_handle = app_listener_handle (al);
229 mp->is_ip4 = session_type_is_ip4 (listener->session_type);
Florin Coras2b81e3c2019-02-27 07:55:46 -0800230 mp->handle = session_handle (s);
231 mp->port = ct->c_rmt_port;
Florin Coras653e43f2019-03-04 10:56:23 -0800232 vpp_queue = session_main_get_vpp_event_queue (0);
Florin Coras54693d22018-07-17 10:46:29 -0700233 mp->vpp_event_queue_address = pointer_to_uword (vpp_queue);
Florin Coras52207f12018-07-12 14:48:06 -0700234 }
Florin Coras537b17e2018-09-28 10:35:45 -0700235 svm_msg_q_add_and_unlock (app_mq, msg);
Florin Coras52207f12018-07-12 14:48:06 -0700236
237 return 0;
238}
239
Florin Coras72b04282019-01-14 17:23:11 -0800240static inline void
241mq_send_session_close_evt (app_worker_t * app_wrk, session_handle_t sh,
242 session_evt_type_t evt_type)
Florin Coras52207f12018-07-12 14:48:06 -0700243{
Florin Coras52207f12018-07-12 14:48:06 -0700244 svm_msg_q_msg_t _msg, *msg = &_msg;
245 session_disconnected_msg_t *mp;
246 svm_msg_q_t *app_mq;
247 session_event_t *evt;
248
Florin Coras15531972018-08-12 23:50:53 -0700249 app_mq = app_wrk->event_queue;
Florin Coras83ea6692018-10-12 16:55:14 -0700250 if (mq_try_lock_and_alloc_msg (app_mq, msg))
251 return;
Florin Coras52207f12018-07-12 14:48:06 -0700252 evt = svm_msg_q_msg_data (app_mq, msg);
Dave Barachb7b92992018-10-17 10:38:51 -0400253 clib_memset (evt, 0, sizeof (*evt));
Florin Coras72b04282019-01-14 17:23:11 -0800254 evt->event_type = evt_type;
Florin Coras52207f12018-07-12 14:48:06 -0700255 mp = (session_disconnected_msg_t *) evt->data;
Florin Coras72b04282019-01-14 17:23:11 -0800256 mp->handle = sh;
Florin Corasc1f5a432018-11-20 11:31:26 -0800257 mp->context = app_wrk->api_client_index;
Florin Coras537b17e2018-09-28 10:35:45 -0700258 svm_msg_q_add_and_unlock (app_mq, msg);
Florin Coras52207f12018-07-12 14:48:06 -0700259}
260
Florin Coras72b04282019-01-14 17:23:11 -0800261static inline void
262mq_notify_close_subscribers (u32 app_index, session_handle_t sh,
263 svm_fifo_t * f, session_evt_type_t evt_type)
264{
265 app_worker_t *app_wrk;
266 application_t *app;
267 int i;
268
269 app = application_get (app_index);
270 if (!app)
271 return;
272
273 for (i = 0; i < f->n_subscribers; i++)
274 {
275 if (!(app_wrk = application_get_worker (app, f->subscribers[i])))
276 continue;
277 mq_send_session_close_evt (app_wrk, sh, SESSION_CTRL_EVT_DISCONNECTED);
278 }
279}
280
281static void
Florin Coras288eaab2019-02-03 15:26:14 -0800282mq_send_session_disconnected_cb (session_t * s)
Florin Coras72b04282019-01-14 17:23:11 -0800283{
284 app_worker_t *app_wrk = app_worker_get (s->app_wrk_index);
285 session_handle_t sh = session_handle (s);
286
287 mq_send_session_close_evt (app_wrk, session_handle (s),
288 SESSION_CTRL_EVT_DISCONNECTED);
289
Florin Coras288eaab2019-02-03 15:26:14 -0800290 if (svm_fifo_n_subscribers (s->rx_fifo))
291 mq_notify_close_subscribers (app_wrk->app_index, sh, s->rx_fifo,
Florin Coras72b04282019-01-14 17:23:11 -0800292 SESSION_CTRL_EVT_DISCONNECTED);
293}
294
Florin Coras52207f12018-07-12 14:48:06 -0700295static void
Florin Coras288eaab2019-02-03 15:26:14 -0800296mq_send_session_reset_cb (session_t * s)
Florin Coras52207f12018-07-12 14:48:06 -0700297{
Florin Coras72b04282019-01-14 17:23:11 -0800298 app_worker_t *app_wrk = app_worker_get (s->app_wrk_index);
299 session_handle_t sh = session_handle (s);
Florin Coras52207f12018-07-12 14:48:06 -0700300
Florin Coras72b04282019-01-14 17:23:11 -0800301 mq_send_session_close_evt (app_wrk, sh, SESSION_CTRL_EVT_RESET);
302
Florin Coras288eaab2019-02-03 15:26:14 -0800303 if (svm_fifo_n_subscribers (s->rx_fifo))
304 mq_notify_close_subscribers (app_wrk->app_index, sh, s->rx_fifo,
Florin Coras72b04282019-01-14 17:23:11 -0800305 SESSION_CTRL_EVT_RESET);
Florin Coras52207f12018-07-12 14:48:06 -0700306}
307
308static int
Florin Coras15531972018-08-12 23:50:53 -0700309mq_send_session_connected_cb (u32 app_wrk_index, u32 api_context,
Florin Coras288eaab2019-02-03 15:26:14 -0800310 session_t * s, u8 is_fail)
Florin Coras52207f12018-07-12 14:48:06 -0700311{
312 svm_msg_q_msg_t _msg, *msg = &_msg;
313 session_connected_msg_t *mp;
314 svm_msg_q_t *vpp_mq, *app_mq;
315 transport_connection_t *tc;
Florin Coras15531972018-08-12 23:50:53 -0700316 app_worker_t *app_wrk;
Florin Coras52207f12018-07-12 14:48:06 -0700317 session_event_t *evt;
Florin Coras52207f12018-07-12 14:48:06 -0700318
Florin Coras15531972018-08-12 23:50:53 -0700319 app_wrk = app_worker_get (app_wrk_index);
Florin Coras15531972018-08-12 23:50:53 -0700320 app_mq = app_wrk->event_queue;
Florin Coras52207f12018-07-12 14:48:06 -0700321 if (!app_mq)
322 {
Florin Corasc1f5a432018-11-20 11:31:26 -0800323 clib_warning ("app %u with api index: %u not attached",
324 app_wrk->app_index, app_wrk->api_client_index);
Florin Coras52207f12018-07-12 14:48:06 -0700325 return -1;
326 }
327
Florin Coras83ea6692018-10-12 16:55:14 -0700328 if (mq_try_lock_and_alloc_msg (app_mq, msg))
329 return -1;
Florin Corasdc2e2512018-12-03 17:47:26 -0800330
Florin Coras52207f12018-07-12 14:48:06 -0700331 evt = svm_msg_q_msg_data (app_mq, msg);
Dave Barachb7b92992018-10-17 10:38:51 -0400332 clib_memset (evt, 0, sizeof (*evt));
Florin Coras52207f12018-07-12 14:48:06 -0700333 evt->event_type = SESSION_CTRL_EVT_CONNECTED;
334 mp = (session_connected_msg_t *) evt->data;
Florin Coras87c65702019-01-26 14:33:26 -0800335 clib_memset (mp, 0, sizeof (*mp));
Florin Coras52207f12018-07-12 14:48:06 -0700336 mp->context = api_context;
337
338 if (is_fail)
339 goto done;
340
341 if (session_has_transport (s))
342 {
343 tc = session_get_transport (s);
344 if (!tc)
345 {
346 is_fail = 1;
347 goto done;
348 }
349
Florin Coras31c99552019-03-01 13:00:58 -0800350 vpp_mq = session_main_get_vpp_event_queue (s->thread_index);
Florin Coras52207f12018-07-12 14:48:06 -0700351 mp->handle = session_handle (s);
352 mp->vpp_event_queue_address = pointer_to_uword (vpp_mq);
Dave Barach178cf492018-11-13 16:34:13 -0500353 clib_memcpy_fast (mp->lcl_ip, &tc->lcl_ip, sizeof (tc->lcl_ip));
Florin Coras52207f12018-07-12 14:48:06 -0700354 mp->is_ip4 = tc->is_ip4;
355 mp->lcl_port = tc->lcl_port;
Florin Coras288eaab2019-02-03 15:26:14 -0800356 mp->server_rx_fifo = pointer_to_uword (s->rx_fifo);
357 mp->server_tx_fifo = pointer_to_uword (s->tx_fifo);
Florin Coras2b81e3c2019-02-27 07:55:46 -0800358 mp->segment_handle = session_segment_handle (s);
Florin Coras52207f12018-07-12 14:48:06 -0700359 }
360 else
361 {
Florin Coras2b81e3c2019-02-27 07:55:46 -0800362 ct_connection_t *cct;
363 session_t *ss;
Florin Coras99368312018-08-02 10:45:44 -0700364
Florin Coras2b81e3c2019-02-27 07:55:46 -0800365 cct = (ct_connection_t *) session_get_transport (s);
Florin Coras2b81e3c2019-02-27 07:55:46 -0800366 mp->handle = session_handle (s);
367 mp->lcl_port = cct->c_lcl_port;
Florin Coras653e43f2019-03-04 10:56:23 -0800368 mp->is_ip4 = cct->c_is_ip4;
369 vpp_mq = session_main_get_vpp_event_queue (0);
Florin Coras54693d22018-07-17 10:46:29 -0700370 mp->vpp_event_queue_address = pointer_to_uword (vpp_mq);
Florin Coras653e43f2019-03-04 10:56:23 -0800371 mp->server_rx_fifo = pointer_to_uword (s->rx_fifo);
372 mp->server_tx_fifo = pointer_to_uword (s->tx_fifo);
373 mp->segment_handle = session_segment_handle (s);
Florin Coras2b81e3c2019-02-27 07:55:46 -0800374 ss = ct_session_get_peer (s);
Florin Coras653e43f2019-03-04 10:56:23 -0800375 mp->ct_rx_fifo = pointer_to_uword (ss->tx_fifo);
376 mp->ct_tx_fifo = pointer_to_uword (ss->rx_fifo);
377 mp->ct_segment_handle = session_segment_handle (ss);
Florin Coras52207f12018-07-12 14:48:06 -0700378 }
379
380done:
381 mp->retval = is_fail ?
382 clib_host_to_net_u32 (VNET_API_ERROR_SESSION_CONNECT) : 0;
383
Florin Coras537b17e2018-09-28 10:35:45 -0700384 svm_msg_q_add_and_unlock (app_mq, msg);
Florin Coras52207f12018-07-12 14:48:06 -0700385 return 0;
386}
387
Florin Coras60116992018-08-27 09:52:18 -0700388static int
389mq_send_session_bound_cb (u32 app_wrk_index, u32 api_context,
390 session_handle_t handle, int rv)
391{
392 svm_msg_q_msg_t _msg, *msg = &_msg;
393 svm_msg_q_t *app_mq, *vpp_evt_q;
394 transport_connection_t *tc;
Florin Coras60116992018-08-27 09:52:18 -0700395 session_bound_msg_t *mp;
396 app_worker_t *app_wrk;
397 session_event_t *evt;
Florin Corasc9940fc2019-02-05 20:55:11 -0800398 app_listener_t *al;
399 session_t *ls = 0;
Florin Coras60116992018-08-27 09:52:18 -0700400
401 app_wrk = app_worker_get (app_wrk_index);
Florin Coras60116992018-08-27 09:52:18 -0700402 app_mq = app_wrk->event_queue;
403 if (!app_mq)
404 {
Florin Corasc1f5a432018-11-20 11:31:26 -0800405 clib_warning ("app %u with api index: %u not attached",
406 app_wrk->app_index, app_wrk->api_client_index);
Florin Coras60116992018-08-27 09:52:18 -0700407 return -1;
408 }
409
Florin Coras83ea6692018-10-12 16:55:14 -0700410 if (mq_try_lock_and_alloc_msg (app_mq, msg))
411 return -1;
412
Florin Coras60116992018-08-27 09:52:18 -0700413 evt = svm_msg_q_msg_data (app_mq, msg);
Dave Barachb7b92992018-10-17 10:38:51 -0400414 clib_memset (evt, 0, sizeof (*evt));
Florin Coras60116992018-08-27 09:52:18 -0700415 evt->event_type = SESSION_CTRL_EVT_BOUND;
416 mp = (session_bound_msg_t *) evt->data;
417 mp->context = api_context;
418
419 if (rv)
420 goto done;
421
422 mp->handle = handle;
Florin Corasd4295e62019-02-22 13:11:38 -0800423 al = app_listener_get_w_handle (handle);
424 if (al->session_index != SESSION_INVALID_INDEX)
425 ls = app_listener_get_session (al);
Florin Coras60116992018-08-27 09:52:18 -0700426 else
Florin Corasd4295e62019-02-22 13:11:38 -0800427 ls = app_listener_get_local_session (al);
428 tc = listen_session_get_transport (ls);
429 mp->lcl_port = tc->lcl_port;
430 mp->lcl_is_ip4 = tc->is_ip4;
431 clib_memcpy_fast (mp->lcl_ip, &tc->lcl_ip, sizeof (tc->lcl_ip));
Florin Coras60116992018-08-27 09:52:18 -0700432
Florin Coras31c99552019-03-01 13:00:58 -0800433 vpp_evt_q = session_main_get_vpp_event_queue (0);
Florin Coras5f45e012019-01-23 09:21:30 -0800434 mp->vpp_evt_q = pointer_to_uword (vpp_evt_q);
435
Florin Coras2b81e3c2019-02-27 07:55:46 -0800436 if (session_transport_service_type (ls) == TRANSPORT_SERVICE_CL)
Florin Coras60116992018-08-27 09:52:18 -0700437 {
Florin Coras288eaab2019-02-03 15:26:14 -0800438 mp->rx_fifo = pointer_to_uword (ls->rx_fifo);
439 mp->tx_fifo = pointer_to_uword (ls->tx_fifo);
Florin Coras60116992018-08-27 09:52:18 -0700440 }
441
442done:
443 mp->retval = rv;
Florin Coras537b17e2018-09-28 10:35:45 -0700444 svm_msg_q_add_and_unlock (app_mq, msg);
Florin Coras60116992018-08-27 09:52:18 -0700445 return 0;
446}
447
Florin Coras52207f12018-07-12 14:48:06 -0700448static session_cb_vft_t session_mq_cb_vft = {
449 .session_accept_callback = mq_send_session_accepted_cb,
450 .session_disconnect_callback = mq_send_session_disconnected_cb,
451 .session_connected_callback = mq_send_session_connected_cb,
452 .session_reset_callback = mq_send_session_reset_cb,
453 .add_segment_callback = send_add_segment_callback,
454 .del_segment_callback = send_del_segment_callback,
455};
456
Dave Barach68b0fb02017-02-28 15:15:56 -0500457static void
Florin Corase04c2992017-03-01 08:17:34 -0800458vl_api_session_enable_disable_t_handler (vl_api_session_enable_disable_t * mp)
459{
460 vl_api_session_enable_disable_reply_t *rmp;
461 vlib_main_t *vm = vlib_get_main ();
462 int rv = 0;
463
464 vnet_session_enable_disable (vm, mp->is_enable);
465 REPLY_MACRO (VL_API_SESSION_ENABLE_DISABLE_REPLY);
466}
467
468static void
Florin Coras6cf30ad2017-04-04 23:08:23 -0700469vl_api_application_attach_t_handler (vl_api_application_attach_t * mp)
Dave Barach68b0fb02017-02-28 15:15:56 -0500470{
Florin Coras99368312018-08-02 10:45:44 -0700471 int rv = 0, fds[SESSION_N_FD_TYPE], n_fds = 0;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700472 vl_api_application_attach_reply_t *rmp;
Florin Corasb384b542018-01-15 01:08:33 -0800473 ssvm_private_t *segp, *evt_q_segment;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700474 vnet_app_attach_args_t _a, *a = &_a;
Florin Corasb384b542018-01-15 01:08:33 -0800475 vl_api_registration_t *reg;
Florin Coras99368312018-08-02 10:45:44 -0700476 u8 fd_flags = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500477
Florin Corasfc804d92018-01-26 01:27:01 -0800478 reg = vl_api_client_index_to_registration (mp->client_index);
479 if (!reg)
480 return;
481
Florin Coras31c99552019-03-01 13:00:58 -0800482 if (session_main_is_enabled () == 0)
Florin Coras6cf30ad2017-04-04 23:08:23 -0700483 {
484 rv = VNET_API_ERROR_FEATURE_DISABLED;
485 goto done;
486 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500487
Florin Corasff6e7692017-12-11 04:59:01 -0800488 STATIC_ASSERT (sizeof (u64) * APP_OPTIONS_N_OPTIONS <=
Florin Coras6cf30ad2017-04-04 23:08:23 -0700489 sizeof (mp->options),
490 "Out of options, fix api message definition");
Dave Barach68b0fb02017-02-28 15:15:56 -0500491
Dave Barachb7b92992018-10-17 10:38:51 -0400492 clib_memset (a, 0, sizeof (*a));
Dave Barach68b0fb02017-02-28 15:15:56 -0500493 a->api_client_index = mp->client_index;
494 a->options = mp->options;
Florin Coras64424012019-03-02 10:47:47 -0800495 a->session_cb_vft = &session_mq_cb_vft;
Florin Corascea194d2017-10-02 00:18:51 -0700496 if (mp->namespace_id_len > 64)
497 {
498 rv = VNET_API_ERROR_INVALID_VALUE;
499 goto done;
500 }
501
502 if (mp->namespace_id_len)
503 {
Dave Wallace8af20542017-10-26 03:29:30 -0400504 vec_validate (a->namespace_id, mp->namespace_id_len - 1);
Dave Barach178cf492018-11-13 16:34:13 -0500505 clib_memcpy_fast (a->namespace_id, mp->namespace_id,
506 mp->namespace_id_len);
Florin Corascea194d2017-10-02 00:18:51 -0700507 }
508
Florin Corasc1a42652019-02-08 18:27:29 -0800509 if ((rv = vnet_application_attach (a)))
Florin Corascea194d2017-10-02 00:18:51 -0700510 {
Florin Corasc1a42652019-02-08 18:27:29 -0800511 clib_warning ("attach returned: %d", rv);
Florin Coras99368312018-08-02 10:45:44 -0700512 vec_free (a->namespace_id);
513 goto done;
Florin Corascea194d2017-10-02 00:18:51 -0700514 }
515 vec_free (a->namespace_id);
Dave Barach68b0fb02017-02-28 15:15:56 -0500516
Florin Coras99368312018-08-02 10:45:44 -0700517 /* Send event queues segment */
Florin Coras31c99552019-03-01 13:00:58 -0800518 if ((evt_q_segment = session_main_get_evt_q_segment ()))
Florin Coras99368312018-08-02 10:45:44 -0700519 {
520 fd_flags |= SESSION_FD_F_VPP_MQ_SEGMENT;
521 fds[n_fds] = evt_q_segment->fd;
522 n_fds += 1;
523 }
524 /* Send fifo segment fd if needed */
525 if (ssvm_type (a->segment) == SSVM_SEGMENT_MEMFD)
526 {
527 fd_flags |= SESSION_FD_F_MEMFD_SEGMENT;
528 fds[n_fds] = a->segment->fd;
529 n_fds += 1;
530 }
531 if (a->options[APP_OPTIONS_FLAGS] & APP_OPTIONS_FLAGS_EVT_MQ_USE_EVENTFD)
532 {
533 fd_flags |= SESSION_FD_F_MQ_EVENTFD;
534 fds[n_fds] = svm_msg_q_get_producer_eventfd (a->app_evt_q);
535 n_fds += 1;
536 }
537
Florin Coras6cf30ad2017-04-04 23:08:23 -0700538done:
Florin Corasa5464812017-04-19 13:00:05 -0700539
Dave Barach68b0fb02017-02-28 15:15:56 -0500540 /* *INDENT-OFF* */
Florin Coras6cf30ad2017-04-04 23:08:23 -0700541 REPLY_MACRO2 (VL_API_APPLICATION_ATTACH_REPLY, ({
Dave Barach68b0fb02017-02-28 15:15:56 -0500542 if (!rv)
543 {
Florin Corasb384b542018-01-15 01:08:33 -0800544 segp = a->segment;
Florin Corasc1f5a432018-11-20 11:31:26 -0800545 rmp->app_index = clib_host_to_net_u32 (a->app_index);
Dave Barach68b0fb02017-02-28 15:15:56 -0500546 rmp->segment_name_length = 0;
Florin Corasb384b542018-01-15 01:08:33 -0800547 rmp->segment_size = segp->ssvm_size;
548 if (vec_len (segp->name))
Dave Barach68b0fb02017-02-28 15:15:56 -0500549 {
Florin Corasb384b542018-01-15 01:08:33 -0800550 memcpy (rmp->segment_name, segp->name, vec_len (segp->name));
551 rmp->segment_name_length = vec_len (segp->name);
Dave Barach68b0fb02017-02-28 15:15:56 -0500552 }
Florin Coras99368312018-08-02 10:45:44 -0700553 rmp->app_event_queue_address = pointer_to_uword (a->app_evt_q);
554 rmp->n_fds = n_fds;
555 rmp->fd_flags = fd_flags;
Florin Corasd85de682018-11-29 17:02:29 -0800556 rmp->segment_handle = clib_host_to_net_u64 (a->segment_handle);
Dave Barach68b0fb02017-02-28 15:15:56 -0500557 }
558 }));
559 /* *INDENT-ON* */
Florin Corasb384b542018-01-15 01:08:33 -0800560
Florin Coras99368312018-08-02 10:45:44 -0700561 if (n_fds)
562 session_send_fds (reg, fds, n_fds);
Dave Barach68b0fb02017-02-28 15:15:56 -0500563}
564
565static void
Florin Coras6cf30ad2017-04-04 23:08:23 -0700566vl_api_application_detach_t_handler (vl_api_application_detach_t * mp)
567{
568 vl_api_application_detach_reply_t *rmp;
569 int rv = VNET_API_ERROR_INVALID_VALUE_2;
570 vnet_app_detach_args_t _a, *a = &_a;
571 application_t *app;
572
Florin Coras31c99552019-03-01 13:00:58 -0800573 if (session_main_is_enabled () == 0)
Florin Coras6cf30ad2017-04-04 23:08:23 -0700574 {
575 rv = VNET_API_ERROR_FEATURE_DISABLED;
576 goto done;
577 }
578
579 app = application_lookup (mp->client_index);
580 if (app)
581 {
Florin Coras15531972018-08-12 23:50:53 -0700582 a->app_index = app->app_index;
Florin Coras053a0e42018-11-13 15:52:38 -0800583 a->api_client_index = mp->client_index;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700584 rv = vnet_application_detach (a);
585 }
586
587done:
588 REPLY_MACRO (VL_API_APPLICATION_DETACH_REPLY);
589}
590
591static void
592vl_api_bind_uri_t_handler (vl_api_bind_uri_t * mp)
593{
Florin Coras7fb0fe12018-04-09 09:24:52 -0700594 vl_api_bind_uri_reply_t *rmp;
Florin Coras64424012019-03-02 10:47:47 -0800595 vnet_listen_args_t _a, *a = &_a;
Florin Coras7fb0fe12018-04-09 09:24:52 -0700596 application_t *app = 0;
Florin Coras60116992018-08-27 09:52:18 -0700597 app_worker_t *app_wrk;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700598 int rv;
599
Florin Coras31c99552019-03-01 13:00:58 -0800600 if (session_main_is_enabled () == 0)
Florin Coras6cf30ad2017-04-04 23:08:23 -0700601 {
602 rv = VNET_API_ERROR_FEATURE_DISABLED;
603 goto done;
604 }
605
606 app = application_lookup (mp->client_index);
607 if (app)
608 {
Dave Barachb7b92992018-10-17 10:38:51 -0400609 clib_memset (a, 0, sizeof (*a));
Florin Coras6cf30ad2017-04-04 23:08:23 -0700610 a->uri = (char *) mp->uri;
Florin Coras15531972018-08-12 23:50:53 -0700611 a->app_index = app->app_index;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700612 rv = vnet_bind_uri (a);
613 }
614 else
615 {
616 rv = VNET_API_ERROR_APPLICATION_NOT_ATTACHED;
617 }
618
619done:
Florin Coras7fb0fe12018-04-09 09:24:52 -0700620
Florin Coras64424012019-03-02 10:47:47 -0800621 REPLY_MACRO (VL_API_BIND_URI_REPLY);
Florin Coras60116992018-08-27 09:52:18 -0700622
Florin Coras64424012019-03-02 10:47:47 -0800623 if (app)
Florin Coras60116992018-08-27 09:52:18 -0700624 {
625 app_wrk = application_get_worker (app, 0);
626 mq_send_session_bound_cb (app_wrk->wrk_index, mp->context, a->handle,
627 rv);
628 }
Florin Coras6cf30ad2017-04-04 23:08:23 -0700629}
630
631static void
Dave Barach68b0fb02017-02-28 15:15:56 -0500632vl_api_unbind_uri_t_handler (vl_api_unbind_uri_t * mp)
633{
634 vl_api_unbind_uri_reply_t *rmp;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700635 application_t *app;
Florin Corasc1a42652019-02-08 18:27:29 -0800636 vnet_unlisten_args_t _a, *a = &_a;
Dave Barach68b0fb02017-02-28 15:15:56 -0500637 int rv;
638
Florin Coras31c99552019-03-01 13:00:58 -0800639 if (session_main_is_enabled () == 0)
Florin Coras6cf30ad2017-04-04 23:08:23 -0700640 {
641 rv = VNET_API_ERROR_FEATURE_DISABLED;
642 goto done;
643 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500644
Florin Coras6cf30ad2017-04-04 23:08:23 -0700645 app = application_lookup (mp->client_index);
646 if (app)
647 {
648 a->uri = (char *) mp->uri;
Florin Coras15531972018-08-12 23:50:53 -0700649 a->app_index = app->app_index;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700650 rv = vnet_unbind_uri (a);
651 }
652 else
653 {
654 rv = VNET_API_ERROR_APPLICATION_NOT_ATTACHED;
655 }
656
657done:
Dave Barach68b0fb02017-02-28 15:15:56 -0500658 REPLY_MACRO (VL_API_UNBIND_URI_REPLY);
659}
660
Florin Corasf03a59a2017-06-09 21:07:32 -0700661static void
Dave Barach68b0fb02017-02-28 15:15:56 -0500662vl_api_connect_uri_t_handler (vl_api_connect_uri_t * mp)
663{
Florin Coras64424012019-03-02 10:47:47 -0800664 vl_api_connect_uri_reply_t *rmp;
Dave Barach68b0fb02017-02-28 15:15:56 -0500665 vnet_connect_args_t _a, *a = &_a;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700666 application_t *app;
Florin Corascea194d2017-10-02 00:18:51 -0700667 int rv = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500668
Florin Coras31c99552019-03-01 13:00:58 -0800669 if (session_main_is_enabled () == 0)
Florin Coras6cf30ad2017-04-04 23:08:23 -0700670 {
671 rv = VNET_API_ERROR_FEATURE_DISABLED;
672 goto done;
673 }
Florin Corase04c2992017-03-01 08:17:34 -0800674
Florin Coras6cf30ad2017-04-04 23:08:23 -0700675 app = application_lookup (mp->client_index);
676 if (app)
677 {
Dave Barachb7b92992018-10-17 10:38:51 -0400678 clib_memset (a, 0, sizeof (*a));
Florin Coras6cf30ad2017-04-04 23:08:23 -0700679 a->uri = (char *) mp->uri;
680 a->api_context = mp->context;
Florin Coras15531972018-08-12 23:50:53 -0700681 a->app_index = app->app_index;
Florin Corasc1a42652019-02-08 18:27:29 -0800682 if ((rv = vnet_connect_uri (a)))
683 clib_warning ("connect_uri returned: %d", rv);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700684 }
685 else
686 {
687 rv = VNET_API_ERROR_APPLICATION_NOT_ATTACHED;
688 }
Florin Corase04c2992017-03-01 08:17:34 -0800689
Florin Coras3cbc04b2017-10-02 00:18:51 -0700690 /*
691 * Don't reply to stream (tcp) connects. The reply will come once
692 * the connection is established. In case of the redirects, the reply
693 * will come from the server app.
694 */
Florin Coras8f89dd02018-03-05 16:53:07 -0800695 if (rv == 0)
Florin Corase04c2992017-03-01 08:17:34 -0800696 return;
697
Florin Coras6cf30ad2017-04-04 23:08:23 -0700698done:
Florin Coras64424012019-03-02 10:47:47 -0800699 REPLY_MACRO (VL_API_CONNECT_URI_REPLY);
Dave Barach68b0fb02017-02-28 15:15:56 -0500700}
701
702static void
703vl_api_disconnect_session_t_handler (vl_api_disconnect_session_t * mp)
704{
705 vl_api_disconnect_session_reply_t *rmp;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700706 vnet_disconnect_args_t _a, *a = &_a;
707 application_t *app;
708 int rv = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500709
Florin Coras31c99552019-03-01 13:00:58 -0800710 if (session_main_is_enabled () == 0)
Florin Coras6cf30ad2017-04-04 23:08:23 -0700711 {
712 rv = VNET_API_ERROR_FEATURE_DISABLED;
713 goto done;
714 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500715
Florin Coras6cf30ad2017-04-04 23:08:23 -0700716 app = application_lookup (mp->client_index);
717 if (app)
718 {
719 a->handle = mp->handle;
Florin Coras15531972018-08-12 23:50:53 -0700720 a->app_index = app->app_index;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700721 rv = vnet_disconnect_session (a);
722 }
723 else
724 {
725 rv = VNET_API_ERROR_APPLICATION_NOT_ATTACHED;
726 }
727
728done:
Dave Wallacede5fec92017-11-11 22:41:34 -0500729 REPLY_MACRO2 (VL_API_DISCONNECT_SESSION_REPLY, rmp->handle = mp->handle);
Dave Barach68b0fb02017-02-28 15:15:56 -0500730}
731
732static void
733vl_api_disconnect_session_reply_t_handler (vl_api_disconnect_session_reply_t *
734 mp)
735{
Florin Coras6cf30ad2017-04-04 23:08:23 -0700736 vnet_disconnect_args_t _a, *a = &_a;
737 application_t *app;
Dave Barach68b0fb02017-02-28 15:15:56 -0500738
739 /* Client objected to disconnecting the session, log and continue */
740 if (mp->retval)
741 {
742 clib_warning ("client retval %d", mp->retval);
743 return;
744 }
745
746 /* Disconnect has been confirmed. Confirm close to transport */
Florin Corasf8f516a2018-02-08 15:10:09 -0800747 app = application_lookup (mp->context);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700748 if (app)
749 {
750 a->handle = mp->handle;
Florin Coras15531972018-08-12 23:50:53 -0700751 a->app_index = app->app_index;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700752 vnet_disconnect_session (a);
753 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500754}
755
756static void
Dave Barach68b0fb02017-02-28 15:15:56 -0500757vl_api_map_another_segment_reply_t_handler (vl_api_map_another_segment_reply_t
758 * mp)
759{
760 clib_warning ("not implemented");
761}
762
763static void
764vl_api_bind_sock_t_handler (vl_api_bind_sock_t * mp)
765{
Florin Corasc9940fc2019-02-05 20:55:11 -0800766 vnet_listen_args_t _a, *a = &_a;
Dave Barach68b0fb02017-02-28 15:15:56 -0500767 vl_api_bind_sock_reply_t *rmp;
Florin Coraseb2945c2017-11-22 10:39:09 -0800768 application_t *app = 0;
Florin Coras60116992018-08-27 09:52:18 -0700769 app_worker_t *app_wrk;
Florin Corasdcf55ce2017-11-16 15:32:50 -0800770 ip46_address_t *ip46;
Florin Corasc9940fc2019-02-05 20:55:11 -0800771 int rv = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500772
Florin Coras31c99552019-03-01 13:00:58 -0800773 if (session_main_is_enabled () == 0)
Florin Coras6cf30ad2017-04-04 23:08:23 -0700774 {
775 rv = VNET_API_ERROR_FEATURE_DISABLED;
776 goto done;
777 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500778
Florin Coras6cf30ad2017-04-04 23:08:23 -0700779 app = application_lookup (mp->client_index);
Florin Corasdcf55ce2017-11-16 15:32:50 -0800780 if (!app)
Florin Coras6cf30ad2017-04-04 23:08:23 -0700781 {
Florin Corasdcf55ce2017-11-16 15:32:50 -0800782 rv = VNET_API_ERROR_APPLICATION_NOT_ATTACHED;
783 goto done;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700784 }
Florin Corasdcf55ce2017-11-16 15:32:50 -0800785
786 ip46 = (ip46_address_t *) mp->ip;
Dave Barachb7b92992018-10-17 10:38:51 -0400787 clib_memset (a, 0, sizeof (*a));
Florin Corasdcf55ce2017-11-16 15:32:50 -0800788 a->sep.is_ip4 = mp->is_ip4;
789 a->sep.ip = *ip46;
790 a->sep.port = mp->port;
791 a->sep.fib_index = mp->vrf;
792 a->sep.sw_if_index = ENDPOINT_INVALID_INDEX;
793 a->sep.transport_proto = mp->proto;
Florin Coras15531972018-08-12 23:50:53 -0700794 a->app_index = app->app_index;
795 a->wrk_map_index = mp->wrk_index;
Florin Corasdcf55ce2017-11-16 15:32:50 -0800796
Florin Corasc1a42652019-02-08 18:27:29 -0800797 if ((rv = vnet_listen (a)))
798 clib_warning ("listen returned: %d", rv);
Florin Corasdcf55ce2017-11-16 15:32:50 -0800799
Florin Coras6cf30ad2017-04-04 23:08:23 -0700800done:
Florin Coras64424012019-03-02 10:47:47 -0800801 /* Actual reply sent only over mq */
802 REPLY_MACRO (VL_API_BIND_SOCK_REPLY);
Florin Coras60116992018-08-27 09:52:18 -0700803
Florin Coras64424012019-03-02 10:47:47 -0800804 if (app)
Florin Coras60116992018-08-27 09:52:18 -0700805 {
806 app_wrk = application_get_worker (app, mp->wrk_index);
807 mq_send_session_bound_cb (app_wrk->wrk_index, mp->context, a->handle,
808 rv);
809 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500810}
811
812static void
813vl_api_unbind_sock_t_handler (vl_api_unbind_sock_t * mp)
814{
815 vl_api_unbind_sock_reply_t *rmp;
Florin Corasc1a42652019-02-08 18:27:29 -0800816 vnet_unlisten_args_t _a, *a = &_a;
Florin Corasdfae9f92019-02-20 19:48:31 -0800817 app_worker_t *app_wrk;
818 application_t *app = 0;
Florin Corascea194d2017-10-02 00:18:51 -0700819 int rv = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500820
Florin Coras31c99552019-03-01 13:00:58 -0800821 if (session_main_is_enabled () == 0)
Florin Coras6cf30ad2017-04-04 23:08:23 -0700822 {
823 rv = VNET_API_ERROR_FEATURE_DISABLED;
824 goto done;
825 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500826
Florin Coras6cf30ad2017-04-04 23:08:23 -0700827 app = application_lookup (mp->client_index);
828 if (app)
829 {
Florin Coras15531972018-08-12 23:50:53 -0700830 a->app_index = app->app_index;
Florin Coras6cf30ad2017-04-04 23:08:23 -0700831 a->handle = mp->handle;
Florin Corasab2f6db2018-08-31 14:31:41 -0700832 a->wrk_map_index = mp->wrk_index;
Florin Corasc1a42652019-02-08 18:27:29 -0800833 if ((rv = vnet_unlisten (a)))
834 clib_warning ("unlisten returned: %d", rv);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700835 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500836
Florin Coras6cf30ad2017-04-04 23:08:23 -0700837done:
Dave Barach68b0fb02017-02-28 15:15:56 -0500838 REPLY_MACRO (VL_API_UNBIND_SOCK_REPLY);
Florin Corasdfae9f92019-02-20 19:48:31 -0800839
840 /*
841 * Send reply over msg queue
842 */
843 svm_msg_q_msg_t _msg, *msg = &_msg;
844 session_unlisten_reply_msg_t *ump;
845 svm_msg_q_t *app_mq;
846 session_event_t *evt;
847
848 if (!app)
849 return;
850
851 app_wrk = application_get_worker (app, a->wrk_map_index);
852 if (!app_wrk)
853 return;
854
855 app_mq = app_wrk->event_queue;
856 if (mq_try_lock_and_alloc_msg (app_mq, msg))
857 return;
858
859 evt = svm_msg_q_msg_data (app_mq, msg);
860 clib_memset (evt, 0, sizeof (*evt));
861 evt->event_type = SESSION_CTRL_EVT_UNLISTEN_REPLY;
862 ump = (session_unlisten_reply_msg_t *) evt->data;
863 ump->context = mp->context;
864 ump->handle = mp->handle;
865 ump->retval = rv;
866 svm_msg_q_add_and_unlock (app_mq, msg);
Dave Barach68b0fb02017-02-28 15:15:56 -0500867}
868
869static void
870vl_api_connect_sock_t_handler (vl_api_connect_sock_t * mp)
871{
Florin Coras64424012019-03-02 10:47:47 -0800872 vl_api_connect_sock_reply_t *rmp;
Dave Barach68b0fb02017-02-28 15:15:56 -0500873 vnet_connect_args_t _a, *a = &_a;
Florin Corasab2f6db2018-08-31 14:31:41 -0700874 application_t *app = 0;
Florin Corascea194d2017-10-02 00:18:51 -0700875 int rv = 0;
Dave Barach68b0fb02017-02-28 15:15:56 -0500876
Florin Coras31c99552019-03-01 13:00:58 -0800877 if (session_main_is_enabled () == 0)
Florin Coras6cf30ad2017-04-04 23:08:23 -0700878 {
879 rv = VNET_API_ERROR_FEATURE_DISABLED;
880 goto done;
881 }
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 {
Florin Corase86a8ed2018-01-05 03:20:25 -0800886 svm_queue_t *client_q;
Dave Wallace33e002b2017-09-06 01:20:02 -0400887 ip46_address_t *ip46 = (ip46_address_t *) mp->ip;
Dave Wallaceb2d5ff32017-06-14 12:38:28 -0400888
Dave Barachb7b92992018-10-17 10:38:51 -0400889 clib_memset (a, 0, sizeof (*a));
Dave Wallaceb2d5ff32017-06-14 12:38:28 -0400890 client_q = vl_api_client_index_to_input_queue (mp->client_index);
891 mp->client_queue_address = pointer_to_uword (client_q);
Florin Corascea194d2017-10-02 00:18:51 -0700892 a->sep.is_ip4 = mp->is_ip4;
893 a->sep.ip = *ip46;
894 a->sep.port = mp->port;
895 a->sep.transport_proto = mp->proto;
Florin Coras5665ced2018-10-25 18:03:45 -0700896 a->sep.peer.fib_index = mp->vrf;
897 a->sep.peer.sw_if_index = ENDPOINT_INVALID_INDEX;
Florin Coras8f89dd02018-03-05 16:53:07 -0800898 if (mp->hostname_len)
899 {
Florin Coras15531972018-08-12 23:50:53 -0700900 vec_validate (a->sep_ext.hostname, mp->hostname_len - 1);
Dave Barach178cf492018-11-13 16:34:13 -0500901 clib_memcpy_fast (a->sep_ext.hostname, mp->hostname,
902 mp->hostname_len);
Florin Coras8f89dd02018-03-05 16:53:07 -0800903 }
Florin Coras6cf30ad2017-04-04 23:08:23 -0700904 a->api_context = mp->context;
Florin Coras15531972018-08-12 23:50:53 -0700905 a->app_index = app->app_index;
906 a->wrk_map_index = mp->wrk_index;
Florin Corasc1a42652019-02-08 18:27:29 -0800907 if ((rv = vnet_connect (a)))
908 clib_warning ("connect returned: %u", rv);
Florin Coras15531972018-08-12 23:50:53 -0700909 vec_free (a->sep_ext.hostname);
Florin Coras6cf30ad2017-04-04 23:08:23 -0700910 }
911 else
912 {
913 rv = VNET_API_ERROR_APPLICATION_NOT_ATTACHED;
914 }
Florin Corase04c2992017-03-01 08:17:34 -0800915
Florin Coras8f89dd02018-03-05 16:53:07 -0800916 if (rv == 0)
Florin Corase04c2992017-03-01 08:17:34 -0800917 return;
918
919 /* Got some error, relay it */
920
Florin Coras6cf30ad2017-04-04 23:08:23 -0700921done:
Florin Coras64424012019-03-02 10:47:47 -0800922 REPLY_MACRO (VL_API_CONNECT_SOCK_REPLY);
Florin Corasab2f6db2018-08-31 14:31:41 -0700923
Florin Coras64424012019-03-02 10:47:47 -0800924 if (app)
Florin Corasab2f6db2018-08-31 14:31:41 -0700925 {
926 app_worker_t *app_wrk = application_get_worker (app, mp->wrk_index);
927 mq_send_session_connected_cb (app_wrk->wrk_index, mp->context, 0, 1);
928 }
Dave Barach68b0fb02017-02-28 15:15:56 -0500929}
930
Florin Corascea194d2017-10-02 00:18:51 -0700931static void
Florin Coras15531972018-08-12 23:50:53 -0700932vl_api_app_worker_add_del_t_handler (vl_api_app_worker_add_del_t * mp)
933{
934 int rv = 0, fds[SESSION_N_FD_TYPE], n_fds = 0;
935 vl_api_app_worker_add_del_reply_t *rmp;
936 vl_api_registration_t *reg;
Florin Coras15531972018-08-12 23:50:53 -0700937 application_t *app;
938 u8 fd_flags = 0;
939
Florin Coras31c99552019-03-01 13:00:58 -0800940 if (!session_main_is_enabled ())
Florin Coras15531972018-08-12 23:50:53 -0700941 {
942 rv = VNET_API_ERROR_FEATURE_DISABLED;
943 goto done;
944 }
945
946 reg = vl_api_client_index_to_registration (mp->client_index);
947 if (!reg)
948 return;
949
Florin Corasc1f5a432018-11-20 11:31:26 -0800950 app = application_get_if_valid (clib_net_to_host_u32 (mp->app_index));
Florin Coras15531972018-08-12 23:50:53 -0700951 if (!app)
952 {
953 rv = VNET_API_ERROR_INVALID_VALUE;
954 goto done;
955 }
956
957 vnet_app_worker_add_del_args_t args = {
958 .app_index = app->app_index,
Florin Coras349f8ca2018-11-20 16:52:49 -0800959 .wrk_map_index = clib_net_to_host_u32 (mp->wrk_index),
Florin Corasc1f5a432018-11-20 11:31:26 -0800960 .api_client_index = mp->client_index,
Florin Coras15531972018-08-12 23:50:53 -0700961 .is_add = mp->is_add
962 };
Florin Corasc1a42652019-02-08 18:27:29 -0800963 rv = vnet_app_worker_add_del (&args);
964 if (rv)
Florin Coras15531972018-08-12 23:50:53 -0700965 {
Florin Corasc1a42652019-02-08 18:27:29 -0800966 clib_warning ("app worker add/del returned: %d", rv);
Florin Coras15531972018-08-12 23:50:53 -0700967 goto done;
968 }
969
Florin Coras14598772018-09-04 19:47:52 -0700970 if (!mp->is_add)
971 goto done;
Florin Corasc3638fe2018-08-24 13:58:49 -0700972
Florin Coras15531972018-08-12 23:50:53 -0700973 /* Send fifo segment fd if needed */
974 if (ssvm_type (args.segment) == SSVM_SEGMENT_MEMFD)
975 {
976 fd_flags |= SESSION_FD_F_MEMFD_SEGMENT;
977 fds[n_fds] = args.segment->fd;
978 n_fds += 1;
979 }
980 if (application_segment_manager_properties (app)->use_mq_eventfd)
981 {
982 fd_flags |= SESSION_FD_F_MQ_EVENTFD;
983 fds[n_fds] = svm_msg_q_get_producer_eventfd (args.evt_q);
984 n_fds += 1;
985 }
986
987 /* *INDENT-OFF* */
988done:
989 REPLY_MACRO2 (VL_API_APP_WORKER_ADD_DEL_REPLY, ({
990 rmp->is_add = mp->is_add;
Florin Coras349f8ca2018-11-20 16:52:49 -0800991 rmp->wrk_index = clib_host_to_net_u32 (args.wrk_map_index);
Florin Corasfa76a762018-11-29 12:40:10 -0800992 rmp->segment_handle = clib_host_to_net_u64 (args.segment_handle);
Florin Coras14598772018-09-04 19:47:52 -0700993 if (!rv && mp->is_add)
Florin Coras15531972018-08-12 23:50:53 -0700994 {
Florin Coras15531972018-08-12 23:50:53 -0700995 if (vec_len (args.segment->name))
996 {
997 memcpy (rmp->segment_name, args.segment->name,
998 vec_len (args.segment->name));
999 rmp->segment_name_length = vec_len (args.segment->name);
1000 }
1001 rmp->app_event_queue_address = pointer_to_uword (args.evt_q);
1002 rmp->n_fds = n_fds;
1003 rmp->fd_flags = fd_flags;
1004 }
1005 }));
1006 /* *INDENT-ON* */
1007
1008 if (n_fds)
1009 session_send_fds (reg, fds, n_fds);
1010}
1011
1012static void
Florin Corascea194d2017-10-02 00:18:51 -07001013vl_api_app_namespace_add_del_t_handler (vl_api_app_namespace_add_del_t * mp)
1014{
1015 vl_api_app_namespace_add_del_reply_t *rmp;
Florin Coras6e8c6672017-11-10 09:03:54 -08001016 u32 appns_index = 0;
1017 u8 *ns_id = 0;
Florin Corascea194d2017-10-02 00:18:51 -07001018 int rv = 0;
Florin Coras31c99552019-03-01 13:00:58 -08001019 if (!session_main_is_enabled ())
Florin Corascea194d2017-10-02 00:18:51 -07001020 {
1021 rv = VNET_API_ERROR_FEATURE_DISABLED;
1022 goto done;
1023 }
1024
1025 if (mp->namespace_id_len > ARRAY_LEN (mp->namespace_id))
1026 {
1027 rv = VNET_API_ERROR_INVALID_VALUE;
1028 goto done;
1029 }
1030
1031 vec_validate (ns_id, mp->namespace_id_len - 1);
Dave Barach178cf492018-11-13 16:34:13 -05001032 clib_memcpy_fast (ns_id, mp->namespace_id, mp->namespace_id_len);
Florin Corascea194d2017-10-02 00:18:51 -07001033 vnet_app_namespace_add_del_args_t args = {
1034 .ns_id = ns_id,
Florin Coras9a9adb22017-10-26 08:16:59 -07001035 .secret = clib_net_to_host_u64 (mp->secret),
Florin Corascea194d2017-10-02 00:18:51 -07001036 .sw_if_index = clib_net_to_host_u32 (mp->sw_if_index),
1037 .ip4_fib_id = clib_net_to_host_u32 (mp->ip4_fib_id),
1038 .ip6_fib_id = clib_net_to_host_u32 (mp->ip6_fib_id),
1039 .is_add = 1
1040 };
Florin Corasc1a42652019-02-08 18:27:29 -08001041 rv = vnet_app_namespace_add_del (&args);
1042 if (!rv)
Florin Coras6e8c6672017-11-10 09:03:54 -08001043 {
1044 appns_index = app_namespace_index_from_id (ns_id);
1045 if (appns_index == APP_NAMESPACE_INVALID_INDEX)
1046 {
1047 clib_warning ("app ns lookup failed");
1048 rv = VNET_API_ERROR_UNSPECIFIED;
1049 }
1050 }
Florin Corascea194d2017-10-02 00:18:51 -07001051 vec_free (ns_id);
Florin Coras6e8c6672017-11-10 09:03:54 -08001052
1053 /* *INDENT-OFF* */
Florin Corascea194d2017-10-02 00:18:51 -07001054done:
Florin Coras6e8c6672017-11-10 09:03:54 -08001055 REPLY_MACRO2 (VL_API_APP_NAMESPACE_ADD_DEL_REPLY, ({
1056 if (!rv)
1057 rmp->appns_index = clib_host_to_net_u32 (appns_index);
1058 }));
1059 /* *INDENT-ON* */
Florin Corascea194d2017-10-02 00:18:51 -07001060}
1061
Florin Coras1c710452017-10-17 00:03:13 -07001062static void
1063vl_api_session_rule_add_del_t_handler (vl_api_session_rule_add_del_t * mp)
1064{
1065 vl_api_session_rule_add_del_reply_t *rmp;
1066 session_rule_add_del_args_t args;
1067 session_rule_table_add_del_args_t *table_args = &args.table_args;
Florin Coras1c710452017-10-17 00:03:13 -07001068 u8 fib_proto;
1069 int rv = 0;
1070
Dave Barachb7b92992018-10-17 10:38:51 -04001071 clib_memset (&args, 0, sizeof (args));
Florin Coras1c710452017-10-17 00:03:13 -07001072 fib_proto = mp->is_ip4 ? FIB_PROTOCOL_IP4 : FIB_PROTOCOL_IP6;
1073
1074 table_args->lcl.fp_len = mp->lcl_plen;
1075 table_args->lcl.fp_proto = fib_proto;
1076 table_args->rmt.fp_len = mp->rmt_plen;
1077 table_args->rmt.fp_proto = fib_proto;
Milan Lenco8b9a5d12017-11-24 17:12:33 +01001078 table_args->lcl_port = mp->lcl_port;
1079 table_args->rmt_port = mp->rmt_port;
Florin Coras1c710452017-10-17 00:03:13 -07001080 table_args->action_index = clib_net_to_host_u32 (mp->action_index);
1081 table_args->is_add = mp->is_add;
Florin Corasc97a7392017-11-05 23:07:07 -08001082 mp->tag[sizeof (mp->tag) - 1] = 0;
1083 table_args->tag = format (0, "%s", mp->tag);
Florin Coras1c710452017-10-17 00:03:13 -07001084 args.appns_index = clib_net_to_host_u32 (mp->appns_index);
1085 args.scope = mp->scope;
Florin Coras42324ad2017-11-18 18:45:20 -08001086 args.transport_proto = mp->transport_proto;
Florin Coras1c710452017-10-17 00:03:13 -07001087
Dave Barachb7b92992018-10-17 10:38:51 -04001088 clib_memset (&table_args->lcl.fp_addr, 0, sizeof (table_args->lcl.fp_addr));
1089 clib_memset (&table_args->rmt.fp_addr, 0, sizeof (table_args->rmt.fp_addr));
Florin Coras1c710452017-10-17 00:03:13 -07001090 ip_set (&table_args->lcl.fp_addr, mp->lcl_ip, mp->is_ip4);
1091 ip_set (&table_args->rmt.fp_addr, mp->rmt_ip, mp->is_ip4);
Florin Corasc1a42652019-02-08 18:27:29 -08001092 rv = vnet_session_rule_add_del (&args);
1093 if (rv)
1094 clib_warning ("rule add del returned: %d", rv);
Florin Corasc97a7392017-11-05 23:07:07 -08001095 vec_free (table_args->tag);
Florin Coras1c710452017-10-17 00:03:13 -07001096 REPLY_MACRO (VL_API_SESSION_RULE_ADD_DEL_REPLY);
1097}
1098
Florin Coras6c36f532017-11-03 18:32:34 -07001099static void
1100send_session_rule_details4 (mma_rule_16_t * rule, u8 is_local,
Florin Corasc97a7392017-11-05 23:07:07 -08001101 u8 transport_proto, u32 appns_index, u8 * tag,
Florin Coras6c4dae22018-01-09 06:39:23 -08001102 vl_api_registration_t * reg, u32 context)
Florin Coras6c36f532017-11-03 18:32:34 -07001103{
1104 vl_api_session_rules_details_t *rmp = 0;
1105 session_mask_or_match_4_t *match =
1106 (session_mask_or_match_4_t *) & rule->match;
1107 session_mask_or_match_4_t *mask =
1108 (session_mask_or_match_4_t *) & rule->mask;
1109
1110 rmp = vl_msg_api_alloc (sizeof (*rmp));
Dave Barachb7b92992018-10-17 10:38:51 -04001111 clib_memset (rmp, 0, sizeof (*rmp));
Florin Coras6c36f532017-11-03 18:32:34 -07001112 rmp->_vl_msg_id = ntohs (VL_API_SESSION_RULES_DETAILS);
1113 rmp->context = context;
1114
1115 rmp->is_ip4 = 1;
Dave Barach178cf492018-11-13 16:34:13 -05001116 clib_memcpy_fast (rmp->lcl_ip, &match->lcl_ip, sizeof (match->lcl_ip));
1117 clib_memcpy_fast (rmp->rmt_ip, &match->rmt_ip, sizeof (match->rmt_ip));
Florin Coras6c36f532017-11-03 18:32:34 -07001118 rmp->lcl_plen = ip4_mask_to_preflen (&mask->lcl_ip);
1119 rmp->rmt_plen = ip4_mask_to_preflen (&mask->rmt_ip);
Milan Lenco8b9a5d12017-11-24 17:12:33 +01001120 rmp->lcl_port = match->lcl_port;
1121 rmp->rmt_port = match->rmt_port;
Florin Coras6c36f532017-11-03 18:32:34 -07001122 rmp->action_index = clib_host_to_net_u32 (rule->action_index);
1123 rmp->scope =
1124 is_local ? SESSION_RULE_SCOPE_LOCAL : SESSION_RULE_SCOPE_GLOBAL;
1125 rmp->transport_proto = transport_proto;
1126 rmp->appns_index = clib_host_to_net_u32 (appns_index);
Florin Corasc97a7392017-11-05 23:07:07 -08001127 if (tag)
1128 {
Dave Barach178cf492018-11-13 16:34:13 -05001129 clib_memcpy_fast (rmp->tag, tag, vec_len (tag));
Florin Corasc97a7392017-11-05 23:07:07 -08001130 rmp->tag[vec_len (tag)] = 0;
1131 }
Florin Coras6c36f532017-11-03 18:32:34 -07001132
Florin Coras6c4dae22018-01-09 06:39:23 -08001133 vl_api_send_msg (reg, (u8 *) rmp);
Florin Coras6c36f532017-11-03 18:32:34 -07001134}
1135
1136static void
Florin Corasc97a7392017-11-05 23:07:07 -08001137send_session_rule_details6 (mma_rule_40_t * rule, u8 is_local,
1138 u8 transport_proto, u32 appns_index, u8 * tag,
Florin Coras6c4dae22018-01-09 06:39:23 -08001139 vl_api_registration_t * reg, u32 context)
Florin Coras6c36f532017-11-03 18:32:34 -07001140{
1141 vl_api_session_rules_details_t *rmp = 0;
1142 session_mask_or_match_6_t *match =
1143 (session_mask_or_match_6_t *) & rule->match;
1144 session_mask_or_match_6_t *mask =
1145 (session_mask_or_match_6_t *) & rule->mask;
1146
1147 rmp = vl_msg_api_alloc (sizeof (*rmp));
Dave Barachb7b92992018-10-17 10:38:51 -04001148 clib_memset (rmp, 0, sizeof (*rmp));
Florin Coras6c36f532017-11-03 18:32:34 -07001149 rmp->_vl_msg_id = ntohs (VL_API_SESSION_RULES_DETAILS);
1150 rmp->context = context;
1151
1152 rmp->is_ip4 = 0;
Dave Barach178cf492018-11-13 16:34:13 -05001153 clib_memcpy_fast (rmp->lcl_ip, &match->lcl_ip, sizeof (match->lcl_ip));
1154 clib_memcpy_fast (rmp->rmt_ip, &match->rmt_ip, sizeof (match->rmt_ip));
Florin Coras6c36f532017-11-03 18:32:34 -07001155 rmp->lcl_plen = ip6_mask_to_preflen (&mask->lcl_ip);
1156 rmp->rmt_plen = ip6_mask_to_preflen (&mask->rmt_ip);
Milan Lenco8b9a5d12017-11-24 17:12:33 +01001157 rmp->lcl_port = match->lcl_port;
1158 rmp->rmt_port = match->rmt_port;
Florin Coras6c36f532017-11-03 18:32:34 -07001159 rmp->action_index = clib_host_to_net_u32 (rule->action_index);
Florin Corasc97a7392017-11-05 23:07:07 -08001160 rmp->scope =
1161 is_local ? SESSION_RULE_SCOPE_LOCAL : SESSION_RULE_SCOPE_GLOBAL;
Florin Coras6c36f532017-11-03 18:32:34 -07001162 rmp->transport_proto = transport_proto;
1163 rmp->appns_index = clib_host_to_net_u32 (appns_index);
Florin Corasc97a7392017-11-05 23:07:07 -08001164 if (tag)
1165 {
Dave Barach178cf492018-11-13 16:34:13 -05001166 clib_memcpy_fast (rmp->tag, tag, vec_len (tag));
Florin Corasc97a7392017-11-05 23:07:07 -08001167 rmp->tag[vec_len (tag)] = 0;
1168 }
Florin Coras6c36f532017-11-03 18:32:34 -07001169
Florin Coras6c4dae22018-01-09 06:39:23 -08001170 vl_api_send_msg (reg, (u8 *) rmp);
Florin Coras6c36f532017-11-03 18:32:34 -07001171}
1172
1173static void
1174send_session_rules_table_details (session_rules_table_t * srt, u8 fib_proto,
Florin Corasc97a7392017-11-05 23:07:07 -08001175 u8 tp, u8 is_local, u32 appns_index,
Florin Coras6c4dae22018-01-09 06:39:23 -08001176 vl_api_registration_t * reg, u32 context)
Florin Coras6c36f532017-11-03 18:32:34 -07001177{
1178 mma_rule_16_t *rule16;
1179 mma_rule_40_t *rule40;
1180 mma_rules_table_16_t *srt16;
1181 mma_rules_table_40_t *srt40;
Florin Corasc97a7392017-11-05 23:07:07 -08001182 u32 ri;
Florin Coras6c36f532017-11-03 18:32:34 -07001183
Florin Corasc97a7392017-11-05 23:07:07 -08001184 if (is_local || fib_proto == FIB_PROTOCOL_IP4)
Florin Coras6c36f532017-11-03 18:32:34 -07001185 {
Florin Corasc97a7392017-11-05 23:07:07 -08001186 u8 *tag = 0;
1187 /* *INDENT-OFF* */
1188 srt16 = &srt->session_rules_tables_16;
1189 pool_foreach (rule16, srt16->rules, ({
1190 ri = mma_rules_table_rule_index_16 (srt16, rule16);
1191 tag = session_rules_table_rule_tag (srt, ri, 1);
1192 send_session_rule_details4 (rule16, is_local, tp, appns_index, tag,
Florin Coras6c4dae22018-01-09 06:39:23 -08001193 reg, context);
Florin Corasc97a7392017-11-05 23:07:07 -08001194 }));
1195 /* *INDENT-ON* */
1196 }
1197 if (is_local || fib_proto == FIB_PROTOCOL_IP6)
1198 {
1199 u8 *tag = 0;
1200 /* *INDENT-OFF* */
1201 srt40 = &srt->session_rules_tables_40;
1202 pool_foreach (rule40, srt40->rules, ({
1203 ri = mma_rules_table_rule_index_40 (srt40, rule40);
1204 tag = session_rules_table_rule_tag (srt, ri, 1);
1205 send_session_rule_details6 (rule40, is_local, tp, appns_index, tag,
Florin Coras6c4dae22018-01-09 06:39:23 -08001206 reg, context);
Florin Corasc97a7392017-11-05 23:07:07 -08001207 }));
1208 /* *INDENT-ON* */
Florin Coras6c36f532017-11-03 18:32:34 -07001209 }
1210}
1211
1212static void
1213vl_api_session_rules_dump_t_handler (vl_api_one_map_server_dump_t * mp)
1214{
Florin Coras6c4dae22018-01-09 06:39:23 -08001215 vl_api_registration_t *reg;
Florin Coras6c36f532017-11-03 18:32:34 -07001216 session_table_t *st;
Florin Corasc97a7392017-11-05 23:07:07 -08001217 u8 tp;
Florin Coras6c36f532017-11-03 18:32:34 -07001218
Florin Coras6c4dae22018-01-09 06:39:23 -08001219 reg = vl_api_client_index_to_registration (mp->client_index);
1220 if (!reg)
Florin Coras6c36f532017-11-03 18:32:34 -07001221 return;
1222
1223 /* *INDENT-OFF* */
1224 session_table_foreach (st, ({
Florin Corasc97a7392017-11-05 23:07:07 -08001225 for (tp = 0; tp < TRANSPORT_N_PROTO; tp++)
1226 {
1227 send_session_rules_table_details (&st->session_rules[tp],
1228 st->active_fib_proto, tp,
Florin Coras6c4dae22018-01-09 06:39:23 -08001229 st->is_local, st->appns_index, reg,
Florin Corasc97a7392017-11-05 23:07:07 -08001230 mp->context);
1231 }
Florin Coras6c36f532017-11-03 18:32:34 -07001232 }));
1233 /* *INDENT-ON* */
1234}
1235
Florin Coras371ca502018-02-21 12:07:41 -08001236static void
1237vl_api_application_tls_cert_add_t_handler (vl_api_application_tls_cert_add_t *
1238 mp)
1239{
1240 vl_api_app_namespace_add_del_reply_t *rmp;
1241 vnet_app_add_tls_cert_args_t _a, *a = &_a;
1242 clib_error_t *error;
Florin Corase3e2f072018-03-04 07:24:30 -08001243 application_t *app;
Florin Coras371ca502018-02-21 12:07:41 -08001244 u32 cert_len;
1245 int rv = 0;
Florin Coras31c99552019-03-01 13:00:58 -08001246 if (!session_main_is_enabled ())
Florin Coras371ca502018-02-21 12:07:41 -08001247 {
1248 rv = VNET_API_ERROR_FEATURE_DISABLED;
1249 goto done;
1250 }
Florin Corase3e2f072018-03-04 07:24:30 -08001251 if (!(app = application_lookup (mp->client_index)))
1252 {
1253 rv = VNET_API_ERROR_APPLICATION_NOT_ATTACHED;
1254 goto done;
1255 }
Dave Barachb7b92992018-10-17 10:38:51 -04001256 clib_memset (a, 0, sizeof (*a));
Florin Coras15531972018-08-12 23:50:53 -07001257 a->app_index = app->app_index;
Florin Coras371ca502018-02-21 12:07:41 -08001258 cert_len = clib_net_to_host_u16 (mp->cert_len);
Florin Coras5090c572018-03-18 08:22:17 -07001259 if (cert_len > 10000)
1260 {
1261 rv = VNET_API_ERROR_INVALID_VALUE;
1262 goto done;
1263 }
Florin Coras371ca502018-02-21 12:07:41 -08001264 vec_validate (a->cert, cert_len);
Dave Barach178cf492018-11-13 16:34:13 -05001265 clib_memcpy_fast (a->cert, mp->cert, cert_len);
Florin Coras371ca502018-02-21 12:07:41 -08001266 if ((error = vnet_app_add_tls_cert (a)))
1267 {
1268 rv = clib_error_get_code (error);
1269 clib_error_report (error);
1270 }
1271 vec_free (a->cert);
1272done:
1273 REPLY_MACRO (VL_API_APPLICATION_TLS_CERT_ADD_REPLY);
1274}
1275
1276static void
1277vl_api_application_tls_key_add_t_handler (vl_api_application_tls_key_add_t *
1278 mp)
1279{
1280 vl_api_app_namespace_add_del_reply_t *rmp;
1281 vnet_app_add_tls_key_args_t _a, *a = &_a;
1282 clib_error_t *error;
Florin Corase3e2f072018-03-04 07:24:30 -08001283 application_t *app;
Florin Coras371ca502018-02-21 12:07:41 -08001284 u32 key_len;
1285 int rv = 0;
Florin Coras31c99552019-03-01 13:00:58 -08001286 if (!session_main_is_enabled ())
Florin Coras371ca502018-02-21 12:07:41 -08001287 {
1288 rv = VNET_API_ERROR_FEATURE_DISABLED;
1289 goto done;
1290 }
Florin Corase3e2f072018-03-04 07:24:30 -08001291 if (!(app = application_lookup (mp->client_index)))
1292 {
1293 rv = VNET_API_ERROR_APPLICATION_NOT_ATTACHED;
1294 goto done;
1295 }
Dave Barachb7b92992018-10-17 10:38:51 -04001296 clib_memset (a, 0, sizeof (*a));
Florin Coras15531972018-08-12 23:50:53 -07001297 a->app_index = app->app_index;
Florin Coras371ca502018-02-21 12:07:41 -08001298 key_len = clib_net_to_host_u16 (mp->key_len);
Florin Coras5090c572018-03-18 08:22:17 -07001299 if (key_len > 10000)
1300 {
1301 rv = VNET_API_ERROR_INVALID_VALUE;
1302 goto done;
1303 }
Florin Coras371ca502018-02-21 12:07:41 -08001304 vec_validate (a->key, key_len);
Dave Barach178cf492018-11-13 16:34:13 -05001305 clib_memcpy_fast (a->key, mp->key, key_len);
Florin Coras371ca502018-02-21 12:07:41 -08001306 if ((error = vnet_app_add_tls_key (a)))
1307 {
1308 rv = clib_error_get_code (error);
1309 clib_error_report (error);
1310 }
1311 vec_free (a->key);
1312done:
1313 REPLY_MACRO (VL_API_APPLICATION_TLS_KEY_ADD_REPLY);
1314}
1315
Florin Coras6cf30ad2017-04-04 23:08:23 -07001316static clib_error_t *
1317application_reaper_cb (u32 client_index)
Dave Barach68b0fb02017-02-28 15:15:56 -05001318{
Florin Coras6cf30ad2017-04-04 23:08:23 -07001319 application_t *app = application_lookup (client_index);
1320 vnet_app_detach_args_t _a, *a = &_a;
1321 if (app)
1322 {
Florin Coras15531972018-08-12 23:50:53 -07001323 a->app_index = app->app_index;
Florin Coras053a0e42018-11-13 15:52:38 -08001324 a->api_client_index = client_index;
Florin Coras6cf30ad2017-04-04 23:08:23 -07001325 vnet_application_detach (a);
1326 }
1327 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001328}
1329
Florin Coras6cf30ad2017-04-04 23:08:23 -07001330VL_MSG_API_REAPER_FUNCTION (application_reaper_cb);
Dave Barach68b0fb02017-02-28 15:15:56 -05001331
1332#define vl_msg_name_crc_list
1333#include <vnet/vnet_all_api_h.h>
1334#undef vl_msg_name_crc_list
1335
1336static void
1337setup_message_id_table (api_main_t * am)
1338{
1339#define _(id,n,crc) vl_msg_api_add_msg_name_crc (am, #n "_" #crc, id);
1340 foreach_vl_msg_name_crc_session;
1341#undef _
1342}
1343
1344/*
1345 * session_api_hookup
1346 * Add uri's API message handlers to the table.
Jim Thompsonf324dec2019-04-08 03:22:21 -05001347 * vlib has already mapped shared memory and
Dave Barach68b0fb02017-02-28 15:15:56 -05001348 * added the client registration handlers.
1349 * See .../open-repo/vlib/memclnt_vlib.c:memclnt_process()
1350 */
1351static clib_error_t *
1352session_api_hookup (vlib_main_t * vm)
1353{
1354 api_main_t *am = &api_main;
1355
1356#define _(N,n) \
1357 vl_msg_api_set_handlers(VL_API_##N, #n, \
1358 vl_api_##n##_t_handler, \
1359 vl_noop_handler, \
1360 vl_api_##n##_t_endian, \
1361 vl_api_##n##_t_print, \
1362 sizeof(vl_api_##n##_t), 1);
1363 foreach_session_api_msg;
1364#undef _
1365
1366 /*
1367 * Messages which bounce off the data-plane to
1368 * an API client. Simply tells the message handling infra not
1369 * to free the message.
1370 *
1371 * Bounced message handlers MUST NOT block the data plane
1372 */
1373 am->message_bounce[VL_API_CONNECT_URI] = 1;
1374 am->message_bounce[VL_API_CONNECT_SOCK] = 1;
1375
1376 /*
1377 * Set up the (msg_name, crc, message-id) table
1378 */
1379 setup_message_id_table (am);
1380
1381 return 0;
1382}
1383
1384VLIB_API_INIT_FUNCTION (session_api_hookup);
Florin Coras6cf30ad2017-04-04 23:08:23 -07001385
Dave Barach68b0fb02017-02-28 15:15:56 -05001386/*
1387 * fd.io coding-style-patch-verification: ON
1388 *
1389 * Local Variables:
1390 * eval: (c-set-style "gnu")
1391 * End:
1392 */