blob: 55fc72ee4c2b4ef6bdfde32df5bced9b2bf964ee [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>
Jakub Grajciarb4e5e502020-01-31 09:35:29 +010024#include <vnet/ip/ip_types_api.h>
25
Filip Tehlar0046e972021-06-26 22:12:08 +000026#include <vnet/format_fns.h>
27#include <vnet/session/session.api_enum.h>
28#include <vnet/session/session.api_types.h>
Dave Barach68b0fb02017-02-28 15:15:56 -050029
Filip Tehlar0046e972021-06-26 22:12:08 +000030#define REPLY_MSG_ID_BASE session_main.msg_id_base
Dave Barach68b0fb02017-02-28 15:15:56 -050031#include <vlibapi/api_helper_macros.h>
32
Jakub Grajciarb4e5e502020-01-31 09:35:29 +010033static transport_proto_t
34api_session_transport_proto_decode (const vl_api_transport_proto_t * api_tp)
35{
36 switch (*api_tp)
37 {
38 case TRANSPORT_PROTO_API_TCP:
39 return TRANSPORT_PROTO_TCP;
40 case TRANSPORT_PROTO_API_UDP:
41 return TRANSPORT_PROTO_UDP;
Jakub Grajciarb4e5e502020-01-31 09:35:29 +010042 case TRANSPORT_PROTO_API_TLS:
43 return TRANSPORT_PROTO_TLS;
Jakub Grajciarb4e5e502020-01-31 09:35:29 +010044 case TRANSPORT_PROTO_API_QUIC:
45 return TRANSPORT_PROTO_QUIC;
46 default:
47 return TRANSPORT_PROTO_NONE;
48 }
49}
50
51static vl_api_transport_proto_t
52api_session_transport_proto_encode (const transport_proto_t tp)
53{
54 switch (tp)
55 {
56 case TRANSPORT_PROTO_TCP:
57 return TRANSPORT_PROTO_API_TCP;
58 case TRANSPORT_PROTO_UDP:
59 return TRANSPORT_PROTO_API_UDP;
Jakub Grajciarb4e5e502020-01-31 09:35:29 +010060 case TRANSPORT_PROTO_TLS:
61 return TRANSPORT_PROTO_API_TLS;
Jakub Grajciarb4e5e502020-01-31 09:35:29 +010062 case TRANSPORT_PROTO_QUIC:
63 return TRANSPORT_PROTO_API_QUIC;
64 default:
65 return TRANSPORT_PROTO_API_NONE;
66 }
67}
68
Dave Barach68b0fb02017-02-28 15:15:56 -050069static int
Florin Coras99368312018-08-02 10:45:44 -070070session_send_fds (vl_api_registration_t * reg, int fds[], int n_fds)
Florin Corasb384b542018-01-15 01:08:33 -080071{
72 clib_error_t *error;
73 if (vl_api_registration_file_index (reg) == VL_API_INVALID_FI)
Florin Coras00e01d32019-10-21 16:07:46 -070074 return SESSION_E_BAPI_NO_FD;
Florin Coras99368312018-08-02 10:45:44 -070075 error = vl_api_send_fd_msg (reg, fds, n_fds);
Florin Corasb384b542018-01-15 01:08:33 -080076 if (error)
77 {
78 clib_error_report (error);
Florin Coras00e01d32019-10-21 16:07:46 -070079 return SESSION_E_BAPI_SEND_FD;
Florin Corasb384b542018-01-15 01:08:33 -080080 }
81 return 0;
82}
83
Florin Coras99368312018-08-02 10:45:44 -070084static int
Florin Coras288eaab2019-02-03 15:26:14 -080085mq_send_session_accepted_cb (session_t * s)
Florin Coras52207f12018-07-12 14:48:06 -070086{
Florin Coras15531972018-08-12 23:50:53 -070087 app_worker_t *app_wrk = app_worker_get (s->app_wrk_index);
Florin Coras09bf91a2021-02-23 08:44:13 -080088 session_accepted_msg_t m = { 0 };
Florin Corasb4624182020-12-11 13:58:12 -080089 fifo_segment_t *eq_seg;
Florin Coras288eaab2019-02-03 15:26:14 -080090 session_t *listener;
Florin Coras15531972018-08-12 23:50:53 -070091 application_t *app;
Florin Coras52207f12018-07-12 14:48:06 -070092
Florin Coras15531972018-08-12 23:50:53 -070093 app = application_get (app_wrk->app_index);
Florin Coras52207f12018-07-12 14:48:06 -070094
Florin Coras09bf91a2021-02-23 08:44:13 -080095 m.context = app->app_index;
96 m.server_rx_fifo = fifo_segment_fifo_offset (s->rx_fifo);
97 m.server_tx_fifo = fifo_segment_fifo_offset (s->tx_fifo);
98 m.segment_handle = session_segment_handle (s);
99 m.flags = s->flags;
Florin Coras52207f12018-07-12 14:48:06 -0700100
Florin Coras41d5f542021-01-15 13:49:33 -0800101 eq_seg = application_get_rx_mqs_segment (app);
Florin Corasb4624182020-12-11 13:58:12 -0800102
Florin Coras52207f12018-07-12 14:48:06 -0700103 if (session_has_transport (s))
104 {
Nathan Skrzypczak2f0f96b2019-06-13 10:14:28 +0200105 listener = listen_session_get_from_handle (s->listener_handle);
Florin Coras09bf91a2021-02-23 08:44:13 -0800106 m.listener_handle = app_listen_session_handle (listener);
Florin Coras52207f12018-07-12 14:48:06 -0700107 if (application_is_proxy (app))
108 {
109 listener =
Florin Coras15531972018-08-12 23:50:53 -0700110 app_worker_first_listener (app_wrk, session_get_fib_proto (s),
111 session_get_transport_proto (s));
Florin Coras52207f12018-07-12 14:48:06 -0700112 if (listener)
Florin Coras09bf91a2021-02-23 08:44:13 -0800113 m.listener_handle = listen_session_get_handle (listener);
Florin Coras52207f12018-07-12 14:48:06 -0700114 }
Florin Coras09bf91a2021-02-23 08:44:13 -0800115 m.vpp_event_queue_address =
Florin Corasb4624182020-12-11 13:58:12 -0800116 fifo_segment_msg_q_offset (eq_seg, s->thread_index);
Florin Coras09bf91a2021-02-23 08:44:13 -0800117 m.mq_index = s->thread_index;
118 m.handle = session_handle (s);
Aloys Augustincdb71702019-04-08 17:54:39 +0200119
Florin Coras09bf91a2021-02-23 08:44:13 -0800120 session_get_endpoint (s, &m.rmt, 0 /* is_lcl */);
Florin Coras67c90a32021-03-09 18:36:06 -0800121 session_get_endpoint (s, &m.lcl, 1 /* is_lcl */);
Florin Coras52207f12018-07-12 14:48:06 -0700122 }
123 else
124 {
Florin Coras2b81e3c2019-02-27 07:55:46 -0800125 ct_connection_t *ct;
Florin Coras99368312018-08-02 10:45:44 -0700126
Florin Coras2b81e3c2019-02-27 07:55:46 -0800127 ct = (ct_connection_t *) session_get_transport (s);
Nathan Skrzypczak2f0f96b2019-06-13 10:14:28 +0200128 listener = listen_session_get_from_handle (s->listener_handle);
Florin Coras09bf91a2021-02-23 08:44:13 -0800129 m.listener_handle = app_listen_session_handle (listener);
130 m.rmt.is_ip4 = session_type_is_ip4 (listener->session_type);
131 m.rmt.port = ct->c_rmt_port;
Florin Coras67c90a32021-03-09 18:36:06 -0800132 m.lcl.port = ct->c_lcl_port;
Florin Coras09bf91a2021-02-23 08:44:13 -0800133 m.handle = session_handle (s);
134 m.vpp_event_queue_address =
Florin Corasb4624182020-12-11 13:58:12 -0800135 fifo_segment_msg_q_offset (eq_seg, s->thread_index);
Florin Coras09bf91a2021-02-23 08:44:13 -0800136 m.mq_index = s->thread_index;
Florin Coras52207f12018-07-12 14:48:06 -0700137 }
Florin Coras09bf91a2021-02-23 08:44:13 -0800138
qinyangaf9b7152023-06-27 01:11:53 -0700139 if (application_original_dst_is_enabled (app))
140 {
141 session_get_original_dst (&m.lcl, &m.rmt,
142 session_get_transport_proto (s),
143 &m.original_dst_ip4, &m.original_dst_port);
144 }
145
Florin Coras20c24232021-11-22 21:19:01 -0800146 app_wrk_send_ctrl_evt (app_wrk, SESSION_CTRL_EVT_ACCEPTED, &m, sizeof (m));
Florin Coras52207f12018-07-12 14:48:06 -0700147
148 return 0;
149}
150
Florin Coras72b04282019-01-14 17:23:11 -0800151static inline void
152mq_send_session_close_evt (app_worker_t * app_wrk, session_handle_t sh,
153 session_evt_type_t evt_type)
Florin Coras52207f12018-07-12 14:48:06 -0700154{
Florin Coras20c24232021-11-22 21:19:01 -0800155 session_disconnected_msg_t m = { 0 };
Florin Coras52207f12018-07-12 14:48:06 -0700156
Florin Coras20c24232021-11-22 21:19:01 -0800157 m.handle = sh;
158 m.context = app_wrk->api_client_index;
159
160 app_wrk_send_ctrl_evt (app_wrk, evt_type, &m, sizeof (m));
Florin Coras52207f12018-07-12 14:48:06 -0700161}
162
Florin Coras72b04282019-01-14 17:23:11 -0800163static inline void
164mq_notify_close_subscribers (u32 app_index, session_handle_t sh,
165 svm_fifo_t * f, session_evt_type_t evt_type)
166{
167 app_worker_t *app_wrk;
168 application_t *app;
169 int i;
170
171 app = application_get (app_index);
172 if (!app)
173 return;
174
Florin Corasc547e912020-12-08 17:50:45 -0800175 for (i = 0; i < f->shr->n_subscribers; i++)
Florin Coras72b04282019-01-14 17:23:11 -0800176 {
Florin Corasc547e912020-12-08 17:50:45 -0800177 if (!(app_wrk = application_get_worker (app, f->shr->subscribers[i])))
Florin Coras72b04282019-01-14 17:23:11 -0800178 continue;
179 mq_send_session_close_evt (app_wrk, sh, SESSION_CTRL_EVT_DISCONNECTED);
180 }
181}
182
183static void
Florin Coras288eaab2019-02-03 15:26:14 -0800184mq_send_session_disconnected_cb (session_t * s)
Florin Coras72b04282019-01-14 17:23:11 -0800185{
186 app_worker_t *app_wrk = app_worker_get (s->app_wrk_index);
187 session_handle_t sh = session_handle (s);
188
189 mq_send_session_close_evt (app_wrk, session_handle (s),
190 SESSION_CTRL_EVT_DISCONNECTED);
191
Florin Coras288eaab2019-02-03 15:26:14 -0800192 if (svm_fifo_n_subscribers (s->rx_fifo))
193 mq_notify_close_subscribers (app_wrk->app_index, sh, s->rx_fifo,
Florin Coras72b04282019-01-14 17:23:11 -0800194 SESSION_CTRL_EVT_DISCONNECTED);
195}
196
Florin Coras52207f12018-07-12 14:48:06 -0700197static void
Florin Coras288eaab2019-02-03 15:26:14 -0800198mq_send_session_reset_cb (session_t * s)
Florin Coras52207f12018-07-12 14:48:06 -0700199{
Florin Coras72b04282019-01-14 17:23:11 -0800200 app_worker_t *app_wrk = app_worker_get (s->app_wrk_index);
201 session_handle_t sh = session_handle (s);
Florin Coras52207f12018-07-12 14:48:06 -0700202
Florin Coras72b04282019-01-14 17:23:11 -0800203 mq_send_session_close_evt (app_wrk, sh, SESSION_CTRL_EVT_RESET);
204
Florin Coras288eaab2019-02-03 15:26:14 -0800205 if (svm_fifo_n_subscribers (s->rx_fifo))
206 mq_notify_close_subscribers (app_wrk->app_index, sh, s->rx_fifo,
Florin Coras72b04282019-01-14 17:23:11 -0800207 SESSION_CTRL_EVT_RESET);
Florin Coras52207f12018-07-12 14:48:06 -0700208}
209
Florin Coras458089b2019-08-21 16:20:44 -0700210int
Florin Coras15531972018-08-12 23:50:53 -0700211mq_send_session_connected_cb (u32 app_wrk_index, u32 api_context,
Florin Coras00e01d32019-10-21 16:07:46 -0700212 session_t * s, session_error_t err)
Florin Coras52207f12018-07-12 14:48:06 -0700213{
Florin Coras09bf91a2021-02-23 08:44:13 -0800214 session_connected_msg_t m = { 0 };
Florin Coras52207f12018-07-12 14:48:06 -0700215 transport_connection_t *tc;
Florin Corasb4624182020-12-11 13:58:12 -0800216 fifo_segment_t *eq_seg;
Florin Coras15531972018-08-12 23:50:53 -0700217 app_worker_t *app_wrk;
Florin Coras41d5f542021-01-15 13:49:33 -0800218 application_t *app;
219
220 app_wrk = app_worker_get (app_wrk_index);
Florin Coras52207f12018-07-12 14:48:06 -0700221
Florin Coras09bf91a2021-02-23 08:44:13 -0800222 m.context = api_context;
223 m.retval = err;
Florin Coras52207f12018-07-12 14:48:06 -0700224
Florin Coras00e01d32019-10-21 16:07:46 -0700225 if (err)
Florin Coras09bf91a2021-02-23 08:44:13 -0800226 goto snd_msg;
Florin Coras52207f12018-07-12 14:48:06 -0700227
Florin Coras41d5f542021-01-15 13:49:33 -0800228 app = application_get (app_wrk->app_index);
229 eq_seg = application_get_rx_mqs_segment (app);
Florin Corasb4624182020-12-11 13:58:12 -0800230
Florin Coras52207f12018-07-12 14:48:06 -0700231 if (session_has_transport (s))
232 {
233 tc = session_get_transport (s);
234 if (!tc)
235 {
Florin Coras00e01d32019-10-21 16:07:46 -0700236 clib_warning ("failed to retrieve transport!");
Florin Coras09bf91a2021-02-23 08:44:13 -0800237 m.retval = SESSION_E_REFUSED;
238 goto snd_msg;
Florin Coras52207f12018-07-12 14:48:06 -0700239 }
240
Florin Coras09bf91a2021-02-23 08:44:13 -0800241 m.handle = session_handle (s);
242 m.vpp_event_queue_address =
Florin Corasb4624182020-12-11 13:58:12 -0800243 fifo_segment_msg_q_offset (eq_seg, s->thread_index);
Aloys Augustincdb71702019-04-08 17:54:39 +0200244
Florin Coras09bf91a2021-02-23 08:44:13 -0800245 session_get_endpoint (s, &m.lcl, 1 /* is_lcl */);
Aloys Augustincdb71702019-04-08 17:54:39 +0200246
Florin Coras09bf91a2021-02-23 08:44:13 -0800247 m.server_rx_fifo = fifo_segment_fifo_offset (s->rx_fifo);
248 m.server_tx_fifo = fifo_segment_fifo_offset (s->tx_fifo);
249 m.segment_handle = session_segment_handle (s);
Florin Corasf6e284b2021-07-21 18:17:20 -0700250 m.mq_index = s->thread_index;
Florin Coras52207f12018-07-12 14:48:06 -0700251 }
252 else
253 {
Florin Coras2b81e3c2019-02-27 07:55:46 -0800254 ct_connection_t *cct;
255 session_t *ss;
Florin Coras99368312018-08-02 10:45:44 -0700256
Florin Coras2b81e3c2019-02-27 07:55:46 -0800257 cct = (ct_connection_t *) session_get_transport (s);
Florin Coras09bf91a2021-02-23 08:44:13 -0800258 m.handle = session_handle (s);
259 m.lcl.port = cct->c_lcl_port;
260 m.lcl.is_ip4 = cct->c_is_ip4;
261 m.vpp_event_queue_address =
Florin Corasb4624182020-12-11 13:58:12 -0800262 fifo_segment_msg_q_offset (eq_seg, s->thread_index);
Florin Coras09bf91a2021-02-23 08:44:13 -0800263 m.server_rx_fifo = fifo_segment_fifo_offset (s->rx_fifo);
264 m.server_tx_fifo = fifo_segment_fifo_offset (s->tx_fifo);
265 m.segment_handle = session_segment_handle (s);
Florin Coras2b81e3c2019-02-27 07:55:46 -0800266 ss = ct_session_get_peer (s);
Florin Coras09bf91a2021-02-23 08:44:13 -0800267 m.ct_rx_fifo = fifo_segment_fifo_offset (ss->tx_fifo);
268 m.ct_tx_fifo = fifo_segment_fifo_offset (ss->rx_fifo);
269 m.ct_segment_handle = session_segment_handle (ss);
Florin Corasf6e284b2021-07-21 18:17:20 -0700270 m.mq_index = s->thread_index;
Florin Coras52207f12018-07-12 14:48:06 -0700271 }
272
Florin Coras893bc972021-04-23 08:58:57 -0700273 /* Setup client session index in advance, in case data arrives
274 * before the app processes message and updates it */
275 s->rx_fifo->shr->client_session_index = api_context;
276 s->tx_fifo->shr->client_session_index = api_context;
277
Florin Coras09bf91a2021-02-23 08:44:13 -0800278snd_msg:
279
Florin Coras20c24232021-11-22 21:19:01 -0800280 app_wrk_send_ctrl_evt (app_wrk, SESSION_CTRL_EVT_CONNECTED, &m, sizeof (m));
Florin Coras09bf91a2021-02-23 08:44:13 -0800281
Florin Coras52207f12018-07-12 14:48:06 -0700282 return 0;
283}
284
Florin Coras458089b2019-08-21 16:20:44 -0700285int
Florin Coras60116992018-08-27 09:52:18 -0700286mq_send_session_bound_cb (u32 app_wrk_index, u32 api_context,
287 session_handle_t handle, int rv)
288{
Florin Coras09bf91a2021-02-23 08:44:13 -0800289 session_bound_msg_t m = { 0 };
Yu Ping0b819152019-05-07 02:24:30 +0800290 transport_endpoint_t tep;
Florin Corasb4624182020-12-11 13:58:12 -0800291 fifo_segment_t *eq_seg;
Florin Coras60116992018-08-27 09:52:18 -0700292 app_worker_t *app_wrk;
Florin Coras41d5f542021-01-15 13:49:33 -0800293 application_t *app;
Florin Corasc9940fc2019-02-05 20:55:11 -0800294 app_listener_t *al;
295 session_t *ls = 0;
Florin Coras09bf91a2021-02-23 08:44:13 -0800296
Florin Coras41d5f542021-01-15 13:49:33 -0800297 app_wrk = app_worker_get (app_wrk_index);
298
Florin Coras09bf91a2021-02-23 08:44:13 -0800299 m.context = api_context;
300 m.retval = rv;
301
302 if (rv)
303 goto snd_msg;
304
305 m.handle = handle;
306 al = app_listener_get_w_handle (handle);
307 if (al->session_index != SESSION_INVALID_INDEX)
308 ls = app_listener_get_session (al);
309 else
310 ls = app_listener_get_local_session (al);
311
312 session_get_endpoint (ls, &tep, 1 /* is_lcl */);
313 m.lcl_port = tep.port;
314 m.lcl_is_ip4 = tep.is_ip4;
315 clib_memcpy_fast (m.lcl_ip, &tep.ip, sizeof (tep.ip));
Florin Coras41d5f542021-01-15 13:49:33 -0800316 app = application_get (app_wrk->app_index);
317 eq_seg = application_get_rx_mqs_segment (app);
Florin Coras09bf91a2021-02-23 08:44:13 -0800318 m.vpp_evt_q = fifo_segment_msg_q_offset (eq_seg, ls->thread_index);
Florin Corasf6e284b2021-07-21 18:17:20 -0700319 m.mq_index = ls->thread_index;
Florin Coras09bf91a2021-02-23 08:44:13 -0800320
Florin Coras8694fbc2021-03-10 00:21:02 -0800321 if (session_transport_service_type (ls) == TRANSPORT_SERVICE_CL &&
322 ls->rx_fifo)
Florin Coras09bf91a2021-02-23 08:44:13 -0800323 {
Florin Corasaeb7c1c2023-03-10 10:22:21 -0800324 m.mq_index = transport_cl_thread ();
325 m.vpp_evt_q = fifo_segment_msg_q_offset (eq_seg, m.mq_index);
Florin Coras09bf91a2021-02-23 08:44:13 -0800326 m.rx_fifo = fifo_segment_fifo_offset (ls->rx_fifo);
327 m.tx_fifo = fifo_segment_fifo_offset (ls->tx_fifo);
328 m.segment_handle = session_segment_handle (ls);
329 }
330
331snd_msg:
332
Florin Coras20c24232021-11-22 21:19:01 -0800333 app_wrk_send_ctrl_evt (app_wrk, SESSION_CTRL_EVT_BOUND, &m, sizeof (m));
Florin Coras60116992018-08-27 09:52:18 -0700334
Florin Coras60116992018-08-27 09:52:18 -0700335 return 0;
336}
337
Florin Coras458089b2019-08-21 16:20:44 -0700338void
339mq_send_unlisten_reply (app_worker_t * app_wrk, session_handle_t sh,
340 u32 context, int rv)
341{
Florin Coras20c24232021-11-22 21:19:01 -0800342 session_unlisten_reply_msg_t m = { 0 };
Florin Coras458089b2019-08-21 16:20:44 -0700343
Florin Coras20c24232021-11-22 21:19:01 -0800344 m.context = context;
345 m.handle = sh;
346 m.retval = rv;
347 app_wrk_send_ctrl_evt (app_wrk, SESSION_CTRL_EVT_UNLISTEN_REPLY, &m,
348 sizeof (m));
Florin Coras458089b2019-08-21 16:20:44 -0700349}
350
Florin Coras49568af2019-07-31 16:46:24 -0700351static void
352mq_send_session_migrate_cb (session_t * s, session_handle_t new_sh)
353{
Florin Coras09bf91a2021-02-23 08:44:13 -0800354 session_migrated_msg_t m = { 0 };
Florin Corasb4624182020-12-11 13:58:12 -0800355 fifo_segment_t *eq_seg;
Florin Coras68b7e582020-01-21 18:33:23 -0800356 app_worker_t *app_wrk;
Florin Coras41d5f542021-01-15 13:49:33 -0800357 application_t *app;
Florin Corasb4624182020-12-11 13:58:12 -0800358 u32 thread_index;
359
360 thread_index = session_thread_from_handle (new_sh);
Florin Coras41d5f542021-01-15 13:49:33 -0800361 app_wrk = app_worker_get (s->app_wrk_index);
Florin Coras41d5f542021-01-15 13:49:33 -0800362 app = application_get (app_wrk->app_index);
363 eq_seg = application_get_rx_mqs_segment (app);
Florin Coras68b7e582020-01-21 18:33:23 -0800364
Florin Coras09bf91a2021-02-23 08:44:13 -0800365 m.handle = session_handle (s);
366 m.new_handle = new_sh;
367 m.vpp_thread_index = thread_index;
368 m.vpp_evt_q = fifo_segment_msg_q_offset (eq_seg, thread_index);
369 m.segment_handle = SESSION_INVALID_HANDLE;
370
Florin Coras20c24232021-11-22 21:19:01 -0800371 app_wrk_send_ctrl_evt (app_wrk, SESSION_CTRL_EVT_MIGRATED, &m, sizeof (m));
Florin Coras49568af2019-07-31 16:46:24 -0700372}
373
Florin Corasc4c4cf52019-08-24 18:17:34 -0700374static int
375mq_send_add_segment_cb (u32 app_wrk_index, u64 segment_handle)
376{
Florin Coras20c24232021-11-22 21:19:01 -0800377 session_app_add_segment_msg_t m = { 0 };
Florin Corasc4c4cf52019-08-24 18:17:34 -0700378 vl_api_registration_t *reg;
379 app_worker_t *app_wrk;
Florin Corasc4c4cf52019-08-24 18:17:34 -0700380 fifo_segment_t *fs;
381 ssvm_private_t *sp;
382 u8 fd_flags = 0;
383
384 app_wrk = app_worker_get (app_wrk_index);
385
386 reg = vl_mem_api_client_index_to_registration (app_wrk->api_client_index);
387 if (!reg)
388 {
389 clib_warning ("no api registration for client: %u",
390 app_wrk->api_client_index);
391 return -1;
392 }
393
394 fs = segment_manager_get_segment_w_handle (segment_handle);
395 sp = &fs->ssvm;
396 if (ssvm_type (sp) == SSVM_SEGMENT_MEMFD)
397 {
398 if (vl_api_registration_file_index (reg) == VL_API_INVALID_FI)
399 {
400 clib_warning ("can't send memfd fd");
401 return -1;
402 }
403
404 fd_flags |= SESSION_FD_F_MEMFD_SEGMENT;
Florin Corasc4c4cf52019-08-24 18:17:34 -0700405 }
406
Florin Coras20c24232021-11-22 21:19:01 -0800407 m.segment_size = sp->ssvm_size;
408 m.fd_flags = fd_flags;
409 m.segment_handle = segment_handle;
410 strncpy ((char *) m.segment_name, (char *) sp->name,
411 sizeof (m.segment_name) - 1);
Florin Corasc4c4cf52019-08-24 18:17:34 -0700412
Florin Coras20c24232021-11-22 21:19:01 -0800413 app_wrk_send_ctrl_evt_fd (app_wrk, SESSION_CTRL_EVT_APP_ADD_SEGMENT, &m,
414 sizeof (m), sp->fd);
Florin Corasc4c4cf52019-08-24 18:17:34 -0700415
416 return 0;
417}
418
419static int
420mq_send_del_segment_cb (u32 app_wrk_index, u64 segment_handle)
421{
Florin Coras20c24232021-11-22 21:19:01 -0800422 session_app_del_segment_msg_t m = { 0 };
Florin Corasc4c4cf52019-08-24 18:17:34 -0700423 vl_api_registration_t *reg;
424 app_worker_t *app_wrk;
Florin Corasc4c4cf52019-08-24 18:17:34 -0700425
426 app_wrk = app_worker_get (app_wrk_index);
427 reg = vl_mem_api_client_index_to_registration (app_wrk->api_client_index);
428 if (!reg)
429 {
430 clib_warning ("no registration: %u", app_wrk->api_client_index);
431 return -1;
432 }
433
Florin Coras20c24232021-11-22 21:19:01 -0800434 m.segment_handle = segment_handle;
Florin Corasc4c4cf52019-08-24 18:17:34 -0700435
Florin Coras20c24232021-11-22 21:19:01 -0800436 app_wrk_send_ctrl_evt (app_wrk, SESSION_CTRL_EVT_APP_DEL_SEGMENT, &m,
437 sizeof (m));
Florin Corasc4c4cf52019-08-24 18:17:34 -0700438
439 return 0;
440}
441
Florin Coras9ace36d2019-10-28 13:14:17 -0700442static void
443mq_send_session_cleanup_cb (session_t * s, session_cleanup_ntf_t ntf)
444{
Florin Coras20c24232021-11-22 21:19:01 -0800445 session_cleanup_msg_t m = { 0 };
Florin Coras9ace36d2019-10-28 13:14:17 -0700446 app_worker_t *app_wrk;
447
Florin Coras36d49392020-04-24 23:00:11 +0000448 /* Propagate transport cleanup notifications only if app didn't close */
449 if (ntf == SESSION_CLEANUP_TRANSPORT
450 && s->session_state != SESSION_STATE_TRANSPORT_DELETED)
Florin Coras9ace36d2019-10-28 13:14:17 -0700451 return;
452
453 app_wrk = app_worker_get_if_valid (s->app_wrk_index);
454 if (!app_wrk)
455 return;
456
Florin Coras20c24232021-11-22 21:19:01 -0800457 m.handle = session_handle (s);
458 m.type = ntf;
Florin Coras9ace36d2019-10-28 13:14:17 -0700459
Florin Coras20c24232021-11-22 21:19:01 -0800460 app_wrk_send_ctrl_evt (app_wrk, SESSION_CTRL_EVT_CLEANUP, &m, sizeof (m));
Florin Coras9ace36d2019-10-28 13:14:17 -0700461}
462
Florin Coras0242d302022-12-22 15:03:44 -0800463static int
464mq_send_io_rx_event (session_t *s)
465{
466 session_event_t *mq_evt;
467 svm_msg_q_msg_t mq_msg;
468 app_worker_t *app_wrk;
469 svm_msg_q_t *mq;
470
471 if (svm_fifo_has_event (s->rx_fifo))
472 return 0;
473
474 app_wrk = app_worker_get (s->app_wrk_index);
475 mq = app_wrk->event_queue;
476
477 mq_msg = svm_msg_q_alloc_msg_w_ring (mq, SESSION_MQ_IO_EVT_RING);
478 mq_evt = svm_msg_q_msg_data (mq, &mq_msg);
479
480 mq_evt->event_type = SESSION_IO_EVT_RX;
481 mq_evt->session_index = s->rx_fifo->shr->client_session_index;
482
483 (void) svm_fifo_set_event (s->rx_fifo);
484
485 svm_msg_q_add_raw (mq, &mq_msg);
486
487 return 0;
488}
489
490static int
491mq_send_io_tx_event (session_t *s)
492{
493 app_worker_t *app_wrk = app_worker_get (s->app_wrk_index);
494 svm_msg_q_t *mq = app_wrk->event_queue;
495 session_event_t *mq_evt;
496 svm_msg_q_msg_t mq_msg;
497
498 mq_msg = svm_msg_q_alloc_msg_w_ring (mq, SESSION_MQ_IO_EVT_RING);
499 mq_evt = svm_msg_q_msg_data (mq, &mq_msg);
500
501 mq_evt->event_type = SESSION_IO_EVT_TX;
502 mq_evt->session_index = s->tx_fifo->shr->client_session_index;
503
504 svm_msg_q_add_raw (mq, &mq_msg);
505
506 return 0;
507}
508
Florin Corasc4c4cf52019-08-24 18:17:34 -0700509static session_cb_vft_t session_mq_cb_vft = {
510 .session_accept_callback = mq_send_session_accepted_cb,
511 .session_disconnect_callback = mq_send_session_disconnected_cb,
512 .session_connected_callback = mq_send_session_connected_cb,
513 .session_reset_callback = mq_send_session_reset_cb,
514 .session_migrate_callback = mq_send_session_migrate_cb,
Florin Coras9ace36d2019-10-28 13:14:17 -0700515 .session_cleanup_callback = mq_send_session_cleanup_cb,
Florin Corasc4c4cf52019-08-24 18:17:34 -0700516 .add_segment_callback = mq_send_add_segment_cb,
517 .del_segment_callback = mq_send_del_segment_cb,
Florin Coras0242d302022-12-22 15:03:44 -0800518 .builtin_app_rx_callback = mq_send_io_rx_event,
519 .builtin_app_tx_callback = mq_send_io_tx_event,
Florin Corasc4c4cf52019-08-24 18:17:34 -0700520};
521
Dave Barach68b0fb02017-02-28 15:15:56 -0500522static void
Florin Corase04c2992017-03-01 08:17:34 -0800523vl_api_session_enable_disable_t_handler (vl_api_session_enable_disable_t * mp)
524{
525 vl_api_session_enable_disable_reply_t *rmp;
526 vlib_main_t *vm = vlib_get_main ();
527 int rv = 0;
528
529 vnet_session_enable_disable (vm, mp->is_enable);
530 REPLY_MACRO (VL_API_SESSION_ENABLE_DISABLE_REPLY);
531}
532
Dave Barach68b0fb02017-02-28 15:15:56 -0500533static void
Nathan Skrzypczak7b3a3df2021-07-28 14:09:50 +0200534vl_api_session_sapi_enable_disable_t_handler (
535 vl_api_session_sapi_enable_disable_t *mp)
536{
537 vl_api_session_sapi_enable_disable_reply_t *rmp;
538 int rv = 0;
539
540 rv = appns_sapi_enable_disable (mp->is_enable);
541 REPLY_MACRO (VL_API_SESSION_SAPI_ENABLE_DISABLE_REPLY);
542}
543
544static void
Florin Coras458089b2019-08-21 16:20:44 -0700545vl_api_app_attach_t_handler (vl_api_app_attach_t * mp)
546{
Florin Coras41d5f542021-01-15 13:49:33 -0800547 int rv = 0, *fds = 0, n_fds = 0, n_workers, i;
548 fifo_segment_t *segp, *rx_mqs_seg = 0;
Florin Coras458089b2019-08-21 16:20:44 -0700549 vnet_app_attach_args_t _a, *a = &_a;
Florin Coras41d5f542021-01-15 13:49:33 -0800550 vl_api_app_attach_reply_t *rmp;
Florin Coras458089b2019-08-21 16:20:44 -0700551 u8 fd_flags = 0, ctrl_thread;
552 vl_api_registration_t *reg;
Florin Coras41d5f542021-01-15 13:49:33 -0800553 svm_msg_q_t *rx_mq;
554 application_t *app;
Florin Coras458089b2019-08-21 16:20:44 -0700555
556 reg = vl_api_client_index_to_registration (mp->client_index);
557 if (!reg)
558 return;
559
Florin Coras41d5f542021-01-15 13:49:33 -0800560 n_workers = vlib_num_workers ();
Florin Coras61ae0562020-09-02 19:10:28 -0700561 if (!session_main_is_enabled () || appns_sapi_enabled ())
Florin Coras458089b2019-08-21 16:20:44 -0700562 {
563 rv = VNET_API_ERROR_FEATURE_DISABLED;
564 goto done;
565 }
Florin Coras6c10ab22020-11-08 16:50:39 -0800566 /* Only support binary api with socket transport */
567 if (vl_api_registration_file_index (reg) == VL_API_INVALID_FI)
568 {
569 rv = VNET_API_ERROR_APP_UNSUPPORTED_CFG;
570 goto done;
571 }
Florin Coras458089b2019-08-21 16:20:44 -0700572
573 STATIC_ASSERT (sizeof (u64) * APP_OPTIONS_N_OPTIONS <=
574 sizeof (mp->options),
575 "Out of options, fix api message definition");
576
577 clib_memset (a, 0, sizeof (*a));
578 a->api_client_index = mp->client_index;
579 a->options = mp->options;
580 a->session_cb_vft = &session_mq_cb_vft;
Dave Barach77841402020-04-29 17:04:10 -0400581 a->namespace_id = vl_api_from_api_to_new_vec (mp, &mp->namespace_id);
Florin Coras458089b2019-08-21 16:20:44 -0700582
583 if ((rv = vnet_application_attach (a)))
584 {
Filip Tehlar0028e6f2023-06-28 10:47:32 +0200585 clib_warning ("attach returned: %U", format_session_error, rv);
586 rv = VNET_API_ERROR_UNSPECIFIED;
Florin Coras458089b2019-08-21 16:20:44 -0700587 vec_free (a->namespace_id);
588 goto done;
589 }
590 vec_free (a->namespace_id);
591
Florin Coras41d5f542021-01-15 13:49:33 -0800592 vec_validate (fds, 3 /* segs + tx evtfd */ + n_workers);
593
594 /* Send rx mqs segment */
595 app = application_get (a->app_index);
596 rx_mqs_seg = application_get_rx_mqs_segment (app);
597
598 fd_flags |= SESSION_FD_F_VPP_MQ_SEGMENT;
599 fds[n_fds] = rx_mqs_seg->ssvm.fd;
600 n_fds += 1;
601
Florin Coras458089b2019-08-21 16:20:44 -0700602 /* Send fifo segment fd if needed */
603 if (ssvm_type (a->segment) == SSVM_SEGMENT_MEMFD)
604 {
605 fd_flags |= SESSION_FD_F_MEMFD_SEGMENT;
606 fds[n_fds] = a->segment->fd;
607 n_fds += 1;
608 }
609 if (a->options[APP_OPTIONS_FLAGS] & APP_OPTIONS_FLAGS_EVT_MQ_USE_EVENTFD)
610 {
611 fd_flags |= SESSION_FD_F_MQ_EVENTFD;
Florin Coras86f12322021-01-22 15:05:14 -0800612 fds[n_fds] = svm_msg_q_get_eventfd (a->app_evt_q);
Florin Coras458089b2019-08-21 16:20:44 -0700613 n_fds += 1;
614 }
615
Florin Coras41d5f542021-01-15 13:49:33 -0800616 if (application_use_private_rx_mqs ())
617 {
618 fd_flags |= SESSION_FD_F_VPP_MQ_EVENTFD;
619 for (i = 0; i < n_workers + 1; i++)
620 {
621 rx_mq = application_rx_mq_get (app, i);
622 fds[n_fds] = svm_msg_q_get_eventfd (rx_mq);
623 n_fds += 1;
624 }
625 }
626
Florin Coras458089b2019-08-21 16:20:44 -0700627done:
Florin Coras458089b2019-08-21 16:20:44 -0700628 /* *INDENT-OFF* */
Klement Sekera0eb83f42021-12-02 16:36:34 +0000629 REPLY_MACRO3 (
630 VL_API_APP_ATTACH_REPLY,
631 ((!rv) ? vec_len (((fifo_segment_t *) a->segment)->ssvm.name) : 0), ({
632 if (!rv)
633 {
634 ctrl_thread = n_workers ? 1 : 0;
635 segp = (fifo_segment_t *) a->segment;
636 rmp->app_index = clib_host_to_net_u32 (a->app_index);
637 rmp->app_mq = fifo_segment_msg_q_offset (segp, 0);
638 rmp->vpp_ctrl_mq =
639 fifo_segment_msg_q_offset (rx_mqs_seg, ctrl_thread);
640 rmp->vpp_ctrl_mq_thread = ctrl_thread;
641 rmp->n_fds = n_fds;
642 rmp->fd_flags = fd_flags;
643 if (vec_len (segp->ssvm.name))
644 {
645 vl_api_vec_to_api_string (segp->ssvm.name, &rmp->segment_name);
646 }
647 rmp->segment_size = segp->ssvm.ssvm_size;
648 rmp->segment_handle = clib_host_to_net_u64 (a->segment_handle);
649 }
650 }));
Florin Coras458089b2019-08-21 16:20:44 -0700651 /* *INDENT-ON* */
652
653 if (n_fds)
654 session_send_fds (reg, fds, n_fds);
Florin Coras41d5f542021-01-15 13:49:33 -0800655 vec_free (fds);
Florin Coras458089b2019-08-21 16:20:44 -0700656}
657
Florin Corascea194d2017-10-02 00:18:51 -0700658static void
Florin Coras15531972018-08-12 23:50:53 -0700659vl_api_app_worker_add_del_t_handler (vl_api_app_worker_add_del_t * mp)
660{
661 int rv = 0, fds[SESSION_N_FD_TYPE], n_fds = 0;
662 vl_api_app_worker_add_del_reply_t *rmp;
663 vl_api_registration_t *reg;
Florin Coras15531972018-08-12 23:50:53 -0700664 application_t *app;
665 u8 fd_flags = 0;
666
Florin Coras61ae0562020-09-02 19:10:28 -0700667 if (!session_main_is_enabled () || appns_sapi_enabled ())
Florin Coras15531972018-08-12 23:50:53 -0700668 {
669 rv = VNET_API_ERROR_FEATURE_DISABLED;
670 goto done;
671 }
672
673 reg = vl_api_client_index_to_registration (mp->client_index);
674 if (!reg)
675 return;
676
Florin Corasc1f5a432018-11-20 11:31:26 -0800677 app = application_get_if_valid (clib_net_to_host_u32 (mp->app_index));
Florin Coras15531972018-08-12 23:50:53 -0700678 if (!app)
679 {
680 rv = VNET_API_ERROR_INVALID_VALUE;
681 goto done;
682 }
683
684 vnet_app_worker_add_del_args_t args = {
685 .app_index = app->app_index,
Florin Coras349f8ca2018-11-20 16:52:49 -0800686 .wrk_map_index = clib_net_to_host_u32 (mp->wrk_index),
Florin Corasc1f5a432018-11-20 11:31:26 -0800687 .api_client_index = mp->client_index,
Florin Coras15531972018-08-12 23:50:53 -0700688 .is_add = mp->is_add
689 };
Florin Corasc1a42652019-02-08 18:27:29 -0800690 rv = vnet_app_worker_add_del (&args);
691 if (rv)
Florin Coras15531972018-08-12 23:50:53 -0700692 {
Filip Tehlar0028e6f2023-06-28 10:47:32 +0200693 clib_warning ("app worker add/del returned: %U", format_session_error,
694 rv);
695 rv = VNET_API_ERROR_UNSPECIFIED;
Florin Coras15531972018-08-12 23:50:53 -0700696 goto done;
697 }
698
Florin Coras14598772018-09-04 19:47:52 -0700699 if (!mp->is_add)
700 goto done;
Florin Corasc3638fe2018-08-24 13:58:49 -0700701
Florin Coras15531972018-08-12 23:50:53 -0700702 /* Send fifo segment fd if needed */
703 if (ssvm_type (args.segment) == SSVM_SEGMENT_MEMFD)
704 {
705 fd_flags |= SESSION_FD_F_MEMFD_SEGMENT;
706 fds[n_fds] = args.segment->fd;
707 n_fds += 1;
708 }
709 if (application_segment_manager_properties (app)->use_mq_eventfd)
710 {
711 fd_flags |= SESSION_FD_F_MQ_EVENTFD;
Florin Coras86f12322021-01-22 15:05:14 -0800712 fds[n_fds] = svm_msg_q_get_eventfd (args.evt_q);
Florin Coras15531972018-08-12 23:50:53 -0700713 n_fds += 1;
714 }
715
716 /* *INDENT-OFF* */
717done:
Klement Sekera0eb83f42021-12-02 16:36:34 +0000718 REPLY_MACRO3 (
719 VL_API_APP_WORKER_ADD_DEL_REPLY,
720 ((!rv && mp->is_add) ? vec_len (args.segment->name) : 0), ({
721 rmp->is_add = mp->is_add;
722 rmp->wrk_index = clib_host_to_net_u32 (args.wrk_map_index);
723 rmp->segment_handle = clib_host_to_net_u64 (args.segment_handle);
724 if (!rv && mp->is_add)
725 {
726 rmp->app_event_queue_address =
727 fifo_segment_msg_q_offset ((fifo_segment_t *) args.segment, 0);
728 rmp->n_fds = n_fds;
729 rmp->fd_flags = fd_flags;
730 if (vec_len (args.segment->name))
731 {
732 vl_api_vec_to_api_string (args.segment->name,
733 &rmp->segment_name);
734 }
735 }
736 }));
Florin Coras15531972018-08-12 23:50:53 -0700737 /* *INDENT-ON* */
738
739 if (n_fds)
740 session_send_fds (reg, fds, n_fds);
741}
742
743static void
Florin Coras888d9f02020-04-02 23:00:13 +0000744vl_api_application_detach_t_handler (vl_api_application_detach_t * mp)
745{
746 vl_api_application_detach_reply_t *rmp;
747 int rv = VNET_API_ERROR_INVALID_VALUE_2;
748 vnet_app_detach_args_t _a, *a = &_a;
749 application_t *app;
750
Florin Coras61ae0562020-09-02 19:10:28 -0700751 if (!session_main_is_enabled () || appns_sapi_enabled ())
Florin Coras888d9f02020-04-02 23:00:13 +0000752 {
753 rv = VNET_API_ERROR_FEATURE_DISABLED;
754 goto done;
755 }
756
757 app = application_lookup (mp->client_index);
758 if (app)
759 {
760 a->app_index = app->app_index;
761 a->api_client_index = mp->client_index;
762 rv = vnet_application_detach (a);
Filip Tehlar0028e6f2023-06-28 10:47:32 +0200763 if (rv)
764 {
765 clib_warning ("vnet_application_detach: %U", format_session_error,
766 rv);
767 rv = VNET_API_ERROR_UNSPECIFIED;
768 }
Florin Coras888d9f02020-04-02 23:00:13 +0000769 }
770
771done:
772 REPLY_MACRO (VL_API_APPLICATION_DETACH_REPLY);
773}
774
775static void
Florin Corascea194d2017-10-02 00:18:51 -0700776vl_api_app_namespace_add_del_t_handler (vl_api_app_namespace_add_del_t * mp)
777{
778 vl_api_app_namespace_add_del_reply_t *rmp;
Florin Coras6e8c6672017-11-10 09:03:54 -0800779 u32 appns_index = 0;
780 u8 *ns_id = 0;
Florin Corascea194d2017-10-02 00:18:51 -0700781 int rv = 0;
Nathan Skrzypczak79f89532019-09-13 11:08:13 +0200782 if (session_main_is_enabled () == 0)
Florin Corascea194d2017-10-02 00:18:51 -0700783 {
784 rv = VNET_API_ERROR_FEATURE_DISABLED;
785 goto done;
786 }
787
Dave Barach77841402020-04-29 17:04:10 -0400788 ns_id = vl_api_from_api_to_new_vec (mp, &mp->namespace_id);
Florin Corascea194d2017-10-02 00:18:51 -0700789
Florin Corascea194d2017-10-02 00:18:51 -0700790 vnet_app_namespace_add_del_args_t args = {
791 .ns_id = ns_id,
Nathan Skrzypczak1a9e2f92021-07-28 19:35:08 +0200792 .sock_name = 0,
Florin Coras9a9adb22017-10-26 08:16:59 -0700793 .secret = clib_net_to_host_u64 (mp->secret),
Florin Corascea194d2017-10-02 00:18:51 -0700794 .sw_if_index = clib_net_to_host_u32 (mp->sw_if_index),
795 .ip4_fib_id = clib_net_to_host_u32 (mp->ip4_fib_id),
796 .ip6_fib_id = clib_net_to_host_u32 (mp->ip6_fib_id),
797 .is_add = 1
798 };
Florin Corasc1a42652019-02-08 18:27:29 -0800799 rv = vnet_app_namespace_add_del (&args);
800 if (!rv)
Florin Coras6e8c6672017-11-10 09:03:54 -0800801 {
802 appns_index = app_namespace_index_from_id (ns_id);
803 if (appns_index == APP_NAMESPACE_INVALID_INDEX)
804 {
805 clib_warning ("app ns lookup failed");
806 rv = VNET_API_ERROR_UNSPECIFIED;
807 }
808 }
Florin Corascea194d2017-10-02 00:18:51 -0700809 vec_free (ns_id);
Florin Coras6e8c6672017-11-10 09:03:54 -0800810
811 /* *INDENT-OFF* */
Florin Corascea194d2017-10-02 00:18:51 -0700812done:
Florin Coras6e8c6672017-11-10 09:03:54 -0800813 REPLY_MACRO2 (VL_API_APP_NAMESPACE_ADD_DEL_REPLY, ({
814 if (!rv)
815 rmp->appns_index = clib_host_to_net_u32 (appns_index);
816 }));
817 /* *INDENT-ON* */
Florin Corascea194d2017-10-02 00:18:51 -0700818}
819
Florin Coras1c710452017-10-17 00:03:13 -0700820static void
Florin Coras7cb471a2021-07-23 08:39:26 -0700821vl_api_app_namespace_add_del_v2_t_handler (
822 vl_api_app_namespace_add_del_v2_t *mp)
823{
824 vl_api_app_namespace_add_del_v2_reply_t *rmp;
Nathan Skrzypczak51f1b262023-04-27 12:43:46 +0200825 u8 *ns_id = 0;
Florin Coras7cb471a2021-07-23 08:39:26 -0700826 u32 appns_index = 0;
827 int rv = 0;
828
829 if (session_main_is_enabled () == 0)
830 {
831 rv = VNET_API_ERROR_FEATURE_DISABLED;
832 goto done;
833 }
834
835 mp->namespace_id[sizeof (mp->namespace_id) - 1] = 0;
Florin Coras7cb471a2021-07-23 08:39:26 -0700836 ns_id = format (0, "%s", &mp->namespace_id);
Florin Coras7cb471a2021-07-23 08:39:26 -0700837
838 vnet_app_namespace_add_del_args_t args = {
839 .ns_id = ns_id,
Nathan Skrzypczak1a9e2f92021-07-28 19:35:08 +0200840 .sock_name = 0,
Florin Coras7cb471a2021-07-23 08:39:26 -0700841 .secret = clib_net_to_host_u64 (mp->secret),
842 .sw_if_index = clib_net_to_host_u32 (mp->sw_if_index),
843 .ip4_fib_id = clib_net_to_host_u32 (mp->ip4_fib_id),
844 .ip6_fib_id = clib_net_to_host_u32 (mp->ip6_fib_id),
845 .is_add = 1
846 };
847 rv = vnet_app_namespace_add_del (&args);
848 if (!rv)
849 {
850 appns_index = app_namespace_index_from_id (ns_id);
851 if (appns_index == APP_NAMESPACE_INVALID_INDEX)
852 {
Nathan Skrzypczak1a9e2f92021-07-28 19:35:08 +0200853 clib_warning ("app ns lookup failed id:%s", ns_id);
Florin Coras7cb471a2021-07-23 08:39:26 -0700854 rv = VNET_API_ERROR_UNSPECIFIED;
855 }
856 }
857 vec_free (ns_id);
Florin Coras7cb471a2021-07-23 08:39:26 -0700858
859done:
860 REPLY_MACRO2 (VL_API_APP_NAMESPACE_ADD_DEL_V2_REPLY, ({
861 if (!rv)
862 rmp->appns_index = clib_host_to_net_u32 (appns_index);
863 }));
864}
865
866static void
Nathan Skrzypczak51f1b262023-04-27 12:43:46 +0200867vl_api_app_namespace_add_del_v4_t_handler (
868 vl_api_app_namespace_add_del_v4_t *mp)
Nathan Skrzypczak1a9e2f92021-07-28 19:35:08 +0200869{
Nathan Skrzypczak51f1b262023-04-27 12:43:46 +0200870 vl_api_app_namespace_add_del_v4_reply_t *rmp;
871 u8 *ns_id = 0, *sock_name = 0;
Nathan Skrzypczak1a9e2f92021-07-28 19:35:08 +0200872 u32 appns_index = 0;
873 int rv = 0;
874 if (session_main_is_enabled () == 0)
875 {
876 rv = VNET_API_ERROR_FEATURE_DISABLED;
877 goto done;
878 }
879 mp->namespace_id[sizeof (mp->namespace_id) - 1] = 0;
Nathan Skrzypczak1a9e2f92021-07-28 19:35:08 +0200880 ns_id = format (0, "%s", &mp->namespace_id);
Nathan Skrzypczakb3ea73e2021-08-05 10:22:52 +0200881 sock_name = vl_api_from_api_to_new_vec (mp, &mp->sock_name);
Nathan Skrzypczak1a9e2f92021-07-28 19:35:08 +0200882 vnet_app_namespace_add_del_args_t args = {
883 .ns_id = ns_id,
Nathan Skrzypczak1a9e2f92021-07-28 19:35:08 +0200884 .sock_name = sock_name,
885 .secret = clib_net_to_host_u64 (mp->secret),
886 .sw_if_index = clib_net_to_host_u32 (mp->sw_if_index),
887 .ip4_fib_id = clib_net_to_host_u32 (mp->ip4_fib_id),
888 .ip6_fib_id = clib_net_to_host_u32 (mp->ip6_fib_id),
889 .is_add = mp->is_add,
890 };
891 rv = vnet_app_namespace_add_del (&args);
892 if (!rv && mp->is_add)
893 {
894 appns_index = app_namespace_index_from_id (ns_id);
895 if (appns_index == APP_NAMESPACE_INVALID_INDEX)
896 {
897 clib_warning ("app ns lookup failed id:%s", ns_id);
898 rv = VNET_API_ERROR_UNSPECIFIED;
899 }
900 }
901 vec_free (ns_id);
Nathan Skrzypczak1a9e2f92021-07-28 19:35:08 +0200902 vec_free (sock_name);
903done:
Nathan Skrzypczak51f1b262023-04-27 12:43:46 +0200904 REPLY_MACRO2 (VL_API_APP_NAMESPACE_ADD_DEL_V4_REPLY, ({
905 if (!rv)
906 rmp->appns_index = clib_host_to_net_u32 (appns_index);
907 }));
908}
909
910static void
911vl_api_app_namespace_add_del_v3_t_handler (
912 vl_api_app_namespace_add_del_v3_t *mp)
913{
914 vl_api_app_namespace_add_del_v3_reply_t *rmp;
915 u8 *ns_id = 0, *sock_name = 0, *api_sock_name = 0;
916 u32 appns_index = 0;
917 int rv = 0;
918 if (session_main_is_enabled () == 0)
919 {
920 rv = VNET_API_ERROR_FEATURE_DISABLED;
921 goto done;
922 }
923 mp->namespace_id[sizeof (mp->namespace_id) - 1] = 0;
924 ns_id = format (0, "%s", &mp->namespace_id);
925 api_sock_name = vl_api_from_api_to_new_vec (mp, &mp->sock_name);
926 mp->netns[sizeof (mp->netns) - 1] = 0;
927 if (strlen ((char *) mp->netns) != 0)
928 {
929 sock_name =
930 format (0, "abstract:%v,netns_name=%s", api_sock_name, &mp->netns);
931 }
932 else
933 {
934 sock_name = api_sock_name;
935 api_sock_name = 0; // for vec_free
936 }
937
938 vnet_app_namespace_add_del_args_t args = {
939 .ns_id = ns_id,
940 .sock_name = sock_name,
941 .secret = clib_net_to_host_u64 (mp->secret),
942 .sw_if_index = clib_net_to_host_u32 (mp->sw_if_index),
943 .ip4_fib_id = clib_net_to_host_u32 (mp->ip4_fib_id),
944 .ip6_fib_id = clib_net_to_host_u32 (mp->ip6_fib_id),
945 .is_add = mp->is_add,
946 };
947 rv = vnet_app_namespace_add_del (&args);
948 if (!rv && mp->is_add)
949 {
950 appns_index = app_namespace_index_from_id (ns_id);
951 if (appns_index == APP_NAMESPACE_INVALID_INDEX)
952 {
953 clib_warning ("app ns lookup failed id:%s", ns_id);
954 rv = VNET_API_ERROR_UNSPECIFIED;
955 }
956 }
957 vec_free (ns_id);
958 vec_free (sock_name);
959 vec_free (api_sock_name);
960done:
Nathan Skrzypczak1a9e2f92021-07-28 19:35:08 +0200961 REPLY_MACRO2 (VL_API_APP_NAMESPACE_ADD_DEL_V3_REPLY, ({
962 if (!rv)
963 rmp->appns_index = clib_host_to_net_u32 (appns_index);
964 }));
965}
966
967static void
Florin Coras1c710452017-10-17 00:03:13 -0700968vl_api_session_rule_add_del_t_handler (vl_api_session_rule_add_del_t * mp)
969{
970 vl_api_session_rule_add_del_reply_t *rmp;
971 session_rule_add_del_args_t args;
972 session_rule_table_add_del_args_t *table_args = &args.table_args;
Florin Coras1c710452017-10-17 00:03:13 -0700973 int rv = 0;
974
Dave Barachb7b92992018-10-17 10:38:51 -0400975 clib_memset (&args, 0, sizeof (args));
Florin Coras1c710452017-10-17 00:03:13 -0700976
Jakub Grajciarb4e5e502020-01-31 09:35:29 +0100977 ip_prefix_decode (&mp->lcl, &table_args->lcl);
978 ip_prefix_decode (&mp->rmt, &table_args->rmt);
979
Milan Lenco8b9a5d12017-11-24 17:12:33 +0100980 table_args->lcl_port = mp->lcl_port;
981 table_args->rmt_port = mp->rmt_port;
Florin Coras1c710452017-10-17 00:03:13 -0700982 table_args->action_index = clib_net_to_host_u32 (mp->action_index);
983 table_args->is_add = mp->is_add;
Florin Corasc97a7392017-11-05 23:07:07 -0800984 mp->tag[sizeof (mp->tag) - 1] = 0;
985 table_args->tag = format (0, "%s", mp->tag);
Florin Coras1c710452017-10-17 00:03:13 -0700986 args.appns_index = clib_net_to_host_u32 (mp->appns_index);
987 args.scope = mp->scope;
Jakub Grajciarb4e5e502020-01-31 09:35:29 +0100988 args.transport_proto =
989 api_session_transport_proto_decode (&mp->transport_proto) ==
990 TRANSPORT_PROTO_UDP ? 1 : 0;
Florin Coras1c710452017-10-17 00:03:13 -0700991
Florin Corasc1a42652019-02-08 18:27:29 -0800992 rv = vnet_session_rule_add_del (&args);
993 if (rv)
Filip Tehlar0028e6f2023-06-28 10:47:32 +0200994 {
995 clib_warning ("rule add del returned: %U", format_session_error, rv);
996 rv = VNET_API_ERROR_UNSPECIFIED;
997 }
Florin Corasc97a7392017-11-05 23:07:07 -0800998 vec_free (table_args->tag);
Florin Coras1c710452017-10-17 00:03:13 -0700999 REPLY_MACRO (VL_API_SESSION_RULE_ADD_DEL_REPLY);
1000}
1001
Florin Coras6c36f532017-11-03 18:32:34 -07001002static void
1003send_session_rule_details4 (mma_rule_16_t * rule, u8 is_local,
Florin Corasc97a7392017-11-05 23:07:07 -08001004 u8 transport_proto, u32 appns_index, u8 * tag,
Florin Coras6c4dae22018-01-09 06:39:23 -08001005 vl_api_registration_t * reg, u32 context)
Florin Coras6c36f532017-11-03 18:32:34 -07001006{
1007 vl_api_session_rules_details_t *rmp = 0;
1008 session_mask_or_match_4_t *match =
1009 (session_mask_or_match_4_t *) & rule->match;
1010 session_mask_or_match_4_t *mask =
1011 (session_mask_or_match_4_t *) & rule->mask;
Jakub Grajciarb4e5e502020-01-31 09:35:29 +01001012 fib_prefix_t lcl, rmt;
Florin Coras6c36f532017-11-03 18:32:34 -07001013
1014 rmp = vl_msg_api_alloc (sizeof (*rmp));
Dave Barachb7b92992018-10-17 10:38:51 -04001015 clib_memset (rmp, 0, sizeof (*rmp));
Filip Tehlar0046e972021-06-26 22:12:08 +00001016 rmp->_vl_msg_id = ntohs (REPLY_MSG_ID_BASE + VL_API_SESSION_RULES_DETAILS);
Florin Coras6c36f532017-11-03 18:32:34 -07001017 rmp->context = context;
1018
Jakub Grajciarb4e5e502020-01-31 09:35:29 +01001019 clib_memset (&lcl, 0, sizeof (lcl));
1020 clib_memset (&rmt, 0, sizeof (rmt));
1021 ip_set (&lcl.fp_addr, &match->lcl_ip, 1);
1022 ip_set (&rmt.fp_addr, &match->rmt_ip, 1);
1023 lcl.fp_len = ip4_mask_to_preflen (&mask->lcl_ip);
1024 rmt.fp_len = ip4_mask_to_preflen (&mask->rmt_ip);
1025
1026 ip_prefix_encode (&lcl, &rmp->lcl);
1027 ip_prefix_encode (&rmt, &rmp->rmt);
Milan Lenco8b9a5d12017-11-24 17:12:33 +01001028 rmp->lcl_port = match->lcl_port;
1029 rmp->rmt_port = match->rmt_port;
Florin Coras6c36f532017-11-03 18:32:34 -07001030 rmp->action_index = clib_host_to_net_u32 (rule->action_index);
1031 rmp->scope =
Jakub Grajciarb4e5e502020-01-31 09:35:29 +01001032 is_local ? SESSION_RULE_SCOPE_API_LOCAL : SESSION_RULE_SCOPE_API_GLOBAL;
1033 rmp->transport_proto = api_session_transport_proto_encode (transport_proto);
Florin Coras6c36f532017-11-03 18:32:34 -07001034 rmp->appns_index = clib_host_to_net_u32 (appns_index);
Florin Corasc97a7392017-11-05 23:07:07 -08001035 if (tag)
1036 {
Dave Barach178cf492018-11-13 16:34:13 -05001037 clib_memcpy_fast (rmp->tag, tag, vec_len (tag));
Florin Corasc97a7392017-11-05 23:07:07 -08001038 rmp->tag[vec_len (tag)] = 0;
1039 }
Florin Coras6c36f532017-11-03 18:32:34 -07001040
Florin Coras6c4dae22018-01-09 06:39:23 -08001041 vl_api_send_msg (reg, (u8 *) rmp);
Florin Coras6c36f532017-11-03 18:32:34 -07001042}
1043
1044static void
Florin Corasc97a7392017-11-05 23:07:07 -08001045send_session_rule_details6 (mma_rule_40_t * rule, u8 is_local,
1046 u8 transport_proto, u32 appns_index, u8 * tag,
Florin Coras6c4dae22018-01-09 06:39:23 -08001047 vl_api_registration_t * reg, u32 context)
Florin Coras6c36f532017-11-03 18:32:34 -07001048{
1049 vl_api_session_rules_details_t *rmp = 0;
1050 session_mask_or_match_6_t *match =
1051 (session_mask_or_match_6_t *) & rule->match;
1052 session_mask_or_match_6_t *mask =
1053 (session_mask_or_match_6_t *) & rule->mask;
Jakub Grajciarb4e5e502020-01-31 09:35:29 +01001054 fib_prefix_t lcl, rmt;
Florin Coras6c36f532017-11-03 18:32:34 -07001055
1056 rmp = vl_msg_api_alloc (sizeof (*rmp));
Dave Barachb7b92992018-10-17 10:38:51 -04001057 clib_memset (rmp, 0, sizeof (*rmp));
Filip Tehlar0046e972021-06-26 22:12:08 +00001058 rmp->_vl_msg_id = ntohs (REPLY_MSG_ID_BASE + VL_API_SESSION_RULES_DETAILS);
Florin Coras6c36f532017-11-03 18:32:34 -07001059 rmp->context = context;
1060
Jakub Grajciarb4e5e502020-01-31 09:35:29 +01001061 clib_memset (&lcl, 0, sizeof (lcl));
1062 clib_memset (&rmt, 0, sizeof (rmt));
1063 ip_set (&lcl.fp_addr, &match->lcl_ip, 0);
1064 ip_set (&rmt.fp_addr, &match->rmt_ip, 0);
1065 lcl.fp_len = ip6_mask_to_preflen (&mask->lcl_ip);
1066 rmt.fp_len = ip6_mask_to_preflen (&mask->rmt_ip);
1067
1068 ip_prefix_encode (&lcl, &rmp->lcl);
1069 ip_prefix_encode (&rmt, &rmp->rmt);
Milan Lenco8b9a5d12017-11-24 17:12:33 +01001070 rmp->lcl_port = match->lcl_port;
1071 rmp->rmt_port = match->rmt_port;
Florin Coras6c36f532017-11-03 18:32:34 -07001072 rmp->action_index = clib_host_to_net_u32 (rule->action_index);
Florin Corasc97a7392017-11-05 23:07:07 -08001073 rmp->scope =
Jakub Grajciarb4e5e502020-01-31 09:35:29 +01001074 is_local ? SESSION_RULE_SCOPE_API_LOCAL : SESSION_RULE_SCOPE_API_GLOBAL;
1075 rmp->transport_proto = api_session_transport_proto_encode (transport_proto);
Florin Coras6c36f532017-11-03 18:32:34 -07001076 rmp->appns_index = clib_host_to_net_u32 (appns_index);
Florin Corasc97a7392017-11-05 23:07:07 -08001077 if (tag)
1078 {
Dave Barach178cf492018-11-13 16:34:13 -05001079 clib_memcpy_fast (rmp->tag, tag, vec_len (tag));
Florin Corasc97a7392017-11-05 23:07:07 -08001080 rmp->tag[vec_len (tag)] = 0;
1081 }
Florin Coras6c36f532017-11-03 18:32:34 -07001082
Florin Coras6c4dae22018-01-09 06:39:23 -08001083 vl_api_send_msg (reg, (u8 *) rmp);
Florin Coras6c36f532017-11-03 18:32:34 -07001084}
1085
1086static void
1087send_session_rules_table_details (session_rules_table_t * srt, u8 fib_proto,
Florin Corasc97a7392017-11-05 23:07:07 -08001088 u8 tp, u8 is_local, u32 appns_index,
Florin Coras6c4dae22018-01-09 06:39:23 -08001089 vl_api_registration_t * reg, u32 context)
Florin Coras6c36f532017-11-03 18:32:34 -07001090{
1091 mma_rule_16_t *rule16;
1092 mma_rule_40_t *rule40;
1093 mma_rules_table_16_t *srt16;
1094 mma_rules_table_40_t *srt40;
Florin Corasc97a7392017-11-05 23:07:07 -08001095 u32 ri;
Florin Coras6c36f532017-11-03 18:32:34 -07001096
Florin Corasc97a7392017-11-05 23:07:07 -08001097 if (is_local || fib_proto == FIB_PROTOCOL_IP4)
Florin Coras6c36f532017-11-03 18:32:34 -07001098 {
Florin Corasc97a7392017-11-05 23:07:07 -08001099 u8 *tag = 0;
1100 /* *INDENT-OFF* */
1101 srt16 = &srt->session_rules_tables_16;
Damjan Marionb2c31b62020-12-13 21:47:40 +01001102 pool_foreach (rule16, srt16->rules) {
Florin Corasc97a7392017-11-05 23:07:07 -08001103 ri = mma_rules_table_rule_index_16 (srt16, rule16);
1104 tag = session_rules_table_rule_tag (srt, ri, 1);
1105 send_session_rule_details4 (rule16, is_local, tp, appns_index, tag,
Florin Coras6c4dae22018-01-09 06:39:23 -08001106 reg, context);
Damjan Marionb2c31b62020-12-13 21:47:40 +01001107 }
Florin Corasc97a7392017-11-05 23:07:07 -08001108 /* *INDENT-ON* */
1109 }
1110 if (is_local || fib_proto == FIB_PROTOCOL_IP6)
1111 {
1112 u8 *tag = 0;
1113 /* *INDENT-OFF* */
1114 srt40 = &srt->session_rules_tables_40;
Damjan Marionb2c31b62020-12-13 21:47:40 +01001115 pool_foreach (rule40, srt40->rules) {
Florin Corasc97a7392017-11-05 23:07:07 -08001116 ri = mma_rules_table_rule_index_40 (srt40, rule40);
1117 tag = session_rules_table_rule_tag (srt, ri, 1);
1118 send_session_rule_details6 (rule40, is_local, tp, appns_index, tag,
Florin Coras6c4dae22018-01-09 06:39:23 -08001119 reg, context);
Damjan Marionb2c31b62020-12-13 21:47:40 +01001120 }
Florin Corasc97a7392017-11-05 23:07:07 -08001121 /* *INDENT-ON* */
Florin Coras6c36f532017-11-03 18:32:34 -07001122 }
1123}
1124
1125static void
Neale Ranns2b202bc2020-09-21 08:17:51 +00001126vl_api_session_rules_dump_t_handler (vl_api_session_rules_dump_t * mp)
Florin Coras6c36f532017-11-03 18:32:34 -07001127{
Florin Coras6c4dae22018-01-09 06:39:23 -08001128 vl_api_registration_t *reg;
Florin Coras6c36f532017-11-03 18:32:34 -07001129 session_table_t *st;
Florin Corasc97a7392017-11-05 23:07:07 -08001130 u8 tp;
Florin Coras6c36f532017-11-03 18:32:34 -07001131
Florin Coras6c4dae22018-01-09 06:39:23 -08001132 reg = vl_api_client_index_to_registration (mp->client_index);
1133 if (!reg)
Florin Coras6c36f532017-11-03 18:32:34 -07001134 return;
1135
1136 /* *INDENT-OFF* */
1137 session_table_foreach (st, ({
Florin Coras07063b82020-03-13 04:44:51 +00001138 for (tp = 0; tp < TRANSPORT_N_PROTOS; tp++)
Florin Corasc97a7392017-11-05 23:07:07 -08001139 {
1140 send_session_rules_table_details (&st->session_rules[tp],
1141 st->active_fib_proto, tp,
Florin Coras6c4dae22018-01-09 06:39:23 -08001142 st->is_local, st->appns_index, reg,
Florin Corasc97a7392017-11-05 23:07:07 -08001143 mp->context);
1144 }
Florin Coras6c36f532017-11-03 18:32:34 -07001145 }));
1146 /* *INDENT-ON* */
1147}
1148
Florin Coras371ca502018-02-21 12:07:41 -08001149static void
Nathan Skrzypczak79f89532019-09-13 11:08:13 +02001150vl_api_app_add_cert_key_pair_t_handler (vl_api_app_add_cert_key_pair_t * mp)
Florin Coras371ca502018-02-21 12:07:41 -08001151{
Nathan Skrzypczak79f89532019-09-13 11:08:13 +02001152 vl_api_app_add_cert_key_pair_reply_t *rmp;
1153 vnet_app_add_cert_key_pair_args_t _a, *a = &_a;
1154 u32 certkey_len, key_len, cert_len;
Florin Coras371ca502018-02-21 12:07:41 -08001155 int rv = 0;
Nathan Skrzypczak79f89532019-09-13 11:08:13 +02001156 if (session_main_is_enabled () == 0)
Florin Coras371ca502018-02-21 12:07:41 -08001157 {
1158 rv = VNET_API_ERROR_FEATURE_DISABLED;
1159 goto done;
1160 }
Nathan Skrzypczak79f89532019-09-13 11:08:13 +02001161
Florin Coras371ca502018-02-21 12:07:41 -08001162 cert_len = clib_net_to_host_u16 (mp->cert_len);
Florin Coras5090c572018-03-18 08:22:17 -07001163 if (cert_len > 10000)
1164 {
1165 rv = VNET_API_ERROR_INVALID_VALUE;
1166 goto done;
1167 }
Nathan Skrzypczak79f89532019-09-13 11:08:13 +02001168
1169 certkey_len = clib_net_to_host_u16 (mp->certkey_len);
1170 if (certkey_len < cert_len)
Florin Coras371ca502018-02-21 12:07:41 -08001171 {
Nathan Skrzypczak79f89532019-09-13 11:08:13 +02001172 rv = VNET_API_ERROR_INVALID_VALUE;
1173 goto done;
Florin Coras371ca502018-02-21 12:07:41 -08001174 }
Nathan Skrzypczak79f89532019-09-13 11:08:13 +02001175
1176 key_len = certkey_len - cert_len;
1177 if (key_len > 10000)
1178 {
1179 rv = VNET_API_ERROR_INVALID_VALUE;
1180 goto done;
1181 }
1182
1183 clib_memset (a, 0, sizeof (*a));
Florin Corasa5a9efd2021-01-05 17:03:29 -08001184 a->cert = mp->certkey;
1185 a->key = mp->certkey + cert_len;
1186 a->cert_len = cert_len;
1187 a->key_len = key_len;
Nathan Skrzypczak79f89532019-09-13 11:08:13 +02001188 rv = vnet_app_add_cert_key_pair (a);
Nathan Skrzypczak79f89532019-09-13 11:08:13 +02001189
Florin Coras371ca502018-02-21 12:07:41 -08001190done:
Nathan Skrzypczak79f89532019-09-13 11:08:13 +02001191 /* *INDENT-OFF* */
1192 REPLY_MACRO2 (VL_API_APP_ADD_CERT_KEY_PAIR_REPLY, ({
1193 if (!rv)
Nathan Skrzypczak45ec9f42019-11-06 14:47:40 +01001194 rmp->index = clib_host_to_net_u32 (a->index);
Nathan Skrzypczak79f89532019-09-13 11:08:13 +02001195 }));
1196 /* *INDENT-ON* */
Florin Coras371ca502018-02-21 12:07:41 -08001197}
1198
1199static void
Nathan Skrzypczak79f89532019-09-13 11:08:13 +02001200vl_api_app_del_cert_key_pair_t_handler (vl_api_app_del_cert_key_pair_t * mp)
Florin Coras371ca502018-02-21 12:07:41 -08001201{
Nathan Skrzypczak79f89532019-09-13 11:08:13 +02001202 vl_api_app_del_cert_key_pair_reply_t *rmp;
Nathan Skrzypczak45ec9f42019-11-06 14:47:40 +01001203 u32 ckpair_index;
Florin Coras371ca502018-02-21 12:07:41 -08001204 int rv = 0;
Nathan Skrzypczak79f89532019-09-13 11:08:13 +02001205 if (session_main_is_enabled () == 0)
1206 {
1207 rv = VNET_API_ERROR_FEATURE_DISABLED;
1208 goto done;
1209 }
Nathan Skrzypczak45ec9f42019-11-06 14:47:40 +01001210 ckpair_index = clib_net_to_host_u32 (mp->index);
1211 rv = vnet_app_del_cert_key_pair (ckpair_index);
Filip Tehlar0028e6f2023-06-28 10:47:32 +02001212 if (rv)
1213 {
1214 clib_warning ("vnet_app_del_cert_key_pair: %U", format_session_error,
1215 rv);
1216 rv = VNET_API_ERROR_UNSPECIFIED;
1217 }
Nathan Skrzypczak79f89532019-09-13 11:08:13 +02001218
1219done:
Nathan Skrzypczak45ec9f42019-11-06 14:47:40 +01001220 REPLY_MACRO (VL_API_APP_DEL_CERT_KEY_PAIR_REPLY);
Nathan Skrzypczak79f89532019-09-13 11:08:13 +02001221}
1222
Florin Coras6cf30ad2017-04-04 23:08:23 -07001223static clib_error_t *
1224application_reaper_cb (u32 client_index)
Dave Barach68b0fb02017-02-28 15:15:56 -05001225{
Florin Coras6cf30ad2017-04-04 23:08:23 -07001226 application_t *app = application_lookup (client_index);
1227 vnet_app_detach_args_t _a, *a = &_a;
1228 if (app)
1229 {
Florin Coras15531972018-08-12 23:50:53 -07001230 a->app_index = app->app_index;
Florin Coras053a0e42018-11-13 15:52:38 -08001231 a->api_client_index = client_index;
Florin Coras6cf30ad2017-04-04 23:08:23 -07001232 vnet_application_detach (a);
1233 }
1234 return 0;
Dave Barach68b0fb02017-02-28 15:15:56 -05001235}
1236
Florin Coras6cf30ad2017-04-04 23:08:23 -07001237VL_MSG_API_REAPER_FUNCTION (application_reaper_cb);
Dave Barach68b0fb02017-02-28 15:15:56 -05001238
Dave Barach68b0fb02017-02-28 15:15:56 -05001239/*
Florin Coras61ae0562020-09-02 19:10:28 -07001240 * Socket api functions
1241 */
1242
Florin Coras61ae0562020-09-02 19:10:28 -07001243static int
1244mq_send_add_segment_sapi_cb (u32 app_wrk_index, u64 segment_handle)
1245{
Florin Coras20c24232021-11-22 21:19:01 -08001246 session_app_add_segment_msg_t m = { 0 };
Florin Coras61ae0562020-09-02 19:10:28 -07001247 app_worker_t *app_wrk;
Florin Coras61ae0562020-09-02 19:10:28 -07001248 fifo_segment_t *fs;
1249 ssvm_private_t *sp;
1250 u8 fd_flags = 0;
1251
1252 app_wrk = app_worker_get (app_wrk_index);
1253
1254 fs = segment_manager_get_segment_w_handle (segment_handle);
1255 sp = &fs->ssvm;
1256 ASSERT (ssvm_type (sp) == SSVM_SEGMENT_MEMFD);
1257
1258 fd_flags |= SESSION_FD_F_MEMFD_SEGMENT;
Florin Coras61ae0562020-09-02 19:10:28 -07001259
Florin Coras20c24232021-11-22 21:19:01 -08001260 m.segment_size = sp->ssvm_size;
1261 m.fd_flags = fd_flags;
1262 m.segment_handle = segment_handle;
1263 strncpy ((char *) m.segment_name, (char *) sp->name,
1264 sizeof (m.segment_name) - 1);
Florin Coras61ae0562020-09-02 19:10:28 -07001265
Florin Coras20c24232021-11-22 21:19:01 -08001266 app_wrk_send_ctrl_evt_fd (app_wrk, SESSION_CTRL_EVT_APP_ADD_SEGMENT, &m,
1267 sizeof (m), sp->fd);
Florin Coras61ae0562020-09-02 19:10:28 -07001268
1269 return 0;
1270}
1271
1272static int
1273mq_send_del_segment_sapi_cb (u32 app_wrk_index, u64 segment_handle)
1274{
Florin Coras20c24232021-11-22 21:19:01 -08001275 session_app_del_segment_msg_t m = { 0 };
Florin Coras61ae0562020-09-02 19:10:28 -07001276 app_worker_t *app_wrk;
Florin Coras61ae0562020-09-02 19:10:28 -07001277
1278 app_wrk = app_worker_get (app_wrk_index);
1279
Florin Coras20c24232021-11-22 21:19:01 -08001280 m.segment_handle = segment_handle;
Florin Coras61ae0562020-09-02 19:10:28 -07001281
Florin Coras20c24232021-11-22 21:19:01 -08001282 app_wrk_send_ctrl_evt (app_wrk, SESSION_CTRL_EVT_APP_DEL_SEGMENT, &m,
1283 sizeof (m));
Florin Coras61ae0562020-09-02 19:10:28 -07001284
1285 return 0;
1286}
1287
1288static session_cb_vft_t session_mq_sapi_cb_vft = {
1289 .session_accept_callback = mq_send_session_accepted_cb,
1290 .session_disconnect_callback = mq_send_session_disconnected_cb,
1291 .session_connected_callback = mq_send_session_connected_cb,
1292 .session_reset_callback = mq_send_session_reset_cb,
1293 .session_migrate_callback = mq_send_session_migrate_cb,
1294 .session_cleanup_callback = mq_send_session_cleanup_cb,
1295 .add_segment_callback = mq_send_add_segment_sapi_cb,
1296 .del_segment_callback = mq_send_del_segment_sapi_cb,
Florin Coras0242d302022-12-22 15:03:44 -08001297 .builtin_app_rx_callback = mq_send_io_rx_event,
1298 .builtin_app_tx_callback = mq_send_io_tx_event,
Florin Coras61ae0562020-09-02 19:10:28 -07001299};
1300
1301static void
1302session_api_attach_handler (app_namespace_t * app_ns, clib_socket_t * cs,
1303 app_sapi_attach_msg_t * mp)
1304{
Florin Coras41d5f542021-01-15 13:49:33 -08001305 int rv = 0, *fds = 0, n_fds = 0, i, n_workers;
Florin Coras61ae0562020-09-02 19:10:28 -07001306 vnet_app_attach_args_t _a, *a = &_a;
1307 app_sapi_attach_reply_msg_t *rmp;
Florin Coras61ae0562020-09-02 19:10:28 -07001308 u8 fd_flags = 0, ctrl_thread;
1309 app_ns_api_handle_t *handle;
Florin Coras41d5f542021-01-15 13:49:33 -08001310 fifo_segment_t *rx_mqs_seg;
Florin Coras61ae0562020-09-02 19:10:28 -07001311 app_sapi_msg_t msg = { 0 };
1312 app_worker_t *app_wrk;
Florin Coras61ae0562020-09-02 19:10:28 -07001313 application_t *app;
Florin Coras41d5f542021-01-15 13:49:33 -08001314 svm_msg_q_t *rx_mq;
Florin Coras61ae0562020-09-02 19:10:28 -07001315
1316 /* Make sure name is null terminated */
1317 mp->name[63] = 0;
1318
1319 clib_memset (a, 0, sizeof (*a));
1320 a->api_client_index = appns_sapi_socket_handle (app_ns, cs);
1321 a->name = format (0, "%s", (char *) mp->name);
1322 a->options = mp->options;
1323 a->session_cb_vft = &session_mq_sapi_cb_vft;
1324 a->use_sock_api = 1;
1325 a->options[APP_OPTIONS_NAMESPACE] = app_namespace_index (app_ns);
1326
1327 if ((rv = vnet_application_attach (a)))
1328 {
1329 clib_warning ("attach returned: %d", rv);
1330 goto done;
1331 }
1332
Florin Coras41d5f542021-01-15 13:49:33 -08001333 n_workers = vlib_num_workers ();
1334 vec_validate (fds, 3 /* segs + tx evtfd */ + n_workers);
1335
Florin Coras61ae0562020-09-02 19:10:28 -07001336 /* Send event queues segment */
Florin Coras41d5f542021-01-15 13:49:33 -08001337 app = application_get (a->app_index);
1338 rx_mqs_seg = application_get_rx_mqs_segment (app);
1339
1340 fd_flags |= SESSION_FD_F_VPP_MQ_SEGMENT;
1341 fds[n_fds] = rx_mqs_seg->ssvm.fd;
1342 n_fds += 1;
1343
Florin Coras61ae0562020-09-02 19:10:28 -07001344 /* Send fifo segment fd if needed */
1345 if (ssvm_type (a->segment) == SSVM_SEGMENT_MEMFD)
1346 {
1347 fd_flags |= SESSION_FD_F_MEMFD_SEGMENT;
1348 fds[n_fds] = a->segment->fd;
1349 n_fds += 1;
1350 }
1351 if (a->options[APP_OPTIONS_FLAGS] & APP_OPTIONS_FLAGS_EVT_MQ_USE_EVENTFD)
1352 {
1353 fd_flags |= SESSION_FD_F_MQ_EVENTFD;
Florin Coras86f12322021-01-22 15:05:14 -08001354 fds[n_fds] = svm_msg_q_get_eventfd (a->app_evt_q);
Florin Coras61ae0562020-09-02 19:10:28 -07001355 n_fds += 1;
1356 }
1357
Florin Coras41d5f542021-01-15 13:49:33 -08001358 if (application_use_private_rx_mqs ())
1359 {
1360 fd_flags |= SESSION_FD_F_VPP_MQ_EVENTFD;
1361 for (i = 0; i < n_workers + 1; i++)
1362 {
1363 rx_mq = application_rx_mq_get (app, i);
1364 fds[n_fds] = svm_msg_q_get_eventfd (rx_mq);
1365 n_fds += 1;
1366 }
1367 }
1368
Florin Coras61ae0562020-09-02 19:10:28 -07001369done:
1370
1371 msg.type = APP_SAPI_MSG_TYPE_ATTACH_REPLY;
1372 rmp = &msg.attach_reply;
1373 rmp->retval = rv;
1374 if (!rv)
1375 {
Florin Coras41d5f542021-01-15 13:49:33 -08001376 ctrl_thread = n_workers ? 1 : 0;
Florin Coras61ae0562020-09-02 19:10:28 -07001377 rmp->app_index = a->app_index;
Florin Corasb4624182020-12-11 13:58:12 -08001378 rmp->app_mq =
1379 fifo_segment_msg_q_offset ((fifo_segment_t *) a->segment, 0);
Florin Coras41d5f542021-01-15 13:49:33 -08001380 rmp->vpp_ctrl_mq = fifo_segment_msg_q_offset (rx_mqs_seg, ctrl_thread);
Florin Coras61ae0562020-09-02 19:10:28 -07001381 rmp->vpp_ctrl_mq_thread = ctrl_thread;
1382 rmp->n_fds = n_fds;
1383 rmp->fd_flags = fd_flags;
1384 /* No segment name and size since we only support memfds
1385 * in this configuration */
1386 rmp->segment_handle = a->segment_handle;
1387 rmp->api_client_handle = a->api_client_index;
1388
1389 /* Update app index for socket */
1390 handle = (app_ns_api_handle_t *) & cs->private_data;
Florin Coras61ae0562020-09-02 19:10:28 -07001391 app_wrk = application_get_worker (app, 0);
1392 handle->aah_app_wrk_index = app_wrk->wrk_index;
1393 }
1394
1395 clib_socket_sendmsg (cs, &msg, sizeof (msg), fds, n_fds);
1396 vec_free (a->name);
Florin Coras41d5f542021-01-15 13:49:33 -08001397 vec_free (fds);
Florin Coras61ae0562020-09-02 19:10:28 -07001398}
1399
Florin Coras98078ab2021-08-12 18:12:09 -07001400void
Florin Coras61ae0562020-09-02 19:10:28 -07001401sapi_socket_close_w_handle (u32 api_handle)
1402{
1403 app_namespace_t *app_ns = app_namespace_get (api_handle >> 16);
1404 u16 sock_index = api_handle & 0xffff;
1405 app_ns_api_handle_t *handle;
1406 clib_socket_t *cs;
1407 clib_file_t *cf;
1408
1409 cs = appns_sapi_get_socket (app_ns, sock_index);
1410 if (!cs)
1411 return;
1412
1413 handle = (app_ns_api_handle_t *) & cs->private_data;
1414 cf = clib_file_get (&file_main, handle->aah_file_index);
1415 clib_file_del (&file_main, cf);
1416
1417 clib_socket_close (cs);
1418 appns_sapi_free_socket (app_ns, cs);
1419}
1420
1421static void
1422sapi_add_del_worker_handler (app_namespace_t * app_ns,
1423 clib_socket_t * cs,
1424 app_sapi_worker_add_del_msg_t * mp)
1425{
1426 int rv = 0, fds[SESSION_N_FD_TYPE], n_fds = 0;
1427 app_sapi_worker_add_del_reply_msg_t *rmp;
1428 app_ns_api_handle_t *handle;
1429 app_sapi_msg_t msg = { 0 };
1430 app_worker_t *app_wrk;
Florin Corascc7c88e2020-09-15 15:56:51 -07001431 u32 sapi_handle = -1;
Florin Coras61ae0562020-09-02 19:10:28 -07001432 application_t *app;
Florin Coras61ae0562020-09-02 19:10:28 -07001433 u8 fd_flags = 0;
1434
1435 app = application_get_if_valid (mp->app_index);
1436 if (!app)
1437 {
Filip Tehlar0028e6f2023-06-28 10:47:32 +02001438 rv = SESSION_E_INVALID;
Florin Coras61ae0562020-09-02 19:10:28 -07001439 goto done;
1440 }
1441
1442 sapi_handle = appns_sapi_socket_handle (app_ns, cs);
1443
1444 vnet_app_worker_add_del_args_t args = {
1445 .app_index = app->app_index,
1446 .wrk_map_index = mp->wrk_index,
1447 .api_client_index = sapi_handle,
1448 .is_add = mp->is_add
1449 };
1450 rv = vnet_app_worker_add_del (&args);
1451 if (rv)
1452 {
Filip Tehlar0028e6f2023-06-28 10:47:32 +02001453 clib_warning ("app worker add/del returned: %U", format_session_error,
1454 rv);
Florin Coras61ae0562020-09-02 19:10:28 -07001455 goto done;
1456 }
1457
1458 if (!mp->is_add)
Florin Coras98078ab2021-08-12 18:12:09 -07001459 goto done;
Florin Coras61ae0562020-09-02 19:10:28 -07001460
1461 /* Send fifo segment fd if needed */
1462 if (ssvm_type (args.segment) == SSVM_SEGMENT_MEMFD)
1463 {
1464 fd_flags |= SESSION_FD_F_MEMFD_SEGMENT;
1465 fds[n_fds] = args.segment->fd;
1466 n_fds += 1;
1467 }
1468 if (application_segment_manager_properties (app)->use_mq_eventfd)
1469 {
1470 fd_flags |= SESSION_FD_F_MQ_EVENTFD;
Florin Coras86f12322021-01-22 15:05:14 -08001471 fds[n_fds] = svm_msg_q_get_eventfd (args.evt_q);
Florin Coras61ae0562020-09-02 19:10:28 -07001472 n_fds += 1;
1473 }
1474
1475done:
1476
1477 msg.type = APP_SAPI_MSG_TYPE_ADD_DEL_WORKER_REPLY;
1478 rmp = &msg.worker_add_del_reply;
1479 rmp->retval = rv;
1480 rmp->is_add = mp->is_add;
Florin Corascc7c88e2020-09-15 15:56:51 -07001481 rmp->api_client_handle = sapi_handle;
Florin Coras61ae0562020-09-02 19:10:28 -07001482 rmp->wrk_index = args.wrk_map_index;
1483 rmp->segment_handle = args.segment_handle;
1484 if (!rv && mp->is_add)
1485 {
1486 /* No segment name and size. This supports only memfds */
Florin Corasb4624182020-12-11 13:58:12 -08001487 rmp->app_event_queue_address =
1488 fifo_segment_msg_q_offset ((fifo_segment_t *) args.segment, 0);
Florin Coras61ae0562020-09-02 19:10:28 -07001489 rmp->n_fds = n_fds;
1490 rmp->fd_flags = fd_flags;
1491
1492 /* Update app index for socket */
1493 handle = (app_ns_api_handle_t *) & cs->private_data;
1494 app_wrk = application_get_worker (app, args.wrk_map_index);
1495 handle->aah_app_wrk_index = app_wrk->wrk_index;
1496 }
1497
1498 clib_socket_sendmsg (cs, &msg, sizeof (msg), fds, n_fds);
1499}
1500
Filip Tehlar447e51d2022-02-18 08:49:43 +00001501/* This is a workaround for the case when session layer starts reading
1502 * the socket before the client actualy sends the data
1503 */
1504static clib_error_t *
1505sapi_socket_receive_wait (clib_socket_t *cs, u8 *msg, u32 msg_len)
1506{
1507 clib_error_t *err;
1508 int n_tries = 5;
1509
1510 while (1)
1511 {
1512 err = clib_socket_recvmsg (cs, msg, msg_len, 0, 0);
1513 if (!err)
1514 break;
1515
1516 if (!n_tries)
1517 return err;
1518
1519 n_tries--;
1520 usleep (1);
1521 }
1522
1523 return err;
1524}
1525
Florin Coras61ae0562020-09-02 19:10:28 -07001526static void
Florin Corase191d762021-08-11 14:55:49 -07001527sapi_add_del_cert_key_handler (app_namespace_t *app_ns, clib_socket_t *cs,
1528 app_sapi_cert_key_add_del_msg_t *mp)
1529{
1530 vnet_app_add_cert_key_pair_args_t _a, *a = &_a;
1531 app_sapi_cert_key_add_del_reply_msg_t *rmp;
1532 app_sapi_msg_t msg = { 0 };
1533 int rv = 0;
1534
1535 if (mp->is_add)
1536 {
1537 const u32 max_certkey_len = 2e4, max_cert_len = 1e4, max_key_len = 1e4;
1538 clib_error_t *err;
1539 u8 *certkey = 0;
1540 u32 key_len;
1541
1542 if (mp->certkey_len > max_certkey_len)
1543 {
1544 rv = SESSION_E_INVALID;
1545 goto send_reply;
1546 }
1547
1548 vec_validate (certkey, mp->certkey_len - 1);
Filip Tehlar447e51d2022-02-18 08:49:43 +00001549
1550 err = sapi_socket_receive_wait (cs, certkey, mp->certkey_len);
Florin Corase191d762021-08-11 14:55:49 -07001551 if (err)
1552 {
1553 clib_error_report (err);
Florin Corase191d762021-08-11 14:55:49 -07001554 rv = SESSION_E_INVALID;
1555 goto send_reply;
1556 }
1557
1558 if (mp->cert_len > max_cert_len)
1559 {
1560 rv = SESSION_E_INVALID;
1561 goto send_reply;
1562 }
1563
1564 if (mp->certkey_len < mp->cert_len)
1565 {
1566 rv = SESSION_E_INVALID;
1567 goto send_reply;
1568 }
1569
1570 key_len = mp->certkey_len - mp->cert_len;
1571 if (key_len > max_key_len)
1572 {
1573 rv = SESSION_E_INVALID;
1574 goto send_reply;
1575 }
1576
1577 clib_memset (a, 0, sizeof (*a));
1578 a->cert = certkey;
1579 a->key = certkey + mp->cert_len;
1580 a->cert_len = mp->cert_len;
1581 a->key_len = key_len;
1582 rv = vnet_app_add_cert_key_pair (a);
1583
1584 vec_free (certkey);
1585 }
1586 else
1587 {
1588 rv = vnet_app_del_cert_key_pair (mp->index);
1589 }
1590
1591send_reply:
1592
1593 msg.type = APP_SAPI_MSG_TYPE_ADD_DEL_CERT_KEY_REPLY;
1594 rmp = &msg.cert_key_add_del_reply;
1595 rmp->retval = rv;
1596 rmp->context = mp->context;
1597 if (!rv && mp->is_add)
1598 rmp->index = a->index;
1599
1600 clib_socket_sendmsg (cs, &msg, sizeof (msg), 0, 0);
1601}
1602
1603static void
Florin Coras61ae0562020-09-02 19:10:28 -07001604sapi_socket_detach (app_namespace_t * app_ns, clib_socket_t * cs)
1605{
Florin Coras61ae0562020-09-02 19:10:28 -07001606 app_ns_api_handle_t *handle;
1607 app_worker_t *app_wrk;
1608 u32 api_client_handle;
1609
1610 api_client_handle = appns_sapi_socket_handle (app_ns, cs);
Florin Coras61ae0562020-09-02 19:10:28 -07001611
Florin Corasf99a7d62020-09-14 10:29:29 -07001612 /* Cleanup everything because app worker closed socket or crashed */
Florin Coras61ae0562020-09-02 19:10:28 -07001613 handle = (app_ns_api_handle_t *) & cs->private_data;
Filip Tehlar9c32f052022-03-11 11:12:56 +00001614 app_wrk = app_worker_get_if_valid (handle->aah_app_wrk_index);
1615 if (!app_wrk)
1616 return;
Florin Corasf99a7d62020-09-14 10:29:29 -07001617
1618 vnet_app_worker_add_del_args_t args = {
1619 .app_index = app_wrk->app_index,
1620 .wrk_map_index = app_wrk->wrk_map_index,
1621 .api_client_index = api_client_handle,
1622 .is_add = 0
1623 };
1624 /* Send rpc to main thread for worker barrier */
1625 vlib_rpc_call_main_thread (vnet_app_worker_add_del, (u8 *) & args,
1626 sizeof (args));
Florin Coras61ae0562020-09-02 19:10:28 -07001627}
1628
1629static clib_error_t *
1630sapi_sock_read_ready (clib_file_t * cf)
1631{
1632 app_ns_api_handle_t *handle = (app_ns_api_handle_t *) & cf->private_data;
Florin Coras7360e3d2020-09-18 16:15:47 -07001633 vlib_main_t *vm = vlib_get_main ();
Florin Coras61ae0562020-09-02 19:10:28 -07001634 app_sapi_msg_t msg = { 0 };
1635 app_namespace_t *app_ns;
1636 clib_error_t *err = 0;
1637 clib_socket_t *cs;
1638
1639 app_ns = app_namespace_get (handle->aah_app_ns_index);
1640 cs = appns_sapi_get_socket (app_ns, handle->aah_sock_index);
1641 if (!cs)
1642 goto error;
1643
1644 err = clib_socket_recvmsg (cs, &msg, sizeof (msg), 0, 0);
1645 if (err)
1646 {
1647 clib_error_free (err);
1648 sapi_socket_detach (app_ns, cs);
1649 goto error;
1650 }
1651
1652 handle = (app_ns_api_handle_t *) & cs->private_data;
1653
Florin Coras7360e3d2020-09-18 16:15:47 -07001654 vlib_worker_thread_barrier_sync (vm);
1655
Florin Coras61ae0562020-09-02 19:10:28 -07001656 switch (msg.type)
1657 {
1658 case APP_SAPI_MSG_TYPE_ATTACH:
1659 session_api_attach_handler (app_ns, cs, &msg.attach);
1660 break;
1661 case APP_SAPI_MSG_TYPE_ADD_DEL_WORKER:
1662 sapi_add_del_worker_handler (app_ns, cs, &msg.worker_add_del);
1663 break;
Florin Corase191d762021-08-11 14:55:49 -07001664 case APP_SAPI_MSG_TYPE_ADD_DEL_CERT_KEY:
1665 sapi_add_del_cert_key_handler (app_ns, cs, &msg.cert_key_add_del);
1666 break;
Florin Coras61ae0562020-09-02 19:10:28 -07001667 default:
1668 clib_warning ("app wrk %u unknown message type: %u",
1669 handle->aah_app_wrk_index, msg.type);
1670 break;
1671 }
1672
Florin Coras7360e3d2020-09-18 16:15:47 -07001673 vlib_worker_thread_barrier_release (vm);
1674
Florin Coras61ae0562020-09-02 19:10:28 -07001675error:
1676 return 0;
1677}
1678
1679static clib_error_t *
1680sapi_sock_write_ready (clib_file_t * cf)
1681{
1682 app_ns_api_handle_t *handle = (app_ns_api_handle_t *) & cf->private_data;
1683 clib_warning ("called for app ns %u", handle->aah_app_ns_index);
1684 return 0;
1685}
1686
1687static clib_error_t *
1688sapi_sock_error (clib_file_t * cf)
1689{
1690 app_ns_api_handle_t *handle = (app_ns_api_handle_t *) & cf->private_data;
1691 app_namespace_t *app_ns;
1692 clib_socket_t *cs;
1693
1694 app_ns = app_namespace_get (handle->aah_app_ns_index);
1695 cs = appns_sapi_get_socket (app_ns, handle->aah_sock_index);
1696 if (!cs)
1697 return 0;
1698
1699 sapi_socket_detach (app_ns, cs);
1700 return 0;
1701}
1702
1703static clib_error_t *
1704sapi_sock_accept_ready (clib_file_t * scf)
1705{
1706 app_ns_api_handle_t handle = *(app_ns_api_handle_t *) & scf->private_data;
1707 app_namespace_t *app_ns;
1708 clib_file_t cf = { 0 };
1709 clib_error_t *err = 0;
1710 clib_socket_t *ccs, *scs;
1711
1712 /* Listener files point to namespace */
1713 app_ns = app_namespace_get (handle.aah_app_ns_index);
1714
1715 /*
1716 * Initialize client socket
1717 */
1718 ccs = appns_sapi_alloc_socket (app_ns);
1719
1720 /* Grab server socket after client is initialized */
1721 scs = appns_sapi_get_socket (app_ns, handle.aah_sock_index);
1722 if (!scs)
1723 goto error;
1724
1725 err = clib_socket_accept (scs, ccs);
1726 if (err)
1727 {
1728 clib_error_report (err);
1729 goto error;
1730 }
1731
1732 cf.read_function = sapi_sock_read_ready;
1733 cf.write_function = sapi_sock_write_ready;
1734 cf.error_function = sapi_sock_error;
1735 cf.file_descriptor = ccs->fd;
1736 /* File points to app namespace and socket */
1737 handle.aah_sock_index = appns_sapi_socket_index (app_ns, ccs);
Florin Coras6b6c10b2020-09-24 11:58:28 -07001738 cf.private_data = handle.as_u64;
Florin Coras61ae0562020-09-02 19:10:28 -07001739 cf.description = format (0, "app sock conn fd: %d", ccs->fd);
1740
1741 /* Poll until we get an attach message. Socket points to file and
1742 * application that owns the socket */
1743 handle.aah_app_wrk_index = APP_INVALID_INDEX;
1744 handle.aah_file_index = clib_file_add (&file_main, &cf);
Florin Coras6b6c10b2020-09-24 11:58:28 -07001745 ccs->private_data = handle.as_u64;
Florin Coras61ae0562020-09-02 19:10:28 -07001746
1747 return err;
1748
1749error:
1750 appns_sapi_free_socket (app_ns, ccs);
1751 return err;
1752}
1753
Nathan Skrzypczakb3ea73e2021-08-05 10:22:52 +02001754void
1755appns_sapi_del_ns_socket (app_namespace_t *app_ns)
1756{
1757 app_ns_api_handle_t *handle;
1758 clib_socket_t *cs;
1759
1760 pool_foreach (cs, app_ns->app_sockets)
1761 {
1762 handle = (app_ns_api_handle_t *) &cs->private_data;
1763 clib_file_del_by_index (&file_main, handle->aah_file_index);
1764
1765 clib_socket_close (cs);
1766 clib_socket_free (cs);
1767 }
1768 pool_free (app_ns->app_sockets);
1769}
1770
Florin Coras61ae0562020-09-02 19:10:28 -07001771int
1772appns_sapi_add_ns_socket (app_namespace_t * app_ns)
1773{
1774 char *subdir = "/app_ns_sockets/";
1775 app_ns_api_handle_t *handle;
1776 clib_file_t cf = { 0 };
1777 struct stat file_stat;
1778 clib_error_t *err;
1779 clib_socket_t *cs;
Benoît Ganne0bb670e2021-09-09 12:00:00 +02001780 char dir[4096];
Florin Coras61ae0562020-09-02 19:10:28 -07001781
Nathan Skrzypczak51f1b262023-04-27 12:43:46 +02001782 snprintf (dir, sizeof (dir), "%s%s", vlib_unix_get_runtime_dir (), subdir);
Nathan Skrzypczak1a9e2f92021-07-28 19:35:08 +02001783
Nathan Skrzypczak51f1b262023-04-27 12:43:46 +02001784 if (!app_ns->sock_name)
1785 app_ns->sock_name = format (0, "%s%v%c", dir, app_ns->ns_id, 0);
Florin Coras61ae0562020-09-02 19:10:28 -07001786
1787 /*
1788 * Create and initialize socket to listen on
1789 */
1790 cs = appns_sapi_alloc_socket (app_ns);
Nathan Skrzypczakb3ea73e2021-08-05 10:22:52 +02001791 cs->config = (char *) vec_dup (app_ns->sock_name);
Florin Coras61ae0562020-09-02 19:10:28 -07001792 cs->flags = CLIB_SOCKET_F_IS_SERVER |
1793 CLIB_SOCKET_F_ALLOW_GROUP_WRITE |
1794 CLIB_SOCKET_F_SEQPACKET | CLIB_SOCKET_F_PASSCRED;
1795
Nathan Skrzypczak51f1b262023-04-27 12:43:46 +02001796 if (clib_socket_prefix_get_type (cs->config) == CLIB_SOCKET_TYPE_UNIX)
1797 {
1798 err = vlib_unix_recursive_mkdir ((char *) dir);
1799 if (err)
1800 {
1801 clib_error_report (err);
Filip Tehlar0028e6f2023-06-28 10:47:32 +02001802 return SESSION_E_SYSCALL;
Nathan Skrzypczak51f1b262023-04-27 12:43:46 +02001803 }
1804 }
1805
1806 if ((err = clib_socket_init (cs)))
Florin Coras61ae0562020-09-02 19:10:28 -07001807 {
1808 clib_error_report (err);
Benoît Ganne0bb670e2021-09-09 12:00:00 +02001809 return -1;
Florin Coras61ae0562020-09-02 19:10:28 -07001810 }
1811
Nathan Skrzypczak51f1b262023-04-27 12:43:46 +02001812 if (clib_socket_prefix_get_type (cs->config) == CLIB_SOCKET_TYPE_UNIX &&
1813 stat ((char *) app_ns->sock_name, &file_stat) == -1)
Benoît Ganne0bb670e2021-09-09 12:00:00 +02001814 return -1;
Florin Coras61ae0562020-09-02 19:10:28 -07001815
1816 /*
1817 * Start polling it
1818 */
1819 cf.read_function = sapi_sock_accept_ready;
1820 cf.file_descriptor = cs->fd;
1821 /* File points to namespace */
1822 handle = (app_ns_api_handle_t *) & cf.private_data;
1823 handle->aah_app_ns_index = app_namespace_index (app_ns);
1824 handle->aah_sock_index = appns_sapi_socket_index (app_ns, cs);
1825 cf.description = format (0, "app sock listener: %s", app_ns->sock_name);
1826
1827 /* Socket points to clib file index */
1828 handle = (app_ns_api_handle_t *) & cs->private_data;
1829 handle->aah_file_index = clib_file_add (&file_main, &cf);
1830 handle->aah_app_wrk_index = APP_INVALID_INDEX;
1831
Benoît Ganne0bb670e2021-09-09 12:00:00 +02001832 return 0;
Florin Coras61ae0562020-09-02 19:10:28 -07001833}
1834
Filip Tehlar0046e972021-06-26 22:12:08 +00001835#include <vnet/session/session.api.c>
1836static clib_error_t *
1837session_api_hookup (vlib_main_t *vm)
1838{
1839 /*
1840 * Set up the (msg_name, crc, message-id) table
1841 */
1842 REPLY_MSG_ID_BASE = setup_message_id_table ();
1843
1844 return 0;
1845}
1846
1847VLIB_API_INIT_FUNCTION (session_api_hookup);
1848
Florin Coras61ae0562020-09-02 19:10:28 -07001849/*
Dave Barach68b0fb02017-02-28 15:15:56 -05001850 * fd.io coding-style-patch-verification: ON
1851 *
1852 * Local Variables:
1853 * eval: (c-set-style "gnu")
1854 * End:
1855 */