blob: 0116a7ece66b90604955beadd6d665c657635f0e [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 Corasb4624182020-12-11 13:58:12 -0800131 svm_msg_q_t *app_mq;
132 fifo_segment_t *eq_seg;
Florin Coras288eaab2019-02-03 15:26:14 -0800133 session_t *listener;
Florin Coras52207f12018-07-12 14:48:06 -0700134 session_accepted_msg_t *mp;
135 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);
139 app_mq = app_wrk->event_queue;
Florin Coras83ea6692018-10-12 16:55:14 -0700140 if (mq_try_lock_and_alloc_msg (app_mq, msg))
Florin Coras00e01d32019-10-21 16:07:46 -0700141 return SESSION_E_MQ_MSG_ALLOC;
Florin Coras52207f12018-07-12 14:48:06 -0700142
143 evt = svm_msg_q_msg_data (app_mq, msg);
Dave Barachb7b92992018-10-17 10:38:51 -0400144 clib_memset (evt, 0, sizeof (*evt));
Florin Coras52207f12018-07-12 14:48:06 -0700145 evt->event_type = SESSION_CTRL_EVT_ACCEPTED;
146 mp = (session_accepted_msg_t *) evt->data;
Florin Coras87c65702019-01-26 14:33:26 -0800147 clib_memset (mp, 0, sizeof (*mp));
Florin Corasab2f6db2018-08-31 14:31:41 -0700148 mp->context = app->app_index;
Florin Coras14f066e2020-12-10 18:52:40 -0800149 mp->server_rx_fifo = fifo_segment_fifo_offset (s->rx_fifo);
150 mp->server_tx_fifo = fifo_segment_fifo_offset (s->tx_fifo);
Florin Corasfa76a762018-11-29 12:40:10 -0800151 mp->segment_handle = session_segment_handle (s);
Nathan Skrzypczakc00f4802019-12-03 16:25:11 +0100152 mp->flags = s->flags;
Florin Coras52207f12018-07-12 14:48:06 -0700153
Florin Corasb4624182020-12-11 13:58:12 -0800154 eq_seg = session_main_get_evt_q_segment ();
155
Florin Coras52207f12018-07-12 14:48:06 -0700156 if (session_has_transport (s))
157 {
Nathan Skrzypczak2f0f96b2019-06-13 10:14:28 +0200158 listener = listen_session_get_from_handle (s->listener_handle);
Florin Coras87d66332019-06-11 12:31:31 -0700159 mp->listener_handle = app_listen_session_handle (listener);
Florin Coras52207f12018-07-12 14:48:06 -0700160 if (application_is_proxy (app))
161 {
162 listener =
Florin Coras15531972018-08-12 23:50:53 -0700163 app_worker_first_listener (app_wrk, session_get_fib_proto (s),
164 session_get_transport_proto (s));
Florin Coras52207f12018-07-12 14:48:06 -0700165 if (listener)
166 mp->listener_handle = listen_session_get_handle (listener);
167 }
Florin Corasb4624182020-12-11 13:58:12 -0800168 mp->vpp_event_queue_address =
169 fifo_segment_msg_q_offset (eq_seg, s->thread_index);
170 mp->mq_index = s->thread_index;
Florin Coras52207f12018-07-12 14:48:06 -0700171 mp->handle = session_handle (s);
Aloys Augustincdb71702019-04-08 17:54:39 +0200172
Florin Coras09d18c22019-04-24 11:10:02 -0700173 session_get_endpoint (s, &mp->rmt, 0 /* is_lcl */ );
Florin Coras52207f12018-07-12 14:48:06 -0700174 }
175 else
176 {
Florin Coras2b81e3c2019-02-27 07:55:46 -0800177 ct_connection_t *ct;
Florin Coras99368312018-08-02 10:45:44 -0700178
Florin Coras2b81e3c2019-02-27 07:55:46 -0800179 ct = (ct_connection_t *) session_get_transport (s);
Nathan Skrzypczak2f0f96b2019-06-13 10:14:28 +0200180 listener = listen_session_get_from_handle (s->listener_handle);
Florin Coras87d66332019-06-11 12:31:31 -0700181 mp->listener_handle = app_listen_session_handle (listener);
Florin Coras09d18c22019-04-24 11:10:02 -0700182 mp->rmt.is_ip4 = session_type_is_ip4 (listener->session_type);
183 mp->rmt.port = ct->c_rmt_port;
Florin Coras2b81e3c2019-02-27 07:55:46 -0800184 mp->handle = session_handle (s);
Florin Corasb4624182020-12-11 13:58:12 -0800185 mp->vpp_event_queue_address =
186 fifo_segment_msg_q_offset (eq_seg, s->thread_index);
187 mp->mq_index = s->thread_index;
Florin Coras52207f12018-07-12 14:48:06 -0700188 }
Florin Coras537b17e2018-09-28 10:35:45 -0700189 svm_msg_q_add_and_unlock (app_mq, msg);
Florin Coras52207f12018-07-12 14:48:06 -0700190
191 return 0;
192}
193
Florin Coras72b04282019-01-14 17:23:11 -0800194static inline void
195mq_send_session_close_evt (app_worker_t * app_wrk, session_handle_t sh,
196 session_evt_type_t evt_type)
Florin Coras52207f12018-07-12 14:48:06 -0700197{
Florin Coras52207f12018-07-12 14:48:06 -0700198 svm_msg_q_msg_t _msg, *msg = &_msg;
199 session_disconnected_msg_t *mp;
200 svm_msg_q_t *app_mq;
201 session_event_t *evt;
202
Florin Coras15531972018-08-12 23:50:53 -0700203 app_mq = app_wrk->event_queue;
Florin Coras83ea6692018-10-12 16:55:14 -0700204 if (mq_try_lock_and_alloc_msg (app_mq, msg))
205 return;
Florin Coras52207f12018-07-12 14:48:06 -0700206 evt = svm_msg_q_msg_data (app_mq, msg);
Dave Barachb7b92992018-10-17 10:38:51 -0400207 clib_memset (evt, 0, sizeof (*evt));
Florin Coras72b04282019-01-14 17:23:11 -0800208 evt->event_type = evt_type;
Florin Coras52207f12018-07-12 14:48:06 -0700209 mp = (session_disconnected_msg_t *) evt->data;
Florin Coras72b04282019-01-14 17:23:11 -0800210 mp->handle = sh;
Florin Corasc1f5a432018-11-20 11:31:26 -0800211 mp->context = app_wrk->api_client_index;
Florin Coras537b17e2018-09-28 10:35:45 -0700212 svm_msg_q_add_and_unlock (app_mq, msg);
Florin Coras52207f12018-07-12 14:48:06 -0700213}
214
Florin Coras72b04282019-01-14 17:23:11 -0800215static inline void
216mq_notify_close_subscribers (u32 app_index, session_handle_t sh,
217 svm_fifo_t * f, session_evt_type_t evt_type)
218{
219 app_worker_t *app_wrk;
220 application_t *app;
221 int i;
222
223 app = application_get (app_index);
224 if (!app)
225 return;
226
Florin Corasc547e912020-12-08 17:50:45 -0800227 for (i = 0; i < f->shr->n_subscribers; i++)
Florin Coras72b04282019-01-14 17:23:11 -0800228 {
Florin Corasc547e912020-12-08 17:50:45 -0800229 if (!(app_wrk = application_get_worker (app, f->shr->subscribers[i])))
Florin Coras72b04282019-01-14 17:23:11 -0800230 continue;
231 mq_send_session_close_evt (app_wrk, sh, SESSION_CTRL_EVT_DISCONNECTED);
232 }
233}
234
235static void
Florin Coras288eaab2019-02-03 15:26:14 -0800236mq_send_session_disconnected_cb (session_t * s)
Florin Coras72b04282019-01-14 17:23:11 -0800237{
238 app_worker_t *app_wrk = app_worker_get (s->app_wrk_index);
239 session_handle_t sh = session_handle (s);
240
241 mq_send_session_close_evt (app_wrk, session_handle (s),
242 SESSION_CTRL_EVT_DISCONNECTED);
243
Florin Coras288eaab2019-02-03 15:26:14 -0800244 if (svm_fifo_n_subscribers (s->rx_fifo))
245 mq_notify_close_subscribers (app_wrk->app_index, sh, s->rx_fifo,
Florin Coras72b04282019-01-14 17:23:11 -0800246 SESSION_CTRL_EVT_DISCONNECTED);
247}
248
Florin Coras52207f12018-07-12 14:48:06 -0700249static void
Florin Coras288eaab2019-02-03 15:26:14 -0800250mq_send_session_reset_cb (session_t * s)
Florin Coras52207f12018-07-12 14:48:06 -0700251{
Florin Coras72b04282019-01-14 17:23:11 -0800252 app_worker_t *app_wrk = app_worker_get (s->app_wrk_index);
253 session_handle_t sh = session_handle (s);
Florin Coras52207f12018-07-12 14:48:06 -0700254
Florin Coras72b04282019-01-14 17:23:11 -0800255 mq_send_session_close_evt (app_wrk, sh, SESSION_CTRL_EVT_RESET);
256
Florin Coras288eaab2019-02-03 15:26:14 -0800257 if (svm_fifo_n_subscribers (s->rx_fifo))
258 mq_notify_close_subscribers (app_wrk->app_index, sh, s->rx_fifo,
Florin Coras72b04282019-01-14 17:23:11 -0800259 SESSION_CTRL_EVT_RESET);
Florin Coras52207f12018-07-12 14:48:06 -0700260}
261
Florin Coras458089b2019-08-21 16:20:44 -0700262int
Florin Coras15531972018-08-12 23:50:53 -0700263mq_send_session_connected_cb (u32 app_wrk_index, u32 api_context,
Florin Coras00e01d32019-10-21 16:07:46 -0700264 session_t * s, session_error_t err)
Florin Coras52207f12018-07-12 14:48:06 -0700265{
266 svm_msg_q_msg_t _msg, *msg = &_msg;
267 session_connected_msg_t *mp;
Florin Corasb4624182020-12-11 13:58:12 -0800268 svm_msg_q_t *app_mq;
Florin Coras52207f12018-07-12 14:48:06 -0700269 transport_connection_t *tc;
Florin Corasb4624182020-12-11 13:58:12 -0800270 fifo_segment_t *eq_seg;
Florin Coras15531972018-08-12 23:50:53 -0700271 app_worker_t *app_wrk;
Florin Coras52207f12018-07-12 14:48:06 -0700272 session_event_t *evt;
Florin Coras52207f12018-07-12 14:48:06 -0700273
Florin Coras15531972018-08-12 23:50:53 -0700274 app_wrk = app_worker_get (app_wrk_index);
Florin Coras15531972018-08-12 23:50:53 -0700275 app_mq = app_wrk->event_queue;
Florin Coras52207f12018-07-12 14:48:06 -0700276 if (!app_mq)
277 {
Florin Corasc1f5a432018-11-20 11:31:26 -0800278 clib_warning ("app %u with api index: %u not attached",
279 app_wrk->app_index, app_wrk->api_client_index);
Florin Coras52207f12018-07-12 14:48:06 -0700280 return -1;
281 }
282
Florin Coras83ea6692018-10-12 16:55:14 -0700283 if (mq_try_lock_and_alloc_msg (app_mq, msg))
Florin Coras00e01d32019-10-21 16:07:46 -0700284 return SESSION_E_MQ_MSG_ALLOC;
Florin Corasdc2e2512018-12-03 17:47:26 -0800285
Florin Coras52207f12018-07-12 14:48:06 -0700286 evt = svm_msg_q_msg_data (app_mq, msg);
Dave Barachb7b92992018-10-17 10:38:51 -0400287 clib_memset (evt, 0, sizeof (*evt));
Florin Coras52207f12018-07-12 14:48:06 -0700288 evt->event_type = SESSION_CTRL_EVT_CONNECTED;
289 mp = (session_connected_msg_t *) evt->data;
Florin Coras87c65702019-01-26 14:33:26 -0800290 clib_memset (mp, 0, sizeof (*mp));
Florin Coras52207f12018-07-12 14:48:06 -0700291 mp->context = api_context;
292
Florin Coras00e01d32019-10-21 16:07:46 -0700293 if (err)
Florin Coras52207f12018-07-12 14:48:06 -0700294 goto done;
295
Florin Corasb4624182020-12-11 13:58:12 -0800296 eq_seg = session_main_get_evt_q_segment ();
297
Florin Coras52207f12018-07-12 14:48:06 -0700298 if (session_has_transport (s))
299 {
300 tc = session_get_transport (s);
301 if (!tc)
302 {
Florin Coras00e01d32019-10-21 16:07:46 -0700303 clib_warning ("failed to retrieve transport!");
304 err = SESSION_E_REFUSED;
Florin Coras52207f12018-07-12 14:48:06 -0700305 goto done;
306 }
307
Florin Coras52207f12018-07-12 14:48:06 -0700308 mp->handle = session_handle (s);
Florin Corasb4624182020-12-11 13:58:12 -0800309 mp->vpp_event_queue_address =
310 fifo_segment_msg_q_offset (eq_seg, s->thread_index);
Aloys Augustincdb71702019-04-08 17:54:39 +0200311
Florin Coras09d18c22019-04-24 11:10:02 -0700312 session_get_endpoint (s, &mp->lcl, 1 /* is_lcl */ );
Aloys Augustincdb71702019-04-08 17:54:39 +0200313
Florin Coras14f066e2020-12-10 18:52:40 -0800314 mp->server_rx_fifo = fifo_segment_fifo_offset (s->rx_fifo);
315 mp->server_tx_fifo = fifo_segment_fifo_offset (s->tx_fifo);
Florin Coras2b81e3c2019-02-27 07:55:46 -0800316 mp->segment_handle = session_segment_handle (s);
Florin Coras52207f12018-07-12 14:48:06 -0700317 }
318 else
319 {
Florin Coras2b81e3c2019-02-27 07:55:46 -0800320 ct_connection_t *cct;
321 session_t *ss;
Florin Coras99368312018-08-02 10:45:44 -0700322
Florin Coras2b81e3c2019-02-27 07:55:46 -0800323 cct = (ct_connection_t *) session_get_transport (s);
Florin Coras2b81e3c2019-02-27 07:55:46 -0800324 mp->handle = session_handle (s);
Florin Coras09d18c22019-04-24 11:10:02 -0700325 mp->lcl.port = cct->c_lcl_port;
326 mp->lcl.is_ip4 = cct->c_is_ip4;
Florin Corasb4624182020-12-11 13:58:12 -0800327 mp->vpp_event_queue_address =
328 fifo_segment_msg_q_offset (eq_seg, s->thread_index);
Florin Coras14f066e2020-12-10 18:52:40 -0800329 mp->server_rx_fifo = fifo_segment_fifo_offset (s->rx_fifo);
330 mp->server_tx_fifo = fifo_segment_fifo_offset (s->tx_fifo);
Florin Coras653e43f2019-03-04 10:56:23 -0800331 mp->segment_handle = session_segment_handle (s);
Florin Coras2b81e3c2019-02-27 07:55:46 -0800332 ss = ct_session_get_peer (s);
Florin Coras14f066e2020-12-10 18:52:40 -0800333 mp->ct_rx_fifo = fifo_segment_fifo_offset (ss->tx_fifo);
334 mp->ct_tx_fifo = fifo_segment_fifo_offset (ss->rx_fifo);
Florin Coras653e43f2019-03-04 10:56:23 -0800335 mp->ct_segment_handle = session_segment_handle (ss);
Florin Coras52207f12018-07-12 14:48:06 -0700336 }
337
338done:
Florin Coras00e01d32019-10-21 16:07:46 -0700339 mp->retval = err;
Florin Coras52207f12018-07-12 14:48:06 -0700340
Florin Coras537b17e2018-09-28 10:35:45 -0700341 svm_msg_q_add_and_unlock (app_mq, msg);
Florin Coras52207f12018-07-12 14:48:06 -0700342 return 0;
343}
344
Florin Coras458089b2019-08-21 16:20:44 -0700345int
Florin Coras60116992018-08-27 09:52:18 -0700346mq_send_session_bound_cb (u32 app_wrk_index, u32 api_context,
347 session_handle_t handle, int rv)
348{
349 svm_msg_q_msg_t _msg, *msg = &_msg;
Florin Corasb4624182020-12-11 13:58:12 -0800350 svm_msg_q_t *app_mq;
Yu Ping0b819152019-05-07 02:24:30 +0800351 transport_endpoint_t tep;
Florin Coras60116992018-08-27 09:52:18 -0700352 session_bound_msg_t *mp;
Florin Corasb4624182020-12-11 13:58:12 -0800353 fifo_segment_t *eq_seg;
Florin Coras60116992018-08-27 09:52:18 -0700354 app_worker_t *app_wrk;
355 session_event_t *evt;
Florin Corasc9940fc2019-02-05 20:55:11 -0800356 app_listener_t *al;
357 session_t *ls = 0;
Florin Coras60116992018-08-27 09:52:18 -0700358 app_wrk = app_worker_get (app_wrk_index);
Florin Coras60116992018-08-27 09:52:18 -0700359 app_mq = app_wrk->event_queue;
360 if (!app_mq)
361 {
Florin Corasc1f5a432018-11-20 11:31:26 -0800362 clib_warning ("app %u with api index: %u not attached",
363 app_wrk->app_index, app_wrk->api_client_index);
Florin Coras60116992018-08-27 09:52:18 -0700364 return -1;
365 }
366
Florin Coras83ea6692018-10-12 16:55:14 -0700367 if (mq_try_lock_and_alloc_msg (app_mq, msg))
Florin Coras00e01d32019-10-21 16:07:46 -0700368 return SESSION_E_MQ_MSG_ALLOC;
Florin Coras83ea6692018-10-12 16:55:14 -0700369
Florin Coras60116992018-08-27 09:52:18 -0700370 evt = svm_msg_q_msg_data (app_mq, msg);
Dave Barachb7b92992018-10-17 10:38:51 -0400371 clib_memset (evt, 0, sizeof (*evt));
Florin Coras60116992018-08-27 09:52:18 -0700372 evt->event_type = SESSION_CTRL_EVT_BOUND;
373 mp = (session_bound_msg_t *) evt->data;
374 mp->context = api_context;
375
376 if (rv)
377 goto done;
378
379 mp->handle = handle;
Florin Corasd4295e62019-02-22 13:11:38 -0800380 al = app_listener_get_w_handle (handle);
381 if (al->session_index != SESSION_INVALID_INDEX)
382 ls = app_listener_get_session (al);
Florin Coras60116992018-08-27 09:52:18 -0700383 else
Florin Corasd4295e62019-02-22 13:11:38 -0800384 ls = app_listener_get_local_session (al);
Yu Ping0b819152019-05-07 02:24:30 +0800385
386 session_get_endpoint (ls, &tep, 1 /* is_lcl */ );
387 mp->lcl_port = tep.port;
388 mp->lcl_is_ip4 = tep.is_ip4;
389 clib_memcpy_fast (mp->lcl_ip, &tep.ip, sizeof (tep.ip));
Florin Coras60116992018-08-27 09:52:18 -0700390
Florin Corasb4624182020-12-11 13:58:12 -0800391 eq_seg = session_main_get_evt_q_segment ();
392 mp->vpp_evt_q = fifo_segment_msg_q_offset (eq_seg, ls->thread_index);
Florin Coras5f45e012019-01-23 09:21:30 -0800393
Florin Coras2b81e3c2019-02-27 07:55:46 -0800394 if (session_transport_service_type (ls) == TRANSPORT_SERVICE_CL)
Florin Coras60116992018-08-27 09:52:18 -0700395 {
Florin Coras14f066e2020-12-10 18:52:40 -0800396 mp->rx_fifo = fifo_segment_fifo_offset (ls->rx_fifo);
397 mp->tx_fifo = fifo_segment_fifo_offset (ls->tx_fifo);
Florin Corasc547e912020-12-08 17:50:45 -0800398 mp->segment_handle = session_segment_handle (ls);
Florin Coras60116992018-08-27 09:52:18 -0700399 }
400
401done:
402 mp->retval = rv;
Florin Coras537b17e2018-09-28 10:35:45 -0700403 svm_msg_q_add_and_unlock (app_mq, msg);
Florin Coras60116992018-08-27 09:52:18 -0700404 return 0;
405}
406
Florin Coras458089b2019-08-21 16:20:44 -0700407void
408mq_send_unlisten_reply (app_worker_t * app_wrk, session_handle_t sh,
409 u32 context, int rv)
410{
411 svm_msg_q_msg_t _msg, *msg = &_msg;
412 session_unlisten_reply_msg_t *ump;
413 svm_msg_q_t *app_mq;
414 session_event_t *evt;
415
416 app_mq = app_wrk->event_queue;
417 if (mq_try_lock_and_alloc_msg (app_mq, msg))
418 return;
419
420 evt = svm_msg_q_msg_data (app_mq, msg);
421 clib_memset (evt, 0, sizeof (*evt));
422 evt->event_type = SESSION_CTRL_EVT_UNLISTEN_REPLY;
423 ump = (session_unlisten_reply_msg_t *) evt->data;
424 ump->context = context;
425 ump->handle = sh;
426 ump->retval = rv;
427 svm_msg_q_add_and_unlock (app_mq, msg);
428}
429
Florin Coras49568af2019-07-31 16:46:24 -0700430static void
431mq_send_session_migrate_cb (session_t * s, session_handle_t new_sh)
432{
Florin Coras68b7e582020-01-21 18:33:23 -0800433 svm_msg_q_msg_t _msg, *msg = &_msg;
434 session_migrated_msg_t *mp;
Florin Corasb4624182020-12-11 13:58:12 -0800435 fifo_segment_t *eq_seg;
Florin Coras68b7e582020-01-21 18:33:23 -0800436 app_worker_t *app_wrk;
437 session_event_t *evt;
438 svm_msg_q_t *app_mq;
Florin Corasb4624182020-12-11 13:58:12 -0800439 u32 thread_index;
440
441 thread_index = session_thread_from_handle (new_sh);
442 eq_seg = session_main_get_evt_q_segment ();
Florin Coras68b7e582020-01-21 18:33:23 -0800443
444 app_wrk = app_worker_get (s->app_wrk_index);
445 app_mq = app_wrk->event_queue;
446 if (mq_try_lock_and_alloc_msg (app_mq, msg))
447 return;
448
449 evt = svm_msg_q_msg_data (app_mq, msg);
450 clib_memset (evt, 0, sizeof (*evt));
451 evt->event_type = SESSION_CTRL_EVT_MIGRATED;
452 mp = (session_migrated_msg_t *) evt->data;
453 mp->handle = session_handle (s);
454 mp->new_handle = new_sh;
Florin Corasb4624182020-12-11 13:58:12 -0800455 mp->vpp_thread_index = thread_index;
456 mp->vpp_evt_q = fifo_segment_msg_q_offset (eq_seg, thread_index);
Florin Corasc547e912020-12-08 17:50:45 -0800457 mp->segment_handle = session_segment_handle (s);
Florin Coras68b7e582020-01-21 18:33:23 -0800458 svm_msg_q_add_and_unlock (app_mq, msg);
Florin Coras49568af2019-07-31 16:46:24 -0700459}
460
Florin Corasc4c4cf52019-08-24 18:17:34 -0700461static int
462mq_send_add_segment_cb (u32 app_wrk_index, u64 segment_handle)
463{
464 int fds[SESSION_N_FD_TYPE], n_fds = 0;
465 svm_msg_q_msg_t _msg, *msg = &_msg;
466 session_app_add_segment_msg_t *mp;
467 vl_api_registration_t *reg;
468 app_worker_t *app_wrk;
469 session_event_t *evt;
470 svm_msg_q_t *app_mq;
471 fifo_segment_t *fs;
472 ssvm_private_t *sp;
473 u8 fd_flags = 0;
474
475 app_wrk = app_worker_get (app_wrk_index);
476
477 reg = vl_mem_api_client_index_to_registration (app_wrk->api_client_index);
478 if (!reg)
479 {
480 clib_warning ("no api registration for client: %u",
481 app_wrk->api_client_index);
482 return -1;
483 }
484
485 fs = segment_manager_get_segment_w_handle (segment_handle);
486 sp = &fs->ssvm;
487 if (ssvm_type (sp) == SSVM_SEGMENT_MEMFD)
488 {
489 if (vl_api_registration_file_index (reg) == VL_API_INVALID_FI)
490 {
491 clib_warning ("can't send memfd fd");
492 return -1;
493 }
494
495 fd_flags |= SESSION_FD_F_MEMFD_SEGMENT;
496 fds[n_fds] = sp->fd;
497 n_fds += 1;
498 }
499
500 app_mq = app_wrk->event_queue;
501 if (mq_try_lock_and_alloc_msg (app_mq, msg))
502 return -1;
503
504 if (n_fds)
505 session_send_fds (reg, fds, n_fds);
506
507 evt = svm_msg_q_msg_data (app_mq, msg);
508 clib_memset (evt, 0, sizeof (*evt));
509 evt->event_type = SESSION_CTRL_EVT_APP_ADD_SEGMENT;
510 mp = (session_app_add_segment_msg_t *) evt->data;
511 clib_memset (mp, 0, sizeof (*mp));
512 mp->segment_size = sp->ssvm_size;
513 mp->fd_flags = fd_flags;
514 mp->segment_handle = segment_handle;
515 strncpy ((char *) mp->segment_name, (char *) sp->name,
516 sizeof (mp->segment_name) - 1);
517
518 svm_msg_q_add_and_unlock (app_mq, msg);
519
520 return 0;
521}
522
523static int
524mq_send_del_segment_cb (u32 app_wrk_index, u64 segment_handle)
525{
526 svm_msg_q_msg_t _msg, *msg = &_msg;
527 session_app_del_segment_msg_t *mp;
528 vl_api_registration_t *reg;
529 app_worker_t *app_wrk;
530 session_event_t *evt;
531 svm_msg_q_t *app_mq;
532
533 app_wrk = app_worker_get (app_wrk_index);
534 reg = vl_mem_api_client_index_to_registration (app_wrk->api_client_index);
535 if (!reg)
536 {
537 clib_warning ("no registration: %u", app_wrk->api_client_index);
538 return -1;
539 }
540
541 app_mq = app_wrk->event_queue;
542 if (mq_try_lock_and_alloc_msg (app_mq, msg))
543 return -1;
544
545 evt = svm_msg_q_msg_data (app_mq, msg);
546 clib_memset (evt, 0, sizeof (*evt));
547 evt->event_type = SESSION_CTRL_EVT_APP_DEL_SEGMENT;
548 mp = (session_app_del_segment_msg_t *) evt->data;
549 clib_memset (mp, 0, sizeof (*mp));
550 mp->segment_handle = segment_handle;
551 svm_msg_q_add_and_unlock (app_mq, msg);
552
553 return 0;
554}
555
Florin Coras9ace36d2019-10-28 13:14:17 -0700556static void
557mq_send_session_cleanup_cb (session_t * s, session_cleanup_ntf_t ntf)
558{
559 svm_msg_q_msg_t _msg, *msg = &_msg;
560 session_cleanup_msg_t *mp;
561 svm_msg_q_t *app_mq;
562 session_event_t *evt;
563 app_worker_t *app_wrk;
564
Florin Coras36d49392020-04-24 23:00:11 +0000565 /* Propagate transport cleanup notifications only if app didn't close */
566 if (ntf == SESSION_CLEANUP_TRANSPORT
567 && s->session_state != SESSION_STATE_TRANSPORT_DELETED)
Florin Coras9ace36d2019-10-28 13:14:17 -0700568 return;
569
570 app_wrk = app_worker_get_if_valid (s->app_wrk_index);
571 if (!app_wrk)
572 return;
573
574 app_mq = app_wrk->event_queue;
575 if (mq_try_lock_and_alloc_msg (app_mq, msg))
576 return;
577
578 evt = svm_msg_q_msg_data (app_mq, msg);
579 clib_memset (evt, 0, sizeof (*evt));
580 evt->event_type = SESSION_CTRL_EVT_CLEANUP;
581 mp = (session_cleanup_msg_t *) evt->data;
582 mp->handle = session_handle (s);
Florin Coras36d49392020-04-24 23:00:11 +0000583 mp->type = ntf;
Florin Coras9ace36d2019-10-28 13:14:17 -0700584 svm_msg_q_add_and_unlock (app_mq, msg);
585}
586
Florin Corasc4c4cf52019-08-24 18:17:34 -0700587static session_cb_vft_t session_mq_cb_vft = {
588 .session_accept_callback = mq_send_session_accepted_cb,
589 .session_disconnect_callback = mq_send_session_disconnected_cb,
590 .session_connected_callback = mq_send_session_connected_cb,
591 .session_reset_callback = mq_send_session_reset_cb,
592 .session_migrate_callback = mq_send_session_migrate_cb,
Florin Coras9ace36d2019-10-28 13:14:17 -0700593 .session_cleanup_callback = mq_send_session_cleanup_cb,
Florin Corasc4c4cf52019-08-24 18:17:34 -0700594 .add_segment_callback = mq_send_add_segment_cb,
595 .del_segment_callback = mq_send_del_segment_cb,
596};
597
Dave Barach68b0fb02017-02-28 15:15:56 -0500598static void
Florin Corase04c2992017-03-01 08:17:34 -0800599vl_api_session_enable_disable_t_handler (vl_api_session_enable_disable_t * mp)
600{
601 vl_api_session_enable_disable_reply_t *rmp;
602 vlib_main_t *vm = vlib_get_main ();
603 int rv = 0;
604
605 vnet_session_enable_disable (vm, mp->is_enable);
606 REPLY_MACRO (VL_API_SESSION_ENABLE_DISABLE_REPLY);
607}
608
Dave Barach68b0fb02017-02-28 15:15:56 -0500609static void
Florin Coras458089b2019-08-21 16:20:44 -0700610vl_api_app_attach_t_handler (vl_api_app_attach_t * mp)
611{
612 int rv = 0, fds[SESSION_N_FD_TYPE], n_fds = 0;
613 vl_api_app_attach_reply_t *rmp;
Florin Corasb4624182020-12-11 13:58:12 -0800614 fifo_segment_t *segp, *evt_q_segment = 0;
Florin Coras458089b2019-08-21 16:20:44 -0700615 vnet_app_attach_args_t _a, *a = &_a;
616 u8 fd_flags = 0, ctrl_thread;
617 vl_api_registration_t *reg;
Florin Coras458089b2019-08-21 16:20:44 -0700618
619 reg = vl_api_client_index_to_registration (mp->client_index);
620 if (!reg)
621 return;
622
Florin Coras61ae0562020-09-02 19:10:28 -0700623 if (!session_main_is_enabled () || appns_sapi_enabled ())
Florin Coras458089b2019-08-21 16:20:44 -0700624 {
625 rv = VNET_API_ERROR_FEATURE_DISABLED;
626 goto done;
627 }
Florin Coras6c10ab22020-11-08 16:50:39 -0800628 /* Only support binary api with socket transport */
629 if (vl_api_registration_file_index (reg) == VL_API_INVALID_FI)
630 {
631 rv = VNET_API_ERROR_APP_UNSUPPORTED_CFG;
632 goto done;
633 }
Florin Coras458089b2019-08-21 16:20:44 -0700634
635 STATIC_ASSERT (sizeof (u64) * APP_OPTIONS_N_OPTIONS <=
636 sizeof (mp->options),
637 "Out of options, fix api message definition");
638
639 clib_memset (a, 0, sizeof (*a));
640 a->api_client_index = mp->client_index;
641 a->options = mp->options;
642 a->session_cb_vft = &session_mq_cb_vft;
Dave Barach77841402020-04-29 17:04:10 -0400643 a->namespace_id = vl_api_from_api_to_new_vec (mp, &mp->namespace_id);
Florin Coras458089b2019-08-21 16:20:44 -0700644
645 if ((rv = vnet_application_attach (a)))
646 {
647 clib_warning ("attach returned: %d", rv);
648 vec_free (a->namespace_id);
649 goto done;
650 }
651 vec_free (a->namespace_id);
652
653 /* Send event queues segment */
654 if ((evt_q_segment = session_main_get_evt_q_segment ()))
655 {
656 fd_flags |= SESSION_FD_F_VPP_MQ_SEGMENT;
Florin Coras04943b42020-12-25 11:45:40 -0800657 fds[n_fds] = evt_q_segment->ssvm.fd;
Florin Coras458089b2019-08-21 16:20:44 -0700658 n_fds += 1;
659 }
660 /* Send fifo segment fd if needed */
661 if (ssvm_type (a->segment) == SSVM_SEGMENT_MEMFD)
662 {
663 fd_flags |= SESSION_FD_F_MEMFD_SEGMENT;
664 fds[n_fds] = a->segment->fd;
665 n_fds += 1;
666 }
667 if (a->options[APP_OPTIONS_FLAGS] & APP_OPTIONS_FLAGS_EVT_MQ_USE_EVENTFD)
668 {
669 fd_flags |= SESSION_FD_F_MQ_EVENTFD;
Florin Coras86f12322021-01-22 15:05:14 -0800670 fds[n_fds] = svm_msg_q_get_eventfd (a->app_evt_q);
Florin Coras458089b2019-08-21 16:20:44 -0700671 n_fds += 1;
672 }
673
674done:
Florin Coras458089b2019-08-21 16:20:44 -0700675 /* *INDENT-OFF* */
676 REPLY_MACRO2 (VL_API_APP_ATTACH_REPLY, ({
677 if (!rv)
678 {
Vratko Polak4f599852019-11-08 10:32:39 +0100679 ctrl_thread = vlib_num_workers () ? 1 : 0;
Florin Corasb4624182020-12-11 13:58:12 -0800680 segp = (fifo_segment_t *) a->segment;
Florin Coras458089b2019-08-21 16:20:44 -0700681 rmp->app_index = clib_host_to_net_u32 (a->app_index);
Florin Corasb4624182020-12-11 13:58:12 -0800682 rmp->app_mq = fifo_segment_msg_q_offset (segp, 0);
683 rmp->vpp_ctrl_mq =
684 fifo_segment_msg_q_offset (evt_q_segment, ctrl_thread);
Florin Coras458089b2019-08-21 16:20:44 -0700685 rmp->vpp_ctrl_mq_thread = ctrl_thread;
686 rmp->n_fds = n_fds;
687 rmp->fd_flags = fd_flags;
Florin Corasb4624182020-12-11 13:58:12 -0800688 if (vec_len (segp->ssvm.name))
Florin Coras458089b2019-08-21 16:20:44 -0700689 {
Florin Corasb4624182020-12-11 13:58:12 -0800690 vl_api_vec_to_api_string (segp->ssvm.name, &rmp->segment_name);
Florin Coras458089b2019-08-21 16:20:44 -0700691 }
Florin Corasb4624182020-12-11 13:58:12 -0800692 rmp->segment_size = segp->ssvm.ssvm_size;
Florin Coras458089b2019-08-21 16:20:44 -0700693 rmp->segment_handle = clib_host_to_net_u64 (a->segment_handle);
694 }
695 }));
696 /* *INDENT-ON* */
697
698 if (n_fds)
699 session_send_fds (reg, fds, n_fds);
700}
701
Florin Corascea194d2017-10-02 00:18:51 -0700702static void
Florin Coras15531972018-08-12 23:50:53 -0700703vl_api_app_worker_add_del_t_handler (vl_api_app_worker_add_del_t * mp)
704{
705 int rv = 0, fds[SESSION_N_FD_TYPE], n_fds = 0;
706 vl_api_app_worker_add_del_reply_t *rmp;
707 vl_api_registration_t *reg;
Florin Coras15531972018-08-12 23:50:53 -0700708 application_t *app;
709 u8 fd_flags = 0;
710
Florin Coras61ae0562020-09-02 19:10:28 -0700711 if (!session_main_is_enabled () || appns_sapi_enabled ())
Florin Coras15531972018-08-12 23:50:53 -0700712 {
713 rv = VNET_API_ERROR_FEATURE_DISABLED;
714 goto done;
715 }
716
717 reg = vl_api_client_index_to_registration (mp->client_index);
718 if (!reg)
719 return;
720
Florin Corasc1f5a432018-11-20 11:31:26 -0800721 app = application_get_if_valid (clib_net_to_host_u32 (mp->app_index));
Florin Coras15531972018-08-12 23:50:53 -0700722 if (!app)
723 {
724 rv = VNET_API_ERROR_INVALID_VALUE;
725 goto done;
726 }
727
728 vnet_app_worker_add_del_args_t args = {
729 .app_index = app->app_index,
Florin Coras349f8ca2018-11-20 16:52:49 -0800730 .wrk_map_index = clib_net_to_host_u32 (mp->wrk_index),
Florin Corasc1f5a432018-11-20 11:31:26 -0800731 .api_client_index = mp->client_index,
Florin Coras15531972018-08-12 23:50:53 -0700732 .is_add = mp->is_add
733 };
Florin Corasc1a42652019-02-08 18:27:29 -0800734 rv = vnet_app_worker_add_del (&args);
735 if (rv)
Florin Coras15531972018-08-12 23:50:53 -0700736 {
Florin Corasc1a42652019-02-08 18:27:29 -0800737 clib_warning ("app worker add/del returned: %d", rv);
Florin Coras15531972018-08-12 23:50:53 -0700738 goto done;
739 }
740
Florin Coras14598772018-09-04 19:47:52 -0700741 if (!mp->is_add)
742 goto done;
Florin Corasc3638fe2018-08-24 13:58:49 -0700743
Florin Coras15531972018-08-12 23:50:53 -0700744 /* Send fifo segment fd if needed */
745 if (ssvm_type (args.segment) == SSVM_SEGMENT_MEMFD)
746 {
747 fd_flags |= SESSION_FD_F_MEMFD_SEGMENT;
748 fds[n_fds] = args.segment->fd;
749 n_fds += 1;
750 }
751 if (application_segment_manager_properties (app)->use_mq_eventfd)
752 {
753 fd_flags |= SESSION_FD_F_MQ_EVENTFD;
Florin Coras86f12322021-01-22 15:05:14 -0800754 fds[n_fds] = svm_msg_q_get_eventfd (args.evt_q);
Florin Coras15531972018-08-12 23:50:53 -0700755 n_fds += 1;
756 }
757
758 /* *INDENT-OFF* */
759done:
760 REPLY_MACRO2 (VL_API_APP_WORKER_ADD_DEL_REPLY, ({
761 rmp->is_add = mp->is_add;
Florin Coras349f8ca2018-11-20 16:52:49 -0800762 rmp->wrk_index = clib_host_to_net_u32 (args.wrk_map_index);
Florin Corasfa76a762018-11-29 12:40:10 -0800763 rmp->segment_handle = clib_host_to_net_u64 (args.segment_handle);
Florin Coras14598772018-09-04 19:47:52 -0700764 if (!rv && mp->is_add)
Florin Coras15531972018-08-12 23:50:53 -0700765 {
Florin Corasb4624182020-12-11 13:58:12 -0800766 rmp->app_event_queue_address =
767 fifo_segment_msg_q_offset ((fifo_segment_t *) args.segment, 0);
768 rmp->n_fds = n_fds;
769 rmp->fd_flags = fd_flags;
Florin Coras15531972018-08-12 23:50:53 -0700770 if (vec_len (args.segment->name))
771 {
Jakub Grajciarb4e5e502020-01-31 09:35:29 +0100772 vl_api_vec_to_api_string (args.segment->name, &rmp->segment_name);
Florin Coras15531972018-08-12 23:50:53 -0700773 }
Florin Coras15531972018-08-12 23:50:53 -0700774 }
775 }));
776 /* *INDENT-ON* */
777
778 if (n_fds)
779 session_send_fds (reg, fds, n_fds);
780}
781
782static void
Florin Coras888d9f02020-04-02 23:00:13 +0000783vl_api_application_detach_t_handler (vl_api_application_detach_t * mp)
784{
785 vl_api_application_detach_reply_t *rmp;
786 int rv = VNET_API_ERROR_INVALID_VALUE_2;
787 vnet_app_detach_args_t _a, *a = &_a;
788 application_t *app;
789
Florin Coras61ae0562020-09-02 19:10:28 -0700790 if (!session_main_is_enabled () || appns_sapi_enabled ())
Florin Coras888d9f02020-04-02 23:00:13 +0000791 {
792 rv = VNET_API_ERROR_FEATURE_DISABLED;
793 goto done;
794 }
795
796 app = application_lookup (mp->client_index);
797 if (app)
798 {
799 a->app_index = app->app_index;
800 a->api_client_index = mp->client_index;
801 rv = vnet_application_detach (a);
802 }
803
804done:
805 REPLY_MACRO (VL_API_APPLICATION_DETACH_REPLY);
806}
807
808static void
Florin Corascea194d2017-10-02 00:18:51 -0700809vl_api_app_namespace_add_del_t_handler (vl_api_app_namespace_add_del_t * mp)
810{
811 vl_api_app_namespace_add_del_reply_t *rmp;
Florin Coras6e8c6672017-11-10 09:03:54 -0800812 u32 appns_index = 0;
813 u8 *ns_id = 0;
Florin Corascea194d2017-10-02 00:18:51 -0700814 int rv = 0;
Nathan Skrzypczak79f89532019-09-13 11:08:13 +0200815 if (session_main_is_enabled () == 0)
Florin Corascea194d2017-10-02 00:18:51 -0700816 {
817 rv = VNET_API_ERROR_FEATURE_DISABLED;
818 goto done;
819 }
820
Dave Barach77841402020-04-29 17:04:10 -0400821 ns_id = vl_api_from_api_to_new_vec (mp, &mp->namespace_id);
Florin Corascea194d2017-10-02 00:18:51 -0700822
Florin Corascea194d2017-10-02 00:18:51 -0700823 vnet_app_namespace_add_del_args_t args = {
824 .ns_id = ns_id,
Florin Coras9a9adb22017-10-26 08:16:59 -0700825 .secret = clib_net_to_host_u64 (mp->secret),
Florin Corascea194d2017-10-02 00:18:51 -0700826 .sw_if_index = clib_net_to_host_u32 (mp->sw_if_index),
827 .ip4_fib_id = clib_net_to_host_u32 (mp->ip4_fib_id),
828 .ip6_fib_id = clib_net_to_host_u32 (mp->ip6_fib_id),
829 .is_add = 1
830 };
Florin Corasc1a42652019-02-08 18:27:29 -0800831 rv = vnet_app_namespace_add_del (&args);
832 if (!rv)
Florin Coras6e8c6672017-11-10 09:03:54 -0800833 {
834 appns_index = app_namespace_index_from_id (ns_id);
835 if (appns_index == APP_NAMESPACE_INVALID_INDEX)
836 {
837 clib_warning ("app ns lookup failed");
838 rv = VNET_API_ERROR_UNSPECIFIED;
839 }
840 }
Florin Corascea194d2017-10-02 00:18:51 -0700841 vec_free (ns_id);
Florin Coras6e8c6672017-11-10 09:03:54 -0800842
843 /* *INDENT-OFF* */
Florin Corascea194d2017-10-02 00:18:51 -0700844done:
Florin Coras6e8c6672017-11-10 09:03:54 -0800845 REPLY_MACRO2 (VL_API_APP_NAMESPACE_ADD_DEL_REPLY, ({
846 if (!rv)
847 rmp->appns_index = clib_host_to_net_u32 (appns_index);
848 }));
849 /* *INDENT-ON* */
Florin Corascea194d2017-10-02 00:18:51 -0700850}
851
Florin Coras1c710452017-10-17 00:03:13 -0700852static void
853vl_api_session_rule_add_del_t_handler (vl_api_session_rule_add_del_t * mp)
854{
855 vl_api_session_rule_add_del_reply_t *rmp;
856 session_rule_add_del_args_t args;
857 session_rule_table_add_del_args_t *table_args = &args.table_args;
Florin Coras1c710452017-10-17 00:03:13 -0700858 int rv = 0;
859
Dave Barachb7b92992018-10-17 10:38:51 -0400860 clib_memset (&args, 0, sizeof (args));
Florin Coras1c710452017-10-17 00:03:13 -0700861
Jakub Grajciarb4e5e502020-01-31 09:35:29 +0100862 ip_prefix_decode (&mp->lcl, &table_args->lcl);
863 ip_prefix_decode (&mp->rmt, &table_args->rmt);
864
Milan Lenco8b9a5d12017-11-24 17:12:33 +0100865 table_args->lcl_port = mp->lcl_port;
866 table_args->rmt_port = mp->rmt_port;
Florin Coras1c710452017-10-17 00:03:13 -0700867 table_args->action_index = clib_net_to_host_u32 (mp->action_index);
868 table_args->is_add = mp->is_add;
Florin Corasc97a7392017-11-05 23:07:07 -0800869 mp->tag[sizeof (mp->tag) - 1] = 0;
870 table_args->tag = format (0, "%s", mp->tag);
Florin Coras1c710452017-10-17 00:03:13 -0700871 args.appns_index = clib_net_to_host_u32 (mp->appns_index);
872 args.scope = mp->scope;
Jakub Grajciarb4e5e502020-01-31 09:35:29 +0100873 args.transport_proto =
874 api_session_transport_proto_decode (&mp->transport_proto) ==
875 TRANSPORT_PROTO_UDP ? 1 : 0;
Florin Coras1c710452017-10-17 00:03:13 -0700876
Florin Corasc1a42652019-02-08 18:27:29 -0800877 rv = vnet_session_rule_add_del (&args);
878 if (rv)
879 clib_warning ("rule add del returned: %d", rv);
Florin Corasc97a7392017-11-05 23:07:07 -0800880 vec_free (table_args->tag);
Florin Coras1c710452017-10-17 00:03:13 -0700881 REPLY_MACRO (VL_API_SESSION_RULE_ADD_DEL_REPLY);
882}
883
Florin Coras6c36f532017-11-03 18:32:34 -0700884static void
885send_session_rule_details4 (mma_rule_16_t * rule, u8 is_local,
Florin Corasc97a7392017-11-05 23:07:07 -0800886 u8 transport_proto, u32 appns_index, u8 * tag,
Florin Coras6c4dae22018-01-09 06:39:23 -0800887 vl_api_registration_t * reg, u32 context)
Florin Coras6c36f532017-11-03 18:32:34 -0700888{
889 vl_api_session_rules_details_t *rmp = 0;
890 session_mask_or_match_4_t *match =
891 (session_mask_or_match_4_t *) & rule->match;
892 session_mask_or_match_4_t *mask =
893 (session_mask_or_match_4_t *) & rule->mask;
Jakub Grajciarb4e5e502020-01-31 09:35:29 +0100894 fib_prefix_t lcl, rmt;
Florin Coras6c36f532017-11-03 18:32:34 -0700895
896 rmp = vl_msg_api_alloc (sizeof (*rmp));
Dave Barachb7b92992018-10-17 10:38:51 -0400897 clib_memset (rmp, 0, sizeof (*rmp));
Florin Coras6c36f532017-11-03 18:32:34 -0700898 rmp->_vl_msg_id = ntohs (VL_API_SESSION_RULES_DETAILS);
899 rmp->context = context;
900
Jakub Grajciarb4e5e502020-01-31 09:35:29 +0100901 clib_memset (&lcl, 0, sizeof (lcl));
902 clib_memset (&rmt, 0, sizeof (rmt));
903 ip_set (&lcl.fp_addr, &match->lcl_ip, 1);
904 ip_set (&rmt.fp_addr, &match->rmt_ip, 1);
905 lcl.fp_len = ip4_mask_to_preflen (&mask->lcl_ip);
906 rmt.fp_len = ip4_mask_to_preflen (&mask->rmt_ip);
907
908 ip_prefix_encode (&lcl, &rmp->lcl);
909 ip_prefix_encode (&rmt, &rmp->rmt);
Milan Lenco8b9a5d12017-11-24 17:12:33 +0100910 rmp->lcl_port = match->lcl_port;
911 rmp->rmt_port = match->rmt_port;
Florin Coras6c36f532017-11-03 18:32:34 -0700912 rmp->action_index = clib_host_to_net_u32 (rule->action_index);
913 rmp->scope =
Jakub Grajciarb4e5e502020-01-31 09:35:29 +0100914 is_local ? SESSION_RULE_SCOPE_API_LOCAL : SESSION_RULE_SCOPE_API_GLOBAL;
915 rmp->transport_proto = api_session_transport_proto_encode (transport_proto);
Florin Coras6c36f532017-11-03 18:32:34 -0700916 rmp->appns_index = clib_host_to_net_u32 (appns_index);
Florin Corasc97a7392017-11-05 23:07:07 -0800917 if (tag)
918 {
Dave Barach178cf492018-11-13 16:34:13 -0500919 clib_memcpy_fast (rmp->tag, tag, vec_len (tag));
Florin Corasc97a7392017-11-05 23:07:07 -0800920 rmp->tag[vec_len (tag)] = 0;
921 }
Florin Coras6c36f532017-11-03 18:32:34 -0700922
Florin Coras6c4dae22018-01-09 06:39:23 -0800923 vl_api_send_msg (reg, (u8 *) rmp);
Florin Coras6c36f532017-11-03 18:32:34 -0700924}
925
926static void
Florin Corasc97a7392017-11-05 23:07:07 -0800927send_session_rule_details6 (mma_rule_40_t * rule, u8 is_local,
928 u8 transport_proto, u32 appns_index, u8 * tag,
Florin Coras6c4dae22018-01-09 06:39:23 -0800929 vl_api_registration_t * reg, u32 context)
Florin Coras6c36f532017-11-03 18:32:34 -0700930{
931 vl_api_session_rules_details_t *rmp = 0;
932 session_mask_or_match_6_t *match =
933 (session_mask_or_match_6_t *) & rule->match;
934 session_mask_or_match_6_t *mask =
935 (session_mask_or_match_6_t *) & rule->mask;
Jakub Grajciarb4e5e502020-01-31 09:35:29 +0100936 fib_prefix_t lcl, rmt;
Florin Coras6c36f532017-11-03 18:32:34 -0700937
938 rmp = vl_msg_api_alloc (sizeof (*rmp));
Dave Barachb7b92992018-10-17 10:38:51 -0400939 clib_memset (rmp, 0, sizeof (*rmp));
Florin Coras6c36f532017-11-03 18:32:34 -0700940 rmp->_vl_msg_id = ntohs (VL_API_SESSION_RULES_DETAILS);
941 rmp->context = context;
942
Jakub Grajciarb4e5e502020-01-31 09:35:29 +0100943 clib_memset (&lcl, 0, sizeof (lcl));
944 clib_memset (&rmt, 0, sizeof (rmt));
945 ip_set (&lcl.fp_addr, &match->lcl_ip, 0);
946 ip_set (&rmt.fp_addr, &match->rmt_ip, 0);
947 lcl.fp_len = ip6_mask_to_preflen (&mask->lcl_ip);
948 rmt.fp_len = ip6_mask_to_preflen (&mask->rmt_ip);
949
950 ip_prefix_encode (&lcl, &rmp->lcl);
951 ip_prefix_encode (&rmt, &rmp->rmt);
Milan Lenco8b9a5d12017-11-24 17:12:33 +0100952 rmp->lcl_port = match->lcl_port;
953 rmp->rmt_port = match->rmt_port;
Florin Coras6c36f532017-11-03 18:32:34 -0700954 rmp->action_index = clib_host_to_net_u32 (rule->action_index);
Florin Corasc97a7392017-11-05 23:07:07 -0800955 rmp->scope =
Jakub Grajciarb4e5e502020-01-31 09:35:29 +0100956 is_local ? SESSION_RULE_SCOPE_API_LOCAL : SESSION_RULE_SCOPE_API_GLOBAL;
957 rmp->transport_proto = api_session_transport_proto_encode (transport_proto);
Florin Coras6c36f532017-11-03 18:32:34 -0700958 rmp->appns_index = clib_host_to_net_u32 (appns_index);
Florin Corasc97a7392017-11-05 23:07:07 -0800959 if (tag)
960 {
Dave Barach178cf492018-11-13 16:34:13 -0500961 clib_memcpy_fast (rmp->tag, tag, vec_len (tag));
Florin Corasc97a7392017-11-05 23:07:07 -0800962 rmp->tag[vec_len (tag)] = 0;
963 }
Florin Coras6c36f532017-11-03 18:32:34 -0700964
Florin Coras6c4dae22018-01-09 06:39:23 -0800965 vl_api_send_msg (reg, (u8 *) rmp);
Florin Coras6c36f532017-11-03 18:32:34 -0700966}
967
968static void
969send_session_rules_table_details (session_rules_table_t * srt, u8 fib_proto,
Florin Corasc97a7392017-11-05 23:07:07 -0800970 u8 tp, u8 is_local, u32 appns_index,
Florin Coras6c4dae22018-01-09 06:39:23 -0800971 vl_api_registration_t * reg, u32 context)
Florin Coras6c36f532017-11-03 18:32:34 -0700972{
973 mma_rule_16_t *rule16;
974 mma_rule_40_t *rule40;
975 mma_rules_table_16_t *srt16;
976 mma_rules_table_40_t *srt40;
Florin Corasc97a7392017-11-05 23:07:07 -0800977 u32 ri;
Florin Coras6c36f532017-11-03 18:32:34 -0700978
Florin Corasc97a7392017-11-05 23:07:07 -0800979 if (is_local || fib_proto == FIB_PROTOCOL_IP4)
Florin Coras6c36f532017-11-03 18:32:34 -0700980 {
Florin Corasc97a7392017-11-05 23:07:07 -0800981 u8 *tag = 0;
982 /* *INDENT-OFF* */
983 srt16 = &srt->session_rules_tables_16;
Damjan Marionb2c31b62020-12-13 21:47:40 +0100984 pool_foreach (rule16, srt16->rules) {
Florin Corasc97a7392017-11-05 23:07:07 -0800985 ri = mma_rules_table_rule_index_16 (srt16, rule16);
986 tag = session_rules_table_rule_tag (srt, ri, 1);
987 send_session_rule_details4 (rule16, is_local, tp, appns_index, tag,
Florin Coras6c4dae22018-01-09 06:39:23 -0800988 reg, context);
Damjan Marionb2c31b62020-12-13 21:47:40 +0100989 }
Florin Corasc97a7392017-11-05 23:07:07 -0800990 /* *INDENT-ON* */
991 }
992 if (is_local || fib_proto == FIB_PROTOCOL_IP6)
993 {
994 u8 *tag = 0;
995 /* *INDENT-OFF* */
996 srt40 = &srt->session_rules_tables_40;
Damjan Marionb2c31b62020-12-13 21:47:40 +0100997 pool_foreach (rule40, srt40->rules) {
Florin Corasc97a7392017-11-05 23:07:07 -0800998 ri = mma_rules_table_rule_index_40 (srt40, rule40);
999 tag = session_rules_table_rule_tag (srt, ri, 1);
1000 send_session_rule_details6 (rule40, is_local, tp, appns_index, tag,
Florin Coras6c4dae22018-01-09 06:39:23 -08001001 reg, context);
Damjan Marionb2c31b62020-12-13 21:47:40 +01001002 }
Florin Corasc97a7392017-11-05 23:07:07 -08001003 /* *INDENT-ON* */
Florin Coras6c36f532017-11-03 18:32:34 -07001004 }
1005}
1006
1007static void
Neale Ranns2b202bc2020-09-21 08:17:51 +00001008vl_api_session_rules_dump_t_handler (vl_api_session_rules_dump_t * mp)
Florin Coras6c36f532017-11-03 18:32:34 -07001009{
Florin Coras6c4dae22018-01-09 06:39:23 -08001010 vl_api_registration_t *reg;
Florin Coras6c36f532017-11-03 18:32:34 -07001011 session_table_t *st;
Florin Corasc97a7392017-11-05 23:07:07 -08001012 u8 tp;
Florin Coras6c36f532017-11-03 18:32:34 -07001013
Florin Coras6c4dae22018-01-09 06:39:23 -08001014 reg = vl_api_client_index_to_registration (mp->client_index);
1015 if (!reg)
Florin Coras6c36f532017-11-03 18:32:34 -07001016 return;
1017
1018 /* *INDENT-OFF* */
1019 session_table_foreach (st, ({
Florin Coras07063b82020-03-13 04:44:51 +00001020 for (tp = 0; tp < TRANSPORT_N_PROTOS; tp++)
Florin Corasc97a7392017-11-05 23:07:07 -08001021 {
1022 send_session_rules_table_details (&st->session_rules[tp],
1023 st->active_fib_proto, tp,
Florin Coras6c4dae22018-01-09 06:39:23 -08001024 st->is_local, st->appns_index, reg,
Florin Corasc97a7392017-11-05 23:07:07 -08001025 mp->context);
1026 }
Florin Coras6c36f532017-11-03 18:32:34 -07001027 }));
1028 /* *INDENT-ON* */
1029}
1030
Florin Coras371ca502018-02-21 12:07:41 -08001031static void
Nathan Skrzypczak79f89532019-09-13 11:08:13 +02001032vl_api_app_add_cert_key_pair_t_handler (vl_api_app_add_cert_key_pair_t * mp)
Florin Coras371ca502018-02-21 12:07:41 -08001033{
Nathan Skrzypczak79f89532019-09-13 11:08:13 +02001034 vl_api_app_add_cert_key_pair_reply_t *rmp;
1035 vnet_app_add_cert_key_pair_args_t _a, *a = &_a;
1036 u32 certkey_len, key_len, cert_len;
Florin Coras371ca502018-02-21 12:07:41 -08001037 int rv = 0;
Nathan Skrzypczak79f89532019-09-13 11:08:13 +02001038 if (session_main_is_enabled () == 0)
Florin Coras371ca502018-02-21 12:07:41 -08001039 {
1040 rv = VNET_API_ERROR_FEATURE_DISABLED;
1041 goto done;
1042 }
Nathan Skrzypczak79f89532019-09-13 11:08:13 +02001043
Florin Coras371ca502018-02-21 12:07:41 -08001044 cert_len = clib_net_to_host_u16 (mp->cert_len);
Florin Coras5090c572018-03-18 08:22:17 -07001045 if (cert_len > 10000)
1046 {
1047 rv = VNET_API_ERROR_INVALID_VALUE;
1048 goto done;
1049 }
Nathan Skrzypczak79f89532019-09-13 11:08:13 +02001050
1051 certkey_len = clib_net_to_host_u16 (mp->certkey_len);
1052 if (certkey_len < cert_len)
Florin Coras371ca502018-02-21 12:07:41 -08001053 {
Nathan Skrzypczak79f89532019-09-13 11:08:13 +02001054 rv = VNET_API_ERROR_INVALID_VALUE;
1055 goto done;
Florin Coras371ca502018-02-21 12:07:41 -08001056 }
Nathan Skrzypczak79f89532019-09-13 11:08:13 +02001057
1058 key_len = certkey_len - cert_len;
1059 if (key_len > 10000)
1060 {
1061 rv = VNET_API_ERROR_INVALID_VALUE;
1062 goto done;
1063 }
1064
1065 clib_memset (a, 0, sizeof (*a));
Florin Corasa5a9efd2021-01-05 17:03:29 -08001066 a->cert = mp->certkey;
1067 a->key = mp->certkey + cert_len;
1068 a->cert_len = cert_len;
1069 a->key_len = key_len;
Nathan Skrzypczak79f89532019-09-13 11:08:13 +02001070 rv = vnet_app_add_cert_key_pair (a);
Nathan Skrzypczak79f89532019-09-13 11:08:13 +02001071
Florin Coras371ca502018-02-21 12:07:41 -08001072done:
Nathan Skrzypczak79f89532019-09-13 11:08:13 +02001073 /* *INDENT-OFF* */
1074 REPLY_MACRO2 (VL_API_APP_ADD_CERT_KEY_PAIR_REPLY, ({
1075 if (!rv)
Nathan Skrzypczak45ec9f42019-11-06 14:47:40 +01001076 rmp->index = clib_host_to_net_u32 (a->index);
Nathan Skrzypczak79f89532019-09-13 11:08:13 +02001077 }));
1078 /* *INDENT-ON* */
Florin Coras371ca502018-02-21 12:07:41 -08001079}
1080
1081static void
Nathan Skrzypczak79f89532019-09-13 11:08:13 +02001082vl_api_app_del_cert_key_pair_t_handler (vl_api_app_del_cert_key_pair_t * mp)
Florin Coras371ca502018-02-21 12:07:41 -08001083{
Nathan Skrzypczak79f89532019-09-13 11:08:13 +02001084 vl_api_app_del_cert_key_pair_reply_t *rmp;
Nathan Skrzypczak45ec9f42019-11-06 14:47:40 +01001085 u32 ckpair_index;
Florin Coras371ca502018-02-21 12:07:41 -08001086 int rv = 0;
Nathan Skrzypczak79f89532019-09-13 11:08:13 +02001087 if (session_main_is_enabled () == 0)
1088 {
1089 rv = VNET_API_ERROR_FEATURE_DISABLED;
1090 goto done;
1091 }
Nathan Skrzypczak45ec9f42019-11-06 14:47:40 +01001092 ckpair_index = clib_net_to_host_u32 (mp->index);
1093 rv = vnet_app_del_cert_key_pair (ckpair_index);
Nathan Skrzypczak79f89532019-09-13 11:08:13 +02001094
1095done:
Nathan Skrzypczak45ec9f42019-11-06 14:47:40 +01001096 REPLY_MACRO (VL_API_APP_DEL_CERT_KEY_PAIR_REPLY);
Nathan Skrzypczak79f89532019-09-13 11:08:13 +02001097}
1098
Florin Coras6cf30ad2017-04-04 23:08:23 -07001099static clib_error_t *
1100application_reaper_cb (u32 client_index)
Dave Barach68b0fb02017-02-28 15:15:56 -05001101{
Florin Coras6cf30ad2017-04-04 23:08:23 -07001102 application_t *app = application_lookup (client_index);
1103 vnet_app_detach_args_t _a, *a = &_a;
1104 if (app)
1105 {
Florin Coras15531972018-08-12 23:50:53 -07001106 a->app_index = app->app_index;
Florin Coras053a0e42018-11-13 15:52:38 -08001107 a->api_client_index = client_index;
Florin Coras6cf30ad2017-04-04 23:08:23 -07001108 vnet_application_detach (a);
1109 }
1110 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001111}
1112
Florin Coras6cf30ad2017-04-04 23:08:23 -07001113VL_MSG_API_REAPER_FUNCTION (application_reaper_cb);
Dave Barach68b0fb02017-02-28 15:15:56 -05001114
1115#define vl_msg_name_crc_list
1116#include <vnet/vnet_all_api_h.h>
1117#undef vl_msg_name_crc_list
1118
1119static void
1120setup_message_id_table (api_main_t * am)
1121{
1122#define _(id,n,crc) vl_msg_api_add_msg_name_crc (am, #n "_" #crc, id);
1123 foreach_vl_msg_name_crc_session;
1124#undef _
1125}
1126
1127/*
1128 * session_api_hookup
1129 * Add uri's API message handlers to the table.
Jim Thompsonf324dec2019-04-08 03:22:21 -05001130 * vlib has already mapped shared memory and
Dave Barach68b0fb02017-02-28 15:15:56 -05001131 * added the client registration handlers.
1132 * See .../open-repo/vlib/memclnt_vlib.c:memclnt_process()
1133 */
1134static clib_error_t *
1135session_api_hookup (vlib_main_t * vm)
1136{
Dave Barach39d69112019-11-27 11:42:13 -05001137 api_main_t *am = vlibapi_get_main ();
Dave Barach68b0fb02017-02-28 15:15:56 -05001138
1139#define _(N,n) \
1140 vl_msg_api_set_handlers(VL_API_##N, #n, \
1141 vl_api_##n##_t_handler, \
1142 vl_noop_handler, \
1143 vl_api_##n##_t_endian, \
1144 vl_api_##n##_t_print, \
1145 sizeof(vl_api_##n##_t), 1);
1146 foreach_session_api_msg;
1147#undef _
1148
1149 /*
Dave Barach68b0fb02017-02-28 15:15:56 -05001150 * Set up the (msg_name, crc, message-id) table
1151 */
1152 setup_message_id_table (am);
1153
1154 return 0;
1155}
1156
1157VLIB_API_INIT_FUNCTION (session_api_hookup);
Florin Coras6cf30ad2017-04-04 23:08:23 -07001158
Dave Barach68b0fb02017-02-28 15:15:56 -05001159/*
Florin Coras61ae0562020-09-02 19:10:28 -07001160 * Socket api functions
1161 */
1162
1163static void
1164sapi_send_fds (app_worker_t * app_wrk, int *fds, int n_fds)
1165{
1166 app_sapi_msg_t smsg = { 0 };
1167 app_namespace_t *app_ns;
1168 application_t *app;
1169 clib_socket_t *cs;
1170 u32 cs_index;
1171
1172 app = application_get (app_wrk->app_index);
1173 app_ns = app_namespace_get (app->ns_index);
1174 cs_index = appns_sapi_handle_sock_index (app_wrk->api_client_index);
1175 cs = appns_sapi_get_socket (app_ns, cs_index);
Florin Coras1c0573d2020-09-23 10:31:27 -07001176 if (PREDICT_FALSE (!cs))
1177 return;
Florin Coras61ae0562020-09-02 19:10:28 -07001178
1179 /* There's no payload for the message only the type */
1180 smsg.type = APP_SAPI_MSG_TYPE_SEND_FDS;
1181 clib_socket_sendmsg (cs, &smsg, sizeof (smsg), fds, n_fds);
1182}
1183
1184static int
1185mq_send_add_segment_sapi_cb (u32 app_wrk_index, u64 segment_handle)
1186{
1187 int fds[SESSION_N_FD_TYPE], n_fds = 0;
1188 svm_msg_q_msg_t _msg, *msg = &_msg;
1189 session_app_add_segment_msg_t *mp;
1190 app_worker_t *app_wrk;
1191 session_event_t *evt;
1192 svm_msg_q_t *app_mq;
1193 fifo_segment_t *fs;
1194 ssvm_private_t *sp;
1195 u8 fd_flags = 0;
1196
1197 app_wrk = app_worker_get (app_wrk_index);
1198
1199 fs = segment_manager_get_segment_w_handle (segment_handle);
1200 sp = &fs->ssvm;
1201 ASSERT (ssvm_type (sp) == SSVM_SEGMENT_MEMFD);
1202
1203 fd_flags |= SESSION_FD_F_MEMFD_SEGMENT;
1204 fds[n_fds] = sp->fd;
1205 n_fds += 1;
1206
1207 app_mq = app_wrk->event_queue;
1208 if (mq_try_lock_and_alloc_msg (app_mq, msg))
1209 return -1;
1210
1211 /*
1212 * Send the fd over api socket
1213 */
1214 sapi_send_fds (app_wrk, fds, n_fds);
1215
1216 /*
1217 * Send the actual message over mq
1218 */
1219 evt = svm_msg_q_msg_data (app_mq, msg);
1220 clib_memset (evt, 0, sizeof (*evt));
1221 evt->event_type = SESSION_CTRL_EVT_APP_ADD_SEGMENT;
1222 mp = (session_app_add_segment_msg_t *) evt->data;
1223 clib_memset (mp, 0, sizeof (*mp));
1224 mp->segment_size = sp->ssvm_size;
1225 mp->fd_flags = fd_flags;
1226 mp->segment_handle = segment_handle;
1227 strncpy ((char *) mp->segment_name, (char *) sp->name,
1228 sizeof (mp->segment_name) - 1);
1229
1230 svm_msg_q_add_and_unlock (app_mq, msg);
1231
1232 return 0;
1233}
1234
1235static int
1236mq_send_del_segment_sapi_cb (u32 app_wrk_index, u64 segment_handle)
1237{
1238 svm_msg_q_msg_t _msg, *msg = &_msg;
1239 session_app_del_segment_msg_t *mp;
1240 app_worker_t *app_wrk;
1241 session_event_t *evt;
1242 svm_msg_q_t *app_mq;
1243
1244 app_wrk = app_worker_get (app_wrk_index);
1245
1246 app_mq = app_wrk->event_queue;
1247 if (mq_try_lock_and_alloc_msg (app_mq, msg))
1248 return -1;
1249
1250 evt = svm_msg_q_msg_data (app_mq, msg);
1251 clib_memset (evt, 0, sizeof (*evt));
1252 evt->event_type = SESSION_CTRL_EVT_APP_DEL_SEGMENT;
1253 mp = (session_app_del_segment_msg_t *) evt->data;
1254 clib_memset (mp, 0, sizeof (*mp));
1255 mp->segment_handle = segment_handle;
1256 svm_msg_q_add_and_unlock (app_mq, msg);
1257
1258 return 0;
1259}
1260
1261static session_cb_vft_t session_mq_sapi_cb_vft = {
1262 .session_accept_callback = mq_send_session_accepted_cb,
1263 .session_disconnect_callback = mq_send_session_disconnected_cb,
1264 .session_connected_callback = mq_send_session_connected_cb,
1265 .session_reset_callback = mq_send_session_reset_cb,
1266 .session_migrate_callback = mq_send_session_migrate_cb,
1267 .session_cleanup_callback = mq_send_session_cleanup_cb,
1268 .add_segment_callback = mq_send_add_segment_sapi_cb,
1269 .del_segment_callback = mq_send_del_segment_sapi_cb,
1270};
1271
1272static void
1273session_api_attach_handler (app_namespace_t * app_ns, clib_socket_t * cs,
1274 app_sapi_attach_msg_t * mp)
1275{
1276 int rv = 0, fds[SESSION_N_FD_TYPE], n_fds = 0;
1277 vnet_app_attach_args_t _a, *a = &_a;
1278 app_sapi_attach_reply_msg_t *rmp;
Florin Coras04943b42020-12-25 11:45:40 -08001279 fifo_segment_t *evt_q_segment;
Florin Coras61ae0562020-09-02 19:10:28 -07001280 u8 fd_flags = 0, ctrl_thread;
1281 app_ns_api_handle_t *handle;
1282 app_sapi_msg_t msg = { 0 };
1283 app_worker_t *app_wrk;
Florin Coras61ae0562020-09-02 19:10:28 -07001284 application_t *app;
1285
1286 /* Make sure name is null terminated */
1287 mp->name[63] = 0;
1288
1289 clib_memset (a, 0, sizeof (*a));
1290 a->api_client_index = appns_sapi_socket_handle (app_ns, cs);
1291 a->name = format (0, "%s", (char *) mp->name);
1292 a->options = mp->options;
1293 a->session_cb_vft = &session_mq_sapi_cb_vft;
1294 a->use_sock_api = 1;
1295 a->options[APP_OPTIONS_NAMESPACE] = app_namespace_index (app_ns);
1296
1297 if ((rv = vnet_application_attach (a)))
1298 {
1299 clib_warning ("attach returned: %d", rv);
1300 goto done;
1301 }
1302
1303 /* Send event queues segment */
1304 if ((evt_q_segment = session_main_get_evt_q_segment ()))
1305 {
1306 fd_flags |= SESSION_FD_F_VPP_MQ_SEGMENT;
Florin Coras04943b42020-12-25 11:45:40 -08001307 fds[n_fds] = evt_q_segment->ssvm.fd;
Florin Coras61ae0562020-09-02 19:10:28 -07001308 n_fds += 1;
1309 }
1310 /* Send fifo segment fd if needed */
1311 if (ssvm_type (a->segment) == SSVM_SEGMENT_MEMFD)
1312 {
1313 fd_flags |= SESSION_FD_F_MEMFD_SEGMENT;
1314 fds[n_fds] = a->segment->fd;
1315 n_fds += 1;
1316 }
1317 if (a->options[APP_OPTIONS_FLAGS] & APP_OPTIONS_FLAGS_EVT_MQ_USE_EVENTFD)
1318 {
1319 fd_flags |= SESSION_FD_F_MQ_EVENTFD;
Florin Coras86f12322021-01-22 15:05:14 -08001320 fds[n_fds] = svm_msg_q_get_eventfd (a->app_evt_q);
Florin Coras61ae0562020-09-02 19:10:28 -07001321 n_fds += 1;
1322 }
1323
1324done:
1325
1326 msg.type = APP_SAPI_MSG_TYPE_ATTACH_REPLY;
1327 rmp = &msg.attach_reply;
1328 rmp->retval = rv;
1329 if (!rv)
1330 {
1331 ctrl_thread = vlib_num_workers ()? 1 : 0;
Florin Coras61ae0562020-09-02 19:10:28 -07001332 rmp->app_index = a->app_index;
Florin Corasb4624182020-12-11 13:58:12 -08001333 rmp->app_mq =
1334 fifo_segment_msg_q_offset ((fifo_segment_t *) a->segment, 0);
1335 rmp->vpp_ctrl_mq =
1336 fifo_segment_msg_q_offset (evt_q_segment, ctrl_thread);
Florin Coras61ae0562020-09-02 19:10:28 -07001337 rmp->vpp_ctrl_mq_thread = ctrl_thread;
1338 rmp->n_fds = n_fds;
1339 rmp->fd_flags = fd_flags;
1340 /* No segment name and size since we only support memfds
1341 * in this configuration */
1342 rmp->segment_handle = a->segment_handle;
1343 rmp->api_client_handle = a->api_client_index;
1344
1345 /* Update app index for socket */
1346 handle = (app_ns_api_handle_t *) & cs->private_data;
1347 app = application_get (a->app_index);
1348 app_wrk = application_get_worker (app, 0);
1349 handle->aah_app_wrk_index = app_wrk->wrk_index;
1350 }
1351
1352 clib_socket_sendmsg (cs, &msg, sizeof (msg), fds, n_fds);
1353 vec_free (a->name);
1354}
1355
1356static void
1357sapi_socket_close_w_handle (u32 api_handle)
1358{
1359 app_namespace_t *app_ns = app_namespace_get (api_handle >> 16);
1360 u16 sock_index = api_handle & 0xffff;
1361 app_ns_api_handle_t *handle;
1362 clib_socket_t *cs;
1363 clib_file_t *cf;
1364
1365 cs = appns_sapi_get_socket (app_ns, sock_index);
1366 if (!cs)
1367 return;
1368
1369 handle = (app_ns_api_handle_t *) & cs->private_data;
1370 cf = clib_file_get (&file_main, handle->aah_file_index);
1371 clib_file_del (&file_main, cf);
1372
1373 clib_socket_close (cs);
1374 appns_sapi_free_socket (app_ns, cs);
1375}
1376
1377static void
1378sapi_add_del_worker_handler (app_namespace_t * app_ns,
1379 clib_socket_t * cs,
1380 app_sapi_worker_add_del_msg_t * mp)
1381{
1382 int rv = 0, fds[SESSION_N_FD_TYPE], n_fds = 0;
1383 app_sapi_worker_add_del_reply_msg_t *rmp;
1384 app_ns_api_handle_t *handle;
1385 app_sapi_msg_t msg = { 0 };
1386 app_worker_t *app_wrk;
Florin Corascc7c88e2020-09-15 15:56:51 -07001387 u32 sapi_handle = -1;
Florin Coras61ae0562020-09-02 19:10:28 -07001388 application_t *app;
Florin Coras61ae0562020-09-02 19:10:28 -07001389 u8 fd_flags = 0;
1390
1391 app = application_get_if_valid (mp->app_index);
1392 if (!app)
1393 {
1394 rv = VNET_API_ERROR_INVALID_VALUE;
1395 goto done;
1396 }
1397
1398 sapi_handle = appns_sapi_socket_handle (app_ns, cs);
1399
1400 vnet_app_worker_add_del_args_t args = {
1401 .app_index = app->app_index,
1402 .wrk_map_index = mp->wrk_index,
1403 .api_client_index = sapi_handle,
1404 .is_add = mp->is_add
1405 };
1406 rv = vnet_app_worker_add_del (&args);
1407 if (rv)
1408 {
1409 clib_warning ("app worker add/del returned: %d", rv);
1410 goto done;
1411 }
1412
1413 if (!mp->is_add)
1414 {
1415 sapi_socket_close_w_handle (sapi_handle);
1416 goto done;
1417 }
1418
1419 /* Send fifo segment fd if needed */
1420 if (ssvm_type (args.segment) == SSVM_SEGMENT_MEMFD)
1421 {
1422 fd_flags |= SESSION_FD_F_MEMFD_SEGMENT;
1423 fds[n_fds] = args.segment->fd;
1424 n_fds += 1;
1425 }
1426 if (application_segment_manager_properties (app)->use_mq_eventfd)
1427 {
1428 fd_flags |= SESSION_FD_F_MQ_EVENTFD;
Florin Coras86f12322021-01-22 15:05:14 -08001429 fds[n_fds] = svm_msg_q_get_eventfd (args.evt_q);
Florin Coras61ae0562020-09-02 19:10:28 -07001430 n_fds += 1;
1431 }
1432
1433done:
1434
1435 msg.type = APP_SAPI_MSG_TYPE_ADD_DEL_WORKER_REPLY;
1436 rmp = &msg.worker_add_del_reply;
1437 rmp->retval = rv;
1438 rmp->is_add = mp->is_add;
Florin Corascc7c88e2020-09-15 15:56:51 -07001439 rmp->api_client_handle = sapi_handle;
Florin Coras61ae0562020-09-02 19:10:28 -07001440 rmp->wrk_index = args.wrk_map_index;
1441 rmp->segment_handle = args.segment_handle;
1442 if (!rv && mp->is_add)
1443 {
1444 /* No segment name and size. This supports only memfds */
Florin Corasb4624182020-12-11 13:58:12 -08001445 rmp->app_event_queue_address =
1446 fifo_segment_msg_q_offset ((fifo_segment_t *) args.segment, 0);
Florin Coras61ae0562020-09-02 19:10:28 -07001447 rmp->n_fds = n_fds;
1448 rmp->fd_flags = fd_flags;
1449
1450 /* Update app index for socket */
1451 handle = (app_ns_api_handle_t *) & cs->private_data;
1452 app_wrk = application_get_worker (app, args.wrk_map_index);
1453 handle->aah_app_wrk_index = app_wrk->wrk_index;
1454 }
1455
1456 clib_socket_sendmsg (cs, &msg, sizeof (msg), fds, n_fds);
1457}
1458
1459static void
1460sapi_socket_detach (app_namespace_t * app_ns, clib_socket_t * cs)
1461{
Florin Coras61ae0562020-09-02 19:10:28 -07001462 app_ns_api_handle_t *handle;
1463 app_worker_t *app_wrk;
1464 u32 api_client_handle;
1465
1466 api_client_handle = appns_sapi_socket_handle (app_ns, cs);
1467 sapi_socket_close_w_handle (api_client_handle);
1468
Florin Corasf99a7d62020-09-14 10:29:29 -07001469 /* Cleanup everything because app worker closed socket or crashed */
Florin Coras61ae0562020-09-02 19:10:28 -07001470 handle = (app_ns_api_handle_t *) & cs->private_data;
1471 app_wrk = app_worker_get (handle->aah_app_wrk_index);
Florin Corasf99a7d62020-09-14 10:29:29 -07001472
1473 vnet_app_worker_add_del_args_t args = {
1474 .app_index = app_wrk->app_index,
1475 .wrk_map_index = app_wrk->wrk_map_index,
1476 .api_client_index = api_client_handle,
1477 .is_add = 0
1478 };
1479 /* Send rpc to main thread for worker barrier */
1480 vlib_rpc_call_main_thread (vnet_app_worker_add_del, (u8 *) & args,
1481 sizeof (args));
Florin Coras61ae0562020-09-02 19:10:28 -07001482}
1483
1484static clib_error_t *
1485sapi_sock_read_ready (clib_file_t * cf)
1486{
1487 app_ns_api_handle_t *handle = (app_ns_api_handle_t *) & cf->private_data;
Florin Coras7360e3d2020-09-18 16:15:47 -07001488 vlib_main_t *vm = vlib_get_main ();
Florin Coras61ae0562020-09-02 19:10:28 -07001489 app_sapi_msg_t msg = { 0 };
1490 app_namespace_t *app_ns;
1491 clib_error_t *err = 0;
1492 clib_socket_t *cs;
1493
1494 app_ns = app_namespace_get (handle->aah_app_ns_index);
1495 cs = appns_sapi_get_socket (app_ns, handle->aah_sock_index);
1496 if (!cs)
1497 goto error;
1498
1499 err = clib_socket_recvmsg (cs, &msg, sizeof (msg), 0, 0);
1500 if (err)
1501 {
1502 clib_error_free (err);
1503 sapi_socket_detach (app_ns, cs);
1504 goto error;
1505 }
1506
1507 handle = (app_ns_api_handle_t *) & cs->private_data;
1508
Florin Coras7360e3d2020-09-18 16:15:47 -07001509 vlib_worker_thread_barrier_sync (vm);
1510
Florin Coras61ae0562020-09-02 19:10:28 -07001511 switch (msg.type)
1512 {
1513 case APP_SAPI_MSG_TYPE_ATTACH:
1514 session_api_attach_handler (app_ns, cs, &msg.attach);
1515 break;
1516 case APP_SAPI_MSG_TYPE_ADD_DEL_WORKER:
1517 sapi_add_del_worker_handler (app_ns, cs, &msg.worker_add_del);
1518 break;
1519 default:
1520 clib_warning ("app wrk %u unknown message type: %u",
1521 handle->aah_app_wrk_index, msg.type);
1522 break;
1523 }
1524
Florin Coras7360e3d2020-09-18 16:15:47 -07001525 vlib_worker_thread_barrier_release (vm);
1526
Florin Coras61ae0562020-09-02 19:10:28 -07001527error:
1528 return 0;
1529}
1530
1531static clib_error_t *
1532sapi_sock_write_ready (clib_file_t * cf)
1533{
1534 app_ns_api_handle_t *handle = (app_ns_api_handle_t *) & cf->private_data;
1535 clib_warning ("called for app ns %u", handle->aah_app_ns_index);
1536 return 0;
1537}
1538
1539static clib_error_t *
1540sapi_sock_error (clib_file_t * cf)
1541{
1542 app_ns_api_handle_t *handle = (app_ns_api_handle_t *) & cf->private_data;
1543 app_namespace_t *app_ns;
1544 clib_socket_t *cs;
1545
1546 app_ns = app_namespace_get (handle->aah_app_ns_index);
1547 cs = appns_sapi_get_socket (app_ns, handle->aah_sock_index);
1548 if (!cs)
1549 return 0;
1550
1551 sapi_socket_detach (app_ns, cs);
1552 return 0;
1553}
1554
1555static clib_error_t *
1556sapi_sock_accept_ready (clib_file_t * scf)
1557{
1558 app_ns_api_handle_t handle = *(app_ns_api_handle_t *) & scf->private_data;
1559 app_namespace_t *app_ns;
1560 clib_file_t cf = { 0 };
1561 clib_error_t *err = 0;
1562 clib_socket_t *ccs, *scs;
1563
1564 /* Listener files point to namespace */
1565 app_ns = app_namespace_get (handle.aah_app_ns_index);
1566
1567 /*
1568 * Initialize client socket
1569 */
1570 ccs = appns_sapi_alloc_socket (app_ns);
1571
1572 /* Grab server socket after client is initialized */
1573 scs = appns_sapi_get_socket (app_ns, handle.aah_sock_index);
1574 if (!scs)
1575 goto error;
1576
1577 err = clib_socket_accept (scs, ccs);
1578 if (err)
1579 {
1580 clib_error_report (err);
1581 goto error;
1582 }
1583
1584 cf.read_function = sapi_sock_read_ready;
1585 cf.write_function = sapi_sock_write_ready;
1586 cf.error_function = sapi_sock_error;
1587 cf.file_descriptor = ccs->fd;
1588 /* File points to app namespace and socket */
1589 handle.aah_sock_index = appns_sapi_socket_index (app_ns, ccs);
Florin Coras6b6c10b2020-09-24 11:58:28 -07001590 cf.private_data = handle.as_u64;
Florin Coras61ae0562020-09-02 19:10:28 -07001591 cf.description = format (0, "app sock conn fd: %d", ccs->fd);
1592
1593 /* Poll until we get an attach message. Socket points to file and
1594 * application that owns the socket */
1595 handle.aah_app_wrk_index = APP_INVALID_INDEX;
1596 handle.aah_file_index = clib_file_add (&file_main, &cf);
Florin Coras6b6c10b2020-09-24 11:58:28 -07001597 ccs->private_data = handle.as_u64;
Florin Coras61ae0562020-09-02 19:10:28 -07001598
1599 return err;
1600
1601error:
1602 appns_sapi_free_socket (app_ns, ccs);
1603 return err;
1604}
1605
1606int
1607appns_sapi_add_ns_socket (app_namespace_t * app_ns)
1608{
1609 char *subdir = "/app_ns_sockets/";
1610 app_ns_api_handle_t *handle;
1611 clib_file_t cf = { 0 };
1612 struct stat file_stat;
1613 clib_error_t *err;
1614 clib_socket_t *cs;
1615 u8 *dir = 0;
1616 int rv = 0;
1617
1618 vec_add (dir, vlib_unix_get_runtime_dir (),
1619 strlen (vlib_unix_get_runtime_dir ()));
1620 vec_add (dir, (u8 *) subdir, strlen (subdir));
1621
1622 err = vlib_unix_recursive_mkdir ((char *) dir);
1623 if (err)
1624 {
1625 clib_error_report (err);
1626 rv = -1;
1627 goto error;
1628 }
1629
1630 app_ns->sock_name = format (0, "%v%v%c", dir, app_ns->ns_id, 0);
1631
1632 /*
1633 * Create and initialize socket to listen on
1634 */
1635 cs = appns_sapi_alloc_socket (app_ns);
1636 cs->config = (char *) app_ns->sock_name;
1637 cs->flags = CLIB_SOCKET_F_IS_SERVER |
1638 CLIB_SOCKET_F_ALLOW_GROUP_WRITE |
1639 CLIB_SOCKET_F_SEQPACKET | CLIB_SOCKET_F_PASSCRED;
1640
1641 if ((err = clib_socket_init (cs)))
1642 {
1643 clib_error_report (err);
1644 rv = -1;
1645 goto error;
1646 }
1647
1648 if (stat ((char *) app_ns->sock_name, &file_stat) == -1)
1649 {
1650 rv = -1;
1651 goto error;
1652 }
1653
1654 /*
1655 * Start polling it
1656 */
1657 cf.read_function = sapi_sock_accept_ready;
1658 cf.file_descriptor = cs->fd;
1659 /* File points to namespace */
1660 handle = (app_ns_api_handle_t *) & cf.private_data;
1661 handle->aah_app_ns_index = app_namespace_index (app_ns);
1662 handle->aah_sock_index = appns_sapi_socket_index (app_ns, cs);
1663 cf.description = format (0, "app sock listener: %s", app_ns->sock_name);
1664
1665 /* Socket points to clib file index */
1666 handle = (app_ns_api_handle_t *) & cs->private_data;
1667 handle->aah_file_index = clib_file_add (&file_main, &cf);
1668 handle->aah_app_wrk_index = APP_INVALID_INDEX;
1669
1670error:
1671 vec_free (dir);
1672 return rv;
1673}
1674
1675/*
Dave Barach68b0fb02017-02-28 15:15:56 -05001676 * fd.io coding-style-patch-verification: ON
1677 *
1678 * Local Variables:
1679 * eval: (c-set-style "gnu")
1680 * End:
1681 */