blob: 8d82a7e44583c3e08fcf3c415bcd6c5ae4cc8cca [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
Jakub Grajciarb4e5e502020-01-31 09:35:29 +010025#include <vnet/ip/ip_types_api.h>
26
Dave Barach68b0fb02017-02-28 15:15:56 -050027#include <vnet/vnet_msg_enum.h>
Dave Barach68b0fb02017-02-28 15:15:56 -050028
29#define vl_typedefs /* define message structures */
30#include <vnet/vnet_all_api_h.h>
31#undef vl_typedefs
32
33#define vl_endianfun /* define message structures */
34#include <vnet/vnet_all_api_h.h>
35#undef vl_endianfun
36
37/* instantiate all the print functions we know about */
38#define vl_print(handle, ...) vlib_cli_output (handle, __VA_ARGS__)
39#define vl_printfun
40#include <vnet/vnet_all_api_h.h>
41#undef vl_printfun
42
43#include <vlibapi/api_helper_macros.h>
44
45#define foreach_session_api_msg \
Florin Coras458089b2019-08-21 16:20:44 -070046_(APP_ATTACH, app_attach) \
Florin Coras6cf30ad2017-04-04 23:08:23 -070047_(APPLICATION_DETACH, application_detach) \
Florin Corase04c2992017-03-01 08:17:34 -080048_(SESSION_ENABLE_DISABLE, session_enable_disable) \
Florin Corascea194d2017-10-02 00:18:51 -070049_(APP_NAMESPACE_ADD_DEL, app_namespace_add_del) \
Florin Coras1c710452017-10-17 00:03:13 -070050_(SESSION_RULE_ADD_DEL, session_rule_add_del) \
Florin Coras6c36f532017-11-03 18:32:34 -070051_(SESSION_RULES_DUMP, session_rules_dump) \
Nathan Skrzypczak79f89532019-09-13 11:08:13 +020052_(APP_ADD_CERT_KEY_PAIR, app_add_cert_key_pair) \
53_(APP_DEL_CERT_KEY_PAIR, app_del_cert_key_pair) \
Florin Coras15531972018-08-12 23:50:53 -070054_(APP_WORKER_ADD_DEL, app_worker_add_del) \
Florin Corase04c2992017-03-01 08:17:34 -080055
Jakub Grajciarb4e5e502020-01-31 09:35:29 +010056static transport_proto_t
57api_session_transport_proto_decode (const vl_api_transport_proto_t * api_tp)
58{
59 switch (*api_tp)
60 {
61 case TRANSPORT_PROTO_API_TCP:
62 return TRANSPORT_PROTO_TCP;
63 case TRANSPORT_PROTO_API_UDP:
64 return TRANSPORT_PROTO_UDP;
Jakub Grajciarb4e5e502020-01-31 09:35:29 +010065 case TRANSPORT_PROTO_API_TLS:
66 return TRANSPORT_PROTO_TLS;
Jakub Grajciarb4e5e502020-01-31 09:35:29 +010067 case TRANSPORT_PROTO_API_QUIC:
68 return TRANSPORT_PROTO_QUIC;
69 default:
70 return TRANSPORT_PROTO_NONE;
71 }
72}
73
74static vl_api_transport_proto_t
75api_session_transport_proto_encode (const transport_proto_t tp)
76{
77 switch (tp)
78 {
79 case TRANSPORT_PROTO_TCP:
80 return TRANSPORT_PROTO_API_TCP;
81 case TRANSPORT_PROTO_UDP:
82 return TRANSPORT_PROTO_API_UDP;
Jakub Grajciarb4e5e502020-01-31 09:35:29 +010083 case TRANSPORT_PROTO_TLS:
84 return TRANSPORT_PROTO_API_TLS;
Jakub Grajciarb4e5e502020-01-31 09:35:29 +010085 case TRANSPORT_PROTO_QUIC:
86 return TRANSPORT_PROTO_API_QUIC;
87 default:
88 return TRANSPORT_PROTO_API_NONE;
89 }
90}
91
Dave Barach68b0fb02017-02-28 15:15:56 -050092static int
Florin Coras99368312018-08-02 10:45:44 -070093session_send_fds (vl_api_registration_t * reg, int fds[], int n_fds)
Florin Corasb384b542018-01-15 01:08:33 -080094{
95 clib_error_t *error;
96 if (vl_api_registration_file_index (reg) == VL_API_INVALID_FI)
Florin Coras00e01d32019-10-21 16:07:46 -070097 return SESSION_E_BAPI_NO_FD;
Florin Coras99368312018-08-02 10:45:44 -070098 error = vl_api_send_fd_msg (reg, fds, n_fds);
Florin Corasb384b542018-01-15 01:08:33 -080099 if (error)
100 {
101 clib_error_report (error);
Florin Coras00e01d32019-10-21 16:07:46 -0700102 return SESSION_E_BAPI_SEND_FD;
Florin Corasb384b542018-01-15 01:08:33 -0800103 }
104 return 0;
105}
106
Florin Coras99368312018-08-02 10:45:44 -0700107static int
Florin Coras83ea6692018-10-12 16:55:14 -0700108mq_try_lock_and_alloc_msg (svm_msg_q_t * app_mq, svm_msg_q_msg_t * msg)
109{
110 int rv;
111 u8 try = 0;
112 while (try < 100)
113 {
114 rv = svm_msg_q_lock_and_alloc_msg_w_ring (app_mq,
115 SESSION_MQ_CTRL_EVT_RING,
116 SVM_Q_NOWAIT, msg);
117 if (!rv)
118 return 0;
119 try++;
Florin Corase2ea1932018-12-17 23:08:14 -0800120 usleep (1);
Florin Coras83ea6692018-10-12 16:55:14 -0700121 }
Florin Corasdc2e2512018-12-03 17:47:26 -0800122 clib_warning ("failed to alloc msg");
Florin Coras83ea6692018-10-12 16:55:14 -0700123 return -1;
124}
125
126static int
Florin Coras288eaab2019-02-03 15:26:14 -0800127mq_send_session_accepted_cb (session_t * s)
Florin Coras52207f12018-07-12 14:48:06 -0700128{
Florin Coras15531972018-08-12 23:50:53 -0700129 app_worker_t *app_wrk = app_worker_get (s->app_wrk_index);
Florin Coras52207f12018-07-12 14:48:06 -0700130 svm_msg_q_msg_t _msg, *msg = &_msg;
Florin Coras09bf91a2021-02-23 08:44:13 -0800131 session_accepted_msg_t m = { 0 };
Florin Corasb4624182020-12-11 13:58:12 -0800132 svm_msg_q_t *app_mq;
133 fifo_segment_t *eq_seg;
Florin Coras288eaab2019-02-03 15:26:14 -0800134 session_t *listener;
Florin Coras52207f12018-07-12 14:48:06 -0700135 session_event_t *evt;
Florin Coras15531972018-08-12 23:50:53 -0700136 application_t *app;
Florin Coras52207f12018-07-12 14:48:06 -0700137
Florin Coras15531972018-08-12 23:50:53 -0700138 app = application_get (app_wrk->app_index);
Florin Coras52207f12018-07-12 14:48:06 -0700139
Florin Coras09bf91a2021-02-23 08:44:13 -0800140 m.context = app->app_index;
141 m.server_rx_fifo = fifo_segment_fifo_offset (s->rx_fifo);
142 m.server_tx_fifo = fifo_segment_fifo_offset (s->tx_fifo);
143 m.segment_handle = session_segment_handle (s);
144 m.flags = s->flags;
Florin Coras52207f12018-07-12 14:48:06 -0700145
Florin Corasb4624182020-12-11 13:58:12 -0800146 eq_seg = session_main_get_evt_q_segment ();
147
Florin Coras52207f12018-07-12 14:48:06 -0700148 if (session_has_transport (s))
149 {
Nathan Skrzypczak2f0f96b2019-06-13 10:14:28 +0200150 listener = listen_session_get_from_handle (s->listener_handle);
Florin Coras09bf91a2021-02-23 08:44:13 -0800151 m.listener_handle = app_listen_session_handle (listener);
Florin Coras52207f12018-07-12 14:48:06 -0700152 if (application_is_proxy (app))
153 {
154 listener =
Florin Coras15531972018-08-12 23:50:53 -0700155 app_worker_first_listener (app_wrk, session_get_fib_proto (s),
156 session_get_transport_proto (s));
Florin Coras52207f12018-07-12 14:48:06 -0700157 if (listener)
Florin Coras09bf91a2021-02-23 08:44:13 -0800158 m.listener_handle = listen_session_get_handle (listener);
Florin Coras52207f12018-07-12 14:48:06 -0700159 }
Florin Coras09bf91a2021-02-23 08:44:13 -0800160 m.vpp_event_queue_address =
Florin Corasb4624182020-12-11 13:58:12 -0800161 fifo_segment_msg_q_offset (eq_seg, s->thread_index);
Florin Coras09bf91a2021-02-23 08:44:13 -0800162 m.mq_index = s->thread_index;
163 m.handle = session_handle (s);
Aloys Augustincdb71702019-04-08 17:54:39 +0200164
Florin Coras09bf91a2021-02-23 08:44:13 -0800165 session_get_endpoint (s, &m.rmt, 0 /* is_lcl */);
Florin Coras52207f12018-07-12 14:48:06 -0700166 }
167 else
168 {
Florin Coras2b81e3c2019-02-27 07:55:46 -0800169 ct_connection_t *ct;
Florin Coras99368312018-08-02 10:45:44 -0700170
Florin Coras2b81e3c2019-02-27 07:55:46 -0800171 ct = (ct_connection_t *) session_get_transport (s);
Nathan Skrzypczak2f0f96b2019-06-13 10:14:28 +0200172 listener = listen_session_get_from_handle (s->listener_handle);
Florin Coras09bf91a2021-02-23 08:44:13 -0800173 m.listener_handle = app_listen_session_handle (listener);
174 m.rmt.is_ip4 = session_type_is_ip4 (listener->session_type);
175 m.rmt.port = ct->c_rmt_port;
176 m.handle = session_handle (s);
177 m.vpp_event_queue_address =
Florin Corasb4624182020-12-11 13:58:12 -0800178 fifo_segment_msg_q_offset (eq_seg, s->thread_index);
Florin Coras09bf91a2021-02-23 08:44:13 -0800179 m.mq_index = s->thread_index;
Florin Coras52207f12018-07-12 14:48:06 -0700180 }
Florin Coras09bf91a2021-02-23 08:44:13 -0800181
182 app_mq = app_wrk->event_queue;
183 if (mq_try_lock_and_alloc_msg (app_mq, msg))
184 return SESSION_E_MQ_MSG_ALLOC;
185
186 evt = svm_msg_q_msg_data (app_mq, msg);
187 clib_memset (evt, 0, sizeof (*evt));
188 evt->event_type = SESSION_CTRL_EVT_ACCEPTED;
189 clib_memcpy_fast (evt->data, &m, sizeof (m));
Florin Coras537b17e2018-09-28 10:35:45 -0700190 svm_msg_q_add_and_unlock (app_mq, msg);
Florin Coras52207f12018-07-12 14:48:06 -0700191
192 return 0;
193}
194
Florin Coras72b04282019-01-14 17:23:11 -0800195static inline void
196mq_send_session_close_evt (app_worker_t * app_wrk, session_handle_t sh,
197 session_evt_type_t evt_type)
Florin Coras52207f12018-07-12 14:48:06 -0700198{
Florin Coras52207f12018-07-12 14:48:06 -0700199 svm_msg_q_msg_t _msg, *msg = &_msg;
200 session_disconnected_msg_t *mp;
201 svm_msg_q_t *app_mq;
202 session_event_t *evt;
203
Florin Coras15531972018-08-12 23:50:53 -0700204 app_mq = app_wrk->event_queue;
Florin Coras83ea6692018-10-12 16:55:14 -0700205 if (mq_try_lock_and_alloc_msg (app_mq, msg))
206 return;
Florin Coras52207f12018-07-12 14:48:06 -0700207 evt = svm_msg_q_msg_data (app_mq, msg);
Dave Barachb7b92992018-10-17 10:38:51 -0400208 clib_memset (evt, 0, sizeof (*evt));
Florin Coras72b04282019-01-14 17:23:11 -0800209 evt->event_type = evt_type;
Florin Coras52207f12018-07-12 14:48:06 -0700210 mp = (session_disconnected_msg_t *) evt->data;
Florin Coras72b04282019-01-14 17:23:11 -0800211 mp->handle = sh;
Florin Corasc1f5a432018-11-20 11:31:26 -0800212 mp->context = app_wrk->api_client_index;
Florin Coras537b17e2018-09-28 10:35:45 -0700213 svm_msg_q_add_and_unlock (app_mq, msg);
Florin Coras52207f12018-07-12 14:48:06 -0700214}
215
Florin Coras72b04282019-01-14 17:23:11 -0800216static inline void
217mq_notify_close_subscribers (u32 app_index, session_handle_t sh,
218 svm_fifo_t * f, session_evt_type_t evt_type)
219{
220 app_worker_t *app_wrk;
221 application_t *app;
222 int i;
223
224 app = application_get (app_index);
225 if (!app)
226 return;
227
Florin Corasc547e912020-12-08 17:50:45 -0800228 for (i = 0; i < f->shr->n_subscribers; i++)
Florin Coras72b04282019-01-14 17:23:11 -0800229 {
Florin Corasc547e912020-12-08 17:50:45 -0800230 if (!(app_wrk = application_get_worker (app, f->shr->subscribers[i])))
Florin Coras72b04282019-01-14 17:23:11 -0800231 continue;
232 mq_send_session_close_evt (app_wrk, sh, SESSION_CTRL_EVT_DISCONNECTED);
233 }
234}
235
236static void
Florin Coras288eaab2019-02-03 15:26:14 -0800237mq_send_session_disconnected_cb (session_t * s)
Florin Coras72b04282019-01-14 17:23:11 -0800238{
239 app_worker_t *app_wrk = app_worker_get (s->app_wrk_index);
240 session_handle_t sh = session_handle (s);
241
242 mq_send_session_close_evt (app_wrk, session_handle (s),
243 SESSION_CTRL_EVT_DISCONNECTED);
244
Florin Coras288eaab2019-02-03 15:26:14 -0800245 if (svm_fifo_n_subscribers (s->rx_fifo))
246 mq_notify_close_subscribers (app_wrk->app_index, sh, s->rx_fifo,
Florin Coras72b04282019-01-14 17:23:11 -0800247 SESSION_CTRL_EVT_DISCONNECTED);
248}
249
Florin Coras52207f12018-07-12 14:48:06 -0700250static void
Florin Coras288eaab2019-02-03 15:26:14 -0800251mq_send_session_reset_cb (session_t * s)
Florin Coras52207f12018-07-12 14:48:06 -0700252{
Florin Coras72b04282019-01-14 17:23:11 -0800253 app_worker_t *app_wrk = app_worker_get (s->app_wrk_index);
254 session_handle_t sh = session_handle (s);
Florin Coras52207f12018-07-12 14:48:06 -0700255
Florin Coras72b04282019-01-14 17:23:11 -0800256 mq_send_session_close_evt (app_wrk, sh, SESSION_CTRL_EVT_RESET);
257
Florin Coras288eaab2019-02-03 15:26:14 -0800258 if (svm_fifo_n_subscribers (s->rx_fifo))
259 mq_notify_close_subscribers (app_wrk->app_index, sh, s->rx_fifo,
Florin Coras72b04282019-01-14 17:23:11 -0800260 SESSION_CTRL_EVT_RESET);
Florin Coras52207f12018-07-12 14:48:06 -0700261}
262
Florin Coras458089b2019-08-21 16:20:44 -0700263int
Florin Coras15531972018-08-12 23:50:53 -0700264mq_send_session_connected_cb (u32 app_wrk_index, u32 api_context,
Florin Coras00e01d32019-10-21 16:07:46 -0700265 session_t * s, session_error_t err)
Florin Coras52207f12018-07-12 14:48:06 -0700266{
267 svm_msg_q_msg_t _msg, *msg = &_msg;
Florin Coras09bf91a2021-02-23 08:44:13 -0800268 session_connected_msg_t m = { 0 };
Florin Corasb4624182020-12-11 13:58:12 -0800269 svm_msg_q_t *app_mq;
Florin Coras52207f12018-07-12 14:48:06 -0700270 transport_connection_t *tc;
Florin Corasb4624182020-12-11 13:58:12 -0800271 fifo_segment_t *eq_seg;
Florin Coras15531972018-08-12 23:50:53 -0700272 app_worker_t *app_wrk;
Florin Coras52207f12018-07-12 14:48:06 -0700273 session_event_t *evt;
Florin Coras52207f12018-07-12 14:48:06 -0700274
Florin Coras09bf91a2021-02-23 08:44:13 -0800275 m.context = api_context;
276 m.retval = err;
Florin Coras52207f12018-07-12 14:48:06 -0700277
Florin Coras00e01d32019-10-21 16:07:46 -0700278 if (err)
Florin Coras09bf91a2021-02-23 08:44:13 -0800279 goto snd_msg;
Florin Coras52207f12018-07-12 14:48:06 -0700280
Florin Corasb4624182020-12-11 13:58:12 -0800281 eq_seg = session_main_get_evt_q_segment ();
282
Florin Coras52207f12018-07-12 14:48:06 -0700283 if (session_has_transport (s))
284 {
285 tc = session_get_transport (s);
286 if (!tc)
287 {
Florin Coras00e01d32019-10-21 16:07:46 -0700288 clib_warning ("failed to retrieve transport!");
Florin Coras09bf91a2021-02-23 08:44:13 -0800289 m.retval = SESSION_E_REFUSED;
290 goto snd_msg;
Florin Coras52207f12018-07-12 14:48:06 -0700291 }
292
Florin Coras09bf91a2021-02-23 08:44:13 -0800293 m.handle = session_handle (s);
294 m.vpp_event_queue_address =
Florin Corasb4624182020-12-11 13:58:12 -0800295 fifo_segment_msg_q_offset (eq_seg, s->thread_index);
Aloys Augustincdb71702019-04-08 17:54:39 +0200296
Florin Coras09bf91a2021-02-23 08:44:13 -0800297 session_get_endpoint (s, &m.lcl, 1 /* is_lcl */);
Aloys Augustincdb71702019-04-08 17:54:39 +0200298
Florin Coras09bf91a2021-02-23 08:44:13 -0800299 m.server_rx_fifo = fifo_segment_fifo_offset (s->rx_fifo);
300 m.server_tx_fifo = fifo_segment_fifo_offset (s->tx_fifo);
301 m.segment_handle = session_segment_handle (s);
Florin Coras52207f12018-07-12 14:48:06 -0700302 }
303 else
304 {
Florin Coras2b81e3c2019-02-27 07:55:46 -0800305 ct_connection_t *cct;
306 session_t *ss;
Florin Coras99368312018-08-02 10:45:44 -0700307
Florin Coras2b81e3c2019-02-27 07:55:46 -0800308 cct = (ct_connection_t *) session_get_transport (s);
Florin Coras09bf91a2021-02-23 08:44:13 -0800309 m.handle = session_handle (s);
310 m.lcl.port = cct->c_lcl_port;
311 m.lcl.is_ip4 = cct->c_is_ip4;
312 m.vpp_event_queue_address =
Florin Corasb4624182020-12-11 13:58:12 -0800313 fifo_segment_msg_q_offset (eq_seg, s->thread_index);
Florin Coras09bf91a2021-02-23 08:44:13 -0800314 m.server_rx_fifo = fifo_segment_fifo_offset (s->rx_fifo);
315 m.server_tx_fifo = fifo_segment_fifo_offset (s->tx_fifo);
316 m.segment_handle = session_segment_handle (s);
Florin Coras2b81e3c2019-02-27 07:55:46 -0800317 ss = ct_session_get_peer (s);
Florin Coras09bf91a2021-02-23 08:44:13 -0800318 m.ct_rx_fifo = fifo_segment_fifo_offset (ss->tx_fifo);
319 m.ct_tx_fifo = fifo_segment_fifo_offset (ss->rx_fifo);
320 m.ct_segment_handle = session_segment_handle (ss);
Florin Coras52207f12018-07-12 14:48:06 -0700321 }
322
Florin Coras09bf91a2021-02-23 08:44:13 -0800323snd_msg:
324
325 app_wrk = app_worker_get (app_wrk_index);
326 app_mq = app_wrk->event_queue;
327
328 if (mq_try_lock_and_alloc_msg (app_mq, msg))
329 return SESSION_E_MQ_MSG_ALLOC;
330
331 evt = svm_msg_q_msg_data (app_mq, msg);
332 clib_memset (evt, 0, sizeof (*evt));
333 evt->event_type = SESSION_CTRL_EVT_CONNECTED;
334 clib_memcpy_fast (evt->data, &m, sizeof (m));
Florin Coras52207f12018-07-12 14:48:06 -0700335
Florin Coras537b17e2018-09-28 10:35:45 -0700336 svm_msg_q_add_and_unlock (app_mq, msg);
Florin Coras52207f12018-07-12 14:48:06 -0700337 return 0;
338}
339
Florin Coras458089b2019-08-21 16:20:44 -0700340int
Florin Coras60116992018-08-27 09:52:18 -0700341mq_send_session_bound_cb (u32 app_wrk_index, u32 api_context,
342 session_handle_t handle, int rv)
343{
344 svm_msg_q_msg_t _msg, *msg = &_msg;
Florin Coras09bf91a2021-02-23 08:44:13 -0800345 session_bound_msg_t m = { 0 };
Florin Corasb4624182020-12-11 13:58:12 -0800346 svm_msg_q_t *app_mq;
Yu Ping0b819152019-05-07 02:24:30 +0800347 transport_endpoint_t tep;
Florin Corasb4624182020-12-11 13:58:12 -0800348 fifo_segment_t *eq_seg;
Florin Coras60116992018-08-27 09:52:18 -0700349 app_worker_t *app_wrk;
350 session_event_t *evt;
Florin Corasc9940fc2019-02-05 20:55:11 -0800351 app_listener_t *al;
352 session_t *ls = 0;
Florin Coras09bf91a2021-02-23 08:44:13 -0800353
354 m.context = api_context;
355 m.retval = rv;
356
357 if (rv)
358 goto snd_msg;
359
360 m.handle = handle;
361 al = app_listener_get_w_handle (handle);
362 if (al->session_index != SESSION_INVALID_INDEX)
363 ls = app_listener_get_session (al);
364 else
365 ls = app_listener_get_local_session (al);
366
367 session_get_endpoint (ls, &tep, 1 /* is_lcl */);
368 m.lcl_port = tep.port;
369 m.lcl_is_ip4 = tep.is_ip4;
370 clib_memcpy_fast (m.lcl_ip, &tep.ip, sizeof (tep.ip));
371
372 eq_seg = session_main_get_evt_q_segment ();
373 m.vpp_evt_q = fifo_segment_msg_q_offset (eq_seg, ls->thread_index);
374
375 if (session_transport_service_type (ls) == TRANSPORT_SERVICE_CL)
376 {
377 m.rx_fifo = fifo_segment_fifo_offset (ls->rx_fifo);
378 m.tx_fifo = fifo_segment_fifo_offset (ls->tx_fifo);
379 m.segment_handle = session_segment_handle (ls);
380 }
381
382snd_msg:
383
Florin Coras60116992018-08-27 09:52:18 -0700384 app_wrk = app_worker_get (app_wrk_index);
Florin Coras60116992018-08-27 09:52:18 -0700385 app_mq = app_wrk->event_queue;
Florin Coras60116992018-08-27 09:52:18 -0700386
Florin Coras83ea6692018-10-12 16:55:14 -0700387 if (mq_try_lock_and_alloc_msg (app_mq, msg))
Florin Coras00e01d32019-10-21 16:07:46 -0700388 return SESSION_E_MQ_MSG_ALLOC;
Florin Coras83ea6692018-10-12 16:55:14 -0700389
Florin Coras60116992018-08-27 09:52:18 -0700390 evt = svm_msg_q_msg_data (app_mq, msg);
Dave Barachb7b92992018-10-17 10:38:51 -0400391 clib_memset (evt, 0, sizeof (*evt));
Florin Coras60116992018-08-27 09:52:18 -0700392 evt->event_type = SESSION_CTRL_EVT_BOUND;
Florin Coras09bf91a2021-02-23 08:44:13 -0800393 clib_memcpy_fast (evt->data, &m, sizeof (m));
Florin Coras60116992018-08-27 09:52:18 -0700394
Florin Coras537b17e2018-09-28 10:35:45 -0700395 svm_msg_q_add_and_unlock (app_mq, msg);
Florin Coras60116992018-08-27 09:52:18 -0700396 return 0;
397}
398
Florin Coras458089b2019-08-21 16:20:44 -0700399void
400mq_send_unlisten_reply (app_worker_t * app_wrk, session_handle_t sh,
401 u32 context, int rv)
402{
403 svm_msg_q_msg_t _msg, *msg = &_msg;
404 session_unlisten_reply_msg_t *ump;
405 svm_msg_q_t *app_mq;
406 session_event_t *evt;
407
408 app_mq = app_wrk->event_queue;
409 if (mq_try_lock_and_alloc_msg (app_mq, msg))
410 return;
411
412 evt = svm_msg_q_msg_data (app_mq, msg);
413 clib_memset (evt, 0, sizeof (*evt));
414 evt->event_type = SESSION_CTRL_EVT_UNLISTEN_REPLY;
415 ump = (session_unlisten_reply_msg_t *) evt->data;
416 ump->context = context;
417 ump->handle = sh;
418 ump->retval = rv;
419 svm_msg_q_add_and_unlock (app_mq, msg);
420}
421
Florin Coras49568af2019-07-31 16:46:24 -0700422static void
423mq_send_session_migrate_cb (session_t * s, session_handle_t new_sh)
424{
Florin Coras68b7e582020-01-21 18:33:23 -0800425 svm_msg_q_msg_t _msg, *msg = &_msg;
Florin Coras09bf91a2021-02-23 08:44:13 -0800426 session_migrated_msg_t m = { 0 };
Florin Corasb4624182020-12-11 13:58:12 -0800427 fifo_segment_t *eq_seg;
Florin Coras68b7e582020-01-21 18:33:23 -0800428 app_worker_t *app_wrk;
429 session_event_t *evt;
430 svm_msg_q_t *app_mq;
Florin Corasb4624182020-12-11 13:58:12 -0800431 u32 thread_index;
432
433 thread_index = session_thread_from_handle (new_sh);
434 eq_seg = session_main_get_evt_q_segment ();
Florin Coras68b7e582020-01-21 18:33:23 -0800435
Florin Coras09bf91a2021-02-23 08:44:13 -0800436 m.handle = session_handle (s);
437 m.new_handle = new_sh;
438 m.vpp_thread_index = thread_index;
439 m.vpp_evt_q = fifo_segment_msg_q_offset (eq_seg, thread_index);
440 m.segment_handle = SESSION_INVALID_HANDLE;
441
Florin Coras68b7e582020-01-21 18:33:23 -0800442 app_wrk = app_worker_get (s->app_wrk_index);
443 app_mq = app_wrk->event_queue;
444 if (mq_try_lock_and_alloc_msg (app_mq, msg))
445 return;
446
447 evt = svm_msg_q_msg_data (app_mq, msg);
448 clib_memset (evt, 0, sizeof (*evt));
449 evt->event_type = SESSION_CTRL_EVT_MIGRATED;
Florin Coras09bf91a2021-02-23 08:44:13 -0800450 clib_memcpy_fast (evt->data, &m, sizeof (m));
451
Florin Coras68b7e582020-01-21 18:33:23 -0800452 svm_msg_q_add_and_unlock (app_mq, msg);
Florin Coras49568af2019-07-31 16:46:24 -0700453}
454
Florin Corasc4c4cf52019-08-24 18:17:34 -0700455static int
456mq_send_add_segment_cb (u32 app_wrk_index, u64 segment_handle)
457{
458 int fds[SESSION_N_FD_TYPE], n_fds = 0;
459 svm_msg_q_msg_t _msg, *msg = &_msg;
460 session_app_add_segment_msg_t *mp;
461 vl_api_registration_t *reg;
462 app_worker_t *app_wrk;
463 session_event_t *evt;
464 svm_msg_q_t *app_mq;
465 fifo_segment_t *fs;
466 ssvm_private_t *sp;
467 u8 fd_flags = 0;
468
469 app_wrk = app_worker_get (app_wrk_index);
470
471 reg = vl_mem_api_client_index_to_registration (app_wrk->api_client_index);
472 if (!reg)
473 {
474 clib_warning ("no api registration for client: %u",
475 app_wrk->api_client_index);
476 return -1;
477 }
478
479 fs = segment_manager_get_segment_w_handle (segment_handle);
480 sp = &fs->ssvm;
481 if (ssvm_type (sp) == SSVM_SEGMENT_MEMFD)
482 {
483 if (vl_api_registration_file_index (reg) == VL_API_INVALID_FI)
484 {
485 clib_warning ("can't send memfd fd");
486 return -1;
487 }
488
489 fd_flags |= SESSION_FD_F_MEMFD_SEGMENT;
490 fds[n_fds] = sp->fd;
491 n_fds += 1;
492 }
493
494 app_mq = app_wrk->event_queue;
495 if (mq_try_lock_and_alloc_msg (app_mq, msg))
496 return -1;
497
498 if (n_fds)
499 session_send_fds (reg, fds, n_fds);
500
501 evt = svm_msg_q_msg_data (app_mq, msg);
502 clib_memset (evt, 0, sizeof (*evt));
503 evt->event_type = SESSION_CTRL_EVT_APP_ADD_SEGMENT;
504 mp = (session_app_add_segment_msg_t *) evt->data;
505 clib_memset (mp, 0, sizeof (*mp));
506 mp->segment_size = sp->ssvm_size;
507 mp->fd_flags = fd_flags;
508 mp->segment_handle = segment_handle;
509 strncpy ((char *) mp->segment_name, (char *) sp->name,
510 sizeof (mp->segment_name) - 1);
511
512 svm_msg_q_add_and_unlock (app_mq, msg);
513
514 return 0;
515}
516
517static int
518mq_send_del_segment_cb (u32 app_wrk_index, u64 segment_handle)
519{
520 svm_msg_q_msg_t _msg, *msg = &_msg;
521 session_app_del_segment_msg_t *mp;
522 vl_api_registration_t *reg;
523 app_worker_t *app_wrk;
524 session_event_t *evt;
525 svm_msg_q_t *app_mq;
526
527 app_wrk = app_worker_get (app_wrk_index);
528 reg = vl_mem_api_client_index_to_registration (app_wrk->api_client_index);
529 if (!reg)
530 {
531 clib_warning ("no registration: %u", app_wrk->api_client_index);
532 return -1;
533 }
534
535 app_mq = app_wrk->event_queue;
536 if (mq_try_lock_and_alloc_msg (app_mq, msg))
537 return -1;
538
539 evt = svm_msg_q_msg_data (app_mq, msg);
540 clib_memset (evt, 0, sizeof (*evt));
541 evt->event_type = SESSION_CTRL_EVT_APP_DEL_SEGMENT;
542 mp = (session_app_del_segment_msg_t *) evt->data;
543 clib_memset (mp, 0, sizeof (*mp));
544 mp->segment_handle = segment_handle;
545 svm_msg_q_add_and_unlock (app_mq, msg);
546
547 return 0;
548}
549
Florin Coras9ace36d2019-10-28 13:14:17 -0700550static void
551mq_send_session_cleanup_cb (session_t * s, session_cleanup_ntf_t ntf)
552{
553 svm_msg_q_msg_t _msg, *msg = &_msg;
554 session_cleanup_msg_t *mp;
555 svm_msg_q_t *app_mq;
556 session_event_t *evt;
557 app_worker_t *app_wrk;
558
Florin Coras36d49392020-04-24 23:00:11 +0000559 /* Propagate transport cleanup notifications only if app didn't close */
560 if (ntf == SESSION_CLEANUP_TRANSPORT
561 && s->session_state != SESSION_STATE_TRANSPORT_DELETED)
Florin Coras9ace36d2019-10-28 13:14:17 -0700562 return;
563
564 app_wrk = app_worker_get_if_valid (s->app_wrk_index);
565 if (!app_wrk)
566 return;
567
568 app_mq = app_wrk->event_queue;
569 if (mq_try_lock_and_alloc_msg (app_mq, msg))
570 return;
571
572 evt = svm_msg_q_msg_data (app_mq, msg);
573 clib_memset (evt, 0, sizeof (*evt));
574 evt->event_type = SESSION_CTRL_EVT_CLEANUP;
575 mp = (session_cleanup_msg_t *) evt->data;
576 mp->handle = session_handle (s);
Florin Coras36d49392020-04-24 23:00:11 +0000577 mp->type = ntf;
Florin Coras9ace36d2019-10-28 13:14:17 -0700578 svm_msg_q_add_and_unlock (app_mq, msg);
579}
580
Florin Corasc4c4cf52019-08-24 18:17:34 -0700581static session_cb_vft_t session_mq_cb_vft = {
582 .session_accept_callback = mq_send_session_accepted_cb,
583 .session_disconnect_callback = mq_send_session_disconnected_cb,
584 .session_connected_callback = mq_send_session_connected_cb,
585 .session_reset_callback = mq_send_session_reset_cb,
586 .session_migrate_callback = mq_send_session_migrate_cb,
Florin Coras9ace36d2019-10-28 13:14:17 -0700587 .session_cleanup_callback = mq_send_session_cleanup_cb,
Florin Corasc4c4cf52019-08-24 18:17:34 -0700588 .add_segment_callback = mq_send_add_segment_cb,
589 .del_segment_callback = mq_send_del_segment_cb,
590};
591
Dave Barach68b0fb02017-02-28 15:15:56 -0500592static void
Florin Corase04c2992017-03-01 08:17:34 -0800593vl_api_session_enable_disable_t_handler (vl_api_session_enable_disable_t * mp)
594{
595 vl_api_session_enable_disable_reply_t *rmp;
596 vlib_main_t *vm = vlib_get_main ();
597 int rv = 0;
598
599 vnet_session_enable_disable (vm, mp->is_enable);
600 REPLY_MACRO (VL_API_SESSION_ENABLE_DISABLE_REPLY);
601}
602
Dave Barach68b0fb02017-02-28 15:15:56 -0500603static void
Florin Coras458089b2019-08-21 16:20:44 -0700604vl_api_app_attach_t_handler (vl_api_app_attach_t * mp)
605{
606 int rv = 0, fds[SESSION_N_FD_TYPE], n_fds = 0;
607 vl_api_app_attach_reply_t *rmp;
Florin Corasb4624182020-12-11 13:58:12 -0800608 fifo_segment_t *segp, *evt_q_segment = 0;
Florin Coras458089b2019-08-21 16:20:44 -0700609 vnet_app_attach_args_t _a, *a = &_a;
610 u8 fd_flags = 0, ctrl_thread;
611 vl_api_registration_t *reg;
Florin Coras458089b2019-08-21 16:20:44 -0700612
613 reg = vl_api_client_index_to_registration (mp->client_index);
614 if (!reg)
615 return;
616
Florin Coras61ae0562020-09-02 19:10:28 -0700617 if (!session_main_is_enabled () || appns_sapi_enabled ())
Florin Coras458089b2019-08-21 16:20:44 -0700618 {
619 rv = VNET_API_ERROR_FEATURE_DISABLED;
620 goto done;
621 }
Florin Coras6c10ab22020-11-08 16:50:39 -0800622 /* Only support binary api with socket transport */
623 if (vl_api_registration_file_index (reg) == VL_API_INVALID_FI)
624 {
625 rv = VNET_API_ERROR_APP_UNSUPPORTED_CFG;
626 goto done;
627 }
Florin Coras458089b2019-08-21 16:20:44 -0700628
629 STATIC_ASSERT (sizeof (u64) * APP_OPTIONS_N_OPTIONS <=
630 sizeof (mp->options),
631 "Out of options, fix api message definition");
632
633 clib_memset (a, 0, sizeof (*a));
634 a->api_client_index = mp->client_index;
635 a->options = mp->options;
636 a->session_cb_vft = &session_mq_cb_vft;
Dave Barach77841402020-04-29 17:04:10 -0400637 a->namespace_id = vl_api_from_api_to_new_vec (mp, &mp->namespace_id);
Florin Coras458089b2019-08-21 16:20:44 -0700638
639 if ((rv = vnet_application_attach (a)))
640 {
641 clib_warning ("attach returned: %d", rv);
642 vec_free (a->namespace_id);
643 goto done;
644 }
645 vec_free (a->namespace_id);
646
647 /* Send event queues segment */
648 if ((evt_q_segment = session_main_get_evt_q_segment ()))
649 {
650 fd_flags |= SESSION_FD_F_VPP_MQ_SEGMENT;
Florin Coras04943b42020-12-25 11:45:40 -0800651 fds[n_fds] = evt_q_segment->ssvm.fd;
Florin Coras458089b2019-08-21 16:20:44 -0700652 n_fds += 1;
653 }
654 /* Send fifo segment fd if needed */
655 if (ssvm_type (a->segment) == SSVM_SEGMENT_MEMFD)
656 {
657 fd_flags |= SESSION_FD_F_MEMFD_SEGMENT;
658 fds[n_fds] = a->segment->fd;
659 n_fds += 1;
660 }
661 if (a->options[APP_OPTIONS_FLAGS] & APP_OPTIONS_FLAGS_EVT_MQ_USE_EVENTFD)
662 {
663 fd_flags |= SESSION_FD_F_MQ_EVENTFD;
Florin Coras86f12322021-01-22 15:05:14 -0800664 fds[n_fds] = svm_msg_q_get_eventfd (a->app_evt_q);
Florin Coras458089b2019-08-21 16:20:44 -0700665 n_fds += 1;
666 }
667
668done:
Florin Coras458089b2019-08-21 16:20:44 -0700669 /* *INDENT-OFF* */
670 REPLY_MACRO2 (VL_API_APP_ATTACH_REPLY, ({
671 if (!rv)
672 {
Vratko Polak4f599852019-11-08 10:32:39 +0100673 ctrl_thread = vlib_num_workers () ? 1 : 0;
Florin Corasb4624182020-12-11 13:58:12 -0800674 segp = (fifo_segment_t *) a->segment;
Florin Coras458089b2019-08-21 16:20:44 -0700675 rmp->app_index = clib_host_to_net_u32 (a->app_index);
Florin Corasb4624182020-12-11 13:58:12 -0800676 rmp->app_mq = fifo_segment_msg_q_offset (segp, 0);
677 rmp->vpp_ctrl_mq =
678 fifo_segment_msg_q_offset (evt_q_segment, ctrl_thread);
Florin Coras458089b2019-08-21 16:20:44 -0700679 rmp->vpp_ctrl_mq_thread = ctrl_thread;
680 rmp->n_fds = n_fds;
681 rmp->fd_flags = fd_flags;
Florin Corasb4624182020-12-11 13:58:12 -0800682 if (vec_len (segp->ssvm.name))
Florin Coras458089b2019-08-21 16:20:44 -0700683 {
Florin Corasb4624182020-12-11 13:58:12 -0800684 vl_api_vec_to_api_string (segp->ssvm.name, &rmp->segment_name);
Florin Coras458089b2019-08-21 16:20:44 -0700685 }
Florin Corasb4624182020-12-11 13:58:12 -0800686 rmp->segment_size = segp->ssvm.ssvm_size;
Florin Coras458089b2019-08-21 16:20:44 -0700687 rmp->segment_handle = clib_host_to_net_u64 (a->segment_handle);
688 }
689 }));
690 /* *INDENT-ON* */
691
692 if (n_fds)
693 session_send_fds (reg, fds, n_fds);
694}
695
Florin Corascea194d2017-10-02 00:18:51 -0700696static void
Florin Coras15531972018-08-12 23:50:53 -0700697vl_api_app_worker_add_del_t_handler (vl_api_app_worker_add_del_t * mp)
698{
699 int rv = 0, fds[SESSION_N_FD_TYPE], n_fds = 0;
700 vl_api_app_worker_add_del_reply_t *rmp;
701 vl_api_registration_t *reg;
Florin Coras15531972018-08-12 23:50:53 -0700702 application_t *app;
703 u8 fd_flags = 0;
704
Florin Coras61ae0562020-09-02 19:10:28 -0700705 if (!session_main_is_enabled () || appns_sapi_enabled ())
Florin Coras15531972018-08-12 23:50:53 -0700706 {
707 rv = VNET_API_ERROR_FEATURE_DISABLED;
708 goto done;
709 }
710
711 reg = vl_api_client_index_to_registration (mp->client_index);
712 if (!reg)
713 return;
714
Florin Corasc1f5a432018-11-20 11:31:26 -0800715 app = application_get_if_valid (clib_net_to_host_u32 (mp->app_index));
Florin Coras15531972018-08-12 23:50:53 -0700716 if (!app)
717 {
718 rv = VNET_API_ERROR_INVALID_VALUE;
719 goto done;
720 }
721
722 vnet_app_worker_add_del_args_t args = {
723 .app_index = app->app_index,
Florin Coras349f8ca2018-11-20 16:52:49 -0800724 .wrk_map_index = clib_net_to_host_u32 (mp->wrk_index),
Florin Corasc1f5a432018-11-20 11:31:26 -0800725 .api_client_index = mp->client_index,
Florin Coras15531972018-08-12 23:50:53 -0700726 .is_add = mp->is_add
727 };
Florin Corasc1a42652019-02-08 18:27:29 -0800728 rv = vnet_app_worker_add_del (&args);
729 if (rv)
Florin Coras15531972018-08-12 23:50:53 -0700730 {
Florin Corasc1a42652019-02-08 18:27:29 -0800731 clib_warning ("app worker add/del returned: %d", rv);
Florin Coras15531972018-08-12 23:50:53 -0700732 goto done;
733 }
734
Florin Coras14598772018-09-04 19:47:52 -0700735 if (!mp->is_add)
736 goto done;
Florin Corasc3638fe2018-08-24 13:58:49 -0700737
Florin Coras15531972018-08-12 23:50:53 -0700738 /* Send fifo segment fd if needed */
739 if (ssvm_type (args.segment) == SSVM_SEGMENT_MEMFD)
740 {
741 fd_flags |= SESSION_FD_F_MEMFD_SEGMENT;
742 fds[n_fds] = args.segment->fd;
743 n_fds += 1;
744 }
745 if (application_segment_manager_properties (app)->use_mq_eventfd)
746 {
747 fd_flags |= SESSION_FD_F_MQ_EVENTFD;
Florin Coras86f12322021-01-22 15:05:14 -0800748 fds[n_fds] = svm_msg_q_get_eventfd (args.evt_q);
Florin Coras15531972018-08-12 23:50:53 -0700749 n_fds += 1;
750 }
751
752 /* *INDENT-OFF* */
753done:
754 REPLY_MACRO2 (VL_API_APP_WORKER_ADD_DEL_REPLY, ({
755 rmp->is_add = mp->is_add;
Florin Coras349f8ca2018-11-20 16:52:49 -0800756 rmp->wrk_index = clib_host_to_net_u32 (args.wrk_map_index);
Florin Corasfa76a762018-11-29 12:40:10 -0800757 rmp->segment_handle = clib_host_to_net_u64 (args.segment_handle);
Florin Coras14598772018-09-04 19:47:52 -0700758 if (!rv && mp->is_add)
Florin Coras15531972018-08-12 23:50:53 -0700759 {
Florin Corasb4624182020-12-11 13:58:12 -0800760 rmp->app_event_queue_address =
761 fifo_segment_msg_q_offset ((fifo_segment_t *) args.segment, 0);
762 rmp->n_fds = n_fds;
763 rmp->fd_flags = fd_flags;
Florin Coras15531972018-08-12 23:50:53 -0700764 if (vec_len (args.segment->name))
765 {
Jakub Grajciarb4e5e502020-01-31 09:35:29 +0100766 vl_api_vec_to_api_string (args.segment->name, &rmp->segment_name);
Florin Coras15531972018-08-12 23:50:53 -0700767 }
Florin Coras15531972018-08-12 23:50:53 -0700768 }
769 }));
770 /* *INDENT-ON* */
771
772 if (n_fds)
773 session_send_fds (reg, fds, n_fds);
774}
775
776static void
Florin Coras888d9f02020-04-02 23:00:13 +0000777vl_api_application_detach_t_handler (vl_api_application_detach_t * mp)
778{
779 vl_api_application_detach_reply_t *rmp;
780 int rv = VNET_API_ERROR_INVALID_VALUE_2;
781 vnet_app_detach_args_t _a, *a = &_a;
782 application_t *app;
783
Florin Coras61ae0562020-09-02 19:10:28 -0700784 if (!session_main_is_enabled () || appns_sapi_enabled ())
Florin Coras888d9f02020-04-02 23:00:13 +0000785 {
786 rv = VNET_API_ERROR_FEATURE_DISABLED;
787 goto done;
788 }
789
790 app = application_lookup (mp->client_index);
791 if (app)
792 {
793 a->app_index = app->app_index;
794 a->api_client_index = mp->client_index;
795 rv = vnet_application_detach (a);
796 }
797
798done:
799 REPLY_MACRO (VL_API_APPLICATION_DETACH_REPLY);
800}
801
802static void
Florin Corascea194d2017-10-02 00:18:51 -0700803vl_api_app_namespace_add_del_t_handler (vl_api_app_namespace_add_del_t * mp)
804{
805 vl_api_app_namespace_add_del_reply_t *rmp;
Florin Coras6e8c6672017-11-10 09:03:54 -0800806 u32 appns_index = 0;
807 u8 *ns_id = 0;
Florin Corascea194d2017-10-02 00:18:51 -0700808 int rv = 0;
Nathan Skrzypczak79f89532019-09-13 11:08:13 +0200809 if (session_main_is_enabled () == 0)
Florin Corascea194d2017-10-02 00:18:51 -0700810 {
811 rv = VNET_API_ERROR_FEATURE_DISABLED;
812 goto done;
813 }
814
Dave Barach77841402020-04-29 17:04:10 -0400815 ns_id = vl_api_from_api_to_new_vec (mp, &mp->namespace_id);
Florin Corascea194d2017-10-02 00:18:51 -0700816
Florin Corascea194d2017-10-02 00:18:51 -0700817 vnet_app_namespace_add_del_args_t args = {
818 .ns_id = ns_id,
Florin Coras9a9adb22017-10-26 08:16:59 -0700819 .secret = clib_net_to_host_u64 (mp->secret),
Florin Corascea194d2017-10-02 00:18:51 -0700820 .sw_if_index = clib_net_to_host_u32 (mp->sw_if_index),
821 .ip4_fib_id = clib_net_to_host_u32 (mp->ip4_fib_id),
822 .ip6_fib_id = clib_net_to_host_u32 (mp->ip6_fib_id),
823 .is_add = 1
824 };
Florin Corasc1a42652019-02-08 18:27:29 -0800825 rv = vnet_app_namespace_add_del (&args);
826 if (!rv)
Florin Coras6e8c6672017-11-10 09:03:54 -0800827 {
828 appns_index = app_namespace_index_from_id (ns_id);
829 if (appns_index == APP_NAMESPACE_INVALID_INDEX)
830 {
831 clib_warning ("app ns lookup failed");
832 rv = VNET_API_ERROR_UNSPECIFIED;
833 }
834 }
Florin Corascea194d2017-10-02 00:18:51 -0700835 vec_free (ns_id);
Florin Coras6e8c6672017-11-10 09:03:54 -0800836
837 /* *INDENT-OFF* */
Florin Corascea194d2017-10-02 00:18:51 -0700838done:
Florin Coras6e8c6672017-11-10 09:03:54 -0800839 REPLY_MACRO2 (VL_API_APP_NAMESPACE_ADD_DEL_REPLY, ({
840 if (!rv)
841 rmp->appns_index = clib_host_to_net_u32 (appns_index);
842 }));
843 /* *INDENT-ON* */
Florin Corascea194d2017-10-02 00:18:51 -0700844}
845
Florin Coras1c710452017-10-17 00:03:13 -0700846static void
847vl_api_session_rule_add_del_t_handler (vl_api_session_rule_add_del_t * mp)
848{
849 vl_api_session_rule_add_del_reply_t *rmp;
850 session_rule_add_del_args_t args;
851 session_rule_table_add_del_args_t *table_args = &args.table_args;
Florin Coras1c710452017-10-17 00:03:13 -0700852 int rv = 0;
853
Dave Barachb7b92992018-10-17 10:38:51 -0400854 clib_memset (&args, 0, sizeof (args));
Florin Coras1c710452017-10-17 00:03:13 -0700855
Jakub Grajciarb4e5e502020-01-31 09:35:29 +0100856 ip_prefix_decode (&mp->lcl, &table_args->lcl);
857 ip_prefix_decode (&mp->rmt, &table_args->rmt);
858
Milan Lenco8b9a5d12017-11-24 17:12:33 +0100859 table_args->lcl_port = mp->lcl_port;
860 table_args->rmt_port = mp->rmt_port;
Florin Coras1c710452017-10-17 00:03:13 -0700861 table_args->action_index = clib_net_to_host_u32 (mp->action_index);
862 table_args->is_add = mp->is_add;
Florin Corasc97a7392017-11-05 23:07:07 -0800863 mp->tag[sizeof (mp->tag) - 1] = 0;
864 table_args->tag = format (0, "%s", mp->tag);
Florin Coras1c710452017-10-17 00:03:13 -0700865 args.appns_index = clib_net_to_host_u32 (mp->appns_index);
866 args.scope = mp->scope;
Jakub Grajciarb4e5e502020-01-31 09:35:29 +0100867 args.transport_proto =
868 api_session_transport_proto_decode (&mp->transport_proto) ==
869 TRANSPORT_PROTO_UDP ? 1 : 0;
Florin Coras1c710452017-10-17 00:03:13 -0700870
Florin Corasc1a42652019-02-08 18:27:29 -0800871 rv = vnet_session_rule_add_del (&args);
872 if (rv)
873 clib_warning ("rule add del returned: %d", rv);
Florin Corasc97a7392017-11-05 23:07:07 -0800874 vec_free (table_args->tag);
Florin Coras1c710452017-10-17 00:03:13 -0700875 REPLY_MACRO (VL_API_SESSION_RULE_ADD_DEL_REPLY);
876}
877
Florin Coras6c36f532017-11-03 18:32:34 -0700878static void
879send_session_rule_details4 (mma_rule_16_t * rule, u8 is_local,
Florin Corasc97a7392017-11-05 23:07:07 -0800880 u8 transport_proto, u32 appns_index, u8 * tag,
Florin Coras6c4dae22018-01-09 06:39:23 -0800881 vl_api_registration_t * reg, u32 context)
Florin Coras6c36f532017-11-03 18:32:34 -0700882{
883 vl_api_session_rules_details_t *rmp = 0;
884 session_mask_or_match_4_t *match =
885 (session_mask_or_match_4_t *) & rule->match;
886 session_mask_or_match_4_t *mask =
887 (session_mask_or_match_4_t *) & rule->mask;
Jakub Grajciarb4e5e502020-01-31 09:35:29 +0100888 fib_prefix_t lcl, rmt;
Florin Coras6c36f532017-11-03 18:32:34 -0700889
890 rmp = vl_msg_api_alloc (sizeof (*rmp));
Dave Barachb7b92992018-10-17 10:38:51 -0400891 clib_memset (rmp, 0, sizeof (*rmp));
Florin Coras6c36f532017-11-03 18:32:34 -0700892 rmp->_vl_msg_id = ntohs (VL_API_SESSION_RULES_DETAILS);
893 rmp->context = context;
894
Jakub Grajciarb4e5e502020-01-31 09:35:29 +0100895 clib_memset (&lcl, 0, sizeof (lcl));
896 clib_memset (&rmt, 0, sizeof (rmt));
897 ip_set (&lcl.fp_addr, &match->lcl_ip, 1);
898 ip_set (&rmt.fp_addr, &match->rmt_ip, 1);
899 lcl.fp_len = ip4_mask_to_preflen (&mask->lcl_ip);
900 rmt.fp_len = ip4_mask_to_preflen (&mask->rmt_ip);
901
902 ip_prefix_encode (&lcl, &rmp->lcl);
903 ip_prefix_encode (&rmt, &rmp->rmt);
Milan Lenco8b9a5d12017-11-24 17:12:33 +0100904 rmp->lcl_port = match->lcl_port;
905 rmp->rmt_port = match->rmt_port;
Florin Coras6c36f532017-11-03 18:32:34 -0700906 rmp->action_index = clib_host_to_net_u32 (rule->action_index);
907 rmp->scope =
Jakub Grajciarb4e5e502020-01-31 09:35:29 +0100908 is_local ? SESSION_RULE_SCOPE_API_LOCAL : SESSION_RULE_SCOPE_API_GLOBAL;
909 rmp->transport_proto = api_session_transport_proto_encode (transport_proto);
Florin Coras6c36f532017-11-03 18:32:34 -0700910 rmp->appns_index = clib_host_to_net_u32 (appns_index);
Florin Corasc97a7392017-11-05 23:07:07 -0800911 if (tag)
912 {
Dave Barach178cf492018-11-13 16:34:13 -0500913 clib_memcpy_fast (rmp->tag, tag, vec_len (tag));
Florin Corasc97a7392017-11-05 23:07:07 -0800914 rmp->tag[vec_len (tag)] = 0;
915 }
Florin Coras6c36f532017-11-03 18:32:34 -0700916
Florin Coras6c4dae22018-01-09 06:39:23 -0800917 vl_api_send_msg (reg, (u8 *) rmp);
Florin Coras6c36f532017-11-03 18:32:34 -0700918}
919
920static void
Florin Corasc97a7392017-11-05 23:07:07 -0800921send_session_rule_details6 (mma_rule_40_t * rule, u8 is_local,
922 u8 transport_proto, u32 appns_index, u8 * tag,
Florin Coras6c4dae22018-01-09 06:39:23 -0800923 vl_api_registration_t * reg, u32 context)
Florin Coras6c36f532017-11-03 18:32:34 -0700924{
925 vl_api_session_rules_details_t *rmp = 0;
926 session_mask_or_match_6_t *match =
927 (session_mask_or_match_6_t *) & rule->match;
928 session_mask_or_match_6_t *mask =
929 (session_mask_or_match_6_t *) & rule->mask;
Jakub Grajciarb4e5e502020-01-31 09:35:29 +0100930 fib_prefix_t lcl, rmt;
Florin Coras6c36f532017-11-03 18:32:34 -0700931
932 rmp = vl_msg_api_alloc (sizeof (*rmp));
Dave Barachb7b92992018-10-17 10:38:51 -0400933 clib_memset (rmp, 0, sizeof (*rmp));
Florin Coras6c36f532017-11-03 18:32:34 -0700934 rmp->_vl_msg_id = ntohs (VL_API_SESSION_RULES_DETAILS);
935 rmp->context = context;
936
Jakub Grajciarb4e5e502020-01-31 09:35:29 +0100937 clib_memset (&lcl, 0, sizeof (lcl));
938 clib_memset (&rmt, 0, sizeof (rmt));
939 ip_set (&lcl.fp_addr, &match->lcl_ip, 0);
940 ip_set (&rmt.fp_addr, &match->rmt_ip, 0);
941 lcl.fp_len = ip6_mask_to_preflen (&mask->lcl_ip);
942 rmt.fp_len = ip6_mask_to_preflen (&mask->rmt_ip);
943
944 ip_prefix_encode (&lcl, &rmp->lcl);
945 ip_prefix_encode (&rmt, &rmp->rmt);
Milan Lenco8b9a5d12017-11-24 17:12:33 +0100946 rmp->lcl_port = match->lcl_port;
947 rmp->rmt_port = match->rmt_port;
Florin Coras6c36f532017-11-03 18:32:34 -0700948 rmp->action_index = clib_host_to_net_u32 (rule->action_index);
Florin Corasc97a7392017-11-05 23:07:07 -0800949 rmp->scope =
Jakub Grajciarb4e5e502020-01-31 09:35:29 +0100950 is_local ? SESSION_RULE_SCOPE_API_LOCAL : SESSION_RULE_SCOPE_API_GLOBAL;
951 rmp->transport_proto = api_session_transport_proto_encode (transport_proto);
Florin Coras6c36f532017-11-03 18:32:34 -0700952 rmp->appns_index = clib_host_to_net_u32 (appns_index);
Florin Corasc97a7392017-11-05 23:07:07 -0800953 if (tag)
954 {
Dave Barach178cf492018-11-13 16:34:13 -0500955 clib_memcpy_fast (rmp->tag, tag, vec_len (tag));
Florin Corasc97a7392017-11-05 23:07:07 -0800956 rmp->tag[vec_len (tag)] = 0;
957 }
Florin Coras6c36f532017-11-03 18:32:34 -0700958
Florin Coras6c4dae22018-01-09 06:39:23 -0800959 vl_api_send_msg (reg, (u8 *) rmp);
Florin Coras6c36f532017-11-03 18:32:34 -0700960}
961
962static void
963send_session_rules_table_details (session_rules_table_t * srt, u8 fib_proto,
Florin Corasc97a7392017-11-05 23:07:07 -0800964 u8 tp, u8 is_local, u32 appns_index,
Florin Coras6c4dae22018-01-09 06:39:23 -0800965 vl_api_registration_t * reg, u32 context)
Florin Coras6c36f532017-11-03 18:32:34 -0700966{
967 mma_rule_16_t *rule16;
968 mma_rule_40_t *rule40;
969 mma_rules_table_16_t *srt16;
970 mma_rules_table_40_t *srt40;
Florin Corasc97a7392017-11-05 23:07:07 -0800971 u32 ri;
Florin Coras6c36f532017-11-03 18:32:34 -0700972
Florin Corasc97a7392017-11-05 23:07:07 -0800973 if (is_local || fib_proto == FIB_PROTOCOL_IP4)
Florin Coras6c36f532017-11-03 18:32:34 -0700974 {
Florin Corasc97a7392017-11-05 23:07:07 -0800975 u8 *tag = 0;
976 /* *INDENT-OFF* */
977 srt16 = &srt->session_rules_tables_16;
Damjan Marionb2c31b62020-12-13 21:47:40 +0100978 pool_foreach (rule16, srt16->rules) {
Florin Corasc97a7392017-11-05 23:07:07 -0800979 ri = mma_rules_table_rule_index_16 (srt16, rule16);
980 tag = session_rules_table_rule_tag (srt, ri, 1);
981 send_session_rule_details4 (rule16, is_local, tp, appns_index, tag,
Florin Coras6c4dae22018-01-09 06:39:23 -0800982 reg, context);
Damjan Marionb2c31b62020-12-13 21:47:40 +0100983 }
Florin Corasc97a7392017-11-05 23:07:07 -0800984 /* *INDENT-ON* */
985 }
986 if (is_local || fib_proto == FIB_PROTOCOL_IP6)
987 {
988 u8 *tag = 0;
989 /* *INDENT-OFF* */
990 srt40 = &srt->session_rules_tables_40;
Damjan Marionb2c31b62020-12-13 21:47:40 +0100991 pool_foreach (rule40, srt40->rules) {
Florin Corasc97a7392017-11-05 23:07:07 -0800992 ri = mma_rules_table_rule_index_40 (srt40, rule40);
993 tag = session_rules_table_rule_tag (srt, ri, 1);
994 send_session_rule_details6 (rule40, is_local, tp, appns_index, tag,
Florin Coras6c4dae22018-01-09 06:39:23 -0800995 reg, context);
Damjan Marionb2c31b62020-12-13 21:47:40 +0100996 }
Florin Corasc97a7392017-11-05 23:07:07 -0800997 /* *INDENT-ON* */
Florin Coras6c36f532017-11-03 18:32:34 -0700998 }
999}
1000
1001static void
Neale Ranns2b202bc2020-09-21 08:17:51 +00001002vl_api_session_rules_dump_t_handler (vl_api_session_rules_dump_t * mp)
Florin Coras6c36f532017-11-03 18:32:34 -07001003{
Florin Coras6c4dae22018-01-09 06:39:23 -08001004 vl_api_registration_t *reg;
Florin Coras6c36f532017-11-03 18:32:34 -07001005 session_table_t *st;
Florin Corasc97a7392017-11-05 23:07:07 -08001006 u8 tp;
Florin Coras6c36f532017-11-03 18:32:34 -07001007
Florin Coras6c4dae22018-01-09 06:39:23 -08001008 reg = vl_api_client_index_to_registration (mp->client_index);
1009 if (!reg)
Florin Coras6c36f532017-11-03 18:32:34 -07001010 return;
1011
1012 /* *INDENT-OFF* */
1013 session_table_foreach (st, ({
Florin Coras07063b82020-03-13 04:44:51 +00001014 for (tp = 0; tp < TRANSPORT_N_PROTOS; tp++)
Florin Corasc97a7392017-11-05 23:07:07 -08001015 {
1016 send_session_rules_table_details (&st->session_rules[tp],
1017 st->active_fib_proto, tp,
Florin Coras6c4dae22018-01-09 06:39:23 -08001018 st->is_local, st->appns_index, reg,
Florin Corasc97a7392017-11-05 23:07:07 -08001019 mp->context);
1020 }
Florin Coras6c36f532017-11-03 18:32:34 -07001021 }));
1022 /* *INDENT-ON* */
1023}
1024
Florin Coras371ca502018-02-21 12:07:41 -08001025static void
Nathan Skrzypczak79f89532019-09-13 11:08:13 +02001026vl_api_app_add_cert_key_pair_t_handler (vl_api_app_add_cert_key_pair_t * mp)
Florin Coras371ca502018-02-21 12:07:41 -08001027{
Nathan Skrzypczak79f89532019-09-13 11:08:13 +02001028 vl_api_app_add_cert_key_pair_reply_t *rmp;
1029 vnet_app_add_cert_key_pair_args_t _a, *a = &_a;
1030 u32 certkey_len, key_len, cert_len;
Florin Coras371ca502018-02-21 12:07:41 -08001031 int rv = 0;
Nathan Skrzypczak79f89532019-09-13 11:08:13 +02001032 if (session_main_is_enabled () == 0)
Florin Coras371ca502018-02-21 12:07:41 -08001033 {
1034 rv = VNET_API_ERROR_FEATURE_DISABLED;
1035 goto done;
1036 }
Nathan Skrzypczak79f89532019-09-13 11:08:13 +02001037
Florin Coras371ca502018-02-21 12:07:41 -08001038 cert_len = clib_net_to_host_u16 (mp->cert_len);
Florin Coras5090c572018-03-18 08:22:17 -07001039 if (cert_len > 10000)
1040 {
1041 rv = VNET_API_ERROR_INVALID_VALUE;
1042 goto done;
1043 }
Nathan Skrzypczak79f89532019-09-13 11:08:13 +02001044
1045 certkey_len = clib_net_to_host_u16 (mp->certkey_len);
1046 if (certkey_len < cert_len)
Florin Coras371ca502018-02-21 12:07:41 -08001047 {
Nathan Skrzypczak79f89532019-09-13 11:08:13 +02001048 rv = VNET_API_ERROR_INVALID_VALUE;
1049 goto done;
Florin Coras371ca502018-02-21 12:07:41 -08001050 }
Nathan Skrzypczak79f89532019-09-13 11:08:13 +02001051
1052 key_len = certkey_len - cert_len;
1053 if (key_len > 10000)
1054 {
1055 rv = VNET_API_ERROR_INVALID_VALUE;
1056 goto done;
1057 }
1058
1059 clib_memset (a, 0, sizeof (*a));
Florin Corasa5a9efd2021-01-05 17:03:29 -08001060 a->cert = mp->certkey;
1061 a->key = mp->certkey + cert_len;
1062 a->cert_len = cert_len;
1063 a->key_len = key_len;
Nathan Skrzypczak79f89532019-09-13 11:08:13 +02001064 rv = vnet_app_add_cert_key_pair (a);
Nathan Skrzypczak79f89532019-09-13 11:08:13 +02001065
Florin Coras371ca502018-02-21 12:07:41 -08001066done:
Nathan Skrzypczak79f89532019-09-13 11:08:13 +02001067 /* *INDENT-OFF* */
1068 REPLY_MACRO2 (VL_API_APP_ADD_CERT_KEY_PAIR_REPLY, ({
1069 if (!rv)
Nathan Skrzypczak45ec9f42019-11-06 14:47:40 +01001070 rmp->index = clib_host_to_net_u32 (a->index);
Nathan Skrzypczak79f89532019-09-13 11:08:13 +02001071 }));
1072 /* *INDENT-ON* */
Florin Coras371ca502018-02-21 12:07:41 -08001073}
1074
1075static void
Nathan Skrzypczak79f89532019-09-13 11:08:13 +02001076vl_api_app_del_cert_key_pair_t_handler (vl_api_app_del_cert_key_pair_t * mp)
Florin Coras371ca502018-02-21 12:07:41 -08001077{
Nathan Skrzypczak79f89532019-09-13 11:08:13 +02001078 vl_api_app_del_cert_key_pair_reply_t *rmp;
Nathan Skrzypczak45ec9f42019-11-06 14:47:40 +01001079 u32 ckpair_index;
Florin Coras371ca502018-02-21 12:07:41 -08001080 int rv = 0;
Nathan Skrzypczak79f89532019-09-13 11:08:13 +02001081 if (session_main_is_enabled () == 0)
1082 {
1083 rv = VNET_API_ERROR_FEATURE_DISABLED;
1084 goto done;
1085 }
Nathan Skrzypczak45ec9f42019-11-06 14:47:40 +01001086 ckpair_index = clib_net_to_host_u32 (mp->index);
1087 rv = vnet_app_del_cert_key_pair (ckpair_index);
Nathan Skrzypczak79f89532019-09-13 11:08:13 +02001088
1089done:
Nathan Skrzypczak45ec9f42019-11-06 14:47:40 +01001090 REPLY_MACRO (VL_API_APP_DEL_CERT_KEY_PAIR_REPLY);
Nathan Skrzypczak79f89532019-09-13 11:08:13 +02001091}
1092
Florin Coras6cf30ad2017-04-04 23:08:23 -07001093static clib_error_t *
1094application_reaper_cb (u32 client_index)
Dave Barach68b0fb02017-02-28 15:15:56 -05001095{
Florin Coras6cf30ad2017-04-04 23:08:23 -07001096 application_t *app = application_lookup (client_index);
1097 vnet_app_detach_args_t _a, *a = &_a;
1098 if (app)
1099 {
Florin Coras15531972018-08-12 23:50:53 -07001100 a->app_index = app->app_index;
Florin Coras053a0e42018-11-13 15:52:38 -08001101 a->api_client_index = client_index;
Florin Coras6cf30ad2017-04-04 23:08:23 -07001102 vnet_application_detach (a);
1103 }
1104 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001105}
1106
Florin Coras6cf30ad2017-04-04 23:08:23 -07001107VL_MSG_API_REAPER_FUNCTION (application_reaper_cb);
Dave Barach68b0fb02017-02-28 15:15:56 -05001108
1109#define vl_msg_name_crc_list
1110#include <vnet/vnet_all_api_h.h>
1111#undef vl_msg_name_crc_list
1112
1113static void
1114setup_message_id_table (api_main_t * am)
1115{
1116#define _(id,n,crc) vl_msg_api_add_msg_name_crc (am, #n "_" #crc, id);
1117 foreach_vl_msg_name_crc_session;
1118#undef _
1119}
1120
1121/*
1122 * session_api_hookup
1123 * Add uri's API message handlers to the table.
Jim Thompsonf324dec2019-04-08 03:22:21 -05001124 * vlib has already mapped shared memory and
Dave Barach68b0fb02017-02-28 15:15:56 -05001125 * added the client registration handlers.
1126 * See .../open-repo/vlib/memclnt_vlib.c:memclnt_process()
1127 */
1128static clib_error_t *
1129session_api_hookup (vlib_main_t * vm)
1130{
Dave Barach39d69112019-11-27 11:42:13 -05001131 api_main_t *am = vlibapi_get_main ();
Dave Barach68b0fb02017-02-28 15:15:56 -05001132
1133#define _(N,n) \
1134 vl_msg_api_set_handlers(VL_API_##N, #n, \
1135 vl_api_##n##_t_handler, \
1136 vl_noop_handler, \
1137 vl_api_##n##_t_endian, \
1138 vl_api_##n##_t_print, \
1139 sizeof(vl_api_##n##_t), 1);
1140 foreach_session_api_msg;
1141#undef _
1142
1143 /*
Dave Barach68b0fb02017-02-28 15:15:56 -05001144 * Set up the (msg_name, crc, message-id) table
1145 */
1146 setup_message_id_table (am);
1147
1148 return 0;
1149}
1150
1151VLIB_API_INIT_FUNCTION (session_api_hookup);
Florin Coras6cf30ad2017-04-04 23:08:23 -07001152
Dave Barach68b0fb02017-02-28 15:15:56 -05001153/*
Florin Coras61ae0562020-09-02 19:10:28 -07001154 * Socket api functions
1155 */
1156
1157static void
1158sapi_send_fds (app_worker_t * app_wrk, int *fds, int n_fds)
1159{
1160 app_sapi_msg_t smsg = { 0 };
1161 app_namespace_t *app_ns;
1162 application_t *app;
1163 clib_socket_t *cs;
1164 u32 cs_index;
1165
1166 app = application_get (app_wrk->app_index);
1167 app_ns = app_namespace_get (app->ns_index);
1168 cs_index = appns_sapi_handle_sock_index (app_wrk->api_client_index);
1169 cs = appns_sapi_get_socket (app_ns, cs_index);
Florin Coras1c0573d2020-09-23 10:31:27 -07001170 if (PREDICT_FALSE (!cs))
1171 return;
Florin Coras61ae0562020-09-02 19:10:28 -07001172
1173 /* There's no payload for the message only the type */
1174 smsg.type = APP_SAPI_MSG_TYPE_SEND_FDS;
1175 clib_socket_sendmsg (cs, &smsg, sizeof (smsg), fds, n_fds);
1176}
1177
1178static int
1179mq_send_add_segment_sapi_cb (u32 app_wrk_index, u64 segment_handle)
1180{
1181 int fds[SESSION_N_FD_TYPE], n_fds = 0;
1182 svm_msg_q_msg_t _msg, *msg = &_msg;
1183 session_app_add_segment_msg_t *mp;
1184 app_worker_t *app_wrk;
1185 session_event_t *evt;
1186 svm_msg_q_t *app_mq;
1187 fifo_segment_t *fs;
1188 ssvm_private_t *sp;
1189 u8 fd_flags = 0;
1190
1191 app_wrk = app_worker_get (app_wrk_index);
1192
1193 fs = segment_manager_get_segment_w_handle (segment_handle);
1194 sp = &fs->ssvm;
1195 ASSERT (ssvm_type (sp) == SSVM_SEGMENT_MEMFD);
1196
1197 fd_flags |= SESSION_FD_F_MEMFD_SEGMENT;
1198 fds[n_fds] = sp->fd;
1199 n_fds += 1;
1200
1201 app_mq = app_wrk->event_queue;
1202 if (mq_try_lock_and_alloc_msg (app_mq, msg))
1203 return -1;
1204
1205 /*
1206 * Send the fd over api socket
1207 */
1208 sapi_send_fds (app_wrk, fds, n_fds);
1209
1210 /*
1211 * Send the actual message over mq
1212 */
1213 evt = svm_msg_q_msg_data (app_mq, msg);
1214 clib_memset (evt, 0, sizeof (*evt));
1215 evt->event_type = SESSION_CTRL_EVT_APP_ADD_SEGMENT;
1216 mp = (session_app_add_segment_msg_t *) evt->data;
1217 clib_memset (mp, 0, sizeof (*mp));
1218 mp->segment_size = sp->ssvm_size;
1219 mp->fd_flags = fd_flags;
1220 mp->segment_handle = segment_handle;
1221 strncpy ((char *) mp->segment_name, (char *) sp->name,
1222 sizeof (mp->segment_name) - 1);
1223
1224 svm_msg_q_add_and_unlock (app_mq, msg);
1225
1226 return 0;
1227}
1228
1229static int
1230mq_send_del_segment_sapi_cb (u32 app_wrk_index, u64 segment_handle)
1231{
1232 svm_msg_q_msg_t _msg, *msg = &_msg;
1233 session_app_del_segment_msg_t *mp;
1234 app_worker_t *app_wrk;
1235 session_event_t *evt;
1236 svm_msg_q_t *app_mq;
1237
1238 app_wrk = app_worker_get (app_wrk_index);
1239
1240 app_mq = app_wrk->event_queue;
1241 if (mq_try_lock_and_alloc_msg (app_mq, msg))
1242 return -1;
1243
1244 evt = svm_msg_q_msg_data (app_mq, msg);
1245 clib_memset (evt, 0, sizeof (*evt));
1246 evt->event_type = SESSION_CTRL_EVT_APP_DEL_SEGMENT;
1247 mp = (session_app_del_segment_msg_t *) evt->data;
1248 clib_memset (mp, 0, sizeof (*mp));
1249 mp->segment_handle = segment_handle;
1250 svm_msg_q_add_and_unlock (app_mq, msg);
1251
1252 return 0;
1253}
1254
1255static session_cb_vft_t session_mq_sapi_cb_vft = {
1256 .session_accept_callback = mq_send_session_accepted_cb,
1257 .session_disconnect_callback = mq_send_session_disconnected_cb,
1258 .session_connected_callback = mq_send_session_connected_cb,
1259 .session_reset_callback = mq_send_session_reset_cb,
1260 .session_migrate_callback = mq_send_session_migrate_cb,
1261 .session_cleanup_callback = mq_send_session_cleanup_cb,
1262 .add_segment_callback = mq_send_add_segment_sapi_cb,
1263 .del_segment_callback = mq_send_del_segment_sapi_cb,
1264};
1265
1266static void
1267session_api_attach_handler (app_namespace_t * app_ns, clib_socket_t * cs,
1268 app_sapi_attach_msg_t * mp)
1269{
1270 int rv = 0, fds[SESSION_N_FD_TYPE], n_fds = 0;
1271 vnet_app_attach_args_t _a, *a = &_a;
1272 app_sapi_attach_reply_msg_t *rmp;
Florin Coras04943b42020-12-25 11:45:40 -08001273 fifo_segment_t *evt_q_segment;
Florin Coras61ae0562020-09-02 19:10:28 -07001274 u8 fd_flags = 0, ctrl_thread;
1275 app_ns_api_handle_t *handle;
1276 app_sapi_msg_t msg = { 0 };
1277 app_worker_t *app_wrk;
Florin Coras61ae0562020-09-02 19:10:28 -07001278 application_t *app;
1279
1280 /* Make sure name is null terminated */
1281 mp->name[63] = 0;
1282
1283 clib_memset (a, 0, sizeof (*a));
1284 a->api_client_index = appns_sapi_socket_handle (app_ns, cs);
1285 a->name = format (0, "%s", (char *) mp->name);
1286 a->options = mp->options;
1287 a->session_cb_vft = &session_mq_sapi_cb_vft;
1288 a->use_sock_api = 1;
1289 a->options[APP_OPTIONS_NAMESPACE] = app_namespace_index (app_ns);
1290
1291 if ((rv = vnet_application_attach (a)))
1292 {
1293 clib_warning ("attach returned: %d", rv);
1294 goto done;
1295 }
1296
1297 /* Send event queues segment */
1298 if ((evt_q_segment = session_main_get_evt_q_segment ()))
1299 {
1300 fd_flags |= SESSION_FD_F_VPP_MQ_SEGMENT;
Florin Coras04943b42020-12-25 11:45:40 -08001301 fds[n_fds] = evt_q_segment->ssvm.fd;
Florin Coras61ae0562020-09-02 19:10:28 -07001302 n_fds += 1;
1303 }
1304 /* Send fifo segment fd if needed */
1305 if (ssvm_type (a->segment) == SSVM_SEGMENT_MEMFD)
1306 {
1307 fd_flags |= SESSION_FD_F_MEMFD_SEGMENT;
1308 fds[n_fds] = a->segment->fd;
1309 n_fds += 1;
1310 }
1311 if (a->options[APP_OPTIONS_FLAGS] & APP_OPTIONS_FLAGS_EVT_MQ_USE_EVENTFD)
1312 {
1313 fd_flags |= SESSION_FD_F_MQ_EVENTFD;
Florin Coras86f12322021-01-22 15:05:14 -08001314 fds[n_fds] = svm_msg_q_get_eventfd (a->app_evt_q);
Florin Coras61ae0562020-09-02 19:10:28 -07001315 n_fds += 1;
1316 }
1317
1318done:
1319
1320 msg.type = APP_SAPI_MSG_TYPE_ATTACH_REPLY;
1321 rmp = &msg.attach_reply;
1322 rmp->retval = rv;
1323 if (!rv)
1324 {
1325 ctrl_thread = vlib_num_workers ()? 1 : 0;
Florin Coras61ae0562020-09-02 19:10:28 -07001326 rmp->app_index = a->app_index;
Florin Corasb4624182020-12-11 13:58:12 -08001327 rmp->app_mq =
1328 fifo_segment_msg_q_offset ((fifo_segment_t *) a->segment, 0);
1329 rmp->vpp_ctrl_mq =
1330 fifo_segment_msg_q_offset (evt_q_segment, ctrl_thread);
Florin Coras61ae0562020-09-02 19:10:28 -07001331 rmp->vpp_ctrl_mq_thread = ctrl_thread;
1332 rmp->n_fds = n_fds;
1333 rmp->fd_flags = fd_flags;
1334 /* No segment name and size since we only support memfds
1335 * in this configuration */
1336 rmp->segment_handle = a->segment_handle;
1337 rmp->api_client_handle = a->api_client_index;
1338
1339 /* Update app index for socket */
1340 handle = (app_ns_api_handle_t *) & cs->private_data;
1341 app = application_get (a->app_index);
1342 app_wrk = application_get_worker (app, 0);
1343 handle->aah_app_wrk_index = app_wrk->wrk_index;
1344 }
1345
1346 clib_socket_sendmsg (cs, &msg, sizeof (msg), fds, n_fds);
1347 vec_free (a->name);
1348}
1349
1350static void
1351sapi_socket_close_w_handle (u32 api_handle)
1352{
1353 app_namespace_t *app_ns = app_namespace_get (api_handle >> 16);
1354 u16 sock_index = api_handle & 0xffff;
1355 app_ns_api_handle_t *handle;
1356 clib_socket_t *cs;
1357 clib_file_t *cf;
1358
1359 cs = appns_sapi_get_socket (app_ns, sock_index);
1360 if (!cs)
1361 return;
1362
1363 handle = (app_ns_api_handle_t *) & cs->private_data;
1364 cf = clib_file_get (&file_main, handle->aah_file_index);
1365 clib_file_del (&file_main, cf);
1366
1367 clib_socket_close (cs);
1368 appns_sapi_free_socket (app_ns, cs);
1369}
1370
1371static void
1372sapi_add_del_worker_handler (app_namespace_t * app_ns,
1373 clib_socket_t * cs,
1374 app_sapi_worker_add_del_msg_t * mp)
1375{
1376 int rv = 0, fds[SESSION_N_FD_TYPE], n_fds = 0;
1377 app_sapi_worker_add_del_reply_msg_t *rmp;
1378 app_ns_api_handle_t *handle;
1379 app_sapi_msg_t msg = { 0 };
1380 app_worker_t *app_wrk;
Florin Corascc7c88e2020-09-15 15:56:51 -07001381 u32 sapi_handle = -1;
Florin Coras61ae0562020-09-02 19:10:28 -07001382 application_t *app;
Florin Coras61ae0562020-09-02 19:10:28 -07001383 u8 fd_flags = 0;
1384
1385 app = application_get_if_valid (mp->app_index);
1386 if (!app)
1387 {
1388 rv = VNET_API_ERROR_INVALID_VALUE;
1389 goto done;
1390 }
1391
1392 sapi_handle = appns_sapi_socket_handle (app_ns, cs);
1393
1394 vnet_app_worker_add_del_args_t args = {
1395 .app_index = app->app_index,
1396 .wrk_map_index = mp->wrk_index,
1397 .api_client_index = sapi_handle,
1398 .is_add = mp->is_add
1399 };
1400 rv = vnet_app_worker_add_del (&args);
1401 if (rv)
1402 {
1403 clib_warning ("app worker add/del returned: %d", rv);
1404 goto done;
1405 }
1406
1407 if (!mp->is_add)
1408 {
1409 sapi_socket_close_w_handle (sapi_handle);
1410 goto done;
1411 }
1412
1413 /* Send fifo segment fd if needed */
1414 if (ssvm_type (args.segment) == SSVM_SEGMENT_MEMFD)
1415 {
1416 fd_flags |= SESSION_FD_F_MEMFD_SEGMENT;
1417 fds[n_fds] = args.segment->fd;
1418 n_fds += 1;
1419 }
1420 if (application_segment_manager_properties (app)->use_mq_eventfd)
1421 {
1422 fd_flags |= SESSION_FD_F_MQ_EVENTFD;
Florin Coras86f12322021-01-22 15:05:14 -08001423 fds[n_fds] = svm_msg_q_get_eventfd (args.evt_q);
Florin Coras61ae0562020-09-02 19:10:28 -07001424 n_fds += 1;
1425 }
1426
1427done:
1428
1429 msg.type = APP_SAPI_MSG_TYPE_ADD_DEL_WORKER_REPLY;
1430 rmp = &msg.worker_add_del_reply;
1431 rmp->retval = rv;
1432 rmp->is_add = mp->is_add;
Florin Corascc7c88e2020-09-15 15:56:51 -07001433 rmp->api_client_handle = sapi_handle;
Florin Coras61ae0562020-09-02 19:10:28 -07001434 rmp->wrk_index = args.wrk_map_index;
1435 rmp->segment_handle = args.segment_handle;
1436 if (!rv && mp->is_add)
1437 {
1438 /* No segment name and size. This supports only memfds */
Florin Corasb4624182020-12-11 13:58:12 -08001439 rmp->app_event_queue_address =
1440 fifo_segment_msg_q_offset ((fifo_segment_t *) args.segment, 0);
Florin Coras61ae0562020-09-02 19:10:28 -07001441 rmp->n_fds = n_fds;
1442 rmp->fd_flags = fd_flags;
1443
1444 /* Update app index for socket */
1445 handle = (app_ns_api_handle_t *) & cs->private_data;
1446 app_wrk = application_get_worker (app, args.wrk_map_index);
1447 handle->aah_app_wrk_index = app_wrk->wrk_index;
1448 }
1449
1450 clib_socket_sendmsg (cs, &msg, sizeof (msg), fds, n_fds);
1451}
1452
1453static void
1454sapi_socket_detach (app_namespace_t * app_ns, clib_socket_t * cs)
1455{
Florin Coras61ae0562020-09-02 19:10:28 -07001456 app_ns_api_handle_t *handle;
1457 app_worker_t *app_wrk;
1458 u32 api_client_handle;
1459
1460 api_client_handle = appns_sapi_socket_handle (app_ns, cs);
1461 sapi_socket_close_w_handle (api_client_handle);
1462
Florin Corasf99a7d62020-09-14 10:29:29 -07001463 /* Cleanup everything because app worker closed socket or crashed */
Florin Coras61ae0562020-09-02 19:10:28 -07001464 handle = (app_ns_api_handle_t *) & cs->private_data;
1465 app_wrk = app_worker_get (handle->aah_app_wrk_index);
Florin Corasf99a7d62020-09-14 10:29:29 -07001466
1467 vnet_app_worker_add_del_args_t args = {
1468 .app_index = app_wrk->app_index,
1469 .wrk_map_index = app_wrk->wrk_map_index,
1470 .api_client_index = api_client_handle,
1471 .is_add = 0
1472 };
1473 /* Send rpc to main thread for worker barrier */
1474 vlib_rpc_call_main_thread (vnet_app_worker_add_del, (u8 *) & args,
1475 sizeof (args));
Florin Coras61ae0562020-09-02 19:10:28 -07001476}
1477
1478static clib_error_t *
1479sapi_sock_read_ready (clib_file_t * cf)
1480{
1481 app_ns_api_handle_t *handle = (app_ns_api_handle_t *) & cf->private_data;
Florin Coras7360e3d2020-09-18 16:15:47 -07001482 vlib_main_t *vm = vlib_get_main ();
Florin Coras61ae0562020-09-02 19:10:28 -07001483 app_sapi_msg_t msg = { 0 };
1484 app_namespace_t *app_ns;
1485 clib_error_t *err = 0;
1486 clib_socket_t *cs;
1487
1488 app_ns = app_namespace_get (handle->aah_app_ns_index);
1489 cs = appns_sapi_get_socket (app_ns, handle->aah_sock_index);
1490 if (!cs)
1491 goto error;
1492
1493 err = clib_socket_recvmsg (cs, &msg, sizeof (msg), 0, 0);
1494 if (err)
1495 {
1496 clib_error_free (err);
1497 sapi_socket_detach (app_ns, cs);
1498 goto error;
1499 }
1500
1501 handle = (app_ns_api_handle_t *) & cs->private_data;
1502
Florin Coras7360e3d2020-09-18 16:15:47 -07001503 vlib_worker_thread_barrier_sync (vm);
1504
Florin Coras61ae0562020-09-02 19:10:28 -07001505 switch (msg.type)
1506 {
1507 case APP_SAPI_MSG_TYPE_ATTACH:
1508 session_api_attach_handler (app_ns, cs, &msg.attach);
1509 break;
1510 case APP_SAPI_MSG_TYPE_ADD_DEL_WORKER:
1511 sapi_add_del_worker_handler (app_ns, cs, &msg.worker_add_del);
1512 break;
1513 default:
1514 clib_warning ("app wrk %u unknown message type: %u",
1515 handle->aah_app_wrk_index, msg.type);
1516 break;
1517 }
1518
Florin Coras7360e3d2020-09-18 16:15:47 -07001519 vlib_worker_thread_barrier_release (vm);
1520
Florin Coras61ae0562020-09-02 19:10:28 -07001521error:
1522 return 0;
1523}
1524
1525static clib_error_t *
1526sapi_sock_write_ready (clib_file_t * cf)
1527{
1528 app_ns_api_handle_t *handle = (app_ns_api_handle_t *) & cf->private_data;
1529 clib_warning ("called for app ns %u", handle->aah_app_ns_index);
1530 return 0;
1531}
1532
1533static clib_error_t *
1534sapi_sock_error (clib_file_t * cf)
1535{
1536 app_ns_api_handle_t *handle = (app_ns_api_handle_t *) & cf->private_data;
1537 app_namespace_t *app_ns;
1538 clib_socket_t *cs;
1539
1540 app_ns = app_namespace_get (handle->aah_app_ns_index);
1541 cs = appns_sapi_get_socket (app_ns, handle->aah_sock_index);
1542 if (!cs)
1543 return 0;
1544
1545 sapi_socket_detach (app_ns, cs);
1546 return 0;
1547}
1548
1549static clib_error_t *
1550sapi_sock_accept_ready (clib_file_t * scf)
1551{
1552 app_ns_api_handle_t handle = *(app_ns_api_handle_t *) & scf->private_data;
1553 app_namespace_t *app_ns;
1554 clib_file_t cf = { 0 };
1555 clib_error_t *err = 0;
1556 clib_socket_t *ccs, *scs;
1557
1558 /* Listener files point to namespace */
1559 app_ns = app_namespace_get (handle.aah_app_ns_index);
1560
1561 /*
1562 * Initialize client socket
1563 */
1564 ccs = appns_sapi_alloc_socket (app_ns);
1565
1566 /* Grab server socket after client is initialized */
1567 scs = appns_sapi_get_socket (app_ns, handle.aah_sock_index);
1568 if (!scs)
1569 goto error;
1570
1571 err = clib_socket_accept (scs, ccs);
1572 if (err)
1573 {
1574 clib_error_report (err);
1575 goto error;
1576 }
1577
1578 cf.read_function = sapi_sock_read_ready;
1579 cf.write_function = sapi_sock_write_ready;
1580 cf.error_function = sapi_sock_error;
1581 cf.file_descriptor = ccs->fd;
1582 /* File points to app namespace and socket */
1583 handle.aah_sock_index = appns_sapi_socket_index (app_ns, ccs);
Florin Coras6b6c10b2020-09-24 11:58:28 -07001584 cf.private_data = handle.as_u64;
Florin Coras61ae0562020-09-02 19:10:28 -07001585 cf.description = format (0, "app sock conn fd: %d", ccs->fd);
1586
1587 /* Poll until we get an attach message. Socket points to file and
1588 * application that owns the socket */
1589 handle.aah_app_wrk_index = APP_INVALID_INDEX;
1590 handle.aah_file_index = clib_file_add (&file_main, &cf);
Florin Coras6b6c10b2020-09-24 11:58:28 -07001591 ccs->private_data = handle.as_u64;
Florin Coras61ae0562020-09-02 19:10:28 -07001592
1593 return err;
1594
1595error:
1596 appns_sapi_free_socket (app_ns, ccs);
1597 return err;
1598}
1599
1600int
1601appns_sapi_add_ns_socket (app_namespace_t * app_ns)
1602{
1603 char *subdir = "/app_ns_sockets/";
1604 app_ns_api_handle_t *handle;
1605 clib_file_t cf = { 0 };
1606 struct stat file_stat;
1607 clib_error_t *err;
1608 clib_socket_t *cs;
1609 u8 *dir = 0;
1610 int rv = 0;
1611
1612 vec_add (dir, vlib_unix_get_runtime_dir (),
1613 strlen (vlib_unix_get_runtime_dir ()));
1614 vec_add (dir, (u8 *) subdir, strlen (subdir));
1615
1616 err = vlib_unix_recursive_mkdir ((char *) dir);
1617 if (err)
1618 {
1619 clib_error_report (err);
1620 rv = -1;
1621 goto error;
1622 }
1623
1624 app_ns->sock_name = format (0, "%v%v%c", dir, app_ns->ns_id, 0);
1625
1626 /*
1627 * Create and initialize socket to listen on
1628 */
1629 cs = appns_sapi_alloc_socket (app_ns);
1630 cs->config = (char *) app_ns->sock_name;
1631 cs->flags = CLIB_SOCKET_F_IS_SERVER |
1632 CLIB_SOCKET_F_ALLOW_GROUP_WRITE |
1633 CLIB_SOCKET_F_SEQPACKET | CLIB_SOCKET_F_PASSCRED;
1634
1635 if ((err = clib_socket_init (cs)))
1636 {
1637 clib_error_report (err);
1638 rv = -1;
1639 goto error;
1640 }
1641
1642 if (stat ((char *) app_ns->sock_name, &file_stat) == -1)
1643 {
1644 rv = -1;
1645 goto error;
1646 }
1647
1648 /*
1649 * Start polling it
1650 */
1651 cf.read_function = sapi_sock_accept_ready;
1652 cf.file_descriptor = cs->fd;
1653 /* File points to namespace */
1654 handle = (app_ns_api_handle_t *) & cf.private_data;
1655 handle->aah_app_ns_index = app_namespace_index (app_ns);
1656 handle->aah_sock_index = appns_sapi_socket_index (app_ns, cs);
1657 cf.description = format (0, "app sock listener: %s", app_ns->sock_name);
1658
1659 /* Socket points to clib file index */
1660 handle = (app_ns_api_handle_t *) & cs->private_data;
1661 handle->aah_file_index = clib_file_add (&file_main, &cf);
1662 handle->aah_app_wrk_index = APP_INVALID_INDEX;
1663
1664error:
1665 vec_free (dir);
1666 return rv;
1667}
1668
1669/*
Dave Barach68b0fb02017-02-28 15:15:56 -05001670 * fd.io coding-style-patch-verification: ON
1671 *
1672 * Local Variables:
1673 * eval: (c-set-style "gnu")
1674 * End:
1675 */